- {
- “cells”: [
- {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“# Stan (MCMC) utilitiesn”, “n”, “<hr>”
]
}, {
“cell_type”: “code”, “execution_count”: 1, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “application/javascript”: [
“n”, “(function(root) {n”, ” function now() {n”, ” return new Date();n”, ” }n”, “n”, ” var force = true;n”, “n”, ” if (typeof root._bokeh_onload_callbacks === "undefined" || force === true) {n”, ” root._bokeh_onload_callbacks = [];n”, ” root._bokeh_is_loading = undefined;n”, ” }n”, “n”, ” if (typeof (root._bokeh_timeout) === "undefined" || force === true) {n”, ” root._bokeh_timeout = Date.now() + 5000;n”, ” root._bokeh_failed_load = false;n”, ” }n”, “n”, ” function run_callbacks() {n”, ” try {n”, ” root._bokeh_onload_callbacks.forEach(function(callback) {n”, ” if (callback != null)n”, ” callback();n”, ” });n”, ” } finally {n”, ” delete root._bokeh_onload_callbacksn”, ” }n”, ” console.debug("Bokeh: all callbacks have finished");n”, ” }n”, “n”, ” function load_libs(css_urls, js_urls, callback) {n”, ” if (css_urls == null) css_urls = [];n”, ” if (js_urls == null) js_urls = [];n”, “n”, ” root._bokeh_onload_callbacks.push(callback);n”, ” if (root._bokeh_is_loading > 0) {n”, ” console.debug("Bokeh: BokehJS is being loaded, scheduling callback at", now());n”, ” return null;n”, ” }n”, ” if (js_urls == null || js_urls.length === 0) {n”, ” run_callbacks();n”, ” return null;n”, ” }n”, ” console.debug("Bokeh: BokehJS not loaded, scheduling load and callback at", now());n”, ” root._bokeh_is_loading = css_urls.length + js_urls.length;n”, “n”, ” function on_load() {n”, ” root._bokeh_is_loading–;n”, ” if (root._bokeh_is_loading === 0) {n”, ” console.debug("Bokeh: all BokehJS libraries/stylesheets loaded");n”, ” run_callbacks()n”, ” }n”, ” }n”, “n”, ” function on_error() {n”, ” console.error("failed to load " + url);n”, ” }n”, “n”, ” for (var i = 0; i < css_urls.length; i++) {n”, ” var url = css_urls[i];n”, ” const element = document.createElement("link");n”, ” element.onload = on_load;n”, ” element.onerror = on_error;n”, ” element.rel = "stylesheet";n”, ” element.type = "text/css";n”, ” element.href = url;n”, ” console.debug("Bokeh: injecting link tag for BokehJS stylesheet: ", url);n”, ” document.body.appendChild(element);n”, ” }n”, “n”, ” var skip = [];n”, ” if (window.requirejs) {n”, ” require([], function() {n”, ” })n”, ” }n”, ” for (var i = 0; i < js_urls.length; i++) {n”, ” var url = js_urls[i];n”, ” if (skip.indexOf(url) >= 0) { on_load(); continue; }n”, ” var element = document.createElement(‘script’);n”, ” element.onload = on_load;n”, ” element.onerror = on_error;n”, ” element.async = false;n”, ” element.src = url;n”, ” console.debug("Bokeh: injecting script tag for BokehJS library: ", url);n”, ” document.head.appendChild(element);n”, ” }n”, “tif (!js_urls.length) {n”, ” on_load()n”, ” }n”, ” };n”, “n”, ” function inject_raw_css(css) {n”, ” const element = document.createElement("style");n”, ” element.appendChild(document.createTextNode(css));n”, ” document.body.appendChild(element);n”, ” }n”, “n”, ” var js_urls = [];n”, ” var css_urls = [];n”, “n”, ” var inline_js = [n”, ” function(Bokeh) {n”, ” inject_raw_css(".bk.alert {\n padding: 0.75rem 1.25rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n /* Don’t set margin because that will not render correctly! /\n / margin-bottom: 1rem; /\n margin-top: 15px;\n margin-bottom: 15px;\n}\n.bk.alert a {\n color: rgb(11, 46, 19); / #002752; /\n font-weight: 700;\n text-decoration: rgb(11, 46, 19);\n text-decoration-color: rgb(11, 46, 19);\n text-decoration-line: none;\n text-decoration-style: solid;\n text-decoration-thickness: auto;\n }\n.bk.alert a:hover {\n color: rgb(11, 46, 19);\n font-weight: 700;\n text-decoration: underline;\n}\n\n.bk.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n.bk.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.bk.alert-secondary {\n color: #383d41;\n background-color: #e2e3e5;\n border-color: #d6d8db;\n }\n.bk.alert-secondary hr {\n border-top-color: #c8cbcf;\n}\n\n.bk.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n }\n\n.bk.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.bk.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n }\n.bk.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.bk.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n }\n\n.bk.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.bk.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n.bk.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.bk.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n }\n.bk.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.bk.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n }\n.bk.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n\n/ adjf\u00e6l /\n\n.bk.alert-primary a {\n color: #002752;\n}\n\n.bk.alert-secondary a {\n color: #202326;\n}\n\n\n.bk.alert-success a {\n color: #0b2e13;\n}\n\n\n.bk.alert-info a {\n color: #062c33;\n}\n\n\n.bk.alert-warning a {\n color: #533f03;\n}\n\n\n.bk.alert-danger a {\n color: #491217;\n}\n\n.bk.alert-light a {\n color: #686868;\n}\n\n.bk.alert-dark a {\n color: #040505;\n}");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css(".bk.card {\n border: 1px solid rgba(0,0,0,.125);\n border-radius: 0.25rem;\n}\n.bk.accordion {\n border: 1px solid rgba(0,0,0,.125);\n}\n.bk.card-header {\n align-items: center;\n background-color: rgba(0, 0, 0, 0.03);\n border-radius: 0.25rem;\n display: flex;\n justify-content: space-between;\n padding: 0 1.25rem 0 0;\n width: 100%;\n}\n.bk.accordion-header {\n align-items: center;\n background-color: rgba(0, 0, 0, 0.03);\n border-radius: 0;\n display: flex;\n justify-content: space-between;\n padding: 0 1.25rem 0 0;\n width: 100%;\n}\np.bk.card-button {\n background-color: transparent;\n font-size: 1.25rem;\n font-weight: 700;\n margin: 0;\n margin-left: -15px;\n}\n.bk.card-header-row {\n position: relative !important;\n}\n.bk.card-title {\n align-items: center;\n display: flex !important;\n font-size: 1.4em;\n font-weight: bold;\n padding: 0.25em;\n position: relative !important;\n}\n");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css(".bk.panel-widget-box {\n\tmin-height: 20px;\n\tbackground-color: #f5f5f5;\n\tborder: 1px solid #e3e3e3;\n\tborder-radius: 4px;\n\t-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\n\tbox-shadow: inset 0 1px 1px rgba(0,0,0,.05);\n\toverflow-x: hidden;\n\toverflow-y: hidden;\n}\n\n.scrollable {\n overflow: scroll;\n}\n\nprogress {\n\tappearance: none;\n\t-moz-appearance: none;\n\t-webkit-appearance: none;\n\n\tborder: none;\n\theight: 20px;\n\tbackground-color: whiteSmoke;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\n\tcolor: royalblue;\n\tposition: relative;\n\tmargin: 0 0 1.5em;\n}\n\nprogress[value]::-webkit-progress-bar {\n\tbackground-color: whiteSmoke;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\n}\n\nprogress[value]::-webkit-progress-value {\n\tposition: relative;\n\n\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\n\tborder-radius:3px;\n}\n\nprogress.active:not([value])::before {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress[value]::-moz-progress-bar {\n\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\n\tborder-radius:3px;\n}\n\nprogress:not([value])::-moz-progress-bar {\n\tborder-radius:3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n\n}\n\nprogress.active:not([value])::-moz-progress-bar {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress.active:not([value])::-webkit-progress-bar {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\nprogress.primary:not([value])::before { background-color: #007bff; }\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\n\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\nprogress.secondary:not([value])::before { background-color: #6c757d; }\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\n\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\nprogress.success:not([value])::before { background-color: #28a745; }\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\nprogress.success::-moz-progress-bar { background-color: #28a745; }\n\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\nprogress.danger:not([value])::before { background-color: #dc3545; }\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\n\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\nprogress.warning:not([value])::before { background-color: #ffc107; }\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\n\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\nprogress.info:not([value])::before { background-color: #17a2b8; }\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\n\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\nprogress.light:not([value])::before { background-color: #f8f9fa; }\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\n\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\nprogress.dark:not([value])::before { background-color: #343a40; }\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\n\nprogress:not([value])::-webkit-progress-bar {\n\tborder-radius: 3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n}\nprogress:not([value])::before {\n\tcontent:\" \";\n\tposition:absolute;\n\theight: 20px;\n\ttop:0;\n\tleft:0;\n\tright:0;\n\tbottom:0;\n\tborder-radius: 3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n}\n\n@keyframes stripes {\n from {background-position: 0%}\n to {background-position: 100%}\n}\n\n.bk.loader::after {\n content: \"\";\n border-radius: 50%;\n -webkit-mask-image: radial-gradient(transparent 50%, rgba(0, 0, 0, 1) 54%);\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n position: absolute;\n}\n\n.bk-root .bk.loader.dark::after {\n background: #0f0f0f;\n}\n\n.bk-root .bk.loader.light::after {\n background: #f0f0f0;\n}\n\n.bk-root .bk.loader.spin::after {\n animation: spin 2s linear infinite;\n}\n\n.bk-root div.bk.loader.spin.primary-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #007bff 50%);\n}\n\n.bk-root div.bk.loader.spin.secondary-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #6c757d 50%);\n}\n\n.bk-root div.bk.loader.spin.success-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #28a745 50%);\n}\n\n.bk-root div.bk.loader.spin.danger-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #dc3545 50%);\n}\n\n.bk-root div.bk.loader.spin.warning-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #ffc107 50%);\n}\n\n.bk-root div.bk.loader.spin.info-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #17a2b8 50%);\n}\n\n.bk-root div.bk.loader.spin.light-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #f8f9fa 50%);\n}\n\n.bk-root div.bk.loader.dark-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #343a40 50%);\n}\n\n.bk-root div.bk.loader.spin.primary-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #007bff 50%);\n}\n\n.bk-root div.bk.loader.spin.secondary-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #6c757d 50%);\n}\n\n.bk-root div.bk.loader.spin.success-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #28a745 50%);\n}\n\n.bk-root div.bk.loader.spin.danger-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #dc3545 50%)\n}\n\n.bk-root div.bk.loader.spin.warning-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #ffc107 50%);\n}\n\n.bk-root div.bk.loader.spin.info-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #17a2b8 50%);\n}\n\n.bk-root div.bk.loader.spin.light-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #f8f9fa 50%);\n}\n\n.bk-root div.bk.loader.spin.dark-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #343a40 50%);\n}\n\n/ Safari /\n@-webkit-keyframes spin {\n 0% { -webkit-transform: rotate(0deg); }\n 100% { -webkit-transform: rotate(360deg); }\n}\n\n@keyframes spin {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n}\n\n.dot div {\n height: 100%;\n width: 100%;\n border: 1px solid #000 !important;\n background-color: #fff;\n border-radius: 50%;\n display: inline-block;\n}\n\n.dot-filled div {\n height: 100%;\n width: 100%;\n border: 1px solid #000 !important;\n border-radius: 50%;\n display: inline-block;\n}\n\n.dot-filled.primary div {\n background-color: #007bff;\n}\n\n.dot-filled.secondary div {\n background-color: #6c757d;\n}\n\n.dot-filled.success div {\n background-color: #28a745;\n}\n\n.dot-filled.danger div {\n background-color: #dc3545;\n}\n\n.dot-filled.warning div {\n background-color: #ffc107;\n}\n\n.dot-filled.info div {\n background-color: #17a2b8;\n}\n\n.dot-filled.dark div {\n background-color: #343a40;\n}\n\n.dot-filled.light div {\n background-color: #f8f9fa;\n}");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css(".codehilite .hll { background-color: #ffffcc }\n.codehilite { background: #f8f8f8; }\n.codehilite .c { color: #408080; font-style: italic } / Comment /\n.codehilite .err { border: 1px solid #FF0000 } / Error /\n.codehilite .k { color: #008000; font-weight: bold } / Keyword /\n.codehilite .o { color: #666666 } / Operator /\n.codehilite .ch { color: #408080; font-style: italic } / Comment.Hashbang /\n.codehilite .cm { color: #408080; font-style: italic } / Comment.Multiline /\n.codehilite .cp { color: #BC7A00 } / Comment.Preproc /\n.codehilite .cpf { color: #408080; font-style: italic } / Comment.PreprocFile /\n.codehilite .c1 { color: #408080; font-style: italic } / Comment.Single /\n.codehilite .cs { color: #408080; font-style: italic } / Comment.Special /\n.codehilite .gd { color: #A00000 } / Generic.Deleted /\n.codehilite .ge { font-style: italic } / Generic.Emph /\n.codehilite .gr { color: #FF0000 } / Generic.Error /\n.codehilite .gh { color: #000080; font-weight: bold } / Generic.Heading /\n.codehilite .gi { color: #00A000 } / Generic.Inserted /\n.codehilite .go { color: #888888 } / Generic.Output /\n.codehilite .gp { color: #000080; font-weight: bold } / Generic.Prompt /\n.codehilite .gs { font-weight: bold } / Generic.Strong /\n.codehilite .gu { color: #800080; font-weight: bold } / Generic.Subheading /\n.codehilite .gt { color: #0044DD } / Generic.Traceback /\n.codehilite .kc { color: #008000; font-weight: bold } / Keyword.Constant /\n.codehilite .kd { color: #008000; font-weight: bold } / Keyword.Declaration /\n.codehilite .kn { color: #008000; font-weight: bold } / Keyword.Namespace /\n.codehilite .kp { color: #008000 } / Keyword.Pseudo /\n.codehilite .kr { color: #008000; font-weight: bold } / Keyword.Reserved /\n.codehilite .kt { color: #B00040 } / Keyword.Type /\n.codehilite .m { color: #666666 } / Literal.Number /\n.codehilite .s { color: #BA2121 } / Literal.String /\n.codehilite .na { color: #7D9029 } / Name.Attribute /\n.codehilite .nb { color: #008000 } / Name.Builtin /\n.codehilite .nc { color: #0000FF; font-weight: bold } / Name.Class /\n.codehilite .no { color: #880000 } / Name.Constant /\n.codehilite .nd { color: #AA22FF } / Name.Decorator /\n.codehilite .ni { color: #999999; font-weight: bold } / Name.Entity /\n.codehilite .ne { color: #D2413A; font-weight: bold } / Name.Exception /\n.codehilite .nf { color: #0000FF } / Name.Function /\n.codehilite .nl { color: #A0A000 } / Name.Label /\n.codehilite .nn { color: #0000FF; font-weight: bold } / Name.Namespace /\n.codehilite .nt { color: #008000; font-weight: bold } / Name.Tag /\n.codehilite .nv { color: #19177C } / Name.Variable /\n.codehilite .ow { color: #AA22FF; font-weight: bold } / Operator.Word /\n.codehilite .w { color: #bbbbbb } / Text.Whitespace /\n.codehilite .mb { color: #666666 } / Literal.Number.Bin /\n.codehilite .mf { color: #666666 } / Literal.Number.Float /\n.codehilite .mh { color: #666666 } / Literal.Number.Hex /\n.codehilite .mi { color: #666666 } / Literal.Number.Integer /\n.codehilite .mo { color: #666666 } / Literal.Number.Oct /\n.codehilite .sa { color: #BA2121 } / Literal.String.Affix /\n.codehilite .sb { color: #BA2121 } / Literal.String.Backtick /\n.codehilite .sc { color: #BA2121 } / Literal.String.Char /\n.codehilite .dl { color: #BA2121 } / Literal.String.Delimiter /\n.codehilite .sd { color: #BA2121; font-style: italic } / Literal.String.Doc /\n.codehilite .s2 { color: #BA2121 } / Literal.String.Double /\n.codehilite .se { color: #BB6622; font-weight: bold } / Literal.String.Escape /\n.codehilite .sh { color: #BA2121 } / Literal.String.Heredoc /\n.codehilite .si { color: #BB6688; font-weight: bold } / Literal.String.Interpol /\n.codehilite .sx { color: #008000 } / Literal.String.Other /\n.codehilite .sr { color: #BB6688 } / Literal.String.Regex /\n.codehilite .s1 { color: #BA2121 } / Literal.String.Single /\n.codehilite .ss { color: #19177C } / Literal.String.Symbol /\n.codehilite .bp { color: #008000 } / Name.Builtin.Pseudo /\n.codehilite .fm { color: #0000FF } / Name.Function.Magic /\n.codehilite .vc { color: #19177C } / Name.Variable.Class /\n.codehilite .vg { color: #19177C } / Name.Variable.Global /\n.codehilite .vi { color: #19177C } / Name.Variable.Instance /\n.codehilite .vm { color: #19177C } / Name.Variable.Magic /\n.codehilite .il { color: #666666 } / Literal.Number.Integer.Long /\n\n.markdown h1 { margin-block-start: 0.34em }\n.markdown h2 { margin-block-start: 0.42em }\n.markdown h3 { margin-block-start: 0.5em }\n.markdown h4 { margin-block-start: 0.67em }\n.markdown h5 { margin-block-start: 0.84em }\n.markdown h6 { margin-block-start: 1.17em }\n.markdown ul { padding-inline-start: 2em }\n.markdown ol { padding-inline-start: 2em }\n.markdown strong { font-weight: 600 }\n.markdown a { color: -webkit-link }\n.markdown a { color: -moz-hyperlinkText }\n");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css(".json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-row .json-formatter-string,\n.json-formatter-row .json-formatter-stringifiable {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string,\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css("table.panel-df {\n margin-left: auto;\n margin-right: auto;\n border: none;\n border-collapse: collapse;\n border-spacing: 0;\n color: black;\n font-size: 12px;\n table-layout: fixed;\n width: 100%;\n}\n\n.panel-df tr, .panel-df th, .panel-df td {\n text-align: right;\n vertical-align: middle;\n padding: 0.5em 0.5em !important;\n line-height: normal;\n white-space: normal;\n max-width: none;\n border: none;\n}\n\n.panel-df tbody {\n display: table-row-group;\n vertical-align: middle;\n border-color: inherit;\n}\n\n.panel-df tbody tr:nth-child(odd) {\n background: #f5f5f5;\n}\n\n.panel-df thead {\n border-bottom: 1px solid black;\n vertical-align: bottom;\n}\n\n.panel-df tr:hover {\n background: lightblue !important;\n cursor: pointer;\n}\n");n”, ” },n”, ” function(Bokeh) {n”, ” / BEGIN bokeh.min.js /n”, ” /!n”, ” * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn”, ” * All rights reserved.n”, ” * n”, ” * Redistribution and use in source and binary forms, with or without modification,n”, ” * are permitted provided that the following conditions are met:n”, ” * n”, ” * Redistributions of source code must retain the above copyright notice,n”, ” * this list of conditions and the following disclaimer.n”, ” * n”, ” * Redistributions in binary form must reproduce the above copyright notice,n”, ” * this list of conditions and the following disclaimer in the documentationn”, ” * and/or other materials provided with the distribution.n”, ” * n”, ” * Neither the name of Anaconda nor the names of any contributorsn”, ” * may be used to endorse or promote products derived from this softwaren”, ” * without specific prior written permission.n”, ” * n”, ” * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n”, ” * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn”, ” * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn”, ” * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn”, ” * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn”, ” * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn”, ” * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn”, ” * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn”, ” * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n”, ” * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn”, ” * THE POSSIBILITY OF SUCH DAMAGE.n”, ” /n”, ” (function(root, factory) {n”, ” const bokeh = factory();n”, ” bokeh.__bokeh__ = true;n”, ” if (typeof root.Bokeh === "undefined" || typeof root.Bokeh.__bokeh__ === "undefined") {n”, ” root.Bokeh = bokeh;n”, ” }n”, ” const Bokeh = root.Bokeh;n”, ” Bokeh[bokeh.version] = bokeh;n”, ” })(this, function() {n”, ” var define;n”, ” var parent_require = typeof require === "function" && requiren”, ” return (function(modules, entry, aliases, externals) {n”, ” if (aliases === undefined) aliases = {};n”, ” if (externals === undefined) externals = {};n”, “n”, ” var cache = {};n”, “n”, ” var normalize = function(name) {n”, ” if (typeof name === "number")n”, ” return name;n”, “n”, ” if (name === "bokehjs")n”, ” return entry;n”, “n”, ” var prefix = "@bokehjs/"n”, ” if (name.slice(0, prefix.length) === prefix)n”, ” name = name.slice(prefix.length)n”, “n”, ” var alias = aliases[name]n”, ” if (alias != null)n”, ” return alias;n”, “n”, ” var trailing = name.length > 0 && name[name.lenght-1] === "/";n”, ” var index = aliases[name + (trailing ? "" : "/") + "index"];n”, ” if (index != null)n”, ” return index;n”, “n”, ” return name;n”, ” }n”, “n”, ” var require = function(name) {n”, ” var mod = cache[name];n”, ” if (!mod) {n”, ” var id = normalize(name);n”, “n”, ” mod = cache[id];n”, ” if (!mod) {n”, ” if (!modules[id]) {n”, ” if (externals[id] === false || (externals[id] == true && parent_require)) {n”, ” try {n”, ” mod = {exports: externals[id] ? parent_require(id) : {}};n”, ” cache[id] = cache[name] = mod;n”, ” return mod.exports;n”, ” } catch (e) {}n”, ” }n”, “n”, ” var err = new Error("Cannot find module ‘" + name + "’");n”, ” err.code = ‘MODULE_NOT_FOUND’;n”, ” throw err;n”, ” }n”, “n”, ” mod = {exports: {}};n”, ” cache[id] = cache[name] = mod;n”, ” modules[id].call(mod.exports, require, mod, mod.exports);n”, ” } elsen”, ” cache[name] = mod;n”, ” }n”, “n”, ” return mod.exports;n”, ” }n”, ” require.resolve = function(name) {n”, ” return ""n”, ” }n”, “n”, ” var main = require(entry);n”, ” main.require = require;n”, “n”, ” if (typeof Proxy !== "undefined") {n”, ” // allow Bokeh.loader["@bokehjs/module/name"] syntaxn”, ” main.loader = new Proxy({}, {n”, ” get: function(_obj, module) {n”, ” return require(module);n”, ” }n”, ” });n”, ” }n”, “n”, ” main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {n”, ” if (plugin_aliases === undefined) plugin_aliases = {};n”, ” if (plugin_externals === undefined) plugin_externals = {};n”, “n”, ” for (var name in plugin_modules) {n”, ” modules[name] = plugin_modules[name];n”, ” }n”, “n”, ” for (var name in plugin_aliases) {n”, ” aliases[name] = plugin_aliases[name];n”, ” }n”, “n”, ” for (var name in plugin_externals) {n”, ” externals[name] = plugin_externals[name];n”, ” }n”, “n”, ” var plugin = require(plugin_entry);n”, “n”, ” for (var name in plugin) {n”, ” main[name] = plugin[name];n”, ” }n”, “n”, ” return plugin;n”, ” }n”, “n”, ” return main;n”, ” })n”, ” ([n”, ” function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});e(1).__exportStar(e(2),_)},n”, ” function _(t,e,n){n”, ” /! *************************************************************************n”, ” Copyright (c) Microsoft Corporation.n”, ” n”, ” Permission to use, copy, modify, and/or distribute this software for anyn”, ” purpose with or without fee is hereby granted.n”, ” n”, ” THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITHn”, ” REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITYn”, ” AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,n”, ” INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROMn”, ” LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE ORn”, ” OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE ORn”, ” PERFORMANCE OF THIS SOFTWARE.n”, ” ************************************************************************* /n”, ” Object.defineProperty(n,"__esModule",{value:!0});var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function o(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function a(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,a=n.call(t),i=[];try{for(;(void 0===e||e– >0)&&!(r=a.next()).done;)i.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=a.return)&&n.call(a)}finally{if(o)throw o.error}}return i}function i(t){return this instanceof i?(this.v=t,this):new i(t)}n.__extends=function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},n.__assign=function(){return n.__assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t},n.__assign.apply(this,arguments)},n.__rest=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(t);o<r.length;o++)e.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(t,r[o])&&(n[r[o]]=t[r[o]])}return n},n.__decorate=function(t,e,n,r){var o,a=arguments.length,i=a<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(t,e,n,r);else for(var u=t.length-1;u>=0;u–)(o=t[u])&&(i=(a<3?o(i):a>3?o(e,n,i):o(e,n))||i);return a>3&&i&&Object.defineProperty(e,n,i),i},n.__param=function(t,e){return function(n,r){e(n,r,t)}},n.__metadata=function(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)},n.__awaiter=function(t,e,n,r){return new(n||(n=Promise))((function(o,a){function i(t){try{c(r.next(t))}catch(t){a(t)}}function u(t){try{c(r.throw(t))}catch(t){a(t)}}function c(t){var e;t.done?o(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,u)}c((r=r.apply(t,e||[])).next())}))},n.__generator=function(t,e){var n,r,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(a){return function(u){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1],o=a;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(a);break}o[2]&&i.ops.pop(),i.trys.pop();continue}a=e.call(t,i)}catch(t){a=[6,t],r=0}finally{n=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,u])}}},n.__createBinding=function(t,e,n,r){void 0===r&&(r=n),t[r]=e[n]},n.__exportStar=function(t,e){for(var n in t)"default"===n||e.hasOwnProperty(n)||(e[n]=t[n])},n.__values=o,n.__read=a,n.__spread=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(a(arguments[e]));return t},n.__spreadArrays=function(){for(var t=0,e=0,n=arguments.length;e<n;e++)t+=arguments[e].length;var r=Array(t),o=0;for(e=0;e<n;e++)for(var a=arguments[e],i=0,u=a.length;i<u;i++,o++)r[o]=a[i];return r},n.__await=i,n.__asyncGenerator=function(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,o=n.apply(t,e||[]),a=[];return r={},u("next"),u("throw"),u("return"),r[Symbol.asyncIterator]=function(){return this},r;function u(t){o[t]&&(r[t]=function(e){return new Promise((function(n,r){a.push([t,e,n,r])>1||c(t,e)}))})}function c(t,e){try{(n=o[t](e)).value instanceof i?Promise.resolve(n.value.v).then(f,l):s(a[0][2],n)}catch(t){s(a[0][3],t)}var n}function f(t){c("next",t)}function l(t){c("throw",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},n.__asyncDelegator=function(t){var e,n;return e={},r("next"),r("throw",(function(t){throw t})),r("return"),e[Symbol.iterator]=function(){return this},e;function r(r,o){e[r]=t[r]?function(e){return(n=!n)?{value:i(t[r](e)),done:"return"===r}:o?o(e):e}:o}},n.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=o(t),e={},r("next"),r("throw"),r("return"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,o){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,o,(e=t[n](e)).done,e.value)}))}}},n.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,"raw",{value:e}):t.raw=e,t},n.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e},n.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},n.__classPrivateFieldGet=function(t,e){if(!e.has(t))throw new TypeError("attempted to get private field on non-instance");return e.get(t)},n.__classPrivateFieldSet=function(t,e,n){if(!e.has(t))throw new TypeError("attempted to set private field on non-instance");return e.set(t,n),n}},n”, ” function _(e,r,t){var l=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var t in e)Object.hasOwnProperty.call(e,t)&&(r[t]=e[t]);return r.default=e,r};Object.defineProperty(t,"__esModule",{value:!0});var o=e(3);t.version=o.version;var s=e(4);t.index=s.index,t.embed=l(e(4)),t.protocol=l(e(390)),t._testing=l(e(391));var n=e(19);t.logger=n.logger,t.set_log_level=n.set_log_level;var a=e(27);t.settings=a.settings;var i=e(7);t.Models=i.Models;var v=e(5);t.documents=v.documents;var _=e(392);t.safely=_.safely},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0}),o.version="2.2.3"},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(5),s=e(19),r=e(29),d=e(13),_=e(8),c=e(16),i=e(381),a=e(383),u=e(382);var l=e(381);t.add_document_standalone=l.add_document_standalone,t.index=l.index;var m=e(383);t.add_document_from_session=m.add_document_from_session;var f=e(388);t.embed_items_notebook=f.embed_items_notebook,t.kernels=f.kernels;var g=e(382);async function O(e,o,t,c){_.isString(e)&&(e=JSON.parse(r.unescape(e)));const l={};for(const[o,t]of d.entries(e))l[o]=n.Document.from_json(t);const m=[];for(const e of o){const o=u._resolve_element(e),n=u._resolve_root_elements(e);if(null!=e.docid)m.push(await i.add_document_standalone(l[e.docid],o,n,e.use_for_title));else{if(null==e.token)throw new Error("Error rendering Bokeh items: either ‘docid’ or ‘token’ was expected.");{const r=a._get_ws_url(t,c);s.logger.debug("embed: computed ws url: "+r);try{m.push(await a.add_document_from_session(r,e.token,o,n,e.use_for_title)),console.log("Bokeh items were rendered successfully")}catch(e){console.log("Error rendering Bokeh items:",e)}}}}return m}t.BOKEH_ROOT=g.BOKEH_ROOT,t.embed_item=async function(e,o){const t={},n=r.uuid4();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(u.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n},[_]=await c.defer(()=>O(t,[d]));return _},t.embed_items=async function(e,o,t,n){return await c.defer(()=>O(e,o,t,n))}},n”, ” function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const o=e(1);o.__exportStar(e(6),_),o.__exportStar(e(121),_)},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),n=e(7),r=e(3),i=e(19),_=e(313),a=e(14),l=e(15),c=e(17),h=e(31),d=e(9),f=e(13),u=o.__importStar(e(120)),m=e(25),g=e(8),p=e(272),w=e(85),v=e(81),b=e(121);class y{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new b.MessageSentEvent(this.document,"bokeh_event",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=y,y.__name__="EventManager",s.documents=[],s.DEFAULT_TITLE="Bokeh Application";class j{constructor(){s.documents.push(this),this._init_timestamp=Date.now(),this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new y(this),this.idle=new l.Signal0(this,"idle"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter(e=>e instanceof p.LayoutDOM)}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(i.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new _.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new _.LODStart)),this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&this._interactive_plot.trigger_event(new _.LODEnd),this._interactive_plot=null,this._interactive_timestamp=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error("Attempted to overwrite a document with itself");e.clear();const t=d.copy(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error("Somehow we didn’t detach "+e);if(0!=this._all_models.size)throw new Error("this._all_models still had stuff in it: "+this._all_models);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){i.logger.debug("invalidating document models"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=u.union(e,t.references());const t=new Set(this._all_models.values()),s=u.difference(t,e),o=u.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(i.logger.debug("Adding root: "+e),!d.includes(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new b.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof v.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named ‘${e}’`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof b.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new b.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _references_json(e,t=!0){const s=[];for(const o of e){const e=o.struct();e.attributes=o.attributes_as_json(t),delete e.attributes.id,s.push(e)}return s}static _instantiate_object(e,t,s){const o=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(n.Models(t))(o)}static _instantiate_references_json(e,t){const s=new Map;for(const o of e){const e=o.id,n=o.type,r=o.attributes||{};let i=t.get(e);null==i&&(i=j._instantiate_object(e,n,r),null!=o.subtype&&i.set_subtype(o.subtype)),s.set(i.id,i)}return s}static _resolve_refs(e,t,s,o){function n(e){if(c.is_ref(e)){if(t.has(e.id))return t.get(e.id);if(s.has(e.id))return s.get(e.id);throw new Error(`reference ${JSON.stringify(e)} isn’t known (not in Document?)`)}return h.is_NDArray_ref(e)?h.decode_NDArray(e,o):g.isArray(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):g.isPlainObject(e)?function(e){const t={};for(const[s,o]of f.entries(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:r,attributes:i}of e){const e=!t.has(r),_=e?s.get(r):t.get(r),a=j._resolve_refs(i,t,s,o);_.setv(a,{silent:!0}),n.set(r,{instance:_,is_new:e})}const r=[],i=new Set;function _(e){if(e instanceof a.HasProps){if(n.has(e.id)&&!i.has(e.id)){i.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of f.values(o))_(e);s&&(t.finalize(),r.push(t))}}else if(g.isArray(e))for(const t of e)_(t);else if(g.isPlainObject(e))for(const t of f.values(e))_(t)}for(const e of n.values())_(e.instance);for(const e of r)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const r={kind:"ModelChanged",model:{id:e.id},attr:t,new:s};return a.HasProps._json_record_references(o,s,n,{recursive:!0}),r}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),r=Object.keys(t.attributes),_=d.difference(n,r),a=d.difference(r,n),l=d.intersection(n,r),c=[];for(const e of _)i.logger.warn(`Server sent key ${e} but we don’t seem to have it in our JSON`);for(const n of a){const r=t.attributes[n];c.push(j._event_for_attribute_change(e,n,r,s,o))}for(const n of l){const r=e.attributes[n],i=t.attributes[n];null==r&&null==i||(null==r||null==i?c.push(j._event_for_attribute_change(e,n,i,s,o)):m.isEqual(r,i)||c.push(j._event_for_attribute_change(e,n,i,s,o)))}return c.filter(e=>null!=e)}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),r=new Map,i=[];for(const t of e.roots.root_ids)r.set(t,n.get(t)),i.push(t);const _=o(s),a=new Map,l=[];for(const e of s.roots.root_ids)a.set(e,_.get(e)),l.push(e);if(i.sort(),l.sort(),d.difference(i,l).length>0||d.difference(l,i).length>0)throw new Error("Not implemented: computing add/remove of document roots");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=j._events_to_sync_objects(n.get(e),_.get(e),t,c);h=h.concat(s)}return{references:j._references_json(c,!1),events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=this._roots.map(e=>e.id),s=this._all_models.values();return{version:r.version,title:this._title,roots:{root_ids:t,references:j._references_json(s,e)}}}static from_json_string(e){const t=JSON.parse(e);return j.from_json(t)}static from_json(e){i.logger.debug("Creating Document from JSON");const t=e.version,s=-1!==t.indexOf("+")||-1!==t.indexOf("-"),o=`Library versions: JS (${r.version}) / Python (${t})`;s||r.version.replace(/-(dev|rc)\./,"$1")==t?i.logger.debug(o):(i.logger.warn("JS/Python version mismatch"),i.logger.warn(o));const n=e.roots,_=n.root_ids,a=n.references,l=j._instantiate_references_json(a,new Map);j._initialize_references_json(a,new Map,l,new Map);const c=new j;for(const e of _){const t=l.get(e);null!=t&&c.add_root(t)}return c.set_title(e.title),c}replace_with_json(e){j.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){const t=new Set,s=[];for(const o of e){if(o.document!==this)throw i.logger.warn("Cannot create a patch using events from a different document, event had ",o.document," we are ",this),new Error("Cannot create a patch using events from a different document");s.push(o.json(t))}return{events:s,references:j._references_json(t)}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,r=j._instantiate_references_json(o,this._all_models);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case"RootAdded":case"RootRemoved":case"ModelChanged":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)r.set(t,s);else if(!r.has(t))throw i.logger.warn(`Got an event for unknown model ${e.model}"`),new Error("event model wasn’t known");break}}const _=new Map,a=new Map;for(const[e,t]of r)this._all_models.has(e)?_.set(e,t):a.set(e,t);j._initialize_references_json(o,_,a,t);for(const e of n)switch(e.kind){case"MessageSent":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error("expected exactly one buffer");{const[[,e]]=t;n=e}}else n=j._resolve_refs(o,_,a,t);this._trigger_on_message(s,n);break}case"ModelChanged":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const r=e.attr,i=j._resolve_refs(e.new,_,a,t);n.setv({[r]:i},{setter_id:s});break}case"ColumnDataChanged":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const r=j._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in r||(r[e]=n.data[e]);n.setv({data:r},{setter_id:s,check_eq:!1});break}case"ColumnsStreamed":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error("Cannot stream to non-ColumnDataSource");const n=e.data,r=e.rollover;o.stream(n,r,s);break}case"ColumnsPatched":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error("Cannot patch non-ColumnDataSource");const n=e.patches;o.patch(n,s);break}case"RootAdded":{const t=e.model.id,o=r.get(t);this.add_root(o,s);break}case"RootRemoved":{const t=e.model.id,o=r.get(t);this.remove_root(o,s);break}case"TitleChanged":this.set_title(e.title,s);break;default:throw new Error("Unknown patch event "+JSON.stringify(e))}}}s.Document=j,j.__name__="Document"},n”, ” function _(e,r,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),t=e(8),d=e(13),i=e(14);s.overrides={};const l=new Map;s.Models=e=>{const r=s.overrides[e]||l.get(e);if(null==r)throw new Error(`Model ‘${e}’ does not exist. This could be due to a widget or a custom model not being registered before first usage.`);return r},s.Models.register=(e,r)=>{s.overrides[e]=r},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,r=!1,s)=>{var o;if(null!=e)for(const n of d.values(e))if(o=n,t.isObject(o)&&o.prototype instanceof i.HasProps){const e=n.__qualified__;r||!l.has(e)?l.set(e,n):null!=s?s(e):console.warn(`Model ‘${e}’ was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>Array.from(l.keys());const n=o.__importStar(e(34));s.register_models(n)},n”, ” function _(n,t,r){Object.defineProperty(r,"__esModule",{value:!0});n”, ” // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn”, ” // Underscore may be freely distributed under the MIT license.n”, ” const e=n(9),i=Object.prototype.toString;function o(n){return"[object Number]"===i.call(n)}function c(n){const t=typeof n;return"function"===t||"object"===t&&!!n}r.isBoolean=function(n){return!0===n||!1===n||"[object Boolean]"===i.call(n)},r.isNumber=o,r.isInteger=function(n){return o(n)&&Number.isInteger(n)},r.isString=function(n){return"[object String]"===i.call(n)},r.isFunction=function(n){return"[object Function]"===i.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return e.every(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r<e;r++)if(!t(n[r]))return!1;return!0},r.isTypedArray=function(n){return ArrayBuffer.isView(n)&&!(n instanceof DataView)},r.isObject=c,r.isPlainObject=function(n){return c(n)&&(null==n.constructor||n.constructor===Object)},r.isIterable=function(n){return Symbol.iterator in Object(n)}},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});n”, ” // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn”, ” // Underscore may be freely distributed under the MIT license.n”, ” const r=n(10),o=n(11),i=n(12);e.map=i.map,e.reduce=i.reduce,e.min=i.min,e.min_by=i.min_by,e.max=i.max,e.max_by=i.max_by,e.sum=i.sum,e.cumsum=i.cumsum,e.every=i.every,e.some=i.some,e.find=i.find,e.find_last=i.find_last,e.find_index=i.find_index,e.find_last_index=i.find_last_index,e.sorted_index=i.sorted_index,e.is_empty=i.is_empty;const u=Array.prototype.slice;function c(n){return u.call(n)}function f(n){return[].concat(…n)}function s(n,t){return-1!==n.indexOf(t)}function a(n,t,e=1){o.assert(e>0,"’step’ must be a positive number"),null==t&&(t=n,n=0);const{max:r,ceil:i,abs:u}=Math,c=n<=t?e:-e,f=r(i(u(t-n)/e),0),s=new Array(f);for(let t=0;t<f;t++,n+=c)s[t]=n;return s}e.head=function(n){return n[0]},e.tail=function(n){return n[n.length-1]},e.last=function(n){return n[n.length-1]},e.copy=c,e.concat=f,e.includes=s,e.contains=s,e.nth=function(n,t){return n[t>=0?t:n.length+t]},e.zip=function(…n){if(0==n.length)return[];const t=i.min(n.map(n=>n.length)),e=n.length,r=new Array(t);for(let o=0;o<t;o++){r[o]=new Array(e);for(let t=0;t<e;t++)r[o][t]=n[t][o]}return r},e.unzip=function(n){const t=n.length,e=i.min(n.map(n=>n.length)),r=Array(e);for(let n=0;n<e;n++)r[n]=new Array(t);for(let o=0;o<t;o++)for(let t=0;t<e;t++)r[t][o]=n[o][t];return r},e.range=a,e.linspace=function(n,t,e=100){const r=(t-n)/(e-1),o=new Array(e);for(let t=0;t<e;t++)o[t]=n+r*t;return o},e.transpose=function(n){const t=n.length,e=n[0].length,r=[];for(let o=0;o<e;o++){r[o]=[];for(let e=0;e<t;e++)r[o][e]=n[e][o]}return r},e.argmin=function(n){return i.min_by(a(n.length),t=>n[t])},e.argmax=function(n){return i.max_by(a(n.length),t=>n[t])},e.sort_by=function(n,t){const e=n.map((n,e)=>({value:n,index:e,key:t(n)}));return e.sort((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(e<r||void 0===r)return-1}return n.index-t.index}),e.map(n=>n.value)},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[…t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);s(r,n)||(r.push(n),e.push(o))}return e},e.union=function(…n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[…t]},e.intersection=function(n,…t){const e=[];n:for(const r of n)if(!s(e,r)){for(const n of t)if(!s(n,r))continue n;e.push(r)}return e},e.difference=function(n,…t){const e=f(t);return n.filter(n=>!s(e,n))},e.remove_at=function(n,t){const e=c(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e<n.length;)t(n[e])?n.splice(e,1):e++},e.shuffle=function(n){const t=n.length,e=new Array(t);for(let o=0;o<t;o++){const t=r.randomIn(0,o);t!==o&&(e[o]=e[t]),e[t]=n[o]}return e},e.pairwise=function(n,t){const e=n.length,r=new Array(e-1);for(let o=0;o<e-1;o++)r[o]=t(n[o],n[o+1]);return r},e.reversed=function(n){const t=n.length,e=new Array(t);for(let r=0;r<t;r++)e[t-r-1]=n[r];return e},e.repeat=function(n,t){const e=new Array(t);for(let r=0;r<t;r++)e[r]=n;return e}},n”, ” function _(n,t,r){function e(n){if(0==n)return 0;for(;n<=0;)n+=2*Math.PI;for(;n>2*Math.PI;)n-=2*Math.PI;return n}function a(n,t){return e(n-t)}function o(){return Math.random()}Object.defineProperty(r,"__esModule",{value:!0}),r.angle_norm=e,r.angle_dist=a,r.angle_between=function(n,t,r,o){const u=a(t,r);if(0==u)return!1;if(u==2*Math.PI)return!0;const f=e(n),i=a(t,f)<=u&&a(f,r)<=u;return 0==o?i:!i},r.random=o,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(Math.PI/180)},r.degrees=function(n){return n/(Math.PI/180)},r.rnorm=function(n,t){let r,e;for(;r=o(),e=o(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let a=e/r;return a=n+t*a,a},r.clamp=function(n,t,r){return n<t?t:n>r?r:n}},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});class o extends Error{}n.AssertionError=o,o.__name__="AssertionError",n.assert=function(e,r){if(!(!0===e||!1!==e&&e()))throw new o(null!=r?r:"Assertion failed")},n.unreachable=function(){throw new Error("unreachable code")}},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=n(8),o=n(10);function i(n,t,e,…r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,u=new n.constructor(i);let l=0;for(;l<t;l++)u[l]=n[l];for(const n of r)u[l++]=n;for(let r=t+e;r<o;r++)u[l++]=n[r];return u}function u(n,t){return i(n,t,n.length-t)}function l(n,t){const e=n.length,r=new n.constructor(e);for(let o=0;o<e;o++)r[o]=t(n[o],o,n);return r}function c(n,t,e){const r=n.length;if(void 0===e&&0==r)throw new Error("can’t reduce an empty array without an initial value");let o,i;for(void 0===e?(o=n[0],i=1):(o=e,i=0);i<r;i++)o=t(o,n[i],i,n);return o}function f(n){return function(t,e){const r=t.length;let o=n>0?0:r-1;for(;o>=0&&o<r;o+=n)if(e(t[o]))return o;return-1}}function s(n,t){let e=0,r=n.length;for(;e<r;){const o=Math.floor((e+r)/2);n[o]<t?e=o+1:r=o}return e}function h(n,t,e,r,o){const i=(o-e)/(r-t);let u=i*(n-t)+e;return isFinite(u)||(u=i*(n-r)+o,isFinite(u)||e!=o||(u=e)),u}function a(n,t){if(n<t[0])return-1;if(n>t[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return r.isArray(n)?n.slice():new n.constructor(n)},e.splice=i,e.head=u,e.insert=function(n,t,e){return i(n,e,0,t)},e.append=function(n,t){return i(n,n.length,0,t)},e.prepend=function(n,t){return i(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;e<r;e++)if(n[e]===t)return e;return-1},e.subselect=function(n,t){const e=t.length,r=new n.constructor(e);for(let o=0;o<e;o++)r[o]=n[t[o]];return r},e.map=l,e.filter=function(n,t){const e=n.length,r=new n.constructor(e);let o=0;for(let i=0;i<e;i++){const e=n[i];t(e,i,n)&&(r[o++]=e)}return u(r,o)},e.reduce=c,e.min=function(n){let t,e=1/0;for(let r=0,o=n.length;r<o;r++)t=n[r],!isNaN(t)&&t<e&&(e=t);return e},e.max=function(n){let t,e=-1/0;for(let r=0,o=n.length;r<o;r++)t=n[r],!isNaN(t)&&t>e&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;o<i;o++)t=n[o],isNaN(t)||(t<e&&(e=t),t>r&&(r=t));return[e,r]},e.min_by=function(n,t){if(0==n.length)throw new Error("min_by() called with an empty array");let e=n[0],r=t(e);for(let o=1,i=n.length;o<i;o++){const i=n[o],u=t(i);u<r&&(e=i,r=u)}return e},e.max_by=function(n,t){if(0==n.length)throw new Error("max_by() called with an empty array");let e=n[0],r=t(e);for(let o=1,i=n.length;o<i;o++){const i=n[o],u=t(i);u>r&&(e=i,r=u)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;e<r;e++)t+=n[e];return t},e.cumsum=function(n){const t=new n.constructor(n.length);return c(n,(n,e,r)=>t[r]=n+e,0),t},e.every=function(n,t){for(let e=0,r=n.length;e<r;e++)if(!t(n[e]))return!1;return!0},e.some=function(n,t){for(let e=0,r=n.length;e<r;e++)if(t(n[e]))return!0;return!1},e.index_of=function(n,t){for(let e=0,r=n.length;e<r;e++)if(n[e]===t)return e;return-1},e.find_index=f(1),e.find_last_index=f(-1),e.find=function(n,t){const r=e.find_index(n,t);return-1==r?void 0:n[r]},e.find_last=function(n,t){const r=e.find_last_index(n,t);return-1==r?void 0:n[r]},e.sorted_index=s,e.bin_counts=function(n,t){const e=t.length-1,r=Array(e).fill(0);for(let i=0;i<n.length;i++){const u=s(t,n[i]);r[o.clamp(u-1,0,e-1)]+=1}return r},e.interpolate=function(n,t,e){const r=n.length,o=new Array(r);for(let i=0;i<r;i++){const r=n[i];if(isNaN(r)){o[i]=r;continue}const u=a(r,t);if(-1==u)o[i]=e[0];else if(u==t.length)o[i]=e[e.length-1];else if(u==t.length-1||t[u]==r)o[i]=e[u];else{const n=t[u],l=e[u],c=t[u+1],f=e[u+1];o[i]=h(r,n,l,c,f)}}return o},e.left_edge_index=a,e.norm=function(n,t,e){const r=e-t;return l(n,n=>(n-t)/r)}},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const c=e(9);function o(e){return Object.keys(e).length}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(e){return Object.assign({},e)},n.merge=function(e,t){const n=Object.create(Object.prototype),o=c.concat([Object.keys(e),Object.keys(t)]);for(const s of o){const o=e.hasOwnProperty(s)?e[s]:[],r=t.hasOwnProperty(s)?t[s]:[];n[s]=c.union(o,r)}return n},n.size=o,n.isEmpty=function(e){return 0==o(e)},n.to_object=function(e){const t={};for(const[n,c]of e)t[n]=c;return t}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const s=t(1),n=t(15),i=t(17),o=s.__importStar(t(18)),c=s.__importStar(t(21)),a=s.__importStar(t(28)),_=t(29),u=t(9),f=t(13),l=t(8),h=t(25),p=t(5),d=t(30),y=t(31),g=t(25),v=t(33),m=s.__importStar(t(21));class b extends(n.Signalable()){constructor(t={}){var e;super(),this._subtype=void 0,this.document=null,this.destroyed=new n.Signal0(this,"destroyed"),this.change=new n.Signal0(this,"change"),this.transformchange=new n.Signal0(this,"transformchange"),this.properties={},this._pending=!1,this._changing=!1;const r=t instanceof Map?t.get:e=>t[e];for(const[t,{type:e,default_value:s,options:n}]of f.entries(this._props)){let i;i=e instanceof c.Kind?new o.PrimitiveProperty(this,t,e,s,r(t),n):new e(this,t,c.Any,s,r(t),n),this.properties[t]=i}null!==(e=r("__deferred__"))&&void 0!==e&&e||(this.finalize(),this.connect_signals())}set type(t){console.warn("prototype.type = ‘ModelName’ is deprecated, use static __name__ instead"),this.constructor.__name__=t}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:t,__name__:e}=this;return null!=t?`${t}.${e}`:e}static get[Symbol.toStringTag](){return this.__name__}static init_HasProps(){this.prototype._props={},this.prototype._mixins=[],this.define({id:[o.String,()=>_.uniqueId()]})}static _fix_default(t,e){if(void 0!==t){if(l.isFunction(t))return t;if(l.isArray(t))return()=>u.copy(t);if(l.isPlainObject(t))return()=>f.clone(t);if(l.isObject(t))throw new Error(t+" must be explicitly wrapped in a function");return()=>t}}static define(t){for(const[e,r]of f.entries(l.isFunction(t)?t(m):t)){if(null!=this.prototype._props[e])throw new Error(`attempted to redefine property ‘${this.prototype.type}.${e}’`);if(null!=this.prototype[e])throw new Error(`attempted to redefine attribute ‘${this.prototype.type}.${e}’`);Object.defineProperty(this.prototype,e,{get(){return this.properties[e].get_value()},set(t){return this.setv({[e]:t}),this},configurable:!1,enumerable:!0});const[t,s,n]=r,i={type:t,default_value:this._fix_default(s,e),options:n},o=f.clone(this.prototype._props);o[e]=i,this.prototype._props=o}}static internal(t){const e={};for(const[r,s]of f.entries(t)){const[t,n,i={}]=s;e[r]=[t,n,Object.assign(Object.assign({},i),{internal:!0})]}this.define(e)}static mixins(t){function e(t){switch(t){case"line":return a.LineVector;case"fill":return a.FillVector;case"hatch":return a.HatchVector;case"text":return a.TextVector;default:throw new Error(`Unknown property mixin kind ‘${t}’`)}}function r(t,e){const r={};for(const[s,n]of f.entries(e))r[t+s]=n;return r}function s(t){const[e]=Object.keys(t),[r]=e.split("_",1);return r}l.isArray(t)||(t=[t]);const n={},i=[];for(const o of t)if(l.isString(o)){const[t,s=""]=o.split(":"),c=e(t);i.push(o),f.extend(n,r(s,c))}else if(l.isArray(o)){const[t,e]=o;i.push(`${s(e)}:${t}`),f.extend(n,r(t,e))}else{const t=o;i.push(s(t)),f.extend(n,t)}this.define(n),this.prototype._mixins=[…this.prototype._mixins,…i]}static override(t){for(const[e,r]of f.entries(t)){const t=this._fix_default(r,e),s=this.prototype._props[e];if(null==s)throw new Error(`attempted to override nonexistent ‘${this.prototype.type}.${e}’`);const n=f.clone(this.prototype._props);n[e]=Object.assign(Object.assign({},s),{default_value:t}),this.prototype._props=n}}toString(){return`${this.type}(${this.id})`}property(t){const e=this.properties[t];if(null!=e)return e;throw new Error(`unknown property ${this.type}.${t}`)}get attributes(){const t={};for(const e of this)t[e.attr]=e.get_value();return t}[g.equals](t,e){for(const r of this){const s=t.property(r.attr);if(e.eq(r.get_value(),s.get_value()))return!1}return!0}[v.pretty](t){const e=t.token,r=[];for(const s of this)if(s.dirty){const n=s.get_value();r.push(`${s.attr}${e(":")} ${t.to_string(n)}`)}return`${this.constructor.__qualified__}${e("(")}${e("{")}${r.join(e(",")+" ")}${e("}")}${e(")")}`}finalize(){for(const t of this)null!=t.spec.transform&&this.connect(t.spec.transform.change,()=>this.transformchange.emit());this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){n.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return new this.constructor(this.attributes)}_setv(t,e){const r=e.check_eq,s=[],n=this._changing;this._changing=!0;for(const[e,n]of t)!1!==r&&h.isEqual(e.get_value(),n)||(e.set_value(n),s.push(e));s.length>0&&(this._pending=!0);for(const t of s)t.change.emit();if(!n){if(!e.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(t,e={}){const r=f.entries(t);if(0==r.length)return;if(!0===e.silent){for(const[t,e]of r)this.properties[t].set_value(e);return}const s=new Map,n=new Map;for(const[t,e]of r){const r=this.properties[t];s.set(r,e),n.set(r,r.get_value())}this._setv(s,e);const{document:i}=this;if(null!=i){const t=[];for(const[e,r]of n)t.push([e,r,e.get_value()]);for(const[,e,r]of t)if(this._needs_invalidate(e,r)){i._invalidate_all_models();break}this._push_changes(t,e)}}getv(t){return this.property(t).get_value()}ref(){return{id:this.id}}struct(){const t={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(t.subtype=this._subtype),t}set_subtype(t){this._subtype=t}*[Symbol.iterator](){yield*f.values(this.properties)}*syncable_properties(){for(const t of this)t.syncable&&(yield t)}serializable_attributes(){const t={};for(const e of this.syncable_properties())t[e.attr]=e.get_value();return t}static _value_to_json(t){if(t instanceof b)return t.ref();if(d.is_NDArray(t))return y.encode_NDArray(t);if(l.isArray(t)||l.isTypedArray(t)){const e=t.length,r=new Array(e);for(let s=0;s<e;s++){const e=t[s];r[s]=b._value_to_json(e)}return r}if(l.isPlainObject(t)){const e={};for(const[r,s]of f.entries(t))e[r]=b._value_to_json(s);return e}return t}attributes_as_json(t=!0,e=b._value_to_json){const r={};for(const s of this)s.syncable&&(t||s.dirty)&&(r[s.attr]=e(s.get_value()));return r}static _json_record_references(t,e,r,s){const{recursive:n}=s;if(i.is_ref(e)){const s=t.get_model_by_id(e.id);null==s||r.has(s)||b._value_record_references(s,r,{recursive:n})}else if(l.isArray(e))for(const s of e)b._json_record_references(t,s,r,{recursive:n});else if(l.isPlainObject(e))for(const s of f.values(e))b._json_record_references(t,s,r,{recursive:n})}static _value_record_references(t,e,r){const{recursive:s}=r;if(t instanceof b){if(!e.has(t)&&(e.add(t),s)){const r=t._immediate_references();for(const t of r)b._value_record_references(t,e,{recursive:!0})}}else if(l.isArray(t))for(const r of t)b._value_record_references(r,e,{recursive:s});else if(l.isPlainObject(t))for(const r of f.values(t))b._value_record_references(r,e,{recursive:s})}_immediate_references(){const t=new Set;for(const e of this.syncable_properties()){const r=e.get_value();b._value_record_references(r,t,{recursive:!1})}return t}references(){const t=new Set;return b._value_record_references(this,t,{recursive:!0}),t}_doc_attached(){}_doc_detached(){}attach_document(t){if(null!=this.document&&this.document!=t)throw new Error("models must be owned by only a single document");this.document=t,this._doc_attached()}detach_document(){this._doc_detached(),this.document=null}_needs_invalidate(t,e){const r=new Set;b._value_record_references(e,r,{recursive:!1});const s=new Set;b._value_record_references(t,s,{recursive:!1});for(const t of r)if(!s.has(t))return!0;for(const t of s)if(!r.has(t))return!0;return!1}_push_changes(t,e={}){const{document:r}=this;if(null==r)return;const{setter_id:s}=e,n=[];for(const[e,i,o]of t)e.syncable&&n.push(new p.ModelChangedEvent(r,this,e.attr,i,o,s));if(0!=n.length){let t;1==n.length?[t]=n:t=new p.DocumentEventBatch(r,n,s),r._trigger_on_change(t)}}materialize_dataspecs(t){const e={};for(const r of this){if(!(r instanceof o.VectorSpec))continue;if(r.optional&&null==r.spec.value&&!r.dirty)continue;const s=r.attr,n=r.array(t);e["_"+s]=n,r instanceof o.DistanceSpec&&(e["max_"+s]=u.max(n))}return e}on_change(t,e){for(const r of l.isArray(t)?t:[t])this.connect(r.change,e)}}r.HasProps=b,b.init_HasProps()},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const l=n(16),s=n(9);class o{constructor(n,t){this.sender=n,this.name=t}connect(n,t=null){c.has(this.sender)||c.set(this.sender,[]);const e=c.get(this.sender);if(null!=u(e,this,n,t))return!1;const l=null!=t?t:n;r.has(l)||r.set(l,[]);const s=r.get(l),o={signal:this,slot:n,context:t};return e.push(o),s.push(o),!0}disconnect(n,t=null){const e=c.get(this.sender);if(null==e||0===e.length)return!1;const l=u(e,this,n,t);if(null==l)return!1;const s=null!=t?t:n,o=r.get(s);return l.signal=null,a(e),a(o),!0}emit(n){var t;const e=null!==(t=c.get(this.sender))&&void 0!==t?t:[];for(const{signal:t,slot:l,context:s}of e)t===this&&l.call(s,n,this.sender)}}e.Signal=o,o.__name__="Signal";class i extends o{emit(){super.emit(void 0)}}e.Signal0=i,i.__name__="Signal0",function(n){n.disconnectBetween=function(n,t){const e=c.get(n);if(null==e||0===e.length)return;const l=r.get(t);if(null!=l&&0!==l.length){for(const t of l){if(null==t.signal)return;t.signal.sender===n&&(t.signal=null)}a(e),a(l)}},n.disconnectSender=function(n){var t;const e=c.get(n);if(null!=e&&0!==e.length){for(const n of e){if(null==n.signal)return;const e=null!==(t=n.context)&&void 0!==t?t:n.slot;n.signal=null,a(r.get(e))}a(e)}},n.disconnectReceiver=function(n){const t=r.get(n);if(null!=t&&0!==t.length){for(const n of t){if(null==n.signal)return;const t=n.signal.sender;n.signal=null,a(c.get(t))}a(t)}},n.disconnectAll=function(n){const t=c.get(n);if(null!=t&&0!==t.length){for(const n of t)n.signal=null;a(t)}const e=r.get(n);if(null!=e&&0!==e.length){for(const n of e)n.signal=null;a(e)}}}(o||(e.Signal=o={})),e.Signalable=function(){return class{connect(n,t){return n.connect(t,this)}disconnect(n,t){return n.disconnect(t,this)}}};const c=new WeakMap,r=new WeakMap;function u(n,t,e,l){return s.find(n,n=>n.signal===t&&n.slot===e&&n.context===l)}const g=new Set;function a(n){0===g.size&&l.defer(f),g.add(n)}function f(){for(const n of g)s.remove_by(n,n=>null==n.signal);g.clear()}},n”, ” function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.delay=n”, ” // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn”, ” // Underscore may be freely distributed under the MIT license.n”, ” function(n,e){return setTimeout(n,e)};const u="function"==typeof requestAnimationFrame?requestAnimationFrame:setImmediate;t.defer=function(n){return new Promise(e=>{u(()=>e(n()))})},t.throttle=function(n,e,t={}){let u,o,i,r=null,l=0;const c=function(){l=!1===t.leading?0:Date.now(),r=null,i=n.apply(u,o),r||(u=o=null)};return function(){const a=Date.now();l||!1!==t.leading||(l=a);const f=e-(a-l);return u=this,o=arguments,f<=0||f>e?(r&&(clearTimeout(r),r=null),l=a,i=n.apply(u,o),r||(u=o=null)):r||!1===t.trailing||(r=setTimeout(c,f)),i}},t.once=function(n){let e,t=!1;return function(){return t||(t=!0,e=n()),e}}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(8),r=e(13);t.is_ref=function(e){if(i.isPlainObject(e)){const n=r.keys(e);return 1==n.length&&"id"==n[0]}return!1}},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const a=e(1),s=e(15),i=e(19),r=a.__importStar(e(20)),l=e(24),o=e(9),c=e(12),_=e(22),u=e(8),d=e(27);function p(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function S(e){return u.isPlainObject(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}n.isSpec=S;class m{constructor(e,t,n,a,i,r={}){var l,o;let c;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=a,this._dirty=!1,this.change=new s.Signal0(this.obj,"change"),this.internal=null!==(l=r.internal)&&void 0!==l&&l,this.optional=null!==(o=r.optional)&&void 0!==o&&o,void 0!==i)c=i,this._dirty=!0;else{const t=this._default_override();c=void 0!==t?t:void 0!==a?a(e):null}this._update(c)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){null!=e&&this.validate(e),this.spec={value:e}}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${p(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj.type}.${this.attr} given invalid value: ${p(e)}`)}valid(e){return this.kind.valid(e)}value(e=!0){if(!this.is_value)throw new Error("attempted to retrieve property value for property without value specification");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=m,m.__name__="Property";class h extends m{}n.PrimitiveProperty=h,h.__name__="PrimitiveProperty";class v extends m{}n.Any=v,v.__name__="Any";class g extends m{valid(e){return u.isArray(e)||e instanceof Float32Array||e instanceof Float64Array}}n.Array=g,g.__name__="Array";class x extends m{valid(e){return u.isBoolean(e)}}n.Boolean=x,x.__name__="Boolean";class y extends m{valid(e){return u.isString(e)&&_.is_color(e)}}n.Color=y,y.__name__="Color";class f extends m{}n.Instance=f,f.__name__="Instance";class A extends m{valid(e){return u.isNumber(e)}}n.Number=A,A.__name__="Number";class P extends A{valid(e){return u.isNumber(e)&&(0|e)==e}}n.Int=P,P.__name__="Int";class C extends A{}n.Angle=C,C.__name__="Angle";class b extends A{valid(e){return u.isNumber(e)&&0<=e&&e<=1}}n.Percent=b,b.__name__="Percent";class L extends m{valid(e){return u.isString(e)}}n.String=L,L.__name__="String";class N extends m{valid(e){return null===e||u.isString(e)}}n.NullString=N,N.__name__="NullString";class T extends L{}n.FontSize=T,T.__name__="FontSize";class q extends L{_default_override(){return d.settings.dev?"Bokeh":void 0}}n.Font=q,q.__name__="Font";class B extends m{valid(e){return u.isString(e)&&o.includes(this.enum_values,e)}}function M(e){return class extends B{get enum_values(){return[…e]}}}n.EnumProperty=B,B.__name__="EnumProperty",n.Enum=M;class w extends B{get enum_values(){return[…r.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;n<e.length;n++)switch(e[n]){case"clock":t[n]=0;break;case"anticlock":t[n]=1}return t}}n.Direction=w,w.__name__="Direction",n.Anchor=M(r.Anchor),n.AngleUnits=M(r.AngleUnits),n.BoxOrigin=M(r.BoxOrigin),n.ButtonType=M(r.ButtonType),n.CalendarPosition=M(r.CalendarPosition),n.Dimension=M(r.Dimension),n.Dimensions=M(r.Dimensions),n.Distribution=M(r.Distribution),n.FontStyle=M(r.FontStyle),n.HatchPatternType=M(r.HatchPatternType),n.HTTPMethod=M(r.HTTPMethod),n.HexTileOrientation=M(r.HexTileOrientation),n.HoverMode=M(r.HoverMode),n.LatLon=M(r.LatLon),n.LegendClickPolicy=M(r.LegendClickPolicy),n.LegendLocation=M(r.LegendLocation),n.LineCap=M(r.LineCap),n.LineJoin=M(r.LineJoin),n.LinePolicy=M(r.LinePolicy),n.Location=M(r.Location),n.Logo=M(r.Logo),n.MarkerType=M(r.MarkerType),n.MutedPolicy=M(r.MutedPolicy),n.Orientation=M(r.Orientation),n.OutputBackend=M(r.OutputBackend),n.PaddingUnits=M(r.PaddingUnits),n.Place=M(r.Place),n.PointPolicy=M(r.PointPolicy),n.RadiusDimension=M(r.RadiusDimension),n.RenderLevel=M(r.RenderLevel),n.RenderMode=M(r.RenderMode),n.ResetPolicy=M(r.ResetPolicy),n.RoundingFunction=M(r.RoundingFunction),n.Side=M(r.Side),n.SizingMode=M(r.SizingMode),n.Sort=M(r.Sort),n.SpatialUnits=M(r.SpatialUnits),n.StartEnd=M(r.StartEnd),n.StepMode=M(r.StepMode),n.TapBehavior=M(r.TapBehavior),n.TextAlign=M(r.TextAlign),n.TextBaseline=M(r.TextBaseline),n.TextureRepetition=M(r.TextureRepetition),n.TickLabelOrientation=M(r.TickLabelOrientation),n.TooltipAttachment=M(r.TooltipAttachment),n.UpdateMode=M(r.UpdateMode),n.VerticalAlign=M(r.VerticalAlign);class D extends m{get_value(){return null===this.spec.value?null:this.spec}_update(e){S(e)?this.spec=e:this.spec={value:e},null!=this.spec.value&&this.validate(this.spec.value)}}n.ScalarSpec=D,D.__name__="ScalarSpec";class k extends D{}n.AnyScalar=k,k.__name__="AnyScalar";class F extends D{}n.ColorScalar=F,F.__name__="ColorScalar";class U extends D{}n.NumberScalar=U,U.__name__="NumberScalar";class z extends D{}n.StringScalar=z,z.__name__="StringScalar";class O extends D{}n.NullStringScalar=O,O.__name__="NullStringScalar";class R extends D{}n.ArrayScalar=R,R.__name__="ArrayScalar";class $ extends D{}n.LineJoinScalar=$,$.__name__="LineJoinScalar";class E extends D{}n.LineCapScalar=E,E.__name__="LineCapScalar";class H extends D{}n.FontSizeScalar=H,H.__name__="FontSizeScalar";class j extends D{}n.FontStyleScalar=j,j.__name__="FontStyleScalar";class X extends D{}n.TextAlignScalar=X,X.__name__="TextAlignScalar";class Y extends D{}n.TextBaselineScalar=Y,Y.__name__="TextBaselineScalar";class I extends m{get_value(){return null===this.spec.value?null:this.spec}_update(e){S(e)?this.spec=e:this.spec={value:e},null!=this.spec.value&&this.validate(this.spec.value)}array(e){var t;let n;const a=null!==(t=e.get_length())&&void 0!==t?t:1;if(null!=this.spec.field){const t=e.get_column(this.spec.field);if(null!=t)n=this.normalize(t);else{i.logger.warn(`attempted to retrieve property array for nonexistent field ‘${this.spec.field}’`);const e=new l.NumberArray(a);e.fill(NaN),n=e}}else if(null!=this.spec.expr)n=this.normalize(this.spec.expr.v_compute(e));else{const e=this.value(!1);if(u.isNumber(e)){const t=new l.NumberArray(a);t.fill(e),n=t}else n=o.repeat(e,a)}return null!=this.spec.transform&&(n=this.spec.transform.v_compute(n)),n}}n.VectorSpec=I,I.__name__="VectorSpec";class J extends I{}n.DataSpec=J,J.__name__="DataSpec";class V extends I{_update(e){super._update(e),null==this.spec.units&&(this.spec.units=this.default_units);const t=this.spec.units;if(!o.includes(this.valid_units,t))throw new Error(`units must be one of ${this.valid_units.join(", ")}; got: ${t}`)}get units(){return this.spec.units}set units(e){this.spec.units=e}}n.UnitsSpec=V,V.__name__="UnitsSpec";class G extends V{array(e){return new l.NumberArray(super.array(e))}}n.NumberUnitsSpec=G,G.__name__="NumberUnitsSpec";class K extends J{}n.BaseCoordinateSpec=K,K.__name__="BaseCoordinateSpec";class Q extends K{}n.CoordinateSpec=Q,Q.__name__="CoordinateSpec";class W extends K{}n.CoordinateSeqSpec=W,W.__name__="CoordinateSeqSpec";class Z extends K{}n.CoordinateSeqSeqSeqSpec=Z,Z.__name__="CoordinateSeqSeqSeqSpec";class ee extends Q{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSpec=ee,ee.__name__="XCoordinateSpec";class te extends Q{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSpec=te,te.__name__="YCoordinateSpec";class ne extends W{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSeqSpec=ne,ne.__name__="XCoordinateSeqSpec";class ae extends W{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSeqSpec=ae,ae.__name__="YCoordinateSeqSpec";class se extends Z{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSeqSeqSeqSpec=se,se.__name__="XCoordinateSeqSeqSeqSpec";class ie extends Z{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSeqSeqSeqSpec=ie,ie.__name__="YCoordinateSeqSeqSeqSpec";class re extends G{get default_units(){return"rad"}get valid_units(){return[…r.AngleUnits]}normalize(e){return"deg"==this.spec.units&&(e=c.map(e,e=>e*Math.PI/180)),e=c.map(e,e=>-e),super.normalize(e)}}n.AngleSpec=re,re.__name__="AngleSpec";class le extends G{get default_units(){return"data"}get valid_units(){return[…r.SpatialUnits]}}n.DistanceSpec=le,le.__name__="DistanceSpec";class oe extends J{array(e){return new Uint8Array(super.array(e))}}n.BooleanSpec=oe,oe.__name__="BooleanSpec";class ce extends J{array(e){return new l.NumberArray(super.array(e))}}n.NumberSpec=ce,ce.__name__="NumberSpec";class _e extends J{array(e){const t=super.array(e),n=t.length,a=new l.ColorArray(n);for(let e=0;e<n;e++){const n=t[e];if(u.isNumber(n))a[e]=n;else{const t=_.color2rgba(n);a[e]=_.encode_rgba(t)}}return a}}n.ColorSpec=_e,_e.__name__="ColorSpec";class ue extends J{}n.FontSizeSpec=ue,ue.__name__="FontSizeSpec";class de extends J{}n.MarkerSpec=de,de.__name__="MarkerSpec";class pe extends J{}n.StringSpec=pe,pe.__name__="StringSpec";class Se extends J{}n.NullStringSpec=Se,Se.__name__="NullStringSpec";class me extends J{}n.NDArraySpec=me,me.__name__="NDArraySpec"},n”, ” function _(e,l,o){Object.defineProperty(o,"__esModule",{value:!0});const n=e(8),t=e(13),s={};class g{constructor(e,l){this.name=e,this.level=l}}o.LogLevel=g,g.__name__="LogLevel";class r{constructor(e,l=r.INFO){this._name=e,this.set_level(l)}static get levels(){return Object.keys(r.log_levels)}static get(e,l=r.INFO){if(e.length>0){let o=s[e];return null==o&&(s[e]=o=new r(e,l)),o}throw new TypeError("Logger.get() expects a non-empty string name and an optional log-level")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof g)this._log_level=e;else{if(!n.isString(e)||null==r.log_levels[e])throw new Error("Logger.set_level() expects a log-level object or a string name of a log-level");this._log_level=r.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of t.entries(r.log_levels))o.level<this._log_level.level||this._log_level.level===r.OFF.level?this[e]=function(){}:this[e]=i(e,l)}trace(…e){}debug(…e){}info(…e){}warn(…e){}error(…e){}}function i(e,l){return null!=console[e]?console[e].bind(console,l):null!=console.log?console.log.bind(console,l):function(){}}function _(e){const l=o.logger.level;return n.isString(e)&&null==r.log_levels[e]?(console.log(`[bokeh] unrecognized logging level ‘${e}’ passed to Bokeh.set_log_level(), ignoring`),console.log("[bokeh] valid log levels are: "+r.levels.join(", "))):(console.log(`[bokeh] setting log level to: ‘${n.isString(e)?e:e.level}’`),o.logger.set_level(e)),l}o.Logger=r,r.__name__="Logger",r.TRACE=new g("trace",0),r.DEBUG=new g("debug",1),r.INFO=new g("info",2),r.WARN=new g("warn",6),r.ERROR=new g("error",7),r.FATAL=new g("fatal",8),r.OFF=new g("off",9),r.log_levels={trace:r.TRACE,debug:r.DEBUG,info:r.INFO,warn:r.WARN,error:r.ERROR,fatal:r.FATAL,off:r.OFF},o.logger=r.get("bokeh"),o.set_log_level=_,o.with_log_level=function(e,l){const o=_(e);try{l()}finally{_(o)}}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(21);t.Align=o.Enum("start","center","end"),t.Anchor=o.Enum("top_left","top_center","top_right","center_left","center","center_right","bottom_left","bottom_center","bottom_right"),t.AngleUnits=o.Enum("deg","rad"),t.BoxOrigin=o.Enum("corner","center"),t.ButtonType=o.Enum("default","primary","success","warning","danger"),t.CalendarPosition=o.Enum("auto","above","below"),t.Dimension=o.Enum("width","height"),t.Dimensions=o.Enum("width","height","both"),t.Direction=o.Enum("clock","anticlock"),t.Distribution=o.Enum("uniform","normal"),t.FontStyle=o.Enum("normal","italic","bold","bold italic"),t.HatchPatternType=o.Enum("blank","dot","ring","horizontal_line","vertical_line","cross","horizontal_dash","vertical_dash","spiral","right_diagonal_line","left_diagonal_line","diagonal_cross","right_diagonal_dash","left_diagonal_dash","horizontal_wave","vertical_wave","criss_cross"," ",".","o","-","|","+",’"’,":","@","/","\\","x",",","`","v",">",""),t.HTTPMethod=o.Enum("POST","GET"),t.HexTileOrientation=o.Enum("pointytop","flattop"),t.HoverMode=o.Enum("mouse","hline","vline"),t.LatLon=o.Enum("lat","lon"),t.LegendClickPolicy=o.Enum("none","hide","mute"),t.LegendLocation=t.Anchor,t.LineCap=o.Enum("butt","round","square"),t.LineJoin=o.Enum("miter","round","bevel"),t.LinePolicy=o.Enum("prev","next","nearest","interp","none"),t.Location=o.Enum("above","below","left","right"),t.Logo=o.Enum("normal","grey"),t.MarkerType=o.Enum("asterisk","circle","circle_cross","circle_dot","circle_x","circle_y","cross","dash","diamond","diamond_cross","diamond_dot","dot","hex","hex_dot","inverted_triangle","plus","square","square_cross","square_dot","square_pin","square_x","triangle","triangle_dot","triangle_pin","x","y"),t.MutedPolicy=o.Enum("show","ignore"),t.Orientation=o.Enum("vertical","horizontal"),t.OutputBackend=o.Enum("canvas","svg","webgl"),t.PaddingUnits=o.Enum("percent","absolute"),t.Place=o.Enum("above","below","left","right","center"),t.PointPolicy=o.Enum("snap_to_data","follow_mouse","none"),t.RadiusDimension=o.Enum("x","y","max","min"),t.RenderLevel=o.Enum("image","underlay","glyph","guide","annotation","overlay"),t.RenderMode=o.Enum("canvas","css"),t.ResetPolicy=o.Enum("standard","event_only"),t.RoundingFunction=o.Enum("round","nearest","floor","rounddown","ceil","roundup"),t.SelectionMode=o.Enum("replace","append","intersect","subtract"),t.Side=o.Enum("above","below","left","right"),t.SizingMode=o.Enum("stretch_width","stretch_height","stretch_both","scale_width","scale_height","scale_both","fixed"),t.Sort=o.Enum("ascending","descending"),t.SpatialUnits=o.Enum("screen","data"),t.StartEnd=o.Enum("start","end"),t.StepMode=o.Enum("after","before","center"),t.TapBehavior=o.Enum("select","inspect"),t.TextAlign=o.Enum("left","right","center"),t.TextBaseline=o.Enum("top","middle","bottom","alphabetic","hanging","ideographic"),t.TextureRepetition=o.Enum("repeat","repeat_x","repeat_y","no_repeat"),t.TickLabelOrientation=o.Enum("vertical","horizontal","parallel","normal"),t.TooltipAttachment=o.Enum("horizontal","vertical","left","right","above","below"),t.UpdateMode=o.Enum("replace","append"),t.VerticalAlign=o.Enum("top","middle","bottom")},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1).__importStar(e(8)),r=e(22);class i{}t.Kind=i,i.__name__="Kind",function(e){class n extends i{valid(e){return!0}}n.__name__="Any",e.Any=n;class t extends i{valid(e){return!0}}t.__name__="Unknown",e.Unknown=t;class l extends i{valid(e){return s.isBoolean(e)}}l.__name__="Boolean",e.Boolean=l;class a extends i{constructor(e){super(),this.obj_type=e}valid(e){return!0}}a.__name__="Ref",e.Ref=a;class _ extends i{valid(e){return s.isNumber(e)}}_.__name__="Number",e.Number=_;class u extends _{valid(e){return super.valid(e)&&s.isInteger(e)}}u.__name__="Int",e.Int=u;class d extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some(n=>n.valid(e))}}d.__name__="Or",e.Or=d;class o extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!s.isArray(e))return!1;for(let n=0;n<this.types.length;n++){const t=this.types[n],s=e[n];if(!t.valid(s))return!1}return!0}}o.__name__="Tuple",e.Tuple=o;class c extends i{constructor(e){super(),this.item_type=e}valid(e){return s.isArray(e)&&e.every(e=>this.item_type.valid(e))}}c.__name__="Array",e.Array=c;class m extends i{valid(e){return null===e}}m.__name__="Null",e.Null=m;class p extends i{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}p.__name__="Nullable",e.Nullable=p;class y extends i{valid(e){return s.isString(e)}}y.__name__="String",e.String=y;class v extends i{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}v.__name__="Enum",e.Enum=v;class h extends i{constructor(e){super(),this.item_type=e}valid(e){if(!s.isPlainObject(e))return!1;for(const n in e)if(e.hasOwnProperty(n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}h.__name__="Struct",e.Struct=h;class w extends i{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof Map))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}w.__name__="Dict",e.Dict=w;class K extends i{valid(e){return s.isString(e)&&r.is_color(e)}}K.__name__="Color",e.Color=K;class f extends _{valid(e){return super.valid(e)&&0<=e&&e<=1}}f.__name__="Percent",e.Percent=f}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null,t.Nullable=e=>new t.Kinds.Nullable(e),t.Or=(…e)=>new t.Kinds.Or(e),t.Tuple=(…e)=>new t.Kinds.Tuple(e),t.Array=e=>new t.Kinds.Array(e),t.Struct=e=>new t.Kinds.Struct(e),t.Dict=(e,n)=>new t.Kinds.Dict(e,n),t.Enum=(…e)=>new t.Kinds.Enum(e),t.Ref=e=>new t.Kinds.Ref(e),t.Percent=new t.Kinds.Percent,t.Color=new t.Kinds.Color,t.Auto=t.Enum("auto"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(23),l=e(9);function a(e){const r=Number(e).toString(16);return 1==r.length?"0"+r:r}function o(e){if(0==(e+="").indexOf("#"))return e;if(n.is_svg_color(e))return n.svg_colors[e];if(0==e.indexOf("rgb")){const r=e.replace(/^rgba?\(|\\s+|\)$/g,"").split(",");let t=r.slice(0,3).map(a).join("");return 4==r.length&&(t+=a(Math.floor(255*parseFloat(r[3])))),"#"+t.slice(0,8)}return e}function s(e){let r;switch(e.substring(0,4)){case"rgba":r={start:"rgba(",len:4,alpha:!0};break;case"rgb(":r={start:"rgb(",len:3,alpha:!1};break;default:return!1}if(new RegExp(".*?(\\.).*(,)").test(e))return!1;const t=e.replace(r.start,"").replace(")","").split(",").map(parseFloat);return t.length==r.len&&((!r.alpha||0<=t[3]&&t[3]<=1)&&!l.includes(t.slice(0,3).map(e=>0<=e&&e<=255),!1))}t.is_color=function(e){return n.is_svg_color(e.toLowerCase())||"#"==e.substring(0,1)||s(e)},t.rgb2hex=function(e,r,t){return`#${a(255&e)}${a(255&r)}${a(255&t)}`},t.color2hex=o,t.encode_rgba=function([e,r,t,n]){return(255*e|0)<<24|(255*r|0)<<16|(255*t|0)<<8|255*n|0},t.decode_rgba=function(e){return[(e>>24&255)/255,(e>>16&255)/255,(e>>8&255)/255,(e>>0&255)/255]},t.color2rgba=function(e,r=1){if(!e)return[0,0,0,0];let t=o(e);t=t.replace(/ |#/g,\"\"),t.length<=4&&(t=t.replace(/(.)/g,\"$1$1\"));const n=t.match(/../g).map(e=>parseInt(e,16)/255);for(;n.length<3;)n.push(0);return n.length<4&&n.push(r),n.slice(0,4)},t.valid_rgb=s},\n", " function _(e,F,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.svg_colors={indianred:\"#CD5C5C\",lightcoral:\"#F08080\",salmon:\"#FA8072\",darksalmon:\"#E9967A\",lightsalmon:\"#FFA07A\",crimson:\"#DC143C\",red:\"#FF0000\",firebrick:\"#B22222\",darkred:\"#8B0000\",pink:\"#FFC0CB\",lightpink:\"#FFB6C1\",hotpink:\"#FF69B4\",deeppink:\"#FF1493\",mediumvioletred:\"#C71585\",palevioletred:\"#DB7093\",coral:\"#FF7F50\",tomato:\"#FF6347\",orangered:\"#FF4500\",darkorange:\"#FF8C00\",orange:\"#FFA500\",gold:\"#FFD700\",yellow:\"#FFFF00\",lightyellow:\"#FFFFE0\",lemonchiffon:\"#FFFACD\",lightgoldenrodyellow:\"#FAFAD2\",papayawhip:\"#FFEFD5\",moccasin:\"#FFE4B5\",peachpuff:\"#FFDAB9\",palegoldenrod:\"#EEE8AA\",khaki:\"#F0E68C\",darkkhaki:\"#BDB76B\",lavender:\"#E6E6FA\",thistle:\"#D8BFD8\",plum:\"#DDA0DD\",violet:\"#EE82EE\",orchid:\"#DA70D6\",fuchsia:\"#FF00FF\",magenta:\"#FF00FF\",mediumorchid:\"#BA55D3\",mediumpurple:\"#9370DB\",blueviolet:\"#8A2BE2\",darkviolet:\"#9400D3\",darkorchid:\"#9932CC\",darkmagenta:\"#8B008B\",purple:\"#800080\",indigo:\"#4B0082\",slateblue:\"#6A5ACD\",darkslateblue:\"#483D8B\",mediumslateblue:\"#7B68EE\",greenyellow:\"#ADFF2F\",chartreuse:\"#7FFF00\",lawngreen:\"#7CFC00\",lime:\"#00FF00\",limegreen:\"#32CD32\",palegreen:\"#98FB98\",lightgreen:\"#90EE90\",mediumspringgreen:\"#00FA9A\",springgreen:\"#00FF7F\",mediumseagreen:\"#3CB371\",seagreen:\"#2E8B57\",forestgreen:\"#228B22\",green:\"#008000\",darkgreen:\"#006400\",yellowgreen:\"#9ACD32\",olivedrab:\"#6B8E23\",olive:\"#808000\",darkolivegreen:\"#556B2F\",mediumaquamarine:\"#66CDAA\",darkseagreen:\"#8FBC8F\",lightseagreen:\"#20B2AA\",darkcyan:\"#008B8B\",teal:\"#008080\",aqua:\"#00FFFF\",cyan:\"#00FFFF\",lightcyan:\"#E0FFFF\",paleturquoise:\"#AFEEEE\",aquamarine:\"#7FFFD4\",turquoise:\"#40E0D0\",mediumturquoise:\"#48D1CC\",darkturquoise:\"#00CED1\",cadetblue:\"#5F9EA0\",steelblue:\"#4682B4\",lightsteelblue:\"#B0C4DE\",powderblue:\"#B0E0E6\",lightblue:\"#ADD8E6\",skyblue:\"#87CEEB\",lightskyblue:\"#87CEFA\",deepskyblue:\"#00BFFF\",dodgerblue:\"#1E90FF\",cornflowerblue:\"#6495ED\",royalblue:\"#4169E1\",blue:\"#0000FF\",mediumblue:\"#0000CD\",darkblue:\"#00008B\",navy:\"#000080\",midnightblue:\"#191970\",cornsilk:\"#FFF8DC\",blanchedalmond:\"#FFEBCD\",bisque:\"#FFE4C4\",navajowhite:\"#FFDEAD\",wheat:\"#F5DEB3\",burlywood:\"#DEB887\",tan:\"#D2B48C\",rosybrown:\"#BC8F8F\",sandybrown:\"#F4A460\",goldenrod:\"#DAA520\",darkgoldenrod:\"#B8860B\",peru:\"#CD853F\",chocolate:\"#D2691E\",saddlebrown:\"#8B4513\",sienna:\"#A0522D\",brown:\"#A52A2A\",maroon:\"#800000\",white:\"#FFFFFF\",snow:\"#FFFAFA\",honeydew:\"#F0FFF0\",mintcream:\"#F5FFFA\",azure:\"#F0FFFF\",aliceblue:\"#F0F8FF\",ghostwhite:\"#F8F8FF\",whitesmoke:\"#F5F5F5\",seashell:\"#FFF5EE\",beige:\"#F5F5DC\",oldlace:\"#FDF5E6\",floralwhite:\"#FFFAF0\",ivory:\"#FFFFF0\",antiquewhite:\"#FAEBD7\",linen:\"#FAF0E6\",lavenderblush:\"#FFF0F5\",mistyrose:\"#FFE4E1\",gainsboro:\"#DCDCDC\",lightgray:\"#D3D3D3\",lightgrey:\"#D3D3D3\",silver:\"#C0C0C0\",darkgray:\"#A9A9A9\",darkgrey:\"#A9A9A9\",gray:\"#808080\",grey:\"#808080\",dimgray:\"#696969\",dimgrey:\"#696969\",lightslategray:\"#778899\",lightslategrey:\"#778899\",slategray:\"#708090\",slategrey:\"#708090\",darkslategray:\"#2F4F4F\",darkslategrey:\"#2F4F4F\",black:\"#000000\"},r.is_svg_color=function(e){return e in r.svg_colors}},\n", " function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.NumberArray=Float32Array,e.ColorArray=Uint32Array;const s=r(25);class a{constructor(r,t){this.offsets=r,this.array=t}[s.equals](r,t){return t.arrays(this.offsets,r.offsets)&&t.arrays(this.array,r.array)}get length(){return this.offsets.length}clone(){return new a(new Uint32Array(this.offsets),new e.NumberArray(this.array))}static from(r){const t=r.length,s=new Uint32Array(t);let n=0;for(let e=0;e<t;e++){const t=r[e].length;s[e]=n,n+=t}const o=new e.NumberArray(n);for(let e=0;e<t;e++)o.set(r[e],s[e]);return new a(s,o)}*[Symbol.iterator](){const{offsets:r,length:t}=this;for(let e=0;e<t;e++)yield this.array.subarray(r[e],r[e+1])}get(r){const{offsets:t}=this;return this.array.subarray(t[r],t[r+1])}set(r,t){this.array.set(t,this.offsets[r])}}e.RaggedArray=a,a.__name__=\"RaggedArray\",a[Symbol.toStringTag]=\"RaggedArray\";var n=r(26);e.Indices=n.BitSet},\n", " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.equals=Symbol(\"equals\"),r.wildcard=Symbol(\"wildcard\");const n=Object.prototype.toString;class s{constructor(){this.a_stack=[],this.b_stack=[]}eq(t,e){if(Object.is(t,e))return!0;if(t===r.wildcard||e===r.wildcard)return!0;if(null==t||null==e)return t===e;const s=n.call(t);if(s!=n.call(e))return!1;switch(s){case\"[object Number]\":return this.numbers(t,e);case\"[object RegExp]\":case\"[object String]\":return\"\"+t==\"\"+e;case\"[object Date]\":case\"[object Boolean]\":return+t==+e}const{a_stack:o,b_stack:c}=this;let a=o.length;for(;a--;)if(o[a]===t)return c[a]===e;o.push(t),c.push(e);const i=(()=>{if(null!=t[r.equals]&&null!=e[r.equals])return t[r.equals](e,this);switch(s){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(\"\"+t,\"\"+e)}if(t instanceof Node)return this.nodes(t,e);throw Error(\"can't compare objects of type \"+s)})();return o.pop(),c.pop(),i}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n<r;n++)if(!this.eq(t[n],e[n]))return!1;return!0}iterables(t,e){const r=t[Symbol.iterator](),n=e[Symbol.iterator]();for(;;){const t=r.next(),e=n.next();if(t.done&&e.done)return!0;if(t.done||e.done)return!1;if(!this.eq(t.value,e.value))return!1}}maps(t,e){if(t.size!=e.size)return!1;for(const[r,n]of t)if(!e.has(r)||!this.eq(n,e.get(r)))return!1;return!0}sets(t,e){if(t.size!=e.size)return!1;for(const r of t)if(!e.has(r))return!1;return!0}objects(t,e){const r=Object.keys(t);if(r.length!=Object.keys(e).length)return!1;for(const n of r)if(!e.hasOwnProperty(n)||!this.eq(t[n],e[n]))return!1;return!0}nodes(t,e){return t.nodeType==e.nodeType&&(t.textContent==e.textContent&&!!this.iterables(t.childNodes,e.childNodes))}}r.Comparator=s,s.__name__="Comparator";const{abs:o}=Math;class c extends s{constructor(t=1e-4){super(),this.tolerance=t}numbers(t,e){return super.numbers(t,e)||o(t-e)<this.tolerance}}function a(t,e){return(new s).eq(t,e)}r.SimilarComparator=c,c.__name__="SimilarComparator",r.is_equal=a,r.is_similar=function(t,e,r){return new c(r).eq(t,e)},r.isEqual=a},n”, ” function _(t,s,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(11),i=t(9),n=t(25);class o{constructor(t,s=0){this.size=t,this[Symbol.toStringTag]="BitSet",this._count=null,this._nwords=Math.ceil(t/32),0==s||1==s?(this._array=new Uint32Array(this._nwords),1==s&&this._array.fill(4294967295)):(e.assert(s.length==this._nwords,"Initializer size mismatch"),this._array=s)}clone(){return new o(this.size,new Uint32Array(this._array))}[n.equals](t,s){if(!s.eq(this.size,t.size))return!1;const{_nwords:r}=this,e=this.size%r,i=0==e?r:r-1;for(let s=0;s<i;s++)if(this._array[s]!=t._array[s])return!1;if(0==e)return!0;{const s=1<<e-1,r=s-1^s;return(this._array[i]&r)==(t._array[i]&r)}}static all_set(t){return new o(t,1)}static all_unset(t){return new o(t,0)}static from_indices(t,s){const r=new o(t);for(const t of s)r.set(t);return r}static from_booleans(t,s){const r=new o(t),e=Math.min(t,s.length);for(let t=0;t<e;t++)s[t]&&r.set(t);return r}_check_bounds(t){e.assert(0<=t&&t<this.size,"Out of bounds")}get(t){this._check_bounds(t);const s=t>>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<<e:this._array[r]&=~(1<<e)}unset(t){this.set(t,!1)}*[Symbol.iterator](){yield*this.ones()}get count(){let t=this._count;return null==t&&(this._count=t=this._get_count()),t}_get_count(){const{_array:t,_nwords:s,size:r}=this;let e=0;for(let i=0,n=0;n<s;n++){const s=t[n];if(0==s)i+=32;else for(let t=0;t<32&&i<r;t++,i++)s>>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i<s;i++){const s=t[i];if(0!=s)for(let t=0;t<32&&e<r;t++,e++)s>>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i<s;i++){const s=t[i];if(4294967295!=s)for(let t=0;t<32&&e<r;t++,e++)s>>>t&1||(yield e);else e+=32}}_check_size(t){e.assert(this.size==t.size,"Size mismatch")}add(t){this._check_size(t);for(let s=0;s<this._nwords;s++)this._array[s]|=t._array[s]}intersect(t){this._check_size(t);for(let s=0;s<this._nwords;s++)this._array[s]&=t._array[s]}subtract(t){this._check_size(t);for(let s=0;s<this._nwords;s++){const r=this._array[s],e=t._array[s];this._array[s]=(r^e)&r}}union(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++)s._array[r]|=t._array[r];return s}intersection(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++)s._array[r]&=t._array[r];return s}difference(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++){const e=this._array[r],i=t._array[r];s._array[r]=(e^i)&e}return s}select(t){const s=this.count,r=new t.constructor(s);let e=0;for(const s of this)r[e++]=t[s];return r}}r.BitSet=o,o.__name__="BitSet";class a{constructor(t,s,r){this.nrows=t,this.ncols=s,this._matrix=new Array(t);for(let e=0;e<t;e++){this._matrix[e]=new Array(s);for(let t=0;t<s;t++)this._matrix[e][t]=r(e,t)}}at(t,s){return this._matrix[t][s]}*[Symbol.iterator](){for(let t=0;t<this.nrows;t++)for(let s=0;s<this.ncols;s++){const r=this._matrix[t][s];yield[r,t,s]}}*values(){for(const[t]of this)yield t}map(t){return new a(this.nrows,this.ncols,(s,r)=>t(this.at(s,r),s,r))}apply(t){const s=a.from(t),{nrows:r,ncols:e}=this;if(r==s.nrows&&e==s.ncols)return new a(r,e,(t,r)=>s.at(t,r)(this.at(t,r),t,r));throw new Error("dimensions don’t match")}to_sparse(){return[…this]}static from(t,s){if(t instanceof a)return t;if(null!=s){const r=t,e=Math.floor(r.length/s);return new a(e,s,(t,e)=>r[t*s+e])}{const s=t,r=t.length,e=i.min(s.map(t=>t.length));return new a(r,e,(t,r)=>s[t][r])}}}r.Matrix=a,a.__name__="Matrix"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class n{constructor(){this._dev=!1}set dev(e){this._dev=e}get dev(){return this._dev}}s.Settings=n,n.__name__="Settings",s.settings=new n},n”, ” function _(e,l,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(1).__importStar(e(18));t.Line={line_color:[a.Color,"black"],line_alpha:[a.Number,1],line_width:[a.Number,1],line_join:[a.LineJoin,"bevel"],line_cap:[a.LineCap,"butt"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.Fill={fill_color:[a.Color,"gray"],fill_alpha:[a.Number,1]},t.Hatch={hatch_color:[a.Color,"black"],hatch_alpha:[a.Number,1],hatch_scale:[a.Number,12],hatch_pattern:[a.NullString,null],hatch_weight:[a.Number,1],hatch_extra:[a.Any,{}]},t.Text={text_color:[a.Color,"#444444"],text_alpha:[a.Number,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSize,"16px"],text_font_style:[a.FontStyle,"normal"],text_align:[a.TextAlign,"left"],text_baseline:[a.TextBaseline,"bottom"],text_line_height:[a.Number,1.2]},t.LineScalar={line_color:[a.ColorScalar,"black"],line_alpha:[a.NumberScalar,1],line_width:[a.NumberScalar,1],line_join:[a.LineJoinScalar,"bevel"],line_cap:[a.LineCapScalar,"butt"],line_dash:[a.ArrayScalar,[]],line_dash_offset:[a.NumberScalar,0]},t.FillScalar={fill_color:[a.ColorScalar,"gray"],fill_alpha:[a.NumberScalar,1]},t.HatchScalar={hatch_color:[a.ColorScalar,"black"],hatch_alpha:[a.NumberScalar,1],hatch_scale:[a.NumberScalar,12],hatch_pattern:[a.NullStringScalar,null],hatch_weight:[a.NumberScalar,1],hatch_extra:[a.AnyScalar,{}]},t.TextScalar={text_color:[a.ColorScalar,"#444444"],text_alpha:[a.NumberScalar,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSizeScalar,"16px"],text_font_style:[a.FontStyleScalar,"normal"],text_align:[a.TextAlignScalar,"left"],text_baseline:[a.TextBaselineScalar,"bottom"],text_line_height:[a.NumberScalar,1.2]},t.LineVector={line_color:[a.ColorSpec,"black"],line_alpha:[a.NumberSpec,1],line_width:[a.NumberSpec,1],line_join:[a.LineJoin,"bevel"],line_cap:[a.LineCap,"butt"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.FillVector={fill_color:[a.ColorSpec,"gray"],fill_alpha:[a.NumberSpec,1]},t.HatchVector={hatch_color:[a.ColorSpec,"black"],hatch_alpha:[a.NumberSpec,1],hatch_scale:[a.NumberSpec,12],hatch_pattern:[a.NullStringSpec,null],hatch_weight:[a.NumberSpec,1],hatch_extra:[a.Any,{}]},t.TextVector={text_color:[a.ColorSpec,"#444444"],text_alpha:[a.NumberSpec,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSizeSpec,"16px"],text_font_style:[a.FontStyle,"normal"],text_align:[a.TextAlign,"left"],text_baseline:[a.TextBaseline,"bottom"],text_line_height:[a.Number,1.2]}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(27);function u(){const t=new Array(32);for(let e=0;e<32;e++)t[e]="0123456789ABCDEF".substr(Math.floor(16*Math.random()),1);return t[12]="4",t[16]="0123456789ABCDEF".substr(3&t[16].charCodeAt(0)|8,1),t.join("")}r.startsWith=function(t,e,r=0){return t.substr(r,e.length)==e},r.uuid4=u;let s=1e3;r.uniqueId=function(t){const e=n.settings.dev?"j"+s++:u();return null!=t?`${t}-${e}`:e},r.escape=function(t){return t.replace(/(?:[&<>"’])/g,t=>{switch(t){case"&":return"&";case"<":return"<";case">":return">";case’"’:return""";case"’":return"'";case"":return"`";default:return t}})},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,(t,e)=>{switch(e){case"amp":return"&";case"lt":return"<";case"gt":return">";case"quot":return’"’;case"#x27":return"’";case"#x60":return"";default:return e}})},r.use_strict=function(t){return"’use strict’;\n"+t}},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(8),a=t(11),n=t(25),i=Symbol("__ndarray__");class h extends Uint8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint8",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint8NDArray=h,h.__name__="Uint8NDArray";class _ extends Int8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int8",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int8NDArray=_,_.__name__="Int8NDArray";class u extends Uint16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint16",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint16NDArray=u,u.__name__="Uint16NDArray";class l extends Int16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int16",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int16NDArray=l,l.__name__="Int16NDArray";class y extends Uint32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint32NDArray=y,y.__name__="Uint32NDArray";class c extends Int32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int32NDArray=c,c.__name__="Int32NDArray";class p extends Float32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="float32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Float32NDArray=p,p.__name__="Float32NDArray";class o extends Float64Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="float64",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}function d(t){return r.isObject(t)&&t.__ndarray__==i}e.Float64NDArray=o,o.__name__="Float64NDArray",e.is_NDArray=d,e.ndarray=function(t,s={}){let{dtype:e}=s;null==e&&(e=t instanceof ArrayBuffer||r.isArray(t)?"float32":(()=>{switch(!0){case t instanceof Uint8Array:return"uint8";case t instanceof Int8Array:return"int8";case t instanceof Uint16Array:return"uint16";case t instanceof Int16Array:return"int16";case t instanceof Uint32Array:return"uint32";case t instanceof Int32Array:return"int32";case t instanceof Float32Array:return"float32";case t instanceof Float64Array:return"float64";default:a.unreachable()}})());const{shape:n}=s;switch(e){case"uint8":return new h(t,n);case"int8":return new _(t,n);case"uint16":return new u(t,n);case"int16":return new l(t,n);case"uint32":return new y(t,n);case"int32":return new c(t,n);case"float32":return new p(t,n);case"float64":return new o(t,n)}}},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),a=e(8),f=e(32),_=n.__importStar(e(30));function o(e){const r=new Uint8Array(e),t=Array.from(r).map(e=>String.fromCharCode(e));return btoa(t.join(""))}function s(e){const r=atob(e),t=r.length,n=new Uint8Array(t);for(let e=0,a=t;e<a;e++)n[e]=r.charCodeAt(e);return n.buffer}function i(e){const r=new Uint8Array(e.buffer,e.byteOffset,2*e.length);for(let e=0,t=r.length;e<t;e+=2){const t=r[e];r[e]=r[e+1],r[e+1]=t}}function u(e){const r=new Uint8Array(e.buffer,e.byteOffset,4*e.length);for(let e=0,t=r.length;e<t;e+=4){let t=r[e];r[e]=r[e+3],r[e+3]=t,t=r[e+1],r[e+1]=r[e+2],r[e+2]=t}}function c(e){const r=new Uint8Array(e.buffer,e.byteOffset,8*e.length);for(let e=0,t=r.length;e<t;e+=8){let t=r[e];r[e]=r[e+7],r[e+7]=t,t=r[e+1],r[e+1]=r[e+6],r[e+6]=t,t=r[e+2],r[e+2]=r[e+5],r[e+5]=t,t=r[e+3],r[e+3]=r[e+4],r[e+4]=t}}t.buffer_to_base64=o,t.base64_to_buffer=s,t.BYTE_ORDER=f.is_little_endian?"little":"big",t.swap16=i,t.swap32=u,t.swap64=c,t.is_NDArray_ref=function(e){return a.isPlainObject(e)&&("__buffer__"in e||"__ndarray__"in e)},t.decode_NDArray=function(e,r){const{shape:n,dtype:a,order:f}=e;let o;if("__buffer__"in e){const t=r.get(e.__buffer__);if(null==t)throw new Error(`buffer for ${e.__buffer__} not found);o=t}else o=s(e.__ndarray__);const l=(()=>{switch(a){case"uint8":return new _.Uint8NDArray(o,n);case"int8":return new _.Int8NDArray(o,n);case"uint16":return new _.Uint16NDArray(o,n);case"int16":return new _.Int16NDArray(o,n);case"uint32":return new _.Uint32NDArray(o,n);case"int32":return new _.Int32NDArray(o,n);case"float32":return new _.Float32NDArray(o,n);case"float64":return new _.Float64NDArray(o,n)}})();if(f!==t.BYTE_ORDER)switch(l.BYTES_PER_ELEMENT){case 2:i(l);break;case 4:u(l);break;case 8:c(l)}return l},t.encode_NDArray=function(e,r){const n={order:t.BYTE_ORDER,dtype:e.dtype,shape:e.shape};if(null!=r){const t=""+r.size;return r.set(t,e.buffer),Object.assign({__buffer__:t},n)}{const r=o(e.buffer);return Object.assign({__ndarray__:r},n)}}},n”, ” function _(e,n,i){Object.defineProperty(i,"__esModule",{value:!0}),i.is_ie=(()=>{const e="undefined"!=typeof navigator?navigator.userAgent:"";return e.indexOf("MSIE")>=0||e.indexOf("Trident")>0||e.indexOf("Edge")>0})(),i.is_mobile="undefined"!=typeof window&&("ontouchstart"in window||navigator.maxTouchPoints>0),i.is_little_endian=(()=>{const e=new ArrayBuffer(4),n=new Uint8Array(e);new Uint32Array(e)[1]=168496141;let i=!0;return 10==n[4]&&11==n[5]&&12==n[6]&&13==n[7]&&(i=!1),i})()},n”, ” function _(t,r,n){Object.defineProperty(n,"__esModule",{value:!0});const e=t(8),i=t(13);n.pretty=Symbol("pretty");class o{constructor(t){this.precision=null==t?void 0:t.precision}to_string(t){return function(t){return n.pretty in Object(t)}(t)?t[n.pretty](this):e.isBoolean(t)?this.boolean(t):e.isNumber(t)?this.number(t):e.isString(t)?this.string(t):e.isArray(t)?this.array(t):e.isIterable(t)?this.iterable(t):e.isPlainObject(t)?this.object(t):""+t}token(t){return t}boolean(t){return""+t}number(t){return null!=this.precision?t.toFixed(this.precision):""+t}string(t){return`"${t.replace(/’/g,"\\’")}"}array(t){const r=this.token,n=[];for(const r of t)n.push(this.to_string(r));return`${r("[")}${n.join(r(",")+" ")}${r("]")}}iterable(t){var r;const n=this.token,e=null!==(r=Object(t)[Symbol.toStringTag])&&void 0!==r?r:"Object",i=this.array(t);return`${e}${n("(")}${i}${n(")")}`}object(t){const r=this.token,n=[];for(const[e,o]of i.entries(t))n.push(${e}${r(":")} ${this.to_string(o)});return`${r("{")}${n.join(r(",")+" ")}${r("}")}`}}n.Printer=o,o.__name__="Printer",n.to_string=function(t,r){return new o(r).to_string(t)}},n”, ” function _(t,_,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(1);e.__exportStar(t(35),r),e.__exportStar(t(176),r),e.__exportStar(t(203),r),e.__exportStar(t(207),r),e.__exportStar(t(218),r),e.__exportStar(t(222),r),e.__exportStar(t(228),r),e.__exportStar(t(232),r),e.__exportStar(t(265),r),e.__exportStar(t(268),r),e.__exportStar(t(270),r),e.__exportStar(t(132),r),e.__exportStar(t(148),r),e.__exportStar(t(287),r),e.__exportStar(t(291),r),e.__exportStar(t(320),r),e.__exportStar(t(321),r),e.__exportStar(t(322),r),e.__exportStar(t(323),r),e.__exportStar(t(324),r),e.__exportStar(t(329),r),e.__exportStar(t(331),r),e.__exportStar(t(342),r),e.__exportStar(t(346),r)},n”, ” function _(a,e,o){Object.defineProperty(o,"__esModule",{value:!0});var r=a(36);o.Annotation=r.Annotation;var n=a(83);o.Arrow=n.Arrow;var t=a(84);o.ArrowHead=t.ArrowHead;var v=a(84);o.OpenHead=v.OpenHead;var l=a(84);o.NormalHead=l.NormalHead;var d=a(84);o.TeeHead=d.TeeHead;var i=a(84);o.VeeHead=i.VeeHead;var A=a(122);o.Band=A.Band;var H=a(124);o.BoxAnnotation=H.BoxAnnotation;var T=a(125);o.ColorBar=T.ColorBar;var p=a(160);o.Label=p.Label;var L=a(162);o.LabelSet=L.LabelSet;var b=a(163);o.Legend=b.Legend;var B=a(164);o.LegendItem=B.LegendItem;var S=a(166);o.PolyAnnotation=S.PolyAnnotation;var P=a(167);o.Slope=P.Slope;var g=a(168);o.Span=g.Span;var m=a(161);o.TextAnnotation=m.TextAnnotation;var w=a(169);o.Title=w.Title;var x=a(170);o.ToolbarPanel=x.ToolbarPanel;var s=a(171);o.Tooltip=s.Tooltip;var u=a(175);o.Whisker=u.Whisker},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const s=t(1).__importStar(t(37)),i=t(13),o=t(70);class _ extends o.RendererView{get panel(){return this.layout}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.visible,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible){const{width:t,height:e}=this._get_size();return{width:Math.round(t),height:Math.round(e)}}return{width:0,height:0}}_get_size(){throw new Error("not implemented")}set_data(t){const e=this.model.materialize_dataspecs(t);if(i.extend(this,e),this.plot_model.use_map){const t=this;null!=t._x&&([t._x,t._y]=s.project_xy(t._x,t._y)),null!=t._xs&&([t._xs,t._ys]=s.project_xsys(t._xs,t._ys))}}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}n.AnnotationView=_,_.__name__="AnnotationView";class a extends o.Renderer{constructor(t){super(t)}static init_Annotation(){this.override({level:"annotation"})}}n.Annotation=a,a.__name__="Annotation",a.init_Annotation()},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=n(1),o=r.__importDefault(n(38)),l=r.__importDefault(n(39)),c=n(24),i=new l.default("GOOGLE"),u=new l.default("WGS84"),a=o.default(u,i);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?a.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?a.inverse([n,t]):[NaN,NaN]};const s={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},f={lon:[-180,180],lat:[-85.06,85.06]},{min:_,max:p}=Math;function m(n,t){const r=_(n.length,t.length),o=new c.NumberArray(r),l=new c.NumberArray(r);return e.inplace.project_xy(n,t,o,l),[o,l]}e.clip_mercator=function(n,t,e){const[r,o]=s[e];return[p(n,r),_(t,o)]},e.in_bounds=function(n,t){const[e,r]=f[t];return e<n&&n<r},function(n){function t(n,t,r,o){const l=_(n.length,t.length);r=null!=r?r:n,o=null!=o?o:t;for(let c=0;c<l;c++){const l=n[c],i=t[c],[u,a]=e.wgs84_mercator.compute(l,i);r[c]=u,o[c]=a}}n.project_xy=t,n.project_xsys=function(n,e,r,o){const l=_(n.length,e.length);r=null!=r?r:n,o=null!=o?o:e;for(let c=0;c<l;c++)t(n[c],e[c],r[c],o[c])}}(e.inplace||(e.inplace={})),e.project_xy=m,e.project_xsys=function(n,t){const e=_(n.length,t.length),r=new Array(e),o=new Array(e);for(let l=0;l<e;l++){const[e,c]=m(n[l],t[l]);r[l]=e,o[l]=c}return[r,o]}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(1),o=r.__importDefault(e(39)),a=r.__importDefault(e(64));var i=o.default("WGS84");function c(e,n,t){var r,o,i;return Array.isArray(t)?(r=a.default(e,n,t)||{x:NaN,y:NaN},t.length>2?void 0!==e.name&&"geocent"===e.name||void 0!==n.name&&"geocent"===n.name?"number"==typeof r.z?[r.x,r.y,r.z].concat(t.splice(3)):[r.x,r.y,t[2]].concat(t.splice(3)):[r.x,r.y].concat(t.splice(2)):[r.x,r.y]):(o=a.default(e,n,t),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&"geocent"===e.name||void 0!==n.name&&"geocent"===n.name){if("x"===r||"y"===r||"z"===r)return}else if("x"===r||"y"===r)return;o[r]=t[r]})),o)}function u(e){return e instanceof o.default?e:e.oProj?e.oProj:o.default(e)}t.default=function(e,n,t){e=u(e);var r,o=!1;return void 0===n?(n=e,e=i,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=i,o=!0),n=u(n),t?c(e,n,t):(r={forward:function(t){return c(e,n,t)},inverse:function(t){return c(n,e,t)}},o&&(r.oProj=n),r)}},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),i=s.__importDefault(e(40)),u=s.__importDefault(e(51)),l=s.__importDefault(e(52)),o=e(60),r=s.__importDefault(e(62)),f=s.__importDefault(e(63)),d=s.__importDefault(e(47));function p(e,t){if(!(this instanceof p))return new p(e);t=t||function(e){if(e)throw e};var a=i.default(e);if("object"==typeof a){var s=p.projections.get(a.projName);if(s){if(a.datumCode&&"none"!==a.datumCode){var l=d.default(r.default,a.datumCode);l&&(a.datum_params=l.towgs84?l.towgs84.split(","):null,a.ellps=l.ellipse,a.datumName=l.datumName?l.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||"enu",a.ellps=a.ellps||"wgs84";var m=o.sphere(a.a,a.b,a.rf,a.ellps,a.sphere),n=o.eccentricity(m.a,m.b,m.rf,a.R_A),h=a.datum||f.default(a.datumCode,a.datum_params,m.a,m.b,n.es,n.ep2);u.default(this,a),u.default(this,s),this.a=m.a,this.b=m.b,this.rf=m.rf,this.sphere=m.sphere,this.es=n.es,this.e=n.e,this.ep2=n.ep2,this.datum=h,this.init(),t(null,this)}else t(e)}else t(e)}p.projections=l.default,p.projections.start(),a.default=p},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const u=t(1),n=u.__importDefault(t(41)),f=u.__importDefault(t(48)),i=u.__importDefault(t(43)),a=u.__importDefault(t(47));var o=["PROJECTEDCRS","PROJCRS","GEOGCS","GEOCCS","PROJCS","LOCAL_CS","GEODCRS","GEODETICCRS","GEODETICDATUM","ENGCRS","ENGINEERINGCRS"];var l=["3857","900913","3785","102113"];r.default=function(t){if(!function(t){return"string"==typeof t}(t))return t;if(function(t){return t in n.default}(t))return n.default[t];if(function(t){return o.some((function(e){return t.indexOf(e)>-1}))}(t)){var e=f.default(t);if(function(t){var e=a.default(t,"authority");if(e){var r=a.default(e,"epsg");return r&&l.indexOf(r)>-1}}(e))return n.default["EPSG:3857"];var r=function(t){var e=a.default(t,"extension");if(e)return a.default(e,"proj4")}(e);return r?i.default(r):e}return function(t){return"+"===t[0]}(t)?i.default(t):void 0}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=t(1),n=i.__importDefault(t(42)),f=i.__importDefault(t(43)),a=i.__importDefault(t(48));function l(t){var e=this;if(2===arguments.length){var r=arguments[1];"string"==typeof r?"+"===r.charAt(0)?l[t]=f.default(arguments[1]):l[t]=a.default(arguments[1]):l[t]=r}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?l.apply(e,t):l(t)}));if("string"==typeof t){if(t in l)return l[t]}else"EPSG"in t?l["EPSG:"+t.EPSG]=t:"ESRI"in t?l["ESRI:"+t.ESRI]=t:"IAU2000"in t?l["IAU2000:"+t.IAU2000]=t:console.log(t);return}}n.default(l),r.default=l},n”, ” function _(e,t,l){Object.defineProperty(l,"__esModule",{value:!0}),l.default=function(e){e("EPSG:4326","+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees"),e("EPSG:4269","+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees"),e("EPSG:3857","+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs"),e.WGS84=e["EPSG:4326"],e["EPSG:3785"]=e["EPSG:3857"],e.GOOGLE=e["EPSG:3857"],e["EPSG:900913"]=e["EPSG:3857"],e["EPSG:102113"]=e["EPSG:3857"]}},n”, ” function _(t,n,o){Object.defineProperty(o,"__esModule",{value:!0});const e=t(1),a=t(44),u=e.__importDefault(t(45)),r=e.__importDefault(t(46)),i=e.__importDefault(t(47));o.default=function(t){var n,o,e,f={},l=t.split("+").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split("=");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:"projName",datum:"datumCode",rf:function(t){f.rf=parseFloat(t)},lat_0:function(t){f.lat0=t*a.D2R},lat_1:function(t){f.lat1=t*a.D2R},lat_2:function(t){f.lat2=t*a.D2R},lat_ts:function(t){f.lat_ts=t*a.D2R},lon_0:function(t){f.long0=t*a.D2R},lon_1:function(t){f.long1=t*a.D2R},lon_2:function(t){f.long2=t*a.D2R},alpha:function(t){f.alpha=parseFloat(t)*a.D2R},lonc:function(t){f.longc=t*a.D2R},x_0:function(t){f.x0=parseFloat(t)},y_0:function(t){f.y0=parseFloat(t)},k_0:function(t){f.k0=parseFloat(t)},k:function(t){f.k0=parseFloat(t)},a:function(t){f.a=parseFloat(t)},b:function(t){f.b=parseFloat(t)},r_a:function(){f.R_A=!0},zone:function(t){f.zone=parseInt(t,10)},south:function(){f.utmSouth=!0},towgs84:function(t){f.datum_params=t.split(",").map((function(t){return parseFloat(t)}))},to_meter:function(t){f.to_meter=parseFloat(t)},units:function(t){f.units=t;var n=i.default(r.default,t);n&&(f.to_meter=n.to_meter)},from_greenwich:function(t){f.from_greenwich=t*a.D2R},pm:function(t){var n=i.default(u.default,t);f.from_greenwich=(n||parseFloat(t))*a.D2R},nadgrids:function(t){"@null"===t?f.datumCode="none":f.nadgrids=t},axis:function(t){3===t.length&&-1!=="ewnsud".indexOf(t.substr(0,1))&&-1!=="ewnsud".indexOf(t.substr(1,1))&&-1!=="ewnsud".indexOf(t.substr(2,1))&&(f.axis=t)}};for(n in l)o=l[n],n in c?"function"==typeof(e=c[n])?e(o):f[e]=o:f[n]=o;return"string"==typeof f.datumCode&&"WGS84"!==f.datumCode&&(f.datumCode=f.datumCode.toLowerCase()),f}},n”, ” function _(P,_,e){Object.defineProperty(e,"__esModule",{value:!0}),e.PJD_3PARAM=1,e.PJD_7PARAM=2,e.PJD_WGS84=4,e.PJD_NODATUM=5,e.SEC_TO_RAD=484813681109536e-20,e.HALF_PI=Math.PI/2,e.SIXTH=.16666666666666666,e.RA4=.04722222222222222,e.RA6=.022156084656084655,e.EPSLN=1e-10,e.D2R=.017453292519943295,e.R2D=57.29577951308232,e.FORTPI=Math.PI/4,e.TWO_PI=2*Math.PI,e.SPI=3.14159265359},n”, ” function _(e,o,r){Object.defineProperty(r,"__esModule",{value:!0});var a={};r.default=a,a.greenwich=0,a.lisbon=-9.131906111111,a.paris=2.337229166667,a.bogota=-74.080916666667,a.madrid=-3.687938888889,a.rome=12.452333333333,a.bern=7.439583333333,a.jakarta=106.807719444444,a.ferro=-17.666666666667,a.brussels=4.367975,a.stockholm=18.058277777778,a.athens=23.7163375,a.oslo=10.722916666667},n”, ” function _(e,t,f){Object.defineProperty(f,"__esModule",{value:!0}),f.default={ft:{to_meter:.3048},"us-ft":{to_meter:1200/3937}}},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});var o=/[\s_\-\/\(\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,""),f=-1;++f<a.length;)if((t=a[f]).toLowerCase().replace(o,"")===n)return e[t]}},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const o=e(1);const d=o.__importDefault(e(49)),r=e(50);function n(e){return.017453292519943295*e}a.default=function(e){var t=d.default(e),a=t.shift(),o=t.shift();t.unshift(["name",o]),t.unshift(["type",a]);var l={};return r.sExpr(t,l),function(e){if("GEOGCS"===e.type?e.projName="longlat":"LOCAL_CS"===e.type?(e.projName="identity",e.local=!0):"object"==typeof e.PROJECTION?e.projName=Object.keys(e.PROJECTION)[0]:e.projName=e.PROJECTION,e.AXIS){for(var t="",a=0,o=e.AXIS.length;a<o;++a){var d=e.AXIS[a][0].toLowerCase();-1!==d.indexOf("north")?t+="n":-1!==d.indexOf("south")?t+="s":-1!==d.indexOf("east")?t+="e":-1!==d.indexOf("west")&&(t+="w")}2===t.length&&(t+="u"),3===t.length&&(e.axis=t)}e.UNIT&&(e.units=e.UNIT.name.toLowerCase(),"metre"===e.units&&(e.units="meter"),e.UNIT.convert&&("GEOGCS"===e.type?e.DATUM&&e.DATUM.SPHEROID&&(e.to_meter=e.UNIT.convert*e.DATUM.SPHEROID.a):e.to_meter=e.UNIT.convert));var r=e.GEOGCS;function l(t){return t*(e.to_meter||1)}"GEOGCS"===e.type&&(r=e),r&&(r.DATUM?e.datumCode=r.DATUM.name.toLowerCase():e.datumCode=r.name.toLowerCase(),"d_"===e.datumCode.slice(0,2)&&(e.datumCode=e.datumCode.slice(2)),"new_zealand_geodetic_datum_1949"!==e.datumCode&&"new_zealand_1949"!==e.datumCode||(e.datumCode="nzgd49"),"wgs_1984"!==e.datumCode&&"world_geodetic_system_1984"!==e.datumCode||("Mercator_Auxiliary_Sphere"===e.PROJECTION&&(e.sphere=!0),e.datumCode="wgs84"),"_ferro"===e.datumCode.slice(-6)&&(e.datumCode=e.datumCode.slice(0,-6)),"_jakarta"===e.datumCode.slice(-8)&&(e.datumCode=e.datumCode.slice(0,-8)),~e.datumCode.indexOf("belge")&&(e.datumCode="rnb72"),r.DATUM&&r.DATUM.SPHEROID&&(e.ellps=r.DATUM.SPHEROID.name.replace("_19","").replace(/[Cc]larke\_18/,"clrk"),"international"===e.ellps.toLowerCase().slice(0,13)&&(e.ellps="intl"),e.a=r.DATUM.SPHEROID.a,e.rf=parseFloat(r.DATUM.SPHEROID.rf,10)),r.DATUM&&r.DATUM.TOWGS84&&(e.datum_params=r.DATUM.TOWGS84),~e.datumCode.indexOf("osgb_1936")&&(e.datumCode="osgb36"),~e.datumCode.indexOf("osni_1952")&&(e.datumCode="osni52"),(~e.datumCode.indexOf("tm65")||~e.datumCode.indexOf("geodetic_datum_of_1965"))&&(e.datumCode="ire65"),"ch1903+"===e.datumCode&&(e.datumCode="ch1903"),~e.datumCode.indexOf("israel")&&(e.datumCode="isr93")),e.b&&!isFinite(e.b)&&(e.b=e.a),[["standard_parallel_1","Standard_Parallel_1"],["standard_parallel_2","Standard_Parallel_2"],["false_easting","False_Easting"],["false_northing","False_Northing"],["central_meridian","Central_Meridian"],["latitude_of_origin","Latitude_Of_Origin"],["latitude_of_origin","Central_Parallel"],["scale_factor","Scale_Factor"],["k0","scale_factor"],["latitude_of_center","Latitude_Of_Center"],["latitude_of_center","Latitude_of_center"],["lat0","latitude_of_center",n],["longitude_of_center","Longitude_Of_Center"],["longitude_of_center","Longitude_of_center"],["longc","longitude_of_center",n],["x0","false_easting",l],["y0","false_northing",l],["long0","central_meridian",n],["lat0","latitude_of_origin",n],["lat0","standard_parallel_1",n],["lat1","standard_parallel_1",n],["lat2","standard_parallel_2",n],["azimuth","Azimuth"],["alpha","azimuth",n],["srsCode","name"]].forEach((function(t){return a=e,d=(o=t)[0],r=o[1],void(!(d in a)&&r in a&&(a[d]=a[r],3===o.length&&(a[d]=o[2](a[d]))));var a,o,d,r})),e.long0||!e.longc||"Albers_Conic_Equal_Area"!==e.projName&&"Lambert_Azimuthal_Equal_Area"!==e.projName||(e.long0=e.longc),e.lat_ts||!e.lat1||"Stereographic_South_Pole"!==e.projName&&"Polar Stereographic (variant B)"!==e.projName||(e.lat0=n(e.lat1>0?90:-90),e.lat_ts=e.lat1)}(l),l}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(t){return new a(t).output()};var i=/\s/,s=/[A-Za-z]/,h=/[A-Za-z84]/,o=/[,\]]/,n=/[\d\.E\-\+]/;function a(t){if("string"!=typeof t)throw new Error("not a string");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}a.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;i.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},a.prototype.afterquote=function(t){if(’"’===t)return this.word+=’"’,void(this.state=4);if(o.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error("havn’t handled \""+t+’" in afterquote yet, index ‘+this.place)},a.prototype.afterItem=function(t){return","===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):"]"===t?(this.level–,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},a.prototype.number=function(t){if(!n.test(t)){if(o.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error("havn’t handled \""+t+’" in number yet, index ‘+this.place)}this.word+=t},a.prototype.quoted=function(t){’"’!==t?this.word+=t:this.state=5},a.prototype.keyword=function(t){if(h.test(t))this.word+=t;else{if("["===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!o.test(t))throw new Error("havn’t handled \""+t+’" in keyword yet, index ‘+this.place);this.afterItem(t)}},a.prototype.neutral=function(t){if(s.test(t))return this.word=t,void(this.state=2);if(’"’===t)return this.word="",void(this.state=4);if(n.test(t))return this.word=t,void(this.state=3);if(!o.test(t))throw new Error("havn’t handled \""+t+’" in neutral yet, index ‘+this.place);this.afterItem(t)},a.prototype.output=function(){for(;this.place<this.text.length;)this.readCharicter();if(-1===this.state)return this.root;throw new Error(‘unable to parse string "’+this.text+’". State is ‘+this.state)}},n”, ” function _(e,r,a){function s(e,r,a){Array.isArray(r)&&(a.unshift(r),r=null);var s=r?{}:e,n=a.reduce((function(e,r){return c(r,e),e}),s);r&&(e[r]=n)}function c(e,r){if(Array.isArray(e)){var a=e.shift();if("PARAMETER"===a&&(a=e.shift()),1===e.length)return Array.isArray(e[0])?(r[a]={},void c(e[0],r[a])):void(r[a]=e[0]);if(e.length)if("TOWGS84"!==a){if("AXIS"===a)return a in r||(r[a]=[]),void r[a].push(e);var n;switch(Array.isArray(a)||(r[a]={}),a){case"UNIT":case"PRIMEM":case"VERT_DATUM":return r[a]={name:e[0].toLowerCase(),convert:e[1]},void(3===e.length&&c(e[2],r[a]));case"SPHEROID":case"ELLIPSOID":return r[a]={name:e[0],a:e[1],rf:e[2]},void(4===e.length&&c(e[3],r[a]));case"PROJECTEDCRS":case"PROJCRS":case"GEOGCS":case"GEOCCS":case"PROJCS":case"LOCAL_CS":case"GEODCRS":case"GEODETICCRS":case"GEODETICDATUM":case"EDATUM":case"ENGINEERINGDATUM":case"VERT_CS":case"VERTCRS":case"VERTICALCRS":case"COMPD_CS":case"COMPOUNDCRS":case"ENGINEERINGCRS":case"ENGCRS":case"FITTED_CS":case"LOCAL_DATUM":case"DATUM":return e[0]=["name",e[0]],void s(r,a,e);default:for(n=-1;++n<e.length;)if(!Array.isArray(e[n]))return c(e,r[a]);return s(r,a,e)}}else r[a]=e;else r[a]=!0}else r[e]=!0}Object.defineProperty(a,"__esModule",{value:!0}),a.sExpr=c},n”, ” function _(e,n,r){Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,n){var r,t;if(e=e||{},!n)return e;for(t in n)void 0!==(r=n[t])&&(e[t]=r);return e}},n”, ” function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const a=t(1),n=a.__importDefault(t(53)),r=a.__importDefault(t(59));var u=[n.default,r.default],f={},i=[];function d(t,e){var o=i.length;return t.names?(i[o]=t,t.names.forEach((function(t){f[t.toLowerCase()]=o})),this):(console.log(e),!0)}function c(t){if(!t)return!1;var e=t.toLowerCase();return void 0!==f[e]&&i[f[e]]?i[f[e]]:void 0}function l(){u.forEach(d)}o.add=d,o.get=c,o.start=l,o.default={start:l,add:d,get:c}},n”, ” function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const h=t(1),a=h.__importDefault(t(54)),e=h.__importDefault(t(55)),r=h.__importDefault(t(57)),n=h.__importDefault(t(58)),l=t(44);function u(){var t=this.b/this.a;this.es=1-t*t,"x0"in this||(this.x0=0),"y0"in this||(this.y0=0),this.e=Math.sqrt(this.es),this.lat_ts?this.sphere?this.k0=Math.cos(this.lat_ts):this.k0=a.default(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts)):this.k0||(this.k?this.k0=this.k:this.k0=1)}function o(t){var i,s,h=t.x,a=t.y;if(a*l.R2D>90&&a*l.R2D<-90&&h*l.R2D>180&&h*l.R2D<-180)return null;if(Math.abs(Math.abs(a)-l.HALF_PI)<=l.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(l.FORTPI+.5*a));else{var n=Math.sin(a),u=r.default(this.e,a,n);i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0-this.a*this.k0*Math.log(u)}return t.x=i,t.y=s,t}function f(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=l.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var r=Math.exp(-a/(this.a*this.k0));if(-9999===(s=n.default(this.e,r)))return null}return i=e.default(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=u,s.forward=o,s.inverse=f,s.names=["Mercator","Popular Visualisation Pseudo Mercator","Mercator_1SP","Mercator_Auxiliary_Sphere","merc"],s.default={init:u,forward:o,inverse:f,names:s.names}},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.default=function(e,t,n){var r=e*t;return n/Math.sqrt(1-r*r)}},n”, ” function _(e,t,u){Object.defineProperty(u,"__esModule",{value:!0});const n=e(1),a=e(44),f=n.__importDefault(e(56));u.default=function(e){return Math.abs(e)<=a.SPI?e:e-f.default(e)*a.TWO_PI}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return e<0?-1:1}},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const a=t(44);n.default=function(t,e,n){var o=t*n,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(a.HALF_PI-e))/o}},n”, ” function _(t,a,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(44);e.default=function(t,a){for(var e,r,o=.5*t,u=n.HALF_PI-2*Math.atan(a),f=0;f<=15;f++)if(e=t*Math.sin(u),u+=r=n.HALF_PI-2*Math.atan(a*Math.pow((1-e)/(1+e),o))-u,Math.abs(r)<=1e-10)return u;return-9999}},n”, ” function _(e,n,i){function t(){}function r(e){return e}Object.defineProperty(i,"__esModule",{value:!0}),i.init=t,i.forward=r,i.inverse=r,i.names=["longlat","identity"],i.default={init:t,forward:r,inverse:r,names:i.names}},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=e(1),n=e(44),f=a.__importStar(e(61)),u=a.__importDefault(e(47));r.eccentricity=function(e,t,r,a){var f=e*e,u=t*t,i=(f-u)/f,c=0;return a?(f=(e*=1-i*(n.SIXTH+i*(n.RA4+i*n.RA6)))*e,i=0):c=Math.sqrt(i),{es:i,e:c,ep2:(f-u)/u}},r.sphere=function(e,t,r,a,i){if(!e){var c=u.default(f.default,a);c||(c=f.WGS84),e=c.a,t=c.b,r=c.rf}return r&&!t&&(t=(1-1/r)*e),(0===r||Math.abs(e-t)<n.EPSLN)&&(i=!0,t=e),{a:e,b:t,rf:r,sphere:i}}},n”, ” function _(e,a,l){Object.defineProperty(l,"__esModule",{value:!0});var s={};l.default=s,s.MERIT={a:6378137,rf:298.257,ellipseName:"MERIT 1983"},s.SGS85={a:6378136,rf:298.257,ellipseName:"Soviet Geodetic System 85"},s.GRS80={a:6378137,rf:298.257222101,ellipseName:"GRS 1980(IUGG, 1980)"},s.IAU76={a:6378140,rf:298.257,ellipseName:"IAU 1976"},s.airy={a:6377563.396,b:6356256.91,ellipseName:"Airy 1830"},s.APL4={a:6378137,rf:298.25,ellipseName:"Appl. Physics. 1965"},s.NWL9D={a:6378145,rf:298.25,ellipseName:"Naval Weapons Lab., 1965"},s.mod_airy={a:6377340.189,b:6356034.446,ellipseName:"Modified Airy"},s.andrae={a:6377104.43,rf:300,ellipseName:"Andrae 1876 (Den., Iclnd.)"},s.aust_SA={a:6378160,rf:298.25,ellipseName:"Australian Natl & S. Amer. 1969"},s.GRS67={a:6378160,rf:298.247167427,ellipseName:"GRS 67(IUGG 1967)"},s.bessel={a:6377397.155,rf:299.1528128,ellipseName:"Bessel 1841"},s.bess_nam={a:6377483.865,rf:299.1528128,ellipseName:"Bessel 1841 (Namibia)"},s.clrk66={a:6378206.4,b:6356583.8,ellipseName:"Clarke 1866"},s.clrk80={a:6378249.145,rf:293.4663,ellipseName:"Clarke 1880 mod."},s.clrk58={a:6378293.645208759,rf:294.2606763692654,ellipseName:"Clarke 1858"},s.CPM={a:6375738.7,rf:334.29,ellipseName:"Comm. des Poids et Mesures 1799"},s.delmbr={a:6376428,rf:311.5,ellipseName:"Delambre 1810 (Belgium)"},s.engelis={a:6378136.05,rf:298.2566,ellipseName:"Engelis 1985"},s.evrst30={a:6377276.345,rf:300.8017,ellipseName:"Everest 1830"},s.evrst48={a:6377304.063,rf:300.8017,ellipseName:"Everest 1948"},s.evrst56={a:6377301.243,rf:300.8017,ellipseName:"Everest 1956"},s.evrst69={a:6377295.664,rf:300.8017,ellipseName:"Everest 1969"},s.evrstSS={a:6377298.556,rf:300.8017,ellipseName:"Everest (Sabah & Sarawak)"},s.fschr60={a:6378166,rf:298.3,ellipseName:"Fischer (Mercury Datum) 1960"},s.fschr60m={a:6378155,rf:298.3,ellipseName:"Fischer 1960"},s.fschr68={a:6378150,rf:298.3,ellipseName:"Fischer 1968"},s.helmert={a:6378200,rf:298.3,ellipseName:"Helmert 1906"},s.hough={a:6378270,rf:297,ellipseName:"Hough"},s.intl={a:6378388,rf:297,ellipseName:"International 1909 (Hayford)"},s.kaula={a:6378163,rf:298.24,ellipseName:"Kaula 1961"},s.lerch={a:6378139,rf:298.257,ellipseName:"Lerch 1979"},s.mprts={a:6397300,rf:191,ellipseName:"Maupertius 1738"},s.new_intl={a:6378157.5,b:6356772.2,ellipseName:"New International 1967"},s.plessis={a:6376523,rf:6355863,ellipseName:"Plessis 1817 (France)"},s.krass={a:6378245,rf:298.3,ellipseName:"Krassovsky, 1942"},s.SEasia={a:6378155,b:6356773.3205,ellipseName:"Southeast Asia"},s.walbeck={a:6376896,b:6355834.8467,ellipseName:"Walbeck"},s.WGS60={a:6378165,rf:298.3,ellipseName:"WGS 60"},s.WGS66={a:6378145,rf:298.25,ellipseName:"WGS 66"},s.WGS7={a:6378135,rf:298.26,ellipseName:"WGS 72"},l.WGS84=s.WGS84={a:6378137,rf:298.257223563,ellipseName:"WGS 84"},s.sphere={a:6370997,b:6370997,ellipseName:"Normal Sphere (r=6370997)"}},n”, ” function _(e,a,s){Object.defineProperty(s,"__esModule",{value:!0});var t={};s.default=t,t.wgs84={towgs84:"0,0,0",ellipse:"WGS84",datumName:"WGS84"},t.ch1903={towgs84:"674.374,15.056,405.346",ellipse:"bessel",datumName:"swiss"},t.ggrs87={towgs84:"-199.87,74.79,246.62",ellipse:"GRS80",datumName:"Greek_Geodetic_Reference_System_1987"},t.nad83={towgs84:"0,0,0",ellipse:"GRS80",datumName:"North_American_Datum_1983"},t.nad27={nadgrids:"@conus,@alaska,@ntv2_0.gsb,@ntv1_can.dat",ellipse:"clrk66",datumName:"North_American_Datum_1927"},t.potsdam={towgs84:"606.0,23.0,413.0",ellipse:"bessel",datumName:"Potsdam Rauenberg 1950 DHDN"},t.carthage={towgs84:"-263.0,6.0,431.0",ellipse:"clark80",datumName:"Carthage 1934 Tunisia"},t.hermannskogel={towgs84:"653.0,-212.0,449.0",ellipse:"bessel",datumName:"Hermannskogel"},t.osni52={towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"airy",datumName:"Irish National"},t.ire65={towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"mod_airy",datumName:"Ireland 1965"},t.rassadiran={towgs84:"-133.63,-157.5,-158.62",ellipse:"intl",datumName:"Rassadiran"},t.nzgd49={towgs84:"59.47,-5.04,187.44,0.47,-0.1,1.024,-4.5993",ellipse:"intl",datumName:"New Zealand Geodetic Datum 1949"},t.osgb36={towgs84:"446.448,-125.157,542.060,0.1502,0.2470,0.8421,-20.4894",ellipse:"airy",datumName:"Airy 1830"},t.s_jtsk={towgs84:"589,76,480",ellipse:"bessel",datumName:"S-JTSK (Ferro)"},t.beduaram={towgs84:"-106,-87,188",ellipse:"clrk80",datumName:"Beduaram"},t.gunung_segara={towgs84:"-403,684,41",ellipse:"bessel",datumName:"Gunung Segara Jakarta"},t.rnb72={towgs84:"106.869,-52.2978,103.724,-0.33657,0.456955,-1.84218,1",ellipse:"intl",datumName:"Reseau National Belge 1972"}},n”, ” function _(a,m,_){Object.defineProperty(_,"__esModule",{value:!0});const t=a(44);_.default=function(a,m,_,u,d,p){var r={};return r.datum_type=void 0===a||"none"===a?t.PJD_NODATUM:t.PJD_WGS84,m&&(r.datum_params=m.map(parseFloat),0===r.datum_params[0]&&0===r.datum_params[1]&&0===r.datum_params[2]||(r.datum_type=t.PJD_3PARAM),r.datum_params.length>3&&(0===r.datum_params[3]&&0===r.datum_params[4]&&0===r.datum_params[5]&&0===r.datum_params[6]||(r.datum_type=t.PJD_7PARAM,r.datum_params[3]*=t.SEC_TO_RAD,r.datum_params[4]*=t.SEC_TO_RAD,r.datum_params[5]*=t.SEC_TO_RAD,r.datum_params[6]=r.datum_params[6]/1e6+1))),r.a=_,r.b=u,r.es=d,r.ep2=p,r}},n”, ” function _(t,e,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t(1),u=t(44),m=r.__importDefault(t(65)),_=r.__importDefault(t(67)),o=r.__importDefault(t(39)),d=r.__importDefault(t(68)),f=r.__importDefault(t(69));a.default=function t(e,a,r){var n;if(Array.isArray(r)&&(r=d.default(r)),f.default(r),e.datum&&a.datum&&function(t,e){return(t.datum.datum_type===u.PJD_3PARAM||t.datum.datum_type===u.PJD_7PARAM)&&"WGS84"!==e.datumCode||(e.datum.datum_type===u.PJD_3PARAM||e.datum.datum_type===u.PJD_7PARAM)&&"WGS84"!==t.datumCode}(e,a)&&(r=t(e,n=new o.default("WGS84"),r),e=n),"enu"!==e.axis&&(r=_.default(e,!1,r)),"longlat"===e.projName)r={x:r.x*u.D2R,y:r.y*u.D2R,z:r.z||0};else if(e.to_meter&&(r={x:r.x*e.to_meter,y:r.y*e.to_meter,z:r.z||0}),!(r=e.inverse(r)))return;return e.from_greenwich&&(r.x+=e.from_greenwich),r=m.default(e.datum,a.datum,r),a.from_greenwich&&(r={x:r.x-a.from_greenwich,y:r.y,z:r.z||0}),"longlat"===a.projName?r={x:r.x*u.R2D,y:r.y*u.R2D,z:r.z||0}:(r=a.forward(r),a.to_meter&&(r={x:r.x/a.to_meter,y:r.y/a.to_meter,z:r.z||0})),"enu"!==a.axis?_.default(a,!0,r):r}},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const u=e(44),o=e(66);function _(e){return e===u.PJD_3PARAM||e===u.PJD_7PARAM}a.default=function(e,t,a){return o.compareDatums(e,t)||e.datum_type===u.PJD_NODATUM||t.datum_type===u.PJD_NODATUM?a:e.es!==t.es||e.a!==t.a||_(e.datum_type)||_(t.datum_type)?(a=o.geodeticToGeocentric(a,e.es,e.a),_(e.datum_type)&&(a=o.geocentricToWgs84(a,e.datum_type,e.datum_params)),_(t.datum_type)&&(a=o.geocentricFromWgs84(a,t.datum_type,t.datum_params)),o.geocentricToGeodetic(a,t.es,t.a,t.b)):a}},n”, ” function _(a,t,r){Object.defineProperty(r,"__esModule",{value:!0});const e=a(44);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===e.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==e.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,u,s,_,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-e.HALF_PI&&d>-1.001*e.HALF_PI)d=-e.HALF_PI;else if(d>e.HALF_PI&&d<1.001*e.HALF_PI)d=e.HALF_PI;else{if(d<-e.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>e.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),u=Math.sin(d),_=Math.cos(d),s=u*u,{x:((m=r/Math.sqrt(1-t*s))+i)*_*Math.cos(n),y:(m+i)*_*Math.sin(n),z:(m*(1-t)+i)*u}},r.geocentricToGeodetic=function(a,t,r,m){var u,s,_,n,d,i,p,P,o,y,M,z,c,A,x,f=a.x,h=a.y,I=a.z?a.z:0;if(u=Math.sqrt(f*f+h*h),s=Math.sqrt(f*f+h*h+I*I),u/r<1e-12){if(A=0,s/r<1e-12)return e.HALF_PI,x=-m,{x:a.x,y:a.y,z:a.z}}else A=Math.atan2(h,f);_=I/s,P=(n=u/s)*(1-t)*(d=1/Math.sqrt(1-t*(2-t)*n*n)),o=_*d,c=0;do{c++,i=t*(p=r/Math.sqrt(1-t*o*o))/(p+(x=u*P+I*o-p*(1-t*o*o))),z=(M=_*(d=1/Math.sqrt(1-i*(2-i)*n*n)))*P-(y=n*(1-i)*d)*o,P=y,o=M}while(z*z>1e-24&&c<30);return{x:A,y:Math.atan(M/Math.abs(y)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-_*a.z)+u,z:i*(-n*a.x+_*a.y+a.z)+s}}},r.geocentricFromWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-u)/i,o=(a.z-s)/i;return{x:p+d*P-n*o,y:-d*p+P+_*o,z:n*p-_*P+o}}}},n”, ” function _(e,a,i){Object.defineProperty(i,"__esModule",{value:!0}),i.default=function(e,a,i){var s,n,r,c=i.x,d=i.y,u=i.z||0,f={};for(r=0;r<3;r++)if(!a||2!==r||void 0!==i.z)switch(0===r?(s=c,n=-1!=="ew".indexOf(e.axis[r])?"x":"y"):1===r?(s=d,n=-1!=="ns".indexOf(e.axis[r])?"y":"x"):(s=u,n="z"),e.axis[r]){case"e":case"w":case"n":case"s":f[n]=s;break;case"u":void 0!==i[n]&&(f.z=s);break;case"d":void 0!==i[n]&&(f.z=-s);break;default:return null}return f}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var n={x:e[0],y:e[1]};return e.length>2&&(n.z=e[2]),e.length>3&&(n.m=e[3]),n}},n”, ” function _(e,i,n){function t(e){if("function"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError("coordinates must be finite numbers")}if("number"!=typeof e||e!=e||!isFinite(e))throw new TypeError("coordinates must be finite numbers")}Object.defineProperty(n,"__esModule",{value:!0}),n.default=function(e){t(e.x),t(e.y)}},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),r=e(71),s=n.__importStar(e(74)),_=n.__importStar(e(18)),a=e(81),o=e(82);class l extends r.View{get coordinates(){return this._coordinates}initialize(){super.initialize(),this.visuals=new s.Visuals(this.model),this.needs_webgl_blit=!1,this._initialize_coordinates()}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],()=>this._initialize_coordinates())}_initialize_coordinates(){const{x_range_name:e,y_range_name:i}=this.model,{frame:t}=this.plot_view,n=t.x_scales.get(e),r=t.y_scales.get(i);this._coordinates=new o.CoordinateTransform(n,r)}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.plot_view.canvas_view;return"overlay"==this.model.level?e:i}request_render(){this.plot_view.request_render()}notify_finished(){this.plot_view.notify_finished()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}}t.RendererView=l,l.__name__="RendererView";class d extends a.Model{constructor(e){super(e)}static init_Renderer(){this.define({level:[_.RenderLevel],visible:[_.Boolean,!0],x_range_name:[_.String,"default"],y_range_name:[_.String,"default"]})}}t.Renderer=d,d.__name__="Renderer",d.init_Renderer()},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),r=t(15),n=t(72),o=t(8),h=i.__importDefault(t(73));class a{constructor(t){if(this.removed=new r.Signal0(this,"removed"),this._ready=Promise.resolve(void 0),null==t.model)throw new Error("model of a view wasn’t configured");this.model=t.model,this._parent=t.parent}get ready(){return this._ready}connect(t,e){return t.connect((t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then(()=>i)},this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=n.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this._parent=void 0,this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get parent(){if(void 0!==this._parent)return this._parent;throw new Error("parent of a view wasn’t configured")}get is_root(){return null===this.parent}get root(){return this.is_root?this:this.parent.root}assert_root(){if(!this.is_root)throw new Error(this.toString()+" is not a root layout")}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){r.Signal.disconnectReceiver(this)}on_change(t,e){for(const s of o.isArray(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[h.default]}}s.View=a,a.__name__="View"},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(8),o=t(13),s=t=>(e={},…n)=>{const s=document.createElement(t);s.classList.add("bk");for(let[t,n]of o.entries(e))if(null!=n&&(!i.isBoolean(n)||n))if("class"===t&&(i.isString(n)&&(n=n.split(/\s+/)),i.isArray(n)))for(const t of n)null!=t&&s.classList.add(t);else if("style"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.style[t]=e;else if("data"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.dataset[t]=e;else s.setAttribute(t,n);function l(t){if(i.isString(t))s.appendChild(document.createTextNode(t));else if(t instanceof Node)s.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)s.appendChild(e);else if(null!=t&&!1!==t)throw new Error("expected a DOM element, string, false or null, got "+JSON.stringify(t))}for(const t of n)if(i.isArray(t))for(const e of t)l(e);else l(t);return s};function l(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function r(t,…e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function a(t,e){const n=Element.prototype;return(n.matches||n.webkitMatchesSelector||n.mozMatchesSelector||n.msMatchesSelector).call(t,e)}function c(t){return parseFloat(t)||0}function h(t){const e=getComputedStyle(t);return{border:{top:c(e.borderTopWidth),bottom:c(e.borderBottomWidth),left:c(e.borderLeftWidth),right:c(e.borderRightWidth)},margin:{top:c(e.marginTop),bottom:c(e.marginBottom),left:c(e.marginLeft),right:c(e.marginRight)},padding:{top:c(e.paddingTop),bottom:c(e.paddingBottom),left:c(e.paddingLeft),right:c(e.paddingRight)}}}function d(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,…n){return s(t)(e,…n)},n.div=s("div"),n.span=s("span"),n.canvas=s("canvas"),n.link=s("link"),n.style=s("style"),n.a=s("a"),n.p=s("p"),n.i=s("i"),n.pre=s("pre"),n.button=s("button"),n.label=s("label"),n.input=s("input"),n.select=s("select"),n.option=s("option"),n.optgroup=s("optgroup"),n.textarea=s("textarea"),n.nbsp=function(){return document.createTextNode(" ")},n.append=function(t,…e){for(const n of e)t.appendChild(n)},n.remove=l,n.removeElement=l,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=r,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=""},n.undisplay=function(t){t.style.display="none"},n.show=function(t){t.style.visibility=""},n.hide=function(t){t.style.visibility="hidden"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=a,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(a(n,e))return n;return null},n.extents=h,n.size=d,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=h(t),{width:s,height:l}=d(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=h(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=e.x+"px",i.top=e.y+"px",i.width=e.width+"px",i.height=e.height+"px",null==n)i.margin="";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class f{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e<this.classList.length;e++){const n=this.classList.item(e);null!=n&&t.push(n)}return t}has(t){return this.classList.contains(t)}add(…t){for(const e of t)this.classList.add(e);return this}remove(…t){for(const e of t)this.classList.remove(e);return this}clear(){for(const t of this.values)"bk"!=t&&this.classList.remove(t);return this}toggle(t,e){return(null!=e?e:!this.has(t))?this.add(t):this.remove(t),this}}var u;function p(t,e,n){const{width:i,height:o,position:s,display:l}=t.style;t.style.position="absolute",t.style.display="",t.style.width=null!=e.width&&e.width!=1/0?e.width+"px":"auto",t.style.height=null!=e.height&&e.height!=1/0?e.height+"px":"auto";try{return n()}finally{t.style.position=s,t.style.display=l,t.style.width=i,t.style.height=o}}n.ClassList=f,f.__name__="ClassList",n.classes=function(t){return new f(t)},n.toggle_attribute=function(t,e,n){null==n&&(n=!t.hasAttribute(e)),n?t.setAttribute(e,"true"):t.removeAttribute(e)},(u=n.Keys||(n.Keys={}))[u.Backspace=8]="Backspace",u[u.Tab=9]="Tab",u[u.Enter=13]="Enter",u[u.Esc=27]="Esc",u[u.PageUp=33]="PageUp",u[u.PageDown=34]="PageDown",u[u.Left=37]="Left",u[u.Up=38]="Up",u[u.Right=39]="Right",u[u.Down=40]="Down",u[u.Delete=46]="Delete",n.undisplayed=function(t,e){const{display:n}=t.style;t.style.display="none";try{return e()}finally{t.style.display=n}},n.unsized=function(t,e){return p(t,{},e)},n.sized=p;class g{constructor(t){this.root=t,this.known=new Set,this.style=n.style({type:"text/css"}),r(t,this.style)}append(t){this.known.has(t)||(this.style.appendChild(document.createTextNode(t)),this.known.add(t))}}n.StyleSheet=g,g.__name__="StyleSheet",n.stylesheet=new g(document.head)},n”, ” function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default="\n.bk-root {\n position: relative;\n width: auto;\n height: auto;\n z-index: 0;\n box-sizing: border-box;\n font-family: Helvetica, Arial, sans-serif;\n font-size: 13px;\n}\n.bk-root .bk,\n.bk-root .bk:before,\n.bk-root .bk:after {\n box-sizing: inherit;\n margin: 0;\n border: 0;\n padding: 0;\n background-image: none;\n font-family: inherit;\n font-size: 100%;\n line-height: 1.42857143;\n}\n.bk-root pre.bk {\n font-family: Courier, monospace;\n}\n"},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),l=s.__importStar(e(28)),c=s.__importStar(e(18)),i=e(22),o=e(8),r=e(75),h=e(77);function n(e,t){const[a,s,l,c]=o.isString(e)?i.color2rgba(e):i.decode_rgba(e);return`rgba(${255*a}, ${255*s}, ${255*l}, ${1==c?t:c})`}function _(e,t,a){e.moveTo(0,a+.5),e.lineTo(t,a+.5),e.stroke()}function u(e,t,a){e.moveTo(a+.5,0),e.lineTo(a+.5,t),e.stroke()}function v(e,t){e.moveTo(0,t),e.lineTo(t,0),e.stroke(),e.moveTo(0,0),e.lineTo(t,t),e.stroke()}a.hatch_aliases={" ":"blank",".":"dot",o:"ring","-":"horizontal_line","|\":\"vertical_line\",\"+\":\"cross\",'\"':\"horizontal_dash\",\":\":\"vertical_dash\",\"@\":\"spiral\",\"/\":\"right_diagonal_line\",\"\\\\\":\"left_diagonal_line\",x:\"diagonal_cross\",\",\":\"right_diagonal_dash\",\"`\":\"left_diagonal_dash\",v:\"horizontal_wave\",\">\":\"vertical_wave\",\"*\":\"criss_cross\"};class p{constructor(e,t=\"\"){this.obj=e,this.prefix=t,this.cache={};for(const a of this.attrs)this[a]=e.properties[t+a]}warm_cache(e,t){for(const a of this.attrs){const s=this.obj.properties[this.prefix+a];if(void 0!==s.spec.value)this.cache[a]=s.spec.value;else{if(!(null!=e&&s instanceof c.VectorSpec))throw new Error(\"source is required with a vectorized visual property\");{const l=s.array(e),c=null!=t?t.select(l):l;this.cache[a+\"_array\"]=c}}}}cache_select(e,t){const a=this.obj.properties[this.prefix+e];let s;return void 0!==a.spec.value?this.cache[e]=s=a.spec.value:this.cache[e]=s=this.cache[e+\"_array\"][t],s}get_array(e){return this.cache[e+\"_array\"]}set_vectorize(e,t){this._set_vectorize(e,t)}}a.ContextProperties=p,p.__name__=\"ContextProperties\";class f extends p{set_value(e){const t=this.line_color.value(),a=this.line_alpha.value();e.strokeStyle=n(t,a),e.lineWidth=this.line_width.value(),e.lineJoin=this.line_join.value(),e.lineCap=this.line_cap.value(),e.lineDash=this.line_dash.value(),e.lineDashOffset=this.line_dash_offset.value()}get doit(){return!(null===this.line_color.spec.value||0==this.line_alpha.spec.value||0==this.line_width.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"line_color\",t),s=this.cache_select(\"line_alpha\",t),l=this.cache_select(\"line_width\",t),c=this.cache_select(\"line_join\",t),i=this.cache_select(\"line_cap\",t),o=this.cache_select(\"line_dash\",t),r=this.cache_select(\"line_dash_offset\",t);e.strokeStyle=n(a,s),e.lineWidth=l,e.lineJoin=c,e.lineCap=i,e.lineDash=o,e.lineDashOffset=r}color_value(){return n(this.line_color.value(),this.line_alpha.value())}}a.Line=f,f.__name__=\"Line\",f.prototype.attrs=Object.keys(l.LineVector);class d extends p{set_value(e){const t=this.fill_color.value(),a=this.fill_alpha.value();e.fillStyle=n(t,a)}get doit(){return!(null===this.fill_color.spec.value||0==this.fill_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"fill_color\",t),s=this.cache_select(\"fill_alpha\",t);e.fillStyle=n(a,s)}color_value(){return n(this.fill_color.value(),this.fill_alpha.value())}}a.Fill=d,d.__name__=\"Fill\",d.prototype.attrs=Object.keys(l.FillVector);class k extends p{cache_select(e,t){let s;if(\"pattern\"==e){const e=this.cache_select(\"hatch_color\",t),s=this.cache_select(\"hatch_alpha\",t),l=this.cache_select(\"hatch_scale\",t),c=this.cache_select(\"hatch_pattern\",t),i=this.cache_select(\"hatch_weight\",t),{hatch_extra:o}=this.cache;if(null!=o&&o.hasOwnProperty(c)){const t=o[c];this.cache.pattern=t.get_pattern(e,s,l,i)}else this.cache.pattern=t=>{const o=t instanceof r.SVGRenderingContext2D?\"svg\":\"canvas\",p=new h.CanvasLayer(o,!0);return p.resize(l,l),p.prepare(),function(e,t,s,l,c,i){var o;const r=c,h=r/2,p=h/2;switch(e.strokeStyle=n(s,l),e.lineCap=\"square\",e.fillStyle=s,e.lineWidth=i,null!==(o=a.hatch_aliases[t])&&void 0!==o?o:t){case\"blank\":break;case\"dot\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":_(e,r,h);break;case\"vertical_line\":u(e,r,h);break;case\"cross\":_(e,r,h),u(e,r,h);break;case\"horizontal_dash\":_(e,h,h);break;case\"vertical_dash\":u(e,h,h);break;case\"spiral\":{const t=r/30;e.moveTo(h,h);for(let a=0;a<360;a++){const s=.1*a,l=h+t*s*Math.cos(s),c=h+t*s*Math.sin(s);e.lineTo(l,c)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-p,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(5*p+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(p+.5,r),e.lineTo(.5-p,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(5*p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":v(e,r);break;case\"right_diagonal_dash\":e.moveTo(p+.5,3*p+.5),e.lineTo(3*p+.5,p+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(p+.5,p+.5),e.lineTo(3*p+.5,3*p+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,p),e.lineTo(h,3*p),e.lineTo(r,p),e.stroke();break;case\"vertical_wave\":e.moveTo(p,0),e.lineTo(3*p,h),e.lineTo(p,r),e.stroke();break;case\"criss_cross\":v(e,r),_(e,r,h),u(e,r,h)}}(p.ctx,c,e,s,l,i),t.createPattern(p.canvas,\"repeat\")}}else s=super.cache_select(e,t);return s}_try_defer(e){const{hatch_pattern:t,hatch_extra:a}=this.cache;if(null!=a&&a.hasOwnProperty(t)){a[t].onload(e)}}get doit(){return!(null===this.hatch_color.spec.value||0==this.hatch_alpha.spec.value||" "==this.hatch_pattern.spec.value||"blank"==this.hatch_pattern.spec.value||null===this.hatch_pattern.spec.value)}doit2(e,t,a,s){if(!this.doit)return;this.cache_select("pattern",t);null==this.cache.pattern(e)?this._try_defer(s):(this.set_vectorize(e,t),a())}_set_vectorize(e,t){this.cache_select("pattern",t),e.fillStyle=this.cache.pattern(e)}color_value(){return n(this.hatch_color.value(),this.hatch_alpha.value())}}a.Hatch=k,k.__name__="Hatch",k.prototype.attrs=Object.keys(l.HatchVector);class x extends p{color_value(){return n(this.text_color.value(),this.text_alpha.value())}font_value(){const e=this.text_font.value(),t=this.text_font_size.value();return`${this.text_font_style.value()} ${t} ${e}`}v_font_value(e){super.cache_select("text_font_style",e),super.cache_select("text_font_size",e),super.cache_select("text_font",e);const{text_font_style:t,text_font_size:a,text_font:s}=this.cache;return`${t} ${a} ${s}`}cache_select(e,t){let a;return"font"==e?this.cache.font=a=this.v_font_value(t):a=super.cache_select(e,t),a}set_value(e){const t=this.text_color.value(),a=this.text_alpha.value();e.fillStyle=n(t,a),e.font=this.font_value(),e.textAlign=this.text_align.value(),e.textBaseline=this.text_baseline.value()}get doit(){return!(null===this.text_color.spec.value||0==this.text_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select("text_color",t),s=this.cache_select("text_alpha",t),l=this.cache_select("font",t),c=this.cache_select("text_align",t),i=this.cache_select("text_baseline",t);e.fillStyle=n(a,s),e.font=l,e.textAlign=c,e.textBaseline=i}}a.Text=x,x.__name__="Text",x.prototype.attrs=Object.keys(l.TextVector);class b{constructor(e){for(const t of e._mixins){const[a,s=""]=t.split(":");let l;switch(a){case"line":l=f;break;case"fill":l=d;break;case"hatch":l=k;break;case"text":l=x;break;default:throw new Error("unknown visual: "+a)}this[s+a]=new l(e,s)}}warm_cache(e,t){for(const a in this)if(this.hasOwnProperty(a)){const s=this[a];s instanceof p&&s.warm_cache(e,t)}}}a.Visuals=b,b.__name__="Visuals"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(76),n=t(8),r=t(72);function a(t){if(!t)throw new Error("cannot create a random attribute name for an undefined object");const e="ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";let i="";do{i="";for(let t=0;t<12;t++)i+=e[Math.floor(Math.random()*e.length)]}while(t[i]);return i}function o(t){const e={left:"start",right:"end",center:"middle",start:"start",end:"end"};return e[t]||e.start}function l(t){const e={alphabetic:"alphabetic",hanging:"hanging",top:"text-before-edge",bottom:"text-after-edge",middle:"central"};return e[t]||e.alphabetic}const h=function(t,e){const i=new Map,s=t.split(",");e=e||10;for(let t=0;t<s.length;t+=2){const n="&"+s[t+1]+";",r=parseInt(s[t],e);i.set(n,"&#"+r+";")}return i.set("\\xa0"," "),i}("50,nbsp,51,iexcl,52,cent,53,pound,54,curren,55,yen,56,brvbar,57,sect,58,uml,59,copy,5a,ordf,5b,laquo,5c,not,5d,shy,5e,reg,5f,macr,5g,deg,5h,plusmn,5i,sup2,5j,sup3,5k,acute,5l,micro,5m,para,5n,middot,5o,cedil,5p,sup1,5q,ordm,5r,raquo,5s,frac14,5t,frac12,5u,frac34,5v,iquest,60,Agrave,61,Aacute,62,Acirc,63,Atilde,64,Auml,65,Aring,66,AElig,67,Ccedil,68,Egrave,69,Eacute,6a,Ecirc,6b,Euml,6c,Igrave,6d,Iacute,6e,Icirc,6f,Iuml,6g,ETH,6h,Ntilde,6i,Ograve,6j,Oacute,6k,Ocirc,6l,Otilde,6m,Ouml,6n,times,6o,Oslash,6p,Ugrave,6q,Uacute,6r,Ucirc,6s,Uuml,6t,Yacute,6u,THORN,6v,szlig,70,agrave,71,aacute,72,acirc,73,atilde,74,auml,75,aring,76,aelig,77,ccedil,78,egrave,79,eacute,7a,ecirc,7b,euml,7c,igrave,7d,iacute,7e,icirc,7f,iuml,7g,eth,7h,ntilde,7i,ograve,7j,oacute,7k,ocirc,7l,otilde,7m,ouml,7n,divide,7o,oslash,7p,ugrave,7q,uacute,7r,ucirc,7s,uuml,7t,yacute,7u,thorn,7v,yuml,ci,fnof,sh,Alpha,si,Beta,sj,Gamma,sk,Delta,sl,Epsilon,sm,Zeta,sn,Eta,so,Theta,sp,Iota,sq,Kappa,sr,Lambda,ss,Mu,st,Nu,su,Xi,sv,Omicron,t0,Pi,t1,Rho,t3,Sigma,t4,Tau,t5,Upsilon,t6,Phi,t7,Chi,t8,Psi,t9,Omega,th,alpha,ti,beta,tj,gamma,tk,delta,tl,epsilon,tm,zeta,tn,eta,to,theta,tp,iota,tq,kappa,tr,lambda,ts,mu,tt,nu,tu,xi,tv,omicron,u0,pi,u1,rho,u2,sigmaf,u3,sigma,u4,tau,u5,upsilon,u6,phi,u7,chi,u8,psi,u9,omega,uh,thetasym,ui,upsih,um,piv,812,bull,816,hellip,81i,prime,81j,Prime,81u,oline,824,frasl,88o,weierp,88h,image,88s,real,892,trade,89l,alefsym,8cg,larr,8ch,uarr,8ci,rarr,8cj,darr,8ck,harr,8dl,crarr,8eg,lArr,8eh,uArr,8ei,rArr,8ej,dArr,8ek,hArr,8g0,forall,8g2,part,8g3,exist,8g5,empty,8g7,nabla,8g8,isin,8g9,notin,8gb,ni,8gf,prod,8gh,sum,8gi,minus,8gn,lowast,8gq,radic,8gt,prop,8gu,infin,8h0,ang,8h7,and,8h8,or,8h9,cap,8ha,cup,8hb,int,8hk,there4,8hs,sim,8i5,cong,8i8,asymp,8j0,ne,8j1,equiv,8j4,le,8j5,ge,8k2,sub,8k3,sup,8k4,nsub,8k6,sube,8k7,supe,8kl,oplus,8kn,otimes,8l5,perp,8m5,sdot,8o8,lceil,8o9,rceil,8oa,lfloor,8ob,rfloor,8p9,lang,8pa,rang,9ea,loz,9j0,spades,9j3,clubs,9j5,hearts,9j6,diams,ai,OElig,aj,oelig,b0,Scaron,b1,scaron,bo,Yuml,m6,circ,ms,tilde,802,ensp,803,emsp,809,thinsp,80c,zwnj,80d,zwj,80e,lrm,80f,rlm,80j,ndash,80k,mdash,80o,lsquo,80p,rsquo,80q,sbquo,80s,ldquo,80t,rdquo,80u,bdquo,810,dagger,811,Dagger,81g,permil,81p,lsaquo,81q,rsaquo,85c,euro",32),c={strokeStyle:{svgAttr:"stroke",canvas:"#000000",svg:"none",apply:"stroke"},fillStyle:{svgAttr:"fill",canvas:"#000000",svg:null,apply:"fill"},lineCap:{svgAttr:"stroke-linecap",canvas:"butt",svg:"butt",apply:"stroke"},lineJoin:{svgAttr:"stroke-linejoin",canvas:"miter",svg:"miter",apply:"stroke"},miterLimit:{svgAttr:"stroke-miterlimit",canvas:10,svg:4,apply:"stroke"},lineWidth:{svgAttr:"stroke-width",canvas:1,svg:1,apply:"stroke"},globalAlpha:{svgAttr:"opacity",canvas:1,svg:1,apply:"fill stroke"},font:{canvas:"10px sans-serif"},shadowColor:{canvas:"#000000"},shadowOffsetX:{canvas:0},shadowOffsetY:{canvas:0},shadowBlur:{canvas:0},textAlign:{canvas:"start"},textBaseline:{canvas:"alphabetic"},lineDash:{svgAttr:"stroke-dasharray",canvas:[],svg:null,apply:"stroke"}};class _{constructor(t,e){this.__root=t,this.__ctx=e}addColorStop(t,e){const i=this.__ctx.__createElement("stop");if(i.setAttribute("offset",""+t),-1!==e.indexOf("rgba")){const t=/rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?\.?\d*)\s*\)/gi.exec(e),[,s,n,r,a]=t;i.setAttribute("stop-color",`rgb(${s},${n},${r})`),i.setAttribute("stop-opacity",a)}else i.setAttribute("stop-color",e);this.__root.appendChild(i)}}_.__name__="CanvasGradient";class u{constructor(t,e){this.__root=t,this.__ctx=e}}u.__name__="CanvasPattern";class p{constructor(t){var e,i,n;this.__currentPosition=null,this.__currentElementsToStyle=null,this._transform=new s.AffineTransform,this._clip_path=null,this.__document=null!==(e=null==t?void 0:t.document)&&void 0!==e?e:document,(null==t?void 0:t.ctx)?this.__ctx=t.ctx:(this.__canvas=this.__document.createElement("canvas"),this.__ctx=this.__canvas.getContext("2d")),this.__setDefaultStyles(),this.__stack=[],this.__root=this.__document.createElementNS("http://www.w3.org/2000/svg","svg"),this.__root.setAttribute("version","1.1"),this.__root.setAttribute("xmlns","http://www.w3.org/2000/svg"),this.__root.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:xlink","http://www.w3.org/1999/xlink"),this.width=null!==(i=null==t?void 0:t.width)&&void 0!==i?i:500,this.height=null!==(n=null==t?void 0:t.height)&&void 0!==n?n:500,this.__ids={},this.__defs=this.__document.createElementNS("http://www.w3.org/2000/svg","defs"),this.__root.appendChild(this.__defs)}get canvas(){return this}get width(){return this._width}set width(t){this._width=t,this.__root.setAttribute("width",""+t)}get height(){return this._height}set height(t){this._height=t,this.__root.setAttribute("height",""+t)}__createElement(t,e={},i=!1){const s=this.__document.createElementNS("http://www.w3.org/2000/svg",t);i&&(s.setAttribute("fill","none"),s.setAttribute("stroke","none"));const n=Object.keys(e);for(const t of n)s.setAttribute(t,""+e[t]);return s}__setDefaultStyles(){const t=Object.keys(c),e=this;for(let i=0;i<t.length;i++){const s=t[i];e[s]=c[s].canvas}}__applyStyleState(t){const e=Object.keys(t),i=this;for(let s=0;s<e.length;s++){const n=e[s];i[n]=t[n]}}__getStyleState(){const t=Object.keys(c),e={};for(let i=0;i<t.length;i++){const s=t[i];e[s]=this[s]}return e}__applyStyleToCurrentElement(t){let e=this.__currentElement;const i=this.__currentElementsToStyle;if(null!=i){e.setAttribute(t,""),e=i.element;for(const e of i.children)e.setAttribute(t,"")}const s=Object.keys(c);for(let i=0;i<s.length;i++){const r=c[s[i]],a=this[s[i]];if(r.apply)if(a instanceof u){for(const t of[…a.__ctx.__defs.childNodes])if(t instanceof Element){const e=t.getAttribute("id");this.__ids[e]=e,this.__defs.appendChild(t)}const t=a.__root.getAttribute("id");e.setAttribute(r.apply,`url(#${t})`)}else if(a instanceof _){const t=a.__root.getAttribute("id");e.setAttribute(r.apply,`url(#${t})`)}else if(-1!==r.apply.indexOf(t)&&r.svg!==a)if("stroke"!==r.svgAttr&&"fill"!==r.svgAttr||!n.isString(a)||-1===a.indexOf("rgba")){let n=r.svgAttr;if("globalAlpha"===s[i]&&(n=t+"-"+r.svgAttr,e.getAttribute(n)))continue;e.setAttribute(n,""+a)}else{const t=/rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?\.?\d*)\s*\)/gi.exec(a),[,i,s,n,o]=t;e.setAttribute(r.svgAttr,`rgb(${i},${s},${n})`);let l=parseFloat(o);const h=this.globalAlpha;null!=h&&(l*=h),e.setAttribute(r.svgAttr+"-opacity",""+l)}}}get_serialized_svg(t=!1){let e=(new XMLSerializer).serializeToString(this.__root);if(/xmlns="http:\/\/www\.w3\.org\/2000\/svg".+xmlns="http:\/\/www\.w3\.org\/2000\/svg/gi.test(e)&&(e=e.replace(‘xmlns="http://www.w3.org/2000/svg’,’xmlns:xlink="http://www.w3.org/1999/xlink’)),t)for(const[t,i]of h){const s=new RegExp(t,"gi");s.test(e)&&(e=e.replace(s,i))}return e}get_svg(){return this.__root}save(){this.__stack.push({transform:this._transform,clip_path:this._clip_path,attributes:this.__getStyleState()}),this._transform=this._transform.clone()}restore(){if(0==this.__stack.length)return;const{transform:t,clip_path:e,attributes:i}=this.__stack.pop();this._transform=t,this._clip_path=e,this.__applyStyleState(i)}_apply_transform(t,e=this._transform){e.is_identity||t.setAttribute("transform",e.toString())}scale(t,e){isFinite(t)&&(null==e||isFinite(e))&&this._transform.scale(t,null!=e?e:t)}rotate(t){isFinite(t)&&this._transform.rotate(t)}translate(t,e){isFinite(t+e)&&this._transform.translate(t,e)}transform(t,e,i,s,n,r){isFinite(t+e+i+s+n+r)&&this._transform.transform(t,e,i,s,n,r)}beginPath(){this.__currentDefaultPath="",this.__currentPosition=null;const t=this.__createElement("path",{},!0);this.__root.appendChild(t),this.__currentElement=t}__applyCurrentDefaultPath(){const t=this.__currentElement;"path"===t.nodeName?t.setAttribute("d",this.__currentDefaultPath):console.error("Attempted to apply path command to node",t.nodeName)}__addPathCommand(t,e,i){const s=this.__currentDefaultPath?" ":"";this.__currentDefaultPath+=s+i,this.__currentPosition={x:t,y:e}}get _hasCurrentDefaultPath(){return!!this.__currentDefaultPath}moveTo(t,e){if(!isFinite(t+e))return;"path"!==this.__currentElement.nodeName&&this.beginPath();const[i,s]=this._transform.apply(t,e);this.__addPathCommand(i,s,`M ${i} ${s}`)}closePath(){this._hasCurrentDefaultPath&&this.__addPathCommand(NaN,NaN,"Z")}lineTo(t,e){if(isFinite(t+e))if(this._hasCurrentDefaultPath){const[i,s]=this._transform.apply(t,e);this.__addPathCommand(i,s,`L ${i} ${s}`)}else this.moveTo(t,e)}bezierCurveTo(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))return;const[a,o]=this._transform.apply(n,r),[l,h]=this._transform.apply(t,e),[c,_]=this._transform.apply(i,s);this.__addPathCommand(a,o,`C ${l} ${h} ${c} ${_} ${a} ${o}`)}quadraticCurveTo(t,e,i,s){if(!isFinite(t+e+i+s))return;const[n,r]=this._transform.apply(i,s),[a,o]=this._transform.apply(t,e);this.__addPathCommand(n,r,`Q ${a} ${o} ${n} ${r}`)}arcTo(t,e,i,s,n){if(!isFinite(t+e+i+s+n))return;if(null==this.__currentPosition)return;const r=this.__currentPosition.x,a=this.__currentPosition.y;if(n<0)throw new Error("IndexSizeError: The radius provided ("+n+") is negative.");if(r===t&&a===e||t===i&&e===s||0===n)return void this.lineTo(t,e);function o([t,e]){const i=Math.sqrt(t**2+e**2);return[t/i,e/i]}const l=o([r-t,a-e]),h=o([i-t,s-e]);if(l[0]*h[1]==l[1]*h[0])return void this.lineTo(t,e);const c=l[0]*h[0]+l[1]*h[1],_=Math.acos(Math.abs(c)),u=o([l[0]+h[0],l[1]+h[1]]),p=n/Math.sin(_/2),d=t+p*u[0],m=e+p*u[1],f=[-l[1],l[0]],g=[h[1],-h[0]];function w(t){const e=t[0];return t[1]>=0?Math.acos(e):-Math.acos(e)}const b=w(f),v=w(g);this.lineTo(d+f[0]*n,m+f[1]*n),this.arc(d,m,n,b,v)}stroke(){"path"===this.__currentElement.nodeName&&this.__currentElement.setAttribute("paint-order","fill"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement("stroke"),null!=this._clip_path&&this.__currentElement.setAttribute("clip-path",this._clip_path)}fill(){"path"===this.__currentElement.nodeName&&this.__currentElement.setAttribute("paint-order","stroke"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement("fill"),null!=this._clip_path&&this.__currentElement.setAttribute("clip-path",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&("path"!==this.__currentElement.nodeName&&this.beginPath(),this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){r.empty(this.__defs),r.empty(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const n=this.__createElement("rect",{x:t,y:e,width:i,height:s,fill:"#FFFFFF"},!0);this._apply_transform(n),this.__root.appendChild(n)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error("The provided double value is non-finite");const[n,r]=this._transform.apply(t,e),[o,l]=this._transform.apply(i,s),h=this.__createElement("linearGradient",{id:a(this.__ids),x1:n+"px",x2:o+"px",y1:r+"px",y2:l+"px",gradientUnits:"userSpaceOnUse"},!1);return this.__defs.appendChild(h),new _(h,this)}createRadialGradient(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))throw new Error("The provided double value is non-finite");const[o,l]=this._transform.apply(t,e),[h,c]=this._transform.apply(s,n),u=this.__createElement("radialGradient",{id:a(this.__ids),cx:h+"px",cy:c+"px",r:r+"px",fx:o+"px",fy:l+"px",gradientUnits:"userSpaceOnUse"},!1);return this.__defs.appendChild(u),new _(u,this)}__parseFont(){const t=/^\s*(?=(?:(?:[-a-z]+\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\1|\2|\3)\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\d]+(?:\%|in|[cem]m|ex|p[ctx]))(?:\s*\/\s*(normal|[.\d]+(?:\%|in|[cem]m|ex|p[ctx])))?\s*([-,\’\"\sa-z0-9]+?)\s*$/i.exec(this.font),e={style:t[1]||"normal",size:t[4]||"10px",family:t[6]||"sans-serif",weight:t[3]||"normal",decoration:t[2]||"normal"};return"underline"===this.__fontUnderline&&(e.decoration="underline"),null!=this.__fontHref&&(e.href=this.__fontHref),e}__wrapTextLink(t,e){if(t.href){const i=this.__createElement("a");return i.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",t.href),i.appendChild(e),i}return e}__applyText(t,e,i,s){const n=this.__parseFont(),r=this.__createElement("text",{"font-family":n.family,"font-size":n.size,"font-style":n.style,"font-weight":n.weight,"text-decoration":n.decoration,x:e,y:i,"text-anchor":o(this.textAlign),"dominant-baseline":l(this.textBaseline)},!0);r.appendChild(this.__document.createTextNode(t)),this._apply_transform(r),this.__currentElement=r,this.__applyStyleToCurrentElement(s),this.__root.appendChild(this.__wrapTextLink(n,r))}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,"fill")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,"stroke")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,n,r=!1){if(!isFinite(t+e+i+s+n))return;if(s===n)return;(s%=2*Math.PI)===(n%=2*Math.PI)&&(n=(n+2*Math.PI-.001*(r?-1:1))%(2*Math.PI));const a=t+i*Math.cos(n),o=e+i*Math.sin(n),l=t+i*Math.cos(s),h=e+i*Math.sin(s),c=r?0:1;let _=0,u=n-s;u<0&&(u+=2*Math.PI),_=r?u>Math.PI?0:1:u>Math.PI?1:0,this.lineTo(l,h);const p=i,d=i,[m,f]=this._transform.apply(a,o);this.__addPathCommand(m,f,`A ${p} ${d} 0 ${_} ${c} ${m} ${f}`)}clip(){const t=this.__createElement("clipPath"),e=a(this.__ids);this.__applyCurrentDefaultPath(),t.setAttribute("id",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,…e){let i,s,n,r,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,n=l,r=h}else if(4==e.length){if([i,s,n,r]=e,!isFinite(i+s+n+r))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error("Inavlid number of arguments passed to drawImage: "+arguments.length);if([a,o,l,h,i,s,n,r]=e,!isFinite(a+o+l+h+i+s+n+r))return}const c=this.__root,_="translate("+i+", "+s+")",u=this._transform.clone().translate(i,s);if(t instanceof p||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;u.is_identity?i=c:(i=this.__createElement("g"),this._apply_transform(i,u),c.appendChild(i));for(const t of[…e.childNodes])if(t instanceof SVGDefsElement){for(const e of[…t.childNodes])if(e instanceof Element){const t=e.getAttribute("id");this.__ids[t]=t,this.__defs.appendChild(e)}}else i.appendChild(t)}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement("image");if(e.setAttribute("width",""+n),e.setAttribute("height",""+r),e.setAttribute("preserveAspectRatio","none"),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement("canvas");e.width=n,e.height=r;e.getContext("2d").drawImage(t,a,o,l,h,0,0,n,r),t=e}e.setAttribute("transform",_);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute("src");e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",i),c.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement("image");e.setAttribute("width",""+n),e.setAttribute("height",""+r),e.setAttribute("preserveAspectRatio","none");const i=this.__document.createElement("canvas");i.width=n,i.height=r;const s=i.getContext("2d");s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,n,r),t=i,e.setAttribute("transform",_),e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",t.toDataURL()),c.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS("http://www.w3.org/2000/svg","pattern"),s=a(this.__ids);if(i.setAttribute("id",s),i.setAttribute("width",""+this._to_number(t.width)),i.setAttribute("height",""+this._to_number(t.height)),i.setAttribute("patternUnits","userSpaceOnUse"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS("http://www.w3.org/2000/svg","image"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute("src");e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof p){for(const e of[…t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error("unsupported");for(const e of[…t.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}return new u(i,this)}setLineDash(t){t&&t.length>0?this.lineDash=t.join(","):this.lineDash=null}_to_number(t){return n.isNumber(t)?t:t.baseVal.value}}i.SVGRenderingContext2D=p,p.__name__="SVGRenderingContext2D"},n”, ” function _(t,s,r){Object.defineProperty(r,"__esModule",{value:!0});const{sin:e,cos:n}=Math;class i{constructor(t=1,s=0,r=0,e=1,n=0,i=0){this.a=t,this.b=s,this.c=r,this.d=e,this.e=n,this.f=i}toString(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return`matrix(${t}, ${s}, ${r}, ${e}, ${n}, ${i})`}clone(){const{a:t,b:s,c:r,d:e,e:n,f:a}=this;return new i(t,s,r,e,n,a)}get is_identity(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return 1==t&&0==s&&0==r&&1==e&&0==n&&0==i}apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this;return[r*t+n*s+a,e*t+i*s+h]}iv_apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this,c=t.length;for(let o=0;o<c;o++){const c=t[o],f=s[o];t[o]=r*c+n*f+a,s[o]=e*c+i*f+h}}transform(t,s,r,e,n,i){const{a,b:h,c,d:o,e:f,f:l}=this;return this.a=a*t+c*s,this.c=a*r+c*e,this.e=a*n+c*i+f,this.b=h*t+o*s,this.d=h*r+o*e,this.f=h*n+o*i+l,this}translate(t,s){return this.transform(1,0,0,1,t,s)}scale(t,s){return this.transform(t,0,0,s,0,0)}skew(t,s){return this.transform(1,s,t,1,0,0)}rotate(t){const s=e(t),r=n(t);return this.transform(r,s,-s,r,0,0)}rotate_ccw(t){return this.rotate(-t)}translate_x(t){return this.translate(t,0)}translate_y(t){return this.translate(0,t)}flip(){return this.scale(-1,-1)}flip_x(){return this.scale(1,-1)}flip_y(){return this.scale(-1,1)}}r.AffineTransform=i,i.__name__="AffineTransform"},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),a=e(14),n=e(78),l=e(19),o=s.__importStar(e(18)),r=e(72),h=e(13),c=e(79),_=e(80),d=e(75),p=(()=>{const e=document.createElement("canvas"),t=e.getContext("webgl",{premultipliedAlpha:!0});return null!=t?{canvas:e,gl:t}:void l.logger.trace("WebGL is not supported")})(),v={position:"absolute",top:"0",left:"0",width:"100%",height:"100%"};class b{constructor(e,t){switch(this.backend=e,this.hidpi=t,this.pixel_ratio=1,this.bbox=new c.BBox,e){case"webgl":case"canvas":{this._el=this._canvas=r.canvas({style:v});const e=this.canvas.getContext("2d");if(null==e)throw new Error("unable to obtain 2D rendering context");this._ctx=e,t&&(this.pixel_ratio=devicePixelRatio);break}case"svg":{const e=new d.SVGRenderingContext2D;this._ctx=e,this._canvas=e.get_svg(),this._el=r.div({style:v},this._canvas);break}}_.fixup_ctx(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t});const i=this._ctx instanceof d.SVGRenderingContext2D?this._ctx:this.canvas;i.width=e*this.pixel_ratio,i.height=t*this.pixel_ratio}prepare(){const{ctx:e,hidpi:t,pixel_ratio:i}=this;e.save(),t&&(e.scale(i,i),e.translate(.5,.5)),this.clear()}clear(){const{x:e,y:t,width:i,height:s}=this.bbox;this.ctx.clearRect(e,t,i,s)}finish(){this.ctx.restore()}to_blob(){const{_canvas:e}=this;if(e instanceof HTMLCanvasElement)return null!=e.msToBlob?Promise.resolve(e.msToBlob()):new Promise((t,i)=>{e.toBlob(e=>null!=e?t(e):i(),"image/png")});{const e=this._ctx.get_serialized_svg(!0),t=new Blob([e],{type:"image/svg+xml"});return Promise.resolve(t)}}}i.CanvasLayer=b,b.__name__="CanvasLayer";class g extends n.DOMView{constructor(){super(…arguments),this.bbox=new c.BBox}initialize(){super.initialize();const{output_backend:e,hidpi:t}=this.model;"webgl"==e&&(this.webgl=p),this.underlays_el=r.div({style:v}),this.primary=new b(e,t),this.overlays=new b(e,t),this.overlays_el=r.div({style:v}),this.events_el=r.div({class:"bk-canvas-events",style:v});const i=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];h.extend(this.el.style,v),r.append(this.el,…i),l.logger.debug("CanvasView initialized")}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const{gl:a}=t;a.enable(a.SCISSOR_TEST);const[n,l,o,r]=e,{xview:h,yview:c}=this.bbox,_=h.compute(n),d=c.compute(l+r),p=this.pixel_ratio;a.scissor(p*_,p*d,p*o,p*r),a.enable(a.BLEND),a.blendFuncSeparate(a.SRC_ALPHA,a.ONE_MINUS_SRC_ALPHA,a.ONE_MINUS_DST_ALPHA,a.ONE)}}clear_webgl(){const{webgl:e}=this;if(null!=e){const{gl:t,canvas:i}=e;t.viewport(0,0,i.width,i.height),t.clearColor(0,0,0,0),t.clear(t.COLOR_BUFFER_BIT||t.DEPTH_BUFFER_BIT)}}blit_webgl(e){const{webgl:t}=this;if(null!=t&&(l.logger.debug("Blitting WebGL canvas"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi)){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}}compose(){const{output_backend:e,hidpi:t}=this.model,{width:i,height:s}=this.bbox,a=new b(e,t);return a.resize(i,s),a.ctx.drawImage(this.primary.canvas,0,0),a.ctx.drawImage(this.overlays.canvas,0,0),a}to_blob(){return this.compose().to_blob()}}i.CanvasView=g,g.__name__="CanvasView";class x extends a.HasProps{constructor(e){super(e)}static init_Canvas(){this.prototype.default_view=g,this.internal({hidpi:[o.Boolean,!0],output_backend:[o.OutputBackend,"canvas"]})}}i.Canvas=x,x.__name__="Canvas",x.init_Canvas()},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(71),r=e(72);class n extends i.View{initialize(){super.initialize(),this.el=this._createElement()}remove(){r.remove(this.el),super.remove()}css_classes(){return[]}render(){}renderTo(e){e.appendChild(this.el),this.render()}_createElement(){return r.createElement(this.tagName,{class:this.css_classes()})}}t.DOMView=n,n.__name__="DOMView",n.prototype.tagName="div"},n”, ” function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const h=t(24),{min:r,max:s}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:r(t.x0,i.x0),x1:s(t.x1,i.x1),y0:r(t.y0,i.y0),y1:s(t.y1,i.y1)}};class n{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if("x0"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}});this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if("x"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}});this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if("width"in t)if("left"in t)i=t.left,e=i+t.width;else if("right"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if("height"in t)if("top"in t)h=t.top,r=h+t.height;else if("bottom"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}});this.x0=i,this.y0=h,this.x1=e,this.y1=r}}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get rect(){return{x0:this.x0,y0:this.y0,x1:this.x1,y1:this.y1}}get box(){return{x:this.x,y:this.y,width:this.width,height:this.height}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}relativize(){const{width:t,height:i}=this;return new n({x:0,y:0,width:t,height:i})}contains(t,i){return t>=this.x0&&t<=this.x1&&i>=this.y0&&i<=this.y1}clip(t,i){return t<this.x0?t=this.x0:t>this.x1&&(t=this.x1),i<this.y0?i=this.y0:i>this.y1&&(i=this.y1),[t,i]}union(t){return new n({x0:r(this.x0,t.x0),y0:r(this.y0,t.y0),x1:s(this.x1,t.x1),y1:s(this.y1,t.y1)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.left;for(let h=0;h<t.length;h++)i[h]=e+t[h];return i}}}get yview(){return{compute:t=>this.bottom-t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.bottom;for(let h=0;h<t.length;h++)i[h]=e-t[h];return i}}}}e.BBox=n,n.__name__="BBox"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.fixup_ctx=function(e){!function(e){void 0===e.lineDash&&Object.defineProperty(e,"lineDash",{get:()=>e.getLineDash(),set:t=>e.setLineDash(t)})}(e),function(e){e.setImageSmoothingEnabled=t=>{e.imageSmoothingEnabled=t,e.mozImageSmoothingEnabled=t,e.oImageSmoothingEnabled=t,e.webkitImageSmoothingEnabled=t,e.msImageSmoothingEnabled=t},e.getImageSmoothingEnabled=()=>{const t=e.imageSmoothingEnabled;return null==t||t}}(e),function(e){e.measureText&&null==e.html5MeasureText&&(e.html5MeasureText=e.measureText,e.measureText=t=>{const n=e.html5MeasureText(t);return n.ascent=1.6*e.html5MeasureText("m").width,n})}(e),function(e){e.ellipse||(e.ellipse=function(t,n,o,a,i,l,m,r=!1){const u=.551784;e.translate(t,n),e.rotate(i);let s=o,g=a;r&&(s=-o,g=-a),e.moveTo(-s,0),e.bezierCurveTo(-s,g*u,-s*u,g,0,g),e.bezierCurveTo(s*u,g,s,g*u,s,0),e.bezierCurveTo(s,-g*u,s*u,-g,0,-g),e.bezierCurveTo(-s*u,-g,-s,-g*u,-s,0),e.rotate(-i),e.translate(-t,-n)})}(e)}},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(1),c=e(14),i=n.__importStar(e(18)),a=e(8),r=e(13),o=e(19);class l extends c.HasProps{constructor(e){super(e)}static init_Model(){this.define({tags:[i.Array,[]],name:[i.String],js_property_callbacks:[i.Any,{}],js_event_callbacks:[i.Any,{}],subscribed_events:[i.Array,[]]})}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,()=>this._update_property_callbacks()),this.connect(this.properties.js_event_callbacks.change,()=>this._update_event_callbacks()),this.connect(this.properties.subscribed_events.change,()=>this._update_event_callbacks())}_process_event(e){for(const t of this.js_event_callbacks[e.event_name]||[])t.execute(e);null!=this.document&&this.subscribed_events.some(t=>t==e.event_name)&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):o.logger.warn("WARNING: Document not defined for updating event callbacks")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(":");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of r.entries(this.js_property_callbacks)){const n=s.map(e=>()=>e.execute(this));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){r.isEmpty(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if(a.isString(e))return[…this.references()].filter(t=>t instanceof l&&t.name===e);if(e.prototype instanceof c.HasProps)return[…this.references()].filter(t=>t instanceof e);throw new Error("invalid selector")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error("found more than one object matching given selector")}}}s.Model=l,l.__name__="Model",l.init_Model()},n”, ” function _(e,s,_){Object.defineProperty(_,"__esModule",{value:!0});class t{constructor(e,s){this.x_scale=e,this.y_scale=s,this.x_range=this.x_scale.source_range,this.y_range=this.y_scale.source_range,this.ranges=[this.x_range,this.y_range],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,s){return[this.x_scale.v_compute(e),this.y_scale.v_compute(s)]}map_from_screen(e,s){return[this.x_scale.v_invert(e),this.y_scale.v_invert(s)]}}_.CoordinateTransform=t,t.__name__="CoordinateTransform"},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),a=t(36),o=t(84),r=t(85),n=t(28),_=i.__importStar(t(18)),h=t(10);class c extends a.AnnotationView{initialize(){super.initialize(),null==this.model.source&&(this.model.source=new r.ColumnDataSource),this.set_data(this.model.source)}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.set_data(this.model.source)),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}set_data(t){super.set_data(t),this.visuals.warm_cache(t),this.plot_view.request_render()}_map_data(){const{frame:t}=this.plot_view;let e,s,i,a;return"data"==this.model.start_units?(e=this.coordinates.x_scale.v_compute(this._x_start),s=this.coordinates.y_scale.v_compute(this._y_start)):(e=t.xview.v_compute(this._x_start),s=t.yview.v_compute(this._y_start)),"data"==this.model.end_units?(i=this.coordinates.x_scale.v_compute(this._x_end),a=this.coordinates.y_scale.v_compute(this._y_end)):(i=t.xview.v_compute(this._x_end),a=t.yview.v_compute(this._y_end)),[[e,s],[i,a]]}_render(){const{ctx:t}=this.layer;t.save();const[e,s]=this._map_data();null!=this.model.end&&this._arrow_head(t,"render",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,"render",this.model.start,s,e),t.beginPath();const{x:i,y:a,width:o,height:r}=this.plot_view.frame.bbox;t.rect(i,a,o,r),null!=this.model.end&&this._arrow_head(t,"clip",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,"clip",this.model.start,s,e),t.closePath(),t.clip(),this._arrow_body(t,e,s),t.restore()}_arrow_head(t,e,s,i,a){for(let o=0,r=this._x_start.length;o<r;o++){const r=Math.PI/2+h.atan2([i[0][o],i[1][o]],[a[0][o],a[1][o]]);t.save(),t.translate(a[0][o],a[1][o]),t.rotate(r),"render"==e?s.render(t,o):"clip"==e&&s.clip(t,o),t.restore()}}_arrow_body(t,e,s){if(this.visuals.line.doit)for(let i=0,a=this._x_start.length;i<a;i++)this.visuals.line.set_vectorize(t,i),t.beginPath(),t.moveTo(e[0][i],e[1][i]),t.lineTo(s[0][i],s[1][i]),t.stroke()}}s.ArrowView=c,c.__name__="ArrowView";class d extends a.Annotation{constructor(t){super(t)}static init_Arrow(){this.prototype.default_view=c,this.mixins(n.LineVector),this.define({x_start:[_.NumberSpec],y_start:[_.NumberSpec],start_units:[_.SpatialUnits,"data"],start:[_.Instance,null],x_end:[_.NumberSpec],y_end:[_.NumberSpec],end_units:[_.SpatialUnits,"data"],end:[_.Instance,()=>new o.OpenHead({})],source:[_.Instance]})}}s.Arrow=d,d.__name__="Arrow",d.init_Arrow()},n”, ” function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),o=i(36),l=i(74),n=i(28),h=t.__importStar(i(18));class a extends o.Annotation{constructor(i){super(i)}static init_ArrowHead(){this.define({size:[h.Number,25]})}initialize(){super.initialize(),this.visuals=new l.Visuals(this)}}s.ArrowHead=a,a.__name__="ArrowHead",a.init_ArrowHead();class r extends a{constructor(i){super(i)}static init_OpenHead(){this.mixins(n.LineVector)}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,0),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.stroke())}}s.OpenHead=r,r.__name__="OpenHead",r.init_OpenHead();class z extends a{constructor(i){super(i)}static init_NormalHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:"black"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._normal(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._normal(i,e),i.stroke())}_normal(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.closePath()}}s.NormalHead=z,z.__name__="NormalHead",z.init_NormalHead();class _ extends a{constructor(i){super(i)}static init_VeeHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:"black"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._vee(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._vee(i,e),i.stroke())}_vee(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.closePath()}}s.VeeHead=_,_.__name__="VeeHead",_.init_VeeHead();class c extends a{constructor(i){super(i)}static init_TeeHead(){this.mixins(n.LineVector)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,0),i.lineTo(-.5*this.size,0),i.stroke())}clip(i,e){}}s.TeeHead=c,c.__name__="TeeHead",c.init_TeeHead()},n”, ” function _(t,n,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t(1),o=t(86),r=s.__importStar(t(18)),i=t(8),l=t(13),a=s.__importStar(t(119)),c=t(120),u=t(121);function h(t,n,e){if(i.isArray(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if(i.isTypedArray(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let i;t.length<e?(i=new t.constructor(e),i.set(t,0)):i=t;for(let t=o,n=r;t<n;t++)i[t-o]=i[t];for(let t=0,e=n.length;t<e;t++)i[t+(r-o)]=n[t];return i}{const e=new t.constructor(n);return a.concat(t,e)}}throw new Error("unsupported array types")}function d(t,n){let e,s,o;return i.isNumber(t)?(e=t,o=t+1,s=1):(e=null!=t.start?t.start:0,o=null!=t.stop?t.stop:n,s=null!=t.step?t.step:1),[e,o,s]}function f(t,n){const e=new Set;let s=!1;for(const[o,r]of n){let n,l,a,c;if(i.isArray(o)){const[s]=o;e.add(s),n=t[s].shape,l=t[s],c=r,2===o.length?(n=[1,n[0]],a=[o[0],0,o[1]]):a=o}else i.isNumber(o)?(c=[r],e.add(o)):(c=r,s=!0),a=[0,0,o],n=[1,t.length],l=t;let u=0;const[h,f,m]=d(a[1],n[0]),[_,p,g]=d(a[2],n[1]);for(let t=h;t<f;t+=m)for(let o=_;o<p;o+=g)s&&e.add(o),l[t*n[1]+o]=c[u],u++}return e}e.stream_to_column=h,e.slice=d,e.patch_to_column=f;class m extends o.ColumnarDataSource{constructor(t){super(t)}static init_ColumnDataSource(){this.define({data:[r.Any,{}]})}stream(t,n,e){const{data:s}=this;for(const[e,o]of l.entries(t))s[e]=h(s[e],o,n);if(this.setv({data:s},{silent:!0}),this.streaming.emit(),null!=this.document){const s=new u.ColumnsStreamedEvent(this.document,this.ref(),t,n);this.document._notify_change(this,"data",null,null,{setter_id:e,hint:s})}}patch(t,n){const{data:e}=this;let s=new Set;for(const[n,o]of l.entries(t))s=c.union(s,f(e[n],o));if(this.setv({data:e},{silent:!0}),this.patching.emit([…s]),null!=this.document){const e=new u.ColumnsPatchedEvent(this.document,this.ref(),t);this.document._notify_change(this,"data",null,null,{setter_id:n,hint:e})}}}e.ColumnDataSource=m,m.__name__="ColumnDataSource",m.init_ColumnDataSource()},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const a=t(1),s=t(87),i=t(15),r=t(19),l=t(89),c=a.__importStar(t(18)),o=t(8),u=t(9),h=t(13),g=t(88),_=t(118);class d extends s.DataSource{constructor(t){super(t)}get_array(t){let e=this.data[t];return null==e?this.data[t]=e=[]:o.isArray(e)||(this.data[t]=e=Array.from(e)),e}static init_ColumnarDataSource(){this.define({selection_policy:[c.Instance,()=>new _.UnionRenderers]}),this.internal({selection_manager:[c.Instance,t=>new l.SelectionManager({source:t})],inspected:[c.Instance,()=>new g.Selection]})}initialize(){super.initialize(),this._select=new i.Signal0(this,"select"),this.inspect=new i.Signal(this,"inspect"),this.streaming=new i.Signal0(this,"streaming"),this.patching=new i.Signal(this,"patching")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return h.keys(this.data)}get_length(t=!0){const e=u.uniq(h.values(this.data).map(t=>t.length));switch(e.length){case 0:return null;case 1:return e[0];default:{const n="data source has columns of inconsistent lengths";if(t)return r.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=d,d.__name__="ColumnarDataSource",d.init_ColumnarDataSource()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const c=e(1),n=e(81),o=e(88),i=c.__importStar(e(18));class r extends n.Model{constructor(e){super(e)}static init_DataSource(){this.define({selected:[i.Instance,()=>new o.Selection]})}}a.DataSource=r,r.__name__="DataSource",r.init_DataSource()},n”, ” function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),n=i(81),l=t.__importStar(i(18)),c=i(9),h=i(13);class d extends n.Model{constructor(i){super(i)}get_view(){return this.view}static init_Selection(){this.define({indices:[l.Array,[]],line_indices:[l.Array,[]],multiline_indices:[l.Any,{}]}),this.internal({selected_glyphs:[l.Array,[]],view:[l.Any],image_indices:[l.Array,[]]})}initialize(){super.initialize()}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s="replace"){switch(s){case"replace":this.indices=i.indices,this.line_indices=i.line_indices,this.selected_glyphs=i.selected_glyphs,this.view=i.view,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices;break;case"append":this.update_through_union(i);break;case"intersect":this.update_through_intersection(i);break;case"subtract":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.view=null,this.selected_glyphs=[]}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=c.union(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=c.intersection(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=c.difference(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}}s.Selection=d,d.__name__="Selection",d.init_Selection()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(14),o=e(88),c=e(90),r=e(116),l=i.__importStar(e(18));class p extends n.HasProps{constructor(e){super(e),this.inspectors=new Map}static init_SelectionManager(){this.internal({source:[l.Any]})}select(e,t,s,i="replace"){const n=[],o=[];for(const t of e)t instanceof c.GlyphRendererView?n.push(t):t instanceof r.GraphRendererView&&o.push(t);let l=!1;for(const e of o){const n=e.model.selection_policy.hit_test(t,e);l=l||e.model.selection_policy.do_selection(n,e.model,s,i)}if(n.length>0){const e=this.source.selection_policy.hit_test(t,n);l=l||this.source.selection_policy.do_selection(e,this.source,s,i)}return l}inspect(e,t){let s=!1;if(e instanceof c.GlyphRendererView){const i=e.hit_test(t);if(null!=i){s=!i.is_empty();const n=this.get_or_create_inspector(e.model);n.update(i,!0,"replace"),this.source.setv({inspected:n},{silent:!0}),this.source.inspect.emit([e,{geometry:t}])}}else if(e instanceof r.GraphRendererView){const i=e.model.inspection_policy.hit_test(t,e);s=s||e.model.inspection_policy.do_inspection(i,t,e,!1,"replace")}return s}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new o.Selection,this.inspectors.set(e,t)),t}}s.SelectionManager=p,p.__name__="SelectionManager",p.init_SelectionManager()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),l=e(91),n=e(92),h=e(110),o=e(111),a=e(113),c=e(114),_=e(24),d=s.__importStar(e(18)),r=e(12),p=e(9),g=e(13),u=e(115),y=e(98),m={fill:{},line:{}},v={fill:{fill_alpha:.3,fill_color:"grey"},line:{line_alpha:.3,line_color:"grey"}},f={fill:{fill_alpha:.2},line:{}};class w extends l.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model.glyph,t=p.includes(e._mixins,"fill"),i=p.includes(e._mixins,"line"),s=g.clone(e.attributes);function l(l){const n=g.clone(s);return t&&g.extend(n,l.fill),i&&g.extend(n,l.line),new e.constructor(n)}delete s.id,this.glyph=await this.build_glyph_view(e);let{selection_glyph:n}=this.model;null==n?n=l({fill:{},line:{}}):"auto"===n&&(n=l(m)),this.selection_glyph=await this.build_glyph_view(n);let{nonselection_glyph:h}=this.model;null==h?h=l({fill:{},line:{}}):"auto"===h&&(h=l(f)),this.nonselection_glyph=await this.build_glyph_view(h);const{hover_glyph:o}=this.model;null!=o&&(this.hover_glyph=await this.build_glyph_view(o));const{muted_glyph:a}=this.model;null!=a&&(this.muted_glyph=await this.build_glyph_view(a));const c=l(v);this.decimated_glyph=await this.build_glyph_view(c),this.set_data(!1)}async build_glyph_view(e){return u.build_view(e,{parent:this})}remove(){var e,t;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),null===(t=this.muted_glyph)||void 0===t||t.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.glyph.change,()=>this.set_data()),this.connect(this.model.data_source.change,()=>this.set_data()),this.connect(this.model.data_source.streaming,()=>this.set_data()),this.connect(this.model.data_source.patching,e=>this.set_data(!0,e)),this.connect(this.model.data_source.selected.change,()=>this.request_render()),this.connect(this.model.data_source._select,()=>this.request_render()),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,()=>this.request_render()),this.connect(this.model.properties.view.change,()=>this.set_data()),this.connect(this.model.view.properties.indices.change,()=>this.set_data()),this.connect(this.model.view.properties.masked.change,()=>this.set_visuals()),this.connect(this.model.properties.visible.change,()=>this.plot_view.update_dataranges());const{x_ranges:e,y_ranges:t}=this.plot_view.frame;for(const[,t]of e)t instanceof y.FactorRange&&this.connect(t.change,()=>this.set_data());for(const[,e]of t)e instanceof y.FactorRange&&this.connect(e.change,()=>this.set_data());this.connect(this.model.glyph.transformchange,()=>this.set_data())}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}set_data(e=!0,t=null){const i=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:s}=this;this.glyph.set_data(i,s,t),this.set_visuals(),this._update_masked_indices();const{lod_factor:l}=this.plot_model,n=this.all_indices.count;this.decimated=new _.Indices(n);for(let e=0;e<n;e+=l)this.decimated.set(e);this.set_data_timestamp=Date.now(),e&&this.request_render()}set_visuals(){var e,t,i,s;const l=this.model.data_source,{all_indices:n}=this;this.glyph.set_visuals(l,n),this.decimated_glyph.set_visuals(l,n),null===(e=this.selection_glyph)||void 0===e||e.set_visuals(l,n),null===(t=this.nonselection_glyph)||void 0===t||t.set_visuals(l,n),null===(i=this.hover_glyph)||void 0===i||i.set_visuals(l,n),null===(s=this.muted_glyph)||void 0===s||s.set_visuals(l,n)}get has_webgl(){return this.glyph.has_webgl}_render(){const e=this.has_webgl;this.glyph.map_data();const t=[…this.all_indices];let i=[…this._update_masked_indices()];const{ctx:s}=this.layer;s.save();const{selected:l}=this.model.data_source;let c;c=!l||l.is_empty()?[]:this.glyph instanceof n.LineView&&l.selected_glyph===this.glyph.model?this.model.view.convert_indices_from_subset(i):l.indices;const{inspected:_}=this.model.data_source,d=new Set((()=>!_||_.is_empty()?[]:_.selected_glyph?this.model.view.convert_indices_from_subset(i):_.indices.length>0?_.indices:Object.keys(_.multiline_indices).map(e=>parseInt(e)))()),g=r.filter(i,e=>d.has(t[e])),{lod_threshold:u}=this.plot_model;let y,m,v;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=u&&t.length>u?(i=[…this.decimated],y=this.decimated_glyph,m=this.decimated_glyph,v=this.selection_glyph):(y=this.model.muted&&null!=this.muted_glyph?this.muted_glyph:this.glyph,m=this.nonselection_glyph,v=this.selection_glyph),null!=this.hover_glyph&&g.length&&(i=p.difference(i,g)),c.length){const e={};for(const t of c)e[t]=!0;const l=new Array,h=new Array;if(this.glyph instanceof n.LineView)for(const i of t)null!=e[i]?l.push(i):h.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):h.push(s);m.render(s,h,this.glyph),v.render(s,l,this.glyph),null!=this.hover_glyph&&(this.glyph instanceof n.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):this.hover_glyph.render(s,g,this.glyph))}else if(this.glyph instanceof n.LineView)this.hover_glyph&&g.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):y.render(s,t,this.glyph);else if(this.glyph instanceof h.PatchView||this.glyph instanceof o.HAreaView||this.glyph instanceof a.VAreaView)if(0==_.selected_glyphs.length||null==this.hover_glyph)y.render(s,t,this.glyph);else for(const e of _.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t,this.glyph);else y.render(s,i,this.glyph),this.hover_glyph&&g.length&&this.hover_glyph.render(s,g,this.glyph);s.restore()}draw_legend(e,t,i,s,l,n,h,o){null==o&&(o=this.model.get_reference_point(n,h)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o)}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=w,w.__name__="GlyphRendererView";class b extends l.DataRenderer{constructor(e){super(e)}static init_GlyphRenderer(){this.prototype.default_view=w,this.define({data_source:[d.Instance],view:[d.Instance,()=>new c.CDSView],glyph:[d.Instance],hover_glyph:[d.Instance],nonselection_glyph:[d.Any,"auto"],selection_glyph:[d.Any,"auto"],muted_glyph:[d.Instance],muted:[d.Boolean,!1]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){let i=0;if(null!=e){const s=this.data_source.get_column(e);if(null!=s){const e=r.indexOf(s,t);-1!=e&&(i=e)}}return i}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=b,b.__name__="GlyphRenderer",b.init_GlyphRenderer()},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(70);class n extends a.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=n,n.__name__="DataRendererView";class s extends a.Renderer{constructor(e){super(e)}static init_DataRenderer(){this.override({level:"glyph"})}}t.DataRenderer=s,s.__name__="DataRenderer",s.init_DataRenderer()},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),n=e(93),l=e(100),_=e(102),r=s.__importStar(e(28)),o=s.__importStar(e(101)),h=e(88);class a extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&(this.glglyph=new _.LineGL(e.gl,this))}_render(e,i,{sx:t,sy:s}){let n=!1,l=null;this.visuals.line.set_value(e);for(const _ of i){if(n){if(!isFinite(t[_]+s[_])){e.stroke(),e.beginPath(),n=!1,l=_;continue}null!=l&&_-l>1&&(e.stroke(),n=!1)}n?e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]),n=!0),l=_}n&&e.stroke()}_hit_point(e){const i=new h.Selection,t={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.visuals.line.line_width.value()/2);for(let e=0,l=this.sx.length-1;e<l;e++){const l={x:this.sx[e],y:this.sy[e]},_={x:this.sx[e+1],y:this.sy[e+1]},r=o.dist_to_segment(t,l,_);r<n&&r<s&&(s=r,i.add_to_selected_glyphs(this.model),i.view=this,i.line_indices=[e])}return i}_hit_span(e){const{sx:i,sy:t}=e,s=new h.Selection;let n,l;"v"==e.direction?(n=this.renderer.yscale.invert(t),l=this._y):(n=this.renderer.xscale.invert(i),l=this._x);for(let e=0,i=l.length-1;e<i;e++)(l[e]<=n&&n<=l[e+1]||l[e+1]<=n&&n<=l[e])&&(s.add_to_selected_glyphs(this.model),s.view=this,s.line_indices.push(e));return s}get_interpolation_hit(e,i){const[t,s,n,_]=[this._x[e],this._y[e],this._x[e+1],this._y[e+1]];return l.line_interpolation(this.renderer,i,t,s,n,_)}draw_legend_for_index(e,i,t){l.generic_line_legend(this.visuals,e,i,t)}}t.LineView=a,a.__name__="LineView";class c extends n.XYGlyph{constructor(e){super(e)}static init_Line(){this.prototype.default_view=a,this.mixins(r.Line)}}t.Line=c,c.__name__="Line",c.init_Line()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),_=e(37),n=s.__importStar(e(18)),a=e(94);class d extends a.GlyphView{_project_data(){_.inplace.project_xy(this._x,this._y)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++){const t=this._x[i],s=this._y[i];isNaN(t+s)||!isFinite(t+s)?e.add_empty():e.add(t,s,t,s)}}scenterxy(e){return[this.sx[e],this.sy[e]]}}i.XYGlyphView=d,d.__name__="XYGlyphView";class p extends a.Glyph{constructor(e){super(e)}static init_XYGlyph(){this.define({x:[n.XCoordinateSpec,{field:"x"}],y:[n.YCoordinateSpec,{field:"y"}]})}}i.XYGlyph=p,p.__name__="XYGlyph",p.init_XYGlyph()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),n=s.__importStar(t(18)),a=s.__importStar(t(79)),r=s.__importStar(t(74)),_=t(71),l=t(81),o=t(19),h=t(24),d=t(12),c=t(95),u=t(98),p=t(88);class y extends _.View{constructor(){super(…arguments),this._index=null,this._data_size=null,this._nohit_warned=new Set}get renderer(){return this.parent}get has_webgl(){return null!=this.glglyph}get index(){const{_index:t}=this;if(null!=t)return t;throw new Error(this+".index_data() wasn’t called")}get data_size(){const{_data_size:t}=this;if(null!=t)return t;throw new Error(this+".set_data() wasn’t called")}initialize(){super.initialize(),this.visuals=new r.Visuals(this.model)}set_visuals(t,e){this.visuals.warm_cache(t,e),null!=this.glglyph&&this.glglyph.set_visuals_changed()}render(t,e,i){t.beginPath(),null!=this.glglyph&&(this.renderer.needs_webgl_blit=this.glglyph.render(t,e,i),this.renderer.needs_webgl_blit)||this._render(t,e,i)}has_finished(){return!0}notify_finished(){this.renderer.notify_finished()}_bounds(t){return t}bounds(){return this._bounds(this.index.bbox)}log_bounds(){const{x0:t,x1:e}=this.index.bounds(a.positive_x()),{y0:i,y1:s}=this.index.bounds(a.positive_y());return this._bounds({x0:t,y0:i,x1:e,y1:s})}get_anchor_point(t,e,[i,s]){switch(t){case"center":{const[t,n]=this.scenterxy(e,i,s);return{x:t,y:n}}default:return null}}scenterx(t,e,i){return this.scenterxy(t,e,i)[0]}scentery(t,e,i){return this.scenterxy(t,e,i)[1]}sdist(t,e,i,s="edge",n=!1){let a,r;const _=e.length;if("center"==s){const t=d.map(i,t=>t/2);a=new Float64Array(_);for(let i=0;i<_;i++)a[i]=e[i]-t[i];r=new Float64Array(_);for(let i=0;i<_;i++)r[i]=e[i]+t[i]}else{a=e,r=new Float64Array(_);for(let t=0;t<_;t++)r[t]=a[t]+i[t]}const l=t.v_compute(a),o=t.v_compute(r);return n?d.map(l,(t,e)=>Math.ceil(Math.abs(o[e]-l[e]))):d.map(l,(t,e)=>Math.abs(o[e]-l[e]))}draw_legend_for_index(t,e,i){}hit_test(t){switch(t.type){case"point":if(null!=this._hit_point)return this._hit_point(t);break;case"span":if(null!=this._hit_span)return this._hit_span(t);break;case"rect":if(null!=this._hit_rect)return this._hit_rect(t);break;case"poly":if(null!=this._hit_poly)return this._hit_poly(t)}return this._nohit_warned.has(t.type)||(o.logger.debug(‘${t.type}’ selection not available for ${this.model.type}),this._nohit_warned.add(t.type)),null}_hit_rect_against_index(t){const{sx0:e,sx1:i,sy0:s,sy1:n}=t,[a,r]=this.renderer.coordinates.x_scale.r_invert(e,i),[_,l]=this.renderer.coordinates.y_scale.r_invert(s,n),o=[…this.index.indices({x0:a,x1:r,y0:_,y1:l})];return new p.Selection({indices:o})}_project_data(){}set_data(t,e,i){var s,a;const{x_range:r,y_range:_}=this.renderer.coordinates;this._data_size=null!==(s=t.get_length())&&void 0!==s?s:1;for(const i of this.model){if(!(i instanceof n.VectorSpec))continue;if(i.optional&&null==i.spec.value&&!i.dirty)continue;const s=i.attr,a=i.array(t);let l=e.select(a);if(i instanceof n.BaseCoordinateSpec){const t="x"==i.dimension?r:_;if(t instanceof u.FactorRange)if(i instanceof n.CoordinateSpec)l=t.v_synthetic(l);else if(i instanceof n.CoordinateSeqSpec)for(let e=0;e<l.length;e++)l[e]=t.v_synthetic(l[e]);i instanceof n.CoordinateSeqSpec&&(l=h.RaggedArray.from(l))}else i instanceof n.DistanceSpec&&(this["max_"+s]=d.max(l));this["_"+s]=l}this.renderer.plot_view.model.use_map&&this._project_data(),this._set_data(i),null===(a=this.glglyph)||void 0===a||a.set_data_changed(),this.index_data()}_set_data(t){}get _index_size(){return this.data_size}index_data(){const t=new c.SpatialIndex(this._index_size);this._index_data(t),t.finish(),this._index=t}mask_data(){return null!=this.glglyph||null==this._mask_data?h.Indices.all_set(this.data_size):this._mask_data()}map_data(){var t;const e=this,{x_scale:i,y_scale:s}=this.renderer.coordinates;for(const t of this.model)if(t instanceof n.BaseCoordinateSpec){const n="x"==t.dimension?i:s;let a=e["_"+t.attr];if(a instanceof h.RaggedArray){const t=n.v_compute(a.array);a=new h.RaggedArray(a.offsets,t)}else a=n.v_compute(a);this["s"+t.attr]=a}this._map_data(),null===(t=this.glglyph)||void 0===t||t.set_data_changed()}_map_data(){}}i.GlyphView=y,y.__name__="GlyphView";class g extends l.Model{constructor(t){super(t)}static init_Glyph(){}}i.Glyph=g,g.__name__="Glyph",g.init_Glyph()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1).__importDefault(e(96)),s=e(24),o=e(79);function d(e,n){let t=0,i=n.length-1;for(;t<i;){const s=t+i>>1;n[s]>e?i=s:t=s+1}return n[t]}class x extends i.default{search_indices(e,n,t,i){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let o=this._boxes.length-4;const x=[],h=new s.Indices(this.numItems);for(;void 0!==o;){const s=Math.min(o+4*this.nodeSize,d(o,this._levelBounds));for(let d=o;d<s;d+=4){const s=0|this._indices[d>>2];t<this._boxes[d+0]||(i<this._boxes[d+1]||e>this._boxes[d+2]||n>this._boxes[d+3]||(o<4*this.numItems?h.set(s):x.push(s)))}o=x.pop()}return h}}x.__name__="_FlatBush";class h{constructor(e){this.index=null,e>0&&(this.index=new x(e))}add(e,n,t,i){var s;null===(s=this.index)||void 0===s||s.add(e,n,t,i)}add_empty(){var e;null===(e=this.index)||void 0===e||e.add(1/0,1/0,-1/0,-1/0)}finish(){var e;null===(e=this.index)||void 0===e||e.finish()}_normalize(e){let{x0:n,y0:t,x1:i,y1:s}=e;return n>i&&([n,i]=[i,n]),t>s&&([t,s]=[s,t]),{x0:n,y0:t,x1:i,y1:s}}get bbox(){if(null==this.index)return o.empty();{const{minX:e,minY:n,maxX:t,maxY:i}=this.index;return{x0:e,y0:n,x1:t,y1:i}}}indices(e){if(null==this.index)return new s.Indices(0);{const{x0:n,y0:t,x1:i,y1:s}=this._normalize(e);return this.index.search_indices(n,t,i,s)}}bounds(e){const n=o.empty();for(const t of this.indices(e)){const e=this.index._boxes,i=e[4*t+0],s=e[4*t+1],o=e[4*t+2],d=e[4*t+3];o<n.x0&&(n.x0=o),i>n.x1&&(n.x1=i),d<n.y0&&(n.y0=d),s>n.y1&&(n.y1=s)}return n}}t.SpatialIndex=h,h.__name__="SpatialIndex"},n”, ” function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1).__importDefault(t(97)),h=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class n{static from(t){if(!(t instanceof ArrayBuffer))throw new Error("Data must be an instance of ArrayBuffer.");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error("Data does not appear to be in a Flatbush format.");if(i>>4!=3)throw new Error(Got v${i>>4} data when expected v3.);const[e]=new Uint16Array(t,2,1),[o]=new Uint32Array(t,4,1);return new n(o,e,h[15&i],t)}constructor(t,s=16,i=Float64Array,n){if(void 0===t)throw new Error("Missing required argument: numItems.");if(isNaN(t)||t<=0)throw new Error(Unpexpected numItems value: ${t}.);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let o=t,r=o;this._levelBounds=[4*o];do{o=Math.ceil(o/this.nodeSize),r+=o,this._levelBounds.push(4*r)}while(1!==o);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=h.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(Unexpected typed array class: ${i}.);n&&n instanceof ArrayBuffer?(this.data=n,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new e.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,t<this.minX&&(this.minX=t),s<this.minY&&(this.minY=s),i>this.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(Added ${this._pos>>2} items when expected ${this.numItems}.);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e<this.numItems;e++){let h=4*e;const n=this._boxes[h++],o=this._boxes[h++],r=this._boxes[h++],a=this._boxes[h++],d=Math.floor(65535*((n+r)/2-this.minX)/t),x=Math.floor(65535*((o+a)/2-this.minY)/s);i[e]=_(d,x)}!function t(s,i,e,h,n,o){if(Math.floor(h/o)>=Math.floor(n/o))return;const r=s[h+n>>1];let _=h-1,d=n+1;for(;;){do{_++}while(s[_]<r);do{d–}while(s[d]>r);if(_>=d)break;a(s,i,e,_,d)}t(s,i,e,h,d,o),t(s,i,e,d+1,n,o)}(i,this._boxes,this._indices,0,this.numItems-1,this.nodeSize);for(let t=0,s=0;t<this._levelBounds.length-1;t++){const i=this._levelBounds[t];for(;s<i;){const t=s;let e=1/0,h=1/0,n=-1/0,o=-1/0;for(let t=0;t<this.nodeSize&&s<i;t++)e=Math.min(e,this._boxes[s++]),h=Math.min(h,this._boxes[s++]),n=Math.max(n,this._boxes[s++]),o=Math.max(o,this._boxes[s++]);this._indices[this._pos>>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let n=this._boxes.length-4;const o=[],a=[];for(;void 0!==n;){const _=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let r=n;r<_;r+=4){const _=0|this._indices[r>>2];i<this._boxes[r]||(e<this._boxes[r+1]||t>this._boxes[r+2]||s>this._boxes[r+3]||(n<4*this.numItems?(void 0===h||h(_))&&a.push(_):o.push(_)))}n=o.pop()}return a}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let n=this._boxes.length-4;const a=this._queue,_=[],d=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let i=n;i<e;i+=4){const e=0|this._indices[i>>2],r=o(t,this._boxes[i],this._boxes[i+2]),_=o(s,this._boxes[i+1],this._boxes[i+3]),d=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&a.push(-e-1,d):a.push(e,d)}for(;a.length&&a.peek()<0;){if(a.peekValue()>d)return a.clear(),_;if(_.push(-a.pop()-1),_.length===i)return a.clear(),_}n=a.pop()}return a.clear(),_}}function o(t,s,i){return t<s?s-t:t<=i?0:t-i}function r(t,s){let i=0,e=s.length-1;for(;i<e;){const h=i+e>>1;s[h]>t?e=h:i=h+1}return s[i]}function a(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],d=s[o+2],x=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=d,s[r+3]=x;const l=i[e];i[e]=i[h],i[h]=l}function _(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let d=t^s,x=e|65535^(d|i);return d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),(x<<1|d)>>>0}i.default=n},n”, ” function _(s,t,i){Object.defineProperty(i,"__esModule",{value:!0});i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length–,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h<i;){let s=1+(h<<1);const i=s+1;let e=this.ids[s],l=this.values[s];const n=this.values[i];if(i<this.length&&n<l&&(s=i,e=this.ids[i],l=n),l>=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const s=t(1),i=t(99),r=s.__importStar(t(18)),a=t(24),o=t(9),p=t(8),g=t(11);function c(t,e,n=0){const s=new Map;for(let i=0;i<t.length;i++){const r=t[i];if(s.has(r))throw new Error("duplicate factor or subfactor: "+r);s.set(r,{value:.5+i*(1+e)+n})}return[s,(t.length-1)*e]}function l(t,e,n,s=0){var i;const r=new Map,a=new Map;for(const[e,n]of t){const t=null!==(i=a.get(e))&&void 0!==i?i:[];a.set(e,[…t,n])}let p=s,g=0;for(const[t,s]of a){const i=s.length,[a,l]=c(s,n,p);g+=l;const u=o.sum(s.map(t=>a.get(t).value));r.set(t,{value:u/i,mapping:a}),p+=i+e+l}return[r,(a.size-1)*e+g]}function u(t,e,n,s,i=0){var r;const a=new Map,p=new Map;for(const[e,n,s]of t){const t=null!==(r=p.get(e))&&void 0!==r?r:[];p.set(e,[…t,[n,s]])}let g=i,c=0;for(const[t,i]of p){const r=i.length,[p,u]=l(i,n,s,g);c+=u;const h=o.sum(i.map(([t])=>p.get(t).value));a.set(t,{value:h/r,mapping:p}),g+=r+e+u}return[a,(p.size-1)*e+c]}n.map_one_level=c,n.map_two_levels=l,n.map_three_levels=u;class h extends i.Range{constructor(t){super(t)}static init_FactorRange(){this.define({factors:[r.Array,[]],factor_padding:[r.Number,0],subgroup_padding:[r.Number,.8],group_padding:[r.Number,1.4],range_padding:[r.Number,0],range_padding_units:[r.PaddingUnits,"percent"],start:[r.Number],end:[r.Number]}),this.internal({levels:[r.Number],mids:[r.Array,null],tops:[r.Array,null]})}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,()=>this.reset()),this.connect(this.properties.factor_padding.change,()=>this.reset()),this.connect(this.properties.group_padding.change,()=>this.reset()),this.connect(this.properties.subgroup_padding.change,()=>this.reset()),this.connect(this.properties.range_padding.change,()=>this.reset()),this.connect(this.properties.range_padding_units.change,()=>this.reset())}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[e]=t,n=this._mapping.get(e);return null!=n?n.value:NaN}case 2:{const[e,n]=t,s=this._mapping.get(e);if(null!=s){const t=s.mapping.get(n);if(null!=t)return t.value}return NaN}case 3:{const[e,n,s]=t,i=this._mapping.get(e);if(null!=i){const t=i.mapping.get(n);if(null!=t){const e=t.mapping.get(s);if(null!=e)return e.value}}return NaN}default:g.unreachable()}}synthetic(t){if(p.isNumber(t))return t;if(p.isString(t))return this._lookup([t]);let e=0;const n=t[t.length-1];return p.isNumber(n)&&(e=n,t=t.slice(0,-1)),this._lookup(t)+e}v_synthetic(t){const e=t.length,n=new a.NumberArray(e);for(let s=0;s<e;s++)n[s]=this.synthetic(t[s]);return n}_init(t){const{levels:e,mapping:n,tops:s,mids:i,inside_padding:r}=(()=>{if(o.every(this.factors,p.isString)){const t=this.factors,[e,n]=c(t,this.factor_padding);return{levels:1,mapping:e,tops:null,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&2==t.length&&p.isString(t[0])&&p.isString(t[1]))){const t=this.factors,[e,n]=l(t,this.group_padding,this.factor_padding),s=[…e.keys()];return{levels:2,mapping:e,tops:s,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&3==t.length&&p.isString(t[0])&&p.isString(t[1])&&p.isString(t[2]))){const t=this.factors,[e,n]=u(t,this.group_padding,this.subgroup_padding,this.factor_padding),s=[…e.keys()],i=[];for(const[t,n]of e)for(const e of n.mapping.keys())i.push([t,e]);return{levels:3,mapping:e,tops:s,mids:i,inside_padding:n}}g.unreachable()})();this._mapping=n,this.tops=s,this.mids=i;let a=0,h=this.factors.length+r;if("percent"==this.range_padding_units){const t=(h-a)*this.range_padding/2;a-=t,h+=t}else a-=this.range_padding,h+=this.range_padding;this.setv({start:a,end:h,levels:e},{silent:t}),"auto"==this.bounds&&this.setv({bounds:[a,h]},{silent:!0})}}n.FactorRange=h,h.__name__="FactorRange",h.init_FactorRange()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(81),a=n.__importStar(e(18));class r extends s.Model{constructor(e){super(e),this.have_updated_interactively=!1}static init_Range(){this.define({bounds:[a.Any],min_interval:[a.Any],max_interval:[a.Any]}),this.internal({plots:[a.Array,[]]})}get is_reversed(){return this.start>this.end}get is_valid(){return!isNaN(this.min)&&!isNaN(this.max)}}i.Range=r,r.__name__="Range",r.init_Range()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1).__importStar(e(101));i.generic_line_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){t.save(),t.beginPath(),t.moveTo(i,(c+o)/2),t.lineTo(n,(c+o)/2),e.line.doit&&(e.line.set_vectorize(t,r),t.stroke()),t.restore()},i.generic_area_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){const l=.1*Math.abs(n-i),a=.1*Math.abs(o-c),s=i+l,_=n-l,h=c+a,v=o-a;e.fill.doit&&(e.fill.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),null!=e.hatch&&e.hatch.doit&&(e.hatch.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),e.line&&e.line.doit&&(t.beginPath(),t.rect(s,h,_-s,v-h),e.line.set_vectorize(t,r),t.stroke())},i.line_interpolation=function(e,t,i,c,o,r){const{sx:l,sy:a}=t;let s,_,h,v;"point"==t.type?([h,v]=e.yscale.r_invert(a-1,a+1),[s,_]=e.xscale.r_invert(l-1,l+1)):"v"==t.direction?([h,v]=e.yscale.r_invert(a,a),[s,_]=[Math.min(i-1,o-1),Math.max(i+1,o+1)]):([s,_]=e.xscale.r_invert(l,l),[h,v]=[Math.min(c-1,r-1),Math.max(c+1,r+1)]);const{x,y}=n.check_2_segments_intersect(s,h,_,v,i,c,o,r);return[x,y]}},n”, ” function _(t,n,e){function i(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function r(t,n,e){const r=i(n,e);if(0==r)return i(t,n);const s=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/r;if(s<0)return i(t,n);if(s>1)return i(t,e);return i(t,{x:n.x+s*(e.x-n.x),y:n.y+s*(e.y-n.y)})}Object.defineProperty(e,"__esModule",{value:!0}),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u<e.length;u++){const c=e[u],_=i[u];o<n!=_<n&&s+(n-o)/(_-o)*(c-s)<t&&(r=!r),s=c,o=_}return r},e.point_in_ellipse=function(t,n,e,i,r,s,o){return((Math.cos(e)/r)**2+(Math.sin(e)/i)**2)*(t-s)**2+2*Math.cos(e)*Math.sin(e)*((1/r)**2-(1/i)**2)*(t-s)*(n-o)+((Math.cos(e)/i)**2+(Math.sin(e)/r)**2)*(n-o)**2<=1},e.dist_2_pts=i,e.dist_to_segment_squared=r,e.dist_to_segment=function(t,n,e){return Math.sqrt(r(t,n,e))},e.check_2_segments_intersect=function(t,n,e,i,r,s,o,u){const c=(u-s)*(e-t)-(o-r)*(i-n);if(0==c)return{hit:!1,x:null,y:null};{let _=n-s,l=t-r;const y=(e-t)*_-(i-n)*l;_=((o-r)*_-(u-s)*l)/c,l=y/c;return{hit:_>0&&_<1&&l>0&&l<1,x:t+_*(e-t),y:n+_*(i-n)}}}},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(103),a=t(107),n=t(108),o=t(109),_=t(22);class h{constructor(t){this._atlas=new Map,this._width=256,this._height=256,this.tex=new i.Texture2d(t),this.tex.set_wrapping(t.REPEAT,t.REPEAT),this.tex.set_interpolation(t.NEAREST,t.NEAREST),this.tex.set_size([this._width,this._height],t.RGBA),this.tex.set_data([0,0],[this._width,this._height],new Uint8Array(4*this._width*this._height)),this.get_atlas_data([1])}get_atlas_data(t){const e=t.join("-");let s=this._atlas.get(e);if(null==s){const[i,a]=this.make_pattern(t),n=this._atlas.size;this.tex.set_data([0,n],[this._width,1],new Uint8Array(i.map(t=>t+10))),s=[n/this._height,a],this._atlas.set(e,s)}return s}make_pattern(t){t.length>1&&t.length%2&&(t=t.concat(t));let e=0;for(const s of t)e+=s;const s=[];let i=0;for(let e=0,a=t.length+2;e<a;e+=2){const a=Math.max(1e-4,t[e%t.length]),n=Math.max(1e-4,t[(e+1)%t.length]);s.push(i,i+a),i+=a+n}const a=this._width,n=new Float32Array(4*a);for(let t=0,i=a;t<i;t++){let i,o,_;const h=e*t/(a-1);let r=0,l=1e16;for(let t=0,e=s.length;t<e;t++){const e=Math.abs(s[t]-h);e<l&&(r=t,l=e)}r%2==0?(_=h<=s[r]?1:0,o=s[r],i=s[r+1]):(_=h>s[r]?-1:0,o=s[r-1],i=s[r]),n[4*t+0]=s[r],n[4*t+1]=_,n[4*t+2]=o,n[4*t+3]=i}return[n,e]}}h.__name__="DashAtlas";const r={miter:0,round:1,bevel:2},l={"":0,none:0,".":0,round:1,")":1,"(":1,o:1,"triangle in":2,"<":2,"triangle out":3,">":3,square:4,"[":4,"]":4,"=":4,butt:5,"|\":5};class g extends a.BaseGLGlyph{init(){const{gl:t}=this;this._scale_aspect=0;const e=n.vertex_shader,s=o.fragment_shader;this.prog=new i.Program(t),this.prog.set_shaders(e,s),this.index_buffer=new i.IndexBuffer(t),this.vbo_position=new i.VertexBuffer(t),this.vbo_tangents=new i.VertexBuffer(t),this.vbo_segment=new i.VertexBuffer(t),this.vbo_angles=new i.VertexBuffer(t),this.vbo_texcoord=new i.VertexBuffer(t),this.dash_atlas=new h(t)}draw(t,e,s){const i=e.glglyph;if(i.data_changed&&(i._set_data(),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(),this.visuals_changed=!1),i._update_scale(1,1),this._scale_aspect=1,this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord),this.prog.set_uniform(\"u_length\",\"float\",[i.cumsum]),this.prog.set_texture(\"u_dash_atlas\",this.dash_atlas.tex),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_uniform(\"u_scale_aspect\",\"vec2\",[1,1]),this.prog.set_uniform(\"u_scale_length\",\"float\",[Math.sqrt(2)]),this.I_triangles=i.I_triangles,this.I_triangles.length<65535)this.index_buffer.set_size(2*this.I_triangles.length),this.index_buffer.set_data(0,new Uint16Array(this.I_triangles)),this.prog.draw(this.gl.TRIANGLES,this.index_buffer);else{t=Array.from(this.I_triangles);const e=this.I_triangles.length,s=64008,a=[];for(let t=0,i=Math.ceil(e/s);t<i;t++)a.push([]);for(let e=0,i=t.length;e<i;e++){const i=t[e]%s;a[Math.floor(t[e]/s)].push(i)}for(let t=0,e=a.length;t<e;t++){const e=new Uint16Array(a[t]),n=t*s*4;0!==e.length&&(this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position,0,2*n),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents,0,4*n),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment,0,2*n),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles,0,2*n),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord,0,2*n),this.index_buffer.set_size(2*e.length),this.index_buffer.set_data(0,e),this.prog.draw(this.gl.TRIANGLES,this.index_buffer))}}}_set_data(){this._bake(),this.vbo_position.set_size(4*this.V_position.length),this.vbo_position.set_data(0,this.V_position),this.vbo_tangents.set_size(4*this.V_tangents.length),this.vbo_tangents.set_data(0,this.V_tangents),this.vbo_angles.set_size(4*this.V_angles.length),this.vbo_angles.set_data(0,this.V_angles),this.vbo_texcoord.set_size(4*this.V_texcoord.length),this.vbo_texcoord.set_data(0,this.V_texcoord)}_set_visuals(){const t=_.color2rgba(this.glyph.visuals.line.line_color.value(),this.glyph.visuals.line.line_alpha.value()),e=l[this.glyph.visuals.line.line_cap.value()],s=r[this.glyph.visuals.line.line_join.value()];this.prog.set_uniform(\"u_color\",\"vec4\",t),this.prog.set_uniform(\"u_linewidth\",\"float\",[this.glyph.visuals.line.line_width.value()]),this.prog.set_uniform(\"u_antialias\",\"float\",[.9]),this.prog.set_uniform(\"u_linecaps\",\"vec2\",[e,e]),this.prog.set_uniform(\"u_linejoin\",\"float\",[s]),this.prog.set_uniform(\"u_miter_limit\",\"float\",[10]);const i=this.glyph.visuals.line.line_dash.value();let a=0,n=1;i.length&&([a,n]=this.dash_atlas.get_atlas_data(i)),this.prog.set_uniform(\"u_dash_index\",\"float\",[a]),this.prog.set_uniform(\"u_dash_phase\",\"float\",[this.glyph.visuals.line.line_dash_offset.value()]),this.prog.set_uniform(\"u_dash_period\",\"float\",[n]),this.prog.set_uniform(\"u_dash_caps\",\"vec2\",[e,e]),this.prog.set_uniform(\"u_closed\",\"float\",[0])}_bake(){let t,e,s,i,a,n,o,_;const h=this.nvertices,r=this.glyph.sx,l=this.glyph.sy,g=o=new Float32Array(2*h),u=new Float32Array(2*h),f=_=new Float32Array(4*h);for(let t=0,e=h;t<e;t++)g[2*t+0]=r[t],g[2*t+1]=l[t];this.tangents=e=new Float32Array(2*h-2);for(let t=0,s=h-1;t<s;t++)e[2*t+0]=o[2*(t+1)+0]-o[2*t+0],e[2*t+1]=o[2*(t+1)+1]-o[2*t+1];for(let t=0,s=h-1;t<s;t++)f[4*(t+1)+0]=e[2*t+0],f[4*(t+1)+1]=e[2*t+1],f[4*t+2]=e[2*t+0],f[4*t+3]=e[2*t+1];f[0]=e[0],f[1]=e[1],f[4*(h-1)+2]=e[2*(h-2)+0],f[4*(h-1)+3]=e[2*(h-2)+1];const c=new Float32Array(h);for(let t=0,e=h;t<e;t++)c[t]=Math.atan2(_[4*t+0]*_[4*t+3]-_[4*t+1]*_[4*t+2],_[4*t+0]*_[4*t+2]+_[4*t+1]*_[4*t+3]);for(let t=0,e=h-1;t<e;t++)u[2*t+0]=c[t],u[2*t+1]=c[t+1];const p=4*h-4;this.V_position=i=new Float32Array(2*p),this.V_angles=s=new Float32Array(2*p),this.V_tangents=a=new Float32Array(4*p),this.V_texcoord=n=new Float32Array(2*p);for(let t=0,e=h;t<e;t++)for(let e=0;e<4;e++){for(let a=0;a<2;a++)i[2*(4*t+e-2)+a]=g[2*t+a],s[2*(4*t+e)+a]=u[2*t+a];for(let s=0;s<4;s++)a[4*(4*t+e-2)+s]=f[4*t+s]}for(let t=0,e=h;t<e;t++)n[2*(4*t+0)+0]=-1,n[2*(4*t+1)+0]=-1,n[2*(4*t+2)+0]=1,n[2*(4*t+3)+0]=1,n[2*(4*t+0)+1]=-1,n[2*(4*t+1)+1]=1,n[2*(4*t+2)+1]=-1,n[2*(4*t+3)+1]=1;const d=6*(h-1);this.I_triangles=t=new Uint32Array(d);for(let e=0,s=h;e<s;e++)t[6*e+0]=0+4*e,t[6*e+1]=1+4*e,t[6*e+2]=3+4*e,t[6*e+3]=2+4*e,t[6*e+4]=0+4*e,t[6*e+5]=3+4*e}_update_scale(t,e){let s;const i=this.nvertices,a=4*i-4,n=this.tangents,o=new Float32Array(i-1),_=new Float32Array(2*i);this.V_segment=s=new Float32Array(2*a);for(let s=0,a=i-1;s<a;s++)o[s]=Math.sqrt((n[2*s+0]*t)**2+(n[2*s+1]*e)**2);let h=0;for(let t=0,e=i-1;t<e;t++)h+=o[t],_[2*(t+1)+0]=h,_[2*t+1]=h;for(let t=0,e=i;t<e;t++)for(let e=0;e<4;e++)for(let i=0;i<2;i++)s[2*(4*t+e)+i]=_[2*t+i];this.cumsum=h,this.vbo_segment.set_size(4*this.V_segment.length),this.vbo_segment.set_data(0,this.V_segment)}}s.LineGL=g,g.__name__=\"LineGL\"},\n", " function _(e,r,f){Object.defineProperty(f,\"__esModule\",{value:!0});var u=e(104);f.Program=u.Program;var t=e(106);f.Texture2d=t.Texture2d;var a=e(105);f.IndexBuffer=a.IndexBuffer,f.VertexBuffer=a.VertexBuffer},\n", " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(105);class a{constructor(t){this.gl=t,this.UTYPEMAP={float:\"uniform1fv\",vec2:\"uniform2fv\",vec3:\"uniform3fv\",vec4:\"uniform4fv\",int:\"uniform1iv\",ivec2:\"uniform2iv\",ivec3:\"uniform3iv\",ivec4:\"uniform4iv\",bool:\"uniform1iv\",bvec2:\"uniform2iv\",bvec3:\"uniform3iv\",bvec4:\"uniform4iv\",mat2:\"uniformMatrix2fv\",mat3:\"uniformMatrix3fv\",mat4:\"uniformMatrix4fv\",sampler1D:\"uniform1i\",sampler2D:\"uniform1i\",sampler3D:\"uniform1i\"},this.ATYPEMAP={float:\"vertexAttrib1f\",vec2:\"vertexAttrib2f\",vec3:\"vertexAttrib3f\",vec4:\"vertexAttrib4f\"},this.ATYPEINFO={float:[1,5126],vec2:[2,5126],vec3:[3,5126],vec4:[4,5126]},this._linked=!1,this._validated=!1,this._unset_variables=new Set,this._known_invalid=new Set,this._locations=new Map,this._samplers=new Map,this._attributes=new Map,this.handle=this.gl.createProgram()}delete(){this.gl.deleteProgram(this.handle)}activate(){this.gl.useProgram(this.handle)}deactivate(){this.gl.useProgram(0)}set_shaders(t,e){const i=this.gl;this._linked=!1;const s=i.createShader(i.VERTEX_SHADER),a=i.createShader(i.FRAGMENT_SHADER),r=[[t,s,\"vertex\"],[e,a,\"fragment\"]];for(const[t,e,s]of r){i.shaderSource(e,t),i.compileShader(e);if(!i.getShaderParameter(e,i.COMPILE_STATUS)){const t=i.getShaderInfoLog(e);throw new Error(`errors in ${s} shader:\\n${t}`)}}if(i.attachShader(this.handle,s),i.attachShader(this.handle,a),i.linkProgram(this.handle),!i.getProgramParameter(this.handle,i.LINK_STATUS)){const t=i.getProgramInfoLog(this.handle);throw new Error(\"Program link error:\\n\"+t)}this._unset_variables=this._get_active_attributes_and_uniforms(),i.detachShader(this.handle,s),i.detachShader(this.handle,a),i.deleteShader(s),i.deleteShader(a),this._known_invalid.clear(),this._linked=!0}_get_active_attributes_and_uniforms(){const t=this.gl;this._locations.clear();const e=new RegExp(\"(\\\\w+)\\\\s*(\\\\[(\\\\d+)\\\\])\\\\s*\"),i=t.getProgramParameter(this.handle,t.ACTIVE_UNIFORMS),s=[],a=[],r=[[s,t.getProgramParameter(this.handle,t.ACTIVE_ATTRIBUTES),t.getActiveAttrib,t.getAttribLocation],[a,i,t.getActiveUniform,t.getUniformLocation]];for(const[i,s,a,n]of r)for(let r=0;r<s;r+=1){const s=a.call(t,this.handle,r),o=s.name,h=o.match(e);if(null!=h){const t=h[1];for(let e=0;e<s.size;e+=1)i.push([`${t}[${e}]`,s.type])}else i.push([o,s.type]);this._locations.set(o,n.call(t,this.handle,o))}const n=new Set;for(const[t]of s)n.add(t);for(const[t]of a)n.add(t);return n}set_texture(t,e){var i;if(!this._linked)throw new Error(\"Cannot set uniform when program has no code\");const s=null!==(i=this._locations.get(t))&&void 0!==i?i:-1;if(s<0)this._known_invalid.has(t)||(this._known_invalid.add(t),console.log(`\"Variable ${t} is not an active texture`));else{this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate();{let i=this._samplers.size;this._samplers.has(t)&&(i=this._samplers.get(t)[2]),this._samplers.set(t,[e._target,e.handle,i]),this.gl.uniform1i(s,i)}}}set_uniform(t,e,i){var s;if(!this._linked)throw new Error(\"Cannot set uniform when program has no code\");const a=null!==(s=this._locations.get(t))&&void 0!==s?s:-1;if(a<0)return void(this._known_invalid.has(t)||(this._known_invalid.add(t),console.log(`Variable ${t} is not an active uniform`)));this._unset_variables.has(t)&&this._unset_variables.delete(t);let r=1;if(!e.startsWith(\"mat\")){const t=\"int\"==e||"bool"==e?"float":e.replace(/^ib/,"");r=Math.floor(i.length/this.ATYPEINFO[t][0])}if(r>1)for(let e=0;e<r;e+=1)if(this._unset_variables.has(${t}[${e}])){const i=`${t}[${e}]`;this._unset_variables.has(i)&&this._unset_variables.delete(i)}const n=this.UTYPEMAP[e];this.activate(),e.startsWith("mat")?this.gl[n](a,!1,i):this.gl[n](a,i)}set_attribute(t,e,i,a=0,r=0){var n;if(!this._linked)throw new Error("Cannot set attribute when program has no code");const o=null!==(n=this._locations.get(t))&&void 0!==n?n:-1;if(o<0)this._known_invalid.has(t)||(this._known_invalid.add(t),i instanceof s.VertexBuffer&&r>0||console.log(Variable ${t} is not an active attribute));else if(this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate(),i instanceof s.VertexBuffer){const[s,n]=this.ATYPEINFO[e],h="vertexAttribPointer",l=[s,n,!1,a,r];this._attributes.set(t,[i.handle,o,h,l])}else{const s=this.ATYPEMAP[e];this._attributes.set(t,[null,o,s,i])}}_pre_draw(){this.activate();for(const[t,e,i]of this._samplers.values())this.gl.activeTexture(this.gl.TEXTURE0+i),this.gl.bindTexture(t,e);for(const[t,e,i,s]of this._attributes.values())null!=t?(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,t),this.gl.enableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,…s])):(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,…s]));this._validated||(this._validated=!0,this._validate())}_validate(){if(this._unset_variables.size&&console.log("Program has unset variables: "+this._unset_variables),this.gl.validateProgram(this.handle),!this.gl.getProgramParameter(this.handle,this.gl.VALIDATE_STATUS))throw console.log(this.gl.getProgramInfoLog(this.handle)),new Error("Program validation error")}draw(t,e){if(!this._linked)throw new Error("Cannot draw program if code has not been set");if(e instanceof s.IndexBuffer){this._pre_draw(),e.activate();const i=e.buffer_size/2,s=this.gl.UNSIGNED_SHORT;this.gl.drawElements(t,i,s,0),e.deactivate()}else{const[i,s]=e;0!=s&&(this._pre_draw(),this.gl.drawArrays(t,i,s))}}}i.Program=a,a.__name__="Program"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class i{constructor(e){this.gl=e,this._usage=35048,this.buffer_size=0,this.handle=this.gl.createBuffer()}delete(){this.gl.deleteBuffer(this.handle)}activate(){this.gl.bindBuffer(this._target,this.handle)}deactivate(){this.gl.bindBuffer(this._target,null)}set_size(e){e!=this.buffer_size&&(this.activate(),this.gl.bufferData(this._target,e,this._usage),this.buffer_size=e)}set_data(e,t){this.activate(),this.gl.bufferSubData(this._target,e,t)}}s.Buffer=i,i.__name__="Buffer";class r extends i{constructor(){super(…arguments),this._target=34962}}s.VertexBuffer=r,r.__name__="VertexBuffer";class a extends i{constructor(){super(…arguments),this._target=34963}}s.IndexBuffer=a,a.__name__="IndexBuffer"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const a=t(11);class r{constructor(t){this.gl=t,this._target=3553,this._types={Int8Array:5120,Uint8Array:5121,Int16Array:5122,Uint16Array:5123,Int32Array:5124,Uint32Array:5125,Float32Array:5126},this.handle=this.gl.createTexture()}delete(){this.gl.deleteTexture(this.handle)}activate(){this.gl.bindTexture(this._target,this.handle)}deactivate(){this.gl.bindTexture(this._target,0)}_get_alignment(t){const e=[4,8,2,1];for(const i of e)if(t%i==0)return i;a.unreachable()}set_wrapping(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_S,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_T,e)}set_interpolation(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_MIN_FILTER,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_MAG_FILTER,e)}set_size([t,e],i){var a,r,s;t==(null===(a=this._shape_format)||void 0===a?void 0:a.width)&&e==(null===(r=this._shape_format)||void 0===r?void 0:r.height)&&i==(null===(s=this._shape_format)||void 0===s?void 0:s.format)||(this._shape_format={width:t,height:e,format:i},this.activate(),this.gl.texImage2D(this._target,0,i,t,e,0,i,this.gl.UNSIGNED_BYTE,null))}set_data(t,[e,i],a){this.activate();const{format:r}=this._shape_format,[s,h]=t,l=this._types[a.constructor.name];if(null==l)throw new Error(Type ${a.constructor.name} not allowed for texture);const _=this._get_alignment(e);4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,_),this.gl.texSubImage2D(this._target,0,s,h,e,i,r,l,a),4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,4)}}i.Texture2d=r,r.__name__="Texture2d"},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});class s{constructor(e,t){this.gl=e,this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.init()}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,i){if(0==t.length)return!0;const{width:s,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:s,height:h};return this.draw(t,i,a),!0}}i.BaseGLGlyph=s,s.__name__="BaseGLGlyph"},n”, ” function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.vertex_shader="\nprecision mediump float;\n\nconst float PI = 3.14159265358979323846264;\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\n\nuniform float u_pixel_ratio;\nuniform vec2 u_canvas_size, u_offset;\nuniform vec2 u_scale_aspect;\nuniform float u_scale_length;\n\nuniform vec4 u_color;\nuniform float u_antialias;\nuniform float u_length;\nuniform float u_linewidth;\nuniform float u_dash_index;\nuniform float u_closed;\n\nattribute vec2 a_position;\nattribute vec4 a_tangents;\nattribute vec2 a_segment;\nattribute vec2 a_angles;\nattribute vec2 a_texcoord;\n\nvarying vec4 v_color;\nvarying vec2 v_segment;\nvarying vec2 v_angles;\nvarying vec2 v_texcoord;\nvarying vec2 v_miter;\nvarying float v_length;\nvarying float v_linewidth;\n\nfloat cross(in vec2 v1, in vec2 v2)\n{\n return v1.x*v2.y - v1.y*v2.x;\n}\n\nfloat signed_distance(in vec2 v1, in vec2 v2, in vec2 v3)\n{\n return cross(v2-v1,v1-v3) / length(v2-v1);\n}\n\nvoid rotate( in vec2 v, in float alpha, out vec2 result )\n{\n float c = cos(alpha);\n float s = sin(alpha);\n result = vec2( c*v.x - s*v.y,\n s*v.x + c*v.y );\n}\n\nvoid main()\n{\n bool closed = (u_closed > 0.0);\n\n // Attributes and uniforms to varyings\n v_color = u_color;\n v_linewidth = u_linewidth;\n v_segment = a_segment * u_scale_length;\n v_length = u_length * u_scale_length;\n\n // Scale to map to pixel coordinates. The original algorithm from the paper\n // assumed isotropic scale. We obviously do not have this.\n vec2 abs_scale_aspect = abs(u_scale_aspect);\n vec2 abs_scale = u_scale_length * abs_scale_aspect;\n\n // Correct angles for aspect ratio\n vec2 av;\n av = vec2(1.0, tan(a_angles.x)) / abs_scale_aspect;\n v_angles.x = atan(av.y, av.x);\n av = vec2(1.0, tan(a_angles.y)) / abs_scale_aspect;\n v_angles.y = atan(av.y, av.x);\n\n // Thickness below 1 pixel are represented using a 1 pixel thickness\n // and a modified alpha\n v_color.a = min(v_linewidth, v_color.a);\n v_linewidth = max(v_linewidth, 1.0);\n\n // If color is fully transparent we just will discard the fragment anyway\n if( v_color.a <= 0.0 ) {\n gl_Position = vec4(0.0,0.0,0.0,1.0);\n return;\n }\n\n // This is the actual half width of the line\n float w = ceil(u_antialias+v_linewidth)/2.0;\n\n vec2 position = a_position;\n\n vec2 t1 = normalize(a_tangents.xy * abs_scale_aspect); // note the scaling for aspect ratio here\n vec2 t2 = normalize(a_tangents.zw * abs_scale_aspect);\n float u = a_texcoord.x;\n float v = a_texcoord.y;\n vec2 o1 = vec2( +t1.y, -t1.x);\n vec2 o2 = vec2( +t2.y, -t2.x);\n\n // This is a join\n // —————————————————————-\n if( t1 != t2 ) {\n float angle = atan (t1.x*t2.y-t1.y*t2.x, t1.x*t2.x+t1.y*t2.y); // Angle needs recalculation for some reason\n vec2 t = normalize(t1+t2);\n vec2 o = vec2( + t.y, - t.x);\n\n if ( u_dash_index > 0.0 )\n {\n // Broken angle\n // —————————————————————-\n if( (abs(angle) > THETA) ) {\n position += v * w * o / cos(angle/2.0);\n float s = sign(angle);\n if( angle < 0.0 ) {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n if( v == 1.0 ) {\n position -= 2.0 * w * t1 / sin(angle);\n u -= 2.0 * w / sin(angle);\n }\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n if( v == 1.0 ) {\n position += 2.0 * w * t2 / sin(angle);\n u += 2.0*w / sin(angle);\n }\n }\n } else {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n if( v == -1.0 ) {\n position += 2.0 * w * t1 / sin(angle);\n u += 2.0 * w / sin(angle);\n }\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n if( v == -1.0 ) {\n position -= 2.0 * w * t2 / sin(angle);\n u -= 2.0*w / sin(angle);\n }\n }\n }\n // Continuous angle\n // ————————————————————\n } else {\n position += v * w * o / cos(angle/2.0);\n if( u == +1.0 ) u = v_segment.y;\n else u = v_segment.x;\n }\n }\n\n // Solid line\n // ——————————————————————–\n else\n {\n position.xy += v * w * o / cos(angle/2.0);\n if( angle < 0.0 ) {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n }\n } else {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n }\n }\n }\n\n // This is a line start or end (t1 == t2)\n // ————————————————————————\n } else {\n position += v * w * o1;\n if( u == -1.0 ) {\n u = v_segment.x - w;\n position -= w * t1;\n } else {\n u = v_segment.y + w;\n position += w * t2;\n }\n }\n\n // Miter distance\n // ————————————————————————\n vec2 t;\n vec2 curr = a_position * abs_scale;\n if( a_texcoord.x < 0.0 ) {\n vec2 next = curr + t2*(v_segment.y-v_segment.x);\n\n rotate( t1, +v_angles.x/2.0, t);\n v_miter.x = signed_distance(curr, curr+t, position);\n\n rotate( t2, +v_angles.y/2.0, t);\n v_miter.y = signed_distance(next, next+t, position);\n } else {\n vec2 prev = curr - t1*(v_segment.y-v_segment.x);\n\n rotate( t1, -v_angles.x/2.0,t);\n v_miter.x = signed_distance(prev, prev+t, position);\n\n rotate( t2, -v_angles.y/2.0,t);\n v_miter.y = signed_distance(curr, curr+t, position);\n }\n\n if (!closed && v_segment.x <= 0.0) {\n v_miter.x = 1e10;\n }\n if (!closed && v_segment.y >= v_length)\n {\n v_miter.y = 1e10;\n }\n\n v_texcoord = vec2( u, v*w );\n\n // Calculate position in device coordinates. Note that we\n // already scaled with abs scale above.\n vec2 normpos = position * sign(u_scale_aspect);\n normpos += 0.5; // make up for Bokeh’s offset\n normpos /= u_canvas_size / u_pixel_ratio; // in 0..1\n gl_Position = vec4(normpos*2.0-1.0, 0.0, 1.0);\n gl_Position.y = -1.0;\n}\n"},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.fragment_shader="\nprecision mediump float;\n\nconst float PI = 3.14159265358979323846264;\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\n\nuniform sampler2D u_dash_atlas;\n\nuniform vec2 u_linecaps;\nuniform float u_miter_limit;\nuniform float u_linejoin;\nuniform float u_antialias;\nuniform float u_dash_phase;\nuniform float u_dash_period;\nuniform float u_dash_index;\nuniform vec2 u_dash_caps;\nuniform float u_closed;\n\nvarying vec4 v_color;\nvarying vec2 v_segment;\nvarying vec2 v_angles;\nvarying vec2 v_texcoord;\nvarying vec2 v_miter;\nvarying float v_length;\nvarying float v_linewidth;\n\n// Compute distance to cap —————————————————-\nfloat cap( int type, float dx, float dy, float t, float linewidth )\n{\n float d = 0.0;\n dx = abs(dx);\n dy = abs(dy);\n if (type == 0) discard; // None\n else if (type == 1) d = sqrt(dx*dx+dy*dy); // Round\n else if (type == 3) d = (dx+abs(dy)); // Triangle in\n else if (type == 2) d = max(abs(dy),(t+dx-abs(dy))); // Triangle out\n else if (type == 4) d = max(dx,dy); // Square\n else if (type == 5) d = max(dx+t,dy); // Butt\n return d;\n}\n\n// Compute distance to join ————————————————-\nfloat join( in int type, in float d, in vec2 segment, in vec2 texcoord, in vec2 miter,\n in float linewidth )\n{\n // texcoord.x is distance from start\n // texcoord.y is distance from centerline\n // segment.x and y indicate the limits (as for texcoord.x) for this segment\n\n float dx = texcoord.x;\n\n // Round join\n if( type == 1 ) {\n if (dx < segment.x) {\n d = max(d,length( texcoord - vec2(segment.x,0.0)));\n //d = length( texcoord - vec2(segment.x,0.0));\n } else if (dx > segment.y) {\n d = max(d,length( texcoord - vec2(segment.y,0.0)));\n //d = length( texcoord - vec2(segment.y,0.0));\n }\n }\n // Bevel join\n else if ( type == 2 ) {\n if (dx < segment.x) {\n vec2 x = texcoord - vec2(segment.x,0.0);\n d = max(d, max(abs(x.x), abs(x.y)));\n\n } else if (dx > segment.y) {\n vec2 x = texcoord - vec2(segment.y,0.0);\n d = max(d, max(abs(x.x), abs(x.y)));\n }\n / Original code for bevel which does not work for us\n if( (dx < segment.x) || (dx > segment.y) )\n d = max(d, min(abs(x.x),abs(x.y)));\n /\n }\n\n return d;\n}\n\nvoid main()\n{\n // If color is fully transparent we just discard the fragment\n if( v_color.a <= 0.0 ) {\n discard;\n }\n\n // Test if dash pattern is the solid one (0)\n bool solid = (u_dash_index == 0.0);\n\n // Test if path is closed\n bool closed = (u_closed > 0.0);\n\n vec4 color = v_color;\n float dx = v_texcoord.x;\n float dy = v_texcoord.y;\n float t = v_linewidth/2.0-u_antialias;\n float width = 1.0; //v_linewidth; original code had dashes scale with line width, we do not\n float d = 0.0;\n\n vec2 linecaps = u_linecaps;\n vec2 dash_caps = u_dash_caps;\n float line_start = 0.0;\n float line_stop = v_length;\n\n // Apply miter limit; fragments too far into the miter are simply discarded\n if( (dx < v_segment.x) || (dx > v_segment.y) ) {\n float into_miter = max(v_segment.x - dx, dx - v_segment.y);\n if (into_miter > u_miter_limit*v_linewidth/2.0)\n discard;\n }\n\n // Solid line ————————————————————–\n if( solid ) {\n d = abs(dy);\n if( (!closed) && (dx < line_start) ) {\n d = cap( int(u_linecaps.x), abs(dx), abs(dy), t, v_linewidth );\n }\n else if( (!closed) && (dx > line_stop) ) {\n d = cap( int(u_linecaps.y), abs(dx)-line_stop, abs(dy), t, v_linewidth );\n }\n else {\n d = join( int(u_linejoin), abs(dy), v_segment, v_texcoord, v_miter, v_linewidth );\n }\n\n // Dash line ————————————————————–\n } else {\n float segment_start = v_segment.x;\n float segment_stop = v_segment.y;\n float segment_center= (segment_start+segment_stop)/2.0;\n float freq = u_dash_period*width;\n float u = mod( dx + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n float dash_center= tex.x * width;\n float dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n float dash_start = dx - u + _start;\n float dash_stop = dx - u + _stop;\n\n // Compute extents of the first dash (the one relative to v_segment.x)\n // Note: this could be computed in the vertex shader\n if( (dash_stop < segment_start) && (dash_caps.x != 5.0) ) {\n float u = mod(segment_start + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n dash_center= tex.x * width;\n //dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n dash_start = segment_start - u + _start;\n dash_stop = segment_start - u + _stop;\n }\n\n // Compute extents of the last dash (the one relatives to v_segment.y)\n // Note: This could be computed in the vertex shader\n else if( (dash_start > segment_stop) && (dash_caps.y != 5.0) ) {\n float u = mod(segment_stop + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n dash_center= tex.x * width;\n //dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n dash_start = segment_stop - u + _start;\n dash_stop = segment_stop - u + _stop;\n }\n\n // This test if the we are dealing with a discontinuous angle\n bool discontinuous = ((dx < segment_center) && abs(v_angles.x) > THETA) ||\n ((dx >= segment_center) && abs(v_angles.y) > THETA);\n //if( dx < line_start) discontinuous = false;\n //if( dx > line_stop) discontinuous = false;\n\n float d_join = join( int(u_linejoin), abs(dy),\n v_segment, v_texcoord, v_miter, v_linewidth );\n\n // When path is closed, we do not have room for linecaps, so we make room\n // by shortening the total length\n if (closed) {\n line_start += v_linewidth/2.0;\n line_stop -= v_linewidth/2.0;\n }\n\n // We also need to take antialias area into account\n //line_start += u_antialias;\n //line_stop -= u_antialias;\n\n // Check is dash stop is before line start\n if( dash_stop <= line_start ) {\n discard;\n }\n // Check is dash start is beyond line stop\n if( dash_start >= line_stop ) {\n discard;\n }\n\n // Check if current dash start is beyond segment stop\n if( discontinuous ) {\n // Dash start is beyond segment, we discard\n if( (dash_start > segment_stop) ) {\n discard;\n //gl_FragColor = vec4(1.0,0.0,0.0,.25); return;\n }\n\n // Dash stop is before segment, we discard\n if( (dash_stop < segment_start) ) {\n discard; //gl_FragColor = vec4(0.0,1.0,0.0,.25); return;\n }\n\n // Special case for round caps (nicer with this)\n if( dash_caps.x == 1.0 ) {\n if( (u > _stop) && (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0)) {\n discard;\n }\n }\n\n // Special case for round caps (nicer with this)\n if( dash_caps.y == 1.0 ) {\n if( (u < _start) && (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0)) {\n discard;\n }\n }\n\n // Special case for triangle caps (in & out) and square\n // We make sure the cap stop at crossing frontier\n if( (dash_caps.x != 1.0) && (dash_caps.x != 5.0) ) {\n if( (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0) ) {\n float a = v_angles.x/2.0;\n float x = (segment_start-dx)*cos(a) - dy*sin(a);\n float y = (segment_start-dx)*sin(a) + dy*cos(a);\n if( x > 0.0 ) discard;\n // We transform the cap into square to avoid holes\n dash_caps.x = 4.0;\n }\n }\n\n // Special case for triangle caps (in & out) and square\n // We make sure the cap stop at crossing frontier\n if( (dash_caps.y != 1.0) && (dash_caps.y != 5.0) ) {\n if( (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0) ) {\n float a = v_angles.y/2.0;\n float x = (dx-segment_stop)*cos(a) - dy*sin(a);\n float y = (dx-segment_stop)*sin(a) + dy*cos(a);\n if( x > 0.0 ) discard;\n // We transform the caps into square to avoid holes\n dash_caps.y = 4.0;\n }\n }\n }\n\n // Line cap at start\n if( (dx < line_start) && (dash_start < line_start) && (dash_stop > line_start) ) {\n d = cap( int(linecaps.x), dx-line_start, dy, t, v_linewidth);\n }\n // Line cap at stop\n else if( (dx > line_stop) && (dash_stop > line_stop) && (dash_start < line_stop) ) {\n d = cap( int(linecaps.y), dx-line_stop, dy, t, v_linewidth);\n }\n // Dash cap left - dash_type = -1, 0 or 1, but there may be roundoff errors\n else if( dash_type < -0.5 ) {\n d = cap( int(dash_caps.y), abs(u-dash_center), dy, t, v_linewidth);\n if( (dx > line_start) && (dx < line_stop) )\n d = max(d,d_join);\n }\n // Dash cap right\n else if( dash_type > 0.5 ) {\n d = cap( int(dash_caps.x), abs(dash_center-u), dy, t, v_linewidth);\n if( (dx > line_start) && (dx < line_stop) )\n d = max(d,d_join);\n }\n // Dash body (plain)\n else {// if( dash_type > -0.5 && dash_type < 0.5) {\n d = abs(dy);\n }\n\n // Line join\n if( (dx > line_start) && (dx < line_stop)) {\n if( (dx <= segment_start) && (dash_start <= segment_start)\n && (dash_stop >= segment_start) ) {\n d = d_join;\n // Antialias at outer border\n float angle = PI/2.+v_angles.x;\n float f = abs( (segment_start - dx)*cos(angle) - dy*sin(angle));\n d = max(f,d);\n }\n else if( (dx > segment_stop) && (dash_start <= segment_stop)\n && (dash_stop >= segment_stop) ) {\n d = d_join;\n // Antialias at outer border\n float angle = PI/2.+v_angles.y;\n float f = abs((dx - segment_stop)*cos(angle) - dy*sin(angle));\n d = max(f,d);\n }\n else if( dx < (segment_start - v_linewidth/2.)) {\n discard;\n }\n else if( dx > (segment_stop + v_linewidth/2.)) {\n discard;\n }\n }\n else if( dx < (segment_start - v_linewidth/2.)) {\n discard;\n }\n else if( dx > (segment_stop + v_linewidth/2.)) {\n discard;\n }\n }\n\n // Distance to border ——————————————————\n d = d - t;\n if( d < 0.0 ) {\n gl_FragColor = color;\n } else {\n d /= u_antialias;\n gl_FragColor = vec4(color.rgb, exp(-d*d)*color.a);\n }\n}\n"},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),l=e(93),_=e(100),n=s.__importStar(e(101)),o=s.__importStar(e(28)),a=e(88);class h extends l.XYGlyphView{_inner_loop(e,i,t,s,l){for(const _ of i)0!=_?isNaN(t[_]+s[_])?(e.closePath(),l.apply(e),e.beginPath()):e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]));e.closePath(),l.call(e)}_render(e,i,{sx:t,sy:s}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner_loop(e,i,t,s,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner_loop(e,i,t,s,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_value(e),this._inner_loop(e,i,t,s,e.stroke))}draw_legend_for_index(e,i,t){_.generic_area_legend(this.visuals,e,i,t)}_hit_point(e){const i=new a.Selection;return n.point_in_poly(e.sx,e.sy,this.sx,this.sy)&&(i.add_to_selected_glyphs(this.model),i.view=this),i}}t.PatchView=h,h.__name__="PatchView";class r extends l.XYGlyph{constructor(e){super(e)}static init_Patch(){this.prototype.default_view=h,this.mixins([o.Line,o.Fill,o.Hatch])}}t.Patch=r,r.__name__="Patch",r.init_Patch()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x1[r],n=this._x2[r],a=this._y[r];isNaN(i+n+a)||!isFinite(i+n+a)?e.add_empty():e.add(t(i,n),a,s(i,n),a)}}_inner(e,t,s,i,r){e.beginPath();for(let s=0,r=t.length;s<r;s++)e.lineTo(t[s],i[s]);for(let t=s.length-1;t>=0;t–)e.lineTo(s[t],i[t]);e.closePath(),r.call(e)}_render(e,t,{sx1:s,sx2:i,sy:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}_hit_point(e){const t=this.sy.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e<r;e++)s[e]=this.sx1[e],i[e]=this.sy[e],s[t+e]=this.sx2[t-e-1],i[t+e]=this.sy[t-e-1];const n=new h.Selection;return a.point_in_poly(e.sx,e.sy,s,i)&&(n.add_to_selected_glyphs(this.model),n.view=this),n}scenterxy(e){return[(this.sx1[e]+this.sx2[e])/2,this.sy[e]]}_map_data(){this.sx1=this.renderer.xscale.v_compute(this._x1),this.sx2=this.renderer.xscale.v_compute(this._x2),this.sy=this.renderer.yscale.v_compute(this._y)}}s.HAreaView=l,l.__name__="HAreaView";class o extends n.Area{constructor(e){super(e)}static init_HArea(){this.prototype.default_view=l,this.define({x1:[_.XCoordinateSpec,{field:"x1"}],x2:[_.XCoordinateSpec,{field:"x2"}],y:[_.YCoordinateSpec,{field:"y"}]})}}s.HArea=o,o.__name__="HArea",o.init_HArea()},n”, ” function _(e,_,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e(1),r=e(94),t=e(100),n=a.__importStar(e(28));class s extends r.GlyphView{draw_legend_for_index(e,_,i){t.generic_area_legend(this.visuals,e,_,i)}}i.AreaView=s,s.__name__="AreaView";class c extends r.Glyph{constructor(e){super(e)}static init_Area(){this.mixins([n.Fill,n.HatchVector])}}i.Area=c,c.__name__="Area",c.init_Area()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x[r],n=this._y1[r],a=this._y2[r];isNaN(i+n+a)||!isFinite(i+n+a)?e.add_empty():e.add(i,t(n,a),i,s(n,a))}}_inner(e,t,s,i,r){e.beginPath();for(let i=0,r=s.length;i<r;i++)e.lineTo(t[i],s[i]);for(let s=i.length-1;s>=0;s–)e.lineTo(t[s],i[s]);e.closePath(),r.call(e)}_render(e,t,{sx:s,sy1:i,sy2:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}scenterxy(e){return[this.sx[e],(this.sy1[e]+this.sy2[e])/2]}_hit_point(e){const t=this.sx.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e<r;e++)s[e]=this.sx[e],i[e]=this.sy1[e],s[t+e]=this.sx[t-e-1],i[t+e]=this.sy2[t-e-1];const n=new h.Selection;return a.point_in_poly(e.sx,e.sy,s,i)&&(n.add_to_selected_glyphs(this.model),n.view=this),n}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sy1=this.renderer.yscale.v_compute(this._y1),this.sy2=this.renderer.yscale.v_compute(this._y2)}}s.VAreaView=l,l.__name__="VAreaView";class o extends n.Area{constructor(e){super(e)}static init_VArea(){this.prototype.default_view=l,this.define({x:[_.XCoordinateSpec,{field:"x"}],y1:[_.YCoordinateSpec,{field:"y1"}],y2:[_.YCoordinateSpec,{field:"y2"}]})}}s.VArea=o,o.__name__="VArea",o.init_VArea()},n”, ” function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),n=i(81),c=t.__importStar(i(18)),o=i(88),r=i(24),_=i(86);class a extends n.Model{constructor(i){super(i)}static init_CDSView(){this.define({filters:[c.Array,[]],source:[c.Instance]}),this.internal({indices:[c.Any],indices_map:[c.Any,{}],masked:[c.Any,null]})}initialize(){super.initialize(),this.compute_indices()}connect_signals(){super.connect_signals(),this.connect(this.properties.filters.change,()=>this.compute_indices());const i=()=>{const i=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,i),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,i),this.connect(this.source.patching,i)))};let e=null!=this.source;e?i():this.connect(this.properties.source.change,()=>{e||(i(),e=!0)})}compute_indices(){var i;const{source:e}=this;if(null==e)return;const s=null!==(i=e.get_length())&&void 0!==i?i:1,t=r.Indices.all_set(s);for(const i of this.filters)t.intersect(i.compute_indices(e));this.indices=t,this._indices=[…t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let i=0;i<this._indices.length;i++)this.indices_map[this._indices[i]]=i}convert_selection_from_subset(i){const e=i.indices.map(i=>this._indices[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_selection_to_subset(i){const e=i.indices.map(i=>this.indices_map[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_indices_from_subset(i){return i.map(i=>this._indices[i])}}s.CDSView=a,a.__name__="CDSView",a.init_CDSView()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(9);async function i(e,n,t){const o=new e(Object.assign(Object.assign({},t),{model:n}));return o.initialize(),await o.lazy_initialize(),o}t.build_view=async function(e,n={parent:null},t=(e=>e.default_view)){const o=await i(t(e),e,n);return o.connect_signals(),o},t.build_views=async function(e,n,t={parent:null},s=(e=>e.default_view)){const c=o.difference([…e.keys()],n);for(const n of c)e.get(n).remove(),e.delete(n);const a=[],f=n.filter(n=>!e.has(n));for(const n of f){const o=await i(s(n),n,t);e.set(n,o),a.push(o)}for(const e of a)e.connect_signals();return a},t.remove_views=function(e){for(const[n,t]of e)t.remove(),e.delete(n)}},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),i=e(91),s=e(117),a=t.__importStar(e(18)),o=e(115),_=e(11);class l extends i.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model;let r=null,n=null;const t={v_compute(n){_.assert(null==r);const[t]=r=e.layout_provider.get_edge_coordinates(n);return t}},i={v_compute(e){_.assert(null!=r);const[,n]=r;return r=null,n}},s={v_compute(r){_.assert(null==n);const[t]=n=e.layout_provider.get_node_coordinates(r);return t}},a={v_compute(e){_.assert(null!=n);const[,r]=n;return n=null,r}},{edge_renderer:l,node_renderer:d}=this.model;l.glyph.properties.xs.internal=!0,l.glyph.properties.ys.internal=!0,d.glyph.properties.x.internal=!0,d.glyph.properties.y.internal=!0,l.glyph.xs={expr:t},l.glyph.ys={expr:i},d.glyph.x={expr:s},d.glyph.y={expr:a};const{parent:p}=this;this.edge_view=await o.build_view(l,{parent:p}),this.node_view=await o.build_view(d,{parent:p})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,()=>{this.edge_view.set_data(!1),this.node_view.set_data(!1),this.request_render()})}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}}n.GraphRendererView=l,l.__name__="GraphRendererView";class d extends i.DataRenderer{constructor(e){super(e)}static init_GraphRenderer(){this.prototype.default_view=l,this.define({layout_provider:[a.Instance],node_renderer:[a.Instance],edge_renderer:[a.Instance],selection_policy:[a.Instance,()=>new s.NodesOnly],inspection_policy:[a.Instance,()=>new s.NodesOnly]})}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}n.GraphRenderer=d,d.__name__="GraphRenderer",d.init_GraphRenderer()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const d=e(81),s=e(12),o=e(9),_=e(88);class i extends d.Model{constructor(e){super(e)}_hit_test_nodes(e,t){if(!t.model.visible)return null;const n=t.node_view.glyph.hit_test(e);return null==n?null:t.node_view.model.view.convert_selection_from_subset(n)}_hit_test_edges(e,t){if(!t.model.visible)return null;const n=t.edge_view.glyph.hit_test(e);return null==n?null:t.edge_view.model.view.convert_selection_from_subset(n)}}n.GraphHitTestPolicy=i,i.__name__="GraphHitTestPolicy";class r extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.model.get_selection_manager().get_or_create_inspector(n.node_view.model);return o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesOnly=r,r.__name__="NodesOnly";class c extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}get_linked_edges(e,t,n){let d=[];"selection"==n?d=e.selected.indices.map(t=>e.data.index[t]):"inspection"==n&&(d=e.inspected.indices.map(t=>e.data.index[t]));const s=[];for(let e=0;e<t.data.start.length;e++)(o.contains(d,t.data.start[e])||o.contains(d,t.data.end[e]))&&s.push(e);const i=new _.Selection;for(const e of s)i.multiline_indices[e]=[0];return i.indices=s,i}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;s.update(e,n,d);const o=t.edge_renderer.data_source.selected,_=this.get_linked_edges(t.node_renderer.data_source,t.edge_renderer.data_source,"selection");return o.update(_,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model);o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model),i=this.get_linked_edges(n.node_view.model.data_source,n.edge_view.model.data_source,"inspection");return _.update(i,d,s),n.edge_view.model.data_source.setv({inspected:_},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesAndLinkedEdges=c,c.__name__="NodesAndLinkedEdges";class a extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_edges(e,t)}get_linked_nodes(e,t,n){let d=[];"selection"==n?d=t.selected.indices:"inspection"==n&&(d=t.inspected.indices);const i=[];for(const e of d)i.push(t.data.start[e]),i.push(t.data.end[e]);const r=o.uniq(i).map(t=>s.indexOf(e.data.index,t));return new _.Selection({indices:r})}do_selection(e,t,n,d){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,n,d);const o=t.node_renderer.data_source.selected,_=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,"selection");return o.update(_,n,d),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model);o.update(e,d,s),n.edge_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model),i=this.get_linked_nodes(n.node_view.model.data_source,n.edge_view.model.data_source,"inspection");return _.update(i,d,s),n.node_view.model.data_source.setv({inspected:_},{silent:!0}),n.edge_view.model.data_source.inspect.emit([n.edge_view,{geometry:t}]),!o.is_empty()}}n.EdgesAndLinkedNodes=a,a.__name__="EdgesAndLinkedNodes"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e(81);class o extends s.Model{do_selection(e,t,n,s){return null!==e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=o,o.__name__="SelectionPolicy";class r extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=r,r.__name__="IntersectRenderers";class c extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=c,c.__name__="UnionRenderers"},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.concat=function(t,…e){let n=t.length;for(const t of e)n+=t.length;const o=new t.constructor(n);o.set(t,0);let c=t.length;for(const t of e)o.set(t,c),c+=t.length;return o}},n”, ” function _(n,o,e){function t(…n){const o=new Set;for(const e of n)for(const n of e)o.add(n);return o}Object.defineProperty(e,"__esModule",{value:!0}),e.union=t,e.intersection=function(n,…o){const e=new Set;n:for(const t of n){for(const n of o)if(!n.has(t))continue n;e.add(t)}return e},e.difference=function(n,…o){const e=new Set(n);for(const n of t(…o))e.delete(n);return e}},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(14);class o{constructor(e){this.document=e}}s.DocumentEvent=o,o.__name__="DocumentEvent";class r extends o{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=r,r.__name__="DocumentEventBatch";class d extends o{}s.DocumentChangedEvent=d,d.__name__="DocumentChangedEvent";class _ extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}json(e){const t=this.msg_data,s=n.HasProps._value_to_json(t),o=new Set;return n.HasProps._value_record_references(t,o,{recursive:!0}),{kind:"MessageSent",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=_,_.__name__="MessageSentEvent";class i extends d{constructor(e,t,s,n,o,r,d){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=r,this.hint=d}json(e){if("id"===this.attr)throw new Error("’id’ field should never change, whatever code just set it is wrong");if(null!=this.hint)return this.hint.json(e);const t=this.new_,s=n.HasProps._value_to_json(t),o=new Set;n.HasProps._value_record_references(t,o,{recursive:!0}),o.has(this.model)&&this.model!==t&&o.delete(this.model);for(const t of o)e.add(t);return{kind:"ModelChanged",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=i,i.__name__="ModelChangedEvent";class a extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}json(e){return{kind:"ColumnsPatched",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=a,a.__name__="ColumnsPatchedEvent";class c extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}json(e){return{kind:"ColumnsStreamed",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=c,c.__name__="ColumnsStreamedEvent";class h extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}json(e){return{kind:"TitleChanged",title:this.title}}}s.TitleChangedEvent=h,h.__name__="TitleChangedEvent";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return n.HasProps._value_record_references(this.model,e,{recursive:!0}),{kind:"RootAdded",model:this.model.ref()}}}s.RootAddedEvent=u,u.__name__="RootAddedEvent";class l extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return{kind:"RootRemoved",model:this.model.ref()}}}s.RootRemovedEvent=l,l.__name__="RootRemovedEvent"},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),l=e(123),_=i.__importStar(e(28));class o extends l.UpperLowerView{connect_signals(){super.connect_signals();const e=()=>this.set_data(this.model.source);this.connect(this.model.change,e),this.connect(this.model.source.streaming,e),this.connect(this.model.source.patching,e),this.connect(this.model.source.change,e)}_render(){this._map_data();const{ctx:e}=this.layer;e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s<t;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);for(let s=this._upper_sx.length-1;s>=0;s–)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_value(e),e.fill()),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s<t;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);this.visuals.line.doit&&(this.visuals.line.set_value(e),e.stroke()),e.beginPath(),e.moveTo(this._upper_sx[0],this._upper_sy[0]);for(let s=0,t=this._upper_sx.length;s<t;s++)e.lineTo(this._upper_sx[s],this._upper_sy[s]);this.visuals.line.doit&&(this.visuals.line.set_value(e),e.stroke())}}t.BandView=o,o.__name__="BandView";class n extends l.UpperLower{constructor(e){super(e)}static init_Band(){this.prototype.default_view=o,this.mixins([_.Line,_.Fill]),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}}t.Band=n,n.__name__="Band",n.init_Band()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),o=e(36),r=e(85),p=s.__importStar(e(18));class _ extends o.AnnotationView{initialize(){super.initialize(),this.set_data(this.model.source)}set_data(e){super.set_data(e),this.visuals.warm_cache(e),this.plot_view.request_render()}_map_data(){const{frame:e}=this.plot_view,t=this.model.dimension,i=this.coordinates.x_scale,s=this.coordinates.y_scale,o="height"==t?s:i,r="height"==t?i:s,p="height"==t?e.yview:e.xview,_="height"==t?e.xview:e.yview;let a,n,h;a="data"==this.model.properties.lower.units?o.v_compute(this._lower):p.v_compute(this._lower),n="data"==this.model.properties.upper.units?o.v_compute(this._upper):p.v_compute(this._upper),h="data"==this.model.properties.base.units?r.v_compute(this._base):_.v_compute(this._base);const[c,u]="height"==t?[1,0]:[0,1],l=[a,h],w=[n,h];this._lower_sx=l[c],this._lower_sy=l[u],this._upper_sx=w[c],this._upper_sy=w[u]}}i.UpperLowerView=_,_.__name__="UpperLowerView";class a extends o.Annotation{constructor(e){super(e)}static init_UpperLower(){this.define({lower:[p.DistanceSpec],upper:[p.DistanceSpec],base:[p.DistanceSpec],dimension:[p.Dimension,"height"],source:[p.Instance,()=>new r.ColumnDataSource]})}}i.UpperLower=a,a.__name__="UpperLower",a.init_UpperLower()},n”, ” function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const e=t(1),o=t(36),n=t(15),l=e.__importStar(t(28)),a=e.__importStar(t(18)),h=t(79);s.EDGE_TOLERANCE=2.5;class r extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this)),this.connect(this.model.data_update,()=>this.plot_view.request_paint(this))}_render(){if(null==this.model.left&&null==this.model.right&&null==this.model.top&&null==this.model.bottom)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,s=this.coordinates.y_scale,e=(t,i,s,e,o)=>{let n;return n=null!=t?this.model.screen?t:"data"==i?s.compute(t):e.compute(t):o,n};this.sleft=e(this.model.left,this.model.left_units,i,t.xview,t.bbox.left),this.sright=e(this.model.right,this.model.right_units,i,t.xview,t.bbox.right),this.stop=e(this.model.top,this.model.top_units,s,t.yview,t.bbox.top),this.sbottom=e(this.model.bottom,this.model.bottom_units,s,t.yview,t.bbox.bottom),this._paint_box(this.sleft,this.sright,this.sbottom,this.stop)}_paint_box(t,i,s,e){const{ctx:o}=this.layer;o.save(),o.beginPath(),o.rect(t,e,i-t,s-e),this.visuals.fill.doit&&(this.visuals.fill.set_value(o),o.fill()),this.visuals.line.doit&&(this.visuals.line.set_value(o),o.stroke()),o.restore()}interactive_bbox(){const t=this.model.properties.line_width.value()+s.EDGE_TOLERANCE;return new h.BBox({x0:this.sleft-t,y0:this.stop-t,x1:this.sright+t,y1:this.sbottom+t})}interactive_hit(t,i){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,i)}cursor(t,i){return Math.abs(t-this.sleft)<3||Math.abs(t-this.sright)<3?this.model.ew_cursor:Math.abs(i-this.sbottom)<3||Math.abs(i-this.stop)<3?this.model.ns_cursor:t>this.sleft&&t<this.sright&&i>this.stop&&i<this.sbottom?this.model.in_cursor:null}}s.BoxAnnotationView=r,r.__name__="BoxAnnotationView";class u extends o.Annotation{constructor(t){super(t)}static init_BoxAnnotation(){this.prototype.default_view=r,this.mixins([l.Line,l.Fill]),this.define({render_mode:[a.RenderMode,"canvas"],top:[a.Number,null],top_units:[a.SpatialUnits,"data"],bottom:[a.Number,null],bottom_units:[a.SpatialUnits,"data"],left:[a.Number,null],left_units:[a.SpatialUnits,"data"],right:[a.Number,null],right_units:[a.SpatialUnits,"data"]}),this.internal({screen:[a.Boolean,!1],ew_cursor:[a.String,null],ns_cursor:[a.String,null],in_cursor:[a.String,null]}),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}initialize(){super.initialize(),this.data_update=new n.Signal0(this,"data_update")}update({left:t,right:i,top:s,bottom:e}){this.setv({left:t,right:i,top:s,bottom:e,screen:!0},{silent:!0}),this.data_update.emit()}}s.BoxAnnotation=u,u.__name__="BoxAnnotation",u.init_BoxAnnotation()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),a=t(36),s=t(126),r=t(130),n=t(132),l=t(145),_=t(156),h=t(157),m=t(158),d=o.__importStar(t(28)),c=o.__importStar(t(18)),u=o.__importStar(t(159)),g=t(9),p=t(12),f=t(8),b=t(11);class v extends a.AnnotationView{initialize(){super.initialize(),this._set_canvas_image()}connect_signals(){super.connect_signals(),this.connect(this.model.ticker.change,()=>this.plot_view.request_render()),this.connect(this.model.formatter.change,()=>this.plot_view.request_render()),null!=this.model.color_mapper&&this.connect(this.model.color_mapper.change,()=>{this._set_canvas_image(),this.plot_view.request_render()})}_get_size(){if(null==this.model.color_mapper)return{width:0,height:0};{const{width:t,height:e}=this.compute_legend_dimensions();return{width:t,height:e}}}_set_canvas_image(){if(null==this.model.color_mapper)return;let t,e,{palette:i}=this.model.color_mapper;switch("vertical"==this.model.orientation&&(i=g.reversed(i)),this.model.orientation){case"vertical":[t,e]=[1,i.length];break;case"horizontal":[t,e]=[i.length,1]}const o=document.createElement("canvas");o.width=t,o.height=e;const a=o.getContext("2d"),s=a.getImageData(0,0,t,e),r=new n.LinearColorMapper({palette:i}).rgba_mapper.v_compute(g.range(0,i.length));s.data.set(r),a.putImageData(s,0,0),this.image=o}compute_legend_dimensions(){const t=this._computed_image_dimensions(),[e,i]=[t.height,t.width],o=this._get_label_extent(),a=this._title_extent(),s=this._tick_extent(),{padding:r}=this.model;let n,l;switch(this.model.orientation){case"vertical":n=e+a+2*r,l=i+s+o+2*r;break;case"horizontal":n=e+a+s+o+2*r,l=i+2*r}return{width:l,height:n}}compute_legend_location(){const t=this.compute_legend_dimensions(),[e,i]=[t.height,t.width],o=this.model.margin,a=null!=this.panel?this.panel:this.plot_view.frame,[s,r]=a.bbox.ranges,{location:n}=this.model;let l,_;if(f.isString(n))switch(n){case"top_left":l=s.start+o,_=r.start+o;break;case"top_center":l=(s.end+s.start)/2-i/2,_=r.start+o;break;case"top_right":l=s.end-o-i,_=r.start+o;break;case"bottom_right":l=s.end-o-i,_=r.end-o-e;break;case"bottom_center":l=(s.end+s.start)/2-i/2,_=r.end-o-e;break;case"bottom_left":l=s.start+o,_=r.end-o-e;break;case"center_left":l=s.start+o,_=(r.end+r.start)/2-e/2;break;case"center":l=(s.end+s.start)/2-i/2,_=(r.end+r.start)/2-e/2;break;case"center_right":l=s.end-o-i,_=(r.end+r.start)/2-e/2}else if(f.isArray(n)&&2==n.length){const[t,i]=n;l=a.xview.compute(t),_=a.yview.compute(i)-e}else b.unreachable();return{sx:l,sy:_}}_render(){if(null==this.model.color_mapper)return;const{ctx:t}=this.layer;t.save();const{sx:e,sy:i}=this.compute_legend_location();t.translate(e,i),this._draw_bbox(t);const o=this._get_image_offset();t.translate(o.x,o.y),this._draw_image(t);const a=this.tick_info();this._draw_major_ticks(t,a),this._draw_minor_ticks(t,a),this._draw_major_labels(t,a),this.model.title&&this._draw_title(t),t.restore()}_draw_bbox(t){const e=this.compute_legend_dimensions();t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(0,0,e.width,e.height)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_image(t){const e=this._computed_image_dimensions();t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this.image,0,0,e.width,e.height),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_major_ticks(t,e){if(!this.visuals.major_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.major,_=this.model.major_tick_in,h=this.model.major_tick_out;t.save(),t.translate(s,r),this.visuals.major_tick_line.set_value(t);for(let e=0,a=n.length;e<a;e++)t.beginPath(),t.moveTo(Math.round(n[e]+i*h),Math.round(l[e]+o*h)),t.lineTo(Math.round(n[e]-i*_),Math.round(l[e]-o*_)),t.stroke();t.restore()}_draw_minor_ticks(t,e){if(!this.visuals.minor_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.minor,_=this.model.minor_tick_in,h=this.model.minor_tick_out;t.save(),t.translate(s,r),this.visuals.minor_tick_line.set_value(t);for(let e=0,a=n.length;e<a;e++)t.beginPath(),t.moveTo(Math.round(n[e]+i*h),Math.round(l[e]+o*h)),t.lineTo(Math.round(n[e]-i*_),Math.round(l[e]-o*_)),t.stroke();t.restore()}_draw_major_labels(t,e){if(!this.visuals.major_label_text.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],n=this.model.label_standoff+this._tick_extent(),[l,_]=[n*i,n*o],[h,m]=e.coords.major,d=e.labels.major;this.visuals.major_label_text.set_value(t),t.save(),t.translate(s+l,r+_);for(let e=0,a=h.length;e<a;e++)t.fillText(d[e],Math.round(h[e]+i*this.model.label_standoff),Math.round(m[e]+o*this.model.label_standoff));t.restore()}_draw_title(t){this.visuals.title_text.doit&&(t.save(),this.visuals.title_text.set_value(t),t.fillText(this.model.title,0,-this.model.title_standoff),t.restore())}_get_label_extent(){const t=this.tick_info().labels.major;let e;if(g.is_empty(t))e=0;else{const{ctx:i}=this.layer;switch(i.save(),this.visuals.major_label_text.set_value(i),this.model.orientation){case"vertical":e=g.max(t.map(t=>i.measureText(t.toString()).width));break;case"horizontal":e=u.measure_font(this.visuals.major_label_text.font_value()).height}e+=this.model.label_standoff,i.restore()}return e}_get_image_offset(){return{x:this.model.padding,y:this.model.padding+this._title_extent()}}_normals(){return"vertical"==this.model.orientation?[1,0]:[0,1]}_title_extent(){const t=this.model.title_text_font+" "+this.model.title_text_font_size+" "+this.model.title_text_font_style;return this.model.title?u.measure_font(t).height+this.model.title_standoff:0}_tick_extent(){return g.max([this.model.major_tick_out,this.model.minor_tick_out])}_computed_image_dimensions(){const t=this.plot_view.frame.bbox.height,e=this.plot_view.frame.bbox.width,i=this._title_extent();let o,a;switch(this.model.orientation){case"vertical":"auto"==this.model.height?null!=this.panel?o=t-2*this.model.padding-i:(o=g.max([25*this.model.color_mapper.palette.length,.3*t]),o=g.min([o,.8*t-2*this.model.padding-i])):o=this.model.height,a="auto"==this.model.width?25:this.model.width;break;case"horizontal":o="auto"==this.model.height?25:this.model.height,"auto"==this.model.width?null!=this.panel?a=e-2*this.model.padding:(a=g.max([25*this.model.color_mapper.palette.length,.3*e]),a=g.min([a,.8*e-2*this.model.padding])):a=this.model.width}return{width:a,height:o}}_tick_coordinate_scale(t){const e={source_range:new m.Range1d({start:this.model.color_mapper.metrics.min,end:this.model.color_mapper.metrics.max}),target_range:new m.Range1d({start:0,end:t})},{color_mapper:i}=this.model;if(i instanceof n.LinearColorMapper)return new l.LinearScale(e);if(i instanceof n.LogColorMapper)return new h.LogScale(e);if(i instanceof n.ScanningColorMapper){const{binning:t}=i.metrics;return new _.LinearInterpolationScale(Object.assign(Object.assign({},e),{binning:t}))}b.unreachable()}_format_major_labels(t,e){const i=this.model.formatter.doFormat(t,null);for(let t=0,o=e.length;t<o;t++)e[t]in this.model.major_label_overrides&&(i[t]=this.model.major_label_overrides[e[t]]);return i}tick_info(){const t=this._computed_image_dimensions();let e;switch(this.model.orientation){case"vertical":e=t.height;break;case"horizontal":e=t.width}const i=this._tick_coordinate_scale(e),[o,a]=this._normals(),[s,r]=[this.model.color_mapper.metrics.min,this.model.color_mapper.metrics.max],n=this.model.ticker.get_ticks(s,r,null,null,this.model.ticker.desired_num_ticks),l=n.major,_=n.minor,h=[[],[]],m=[[],[]];for(let t=0,e=l.length;t<e;t++)l[t]<s||l[t]>r||(h[o].push(l[t]),h[a].push(0));for(let t=0,e=_.length;t<e;t++)_[t]<s||_[t]>r||(m[o].push(_[t]),m[a].push(0));const d={major:this._format_major_labels(h[o],l)},c={major:[[],[]],minor:[[],[]]};return c.major[o]=i.v_compute(h[o]),c.minor[o]=i.v_compute(m[o]),c.major[a]=h[a],c.minor[a]=m[a],"vertical"==this.model.orientation&&(c.major[o]=p.map(c.major[o],t=>e-t),c.minor[o]=p.map(c.minor[o],t=>e-t)),{coords:c,labels:d}}}i.ColorBarView=v,v.__name__="ColorBarView";class w extends a.Annotation{constructor(t){super(t)}static init_ColorBar(){this.prototype.default_view=v,this.mixins([["major_label_",d.Text],["title_",d.Text],["major_tick_",d.Line],["minor_tick_",d.Line],["border_",d.Line],["bar_",d.Line],["background_",d.Fill]]),this.define({location:[c.Any,"top_right"],orientation:[c.Orientation,"vertical"],title:[c.String],title_standoff:[c.Number,2],width:[c.Any,"auto"],height:[c.Any,"auto"],scale_alpha:[c.Number,1],ticker:[c.Instance,()=>new s.BasicTicker],formatter:[c.Instance,()=>new r.BasicTickFormatter],major_label_overrides:[c.Any,{}],color_mapper:[c.Instance],label_standoff:[c.Number,5],margin:[c.Number,30],padding:[c.Number,10],major_tick_in:[c.Number,5],major_tick_out:[c.Number,0],minor_tick_in:[c.Number,0],minor_tick_out:[c.Number,0]}),this.override({background_fill_color:"#ffffff",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_align:"center",major_label_text_baseline:"middle",major_label_text_font_size:"11px",major_tick_line_color:"#ffffff",minor_tick_line_color:null,title_text_font_size:"13px",title_text_font_style:"italic"})}}i.ColorBar=w,w.__name__="ColorBar",w.init_ColorBar()},n”, ” function _(e,c,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(127);class r extends i.AdaptiveTicker{constructor(e){super(e)}}s.BasicTicker=r,r.__name__="BasicTicker"},n”, ” function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const a=t(1),s=t(128),n=t(9),r=a.__importStar(t(18));class _ extends s.ContinuousTicker{constructor(t){super(t)}static init_AdaptiveTicker(){this.define({base:[r.Number,10],mantissas:[r.Array,[1,2,5]],min_interval:[r.Number,0],max_interval:[r.Number]})}initialize(){super.initialize();const t=n.nth(this.mantissas,-1)/this.base,i=n.nth(this.mantissas,0)*this.base;this.extended_mantissas=[t,…this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,e){const a=i-t,s=this.get_ideal_interval(t,i,e),r=Math.floor(function(t,i=Math.E){return Math.log(t)/Math.log(i)}(s/this.base_factor,this.base)),_=this.base**r*this.base_factor,h=this.extended_mantissas,m=h.map(t=>Math.abs(e-a/(t*_))),o=h[n.argmin(m)];return c=o*_,l=this.get_min_interval(),u=this.get_max_interval(),Math.max(l,Math.min(u,c));var c,l,u}}e.AdaptiveTicker=_,_.__name__="AdaptiveTicker",_.init_AdaptiveTicker()},n”, ” function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(1),r=t(129),s=n.__importStar(t(18)),o=t(9);class _ extends r.Ticker{constructor(t){super(t)}static init_ContinuousTicker(){this.define({num_minor_ticks:[s.Number,5],desired_num_ticks:[s.Number,6]})}get_ticks(t,i,e,n,r){return this.get_ticks_no_defaults(t,i,n,this.desired_num_ticks)}get_ticks_no_defaults(t,i,e,n){const r=this.get_interval(t,i,n),s=Math.floor(t/r),_=Math.ceil(i/r);let c;c=isFinite(s)&&isFinite(_)?o.range(s,_+1):[];const u=c.map(t=>t*r).filter(e=>t<=e&&e<=i),a=this.num_minor_ticks,l=[];if(a>0&&u.length>0){const e=r/a,n=o.range(0,a).map(t=>t*e);for(const e of n.slice(1)){const n=u[0]-e;t<=n&&n<=i&&l.push(n)}for(const e of u)for(const r of n){const n=e+r;t<=n&&n<=i&&l.push(n)}}return{major:u,minor:l}}get_min_interval(){return this.min_interval}get_max_interval(){return null!=this.max_interval?this.max_interval:1/0}get_ideal_interval(t,i,e){return(i-t)/e}}e.ContinuousTicker=_,_.__name__="ContinuousTicker",_.init_ContinuousTicker()},n”, ” function _(e,c,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Ticker=r,r.__name__="Ticker"},n”, ” function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=i(1),s=i(131),n=r.__importStar(i(18));class o extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}static init_BasicTickFormatter(){this.define({precision:[n.Any,"auto"],use_scientific:[n.Boolean,!0],power_limit_high:[n.Number,5],power_limit_low:[n.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,r=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const s of i){const i=Math.abs(s);if(!(i<=r)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){const r=new Array(i.length);if(t)for(let t=0,s=i.length;t<s;t++)r[t]=i[t].toExponential(e);else for(let t=0,s=i.length;t<s;t++)r[t]=i[t].toFixed(e).replace(/(\.[0-9]?)0+$/,"$1").replace(/\.$/,"");return r}_auto_precision(i,t){const e=new Array(i.length),r=this.last_precision<=15;i:for(let s=this.last_precision;r?s<=15:s>=1;r?s++:s–){if(t){e[0]=i[0].toExponential(s);for(let t=1;t<i.length;t++)if(e[t]==e[t-1])continue i;this.last_precision=s;break}e[0]=i[0].toFixed(s).replace(/(\.[0-9]*?)0+$/,"$1").replace(/\.$/,"");for(let t=1;t<i.length;t++)if(e[t]=i[t].toFixed(s).replace(/(\.[0-9]*?)0+$/,"$1").replace(/\.$/,""),e[t]==e[t-1])continue i;this.last_precision=s;break}return this.last_precision}doFormat(i,t){if(0==i.length)return[];const e=this._need_sci(i),r="auto"==this.precision?this._auto_precision(i,e):this.precision;return this._format_with_precision(i,e,r)}}e.BasicTickFormatter=o,o.__name__="BasicTickFormatter",o.init_BasicTickFormatter()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(81);class c extends r.Model{constructor(e){super(e)}}o.TickFormatter=c,c.__name__="TickFormatter"},n”, ” function _(r,a,o){Object.defineProperty(o,"__esModule",{value:!0});var e=r(133);o.CategoricalColorMapper=e.CategoricalColorMapper;var p=r(138);o.CategoricalMarkerMapper=p.CategoricalMarkerMapper;var l=r(139);o.CategoricalPatternMapper=l.CategoricalPatternMapper;var C=r(140);o.ContinuousColorMapper=C.ContinuousColorMapper;var M=r(135);o.ColorMapper=M.ColorMapper;var n=r(141);o.LinearColorMapper=n.LinearColorMapper;var t=r(142);o.LogColorMapper=t.LogColorMapper;var i=r(143);o.ScanningColorMapper=i.ScanningColorMapper;var c=r(144);o.EqHistColorMapper=c.EqHistColorMapper},n”, ” function _(r,t,e){Object.defineProperty(e,"__esModule",{value:!0});const o=r(1),a=r(134),c=r(135),i=o.__importStar(r(18));class s extends c.ColorMapper{constructor(r){super(r)}static init_CategoricalColorMapper(){this.define({factors:[i.Array],start:[i.Number,0],end:[i.Number]})}_v_compute(r,t,e,{nan_color:o}){a.cat_v_compute(r,this.factors,e,t,this.start,this.end,o)}}e.CategoricalColorMapper=s,s.__name__="CategoricalColorMapper",s.init_CategoricalColorMapper()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const l=e(12),i=e(8);function u(e,n){if(e.length!=n.length)return!1;for(let t=0,l=e.length;t<l;t++)if(e[t]!==n[t])return!1;return!0}t._cat_equals=u,t.cat_v_compute=function(e,n,t,c,f,o,r){for(let _=0,g=e.length;_<g;_++){let g,s,d=e[_];i.isString(d)?g=l.index_of(n,d):(null!=f?d=null!=o?d.slice(f,o):d.slice(f):null!=o&&(d=d.slice(0,o)),g=1==d.length?l.index_of(n,d[0]):l.find_index(n,e=>u(e,d))),s=g<0||g>=t.length?r:t[g],c[_]=s}}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),o=t(136),_=n.__importStar(t(18)),i=t(8),l=t(22),c=t(32);function a(t){return i.isNumber(t)?t:("#"!=t[0]&&(t=l.color2hex(t)),9!=t.length&&(t+="ff"),parseInt(t.slice(1),16))}function s(t){const e=new Uint32Array(t.length);for(let r=0,n=t.length;r<n;r++)e[r]=a(t[r]);return e}function p(t){if(c.is_little_endian){const e=new DataView(t.buffer);for(let r=0,n=t.length;r<n;r++)e.setUint32(4*r,t[r])}return new Uint8Array(t.buffer)}r._convert_color=a,r._convert_palette=s,r._uint32_to_rgba=p;class u extends o.Mapper{constructor(t){super(t)}static init_ColorMapper(){this.define({palette:[_.Any],nan_color:[_.Color,"gray"]})}v_compute(t){const e=new Array(t.length);return this._v_compute(t,e,this.palette,this._colors(t=>t)),e}get rgba_mapper(){const t=this,e=s(this.palette),r=this._colors(a);return{v_compute(n){const o=new Uint32Array(n.length);return t._v_compute(n,o,e,r),p(o)}}}_colors(t){return{nan_color:t(this.nan_color)}}}r.ColorMapper=u,u.__name__="ColorMapper",u.init_ColorMapper()},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(137);class s extends o.Transform{constructor(e){super(e)}compute(e){throw new Error("mapping single values is not supported")}}n.Mapper=s,s.__name__="Mapper"},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(81);class s extends r.Model{constructor(e){super(e)}}o.Transform=s,s.__name__="Transform"},n”, ” function _(r,e,a){Object.defineProperty(a,"__esModule",{value:!0});const t=r(1),s=r(134),i=r(136),c=t.__importStar(r(18));class n extends i.Mapper{constructor(r){super(r)}static init_CategoricalMarkerMapper(){this.define({factors:[c.Array],markers:[c.Array],start:[c.Number,0],end:[c.Number],default_value:[c.MarkerType,"circle"]})}v_compute(r){const e=new Array(r.length);return s.cat_v_compute(r,this.factors,this.markers,e,this.start,this.end,this.default_value),e}}a.CategoricalMarkerMapper=n,n.__name__="CategoricalMarkerMapper",n.init_CategoricalMarkerMapper()},n”, ” function _(t,e,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t(1),n=t(134),s=t(136),i=r.__importStar(t(18));class c extends s.Mapper{constructor(t){super(t)}static init_CategoricalPatternMapper(){this.define({factors:[i.Array],patterns:[i.Array],start:[i.Number,0],end:[i.Number],default_value:[i.HatchPatternType," "]})}v_compute(t){const e=new Array(t.length);return n.cat_v_compute(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=c,c.__name__="CategoricalPatternMapper",c.init_CategoricalPatternMapper()},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(135),s=t(90),l=t(9),i=t(8);class c extends n.ColorMapper{constructor(t){super(t),this._scan_data=null}static init_ContinuousColorMapper(){this.define(({Number:t,String:o,Null:e,Ref:n,Color:l,Or:i,Tuple:c,Array:a})=>({high:[i(t,e),null],low:[i(t,e),null],high_color:[i(l,e),null],low_color:[i(l,e),null],domain:[a(c(n(s.GlyphRenderer),i(o,a(o)))),[]]}))}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,()=>this.update_data()),this.connect(t.data_source.selected.change,()=>this.update_data())};this.connect(this.properties.domain.change,()=>t()),t()}update_data(){const{domain:t,palette:o}=this,e=[…this._collect(t)];this._scan_data=this.scan(e,o.length),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[o,e]of t)for(const t of i.isArray(e)?e:[e]){let e=o.data_source.get_column(t);e=o.view.indices.select(e);const n=o.view.masked,s=o.data_source.selected.indices;let c;if(null!=n&&s.length>0?c=l.intersection([…n],s):null!=n?c=[…n]:s.length>0&&(c=s),null!=c&&(e=l.map(c,t=>e[t])),e.length>0&&!i.isNumber(e[0]))for(const t of e)yield*t;else yield*e}}_v_compute(t,o,e,n){const{nan_color:s}=n;let{low_color:i,high_color:c}=n;null==i&&(i=e[0]),null==c&&(c=e[e.length-1]);const{domain:a}=this,r=l.is_empty(a)?t:[…this._collect(a)];this._scan_data=this.scan(r,e.length);for(let n=0,l=t.length;n<l;n++){const l=t[n];isNaN(l)?o[n]=s:o[n]=this.cmap(l,e,i,c,this._scan_data)}}_colors(t){return Object.assign(Object.assign({},super._colors(t)),{low_color:null!=this.low_color?t(this.low_color):void 0,high_color:null!=this.high_color?t(this.high_color):void 0})}}e.ContinuousColorMapper=c,c.__name__="ContinuousColorMapper",c.init_ContinuousColorMapper()},n”, ” function _(n,r,o){Object.defineProperty(o,"__esModule",{value:!0});const e=n(140),t=n(12);class a extends e.ContinuousColorMapper{constructor(n){super(n)}scan(n,r){const o=null!=this.low?this.low:t.min(n),e=null!=this.high?this.high:t.max(n);return{max:e,min:o,norm_factor:1/(e-o),normed_interval:1/r}}cmap(n,r,o,e,t){const a=r.length-1;if(n==t.max)return r[a];const i=(n-t.min)*t.norm_factor,l=Math.floor(i/t.normed_interval);return l<0?o:l>a?e:r[l]}}o.LinearColorMapper=a,a.__name__="LinearColorMapper"},n”, ” function _(o,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=o(140),r=o(12);class l extends e.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:r.min(o),e=null!=this.high?this.high:r.max(o);return{max:e,min:n,scale:t/(Math.log(e)-Math.log(n))}}cmap(o,t,n,e,r){const l=t.length-1;if(o>r.max)return e;if(o==r.max)return t[l];if(o<r.min)return n;const a=Math.log(o)-Math.log(r.min);let s=Math.floor(a*r.scale);return s>l&&(s=l),t[s]}}n.LogColorMapper=l,l.__name__="LogColorMapper"},n”, ” function _(n,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=n(140),o=n(12);class t extends i.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,r,i,t){if(n<t.binning[0])return r;if(n>t.binning[t.binning.length-1])return i;return e[o.left_edge_index(n,t.binning)]}}r.ScanningColorMapper=t,t.__name__="ScanningColorMapper"},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const i=n(1),o=n(143),r=n(12),s=n(9),a=i.__importStar(n(18)),l=n(19);class p extends o.ScanningColorMapper{constructor(n){super(n)}static init_EqHistColorMapper(){this.define({bins:[a.Int,65536]})}scan(n,t){const e=null!=this.low?this.low:r.min(n),i=null!=this.high?this.high:r.max(n),o=this.bins,a=s.linspace(e,i,o+1),p=r.bin_counts(n,a),c=new Array(o);for(let n=0,t=a.length;n<t-1;n++){const t=a[n],e=a[n+1];c[n]=(t+e)/2}const h=s.cumsum(p),u=h[h.length-1],g=r.map(h,n=>n/u);let m=t-1,_=[],M=0,f=2*t;for(;m!=t&&M<4&&0!=m;){const n=f/m;if(n>1e3)break;f=Math.round(Math.max(t*n,t));const e=s.range(0,f),i=r.map(g,n=>n*(f-1));_=r.interpolate(e,i,c);m=s.uniq(_).length-1,M++}if(0==m){_=[e,i];for(let n=0;n<t-1;n++)_.push(i)}else _=_.slice(_.length-t-1),m!=t&&l.logger.warn("EqHistColorMapper warning: Histogram equalization did not converge.");return{min:e,max:i,binning:_}}}e.EqHistColorMapper=p,p.__name__="EqHistColorMapper",p.init_EqHistColorMapper()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),i=e(146),_=r.__importStar(e(18));class a extends i.ContinuousScale{constructor(e){super(e)}static init_LinearScale(){this.internal({scan_result:[_.Any]})}compute(e){return this._linear_compute(e)}v_compute(e){return this._linear_v_compute(e)}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}n.LinearScale=a,a.__name__="LinearScale",a.init_LinearScale()},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const c=e(147);class s extends c.Scale{constructor(e){super(e)}}o.ContinuousScale=s,s.__name__="ContinuousScale"},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),_=t(148),s=t(24),i=n.__importStar(t(18));class a extends _.Transform{constructor(t){super(t)}static init_Scale(){this.internal({source_range:[i.Any],target_range:[i.Any]})}r_compute(t,e){return this.target_range.is_reversed?[this.compute(e),this.compute(t)]:[this.compute(t),this.compute(e)]}r_invert(t,e){return this.target_range.is_reversed?[this.invert(e),this.invert(t)]:[this.invert(t),this.invert(e)]}_linear_compute(t){const[e,r]=this._linear_compute_state();return e*t+r}_linear_v_compute(t){const[e,r]=this._linear_compute_state(),n=new s.NumberArray(t.length);for(let _=0;_<t.length;_++)n[_]=e*t[_]+r;return n}_linear_invert(t){const[e,r]=this._linear_compute_state();return(t-r)/e}_linear_v_invert(t){const[e,r]=this._linear_compute_state(),n=new s.NumberArray(t.length);for(let _=0;_<t.length;_++)n[_]=(t[_]-r)/e;return n}_linear_compute_state(){const t=this.source_range.start,e=this.source_range.end,r=this.target_range.start,n=(this.target_range.end-r)/(e-t);return[n,-n*t+r]}}r.Scale=a,a.__name__="Scale",a.init_Scale()},n”, ” function _(r,o,t){Object.defineProperty(t,"__esModule",{value:!0});var e=r(149);t.CustomJSTransform=e.CustomJSTransform;var a=r(150);t.Dodge=a.Dodge;var n=r(152);t.Interpolator=n.Interpolator;var p=r(153);t.Jitter=p.Jitter;var l=r(154);t.LinearInterpolator=l.LinearInterpolator;var v=r(155);t.StepInterpolator=v.StepInterpolator;var s=r(137);t.Transform=s.Transform},n”, ” function _(t,r,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),e=t(137),a=n.__importStar(t(18)),o=t(13),u=t(29);class i extends e.Transform{constructor(t){super(t)}static init_CustomJSTransform(){this.define({args:[a.Any,{}],func:[a.String,""],v_func:[a.String,""]})}get names(){return o.keys(this.args)}get values(){return o.values(this.args)}_make_transform(t,r){return new Function(…this.names,t,u.use_strict(r))}get scalar_transform(){return this._make_transform("x",this.func)}get vector_transform(){return this._make_transform("xs",this.v_func)}compute(t){return this.scalar_transform(…this.values,t)}v_compute(t){return this.vector_transform(…this.values,t)}}s.CustomJSTransform=i,i.__name__="CustomJSTransform",i.init_CustomJSTransform()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(1),r=e(151),_=o.__importStar(e(18));class i extends r.RangeTransform{constructor(e){super(e)}static init_Dodge(){this.define({value:[_.Number,0]})}_compute(e){return e+this.value}}n.Dodge=i,i.__name__="Dodge",i.init_Dodge()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),s=e(137),a=e(98),i=r.__importStar(e(18)),o=e(24),c=e(8);class u extends s.Transform{constructor(e){super(e)}static init_RangeTransform(){this.define({range:[i.Instance]})}v_compute(e){let t;if(this.range instanceof a.FactorRange)t=this.range.v_synthetic(e);else{if(!c.isArrayableOf(e,c.isNumber))throw new Error("unexpected");t=e}const n=new o.NumberArray(t.length);for(let e=0;e<t.length;e++){const r=t[e];n[e]=this._compute(r)}return n}compute(e){if(this.range instanceof a.FactorRange)return this._compute(this.range.synthetic(e));if(c.isNumber(e))return this._compute(e);throw new Error("unexpected")}}n.RangeTransform=u,u.__name__="RangeTransform",u.init_RangeTransform()},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),o=t(137),s=n.__importStar(t(18)),i=t(24),a=t(9),h=t(8);class d extends o.Transform{constructor(t){super(t),this._sorted_dirty=!0}static init_Interpolator(){this.define({x:[s.Any],y:[s.Any],data:[s.Any],clip:[s.Boolean,!0]})}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._sorted_dirty=!0)}v_compute(t){const e=new i.NumberArray(t.length);for(let r=0;r<t.length;r++){const n=t[r];e[r]=this.compute(n)}return e}sort(t=!1){if(!this._sorted_dirty)return;let e,r;if(h.isString(this.x)&&h.isString(this.y)&&null!=this.data){const t=this.data.columns();if(!a.includes(t,this.x))throw new Error("The x parameter does not correspond to a valid column name defined in the data parameter");if(!a.includes(t,this.y))throw new Error("The y parameter does not correspond to a valid column name defined in the data parameter");e=this.data.get_column(this.x),r=this.data.get_column(this.y)}else{if(!h.isArray(this.x)||!h.isArray(this.y))throw new Error("parameters ‘x’ and ‘y’ must be both either string fields or arrays");e=this.x,r=this.y}if(e.length!==r.length)throw new Error("The length for x and y do not match");if(e.length<2)throw new Error("x and y must have at least two elements to support interpolation");const n=e.length,o=new Uint32Array(n);for(let t=0;t<n;t++)o[t]=t;const s=t?-1:1;o.sort((t,r)=>s*(e[t]-e[r])),this._x_sorted=new i.NumberArray(n),this._y_sorted=new i.NumberArray(n);for(let t=0;t<n;t++)this._x_sorted[t]=e[o[t]],this._y_sorted[t]=r[o[t]];this._sorted_dirty=!1}}r.Interpolator=d,d.__name__="Interpolator",d.init_Interpolator()},n”, ” function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),s=t(151),n=r.__importStar(t(18)),u=r.__importStar(t(10));class o extends s.RangeTransform{constructor(t){super(t)}static init_Jitter(){this.define({mean:[n.Number,0],width:[n.Number,1],distribution:[n.Distribution,"uniform"]})}v_compute(t){return null!=this.previous_values&&this.previous_values.length==t.length||(this.previous_values=super.v_compute(t)),this.previous_values}_compute(t){switch(this.distribution){case"uniform":return t+this.mean+(u.random()-.5)*this.width;case"normal":return t+u.rnorm(this.mean,this.width)}}}e.Jitter=o,o.__name__="Jitter",o.init_Jitter()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const _=t(9),r=t(152);class o extends r.Interpolator{constructor(t){super(t)}compute(t){if(this.sort(!1),this.clip){if(t<this._x_sorted[0]||t>this._x_sorted[this._x_sorted.length-1])return NaN}else{if(t<this._x_sorted[0])return this._y_sorted[0];if(t>this._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=_.find_last_index(this._x_sorted,s=>s<t),e=this._x_sorted[s],r=this._x_sorted[s+1],o=this._y_sorted[s],i=this._y_sorted[s+1];return o+(t-e)/(r-e)*(i-o)}}e.LinearInterpolator=o,o.__name__="LinearInterpolator"},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const s=t(1),o=t(152),_=s.__importStar(t(18)),i=t(9);class n extends o.Interpolator{constructor(t){super(t)}static init_StepInterpolator(){this.define({mode:[_.StepMode,"after"]})}compute(t){if(this.sort(!1),this.clip){if(t<this._x_sorted[0]||t>this._x_sorted[this._x_sorted.length-1])return NaN}else{if(t<this._x_sorted[0])return this._y_sorted[0];if(t>this._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case"after":e=i.find_last_index(this._x_sorted,e=>t>=e);break;case"before":e=i.find_index(this._x_sorted,e=>t<=e);break;case"center":{const r=this._x_sorted.map(e=>Math.abs(e-t)),s=i.min(r);e=i.find_index(r,t=>s===t);break}default:throw new Error("unknown mode: "+this.mode)}return-1!=e?this._y_sorted[e]:NaN}}r.StepInterpolator=n,n.__name__="StepInterpolator",n.init_StepInterpolator()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),a=e(147),i=e(24),s=e(9),o=e(12),c=r.__importStar(e(18));class _ extends a.Scale{constructor(e){super(e)}static init_LinearInterpolationScale(){this.internal({binning:[c.Array]})}compute(e){return e}v_compute(e){const t=o.norm(e,this.source_range.start,this.source_range.end),n=s.linspace(0,1,this.binning.length),r=o.interpolate(t,n,this.binning),a=o.norm(r,this.source_range.start,this.source_range.end),c=this.target_range.end-this.target_range.start,_=o.map(a,e=>this.target_range.start+e*c);return new i.NumberArray(_)}invert(e){return e}v_invert(e){return new i.NumberArray(e)}}n.LinearInterpolationScale=_,_.__name__="LinearInterpolationScale",_.init_LinearInterpolationScale()},n”, ” function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const a=t(146),r=t(24);class s extends a.ContinuousScale{constructor(t){super(t)}compute(t){const[e,o,a,r]=this._compute_state();let s;if(0==a)s=0;else{const n=(Math.log(t)-r)/a;s=isFinite(n)?n*e+o:NaN}return s}v_compute(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);if(0==a)for(let e=0;e<t.length;e++)n[e]=0;else for(let r=0;r<t.length;r++){const l=(Math.log(t[r])-s)/a;let c;c=isFinite(l)?l*e+o:NaN,n[r]=c}return n}invert(t){const[e,o,a,r]=this._compute_state(),s=(t-o)/e;return Math.exp(a*s+r)}v_invert(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);for(let r=0;r<t.length;r++){const l=(t[r]-o)/e;n[r]=Math.exp(a*l+s)}return n}_get_safe_factor(t,e){let o=t<0?0:t,a=e<0?0:e;if(o==a)if(0==o)[o,a]=[1,10];else{const t=Math.log(o)/Math.log(10);o=10**Math.floor(t),a=Math.ceil(t)!=Math.floor(t)?10**Math.ceil(t):10**(Math.ceil(t)+1)}return[o,a]}_compute_state(){const t=this.source_range.start,e=this.source_range.end,o=this.target_range.start,a=this.target_range.end-o,[r,s]=this._get_safe_factor(t,e);let n,l;0==r?(n=Math.log(s),l=0):(n=Math.log(s)-Math.log(r),l=Math.log(r));return[a,o,n,l]}}o.LogScale=s,s.__name__="LogScale"},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),n=t(99),r=i.__importStar(t(18));class a extends n.Range{constructor(t){super(t)}static init_Range1d(){this.define({start:[r.Number,0],end:[r.Number,1],reset_start:[r.Number],reset_end:[r.Number]})}_set_auto_bounds(){if("auto"==this.bounds){const t=Math.min(this.reset_start,this.reset_end),e=Math.max(this.reset_start,this.reset_end);this.setv({bounds:[t,e]},{silent:!0})}}initialize(){super.initialize(),null==this.reset_start&&(this.reset_start=this.start),null==this.reset_end&&(this.reset_end=this.end),this._set_auto_bounds()}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}reset(){this._set_auto_bounds(),this.start!=this.reset_start||this.end!=this.reset_end?this.setv({start:this.reset_start,end:this.reset_end}):this.change.emit()}}s.Range1d=a,a.__name__="Range1d",a.init_Range1d()},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=t(72),i=new Map;n.measure_font=function(t){const e=i.get(t);if(null!=e)return e;const n=o.span({style:{font:t}},"Hg"),l=o.div({style:{display:"inline-block",width:"1px",height:"0px"}}),s=o.div({},n,l);document.body.appendChild(s);try{l.style.verticalAlign="baseline";const e=o.offset(l).top-o.offset(n).top;l.style.verticalAlign="bottom";const d=o.offset(l).top-o.offset(n).top,c={height:d,ascent:e,descent:d-e};return i.set(t,c),c}finally{document.body.removeChild(s)}};const l=new Map;n.measure_text=function(t,e){let n=l.get(e);if(null!=n){const e=n.get(t);if(null!=e)return e}else n=new Map,l.set(e,n);const i=o.div({style:{display:"inline-block","white-space":"nowrap",font:e}},t);document.body.appendChild(i);try{const{width:e,height:o}=i.getBoundingClientRect();return n.set(t,{width:e,height:o}),{width:e,height:o}}finally{document.body.removeChild(i)}}},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(161),l=s.__importStar(t(28)),n=s.__importStar(t(18));class o extends a.TextAnnotationView{initialize(){super.initialize(),this.visuals.warm_cache()}_get_size(){const{ctx:t}=this.layer;this.visuals.text.set_value(t);const{width:e,ascent:i}=t.measureText(this.model.text);return{width:e,height:i}}_render(){let t;switch(this.model.angle_units){case"rad":t=-this.model.angle;break;case"deg":t=-this.model.angle*Math.PI/180}const e=null!=this.panel?this.panel:this.plot_view.frame,i=this.coordinates.x_scale,s=this.coordinates.y_scale;let a="data"==this.model.x_units?i.compute(this.model.x):e.xview.compute(this.model.x),l="data"==this.model.y_units?s.compute(this.model.y):e.yview.compute(this.model.y);a+=this.model.x_offset,l-=this.model.y_offset;("canvas"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,this.model.text,a,l,t)}}i.LabelView=o,o.__name__="LabelView";class _ extends a.TextAnnotation{constructor(t){super(t)}static init_Label(){this.prototype.default_view=o,this.mixins([l.Text,["border_",l.Line],["background_",l.Fill]]),this.define({x:[n.Number],x_units:[n.SpatialUnits,"data"],y:[n.Number],y_units:[n.SpatialUnits,"data"],text:[n.String],angle:[n.Angle,0],angle_units:[n.AngleUnits,"rad"],x_offset:[n.Number,0],y_offset:[n.Number,0]}),this.override({background_fill_color:null,border_line_color:null})}}i.Label=_,_.__name__="Label",_.init_Label()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),l=e(36),a=e(72),n=i.__importStar(e(18)),o=e(159),r=e(11);class _ extends l.AnnotationView{constructor(){super(…arguments),this.rotate=!0}initialize(){super.initialize(),"css"==this.model.render_mode&&(this.el=a.div(),this.plot_view.canvas_view.add_overlay(this.el))}remove(){null!=this.el&&a.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),"css"==this.model.render_mode?this.connect(this.model.change,()=>this.render()):this.connect(this.model.change,()=>this.plot_view.request_render())}render(){this.model.visible||"css"!=this.model.render_mode||a.undisplay(this.el),super.render()}_calculate_text_dimensions(e,t){const{width:s}=e.measureText(t),{height:i}=o.measure_font(this.visuals.text.font_value());return[s,i]}_calculate_bounding_box_dimensions(e,t){const[s,i]=this._calculate_text_dimensions(e,t);let l,a;switch(e.textAlign){case"left":l=0;break;case"center":l=-s/2;break;case"right":l=-s;break;default:r.unreachable()}switch(e.textBaseline){case"top":a=0;break;case"middle":a=-.5*i;break;case"bottom":a=-1*i;break;case"alphabetic":a=-.8*i;break;case"hanging":a=-.17*i;break;case"ideographic":a=-.83*i;break;default:r.unreachable()}return[l,a,s,i]}_canvas_text(e,t,s,i,l){this.visuals.text.set_value(e);const a=this._calculate_bounding_box_dimensions(e,t);e.save(),e.beginPath(),e.translate(s,i),l&&e.rotate(l),e.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),e.stroke()),this.visuals.text.doit&&(this.visuals.text.set_value(e),e.fillText(t,0,0)),e.restore()}_css_text(e,t,s,i,l){const{el:n}=this;r.assert(null!=n),a.undisplay(n),this.visuals.text.set_value(e);const o=this._calculate_bounding_box_dimensions(e,t),_=this.visuals.border_line.line_dash.value().length<2?"solid":"dashed";this.visuals.border_line.set_value(e),this.visuals.background_fill.set_value(e),n.style.position="absolute",n.style.left=s+o[0]+"px",n.style.top=i+o[1]+"px",n.style.color=""+this.visuals.text.text_color.value(),n.style.opacity=""+this.visuals.text.text_alpha.value(),n.style.font=""+this.visuals.text.font_value(),n.style.lineHeight="normal",l&&(n.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(n.style.backgroundColor=""+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(n.style.borderStyle=""+_,n.style.borderWidth=this.visuals.border_line.line_width.value()+"px",n.style.borderColor=""+this.visuals.border_line.color_value()),n.textContent=t,a.display(n)}}s.TextAnnotationView=_,_.__name__="TextAnnotationView";class u extends l.Annotation{constructor(e){super(e)}static init_TextAnnotation(){this.define({render_mode:[n.RenderMode,"canvas"]})}}s.TextAnnotation=u,u.__name__="TextAnnotation",u.init_TextAnnotation()},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),o=t(161),l=t(85),a=i.__importStar(t(28)),n=t(72),r=i.__importStar(t(18));class _ extends o.TextAnnotationView{initialize(){if(super.initialize(),this.set_data(this.model.source),"css"==this.model.render_mode)for(let t=0,e=this._text.length;t<e;t++){const t=n.div({style:{display:"none"}});this.el.appendChild(t)}}connect_signals(){super.connect_signals(),"css"==this.model.render_mode?(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.render()})):(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}))}set_data(t){super.set_data(t),this.visuals.warm_cache(t)}_map_data(){const t=this.coordinates.x_scale,e=this.coordinates.y_scale,s=null!=this.panel?this.panel:this.plot_view.frame;return["data"==this.model.x_units?t.v_compute(this._x):s.xview.v_compute(this._x),"data"==this.model.y_units?e.v_compute(this._y):s.yview.v_compute(this._y)]}_render(){const t="canvas"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer,[s,i]=this._map_data();for(let o=0,l=this._text.length;o<l;o++)t(e,o,this._text[o],s[o]+this._x_offset[o],i[o]-this._y_offset[o],this._angle[o])}_get_size(){const{ctx:t}=this.layer;this.visuals.text.set_value(t);const{width:e,ascent:s}=t.measureText(this._text[0]);return{width:e,height:s}}_v_canvas_text(t,e,s,i,o,l){this.visuals.text.set_vectorize(t,e);const a=this._calculate_bounding_box_dimensions(t,s);t.save(),t.beginPath(),t.translate(i,o),t.rotate(l),t.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_vectorize(t,e),t.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_vectorize(t,e),t.stroke()),this.visuals.text.doit&&(this.visuals.text.set_vectorize(t,e),t.fillText(s,0,0)),t.restore()}_v_css_text(t,e,s,i,o,l){const a=this.el.children[e];a.textContent=s,this.visuals.text.set_vectorize(t,e);const r=this._calculate_bounding_box_dimensions(t,s),_=this.visuals.border_line.line_dash.value().length<2?"solid":"dashed";this.visuals.border_line.set_vectorize(t,e),this.visuals.background_fill.set_vectorize(t,e),a.style.position="absolute",a.style.left=i+r[0]+"px",a.style.top=o+r[1]+"px",a.style.color=""+this.visuals.text.text_color.value(),a.style.opacity=""+this.visuals.text.text_alpha.value(),a.style.font=""+this.visuals.text.font_value(),a.style.lineHeight="normal",l&&(a.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(a.style.backgroundColor=""+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(a.style.borderStyle=""+_,a.style.borderWidth=this.visuals.border_line.line_width.value()+"px",a.style.borderColor=""+this.visuals.border_line.color_value()),n.display(a)}}s.LabelSetView=_,_.__name__="LabelSetView";class h extends o.TextAnnotation{constructor(t){super(t)}static init_LabelSet(){this.prototype.default_view=_,this.mixins([a.TextVector,["border_",a.LineVector],["background_",a.FillVector]]),this.define({x:[r.NumberSpec],y:[r.NumberSpec],x_units:[r.SpatialUnits,"data"],y_units:[r.SpatialUnits,"data"],text:[r.StringSpec,{field:"text"}],angle:[r.AngleSpec,0],x_offset:[r.NumberSpec,{value:0}],y_offset:[r.NumberSpec,{value:0}],source:[r.Instance,()=>new l.ColumnDataSource]}),this.override({background_fill_color:null,border_line_color:null})}}s.LabelSet=h,h.__name__="LabelSet",h.init_LabelSet()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=t(36),n=s.__importStar(t(28)),h=s.__importStar(t(18)),a=t(15),_=t(159),o=t(79),r=t(9),d=t(8),c=t(11);class g extends l.AnnotationView{cursor(t,e){return"none"==this.model.click_policy?null:"pointer"}get legend_padding(){return null!=this.visuals.border_line.line_color.value()?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.item_change,()=>this.plot_view.request_render())}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:s,label_width:l}=this.model;this.max_label_height=r.max([_.measure_font(this.visuals.label_text.font_value()).height,s,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,r.max([n.measureText(e).width,l]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?_.measure_font(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const h=Math.max(r.max([…this.text_widths.values()]),0),a=this.model.margin,{legend_padding:g}=this,m=this.model.spacing,{label_standoff:b}=this.model;let u,f;if("vertical"==this.model.orientation)u=t.length*this.max_label_height+Math.max(t.length-1,0)*m+2*g+this.title_height,f=r.max([h+i+b+2*g,this.title_width+2*g]);else{let e=2*g+Math.max(t.length-1,0)*m;for(const[,t]of this.text_widths)e+=r.max([t,l])+i+b;f=r.max([this.title_width+2*g,e]),u=this.max_label_height+this.title_height+2*g}const x=null!=this.panel?this.panel:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if(d.isString(v))switch(v){case"top_left":y=p.start+a,k=w.start+a;break;case"top_center":y=(p.end+p.start)/2-f/2,k=w.start+a;break;case"top_right":y=p.end-a-f,k=w.start+a;break;case"bottom_right":y=p.end-a-f,k=w.end-a-u;break;case"bottom_center":y=(p.end+p.start)/2-f/2,k=w.end-a-u;break;case"bottom_left":y=p.start+a,k=w.end-a-u;break;case"center_left":y=p.start+a,k=(w.end+w.start)/2-u/2;break;case"center":y=(p.end+p.start)/2-f/2,k=(w.end+w.start)/2-u/2;break;case"center_right":y=p.end-a-f,k=(w.end+w.start)/2-u/2}else if(d.isArray(v)&&2==v.length){const[t,e]=v;y=x.xview.compute(t),k=x.yview.compute(e)-u}else c.unreachable();return new o.BBox({left:y,top:k,width:f,height:u})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=i=l;const _=this.compute_legend_bbox(),r="vertical"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop();for(const g of c){const c=_.x+a,m=_.y+i+this.title_height;let b,u;[b,u]=r?[_.width-2*l,this.max_label_height]:[this.text_widths.get(g)+s+h,this.max_label_height];if(new o.BBox({left:c,top:m,width:b,height:u}).contains(t,e)){switch(this.model.click_policy){case"hide":for(const t of d.renderers)t.visible=!t.visible;break;case"mute":for(const t of d.renderers)t.muted=!t.muted}return!0}r?i+=this.max_label_height+n:a+=this.text_widths.get(g)+s+h+n}}return!1}_render(){if(0==this.model.items.length)return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this.model.title&&this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.set_value(t),t.fill(),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.stroke())}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=l,_=l;const o="vertical"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop(),g=d.get_field_from_label_prop();if(0==c.length)continue;const m=(()=>{switch(this.model.click_policy){case"none":return!0;case"hide":return r.every(d.renderers,t=>t.visible);case"mute":return r.every(d.renderers,t=>!t.muted)}})();for(const r of c){const c=e.x+a,b=e.y+_+this.title_height,u=c+i,f=b+s;o?_+=this.max_label_height+n:a+=this.text_widths.get(r)+i+h+n,this.visuals.label_text.set_value(t),t.fillText(r,u+h,b+this.max_label_height/2);for(const e of d.renderers){this.plot_view.renderer_views.get(e).draw_legend(t,c,u,b,f,g,r,d.index)}if(!m){let s,n;[s,n]=o?[e.width-2*l,this.max_label_height]:[this.text_widths.get(r)+i+h,this.max_label_height],t.beginPath(),t.rect(c,b,s,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(this.model.title,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=g,g.__name__="LegendView";class m extends l.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new a.Signal0(this,"item_change")}static init_Legend(){this.prototype.default_view=g,this.mixins([["label_",n.Text],["title_",n.Text],["inactive_",n.Fill],["border_",n.Line],["background_",n.Fill]]),this.define({orientation:[h.Orientation,"vertical"],location:[h.Any,"top_right"],title:[h.String],title_standoff:[h.Number,5],label_standoff:[h.Number,5],glyph_height:[h.Number,20],glyph_width:[h.Number,20],label_height:[h.Number,20],label_width:[h.Number,20],margin:[h.Number,10],padding:[h.Number,10],spacing:[h.Number,3],items:[h.Array,[]],click_policy:[h.Any,"none"]}),this.override({border_line_color:"#e5e5e5",border_line_alpha:.5,border_line_width:1,background_fill_color:"#ffffff",background_fill_alpha:.95,inactive_fill_color:"white",inactive_fill_alpha:.7,label_text_font_size:"13px",label_text_baseline:"middle",title_text_font_size:"13px",title_text_font_style:"italic"})}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(…i)}return t}}i.Legend=m,m.__name__="Legend",m.init_Legend()},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),l=e(81),i=e(86),s=e(165),o=t.__importStar(e(18)),_=e(19),a=e(9);class u extends l.Model{constructor(e){super(e)}static init_LegendItem(){this.define({label:[o.StringSpec,null],renderers:[o.Array,[]],index:[o.Number,null]})}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!a.includes(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()});this._check_data_sources_on_renderers()||_.logger.error("Non matching data sources on legend item renderers");this._check_field_label_on_data_source()||_.logger.error("Bad column name on label: "+this.label)}get_field_from_label_prop(){const{label:e}=this;return s.isField(e)?e.field:null}get_labels_list_from_label_prop(){if(s.isValue(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return["No source found"];if(r=this.renderers[0].data_source,r instanceof i.ColumnarDataSource){const n=r.get_column(e);return null!=n?a.uniq(Array.from(n)):["Invalid field"]}}return[]}}n.LegendItem=u,u.__name__="LegendItem",u.init_LegendItem()},n”, ” function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(8);n.isValue=function(e){return t.isPlainObject(e)&&"value"in e},n.isField=function(e){return t.isPlainObject(e)&&"field"in e}},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(36),o=n.__importStar(t(28)),l=t(15),a=n.__importStar(t(18));class r extends s.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.data_update,()=>this.plot_view.request_render())}_render(){const{xs:t,ys:e}=this.model;if(t.length!=e.length)return;if(t.length<3||e.length<3)return;const{frame:i}=this.plot_view,{ctx:n}=this.layer;for(let s=0,o=t.length;s<o;s++){let o,l;if("screen"!=this.model.xs_units)throw new Error("not implemented");if(o=this.model.screen?t[s]:i.xview.compute(t[s]),"screen"!=this.model.ys_units)throw new Error("not implemented");l=this.model.screen?e[s]:i.yview.compute(e[s]),0==s?(n.beginPath(),n.moveTo(o,l)):n.lineTo(o,l)}n.closePath(),this.visuals.line.doit&&(this.visuals.line.set_value(n),n.stroke()),this.visuals.fill.doit&&(this.visuals.fill.set_value(n),n.fill())}}i.PolyAnnotationView=r,r.__name__="PolyAnnotationView";class _ extends s.Annotation{constructor(t){super(t)}static init_PolyAnnotation(){this.prototype.default_view=r,this.mixins([o.Line,o.Fill]),this.define({xs:[a.Array,[]],xs_units:[a.SpatialUnits,"data"],ys:[a.Array,[]],ys_units:[a.SpatialUnits,"data"]}),this.internal({screen:[a.Boolean,!1]}),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}initialize(){super.initialize(),this.data_update=new l.Signal0(this,"data_update")}update({xs:t,ys:e}){this.setv({xs:t,ys:e,screen:!0},{silent:!0}),this.data_update.emit()}}i.PolyAnnotation=_,_.__name__="PolyAnnotation",_.init_PolyAnnotation()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),l=n.__importStar(e(18));class r extends o.AnnotationView{initialize(){super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render())}_render(){const e=this.model.gradient,t=this.model.y_intercept;if(null==e||null==t)return;const{frame:i}=this.plot_view,n=this.coordinates.x_scale,o=this.coordinates.y_scale,s=i.bbox.top,l=s+i.bbox.height,r=(o.invert(s)-t)/e,_=(o.invert(l)-t)/e,a=n.compute(r),c=n.compute(_),{ctx:p}=this.layer;p.save(),p.beginPath(),this.visuals.line.set_value(p),p.moveTo(a,s),p.lineTo(c,l),p.stroke(),p.restore()}}i.SlopeView=r,r.__name__="SlopeView";class _ extends o.Annotation{constructor(e){super(e)}static init_Slope(){this.prototype.default_view=r,this.mixins(s.Line),this.define({gradient:[l.Number,null],y_intercept:[l.Number,null]}),this.override({line_color:"black"})}}i.Slope=_,_.__name__="Slope",_.init_Slope()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),a=n.__importStar(e(18));class l extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,n=this.coordinates.y_scale,o=(t,i)=>"data"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,a,l,r;"width"==this.model.dimension?(l=o(n,t.yview),a=t.bbox.left,r=t.bbox.width,s=this.model.properties.line_width.value()):(l=t.bbox.top,a=o(i,t.xview),r=this.model.properties.line_width.value(),s=t.bbox.height);const{ctx:_}=this.layer;_.save(),_.beginPath(),this.visuals.line.set_value(_),_.moveTo(a,l),"width"==this.model.dimension?_.lineTo(a+r,l):_.lineTo(a,l+s),_.stroke(),_.restore()}}i.SpanView=l,l.__name__="SpanView";class r extends o.Annotation{constructor(e){super(e)}static init_Span(){this.prototype.default_view=l,this.mixins(s.Line),this.define({render_mode:[a.RenderMode,"canvas"],location:[a.Number,null],location_units:[a.SpatialUnits,"data"],dimension:[a.Dimension,"width"]}),this.override({line_color:"black"}),this.internal({for_hover:[a.Boolean,!1]})}}i.Span=r,r.__name__="Span",r.init_Span()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const l=t(1),s=t(161),a=t(74),n=l.__importStar(t(28)),o=l.__importStar(t(18));class r extends s.TextAnnotationView{initialize(){super.initialize(),this.visuals.text=new a.Text(this.model)}_get_location(){const t=this.panel,e=this.model.offset;let i,l;const{bbox:s}=t;switch(t.side){case"above":case"below":switch(this.model.vertical_align){case"top":l=s.top+5;break;case"middle":l=s.vcenter;break;case"bottom":l=s.bottom-5}switch(this.model.align){case"left":i=s.left+e;break;case"center":i=s.hcenter;break;case"right":i=s.right-e}break;case"left":switch(this.model.vertical_align){case"top":i=s.left-5;break;case"middle":i=s.hcenter;break;case"bottom":i=s.right+5}switch(this.model.align){case"left":l=s.bottom-e;break;case"center":l=s.vcenter;break;case"right":l=s.top+e}break;case"right":switch(this.model.vertical_align){case"top":i=s.right-5;break;case"middle":i=s.hcenter;break;case"bottom":i=s.left+5}switch(this.model.align){case"left":l=s.top+e;break;case"center":l=s.vcenter;break;case"right":l=s.bottom-e}}return[i,l]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),l=this.panel.get_label_angle_heuristic("parallel");("canvas"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,l)}_get_size(){const{text:t}=this.model;if(null==t||0==t.length)return{width:0,height:0};{this.visuals.text.set_value(this.layer.ctx);const{width:e,ascent:i}=this.layer.ctx.measureText(t);return{width:e,height:i*this.visuals.text.text_line_height.value()+10}}}}i.TitleView=r,r.__name__="TitleView";class c extends s.TextAnnotation{constructor(t){super(t)}static init_Title(){this.prototype.default_view=r,this.mixins([["border_",n.Line],["background_",n.Fill]]),this.define({text:[o.String],text_font:[o.Font,"helvetica"],text_font_size:[o.StringSpec,"13px"],text_font_style:[o.FontStyle,"bold"],text_color:[o.ColorSpec,"#444444"],text_alpha:[o.NumberSpec,1],text_line_height:[o.Number,1],vertical_align:[o.VerticalAlign,"bottom"],align:[o.TextAlign,"left"],offset:[o.Number,0]}),this.override({background_fill_color:null,border_line_color:null}),this.internal({text_align:[o.TextAlign,"left"],text_baseline:[o.TextBaseline,"bottom"]})}}i.Title=c,c.__name__="Title",c.init_Title()},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),l=e(36),s=e(115),a=e(72),n=e(79),r=o.__importStar(e(18));class _ extends l.AnnotationView{constructor(){super(…arguments),this.rotate=!0,this._invalidate_toolbar=!0,this._previous_bbox=new n.BBox}initialize(){super.initialize(),this.el=a.div(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){this._toolbar_view=await s.build_view(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push(e=>this._toolbar_view.set_visibility(e))}remove(){this._toolbar_view.remove(),a.remove(this.el),super.remove()}render(){this.model.visible||a.undisplay(this.el),super.render()}_render(){const{bbox:e}=this.panel;this._previous_bbox.equals(e)||(a.position(this.el,e),this._previous_bbox=e),this._invalidate_toolbar&&(this.el.style.position="absolute",this.el.style.overflow="hidden",this._toolbar_view.render(),a.empty(this.el),this.el.appendChild(this._toolbar_view.el),this._invalidate_toolbar=!1),a.display(this.el)}_get_size(){const{tools:e,logo:i}=this.model.toolbar;return{width:30*e.length+(null!=i?25:0),height:30}}}t.ToolbarPanelView=_,_.__name__="ToolbarPanelView";class h extends l.Annotation{constructor(e){super(e)}static init_ToolbarPanel(){this.prototype.default_view=_,this.define({toolbar:[r.Instance]})}}t.ToolbarPanel=h,h.__name__="ToolbarPanel",h.init_ToolbarPanel()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=t(36),o=t(72),n=s.__importStar(t(18)),a=t(172),h=t(173),r=s.__importDefault(t(174));class c extends l.AnnotationView{initialize(){super.initialize(),this.el=o.div({class:a.bk_tooltip}),o.undisplay(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){o.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,()=>this.render()),this.connect(this.model.properties.position.change,()=>this._reposition())}styles(){return[…super.styles(),r.default]}render(){this.model.visible||o.undisplay(this.el),super.render()}_render(){const{content:t}=this.model;null!=t?(o.empty(this.el),o.classes(this.el).toggle(a.bk_tooltip_custom,this.model.custom),this.el.appendChild(t),this.model.show_arrow&&this.el.classList.add(a.bk_tooltip_arrow)):o.undisplay(this.el)}_reposition(){const{position:t}=this.model;if(null==t)return void o.undisplay(this.el);const[e,i]=t,s=(()=>{const t=this.parent.layout.bbox.relativize(),{attachment:s}=this.model;switch(s){case"horizontal":return e<t.hcenter?"right":"left";case"vertical":return i<t.vcenter?"below":"above";default:return s}})();let l;this.el.classList.remove(h.bk_right),this.el.classList.remove(h.bk_left),this.el.classList.remove(h.bk_above),this.el.classList.remove(h.bk_below),o.display(this.el);let n=null,a=null;switch(s){case"right":this.el.classList.add(h.bk_left),n=e+(this.el.offsetWidth-this.el.clientWidth)+10,l=i-this.el.offsetHeight/2;break;case"left":this.el.classList.add(h.bk_right),a=this.plot_view.layout.bbox.width-e+10,l=i-this.el.offsetHeight/2;break;case"below":this.el.classList.add(h.bk_above),l=i+(this.el.offsetHeight-this.el.clientHeight)+10,n=Math.round(e-this.el.offsetWidth/2);break;case"above":this.el.classList.add(h.bk_below),l=i-this.el.offsetHeight-10,n=Math.round(e-this.el.offsetWidth/2)}this.el.style.top=l+"px",this.el.style.left=null!=n?n+"px":"auto",this.el.style.right=null!=a?a+"px":"auto"}}i.TooltipView=c,c.__name__="TooltipView";class d extends l.Annotation{constructor(t){super(t)}static init_Tooltip(){this.prototype.default_view=c,this.define({attachment:[n.TooltipAttachment,"horizontal"],inner_only:[n.Boolean,!0],show_arrow:[n.Boolean,!0]}),this.override({level:"overlay"}),this.internal({position:[n.Any,null],content:[n.Any,()=>o.div()],custom:[n.Any]})}clear(){this.position=null}}i.Tooltip=d,d.__name__="Tooltip",d.init_Tooltip()},n”, ” function _(o,t,l){Object.defineProperty(l,"__esModule",{value:!0}),l.bk_tooltip="bk-tooltip",l.bk_tooltip_arrow="bk-tooltip-arrow",l.bk_tooltip_custom="bk-tooltip-custom",l.bk_tooltip_row_label="bk-tooltip-row-label",l.bk_tooltip_row_value="bk-tooltip-row-value",l.bk_tooltip_color_block="bk-tooltip-color-block"},n”, ” function _(e,b,k){Object.defineProperty(k,"__esModule",{value:!0}),k.bk_active="bk-active",k.bk_inline="bk-inline",k.bk_left="bk-left",k.bk_right="bk-right",k.bk_above="bk-above",k.bk_below="bk-below",k.bk_up="bk-up",k.bk_down="bk-down",k.bk_side=function(e){switch(e){case"above":return k.bk_above;case"below":return k.bk_below;case"left":return k.bk_left;case"right":return k.bk_right}}},n”, ” function _(o,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root {\n /* Same border color used everywhere /\n / Gray of icons /\n}\n.bk-root .bk-tooltip {\n font-weight: 300;\n font-size: 12px;\n position: absolute;\n padding: 5px;\n border: 1px solid #e5e5e5;\n color: #2f2f2f;\n background-color: white;\n pointer-events: none;\n opacity: 0.95;\n z-index: 100;\n}\n.bk-root .bk-tooltip > div:not(:first-child) {\n / gives space when multiple elements are being hovered over /\n margin-top: 5px;\n border-top: #e5e5e5 1px dashed;\n}\n.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before {\n position: absolute;\n margin: -7px 0 0 0;\n top: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 7px 0 7px 0;\n border-color: transparent;\n content: " ";\n display: block;\n left: -10px;\n border-right-width: 10px;\n border-right-color: #909599;\n}\n.bk-root .bk-tooltip.bk-left::before {\n left: -10px;\n border-right-width: 10px;\n border-right-color: #909599;\n}\n.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after {\n position: absolute;\n margin: -7px 0 0 0;\n top: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 7px 0 7px 0;\n border-color: transparent;\n content: " ";\n display: block;\n right: -10px;\n border-left-width: 10px;\n border-left-color: #909599;\n}\n.bk-root .bk-tooltip.bk-right::after {\n right: -10px;\n border-left-width: 10px;\n border-left-color: #909599;\n}\n.bk-root .bk-tooltip.bk-above::before {\n position: absolute;\n margin: 0 0 0 -7px;\n left: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 7px 0 7px;\n border-color: transparent;\n content: " ";\n display: block;\n top: -10px;\n border-bottom-width: 10px;\n border-bottom-color: #909599;\n}\n.bk-root .bk-tooltip.bk-below::after {\n position: absolute;\n margin: 0 0 0 -7px;\n left: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 7px 0 7px;\n border-color: transparent;\n content: " ";\n display: block;\n bottom: -10px;\n border-top-width: 10px;\n border-top-color: #909599;\n}\n.bk-root .bk-tooltip-row-label {\n text-align: right;\n color: #26aae1;\n / blue from toolbar highlighting /\n}\n.bk-root .bk-tooltip-row-value {\n color: default;\n / seems to be necessary for notebook /\n}\n.bk-root .bk-tooltip-color-block {\n width: 12px;\n height: 12px;\n margin-left: 5px;\n margin-right: 5px;\n outline: #dddddd solid 1px;\n display: inline-block;\n}\n’},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),r=e(123),o=e(84),h=e(28),n=i.__importStar(e(18));class l extends r.UpperLowerView{connect_signals(){super.connect_signals(),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}_render(){this._map_data();const{ctx:e}=this.layer;if(this.visuals.line.doit)for(let s=0,t=this._lower_sx.length;s<t;s++)this.visuals.line.set_vectorize(e,s),e.beginPath(),e.moveTo(this._lower_sx[s],this._lower_sy[s]),e.lineTo(this._upper_sx[s],this._upper_sy[s]),e.stroke();const s="height"==this.model.dimension?0:Math.PI/2;if(null!=this.model.lower_head)for(let t=0,i=this._lower_sx.length;t<i;t++)e.save(),e.translate(this._lower_sx[t],this._lower_sy[t]),e.rotate(s+Math.PI),this.model.lower_head.render(e,t),e.restore();if(null!=this.model.upper_head)for(let t=0,i=this._upper_sx.length;t<i;t++)e.save(),e.translate(this._upper_sx[t],this._upper_sy[t]),e.rotate(s),this.model.upper_head.render(e,t),e.restore()}}t.WhiskerView=l,l.__name__="WhiskerView";class _ extends r.UpperLower{constructor(e){super(e)}static init_Whisker(){this.prototype.default_view=l,this.mixins(h.LineVector),this.define({lower_head:[n.Instance,()=>new o.TeeHead({level:"underlay",size:10})],upper_head:[n.Instance,()=>new o.TeeHead({level:"underlay",size:10})]}),this.override({level:"underlay"})}}t.Whisker=_,_.__name__="Whisker",_.init_Whisker()},n”, ” function _(i,a,e){Object.defineProperty(e,"__esModule",{value:!0});var r=i(177);e.Axis=r.Axis;var s=i(179);e.CategoricalAxis=s.CategoricalAxis;var x=i(182);e.ContinuousAxis=x.ContinuousAxis;var A=i(183);e.DatetimeAxis=A.DatetimeAxis;var o=i(184);e.LinearAxis=o.LinearAxis;var t=i(197);e.LogAxis=t.LogAxis;var n=i(200);e.MercatorAxis=n.MercatorAxis},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(178),l=s.__importStar(t(28)),n=s.__importStar(t(18)),o=t(9),r=t(8),_=t(98),{abs:h,min:c,max:d}=Math;class m extends a.GuideRendererView{constructor(){super(…arguments),this.rotate=!0}get panel(){return this.layout}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const e={tick:this._tick_extent(),tick_label:this._tick_label_extents(),axis_label:this._axis_label_extent()},{tick_coords:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,e),this._draw_major_ticks(s,e,i),this._draw_minor_ticks(s,e,i),this._draw_major_labels(s,e,i),this._draw_axis_label(s,e,i),null===(t=this._paint)||void 0===t||t.call(this,s,e,i),s.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible&&null==this.model.fixed_location&&this.is_renderable){const t=this._get_size();return{width:0,height:Math.round(t)}}return{width:0,height:0}}_get_size(){return this._tick_extent()+this._tick_label_extent()+this._axis_label_extent()}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,l]=this.coordinates.map_to_screen(i,s),[n,o]=this.normals,[r,_]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath(),t.moveTo(Math.round(a[0]+n*r),Math.round(l[0]+o*_));for(let e=1;e<a.length;e++){const i=Math.round(a[e]+n*r),s=Math.round(l[e]+o*_);t.lineTo(i,s)}t.stroke()}_draw_major_ticks(t,e,i){const s=this.model.major_tick_in,a=this.model.major_tick_out,l=this.visuals.major_tick_line;this._draw_ticks(t,i.major,s,a,l)}_draw_minor_ticks(t,e,i){const s=this.model.minor_tick_in,a=this.model.minor_tick_out,l=this.visuals.minor_tick_line;this._draw_ticks(t,i.minor,s,a,l)}_draw_major_labels(t,e,i){const s=i.major,a=this.compute_labels(s[this.dimension]),l=this.model.major_label_orientation,n=e.tick+this.model.major_label_standoff,o=this.visuals.major_label_text;this._draw_oriented_labels(t,a,s,l,this.panel.side,n,o)}_draw_axis_label(t,e,i){if(null==this.model.axis_label||0==this.model.axis_label.length||null!=this.model.fixed_location)return;let s,a;const{bbox:l}=this.panel;switch(this.panel.side){case"above":s=l.hcenter,a=l.bottom;break;case"below":s=l.hcenter,a=l.top;break;case"left":s=l.right,a=l.vcenter;break;case"right":s=l.left,a=l.vcenter;break;default:throw new Error("unknown side: "+this.panel.side)}const n=[[s],[a]],r=e.tick+o.sum(e.tick_label)+this.model.axis_label_standoff,_=this.visuals.axis_label_text;this._draw_oriented_labels(t,[this.model.axis_label],n,"parallel",this.panel.side,r,_,"screen")}_draw_ticks(t,e,i,s,a){if(!a.doit)return;const[l,n]=e,[o,r]=this.coordinates.map_to_screen(l,n),[_,h]=this.normals,[c,d]=this.offsets,[m,b]=[_*(c-i),h*(d-i)],[u,x]=[_*(c+s),h*(d+s)];a.set_value(t),t.beginPath();for(let e=0;e<o.length;e++){const i=Math.round(o[e]+u),s=Math.round(r[e]+x),a=Math.round(o[e]+m),l=Math.round(r[e]+b);t.moveTo(i,s),t.lineTo(a,l)}t.stroke()}_draw_oriented_labels(t,e,i,s,a,l,n,o="data"){if(!n.doit||0==e.length)return;let _,h,c,d;if("screen"==o)[_,h]=i,[c,d]=[0,0];else{const[t,e]=i;[_,h]=this.coordinates.map_to_screen(t,e),[c,d]=this.offsets}const[m,b]=this.normals,u=m*(c+l),x=b*(d+l);let f;n.set_value(t),this.panel.apply_label_text_heuristics(t,s),f=r.isString(s)?this.panel.get_label_angle_heuristic(s):-s;for(let i=0;i<_.length;i++){const s=Math.round(_[i]+u),a=Math.round(h[i]+x);t.translate(s,a),t.rotate(f),t.fillText(e[i],0,0),t.rotate(-f),t.translate(-s,-a)}}_axis_label_extent(){if(null==this.model.axis_label||""==this.model.axis_label)return 0;const t=this.model.axis_label_standoff,e=this.visuals.axis_label_text;return this._oriented_labels_extent([this.model.axis_label],"parallel",this.panel.side,t,e)}_tick_extent(){return this.model.major_tick_out}_tick_label_extent(){return o.sum(this._tick_label_extents())}_tick_label_extents(){const t=this.tick_coords.major,e=this.compute_labels(t[this.dimension]),i=this.model.major_label_orientation,s=this.model.major_label_standoff,a=this.visuals.major_label_text;return[this._oriented_labels_extent(e,i,this.panel.side,s,a)]}_oriented_labels_extent(t,e,i,s,a){if(0==t.length)return 0;const l=this.layer.ctx;let n,o;a.set_value(l),r.isString(e)?(n=1,o=this.panel.get_label_angle_heuristic(e)):(n=2,o=-e),o=Math.abs(o);const _=Math.cos(o),h=Math.sin(o);let c=0;for(let e=0;e<t.length;e++){const s=1.1*l.measureText(t[e]).width,a=.9*l.measureText(t[e]).ascent;let o;o="above"==i||"below"==i?s*h+a/n*_:s*_+a/n*h,o>c&&(c=o)}return c>0&&(c+=s),c}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.doFormat(t,this);for(let i=0;i<t.length;i++)t[i]in this.model.major_label_overrides&&(e[i]=this.model.major_label_overrides[t[i]]);return e}get offsets(){if(null!=this.model.fixed_location)return[0,0];const{frame:t}=this.plot_view;let[e,i]=[0,0];switch(this.panel.side){case"below":i=h(this.panel.bbox.top-t.bbox.bottom);break;case"above":i=h(this.panel.bbox.bottom-t.bbox.top);break;case"right":e=h(this.panel.bbox.left-t.bbox.right);break;case"left":e=h(this.panel.bbox.right-t.bbox.left)}return[e,i]}get ranges(){const t=this.dimension,e=(t+1)%2,{ranges:i}=this.coordinates;return[i[t],i[e]]}get computed_bounds(){const[t]=this.ranges,e=this.model.bounds,i=[t.min,t.max];if("auto"==e)return[t.min,t.max];{let t,s;const[a,l]=e,[n,o]=i;return h(a-l)>h(n-o)?(t=d(c(a,l),n),s=c(d(a,l),o)):(t=c(a,l),s=d(a,l)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=[new Array(2),new Array(2)];return l[t][0]=Math.max(s,i.min),l[t][1]=Math.min(a,i.max),l[t][0]>l[t][1]&&(l[t][0]=l[t][1]=NaN),l[e][0]=this.loc,l[e][1]=this.loc,l}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=this.model.ticker.get_ticks(s,a,i,this.loc,{}),n=l.major,o=l.minor,r=[[],[]],_=[[],[]],[h,c]=[i.min,i.max];for(let i=0;i<n.length;i++)n[i]<h||n[i]>c||(r[t].push(n[i]),r[e].push(this.loc));for(let i=0;i<o.length;i++)o[i]<h||o[i]>c||(_[t].push(o[i]),_[e].push(this.loc));return{major:r,minor:_}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if(r.isNumber(t))return t;const[,e]=this.ranges;if(e instanceof _.FactorRange)return e.synthetic(t);throw new Error("unexpected")}const[,e]=this.ranges;switch(this.panel.side){case"left":case"below":return e.start;case"right":case"above":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}}i.AxisView=m,m.__name__="AxisView";class b extends a.GuideRenderer{constructor(t){super(t)}static init_Axis(){this.prototype.default_view=m,this.mixins([["axis_",l.Line],["major_tick_",l.Line],["minor_tick_",l.Line],["major_label_",l.Text],["axis_label_",l.Text]]),this.define({bounds:[n.Any,"auto"],ticker:[n.Instance],formatter:[n.Instance],axis_label:[n.String,""],axis_label_standoff:[n.Int,5],major_label_standoff:[n.Int,5],major_label_orientation:[n.Any,"horizontal"],major_label_overrides:[n.Any,{}],major_tick_in:[n.Number,2],major_tick_out:[n.Number,6],minor_tick_in:[n.Number,0],minor_tick_out:[n.Number,4],fixed_location:[n.Any,null]}),this.override({axis_line_color:"black",major_tick_line_color:"black",minor_tick_line_color:"black",major_label_text_font_size:"11px",major_label_text_align:"center",major_label_text_baseline:"alphabetic",axis_label_text_font_size:"13px",axis_label_text_font_style:"italic"})}}i.Axis=b,b.__name__="Axis",b.init_Axis()},n”, ” function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});const i=e(70);class n extends i.RendererView{}d.GuideRendererView=n,n.__name__="GuideRendererView";class t extends i.Renderer{constructor(e){super(e)}static init_GuideRenderer(){this.override({level:"guide"})}}d.GuideRenderer=t,t.__name__="GuideRenderer",t.init_GuideRenderer()},n”, ” function _(t,s,o){Object.defineProperty(o,"__esModule",{value:!0});const e=t(1),i=t(177),r=t(180),a=t(181),l=e.__importStar(t(28)),_=e.__importStar(t(18));class n extends i.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;t<e.tops.length-1;t++){let s,o;for(let i=n;i<e.factors.length;i++)if(e.factors[i][0]==e.tops[t+1]){[s,o]=[e.factors[i-1],e.factors[i]],n=i;break}const h=(e.synthetic(s)+e.synthetic(o))/2;h>i&&h<r&&(_[a].push(h),_[l].push(this.loc))}const h=this._tick_label_extent();this._draw_ticks(t,_,-3,h-6,this.visuals.separator_line)}_draw_major_labels(t,s,o){const e=this._get_factor_info();let i=s.tick+this.model.major_label_standoff;for(let o=0;o<e.length;o++){const[r,a,l,_]=e[o];this._draw_oriented_labels(t,r,a,l,this.panel.side,i,_),i+=s.tick_label[o]}}_tick_label_extents(){const t=this._get_factor_info(),s=[];for(const[o,,e,i]of t){const t=this._oriented_labels_extent(o,e,this.panel.side,this.model.major_label_standoff,i);s.push(t)}return s}_get_factor_info(){const[t]=this.ranges,[s,o]=this.computed_bounds,e=this.loc,i=this.model.ticker.get_ticks(s,o,t,e,{}),r=this.tick_coords,a=[];if(1==t.levels){const t=i.major,s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text])}else if(2==t.levels){const t=i.major.map(t=>t[1]),s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=i.major.map(t=>t[2]),s=this.model.formatter.doFormat(t,this),o=i.mids.map(t=>t[1]);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([o,r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc,{}),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map(t=>this.loc),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map(t=>this.loc)),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map(t=>this.loc)),a}}o.CategoricalAxisView=n,n.__name__="CategoricalAxisView";class h extends i.Axis{constructor(t){super(t)}static init_CategoricalAxis(){this.prototype.default_view=n,this.mixins([["separator_",l.Line],["group_",l.Text],["subgroup_",l.Text]]),this.define({group_label_orientation:[_.Any,"parallel"],subgroup_label_orientation:[_.Any,"parallel"]}),this.override({ticker:()=>new r.CategoricalTicker,formatter:()=>new a.CategoricalTickFormatter,separator_line_color:"lightgrey",separator_line_width:2,group_text_font_style:"bold",group_text_font_size:"11px",group_text_color:"grey",subgroup_text_font_style:"bold",subgroup_text_font_size:"11px"})}}o.CategoricalAxis=h,h.__name__="CategoricalAxis",h.init_CategoricalAxis()},n”, ” function _(t,c,e){Object.defineProperty(e,"__esModule",{value:!0});const o=t(129);class s extends o.Ticker{constructor(t){super(t)}get_ticks(t,c,e,o,s){return{major:this._collect(e.factors,e,t,c),minor:[],tops:this._collect(e.tops||[],e,t,c),mids:this._collect(e.mids||[],e,t,c)}}_collect(t,c,e,o){const s=[];for(const r of t){const t=c.synthetic(r);t>e&&t<o&&s.push(r)}return s}}e.CategoricalTicker=s,s.__name__="CategoricalTicker"},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(131),c=e(9);class a extends o.TickFormatter{constructor(e){super(e)}doFormat(e,t){return c.copy(e)}}r.CategoricalTickFormatter=a,a.__name__="CategoricalTickFormatter"},n”, ” function _(s,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=s(177);class t extends o.Axis{constructor(s){super(s)}}n.ContinuousAxis=t,t.__name__="ContinuousAxis"},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(184),a=e(185),r=e(190);class n extends s.LinearAxisView{}i.DatetimeAxisView=n,n.__name__="DatetimeAxisView";class _ extends s.LinearAxis{constructor(e){super(e)}static init_DatetimeAxis(){this.prototype.default_view=n,this.override({ticker:()=>new r.DatetimeTicker,formatter:()=>new a.DatetimeTickFormatter})}}i.DatetimeAxis=_,_.__name__="DatetimeAxis",_.init_DatetimeAxis()},n”, ” function _(e,i,s){Object.defineProperty(s,"__esModule",{value:!0});const t=e(177),n=e(182),r=e(130),a=e(126);class _ extends t.AxisView{}s.LinearAxisView=_,_.__name__="LinearAxisView";class c extends n.ContinuousAxis{constructor(e){super(e)}static init_LinearAxis(){this.prototype.default_view=_,this.override({ticker:()=>new a.BasicTicker,formatter:()=>new r.BasicTickFormatter})}}s.LinearAxis=c,c.__name__="LinearAxis",c.init_LinearAxis()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),i=r.__importDefault(t(186)),n=t(131),o=t(19),a=r.__importStar(t(18)),c=t(187),m=t(9),u=t(8);function h(t){return i.default(t,"%Y %m %d %H %M %S").split(/\s+/).map(t=>parseInt(t,10))}function d(t,s){if(u.isFunction(s))return s(t);{const e=c.sprintf("$1%06d",function(t){return Math.round(t/1e3%1*1e6)}(t));return-1==(s=s.replace(/((^|[^%])(%%))%f/,e)).indexOf("%")?s:i.default(t,s)}}const l=["microseconds","milliseconds","seconds","minsec","minutes","hourmin","hours","days","months","years"];class _ extends n.TickFormatter{constructor(t){super(t),this.strip_leading_zeros=!0}static init_DatetimeTickFormatter(){this.define({microseconds:[a.Array,["%fus"]],milliseconds:[a.Array,["%3Nms","%S.%3Ns"]],seconds:[a.Array,["%Ss"]],minsec:[a.Array,[":%M:%S"]],minutes:[a.Array,[":%M","%Mm"]],hourmin:[a.Array,["%H:%M"]],hours:[a.Array,["%Hh","%H:%M"]],days:[a.Array,["%m/%d","%a%d"]],months:[a.Array,["%m/%Y","%b %Y"]],years:[a.Array,["%Y"]]})}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const t=+i.default(new Date),s=function(s){const e=s.map(s=>d(t,s).length),r=m.sort_by(m.zip(e,s),([t])=>t);return m.unzip(r)};this._width_formats={microseconds:s(this.microseconds),milliseconds:s(this.milliseconds),seconds:s(this.seconds),minsec:s(this.minsec),minutes:s(this.minutes),hourmin:s(this.hourmin),hours:s(this.hours),days:s(this.days),months:s(this.months),years:s(this.years)}}_get_resolution_str(t,s){const e=1.1*t;switch(!1){case!(e<.001):return"microseconds";case!(e<1):return"milliseconds";case!(e<60):return s>=60?"minsec":"seconds";case!(e<3600):return s>=3600?"hourmin":"minutes";case!(e<86400):return"hours";case!(e<2678400):return"days";case!(e<31536e3):return"months";default:return"years"}}doFormat(t,s){if(0==t.length)return[];const e=Math.abs(t[t.length-1]-t[0])/1e3,r=e/(t.length-1),i=this._get_resolution_str(r,e),[,[n]]=this._width_formats[i],a=[],c=l.indexOf(i),m={};for(const t of l)m[t]=0;m.seconds=5,m.minsec=4,m.minutes=4,m.hourmin=3,m.hours=3;for(const s of t){let t,e;try{e=h(s),t=d(s,n)}catch(t){o.logger.warn("unable to format tick for timestamp value "+s),o.logger.warn(" - "+t),a.push("ERR");continue}let r=!1,u=c;for(;0==e[m[l[u]]];){let n;if(u+=1,u==l.length)break;if(("minsec"==i||"hourmin"==i)&&!r){if("minsec"==i&&0==e[4]&&0!=e[5]||"hourmin"==i&&0==e[3]&&0!=e[4]){n=this._width_formats[l[c-1]][1][0],t=d(s,n);break}r=!0}n=this._width_formats[l[u]][1][0],t=d(s,n)}if(this.strip_leading_zeros){let s=t.replace(/^0+/g,"");s!=t&&isNaN(parseInt(s))&&(s="0"+s),a.push(s)}else a.push(t)}return a}}e.DatetimeTickFormatter=_,_.__name__="DatetimeTickFormatter",_.init_DatetimeTickFormatter()},n”, ” function _(e,t,n){!function(e){"object"==typeof t&&t.exports?t.exports=e():"function"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o<a&&!(f[o][n]<=r);o++);if((u=f[o]).rules){for(s=t[u.rules],c=T+1;c>=T-g;–c)for(o=0,a=s.length;o<a;o++)s[o].from<=c&&c<=s[o].to?h.push(e(u,s[o],c)):s[o].to<c&&1==g&&(g=c-s[o].to);for(h.sort((function(e,t){return e.sort-t.sort})),o=0,a=h.length;o<a;o++)r>=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return"UTC"==e.zone?n:(e.entry=t(e,"posix",n),n+e.entry.offset+e.entry.save)}function r(e,n){return"UTC"==e.zone?n:(e.entry=r=t(e,"wallclock",n),0<(o=n-r.wallclock)&&o<r.save?null:n-r.offset-r.save);var r,o}function o(e,t,o){var a,i=+(o[1]+1),s=o[2]*i,c=u.indexOf(o[3].toLowerCase());if(c>9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:"UTC",entry:{abbrev:"UTC",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push(("0"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return"^"!=n||u?("^"==n&&(r=3),3==r?(a=(a=l.join(":")).replace(/:00$/,""),"^"!=n&&(a=a.replace(/:00$/,""))):r?(a=l.slice(0,r+1).join(":"),"^"==n&&(a=a.replace(/:00$/,""))):a=l.slice(0,2).join(""),a=(a=(u<0?"-":"+")+a).replace(/([-+])(0)/,{_:" $1","-":"$1"}[n]||"$1$2")):"Z"},"%":function(e){return"%"},n:function(e){return"\n"},t:function(e){return"\t"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,"%H:%M"])},T:function(e,t){return this.convert([t,"%H:%M:%S"])},D:function(e,t){return this.convert([t,"%m/%d/%y"])},F:function(e,t){return this.convert([t,"%Y-%m-%d"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||"%I:%M:%S"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return"1.0.23";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t<e.length;t++)if(l=e[t],Array.isArray(l))t||isNaN(l[1])?l.splice.apply(e,[t–,1].concat(l)):s=l;else if(isNaN(l)){if("string"==(u=typeof l))~l.indexOf("%")?c.format=l:t||""!=l?!t&&(u=/^(\d{4})-(\d{2})-(\d{2})(?:[T\s](\d{2}):(\d{2})(?::(\d{2})(?:\.(\d+))?)?(Z|(([+-])(\d{2}(:\d{2}){0,2})))?)?$/.exec(l))?((s=[]).push.apply(s,u.slice(1,8)),u[9]?(s.push(u[10]+1),s.push.apply(s,u[11].split(/:/))):u[8]&&s.push(1)):/^\w{2,3}_\w{2}$/.test(l)?c.locale=l:(u=i.exec(l))?f.push(u):c.zone=l:s=l;else if("function"==u){if(u=l.call(c))return u}else if(/^\w{2,3}_\w{2}$/.test(l.name))c[l.name]=l;else if(l.zones){for(u in l.zones)c[u]=l.zones[u];for(u in l.rules)c[u]=l.rules[u]}}else t||(s=l);if(c[c.locale]||delete c.locale,c[c.zone]||delete c.zone,null!=s){if(""==s)s=c.clock();else if(Array.isArray(s)){for(u=[],a=!s[7],t=0;t<11;t++)u[t]=+(s[t]||0);–u[1],s=Date.UTC.apply(Date.UTC,u)+-u[7]*(36e5*u[8]+6e4*u[9]+1e3*u[10])}else s=Math.floor(s);if(!isNaN(s)){if(a&&(s=r(c,s)),null==s)return s;for(t=0,a=f.length;t<a;t++)s=o(c,s,f[t]);return c.format?(u=new Date(n(c,s)),c.format.replace(/%([-0_^]?)(:{0,3})(\d*)(.)/g,(function(e,t,n,r,o){var a,i,l="0";if(a=c[o]){for(e=String(a.call(c,u,s,t,n.length)),"_"==(t||a.style)&&(l=" "),i="-"==t?0:a.pad||0;e.length<i;)e=l+e;for(i="-"==t?0:r||a.pad;e.length<i;)e=l+e;"N"==o&&i<e.length&&(e=e.slice(0,i)),"^"==t&&(e=e.toUpperCase())}return e}))):s}}return function(){return c.convert(arguments)}},locale:"en_US",en_US:{date:"%m/%d/%Y",time24:"%I:%M:%S %p",time12:"%I:%M:%S %p",dateTime:"%a %d %b %Y %I:%M:%S %p %Z",meridiem:["AM","PM"],month:{abbrev:"Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec".split("|\"),full:\"January|February|March|April|May|June|July|August|September|October|November|December\".split(\"|")},day:{abbrev:"Sun|Mon|Tue|Wed|Thu|Fri|Sat".split("|\"),full:\"Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday\".split(\"|")}}},u="Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|year|month|day|hour|minute|second|millisecond",i=new RegExp("^\\s*([+-])(\\d+)\\s+("+u+")s?\\s*$","i"),l=[36e5,6e4,1e3,1];function s(e,t){var n,r,o;return r=new Date(Date.UTC(e.getUTCFullYear(),0)),n=Math.floor((e.getTime()-r.getTime())/864e5),r.getUTCDay()==t?o=0:8==(o=7-r.getUTCDay()+t)&&(o=1),n>=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split("|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n", " function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=r(1),i=n.__importStar(r(188)),u=r(189),a=n.__importDefault(r(186)),f=r(29),o=r(8);function l(r,...e){return u.sprintf(r,...e)}function s(r,e,t){if(o.isNumber(r)){return l((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return\"\"+r}function c(r,e,n){if(null==e)return s;if(null!=n&&r in n){const e=n[r];if(o.isString(e)){if(e in t.DEFAULT_FORMATTERS)return t.DEFAULT_FORMATTERS[e];throw new Error(`Unknown tooltip field formatter type '${e}'`)}return function(r,t,n){return e.format(r,t,n)}}return t.DEFAULT_FORMATTERS.numeral}function m(r,e,t,n){if(\"$\"==r[0]){return function(r,e){if(r in e)return e[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),n)}return function(r,e,t){const n=e.get_column(r);if(null==n)return null;if(o.isNumber(t))return n[t];const i=n[t.index];if(o.isTypedArray(i)||o.isArray(i)){if(o.isArray(i[0])){return i[t.dim2][t.dim1]}return i[t.flat_index]}return i}(r.substring(1).replace(/[{}]/g,\"\"),e,t)}t.DEFAULT_FORMATTERS={numeral:(r,e,t)=>i.format(r,e),datetime:(r,e,t)=>a.default(r,e),printf:(r,e,t)=>l(e,r)},t.sprintf=l,t.basic_formatter=s,t.get_formatter=c,t.get_value=m,t.replace_placeholders=function(r,e,t,n,i={}){let u,a;if(o.isString(r)?(u=r,a=!1):(u=r.html,a=!0),u=u.replace(/@\\$name/g,r=>`@{${i.name}}`),u=u.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,(r,u,o)=>{const l=m(u,e,t,i);if(null==l)return\"\"+f.escape(\"???\");if(\"safe\"==o)return a=!0,\"\"+l;const s=c(u,o,n);return\"\"+f.escape(s(l,o,i))}),a){return[...(new DOMParser).parseFromString(u,\"text/html\").body.childNodes]}return u}},\n", " function _(e,n,t){\n", " /*!\n", " * numbro.js\n", " * version : 1.6.2\n", " * author : Företagsplatsen AB\n", " * license : MIT\n", " * http://www.foretagsplatsen.se\n", " */\n", " var r,i={},a=i,o=\"en-US\",l=null,u=\"0,0\";void 0!==n&&n.exports;function c(e){this._value=e}function s(e){var n,t=\"\";for(n=0;n<e;n++)t+=\"0\";return t}function f(e,n,t,r){var i,a,o=Math.pow(10,n);return a=e.toFixed(0).search(\"e\")>-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||"")+s(i-r.length),n>0&&(a+="."+s(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp("0{1,"+r+"}$"),a=a.replace(i,"")),a}function d(e,n,t){return n.indexOf("$")>-1?function(e,n,t){var r,a,l=n,u=l.indexOf("$"),c=l.indexOf("("),s=l.indexOf("+"),f=l.indexOf("-"),d="",p="";-1===l.indexOf("$")?"infix"===i[o].currency.position?(p=i[o].currency.symbol,i[o].currency.spaceSeparated&&(p=" "+p+" ")):i[o].currency.spaceSeparated&&(d=" "):l.indexOf(" $")>-1?(d=" ",l=l.replace(" $","")):l.indexOf("$ ")>-1?(d=" ",l=l.replace("$ ","")):l=l.replace("$","");if(a=h(e,l,t,p),-1===n.indexOf("$"))switch(i[o].currency.position){case"postfix":a.indexOf(")")>-1?((a=a.split("")).splice(-1,0,d+i[o].currency.symbol),a=a.join("")):a=a+d+i[o].currency.symbol;break;case"infix":break;case"prefix":a.indexOf("(")>-1||a.indexOf("-")>-1?(a=a.split(""),r=Math.max(c,f)+1,a.splice(r,0,i[o].currency.symbol+d),a=a.join("")):a=i[o].currency.symbol+d+a;break;default:throw Error(‘Currency position should be among ["prefix", "infix", "postfix"]’)}else u<=1?a.indexOf("(")>-1||a.indexOf("+")>-1||a.indexOf("-")>-1?(a=a.split(""),r=1,(u<c||u<s||u<f)&&(r=0),a.splice(r,0,i[o].currency.symbol+d),a=a.join("")):a=i[o].currency.symbol+d+a:a.indexOf(")")>-1?((a=a.split("")).splice(-1,0,d+i[o].currency.symbol),a=a.join("")):a=a+d+i[o].currency.symbol;return a}(e,n,t):n.indexOf("%")>-1?function(e,n,t){var r,i="";e*=100,n.indexOf(" %")>-1?(i=" ",n=n.replace(" %","")):n=n.replace("%","");(r=h(e,n,t)).indexOf(")")>-1?((r=r.split("")).splice(-1,0,i+"%"),r=r.join("")):r=r+i+"%";return r}(e,n,t):n.indexOf(":")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+":"+(t<10?"0"+t:t)+":"+(r<10?"0"+r:r)}(e):h(e,n,t)}function h(e,n,t,r){var a,u,c,s,d,h,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k="",U=!1,N=!1,S=!1,j=!1,D=!1,C="",L="",T=Math.abs(e),K=["B","KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"],G=["B","KB","MB","GB","TB","PB","EB","ZB","YB"],I="",P=!1,R=!1;if(0===e&&null!==l)return l;if(!isFinite(e))return""+e;if(0===n.indexOf("{")){var W=n.indexOf("}");if(-1===W)throw Error(‘Format should also contain a "}"’);b=n.slice(1,W),n=n.slice(W+1)}else b="";if(n.indexOf("}")===n.length-1){var Y=n.indexOf("{");if(-1===Y)throw Error(‘Format should also contain a "{"’);w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w="";if(v=null===($=-1===n.indexOf(".")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\..*/))?-1:$[1].length,-1!==n.indexOf("-")&&(P=!0),n.indexOf("(")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf("+")>-1&&(E=!0,n=n.replace(/\+/g,"")),n.indexOf("a")>-1){if(g=n.split(".")[0].match(/[0-9]+/g)||["0"],g=parseInt(g[0],10),U=n.indexOf("aK")>=0,N=n.indexOf("aM")>=0,S=n.indexOf("aB")>=0,j=n.indexOf("aT")>=0,D=U||N||S||j,n.indexOf(" a")>-1?(k=" ",n=n.replace(" a","")):n=n.replace("a",""),p=0===(p=(d=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(h=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,d)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(".")&&g>3))for(n+="[.]",M=(M=0===h?0:3*~~(h/3)-h)<0?M+3:M,a=0;a<M;a++)n+="0";Math.floor(Math.log(Math.abs(e))/Math.LN10)+1!==g&&(T>=Math.pow(10,12)&&!D||j?(k+=i[o].abbreviations.trillion,e/=Math.pow(10,12)):T<Math.pow(10,12)&&T>=Math.pow(10,9)&&!D||S?(k+=i[o].abbreviations.billion,e/=Math.pow(10,9)):T<Math.pow(10,9)&&T>=Math.pow(10,6)&&!D||N?(k+=i[o].abbreviations.million,e/=Math.pow(10,6)):(T<Math.pow(10,6)&&T>=Math.pow(10,3)&&!D||U)&&(k+=i[o].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf("b")>-1)for(n.indexOf(" b")>-1?(C=" ",n=n.replace(" b","")):n=n.replace("b",""),s=0;s<=K.length;s++)if(u=Math.pow(1024,s),c=Math.pow(1024,s+1),e>=u&&e<c){C+=K[s],u>0&&(e/=u);break}if(n.indexOf("d")>-1)for(n.indexOf(" d")>-1?(C=" ",n=n.replace(" d","")):n=n.replace("d",""),s=0;s<=G.length;s++)if(u=Math.pow(1e3,s),c=Math.pow(1e3,s+1),e>=u&&e<c){C+=G[s],u>0&&(e/=u);break}if(n.indexOf("o")>-1&&(n.indexOf(" o")>-1?(L=" ",n=n.replace(" o","")):n=n.replace("o",""),i[o].ordinal&&(L+=i[o].ordinal(e))),n.indexOf("[.]")>-1&&(F=!0,n=n.replace("[.]",".")),x=e.toString().split(".")[0],O=n.split(".")[1],y=n.indexOf(","),O){if(x=(I=-1!==O.indexOf("")?f(e,e.toString().split(".")[1].length,t):O.indexOf("[")>-1?f(e,(O=(O=O.replace("]","")).split("["))[0].length+O[1].length,t,O[1].length):f(e,O.length,t)).split(".")[0],I.split(".")[1].length)I=(r?k+r:i[o].delimiters.decimal)+I.split(".")[1];else I="";F&&0===Number(I.slice(1))&&(I="")}else x=f(e,null,t);return x.indexOf("-")>-1&&(x=x.slice(1),R=!0),x.length<v&&(x=new Array(v-x.length+1).join("0")+x),y>-1&&(x=x.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1"+i[o].delimiters.thousands)),0===n.indexOf(".")&&(x=""),b+(n.indexOf("(")<n.indexOf("-")?(B&&R?"(":"")+(P&&R||!B&&R?"-":""):(P&&R||!B&&R?"-":"")+(B&&R?"(":""))+(!R&&E&&0!==e?"+":"")+x+I+(L||"")+(k&&!r?k:"")+(C||"")+(B&&R?")":"")+w}function p(e,n){i[e]=n}function m(e){o=e;var n=i[e].defaults;n&&n.format&&r.defaultFormat(n.format),n&&n.currencyFormat&&r.defaultCurrencyFormat(n.currencyFormat)}(r=function(e){return r.isNumbro(e)?e=e.value():0===e||void 0===e?e=0:Number(e)||(e=r.fn.unformat(e)),new c(Number(e))}).version="1.6.2",r.isNumbro=function(e){return e instanceof c},r.setLanguage=function(e,n){console.warn("`setLanguage` is deprecated since version 1.6.0. Use `setCulture` instead");var t=e,r=e.split("-")[0],i=null;a[t]||(Object.keys(a).forEach((function(e){i||e.split("-")[0]!==r||(i=e)})),t=i||n||"en-US"),m(t)},r.setCulture=function(e,n){var t=e,r=e.split("-")[1],a=null;i[t]||(r&&Object.keys(i).forEach((function(e){a||e.split("-")[1]!==r||(a=e)})),t=a||n||"en-US"),m(t)},r.language=function(e,n){if(console.warn("`language` is deprecated since version 1.6.0. Use `culture` instead"),!e)return o;if(e&&!n){if(!a[e])throw new Error("Unknown language : "+e);m(e)}return!n&&a[e]||p(e,n),r},r.culture=function(e,n){if(!e)return o;if(e&&!n){if(!i[e])throw new Error("Unknown culture : "+e);m(e)}return!n&&i[e]||p(e,n),r},r.languageData=function(e){if(console.warn("`languageData` is deprecated since version 1.6.0. Use `cultureData` instead"),!e)return a[o];if(!a[e])throw new Error("Unknown language : "+e);return a[e]},r.cultureData=function(e){if(!e)return i[o];if(!i[e])throw new Error("Unknown culture : "+e);return i[e]},r.culture("en-US",{delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(e){var n=e%10;return 1==~~(e%100/10)?"th":1===n?"st":2===n?"nd":3===n?"rd":"th"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",0000 a"},formats:{fourDigits:"0000 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00"}}),r.languages=function(){return console.warn("`languages` is deprecated since version 1.6.0. Use `cultures` instead"),a},r.cultures=function(){return i},r.zeroFormat=function(e){l="string"==typeof e?e:null},r.defaultFormat=function(e){u="string"==typeof e?e:"0.0"},r.defaultCurrencyFormat=function(e){"string"==typeof e?e:"0$"},r.validate=function(e,n){var t,i,a,o,l,u,c,s;if("string"!=typeof e&&(e+="",console.warn&&console.warn("Numbro.js: Value is not string. It has been co-erced to: ",e)),(e=e.trim()).match(/^\d+$/))return!0;if(""===e)return!1;try{c=r.cultureData(n)}catch(e){c=r.cultureData(r.culture())}return a=c.currency.symbol,l=c.abbreviations,t=c.delimiters.decimal,i="."===c.delimiters.thousands?"\\.":c.delimiters.thousands,(null===(s=e.match(/^[^\d]+/))||(e=e.substr(1),s[0]===a))&&((null===(s=e.match(/[^\d]+$/))||(e=e.slice(0,-1),s[0]===l.thousand||s[0]===l.million||s[0]===l.billion||s[0]===l.trillion))&&(u=new RegExp(i+"{2}"),!e.match(/[^\d.,]/g)&&(!((o=e.split(t)).length>2)&&(o.length<2?!!o[0].match(/^\d+.\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\d+$/):!!o[0].match(/^\d+.*\d$/)&&!o[0].match(u)&&!!o[1].match(/^\d+$/)))))},n.exports={format:function(e,n,t,i){return null!=t&&t!==r.culture()&&r.setCulture(t),d(Number(e),null!=n?n:u,null==i?Math.round:i)}}},n”, ” function _(e,n,t){!function(){"use strict";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|’[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y="";for(s=0;s<g;s++)if("string"==typeof t[s])y+=t[s];else if("object"==typeof t[s]){if((o=t[s]).keys)for(i=r[d],a=0;a<o.keys.length;a++){if(null==i)throw new Error(n(‘[sprintf] Cannot access property "%s" of undefined value "%s"’,o.keys[a],o.keys[a-1]));i=i[o.keys[a]]}else i=o.param_no?r[o.param_no]:r[d++];if(e.not_type.test(o.type)&&e.not_primitive.test(o.type)&&i instanceof Function&&(i=i()),e.numeric_arg.test(o.type)&&"number"!=typeof i&&isNaN(i))throw new TypeError(n("[sprintf] expecting number but found %T",i));switch(e.number.test(o.type)&&(u=i>=0),o.type){case"b":i=parseInt(i,10).toString(2);break;case"c":i=String.fromCharCode(parseInt(i,10));break;case"d":case"i":i=parseInt(i,10);break;case"j":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case"e":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case"f":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case"g":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case"o":i=(parseInt(i,10)>>>0).toString(8);break;case"s":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case"t":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case"T":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case"u":i=parseInt(i,10)>>>0;break;case"v":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case"x":i=(parseInt(i,10)>>>0).toString(16);break;case"X":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f="":(f=u?"+":"-",i=i.toString().replace(e.sign,"")),c=o.pad_char?"0"===o.pad_char?"0":o.pad_char.charAt(1):" ",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):"",y+=o.align?f+i+p:"0"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push("%");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(o.push(c[1]);""!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError("[sprintf] failed to parse named argument key");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),"undefined"!=typeof window&&(window.sprintf=n,window.vsprintf=r,"function"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},n”, ” function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(9),a=e(127),s=e(191),r=e(192),c=e(195),_=e(196),m=e(194);class k extends s.CompositeTicker{constructor(e){super(e)}static init_DatetimeTicker(){this.override({num_minor_ticks:0,tickers:()=>[new a.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*m.ONE_MILLI,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:m.ONE_SECOND,max_interval:30*m.ONE_MINUTE,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:m.ONE_HOUR,max_interval:12*m.ONE_HOUR,num_minor_ticks:0}),new r.DaysTicker({days:t.range(1,32)}),new r.DaysTicker({days:t.range(1,31,3)}),new r.DaysTicker({days:[1,8,15,22]}),new r.DaysTicker({days:[1,15]}),new c.MonthsTicker({months:t.range(0,12,1)}),new c.MonthsTicker({months:t.range(0,12,2)}),new c.MonthsTicker({months:t.range(0,12,4)}),new c.MonthsTicker({months:t.range(0,12,6)}),new _.YearsTicker({})]})}}n.DatetimeTicker=k,k.__name__="DatetimeTicker",k.init_DatetimeTicker()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const r=t(1),s=t(128),n=r.__importStar(t(18)),_=t(9);class a extends s.ContinuousTicker{constructor(t){super(t)}static init_CompositeTicker(){this.define({tickers:[n.Array,[]]})}get min_intervals(){return this.tickers.map(t=>t.get_min_interval())}get max_intervals(){return this.tickers.map(t=>t.get_max_interval())}get min_interval(){return this.min_intervals[0]}get max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[_.sorted_index(this.min_intervals,s)-1,_.sorted_index(this.max_intervals,s)],a=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map(t=>Math.abs(i-r/t));let c;if(_.is_empty(a.filter(t=>!isNaN(t))))c=this.tickers[0];else{const t=n[_.argmin(a)];c=this.tickers[t]}return c}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=a,a.__name__="CompositeTicker",a.init_CompositeTicker()},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(1),s=t(193),a=t(194),o=i.__importStar(t(18)),r=t(9);class _ extends s.SingleIntervalTicker{constructor(t){super(t)}static init_DaysTicker(){this.define({days:[o.Array,[]]}),this.override({num_minor_ticks:0})}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*a.ONE_DAY:this.interval=31*a.ONE_DAY}get_ticks_no_defaults(t,e,n,i){const s=function(t,e){const n=a.last_month_no_later_than(new Date(t)),i=a.last_month_no_later_than(new Date(e));i.setUTCMonth(i.getUTCMonth()+1);const s=[],o=n;for(;s.push(a.copy_date(o)),o.setUTCMonth(o.getUTCMonth()+1),!(o>i););return s}(t,e),o=this.days,_=this.interval;return{major:r.concat(s.map(t=>((t,e)=>{const n=t.getUTCMonth(),i=[];for(const s of o){const o=a.copy_date(t);o.setUTCDate(s);new Date(o.getTime()+e/2).getUTCMonth()==n&&i.push(o)}return i})(t,_))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.DaysTicker=_,_.__name__="DaysTicker",_.init_DaysTicker()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),r=e(128),l=n.__importStar(e(18));class a extends r.ContinuousTicker{constructor(e){super(e)}static init_SingleIntervalTicker(){this.define({interval:[l.Number]})}get_interval(e,t,i){return this.interval}get min_interval(){return this.interval}get max_interval(){return this.interval}}i.SingleIntervalTicker=a,a.__name__="SingleIntervalTicker",a.init_SingleIntervalTicker()},n”, ” function _(t,e,n){function _(t){return new Date(t.getTime())}function O(t){const e=_(t);return e.setUTCDate(1),e.setUTCHours(0),e.setUTCMinutes(0),e.setUTCSeconds(0),e.setUTCMilliseconds(0),e}Object.defineProperty(n,"__esModule",{value:!0}),n.ONE_MILLI=1,n.ONE_SECOND=1e3,n.ONE_MINUTE=60*n.ONE_SECOND,n.ONE_HOUR=60*n.ONE_MINUTE,n.ONE_DAY=24*n.ONE_HOUR,n.ONE_MONTH=30*n.ONE_DAY,n.ONE_YEAR=365*n.ONE_DAY,n.copy_date=_,n.last_month_no_later_than=O,n.last_year_no_later_than=function(t){const e=O(t);return e.setUTCMonth(0),e}},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),i=t(193),s=t(194),a=r.__importStar(t(18)),o=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}static init_MonthsTicker(){this.define({months:[a.Array,[]]})}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*s.ONE_MONTH:this.interval=12*s.ONE_MONTH}get_ticks_no_defaults(t,e,n,r){const i=function(t,e){const n=s.last_year_no_later_than(new Date(t)),r=s.last_year_no_later_than(new Date(e));r.setUTCFullYear(r.getUTCFullYear()+1);const i=[],a=n;for(;i.push(s.copy_date(a)),a.setUTCFullYear(a.getUTCFullYear()+1),!(a>r););return i}(t,e),a=this.months;return{major:o.concat(i.map(t=>a.map(e=>{const n=s.copy_date(t);return n.setUTCMonth(e),n}))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.MonthsTicker=_,_.__name__="MonthsTicker",_.init_MonthsTicker()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(126),r=e(193),n=e(194);class _ extends r.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=n.ONE_YEAR,this.basic_ticker=new i.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=n.last_year_no_later_than(new Date(e)).getUTCFullYear(),_=n.last_year_no_later_than(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,_,a,i).major.map(e=>Date.UTC(e,0,1)).filter(a=>e<=a&&a<=t),minor:[]}}}a.YearsTicker=_,_.__name__="YearsTicker"},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(177),o=e(182),n=e(198),r=e(199);class _ extends s.AxisView{}t.LogAxisView=_,_.__name__="LogAxisView";class c extends o.ContinuousAxis{constructor(e){super(e)}static init_LogAxis(){this.prototype.default_view=_,this.override({ticker:()=>new r.LogTicker,formatter:()=>new n.LogTickFormatter})}}t.LogAxis=c,c.__name__="LogAxis",c.init_LogAxis()},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=t(1),o=t(131),a=t(130),n=i.__importStar(t(18));class c extends o.TickFormatter{constructor(t){super(t)}static init_LogTickFormatter(){this.define({ticker:[n.Instance,null]})}initialize(){super.initialize(),this.basic_formatter=new a.BasicTickFormatter}doFormat(t,e){if(0==t.length)return[];const r=null!=this.ticker?this.ticker.base:10;let i=!1;const o=new Array(t.length);for(let e=0,a=t.length;e<a;e++)if(o[e]=`${r}^${Math.round(Math.log(t[e])/Math.log(r))}`,e>0&&o[e]==o[e-1]){i=!0;break}return i?this.basic_formatter.doFormat(t,e):o}}r.LogTickFormatter=c,c.__name__="LogTickFormatter",c.init_LogTickFormatter()},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(127),s=t(9);class n extends i.AdaptiveTicker{constructor(t){super(t)}static init_LogTicker(){this.override({mantissas:[1,5]})}get_ticks_no_defaults(t,o,e,i){const n=this.num_minor_ticks,r=[],c=this.base,a=Math.log(t)/Math.log(c),f=Math.log(o)/Math.log(c),l=f-a;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,i),c=Math.floor(t/e),a=Math.ceil(o/e);if(h=s.range(c,a+1).filter(t=>0!=t).map(t=>t*e).filter(e=>t<=e&&e<=o),n>0&&h.length>0){const t=e/n,o=s.range(0,n).map(o=>o*t);for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*a),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=s.range(t-1,o+1,e).map(t=>c**t),n>0&&h.length>0){const t=c**e/n,o=s.range(1,n+1).map(o=>o*t);for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter(e=>t<=e&&e<=o),minor:r.filter(e=>t<=e&&e<=o)}}}e.LogTicker=n,n.__name__="LogTicker",n.init_LogTicker()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(177),s=e(184),o=e(201),a=e(202);class c extends i.AxisView{}r.MercatorAxisView=c,c.__name__="MercatorAxisView";class n extends s.LinearAxis{constructor(e){super(e)}static init_MercatorAxis(){this.prototype.default_view=c,this.override({ticker:()=>new a.MercatorTicker({dimension:"lat"}),formatter:()=>new o.MercatorTickFormatter({dimension:"lat"})})}}r.MercatorAxis=n,n.__name__="MercatorAxis",n.init_MercatorAxis()},n”, ” function _(r,t,e){Object.defineProperty(e,"__esModule",{value:!0});const o=r(1),n=r(130),i=o.__importStar(r(18)),c=r(37);class a extends n.BasicTickFormatter{constructor(r){super(r)}static init_MercatorTickFormatter(){this.define({dimension:[i.LatLon]})}doFormat(r,t){if(null==this.dimension)throw new Error("MercatorTickFormatter.dimension not configured");if(0==r.length)return[];const e=r.length,o=new Array(e);if("lon"==this.dimension)for(let n=0;n<e;n++){const[e]=c.wgs84_mercator.invert(r[n],t.loc);o[n]=e}else for(let n=0;n<e;n++){const[,e]=c.wgs84_mercator.invert(t.loc,r[n]);o[n]=e}return super.doFormat(o,t)}}e.MercatorTickFormatter=a,a.__name__="MercatorTickFormatter",a.init_MercatorTickFormatter()},n”, ” function _(t,o,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),s=t(126),e=n.__importStar(t(18)),i=t(37);class c extends s.BasicTicker{constructor(t){super(t)}static init_MercatorTicker(){this.define({dimension:[e.LatLon]})}get_ticks_no_defaults(t,o,r,n){if(null==this.dimension)throw new Error(this+".dimension wasn’t configured");return[t,o]=i.clip_mercator(t,o,this.dimension),"lon"==this.dimension?this._get_ticks_lon(t,o,r,n):this._get_ticks_lat(t,o,r,n)}_get_ticks_lon(t,o,r,n){const[s]=i.wgs84_mercator.invert(t,r),[e,c]=i.wgs84_mercator.invert(o,r),_=super.get_ticks_no_defaults(s,e,r,n),a=[];for(const t of _.major)if(i.in_bounds(t,"lon")){const[o]=i.wgs84_mercator.compute(t,c);a.push(o)}const m=[];for(const t of _.minor)if(i.in_bounds(t,"lon")){const[o]=i.wgs84_mercator.compute(t,c);m.push(o)}return{major:a,minor:m}}_get_ticks_lat(t,o,r,n){const[,s]=i.wgs84_mercator.invert(r,t),[e,c]=i.wgs84_mercator.invert(r,o),_=super.get_ticks_no_defaults(s,c,r,n),a=[];for(const t of _.major)if(i.in_bounds(t,"lat")){const[,o]=i.wgs84_mercator.compute(e,t);a.push(o)}const m=[];for(const t of _.minor)if(i.in_bounds(t,"lat")){const[,o]=i.wgs84_mercator.compute(e,t);m.push(o)}return{major:a,minor:m}}}r.MercatorTicker=c,c.__name__="MercatorTicker",c.init_MercatorTicker()},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});var t=e(204);o.CustomJS=t.CustomJS;var u=e(206);o.OpenURL=u.OpenURL},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),u=t(205),c=n.__importStar(t(18)),r=t(13),a=t(29);class i extends u.Callback{constructor(t){super(t)}static init_CustomJS(){this.define({args:[c.Any,{}],code:[c.String,""]})}get names(){return r.keys(this.args)}get values(){return r.values(this.args)}get func(){const t=a.use_strict(this.code);return new Function(…this.names,"cb_obj","cb_data",t)}execute(t,e={}){return this.func.apply(t,this.values.concat(t,e))}}s.CustomJS=i,i.__name__="CustomJS",i.init_CustomJS()},n”, ” function _(e,c,l){Object.defineProperty(l,"__esModule",{value:!0});const a=e(81);class n extends a.Model{constructor(e){super(e)}}l.Callback=n,n.__name__="Callback"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(1),i=e(205),s=e(187),r=e(8),c=o.__importStar(e(18));class a extends i.Callback{constructor(e){super(e)}static init_OpenURL(){this.define({url:[c.String,"http://"],same_tab:[c.Boolean,!1]})}execute(e,{source:t}){const n=e=>{const n=s.replace_placeholders(this.url,t,e);if(!r.isString(n))throw new Error("HTML output is not supported in this context");this.same_tab?window.location.href=n:window.open(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=a,a.__name__="OpenURL",a.init_OpenURL()},n”, ” function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var n=a(77);r.Canvas=n.Canvas;var s=a(208);r.CartesianFrame=s.CartesianFrame},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const a=e(209),_=e(146),n=e(157),r=e(158),i=e(210),g=e(98),c=e(212),o=e(13),l=e(11);class h extends c.LayoutItem{constructor(e,t,s,a,_={},n={}){super(),this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=n,l.assert(null==e.source_range&&null==e.target_range),l.assert(null==t.source_range&&null==t.target_range),this._configure_scales()}_get_ranges(e,t){return new Map(o.entries(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s){const c=new Map;for(const[o,l]of t){if((l instanceof i.DataRange1d||l instanceof r.Range1d)&&!(e instanceof _.ContinuousScale))throw new Error(Range ${l.type} is incompatible is Scale ${e.type});if(l instanceof g.FactorRange&&!(e instanceof a.CategoricalScale))throw new Error(Range ${l.type} is incompatible is Scale ${e.type});e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint="log");const t=e.clone();t.setv({source_range:l,target_range:s}),c.set(o,t)}return c}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new r.Range1d({start:e.left,end:e.right}),this._y_target=new r.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}_set_geometry(e,t){super._set_geometry(e,t),this._update_scales()}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get("default")}get y_scale(){return this._y_scales.get("default")}get xscales(){return o.to_object(this.x_scales)}get yscales(){return o.to_object(this.y_scales)}}s.CartesianFrame=h,h.__name__="CartesianFrame"},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(147);class _ extends n.Scale{constructor(e){super(e)}compute(e){return super._linear_compute(this.source_range.synthetic(e))}v_compute(e){return super._linear_v_compute(this.source_range.v_synthetic(e))}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}t.CategoricalScale=_,_.__name__="CategoricalScale"},n”, ” function _(t,i,n){Object.defineProperty(n,"__esModule",{value:!0});const e=t(1),a=t(211),s=t(90),l=t(19),_=e.__importStar(t(18)),o=e.__importStar(t(79)),r=t(9);class h extends a.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}static init_DataRange1d(){this.define({start:[_.Number],end:[_.Number],range_padding:[_.Number,.1],range_padding_units:[_.PaddingUnits,"percent"],flipped:[_.Boolean,!1],follow:[_.StartEnd],follow_interval:[_.Number],default_span:[_.Number,2],only_visible:[_.Boolean,!1]}),this.internal({scale_hint:[_.String,"auto"]})}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const t=this.names;let i=this.renderers;if(0==i.length)for(const t of this.plots){const n=t.renderers.filter(t=>t instanceof s.GlyphRenderer);i=i.concat(n)}t.length>0&&(i=i.filter(i=>r.includes(t,i.name))),l.logger.debug(computed ${i.length} renderers for ${this});for(const t of i)l.logger.trace(" - "+t);return i}_compute_plot_bounds(t,i){let n=o.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=o.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=o.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return e<i*a?e=i*a:a=e/i,n.x1=s+.5*e,n.x0=s-.5*e,n.y1=l+.5*a,n.y0=l-.5*a,n}_compute_min_max(t,i){let n,e,a=o.empty();for(const i of t)a=o.union(a,i);return[n,e]=0==i?[a.x0,a.x1]:[a.y0,a.y1],[n,e]}_compute_range(t,i){const n=this.range_padding;let e,a;if(null!=this._initial_start&&(t=this._initial_start),null!=this._initial_end&&(i=this._initial_end),"log"==this.scale_hint){let s,_;if((isNaN(t)||!isFinite(t)||t<=0)&&(t=isNaN(i)||!isFinite(i)||i<=0?.1:i/100,l.logger.warn("could not determine minimum data value for log axis, DataRange1d using value "+t)),(isNaN(i)||!isFinite(i)||i<=0)&&(i=isNaN(t)||!isFinite(t)||t<=0?10:100*t,l.logger.warn("could not determine maximum data value for log axis, DataRange1d using value "+i)),i==t)_=this.default_span+.001,s=Math.log(t)/Math.log(10);else{let e,a;"percent"==this.range_padding_units?(e=Math.log(t)/Math.log(10),a=Math.log(i)/Math.log(10),_=(a-e)*(1+n)):(e=Math.log(t-n)/Math.log(10),a=Math.log(i+n)/Math.log(10),_=a-e),s=(e+a)/2}e=10**(s-_/2),a=10**(s+_/2)}else{let s;s=i==t?this.default_span:"percent"==this.range_padding_units?(i-t)*(1+n):i-t+2*n;const l=(i+t)/2;e=l-s/2,a=l+s/2}let s=1;this.flipped&&([e,a]=[a,e],s=-1);const _=this.follow_interval;return null!=_&&Math.abs(e-a)>_&&("start"==this.follow?a=e+s*_:"end"==this.follow&&(e=a-s*_)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.values(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&("log"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&("log"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);const[h,d]=[this.start,this.end];if(o!=h||r!=d){const t={};o!=h&&(t.start=o),r!=d&&(t.end=r),this.setv(t)}"auto"==this.bounds&&this.setv({bounds:[o,r]},{silent:!0}),this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=h,h.__name__="DataRange1d",h.init_DataRange1d()},n”, ” function _(e,a,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),r=e(99),s=n.__importStar(e(18));class _ extends r.Range{constructor(e){super(e)}static init_DataRange(){this.define({names:[s.Array,[]],renderers:[s.Array,[]]})}}t.DataRange=_,_.__name__="DataRange",_.init_DataRange()},n”, ” function _(a,o,t){Object.defineProperty(t,"__esModule",{value:!0});var e=a(213);t.Sizeable=e.Sizeable,t.SizingPolicy=e.SizingPolicy;var i=a(214);t.Layoutable=i.Layoutable,t.LayoutItem=i.LayoutItem;var n=a(215);t.HStack=n.HStack,t.VStack=n.VStack,t.AnchorLayout=n.AnchorLayout;var r=a(216);t.Grid=r.Grid,t.Row=r.Row,t.Column=r.Column;var c=a(217);t.ContentBox=c.ContentBox,t.VariadicBox=c.VariadicBox},n”, ” function _(t,h,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(21),{min:d,max:n}=Math;class w{constructor(t={}){this.width=null!=t.width?t.width:0,this.height=null!=t.height?t.height:0}bounded_to({width:t,height:h}){return new w({width:this.width==1/0&&null!=t?t:this.width,height:this.height==1/0&&null!=h?h:this.height})}expanded_to({width:t,height:h}){return new w({width:t!=1/0?n(this.width,t):this.width,height:h!=1/0?n(this.height,h):this.height})}expand_to({width:t,height:h}){this.width=n(this.width,t),this.height=n(this.height,h)}narrowed_to({width:t,height:h}){return new w({width:d(this.width,t),height:d(this.height,h)})}narrow_to({width:t,height:h}){this.width=d(this.width,t),this.height=d(this.height,h)}grow_by({left:t,right:h,top:i,bottom:e}){const d=this.width+t+h,n=this.height+i+e;return new w({width:d,height:n})}shrink_by({left:t,right:h,top:i,bottom:e}){const d=n(this.width-t-h,0),s=n(this.height-i-e,0);return new w({width:d,height:s})}map(t,h){return new w({width:t(this.width),height:(null!=h?h:t)(this.height)})}}i.Sizeable=w,w.__name__="Sizeable",i.SizingPolicy=e.Enum("fixed","fit","min","max")},n”, ” function _(i,t,h){Object.defineProperty(h,"__esModule",{value:!0});const e=i(213),s=i(79),{min:n,max:g,round:a}=Math;class l{constructor(){this._bbox=new s.BBox,this._inner_bbox=new s.BBox}get bbox(){return this._bbox}get inner_bbox(){return this._inner_bbox}get sizing(){return this._sizing}set_sizing(i){const t=i.width_policy||"fit",h=i.width,e=null!=i.min_width?i.min_width:0,s=null!=i.max_width?i.max_width:1/0,n=i.height_policy||"fit",g=i.height,a=null!=i.min_height?i.min_height:0,l=null!=i.max_height?i.max_height:1/0,_=i.aspect,d=i.margin||{top:0,right:0,bottom:0,left:0},r=!1!==i.visible,w=i.halign||"start",o=i.valign||"start";this._sizing={width_policy:t,min_width:e,width:h,max_width:s,height_policy:n,min_height:a,height:g,max_height:l,aspect:_,margin:d,visible:r,halign:w,valign:o,size:{width:h,height:g},min_size:{width:e,height:a},max_size:{width:s,height:l}},this._init()}_init(){}_set_geometry(i,t){this._bbox=i,this._inner_bbox=t}set_geometry(i,t){this._set_geometry(i,t||i)}is_width_expanding(){return"max"==this.sizing.width_policy}is_height_expanding(){return"max"==this.sizing.height_policy}apply_aspect(i,{width:t,height:h}){const{aspect:e}=this.sizing;if(null!=e){const{width_policy:s,height_policy:n}=this.sizing,g=(i,t)=>{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if("fixed"!=s&&"fixed"!=n)if(s==n){const s=t,n=a(t/e),g=a(h*e),l=h;Math.abs(i.width-s)+Math.abs(i.height-n)<=Math.abs(i.width-g)+Math.abs(i.height-l)?(t=s,h=n):(t=g,h=l)}else g(s,n)?h=a(t/e):t=a(h*e);else"fixed"==s?h=a(t/e):"fixed"==n&&(t=a(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>"fixed"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>"fixed"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,s=new e.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(s),g=this.clip_size(n),a=t(g.width),l=h(g.height),_=this.apply_aspect(s,{width:a,height:l});return Object.assign(Object.assign({},n),_)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new s.BBox({left:0,top:0,width:h,height:e});let g=void 0;if(null!=t.inner){const{left:i,top:n,right:a,bottom:l}=t.inner;g=new s.BBox({left:i,top:n,right:h-a,bottom:e-l})}this.set_geometry(n,g)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_width(i){return g(this.sizing.min_width,n(i,this.sizing.max_width))}clip_height(i){return g(this.sizing.min_height,n(i,this.sizing.max_height))}clip_size({width:i,height:t}){return{width:this.clip_width(i),height:this.clip_height(t)}}}h.Layoutable=l,l.__name__="Layoutable";class _ extends l{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;let e,s;if(i.width==1/0)e=null!=this.sizing.width?this.sizing.width:0;else switch(t){case"fixed":e=null!=this.sizing.width?this.sizing.width:0;break;case"min":e=null!=this.sizing.width?n(i.width,this.sizing.width):0;break;case"fit":e=null!=this.sizing.width?n(i.width,this.sizing.width):i.width;break;case"max":e=null!=this.sizing.width?g(i.width,this.sizing.width):i.width}if(i.height==1/0)s=null!=this.sizing.height?this.sizing.height:0;else switch(h){case"fixed":s=null!=this.sizing.height?this.sizing.height:0;break;case"min":s=null!=this.sizing.height?n(i.height,this.sizing.height):0;break;case"fit":s=null!=this.sizing.height?n(i.height,this.sizing.height):i.height;break;case"max":s=null!=this.sizing.height?g(i.height,this.sizing.height):i.height}return{width:e,height:s}}}h.LayoutItem=_,_.__name__="LayoutItem";class d extends l{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case"fixed":return null!=this.sizing.width?this.sizing.width:t.width;case"min":return t.width;case"fit":return h.width;case"max":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case"fixed":return null!=this.sizing.height?this.sizing.height:t.height;case"min":return t.height;case"fit":return h.height;case"max":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=d,d.__name__="ContentLayoutable"},n”, ” function _(t,e,h){Object.defineProperty(h,"__esModule",{value:!0});const o=t(214),r=t(79);class i extends o.Layoutable{constructor(){super(…arguments),this.children=[]}}h.Stack=i,i.__name__="Stack";class s extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e+=o.width,h=Math.max(h,o.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{top:h,bottom:o}=t;let{left:i}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({left:i,width:e,top:h,bottom:o})),i+=e}}}h.HStack=s,s.__name__="HStack";class n extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e=Math.max(e,o.width),h+=o.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{left:h,right:o}=t;let{top:i}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({top:i,height:e,left:h,right:o})),i+=e}}}h.VStack=n,n.__name__="VStack";class c extends o.Layoutable{constructor(){super(…arguments),this.children=[]}_measure(t){let e=0,h=0;for(const{layout:o}of this.children){const r=o.measure(t);e=Math.max(e,r.width),h=Math.max(h,r.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);for(const{layout:e,anchor:h,margin:o}of this.children){const{left:i,right:s,top:n,bottom:c,hcenter:a,vcenter:_}=t,{width:g,height:d}=e.measure(t);let m;switch(h){case"top_left":m=new r.BBox({left:i+o,top:n+o,width:g,height:d});break;case"top_center":m=new r.BBox({hcenter:a,top:n+o,width:g,height:d});break;case"top_right":m=new r.BBox({right:s-o,top:n+o,width:g,height:d});break;case"bottom_right":m=new r.BBox({right:s-o,bottom:c-o,width:g,height:d});break;case"bottom_center":m=new r.BBox({hcenter:a,bottom:c-o,width:g,height:d});break;case"bottom_left":m=new r.BBox({left:i+o,bottom:c-o,width:g,height:d});break;case"center_left":m=new r.BBox({left:i+o,vcenter:_,width:g,height:d});break;case"center":m=new r.BBox({hcenter:a,vcenter:_,width:g,height:d});break;case"center_right":m=new r.BBox({right:s-o,vcenter:_,width:g,height:d})}e.set_geometry(m)}}}h.AnchorLayout=c,c.__name__="AnchorLayout"},n”, ” function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const e=t(213),o=t(214),n=t(8),r=t(79),h=t(9),{max:l,round:c}=Math;class a{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}a.__name__="DefaultMap";class g{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=l(this._nrows,s+1),this._ncols=l(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter(({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1).map(({data:t})=>t)}row(t){return this._items.filter(({span:i})=>i.r0<=t&&t<=i.r1).map(({data:t})=>t)}col(t){return this._items.filter(({span:i})=>i.c0<=t&&t<=i.c1).map(({data:t})=>t)}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new g;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}g.__name__="Container";class p extends o.Layoutable{constructor(t=[]){super(),this.items=t,this.rows="auto",this.cols="auto",this.spacing=0,this.absolute=!1}is_width_expanding(){if(super.is_width_expanding())return!0;if("fixed"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return h.some(t,t=>"max"==t.policy)}is_height_expanding(){if(super.is_height_expanding())return!0;if("fixed"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return h.some(t,t=>"max"==t.policy)}_init(){super._init();const t=new g;for(const{layout:i,row:s,col:e,row_span:o,col_span:n}of this.items)if(i.sizing.visible){const r=s,h=e,l=s+(null!=o?o:1)-1,c=e+(null!=n?n:1)-1;t.add({r0:r,c0:h,r1:l,c1:c},i)}const{nrows:i,ncols:s}=t,e=new Array(i);for(let s=0;s<i;s++){const i=(()=>{const t=n.isPlainObject(this.rows)?this.rows[s]||this.rows[""]:this.rows;return null==t?{policy:"auto"}:n.isNumber(t)?{policy:"fixed",height:t}:n.isString(t)?{policy:t}:t})(),o=i.align||"auto";if("fixed"==i.policy)e[s]={policy:"fixed",height:i.height,align:o};else if("min"==i.policy)e[s]={policy:"min",align:o};else if("fit"==i.policy||"max"==i.policy)e[s]={policy:i.policy,flex:i.flex||1,align:o};else{if("auto"!=i.policy)throw new Error("unrechable");h.some(t.row(s),t=>t.is_height_expanding())?e[s]={policy:"max",flex:1,align:o}:e[s]={policy:"min",align:o}}}const o=new Array(s);for(let i=0;i<s;i++){const s=(()=>{const t=n.isPlainObject(this.cols)?this.cols[i]||this.cols[""]:this.cols;return null==t?{policy:"auto"}:n.isNumber(t)?{policy:"fixed",width:t}:n.isString(t)?{policy:t}:t})(),e=s.align||"auto";if("fixed"==s.policy)o[i]={policy:"fixed",width:s.width,align:e};else if("min"==s.policy)o[i]={policy:"min",align:e};else if("fit"==s.policy||"max"==s.policy)o[i]={policy:s.policy,flex:s.flex||1,align:e};else{if("auto"!=s.policy)throw new Error("unrechable");h.some(t.col(i),t=>t.is_width_expanding())?o[i]={policy:"max",flex:1,align:e}:o[i]={policy:"min",align:e}}}const[r,l]=n.isNumber(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:t,nrows:i,ncols:s,rows:e,cols:o,rspacing:r,cspacing:l}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:h.sum(t)+(s-1)*o,width:h.sum(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:o,rows:n,cols:r,rspacing:h,cspacing:a}=this._state,p=new Array(s);for(let t=0;t<s;t++){const i=n[t];p[t]="fixed"==i.policy?i.height:0}const _=new Array(o);for(let t=0;t<o;t++){const i=r[t];_[t]="fixed"==i.policy?i.width:0}const f=new g;i.foreach((i,s)=>{const{r0:o,c0:g,r1:d,c1:w}=i,u=(d-o)*h,m=(w-g)*a;let y=0;for(let i=o;i<=d;i++)y+=t(i,g).height;y+=u;let x=0;for(let i=g;i<=w;i++)x+=t(o,i).width;x+=m;const b=s.measure({width:x,height:y});f.add(i,{layout:s,size_hint:b});const z=new e.Sizeable(b).grow_by(s.sizing.margin);z.height-=u,z.width-=m;const j=[];for(let t=o;t<=d;t++){const i=n[t];"fixed"==i.policy?z.height-=i.height:j.push(t)}if(z.height>0){const t=c(z.height/j.length);for(const i of j)p[i]=l(p[i],t)}const O=[];for(let t=g;t<=w;t++){const i=r[t];"fixed"==i.policy?z.width-=i.width:O.push(t)}if(z.width>0){const t=c(z.width/O.length);for(const i of O)_[i]=l(_[i],t)}});return{size:this._measure_totals(p,_),row_heights:p,col_widths:_,size_hints:f}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:r}=this._state,h=this._measure_cells((t,i)=>{const s=e[t],n=o[i];return{width:"fixed"==n.policy?n.width:1/0,height:"fixed"==s.policy?s.height:1/0}});let a;a="fixed"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:h.size.height;let g,p=0;for(let t=0;t<i;t++){const i=e[t];"fit"==i.policy||"max"==i.policy?p+=i.flex:a-=h.row_heights[t]}if(a-=(i-1)*n,0!=p&&a>0)for(let t=0;t<i;t++){const i=e[t];if("fit"==i.policy||"max"==i.policy){const s=c(a*(i.flex/p));a-=s,h.row_heights[t]=s,p-=i.flex}}else if(a<0){let t=0;for(let s=0;s<i;s++){"fixed"!=e[s].policy&&t++}let s=-a;for(let o=0;o<i;o++){if("fixed"!=e[o].policy){const i=h.row_heights[o],e=c(s/t);h.row_heights[o]=l(i-e,0),s-=e>i?i:e,t–}}}g="fixed"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:h.size.width;let _=0;for(let t=0;t<s;t++){const i=o[t];"fit"==i.policy||"max"==i.policy?_+=i.flex:g-=h.col_widths[t]}if(g-=(s-1)*r,0!=_&&g>0)for(let t=0;t<s;t++){const i=o[t];if("fit"==i.policy||"max"==i.policy){const s=c(g*(i.flex/_));g-=s,h.col_widths[t]=s,_-=i.flex}}else if(g<0){let t=0;for(let i=0;i<s;i++){"fixed"!=o[i].policy&&t++}let i=-g;for(let e=0;e<s;e++){if("fixed"!=o[e].policy){const s=h.col_widths[e],o=c(i/t);h.col_widths[e]=l(s-o,0),i-=o>s?s:o,t–}}}const{row_heights:f,col_widths:d,size_hints:w}=this._measure_cells((t,i)=>({width:h.col_widths[i],height:h.row_heights[t]}));return{size:this._measure_totals(f,d),row_heights:f,col_widths:d,size_hints:w}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:h,col_widths:g,size_hints:p}=this._measure_grid(t),_=this._state.rows.map((t,i)=>Object.assign(Object.assign({},t),{top:0,height:h[i],get bottom(){return this.top+this.height}})),f=this._state.cols.map((t,i)=>Object.assign(Object.assign({},t),{left:0,width:g[i],get right(){return this.left+this.width}})),d=p.map((t,i)=>Object.assign(Object.assign({},i),{outer:new r.BBox,inner:new r.BBox}));for(let i=0,e=this.absolute?t.top:0;i<s;i++){const t=_[i];t.top=e,e+=t.height+o}for(let i=0,s=this.absolute?t.left:0;i<e;i++){const t=f[i];t.left=s,s+=t.width+n}d.foreach(({r0:t,c0:i,r1:s,c1:e},h)=>{const{layout:l,size_hint:a}=h,{sizing:g}=l,{width:p,height:d}=a,w=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=f[e].width;return s}(i,e),u=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=_[e].height;return s}(t,s),m=i==e&&"auto"!=f[i].align?f[i].align:g.halign,y=t==s&&"auto"!=_[t].align?_[t].align:g.valign;let x=f[i].left;"start"==m?x+=g.margin.left:"center"==m?x+=c((w-p)/2):"end"==m&&(x+=w-g.margin.right-p);let b=_[t].top;"start"==y?b+=g.margin.top:"center"==y?b+=c((u-d)/2):"end"==y&&(b+=u-g.margin.bottom-d),h.outer=new r.BBox({left:x,top:b,width:p,height:d})});const w=_.map(()=>({start:new a(()=>0),end:new a(()=>0)})),u=f.map(()=>({start:new a(()=>0),end:new a(()=>0)}));d.foreach(({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:r}=o;null!=r&&(w[t].start.apply(n.top,t=>l(t,r.top)),w[s].end.apply(_[s].bottom-n.bottom,t=>l(t,r.bottom)),u[i].start.apply(n.left,t=>l(t,r.left)),u[e].end.apply(f[e].right-n.right,t=>l(t,r.right)))}),d.foreach(({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:h}=o;function l({left:t,right:i,top:s,bottom:e}){const o=h.width-t-i,n=h.height-s-e;return new r.BBox({left:t,top:s,width:o,height:n})}if(null!=n.inner){let r=l(n.inner);if(!1!==n.align){const o=w[t].start.get(h.top),n=w[s].end.get(_[s].bottom-h.bottom),c=u[i].start.get(h.left),a=u[e].end.get(f[e].right-h.right);try{r=l({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=r}else o.inner=h}),d.foreach((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)})}}s.Grid=p,p.__name__="Grid";class _ extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:0,col:i})),this.rows="fit"}}s.Row=_,_.__name__="Row";class f extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:i,col:0})),this.cols="fit"}}s.Column=f,f.__name__="Column"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(214),i=e(213),a=e(72);class c extends n.ContentLayoutable{constructor(e){super(),this.content_size=a.unsized(e,()=>new i.Sizeable(a.size(e)))}_content_size(){return this.content_size}}s.ContentBox=c,c.__name__="ContentBox";class o extends n.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new i.Sizeable(e).bounded_to(this.sizing.size);return a.sized(this.el,t,()=>{const e=new i.Sizeable(a.content_size(this.el)),{border:t,padding:s}=a.extents(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)})}}s.VariadicBox=o,o.__name__="VariadicBox";class r extends o{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=r,r.__name__="CachedVariadicBox"},n”, ” function _(e,r,u){Object.defineProperty(u,"__esModule",{value:!0});var a=e(219);u.Expression=a.Expression;var n=e(220);u.Stack=n.Stack;var o=e(221);u.CumSum=o.CumSum},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(81);class i extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._connected=new Set,this._result=new Map}v_compute(e){this._connected.has(e)||(this.connect(e.change,()=>this._result.delete(e)),this.connect(e.patching,()=>this._result.delete(e)),this.connect(e.streaming,()=>this._result.delete(e)),this._connected.add(e));let t=this._result.get(e);return null==t&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=i,i.__name__="Expression"},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),i=t(219),s=t(24),o=r.__importStar(t(18));class a extends i.Expression{constructor(t){super(t)}static init_Stack(){this.define({fields:[o.Array,[]]})}_v_compute(t){var e;const n=null!==(e=t.get_length())&&void 0!==e?e:0,r=new s.NumberArray(n);for(const e of this.fields){const i=t.data[e];if(null!=i)for(let t=0,e=Math.min(n,i.length);t<e;t++)r[t]+=i[t]}return r}}n.Stack=a,a.__name__="Stack",a.init_Stack()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e(1),u=e(219),r=e(24),_=i.__importStar(e(18));class o extends u.Expression{constructor(e){super(e)}static init_CumSum(){this.define({field:[_.String],include_zero:[_.Boolean,!1]})}_v_compute(e){const t=new r.NumberArray(e.get_length()||0),n=e.data[this.field],i=this.include_zero?1:0;t[0]=this.include_zero?0:n[0];for(let e=1;e<t.length;e++)t[e]=t[e-1]+n[e-i];return t}}n.CumSum=o,o.__name__="CumSum",o.init_CumSum()},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});var l=e(223);t.BooleanFilter=l.BooleanFilter;var i=e(225);t.CustomJSFilter=i.CustomJSFilter;var o=e(224);t.Filter=o.Filter;var F=e(226);t.GroupFilter=F.GroupFilter;var a=e(227);t.IndexFilter=a.IndexFilter},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),l=e(224),i=o.__importStar(e(18)),s=e(24);class r extends l.Filter{constructor(e){super(e)}static init_BooleanFilter(){this.define({booleans:[i.Array,null]})}compute_indices(e){const n=e.length,{booleans:t}=this;return null==t?s.Indices.all_set(n):s.Indices.from_booleans(n,t)}}t.BooleanFilter=r,r.__name__="BooleanFilter",r.init_BooleanFilter()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Filter=r,r.__name__="Filter"},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e(1),n=e(224),i=s.__importStar(e(18)),o=e(24),u=e(13),c=e(8),a=e(29);class l extends n.Filter{constructor(e){super(e)}static init_CustomJSFilter(){this.define({args:[i.Any,{}],code:[i.String,""]})}get names(){return u.keys(this.args)}get values(){return u.values(this.args)}get func(){const e=a.use_strict(this.code);return new Function(…this.names,"source",e)}compute_indices(e){const t=e.length,r=this.func(…this.values,e);if(null==r)return o.Indices.all_set(t);if(c.isArrayOf(r,c.isInteger))return o.Indices.from_indices(t,r);if(c.isArrayOf(r,c.isBoolean))return o.Indices.from_booleans(t,r);throw new Error("expect an array of integers or booleans, or null, got "+r)}}r.CustomJSFilter=l,l.__name__="CustomJSFilter",l.init_CustomJSFilter()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),i=e(224),o=r.__importStar(e(18)),u=e(24),s=e(19);class c extends i.Filter{constructor(e){super(e)}static init_GroupFilter(){this.define({column_name:[o.String],group:[o.String]})}compute_indices(e){const t=e.get_column(this.column_name);if(null==t)return s.logger.warn(${this}: groupby column ‘${this.column_name}’ not found in the data source),new u.Indices(e.length,1);{const n=new u.Indices(e.length);for(let e=0;e<n.size;e++)t[e]===this.group&&n.set(e);return n}}}n.GroupFilter=c,c.__name__="GroupFilter",c.init_GroupFilter()},n”, ” function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),s=e(224),r=t.__importStar(e(18)),c=e(24);class l extends s.Filter{constructor(e){super(e)}static init_IndexFilter(){this.define({indices:[r.Array,null]})}compute_indices(e){const i=e.length,{indices:n}=this;return null==n?c.Indices.all_set(i):c.Indices.from_indices(i,n)}}n.IndexFilter=l,l.__name__="IndexFilter",l.init_IndexFilter()},n”, ” function _(r,t,a){Object.defineProperty(a,"__esModule",{value:!0});var e=r(130);a.BasicTickFormatter=e.BasicTickFormatter;var c=r(181);a.CategoricalTickFormatter=c.CategoricalTickFormatter;var i=r(185);a.DatetimeTickFormatter=i.DatetimeTickFormatter;var o=r(229);a.FuncTickFormatter=o.FuncTickFormatter;var m=r(198);a.LogTickFormatter=m.LogTickFormatter;var F=r(201);a.MercatorTickFormatter=F.MercatorTickFormatter;var k=r(230);a.NumeralTickFormatter=k.NumeralTickFormatter;var T=r(231);a.PrintfTickFormatter=T.PrintfTickFormatter;var v=r(131);a.TickFormatter=v.TickFormatter},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),s=t(131),i=r.__importStar(t(18)),c=t(13),a=t(29);class u extends s.TickFormatter{constructor(t){super(t)}static init_FuncTickFormatter(){this.define({args:[i.Any,{}],code:[i.String,""]})}get names(){return c.keys(this.args)}get values(){return c.values(this.args)}_make_func(){const t=a.use_strict(this.code);return new Function("tick","index","ticks",…this.names,t)}doFormat(t,e){const n=this._make_func().bind({});return t.map((t,e,r)=>n(t,e,r,…this.values))}}n.FuncTickFormatter=u,u.__name__="FuncTickFormatter",u.init_FuncTickFormatter()},n”, ” function _(r,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=r(1),o=e.__importStar(r(188)),a=r(131),i=e.__importStar(r(18));class u extends a.TickFormatter{constructor(r){super(r)}static init_NumeralTickFormatter(){this.define({format:[i.String,"0,0"],language:[i.String,"en"],rounding:[i.RoundingFunction,"round"]})}get _rounding_fn(){switch(this.rounding){case"round":case"nearest":return Math.round;case"floor":case"rounddown":return Math.floor;case"ceil":case"roundup":return Math.ceil}}doFormat(r,t){const{format:n,language:e,_rounding_fn:a}=this;return r.map(r=>o.format(r,n,e,a))}}n.NumeralTickFormatter=u,u.__name__="NumeralTickFormatter",u.init_NumeralTickFormatter()},n”, ” function _(t,r,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1),n=t(131),o=t(187),a=e.__importStar(t(18));class c extends n.TickFormatter{constructor(t){super(t)}static init_PrintfTickFormatter(){this.define({format:[a.String,"%s"]})}doFormat(t,r){return t.map(t=>o.sprintf(this.format,t))}}i.PrintfTickFormatter=c,c.__name__="PrintfTickFormatter",c.init_PrintfTickFormatter()},n”, ” function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var v=a(233);r.AnnularWedge=v.AnnularWedge;var l=a(234);r.Annulus=l.Annulus;var t=a(235);r.Arc=t.Arc;var i=a(236);r.Bezier=i.Bezier;var n=a(237);r.Circle=n.Circle;var u=a(241);r.CenterRotatable=u.CenterRotatable;var c=a(242);r.Ellipse=c.Ellipse;var g=a(243);r.EllipseOval=g.EllipseOval;var A=a(94);r.Glyph=A.Glyph;var p=a(111);r.HArea=p.HArea;var s=a(244);r.HBar=s.HBar;var d=a(246);r.HexTile=d.HexTile;var R=a(247);r.Image=R.Image;var o=a(249);r.ImageRGBA=o.ImageRGBA;var y=a(250);r.ImageURL=y.ImageURL;var h=a(92);r.Line=h.Line;var m=a(252);r.MultiLine=m.MultiLine;var B=a(253);r.MultiPolygons=B.MultiPolygons;var P=a(254);r.Oval=P.Oval;var G=a(110);r.Patch=G.Patch;var H=a(255);r.Patches=H.Patches;var I=a(256);r.Quad=I.Quad;var L=a(257);r.Quadratic=L.Quadratic;var M=a(258);r.Ray=M.Ray;var O=a(259);r.Rect=O.Rect;var x=a(260);r.Segment=x.Segment;var C=a(261);r.Step=C.Step;var E=a(262);r.Text=E.Text;var Q=a(113);r.VArea=Q.VArea;var S=a(263);r.VBar=S.VBar;var T=a(264);r.Wedge=T.Wedge;var V=a(93);r.XYGlyph=V.XYGlyph},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),_=e(24),o=i.__importStar(e(18)),d=e(10),h=e(88);class u extends r.XYGlyphView{_map_data(){"data"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,"data"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius,this._angle=new _.NumberArray(this._start_angle.length);for(let e=0,t=this._start_angle.length;e<t;e++)this._angle[e]=this._end_angle[e]-this._start_angle[e]}_render(e,t,{sx:s,sy:i,_start_angle:r,_angle:n,sinner_radius:a,souter_radius:_}){const o=this.model.properties.direction.value();for(const d of t)isNaN(s[d]+i[d]+a[d]+_[d]+r[d]+n[d])||(e.translate(s[d],i[d]),e.rotate(r[d]),e.beginPath(),e.moveTo(_[d],0),e.arc(0,0,_[d],0,n[d],o),e.rotate(n[d]),e.lineTo(a[d],0),e.arc(0,0,a[d],0,-n[d],!o),e.closePath(),e.rotate(-n[d]-r[d]),e.translate(-s[d],-i[d]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,d),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,d),e.stroke()))}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),r=this.renderer.yscale.invert(s);let n,a,_,o;if("data"==this.model.properties.outer_radius.units)n=i-this.max_outer_radius,_=i+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const e=t-this.max_outer_radius,i=t+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(e,i);const r=s-this.max_outer_radius,d=s+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,d)}const u=[];for(const e of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const t=this.souter_radius[e]**2,s=this.sinner_radius[e]**2,[n,a]=this.renderer.xscale.r_compute(i,this._x[e]),[_,o]=this.renderer.yscale.r_compute(r,this._y[e]),d=(n-a)**2+(_-o)**2;d<=t&&d>=s&&u.push(e)}const l=this.model.properties.direction.value(),c=[];for(const e of u){const i=Math.atan2(s-this.sy[e],t-this.sx[e]);d.angle_between(-i,-this._start_angle[e],-this._end_angle[e],l)&&c.push(e)}return new h.Selection({indices:c})}draw_legend_for_index(e,t,s){n.generic_area_legend(this.visuals,e,t,s)}scenterxy(e){const t=(this.sinner_radius[e]+this.souter_radius[e])/2,s=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+t*Math.cos(s),this.sy[e]+t*Math.sin(s)]}}s.AnnularWedgeView=u,u.__name__="AnnularWedgeView";class l extends r.XYGlyph{constructor(e){super(e)}static init_AnnularWedge(){this.prototype.default_view=u,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[o.Direction,"anticlock"],inner_radius:[o.DistanceSpec],outer_radius:[o.DistanceSpec],start_angle:[o.AngleSpec],end_angle:[o.AngleSpec]})}}s.AnnularWedge=l,l.__name__="AnnularWedge",l.init_AnnularWedge()},n”, ” function _(s,i,e){Object.defineProperty(e,"__esModule",{value:!0});const t=s(1),r=s(93),n=s(28),a=t.__importStar(s(18)),_=s(32),u=s(88);class o extends r.XYGlyphView{_map_data(){"data"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,"data"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius}_render(s,i,{sx:e,sy:t,sinner_radius:r,souter_radius:n}){for(const a of i)if(!isNaN(e[a]+t[a]+r[a]+n[a])){if(this.visuals.fill.doit){if(this.visuals.fill.set_vectorize(s,a),s.beginPath(),_.is_ie)for(const i of[!1,!0])s.arc(e[a],t[a],r[a],0,Math.PI,i),s.arc(e[a],t[a],n[a],Math.PI,0,!i);else s.arc(e[a],t[a],r[a],0,2*Math.PI,!0),s.arc(e[a],t[a],n[a],2*Math.PI,0,!1);s.fill()}this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI),s.moveTo(e[a]+n[a],t[a]),s.arc(e[a],t[a],n[a],0,2*Math.PI),s.stroke())}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let n,a,_,o;if("data"==this.model.properties.outer_radius.units)n=t-this.max_outer_radius,_=t+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const s=i-this.max_outer_radius,t=i+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_outer_radius,u=e+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,u)}const d=[];for(const s of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const i=this.souter_radius[s]**2,e=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(t,this._x[s]),[_,u]=this.renderer.yscale.r_compute(r,this._y[s]),o=(n-a)**2+(_-u)**2;o<=i&&o>=e&&d.push(s)}return new u.Selection({indices:d})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},n){const a=n+1,_=new Array(a);_[n]=(i+t)/2;const u=new Array(a);u[n]=(e+r)/2;const o=.5*Math.min(Math.abs(t-i),Math.abs(r-e)),d=new Array(a);d[n]=.4*o;const h=new Array(a);h[n]=.8*o,this._render(s,[n],{sx:_,sy:u,sinner_radius:d,souter_radius:h})}}e.AnnulusView=o,o.__name__="AnnulusView";class d extends r.XYGlyph{constructor(s){super(s)}static init_Annulus(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({inner_radius:[a.DistanceSpec],outer_radius:[a.DistanceSpec]})}}e.Annulus=d,d.__name__="Annulus",d.init_Annulus()},n”, ” function _(e,i,s){Object.defineProperty(s,"__esModule",{value:!0});const t=e(1),r=e(93),n=e(100),a=e(28),_=t.__importStar(e(18));class c extends r.XYGlyphView{_map_data(){"data"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,i,{sx:s,sy:t,sradius:r,_start_angle:n,_end_angle:a}){if(this.visuals.line.doit){const _=this.model.properties.direction.value();for(const c of i)isNaN(s[c]+t[c]+r[c]+n[c]+a[c])||(e.beginPath(),e.arc(s[c],t[c],r[c],n[c],a[c],_),this.visuals.line.set_vectorize(e,c),e.stroke())}}draw_legend_for_index(e,i,s){n.generic_line_legend(this.visuals,e,i,s)}}s.ArcView=c,c.__name__="ArcView";class d extends r.XYGlyph{constructor(e){super(e)}static init_Arc(){this.prototype.default_view=c,this.mixins(a.LineVector),this.define({direction:[_.Direction,"anticlock"],radius:[_.DistanceSpec],start_angle:[_.AngleSpec],end_angle:[_.AngleSpec]})}}s.Arc=d,d.__name__="Arc",d.init_Arc()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(28),c=e(94),o=e(100),_=e(37),r=s.__importStar(e(18));function a(e,t,i,s,n,c,o,_){const r=[],a=[[],[]];for(let a=0;a<=2;a++){let h,d,x;if(0===a?(d=6*e-12*i+6*n,h=-3*e+9*i-9*n+3*o,x=3*i-3*e):(d=6*t-12*s+6*c,h=-3*t+9*s-9*c+3*_,x=3*s-3*t),Math.abs(h)<1e-12){if(Math.abs(d)<1e-12)continue;const e=-x/d;0<e&&e<1&&r.push(e);continue}const l=d*d-4*x*h,y=Math.sqrt(l);if(l<0)continue;const p=(-d+y)/(2*h);0<p&&p<1&&r.push(p);const f=(-d-y)/(2*h);0<f&&f<1&&r.push(f)}let h=r.length;const d=h;for(;h–;){const d=r[h],x=1-d,l=x*x*x*e+3*x*x*d*i+3*x*d*d*n+d*d*d*o;a[0][h]=l;const y=x*x*x*t+3*x*x*d*s+3*x*d*d*c+d*d*d*_;a[1][h]=y}return a[0][d]=e,a[1][d]=t,a[0][d+1]=o,a[1][d+1]=_,[Math.min(…a[0]),Math.max(…a[1]),Math.max(…a[0]),Math.min(…a[1])]}class h extends c.GlyphView{_project_data(){_.inplace.project_xy(this._x0,this._y0),_.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++)if(isNaN(this._x0[i]+this._x1[i]+this._y0[i]+this._y1[i]+this._cx0[i]+this._cy0[i]+this._cx1[i]+this._cy1[i]))e.add_empty();else{const[t,s,n,c]=a(this._x0[i],this._y0[i],this._x1[i],this._y1[i],this._cx0[i],this._cy0[i],this._cx1[i],this._cy1[i]);e.add(t,s,n,c)}}_render(e,t,{sx0:i,sy0:s,sx1:n,sy1:c,scx0:o,scy0:_,scx1:r,scy1:a}){if(this.visuals.line.doit)for(const h of t)isNaN(i[h]+s[h]+n[h]+c[h]+o[h]+_[h]+r[h]+a[h])||(e.beginPath(),e.moveTo(i[h],s[h]),e.bezierCurveTo(o[h],_[h],r[h],a[h],n[h],c[h]),this.visuals.line.set_vectorize(e,h),e.stroke())}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}i.BezierView=h,h.__name__="BezierView";class d extends c.Glyph{constructor(e){super(e)}static init_Bezier(){this.prototype.default_view=h,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}],cx0:[r.XCoordinateSpec,{field:"cx0"}],cy0:[r.YCoordinateSpec,{field:"cy0"}],cx1:[r.XCoordinateSpec,{field:"cx1"}],cy1:[r.YCoordinateSpec,{field:"cy1"}]}),this.mixins(n.LineVector)}}i.Bezier=d,d.__name__="Bezier",d.init_Bezier()},n”, ” function _(s,i,e){Object.defineProperty(e,"__esModule",{value:!0});const t=s(1),r=s(93),a=s(238),n=s(28),h=t.__importStar(s(101)),d=t.__importStar(s(18)),l=s(9),_=s(12),c=s(88);class o extends r.XYGlyphView{initialize(){super.initialize();const{webgl:s}=this.renderer.plot_view.canvas_view;null!=s&&(this.glglyph=new a.CircleGL(s.gl,this))}_map_data(){if(null!=this._radius)if("data"==this.model.properties.radius.units)switch(this.model.radius_dimension){case"x":this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius);break;case"y":this.sradius=this.sdist(this.renderer.yscale,this._y,this._radius);break;case"max":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.max(s,i[e]));break}case"min":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.min(s,i[e]));break}}else this.sradius=this._radius,this.max_size=2*this.max_radius;else this.sradius=_.map(this._size,s=>s/2)}_mask_data(){const[s,i]=this.renderer.plot_view.frame.bbox.ranges;let e,t,r,a;if(null!=this._radius&&"data"==this.model.properties.radius.units){const n=s.start,h=s.end;[e,r]=this.renderer.xscale.r_invert(n,h),e-=this.max_radius,r+=this.max_radius;const d=i.start,l=i.end;[t,a]=this.renderer.yscale.r_invert(d,l),t-=this.max_radius,a+=this.max_radius}else{const n=s.start-this.max_size,h=s.end+this.max_size;[e,r]=this.renderer.xscale.r_invert(n,h);const d=i.start-this.max_size,l=i.end+this.max_size;[t,a]=this.renderer.yscale.r_invert(d,l)}return this.index.indices({x0:e,x1:r,y0:t,y1:a})}_render(s,i,{sx:e,sy:t,sradius:r}){for(const a of i)isNaN(e[a]+t[a]+r[a])||(s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI,!1),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(s,a),s.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.stroke()))}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let a,n,h,d;if(null!=this._radius&&"data"==this.model.properties.radius.units)a=t-this.max_radius,n=t+this.max_radius,h=r-this.max_radius,d=r+this.max_radius;else{const s=i-this.max_size,t=i+this.max_size;[a,n]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size,l=e+this.max_size;[h,d]=this.renderer.yscale.r_invert(r,l)}const l=this.index.indices({x0:a,x1:n,y0:h,y1:d}),_=[];if(null!=this._radius&&"data"==this.model.properties.radius.units)for(const s of l){const i=this.sradius[s]**2,[e,a]=this.renderer.xscale.r_compute(t,this._x[s]),[n,h]=this.renderer.yscale.r_compute(r,this._y[s]);(e-a)**2+(n-h)**2<=i&&_.push(s)}else for(const s of l){const t=this.sradius[s]**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&_.push(s)}return new c.Selection({indices:_})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if("h"==s.direction){let s,e;if(n=t.y0,h=t.y1,null!=this._radius&&"data"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,null!=this._radius&&"data"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[…this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new c.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[…this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new c.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=l.range(0,this.sx.length),r=[];for(let s=0,a=t.length;s<a;s++){const a=t[s];h.point_in_poly(this.sx[s],this.sy[s],i,e)&&r.push(a)}return new c.Selection({indices:r})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},a){const n=a+1,h=new Array(n);h[a]=(i+t)/2;const d=new Array(n);d[a]=(e+r)/2;const l=new Array(n);l[a]=.2*Math.min(Math.abs(t-i),Math.abs(r-e)),this._render(s,[a],{sx:h,sy:d,sradius:l})}}e.CircleView=o,o.__name__="CircleView";class u extends r.XYGlyph{constructor(s){super(s)}static init_Circle(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({angle:[d.AngleSpec,0],size:[d.DistanceSpec,{units:"screen",value:4}],radius:[d.DistanceSpec,void 0,{optional:!0}],radius_dimension:[d.RadiusDimension,"x"]})}}e.Circle=u,u.__name__="Circle",u.init_Circle()},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),a=t(103),r=t(107),o=t(239),_=t(240),l=t(237),h=t(12),n=t(19),g=t(22);function u(t,e,s,i,a,r){if(a.doit)if(a[r].is_value)e.used=!1,t.set_attribute(s,"float",[a[r].value()]);else{e.used=!0;const o=new Float32Array(a.get_array(r));e.set_size(4*i),e.set_data(0,o),t.set_attribute(s,"float",e)}else e.used=!1,t.set_attribute(s,"float",[0])}function f(t,e,s,i,a,r){const o=r+"_color",_=r+"_alpha";if(a.doit){let r,l;if(e.used=!0,a[o].is_value){const t=g.encode_rgba(g.color2rgba(a[o].value())),e=new Uint32Array(i);e.fill(t),r=e}else r=a.get_array(o);if(a[_].is_value){const t=a[_].value(),e=new Float32Array(i);e.fill(t),l=e}else l=a.get_array(_);const h=new Float32Array(4*i);for(let t=0,e=i;t<e;t++){const e=g.decode_rgba(r[t]);1==e[3]&&(e[3]=l[t]),h.set(e,4*t)}e.set_size(4*i*4),e.set_data(0,h),t.set_attribute(s,"vec4",e)}else e.used=!1,t.set_attribute(s,"vec4",[0,0,0,0])}s.attach_float=u,s.attach_color=f;class d extends r.BaseGLGlyph{init(){const{gl:t}=this,e=o.vertex_shader,s=_.fragment_shader(this._marker_code);this.prog=new a.Program(t),this.prog.set_shaders(e,s),this.vbo_sx=new a.VertexBuffer(t),this.prog.set_attribute("a_sx","float",this.vbo_sx),this.vbo_sy=new a.VertexBuffer(t),this.prog.set_attribute("a_sy","float",this.vbo_sy),this.vbo_s=new a.VertexBuffer(t),this.prog.set_attribute("a_size","float",this.vbo_s),this.vbo_a=new a.VertexBuffer(t),this.prog.set_attribute("a_angle","float",this.vbo_a),this.vbo_linewidth=new a.VertexBuffer(t),this.vbo_fg_color=new a.VertexBuffer(t),this.vbo_bg_color=new a.VertexBuffer(t),this.index_buffer=new a.IndexBuffer(t)}draw(t,e,s){const i=e.glglyph,{nvertices:a}=i;if(i.data_changed&&(i._set_data(a),this.glyph instanceof l.CircleView&&null!=this.glyph._radius&&this.vbo_s.set_data(0,h.map(this.glyph.sradius,t=>2*t)),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(a),this.visuals_changed=!1),this.prog.set_uniform("u_pixel_ratio","float",[s.pixel_ratio]),this.prog.set_uniform("u_canvas_size","vec2",[s.width,s.height]),this.prog.set_attribute("a_sx","float",i.vbo_sx),this.prog.set_attribute("a_sy","float",i.vbo_sy),this.prog.set_attribute("a_size","float",i.vbo_s),this.prog.set_attribute("a_angle","float",i.vbo_a),0!=t.length)if(t.length===a)this.prog.draw(this.gl.POINTS,[0,a]);else if(a<65535){const e=window.navigator.userAgent;e.indexOf("MSIE ")+e.indexOf("Trident/")+e.indexOf("Edge/")>0&&n.logger.warn("WebGL warning: IE is known to produce 1px sprites whith selections."),this.index_buffer.set_size(2*t.length),this.index_buffer.set_data(0,new Uint16Array(t)),this.prog.draw(this.gl.POINTS,this.index_buffer)}else{const e=64e3,s=[];for(let t=0,i=Math.ceil(a/e);t<i;t++)s.push([]);for(let i=0,a=t.length;i<a;i++){const a=t[i]%e;s[Math.floor(t[i]/e)].push(a)}for(let t=0,a=s.length;t<a;t++){const a=new Uint16Array(s[t]),r=t*e*4;0!==a.length&&(this.prog.set_attribute("a_sx","float",i.vbo_sx,0,r),this.prog.set_attribute("a_sy","float",i.vbo_sy,0,r),this.prog.set_attribute("a_size","float",i.vbo_s,0,r),this.prog.set_attribute("a_angle","float",i.vbo_a,0,r),this.vbo_linewidth.used&&this.prog.set_attribute("a_linewidth","float",this.vbo_linewidth,0,r),this.vbo_fg_color.used&&this.prog.set_attribute("a_fg_color","vec4",this.vbo_fg_color,0,4*r),this.vbo_bg_color.used&&this.prog.set_attribute("a_bg_color","vec4",this.vbo_bg_color,0,4*r),this.index_buffer.set_size(2*a.length),this.index_buffer.set_data(0,a),this.prog.draw(this.gl.POINTS,this.index_buffer))}}}_set_data(t){const e=4*t;this.vbo_sx.set_size(e),this.vbo_sy.set_size(e),this.vbo_a.set_size(e),this.vbo_s.set_size(e),this.vbo_sx.set_data(0,this.glyph.sx),this.vbo_sy.set_data(0,this.glyph.sy),null!=this.glyph._angle&&this.vbo_a.set_data(0,new Float32Array(this.glyph._angle)),this.glyph instanceof l.CircleView&&null!=this.glyph._radius?this.vbo_s.set_data(0,h.map(this.glyph.sradius,t=>2*t)):this.vbo_s.set_data(0,new Float32Array(this.glyph._size))}_set_visuals(t){u(this.prog,this.vbo_linewidth,"a_linewidth",t,this.glyph.visuals.line,"line_width"),f(this.prog,this.vbo_fg_color,"a_fg_color",t,this.glyph.visuals.line,"line"),f(this.prog,this.vbo_bg_color,"a_bg_color",t,this.glyph.visuals.fill,"fill"),this.prog.set_uniform("u_antialias","float",[.8])}}function b(t){return class extends d{get _marker_code(){return t}}}s.MarkerGL=d,d.__name__="MarkerGL";const c=i.__importStar(t(240));s.AsteriskGL=b(c.asterisk),s.CircleGL=b(c.circle),s.CircleCrossGL=b(c.circlecross),s.CircleXGL=b(c.circlex),s.CrossGL=b(c.cross),s.DiamondGL=b(c.diamond),s.DiamondCrossGL=b(c.diamondcross),s.HexGL=b(c.hex),s.InvertedTriangleGL=b(c.invertedtriangle),s.SquareGL=b(c.square),s.SquareCrossGL=b(c.squarecross),s.SquareXGL=b(c.squarex),s.TriangleGL=b(c.triangle),s.XGL=b(c.x)},n”, ” function _(n,i,a){Object.defineProperty(a,"__esModule",{value:!0}),a.vertex_shader="\nprecision mediump float;\nconst float SQRT_2 = 1.4142135623730951;\n//\nuniform float u_pixel_ratio;\nuniform vec2 u_canvas_size;\nuniform vec2 u_offset;\nuniform vec2 u_scale;\nuniform float u_antialias;\n//\nattribute float a_sx;\nattribute float a_sy;\nattribute float a_size;\nattribute float a_angle; // in radians\nattribute float a_linewidth;\nattribute vec4 a_fg_color;\nattribute vec4 a_bg_color;\n//\nvarying float v_linewidth;\nvarying float v_size;\nvarying vec4 v_fg_color;\nvarying vec4 v_bg_color;\nvarying vec2 v_rotation;\n\nvoid main (void)\n{\n v_size = a_size * u_pixel_ratio;\n v_linewidth = a_linewidth * u_pixel_ratio;\n v_fg_color = a_fg_color;\n v_bg_color = a_bg_color;\n v_rotation = vec2(cos(-a_angle), sin(-a_angle));\n vec2 pos = vec2(a_sx, a_sy); // in pixels\n pos += 0.5; // make up for Bokeh’s offset\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\n gl_Position = vec4(pos*2.0-1.0, 0.0, 1.0);\n gl_Position.y = -1.0;\n gl_PointSize = SQRT_2 * v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\n}\n"},n”, ” function _(a,n,s){Object.defineProperty(s,"__esModule",{value:!0}),s.fragment_shader=a=>`\nprecision mediump float;\nconst float SQRT_2 = 1.4142135623730951;\nconst float PI = 3.14159265358979323846264;\n//\nuniform float u_antialias;\n//\nvarying vec4 v_fg_color;\nvarying vec4 v_bg_color;\nvarying float v_linewidth;\nvarying float v_size;\nvarying vec2 v_rotation;\n\n${a}\n\nvec4 outline(float distance, float linewidth, float antialias, vec4 fg_color, vec4 bg_color)\n{\n vec4 frag_color;\n float t = linewidth/2.0 - antialias;\n float signed_distance = distance;\n float border_distance = abs(signed_distance) - t;\n float alpha = border_distance/antialias;\n alpha = exp(-alpha*alpha);\n\n // If fg alpha is zero, it probably means no outline. To avoid a dark outline\n // shining through due to aa, we set the fg color to the bg color. Avoid if (i.e. branching).\n float select = float(bool(fg_color.a));\n fg_color.rgb = select * fg_color.rgb + (1.0 - select) * bg_color.rgb;\n // Similarly, if we want a transparent bg\n select = float(bool(bg_color.a));\n bg_color.rgb = select * bg_color.rgb + (1.0 - select) * fg_color.rgb;\n\n if( border_distance < 0.0)\n frag_color = fg_color;\n else if( signed_distance < 0.0 ) {\n frag_color = mix(bg_color, fg_color, sqrt(alpha));\n } else {\n if( abs(signed_distance) < (linewidth/2.0 + antialias) ) {\n frag_color = vec4(fg_color.rgb, fg_color.a * alpha);\n } else {\n discard;\n }\n }\n return frag_color;\n}\n\nvoid main()\n{\n vec2 P = gl_PointCoord.xy - vec2(0.5, 0.5);\n P = vec2(v_rotation.x*P.x - v_rotation.y*P.y,\n v_rotation.y*P.x + v_rotation.x*P.y);\n float point_size = SQRT_2*v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\n float distance = marker(P*point_size, v_size);\n gl_FragColor = outline(distance, v_linewidth, u_antialias, v_fg_color, v_bg_color);\n}\n`,s.circle="\nfloat marker(vec2 P, float size)\n{\n return length(P) - size/2.0;\n}\n",s.square="\nfloat marker(vec2 P, float size)\n{\n return max(abs(P.x), abs(P.y)) - size/2.0;\n}\n",s.diamond="\nfloat marker(vec2 P, float size)\n{\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\n float r1 = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\n return r1 / SQRT_2;\n}\n",s.hex="\nfloat marker(vec2 P, float size)\n{\n vec2 q = abs(P);\n return max(q.y * 0.57735 + q.x - 1.0 * size/2.0, q.y - 0.866 * size/2.0);\n}\n",s.triangle="\nfloat marker(vec2 P, float size)\n{\n P.y -= size * 0.3;\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\n float r1 = max(abs(x), abs(y)) - size / 1.6;\n float r2 = P.y;\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\n}\n",s.invertedtriangle="\nfloat marker(vec2 P, float size)\n{\n P.y += size * 0.3;\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\n float r1 = max(abs(x), abs(y)) - size / 1.6;\n float r2 = - P.y;\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\n}\n",s.cross=’\nfloat marker(vec2 P, float size)\n{\n float square = max(abs(P.x), abs(P.y)) - size / 2.5; // 2.5 is a tweak\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of "width" for aa\n return max(square, cross);\n}\n’,s.circlecross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float circle = length(P) - size/2.0;\n float c1 = max(circle, s1);\n float c2 = max(circle, s2);\n float c3 = max(circle, s3);\n float c4 = max(circle, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.squarecross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\n float c1 = max(square, s1);\n float c2 = max(square, s2);\n float c3 = max(square, s3);\n float c4 = max(square, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.diamondcross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\n float diamond = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\n diamond /= SQRT_2;\n float c1 = max(diamond, s1);\n float c2 = max(diamond, s2);\n float c3 = max(diamond, s3);\n float c4 = max(diamond, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.x=’\nfloat marker(vec2 P, float size)\n{\n float circle = length(P) - size / 1.6;\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n return max(circle, X);\n}\n’,s.circlex=’\nfloat marker(vec2 P, float size)\n{\n float x = P.x - P.y;\n float y = P.x + P.y;\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float circle = length(P) - size/2.0;\n float c1 = max(circle, s1);\n float c2 = max(circle, s2);\n float c3 = max(circle, s3);\n float c4 = max(circle, s4);\n // Union\n float almost = min(min(min(c1, c2), c3), c4);\n // In this case, the X is also outside of the main shape\n float Xmask = length(P) - size / 1.6; // a circle\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n return min(max(X, Xmask), almost);\n}\n’,s.squarex="\nfloat marker(vec2 P, float size)\n{\n float x = P.x - P.y;\n float y = P.x + P.y;\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\n float c1 = max(square, s1);\n float c2 = max(square, s2);\n float c3 = max(square, s3);\n float c4 = max(square, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.asterisk=’\nfloat marker(vec2 P, float size)\n{\n // Masks\n float diamond = max(abs(SQRT_2 / 2.0 * (P.x - P.y)), abs(SQRT_2 / 2.0 * (P.x + P.y))) - size / (2.0 * SQRT_2);\n float square = max(abs(P.x), abs(P.y)) - size / (2.0 * SQRT_2);\n // Shapes\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of "width" for aa\n // Result is union of masked shapes\n return min(max(X, diamond), max(cross, square));\n}\n’},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const a=e(1),i=e(93),l=e(28),s=a.__importStar(e(18));class c extends i.XYGlyphView{}n.CenterRotatableView=c,c.__name__="CenterRotatableView";class o extends i.XYGlyph{constructor(e){super(e)}static init_CenterRotatable(){this.mixins([l.LineVector,l.FillVector]),this.define({angle:[s.AngleSpec,0],width:[s.DistanceSpec],height:[s.DistanceSpec]})}}n.CenterRotatable=o,o.__name__="CenterRotatable",o.init_CenterRotatable()},n”, ” function _(e,l,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(243);class t extends s.EllipseOvalView{}i.EllipseView=t,t.__name__="EllipseView";class _ extends s.EllipseOval{constructor(e){super(e)}static init_Ellipse(){this.prototype.default_view=t}}i.Ellipse=_,_.__name__="Ellipse",_.init_Ellipse()},n”, ” function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1),h=t(241),a=e.__importStar(t(101)),r=t(88);class n extends h.CenterRotatableView{_set_data(){this.max_w2=0,"data"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,"data"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){"data"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this._width,"center"):this.sw=this._width,"data"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this._height,"center"):this.sh=this._height}_render(t,s,{sx:i,sy:e,sw:h,sh:a,_angle:r}){for(const n of s)isNaN(i[n]+e[n]+h[n]+a[n]+r[n])||(t.beginPath(),t.ellipse(i[n],e[n],h[n]/2,a[n]/2,r[n],0,2*Math.PI),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,n),t.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,n),t.stroke()))}_hit_point(t){let s,i,e,h,n,_,l,d,o;const{sx:x,sy:m}=t,w=this.renderer.xscale.invert(x),c=this.renderer.yscale.invert(m);"data"==this.model.properties.width.units?(s=w-this.max_width,i=w+this.max_width):(_=x-this.max_width,l=x+this.max_width,[s,i]=this.renderer.xscale.r_invert(_,l)),"data"==this.model.properties.height.units?(e=c-this.max_height,h=c+this.max_height):(d=m-this.max_height,o=m+this.max_height,[e,h]=this.renderer.yscale.r_invert(d,o));const p=this.index.indices({x0:s,x1:i,y0:e,y1:h}),y=[];for(const t of p)n=a.point_in_ellipse(x,m,this._angle[t],this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new r.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:i,x1:e,y1:h},a){const r=a+1,n=new Array(r);n[a]=(s+e)/2;const _=new Array(r);_[a]=(i+h)/2;const l=this.sw[a]/this.sh[a],d=.8*Math.min(Math.abs(e-s),Math.abs(h-i)),o=new Array(r),x=new Array(r);l>1?(o[a]=d,x[a]=d/l):(o[a]=d*l,x[a]=d),this._render(t,[a],{sx:n,sy:_,sw:o,sh:x,_angle:[0]})}_bounds({x0:t,x1:s,y0:i,y1:e}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:i-this.max_h2,y1:e+this.max_h2}}}i.EllipseOvalView=n,n.__name__="EllipseOvalView";class _ extends h.CenterRotatable{constructor(t){super(t)}}i.EllipseOval=_,_.__name__="EllipseOval"},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),h=t(245),r=t(24),_=i.__importStar(t(18));class a extends h.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){return[Math.min(this._left[t],this._right[t]),Math.max(this._left[t],this._right[t]),this._y[t]+.5*this._height[t],this._y[t]-.5*this._height[t]]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this._height,"center"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new r.NumberArray(t),this.sbottom=new r.NumberArray(t);for(let e=0;e<t;e++)this.stop[e]=this.sy[e]-this.sh[e]/2,this.sbottom[e]=this.sy[e]+this.sh[e]/2;this._clamp_viewport()}}s.HBarView=a,a.__name__="HBarView";class o extends h.Box{constructor(t){super(t)}static init_HBar(){this.prototype.default_view=a,this.define({left:[_.XCoordinateSpec,{value:0}],y:[_.YCoordinateSpec,{field:"y"}],height:[_.NumberSpec,{value:1}],right:[_.XCoordinateSpec,{field:"right"}]})}}s.HBar=o,o.__name__="HBar",o.init_HBar()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(28),r=t(94),n=t(100),a=t(88);class h extends r.GlyphView{get_anchor_point(t,e,i){const s=Math.min(this.sleft[e],this.sright[e]),r=Math.max(this.sright[e],this.sleft[e]),n=Math.min(this.stop[e],this.sbottom[e]),a=Math.max(this.sbottom[e],this.stop[e]);switch(t){case"top_left":return{x:s,y:n};case"top_center":return{x:(s+r)/2,y:n};case"top_right":return{x:r,y:n};case"bottom_left":return{x:s,y:a};case"bottom_center":return{x:(s+r)/2,y:a};case"bottom_right":return{x:r,y:a};case"center_left":return{x:s,y:(n+a)/2};case"center":return{x:(s+r)/2,y:(n+a)/2};case"center_right":return{x:r,y:(n+a)/2};default:return null}}_index_data(t){const{min:e,max:i}=Math,{data_size:s}=this;for(let r=0;r<s;r++){const[s,n,a,h]=this._lrtb(r);isNaN(s+n+a+h)||!isFinite(s+n+a+h)?t.add_empty():t.add(e(s,n),e(a,h),i(n,s),i(a,h))}}_render(t,e,{sleft:i,sright:s,stop:r,sbottom:n}){for(const a of e)isNaN(i[a]+r[a]+s[a]+n[a])||(t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()),this.visuals.hatch.doit2(t,a,()=>{t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.stroke()))}_clamp_viewport(){const t=this.renderer.plot_view.frame.bbox.h_range,e=this.renderer.plot_view.frame.bbox.v_range,i=this.stop.length;for(let s=0;s<i;s++)this.stop[s]=Math.max(this.stop[s],e.start),this.sbottom[s]=Math.min(this.sbottom[s],e.end),this.sleft[s]=Math.max(this.sleft[s],t.start),this.sright[s]=Math.min(this.sright[s],t.end)}_hit_rect(t){return this._hit_rect_against_index(t)}_hit_point(t){const{sx:e,sy:i}=t,s=this.renderer.xscale.invert(e),r=this.renderer.yscale.invert(i),n=[…this.index.indices({x0:s,y0:r,x1:s,y1:r})];return new a.Selection({indices:n})}_hit_span(t){const{sx:e,sy:i}=t;let s;if("v"==t.direction){const t=this.renderer.yscale.invert(i),e=this.renderer.plot_view.frame.bbox.h_range,[r,n]=this.renderer.xscale.r_invert(e.start,e.end);s=[…this.index.indices({x0:r,y0:t,x1:n,y1:t})]}else{const t=this.renderer.xscale.invert(e),i=this.renderer.plot_view.frame.bbox.v_range,[r,n]=this.renderer.yscale.r_invert(i.start,i.end);s=[…this.index.indices({x0:t,y0:r,x1:t,y1:n})]}return new a.Selection({indices:s})}draw_legend_for_index(t,e,i){n.generic_area_legend(this.visuals,t,e,i)}}i.BoxView=h,h.__name__="BoxView";class o extends r.Glyph{constructor(t){super(t)}static init_Box(){this.mixins([s.LineVector,s.FillVector,s.HatchVector])}}i.Box=o,o.__name__="Box",o.init_Box()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(94),n=i.__importStar(e(101)),a=i.__importStar(e(18)),o=e(28),c=e(24),_=e(37),h=e(100),l=e(88);class d extends r.GlyphView{scenterxy(e){return[this.sx[e],this.sy[e]]}_set_data(){const e=this._q.length,{orientation:t,size:s,aspect_scale:i}=this.model;this._x=new c.NumberArray(e),this._y=new c.NumberArray(e);const r=Math.sqrt(3);if("pointytop"==t)for(let t=0;t<e;t++)this._x[t]=s*r*(this._q[t]+this._r[t]/2)/i,this._y[t]=3-s/2*this._r[t];else for(let t=0;t<e;t++)this._x[t]=3*s/2*this._q[t],this._y[t]=-s*r*(this._r[t]+this._q[t]/2)*i}_project_data(){_.inplace.project_xy(this._x,this._y)}_index_data(e){let t=this.model.size,s=Math.sqrt(3)*t/2;"flattop"==this.model.orientation?([s,t]=[t,s],t*=this.model.aspect_scale):s/=this.model.aspect_scale;const{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x[r],n=this._y[r];isNaN(i+n)||!isFinite(i+n)?e.add_empty():e.add(i-s,n-t,i+s,n+t)}}map_data(){[this.sx,this.sy]=this.renderer.coordinates.map_to_screen(this._x,this._y),[this.svx,this.svy]=this._get_unscaled_vertices()}_get_unscaled_vertices(){const e=this.model.size,t=this.model.aspect_scale;if("pointytop"==this.model.orientation){const s=this.renderer.yscale,i=this.renderer.xscale,r=Math.abs(s.compute(0)-s.compute(e)),n=Math.sqrt(3)/2*Math.abs(i.compute(0)-i.compute(e))/t,a=r/2;return[[0,-n,-n,0,n,n],[r,a,-a,-r,-a,a]]}{const s=this.renderer.xscale,i=this.renderer.yscale,r=Math.abs(s.compute(0)-s.compute(e)),n=Math.sqrt(3)/2*Math.abs(i.compute(0)-i.compute(e))*t,a=r/2;return[[r,a,-a,-r,-a,a],[0,-n,-n,0,n,n]]}}_render(e,t,{sx:s,sy:i,svx:r,svy:n,_scale:a}){for(const o of t)if(!isNaN(s[o]+i[o]+a[o])){e.translate(s[o],i[o]),e.beginPath();for(let t=0;t<6;t++)e.lineTo(r[t]*a[o],n[t]*a[o]);e.closePath(),e.translate(-s[o],-i[o]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,o),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,o),e.stroke())}}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),r=this.renderer.yscale.invert(s),a=this.index.indices({x0:i,y0:r,x1:i,y1:r}),o=[];for(const e of a)n.point_in_poly(t-this.sx[e],s-this.sy[e],this.svx,this.svy)&&o.push(e);return new l.Selection({indices:o})}_hit_span(e){const{sx:t,sy:s}=e;let i;if("v"==e.direction){const e=this.renderer.yscale.invert(s),t=this.renderer.plot_view.frame.bbox.h_range,[r,n]=this.renderer.xscale.r_invert(t.start,t.end);i=[…this.index.indices({x0:r,y0:e,x1:n,y1:e})]}else{const e=this.renderer.xscale.invert(t),s=this.renderer.plot_view.frame.bbox.v_range,[r,n]=this.renderer.yscale.r_invert(s.start,s.end);i=[…this.index.indices({x0:e,y0:r,x1:e,y1:n})]}return new l.Selection({indices:i})}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:r}=e,[n,a]=this.renderer.xscale.r_invert(t,s),[o,c]=this.renderer.yscale.r_invert(i,r),_=[…this.index.indices({x0:n,x1:a,y0:o,y1:c})];return new l.Selection({indices:_})}draw_legend_for_index(e,t,s){h.generic_area_legend(this.visuals,e,t,s)}}s.HexTileView=d,d.__name__="HexTileView";class x extends r.Glyph{constructor(e){super(e)}static init_HexTile(){this.prototype.default_view=d,this.mixins([o.LineVector,o.FillVector]),this.define({r:[a.NumberSpec],q:[a.NumberSpec],size:[a.Number,1],aspect_scale:[a.Number,1],scale:[a.NumberSpec,1],orientation:[a.HexTileOrientation,"pointytop"]}),this.override({line_color:null})}}s.HexTile=x,x.__name__="HexTile",x.init_HexTile()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const _=e(1),i=e(248),n=e(141),s=_.__importStar(e(18));class r extends i.ImageBaseView{connect_signals(){super.connect_signals(),this.connect(this.model.color_mapper.change,()=>this._update_image())}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.plot_view.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}a.ImageView=r,r.__name__="ImageView";class o extends i.ImageBase{constructor(e){super(e)}static init_Image(){this.prototype.default_view=r,this.define({color_mapper:[s.Instance,()=>new n.LinearColorMapper({palette:["#000000","#252525","#525252","#737373","#969696","#bdbdbd","#d9d9d9","#f0f0f0","#ffffff"]})]})}}a.Image=o,o.__name__="Image",o.init_Image()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(93),h=e(24),_=i.__importStar(e(18)),n=e(88),r=e(9),d=e(30),l=e(11);class g extends a.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_render(e,t,{image_data:s,sx:i,sy:a,sw:h,sh:_}){const n=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1),e.globalAlpha=this.model.global_alpha;for(const n of t){if(null==s[n]||isNaN(i[n]+a[n]+h[n]+_[n]))continue;const t=a[n];e.translate(0,t),e.scale(1,-1),e.translate(0,-t),e.drawImage(s[n],0|i[n],0|a[n],h[n],_[n]),e.translate(0,t),e.scale(1,-1),e.translate(0,-t)}e.setImageSmoothingEnabled(n)}_set_data(e){this._set_width_heigh_data();for(let t=0,s=this._image.length;t<s;t++){if(null!=e&&e.indexOf(t)<0)continue;const s=this._image[t];let i;d.is_NDArray(s)?(l.assert(2==s.dimension,"expected a 2D array"),i=s,this._height[t]=s.shape[0],this._width[t]=s.shape[1]):(i=r.concat(s),this._height[t]=s.length,this._width[t]=s[0].length);const a=this._flat_img_to_buf8(i);this._set_image_data_from_buffer(t,a)}}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++){const[t,i,a,h]=this._lrtb(s);isNaN(t+i+a+h)||!isFinite(t+i+a+h)?e.add_empty():e.add(t,h,i,a)}}_lrtb(e){const t=this.renderer.xscale.source_range,s=this._x[e],i=t.is_reversed?s-this._dw[e]:s+this._dw[e],a=this.renderer.yscale.source_range,h=this._y[e],_=a.is_reversed?h-this._dh[e]:h+this._dh[e],[n,r]=s<i?[s,i]:[i,s],[d,l]=h<_?[h,_]:[_,h];return[n,r,l,d]}_set_width_heigh_data(){null!=this.image_data&&this.image_data.length==this._image.length||(this.image_data=new Array(this._image.length)),null!=this._width&&this._width.length==this._image.length||(this._width=new h.NumberArray(this._image.length)),null!=this._height&&this._height.length==this._image.length||(this._height=new h.NumberArray(this._image.length))}_get_or_create_canvas(e){const t=this.image_data[e];if(null!=t&&t.width==this._width[e]&&t.height==this._height[e])return t;{const t=document.createElement("canvas");return t.width=this._width[e],t.height=this._height[e],t}}_set_image_data_from_buffer(e,t){const s=this._get_or_create_canvas(e),i=s.getContext("2d"),a=i.getImageData(0,0,this._width[e],this._height[e]);a.data.set(t),i.putImageData(a,0,0),this.image_data[e]=s}_map_data(){switch(this.model.properties.dw.units){case"data":this.sw=this.sdist(this.renderer.xscale,this._x,this._dw,"edge",this.model.dilate);break;case"screen":this.sw=this._dw}switch(this.model.properties.dh.units){case"data":this.sh=this.sdist(this.renderer.yscale,this._y,this._dh,"edge",this.model.dilate);break;case"screen":this.sh=this._dh}}_image_index(e,t,s){const[i,a,h,_]=this._lrtb(e),n=this._width[e],r=this._height[e],d=(a-i)/n,l=(h-_)/r;let g=Math.floor((t-i)/d),o=Math.floor((s-_)/l);return this.renderer.xscale.source_range.is_reversed&&(g=n-g-1),this.renderer.yscale.source_range.is_reversed&&(o=r-o-1),{index:e,dim1:g,dim2:o,flat_index:o*n+g}}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),a=this.renderer.yscale.invert(s),h=this.index.indices({x0:i,x1:i,y0:a,y1:a}),_=new n.Selection;for(const e of h)t!=1/0&&s!=1/0&&_.image_indices.push(this._image_index(e,i,a));return _}}s.ImageBaseView=g,g.__name__="ImageBaseView";class o extends a.XYGlyph{constructor(e){super(e)}static init_ImageBase(){this.define({image:[_.NDArraySpec],dw:[_.DistanceSpec],dh:[_.DistanceSpec],dilate:[_.Boolean,!1],global_alpha:[_.Number,1]})}}s.ImageBase=o,o.__name__="ImageBase",o.init_ImageBase()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const _=e(248),i=e(8);class n extends _.ImageBaseView{_flat_img_to_buf8(e){let t;return t=i.isArray(e)?new Uint32Array(e):e,new Uint8Array(t.buffer)}}a.ImageRGBAView=n,n.__name__="ImageRGBAView";class r extends _.ImageBase{constructor(e){super(e)}static init_ImageRGBA(){this.prototype.default_view=n}}a.ImageRGBA=r,r.__name__="ImageRGBA",r.init_ImageRGBA()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(1),i=e(93),a=e(24),n=r.__importStar(e(18)),h=e(12),o=e(251);class _ extends i.XYGlyphView{constructor(){super(…arguments),this._images_rendered=!1}initialize(){super.initialize(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++)e.add_empty()}_set_data(){null!=this.image&&this.image.length==this._url.length||(this.image=h.map(this._url,()=>null));const{retry_attempts:e,retry_timeout:t}=this.model;for(let s=0,r=this._url.length;s<r;s++){const r=this._url[s];null!=r&&""!=r&&new o.ImageLoader(r,{loaded:e=>{this.image[s]=e,this.renderer.request_render()},attempts:e+1,timeout:t})}const s="data"==this.model.properties.w.units,r="data"==this.model.properties.h.units,i=this._x.length,n=new a.NumberArray(s?2*i:i),_=new a.NumberArray(r?2*i:i),{anchor:c}=this.model;function l(e,t){switch(c){case"top_left":case"bottom_left":case"center_left":return[e,e+t];case"top_center":case"bottom_center":case"center":return[e-t/2,e+t/2];case"top_right":case"bottom_right":case"center_right":return[e-t,e]}}function d(e,t){switch(c){case"top_left":case"top_center":case"top_right":return[e,e-t];case"bottom_left":case"bottom_center":case"bottom_right":return[e+t,e];case"center_left":case"center":case"center_right":return[e+t/2,e-t/2]}}if(s)for(let e=0;e<i;e++)[n[e],n[i+e]]=l(this._x[e],this._w[e]);else n.set(this._x,0);if(r)for(let e=0;e<i;e++)[_[e],_[i+e]]=d(this._y[e],this._h[e]);else _.set(this._y,0);const[m,u]=h.minmax(n),[p,g]=h.minmax(_);this._bounds_rect={x0:m,x1:u,y0:p,y1:g}}has_finished(){return super.has_finished()&&1==this._images_rendered}_map_data(){const e=null!=this.model.w?this._w:h.map(this._x,()=>NaN),t=null!=this.model.h?this._h:h.map(this._x,()=>NaN);switch(this.model.properties.w.units){case"data":this.sw=this.sdist(this.renderer.xscale,this._x,e,"edge",this.model.dilate);break;case"screen":this.sw=e}switch(this.model.properties.h.units){case"data":this.sh=this.sdist(this.renderer.yscale,this._y,t,"edge",this.model.dilate);break;case"screen":this.sh=t}}_render(e,t,{image:s,sx:r,sy:i,sw:a,sh:n,_angle:h}){const{frame:o}=this.renderer.plot_view;e.rect(o.bbox.left+1,o.bbox.top+1,o.bbox.width-2,o.bbox.height-2),e.clip();let _=!0;for(const o of t){if(isNaN(r[o]+i[o]+h[o]))continue;const t=s[o];null!=t?this._render_image(e,o,t,r,i,a,n,h):_=!1}_&&!this._images_rendered&&(this._images_rendered=!0,this.notify_finished())}_final_sx_sy(e,t,s,r,i){switch(e){case"top_left":return[t,s];case"top_center":return[t-r/2,s];case"top_right":return[t-r,s];case"center_right":return[t-r,s-i/2];case"bottom_right":return[t-r,s-i];case"bottom_center":return[t-r/2,s-i];case"bottom_left":return[t,s-i];case"center_left":return[t,s-i/2];case"center":return[t-r/2,s-i/2]}}_render_image(e,t,s,r,i,a,n,h){isNaN(a[t])&&(a[t]=s.width),isNaN(n[t])&&(n[t]=s.height);const{anchor:o}=this.model,[_,c]=this._final_sx_sy(o,r[t],i[t],a[t],n[t]);e.save(),e.globalAlpha=this.model.global_alpha;const l=a[t]/2,d=n[t]/2;h[t]?(e.translate(_,c),e.translate(l,d),e.rotate(h[t]),e.translate(-l,-d),e.drawImage(s,0,0,a[t],n[t]),e.translate(l,d),e.rotate(-h[t]),e.translate(-l,-d),e.translate(-_,-c)):e.drawImage(s,_,c,a[t],n[t]),e.restore()}bounds(){return this._bounds_rect}}s.ImageURLView=_,_.__name__="ImageURLView";class c extends i.XYGlyph{constructor(e){super(e)}static init_ImageURL(){this.prototype.default_view=_,this.define({url:[n.StringSpec],anchor:[n.Anchor,"top_left"],global_alpha:[n.Number,1],angle:[n.AngleSpec,0],w:[n.DistanceSpec],h:[n.DistanceSpec],dilate:[n.Boolean,!1],retry_attempts:[n.Number,0],retry_timeout:[n.Number,0]})}}s.ImageURL=c,c.__name__="ImageURL",c.init_ImageURL()},n”, ” function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(19);class a{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:a=1}=e;this.promise=new Promise((o,n)=>{this._image.crossOrigin="anonymous";let r=0;this._image.onerror=()=>{if(++r==t){const a=`unable to load ${i} image after ${t} attempts`;if(s.logger.warn(a),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());s.logger.warn(attempting to load ${i} without a cross origin policy),this._image.crossOrigin=null,r=0}setTimeout(()=>this._image.src=i,a)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i})}get finished(){return this._finished}get image(){return this._image}}t.ImageLoader=a,a.__name__="ImageLoader"},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(37),o=e(28),l=s.__importStar(e(101)),r=s.__importStar(e(18)),_=e(12),c=e(13),a=e(94),h=e(100),d=e(88);class y extends a.GlyphView{_project_data(){n.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++){const t=this._xs.get(i);if(0==t.length){e.add_empty();continue}const s=this._ys.get(i);if(0==s.length){e.add_empty();continue}const[n,o]=_.minmax(t),[l,r]=_.minmax(s);e.add(n,l,o,r)}}_render(e,t,{sxs:i,sys:s}){for(const n of t){const t=i.get(n),o=s.get(n);this.visuals.line.set_vectorize(e,n);for(let i=0,s=t.length;i<s;i++)0!=i?isNaN(t[i])||isNaN(o[i])?(e.stroke(),e.beginPath()):e.lineTo(t[i],o[i]):(e.beginPath(),e.moveTo(t[i],o[i]));e.stroke()}}_hit_point(e){const t={x:e.sx,y:e.sy};let i=9999;const s=new Map;for(let e=0,n=this.sxs.length;e<n;e++){const n=Math.max(2,this.visuals.line.cache_select("line_width",e)/2),o=this.sxs.get(e),r=this.sys.get(e);let _=null;for(let e=0,s=o.length-1;e<s;e++){const s={x:o[e],y:r[e]},c={x:o[e+1],y:r[e+1]},a=l.dist_to_segment(t,s,c);a<n&&a<i&&(i=a,_=[e])}null!=_&&s.set(e,_)}return new d.Selection({indices:[…s.keys()],multiline_indices:c.to_object(s)})}_hit_span(e){const{sx:t,sy:i}=e;let s,n;"v"==e.direction?(s=this.renderer.yscale.invert(i),n=this._ys):(s=this.renderer.xscale.invert(t),n=this._xs);const o=new Map;for(let e=0,t=n.length;e<t;e++){const t=n.get(e),i=[];for(let e=0,n=t.length-1;e<n;e++)t[e]<=s&&s<=t[e+1]&&i.push(e);i.length>0&&o.set(e,i)}return new d.Selection({indices:[…o.keys()],multiline_indices:c.to_object(o)})}get_interpolation_hit(e,t,i){const s=this._xs.get(e),n=this._ys.get(e),o=s[t],l=n[t],r=s[t+1],_=n[t+1];return h.line_interpolation(this.renderer,i,o,l,r,_)}draw_legend_for_index(e,t,i){h.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}i.MultiLineView=y,y.__name__="MultiLineView";class x extends a.Glyph{constructor(e){super(e)}static init_MultiLine(){this.prototype.default_view=y,this.define({xs:[r.XCoordinateSeqSpec,{field:"xs"}],ys:[r.YCoordinateSeqSpec,{field:"ys"}]}),this.mixins(o.LineVector)}}i.MultiLine=x,x.__name__="MultiLine",x.init_MultiLine()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(95),o=e(94),r=e(100),l=e(12),h=e(12),_=e(28),a=i.__importStar(e(101)),d=i.__importStar(e(18)),c=e(88),x=e(11);class y extends o.GlyphView{_project_data(){}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n<i;n++){const i=this._xs[n],o=this._ys[n];if(0==i.length||0==o.length){e.add_empty();continue}let r=1/0,h=-1/0,_=1/0,a=-1/0;for(let e=0,n=i.length;e<n;e++){const n=i[e][0],d=o[e][0];if(0!=n.length&&0!=d.length){const[e,i]=l.minmax(n),[o,c]=l.minmax(d);r=t(r,e),h=s(h,i),_=t(_,o),a=s(a,c)}}isFinite(r+h+_+a)?e.add(r,_,h,a):e.add_empty()}this._hole_index=this._index_hole_data()}_index_hole_data(){const{min:e,max:t}=Math,{data_size:s}=this,i=new n.SpatialIndex(s);for(let n=0;n<s;n++){const s=this._xs[n],o=this._ys[n];if(0==s.length||0==o.length){i.add_empty();continue}let r=1/0,h=-1/0,_=1/0,a=-1/0;for(let i=0,n=s.length;i<n;i++){const n=s[i],d=o[i];if(n.length>1&&d.length>1)for(let s=1,i=n.length;s<i;s++){const[i,o]=l.minmax(n[s]),[c,x]=l.minmax(d[s]);r=e(r,i),h=t(h,o),_=e(_,c),a=t(a,x)}}isFinite(r+h+_+a)?i.add(r,_,h,a):i.add_empty()}return i.finish(),i}_mask_data(){const e=this.renderer.plot_view.frame.x_range,[t,s]=[e.min,e.max],i=this.renderer.plot_view.frame.y_range,[n,o]=[i.min,i.max];return this.index.indices({x0:t,x1:s,y0:n,y1:o})}_inner_loop(e,t,s){e.beginPath();for(let i=0,n=t.length;i<n;i++)for(let n=0,o=t[i].length;n<o;n++){const o=t[i][n],r=s[i][n];for(let t=0,s=o.length;t<s;t++)0!=t?e.lineTo(o[t],r[t]):e.moveTo(o[t],r[t]);e.closePath()}}_render(e,t,{sxs:s,sys:i}){if(this.visuals.fill.doit||this.visuals.line.doit)for(const n of t){const[t,o]=[s[n],i[n]];this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,n),this._inner_loop(e,t,o),e.fill("evenodd")),this.visuals.hatch.doit2(e,n,()=>{this._inner_loop(e,t,o),e.fill("evenodd")},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,o),e.stroke())}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,o=[t,s,s,t],r=[i,i,n,n],[l,h]=this.renderer.xscale.r_invert(t,s),[_,d]=this.renderer.yscale.r_invert(i,n),x=this.index.indices({x0:l,x1:h,y0:_,y1:d}),y=[];for(const e of x){const t=this.sxs[e],s=this.sys[e];let i=!0;for(let e=0,n=t.length;e<n;e++){for(let n=0,l=t[e][0].length;n<l;n++){const l=t[e][0][n],h=s[e][0][n];if(!a.point_in_poly(l,h,o,r)){i=!1;break}}if(!i)break}i&&y.push(e)}return new c.Selection({indices:y})}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),n=this.renderer.yscale.invert(s),o=this.index.indices({x0:i,y0:n,x1:i,y1:n}),r=this._hole_index.indices({x0:i,y0:n,x1:i,y1:n}),l=[];for(const e of o){const i=this.sxs[e],n=this.sys[e];for(let o=0,h=i.length;o<h;o++){const h=i[o].length;if(a.point_in_poly(t,s,i[o][0],n[o][0]))if(1==h)l.push(e);else if(r.get(e)){if(h>1){let r=!1;for(let e=1;e<h;e++){const l=i[o][e],h=n[o][e];if(a.point_in_poly(t,s,l,h)){r=!0;break}}r||l.push(e)}}else l.push(e)}}return new c.Selection({indices:l})}_get_snap_coord(e){return h.sum(e)/e.length}scenterxy(e,t,s){if(1==this.sxs[e].length){return[this._get_snap_coord(this.sxs[e][0][0]),this._get_snap_coord(this.sys[e][0][0])]}{const i=this.sxs[e],n=this.sys[e];for(let e=0,o=i.length;e<o;e++)if(a.point_in_poly(t,s,i[e][0],n[e][0])){return[this._get_snap_coord(i[e][0]),this._get_snap_coord(n[e][0])]}}x.unreachable()}map_data(){const e=this._xs.length;this.sxs=new Array(e),this.sys=new Array(e);for(let t=0;t<e;t++){const e=this._xs[t].length;this.sxs[t]=new Array(e),this.sys[t]=new Array(e);for(let s=0;s<e;s++){const e=this._xs[t][s].length;this.sxs[t][s]=new Array(e),this.sys[t][s]=new Array(e);for(let i=0;i<e;i++){const[e,n]=this.renderer.coordinates.map_to_screen(this._xs[t][s][i],this._ys[t][s][i]);this.sxs[t][s][i]=e,this.sys[t][s][i]=n}}}}draw_legend_for_index(e,t,s){r.generic_area_legend(this.visuals,e,t,s)}}s.MultiPolygonsView=y,y.__name__="MultiPolygonsView";class f extends o.Glyph{constructor(e){super(e)}static init_MultiPolygons(){this.prototype.default_view=y,this.define({xs:[d.XCoordinateSeqSeqSeqSpec,{field:"xs"}],ys:[d.YCoordinateSeqSeqSeqSpec,{field:"ys"}]}),this.mixins([_.LineVector,_.FillVector,_.HatchVector])}}s.MultiPolygons=f,f.__name__="MultiPolygons",f.init_MultiPolygons()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const l=e(243);class s extends l.EllipseOvalView{_map_data(){super._map_data();const{sw:e}=this,t=e.length;for(let a=0;a<t;a++)e[a]*=.75}}a.OvalView=s,s.__name__="OvalView";class _ extends l.EllipseOval{constructor(e){super(e)}static init_Oval(){this.prototype.default_view=s}}a.Oval=_,_.__name__="Oval",_.init_Oval()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(94),r=e(100),o=e(12),a=e(28),_=i.__importStar(e(101)),c=i.__importStar(e(18)),l=e(88),h=e(11),d=e(37);class y extends n.GlyphView{_project_data(){d.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++){const t=this._xs.get(s),i=this._ys.get(s);if(0==t.length)e.add_empty();else{const[s,n]=o.minmax(t),[r,a]=o.minmax(i);e.add(s,r,n,a)}}}_mask_data(){const e=this.renderer.plot_view.frame.x_range,[t,s]=[e.min,e.max],i=this.renderer.plot_view.frame.y_range,[n,r]=[i.min,i.max];return this.index.indices({x0:t,x1:s,y0:n,y1:r})}_inner_loop(e,t,s,i){for(let n=0,r=t.length;n<r;n++)0!=n?isNaN(t[n]+s[n])?(e.closePath(),i.apply(e),e.beginPath()):e.lineTo(t[n],s[n]):(e.beginPath(),e.moveTo(t[n],s[n]));e.closePath(),i.call(e)}_render(e,t,{sxs:s,sys:i}){for(const n of t){const t=s.get(n),r=i.get(n);this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,n),this._inner_loop(e,t,r,e.fill)),this.visuals.hatch.doit2(e,n,()=>this._inner_loop(e,t,r,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,r,e.stroke))}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,r=[t,s,s,t],o=[i,i,n,n],[a,c]=this.renderer.xscale.r_invert(t,s),[h,d]=this.renderer.yscale.r_invert(i,n),y=this.index.indices({x0:a,x1:c,y0:h,y1:d}),p=[];for(const e of y){const t=this.sxs.get(e),s=this.sys.get(e);let i=!0;for(let e=0,n=t.length;e<n;e++){const n=t[e],a=s[e];if(!_.point_in_poly(n,a,r,o)){i=!1;break}}i&&p.push(e)}return new l.Selection({indices:p})}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),n=this.renderer.yscale.invert(s),r=this.index.indices({x0:i,y0:n,x1:i,y1:n}),o=[];for(const e of r){const i=this.sxs.get(e),n=this.sys.get(e),r=i.length;for(let a=0,c=0;;c++){if(isNaN(i[c])||c==r){const r=i.subarray(a,c),l=n.subarray(a,c);if(_.point_in_poly(t,s,r,l)){o.push(e);break}a=c+1}if(c==r)break}}return new l.Selection({indices:o})}_get_snap_coord(e){return o.sum(e)/e.length}scenterxy(e,t,s){const i=this.sxs.get(e),n=this.sys.get(e),r=i.length;let o=!1;for(let e=0,a=0;;a++){const c=isNaN(i[a]);if(o=o||c,a==r&&!o){return[this._get_snap_coord(i),this._get_snap_coord(n)]}if(c||a==r){const r=i.subarray(e,a),o=n.subarray(e,a);if(_.point_in_poly(t,s,r,o)){return[this._get_snap_coord(r),this._get_snap_coord(o)]}e=a+1}if(a==r)break}h.unreachable()}draw_legend_for_index(e,t,s){r.generic_area_legend(this.visuals,e,t,s)}}s.PatchesView=y,y.__name__="PatchesView";class p extends n.Glyph{constructor(e){super(e)}static init_Patches(){this.prototype.default_view=y,this.define({xs:[c.XCoordinateSeqSpec,{field:"xs"}],ys:[c.YCoordinateSeqSpec,{field:"ys"}]}),this.mixins([a.LineVector,a.FillVector,a.HatchVector])}}s.Patches=p,p.__name__="Patches",p.init_Patches()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),s=t(245),r=o.__importStar(t(18));class _ extends s.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){return[this._left[t],this._right[t],this._top[t],this._bottom[t]]}}i.QuadView=_,_.__name__="QuadView";class d extends s.Box{constructor(t){super(t)}static init_Quad(){this.prototype.default_view=_,this.define({right:[r.XCoordinateSpec,{field:"right"}],bottom:[r.YCoordinateSpec,{field:"bottom"}],left:[r.XCoordinateSpec,{field:"left"}],top:[r.YCoordinateSpec,{field:"top"}]})}}i.Quad=d,d.__name__="Quad",d.init_Quad()},n”, ” function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(1),a=i(28),_=i(37),c=i(94),n=i(100),r=s.__importStar(i(18));function o(i,e,t){if(e==(i+t)/2)return[i,t];{const s=(i-e)/(i-2*e+t),a=i*(1-s)**2+2*e*(1-s)*s+t*s**2;return[Math.min(i,t,a),Math.max(i,t,a)]}}class d extends c.GlyphView{_project_data(){_.inplace.project_xy(this._x0,this._y0),_.inplace.project_xy(this._x1,this._y1)}_index_data(i){const{data_size:e}=this;for(let t=0;t<e;t++)if(isNaN(this._x0[t]+this._x1[t]+this._y0[t]+this._y1[t]+this._cx[t]+this._cy[t]))i.add_empty();else{const[e,s]=o(this._x0[t],this._cx[t],this._x1[t]),[a,_]=o(this._y0[t],this._cy[t],this._y1[t]);i.add(e,a,s,_)}}_render(i,e,{sx0:t,sy0:s,sx1:a,sy1:_,scx:c,scy:n}){if(this.visuals.line.doit)for(const r of e)isNaN(t[r]+s[r]+a[r]+_[r]+c[r]+n[r])||(i.beginPath(),i.moveTo(t[r],s[r]),i.quadraticCurveTo(c[r],n[r],a[r],_[r]),this.visuals.line.set_vectorize(i,r),i.stroke())}draw_legend_for_index(i,e,t){n.generic_line_legend(this.visuals,i,e,t)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}t.QuadraticView=d,d.__name__="QuadraticView";class h extends c.Glyph{constructor(i){super(i)}static init_Quadratic(){this.prototype.default_view=d,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}],cx:[r.XCoordinateSpec,{field:"cx"}],cy:[r.YCoordinateSpec,{field:"cy"}]}),this.mixins(a.LineVector)}}t.Quadratic=h,h.__name__="Quadratic",h.init_Quadratic()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(93),a=e(100),r=e(28),l=s.__importStar(e(18));class _ extends n.XYGlyphView{_map_data(){"data"==this.model.properties.length.units?this.slength=this.sdist(this.renderer.xscale,this._x,this._length):this.slength=this._length}_render(e,t,{sx:i,sy:s,slength:n,_angle:a}){if(this.visuals.line.doit){const r=2*(this.renderer.plot_view.frame.bbox.width+this.renderer.plot_view.frame.bbox.height);for(let e=0,t=n.length;e<t;e++)0==n[e]&&(n[e]=r);for(const r of t)isNaN(i[r]+s[r]+a[r]+n[r])||(e.translate(i[r],s[r]),e.rotate(a[r]),e.beginPath(),e.moveTo(0,0),e.lineTo(n[r],0),this.visuals.line.set_vectorize(e,r),e.stroke(),e.rotate(-a[r]),e.translate(-i[r],-s[r]))}}draw_legend_for_index(e,t,i){a.generic_line_legend(this.visuals,e,t,i)}}i.RayView=_,_.__name__="RayView";class h extends n.XYGlyph{constructor(e){super(e)}static init_Ray(){this.prototype.default_view=_,this.mixins(r.LineVector),this.define({length:[l.DistanceSpec],angle:[l.AngleSpec]})}}i.Ray=h,h.__name__="Ray",h.init_Ray()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),h=t(241),r=t(100),a=t(24),n=i.__importStar(t(18)),_=t(12),o=t(88);class l extends h.CenterRotatableView{_set_data(){this.max_w2=0,"data"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,"data"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){if("data"==this.model.properties.width.units)[this.sw,this.sx0]=this._map_dist_corner_for_data_side_length(this._x,this._width,this.renderer.xscale);else{this.sw=this._width;const t=this.sx.length;this.sx0=new a.NumberArray(t);for(let s=0;s<t;s++)this.sx0[s]=this.sx[s]-this.sw[s]/2}if("data"==this.model.properties.height.units)[this.sh,this.sy1]=this._map_dist_corner_for_data_side_length(this._y,this._height,this.renderer.yscale);else{this.sh=this._height;const t=this.sy.length;this.sy1=new a.NumberArray(t);for(let s=0;s<t;s++)this.sy1[s]=this.sy[s]-this.sh[s]/2}const t=this.sw.length;this.ssemi_diag=new a.NumberArray(t);for(let s=0;s<t;s++)this.ssemi_diag[s]=Math.sqrt(this.sw[s]/2*this.sw[s]/2+this.sh[s]/2*this.sh[s]/2)}_render(t,s,{sx:e,sy:i,sx0:h,sy1:r,sw:a,sh:n,_angle:_}){if(this.visuals.fill.doit)for(const o of s)isNaN(e[o]+i[o]+h[o]+r[o]+a[o]+n[o]+_[o])||(this.visuals.fill.set_vectorize(t,o),_[o]?(t.translate(e[o],i[o]),t.rotate(_[o]),t.fillRect(-a[o]/2,-n[o]/2,a[o],n[o]),t.rotate(-_[o]),t.translate(-e[o],-i[o])):t.fillRect(h[o],r[o],a[o],n[o]));if(this.visuals.line.doit){t.beginPath();for(const o of s)isNaN(e[o]+i[o]+h[o]+r[o]+a[o]+n[o]+_[o])||0!=a[o]&&0!=n[o]&&(_[o]?(t.translate(e[o],i[o]),t.rotate(_[o]),t.rect(-a[o]/2,-n[o]/2,a[o],n[o]),t.rotate(-_[o]),t.translate(-e[o],-i[o])):t.rect(h[o],r[o],a[o],n[o]),this.visuals.line.set_vectorize(t,o),t.stroke(),t.beginPath());t.stroke()}}_hit_rect(t){return this._hit_rect_against_index(t)}_hit_point(t){let{sx:s,sy:e}=t;const i=this.renderer.xscale.invert(s),h=this.renderer.yscale.invert(e),r=this.sx0.length,n=new a.NumberArray(r);for(let t=0;t<r;t++)n[t]=this.sx0[t]+this.sw[t]/2;const l=new a.NumberArray(r);for(let t=0;t<r;t++)l[t]=this.sy1[t]+this.sh[t]/2;const d=_.max(this._ddist(0,n,this.ssemi_diag)),c=_.max(this._ddist(1,l,this.ssemi_diag)),x=i-d,m=i+d,y=h-c,w=h+c;let f,u;const g=[];for(const t of this.index.indices({x0:x,x1:m,y0:y,y1:w})){if(this._angle[t]){const i=Math.sin(-this._angle[t]),h=Math.cos(-this._angle[t]),r=h*(s-this.sx[t])-i*(e-this.sy[t])+this.sx[t],a=i*(s-this.sx[t])+h*(e-this.sy[t])+this.sy[t];s=r,e=a,f=Math.abs(this.sx[t]-s)<=this.sw[t]/2,u=Math.abs(this.sy[t]-e)<=this.sh[t]/2}else{const i=s-this.sx0[t],h=e-this.sy1[t];f=0<=i&&i<=this.sw[t],u=0<=h&&h<=this.sh[t]}f&&u&&g.push(t)}return new o.Selection({indices:g})}_map_dist_corner_for_data_side_length(t,s,e){const i=t.length,h=new Float64Array(i),r=new Float64Array(i);for(let e=0;e<i;e++)h[e]=t[e]-s[e]/2,r[e]=t[e]+s[e]/2;const a=e.v_compute(h),n=e.v_compute(r),_=this.sdist(e,h,s,"edge",this.model.dilate);let o=a;for(let t=0;t<i;t++){const s=a[t],e=n[t];if(!isNaN(s+e)&&s!=e){o=s<e?a:n;break}}return[_,o]}_ddist(t,s,e){const i=0==t?this.renderer.xscale:this.renderer.yscale,h=s,r=h.length,n=new a.NumberArray(r);for(let t=0;t<r;t++)n[t]=h[t]+e[t];const _=i.v_invert(h),o=i.v_invert(n),l=_.length,d=new a.NumberArray(l);for(let t=0;t<l;t++)d[t]=Math.abs(o[t]-_[t]);return d}draw_legend_for_index(t,s,e){r.generic_area_legend(this.visuals,t,s,e)}_bounds({x0:t,x1:s,y0:e,y1:i}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:e-this.max_h2,y1:i+this.max_h2}}}e.RectView=l,l.__name__="RectView";class d extends h.CenterRotatable{constructor(t){super(t)}static init_Rect(){this.prototype.default_view=l,this.define({dilate:[n.Boolean,!1]})}}e.Rect=d,d.__name__="Rect",d.init_Rect()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=i.__importStar(e(101)),r=i.__importStar(e(18)),_=e(28),h=e(37),a=e(94),o=e(100),c=e(88);class d extends a.GlyphView{_project_data(){h.inplace.project_xy(this._x0,this._y0),h.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n<i;n++){const i=this._x0[n],r=this._x1[n],_=this._y0[n],h=this._y1[n];isNaN(i+r+_+h)?e.add_empty():e.add(t(i,r),t(_,h),s(i,r),s(_,h))}}_render(e,t,{sx0:s,sy0:i,sx1:n,sy1:r}){if(this.visuals.line.doit)for(const _ of t)isNaN(s[_]+i[_]+n[_]+r[_])||(e.beginPath(),e.moveTo(s[_],i[_]),e.lineTo(n[_],r[_]),this.visuals.line.set_vectorize(e,_),e.stroke())}_hit_point(e){const{sx:t,sy:s}=e,i={x:t,y:s},[r,_]=this.renderer.xscale.r_invert(t-2,t+2),[h,a]=this.renderer.yscale.r_invert(s-2,s+2),o=this.index.indices({x0:r,y0:h,x1:_,y1:a}),d=[];for(const e of o){const t=Math.max(2,this.visuals.line.cache_select("line_width",e)/2)**2,s={x:this.sx0[e],y:this.sy0[e]},r={x:this.sx1[e],y:this.sy1[e]};n.dist_to_segment_squared(i,s,r)<t&&d.push(e)}return new c.Selection({indices:d})}_hit_span(e){const[t,s]=this.renderer.plot_view.frame.bbox.ranges,{sx:i,sy:n}=e;let r,_,h;"v"==e.direction?(h=this.renderer.yscale.invert(n),[r,_]=[this._y0,this._y1]):(h=this.renderer.xscale.invert(i),[r,_]=[this._x0,this._x1]);const a=[],[o,d]=this.renderer.xscale.r_invert(t.start,t.end),[x,l]=this.renderer.yscale.r_invert(s.start,s.end),y=this.index.indices({x0:o,y0:x,x1:d,y1:l});for(const t of y){(r[t]<=h&&h<=_[t]||_[t]<=h&&h<=r[t])&&a.push(t);const s=1.5+this.visuals.line.cache_select("line_width",t)/2;r[t]==_[t]&&("h"==e.direction?Math.abs(this.sx0[t]-i)<=s&&a.push(t):Math.abs(this.sy0[t]-n)<=s&&a.push(t))}return new c.Selection({indices:a})}scenterxy(e){return[(this.sx0[e]+this.sx1[e])/2,(this.sy0[e]+this.sy1[e])/2]}draw_legend_for_index(e,t,s){o.generic_line_legend(this.visuals,e,t,s)}}s.SegmentView=d,d.__name__="SegmentView";class x extends a.Glyph{constructor(e){super(e)}static init_Segment(){this.prototype.default_view=d,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}]}),this.mixins(_.LineVector)}}s.Segment=x,x.__name__="Segment",x.init_Segment()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(93),o=e(100),r=e(28),l=n.__importStar(e(18));class a extends s.XYGlyphView{_render(e,t,{sx:i,sy:n}){let s=!1,o=null;this.visuals.line.set_value(e);const r=t.length;if(!(r<2)){e.beginPath(),e.moveTo(i[0],n[0]);for(const r of t){let t,l,a,_;switch(this.model.mode){case"before":[t,a]=[i[r-1],n[r]],[l,_]=[i[r],n[r]];break;case"after":[t,a]=[i[r],n[r-1]],[l,_]=[i[r],n[r]];break;case"center":{const e=(i[r-1]+i[r])/2;[t,a]=[e,n[r-1]],[l,_]=[e,n[r]];break}default:throw new Error("unexpected")}if(s){if(!isFinite(i[r]+n[r])){e.stroke(),e.beginPath(),s=!1,o=r;continue}null!=o&&r-o>1&&(e.stroke(),s=!1)}s?(e.lineTo(t,a),e.lineTo(l,_)):(e.beginPath(),e.moveTo(i[r],n[r]),s=!0),o=r}e.lineTo(i[r-1],n[r-1]),e.stroke()}}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}}i.StepView=a,a.__name__="StepView";class _ extends s.XYGlyph{constructor(e){super(e)}static init_Step(){this.prototype.default_view=a,this.mixins(r.LineVector),this.define({mode:[l.StepMode,"before"]})}}i.Step=_,_.__name__="Step",_.init_Step()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),n=t(93),_=t(28),o=i.__importStar(t(101)),h=i.__importStar(t(18)),l=t(159),a=t(11),r=t(88);class c extends n.XYGlyphView{_rotate_point(t,s,e,i,n){return[(t-e)*Math.cos(n)-(s-i)*Math.sin(n)+e,(t-e)*Math.sin(n)+(s-i)*Math.cos(n)+i]}_text_bounds(t,s,e,i){return[[t,t+e,t+e,t,t],[s,s,s-i,s-i,s]]}_render(t,s,{sx:e,sy:i,_x_offset:n,_y_offset:_,_angle:o,_text:h}){this._sys=[],this._sxs=[];for(const a of s)if(this._sxs[a]=[],this._sys[a]=[],!isNaN(e[a]+i[a]+n[a]+_[a]+o[a])&&null!=h[a]&&this.visuals.text.doit){const s=""+h[a];t.save(),t.translate(e[a]+n[a],i[a]+_[a]),t.rotate(o[a]),this.visuals.text.set_vectorize(t,a);const r=this.visuals.text.cache_select("font",a),{height:c}=l.measure_font(r),x=this.visuals.text.text_line_height.value()*c;if(-1==s.indexOf("\n")){t.fillText(s,0,0);const o=e[a]+n[a],h=i[a]+_[a],l=t.measureText(s).width,[r,c]=this._text_bounds(o,h,l,x);this._sxs[a].push(r),this._sys[a].push(c)}else{const o=s.split("\n"),h=x*o.length,l=this.visuals.text.cache_select("text_baseline",a);let r;switch(l){case"top":r=0;break;case"middle":r=-h/2+x/2;break;case"bottom":r=-h+x;break;default:r=0,console.warn(‘${l}’ baseline not supported with multi line text)}for(const s of o){t.fillText(s,0,r);const o=e[a]+n[a],h=r+i[a]+_[a],l=t.measureText(s).width,[c,u]=this._text_bounds(o,h,l,x);this._sxs[a].push(c),this._sys[a].push(u),r+=x}}t.restore()}}_hit_point(t){const{sx:s,sy:e}=t,i=[];for(let t=0;t<this._sxs.length;t++){const n=this._sxs[t],_=this._sys[t],h=n.length;for(let l=0,a=h;l<a;l++){const[a,r]=this._rotate_point(s,e,n[h-1][0],_[h-1][0],-this._angle[t]);o.point_in_poly(a,r,n[l],_[l])&&i.push(t)}}return new r.Selection({indices:i})}scenterxy(t){const s=this._sxs[t],e=this._sys[t];a.assert(0!=s.length&&0!=e.length);const i=s[0][0],n=e[0][0],_=(s[0][2]+i)/2,o=(e[0][2]+n)/2,[h,l]=this._rotate_point(_,o,i,n,this._angle[t]);return[h,l]}}e.TextView=c,c.__name__="TextView";class x extends n.XYGlyph{constructor(t){super(t)}static init_Text(){this.prototype.default_view=c,this.mixins(_.TextVector),this.define({text:[h.NullStringSpec,{field:"text"}],angle:[h.AngleSpec,0],x_offset:[h.NumberSpec,0],y_offset:[h.NumberSpec,0]})}}e.Text=x,x.__name__="Text",x.init_Text()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),r=t(245),h=t(24),o=i.__importStar(t(18));class _ extends r.BoxView{scenterxy(t){return[this.sx[t],(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){return[this._x[t]-this._width[t]/2,this._x[t]+this._width[t]/2,Math.max(this._top[t],this._bottom[t]),Math.min(this._top[t],this._bottom[t])]}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sw=this.sdist(this.renderer.xscale,this._x,this._width,"center"),this.stop=this.renderer.yscale.v_compute(this._top),this.sbottom=this.renderer.yscale.v_compute(this._bottom);const t=this.sx.length;this.sleft=new h.NumberArray(t),this.sright=new h.NumberArray(t);for(let s=0;s<t;s++)this.sleft[s]=this.sx[s]-this.sw[s]/2,this.sright[s]=this.sx[s]+this.sw[s]/2;this._clamp_viewport()}}e.VBarView=_,_.__name__="VBarView";class a extends r.Box{constructor(t){super(t)}static init_VBar(){this.prototype.default_view=_,this.define({x:[o.XCoordinateSpec,{field:"x"}],bottom:[o.YCoordinateSpec,{value:0}],width:[o.NumberSpec,{value:1}],top:[o.YCoordinateSpec,{field:"top"}]})}}e.VBar=a,a.__name__="VBar",a.init_VBar()},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),d=i.__importStar(e(18)),l=e(10),o=e(88);class _ extends r.XYGlyphView{_map_data(){"data"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,s,{sx:t,sy:i,sradius:r,_start_angle:n,_end_angle:a}){const d=this.model.properties.direction.value();for(const l of s)isNaN(t[l]+i[l]+r[l]+n[l]+a[l])||(e.beginPath(),e.arc(t[l],i[l],r[l],n[l],a[l],d),e.lineTo(t[l],i[l]),e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,l),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,l),e.stroke()))}_hit_point(e){let s,t,i,r,n,a,d,_,c;const{sx:h,sy:u}=e,p=this.renderer.xscale.invert(h),g=this.renderer.yscale.invert(u),x=2*this.max_radius;"data"===this.model.properties.radius.units?(a=p-x,d=p+x,_=g-x,c=g+x):(t=h-x,i=h+x,[a,d]=this.renderer.xscale.r_invert(t,i),r=u-x,n=u+x,[_,c]=this.renderer.yscale.r_invert(r,n));const v=[];for(const e of this.index.indices({x0:a,x1:d,y0:_,y1:c})){const a=this.sradius[e]**2;[t,i]=this.renderer.xscale.r_compute(p,this._x[e]),[r,n]=this.renderer.yscale.r_compute(g,this._y[e]),s=(t-i)**2+(r-n)**2,s<=a&&v.push(e)}const y=this.model.properties.direction.value(),f=[];for(const e of v){const s=Math.atan2(u-this.sy[e],h-this.sx[e]);l.angle_between(-s,-this._start_angle[e],-this._end_angle[e],y)&&f.push(e)}return new o.Selection({indices:f})}draw_legend_for_index(e,s,t){n.generic_area_legend(this.visuals,e,s,t)}scenterxy(e){const s=this.sradius[e]/2,t=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+s*Math.cos(t),this.sy[e]+s*Math.sin(t)]}}t.WedgeView=_,_.__name__="WedgeView";class c extends r.XYGlyph{constructor(e){super(e)}static init_Wedge(){this.prototype.default_view=_,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[d.Direction,"anticlock"],radius:[d.DistanceSpec],start_angle:[d.AngleSpec],end_angle:[d.AngleSpec]})}}t.Wedge=c,c.__name__="Wedge",c.init_Wedge()},n”, ” function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const r=e(1);r.__exportStar(e(117),_),r.__exportStar(e(266),_),r.__exportStar(e(267),_)},n”, ” function _(e,o,r){Object.defineProperty(r,"__esModule",{value:!0});const t=e(81);class n extends t.Model{constructor(e){super(e)}}r.LayoutProvider=n,n.__name__="LayoutProvider"},n”, ” function _(t,a,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),o=t(266),n=t(24),s=r.__importStar(t(18));class u extends o.LayoutProvider{constructor(t){super(t)}static init_StaticLayoutProvider(){this.define({graph_layout:[s.Any,{}]})}get_node_coordinates(t){const a=t.data.index,e=a.length,r=new n.NumberArray(e),o=new n.NumberArray(e);for(let t=0;t<e;t++){const e=this.graph_layout[a[t]],[n,s]=null!=e?e:[NaN,NaN];r[t]=n,o[t]=s}return[r,o]}get_edge_coordinates(t){const a=t.data.start,e=t.data.end,r=a.length,o=[],n=[],s=null!=t.data.xs&&null!=t.data.ys;for(let u=0;u<r;u++){const r=null!=this.graph_layout[a[u]]&&null!=this.graph_layout[e[u]];if(s&&r)o.push(t.data.xs[u]),n.push(t.data.ys[u]);else{let t,s;r?(t=this.graph_layout[a[u]],s=this.graph_layout[e[u]]):(t=[NaN,NaN],s=[NaN,NaN]),o.push([t[0],s[0]]),n.push([t[1],s[1]])}}return[o,n]}}e.StaticLayoutProvider=u,u.__name__="StaticLayoutProvider",u.init_StaticLayoutProvider()},n”, ” function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});var i=e(269);d.Grid=i.Grid},n”, ” function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(1),n=i(178),r=s.__importStar(i(28)),o=s.__importStar(i(18)),d=i(8);class _ extends n.GuideRendererView{_render(){const i=this.layer.ctx;i.save(),this._draw_regions(i),this._draw_minor_grids(i),this._draw_grids(i),i.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render())}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;this.visuals.band_fill.set_value(i);const[e,t]=this.grid_coords("major",!1);for(let s=0;s<e.length-1;s++){if(s%2!=1)continue;const[n,r]=this.coordinates.map_to_screen(e[s],t[s]),[o,d]=this.coordinates.map_to_screen(e[s+1],t[s+1]);this.visuals.band_fill.doit&&i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0]),this.visuals.band_hatch.doit2(i,s,()=>{i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0])},()=>this.request_render())}}_draw_grids(i){if(!this.visuals.grid_line.doit)return;const[e,t]=this.grid_coords("major");this._draw_grid_helper(i,this.visuals.grid_line,e,t)}_draw_minor_grids(i){if(!this.visuals.minor_grid_line.doit)return;const[e,t]=this.grid_coords("minor");this._draw_grid_helper(i,this.visuals.minor_grid_line,e,t)}_draw_grid_helper(i,e,t,s){e.set_value(i),i.beginPath();for(let e=0;e<t.length;e++){const[n,r]=this.coordinates.map_to_screen(t[e],s[e]);i.moveTo(Math.round(n[0]),Math.round(r[0]));for(let e=1;e<n.length;e++)i.lineTo(Math.round(n[e]),Math.round(r[e]))}i.stroke()}ranges(){const i=this.model.dimension,e=(i+1)%2,{ranges:t}=this.coordinates;return[t[i],t[e]]}computed_bounds(){const[i]=this.ranges(),e=this.model.bounds,t=[i.min,i.max];let s,n;if(d.isArray(e))s=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]),s<t[0]&&(s=t[0]),n>t[1]&&(n=t[1]);else{[s,n]=t;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,n]=i.computed_bounds)}return[s,n]}grid_coords(i,e=!0){const t=this.model.dimension,s=(t+1)%2,[n,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,n,r.min,{})[i],h=n.min,c=n.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;i<l.length;i++){if((l[i]==h||l[i]==c)&&e)continue;const n=[],r=[],o=2;for(let e=0;e<o;e++){const t=u+(m-u)/(o-1)*e;n.push(l[i]),r.push(t)}_[t].push(n),_[s].push(r)}return _}}t.GridView=_,_.__name__="GridView";class a extends n.GuideRenderer{constructor(i){super(i)}static init_Grid(){this.prototype.default_view=_,this.mixins([["grid_",r.Line],["minor_grid_",r.Line],["band_",r.Fill],["band_",r.Hatch]]),this.define({bounds:[o.Any,"auto"],dimension:[o.Any,0],axis:[o.Instance],ticker:[o.Instance]}),this.override({level:"underlay",band_fill_color:null,band_fill_alpha:0,grid_line_color:"#e5e5e5",minor_grid_line_color:null})}get_ticker(){return null!=this.ticker?this.ticker:null!=this.axis?this.axis.ticker:null}}t.Grid=a,a.__name__="Grid",a.init_Grid()},n”, ” function _(a,o,r){Object.defineProperty(r,"__esModule",{value:!0});var e=a(271);r.Box=e.Box;var v=a(274);r.Column=v.Column;var x=a(275);r.GridBox=x.GridBox;var B=a(276);r.HTMLBox=B.HTMLBox;var n=a(272);r.LayoutDOM=n.LayoutDOM;var t=a(277);r.Row=t.Row;var u=a(278);r.Spacer=u.Spacer;var d=a(279);r.Panel=d.Panel,r.Tabs=d.Tabs;var i=a(286);r.WidgetBox=i.WidgetBox},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(272),o=n.__importStar(e(18));class c extends s.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children}}i.BoxView=c,c.__name__="BoxView";class r extends s.LayoutDOM{constructor(e){super(e)}static init_Box(){this.define({children:[o.Array,[]],spacing:[o.Number,0]})}}i.Box=r,r.__name__="Box",r.init_Box()},n”, ” function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const s=i(81),o=i(20),l=i(72),n=i(19),h=i(8),a=i(115),r=i(78),_=i(212),d=i(273),c=i(77);class u extends r.DOMView{constructor(){super(…arguments),this._idle_notified=!1,this._offset_parent=null,this._viewport={}}initialize(){super.initialize(),this.el.style.position=this.is_root?"relative":"absolute",this._child_views=new Map}async lazy_initialize(){await this.build_child_views()}remove(){for(const i of this.child_views)i.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener("resize",this._on_resize),this._parent_observer=setInterval(()=>{const i=this.el.offsetParent;this._offset_parent!=i&&(this._offset_parent=i,null!=i&&(this.compute_viewport(),this.invalidate_layout()))},250));const i=this.model.properties;this.on_change([i.width,i.height,i.min_width,i.min_height,i.max_width,i.max_height,i.margin,i.width_policy,i.height_policy,i.sizing_mode,i.aspect_ratio,i.visible],()=>this.invalidate_layout()),this.on_change([i.background,i.css_classes],()=>this.invalidate_render())}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener("resize",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map(i=>this._child_views.get(i))}async build_child_views(){await a.build_views(this._child_views,this.child_models,{parent:this})}render(){super.render(),l.empty(this.el);const{background:i}=this.model;this.el.style.backgroundColor=null!=i?i:"",l.classes(this.el).clear().add(…this.css_classes());for(const i of this.child_views)this.el.appendChild(i.el),i.render()}update_layout(){for(const i of this.child_views)i.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?"block":"none";const i=this.is_root?this.layout.sizing.margin:void 0;l.position(this.el,this.layout.bbox,i);for(const i of this.child_views)i.update_position()}after_layout(){for(const i of this.child_views)i.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(i){i.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build()}build(){return this.assert_root(),this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const i=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),n.logger.debug(layout computed in ${Date.now()-i} ms),this.notify_finished()}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const i of this.child_views)if(!i.has_finished())return!1;return!0}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}_width_policy(){return null!=this.model.width?"fixed":"fit"}_height_policy(){return null!=this.model.height?"fixed":"fit"}box_sizing(){let{width_policy:i,height_policy:t,aspect_ratio:e}=this.model;"auto"==i&&(i=this._width_policy()),"auto"==t&&(t=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if("fixed"==s)i=t="fixed";else if("stretch_both"==s)i=t="max";else if("stretch_width"==s)i="max";else if("stretch_height"==s)t="max";else switch(null==e&&(e="auto"),s){case"scale_width":i="max",t="min";break;case"scale_height":i="min",t="max";break;case"scale_both":i="max",t="max"}const o={width_policy:i,height_policy:t},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:a,height:r}=this.model;null!=a&&(o.width=a),null!=r&&(o.height=r);const{max_width:_,max_height:d}=this.model;null!=_&&(o.max_width=_),null!=d&&(o.max_height=d),"auto"==e&&null!=a&&null!=r?o.aspect=a/r:h.isNumber(e)&&(o.aspect=e);const{margin:c}=this.model;if(null!=c)if(h.isNumber(c))o.margin={top:c,right:c,bottom:c,left:c};else if(2==c.length){const[i,t]=c;o.margin={top:i,right:t,bottom:i,left:t}}else{const[i,t,e,s]=c;o.margin={top:i,right:t,bottom:e,left:s}}o.visible=this.model.visible;const{align:u}=this.model;return h.isArray(u)?[o.halign,o.valign]=u:o.halign=o.valign=u,o}_viewport_size(){return l.undisplayed(this.el,()=>{let i=this.el;for(;i=i.parentElement;){if(i.classList.contains(d.bk_root))continue;if(i==document.body){const{margin:{left:i,right:t,top:e,bottom:s}}=l.extents(document.body);return{width:Math.ceil(document.documentElement.clientWidth-i-t),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:t,right:e,top:s,bottom:o}}=l.extents(i),{width:n,height:h}=i.getBoundingClientRect(),a=Math.ceil(n-t-e),r=Math.ceil(h-s-o);if(a>0||r>0)return{width:a>0?a:void 0,height:r>0?r:void 0}}return{}})}export(i,t=!0){const e="png"==i?"canvas":"svg",s=new c.CanvasLayer(e,t),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(i,t),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map(i=>i.serializable_state())})}}e.LayoutDOMView=u,u.__name__="LayoutDOMView";class m extends s.Model{constructor(i){super(i)}static init_LayoutDOM(){this.define(i=>{const{Boolean:t,Number:e,String:s,Null:l,Auto:n,Color:h,Array:a,Tuple:r,Or:d}=i,c=r(e,e),u=r(e,e,e,e);return{width:[d(e,l),null],height:[d(e,l),null],min_width:[d(e,l),null],min_height:[d(e,l),null],max_width:[d(e,l),null],max_height:[d(e,l),null],margin:[d(e,c,u),[0,0,0,0]],width_policy:[d(_.SizingPolicy,n),"auto"],height_policy:[d(_.SizingPolicy,n),"auto"],aspect_ratio:[d(e,n,l),null],sizing_mode:[d(o.SizingMode,l),null],visible:[t,!0],disabled:[t,!1],align:[d(o.Align,r(o.Align,o.Align)),"start"],background:[d(h,l),null],css_classes:[a(s),[]]}})}}e.LayoutDOM=m,m.__name__="LayoutDOM",m.init_LayoutDOM()},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_root="bk-root"},n”, ” function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),e=t(271),n=t(216),l=s.__importStar(t(18));class u extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new n.Column(t),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}i.ColumnView=u,u.__name__="ColumnView";class _ extends e.Box{constructor(t){super(t)}static init_Column(){this.prototype.default_view=u,this.define({rows:[l.Any,"auto"]})}}i.Column=_,_.__name__="Column",_.init_Column()},n”, ” function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t(1),e=t(272),n=t(216),l=o.__importStar(t(18));class r extends e.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children.map(([t])=>t)}_update_layout(){this.layout=new n.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[t,i,s,o,e]of this.model.children){const n=this._child_views.get(t);this.layout.items.push({layout:n.layout,row:i,col:s,row_span:o,col_span:e})}this.layout.set_sizing(this.box_sizing())}}s.GridBoxView=r,r.__name__="GridBoxView";class a extends e.LayoutDOM{constructor(t){super(t)}static init_GridBox(){this.prototype.default_view=r,this.define({children:[l.Array,[]],rows:[l.Any,"auto"],cols:[l.Any,"auto"],spacing:[l.Any,0]})}}s.GridBox=a,a.__name__="GridBox",a.init_GridBox()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(272),_=e(212);class n extends s.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new _.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=n,n.__name__="HTMLBoxView";class i extends s.LayoutDOM{constructor(e){super(e)}}o.HTMLBox=i,i.__name__="HTMLBox"},n”, ” function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),e=t(271),_=t(216),a=s.__importStar(t(18));class n extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new _.Row(t),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}i.RowView=n,n.__name__="RowView";class l extends e.Box{constructor(t){super(t)}static init_Row(){this.prototype.default_view=n,this.define({cols:[a.Any,"auto"]})}}i.Row=l,l.__name__="Row",l.init_Row()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(272),s=e(212);class _ extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new s.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=_,_.__name__="SpacerView";class o extends i.LayoutDOM{constructor(e){super(e)}static init_Spacer(){this.prototype.default_view=_}}a.Spacer=o,o.__name__="Spacer",o.init_Spacer()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(212),l=e(72),h=e(9),o=i.__importStar(e(18)),c=e(272),d=e(81),r=e(173),n=e(280),_=e(281),b=e(282),p=i.__importDefault(e(283)),u=i.__importDefault(e(284)),m=i.__importDefault(e(285));class v extends c.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,()=>this.rebuild()),this.connect(this.model.properties.active.change,()=>this.on_active_change())}styles(){return[…super.styles(),p.default,u.default,m.default]}get child_models(){return this.model.tabs.map(e=>e.child)}_update_layout(){const e=this.model.tabs_location,t="above"==e||"below"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends a.ContentBox{_measure(e){const a=l.size(s),o=l.children(i).slice(0,3).map(e=>l.size(e)),{width:c,height:d}=super._measure(e);if(t){const t=a.width+h.sum(o.map(e=>e.width));return{width:e.width!=1/0?e.width:t,height:d}}{const t=a.height+h.sum(o.map(e=>e.height));return{width:c,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:"fit",height_policy:"fixed"}):this.header.set_sizing({width_policy:"fixed",height_policy:"fit"});let o=1,c=1;switch(e){case"above":o-=1;break;case"below":o+=1;break;case"left":c-=1;break;case"right":c+=1}const d={layout:this.header,row:o,col:c},r=this.child_views.map(e=>({layout:e.layout,row:1,col:1}));this.layout=new a.Grid([d,…r]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position="absolute",l.position(this.header_el,this.header.bbox);const e=this.model.tabs_location,t="above"==e||"below"==e,s=l.size(this.scroll_el),i=l.scroll_size(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+"px",l.display(this.scroll_el)):(this.wrapper_el.style.maxWidth="",l.undisplay(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+"px",l.display(this.scroll_el)):(this.wrapper_el.style.maxHeight="",l.undisplay(this.scroll_el))}const{child_views:a}=this;for(const e of a)l.hide(e.el);const h=a[this.model.active];null!=h&&l.show(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs_location,s="above"==t||"below"==t,i=this.model.tabs.map((t,s)=>{const i=l.div({class:[n.bk_tab,s==e?r.bk_active:null]},t.title);if(i.addEventListener("click",e=>{e.target==e.currentTarget&&this.change_active(s)}),t.closable){const e=l.div({class:n.bk_close});e.addEventListener("click",e=>{if(e.target==e.currentTarget){this.model.tabs=h.remove_at(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}}),i.appendChild(e)}return i});this.headers_el=l.div({class:[n.bk_headers]},i),this.wrapper_el=l.div({class:n.bk_headers_wrapper},this.headers_el);const a=l.div({class:[_.bk_btn,_.bk_btn_default],disabled:""},l.div({class:[b.bk_caret,r.bk_left]})),o=l.div({class:[_.bk_btn,_.bk_btn_default]},l.div({class:[b.bk_caret,r.bk_right]}));let c=0;const d=e=>()=>{const t=this.model.tabs.length;c="left"==e?Math.max(c-1,0):Math.min(c+1,t-1),0==c?a.setAttribute("disabled",""):a.removeAttribute("disabled"),c==t-1?o.setAttribute("disabled",""):o.removeAttribute("disabled");const i=l.children(this.headers_el).slice(0,c).map(e=>e.getBoundingClientRect());if(s){const e=-h.sum(i.map(e=>e.width));this.headers_el.style.left=e+"px"}else{const e=-h.sum(i.map(e=>e.height));this.headers_el.style.top=e+"px"}};a.addEventListener("click",d("left")),o.addEventListener("click",d("right")),this.scroll_el=l.div({class:_.bk_btn_group},a,o),this.header_el=l.div({class:[n.bk_tabs_header,r.bk_side(t)]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=l.children(this.headers_el);for(const e of t)e.classList.remove(r.bk_active);t[e].classList.add(r.bk_active);const{child_views:s}=this;for(const e of s)l.hide(e.el);l.show(s[e].el)}}s.TabsView=v,v.__name__="TabsView";class g extends c.LayoutDOM{constructor(e){super(e)}static init_Tabs(){this.prototype.default_view=v,this.define({tabs:[o.Array,[]],tabs_location:[o.Location,"above"],active:[o.Number,0]})}}s.Tabs=g,g.__name__="Tabs",g.init_Tabs();class w extends d.Model{constructor(e){super(e)}static init_Panel(){this.define({title:[o.String,""],child:[o.Instance],closable:[o.Boolean,!1]})}}s.Panel=w,w.__name__="Panel",w.init_Panel()},n”, ” function _(e,b,a){Object.defineProperty(a,"__esModule",{value:!0}),a.bk_tabs_header="bk-tabs-header",a.bk_headers_wrapper="bk-headers-wrapper",a.bk_headers="bk-headers",a.bk_tab="bk-tab",a.bk_close="bk-close"},n”, ” function _(n,b,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_btn="bk-btn",t.bk_btn_group="bk-btn-group",t.bk_btn_default="bk-btn-default",t.bk_btn_primary="bk-btn-primary",t.bk_btn_success="bk-btn-success",t.bk_btn_warning="bk-btn-warning",t.bk_btn_danger="bk-btn-danger",t.bk_btn_type=function(n){switch(n){case"default":return t.bk_btn_default;case"primary":return t.bk_btn_primary;case"success":return t.bk_btn_success;case"warning":return t.bk_btn_warning;case"danger":return t.bk_btn_danger}},t.bk_dropdown_toggle="bk-dropdown-toggle"},n”, ” function _(e,b,d){Object.defineProperty(d,"__esModule",{value:!0}),d.bk_menu="bk-menu",d.bk_caret="bk-caret",d.bk_divider="bk-divider"},n”, ” function _(n,o,b){Object.defineProperty(b,"__esModule",{value:!0});b.default="\n.bk-root .bk-btn {\n height: 100%;\n display: inline-block;\n text-align: center;\n vertical-align: middle;\n white-space: nowrap;\n cursor: pointer;\n padding: 6px 12px;\n font-size: 12px;\n border: 1px solid transparent;\n border-radius: 4px;\n outline: 0;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-btn:hover,\n.bk-root .bk-btn:focus {\n text-decoration: none;\n}\n.bk-root .bk-btn:active,\n.bk-root .bk-btn.bk-active {\n background-image: none;\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.bk-root .bk-btn[disabled] {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n box-shadow: none;\n}\n.bk-root .bk-btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.bk-root .bk-btn-default:hover {\n background-color: #f5f5f5;\n border-color: #b8b8b8;\n}\n.bk-root .bk-btn-default.bk-active {\n background-color: #ebebeb;\n border-color: #adadad;\n}\n.bk-root .bk-btn-default[disabled],\n.bk-root .bk-btn-default[disabled]:hover,\n.bk-root .bk-btn-default[disabled]:focus,\n.bk-root .bk-btn-default[disabled]:active,\n.bk-root .bk-btn-default[disabled].bk-active {\n background-color: #e6e6e6;\n border-color: #ccc;\n}\n.bk-root .bk-btn-primary {\n color: #fff;\n background-color: #428bca;\n border-color: #357ebd;\n}\n.bk-root .bk-btn-primary:hover {\n background-color: #3681c1;\n border-color: #2c699e;\n}\n.bk-root .bk-btn-primary.bk-active {\n background-color: #3276b1;\n border-color: #285e8e;\n}\n.bk-root .bk-btn-primary[disabled],\n.bk-root .bk-btn-primary[disabled]:hover,\n.bk-root .bk-btn-primary[disabled]:focus,\n.bk-root .bk-btn-primary[disabled]:active,\n.bk-root .bk-btn-primary[disabled].bk-active {\n background-color: #506f89;\n border-color: #357ebd;\n}\n.bk-root .bk-btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.bk-root .bk-btn-success:hover {\n background-color: #4eb24e;\n border-color: #409240;\n}\n.bk-root .bk-btn-success.bk-active {\n background-color: #47a447;\n border-color: #398439;\n}\n.bk-root .bk-btn-success[disabled],\n.bk-root .bk-btn-success[disabled]:hover,\n.bk-root .bk-btn-success[disabled]:focus,\n.bk-root .bk-btn-success[disabled]:active,\n.bk-root .bk-btn-success[disabled].bk-active {\n background-color: #667b66;\n border-color: #4cae4c;\n}\n.bk-root .bk-btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.bk-root .bk-btn-warning:hover {\n background-color: #eea43b;\n border-color: #e89014;\n}\n.bk-root .bk-btn-warning.bk-active {\n background-color: #ed9c28;\n border-color: #d58512;\n}\n.bk-root .bk-btn-warning[disabled],\n.bk-root .bk-btn-warning[disabled]:hover,\n.bk-root .bk-btn-warning[disabled]:focus,\n.bk-root .bk-btn-warning[disabled]:active,\n.bk-root .bk-btn-warning[disabled].bk-active {\n background-color: #c89143;\n border-color: #eea236;\n}\n.bk-root .bk-btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.bk-root .bk-btn-danger:hover {\n background-color: #d5433e;\n border-color: #bd2d29;\n}\n.bk-root .bk-btn-danger.bk-active {\n background-color: #d2322d;\n border-color: #ac2925;\n}\n.bk-root .bk-btn-danger[disabled],\n.bk-root .bk-btn-danger[disabled]:hover,\n.bk-root .bk-btn-danger[disabled]:focus,\n.bk-root .bk-btn-danger[disabled]:active,\n.bk-root .bk-btn-danger[disabled].bk-active {\n background-color: #a55350;\n border-color: #d43f3a;\n}\n.bk-root .bk-btn-group {\n height: 100%;\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-btn-group > .bk-btn {\n flex-grow: 1;\n -webkit-flex-grow: 1;\n}\n.bk-root .bk-btn-group > .bk-btn + .bk-btn {\n margin-left: -1px;\n}\n.bk-root .bk-btn-group > .bk-btn:first-child:not(:last-child) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):last-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.bk-root .bk-btn-group .bk-dropdown-toggle {\n flex: 0 0 0;\n -webkit-flex: 0 0 0;\n padding: 6px 6px;\n}\n"},n”, ” function _(n,o,r){Object.defineProperty(r,"__esModule",{value:!0});r.default="\n.bk-root .bk-menu-icon {\n width: 28px;\n height: 28px;\n background-size: 60%;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .bk-context-menu {\n position: absolute;\n display: inline-flex;\n display: -webkit-inline-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n width: auto;\n height: auto;\n z-index: 100;\n cursor: pointer;\n font-size: 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.bk-root .bk-context-menu.bk-horizontal {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-context-menu.bk-vertical {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-context-menu > .bk-divider {\n cursor: default;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.bk-root .bk-context-menu.bk-horizontal > .bk-divider {\n width: 1px;\n margin: 5px 0;\n}\n.bk-root .bk-context-menu.bk-vertical > .bk-divider {\n height: 1px;\n margin: 0 5px;\n}\n.bk-root .bk-context-menu > :not(.bk-divider) {\n border: 1px solid transparent;\n}\n.bk-root .bk-context-menu > :not(.bk-divider).bk-active {\n border-color: #26aae1;\n}\n.bk-root .bk-context-menu > :not(.bk-divider):hover {\n background-color: #f9f9f9;\n}\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child {\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.bk-root .bk-menu {\n position: absolute;\n left: 0;\n width: 100%;\n z-index: 100;\n cursor: pointer;\n font-size: 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.bk-root .bk-menu.bk-above {\n bottom: 100%;\n}\n.bk-root .bk-menu.bk-below {\n top: 100%;\n}\n.bk-root .bk-menu > .bk-divider {\n height: 1px;\n margin: 7.5px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.bk-root .bk-menu > :not(.bk-divider) {\n padding: 6px 12px;\n}\n.bk-root .bk-menu > :not(.bk-divider):hover,\n.bk-root .bk-menu > :not(.bk-divider).bk-active {\n background-color: #e6e6e6;\n}\n.bk-root .bk-caret {\n display: inline-block;\n vertical-align: middle;\n width: 0;\n height: 0;\n margin: 0 5px;\n}\n.bk-root .bk-caret.bk-down {\n border-top: 4px solid;\n}\n.bk-root .bk-caret.bk-up {\n border-bottom: 4px solid;\n}\n.bk-root .bk-caret.bk-down,\n.bk-root .bk-caret.bk-up {\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.bk-root .bk-caret.bk-left {\n border-right: 4px solid;\n}\n.bk-root .bk-caret.bk-right {\n border-left: 4px solid;\n}\n.bk-root .bk-caret.bk-left,\n.bk-root .bk-caret.bk-right {\n border-top: 4px solid transparent;\n border-bottom: 4px solid transparent;\n}\n"},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});n.default=’\n.bk-root .bk-tabs-header {\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n overflow: hidden;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-tabs-header .bk-btn-group {\n height: auto;\n margin-right: 5px;\n}\n.bk-root .bk-tabs-header .bk-btn-group > .bk-btn {\n flex-grow: 0;\n -webkit-flex-grow: 0;\n height: auto;\n padding: 4px 4px;\n}\n.bk-root .bk-tabs-header .bk-headers-wrapper {\n flex-grow: 1;\n -webkit-flex-grow: 1;\n overflow: hidden;\n color: #666666;\n}\n.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper {\n border-bottom: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper {\n border-left: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper {\n border-top: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper {\n border-right: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-above,\n.bk-root .bk-tabs-header.bk-below {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-tabs-header.bk-above .bk-headers,\n.bk-root .bk-tabs-header.bk-below .bk-headers {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-tabs-header.bk-left,\n.bk-root .bk-tabs-header.bk-right {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-tabs-header.bk-left .bk-headers,\n.bk-root .bk-tabs-header.bk-right .bk-headers {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-tabs-header .bk-headers {\n position: relative;\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n}\n.bk-root .bk-tabs-header .bk-tab {\n padding: 4px 8px;\n border: solid transparent;\n white-space: nowrap;\n cursor: pointer;\n}\n.bk-root .bk-tabs-header .bk-tab:hover {\n background-color: #f2f2f2;\n}\n.bk-root .bk-tabs-header .bk-tab.bk-active {\n color: #4d4d4d;\n background-color: white;\n border-color: #e6e6e6;\n}\n.bk-root .bk-tabs-header .bk-tab .bk-close {\n margin-left: 10px;\n}\n.bk-root .bk-tabs-header.bk-above .bk-tab {\n border-width: 3px 1px 0px 1px;\n border-radius: 4px 4px 0 0;\n}\n.bk-root .bk-tabs-header.bk-right .bk-tab {\n border-width: 1px 3px 1px 0px;\n border-radius: 0 4px 4px 0;\n}\n.bk-root .bk-tabs-header.bk-below .bk-tab {\n border-width: 0px 1px 3px 1px;\n border-radius: 0 0 4px 4px;\n}\n.bk-root .bk-tabs-header.bk-left .bk-tab {\n border-width: 1px 0px 1px 3px;\n border-radius: 4px 0 0 4px;\n}\n.bk-root .bk-close {\n display: inline-block;\n width: 10px;\n height: 10px;\n vertical-align: middle;\n background-image: url(\’data:image/svg+xml;utf8, <svg viewPort="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg"> <line x1="1" y1="9" x2="9" y2="1" stroke="gray" stroke-width="2"/> <line x1="1" y1="1" x2="9" y2="9" stroke="gray" stroke-width="2"/> </svg>\’);\n}\n.bk-root .bk-close:hover {\n background-image: url(\’data:image/svg+xml;utf8, <svg viewPort="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg"> <line x1="1" y1="9" x2="9" y2="1" stroke="red" stroke-width="2"/> <line x1="1" y1="1" x2="9" y2="9" stroke="red" stroke-width="2"/> </svg>\’);\n}\n’},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e(274);class _ extends o.ColumnView{}i.WidgetBoxView=_,_.__name__="WidgetBoxView";class n extends o.Column{constructor(e){super(e)}static init_WidgetBox(){this.prototype.default_view=_}}i.WidgetBox=n,n.__name__="WidgetBox",n.init_WidgetBox()},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});e(1).__exportStar(e(288),t);var a=e(289);t.Marker=a.Marker;var _=e(290);t.Scatter=_.Scatter},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const i=e(1),r=e(289),n=i.__importStar(e(238)),s=Math.sqrt(3);function c(e,t){e.rotate(Math.PI/4),a(e,t),e.rotate(-Math.PI/4)}function l(e,t){const o=t*s,i=o/3;e.moveTo(-o/2,-i),e.lineTo(0,0),e.lineTo(o/2,-i),e.lineTo(0,0),e.lineTo(0,t)}function a(e,t){e.moveTo(0,t),e.lineTo(0,-t),e.moveTo(-t,0),e.lineTo(t,0)}function u(e,t){e.moveTo(0,t),e.lineTo(t/1.5,0),e.lineTo(0,-t),e.lineTo(-t/1.5,0),e.closePath()}function d(e,t){const o=t*s,i=o/3;e.moveTo(-t,i),e.lineTo(t,i),e.lineTo(0,i-o),e.closePath()}function v(e,t,o,i,r){a(e,o),c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function _(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function f(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function T(e,t,o,i,r){_(e,t,o,i,r),P(e,t,o,i,r)}function z(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),l(e,o),e.stroke())}function C(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),c(e,o),e.stroke())}function k(e,t,o,i,r){a(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function m(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function h(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(0,o),e.lineTo(0,-o),e.moveTo(-o/1.5,0),e.lineTo(o/1.5,0),e.stroke())}function q(e,t,o,i,r){m(e,t,o,i,r),P(e,t,o,i,r)}function P(e,t,o,i,r){!function(e,t){e.beginPath(),e.arc(0,0,t/4,0,2*Math.PI,!1),e.closePath()}(e,o),i.set_vectorize(e,t),e.fillStyle=e.strokeStyle,e.fill()}function D(e,t,o,i,r){!function(e,t){const o=t/2,i=s*o;e.moveTo(t,0),e.lineTo(o,-i),e.lineTo(-o,-i),e.lineTo(-t,0),e.lineTo(-o,i),e.lineTo(o,i),e.closePath()}(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function g(e,t,o,i,r){D(e,t,o,i,r),P(e,t,o,i)}function S(e,t,o,i,r){e.rotate(Math.PI),d(e,o),e.rotate(-Math.PI),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function G(e,t,o,i,r){const n=3*o/8,s=[n,n,o,o,n,n,-n,-n,-o,-o,-n,-n],c=[o,n,n,-n,-n,-o,-o,-n,-n,n,n,o];for(e.moveTo(s[0],c[0]),t=1;t<12;t++)e.lineTo(s[t],c[t]);e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function L(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function M(e,t,o,i,r){const n=3*o/8;e.moveTo(-o,-o),e.quadraticCurveTo(0,-n,o,-o),e.quadraticCurveTo(n,0,o,o),e.quadraticCurveTo(0,n,-o,o),e.quadraticCurveTo(-n,0,-o,-o),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function p(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function x(e,t,o,i,r){L(e,t,o,i,r),P(e,t,o,i)}function I(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(-o,o),e.lineTo(o,-o),e.moveTo(-o,-o),e.lineTo(o,o),e.stroke())}function y(e,t,o,i,r){d(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function X(e,t,o,i,r){y(e,t,o,i,r),P(e,t,o,i)}function H(e,t,o,i,r){const n=o*s,c=n/3,l=3*c/8;e.moveTo(-o,c),e.quadraticCurveTo(0,l,o,c),e.quadraticCurveTo(s*l/2,l/2,0,c-n),e.quadraticCurveTo(-s*l/2,l/2,-o,c),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function Y(e,t,o,i,r){!function(e,t){e.moveTo(-t,0),e.lineTo(t,0)}(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function A(e,t,o,i,r){c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function b(e,t,o,i,r){l(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function w(e,t,o){var i;const n=class extends r.MarkerView{static initClass(){this.prototype._render_one=t,this.prototype.glglyph_cls=o}};n.initClass();const s=((i=class extends r.Marker{static initClass(){this.prototype.default_view=n}}).__name__=e,i);return s.initClass(),s}o.Asterisk=w("Asterisk",v,n.AsteriskGL),o.CircleCross=w("CircleCross",f,n.CircleCrossGL),o.CircleDot=w("CircleDot",T),o.CircleY=w("CircleY",z),o.CircleX=w("CircleX",C,n.CircleXGL),o.Cross=w("Cross",k,n.CrossGL),o.Dash=w("Dash",Y),o.Diamond=w("Diamond",m,n.DiamondGL),o.DiamondCross=w("DiamondCross",h,n.DiamondCrossGL),o.DiamondDot=w("DiamondDot",q),o.Dot=w("Dot",P),o.Hex=w("Hex",D,n.HexGL),o.HexDot=w("HexDot",g),o.InvertedTriangle=w("InvertedTriangle",S,n.InvertedTriangleGL),o.Plus=w("Plus",G),o.Square=w("Square",L,n.SquareGL),o.SquareCross=w("SquareCross",p,n.SquareCrossGL),o.SquareDot=w("SquareDot",x),o.SquarePin=w("SquarePin",M),o.SquareX=w("SquareX",I,n.SquareXGL),o.Triangle=w("Triangle",y,n.TriangleGL),o.TriangleDot=w("TriangleDot",X),o.TrianglePin=w("TrianglePin",H),o.X=w("X",A,n.XGL),o.Y=w("Y",b),o.marker_funcs={asterisk:v,circle:_,circle_cross:f,circle_dot:T,circle_y:z,circle_x:C,cross:k,diamond:m,diamond_dot:q,diamond_cross:h,dot:P,hex:D,hex_dot:g,inverted_triangle:S,plus:G,square:L,square_cross:p,square_dot:x,square_pin:M,square_x:I,triangle:y,triangle_dot:X,triangle_pin:H,dash:Y,x:A,y:b}},n”, ” function _(e,s,i){Object.defineProperty(i,"__esModule",{value:!0});const t=e(1),n=e(93),r=e(28),a=t.__importStar(e(101)),_=t.__importStar(e(18)),h=e(9),l=e(88);class c extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&null!=this.glglyph_cls&&(this.glglyph=new this.glglyph_cls(e.gl,this))}_render(e,s,{sx:i,sy:t,_size:n,_angle:r}){for(const a of s){if(isNaN(i[a]+t[a]+n[a]+r[a]))continue;const s=n[a]/2;e.beginPath(),e.translate(i[a],t[a]),r[a]&&e.rotate(r[a]),this._render_one(e,a,s,this.visuals.line,this.visuals.fill),r[a]&&e.rotate(-r[a]),e.translate(-i[a],-t[a])}}_mask_data(){const e=this.renderer.plot_view.frame.bbox.h_range,s=e.start-this.max_size,i=e.end+this.max_size,[t,n]=this.renderer.xscale.r_invert(s,i),r=this.renderer.plot_view.frame.bbox.v_range,a=r.start-this.max_size,_=r.end+this.max_size,[h,l]=this.renderer.yscale.r_invert(a,_);return this.index.indices({x0:t,x1:n,y0:h,y1:l})}_hit_point(e){const{sx:s,sy:i}=e,t=s-this.max_size,n=s+this.max_size,[r,a]=this.renderer.xscale.r_invert(t,n),_=i-this.max_size,h=i+this.max_size,[c,o]=this.renderer.yscale.r_invert(_,h),x=this.index.indices({x0:r,x1:a,y0:c,y1:o}),d=[];for(const e of x){const t=this._size[e]/2;Math.abs(this.sx[e]-s)<=t&&Math.abs(this.sy[e]-i)<=t&&d.push(e)}return new l.Selection({indices:d})}_hit_span(e){const{sx:s,sy:i}=e,t=this.bounds(),n=this.max_size/2;let r,a,_,h;if("h"==e.direction){_=t.y0,h=t.y1;const e=s-n,i=s+n;[r,a]=this.renderer.xscale.r_invert(e,i)}else{r=t.x0,a=t.x1;const e=i-n,s=i+n;[_,h]=this.renderer.yscale.r_invert(e,s)}const c=[…this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_rect(e){const{sx0:s,sx1:i,sy0:t,sy1:n}=e,[r,a]=this.renderer.xscale.r_invert(s,i),[_,h]=this.renderer.yscale.r_invert(t,n),c=[…this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_poly(e){const{sx:s,sy:i}=e,t=h.range(0,this.sx.length),n=[];for(let e=0,r=t.length;e<r;e++){const r=t[e];a.point_in_poly(this.sx[e],this.sy[e],s,i)&&n.push(r)}return new l.Selection({indices:n})}_get_legend_args({x0:e,x1:s,y0:i,y1:t},n){const r=n+1,a=new Array(r);a[n]=(e+s)/2;const _=new Array(r);_[n]=(i+t)/2;const h=new Array(r);h[n]=.4*Math.min(Math.abs(s-e),Math.abs(t-i));const l=new Array(r);return l[n]=0,{sx:a,sy:_,_size:h,_angle:l}}draw_legend_for_index(e,{x0:s,x1:i,y0:t,y1:n},r){const a=this._get_legend_args({x0:s,x1:i,y0:t,y1:n},r);this._render(e,[r],a)}}i.MarkerView=c,c.__name__="MarkerView";class o extends n.XYGlyph{constructor(e){super(e)}static init_Marker(){this.mixins([r.LineVector,r.FillVector]),this.define({size:[_.DistanceSpec,{units:"screen",value:4}],angle:[_.AngleSpec,0]})}}i.Marker=o,o.__name__="Marker",o.init_Marker()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=e(1),s=e(289),i=e(288),n=a.__importStar(e(18));class _ extends s.MarkerView{_render(e,t,{sx:r,sy:a,_size:s,_angle:n,_marker:_}){for(const c of t){if(isNaN(r[c]+a[c]+s[c]+n[c])||null==_[c])continue;const t=s[c]/2;e.beginPath(),e.translate(r[c],a[c]),n[c]&&e.rotate(n[c]),i.marker_funcs[_[c]](e,c,t,this.visuals.line,this.visuals.fill),n[c]&&e.rotate(-n[c]),e.translate(-r[c],-a[c])}}draw_legend_for_index(e,{x0:t,x1:r,y0:a,y1:s},i){const n=this._get_legend_args({x0:t,x1:r,y0:a,y1:s},i),_=new Array(i+1);_[i]=this._marker[i],n._marker=_,this._render(e,[i],n)}}r.ScatterView=_,_.__name__="ScatterView";class c extends s.Marker{constructor(e){super(e)}static init_Scatter(){this.prototype.default_view=_,this.define({marker:[n.MarkerSpec,{value:"circle"}]})}}r.Scatter=c,c.__name__="Scatter",c.init_Scatter()},n”, ” function _(a,o,p){Object.defineProperty(p,"__esModule",{value:!0});var t=a(292);p.MapOptions=t.MapOptions;var e=a(292);p.GMapOptions=e.GMapOptions;var n=a(292);p.GMapPlot=n.GMapPlot;var M=a(293);p.Plot=M.Plot},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),n=t(19),a=t(293),s=o.__importStar(t(18)),p=t(81),r=t(158),_=t(319);i.GMapPlotView=_.GMapPlotView;class l extends p.Model{constructor(t){super(t)}static init_MapOptions(){this.define({lat:[s.Number],lng:[s.Number],zoom:[s.Number,12]})}}i.MapOptions=l,l.__name__="MapOptions",l.init_MapOptions();class c extends l{constructor(t){super(t)}static init_GMapOptions(){this.define({map_type:[s.String,"roadmap"],scale_control:[s.Boolean,!1],styles:[s.String],tilt:[s.Int,45]})}}i.GMapOptions=c,c.__name__="GMapOptions",c.init_GMapOptions();class u extends a.Plot{constructor(t){super(t)}static init_GMapPlot(){this.prototype.default_view=_.GMapPlotView,this.define({map_options:[s.Instance],api_key:[s.String]}),this.override({x_range:()=>new r.Range1d,y_range:()=>new r.Range1d})}initialize(){super.initialize(),this.use_map=!0,this.api_key||n.logger.error("api_key is required. See https://developers.google.com/maps/documentation/javascript/get-api-key for more information on how to obtain your own.")}}i.GMapPlot=u,u.__name__="GMapPlot",u.init_GMapPlot()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1),o=i.__importStar(e(28)),n=i.__importStar(e(18)),s=e(15),a=e(9),l=e(13),_=e(8),h=e(272),c=e(169),u=e(145),d=e(294),b=e(85),g=e(90),p=e(210),m=e(312);r.PlotView=m.PlotView;class f extends h.LayoutDOM{constructor(e){super(e)}static init_Plot(){this.prototype.default_view=m.PlotView,this.mixins([["outline_",o.Line],["background_",o.Fill],["border_",o.Fill]]),this.define({toolbar:[n.Instance,()=>new d.Toolbar],toolbar_location:[n.Location,"right"],toolbar_sticky:[n.Boolean,!0],plot_width:[n.Number,600],plot_height:[n.Number,600],frame_width:[n.Number,null],frame_height:[n.Number,null],title:[n.Any,()=>new c.Title({text:""})],title_location:[n.Location,"above"],above:[n.Array,[]],below:[n.Array,[]],left:[n.Array,[]],right:[n.Array,[]],center:[n.Array,[]],renderers:[n.Array,[]],x_range:[n.Instance,()=>new p.DataRange1d],extra_x_ranges:[n.Any,{}],y_range:[n.Instance,()=>new p.DataRange1d],extra_y_ranges:[n.Any,{}],x_scale:[n.Instance,()=>new u.LinearScale],y_scale:[n.Instance,()=>new u.LinearScale],lod_factor:[n.Number,10],lod_interval:[n.Number,300],lod_threshold:[n.Number,2e3],lod_timeout:[n.Number,500],hidpi:[n.Boolean,!0],output_backend:[n.OutputBackend,"canvas"],min_border:[n.Number,5],min_border_top:[n.Number,null],min_border_left:[n.Number,null],min_border_bottom:[n.Number,null],min_border_right:[n.Number,null],inner_width:[n.Number],inner_height:[n.Number],outer_width:[n.Number],outer_height:[n.Number],match_aspect:[n.Boolean,!1],aspect_scale:[n.Number,1],reset_policy:[n.ResetPolicy,"standard"]}),this.override({outline_line_color:"#e5e5e5",border_fill_color:"#ffffff",background_fill_color:"#ffffff"})}get width(){const e=this.properties.width.get_value();return null!=e?e:this.plot_width}set width(e){this.setv({width:e,plot_width:e})}get height(){const e=this.properties.height.get_value();return null!=e?e:this.plot_height}set height(e){this.setv({height:e,plot_height:e})}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new s.Signal0(this,"reset");for(const e of l.values(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of l.values(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t="center"){const r=this.properties[t].get_value();this.setv({[t]:[…r,e]})}remove_layout(e){const t=t=>{a.remove_by(t,t=>t==e)};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}add_renderers(…e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new b.ColumnDataSource,r={}){const i=Object.assign(Object.assign({},r),{data_source:t,glyph:e}),o=new g.GlyphRenderer(i);return this.add_renderers(o),o}add_tools(…e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[…this.side_panels,…this.center]}get side_panels(){const{above:e,below:t,left:r,right:i}=this;return a.concat([e,t,r,i])}}r.Plot=f,f.__name__="Plot",f.init_Plot()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1).__importStar(t(18)),c=t(8),o=t(9),n=t(13),a=t(295),l=t(305),r=t=>{switch(t){case"tap":return"active_tap";case"pan":return"active_drag";case"pinch":case"scroll":return"active_scroll";case"multi":return"active_multi"}return null},_=t=>"tap"==t||"pan"==t;class h extends l.ToolbarBase{constructor(t){super(t)}static init_Toolbar(){this.prototype.default_view=l.ToolbarBaseView,this.define({active_drag:[s.Any,"auto"],active_inspect:[s.Any,"auto"],active_scroll:[s.Any,"auto"],active_tap:[s.Any,"auto"],active_multi:[s.Any,null]})}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:i,active_scroll:s,active_tap:c,active_multi:o}=this.properties;this.on_change([t,e,i,s,c,o],()=>this._init_tools())}_init_tools(){if(super._init_tools(),"auto"==this.active_inspect);else if(this.active_inspect instanceof a.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if(c.isArray(this.active_inspect)){const t=o.intersection(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)o.includes(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of n.values(this.gestures)){t.tools=o.sort_by(t.tools,t=>t.default_order);for(const e of t.tools)this.connect(e.properties.active.change,()=>this._active_change(e))}for(const[e,i]of n.entries(this.gestures)){const s=r(e);if(s){const c=this[s];"auto"==c?0!=i.tools.length&&_(e)&&t(i.tools[0]):null!=c&&(o.includes(this.tools,c)?t(c):this[s]=null)}}}}i.Toolbar=h,h.__name__="Toolbar",h.init_Toolbar()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const n=e(1),s=e(296),i=e(304),_=n.__importStar(e(18));class c extends s.ButtonToolView{}o.InspectToolView=c,c.__name__="InspectToolView";class l extends s.ButtonTool{constructor(e){super(e),this.event_type="move"}static init_InspectTool(){this.prototype.button_view=i.OnOffButtonView,this.define({toggleable:[_.Boolean,!0]}),this.override({active:!0})}}o.InspectTool=l,l.__name__="InspectTool",l.init_InspectTool()},n”, ” function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const i=t(1),s=i.__importDefault(t(297)),n=t(78),l=t(298),r=t(72),a=i.__importStar(t(18)),u=t(29),_=t(8),h=t(9),c=t(299),m=i.__importDefault(t(300)),d=i.__importDefault(t(301)),p=i.__importDefault(t(284)),f=t(302);class g extends n.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o="left"==e||"above"==e,i=this.parent.model.horizontal?"vertical":"horizontal";this._menu=new f.ContextMenu(o?h.reversed(t):t,{orientation:i,prevent_hide:t=>t.target==this.el})}this._hammer=new s.default(this.el,{touchAction:"auto",inputClass:s.default.TouchMouseInput}),this.connect(this.model.change,()=>this.render()),this._hammer.on("tap",t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()}),this._hammer.on("press",()=>this._pressed())}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[…super.styles(),m.default,d.default,p.default]}css_classes(){return super.css_classes().concat(c.bk_toolbar_button)}render(){r.empty(this.el);const t=this.model.computed_icon;_.isString(t)&&(u.startsWith(t,"data:image")?this.el.style.backgroundImage="url(’"+t+"’)":this.el.classList.add(t)),this.el.title=this.model.tooltip,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const{left:e,top:o,right:i,bottom:s}=this.el.getBoundingClientRect(),n=(()=>{switch(this.parent.model.toolbar_location){case"right":return{right:e,top:o};case"left":return{left:i,top:o};case"above":return{left:e,top:s};case"below":return{left:e,bottom:o}}})();null===(t=this._menu)||void 0===t||t.toggle(n)}}o.ButtonToolButtonView=g,g.__name__="ButtonToolButtonView";class v extends l.ToolView{}o.ButtonToolView=v,v.__name__="ButtonToolView";class b extends l.Tool{constructor(t){super(t)}static init_ButtonTool(){this.internal({disabled:[a.Boolean,!1]})}get tooltip(){return this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=b,b.__name__="ButtonTool",b.init_ButtonTool()},n”, ” function _(t,e,n){n”, ” /! Hammer.JS - v2.0.7 - 2016-04-22n”, ” * http://hammerjs.github.io/n”, ” *n”, ” * Copyright (c) 2016 Jorik Tangelder;n”, ” * Licensed under the MIT license */n”, ” !function(t,n,i,r){"use strict";var s,o=["","webkit","Moz","MS","ms","o"],a=n.createElement("div"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,n){return setTimeout(y(t,n),e)}function p(t,e,n){return!!Array.isArray(t)&&(f(t,n[e],n),!0)}function f(t,e,n){var i;if(t)if(t.forEach)t.forEach(e,n);else if(void 0!==t.length)for(i=0;i<t.length;)e.call(n,t[i],i,t),i++;else for(i in t)t.hasOwnProperty(i)&&e.call(n,t[i],i,t)}function v(e,n,i){var r="DEPRECATED METHOD: "+n+"\n"+i+" AT \n";return function(){var n=new Error("get-stack-trace"),i=n&&n.stack?n.stack.replace(/^[^\(]+?[\n$]/gm,"").replace(/^\s+at\s+/gm,"").replace(/^Object.<anonymous>\s\(/gm,"{anonymous}()@"):"Unknown Stack Trace",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,i),e.apply(this,arguments)}}s="function"!=typeof Object.assign?function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),n=1;n<arguments.length;n++){var i=arguments[n];if(null!=i)for(var r in i)i.hasOwnProperty(r)&&(e[r]=i[r])}return e}:Object.assign;var d=v((function(t,e,n){for(var i=Object.keys(e),r=0;r<i.length;)(!n||n&&void 0===t[i[r]])&&(t[i[r]]=e[i[r]]),r++;return t}),"extend","Use assign."),m=v((function(t,e){return d(t,e,!0)}),"merge","Use assign.");function g(t,e,n){var i,r=e.prototype;(i=t.prototype=Object.create(r)).constructor=t,i._super=r,n&&s(i,n)}function y(t,e){return function(){return t.apply(e,arguments)}}function T(t,e){return"function"==typeof t?t.apply(e&&e[0]||void 0,e):t}function E(t,e){return void 0===t?e:t}function I(t,e,n){f(S(e),(function(e){t.addEventListener(e,n,!1)}))}function A(t,e,n){f(S(e),(function(e){t.removeEventListener(e,n,!1)}))}function _(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1}function C(t,e){return t.indexOf(e)>-1}function S(t){return t.trim().split(/\s+/g)}function b(t,e,n){if(t.indexOf&&!n)return t.indexOf(e);for(var i=0;i<t.length;){if(n&&t[i][n]==e||!n&&t[i]===e)return i;i++}return-1}function x(t){return Array.prototype.slice.call(t,0)}function P(t,e,n){for(var i=[],r=[],s=0;s<t.length;){var o=e?t[s][e]:t[s];b(r,o)<0&&i.push(t[s]),r[s]=o,s++}return n&&(i=e?i.sort((function(t,n){return t[e]>n[e]})):i.sort()),i}function D(t,e){for(var n,i,r=e[0].toUpperCase()+e.slice(1),s=0;s<o.length;){if((i=(n=o[s])?n+r:e)in t)return i;s++}}var w=1;function O(e){var n=e.ownerDocument||e;return n.defaultView||n.parentWindow||t}var R="ontouchstart"in t,M=void 0!==D(t,"PointerEvent"),z=R&&/mobile|tablet|ip(ad|hone|od)|android/i.test(navigator.userAgent),N=["x","y"],X=["clientX","clientY"];function Y(t,e){var n=this;this.manager=t,this.callback=e,this.element=t.element,this.target=t.options.inputTarget,this.domHandler=function(e){T(t.options.enable,[t])&&n.handler(e)},this.init()}function F(t,e,n){var i=n.pointers.length,r=n.changedPointers.length,s=1&e&&i-r==0,o=12&e&&i-r==0;n.isFirst=!!s,n.isFinal=!!o,s&&(t.session={}),n.eventType=e,function(t,e){var n=t.session,i=e.pointers,r=i.length;n.firstInput||(n.firstInput=W(e));r>1&&!n.firstMultiple?n.firstMultiple=W(e):1===r&&(n.firstMultiple=!1);var s=n.firstInput,o=n.firstMultiple,a=o?o.center:s.center,h=e.center=q(i);e.timeStamp=c(),e.deltaTime=e.timeStamp-s.timeStamp,e.angle=U(a,h),e.distance=L(a,h),function(t,e){var n=e.center,i=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},i=t.offsetDelta={x:n.x,y:n.y});e.deltaX=r.x+(n.x-i.x),e.deltaY=r.y+(n.y-i.y)}(n,e),e.offsetDirection=H(e.deltaX,e.deltaY);var l=k(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=l.x,e.overallVelocityY=l.y,e.overallVelocity=u(l.x)>u(l.y)?l.x:l.y,e.scale=o?(p=o.pointers,f=i,L(f[0],f[1],X)/L(p[0],p[1],X)):1,e.rotation=o?function(t,e){return U(e[1],e[0],X)+U(t[1],t[0],X)}(o.pointers,i):0,e.maxPointers=n.prevInput?e.pointers.length>n.prevInput.maxPointers?e.pointers.length:n.prevInput.maxPointers:e.pointers.length,function(t,e){var n,i,r,s,o=t.lastInterval||e,a=e.timeStamp-o.timeStamp;if(8!=e.eventType&&(a>25||void 0===o.velocity)){var h=e.deltaX-o.deltaX,c=e.deltaY-o.deltaY,l=k(a,h,c);i=l.x,r=l.y,n=u(l.x)>u(l.y)?l.x:l.y,s=H(h,c),t.lastInterval=e}else n=o.velocity,i=o.velocityX,r=o.velocityY,s=o.direction;e.velocity=n,e.velocityX=i,e.velocityY=r,e.direction=s}(n,e);var p,f;var v=t.element;_(e.srcEvent.target,v)&&(v=e.srcEvent.target);e.target=v}(t,n),t.emit("hammer.input",n),t.recognize(n),t.session.prevInput=n}function W(t){for(var e=[],n=0;n<t.pointers.length;)e[n]={clientX:h(t.pointers[n].clientX),clientY:h(t.pointers[n].clientY)},n++;return{timeStamp:c(),pointers:e,center:q(e),deltaX:t.deltaX,deltaY:t.deltaY}}function q(t){var e=t.length;if(1===e)return{x:h(t[0].clientX),y:h(t[0].clientY)};for(var n=0,i=0,r=0;r<e;)n+=t[r].clientX,i+=t[r].clientY,r++;return{x:h(n/e),y:h(i/e)}}function k(t,e,n){return{x:e/t||0,y:n/t||0}}function H(t,e){return t===e?1:u(t)>=u(e)?t<0?2:4:e<0?8:16}function L(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return Math.sqrt(i*i+r*r)}function U(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return 180*Math.atan2(r,i)/Math.PI}Y.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var V={mousedown:1,mousemove:2,mouseup:4};function j(){this.evEl="mousedown",this.evWin="mousemove mouseup",this.pressed=!1,Y.apply(this,arguments)}g(j,Y,{handler:function(t){var e=V[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:"mouse",srcEvent:t}))}});var G={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Z={2:"touch",3:"pen",4:"mouse",5:"kinect"},B="pointerdown",$="pointermove pointerup pointercancel";function J(){this.evEl=B,this.evWin=$,Y.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(B="MSPointerDown",$="MSPointerMove MSPointerUp MSPointerCancel"),g(J,Y,{handler:function(t){var e=this.store,n=!1,i=t.type.toLowerCase().replace("ms",""),r=G[i],s=Z[t.pointerType]||t.pointerType,o="touch"==s,a=b(e,t.pointerId,"pointerId");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(n=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),n&&e.splice(a,1))}});var K={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function Q(){this.evTarget="touchstart",this.evWin="touchstart touchmove touchend touchcancel",this.started=!1,Y.apply(this,arguments)}function tt(t,e){var n=x(t.touches),i=x(t.changedTouches);return 12&e&&(n=P(n.concat(i),"identifier",!0)),[n,i]}g(Q,Y,{handler:function(t){var e=K[t.type];if(1===e&&(this.started=!0),this.started){var n=tt.call(this,t,e);12&e&&n[0].length-n[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}}});var et={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function nt(){this.evTarget="touchstart touchmove touchend touchcancel",this.targetIds={},Y.apply(this,arguments)}function it(t,e){var n=x(t.touches),i=this.targetIds;if(3&e&&1===n.length)return i[n[0].identifier]=!0,[n,n];var r,s,o=x(t.changedTouches),a=[],h=this.target;if(s=n.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r<s.length;)i[s[r].identifier]=!0,r++;for(r=0;r<o.length;)i[o[r].identifier]&&a.push(o[r]),12&e&&delete i[o[r].identifier],r++;return a.length?[P(s.concat(a),"identifier",!0),a]:void 0}g(nt,Y,{handler:function(t){var e=et[t.type],n=it.call(this,t,e);n&&this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}});function rt(){Y.apply(this,arguments);var t=y(this.handler,this);this.touch=new nt(this.manager,t),this.mouse=new j(this.manager,t),this.primaryTouch=null,this.lastTouches=[]}function st(t,e){1&t?(this.primaryTouch=e.changedPointers[0].identifier,ot.call(this,e)):12&t&&ot.call(this,e)}function ot(t){var e=t.changedPointers[0];if(e.identifier===this.primaryTouch){var n={x:e.clientX,y:e.clientY};this.lastTouches.push(n);var i=this.lastTouches;setTimeout((function(){var t=i.indexOf(n);t>-1&&i.splice(t,1)}),2500)}}function at(t){for(var e=t.srcEvent.clientX,n=t.srcEvent.clientY,i=0;i<this.lastTouches.length;i++){var r=this.lastTouches[i],s=Math.abs(e-r.x),o=Math.abs(n-r.y);if(s<=25&&o<=25)return!0}return!1}g(rt,Y,{handler:function(t,e,n){var i="touch"==n.pointerType,r="mouse"==n.pointerType;if(!(r&&n.sourceCapabilities&&n.sourceCapabilities.firesTouchEvents)){if(i)st.call(this,e,n);else if(r&&at.call(this,n))return;this.callback(t,e,n)}},destroy:function(){this.touch.destroy(),this.mouse.destroy()}});var ht=D(a.style,"touchAction"),ut=void 0!==ht,ct=function(){if(!ut)return!1;var e={},n=t.CSS&&t.CSS.supports;return["auto","manipulation","pan-y","pan-x","pan-x pan-y","none"].forEach((function(i){e[i]=!n||t.CSS.supports("touch-action",i)})),e}();function lt(t,e){this.manager=t,this.set(e)}lt.prototype={set:function(t){"compute"==t&&(t=this.compute()),ut&&this.manager.element.style&&ct[t]&&(this.manager.element.style[ht]=t),this.actions=t.toLowerCase().trim()},update:function(){this.set(this.manager.options.touchAction)},compute:function(){var t=[];return f(this.manager.recognizers,(function(e){T(e.options.enable,[e])&&(t=t.concat(e.getTouchAction()))})),function(t){if(C(t,"none"))return"none";var e=C(t,"pan-x"),n=C(t,"pan-y");if(e&&n)return"none";if(e||n)return e?"pan-x":"pan-y";if(C(t,"manipulation"))return"manipulation";return"auto"}(t.join(" "))},preventDefaults:function(t){var e=t.srcEvent,n=t.offsetDirection;if(this.manager.session.prevented)e.preventDefault();else{var i=this.actions,r=C(i,"none")&&!ct.none,s=C(i,"pan-y")&&!ct["pan-y"],o=C(i,"pan-x")&&!ct["pan-x"];if(r){var a=1===t.pointers.length,h=t.distance<2,u=t.deltaTime<250;if(a&&h&&u)return}if(!o||!s)return r||s&&6&n||o&&24&n?this.preventSrc(e):void 0}},preventSrc:function(t){this.manager.session.prevented=!0,t.preventDefault()}};function pt(t){this.options=s({},this.defaults,t||{}),this.id=w++,this.manager=null,this.options.enable=E(this.options.enable,!0),this.state=1,this.simultaneous={},this.requireFail=[]}function ft(t){return 16&t?"cancel":8&t?"end":4&t?"move":2&t?"start":""}function vt(t){return 16==t?"down":8==t?"up":2==t?"left":4==t?"right":""}function dt(t,e){var n=e.manager;return n?n.get(t):t}function mt(){pt.apply(this,arguments)}function gt(){mt.apply(this,arguments),this.pX=null,this.pY=null}function yt(){mt.apply(this,arguments)}function Tt(){pt.apply(this,arguments),this._timer=null,this._input=null}function Et(){mt.apply(this,arguments)}function It(){mt.apply(this,arguments)}function At(){pt.apply(this,arguments),this.pTime=!1,this.pCenter=!1,this._timer=null,this._input=null,this.count=0}function _t(t,e){return(e=e||{}).recognizers=E(e.recognizers,_t.defaults.preset),new Ct(t,e)}pt.prototype={defaults:{},set:function(t){return s(this.options,t),this.manager&&this.manager.touchAction.update(),this},recognizeWith:function(t){if(p(t,"recognizeWith",this))return this;var e=this.simultaneous;return e[(t=dt(t,this)).id]||(e[t.id]=t,t.recognizeWith(this)),this},dropRecognizeWith:function(t){return p(t,"dropRecognizeWith",this)||(t=dt(t,this),delete this.simultaneous[t.id]),this},requireFailure:function(t){if(p(t,"requireFailure",this))return this;var e=this.requireFail;return-1===b(e,t=dt(t,this))&&(e.push(t),t.requireFailure(this)),this},dropRequireFailure:function(t){if(p(t,"dropRequireFailure",this))return this;t=dt(t,this);var e=b(this.requireFail,t);return e>-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,n=this.state;function i(n){e.manager.emit(n,t)}n<8&&i(e.options.event+ft(n)),i(e.options.event),t.additionalEvent&&i(t.additionalEvent),n>=8&&i(e.options.event+ft(n))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=32},canEmit:function(){for(var t=0;t<this.requireFail.length;){if(!(33&this.requireFail[t].state))return!1;t++}return!0},recognize:function(t){var e=s({},t);if(!T(this.options.enable,[this,e]))return this.reset(),void(this.state=32);56&this.state&&(this.state=1),this.state=this.process(e),30&this.state&&this.tryEmit(e)},process:function(t){},getTouchAction:function(){},reset:function(){}},g(mt,pt,{defaults:{pointers:1},attrTest:function(t){var e=this.options.pointers;return 0===e||t.pointers.length===e},process:function(t){var e=this.state,n=t.eventType,i=6&e,r=this.attrTest(t);return i&&(8&n||!r)?16|e:i||r?4&n?8|e:2&e?4|e:2:32}}),g(gt,mt,{defaults:{event:"pan",threshold:10,pointers:1,direction:30},getTouchAction:function(){var t=this.options.direction,e=[];return 6&t&&e.push("pan-y"),24&t&&e.push("pan-x"),e},directionTest:function(t){var e=this.options,n=!0,i=t.distance,r=t.direction,s=t.deltaX,o=t.deltaY;return r&e.direction||(6&e.direction?(r=0===s?1:s<0?2:4,n=s!=this.pX,i=Math.abs(t.deltaX)):(r=0===o?1:o<0?8:16,n=o!=this.pY,i=Math.abs(t.deltaY))),t.direction=r,n&&i>e.threshold&&r&e.direction},attrTest:function(t){return mt.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=vt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(yt,mt,{defaults:{event:"pinch",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?"in":"out";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(Tt,pt,{defaults:{event:"press",pointers:1,time:251,threshold:9},getTouchAction:function(){return["auto"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance<e.threshold,r=t.deltaTime>e.time;if(this._input=t,!i||!n||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return 32},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+"up",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Et,mt,{defaults:{event:"rotate",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(It,mt,{defaults:{event:"swipe",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return gt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,n=this.options.direction;return 30&n?e=t.overallVelocity:6&n?e=t.overallVelocityX:24&n&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&n&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=vt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(At,pt,{defaults:{event:"tap",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return["manipulation"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance<e.threshold,r=t.deltaTime<e.time;if(this.reset(),1&t.eventType&&0===this.count)return this.failTimeout();if(i&&r&&n){if(4!=t.eventType)return this.failTimeout();var s=!this.pTime||t.timeStamp-this.pTime<e.interval,o=!this.pCenter||L(this.pCenter,t.center)<e.posThreshold;if(this.pTime=t.timeStamp,this.pCenter=t.center,o&&s?this.count+=1:this.count=1,this._input=t,0===this.count%e.taps)return this.hasRequireFailures()?(this._timer=l((function(){this.state=8,this.tryEmit()}),e.interval,this),2):8}return 32},failTimeout:function(){return this._timer=l((function(){this.state=32}),this.options.interval,this),32},reset:function(){clearTimeout(this._timer)},emit:function(){8==this.state&&(this._input.tapCount=this.count,this.manager.emit(this.options.event,this._input))}}),_t.VERSION="2.0.7",_t.defaults={domEvents:!1,touchAction:"compute",enable:!0,inputTarget:null,inputClass:null,preset:[[Et,{enable:!1}],[yt,{enable:!1},["rotate"]],[It,{direction:6}],[gt,{direction:6},["swipe"]],[At],[At,{event:"doubletap",taps:2},["tap"]],[Tt]],cssProps:{userSelect:"none",touchSelect:"none",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}};function Ct(t,e){var n;this.options=s({},_t.defaults,e||{}),this.options.inputTarget=this.options.inputTarget||t,this.handlers={},this.session={},this.recognizers=[],this.oldCssProps={},this.element=t,this.input=new((n=this).options.inputClass||(M?J:z?nt:R?rt:j))(n,F),this.touchAction=new lt(this,this.options.touchAction),St(this,!0),f(this.options.recognizers,(function(t){var e=this.add(new t[0](t[1]));t[2]&&e.recognizeWith(t[2]),t[3]&&e.requireFailure(t[3])}),this)}function St(t,e){var n,i=t.element;i.style&&(f(t.options.cssProps,(function(r,s){n=D(i.style,s),e?(t.oldCssProps[n]=i.style[n],i.style[n]=r):i.style[n]=t.oldCssProps[n]||""})),e||(t.oldCssProps={}))}Ct.prototype={set:function(t){return s(this.options,t),t.touchAction&&this.touchAction.update(),t.inputTarget&&(this.input.destroy(),this.input.target=t.inputTarget,this.input.init()),this},stop:function(t){this.session.stopped=t?2:1},recognize:function(t){var e=this.session;if(!e.stopped){var n;this.touchAction.preventDefaults(t);var i=this.recognizers,r=e.curRecognizer;(!r||r&&8&r.state)&&(r=e.curRecognizer=null);for(var s=0;s<i.length;)n=i[s],2===e.stopped||r&&n!=r&&!n.canRecognizeWith(r)?n.reset():n.recognize(t),!r&&14&n.state&&(r=e.curRecognizer=n),s++}},get:function(t){if(t instanceof pt)return t;for(var e=this.recognizers,n=0;n<e.length;n++)if(e[n].options.event==t)return e[n];return null},add:function(t){if(p(t,"add",this))return this;var e=this.get(t.options.event);return e&&this.remove(e),this.recognizers.push(t),t.manager=this,this.touchAction.update(),t},remove:function(t){if(p(t,"remove",this))return this;if(t=this.get(t)){var e=this.recognizers,n=b(e,t);-1!==n&&(e.splice(n,1),this.touchAction.update())}return this},on:function(t,e){if(void 0!==t&&void 0!==e){var n=this.handlers;return f(S(t),(function(t){n[t]=n[t]||[],n[t].push(e)})),this}},off:function(t,e){if(void 0!==t){var n=this.handlers;return f(S(t),(function(t){e?n[t]&&n[t].splice(b(n[t],e),1):delete n[t]})),this}},emit:function(t,e){this.options.domEvents&&function(t,e){var i=n.createEvent("Event");i.initEvent(t,!0,!0),i.gesture=e,e.target.dispatchEvent(i)}(t,e);var i=this.handlers[t]&&this.handlers[t].slice();if(i&&i.length){e.type=t,e.preventDefault=function(){e.srcEvent.preventDefault()};for(var r=0;r<i.length;)i[r](e),r++}},destroy:function(){this.element&&St(this,!1),this.handlers={},this.session={},this.input.destroy(),this.element=null}},s(_t,{INPUT_START:1,INPUT_MOVE:2,INPUT_END:4,INPUT_CANCEL:8,STATE_POSSIBLE:1,STATE_BEGAN:2,STATE_CHANGED:4,STATE_ENDED:8,STATE_RECOGNIZED:8,STATE_CANCELLED:16,STATE_FAILED:32,DIRECTION_NONE:1,DIRECTION_LEFT:2,DIRECTION_RIGHT:4,DIRECTION_UP:8,DIRECTION_DOWN:16,DIRECTION_HORIZONTAL:6,DIRECTION_VERTICAL:24,DIRECTION_ALL:30,Manager:Ct,Input:Y,TouchAction:lt,TouchInput:nt,MouseInput:j,PointerEventInput:J,TouchMouseInput:rt,SingleTouchInput:Q,Recognizer:pt,AttrRecognizer:mt,Tap:At,Pan:gt,Swipe:It,Pinch:yt,Rotate:Et,Press:Tt,on:I,off:A,each:f,merge:m,extend:d,assign:s,inherit:g,bindFn:y,prefixed:D}),(void 0!==t?t:"undefined"!=typeof self?self:{}).Hammer=_t,"function"==typeof define&&define.amd?define((function(){return _t})):void 0!==e&&e.exports?e.exports=_t:t.Hammer=_t}(window,document)},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1).__importStar(t(18)),o=t(71),s=t(9),a=t(81);class r extends o.View{get plot_view(){return this.parent}get plot_model(){return this.parent.model}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>{this.model.active?this.activate():this.deactivate()})}activate(){}deactivate(){}}i.ToolView=r,r.__name__="ToolView";class _ extends a.Model{constructor(t){super(t)}static init_Tool(){this.prototype._known_aliases=new Map,this.internal({active:[n.Boolean,!1]})}get synthetic_renderers(){return[]}_get_dim_tooltip(t,e){switch(e){case"width":return t+" (x-axis)";case"height":return t+" (y-axis)";case"both":return t}}_get_dim_limits([t,e],[i,n],o,a){const r=o.bbox.h_range;let _;"width"==a||"both"==a?(_=[s.min([t,i]),s.max([t,i])],_=[s.max([_[0],r.start]),s.min([_[1],r.end])]):_=[r.start,r.end];const l=o.bbox.v_range;let c;return"height"==a||"both"==a?(c=[s.min([e,n]),s.max([e,n])],c=[s.max([c[0],l.start]),s.min([c[1],l.end])]):c=[l.start,l.end],[_,c]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[…this.prototype._known_aliases.keys()];throw new Error(unexpected tool name ‘${t}’, possible tools are ${e.join(", ")})}}}i.Tool=_,_.__name__="Tool",_.init_Tool()},n”, ” function _(o,b,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_toolbar="bk-toolbar",t.bk_toolbar_hidden="bk-toolbar-hidden",t.bk_toolbar_button="bk-toolbar-button",t.bk_button_bar="bk-button-bar",t.bk_toolbar_button_custom_action="bk-toolbar-button-custom-action"},n”, ” function _(o,b,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-toolbar-hidden {\n visibility: hidden;\n opacity: 0;\n transition: visibility 0.3s linear, opacity 0.3s linear;\n}\n.bk-root .bk-toolbar,\n.bk-root .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-toolbar .bk-logo {\n flex-shrink: 0;\n -webkit-flex-shrink: 0;\n}\n.bk-root .bk-toolbar.bk-above,\n.bk-root .bk-toolbar.bk-below {\n flex-direction: row;\n -webkit-flex-direction: row;\n justify-content: flex-end;\n -webkit-justify-content: flex-end;\n}\n.bk-root .bk-toolbar.bk-above .bk-button-bar,\n.bk-root .bk-toolbar.bk-below .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-toolbar.bk-above .bk-logo,\n.bk-root .bk-toolbar.bk-below .bk-logo {\n order: 1;\n -webkit-order: 1;\n margin-left: 5px;\n margin-right: 0px;\n}\n.bk-root .bk-toolbar.bk-left,\n.bk-root .bk-toolbar.bk-right {\n flex-direction: column;\n -webkit-flex-direction: column;\n justify-content: flex-start;\n -webkit-justify-content: flex-start;\n}\n.bk-root .bk-toolbar.bk-left .bk-button-bar,\n.bk-root .bk-toolbar.bk-right .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-toolbar.bk-left .bk-logo,\n.bk-root .bk-toolbar.bk-right .bk-logo {\n order: 0;\n -webkit-order: 0;\n margin-bottom: 5px;\n margin-top: 0px;\n}\n.bk-root .bk-toolbar-button {\n width: 30px;\n height: 30px;\n cursor: pointer;\n background-size: 60% 60%;\n background-origin: border-box;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .bk-toolbar-button:hover {\n background-color: rgba(192, 192, 192, 0.15);\n}\n.bk-root .bk-toolbar-button:focus {\n outline: none;\n}\n.bk-root .bk-toolbar-button::-moz-focus-inner {\n border: 0;\n}\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button {\n border-bottom: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button.bk-active {\n border-bottom-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button {\n border-top: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button.bk-active {\n border-top-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button {\n border-left: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button.bk-active {\n border-left-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button {\n border-right: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button.bk-active {\n border-right-color: #26aae1;\n}\n.bk-root .bk-button-bar + .bk-button-bar:before {\n content: " ";\n display: inline-block;\n background-color: lightgray;\n}\n.bk-root .bk-toolbar.bk-above .bk-button-bar + .bk-button-bar:before,\n.bk-root .bk-toolbar.bk-below .bk-button-bar + .bk-button-bar:before {\n height: 10px;\n width: 1px;\n}\n.bk-root .bk-toolbar.bk-left .bk-button-bar + .bk-button-bar:before,\n.bk-root .bk-toolbar.bk-right .bk-button-bar + .bk-button-bar:before {\n height: 1px;\n width: 10px;\n}\n’},n”, ” function _(A,g,C){Object.defineProperty(C,"__esModule",{value:!0});C.default=’\n.bk-root .bk-tool-icon-copy-to-clipboard {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUSDBoBvcHQeQAAAG9JREFUWMNjXLhsJcNAAiaGAQYwB/xHwh/Q+ITEkfHQCwEWND4jmeb8H/JpgBwfI6cNBhLSEkqaGXRpgFRAcZoZsmlg1AGjDhh1wKgDRh0w6gCaVcf/R2wIkNqw+D9s0wADvUNiyIYA47BJAwPuAAAj/Cjd0TCN6wAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-replace-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxokK3gniQAAAHpJREFUWMNjXLhsJcNAAiaGAQajDhhwB7DgEP+PxmeksvjgDwFcLmYkUh2hkBj8IcBIZXsYh1w2/I8v3sgAOM0bLYhGc8GgrwuICgldfQO88pcvXvg/aOuCUQeM5oLRuoCFCJcTbOMh5XOiW0JDNhdQS3y0IBp1ABwAAF8KGrhC1Eg6AAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-append-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkZWD04WwAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAoUlEQVRYw+1WQQ6AIAwrhO8Y/bIXEz9jIMSDr8ETCUEPQzA4pMeFLKNbu4l5WR0CDOMEALBGIzMuQIBEZQjPgP9JLjwTfBjY9sO9lZsFA9IafZng3BlIyVefgd8XQFZBAWe8jfNxwsDhir6rzoCiPiy1K+J8/FRQemv2XfAdFcQ9znU4Viqg9ta1qYJ+D1BnAIBrkgGVOrXNqUA9rbyZm/AEzFh4jEeY/soAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-intersect-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkrkOpp2wAAAPhJREFUWMPtV1EKwjAMTUavI3oawR/vtn5srJdREfzwMvHHQlcT2mpdMzFfWxiP5r2+JMN+mAiCOB72CABgR1cln4oOGocJnuMTSxWk8jMm7OggYkYXA9gPE3uyd8NXHONJ+eYMdE/NqCJmEZ5ZqlJJ4sUksKN7cYSaPoCZFWR1QI+Xm1fBACU63Cw22x0AAJxudwrffVwvZ+JmQdAHZkw0d4EpAMCw8k87pMdbnwtizQumJYv3nwV6XOA1qbUT/oQLUJgFRbsiNwFVucBIlyR3p0tdMp+XmFjfLKi1LatyAXtCRjPWBdL3Ke3VuACJKFfDr/xFN2fgAR/Go0qaLlmEAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-subtract-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxgsF5XNOQAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAABFUlEQVRYw9VWUQqDMAxNpWfxQxD1MoP97G7zQ5mH2RTZYLtM9lWoMbXtxLXNX4OG9r28l4hrd0PQoqxqAACYpxH25C/nkwCHyCBwSPoS09k1T5Fo+4EiExcC4v584xGFmyIXHBLRISAVZyZufUPVa4rcrwmPDgr93ylo+2GliLRUYHK6th/o/6r7nfLpqaCsagEA8Hh9FmcNKeRmgeYDC+SCq0B6FFi8/BcV6BdR9cL3gCv3ijPKOacsn3rBEcjmaVxpfGcg4wHxzgJJnc6241Hn23DERFRAu1bNcWa3Q0uXi62XR6sCaWoSejbtdLYmU3kTEunNgj0bUbQqYG/IcMaqwPS9jftoVCAQ0ZVDJwf0zQdH4AsyW6fpQu4YegAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-clear-selection {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUGEhcuan3d3wAAAoRJREFUWMPtlzFP3EAQhd+b3TNSzg0N5TWXLkJQUUaKhIQ4fgP/g5ArrriE/I3opEgRrZtIVJR0FJQ010SioUmEZHtnUpwN9gWHGA5BJCy58MraffvmfZ41v3z9hqe8BE98vQh4cgG+Ydzmnrng8efvQJNi/uN7dznx/B3ggtfhf4ehNdUttRzBDIm/2VTiiWCG1HK0nc+3UWtq8BQIiEEakEQOADBIA4QCQmBqoHBhFNR27ikQSmGdYCdTqCpEHMDZmEKRWUBEv1gBDg5SzRJnpopILWICgWuRYflLamuzxB2BmtYqSRIka5VWU8QduXO+1hRc5YZu5GAwmP2ZJzND0IBu5HCV2+NQcAhAVRsnC2IbPzPdSjzd6to6VtfWkXi6YLaVWr7xoAwkfpb8MnC3SH7rKSMBe4M0jA/OTicFIbtCGRIyNbURhcf3ErCd6YwA1m0HgAxhw1NGQnlXBHG4kylVlSJuH0RfIP2CkL2I/qS1gIAAQiBl1QwFggIHtyxgrxK5PgyfC0JWKoT0HLh8LwoietB4TYKaIl7yeNURxB05UtMxDOcVQlZIrlRKdK6m47gjR/fuBRQihyLArtNeJD50Izcx2Eczu7iFkIug4VM3cpOr3MKDekFED0fWUHv9Zq0kpLnridjhY3XDg7NTN0jDrhO3X7O9Wg7wwyANu4mnayNg3gmbu0tCNoUyBNGv2l4rB9EXynA7082FOxAQLhU6rQVO9T2AvWowFToNCJcPORGxIRcnpjZSKATSU9NxvOQnAPArDSaQoUKnNI4iufkGtD4P3EHIcWZhz4HLceSOyrR3Izf5memPAL2cX3yhAkonysZVaWLBkd9dw1Ivv2a/AYPkK+ty1U1DAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-box-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg0kduFrowAAAIdJREFUWMPtVtEKwCAI9KL//4e9DPZ3+wP3KgOjNZouFYI4C8q7s7DtB1lGIeMoRMRinCLXg/ML3EcFqpjjloOyZxRntxpwQ8HsgHYARKFAtSFrCg3TCdMFCE1BuuALEXJLjC4qENsFVXCESZw38/kWLOkC/K4PcOc/Hj03WkoDT3EaWW9egQul6CUbq90JTwAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-box-zoom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg82t254aQAAAkBJREFUWMPN11+E1FEUB/DPTFn2qaeIpcSwr5NlUyJiKWVXWUqvlUh/iE3RY9mUekkPPURtLKNRrFJEeuphGfUUaVliiX1aVjGs6aG7+XX9ZnZ+d2fTl2vmnHvPPfeee/79Sk+may2/UQq/q7Qu+bAJoxjHIKqB/wlfUMcMVqI9bLZ+DGIKwzlzQ2GcxCx2xwvKOUKlaHTiX8bHNspjDONHkOmJBW5jIof/FvPh/06MZOb6cRc7cGn1AKUE5cdzlM/gAr5F/O24H3xkFRfxAbVygvK+cIsspjGWo1zgjeFpxL+BvnLw7laBA4xjIFJwrgu52DoVjKdY4HBEX8dSF3JLYe1fe6UcYCii3xWQjdfuSTnAtoheKCC7GNED5Zx4L4qt61jbTLHA94geKSC7P7ZeShQ0Inoi1IJuEOeORooFXkV0FZNdZs5qvFfKAeqYy7nZ6yg//HG0MBfffh71lFrQDCW2EvEP4mt4okZUDftz9rmGZkotmMxJRtlisy+MTniAWrty3AlXw0hFM2TD89l+oNsoOJXjbIs4EpqNtTCLXbiZ0g+M4mFObj8U3vsNjoZCVcmk60ZwthpepLZkB/AsivWfOJZxtpUQHfWib7KWDwzjeegBZJSdKFiE2qJTFFTwElsi/unQ/awXrU4WGMD7nOJxBY/1EO2iYConq93CHT1GOwucjdqnRyFz+VcHmMNefMY9nNkA3SWUOoXhQviSWQ4huLIRFlirFixnQq/XaKXUgg2xQNGv4V7x/RcW+AXPB3h7H1PaiQAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-zoom-in {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsUBmL8iQAAA2JJREFUWMO9l12IlFUYx3//MzPrLpSjkm5oN4FFIWVEl66IQlFYwtLOzozsjHdGRSCRF0sfBEXRVV0FQuQiLm5CZNBFgRRaRLVFhbJ2EdiN5gbK7toObTPn6eYdPTvNzPvOBz5Xh/ec5/n/n89zXtEHmZqeSXSuXBz/3zfdKvBWJHQrwZuRcP0El+QkbQXeBX6WZEgm6TtJk5lM5o4Lc+cV6qpf4Ga20Tm338zeATItVK9Ker6yvPzp4NDQ3+XieGsCU9MzTYumGbhz7m4ze9/MHgvBgItACrgfGAj2jgAvAYs3wlEujjc13kii8YyZrXXOfWhmo9GnFUlvOOemarVapVqtkslksmb2KjARqL62ecuWN9NxbRInzrldAXhV0uFSIfdew7G/gNLU9MwS8CwSmE3Oz88fcXG5blfpqVRq0Ix8VIAAX0XgrVL7HDCHGcCaWrV60LUBN8Dae58aQIxEqcA592I9M610JL0cpG/U9TIHJNKY3RV5z0R+7Nd4HZ0P1g/2RMBuegLAsRMnb4vT8d5vqKfMzOgtAlADrkmqGywmiMBTwfr3dC9j1Xv/r6Tvg/5/5ejxE6cO7M9faVbQZrYNOFSPmqQvVo9FKexvi5uWX58943aM7DwAfBDY+FbSCxP5sdkGx55GeguzrUEXPaSo2pFkAbiSZQCAzZJOmdkjwd6SpB/M7KykQTPbA2wDhoIzRzcNDx9MJwGNIXdJ0mEzmwbujL7dbma7gd03A7lKfnTOvf74nl0r6bonTUbujRSUCrm2d4L3/kvn3JPe+8+BDW2i9o+kT7z3kxP5sYsA6W47oE64TsR7P9tQL4vA2mh9WdIscKxUyJ0M7aR7acOGzikD65EQLEjaa2ZXzMwDFeB6qZBbbLTRE4EGeSaozNOZgYFf8qP7lmIvs354n0qlHpB0T7B9Ogl4IgJJrmjv/SiQjbrkD+BMUkfSbYATPdckrTOzkciWAXOlQu5cYgLdPEIapud9wMOR9zVJH3ViKx333mtHMJvNuoWFhZ3A+ojMcja77njXBEKwJJfTcqUyCIQ34Mf7nnh0paMnXacFuGoC1mr3AtuDfLzd8Zuyl+rfuGn4HLAD+Az4qZQf+61TAj0Noj8vX6oC35SL43u7teG6rf5+iXppwW7/JUL5D03qaFRvvUe+AAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-zoom-out {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsHgty9VwAAA0FJREFUWMO9l09oXFUUxn/fmXlpItppi22k7UJBRSlVkCytSAuKUloIdjKT0El3FXVXdVFKRVAQV7qQohsNwdA0UFvBhYtqUVyIVlRaogtFQVq7qSTVjA3z3nHzBq/jvPmTN/Ss7rv3nvN99/y794kByMzcfE/7picn/jenmwWeRUI3E7wdCRskuCSTdDfwBvCtJEdySV9KOhpF0e0/LF5SqKtBgbv7ZjObcvfXgShD9Zqk5+orKx8Oj4z8NT05kU1gZm6+bdK0Azezu9z9hLs/HoIBvwAF4H5gKFh7B3gBWFY3460kWve4+3oze9fdx9OpVUmvmNlMHMf1RqNBFEUldz8OHAxUX9q6bduryut+Sfvc/Wz62ZD0fK1afjND9y3gGSRwv1GMojstTxUUCoVhdyopEYDzKXjWwZ4FFnEHWBc3Goet00m7lZlZYQixKw0FZnakGZksHUnHgvCN5/KARBH37enpOVg58H13HV0Kxg/kIuD/ngSA2ZMLt3bTSZJkUzNk7k4+D0AM/CGpaXCyBw/sC8Y/qZd2GpZiuL9YLN4Sx/HpoP5/c/exQ1OVq+1yyt13SLoArEsJnMjlgfOffvK3u58Kprab2QezJxfG2iTzUzI70wRPG9jbmpmb95SNB9mpzp7/j2yVdNbdx4K565K+cvfPJQ27+x5gBzAS7Hlvy+jo4WIvoC3kWpcvS3rR3eeAO9K529x9N7C7zX6AC2b28hN7Hl1Vt44niVq13LUjmtlYkiQfA5s6eO+GpDNJkhw9NFX5ueNt2ARodyF1IHIN2JiOl4H16fiKpK+B2Vq1vBAqFAf4IJkGNiIhWJK0192vunsC1IE/a9XycquNXARa5OnApeeioaHvKuP7r3dTGsiLqFAo7JR0T7B8rhfwXARa2us4UEqr5Ffgs151i/08oTNKdIO770ptObBYq5Yv5ibQq/sl3Qc8lJ4+lnSqH1vFfp9koZRKJVtaWnqkWXqSVkqlDe+vmUDWpZMlK/X6MBDegKf3P/nYaj8ErN9fqZBYEsf3Ag8G8Xit33BaniTcvGX0IvAw8BHwTa1y4Md+CeRqRL9fudwAvpienNi7Vhu21uwflOT+L+i1X2TJP57iUvUFtHWsAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-help {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABltpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPHRpZmY6Q29tcHJlc3Npb24+NTwvdGlmZjpDb21wcmVzc2lvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzI8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMzIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDNDIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMTIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDMjIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPGRjOnN1YmplY3Q+CiAgICAgICAgICAgIDxyZGY6U2VxLz4KICAgICAgICAgPC9kYzpzdWJqZWN0PgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxNjoxMToyOCAxMToxMTo4MjwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+UGl4ZWxtYXRvciAzLjY8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cphjt2AAAAT7SURBVFgJxRdbaFxFdGb2bhui227BWrsVKYgf2kJUbP9EUPuzEB803WTXJjH61Q/7Ya1+CMYKEVTsh4J/EpvY7BoabUiNiA8s1p+4KIhpoUUEselHqyS76TbZ3HuP58ydc3d2u4+IkQxczpz3mZkzZ86VYpXjvenpjZsLhUcliE4AuUuASAgptmt1EFdwPiclzIIUUwubNn17OJlcXo1p2UpodHRiux9xB1Eug1+slbzhFxGOKc851tu7/0oznYYBDA8Pt0U2tL8KQryIq2tvZqQhD0QJHRz3yqWhgYGBpXpydQMwqz6NCnurleCSADkJEfgKfOePqL80R/wV1ZaQyr1LenKfkPCkEPKeaj0xg7vxVL3duCmA0Vyuw/fl52hgBxsBED+h4Cv9z3R/zbRm8MTJTx7HQN7GQB6w5C4L4SX7M5lfLBpurjXMyvNIShiyi0l1pL8n9b7EDGPR8fHxzSsQ6XDB3618/xqo6Pk25V5MpVJllgHM1BO58RdQ612kOYZ+GXdij70TYQB05mpj+1kU5G2fB+l3PZtOf8NGx6ambnMXb3yAxg8wjSEG6OKKR9oicBQD+ZvpH2Wzj0lQpxCPG9qMv1x6hHNCsSAlHM7ZOa682vlI9tRDbvHGbD3nZAPpDoD/3JIrLpAs26UFkC3EMUA99hpfGtEBfJjNJnS2Gwnadnvl+Xw+iuc3DAJuNyIaSCHpilVldyDjjUxj3WDZIAhxhHHyRcdNuA7AAfUaXzVKODpzFiZ4/uLvh5G+m2no+C/pyIf7MqlEJB7bpqR6nXkEUfbeawuLaZsW2ISfNQ2vtaktQlGFQyIVGT0o2+2EC4iQNGwjBIN9qdQ5Qg4mk4X4rW3vCClLtowE2FOFUxKDfNmiZci3ovKKRFPh4FK9q4Zbdr+lKKJiA13TcHR2dmLBgdmQ0GAS2MZaEowY+XbAk09IvgtYZGp16SyvFhaHcIUh645t8T9DBCcnz5zZ4hZLu3DzK2QlL1QQa0Y+pHiJKPSuOGj3PmZTheM5w2TwqBxnvBZOTk7G5gvXJ5Aelms8wnJURL+olSWcfEhf6gDoUXPMq6ZlqbzWU2pE+3hi4s6F68tfIj9cBMlikr7Z0/P0b/X0yIcUXsDCF1WhtL4OROHaXk+xlkbV0Cu732Nmhc4peaWSg73pA8dq5RkvO37ldUTfXCKZv2q45MkhvG87WQEzpCCUSvV1d9GONBy3lMvgKSwrZig8gjAietWY0QriylO2jIo4yVbOSb7KB/qmI9BPKjHpSSXYauRyn92Nq9/Kcrj13x3s3v8D481glQ/0raiNYgX9njPSBOImbrHZePl+tfFmc9sH+Xaoh8NjOKSVdDMhjjYzQLy+dFceH5+IJQf9VYXX4tROg4ZFU8m31M3mfPEqUoJqCGJfvWpo2xnNfdrhC28n06SCeSzNZxlvBINGRXCtKS7EY1uV6V7HWAm38y1cXaXsMcOCvr9ySPj+af7A1U2HJXHzVNvUXVLIGyPf+jV0pf8GHoN+TLAyPkidTCi2RpPApmnR0Bd1zGRaB/B8Oj2HSw7LLbVR1MmskW8RdEWVXSJf3JbpAMgRtc4IZoxTh9qotQjCasm46M0YX9pV1VmbpvRH5OwwgdRtSg2vKaAz/1dNKVtb17Y8DCL4HVufHxMOYl1/zTgIgiYvBnFKfaNp3YjTdPz3n9Na8//X7/k/O1tdwopcZlcAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-hover {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4oVHp0SwAAAQJJREFUWMPtlsENgzAMRb8RQ5VJItFDOgaZAMaAA0iZpN3KPZSoEEHSQBCViI/G8pfNt/KAFFcPshPdoAGgZkYVVYjQAFCyFLN8tlAbXRwAxp61nc9XCkGERpZCxRDvBl0zoxp7K98GAACxxH29srNNmPsK2l7zHoHHXZDr+/9vwDfB3kgeSB5IHkgeOH0DmesJjSXi6pUvkYt5u9teVy6aWREDM0D0BRvmGRV5N6DsQkMzI64FidtI5t3AOKWaFhuioY8dlYf9TO1PREUh/9HVeAqzIThHgWZ6MuNmC1jiL1mK4pAzlKUojEmNsxcmL0J60tazWjLZFpClPbd9BMJfL95145YajN5RHQAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-crosshair {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADEUlEQVRYR81XXVIaQRCeHqug8CXmBNETaE4gniDwIgpVspxAbxC9ATkBkCpQ8gKeQDiB5AQxNyAvUlrldr7eHxyGXZi1rMJ5opbp7m++7un+htSGF204vsoMoNXrlzSpfWa1oxQfhAegCZGaEtPorHo8znIoJwCt6+td8uk7ApUQCIHTF4BNAWzImq8ap6cP68CsBdDp9i9ZqXM7ML79g/EnCWD+jgMKENKqWT+tXK0CkQqgNRjs0OxpQIqKhoMxaG6/6JeRnK7T6yO2UvVqhYSlLX+ryORfgKn9ORDFIy7ky41yGcwsr0QAQfDH5zucOswx819fs4egI9OFCcD8DjBF7VNbEX0JzdWEt3NHSSASAcCxBDqMgt/623kvyTgNgNjJIfTjk4D4FqaJR1715MjmYAmA5Bx3AwUXQL+t105KaTlcBSC26XRvhjEIoLiq1yqXpr8FAGG16/ug4IT27fxBWu7EiQuAiImJpEMKE6nYM30uAIDDttSUOPfJP7JzbjPhAiBIh9QE67vIvoOi9WJfCwDavf40ulpjbCqmUf+W753ezURuh7Dg1SqflwAEHU6pgfyBq9Y4qx0LG++2fnZ/eUzcstmdM2AWH+jfc+liWdBJfSENf8Lifi3GVwC9mybOfi5dzatWVrbbLIHNva8p5h/16gkaFiLGGxbufkoE6XguwePiXLF3XmMfCUCUAqtKXU7sumd1CowOuJEi3Pg1FBpjitIGhyvVSfvmjci6ZR+rFQfDiPVE2jFYeICQ+PoewwjC5h7CZld6DBdyu6nDSKgzOyIMhmhK5TTqXYbRorZYM46TmpKAAOrGWwSJJekSB1yqJNOzp1Gs7YJ0EDeySDIMtJbQHh6Kf/uFfNFZkolJICRmz0P8DKWZuIG2g1hpok+Mk0Qphs0h9lzMtWRoNvYLuVImUWrmPJDlBKeRBDfATGOpHkhw670QSHWGLLckmF1PTsMlYqMJpyUbiO0weiMMceqLVTcotnMCYAYJJbcuQrVgZFP0NOOJYpr62pf3AmrHfWUG4O7abefGAfwH7EXSMJafOlYAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-lasso-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgwlGP1qdAAABMBJREFUWMO9V1uIVVUY/r61z57ZMx4DnbzgkbQXL5iCJphlWdpIGY4jpFBkEiU9ZNaDRRcITcIwMwgxoQtU2IMXdAZfMjFvpERXYiSbysyBEXFmyuHMnLP32uvrwT2xnY5nxvHQ93Jg7fWv71/r//7L4a59TRgqJk+Z6v3a+sv0OI5nk5wu6VaSVZImAThHsgjgrKTvM5nMUWvtmf5n8HodCIKgOgzDhc65pSTrJQWDsSNpJX1ljHnDOfdT37oZLLHv+8OMMasKhcIJ59xHAJYMlhwAJGUAzJfUTHLFuFzOG5QDU6dNMyQfs9Yedc5tBpAD4IYYNQGoBrDtQnt7/b0LFrJsCHzfn2itfQfAnZLiazytA3AaQAuAiwDaEgeNpGkkswAWSBqRONB38b88z5uTKePt6iiKXkk8jq+iJC5LOmiMaTLGHLPWhmWeHr7vV0dRtATAapAzIVmSo51zyzIlbm2stesFPA6pKk0r6Ryg93y/ek8YFvPOOTg3cDSiKCoC2OP7/rEoirYm4rUkF12lAWNM1lr7lqQn0+QA8gI2jBg5cj6Aj8OwmB+KAKIoukhyp6SRJAUgl0ndPLDWPi9pJQCbuviXvu+/GIZhW1dnJ24UJFuTjCCA2ADA8sYGWmsXS3qmL94kDYAtkh4Nw7ANlQJ5U6INT1KrAYC9zQdykl7nFSj5fXp5Y8NWVBhy7mUAjqShMYdMXV2dJ2klyRwAJ8lIeuGWCRMP7N7frEqSG2OmAFhKshNAp5wrmO7u7jEAngPQm1S2z2pqapr+OPt7XEly0oxwzq2RdFmSD2AMgKKJouhhAL4kA+Cs53l7e3t7uytJHgRBreTWkXwkKVJnJD0B4GAGwIJE9R6AFufc6UqSZ7PZbD6ff5dkA4CQZEHSqwAOISmXtwGIE+F1SeqqIP8d+Xz+C0mLJYWSAODteXffczjdDQNJ0BWMCoLg5gqIbRTJNwHsljQhUb0luWPM2LE7Thw/9m/5NCT/TByxAOYWi8X6/gdWV1dnfN8fNRBxJpMZTXKdc+6IpFVJWAEgkvSJpA0X2tvtVTaSjgOYBCAEEADYSHK87/sfhmEYA9gShuEDkgzJHyWtB/B1irQ2juP7ADxkrX0wOUOpzmdpzEY590HJ7Ni1r2kSyZOSiv2+hSRjSTXp/QAukzySNJOJkmalyNIl10hqMcasdc61XDNcQRD8BnITgNp+36r6kfcNFMMlLQGwTNLMEuQGQBfJl2bdPru+HDkAZAqFQux53jZHEsC6aw0eg2gylNRBcqcx5v04ji999+03AwsWAOI4Lsy9a94WkisAnE5a5WCJYwCfA1g7LJudI2lTHMeXBm1faiQzxkyRtF3S5CTupeAB+KG2tnZFT0/P30NO2VKLzrmfAbwGMipjG5Oc0dPTc0Md05SZ5U4Q2FxChErtEYD7jTGNQ3UgM8Asv90Yc9I5LSKRlXSI5CxJa0jWSALJjKRnAewfkniT+vwf7N7fXHK9rq7O7+jo+BTA/NRrdBpjnnLOnUrvXd7YMPQXSBunneno6IhIHgYwW1JtkgmBpBkATlVMAwOk3nFJ+VSoqgCMr6gIy2FcLtdKspAedyQN/98caDt/3kpyabUmf8WvG/8A1vODTBVE/0MAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-pan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4lKssI9gAAAOtJREFUWMPVll0KwyAMgNPgoc0JzDX2Mtgp3csKErSamGabIEUo/T6bHz0ezxdsjPJ5kvUDaROem7VJAp3gufkbtwtI+JYEOsHNEugIN0mgM1wtsVoF1MnyKtZHZBW4DVxoMh6jaAW0MTfnBAbALyUwCD6UwEB4VyJN4FXx4aqUAACgFLjzrsRP9AECAP4Cm88QtJeJrGivdeNdPpko+j1H7XzUB+6WYHmo4eDk4wj41XFMEfBZGXpK0F/eB+QhVcXslVo7i6eANjF5NYSojCN7wi05MJNgbfKiMaPZA75TBVKCrWWbnGrb3DPePZ9Bcbe/QecAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-xpan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4X4hxZdgAAAMpJREFUWMPtlsEKwjAMhr/pwOOedINJe/PobWXCfAIvgo/nA4heOiilZQqN2yE5lpD/I38SWt3uD9aMHSuHAiiAAmwaYCqoM/0KMABtQYDW11wEaHyiEei28bWb8LGOkk5C4iEEgE11YBQWDyHGuAMD0CeS30IQPfACbC3o+Vd2bOIOWMCtoO1mC+ap3CfmoCokFs/SZd6E0ILjnzrhvFbyEJ2FIZzXyB6iZ3AkjITn8WOdSbbAoaD4NSW+tIZdQYBOPyQKoAAKkIsPv0se4A/1UC0AAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-ypan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4anK0lywAAAMVJREFUWMPtlzEKwzAMRX/S7rlpIMXeOnaLaME36FLo8XqCdNFghGljyc4kgQi2Q/SUj0F/eL7eMMTKz6j9wNlYPGRrFcSoLH4XxQPvdQeYuPOlcLbw2dRTgqvoXEaolWM0aP4LYm0NkHYWzyFSSwlmzjw2sR6OvAXNwgEcwAEcwAEcwAEcoGYk20SiMCHlmVoCzACoojEqjHBmCeJOCOo1lgPA7Q8E8TvdjMmHuzsV3NFD4w+1t+Ai/gTx3qHuOFqdMQB8ASMwJX0IEHOeAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-range {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABCJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyI+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDx0aWZmOkNvbXByZXNzaW9uPjU8L3RpZmY6Q29tcHJlc3Npb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjMyPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT4xPC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zMjwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgICAgIDxkYzpzdWJqZWN0PgogICAgICAgICAgICA8cmRmOkJhZy8+CiAgICAgICAgIDwvZGM6c3ViamVjdD4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTgtMDQtMjhUMTQ6MDQ6NDk8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPlBpeGVsbWF0b3IgMy43PC94bXA6Q3JlYXRvclRvb2w+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgrsrWBhAAAD60lEQVRYCcVWv2scRxSemZ097SHbSeWkcYwwclDhzr1Q5T6QE1LghP6BGNIYJGRWNlaZItiFK1mr+JAu4HQu0kjpU8sgF3ITAsaFg0hOvt2Zyfvmdsa7a610Unx44Zgf773vvfneezPHNzrbhn3CT3xC3wPXYOC8LDzqdi8YY/gwh4BeknS/2th6dr2kf94AOp3OFyWgMyziOPbMDxV9FTtJnl1ut795Xd0/YQ0/vtYQwMT1KXWCfr2IjOWwtNehwN4xL9ykTrm6Pzl58yLn3J+mKh9mXbT3uRjGEDph+O8/TjfP5dBp7Ha7AX7O3o5nZeD/0E/OGyXntDgzA0X6qmCnrVutVlrUWV9f/3xo+pwhGDhvEPHOjoxnZjJggXmMHzBQ7NGNp9vxk61fr0HR7e/u7pZzCGHlc7qwBYYTT7tJYSx1AQzppyFPft5apta9w7SKcn0b7P7+/jCsDQ5mbc0dCmIJGDN0ehdcjsmkm6A6KUeKFOTE11PLxrC7Ukqh3ylL2fT0NAP9q6ur6rRCJJYsbKB0JsbCKMuy+xREePDyxQPCz+Crlw062QcA5wBOOt1l6vIl2WiI9F1fN6Q+BBqit6hEC4Hk08GQJMn4myjSP7RavVxgdaVUh/3U6HCMsPr9pYnJKRziHtWQ+un58+hGs6nsjQSjpuTyKGN3CX+FBwHXSiEVgjP+O8X6N12kIePES+GzTKAkGbNp8yJsGUMVzz8jPKReiyAQRimy5/cjye5RpF8utFp/+nwmT7d/NMzcFkS7yjJNGDaPURQxIQThEQy0SyF4l5WJYYhBa816vZ6dU7A6CAhbZVow/pDe0O9hVOoCi13r4BgBAvJHqMSQL2vE/iH6IAXEwgrRVUmBoRRwnwJQT98xEeVeSUyB4dJ5nwJBKdCFFGRmUCcu7rwIYypCTblaChuNBhWODrman5ub+4v0rMNBt8z6Ezh7GksJQpCbm79cMQE7QBFm/X6f0rjWnv8WRYg/QdbUpwDAEBy8vPyA8rNGzg3a8MiElwiM7dAtRqNoNptjGPM1laVxP9umWEMGLOKhKUOJDtBwDmzsw9fC/CzHr9SGuCTi2LbbKvVtmqXpCjMihBFa79Wrt5fGx9PDzc3fmu32Lf8qFliwU9emKhBSp+kRKn/hu9k1COEDbFdt/BoKWOAkuEbdVYyoIXv8+I/QK9dMHEb1Knb7MHOv8LFFOsjzCVHWOD7Ltn+MXCRF4729vWMDK+p8rLkvwjLg4N4v741m5YuwCI9CvHp1Ha8gFdBoPnQAkGsYYGxxcfEI7QQlFCTGUXwjAz4tWF+EpymOWu7fglE7qsOvrYE6g4+9/x/vhRbMdLOCFgAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-polygon-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjc1OfiVKAAAAe1JREFUWMPt1r9rU1EUB/DPK0XbqphFHETo4OCiFhwF0V1KHbRSROLqon+AUMVRRFBwEbRFMBiV+mMW/wIxi5OD1kERRVKRJHUwLvfBTZrU5OWBGXLgQu7Jfe98z/ec7z0vKa88b2q1BDtRHdAPBaylm1NzsxsOjPnPNt6WSWprbft+/c3I3zOAjhT1Y4+fvcjEQJIXnVECSa+AhqIHqlHH5lWCZoe+Gk4GRgDG86j9SAUdlDBSQaZhlOkuHyoVdJmsw98D1S5fM4NYM1LCpqM+Lwa240oLgmZzpVZvzKT75VLZcqksSZKWlQeAy/iORVwIvh31xvotvK7VG3Px4aWHj3Jl4C2uYSvq+Bn8v6LLbaVWb9zsBiKLCvbiNG7gLm7jAYqbPHMJMziZ9lsKoh8GtqCEVVzHftwJn+TFHp4/hg8BSCYVfMOZoPEv2NZGdy9WCGUr9toDR3E2/H4V6nwRe/BmgN65H1ZhvMuB3XiKIyFoGefwO6ysVkUlrNUNsyAK/jli533Q+Y8cJFvAeXyMS1CI/jiMr/gUtD2LQwMGr4R3p7bY3oQHQ5b38CT4D2AXXg6YcQXHpyYnlqKsi5iOAVSwL9zd7zJ09r+Cpwq72omFMazjT9Dnibym0dTkRDUKrrgwH7MwXVyYB38BstaGDfLUTsgAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-redo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4itK+dVQAAAaFJREFUWMPt1L1rFFEUBfDfJDaBBSslIFjbaSFp1FJQFMVCHkzhKIqdUYOCoBgErVz8rCwiTDMwBCIKipDWyip/gxAIWAmBgBC0eYFh2Gx2l9lFcA5M8e59782Zc84dWrT435Hs1siLchqn43MS0zgW22vYxjesYjVLw3YjBPKinMUTBOwf8J5fKLGYpWFjJAJ5Uc7gIW6jM6Kim3iNZ1katgYmEL/6I+YasvY7Lg6iRpIX5VF8wuEe/XV8wGf8jN6LWTiAc7iEQ7ucPZ+lYW0vAtfwvlbfwCKW9gpXDOv1mJvZHiSO91MiyYsyiQSuxtpXXM7SsDmM5nlRdrCMMz3sOJWl4Xevc/vwBzdwAl+yNNwZxfRI+GxelK9ikHcwh8d4NNR/YFRES1ZwoTYdR7I0rNf3TzVNIGbmSvR/Bx08mIgCFSVu4l2ltIWD9WxNGR+W8KOynqnZ0rwCeVG+wa0hjrxtWoF5dAfc28V8Mib/n+Nev5dnabg/zgw87aNEN/bHOwVRiRe4Wym9zNKwMKkpgIWKEt24njxiJlq0aPFv4i9ZWXMSPPhE/QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-reset {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4gWqH8eQAABLdJREFUWMPtlktsVGUUx3/nfvfOlLQaY2IiRRMQIRpI0PjamJhoVASDvNpCpYw1vJQYSVwZwIVQF6wwRHmkAUof9ElrI6VqDAXcID4TF0IiYQMkSlTokNCZ+b7jove2t+NMH7rQBWd3v+989/zP+Z8X3Jb/WGQySvUNTQBJESkNguAVYIWqzhaRhwBU9WcR+QXoymazn6jqzUQiMQSQzWZRVdal1vwzAI2tHQBPOuc2AbWTdOyQ53n7nHNfRwee51GzqoIQMCLDpr3x/tLQ0oZzrk5Vj0/BOEBt+KYuOlBVGlrahr0Wob27t3gEjnZ2AyQzmUwHsDgP6J/AYRE553neDwDOuUdU9QngNeCumK4TkRMhZUORcYC1qysLA6iuSQHIwkWLD6lqapQsuSmwTVV3h99I7EcAR462A2xR2Ilq6ehTaejvO1774kuLNALR33eclsaGsQDe3fYegHl43vyNwEeqGl1963mm2jl7YZRTQ82qlWP4HM6ZToC5ztkW4LHQoALru7s6Di5dvlIj/e6ujrEAWoZDn8hmMjXATMACGaAVuBjXTVVXFc/AxhaA+4zvn1DV+eHxVWPMAmvtb5GeMWZyZVhI2rt7qVy2pOh9U1snwIPW2vMi4oWJuBPYHkVAVScPoKmtkzVVK6cEMsyJraHhiCqJqJUwj/JRz7TW1iSSyR2rVyylqa0Ta+24Ic8vXaAEmDFc/l5Z2A/80OibuVyuz/f9ElUdHCmvw82t5HK5h6y1PYhsz2YyGw43t2KtBZHIGwB6+j4rCkBVUdV7gXrggnPuu8h4eP+xMeZS2D0rJYZ6AdAMzAt1b4nI26p6IFZOY8pugijcKSIHVLUK0LyST4vnrVfnWr3mjmP4QTATaERkXkypRFX3isjmuHdRJEK6Ckqquopp06bdKCkp2Sgi7XnGLcg7gzeutwNIiPYc8HixqIrIOlU9ONVIhHPEd851icgSVXUiskVV94gIqoonIt0i8gfQCfwae38e6BWRXuBZz5jZ8VbaOE4EIqlZVUEQBLlkMplS1QER2RwkEnsSyaREDUzyeNsvIhvCMqkH1kdIJ2o+k8iJB1LVVRfjZ6nqqlEAIbdVQGto8Lrv+/dbawcjAL7vc+6bs+zetetfLSHxniIFGofGGsU2oC7eOCbDfZ7nQawBOSAX74SF9oEPImOq+r7nmVmxb5raukZa8UReGmNmhbMkAwwBH467EYVZe49z7kdgenj8k7V2oTHm8kgdWcvrNdVFjR8cHkYzjDH9wLjDaEwEzpwa4MypgWvAjtjxfGNMj4jMiT+M+kFsZI/Q6Pv+HGNMT8w4wI7TAyevxXVPD5z8+zD64tRXAMHVK1eaVLUyVvuDqroV2BOnJF4ZIedviUidqt4Re9s+vbx8zZXLl7PR2+nl5Tz/zNOFp2FzxzGAklw22wUsLLaSKXwf8vhosZUM6PeDYEUum70VHfpBwKsVyyfeikOP6oBNwN1TrLbfgX3A1kKLzKeff8nLLzw38T5wZDgxn1LnNk5lLRfP26/OnR2hwfNYW2Atn9RCsrf+EECyrKysDFimqhXhyjY3VLkAXBKRDqA7nU6nS0tLhyIj6XSaN9bVclv+l/IXAmkwvZc+jNUAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-save {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4UexUIzAAAAIRJREFUWMNjXLhs5X+GAQRMDAMMWJDYjGhyf7CoIQf8x2H+f0KGM9M7BBio5FNcITo408CoA0YdQM1cwEhtB/ylgqMkCJmFLwrOQguj/xTg50hmkeyARAYGhlNUCIXjDAwM0eREwTUGBgbz0Ww46oBRB4w6YNQBow4YdcCIahP+H5EhAAAH2R8hH3Rg0QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-tap-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3NzIwRUFGMDYyMjE2ODExOTdBNUNBNjVEQTY5OTRDRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCOTJBQzE0RDQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCOTJBQzE0QzQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTQ0QzIwMUM1RjIxNjgxMUE3QkFFMzhGRjc2NTI3MjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NzcyMEVBRjA2MjIxNjgxMTk3QTVDQTY1REE2OTk0Q0UiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6eYZ88AAADLklEQVR42rSXf2TUYRzHv7tuGcfE6Vwb5zLSSjEj7Y9KWqfEmFZJP+yPMdKKmUrrn0iUfjhWlLFi6YfNrF+StBoTo39iYkTGco4xxxG59P7k/T2PT8/37nu3bx9ezvPj+zyf5/PreS78bGLS8SmrwE6yje3NHJsDBTALpknBz6JhH3NiYAB0gHqPOVv52wJ6QQ48BzdAttTioRJjdeA8mAHHS2xuk3p+M8M16ipVQE49Ds6CiFO9RLjGONf05QLx6wPQaBlbBlPgJVgkP0ETiIJ2sB/E1XfimjfgBOOlKDUqCGOcqBcQnw6BYW5YTo4wbvQhMmCfGRemC2rBiGXzWUb+kM/NRZ6CHWBM9ce5R61NgX6ayhSJ5EPlItlDRNkz4JbFHf06BkSzHjXxM+gDv1S/mPUo2AXWgt9UUHL/IVhS8yUV1/EbV3o4N+NaoE9Fu/i827K5pNYHnqAVJECShWmAaddpscYFFXwR7vnXBRGlnUN/L6kqKJlxnRUuDbaDBiL+vst5d4gpcpBrqk/2jIgCKVUolhntplzivHmwh4stGOPfwBWwl/2dpp8p7xjQZqFLiQJtauKkivYm+kzccpK57yXfOUe+P23JqAnVbhMFmlXntCWnxbT31am9ZJ4BJifsUmNTqt0cYhA5ypympPg7VkEKunPbVb8cIG+0kyHLJZNR7fUMooUKFHAPkfQo58VLK+RzwRDd4FdWG9mjpaAXzqkJa1R7kQttqEABWXMjOOxxVRfnhRm5URX1prk/0pQHwNcKlchZ+jdpC+hFdVqO0my9Hj5dkYgCn1Rfh/KdlNDHrJhPqlDih+IfBd6qwpOgEqYMsorJ2HtWxtagLJDn/W3KRfPOZhoeBJfZPgVeGKeKrkQBh5dLXl25Ny3pc4/1fkTdbvFqFQgbxWeYD0hXulhQ0pYiM1jG547fcbMQpVnHTZEn9W3ljsCzwHxCdVteNHIZvQa7/7cC7nV6zHIfyFP9EXjFa7YxKAVqPP4bxhhoLWW+z9JyCb6M/MREg59/RlmmXbmneIybB+YC/ay+yrffqEddDzwGvKxxDmzhc0tc80XVgblqFfgjwAAPubcGjAOl1wAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-undo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4em8Dh0gAAAatJREFUWMPt1rFrFFEQBvDfGhACASshkL/ALpWVrSAKEQV5sIULWlgZNSgIFkGIVQ412gkBt1lYLERREFJqJRaW1oHAoZUQsDqwecWy7N3tbe6C4H2wxc682Zn3zTfvLXPM8b8j6RqYF+UCzsfnHBawGt3fMcAX7GEvS8NgKgXkRbmMxwg41TLsN0psZmnodyogL8pFPMIdLHUk7hA7eJKl4U/rAuKu3+HslFr/FZezNPSTFslX8QErDe4DvMVH/Iq9F7VwGpdwZUjsPtaSFjv/1vCBPjaxO0xcNbHejLpZrrlvJCMCT+JzA+2fcC1Lw+GE4l3CG1yIptfjCtiKoqtiJ0vD3aM0Py/K57iIMxgkQxat4EdN7e9xdRzlk+LEEPvDWvIDXJ928sYxjL36icWK+VaWhlezOIqbGFirJd/H7szugrwoX+D2BDEvszSsT5OBdfRaru/F9dPXQF6U27g/KnmWhgctxqyzBrZGMNGL/rHI0nDkKXiKexXTsywNGx0OnFbFNk3BRoWJXnw//j+ivCi32/S8CxPVNiWOAdUiJtXITIqYY45/Cn8B2D97FYW2H+IAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-wheel-pan {\n background-image: url("data:image/png;base64,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");\n}\n.bk-root .bk-tool-icon-wheel-zoom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgskILvMJQAABTtJREFUWMPdl1+MXVUVxn/fPvf2zrSFmUKnoBCUdjRoVaIxEpO2JhilMYBCtBQS2hejpg1Uo2NUrIFAoyGmtiE+GHwQGtvQJhqDmKYRBv+URFsFDNCSptH60DJTO3dKnX/33rM/H7rvsDu9M20fDMaVnGTvtb69z7fWXmvtc/TEzqd4OyXwNsv/FwFJQVI/sA14SZKRLOlPkr5TrVYXHz70quYkEEK4TtI2YAgYkrQthHDdhV5uuw+43/ZrwCbgRttgY/tjtrc0m83X3/f+D6ydnJhYcB4BSZcBA7aP2d4ELAGW2N5k+xgwkDB0IH19CGGH7R8B1aQeAf4KvAw0ku4K2zu7uru3ApdPEyiKohd4TNKjtjt5h6RHgccSNrddbvuHtm9Jqoak7xVF8WFgdavV+pSk5cCObNmXgK++85prCj3z28HKqZMnH7D9YAY4BvwujT8BvCuL1INX9vVt+dfwcCvNb7f9q2RuSfrGvWu/sL2Nf3LX7pzvj4ENSGBPVarVd4fRkZFltjdmoMGiKO4IIWwIIWwoiuIOYDDzeOPoyMiyFLkum7WJCMDztrcrTTrIRuAQZ6NcK1utL4dWq/VZoC8BhqvV6l1lWb4YYxyLMY6VZflitVq9CxhOmL60hhCKeYiV7WMKIXw9jT1HpXw3c+bOAKzOjJubzebJrKQCQLPZPClpc7bP6rMYKtjXth2OMf7tIkr11Wz8oQDc1Fb09vY+kQw1YAuwJY2nbUluAnCWpKkaFl6IQIzxivaR2SYA89sJVK/Xp2x32R6w/a30DNjuqtfrU0ArYecDCEqgLqm94T0dEm9mBG7PxkdDlkBnkhebgIezNQ8nHcCZPL9ijE1Jf/bZZoPtzbavmqNZLbf9tSxq+yoduuJ+SZ+zXSZyBXCqU+d8fvC5yRUrV+0G2j3g2hDCLyXd/+Su3QdnvP/zCuH72LWsgf2k0oHlH2c2odlkxcpVEdgr6aDtjyb8x20/J+mA7T9I6rL9SWA5dne2/GdXLl58qNJh398An85yTMA+4DOz8Dgu6Zu2dwJXJ91ltm8Gbp7Fgb+EEB4aHhpq5CEtACqVyr3AC0AlPS8k3TSmQ2YPhhBuS/1/LpmS9JTtNTHGfwBU2uUALARotVqniqJYH2Pck85pfavVaufAwnQvnHc0McaDKVptebN94QAnJB0EdtjekydyZXqjs/0ZgLIs/w6sy8bnYGYJ63pgERKC05JutT1kOwITwL9tvzlzUQUYB+Zjs2DBgu6xsbGJZHstByZbezregcBXeCsEz1bnzXt5anLyzLq71zDLxTRdVgemdx0fv2e2w5thO5DbiqL4oKT3ZKpnpyYnz+SY2ZpTAPZmJfdIrVZbNBNUq9UW2X4kU+2dcf53Aj1pj2PA7y/6m1DS00A9za9uNBq7iqJYBuoGdRdFsazRaOzKSqye1rTbaa/tlbYrqXQP2X4FIA9/J1l39xrC0v7+w5IeB8XkwS1lWe6TGJAYKMty31tfO4qSHl/a3384I3CDpI+kzC4lnRfrue6GytEjR8oQwlY73gC0L4qlth/q0M1/LYWtR48cKQF6enrC6dOnVwGLEpnxnp7en4+O1i/tszzGOCTpPmB7ahb57QUwBWyXdF+McWg6MScmuoA8OX8xOlpvXGz422XYTsB/SnpA0h7bX5R0WzI9HUL4qe2XbI+dk3xl+V7gxoztD5jRI+YK/zkEEokx2/uB/RdzIfUtueqVN04cXwF8G3iHY3z9Urw/j8ClyhsnjrcS2Vv/J/8NLxT+/zqBTkcxU/cfEkyEAu3kmjAAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-box-edit {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4QfHjM1QAAAGRJREFUWMNjXLhsJcNAAiaGAQYsDAwM/+lsJ+OgCwGsLqMB+D8o08CoA0YdMOqAUQewDFQdMBoFIyoN/B/U7YFRB7DQIc7xyo9GwbBMA4xDqhxgISH1klXbDYk0QOseEeOgDgEAIS0JQleje6IAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-freehand-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADTElEQVRYCeWWTWwMYRjH/88721X1lZJIGxJxcEE4OOiBgzjXWh8TJKR76kWacOBGxdEJIdk4VChZI/phidRBHMRRIr7DSUiaSCRFRM3u88gz+o7Z6bBTdjmYZPf9eJ55fv/5zzvvDPC/H9QsA66Olo9Ga+/MdR+Ljm2/KQIULsz9FqItGdOfJKLhApLgVkiSCGODjWit7QpKWy+TNrFeXvzKVUT8NiTVaIgDcbiCFJ7GiT8WkARXAdYBK0Lbhi/CenArRNskuM7/tgNp4ArQ42dwjf3WY5gWTqC7O/NbNn2Xkfw/YwdSw/We14HP2IEZwX+y9cZ9SH0LmgFP7UCz4KkENBNeV0Cz4b8U8DfgKiDxMWwUXETqLvJpCQpXZfawbzS7t9v5pL19cHBwfja7YA0y/lyCM0+E5hv5+piZXwKYcF23as+37bTXsQVqgkL0p/34fHR7DcBtbetFsBmGDwMOJCggYG55yw7dMlk6DuC1Bdu2RsCU9TYWQq2IoGbsreZ5NzvEqfSBsIsIy8OTbcdgiRHeh4o8AFAEwDakbY2AaCCpH7V9aGhoUUUy3UyVbkPYFuYLDlUZH8XBpwxkK0Dbgxg5HcVi0ent7a0RULMIozaHBSMfF9b2SzdutFcFB2FkwMIJOG6qfteXOa1nHZ48tyefuwyfT9s6wtzZ3t7eZse2DR2I228TtHXzuWCx9g8MtK5cuHCZTH4tiHEOa4xFngvTyS8f35d6enomiCi4/foEXBkZaQuukChL4FYA2Whd7YcC4gEdW3CpdL3LtGAVCVYJywEyTpAuJKeMOKXZs/Bw947C50KhUFOG4cwz35cjWNBlHGeD53n3xsfHP/T19U1qciggar8Fa4I3PHobIotBWBtc2hSiChyZxVzM53Pv7FVH6Tp3uVy+g0r1ImD2GjIrQGYIxjnfuXTZGICS5k/bBwJoubwEFX4TLah9EXomJGMA3za+f9913Yl4TnzsDQ+vE6YTZOjHh4ngibstt1pzQwd04F0bPStEBpXqRoBeQ/AKghfBnOEKgS+Q7z91Xfdz/HGKg8Ox7z8iYD9z6wqTkZFgnvhMGP9VZ2or1XVkPM9z0mytSfVsHa1RLBZbLoyNzUnK+ydz3wC6I9x+lwbngwAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-poly-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjglo9eZgwAAAc5JREFUWMPt1zFrU1EUB/DfS4OmVTGDIChCP4BgnQXRxVHqIJUupp9AB8VBQcRBQUXIB9DWQoMRiXZzcnQSA34A7aAuHSJKkgo2LvfBrU3aJnlYkBy4vHcP557zP/9z3r33JdXa647N0kHSZd5Nn0rSxc8G3cXp85sMcnZZ8vge3osZ+l3vB8CWFA0iL14t79h210swAjACMAIwAjACkB90D/8/GchI9ve4nPwTBh5E9ws7OepzGWb9EddSn51Op9ZstadSg4VK1UKlKkmSDSMLALewiuNh/hVJq71Wxttmqz0dG88vPc+MgWP4grvYG3SLOBrZFFFrttqPe4HIDxh4GSei+98iSlusuYopXEAjBtEPA3tQwUpwluAbDm4TPJUz+BTW9l2Ce6G7L0X/Bw8D3T/7SKKIDzHg7QCcxjvcQAEtXAnrrg/RP0/DKPbqgcN4iVOR7gcO4dcQgRuoh7HSqwlP4n20m63jJu5n8MkWMYfP3UowhzdR8FU8w9iQwevBdyq3/27CMRzAE5yLuvsRLg+ZcR1nJ8YL81HWJUzGAPaFZwe/Q5MdyYDyNHgjzO90YyGHtVDncuiJchaHw8R4oREFV5qdiVmYLM3OgD9k5209/atmIAAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-point-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEiERGWPELgAAA4RJREFUWMO1lr1uG1cQhb9ztdRSP7AF1QxgwKlcuZSqRC9gWUUUINWqTh5AnaFOnVPEteQmRuhCURqWsSqqc9IolREXdEvQBElxtdw7KURSFEVKu4w8wAKLxdw9Z+bMnRmZGXfZ29//II8th4WwGVNyIoQLYB5vxA9Caq04iUd9A+7ZlsNC2I7TdSd2hZXMJKlnTqp9jtl/GBaqoyQ0noFKpUIzBicYYc+DEFpxkglc4oVJa5gvDn8v1xV2irG3FM4NSVwjUKlUaMcpJhCGmSEJQ6QGD8M5WnHCd8+f3QCXpPLx8WNwv0j6Bm9FMK7FJ3WBE+R/2t7c/GBmFvSBrzRTCsyTDjXrxUgEMtpxynJYmJoBJ4VAybwVARgvL7Oik0okCodnKpVKX7P0leiVMb0VvbJT+upznK4vh0GIeQwwQStJkHQD3MwsCALTJRG7Qrdrj5m/djgYaIa0hlkRdJk26XEgC9txurccBtVW3IudBImmZuACUP+ZlIDBt9FKcubYNTcAH/X0RYM1E7utJPlqe+uZzPxUcEkiSS4sTT95n15Mud0xWC0o2PAWOCdK3KYZlFxfM+tHOcnMzNr1es18ug+cgsVjP4yBU/Ppfrter1m/+l0+zYygML1xRVHU7TSb1cSzBzoBzszsH+AMdJJ49jrNZjWKou6wBnwOzcyndBpNbuueURR1Dw8Pq35p9cc5p/Dy9Dypt7jXrtdGwQECS9NPhr6Gq6txUzNigE6zydLK6lTw12/KT4FGFEUfJX2YJNONq5tVs4ODA7sD/DnwJ/BoADZuE3tHFs12dna6d4C/BI6AlbyzI8ii2TTw12/KK33gb2cdXsNZoAntbZC2SeO4c9592k/5eNQbiwvFd1kJuFGwLJr1wSPg/SwpvyFBHufOeXcFeAlE97U/uCxOY+P3b+Bn4B3Q+L8EdJfD4a+/AbC4UBzPxiPg3wlHZquB28Cn2IuR9x3gr3uV4DbwfvSDOvi4uFA8BDZmIRHkjHpS9Ht9iRqd8+5G3g05mAGcQbsdiX5QJ428G7Kygo8XYdb1/K4NWVmjzkNge2sz84bs+ELmpDDLtqWsNZBXgvmw8CTtpWVMT7x5YWBjLARnwZfKQNYN2U2LPvrh+5nBt7c2M2/It9bArCTKR8eZN+SJ13AScPnoODeRdqNenH+wul5w2gUr2WUjMFAt8bZ/0axX/wNnv4H8vTFb1QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-poly-edit {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gELFi46qJmxxAAABV9JREFUWMOdl19vFFUYxn9n9u9sCyylUIzWUoMQBAWCMdEEIt6xIRQSLIEKtvHe6AcA4yeQb7CAUNJy0daLeomJN8SEULAC2kBBapBKoLvbmdl/c14vdmY7u91tF95kknPOnHmf95znPc97Ro2OTeBbdjFDT3c32ZxVHUOE9kSMB0/m6ExuoJn1H+ur6Y+OTfD50SMN5168OgrAlyf7CfuD+z7+iDs3p8hkLUQ0iFQ/yFl5Nm/qonfHVva+s32Zw9GxCYILsZ08tpNfBhbs+1YN4OH9+7huGdECSBVfqUosbsllfmauBqiR+cCNwOr7AEo8pPHJnymXykhg5fUWjoQpl0vVvhZhbSzGoUOHqgBlt6B6uruj2Zy1E9jo0fhfeyL2x4Mnc8VErK0KUEOB64JSyptfG4RSytsJjUJVxw2lsFy3urL9nx1Qd25ObctkrVMi+jQivd7U2ZyV/3Hzpq7h3h1b/7p9Y0o8v8rwAbTWrGpSocN/FGDlbAI0Rl23PCBan0Ok158H9Ipwzi25A/Mzc9Gl/BYx/E4kYqC1NKRARNAaDCNUM27Z+Zr+ouXs0q4+LSLBHPYCFkTkC6uU39kwCdsS7WRKmaYUiAhdnZ3MPX2K4+QjQI+C94A93rMzm8ltMwyDeDzWjMZeEb2pYQDdW3vITU2jtUZ5QThOPgm8C7wP7J15OPsBsB3oWpGnVWisCeDS1VHj4vBI92+/3tgB7Ab2AruAXiDBK5oIOkhtkEYRNRuJhObrd8Dl9ewf4D5wG7hVLpen29vb5wzD+BrkbBMaL3d1dk5nsrnlFDTTFWAWmAZueWD3gCemGde2k2fw1Al1YXhEvjozoO49eczdqekrWmsc2zlrmvEKOGoW1GUjFLqSk2KpJrCLwyMCPAP+BO54QL8DM6YZX/ClsP9YnwKkXnIBP4jdIpJRpdJTCYdMwwi98KU0Hjc/dDILNyUcwTCWdOSMJ0TRmBktGRhLugu0xyLk7CIqVNm+0bGJptl1YXikD0grpY4Rjc4a8Fbgdab/6OGbAJeCUuyJnnHmZH9pbSyGuBXV8NUwlUpR1EWyixmSyTWEwqGlJ2Swbo2JXbAAfgDGgGQA9I1A9t1tlq0AxrXxn0ilUpw4fhQqYkH/sT41OTnJJwf2s6FjI5mshdYa7bqVR2uezr9MJmJt14FvGrh/O9D+e6UkM/xyCuCqEKCYnJyUTKFQrZDHjxzGshwWLQcRsOz8Hi85P23id0ug/XilAMLBmm4tPGdoaKjSH5+oAGrhwvBI9SjZTn4QSK9yenoD7dlrExPoJlXW8G8ytpNHxRKk02lGxsdRKFwXLNvx5yY94HQLGhGk4LFCYQSqaE0AwWM1eOoEbR0dKBSW7bC4mKuffxs4D/wCLKwQQPAUzIkslfp6cVomROWSolh0GjldAM4nzDi2k9/i5UAzC9aKfwNJ3zgJg9YEvN6+C7SHgKm69+sD7RfNnKTTaZRPQfAut4oFV//IS7gkcB34VlVo8kGzphlfB+DU+TfNGBpZtRastvrvARJmfMF28ge9sc2B9/PNnCilMIDwK6y8/ow/Ai4kvILTljAXvDvEvrqKSUs60KolzPjBxspavQD2tKqCAGF/Ba+xE/Wbilu54wZV8NEKF5fXzQHl/bh4hUsE0WAXSlDMYcQSrQXgCmsTseXHsJkNnjqBFGwKJaHsKlxtUHYVhbLCzr1kaOA4bcn1y1Swmb+iLpJKpVrfgdpfsiVVCYcgluwgnU7jEgJ4s5UkLFtWYyHyEg0/N1q1tmQH+YXnAMFr97Nmv3p+0QsHQRsF8qpBOE5+rb9Nkaj50tVQKjqh4OU3GNL/1/So3vuUgbAAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-line-edit {\n background-image: url("data:image/png;base64,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");\n}\n’},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(72),o=t(303),l=n.__importStar(t(282));class h{constructor(t,e={}){this.items=t,this.options=e,this.el=s.div(),this._open=!1,this._item_click=t=>{var e;null===(e=this.items[t])||void 0===e||e.handler(),this.hide()},this._on_mousedown=t=>{var e,i;const{target:n}=t;n instanceof Node&&this.el.contains(n)||(null===(i=(e=this.options).prevent_hide)||void 0===i?void 0:i.call(e,t))||this.hide()},this._on_keydown=t=>{t.keyCode==s.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},s.undisplay(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){s.remove(this.el),this._unlisten()}_listen(){document.addEventListener("mousedown",this._on_mousedown),document.addEventListener("keydown",this._on_keydown),window.addEventListener("blur",this._on_blur)}_unlisten(){document.removeEventListener("mousedown",this._on_mousedown),document.removeEventListener("keydown",this._on_keydown),window.removeEventListener("blur",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=e.getBoundingClientRect();this.el.style.left=null!=t.left?t.left-i.left+"px":"",this.el.style.top=null!=t.top?t.top-i.top+"px":"",this.el.style.right=null!=t.right?i.right-t.right+"px":"",this.el.style.bottom=null!=t.bottom?i.bottom-t.bottom+"px":""}}render(){var t,e;s.empty(this.el,!0);const i=null!==(t=this.options.orientation)&&void 0!==t?t:"vertical";s.classes(this.el).add("bk-context-menu","bk-"+i);for(const[t,i]of o.enumerate(this.items)){let n;if(null==t)n=s.div({class:l.bk_divider});else{if(null!=t.if&&!t.if())continue;{const i=null!=t.icon?s.div({class:["bk-menu-icon",t.icon]}):null;n=s.div({class:(null===(e=t.active)||void 0===e?void 0:e.call(t))?"bk-active":null,title:t.tooltip},i,t.label)}}n.addEventListener("click",()=>this._item_click(i)),this.el.appendChild(n)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),s.display(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),s.undisplay(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=h,h.__name__="ContextMenu"},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const t=e(9);function*r(e,n){const o=e.length;if(n>o)return;const r=t.range(n);for(yield r.map(n=>e[n]);;){let f;for(const e of t.reversed(t.range(n)))if(r[e]!=e+o-n){f=e;break}if(null==f)return;r[f]+=1;for(const e of t.range(f+1,n))r[e]=r[e-1]+1;yield r.map(n=>e[n])}}o.enumerate=function*(e){let n=0;for(const o of e)yield[o,n++]},o.combinations=r,o.subsets=function*(e){for(const n of t.range(e.length+1))yield*r(e,n)}},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(296),i=e(173),s=e(72);class c extends o.ButtonToolButtonView{render(){super.render(),s.classes(this.el).toggle(i.bk_active,this.model.active)}_clicked(){const{active:e}=this.model;this.model.active=!e}}n.OnOffButtonView=c,c.__name__="OnOffButtonView"},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),s=t(19),l=t(72),n=t(115),a=i.__importStar(t(18)),r=t(78),_=t(9),c=t(13),h=t(8),u=t(81),v=t(306),d=t(307),b=t(308),p=t(295),g=t(299),f=t(310),m=t(173),w=i.__importDefault(t(300)),y=i.__importDefault(t(311));class T extends u.Model{constructor(t){super(t)}static init_ToolbarViewModel(){this.define({_visible:[a.Any,null],autohide:[a.Boolean,!1]})}get visible(){return!this.autohide||null!=this._visible&&this._visible}}e.ToolbarViewModel=T,T.__name__="ToolbarViewModel",T.init_ToolbarViewModel();class k extends r.DOMView{initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new T({autohide:this.model.autohide})}async lazy_initialize(){await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,async()=>{await this._build_tool_button_views(),this.render()}),this.connect(this.model.properties.autohide.change,()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()}),this.connect(this._toolbar_view_model.properties._visible.change,()=>this._on_visible_change())}styles(){return[…super.styles(),w.default,y.default]}remove(){n.remove_views(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await n.build_views(this._tool_button_views,t,{parent:this},t=>t.button_view)}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const t=this._toolbar_view_model.visible,o=g.bk_toolbar_hidden;this.el.classList.contains(o)&&t?this.el.classList.remove(o):t||this.el.classList.add(o)}render(){if(l.empty(this.el),this.el.classList.add(g.bk_toolbar),this.el.classList.add(m.bk_side(this.model.toolbar_location)),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change(),null!=this.model.logo){const t="grey"===this.model.logo?f.bk_grey:null,o=l.a({href:"https://bokeh.org/",target:"_blank",class:[f.bk_logo,f.bk_logo_small,t]});this.el.appendChild(o)}for(const[,t]of this._tool_button_views)t.render();const t=[],o=t=>this._tool_button_views.get(t).el,{gestures:e}=this.model;for(const i of c.values(e))t.push(i.tools.map(o));t.push(this.model.actions.map(o)),t.push(this.model.inspectors.filter(t=>t.toggleable).map(o));for(const o of t)if(0!==o.length){const t=l.div({class:g.bk_button_bar},o);this.el.appendChild(t)}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}}function M(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=k,k.__name__="ToolbarBaseView";class B extends u.Model{constructor(t){super(t)}static init_ToolbarBase(){this.prototype.default_view=k,this.define({tools:[a.Array,[]],logo:[a.Logo,"normal"],autohide:[a.Boolean,!1]}),this.internal({gestures:[a.Any,M],actions:[a.Array,[]],inspectors:[a.Array,[]],help:[a.Array,[]],toolbar_location:[a.Location,"right"]})}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map(t=>t.id));return _.some(t,t=>!e.has(t.id))},o=this.tools.filter(t=>t instanceof p.InspectTool);t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter(t=>t instanceof b.HelpTool);t(this.help,e)&&(this.help=e);const i=this.tools.filter(t=>t instanceof d.ActionTool);t(this.actions,i)&&(this.actions=i);const l=(t,o)=>{t in this.gestures||s.logger.warn(Toolbar: unknown event type ‘${t}’ for tool: ${o})},n={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof v.GestureTool&&t.event_type)if(h.isString(t.event_type))n[t.event_type].tools.push(t),l(t.event_type,t);else{n.multi.tools.push(t);for(const o of t.event_type)l(o,t)}for(const o of Object.keys(n)){const e=this.gestures[o];t(e.tools,n[o].tools)&&(e.tools=n[o].tools),e.active&&_.every(e.tools,t=>t.id!=e.active.id)&&(e.active=null)}}get horizontal(){return"above"===this.toolbar_location||"below"===this.toolbar_location}get vertical(){return"left"===this.toolbar_location||"right"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=h.isString(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(s.logger.debug(Toolbar: deactivating tool: ${e} for event type ‘${o}’),e.active=!1),this.gestures[o].active=t,s.logger.debug(Toolbar: activating tool: ${t} for event type ‘${o}’)}else this.gestures[o].active=null}}e.ToolbarBase=B,B.__name__="ToolbarBase",B.init_ToolbarBase()},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(296),n=e(304);class u extends s.ButtonToolView{}t.GestureToolView=u,u.__name__="GestureToolView";class _ extends s.ButtonTool{constructor(e){super(e),this.button_view=n.OnOffButtonView}}t.GestureTool=_,_.__name__="GestureTool"},n”, ” function _(o,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=o(296),i=o(15);class s extends e.ButtonToolButtonView{_clicked(){this.model.do.emit(void 0)}}n.ActionToolButtonView=s,s.__name__="ActionToolButtonView";class c extends e.ButtonToolView{connect_signals(){super.connect_signals(),this.connect(this.model.do,o=>this.doit(o))}}n.ActionToolView=c,c.__name__="ActionToolView";class l extends e.ButtonTool{constructor(o){super(o),this.button_view=s,this.do=new i.Signal(this,"do")}}n.ActionTool=l,l.__name__="ActionTool"},n”, ” function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o(1),l=o(307),s=i.__importStar(o(18)),n=o(309);class _ extends l.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=_,_.__name__="HelpToolView";class r extends l.ActionTool{constructor(o){super(o),this.tool_name="Help",this.icon=n.bk_tool_icon_help}static init_HelpTool(){this.prototype.default_view=_,this.define({help_tooltip:[s.String,"Click the question mark to learn more about Bokeh plot tools."],redirect:[s.String,"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html"]}),this.register_alias("help",()=>new r)}get tooltip(){return this.help_tooltip}}t.HelpTool=r,r.__name__="HelpTool",r.init_HelpTool()},n”, ” function _(o,_,l){Object.defineProperty(l,"__esModule",{value:!0}),l.bk_tool_icon_box_select="bk-tool-icon-box-select",l.bk_tool_icon_box_zoom="bk-tool-icon-box-zoom",l.bk_tool_icon_zoom_in="bk-tool-icon-zoom-in",l.bk_tool_icon_zoom_out="bk-tool-icon-zoom-out",l.bk_tool_icon_help="bk-tool-icon-help",l.bk_tool_icon_hover="bk-tool-icon-hover",l.bk_tool_icon_crosshair="bk-tool-icon-crosshair",l.bk_tool_icon_lasso_select="bk-tool-icon-lasso-select",l.bk_tool_icon_pan="bk-tool-icon-pan",l.bk_tool_icon_xpan="bk-tool-icon-xpan",l.bk_tool_icon_ypan="bk-tool-icon-ypan",l.bk_tool_icon_range="bk-tool-icon-range",l.bk_tool_icon_polygon_select="bk-tool-icon-polygon-select",l.bk_tool_icon_redo="bk-tool-icon-redo",l.bk_tool_icon_reset="bk-tool-icon-reset",l.bk_tool_icon_save="bk-tool-icon-save",l.bk_tool_icon_tap_select="bk-tool-icon-tap-select",l.bk_tool_icon_undo="bk-tool-icon-undo",l.bk_tool_icon_wheel_pan="bk-tool-icon-wheel-pan",l.bk_tool_icon_wheel_zoom="bk-tool-icon-wheel-zoom",l.bk_tool_icon_box_edit="bk-tool-icon-box-edit",l.bk_tool_icon_freehand_draw="bk-tool-icon-freehand-draw",l.bk_tool_icon_poly_draw="bk-tool-icon-poly-draw",l.bk_tool_icon_point_draw="bk-tool-icon-point-draw",l.bk_tool_icon_poly_edit="bk-tool-icon-poly-edit",l.bk_tool_icon_line_edit="bk-tool-icon-line-edit"},n”, ” function _(o,l,b){Object.defineProperty(b,"__esModule",{value:!0}),b.bk_logo="bk-logo",b.bk_logo_notebook="bk-logo-notebook",b.bk_logo_small="bk-logo-small",b.bk_grey="bk-grey"},n”, ” function _(l,n,o){Object.defineProperty(o,"__esModule",{value:!0});o.default="\n.bk-root .bk-logo {\n margin: 5px;\n position: relative;\n display: block;\n background-repeat: no-repeat;\n}\n.bk-root .bk-logo.bk-grey {\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=’http://www.w3.org/2000/svg’><filter id=’grayscale’><feColorMatrix type=’matrix’ values=’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0’/></filter></svg>#grayscale\");\n /* Firefox 10+, Firefox on Android /\n filter: gray;\n / IE6-9 /\n -webkit-filter: grayscale(100%);\n / Chrome 19+, Safari 6+, Safari 6+ iOS /\n}\n.bk-root .bk-logo-small {\n width: 20px;\n height: 20px;\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);\n}\n.bk-root .bk-logo-notebook {\n display: inline-block;\n vertical-align: middle;\n margin-right: 5px;\n}\n"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});var s=this&&this.__rest||function(t,e){var i={};for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&e.indexOf(s)<0&&(i[s]=t[s]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(s=Object.getOwnPropertySymbols(t);n<s.length;n++)e.indexOf(s[n])<0&&Object.prototype.propertyIsEnumerable.call(t,s[n])&&(i[s[n]]=t[s[n]])}return i};const n=t(208),a=t(77),o=t(210),l=t(90),r=t(272),h=t(169),_=t(177),d=t(170),c=t(313),u=t(15),p=t(115),f=t(314),b=t(74),g=t(19),m=t(316),v=t(8),w=t(9),y=t(215),x=t(317),z=t(318),M=t(216),O=t(79);class k extends r.LayoutDOMView{constructor(){super(…arguments),this._outer_bbox=new O.BBox,this._inner_bbox=new O.BBox,this._needs_paint=!0,this._needs_layout=!1,this._invalidated_painters=new Set,this._invalidate_all=!0}get is_paused(){return null!=this._is_paused&&0!==this._is_paused}get child_models(){return[]}pause(){null==this._is_paused?this._is_paused=1:this._is_paused+=1}unpause(t=!1){if(null==this._is_paused)throw new Error("wasn’t paused");this._is_paused-=1,0!=this._is_paused||t||this.request_paint()}request_render(){this.request_paint()}request_paint(t){if(null!=t?this._invalidated_painters.add(t):this._invalidate_all=!0,!this.is_paused){const t=this.throttled_paint();this._ready=this._ready.then(()=>t)}}request_layout(){this._needs_layout=!0,this.request_paint()}reset(){"standard"==this.model.reset_policy&&(this.clear_state(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){this.ui_event_bus.destroy(),p.remove_views(this.renderer_views),p.remove_views(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.state_changed=new u.Signal0(this,"state_changed"),this.lod_started=!1,this.visuals=new b.Visuals(this.model),this._initial_state_info={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.state={history:[],index:-1};const{hidpi:t,output_backend:e}=this.model;this.canvas=new a.Canvas({hidpi:t,output_backend:e}),this.frame=new n.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges),this.throttled_paint=m.throttle(()=>this.repaint(),1e3/60);const{title_location:i,title:s}=this.model;null!=i&&null!=s&&(this._title=s instanceof h.Title?s:new h.Title({text:s}));const{toolbar_location:o,toolbar:l}=this.model;null!=o&&null!=l&&(this._toolbar=new d.ToolbarPanel({toolbar:l}),l.toolbar_location=o),this.renderer_views=new Map,this.tool_views=new Map}async lazy_initialize(){this.canvas_view=await p.build_view(this.canvas,{parent:this}),this.ui_event_bus=new f.UIEvents(this,this.model.toolbar,this.canvas_view.events_el),await this.build_renderer_views(),await this.build_tool_views(),this.update_dataranges(),this.unpause(!0),g.logger.debug("PlotView initialized")}_width_policy(){return null==this.model.frame_width?super._width_policy():"min"}_height_policy(){return null==this.model.frame_height?super._height_policy():"min"}_update_layout(){this.layout=new x.BorderLayout,this.layout.set_sizing(this.box_sizing());const{frame_width:t,frame_height:e}=this.model;this.layout.center_panel=this.frame,this.layout.center_panel.set_sizing(Object.assign(Object.assign({},null!=t?{width_policy:"fixed",width:t}:{width_policy:"fit"}),null!=e?{height_policy:"fixed",height:e}:{height_policy:"fit"}));const i=w.copy(this.model.above),s=w.copy(this.model.below),n=w.copy(this.model.left),a=w.copy(this.model.right),o=t=>{switch(t){case"above":return i;case"below":return s;case"left":return n;case"right":return a}},{title_location:l,title:r}=this.model;null!=l&&null!=r&&o(l).push(this._title);const{toolbar_location:_,toolbar:c}=this.model;if(null!=_&&null!=c){const t=o(_);let e=!0;if(this.model.toolbar_sticky)for(let i=0;i<t.length;i++){const s=t[i];if(s instanceof h.Title){t[i]="above"==_||"below"==_?[s,this._toolbar]:[this._toolbar,s],e=!1;break}}e&&t.push(this._toolbar)}const u=(t,e)=>{const i=this.renderer_views.get(e);return i.layout=new z.SidePanel(t,i)},p=(t,e)=>{const i="above"==t||"below"==t,s=[];for(const n of e)if(v.isArray(n)){const e=n.map(e=>{const s=u(t,e);if(e instanceof d.ToolbarPanel){const t=i?"width_policy":"height_policy";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[t]:"min"}))}return s});let a;i?(a=new M.Row(e),a.set_sizing({width_policy:"max",height_policy:"min"})):(a=new M.Column(e),a.set_sizing({width_policy:"min",height_policy:"max"})),a.absolute=!0,s.push(a)}else s.push(u(t,n));return s},f=null!=this.model.min_border?this.model.min_border:0;this.layout.min_border={left:null!=this.model.min_border_left?this.model.min_border_left:f,top:null!=this.model.min_border_top?this.model.min_border_top:f,right:null!=this.model.min_border_right?this.model.min_border_right:f,bottom:null!=this.model.min_border_bottom?this.model.min_border_bottom:f};const b=new y.VStack,g=new y.VStack,m=new y.HStack,O=new y.HStack;b.children=w.reversed(p("above",i)),g.children=p("below",s),m.children=w.reversed(p("left",n)),O.children=p("right",a),b.set_sizing({width_policy:"fit",height_policy:"min"}),g.set_sizing({width_policy:"fit",height_policy:"min"}),m.set_sizing({width_policy:"min",height_policy:"fit"}),O.set_sizing({width_policy:"min",height_policy:"fit"}),this.layout.top_panel=b,this.layout.bottom_panel=g,this.layout.left_panel=m,this.layout.right_panel=O}get axis_views(){const t=[];for(const[,e]of this.renderer_views)e instanceof _.AxisView&&t.push(e);return t}set_cursor(t="default"){this.canvas_view.el.style.cursor=t}set_toolbar_visibility(t){for(const e of this.visibility_callbacks)e(t)}update_dataranges(){const t=new Map,e=new Map;let i=!1;for(const[,t]of this.frame.x_ranges)t instanceof o.DataRange1d&&"log"==t.scale_hint&&(i=!0);for(const[,t]of this.frame.y_ranges)t instanceof o.DataRange1d&&"log"==t.scale_hint&&(i=!0);for(const[s,n]of this.renderer_views)if(n instanceof l.GlyphRendererView){const a=n.glyph.bounds();if(null!=a&&t.set(s,a),i){const t=n.glyph.log_bounds();null!=t&&e.set(s,t)}}let s=!1,n=!1;const{width:a,height:r}=this.frame.bbox;let h;!1!==this.model.match_aspect&&0!=a&&0!=r&&(h=1/this.model.aspect_scale*(a/r));for(const[,i]of this.frame.x_ranges){if(i instanceof o.DataRange1d){const n="log"==i.scale_hint?e:t;i.update(n,0,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}for(const[,i]of this.frame.y_ranges){if(i instanceof o.DataRange1d){const n="log"==i.scale_hint?e:t;i.update(n,1,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}if(s&&n){g.logger.warn("Follow enabled so bounds are unset.");for(const[,t]of this.frame.x_ranges)t.bounds=null;for(const[,t]of this.frame.y_ranges)t.bounds=null}this.range_update_timestamp=Date.now()}push_state(t,e){const{history:i,index:s}=this.state,n=null!=i[s]?i[s].info:{},a=Object.assign(Object.assign(Object.assign({},this._initial_state_info),n),e);this.state.history=this.state.history.slice(0,this.state.index+1),this.state.history.push({type:t,info:a}),this.state.index=this.state.history.length-1,this.state_changed.emit()}clear_state(){this.state={history:[],index:-1},this.state_changed.emit()}can_undo(){return this.state.index>=0}can_redo(){return this.state.index<this.state.history.length-1}undo(){this.can_undo()&&(this.state.index-=1,this._do_state_change(this.state.index),this.state_changed.emit())}redo(){this.can_redo()&&(this.state.index+=1,this._do_state_change(this.state.index),this.state_changed.emit())}_do_state_change(t){const e=null!=this.state.history[t]?this.state.history[t].info:this._initial_state_info;null!=e.range&&this.update_range(e.range),null!=e.selection&&this.update_selection(e.selection)}get_selection(){const t=new Map;for(const e of this.model.renderers)if(e instanceof l.GlyphRenderer){const{selected:i}=e.data_source;t.set(e,i)}return t}update_selection(t){for(const e of this.model.renderers){if(!(e instanceof l.GlyphRenderer))continue;const i=e.data_source;if(null!=t){const s=t.get(e);null!=s&&i.selected.update(s,!0)}else i.selection_manager.clear()}}reset_selection(){this.update_selection(null)}_update_ranges_together(t){let e=1;for(const[i,s]of t)e=Math.min(e,this._get_weight_to_constrain_interval(i,s));if(e<1)for(const[i,s]of t)s.start=e*s.start+(1-e)*i.start,s.end=e*s.end+(1-e)*i.end}_update_ranges_individually(t,e,i,s){let n=!1;for(const[s,a]of t){if(!i){const t=this._get_weight_to_constrain_interval(s,a);t<1&&(a.start=t*a.start+(1-t)*s.start,a.end=t*a.end+(1-t)*s.end)}if(null!=s.bounds&&"auto"!=s.bounds){const[t,o]=s.bounds,l=Math.abs(a.end-a.start);s.is_reversed?(null!=t&&t>=a.end&&(n=!0,a.end=t,(e||i)&&(a.start=t+l)),null!=o&&o<=a.start&&(n=!0,a.start=o,(e||i)&&(a.end=o-l))):(null!=t&&t>=a.start&&(n=!0,a.start=t,(e||i)&&(a.end=t+l)),null!=o&&o<=a.end&&(n=!0,a.end=o,(e||i)&&(a.start=o-l)))}}if(!(i&&n&&s))for(const[e,i]of t)e.have_updated_interactively=!0,e.start==i.start&&e.end==i.end||e.setv(i)}_get_weight_to_constrain_interval(t,e){const{min_interval:i}=t;let{max_interval:s}=t;if(null!=t.bounds&&"auto"!=t.bounds){const[e,i]=t.bounds;if(null!=e&&null!=i){const t=Math.abs(i-e);s=null!=s?Math.min(s,t):t}}let n=1;if(null!=i||null!=s){const a=Math.abs(t.end-t.start),o=Math.abs(e.end-e.start);i>0&&o<i&&(n=(a-i)/(a-o)),s>0&&o>s&&(n=(s-a)/(o-a)),n=Math.max(0,Math.min(1,n))}return n}update_range(t,e=!1,i=!1,s=!0){this.pause();const{x_ranges:n,y_ranges:a}=this.frame;if(null==t){for(const[,t]of n)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const o=[];for(const[e,i]of n)o.push([i,t.xrs.get(e)]);for(const[e,i]of a)o.push([i,t.yrs.get(e)]);i&&this._update_ranges_together(o),this._update_ranges_individually(o,e,i,s)}this.unpause()}reset_range(){this.update_range(null)}_invalidate_layout(){(()=>{for(const t of this.model.side_panels){if(this.renderer_views.get(t).layout.has_size_changed())return!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map(t=>this.renderer_views.get(t))}async build_renderer_views(){this.computed_renderers=[];const{above:t,below:e,left:i,right:s,center:n,renderers:a}=this.model;this.computed_renderers.push(…t,…e,…i,…s,…n,…a),null!=this._title&&this.computed_renderers.push(this._title),null!=this._toolbar&&this.computed_renderers.push(this._toolbar);for(const t of this.model.toolbar.tools)null!=t.overlay&&this.computed_renderers.push(t.overlay),this.computed_renderers.push(…t.synthetic_renderers);await p.build_views(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const t=this.model.toolbar.tools;(await p.build_views(this.tool_views,t,{parent:this})).map(t=>this.ui_event_bus.register_tool(t))}connect_signals(){super.connect_signals();const{x_ranges:t,y_ranges:e}=this.frame;for(const[,e]of t)this.connect(e.change,()=>{this._needs_layout=!0,this.request_paint()});for(const[,t]of e)this.connect(t.change,()=>{this._needs_layout=!0,this.request_paint()});const{plot_width:i,plot_height:s}=this.model.properties;this.on_change([i,s],()=>this.invalidate_layout());const{above:n,below:a,left:o,right:l,center:r,renderers:h}=this.model.properties;this.on_change([n,a,o,l,r,h],async()=>await this.build_renderer_views()),this.connect(this.model.toolbar.properties.tools.change,async()=>{await this.build_renderer_views(),await this.build_tool_views()}),this.connect(this.model.change,()=>this.request_paint()),this.connect(this.model.reset,()=>this.reset())}set_initial_range(){let t=!0;const{x_ranges:e,y_ranges:i}=this.frame,s=new Map,n=new Map;for(const[i,n]of e){const{start:e,end:a}=n;if(null==e||null==a||isNaN(e+a)){t=!1;break}s.set(i,{start:e,end:a})}if(t)for(const[e,s]of i){const{start:i,end:a}=s;if(null==i||null==a||isNaN(i+a)){t=!1;break}n.set(e,{start:i,end:a})}t?(this._initial_state_info.range={xrs:s,yrs:n},g.logger.debug("initial ranges set")):g.logger.warn("could not set initial ranges")}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,t]of this.renderer_views)if(!t.has_finished())return!1;return!0}after_layout(){if(super.after_layout(),this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:t,height:e}=this.layout.bbox;this.canvas_view.resize(t,e),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}this._inner_bbox.equals(this.frame.inner_bbox)||(this._inner_bbox=this.layout.inner_bbox,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){if(this.is_paused||!this.model.visible)return;g.logger.trace("PlotView.paint() for "+this.model.id);const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e<this.model.lod_interval?setTimeout(()=>{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint()},this.model.lod_timeout):t.interactive_stop()}for(const[,t]of this.renderer_views)if(null==this.range_update_timestamp||t instanceof l.GlyphRendererView&&t.set_data_timestamp>this.range_update_timestamp){this.update_dataranges();break}let e=!1,i=!1;if(this._invalidate_all)e=!0,i=!0;else for(const t of this._invalidated_painters){const{level:s}=t.model;if("overlay"!=s?e=!0:i=!0,e&&i)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const s=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:a}=this.canvas_view;e&&(n.prepare(),this.canvas_view.prepare_webgl(s),this.canvas_view.clear_webgl(),this._map_hook(n.ctx,s),this._paint_empty(n.ctx,s),this._paint_outline(n.ctx,s),this._paint_levels(n.ctx,"image",s,!0),this._paint_levels(n.ctx,"underlay",s,!0),this._paint_levels(n.ctx,"glyph",s,!0),this._paint_levels(n.ctx,"guide",s,!1),this._paint_levels(n.ctx,"annotation",s,!1),n.finish()),i&&(a.prepare(),this._paint_levels(a.ctx,"overlay",s,!1),a.finish()),null==this._initial_state_info.range&&this.set_initial_range(),this._needs_paint=!1}_paint_levels(t,e,i,s){for(const n of this.computed_renderers){if(n.level!=e)continue;const a=this.renderer_views.get(n);t.save(),(s||a.needs_clip)&&(t.beginPath(),t.rect(…i),t.clip()),a.render(),t.restore(),a.has_webgl&&a.needs_webgl_blit&&(this.canvas_view.blit_webgl(t),this.canvas_view.clear_webgl())}}_map_hook(t,e){}_paint_empty(t,e){const[i,s,n,a]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,h]=e;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(t),t.fillRect(i,s,n,a),t.clearRect(o,l,r,h)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(o,l,r,h))}_paint_outline(t,e){if(this.visuals.outline_line.doit){t.save(),this.visuals.outline_line.set_value(t);let[i,s,n,a]=e;i+n==this.layout.bbox.width&&(n-=1),s+a==this.layout.bbox.height&&(a-=1),t.strokeRect(i,s,n,a),t.restore()}}to_blob(){return this.canvas_view.to_blob()}export(t,e=!0){const i="png"==t?"canvas":"svg",s=new a.CanvasLayer(i,e),{width:n,height:o}=this.layout.bbox;s.resize(n,o);const{canvas:l}=this.canvas_view.compose();return s.ctx.drawImage(l,0,0),s}serializable_state(){const t=super.serializable_state(),{children:e}=t,i=s(t,["children"]),n=this.get_renderer_views().map(t=>t.serializable_state()).filter(t=>"bbox"in t);return Object.assign(Object.assign({},i),{children:[…e,…n]})}}i.PlotView=k,k.__name__="PlotView"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});var n=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r–)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function _(e){return function(t){t.prototype.event_name=e}}class a{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=a,a.__name__="BokehEvent";class o extends a{constructor(){super(…arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=o,o.__name__="ModelEvent";let r=class extends a{_to_json(){return{}}};s.DocumentReady=r,r.__name__="DocumentReady",s.DocumentReady=r=n([_("document_ready")],r);let c=class extends o{};s.ButtonClick=c,c.__name__="ButtonClick",s.ButtonClick=c=n([_("button_click")],c);let l=class extends o{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=l,l.__name__="MenuItemClick",s.MenuItemClick=l=n([_("menu_item_click")],l);class i extends o{}s.UIEvent=i,i.__name__="UIEvent";let u=class extends i{};s.LODStart=u,u.__name__="LODStart",s.LODStart=u=n([_("lodstart")],u);let d=class extends i{};s.LODEnd=d,d.__name__="LODEnd",s.LODEnd=d=n([_("lodend")],d);let h=class extends i{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=h,h.__name__="SelectionGeometry",s.SelectionGeometry=h=n([_("selectiongeometry")],h);let m=class extends i{};s.Reset=m,m.__name__="Reset",s.Reset=m=n([_("reset")],m);class x extends i{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=x,x.__name__="PointEvent";let p=class extends x{constructor(e,t,s,n,_,a){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=p,p.__name__="Pan",s.Pan=p=n([_("pan")],p);let j=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=j,j.__name__="Pinch",s.Pinch=j=n([_("pinch")],j);let y=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=y,y.__name__="Rotate",s.Rotate=y=n([_("rotate")],y);let P=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=P,P.__name__="MouseWheel",s.MouseWheel=P=n([_("wheel")],P);let v=class extends x{};s.MouseMove=v,v.__name__="MouseMove",s.MouseMove=v=n([_("mousemove")],v);let O=class extends x{};s.MouseEnter=O,O.__name__="MouseEnter",s.MouseEnter=O=n([_("mouseenter")],O);let b=class extends x{};s.MouseLeave=b,b.__name__="MouseLeave",s.MouseLeave=b=n([_("mouseleave")],b);let g=class extends x{};s.Tap=g,g.__name__="Tap",s.Tap=g=n([_("tap")],g);let E=class extends x{};s.DoubleTap=E,E.__name__="DoubleTap",s.DoubleTap=E=n([_("doubletap")],E);let M=class extends x{};s.Press=M,M.__name__="Press",s.Press=M=n([_("press")],M);let R=class extends x{};s.PressUp=R,R.__name__="PressUp",s.PressUp=R=n([_("pressup")],R);let f=class extends x{};s.PanStart=f,f.__name__="PanStart",s.PanStart=f=n([_("panstart")],f);let S=class extends x{};s.PanEnd=S,S.__name__="PanEnd",s.PanEnd=S=n([_("panend")],S);let D=class extends x{};s.PinchStart=D,D.__name__="PinchStart",s.PinchStart=D=n([_("pinchstart")],D);let k=class extends x{};s.PinchEnd=k,k.__name__="PinchEnd",s.PinchEnd=k=n([_("pinchend")],k);let L=class extends x{};s.RotateStart=L,L.__name__="RotateStart",s.RotateStart=L=n([_("rotatestart")],L);let C=class extends x{};s.RotateEnd=C,C.__name__="RotateEnd",s.RotateEnd=C=n([_("rotateend")],C)},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),i=n.__importDefault(t(297)),r=t(15),a=t(19),h=t(72),_=n.__importStar(t(313)),o=t(315),c=t(9),l=t(8),p=t(32),u=t(302);class d{constructor(t,e,s){this.plot_view=t,this.toolbar=e,this.hit_area=s,this.pan_start=new r.Signal(this,"pan:start"),this.pan=new r.Signal(this,"pan"),this.pan_end=new r.Signal(this,"pan:end"),this.pinch_start=new r.Signal(this,"pinch:start"),this.pinch=new r.Signal(this,"pinch"),this.pinch_end=new r.Signal(this,"pinch:end"),this.rotate_start=new r.Signal(this,"rotate:start"),this.rotate=new r.Signal(this,"rotate"),this.rotate_end=new r.Signal(this,"rotate:end"),this.tap=new r.Signal(this,"tap"),this.doubletap=new r.Signal(this,"doubletap"),this.press=new r.Signal(this,"press"),this.pressup=new r.Signal(this,"pressup"),this.move_enter=new r.Signal(this,"move:enter"),this.move=new r.Signal(this,"move"),this.move_exit=new r.Signal(this,"move:exit"),this.scroll=new r.Signal(this,"scroll"),this.keydown=new r.Signal(this,"keydown"),this.keyup=new r.Signal(this,"keyup"),this.hammer=new i.default(this.hit_area,{touchAction:"auto",inputClass:i.default.TouchMouseInput}),this._configure_hammerjs(),this.hit_area.addEventListener("mousemove",t=>this._mouse_move(t)),this.hit_area.addEventListener("mouseenter",t=>this._mouse_enter(t)),this.hit_area.addEventListener("mouseleave",t=>this._mouse_exit(t)),this.hit_area.addEventListener("contextmenu",t=>this._context_menu(t)),this.hit_area.addEventListener("wheel",t=>this._mouse_wheel(t)),document.addEventListener("keydown",this),document.addEventListener("keyup",this),this.menu=new u.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener("keydown",this),document.removeEventListener("keyup",this)}handleEvent(t){"keydown"==t.type?this._key_down(t):"keyup"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get("doubletap").recognizeWith("tap"),this.hammer.get("tap").requireFailure("doubletap"),this.hammer.get("doubletap").dropRequireFailure("tap"),this.hammer.on("doubletap",t=>this._doubletap(t)),this.hammer.on("tap",t=>this._tap(t)),this.hammer.on("press",t=>this._press(t)),this.hammer.on("pressup",t=>this._pressup(t)),this.hammer.get("pan").set({direction:i.default.DIRECTION_ALL}),this.hammer.on("panstart",t=>this._pan_start(t)),this.hammer.on("pan",t=>this._pan(t)),this.hammer.on("panend",t=>this._pan_end(t)),this.hammer.get("pinch").set({enable:!0}),this.hammer.on("pinchstart",t=>this._pinch_start(t)),this.hammer.on("pinch",t=>this._pinch(t)),this.hammer.on("pinchend",t=>this._pinch_end(t)),this.hammer.get("rotate").set({enable:!0}),this.hammer.on("rotatestart",t=>this._rotate_start(t)),this.hammer.on("rotate",t=>this._rotate(t)),this.hammer.on("rotateend",t=>this._rotate_end(t))}register_tool(t){const e=t.model.event_type;null!=e&&(l.isString(e)?this._register_tool(t,e):e.forEach((e,s)=>this._register_tool(t,e,s<1)))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},h=t=>e=>{t(e.e)};switch(e){case"pan":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case"pinch":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case"rotate":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case"move":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case"tap":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n)));break;case"press":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case"scroll":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error("unsupported event_type: "+e)}s&&(null!=n._doubletap&&n.connect(this.doubletap,h(n._doubletap.bind(n))),null!=n._keydown&&n.connect(this.keydown,h(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,h(n._keyup.bind(n))),p.is_mobile&&null!=n._scroll&&"pinch"==e&&(a.logger.debug("Registering scroll on touch screen"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e){const s=this.plot_view.get_renderer_views();for(const n of c.reversed(s)){const{level:s}=n.model;if(("annotation"==s||"overlay"==s)&&null!=n.interactive_hit&&n.interactive_hit(t,e))return n}return null}_hit_test_frame(t,e){return this.plot_view.frame.bbox.contains(t,e)}_hit_test_canvas(t,e){return this.plot_view.layout.bbox.contains(t,e)}_trigger(t,e,s){const n=this.toolbar.gestures,i=t.name.split(":")[0],r=this._hit_test_renderers(e.sx,e.sy),a=this._hit_test_canvas(e.sx,e.sy);switch(i){case"move":{const s=n[i].active;null!=s&&this.trigger(t,e,s.id);const h=this.toolbar.inspectors.filter(t=>t.active);let _="default";null!=r?(_=r.cursor(e.sx,e.sy)||_,c.is_empty(h)||(t=this.move_exit)):this._hit_test_frame(e.sx,e.sy)&&(c.is_empty(h)||(_="crosshair")),this.plot_view.set_cursor(_),this.plot_view.set_toolbar_visibility(a),h.map(s=>this.trigger(t,e,s.id));break}case"tap":{const{target:a}=s;if(null!=a&&a!=this.hit_area)return;null!=r&&null!=r.on_hit&&r.on_hit(e.sx,e.sy);const h=n[i].active;null!=h&&this.trigger(t,e,h.id);break}case"scroll":{const i=n[p.is_mobile?"pinch":"scroll"].active;null!=i&&(s.preventDefault(),s.stopPropagation(),this.trigger(t,e,i.id));break}case"pan":{const r=n[i].active;null!=r&&(s.preventDefault(),this.trigger(t,e,r.id));break}default:{const s=n[i].active;null!=s&&this.trigger(t,e,s.id)}}this._trigger_bokeh_event(e)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t){const e=(()=>{const{sx:e,sy:s}=t,n=this.plot_view.frame.x_scale.invert(e),i=this.plot_view.frame.y_scale.invert(s);switch(t.type){case"wheel":return new _.MouseWheel(e,s,n,i,t.delta);case"mousemove":return new _.MouseMove(e,s,n,i);case"mouseenter":return new _.MouseEnter(e,s,n,i);case"mouseleave":return new _.MouseLeave(e,s,n,i);case"tap":return new _.Tap(e,s,n,i);case"doubletap":return new _.DoubleTap(e,s,n,i);case"press":return new _.Press(e,s,n,i);case"pressup":return new _.PressUp(e,s,n,i);case"pan":return new _.Pan(e,s,n,i,t.deltaX,t.deltaY);case"panstart":return new _.PanStart(e,s,n,i);case"panend":return new _.PanEnd(e,s,n,i);case"pinch":return new _.Pinch(e,s,n,i,t.scale);case"pinchstart":return new _.PinchStart(e,s,n,i);case"pinchend":return new _.PinchEnd(e,s,n,i);case"rotate":return new _.Rotate(e,s,n,i,t.rotation);case"rotatestart":return new _.RotateStart(e,s,n,i);case"rotateend":return new _.RotateEnd(e,s,n,i);default:return}})();null!=e&&this.plot_view.model.trigger_event(e)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return"undefined"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=h.offset(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:o.getDeltaY(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){const e=this._tap_event(t);this._trigger_bokeh_event(e),this.trigger(this.doubletap,e)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEvents=d,d.__name__="UIEvents"},n”, ” function _(e,t,n){n”, ” /!n”, ” * jQuery Mousewheel 3.1.13n”, ” n”, ” * Copyright jQuery Foundation and other contributorsn”, ” * Released under the MIT licensen”, ” * http://jquery.org/licensen”, ” */n”, ” function r(e){const t=getComputedStyle(e).fontSize;return null!=t?parseInt(t,10):null}Object.defineProperty(n,"__esModule",{value:!0}),n.getDeltaY=function(e){let t=-e.deltaY;if(e.target instanceof HTMLElement)switch(e.deltaMode){case e.DOM_DELTA_LINE:t*=r((n=e.target).offsetParent||document.body)||r(n)||16;break;case e.DOM_DELTA_PAGE:t*=function(e){return e.clientHeight}(e.target)}var n;return t}},n”, ” function _(n,e,o){Object.defineProperty(o,"__esModule",{value:!0});const t=("undefined"!=typeof window?window.requestAnimationFrame:void 0)||("undefined"!=typeof window?window.webkitRequestAnimationFrame:void 0)||("undefined"!=typeof window?window.mozRequestAnimationFrame:void 0)||("undefined"!=typeof window?window.msRequestAnimationFrame:void 0)||function(n){return n(Date.now()),-1};o.throttle=function(n,e){let o=null,i=0,u=!1;return function(){return new Promise((d,w)=>{const r=function(){i=Date.now(),o=null,u=!1;try{n(),d()}catch(n){w(n)}},a=Date.now(),f=e-(a-i);f<=0&&!u?(null!=o&&clearTimeout(o),u=!0,t(r)):o||u?d():o=setTimeout(()=>t(r),f)})}}},n”, ” function _(t,e,h){Object.defineProperty(h,"__esModule",{value:!0});const i=t(213),o=t(214),r=t(79);class s extends o.Layoutable{constructor(){super(…arguments),this.min_border={left:0,top:0,right:0,bottom:0}}_measure(t){t=new i.Sizeable(t).bounded_to(this.sizing.size);const e=this.left_panel.measure({width:0,height:t.height}),h=Math.max(e.width,this.min_border.left),o=this.right_panel.measure({width:0,height:t.height}),r=Math.max(o.width,this.min_border.right),s=this.top_panel.measure({width:t.width,height:0}),n=Math.max(s.height,this.min_border.top),a=this.bottom_panel.measure({width:t.width,height:0}),g=Math.max(a.height,this.min_border.bottom),_=new i.Sizeable(t).shrink_by({left:h,right:r,top:n,bottom:g}),m=this.center_panel.measure(_);return{width:h+m.width+r,height:n+m.height+g,inner:{left:h,right:r,top:n,bottom:g},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return"fixed"!=t&&"fixed"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const h=this.left_panel.measure({width:0,height:t.height}),i=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:n,top:a,right:g,bottom:_}=e;this.top_panel.set_geometry(new r.BBox({left:n,right:g,bottom:a,height:o.height})),this.bottom_panel.set_geometry(new r.BBox({left:n,right:g,top:_,height:s.height})),this.left_panel.set_geometry(new r.BBox({top:a,bottom:_,right:n,width:h.width})),this.right_panel.set_geometry(new r.BBox({top:a,bottom:_,left:g,width:i.width}))}}h.BorderLayout=s,s.__name__="BorderLayout"},n”, ” function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const l=i(213),a=i(214),r=i(8),o=Math.PI/2,h="left",s="center",n={above:{parallel:0,normal:-o,horizontal:0,vertical:-o},below:{parallel:0,normal:o,horizontal:0,vertical:o},left:{parallel:-o,normal:0,horizontal:0,vertical:-o},right:{parallel:o,normal:0,horizontal:0,vertical:o}},d={above:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"alphabetic",vertical:"middle"},below:{justified:"bottom",parallel:"hanging",normal:"middle",horizontal:"hanging",vertical:"middle"},left:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"middle",vertical:"alphabetic"},right:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"middle",vertical:"alphabetic"}},_={above:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},below:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},left:{justified:s,parallel:s,normal:"right",horizontal:"right",vertical:s},right:{justified:s,parallel:s,normal:h,horizontal:h,vertical:s}},c={above:"right",below:h,left:"right",right:h},m={above:h,below:"right",left:"right",right:h};class g extends a.ContentLayoutable{constructor(i,t){switch(super(),this.side=i,this.obj=t,this.side){case"above":this._dim=0,this._normals=[0,-1];break;case"below":this._dim=0,this._normals=[0,1];break;case"left":this._dim=1,this._normals=[-1,0];break;case"right":this._dim=1,this._normals=[1,0]}this.is_horizontal?this.set_sizing({width_policy:"max",height_policy:"fixed"}):this.set_sizing({width_policy:"fixed",height_policy:"max"})}_content_size(){return new l.Sizeable(this.get_oriented_size())}get_oriented_size(){const{width:i,height:t}=this.obj.get_size();return!this.obj.rotate||this.is_horizontal?{width:i,height:t}:{width:t,height:i}}has_size_changed(){const{width:i,height:t}=this.get_oriented_size();return this.is_horizontal?this.bbox.height!=t:this.bbox.width!=i}get dimension(){return this._dim}get normals(){return this._normals}get is_horizontal(){return 0==this._dim}get is_vertical(){return 1==this._dim}apply_label_text_heuristics(i,t){const e=this.side;let l,a;r.isString(t)?(l=d[e][t],a=_[e][t]):t<0?(l="middle",a=c[e]):(l="middle",a=m[e]),i.textBaseline=l,i.textAlign=a}get_label_angle_heuristic(i){return n[this.side][i]}}e.SidePanel=g,g.__name__="SidePanel"},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(15),o=t(72),a=t(37),n=t(312),p=new i.Signal0({},"gmaps_ready");class l extends n.PlotView{initialize(){this.pause(),super.initialize(),this._tiles_loaded=!1,this.zoom_count=0;const{zoom:t,lat:e,lng:s}=this.model.map_options;if(this.initial_zoom=t,this.initial_lat=e,this.initial_lng=s,"undefined"==typeof google||null==google.maps){if(void 0===window._bokeh_gmaps_callback){!function(t){window._bokeh_gmaps_callback=()=>p.emit();const e=document.createElement("script");e.type="text/javascript",e.src=`https://maps.googleapis.com/maps/api/js?v=3.36&key=${t}&callback=_bokeh_gmaps_callback`,document.body.appendChild(e)}(atob(this.model.api_key))}p.connect(()=>this.request_render())}this.unpause()}remove(){o.remove(this.map_el),super.remove()}update_range(t){if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(t.sdx||0,t.sdy||0),super.update_range(t);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t);const e=t.factor<0?-1:1,s=this.map.getZoom(),i=s+e;if(i>=2){this.map.setZoom(i);const[t,e,,]=this._get_projected_bounds();e-t<0&&this.map.setZoom(s)}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=o.div({style:{position:"absolute"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,"idle",()=>this._set_bokeh_ranges()),t.event.addListener(this.map,"bounds_changed",()=>this._set_bokeh_ranges()),t.event.addListenerOnce(this.map,"tilesloaded",()=>this._render_finished()),this.connect(this.model.properties.map_options.change,()=>this._update_options()),this.connect(this.model.map_options.properties.styles.change,()=>this._update_styles()),this.connect(this.model.map_options.properties.lat.change,()=>this._update_center("lat")),this.connect(this.model.map_options.properties.lng.change,()=>this._update_center("lng")),this.connect(this.model.map_options.properties.zoom.change,()=>this._update_zoom()),this.connect(this.model.map_options.properties.map_type.change,()=>this._update_map_type()),this.connect(this.model.map_options.properties.scale_control.change,()=>this._update_scale_control()),this.connect(this.model.map_options.properties.tilt.change,()=>this._update_tilt())}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,i]=this._get_latlon_bounds(),[o,n]=a.wgs84_mercator.compute(t,s),[p,l]=a.wgs84_mercator.compute(e,i);return[o,p,n,l]}_set_bokeh_ranges(){const[t,e,s,i]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:i})}_update_center(t){const e=this.map.getCenter().toJSON();e[t]=this.model.map_options[t],this.map.setCenter(e),this._set_bokeh_ranges()}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center("lat"),this._update_center("lng"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&"undefined"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,i,o]=e;this.map_el.style.top=s+"px",this.map_el.style.left=t+"px",this.map_el.style.width=i+"px",this.map_el.style.height=o+"px"}}_paint_empty(t,e){const s=this.layout.bbox.width,i=this.layout.bbox.height,[o,a,n,p]=e;t.clearRect(0,0,s,i),t.beginPath(),t.moveTo(0,0),t.lineTo(0,i),t.lineTo(s,i),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(o,a),t.lineTo(o+n,a),t.lineTo(o+n,a+p),t.lineTo(o,a+p),t.lineTo(o,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=this.model.border_fill_color,t.fill())}}s.GMapPlotView=l,l.__name__="GMapPlotView"},n”, ” function _(a,e,n){Object.defineProperty(n,"__esModule",{value:!0});var g=a(211);n.DataRange=g.DataRange;var R=a(210);n.DataRange1d=R.DataRange1d;var r=a(98);n.FactorRange=r.FactorRange;var t=a(99);n.Range=t.Range;var d=a(158);n.Range1d=d.Range1d},n”, ” function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});var n=e(90);d.GlyphRenderer=n.GlyphRenderer;var R=e(116);d.GraphRenderer=R.GraphRenderer;var a=e(178);d.GuideRenderer=a.GuideRenderer;var G=e(70);d.Renderer=G.Renderer},n”, ” function _(a,e,l){Object.defineProperty(l,"__esModule",{value:!0});var c=a(209);l.CategoricalScale=c.CategoricalScale;var r=a(146);l.ContinuousScale=r.ContinuousScale;var n=a(145);l.LinearScale=n.LinearScale;var o=a(156);l.LinearInterpolationScale=o.LinearInterpolationScale;var i=a(157);l.LogScale=i.LogScale;var S=a(147);l.Scale=S.Scale},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});e(1).__exportStar(e(118),o);var n=e(88);o.Selection=n.Selection},n”, ” function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var o=a(325);r.ServerSentDataSource=o.ServerSentDataSource;var S=a(327);r.AjaxDataSource=S.AjaxDataSource;var u=a(85);r.ColumnDataSource=u.ColumnDataSource;var t=a(86);r.ColumnarDataSource=t.ColumnarDataSource;var c=a(114);r.CDSView=c.CDSView;var D=a(87);r.DataSource=D.DataSource;var v=a(328);r.GeoJSONDataSource=v.GeoJSONDataSource;var n=a(326);r.WebDataSource=n.WebDataSource},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e(326);class s extends a.WebDataSource{constructor(e){super(e),this.initialized=!1}destroy(){super.destroy()}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{this.load_data(JSON.parse(e.data),this.mode,this.max_size)}}}}i.ServerSentDataSource=s,s.__name__="ServerSentDataSource"},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const r=e(1),s=e(85),i=r.__importStar(e(18));class n extends s.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:r}=this;let s;switch(s=null!=r?r.execute(this,{response:e}):e,t){case"replace":this.data=s;break;case"append":{const e=this.data;for(const t of this.columns()){const r=Array.from(e[t]),i=Array.from(s[t]);s[t]=r.concat(i).slice(-a)}this.data=s;break}}}static init_WebDataSource(){this.define({mode:[i.UpdateMode,"replace"],max_size:[i.Number],adapter:[i.Any,null],data_url:[i.String]})}}a.WebDataSource=n,n.__name__="WebDataSource",n.init_WebDataSource()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(326),r=t(19),o=s.__importStar(t(18)),n=t(13);class d extends a.WebDataSource{constructor(t){super(t),this.initialized=!1}static init_AjaxDataSource(){this.define({polling_interval:[o.Number],content_type:[o.String,"application/json"],http_headers:[o.Any,{}],method:[o.HTTPMethod,"POST"],if_modified:[o.Boolean,!1]})}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=0,i=!1){const s=this.prepare_request();s.addEventListener("load",()=>this.do_load(s,t,e)),s.addEventListener("error",()=>this.do_error(s)),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader("Content-Type",this.content_type);const e=this.http_headers;for(const[i,s]of n.entries(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){r.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=d,d.__name__="AjaxDataSource",d.init_AjaxDataSource()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1),n=e(86),s=e(19),a=r.__importStar(e(18)),i=e(9),l=e(13);function c(e){return null!=e?e:NaN}class _ extends n.ColumnarDataSource{constructor(e){super(e)}static init_GeoJSONDataSource(){this.define({geojson:[a.Any]}),this.internal({data:[a.Any,{}]})}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,()=>this._update_data())}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return i.range(0,e).map(e=>[])}_get_new_nan_array(e){return i.range(0,e).map(e=>NaN)}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of l.entries(s))t.hasOwnProperty(e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=c(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case"Point":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=c(s);break}case"LineString":{const{coordinates:r}=e;for(let e=0;e<r.length;e++){const[n,s,a]=r[e];t.xs[o][e]=n,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"Polygon":{e.coordinates.length>1&&s.logger.warn("Bokeh does not support Polygons with holes in, only exterior ring used.");const r=e.coordinates[0];for(let e=0;e<r.length;e++){const[n,s,a]=r[e];t.xs[o][e]=n,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"MultiPoint":s.logger.warn("MultiPoint not supported in Bokeh");break;case"MultiLineString":{const n=e.coordinates.reduce(r);for(let e=0;e<n.length;e++){const[r,s,a]=n[e];t.xs[o][e]=r,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"MultiPolygon":{const n=[];for(const t of e.coordinates)t.length>1&&s.logger.warn("Bokeh does not support Polygons with holes in, only exterior ring used."),n.push(t[0]);const a=n.reduce(r);for(let e=0;e<a.length;e++){const[r,n,s]=a[e];t.xs[o][e]=r,t.ys[o][e]=n,t.zs[o][e]=c(s)}break}default:throw new Error("Invalid GeoJSON geometry type: "+e.type)}}geojson_to_column_data(){const e=JSON.parse(this.geojson);let t;switch(e.type){case"GeometryCollection":if(null==e.geometries)throw new Error("No geometries found in GeometryCollection");if(0===e.geometries.length)throw new Error("geojson.geometries must have one or more items");t=e.geometries;break;case"FeatureCollection":if(null==e.features)throw new Error("No features found in FeaturesCollection");if(0==e.features.length)throw new Error("geojson.features must have one or more items");t=e.features;break;default:throw new Error("Bokeh only supports type GeometryCollection and FeatureCollection at top level")}let o=0;for(const e of t){const t="Feature"===e.type?e.geometry:e;"GeometryCollection"==t.type?o+=t.geometries.length:o+=1}const r={x:this._get_new_nan_array(o),y:this._get_new_nan_array(o),z:this._get_new_nan_array(o),xs:this._get_new_list_array(o),ys:this._get_new_list_array(o),zs:this._get_new_list_array(o)};let n=0;for(const e of t){const t="Feature"==e.type?e.geometry:e;if("GeometryCollection"==t.type)for(const s of t.geometries)this._add_geometry(s,r,n),"Feature"===e.type&&this._add_properties(e,r,n,o),n+=1;else this._add_geometry(t,r,n),"Feature"===e.type&&this._add_properties(e,r,n,o),n+=1}return r}}o.GeoJSONDataSource=_,_.__name__="GeoJSONDataSource",_.init_GeoJSONDataSource()},n”, ” function _(e,r,i){Object.defineProperty(i,"__esModule",{value:!0});var c=e(127);i.AdaptiveTicker=c.AdaptiveTicker;var a=e(126);i.BasicTicker=a.BasicTicker;var k=e(180);i.CategoricalTicker=k.CategoricalTicker;var T=e(191);i.CompositeTicker=T.CompositeTicker;var t=e(128);i.ContinuousTicker=t.ContinuousTicker;var o=e(190);i.DatetimeTicker=o.DatetimeTicker;var v=e(192);i.DaysTicker=v.DaysTicker;var n=e(330);i.FixedTicker=n.FixedTicker;var s=e(199);i.LogTicker=s.LogTicker;var l=e(202);i.MercatorTicker=l.MercatorTicker;var u=e(195);i.MonthsTicker=u.MonthsTicker;var d=e(193);i.SingleIntervalTicker=d.SingleIntervalTicker;var g=e(129);i.Ticker=g.Ticker;var C=e(196);i.YearsTicker=C.YearsTicker},n”, ” function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=i(1),n=i(128),s=r.__importStar(i(18));class _ extends n.ContinuousTicker{constructor(i){super(i),this.min_interval=0,this.max_interval=0}static init_FixedTicker(){this.define({ticks:[s.Array,[]],minor_ticks:[s.Array,[]]})}get_ticks_no_defaults(i,t,e,r){return{major:this.ticks,minor:this.minor_ticks}}get_interval(i,t,e){return 0}}e.FixedTicker=_,_.__name__="FixedTicker",_.init_FixedTicker()},n”, ” function _(e,r,o){Object.defineProperty(o,"__esModule",{value:!0});var T=e(332);o.BBoxTileSource=T.BBoxTileSource;var c=e(333);o.MercatorTileSource=c.MercatorTileSource;var i=e(336);o.QUADKEYTileSource=i.QUADKEYTileSource;var l=e(337);o.TileRenderer=l.TileRenderer;var S=e(334);o.TileSource=S.TileSource;var u=e(341);o.TMSTileSource=u.TMSTileSource;var a=e(338);o.WMTSTileSource=a.WMTSTileSource},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(1),i=e(333),l=o.__importStar(e(18));class _ extends i.MercatorTileSource{constructor(e){super(e)}static init_BBoxTileSource(){this.define({use_latlon:[l.Boolean,!1]})}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars);let i,l,_,n;return this.use_latlon?[l,n,i,_]=this.get_tile_geographic_bounds(e,t,r):[l,n,i,_]=this.get_tile_meter_bounds(e,t,r),o.replace("{XMIN}",l.toString()).replace("{YMIN}",n.toString()).replace("{XMAX}",i.toString()).replace("{YMAX}",_.toString())}}r.BBoxTileSource=_,_.__name__="BBoxTileSource",_.init_BBoxTileSource()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const _=t(1),s=t(334),r=_.__importStar(t(18)),o=t(9),n=t(335);class l extends s.TileSource{constructor(t){super(t)}static init_MercatorTileSource(){this.define({snap_to_zoom:[r.Boolean,!1],wrap_around:[r.Boolean,!0]}),this.override({x_origin_offset:20037508.34,y_origin_offset:20037508.34,initial_resolution:156543.03392804097})}initialize(){super.initialize(),this._resolutions=o.range(this.min_zoom,this.max_zoom+1).map(t=>this.get_resolution(t))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)<Math.abs(t-r)?e:t}));return this._resolutions.indexOf(o)}snap_to_zoom_level(t,e,i,_){const[s,r,o,n]=t,l=this._resolutions[_];let u=i*l,a=e*l;if(!this.snap_to_zoom){const t=(o-s)/u,e=(n-r)/a;t>e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<<i)-e]}meters_to_tile(t,e,i){const[_,s]=this.meters_to_pixels(t,e,i);return this.pixels_to_tile(_,s)}get_tile_meter_bounds(t,e,i){const[_,s]=this.pixels_to_meters(t*this.tile_size,e*this.tile_size,i),[r,o]=this.pixels_to_meters((t+1)*this.tile_size,(e+1)*this.tile_size,i);return[_,s,r,o]}get_tile_geographic_bounds(t,e,i){const _=this.get_tile_meter_bounds(t,e,i),[s,r,o,l]=n.meters_extent_to_geographic(_);return[s,r,o,l]}get_tiles_by_extent(t,e,i=1){const[_,s,r,o]=t;let[n,l]=this.meters_to_tile(_,s,e),[u,a]=this.meters_to_tile(r,o,e);n-=i,l-=i,u+=i,a+=i;const h=[];for(let t=a;t>=l;t–)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s–){const r=1<<s-1;switch(t.charAt(_-s)){case"0":continue;case"1":e|=r;break;case"2":i|=r;break;case"3":e|=r,i|=r;break;default:throw new TypeError("Invalid Quadkey: "+t)}}return[e,i,_]}tile_xyz_to_quadkey(t,e,i){let _="";for(let s=i;s>0;s–){const i=1<<s-1;let r=0;0!=(t&i)&&(r+=1),0!=(e&i)&&(r+=2),_+=r.toString()}return _}children_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=[];for(let t=0;t<=3;t++){const[e,i,r]=this.quadkey_to_tile_xyz(_+t.toString()),o=this.get_tile_meter_bounds(e,i,r);s.push([e,i,r,o])}return s}get_closest_parent_by_tile_xyz(t,e,i){const _=this.calculate_world_x_by_tile_xyz(t,e,i);[t,e,i]=this.normalize_xyz(t,e,i);let s=this.tile_xyz_to_quadkey(t,e,i);for(;s.length>0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=l,l.__name__="MercatorTileSource",l.init_MercatorTileSource()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1),n=e(81),s=e(13),l=i.__importStar(e(18));class a extends n.Model{constructor(e){super(e)}static init_TileSource(){this.define({url:[l.String,""],tile_size:[l.Number,256],max_zoom:[l.Number,30],min_zoom:[l.Number,0],extra_url_vars:[l.Any,{}],attribution:[l.String,""],x_origin_offset:[l.Number],y_origin_offset:[l.Number],initial_resolution:[l.Number]})}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._clear_cache())}string_lookup_replace(e,t){let r=e;for(const[e,i]of s.entries(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace("{x}","{X}").replace("{y}","{Y}").replace("{z}","{Z}").replace("{q}","{Q}").replace("{xmin}","{XMIN}").replace("{ymin}","{YMIN}").replace("{xmax}","{XMAX}").replace("{ymax}","{YMAX}");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(":").map(e=>parseInt(e));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,s]=t,l=(n-r)/2+r,a=(s-i)/2+i;e.sort((function(e,t){return Math.sqrt((l-e[0])**2+(a-e[1])**2)-Math.sqrt((l-t[0])**2+(a-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace("{X}",e.toString()).replace("{Y}",t.toString()).replace("{Z}",r.toString())}}r.TileSource=a,a.__name__="TileSource",a.init_TileSource()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const n=e(37);function o(e,t){return n.wgs84_mercator.compute(e,t)}function c(e,t){return n.wgs84_mercator.invert(e,t)}r.geographic_to_meters=o,r.meters_to_geographic=c,r.geographic_extent_to_meters=function(e){const[t,r,n,c]=e,[_,u]=o(t,r),[i,g]=o(n,c);return[_,u,i,g]},r.meters_extent_to_geographic=function(e){const[t,r,n,o]=e,[_,u]=c(t,r),[i,g]=c(n,o);return[_,u,i,g]}},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const _=e(333);class s extends _.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const _=this.string_lookup_replace(this.url,this.extra_url_vars),[s,o,u]=this.tms_to_wmts(e,t,r),c=this.tile_xyz_to_quadkey(s,o,u);return _.replace("{Q}",c)}}r.QUADKEYTileSource=s,s.__name__="QUADKEYTileSource"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),_=t(338),n=t(91),a=t(158),r=t(72),o=s.__importStar(t(18)),h=t(251),l=t(9),d=t(8),m=t(89),c=t(85),g=t(339),p=s.__importDefault(t(340));class u extends n.DataRendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.tile_source.change,()=>this.request_render())}styles(){return[…super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&r.removeElement(this.attribution_el);const{attribution:t}=this.model.tile_source;if(d.isString(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=r.div({class:g.bk_tile_attribution,style:{position:"absolute",right:s+"px",bottom:_+"px","max-width":n-4+"px",padding:"2px","background-color":"rgba(255,255,255,0.5)","font-size":"9px","line-height":"1.05","white-space":"nowrap",overflow:"hidden","text-overflow":"ellipsis"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\s\n\s*/g," ")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof a.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof a.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const[n,a,r]=this.model.tile_source.normalize_xyz(t,e,i),o={img:void 0,tile_coords:[t,e,i],normalized_coords:[n,a,r],quadkey:this.model.tile_source.tile_xyz_to_quadkey(t,e,i),cache_key:this.model.tile_source.tile_xyz_to_key(t,e,i),bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]},l=this.model.tile_source.get_image_url(n,a,r);new h.ImageLoader(l,{loaded:t=>{Object.assign(o,{img:t,loaded:!0}),_?(o.finished=!0,this.notify_finished()):this.request_render()},failed(){o.finished=!0}}),this.model.tile_source.tiles.set(o.cache_key,o),this._tiles.push(o)}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0===this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,r=t,o=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,r,o,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.properties.outline_line_width.value(),e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);e<i;e++){const[i,s,_]=n[e],a=this.model.tile_source.children_by_tile_xyz(i,s,_);for(const e of a){const[i,s,_,n]=e;t.tiles.has(t.tile_xyz_to_key(i,s,_))||this._create_tile(i,s,_,n,!0)}}}_fetch_tiles(t){for(const e of t){const[t,i,s,_]=e;this._create_tile(t,i,s,_)}}_update(){const{tile_source:t}=this.model,{min_zoom:e}=t,{max_zoom:i}=t;let s=this.get_extent();const _=this.extent[2]-this.extent[0]<s[2]-s[0],n=this.map_frame.bbox.height,a=this.map_frame.bbox.width;let r=t.get_level_by_extent(s,n,a),o=!1;r<e?(s=this.extent,r=e,o=!0):r>i&&(s=this.extent,r=i,o=!0),o&&(this.x_range.setv({x_range:{start:s[0],end:s[2]}}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,r),d=[],m=[],c=[],g=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),r=t.tiles.get(a);if(null!=r&&r.loaded)m.push(a);else if(this.model.render_parents){const[e,a,r]=t.get_closest_parent_by_tile_xyz(i,s,n),o=t.tile_xyz_to_key(e,a,r),h=t.tiles.get(o);if(null!=h&&h.loaded&&!l.includes(c,o)&&c.push(o),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&g.push(e)}}}null==r&&d.push(e)}this._render_tiles(c),this._render_tiles(g),this._render_tiles(m),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout(()=>this._fetch_tiles(d),65)}}i.TileRendererView=u,u.__name__="TileRendererView";class b extends n.DataRenderer{constructor(t){super(t),this._selection_manager=new m.SelectionManager({source:new c.ColumnDataSource})}static init_TileRenderer(){this.prototype.default_view=u,this.define({alpha:[o.Number,1],smoothing:[o.Boolean,!0],tile_source:[o.Instance,()=>new _.WMTSTileSource],render_parents:[o.Boolean,!0]})}get_selection_manager(){return this._selection_manager}}i.TileRenderer=b,b.__name__="TileRenderer",b.init_TileRenderer()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(333);class s extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,_]=this.tms_to_wmts(e,t,r);return o.replace("{X}",s.toString()).replace("{Y}",c.toString()).replace("{Z}",_.toString())}}r.WMTSTileSource=s,s.__name__="WMTSTileSource"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0}),i.bk_tile_attribution="bk-tile-attribution"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});n.default="\n.bk-root .bk-tile-attribution a {\n color: black;\n}\n"},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(333);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace("{X}",e.toString()).replace("{Y}",r.toString()).replace("{Z}",t.toString())}}t.TMSTileSource=c,c.__name__="TMSTileSource"},n”, ” function _(e,r,a){Object.defineProperty(a,"__esModule",{value:!0});var t=e(343);a.CanvasTexture=t.CanvasTexture;var u=e(345);a.ImageURLTexture=u.ImageURLTexture;var v=e(344);a.Texture=v.Texture},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),c=t(344),s=r.__importStar(t(18)),i=t(29);class a extends c.Texture{constructor(t){super(t)}static init_CanvasTexture(){this.define({code:[s.String]})}get func(){const t=i.use_strict(this.code);return new Function("ctx","color","scale","weight",t)}get_pattern(t,e,n){return r=>{const c=document.createElement("canvas");c.width=e,c.height=e;const s=c.getContext("2d");return this.func.call(this,s,t,e,n),r.createPattern(c,this.repetition)}}}n.CanvasTexture=a,a.__name__="CanvasTexture",a.init_CanvasTexture()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),n=e(81),o=r.__importStar(e(18));class _ extends n.Model{constructor(e){super(e)}static init_Texture(){this.define({repetition:[o.TextureRepetition,"repeat"]})}onload(e){e()}}i.Texture=_,_.__name__="Texture",_.init_Texture()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),a=e(344),n=r.__importStar(e(18)),s=e(251);class o extends a.Texture{constructor(e){super(e)}static init_ImageURLTexture(){this.define({url:[n.String]})}initialize(){super.initialize(),this._loader=new s.ImageLoader(this.url)}get_pattern(e,t,i){return e=>this._loader.finished?e.createPattern(this._loader.image,this.repetition):null}onload(e){this._loader.promise.then(()=>e())}}i.ImageURLTexture=o,o.__name__="ImageURLTexture",o.init_ImageURLTexture()},n”, ” function _(o,l,T){Object.defineProperty(T,"__esModule",{value:!0});var a=o(307);T.ActionTool=a.ActionTool;var r=o(347);T.CustomAction=r.CustomAction;var e=o(308);T.HelpTool=e.HelpTool;var v=o(348);T.RedoTool=v.RedoTool;var t=o(349);T.ResetTool=t.ResetTool;var n=o(350);T.SaveTool=n.SaveTool;var s=o(351);T.UndoTool=s.UndoTool;var i=o(352);T.ZoomInTool=i.ZoomInTool;var P=o(355);T.ZoomOutTool=P.ZoomOutTool;var c=o(296);T.ButtonTool=c.ButtonTool;var d=o(356);T.EditTool=d.EditTool;var u=o(357);T.BoxEditTool=u.BoxEditTool;var y=o(358);T.FreehandDrawTool=y.FreehandDrawTool;var m=o(359);T.PointDrawTool=m.PointDrawTool;var x=o(360);T.PolyDrawTool=x.PolyDrawTool;var B=o(361);T.PolyTool=B.PolyTool;var S=o(362);T.PolyEditTool=S.PolyEditTool;var b=o(363);T.BoxSelectTool=b.BoxSelectTool;var h=o(366);T.BoxZoomTool=h.BoxZoomTool;var E=o(306);T.GestureTool=E.GestureTool;var Z=o(367);T.LassoSelectTool=Z.LassoSelectTool;var p=o(369);T.LineEditTool=p.LineEditTool;var w=o(371);T.PanTool=w.PanTool;var C=o(368);T.PolySelectTool=C.PolySelectTool;var D=o(372);T.RangeTool=D.RangeTool;var H=o(364);T.SelectTool=H.SelectTool;var R=o(373);T.TapTool=R.TapTool;var A=o(374);T.WheelPanTool=A.WheelPanTool;var I=o(375);T.WheelZoomTool=I.WheelZoomTool;var L=o(376);T.CrosshairTool=L.CrosshairTool;var W=o(377);T.CustomJSHover=W.CustomJSHover;var O=o(378);T.HoverTool=O.HoverTool;var _=o(295);T.InspectTool=_.InspectTool;var f=o(298);T.Tool=f.Tool;var g=o(379);T.ToolProxy=g.ToolProxy;var F=o(294);T.Toolbar=F.Toolbar;var G=o(305);T.ToolbarBase=G.ToolbarBase;var J=o(380);T.ProxyToolbar=J.ProxyToolbar;var U=o(380);T.ToolbarBox=U.ToolbarBox},n”, ” function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(307),e=n.__importStar(t(18)),c=t(299);class _ extends s.ActionToolButtonView{css_classes(){return super.css_classes().concat(c.bk_toolbar_button_custom_action)}}i.CustomActionButtonView=_,_.__name__="CustomActionButtonView";class l extends s.ActionToolView{doit(){null!=this.model.callback&&this.model.callback.execute(this.model)}}i.CustomActionView=l,l.__name__="CustomActionView";class u extends s.ActionTool{constructor(t){super(t),this.tool_name="Custom Action",this.button_view=_}static init_CustomAction(){this.prototype.default_view=l,this.define({action_tooltip:[e.String,"Perform a Custom Action"],callback:[e.Any],icon:[e.String]})}get tooltip(){return this.action_tooltip}}i.CustomAction=u,u.__name__="CustomAction",u.init_CustomAction()},n”, ” function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o(307),s=o(309);class n extends i.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_redo())}doit(){this.plot_view.redo()}}t.RedoToolView=n,n.__name__="RedoToolView";class _ extends i.ActionTool{constructor(o){super(o),this.tool_name="Redo",this.icon=s.bk_tool_icon_redo}static init_RedoTool(){this.prototype.default_view=n,this.override({disabled:!0}),this.register_alias("redo",()=>new _)}}t.RedoTool=_,_.__name__="RedoTool",_.init_RedoTool()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(307),i=e(309);class _ extends s.ActionToolView{doit(){this.plot_view.reset()}}o.ResetToolView=_,_.__name__="ResetToolView";class l extends s.ActionTool{constructor(e){super(e),this.tool_name="Reset",this.icon=i.bk_tool_icon_reset}static init_ResetTool(){this.prototype.default_view=_,this.register_alias("reset",()=>new l)}}o.ResetTool=l,l.__name__="ResetTool",l.init_ResetTool()},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(307),i=e(309);class n extends a.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:e});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement("a");t.href=URL.createObjectURL(o),t.download=e,t.target="_blank",t.dispatchEvent(new MouseEvent("click"))}doit(e="save"){switch(e){case"save":this.save("bokeh_plot");break;case"copy":this.copy()}}}t.SaveToolView=n,n.__name__="SaveToolView";class s extends a.ActionTool{constructor(e){super(e),this.tool_name="Save",this.icon=i.bk_tool_icon_save}static init_SaveTool(){this.prototype.default_view=n,this.register_alias("save",()=>new s)}get menu(){return[{icon:"bk-tool-icon-copy-to-clipboard",tooltip:"Copy image to clipboard",if:()=>"undefined"!=typeof ClipboardItem,handler:()=>{this.do.emit("copy")}}]}}t.SaveTool=s,s.__name__="SaveTool",s.init_SaveTool()},n”, ” function _(o,t,e){Object.defineProperty(e,"__esModule",{value:!0});const n=o(307),i=o(309);class s extends n.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_undo())}doit(){this.plot_view.undo()}}e.UndoToolView=s,s.__name__="UndoToolView";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name="Undo",this.icon=i.bk_tool_icon_undo}static init_UndoTool(){this.prototype.default_view=s,this.override({disabled:!0}),this.register_alias("undo",()=>new _)}}e.UndoTool=_,_.__name__="UndoTool",_.init_UndoTool()},n”, ” function _(o,i,e){Object.defineProperty(e,"__esModule",{value:!0});const n=o(353),s=o(309);class t extends n.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name="Zoom In",this.icon=s.bk_tool_icon_zoom_in}static init_ZoomInTool(){this.prototype.default_view=n.ZoomBaseToolView,this.register_alias("zoom_in",()=>new t({dimensions:"both"})),this.register_alias("xzoom_in",()=>new t({dimensions:"width"})),this.register_alias("yzoom_in",()=>new t({dimensions:"height"}))}}e.ZoomInTool=t,t.__name__="ZoomInTool",t.init_ZoomInTool()},n”, ” function _(o,t,e){Object.defineProperty(e,"__esModule",{value:!0});const i=o(1),s=o(307),n=o(354),_=i.__importStar(o(18));class l extends s.ActionToolView{doit(){const o=this.plot_view.frame,t=this.model.dimensions,e="width"==t||"both"==t,i="height"==t||"both"==t,s=n.scale_range(o,this.model.sign*this.model.factor,e,i);this.plot_view.push_state("zoom_out",{range:s}),this.plot_view.update_range(s,!1,!0),this.model.document&&this.model.document.interactive_start(this.plot_model)}}e.ZoomBaseToolView=l,l.__name__="ZoomBaseToolView";class a extends s.ActionTool{constructor(o){super(o)}static init_ZoomBaseTool(){this.prototype.default_view=l,this.define({factor:[_.Percent,.1],dimensions:[_.Dimensions,"both"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.ZoomBaseTool=a,a.__name__="ZoomBaseTool",a.init_ZoomBaseTool()},n”, ” function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=n(10);function r(n,e,t){const[o,r]=[n.start,n.end],s=null!=t?t:(r+o)/2;return[o-(o-s)*e,r-(r-s)*e]}function s(n,[e,t]){const o=new Map;for(const[r,s]of n){const[n,c]=s.r_invert(e,t);o.set(r,{start:n,end:c})}return o}t.scale_highlow=r,t.get_info=s,t.scale_range=function(n,e,t=!0,c=!0,l){e=o.clamp(e,-.9,.9);const a=t?e:0,[u,_]=r(n.bbox.h_range,a,null!=l?l.x:void 0),i=s(n.x_scales,[u,_]),f=c?e:0,[d,b]=r(n.bbox.v_range,f,null!=l?l.y:void 0);return{xrs:i,yrs:s(n.y_scales,[d,b]),factor:e}}},n”, ” function _(o,t,i){Object.defineProperty(i,"__esModule",{value:!0});const e=o(353),s=o(309);class n extends e.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name="Zoom Out",this.icon=s.bk_tool_icon_zoom_out}static init_ZoomOutTool(){this.prototype.default_view=e.ZoomBaseToolView,this.register_alias("zoom_out",()=>new n({dimensions:"both"})),this.register_alias("xzoom_out",()=>new n({dimensions:"width"})),this.register_alias("yzoom_out",()=>new n({dimensions:"height"}))}}i.ZoomOutTool=n,n.__name__="ZoomOutTool",n.init_ZoomOutTool()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1).__importStar(e(18)),i=e(9),n=e(8),r=e(11),_=e(306);class c extends _.GestureToolView{constructor(){super(…arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:o}=e;return t||o?t&&!o?"append":!t&&o?"intersect":t&&o?"subtract":void r.unreachable():"replace"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,o){if(!this.plot_view.frame.bbox.contains(e,t))return null;const s=this.plot_view.renderer_views.get(o);return[s.coordinates.x_scale.invert(e),s.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,o=t.selected.indices;o.sort();for(const e of t.columns()){const s=t.get_array(e);for(let e=0;e<o.length;e++){const t=o[e];s.splice(t-e,1)}}this._emit_cds_changes(t)}_pop_glyphs(e,t){const o=e.columns();if(t&&o.length)for(const s of o){let o=e.get_array(s);const i=o.length-t+1;i<1||(n.isArray(o)||(o=Array.from(o),e.data[s]=o),o.splice(0,i))}}_emit_cds_changes(e,t=!0,o=!0,s=!0){o&&e.selection_manager.clear(),t&&e.change.emit(),s&&(e.data=e.data,e.properties.data.change.emit())}_drag_points(e,t,o="both"){if(null==this._basepoint)return;const[s,i]=this._basepoint;for(const n of t){const t=this._map_drag(s,i,n),r=this._map_drag(e.sx,e.sy,n);if(null==r||null==t)continue;const[_,c]=r,[a,l]=t,[d,u]=[_-a,c-l],h=n.glyph,m=n.data_source,[p,f]=[h.x.field,h.y.field];for(const e of m.selected.indices)!p||"width"!=o&&"both"!=o||(m.data[p][e]+=d),!f||"height"!=o&&"both"!=o||(m.data[f][e]+=u);m.change.emit()}this._basepoint=[e.sx,e.sy]}_pad_empty_columns(e,t){for(const o of e.columns())i.includes(t,o)||e.get_array(o).push(this.model.empty_value)}_select_event(e,t,o){const s=this.plot_view.frame,{sx:i,sy:n}=e;if(!s.bbox.contains(i,n))return[];const r={type:"point",sx:i,sy:n},_=[];for(const e of o){const o=e.get_selection_manager(),s=e.data_source,i=[this.plot_view.renderer_views.get(e)];o.select(i,r,!0,t)&&_.push(e),s.properties.selected.change.emit()}return _}}o.EditToolView=c,c.__name__="EditToolView";class a extends _.GestureTool{constructor(e){super(e)}static init_EditTool(){this.define({custom_icon:[s.String],custom_tooltip:[s.String],empty_value:[s.Any],renderers:[s.Array,[]]})}get tooltip(){return this.custom_tooltip||this.tool_name}get computed_icon(){return this.custom_icon||this.icon}}o.EditTool=a,a.__name__="EditTool",a.init_EditTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),_=e(72),o=i.__importStar(e(18)),n=e(356),a=e(309);class d extends n.EditToolView{_tap(e){null==this._draw_basepoint&&null==this._basepoint&&this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)if(e.keyCode===_.Keys.Backspace)this._delete_selected(t);else if(e.keyCode==_.Keys.Esc){t.data_source.selection_manager.clear()}}_set_extent([e,t],[s,i],_,o=!1){const n=this.model.renderers[0],a=this.plot_view.renderer_views.get(n),d=n.glyph,l=n.data_source,[r,h]=a.coordinates.x_scale.r_invert(e,t),[p,u]=a.coordinates.y_scale.r_invert(s,i),[c,m]=[(r+h)/2,(p+u)/2],[f,b]=[h-r,u-p],[x,y]=[d.x.field,d.y.field],[w,v]=[d.width.field,d.height.field];if(_)this._pop_glyphs(l,this.model.num_objects),x&&l.get_array(x).push(c),y&&l.get_array(y).push(m),w&&l.get_array(w).push(f),v&&l.get_array(v).push(b),this._pad_empty_columns(l,[x,y,w,v]);else{const e=l.data[x].length-1;x&&(l.data[x][e]=c),y&&(l.data[y][e]=m),w&&(l.data[w][e]=f),v&&(l.data[v][e]=b)}this._emit_cds_changes(l,!0,!1,o)}_update_box(e,t=!1,s=!1){if(null==this._draw_basepoint)return;const i=[e.sx,e.sy],_=this.plot_view.frame,o=this.model.dimensions,n=this.model._get_dim_limits(this._draw_basepoint,i,_,o);if(null!=n){const[e,i]=n;this._set_extent(e,i,t,s)}}_doubletap(e){this.model.active&&(null!=this._draw_basepoint?(this._update_box(e,!1,!0),this._draw_basepoint=null):(this._draw_basepoint=[e.sx,e.sy],this._select_event(e,"append",this.model.renderers),this._update_box(e,!0,!1)))}_move(e){this._update_box(e,!1,!1)}_pan_start(e){if(e.shiftKey){if(null!=this._draw_basepoint)return;this._draw_basepoint=[e.sx,e.sy],this._update_box(e,!0,!1)}else{if(null!=this._basepoint)return;this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy]}}_pan(e,t=!1,s=!1){if(e.shiftKey){if(null==this._draw_basepoint)return;this._update_box(e,t,s)}else{if(null==this._basepoint)return;this._drag_points(e,this.model.renderers)}}_pan_end(e){if(this._pan(e,!1,!0),e.shiftKey)this._draw_basepoint=null;else{this._basepoint=null;for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0)}}}s.BoxEditToolView=d,d.__name__="BoxEditToolView";class l extends n.EditTool{constructor(e){super(e),this.tool_name="Box Edit Tool",this.icon=a.bk_tool_icon_box_edit,this.event_type=["tap","pan","move"],this.default_order=1}static init_BoxEditTool(){this.prototype.default_view=d,this.define({dimensions:[o.Dimensions,"both"],num_objects:[o.Int,0]})}}s.BoxEditTool=l,l.__name__="BoxEditTool",l.init_BoxEditTool()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),r=e(72),_=s.__importStar(e(18)),o=e(8),i=e(356),d=e(309);class n extends i.EditToolView{_draw(e,t,a=!1){if(!this.model.active)return;const s=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,s);if(null==r)return;const[_,i]=r,d=s.data_source,n=s.glyph,[l,h]=[n.xs.field,n.ys.field];if("new"==t)this._pop_glyphs(d,this.model.num_objects),l&&d.get_array(l).push([_]),h&&d.get_array(h).push([i]),this._pad_empty_columns(d,[l,h]);else if("add"==t){if(l){const e=d.data[l].length-1;let t=d.get_array(l)[e];o.isArray(t)||(t=Array.from(t),d.data[l][e]=t),t.push(_)}if(h){const e=d.data[h].length-1;let t=d.get_array(h)[e];o.isArray(t)||(t=Array.from(t),d.data[h][e]=t),t.push(i)}}this._emit_cds_changes(d,!0,!0,a)}_pan_start(e){this._draw(e,"new")}_pan(e){this._draw(e,"add")}_pan_end(e){this._draw(e,"add",!0)}_tap(e){this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===r.Keys.Esc?t.data_source.selection_manager.clear():e.keyCode===r.Keys.Backspace&&this._delete_selected(t)}}a.FreehandDrawToolView=n,n.__name__="FreehandDrawToolView";class l extends i.EditTool{constructor(e){super(e),this.tool_name="Freehand Draw Tool",this.icon=d.bk_tool_icon_freehand_draw,this.event_type=["pan","tap"],this.default_order=3}static init_FreehandDrawTool(){this.prototype.default_view=n,this.define({num_objects:[_.Int,0]})}}a.FreehandDrawTool=l,l.__name__="FreehandDrawTool",l.init_FreehandDrawTool()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1),i=e(72),a=s.__importStar(e(18)),n=e(356),_=e(309);class r extends n.EditToolView{_tap(e){if(this._select_event(e,this._select_mode(e),this.model.renderers).length||!this.model.add)return;const t=this.model.renderers[0],o=this._map_drag(e.sx,e.sy,t);if(null==o)return;const s=t.glyph,i=t.data_source,[a,n]=[s.x.field,s.y.field],[_,r]=o;this._pop_glyphs(i,this.model.num_objects),a&&i.get_array(a).push(_),n&&i.get_array(n).push(r),this._pad_empty_columns(i,[a,n]),i.change.emit(),i.data=i.data,i.properties.data.change.emit()}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===i.Keys.Backspace?this._delete_selected(t):e.keyCode==i.Keys.Esc&&t.data_source.selection_manager.clear()}_pan_start(e){this.model.drag&&(this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){this.model.drag&&null!=this._basepoint&&this._drag_points(e,this.model.renderers)}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0);this._basepoint=null}}}o.PointDrawToolView=r,r.__name__="PointDrawToolView";class d extends n.EditTool{constructor(e){super(e),this.tool_name="Point Draw Tool",this.icon=_.bk_tool_icon_point_draw,this.event_type=["tap","pan","move"],this.default_order=2}static init_PointDrawTool(){this.prototype.default_view=r,this.define({add:[a.Boolean,!0],drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}o.PointDrawTool=d,d.__name__="PointDrawTool",d.init_PointDrawTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(72),a=i.__importStar(e(18)),o=e(8),n=e(361),_=e(309);class d extends n.PolyToolView{constructor(){super(…arguments),this._drawing=!1,this._initialized=!1}_tap(e){this._drawing?this._draw(e,"add",!0):this._select_event(e,this._select_mode(e),this.model.renderers)}_draw(e,t,s=!1){const i=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,i);if(this._initialized||this.activate(),null==r)return;const[a,n]=this._snap_to_vertex(e,…r),_=i.data_source,d=i.glyph,[l,h]=[d.xs.field,d.ys.field];if("new"==t)this._pop_glyphs(_,this.model.num_objects),l&&_.get_array(l).push([a,a]),h&&_.get_array(h).push([n,n]),this._pad_empty_columns(_,[l,h]);else if("edit"==t){if(l){const e=_.data[l][_.data[l].length-1];e[e.length-1]=a}if(h){const e=_.data[h][_.data[h].length-1];e[e.length-1]=n}}else if("add"==t){if(l){const e=_.data[l].length-1;let t=_.get_array(l)[e];const s=t[t.length-1];t[t.length-1]=a,o.isArray(t)||(t=Array.from(t),_.data[l][e]=t),t.push(s)}if(h){const e=_.data[h].length-1;let t=_.get_array(h)[e];const s=t[t.length-1];t[t.length-1]=n,o.isArray(t)||(t=Array.from(t),_.data[h][e]=t),t.push(s)}}this._emit_cds_changes(_,!0,!1,s)}_show_vertices(){if(!this.model.active)return;const e=[],t=[];for(let s=0;s<this.model.renderers.length;s++){const i=this.model.renderers[s],r=i.data_source,a=i.glyph,[o,n]=[a.xs.field,a.ys.field];if(o)for(const t of r.get_array(o))Array.prototype.push.apply(e,t);if(n)for(const e of r.get_array(n))Array.prototype.push.apply(t,e);this._drawing&&s==this.model.renderers.length-1&&(e.splice(e.length-1,1),t.splice(t.length-1,1))}this._set_vertices(e,t)}_doubletap(e){this.model.active&&(this._drawing?(this._drawing=!1,this._draw(e,"edit",!0)):(this._drawing=!0,this._draw(e,"new",!0)))}_move(e){this._drawing&&this._draw(e,"edit")}_remove(){const e=this.model.renderers[0],t=e.data_source,s=e.glyph,[i,r]=[s.xs.field,s.ys.field];if(i){const e=t.data[i].length-1,s=t.get_array(i)[e];s.splice(s.length-1,1)}if(r){const e=t.data[r].length-1,s=t.get_array(r)[e];s.splice(s.length-1,1)}this._emit_cds_changes(t)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===r.Keys.Backspace?this._delete_selected(t):e.keyCode==r.Keys.Esc&&(this._drawing&&(this._remove(),this._drawing=!1),t.data_source.selection_manager.clear())}_pan_start(e){this.model.drag&&(this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){if(null==this._basepoint||!this.model.drag)return;const[t,s]=this._basepoint;for(const i of this.model.renderers){const r=this._map_drag(t,s,i),a=this._map_drag(e.sx,e.sy,i);if(null==a||null==r)continue;const o=i.data_source,n=i.glyph,[_,d]=[n.xs.field,n.ys.field];if(!_&&!d)continue;const[l,h]=a,[c,g]=r,[p,f]=[l-c,h-g];for(const e of o.selected.indices){let t,s,i;_&&(s=o.data[_][e]),d?(i=o.data[d][e],t=i.length):t=s.length;for(let e=0;e<t;e++)s&&(s[e]+=p),i&&(i[e]+=f)}o.change.emit()}this._basepoint=[e.sx,e.sy]}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source);this._basepoint=null}}activate(){if(this.model.vertex_renderer&&this.model.active){if(this._show_vertices(),!this._initialized)for(const e of this.model.renderers){const t=e.data_source;t.connect(t.properties.data.change,()=>this._show_vertices())}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=d,d.__name__="PolyDrawToolView";class l extends n.PolyTool{constructor(e){super(e),this.tool_name="Polygon Draw Tool",this.icon=_.bk_tool_icon_poly_draw,this.event_type=["pan","tap","move"],this.default_order=3}static init_PolyDrawTool(){this.prototype.default_view=d,this.define({drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}s.PolyDrawTool=l,l.__name__="PolyDrawTool",l.init_PolyDrawTool()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(1).__importStar(e(18)),i=e(8),s=e(356);class _ extends s.EditToolView{_set_vertices(e,t){const r=this.model.vertex_renderer.glyph,o=this.model.vertex_renderer.data_source,[s,_]=[r.x.field,r.y.field];s&&(i.isArray(e)?o.data[s]=e:r.x={value:e}),_&&(i.isArray(t)?o.data[_]=t:r.y={value:t}),this._emit_cds_changes(o,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,t,r){if(this.model.vertex_renderer){const o=this._select_event(e,"replace",[this.model.vertex_renderer]),i=this.model.vertex_renderer.data_source,s=this.model.vertex_renderer.glyph,[_,l]=[s.x.field,s.y.field];if(o.length){const e=i.selected.indices[0];_&&(t=i.data[_][e]),l&&(r=i.data[l][e]),i.selection_manager.clear()}}return[t,r]}}r.PolyToolView=_,_.__name__="PolyToolView";class l extends s.EditTool{constructor(e){super(e)}static init_PolyTool(){this.prototype.default_view=_,this.define({vertex_renderer:[o.Instance]})}}r.PolyTool=l,l.__name__="PolyTool",l.init_PolyTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(72),i=e(8),_=e(361),d=e(309);class n extends _.PolyToolView{constructor(){super(…arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,"replace",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this._select_event(e,"replace",this.model.renderers);if(!t.length)return this._set_vertices([],[]),this._selected_renderer=null,void(this._drawing=!1);const s=t[0],r=s.glyph,_=s.data_source,d=_.selected.indices[0],[n,l]=[r.xs.field,r.ys.field];let a,c;n?(a=_.data[n][d],i.isArray(a)||(_.data[n][d]=a=Array.from(a))):a=r.xs.value,l?(c=_.data[l][d],i.isArray(c)||(_.data[l][d]=c=Array.from(c))):c=r.ys.value,this._selected_renderer=s,this._set_vertices(a,c)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,"append",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===r.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==r.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=n,n.__name__="PolyEditToolView";class l extends _.PolyTool{constructor(e){super(e),this.tool_name="Poly Edit Tool",this.icon=d.bk_tool_icon_poly_edit,this.event_type=["tap","pan","move"],this.default_order=4}static init_PolyEditTool(){this.prototype.default_view=n}}s.PolyEditTool=l,l.__name__="PolyEditTool",l.init_PolyEditTool()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1),i=e(364),l=e(124),_=s.__importStar(e(18)),n=e(309);class c extends i.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if("center"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.push_state("box_select",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l="replace"){const _={type:"rect",sx0:e,sx1:t,sy0:o,sy1:s};this._select(_,i,l)}}o.BoxSelectToolView=c,c.__name__="BoxSelectToolView";const r=()=>new l.BoxAnnotation({level:"overlay",top_units:"screen",left_units:"screen",bottom_units:"screen",right_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.SelectTool{constructor(e){super(e),this.tool_name="Box Select",this.icon=n.bk_tool_icon_box_select,this.event_type="pan",this.default_order=30}static init_BoxSelectTool(){this.prototype.default_view=c,this.define({dimensions:[_.Dimensions,"both"],select_every_mousemove:[_.Boolean,!1],overlay:[_.Instance,r],origin:[_.BoxOrigin,"corner"]}),this.register_alias("box_select",()=>new h),this.register_alias("xbox_select",()=>new h({dimensions:"width"})),this.register_alias("ybox_select",()=>new h({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}o.BoxSelectTool=h,h.__name__="BoxSelectTool",h.init_BoxSelectTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(1),o=e(306),r=e(90),c=e(116),i=e(365),l=n.__importStar(e(18)),a=e(72),_=e(313),d=e(15),h=e(11);class p extends o.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect(()=>this._clear())}get computed_renderers(){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;return i.compute_renderers(e,t,s)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof r.GlyphRenderer)n=s.data_source;else{if(!(s instanceof c.GraphRenderer))continue;n=s.node_renderer.data_source}const o=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[…o,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?"append":!t&&s?"intersect":t&&s?"subtract":void h.unreachable():this.model.mode}_keyup(e){e.keyCode==a.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();this.plot_view.request_render()}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,o]of n){const n=o[0].get_selection_manager(),r=[];for(const e of o){const t=this.plot_view.renderer_views.get(e);null!=t&&r.push(t)}n.select(r,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let o;switch(e.type){case"point":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case"span":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case"rect":{const{sx0:t,sx1:r,sy0:c,sy1:i}=e,[l,a]=s.r_invert(t,r),[_,d]=n.r_invert(c,i);o=Object.assign(Object.assign({},e),{x0:l,y0:_,x1:a,y1:d});break}case"poly":{const{sx:t,sy:r}=e,c=s.v_invert(t),i=n.v_invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new _.SelectionGeometry(o,t))}}s.SelectToolView=p,p.__name__="SelectToolView";class u extends o.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new d.Signal0(this,"clear")}static init_SelectTool(){this.define({renderers:[l.Any,"auto"],names:[l.Array,[]],mode:[l.Any,"replace"]})}get menu(){return[{icon:"bk-tool-icon-replace-mode",tooltip:"Replace the current selection",active:()=>"replace"==this.mode,handler:()=>{this.mode="replace",this.active=!0}},{icon:"bk-tool-icon-append-mode",tooltip:"Append to the current selection (Shift)",active:()=>"append"==this.mode,handler:()=>{this.mode="append",this.active=!0}},{icon:"bk-tool-icon-intersect-mode",tooltip:"Intersect with the current selection (Ctrl)",active:()=>"intersect"==this.mode,handler:()=>{this.mode="intersect",this.active=!0}},{icon:"bk-tool-icon-subtract-mode",tooltip:"Subtract from the current selection (Shift+Ctrl)",active:()=>"subtract"==this.mode,handler:()=>{this.mode="subtract",this.active=!0}},null,{icon:"bk-tool-icon-clear-selection",tooltip:"Clear the current selection (Esc)",handler:()=>{this.clear.emit()}}]}}s.SelectTool=u,u.__name__="SelectTool",u.init_SelectTool()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(9);t.compute_renderers=function(e,n,t){if(null==e)return[];let u="auto"==e?n:e;return t.length>0&&(u=u.filter(e=>r.includes(t,e.name))),u}},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t(1),i=t(306),n=t(124),_=s.__importStar(t(18)),a=t(309);class l extends i.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m<n&&(m=n)),l=Math.abs(p-m),t[1]<=o[1]?(b=t[1],d=t[1]+l/s,d>_&&(d=_)):(d=t[1],b=t[1]-l/s,b<a&&(b=a)),r=Math.abs(d-b),t[0]<=o[0]?p=t[0]+s*r:m=t[0]-s*r,[[m,p],[b,d]]}_compute_limits(t){const o=this.plot_view.frame,e=this.model.dimensions;let s,i,n=this._base_point;if("center"==this.model.origin){const[o,e]=n,[s,i]=t;n=[o-(s-o),e-(i-e)]}return this.model.match_aspect&&"both"==e?[s,i]=this._match_aspect(n,t,o):[s,i]=this.model._get_dim_limits(n,t,o,e),[s,i]}_pan_start(t){this._base_point=[t.sx,t.sy]}_pan(t){const o=[t.sx,t.sy],[e,s]=this._compute_limits(o);this.model.overlay.update({left:e[0],right:e[1],top:s[0],bottom:s[1]})}_pan_end(t){const o=[t.sx,t.sy],[e,s]=this._compute_limits(o);this._update(e,s),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null}_update([t,o],[e,s]){if(Math.abs(o-t)<=5||Math.abs(s-e)<=5)return;const{x_scales:i,y_scales:n}=this.plot_view.frame,_=new Map;for(const[e,s]of i){const[i,n]=s.r_invert(t,o);_.set(e,{start:i,end:n})}const a=new Map;for(const[t,o]of n){const[i,n]=o.r_invert(e,s);a.set(t,{start:i,end:n})}const l={xrs:_,yrs:a};this.plot_view.push_state("box_zoom",{range:l}),this.plot_view.update_range(l)}}e.BoxZoomToolView=l,l.__name__="BoxZoomToolView";const r=()=>new n.BoxAnnotation({level:"overlay",top_units:"screen",left_units:"screen",bottom_units:"screen",right_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.GestureTool{constructor(t){super(t),this.tool_name="Box Zoom",this.icon=a.bk_tool_icon_box_zoom,this.event_type="pan",this.default_order=20}static init_BoxZoomTool(){this.prototype.default_view=l,this.define({dimensions:[_.Dimensions,"both"],overlay:[_.Instance,r],match_aspect:[_.Boolean,!1],origin:[_.BoxOrigin,"corner"]}),this.register_alias("box_zoom",()=>new h({dimensions:"both"})),this.register_alias("xbox_zoom",()=>new h({dimensions:"width"})),this.register_alias("ybox_zoom",()=>new h({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.BoxZoomTool=h,h.__name__="BoxZoomTool",h.init_BoxZoomTool()},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),a=e(364),i=e(368),l=e(72),_=o.__importStar(e(18)),c=e(309);class n extends a.SelectToolView{initialize(){super.initialize(),this.data=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_overlay()}_keyup(e){e.keyCode==l.Keys.Enter&&this._clear_overlay()}_pan_start(e){const{sx:s,sy:t}=e;this.data={sx:[s],sy:[t]}}_pan(e){const{sx:s,sy:t}=e,[o,a]=this.plot_view.frame.bbox.clip(s,t);this.data.sx.push(o),this.data.sy.push(a);this.model.overlay.update({xs:this.data.sx,ys:this.data.sy}),this.model.select_every_mousemove&&this._do_select(this.data.sx,this.data.sy,!1,this._select_mode(e))}_pan_end(e){this._clear_overlay(),this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state("lasso_select",{selection:this.plot_view.get_selection()})}_clear_overlay(){this.model.overlay.update({xs:[],ys:[]})}_do_select(e,s,t,o){const a={type:"poly",sx:e,sy:s};this._select(a,t,o)}}t.LassoSelectToolView=n,n.__name__="LassoSelectToolView";class h extends a.SelectTool{constructor(e){super(e),this.tool_name="Lasso Select",this.icon=c.bk_tool_icon_lasso_select,this.event_type="pan",this.default_order=12}static init_LassoSelectTool(){this.prototype.default_view=n,this.define({select_every_mousemove:[_.Boolean,!0],overlay:[_.Instance,i.DEFAULT_POLY_OVERLAY]}),this.register_alias("lasso_select",()=>new h)}}t.LassoSelectTool=h,h.__name__="LassoSelectTool",h.init_LassoSelectTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const l=e(1),i=e(364),o=e(166),a=e(72),_=l.__importStar(e(18)),c=e(9),n=e(309);class h extends i.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==a.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state("poly_select",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:c.copy(this.data.sx),ys:c.copy(this.data.sy)}))}_do_select(e,t,s,l){const i={type:"poly",sx:e,sy:t};this._select(i,s,l)}}s.PolySelectToolView=h,h.__name__="PolySelectToolView",s.DEFAULT_POLY_OVERLAY=()=>new o.PolyAnnotation({level:"overlay",xs_units:"screen",ys_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class y extends i.SelectTool{constructor(e){super(e),this.tool_name="Poly Select",this.icon=n.bk_tool_icon_polygon_select,this.event_type="tap",this.default_order=11}static init_PolySelectTool(){this.prototype.default_view=h,this.define({overlay:[_.Instance,s.DEFAULT_POLY_OVERLAY]}),this.register_alias("poly_select",()=>new y)}}s.PolySelectTool=y,y.__name__="PolySelectTool",y.init_PolySelectTool()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(370),r=s.__importStar(e(18)),_=e(309);class d extends n.LineToolView{constructor(){super(…arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const i of t){1==this._select_event(e,"replace",[i]).length&&(this._selected_renderer=i)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[i,s]=[t.x.field,t.y.field],n=e.get_array(i),r=e.get_array(s);this._set_intersection(n,r)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const i=this._select_mode(e);if(0==this._select_event(e,i,[t]).length)return}const i=this._select_mode(e);this._select_event(e,i,[t]),this._select_event(e,i,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[i,s]=[e.x.field,e.y.field];if(i&&s){const e=t.data[i],n=t.data[s];this._selected_renderer.data_source.data[i]=e,this._selected_renderer.data_source.data[s]=n}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,"append",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}i.LineEditToolView=d,d.__name__="LineEditToolView";class o extends n.LineTool{constructor(e){super(e),this.tool_name="Line Edit Tool",this.icon=_.bk_tool_icon_line_edit,this.event_type=["tap","pan","move"],this.default_order=4}static init_LineEditTool(){this.prototype.default_view=d,this.define({dimensions:[r.Dimensions,"both"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}i.LineEditTool=o,o.__name__="LineEditTool",o.init_LineEditTool()},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1).__importStar(e(18)),o=e(8),s=e(356);class _ extends s.EditToolView{_set_intersection(e,i){const t=this.model.intersection_renderer.glyph,n=this.model.intersection_renderer.data_source,[s,_]=[t.x.field,t.y.field];s&&(o.isArray(e)?n.data[s]=e:t.x={value:e}),_&&(o.isArray(i)?n.data[_]=i:t.y={value:i}),this._emit_cds_changes(n,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}t.LineToolView=_,_.__name__="LineToolView";class r extends s.EditTool{constructor(e){super(e)}static init_LineTool(){this.prototype.default_view=_,this.define({intersection_renderer:[n.Instance]})}}t.LineTool=r,r.__name__="LineTool",r.init_LineTool()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(1),i=t(306),o=n.__importStar(t(18)),a=t(309);function _(t,s,e){const n=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,e);n.set(i,{start:t,end:a})}return n}e.update_ranges=_;class h extends i.GestureToolView{_pan_start(t){this.last_dx=0,this.last_dy=0;const{sx:s,sy:e}=t,n=this.plot_view.frame.bbox;if(!n.contains(s,e)){const t=n.h_range,i=n.v_range;(s<t.start||s>t.end)&&(this.v_axis_only=!0),(e<i.start||e>i.end)&&(this.h_axis_only=!0)}null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan(t){this._update(t.deltaX,t.deltaY),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.push_state("pan",{range:this.pan_info})}_update(t,s){const e=this.plot_view.frame,n=t-this.last_dx,i=s-this.last_dy,o=e.bbox.h_range,a=o.start-n,h=o.end-n,l=e.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,x,y,g;"width"!=p&&"both"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=h,m=-n),"height"!=p&&"both"!=p||this.h_axis_only?(x=l.start,y=l.end,g=0):(x=r,y=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:b}=e,f=_(w,c,u),v=_(b,x,y);this.pan_info={xrs:f,yrs:v,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,!0)}}e.PanToolView=h,h.__name__="PanToolView";class l extends i.GestureTool{constructor(t){super(t),this.tool_name="Pan",this.event_type="pan",this.default_order=10}static init_PanTool(){this.prototype.default_view=h,this.define({dimensions:[o.Dimensions,"both"]}),this.register_alias("pan",()=>new l({dimensions:"both"})),this.register_alias("xpan",()=>new l({dimensions:"width"})),this.register_alias("ypan",()=>new l({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip("Pan",this.dimensions)}get icon(){switch(this.dimensions){case"both":return a.bk_tool_icon_pan;case"width":return a.bk_tool_icon_xpan;case"height":return a.bk_tool_icon_ypan}}}e.PanTool=l,l.__name__="PanTool",l.init_PanTool()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(124),l=e(19),a=s.__importStar(e(18)),r=e(306),o=e(309);function _(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function h(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)<s}function d(e,t,i,s,n){let l=!0;if(null!=n.left&&null!=n.right){const t=i.invert(e);(t<n.left||t>n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(e<n.bottom||e>n.top)&&(l=!1)}return l}function u(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function c(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function g(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,_(i))}function y(e,t,i){return e<t.end?(t.start=e,i):(t.start=t.end,t.end=e,_(i))}function f(e,t,i,s){const[n,l]=t.r_compute(e.start,e.end),[a,r]=t.r_invert(n+i,l+i),o=u(e.start,e.end,s);u(a,r,s)>=o&&(e.start=a,e.end=r)}i.flip_side=_,i.is_near=h,i.is_inside=d,i.sides_inside=u,i.compute_value=c,i.update_range_end_side=g,i.update_range_start_side=y,i.update_range=f;class p extends r.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,()=>this.model.update_overlay_from_ranges()),null!=this.model.y_range&&this.connect(this.model.y_range.change,()=>this.model.update_overlay_from_ranges())}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,l=s.x_scale,a=s.y_scale,r=this.model.overlay,{left:o,right:_,top:u,bottom:c}=r,g=this.model.overlay.properties.line_width.value()+n.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(h(e.sx,o,l,g)?this.side=1:h(e.sx,_,l,g)?this.side=2:d(e.sx,e.sy,l,a,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&h(e.sy,c,a,g)&&(this.side=4),0==this.side&&h(e.sy,u,a,g)?this.side=5:d(e.sx,e.sy,l,a,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)f(n,a,i,t.x_range);else if(1==this.side){const e=c(n.start,a,i,t.x_range);this.side=y(e,n,this.side)}else if(2==this.side){const e=c(n.end,a,i,t.x_range);this.side=g(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)f(l,r,s,t.y_range);else if(4==this.side){const e=c(l.start,r,s,t.y_range);this.side=y(e,l,this.side)}else if(5==this.side){const e=c(l.end,r,s,t.y_range);this.side=g(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0}}i.RangeToolView=p,p.__name__="RangeToolView";const m=()=>new n.BoxAnnotation({level:"overlay",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:.5,line_dash:[2,2]});class v extends r.GestureTool{constructor(e){super(e),this.tool_name="Range Tool",this.icon=o.bk_tool_icon_range,this.event_type="pan",this.default_order=1}static init_RangeTool(){this.prototype.default_view=p,this.define({x_range:[a.Instance,null],x_interaction:[a.Boolean,!0],y_range:[a.Instance,null],y_interaction:[a.Boolean,!0],overlay:[a.Instance,m]})}initialize(){super.initialize(),this.overlay.in_cursor="grab",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?"ew-resize":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?"ns-resize":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,l.logger.warn("RangeTool not configured with any Ranges.")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=v,v.__name__="RangeTool",v.init_RangeTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),i=e(364),c=o.__importStar(e(18)),n=e(309);class a extends i.SelectToolView{_tap(e){const{sx:t,sy:s}=e,o={type:"point",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const o=this.model.callback;if("select"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,c]of i){const i=c[0].get_selection_manager(),n=c.map(e=>this.plot_view.renderer_views.get(e));if(i.select(n,e,t,s)&&null!=o){const t=n[0].coordinates.x_scale.invert(e.sx),s=n[0].coordinates.y_scale.invert(e.sy),c={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,c)}}this._emit_selection_event(e),this.plot_view.push_state("tap",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),c=s.coordinates.y_scale.invert(e.sy),n={geometries:Object.assign(Object.assign({},e),{x:t,y:c}),source:i.source};o.execute(this.model,n)}}}}s.TapToolView=a,a.__name__="TapToolView";class _ extends i.SelectTool{constructor(e){super(e),this.tool_name="Tap",this.icon=n.bk_tool_icon_tap_select,this.event_type="tap",this.default_order=10}static init_TapTool(){this.prototype.default_view=a,this.define({behavior:[c.TapBehavior,"select"],callback:[c.Any]}),this.register_alias("click",()=>new _({behavior:"inspect"})),this.register_alias("tap",()=>new _)}}s.TapTool=_,_.__name__="TapTool",_.init_TapTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),o=e(306),n=i.__importStar(e(18)),a=e(309),l=e(371);class _ extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,[o,n]=[s.start,s.end],[a,_]=[i.start,i.end];let h,r,d,p;switch(this.model.dimension){case"height":{const t=Math.abs(_-a);h=o,r=n,d=a-t*e,p=_-t*e;break}case"width":{const t=Math.abs(n-o);h=o-t*e,r=n-t*e,d=a,p=_;break}default:throw new Error("this shouldn’t have happened")}const{x_scales:c,y_scales:u}=t,m={xrs:l.update_ranges(c,h,r),yrs:l.update_ranges(u,d,p),factor:e};this.plot_view.push_state("wheel_pan",{range:m}),this.plot_view.update_range(m,!1,!0),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}s.WheelPanToolView=_,_.__name__="WheelPanToolView";class h extends o.GestureTool{constructor(e){super(e),this.tool_name="Wheel Pan",this.icon=a.bk_tool_icon_wheel_pan,this.event_type="scroll",this.default_order=12}static init_WheelPanTool(){this.prototype.default_view=_,this.define({dimension:[n.Dimension,"width"]}),this.internal({speed:[n.Number,.001]}),this.register_alias("xwheel_pan",()=>new h({dimension:"width"})),this.register_alias("ywheel_pan",()=>new h({dimension:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimension)}}s.WheelPanTool=h,h.__name__="WheelPanTool",h.init_WheelPanTool()},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),i=e(306),l=e(354),n=s.__importStar(e(18)),_=e(32),h=e(309);class a extends i.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:l}=e;let n;n=s>=1?20*(s-1):-20/s,this._scroll({type:"wheel",sx:o,sy:t,delta:n,ctrlKey:i,shiftKey:l})}_scroll(e){const{frame:o}=this.plot_view,t=o.bbox.h_range,s=o.bbox.v_range,{sx:i,sy:n}=e,_=this.model.dimensions,h=("width"==_||"both"==_)&&t.start<i&&i<t.end,a=("height"==_||"both"==_)&&s.start<n&&n<s.end;if(!(h&&a||this.model.zoom_on_axis))return;const m=this.model.speed*e.delta,r=l.scale_range(o,m,h,a,{x:i,y:n});this.plot_view.push_state("wheel_zoom",{range:r}),this.plot_view.update_range(r,!1,!0,this.model.maintain_focus),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}t.WheelZoomToolView=a,a.__name__="WheelZoomToolView";class m extends i.GestureTool{constructor(e){super(e),this.tool_name="Wheel Zoom",this.icon=h.bk_tool_icon_wheel_zoom,this.event_type=_.is_mobile?"pinch":"scroll",this.default_order=10}static init_WheelZoomTool(){this.prototype.default_view=a,this.define({dimensions:[n.Dimensions,"both"],maintain_focus:[n.Boolean,!0],zoom_on_axis:[n.Boolean,!0],speed:[n.Number,1/600]}),this.register_alias("wheel_zoom",()=>new m({dimensions:"both"})),this.register_alias("xwheel_zoom",()=>new m({dimensions:"width"})),this.register_alias("ywheel_zoom",()=>new m({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}t.WheelZoomTool=m,m.__name__="WheelZoomTool",m.init_WheelZoomTool()},n”, ” function _(i,s,e){Object.defineProperty(e,"__esModule",{value:!0});const t=i(1),o=i(295),n=i(168),l=t.__importStar(i(18)),h=i(13),a=i(309);class r extends o.InspectToolView{_move(i){if(!this.model.active)return;const{sx:s,sy:e}=i;this.plot_view.frame.bbox.contains(s,e)?this._update_spans(s,e):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,s){const e=this.model.dimensions;"width"!=e&&"both"!=e||(this.model.spans.width.location=s),"height"!=e&&"both"!=e||(this.model.spans.height.location=i)}}e.CrosshairToolView=r,r.__name__="CrosshairToolView";class _ extends o.InspectTool{constructor(i){super(i),this.tool_name="Crosshair",this.icon=a.bk_tool_icon_crosshair}static init_CrosshairTool(){this.prototype.default_view=r,this.define({dimensions:[l.Dimensions,"both"],line_color:[l.Color,"black"],line_width:[l.Number,1],line_alpha:[l.Number,1]}),this.internal({spans:[l.Any]}),this.register_alias("crosshair",()=>new _)}get tooltip(){return this._get_dim_tooltip("Crosshair",this.dimensions)}get synthetic_renderers(){return h.values(this.spans)}initialize(){super.initialize(),this.spans={width:new n.Span({for_hover:!0,dimension:"width",location_units:"screen",level:"overlay",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha}),height:new n.Span({for_hover:!0,dimension:"height",location_units:"screen",level:"overlay",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha})}}}e.CrosshairTool=_,_.__name__="CrosshairTool",_.init_CrosshairTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(1),o=e(81),i=r.__importStar(e(18)),a=e(13),n=e(29);class u extends o.Model{constructor(e){super(e)}static init_CustomJSHover(){this.define({args:[i.Any,{}],code:[i.String,""]})}get values(){return a.values(this.args)}_make_code(e,t,s,r){return new Function(…a.keys(this.args),e,t,s,n.use_strict(r))}format(e,t,s){return this._make_code("value","format","special_vars",this.code)(…this.values,e,t,s)}}s.CustomJSHover=u,u.__name__="CustomJSHover",u.init_CustomJSHover()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),n=e(295),i=e(171),r=e(90),l=e(116),c=e(365),a=o.__importStar(e(101)),_=e(187),d=e(72),p=o.__importStar(e(18)),h=e(22),m=e(13),u=e(303),y=e(8),f=e(115),x=e(309),v=e(172);function w(e,t,s,o,n,i){const r={x:n[e],y:i[e]},l={x:n[e+1],y:i[e+1]};let c,_;if("span"==t.type)"h"==t.direction?(c=Math.abs(r.x-s),_=Math.abs(l.x-s)):(c=Math.abs(r.y-o),_=Math.abs(l.y-o));else{const e={x:s,y:o};c=a.dist_2_pts(r,e),_=a.dist_2_pts(l,e)}return c<_?[[r.x,r.y],e]:[[l.x,l.y],e+1]}function g(e,t,s){return[[e[s],t[s]],s]}s._nearest_line_hit=w,s._line_hit=g;class b extends n.InspectToolView{initialize(){super.initialize(),this._ttmodels=null,this._ttviews=new Map;const{tooltips:e}=this.model;y.isArray(e)&&(this._template_el=this._create_template(e))}remove(){f.remove_views(this._ttviews),super.remove()}connect_signals(){super.connect_signals();for(const e of this.computed_renderers)e instanceof r.GlyphRenderer?this.connect(e.data_source.inspect,this._update):e instanceof l.GraphRenderer&&(this.connect(e.node_renderer.data_source.inspect,this._update),this.connect(e.edge_renderer.data_source.inspect,this._update));this.connect(this.model.properties.renderers.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.names.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.tooltips.change,()=>this._ttmodels=null)}_compute_ttmodels(){const e=new Map,t=this.model.tooltips;if(null!=t)for(const s of this.computed_renderers){const o=new i.Tooltip({custom:y.isString(t)||y.isFunction(t),attachment:this.model.attachment,show_arrow:this.model.show_arrow});s instanceof r.GlyphRenderer?e.set(s,o):s instanceof l.GraphRenderer&&(e.set(s.node_renderer,o),e.set(s.edge_renderer,o))}return(async()=>{const t=await f.build_views(this._ttviews,[…e.values()],{parent:this.plot_view});for(const e of t)e.render()})(),e}get computed_renderers(){if(null==this._computed_renderers){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;this._computed_renderers=c.compute_renderers(e,t,s)}return this._computed_renderers}get ttmodels(){return null==this._ttmodels&&(this._ttmodels=this._compute_ttmodels()),this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)?this._inspect(t,s):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let s;if("mouse"==this.model.mode)s={type:"point",sx:e,sy:t};else{s={type:"span",direction:"vline"==this.model.mode?"h":"v",sx:e,sy:t}}for(const e of this.computed_renderers){e.get_selection_manager().inspect(this.plot_view.renderer_views.get(e),s)}null!=this.model.callback&&this._emit_callback(s)}_update([e,{geometry:t}]){if(!this.model.active)return;if(!(e instanceof r.GlyphRendererView))return;const{model:s}=e;if("ignore"==this.model.muted_policy&&s instanceof r.GlyphRenderer&&s.muted)return;const o=this.ttmodels.get(s);if(null==o)return;const n=s.get_selection_manager();let i=n.inspectors.get(s);if(s instanceof r.GlyphRenderer&&(i=s.view.convert_selection_to_subset(i)),i.is_empty())return void o.clear();const l=n.source,{sx:c,sy:a}=t,_=e.coordinates.x_scale,p=e.coordinates.y_scale,h=_.invert(c),u=p.invert(a),y=e.glyph,f=[];for(const s of i.line_indices){let o,n,r=y._x[s+1],d=y._y[s+1],m=s;switch(this.model.line_policy){case"interp":[r,d]=y.get_interpolation_hit(s,t),o=_.compute(r),n=p.compute(d);break;case"prev":[[o,n],m]=g(y.sx,y.sy,s);break;case"next":[[o,n],m]=g(y.sx,y.sy,s+1);break;case"nearest":[[o,n],m]=w(s,t,c,a,y.sx,y.sy),r=y._x[m],d=y._y[m];break;default:[o,n]=[c,a]}const x={index:m,x:h,y:u,sx:c,sy:a,data_x:r,data_y:d,rx:o,ry:n,indices:i.line_indices,name:e.model.name};f.push([o,n,this._render_tooltips(l,m,x)])}for(const t of i.image_indices){const s={index:t.index,x:h,y:u,sx:c,sy:a,name:e.model.name},o=this._render_tooltips(l,t,s);f.push([c,a,o])}for(const o of i.indices)if(m.isEmpty(i.multiline_indices)){const t=null!=y._x?y._x[o]:void 0,n=null!=y._y?y._y[o]:void 0;let _,d,p;if("snap_to_data"==this.model.point_policy){let e=y.get_anchor_point(this.model.anchor,o,[c,a]);null==e&&(e=y.get_anchor_point("center",o,[c,a])),_=e.x,d=e.y}else[_,d]=[c,a];p=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const m={index:p,x:h,y:u,sx:c,sy:a,data_x:t,data_y:n,indices:i.indices,name:e.model.name};f.push([_,d,this._render_tooltips(l,p,m)])}else for(const n of i.multiline_indices[o.toString()]){let d,m,x,v=y._xs[o][n],b=y._ys[o][n],k=n;switch(this.model.line_policy){case"interp":[v,b]=y.get_interpolation_hit(o,n,t),d=_.compute(v),m=p.compute(b);break;case"prev":[[d,m],k]=g(y.sxs[o],y.sys[o],n);break;case"next":[[d,m],k]=g(y.sxs[o],y.sys[o],n+1);break;case"nearest":[[d,m],k]=w(n,t,c,a,y.sxs[o],y.sys[o]),v=y._xs[o][k],b=y._ys[o][k];break;default:throw new Error("should’t have happened")}x=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const A={index:x,x:h,y:u,sx:c,sy:a,data_x:v,data_y:b,segment_index:k,indices:i.multiline_indices,name:e.model.name};f.push([d,m,this._render_tooltips(l,x,A)])}if(0==f.length)o.clear();else{const{content:e}=o;d.empty(o.content);for(const[,,t]of f)e.appendChild(t);const[t,s]=f[f.length-1];o.setv({position:[t,s]},{check_eq:!1})}}_emit_callback(e){for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),o=s.coordinates.x_scale.invert(e.sx),n=s.coordinates.y_scale.invert(e.sy),i=t.data_source.inspected,r=Object.assign({x:o,y:n},e);this.model.callback.execute(this.model,{index:i,geometry:r,renderer:t})}}_create_template(e){const t=d.div({style:{display:"table",borderSpacing:"2px"}});for(const[s]of e){const e=d.div({style:{display:"table-row"}});t.appendChild(e);const o=d.div({style:{display:"table-cell"},class:v.bk_tooltip_row_label},0!=s.length?s+": ":"");e.appendChild(o);const n=d.span();n.dataset.value="";const i=d.span({class:v.bk_tooltip_color_block}," ");i.dataset.swatch="",d.undisplay(i);const r=d.div({style:{display:"table-cell"},class:v.bk_tooltip_row_value},n,i);e.appendChild(r)}return t}_render_template(e,t,s,o,n){const i=e.cloneNode(!0),r=i.querySelectorAll("[data-value]"),l=i.querySelectorAll("[data-swatch]"),c=/\$color(\[.*\])?:(\w*)/;for(const[[,e],i]of u.enumerate(t)){const t=e.match(c);if(null!=t){const[,e="",n]=t,c=s.get_column(n);if(null==c){r[i].textContent=n+" unknown";continue}const a=e.indexOf("hex")>=0,_=e.indexOf("swatch")>=0;let p=y.isNumber(o)?c[o]:null;if(null==p){r[i].textContent="(null)";continue}a&&(p=h.color2hex(p)),r[i].textContent=p,_&&(l[i].style.backgroundColor=p,d.display(l[i]))}else{const t=_.replace_placeholders(e.replace("$~","$data_"),s,o,this.model.formatters,n);if(y.isString(t))r[i].textContent=t;else for(const e of t)r[i].appendChild(e)}}return i}_render_tooltips(e,t,s){const o=this.model.tooltips;if(y.isString(o)){const n=_.replace_placeholders({html:o},e,t,this.model.formatters,s);return d.div({},n)}return y.isFunction(o)?o(e,s):this._render_template(this._template_el,o,e,t,s)}}s.HoverToolView=b,b.__name__="HoverToolView";class k extends n.InspectTool{constructor(e){super(e),this.tool_name="Hover",this.icon=x.bk_tool_icon_hover}static init_HoverTool(){this.prototype.default_view=b,this.define({tooltips:[p.Any,[["index","$index"],["data (x, y)","($x, $y)"],["screen (x, y)","($sx, $sy)"]]],formatters:[p.Any,{}],renderers:[p.Any,"auto"],names:[p.Array,[]],mode:[p.HoverMode,"mouse"],muted_policy:[p.MutedPolicy,"show"],point_policy:[p.PointPolicy,"snap_to_data"],line_policy:[p.LinePolicy,"nearest"],show_arrow:[p.Boolean,!0],anchor:[p.Anchor,"center"],attachment:[p.TooltipAttachment,"horizontal"],callback:[p.Any]}),this.register_alias("hover",()=>new k)}}s.HoverTool=k,k.__name__="HoverTool",k.init_HoverTool()},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1).__importStar(t(18)),n=t(15),s=t(81),l=t(295),c=t(303);class r extends s.Model{constructor(t){super(t)}static init_ToolProxy(){this.define({tools:[i.Array,[]],active:[i.Boolean,!1],disabled:[i.Boolean,!1]})}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof l.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new n.Signal0(this,"do")}connect_signals(){super.connect_signals(),this.connect(this.do,()=>this.doit()),this.connect(this.properties.active.change,()=>this.set_active());for(const t of this.tools)this.connect(t.properties.active.change,()=>{this.active=t.active})}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,i]of c.enumerate(t))if(null==e)o.push(null);else{const t=()=>{var t,o;for(const e of this.tools)null===(o=null===(t=e.menu)||void 0===t?void 0:t[i])||void 0===o||o.handler()};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=r,r.__name__="ToolProxy",r.init_ToolProxy()},n”, ” function _(o,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=o(1).__importStar(o(18)),e=o(9),n=o(13),r=o(305),l=o(379),c=o(272),h=o(212);class a extends r.ToolbarBase{constructor(o){super(o)}static init_ProxyToolbar(){this.define({toolbars:[i.Array,[]]})}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},i=[],r=[];for(const o of this.help)e.includes(r,o.redirect)||(i.push(o),r.push(o.redirect));this._proxied_tools.push(…i),this.help=i;for(const[o,t]of n.entries(this.gestures)){o in s||(s[o]={});for(const i of t.tools)i.type in s[o]||(s[o][i.type]=[]),s[o][i.type].push(i)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const c=(o,t=!1)=>{const s=new l.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of n.keys(s)){const t=this.gestures[o];t.tools=[];for(const i of n.keys(s[o])){const e=s[o][i];if(e.length>0)if("multi"==o)for(const o of e){const s=c([o]);t.tools.push(s),this.connect(s.properties.active.change,()=>this._active_change(s))}else{const o=c(e);t.tools.push(o),this.connect(o.properties.active.change,()=>this._active_change(o))}}}this.actions=[];for(const[o,s]of n.entries(t))if("CustomAction"==o)for(const o of s)this.actions.push(c([o]));else s.length>0&&this.actions.push(c(s));this.inspectors=[];for(const t of n.values(o))t.length>0&&this.inspectors.push(c(t,!0));for(const[o,t]of n.entries(this.gestures))0!=t.tools.length&&(t.tools=e.sort_by(t.tools,o=>o.default_order),"pinch"!=o&&"scroll"!=o&&"multi"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=a,a.__name__="ProxyToolbar",a.init_ProxyToolbar();class _ extends c.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new h.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:"fit",min_width:100,height_policy:"fixed"}):this.layout.set_sizing({width_policy:"fixed",height_policy:"fit",min_height:100})}}s.ToolbarBoxView=_,_.__name__="ToolbarBoxView";class p extends c.LayoutDOM{constructor(o){super(o)}static init_ToolbarBox(){this.prototype.default_view=_,this.define({toolbar:[i.Instance],toolbar_location:[i.Location,"right"]})}}s.ToolbarBox=p,p.__name__="ToolbarBox",p.init_ToolbarBox()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(5),i=e(78),d=e(115),c=e(72),l=e(382);t.index={},t.add_document_standalone=async function(e,n,s=[],a=!1){const u=new Map;async function r(o){let a;const r=e.roots().indexOf(o),f=s[r];null!=f?a=f:n.classList.contains(l.BOKEH_ROOT)?a=n:(a=c.div({class:l.BOKEH_ROOT}),n.appendChild(a));const v=await d.build_view(o,{parent:null});return v instanceof i.DOMView&&v.renderTo(a),u.set(o,v),t.index[o.id]=v,v}for(const n of e.roots())await r(n);return a&&(window.document.title=e.title()),e.on_change(e=>{e instanceof o.RootAddedEvent?r(e.model):e instanceof o.RootRemovedEvent?function(e){const n=u.get(e);null!=n&&(n.remove(),u.delete(e),delete t.index[e.id])}(e.model):a&&e instanceof o.TitleChangedEvent&&(window.document.title=e.title)}),[…u.values()]}},n”, ” function _(e,o,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(72),r=e(273);function l(e){let o=document.getElementById(e);if(null==o)throw new Error(Error rendering Bokeh model: could not find #${e} HTML tag);if(!document.body.contains(o))throw new Error(Error rendering Bokeh model: element #${e} must be under <body>);if("SCRIPT"==o.tagName){const e=t.div({class:n.BOKEH_ROOT});t.replaceWith(o,e),o=e}return o}n.BOKEH_ROOT=r.bk_root,n._resolve_element=function(e){const{elementid:o}=e;return null!=o?l(o):document.body},n._resolve_root_elements=function(e){const o=[];if(null!=e.root_ids&&null!=e.roots)for(const n of e.root_ids)o.push(l(e.roots[n]));return o}},n”, ” function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});const e=n(384),s=n(19),c=n(381);t._get_ws_url=function(n,o){let t,e="ws:";return"https:"==window.location.protocol&&(e="wss:"),null!=o?(t=document.createElement("a"),t.href=o):t=window.location,null!=n?"/"==n&&(n=""):n=t.pathname.replace(/\/+$/,""),e+"//"+t.host+n+"/ws"};const r={};t.add_document_from_session=async function(n,o,t,a=[],i=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=e.parse_token(o).session_id;n in r||(r[n]={});const c=r[n];return s in c||(c[s]=e.pull_session(n,o,t)),c[s]}(n,o,l)}catch(n){const t=e.parse_token(o).session_id;throw s.logger.error(Failed to load Bokeh session ${t}: ${n}),n}return c.add_document_standalone(d.document,t,a,i)}},n”, ” function _(e,s,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(19),o=e(5),r=e(385),i=e(386),c=e(387);n.DEFAULT_SERVER_WEBSOCKET_URL="ws://localhost:5006/ws",n.DEFAULT_TOKEN="eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ";let l=0;function _(e){let s=e.split(".")[0];const n=s.length%4;return 0!=n&&(s+="=".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,"/").replace(/-/g,"+")))}n.parse_token=_;class h{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,o=null){this.url=e,this.token=s,this.args_string=o,this._number=l++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new i.Receiver,this.id=_(s).session_id.split(".")[0],t.logger.debug(Creating websocket ${this._number} to ‘${this.url}’ session ‘${this.id}’)}async connect(){if(this.closed_permanently)throw new Error("Cannot connect() a closed ClientConnection");if(null!=this.socket)throw new Error("Already connected");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=""+this.url;return null!=this.args_string&&this.args_string.length>0&&(e+="?"+this.args_string),this.socket=new WebSocket(e,["bokeh",this.token]),new Promise((e,s)=>{this.socket.binaryType="arraybuffer",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)})}catch(e){throw t.logger.error("websocket creation failed to url: "+this.url),t.logger.error(" - "+e),e}}close(){this.closed_permanently||(t.logger.debug("Permanently closing websocket connection "+this._number),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,"close method called on ClientConnection "+this._number),this.session._connection_closed())}_schedule_reconnect(e){setTimeout(()=>{this.closed_permanently||t.logger.info(Websocket connection ${this._number} disconnected, will not attempt to reconnect)},e)}send(e){if(null==this.socket)throw new Error("not connected so cannot send "+e);e.send(this.socket)}async send_with_reply(e){const s=await new Promise((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)});if("ERROR"===s.msgtype())throw new Error("Error reply "+s.content.text);return s}async _pull_doc_json(){const e=r.Message.create("PULL-DOC-REQ",{}),s=await this.send_with_reply(e);if(!("doc"in s.content))throw new Error("No ‘doc’ field in PULL-DOC-REPLY");return s.content.doc}async _repull_session_doc(e,s){var n;t.logger.debug(this.session?"Repulling session":"Pulling session for first time");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)t.logger.debug("Got new document after connection was already closed"),s(new Error("The connection has been closed"));else{const s=o.Document.from_json(n),i=o.Document._compute_patch_since_json(n,s);if(i.events.length>0){t.logger.debug(Sending ${i.events.length} changes from model construction back to server);const e=r.Message.create("PATCH-DOC",{},i);this.send(e)}this.session=new c.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],t.logger.debug("Created a new session from new pulled doc"),e(this.session)}else this.session.document.replace_with_json(n),t.logger.debug("Updated existing session with new pulled doc")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),t.logger.error("Failed to repull session "+e),s(e)}}_on_open(e,s){t.logger.info(Websocket connection ${this._number} is now open),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&t.logger.error("Got a message with no current handler set");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(e.toString())}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){t.logger.info(Lost websocket ${this._number} connection, ${e.code} (${e.reason})),this.socket=null,this._pending_replies.forEach(e=>e.reject("Disconnected")),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(Lost websocket connection, ${e.code} (${e.reason})))}_on_error(e){t.logger.debug("Websocket error on socket "+this._number);const s="Could not open websocket";t.logger.error("Failed to connect to Bokeh server: "+s),e(new Error(s))}_close_bad_protocol(e){t.logger.error("Closing connection: "+e),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){"ACK"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol("First message was not an ACK")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):"PATCH-DOC"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=h,h.__name__="ClientConnection",n.pull_session=function(e,s,n){return new h(e,s,n).connect()}},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(29);class n{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),i=JSON.parse(s),a=JSON.parse(t);return new n(r,i,a)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error("too many buffers received, expecting "+t);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=n.create_header(e);return new n(r,s,t)}static create_header(e){return{msgid:r.uniqueId(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error("BokehJS only supports receiving buffers, not sending");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return"msgid"in this.header?"msgtype"in this.header?null:"No msgtype in header":"No msgid in header"}}t.Message=n,n.__name__="Message"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const _=e(385),r=e(8);class i{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,r]=this._fragments.slice(0,3);this._partial=_.Message.assemble(t,s,r),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!r.isString(e))throw new Error("Expected text fragment but received binary fragment")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error("Expected binary fragment but received text fragment")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=i,i.__name__="Receiver"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(5),s=e(385),c=e(19);class i{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();"PATCH-DOC"===t?this._handle_patch(e):"OK"===t?this._handle_ok(e):"ERROR"===t?this._handle_error(e):c.logger.debug("Doing nothing with message "+e.msgtype())}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=s.Message.create("SERVER-INFO-REQ",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof o.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),c=s.Message.create("PATCH-DOC",{},n);this._connection.send(c)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){c.logger.trace("Unhandled OK reply to "+e.reqid())}_handle_error(e){c.logger.error(Unhandled ERROR reply to ${e.reqid()}: ${e.content.text})}}n.ClientSession=i,i.__name__="ClientSession"},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1);var r=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var o,t=e[Symbol.asyncIterator];return t?t.call(e):(e="function"==typeof __values?__values(e):e[Symbol.iterator](),o={},n("next"),n("throw"),n("return"),o[Symbol.asyncIterator]=function(){return this},o);function n(t){o[t]=e[t]&&function(o){return new Promise((function(n,r){(function(e,o,t,n){Promise.resolve(n).then((function(o){e({value:o,done:t})}),o)})(n,r,(o=e[t](o)).done,o.value)}))}}};const s=e(5),i=e(386),l=e(19),a=e(72),c=e(13),u=e(381),f=e(382),g=n.__importDefault(e(73)),m=n.__importDefault(e(311)),d=n.__importDefault(e(389));function p(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function _(e,o){if("undefined"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){l.logger.info("Registering Jupyter comms for target "+e);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,t=>{l.logger.info("Registering Jupyter comms for target "+e);const n=new i.Receiver;t.on_msg(p.bind(o,n))})}catch(e){l.logger.warn(Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else if(o.roots()[0].id in t.kernels){l.logger.info("Registering JupyterLab comms for target "+e);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,t=>{l.logger.info("Registering JupyterLab comms for target "+e);const n=new i.Receiver;t.onMsg=p.bind(o,n)})}catch(e){l.logger.warn(Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else if("undefined"!=typeof google&&null!=google.colab.kernel){l.logger.info("Registering Google Colab comms for target "+e);const t=google.colab.kernel.comms;try{t.registerTarget(e,async t=>{var n,s,a;l.logger.info("Registering Google Colab comms for target "+e);const c=new i.Receiver;try{for(var u,f=r(t.messages);!(u=await f.next()).done;){const e=u.value,t={data:e.data},n=[];for(const o of null!==(a=e.buffers)&&void 0!==a?a:[])n.push(new DataView(o));const r={content:t,buffers:n};p.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{u&&!u.done&&(s=f.return)&&await s.call(f)}finally{if(n)throw n.error}}})}catch(e){l.logger.warn(Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else console.warn("Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.")}a.stylesheet.append(g.default),a.stylesheet.append(m.default),a.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=c.size(e))throw new Error("embed_items_notebook expects exactly one document in docs_json");const t=s.Document.from_json(c.values(e)[0]);for(const e of o){null!=e.notebook_comms_target&&_(e.notebook_comms_target,t);const o=f._resolve_element(e),n=f._resolve_root_elements(e);u.add_document_standalone(t,o,n)}}},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});o.default="\n/* notebook specific tweaks so no black outline and matching padding\n/* can’t be wrapped inside bk-root. here are the offending jupyter lines:\n/* https://github.com/jupyter/notebook/blob/master/notebook/static/notebook/less/renderedhtml.less#L59-L76 /\n.rendered_html .bk-root .bk-tooltip table,\n.rendered_html .bk-root .bk-tooltip tr,\n.rendered_html .bk-root .bk-tooltip th,\n.rendered_html .bk-root .bk-tooltip td {\n border: none;\n padding: 1px;\n}\n"},n”, ” function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const o=e(1);o.__exportStar(e(385),_),o.__exportStar(e(386),_)},n”, ” function _(e,t,n){function s(){const e=document.getElementsByTagName("body")[0],t=document.getElementsByClassName("bokeh-test-div");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement("div");n.classList.add("bokeh-test-div"),n.style.display="none",e.insertBefore(n,e.firstChild)}Object.defineProperty(n,"__esModule",{value:!0}),n.results={},n.init=function(){s()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,s()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,s()}},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0}),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement("div");t.style.backgroundColor="#f2dede",t.style.border="1px solid #a94442",t.style.borderRadius="4px",t.style.display="inline-block",t.style.fontFamily="sans-serif",t.style.marginTop="5px",t.style.minWidth="200px",t.style.padding="5px 5px 5px 10px",t.classList.add("bokeh-error-box-into-flames");const o=document.createElement("span");o.style.backgroundColor="#a94442",o.style.borderRadius="0px 4px 0px 0px",o.style.color="white",o.style.cursor="pointer",o.style.cssFloat="right",o.style.fontSize="0.8em",o.style.margin="-6px -6px 0px 0px",o.style.padding="2px 5px 4px 5px",o.title="close",o.setAttribute("aria-label","close"),o.appendChild(document.createTextNode("x")),o.addEventListener("click",()=>r.removeChild(t));const n=document.createElement("h3");n.style.color="#a94442",n.style.margin="8px 0px 0px 0px",n.style.padding="0px",n.appendChild(document.createTextNode("Bokeh Error"));const l=document.createElement("pre");l.style.whiteSpace="unset",l.style.overflowX="auto";const s=e instanceof Error?e.message:e;l.appendChild(document.createTextNode(s)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const r=document.getElementsByTagName("body")[0];r.insertBefore(t,r.firstChild)}(e),t)return;throw e}}},n”, ” ], 0, {"main":0,"tslib":1,"index":2,"version":3,"embed/index":4,"document/index":5,"document/document":6,"base":7,"core/util/types":8,"core/util/array":9,"core/util/math":10,"core/util/assert":11,"core/util/arrayable":12,"core/util/object":13,"core/has_props":14,"core/signaling":15,"core/util/callback":16,"core/util/refs":17,"core/properties":18,"core/logging":19,"core/enums":20,"core/kinds":21,"core/util/color":22,"core/util/svg_colors":23,"core/types":24,"core/util/eq":25,"core/util/data_structures":26,"core/settings":27,"core/property_mixins":28,"core/util/string":29,"core/util/ndarray":30,"core/util/serialization":31,"core/util/compat":32,"core/util/pretty":33,"models/index":34,"models/annotations/index":35,"models/annotations/annotation":36,"core/util/projections":37,"models/renderers/renderer":70,"core/view":71,"core/dom":72,"styles/root.css":73,"core/visuals":74,"core/util/svg":75,"core/util/affine":76,"models/canvas/canvas":77,"core/dom_view":78,"core/util/bbox":79,"core/util/canvas":80,"model":81,"models/canvas/coordinates":82,"models/annotations/arrow":83,"models/annotations/arrow_head":84,"models/sources/column_data_source":85,"models/sources/columnar_data_source":86,"models/sources/data_source":87,"models/selections/selection":88,"core/selection_manager":89,"models/renderers/glyph_renderer":90,"models/renderers/data_renderer":91,"models/glyphs/line":92,"models/glyphs/xy_glyph":93,"models/glyphs/glyph":94,"core/util/spatial":95,"models/ranges/factor_range":98,"models/ranges/range":99,"models/glyphs/utils":100,"core/hittest":101,"models/glyphs/webgl/line":102,"models/glyphs/webgl/utils/index":103,"models/glyphs/webgl/utils/program":104,"models/glyphs/webgl/utils/buffer":105,"models/glyphs/webgl/utils/texture":106,"models/glyphs/webgl/base":107,"models/glyphs/webgl/line.vert":108,"models/glyphs/webgl/line.frag":109,"models/glyphs/patch":110,"models/glyphs/harea":111,"models/glyphs/area":112,"models/glyphs/varea":113,"models/sources/cds_view":114,"core/build_views":115,"models/renderers/graph_renderer":116,"models/graphs/graph_hit_test_policy":117,"models/selections/interaction_policy":118,"core/util/typed_array":119,"core/util/set":120,"document/events":121,"models/annotations/band":122,"models/annotations/upper_lower":123,"models/annotations/box_annotation":124,"models/annotations/color_bar":125,"models/tickers/basic_ticker":126,"models/tickers/adaptive_ticker":127,"models/tickers/continuous_ticker":128,"models/tickers/ticker":129,"models/formatters/basic_tick_formatter":130,"models/formatters/tick_formatter":131,"models/mappers/index":132,"models/mappers/categorical_color_mapper":133,"models/mappers/categorical_mapper":134,"models/mappers/color_mapper":135,"models/mappers/mapper":136,"models/transforms/transform":137,"models/mappers/categorical_marker_mapper":138,"models/mappers/categorical_pattern_mapper":139,"models/mappers/continuous_color_mapper":140,"models/mappers/linear_color_mapper":141,"models/mappers/log_color_mapper":142,"models/mappers/scanning_color_mapper":143,"models/mappers/eqhist_color_mapper":144,"models/scales/linear_scale":145,"models/scales/continuous_scale":146,"models/scales/scale":147,"models/transforms/index":148,"models/transforms/customjs_transform":149,"models/transforms/dodge":150,"models/transforms/range_transform":151,"models/transforms/interpolator":152,"models/transforms/jitter":153,"models/transforms/linear_interpolator":154,"models/transforms/step_interpolator":155,"models/scales/linear_interpolation_scale":156,"models/scales/log_scale":157,"models/ranges/range1d":158,"core/util/text":159,"models/annotations/label":160,"models/annotations/text_annotation":161,"models/annotations/label_set":162,"models/annotations/legend":163,"models/annotations/legend_item":164,"core/vectorization":165,"models/annotations/poly_annotation":166,"models/annotations/slope":167,"models/annotations/span":168,"models/annotations/title":169,"models/annotations/toolbar_panel":170,"models/annotations/tooltip":171,"styles/tooltips":172,"styles/mixins":173,"styles/tooltips.css":174,"models/annotations/whisker":175,"models/axes/index":176,"models/axes/axis":177,"models/renderers/guide_renderer":178,"models/axes/categorical_axis":179,"models/tickers/categorical_ticker":180,"models/formatters/categorical_tick_formatter":181,"models/axes/continuous_axis":182,"models/axes/datetime_axis":183,"models/axes/linear_axis":184,"models/formatters/datetime_tick_formatter":185,"core/util/templating":187,"models/tickers/datetime_ticker":190,"models/tickers/composite_ticker":191,"models/tickers/days_ticker":192,"models/tickers/single_interval_ticker":193,"models/tickers/util":194,"models/tickers/months_ticker":195,"models/tickers/years_ticker":196,"models/axes/log_axis":197,"models/formatters/log_tick_formatter":198,"models/tickers/log_ticker":199,"models/axes/mercator_axis":200,"models/formatters/mercator_tick_formatter":201,"models/tickers/mercator_ticker":202,"models/callbacks/index":203,"models/callbacks/customjs":204,"models/callbacks/callback":205,"models/callbacks/open_url":206,"models/canvas/index":207,"models/canvas/cartesian_frame":208,"models/scales/categorical_scale":209,"models/ranges/data_range1d":210,"models/ranges/data_range":211,"core/layout/index":212,"core/layout/types":213,"core/layout/layoutable":214,"core/layout/alignments":215,"core/layout/grid":216,"core/layout/html":217,"models/expressions/index":218,"models/expressions/expression":219,"models/expressions/stack":220,"models/expressions/cumsum":221,"models/filters/index":222,"models/filters/boolean_filter":223,"models/filters/filter":224,"models/filters/customjs_filter":225,"models/filters/group_filter":226,"models/filters/index_filter":227,"models/formatters/index":228,"models/formatters/func_tick_formatter":229,"models/formatters/numeral_tick_formatter":230,"models/formatters/printf_tick_formatter":231,"models/glyphs/index":232,"models/glyphs/annular_wedge":233,"models/glyphs/annulus":234,"models/glyphs/arc":235,"models/glyphs/bezier":236,"models/glyphs/circle":237,"models/glyphs/webgl/markers":238,"models/glyphs/webgl/markers.vert":239,"models/glyphs/webgl/markers.frag":240,"models/glyphs/center_rotatable":241,"models/glyphs/ellipse":242,"models/glyphs/ellipse_oval":243,"models/glyphs/hbar":244,"models/glyphs/box":245,"models/glyphs/hex_tile":246,"models/glyphs/image":247,"models/glyphs/image_base":248,"models/glyphs/image_rgba":249,"models/glyphs/image_url":250,"core/util/image":251,"models/glyphs/multi_line":252,"models/glyphs/multi_polygons":253,"models/glyphs/oval":254,"models/glyphs/patches":255,"models/glyphs/quad":256,"models/glyphs/quadratic":257,"models/glyphs/ray":258,"models/glyphs/rect":259,"models/glyphs/segment":260,"models/glyphs/step":261,"models/glyphs/text":262,"models/glyphs/vbar":263,"models/glyphs/wedge":264,"models/graphs/index":265,"models/graphs/layout_provider":266,"models/graphs/static_layout_provider":267,"models/grids/index":268,"models/grids/grid":269,"models/layouts/index":270,"models/layouts/box":271,"models/layouts/layout_dom":272,"styles/root":273,"models/layouts/column":274,"models/layouts/grid_box":275,"models/layouts/html_box":276,"models/layouts/row":277,"models/layouts/spacer":278,"models/layouts/tabs":279,"styles/tabs":280,"styles/buttons":281,"styles/menus":282,"styles/buttons.css":283,"styles/menus.css":284,"styles/tabs.css":285,"models/layouts/widget_box":286,"models/markers/index":287,"models/markers/defs":288,"models/markers/marker":289,"models/markers/scatter":290,"models/plots/index":291,"models/plots/gmap_plot":292,"models/plots/plot":293,"models/tools/toolbar":294,"models/tools/inspectors/inspect_tool":295,"models/tools/button_tool":296,"models/tools/tool":298,"styles/toolbar":299,"styles/toolbar.css":300,"styles/icons.css":301,"core/util/menus":302,"core/util/iterator":303,"models/tools/on_off_button":304,"models/tools/toolbar_base":305,"models/tools/gestures/gesture_tool":306,"models/tools/actions/action_tool":307,"models/tools/actions/help_tool":308,"styles/icons":309,"styles/logo":310,"styles/logo.css":311,"models/plots/plot_canvas":312,"core/bokeh_events":313,"core/ui_events":314,"core/util/wheel":315,"core/util/throttle":316,"core/layout/border":317,"core/layout/side_panel":318,"models/plots/gmap_plot_canvas":319,"models/ranges/index":320,"models/renderers/index":321,"models/scales/index":322,"models/selections/index":323,"models/sources/index":324,"models/sources/server_sent_data_source":325,"models/sources/web_data_source":326,"models/sources/ajax_data_source":327,"models/sources/geojson_data_source":328,"models/tickers/index":329,"models/tickers/fixed_ticker":330,"models/tiles/index":331,"models/tiles/bbox_tile_source":332,"models/tiles/mercator_tile_source":333,"models/tiles/tile_source":334,"models/tiles/tile_utils":335,"models/tiles/quadkey_tile_source":336,"models/tiles/tile_renderer":337,"models/tiles/wmts_tile_source":338,"styles/tiles":339,"styles/tiles.css":340,"models/tiles/tms_tile_source":341,"models/textures/index":342,"models/textures/canvas_texture":343,"models/textures/texture":344,"models/textures/image_url_texture":345,"models/tools/index":346,"models/tools/actions/custom_action":347,"models/tools/actions/redo_tool":348,"models/tools/actions/reset_tool":349,"models/tools/actions/save_tool":350,"models/tools/actions/undo_tool":351,"models/tools/actions/zoom_in_tool":352,"models/tools/actions/zoom_base_tool":353,"core/util/zoom":354,"models/tools/actions/zoom_out_tool":355,"models/tools/edit/edit_tool":356,"models/tools/edit/box_edit_tool":357,"models/tools/edit/freehand_draw_tool":358,"models/tools/edit/point_draw_tool":359,"models/tools/edit/poly_draw_tool":360,"models/tools/edit/poly_tool":361,"models/tools/edit/poly_edit_tool":362,"models/tools/gestures/box_select_tool":363,"models/tools/gestures/select_tool":364,"models/tools/util":365,"models/tools/gestures/box_zoom_tool":366,"models/tools/gestures/lasso_select_tool":367,"models/tools/gestures/poly_select_tool":368,"models/tools/edit/line_edit_tool":369,"models/tools/edit/line_tool":370,"models/tools/gestures/pan_tool":371,"models/tools/gestures/range_tool":372,"models/tools/gestures/tap_tool":373,"models/tools/gestures/wheel_pan_tool":374,"models/tools/gestures/wheel_zoom_tool":375,"models/tools/inspectors/crosshair_tool":376,"models/tools/inspectors/customjs_hover":377,"models/tools/inspectors/hover_tool":378,"models/tools/tool_proxy":379,"models/tools/toolbar_box":380,"embed/standalone":381,"embed/dom":382,"embed/server":383,"client/connection":384,"protocol/message":385,"protocol/receiver":386,"client/session":387,"embed/notebook":388,"styles/notebook.css":389,"protocol/index":390,"testing":391,"safely":392}, {});n”, ” })n”, “n”, “n”, ” / END bokeh.min.js /n”, ” },n”, ” n”, ” function(Bokeh) {n”, ” / BEGIN bokeh-widgets.min.js /n”, ” /!n”, ” * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn”, ” * All rights reserved.n”, ” * n”, ” * Redistribution and use in source and binary forms, with or without modification,n”, ” * are permitted provided that the following conditions are met:n”, ” * n”, ” * Redistributions of source code must retain the above copyright notice,n”, ” * this list of conditions and the following disclaimer.n”, ” * n”, ” * Redistributions in binary form must reproduce the above copyright notice,n”, ” * this list of conditions and the following disclaimer in the documentationn”, ” * and/or other materials provided with the distribution.n”, ” * n”, ” * Neither the name of Anaconda nor the names of any contributorsn”, ” * may be used to endorse or promote products derived from this softwaren”, ” * without specific prior written permission.n”, ” * n”, ” * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n”, ” * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn”, ” * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn”, ” * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn”, ” * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn”, ” * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn”, ” * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn”, ” * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn”, ” * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n”, ” * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn”, ” * THE POSSIBILITY OF SUCH DAMAGE.n”, ” /n”, ” (function(root, factory) {n”, ” factory(root["Bokeh"], "2.2.3");n”, ” })(this, function(Bokeh, version) {n”, ” var define;n”, ” return (function(modules, entry, aliases, externals) {n”, ” const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n”, ” if (bokeh != null) {n”, ” return bokeh.register_plugin(modules, entry, aliases);n”, ” } else {n”, ” throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n”, ” }n”, ” })n”, ” ({n”, ” 402: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1).__importStar(e(403));o.Widgets=r;e(7).register_models(r)},n”, ” 403: function _(r,e,t){Object.defineProperty(t,"__esModule",{value:!0});var a=r(404);t.AbstractButton=a.AbstractButton;var o=r(407);t.AbstractIcon=o.AbstractIcon;var u=r(408);t.AutocompleteInput=u.AutocompleteInput;var n=r(413);t.Button=n.Button;var i=r(414);t.CheckboxButtonGroup=i.CheckboxButtonGroup;var v=r(416);t.CheckboxGroup=v.CheckboxGroup;var p=r(418);t.ColorPicker=p.ColorPicker;var c=r(419);t.DatePicker=c.DatePicker;var l=r(422);t.DateRangeSlider=l.DateRangeSlider;var d=r(428);t.DateSlider=d.DateSlider;var I=r(429);t.Div=I.Div;var g=r(433);t.Dropdown=g.Dropdown;var S=r(434);t.FileInput=S.FileInput;var P=r(410);t.InputWidget=P.InputWidget;var k=r(430);t.Markup=k.Markup;var x=r(435);t.MultiSelect=x.MultiSelect;var D=r(436);t.Paragraph=D.Paragraph;var b=r(437);t.PasswordInput=b.PasswordInput;var s=r(438);t.MultiChoice=s.MultiChoice;var h=r(441);t.NumericInput=h.NumericInput;var A=r(444);t.PreText=A.PreText;var B=r(445);t.RadioButtonGroup=B.RadioButtonGroup;var C=r(446);t.RadioGroup=C.RadioGroup;var G=r(447);t.RangeSlider=G.RangeSlider;var R=r(448);t.Select=R.Select;var T=r(449);t.Slider=T.Slider;var M=r(450);t.Spinner=M.Spinner;var m=r(409);t.TextInput=m.TextInput;var w=r(451);t.TextAreaInput=w.TextAreaInput;var W=r(452);t.Toggle=W.Toggle;var _=r(472);t.Widget=_.Widget},n”, ” 404: function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(1),s=i.__importStar(t(18)),o=t(72),l=t(115),r=t(405),_=t(281),c=i.__importDefault(t(283));class u extends r.ControlView{*controls(){yield this.button_el}async lazy_initialize(){await super.lazy_initialize();const{icon:t}=this.model;null!=t&&(this.icon_view=await l.build_view(t,{parent:this}))}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[…super.styles(),c.default]}_render_button(…t){return o.button({type:"button",disabled:this.model.disabled,class:[_.bk_btn,_.bk_btn_type(this.model.button_type)]},…t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener("click",()=>this.click()),null!=this.icon_view&&(o.prepend(this.button_el,this.icon_view.el,o.nbsp()),this.icon_view.render()),this.group_el=o.div({class:_.bk_btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=u,u.__name__="AbstractButtonView";class a extends r.Control{constructor(t){super(t)}static init_AbstractButton(){this.define({label:[s.String,"Button"],icon:[s.Instance],button_type:[s.ButtonType,"default"]})}}n.AbstractButton=a,a.__name__="AbstractButton",a.init_AbstractButton()},n”, ” 405: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(472),n=e(72);class i extends s.WidgetView{connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.controls())n.toggle_attribute(e,"disabled",this.model.disabled)})}}o.ControlView=i,i.__name__="ControlView";class l extends s.Widget{constructor(e){super(e)}}o.Control=l,l.__name__="Control"},n”, ” 472: function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return"horizontal"==this.model.orientation?super._width_policy():"fixed"}_height_policy(){return"horizontal"==this.model.orientation?"fixed":super._height_policy()}box_sizing(){const i=super.box_sizing();return"horizontal"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__="WidgetView";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,"horizontal"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__="Widget",s.init_Widget()},n”, ” 407: function _(e,t,c){Object.defineProperty(c,"__esModule",{value:!0});const s=e(81),n=e(78);class o extends n.DOMView{}c.AbstractIconView=o,o.__name__="AbstractIconView";class _ extends s.Model{constructor(e){super(e)}}c.AbstractIcon=_,_.__name__="AbstractIcon"},n”, ” 408: function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e(1),s=e(409),h=e(72),_=i.__importStar(e(18)),o=e(10),u=e(173),r=e(282),c=i.__importDefault(e(284));class l extends s.TextInputView{constructor(){super(…arguments),this._open=!1,this._last_value="",this._hover_index=0}styles(){return[…super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener("keydown",e=>this._keydown(e)),this.input_el.addEventListener("keyup",e=>this._keyup(e)),this.menu=h.div({class:[r.bk_menu,u.bk_below]}),this.menu.addEventListener("click",e=>this._menu_click(e)),this.menu.addEventListener("mouseover",e=>this._menu_hover(e)),this.el.appendChild(this.menu),h.undisplay(this.menu)}change_input(){this._open&&this.menu.children.length>0&&(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu())}_update_completions(e){h.empty(this.menu);for(const t of e){const e=h.div({},t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(u.bk_active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,h.display(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener("click",e),this._hide_menu())};document.addEventListener("click",e)}}_hide_menu(){this._open&&(this._open=!1,h.undisplay(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t<this.menu.children.length&&this.menu.children[t].textContent!=e.target.textContent;t++);this._bump_hover(t)}}_bump_hover(e){const t=this.menu.children.length;this._open&&t>0&&(this.menu.children[this._hover_index].classList.remove(u.bk_active),this._hover_index=o.clamp(e,0,t-1),this.menu.children[this._hover_index].classList.add(u.bk_active))}_keydown(e){}_keyup(e){switch(e.keyCode){case h.Keys.Enter:this.change_input();break;case h.Keys.Esc:this._hide_menu();break;case h.Keys.Up:this._bump_hover(this._hover_index-1);break;case h.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.length<this.model.min_characters)return void this._hide_menu();const t=[],{case_sensitive:n}=this.model;let i;i=n?e=>e:e=>e.toLowerCase();for(const n of this.model.completions)i(n).startsWith(i(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__="AutocompleteInputView";class a extends s.TextInput{constructor(e){super(e)}static init_AutocompleteInput(){this.prototype.default_view=l,this.define({completions:[_.Array,[]],min_characters:[_.Int,2],case_sensitive:[_.Boolean,!0]})}}n.AutocompleteInput=a,a.__name__="AutocompleteInput",a.init_AutocompleteInput()},n”, ” 409: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(410),l=e(72),p=n.__importStar(e(18)),u=e(412);class a extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.value_input.change,()=>this.input_el.value=this.model.value_input),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}render(){super.render(),this.input_el=l.input({type:"text",class:u.bk_input,name:this.model.name,value:this.model.value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.input_el.addEventListener("change",()=>this.change_input()),this.input_el.addEventListener("input",()=>this.change_input_oninput()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_oninput(){this.model.value_input=this.input_el.value,super.change_input()}}i.TextInputView=a,a.__name__="TextInputView";class h extends s.InputWidget{constructor(e){super(e)}static init_TextInput(){this.prototype.default_view=a,this.define({value:[p.String,""],value_input:[p.String,""],placeholder:[p.String,""]})}}i.TextInput=h,h.__name__="TextInput",h.init_TextInput()},n”, ” 410: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),l=t(405),s=t(72),_=n.__importStar(t(18)),o=n.__importDefault(t(411)),r=t(412);class p extends l.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,()=>{this.label_el.textContent=this.model.title})}styles(){return[…super.styles(),o.default]}render(){super.render();const{title:t}=this.model;this.label_el=s.label({style:{display:0==t.length?"none":""}},t),this.group_el=s.div({class:r.bk_input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}i.InputWidgetView=p,p.__name__="InputWidgetView";class u extends l.Control{constructor(t){super(t)}static init_InputWidget(){this.define({title:[_.String,""]})}}i.InputWidget=u,u.__name__="InputWidget",u.init_InputWidget()},n”, ” 411: function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-input {\n display: inline-block;\n width: 100%;\n flex-grow: 1;\n -webkit-flex-grow: 1;\n min-height: 31px;\n padding: 0 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n.bk-root .bk-input:focus {\n border-color: #66afe9;\n outline: 0;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.bk-root .bk-input::placeholder,\n.bk-root .bk-input:-ms-input-placeholder,\n.bk-root .bk-input::-moz-placeholder,\n.bk-root .bk-input::-webkit-input-placeholder {\n color: #999;\n opacity: 1;\n}\n.bk-root .bk-input[disabled] {\n cursor: not-allowed;\n background-color: #eee;\n opacity: 1;\n}\n.bk-root select:not([multiple]).bk-input,\n.bk-root select:not([size]).bk-input {\n height: auto;\n appearance: none;\n -webkit-appearance: none;\n background-image: url(\’data:image/svg+xml;utf8,<svg version="1.1" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"><path d="M 0,0 25,0 12.5,20 Z" fill="black" /></svg>\’);\n background-position: right 0.5em center;\n background-size: 8px 6px;\n background-repeat: no-repeat;\n}\n.bk-root select[multiple].bk-input,\n.bk-root select[size].bk-input,\n.bk-root textarea.bk-input {\n height: auto;\n}\n.bk-root .bk-input-group {\n width: 100%;\n height: 100%;\n display: inline-flex;\n display: -webkit-inline-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: start;\n -webkit-align-items: start;\n flex-direction: column;\n -webkit-flex-direction: column;\n white-space: nowrap;\n}\n.bk-root .bk-input-group.bk-inline {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-input-group.bk-inline > *:not(:first-child) {\n margin-left: 5px;\n}\n.bk-root .bk-input-group input[type="checkbox"] + span,\n.bk-root .bk-input-group input[type="radio"] + span {\n position: relative;\n top: -2px;\n margin-left: 3px;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper {\n display: inherit;\n width: inherit;\n height: inherit;\n position: relative;\n overflow: hidden;\n padding: 0;\n vertical-align: middle;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper input {\n padding-right: 20px;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn {\n position: absolute;\n display: block;\n height: 50%;\n min-height: 0;\n min-width: 0;\n width: 30px;\n padding: 0;\n margin: 0;\n right: 0;\n border: none;\n background: none;\n cursor: pointer;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before {\n content: "";\n display: inline-block;\n transform: translateY(-50%);\n border-left: 5px solid transparent;\n border-right: 5px solid transparent;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up {\n top: 0;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before {\n border-bottom: 5px solid black;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before {\n border-bottom-color: grey;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down {\n bottom: 0;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before {\n border-top: 5px solid black;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before {\n border-top-color: grey;\n}\n’},n”, ” 412: function _(u,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.bk_input="bk-input",n.bk_input_group="bk-input-group"},n”, ” 413: function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=t(404),i=t(313);class s extends o.AbstractButtonView{click(){this.model.trigger_event(new i.ButtonClick),super.click()}}n.ButtonView=s,s.__name__="ButtonView";class u extends o.AbstractButton{constructor(t){super(t)}static init_Button(){this.prototype.default_view=s,this.override({label:"Button"})}}n.Button=u,u.__name__="Button",u.init_Button()},n”, ” 414: function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const i=t(1),c=t(415),s=t(72),n=i.__importStar(t(18)),a=t(173);class u extends c.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[…e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach((e,o)=>{s.classes(e).toggle(a.bk_active,t.has(o))})}}o.CheckboxButtonGroupView=u,u.__name__="CheckboxButtonGroupView";class r extends c.ButtonGroup{constructor(t){super(t)}static init_CheckboxButtonGroup(){this.prototype.default_view=u,this.define({active:[n.Array,[]]})}}o.CheckboxButtonGroup=r,r.__name__="CheckboxButtonGroup",r.init_CheckboxButtonGroup()},n”, ” 415: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),o=t(405),i=t(72),r=n.__importStar(t(18)),_=t(281),u=n.__importDefault(t(283));class a extends o.ControlView{*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,()=>this.render()),this.on_change(t.labels,()=>this.render()),this.on_change(t.active,()=>this._update_active())}styles(){return[…super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map((t,e)=>{const s=i.div({class:[_.bk_btn,_.bk_btn_type(this.model.button_type)],disabled:this.model.disabled},t);return s.addEventListener("click",()=>this.change_active(e)),s}),this._update_active();const t=i.div({class:_.bk_btn_group},this._buttons);this.el.appendChild(t)}}s.ButtonGroupView=a,a.__name__="ButtonGroupView";class l extends o.Control{constructor(t){super(t)}static init_ButtonGroup(){this.define({labels:[r.Array,[]],button_type:[r.ButtonType,"default"]})}}s.ButtonGroup=l,l.__name__="ButtonGroup",l.init_ButtonGroup()},n”, ” 416: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(417),o=e(72),c=e(9),a=n.__importStar(e(18)),l=e(173),d=e(412);class r extends s.InputGroupView{render(){super.render();const e=o.div({class:[d.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const{active:t,labels:i}=this.model;this._inputs=[];for(let n=0;n<i.length;n++){const s=o.input({type:"checkbox",value:""+n});s.addEventListener("change",()=>this.change_active(n)),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),c.includes(t,n)&&(s.checked=!0);const a=o.label({},s,o.span({},i[n]));e.appendChild(a)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[…t].sort()}}i.CheckboxGroupView=r,r.__name__="CheckboxGroupView";class p extends s.InputGroup{constructor(e){super(e)}static init_CheckboxGroup(){this.prototype.default_view=r,this.define({active:[a.Array,[]],labels:[a.Array,[]],inline:[a.Boolean,!1]})}}i.CheckboxGroup=p,p.__name__="CheckboxGroup",p.init_CheckboxGroup()},n”, ” 417: function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e(1),o=e(405),r=s.__importDefault(e(411));class u extends o.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}styles(){return[…super.styles(),r.default]}}n.InputGroupView=u,u.__name__="InputGroupView";class _ extends o.Control{constructor(e){super(e)}}n.InputGroup=_,_.__name__="InputGroup"},n”, ” 418: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),o=e(410),s=e(72),l=n.__importStar(e(18)),r=e(412);class c extends o.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.color.change,()=>this.input_el.value=this.model.color),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled)}render(){super.render(),this.input_el=s.input({type:"color",class:r.bk_input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}t.ColorPickerView=c,c.__name__="ColorPickerView";class d extends o.InputWidget{constructor(e){super(e)}static init_ColorPicker(){this.prototype.default_view=c,this.define({color:[l.Color,"#000000"]})}}t.ColorPicker=d,d.__name__="ColorPicker",d.init_ColorPicker()},n”, ” 419: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=n.__importDefault(e(420)),a=e(410),l=e(72),o=n.__importStar(e(18)),r=e(8),d=e(412),c=n.__importDefault(e(421));function u(e){const t=[];for(const i of e)if(r.isString(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class _ extends a.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,()=>{var t;return null===(t=this._picker)||void 0===t?void 0:t.setDate(e.value())}),this.connect(t.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("minDate",t.value())}),this.connect(i.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("maxDate",i.value())}),this.connect(n.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("disable",n.value())}),this.connect(s.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("enable",s.value())}),this.connect(a.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("position",a.value())}),this.connect(l.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("inline",l.value())})}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[…super.styles(),c.default]}render(){null==this._picker&&(super.render(),this.input_el=l.input({type:"text",class:d.bk_input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=s.default(this.input_el,{defaultDate:this.model.value,minDate:this.model.min_date,maxDate:this.model.max_date,inline:this.model.inline,position:this.model.position,disable:u(this.model.disabled_dates),enable:u(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=_,_.__name__="DatePickerView";class h extends a.InputWidget{constructor(e){super(e)}static init_DatePicker(){this.prototype.default_view=_,this.define({value:[o.Any],min_date:[o.Any],max_date:[o.Any],disabled_dates:[o.Any,[]],enabled_dates:[o.Any,[]],position:[o.CalendarPosition,"auto"],inline:[o.Boolean,!1]})}}i.DatePicker=h,h.__name__="DatePicker",h.init_DatePicker()},n”, ” 420: function _(e,t,n){n”, ” / flatpickr v4.6.3, @license MIT /var a,i;a=this,i=function(){"use strict";n”, ” /! *************************************************************************n”, ” Copyright (c) Microsoft Corporation. All rights reserved.n”, ” Licensed under the Apache License, Version 2.0 (the "License"); you may not usen”, ” this file except in compliance with the License. You may obtain a copy of then”, ” License at http://www.apache.org/licenses/LICENSE-2.0n”, ” n”, ” THIS CODE IS PROVIDED ON AN AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANYn”, ” KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIEDn”, ” WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,n”, ” MERCHANTABLITY OR NON-INFRINGEMENT.n”, ” n”, ” See the Apache Version 2.0 License for specific language governing permissionsn”, ” and limitations under the License.n”, ” ************************************************************************* /var e=function(){return(e=Object.assign||function(e){for(var t,n=1,a=arguments.length;n<a;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)},t=["onChange","onClose","onDayCreate","onDestroy","onKeyDown","onMonthChange","onOpen","onParseConfig","onReady","onValueUpdate","onYearChange","onPreCalendarPosition"],n={_disable:[],_enable:[],allowInput:!1,altFormat:"F j, Y",altInput:!1,altInputClass:"form-control input",animate:"object"==typeof window&&-1===window.navigator.userAgent.indexOf("MSIE"),ariaDateFormat:"F j, Y",clickOpens:!0,closeOnSelect:!0,conjunction:", ",dateFormat:"Y-m-d",defaultHour:12,defaultMinute:0,defaultSeconds:0,disable:[],disableMobile:!1,enable:[],enableSeconds:!1,enableTime:!1,errorHandler:function(e){return"undefined"!=typeof console&&console.warn(e)},getWeek:function(e){var t=new Date(e.getTime());t.setHours(0,0,0,0),t.setDate(t.getDate()+3-(t.getDay()+6)%7);var n=new Date(t.getFullYear(),0,4);return 1+Math.round(((t.getTime()-n.getTime())/864e5-3+(n.getDay()+6)%7)/7)},hourIncrement:1,ignoredFocusElements:[],inline:!1,locale:"default",minuteIncrement:5,mode:"single",monthSelectorType:"dropdown",nextArrow:"<svg version=’1.1’ xmlns=’http://www.w3.org/2000/svg’ xmlns:xlink=’http://www.w3.org/1999/xlink’ viewBox=’0 0 17 17’><g></g><path d=’M13.207 8.472l-7.854 7.854-0.707-0.707 7.146-7.146-7.146-7.148 0.707-0.707 7.854 7.854z’ /></svg>",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"<svg version=’1.1’ xmlns=’http://www.w3.org/2000/svg’ xmlns:xlink=’http://www.w3.org/1999/xlink’ viewBox=’0 0 17 17’><g></g><path d=’M5.207 8.471l7.146 7.147-0.707 0.707-7.853-7.854 7.854-7.853 0.707 0.707-7.147 7.146z’ /></svg>",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},a={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var t=e%100;if(t>3&&t<21)return"th";switch(t%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},i=function(e){return("0"+e).slice(-2)},o=function(e){return!0===e?1:0};function r(e,t,n){var a;return void 0===n&&(n=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,n||e.apply(i,o)}),t),n&&!a&&e.apply(i,o)}}var l=function(e){return e instanceof Array?e:[e]};function c(e,t,n){if(!0===n)return e.classList.add(t);e.classList.remove(t)}function d(e,t,n){var a=window.document.createElement(e);return t=t||"",n=n||"",a.className=t,void 0!==n&&(a.textContent=n),a}function s(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function u(e,t){var n=d("div","numInputWrapper"),a=d("input","numInput "+e),i=d("span","arrowUp"),o=d("span","arrowDown");if(-1===navigator.userAgent.indexOf("MSIE 9.0")?a.type="number":(a.type="text",a.pattern="\\d"),void 0!==t)for(var r in t)a.setAttribute(r,t[r]);return n.appendChild(a),n.appendChild(i),n.appendChild(o),n}var f=function(){},m=function(e,t,n){return n.months[t?"shorthand":"longhand"][e]},g={D:f,F:function(e,t,n){e.setMonth(n.months.longhand.indexOf(t))},G:function(e,t){e.setHours(parseFloat(t))},H:function(e,t){e.setHours(parseFloat(t))},J:function(e,t){e.setDate(parseFloat(t))},K:function(e,t,n){e.setHours(e.getHours()%12+12*o(new RegExp(n.amPM[1],"i").test(t)))},M:function(e,t,n){e.setMonth(n.months.shorthand.indexOf(t))},S:function(e,t){e.setSeconds(parseFloat(t))},U:function(e,t){return new Date(1e3*parseFloat(t))},W:function(e,t,n){var a=parseInt(t),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+n.firstDayOfWeek),i},Y:function(e,t){e.setFullYear(parseFloat(t))},Z:function(e,t){return new Date(t)},d:function(e,t){e.setDate(parseFloat(t))},h:function(e,t){e.setHours(parseFloat(t))},i:function(e,t){e.setMinutes(parseFloat(t))},j:function(e,t){e.setDate(parseFloat(t))},l:f,m:function(e,t){e.setMonth(parseFloat(t)-1)},n:function(e,t){e.setMonth(parseFloat(t)-1)},s:function(e,t){e.setSeconds(parseFloat(t))},u:function(e,t){return new Date(parseFloat(t))},w:f,y:function(e,t){e.setFullYear(2e3+parseFloat(t))}},p={D:"(\\w+)",F:"(\\w+)",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"(\\w+)",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"(\\w+)",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},h={Z:function(e){return e.toISOString()},D:function(e,t,n){return t.weekdays.shorthand[h.w(e,t,n)]},F:function(e,t,n){return m(h.n(e,t,n)-1,!1,t)},G:function(e,t,n){return i(h.h(e,t,n))},H:function(e){return i(e.getHours())},J:function(e,t){return void 0!==t.ordinal?e.getDate()+t.ordinal(e.getDate()):e.getDate()},K:function(e,t){return t.amPM[o(e.getHours()>11)]},M:function(e,t){return m(e.getMonth(),!0,t)},S:function(e){return i(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,t,n){return n.getWeek(e)},Y:function(e){return e.getFullYear()},d:function(e){return i(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return i(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,t){return t.weekdays.longhand[e.getDay()]},m:function(e){return i(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},v=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,n){var a=n||r;return void 0!==i.formatDate?i.formatDate(e,t,a):t.split("").map((function(t,n,o){return h[t]&&"\\"!==o[n-1]?h[t](e,a,i):"\\"!==t?t:""})).join("")}},D=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,a,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if("string"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if("string"==typeof e){var s=t||(i||n).dateFormat,u=String(e).trim();if("today"===u)l=new Date,a=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(i&&i.parseDate)l=i.parseDate(e,s);else{l=i&&i.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],h=0,v=0,D="";h<s.length;h++){var w=s[h],b="\\"===w,C="\\"===s[h-1]||b;if(p[w]&&!C){D+=p[w];var M=new RegExp(D).exec(e);M&&(f=!0)&&m["Y"!==w?"push":"unshift"]({fn:g[w],val:M[++v]})}else b||(D+=".");m.forEach((function(e){var t=e.fn,n=e.val;return l=t(l,n,c)||l}))}l=f?l:void 0}}if(l instanceof Date&&!isNaN(l.getTime()))return!0===a&&l.setHours(0,0,0,0),l;i.errorHandler(new Error("Invalid date provided: "+d))}}};function w(e,t,n){return void 0===n&&(n=!0),!1!==n?new Date(e.getTime()).setHours(0,0,0,0)-new Date(t.getTime()).setHours(0,0,0,0):e.getTime()-t.getTime()}var b=864e5;function C(f,g){var h={config:e({},n,y.defaultConfig),l10n:a};function C(e){return e.bind(h)}function M(){var e=h.config;!1===e.weekNumbers&&1===e.showMonths||!0!==e.noCalendar&&window.requestAnimationFrame((function(){if(void 0!==h.calendarContainer&&(h.calendarContainer.style.visibility="hidden",h.calendarContainer.style.display="block"),void 0!==h.daysContainer){var t=(h.days.offsetWidth+1)*e.showMonths;h.daysContainer.style.width=t+"px",h.calendarContainer.style.width=t+(void 0!==h.weekWrapper?h.weekWrapper.offsetWidth:0)+"px",h.calendarContainer.style.removeProperty("visibility"),h.calendarContainer.style.removeProperty("display")}}))}function x(e){0===h.selectedDates.length&&ne(),void 0!==e&&"blur"!==e.type&&function(e){e.preventDefault();var t="keydown"===e.type,n=e.target;void 0!==h.amPM&&e.target===h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]);var a=parseFloat(n.getAttribute("min")),r=parseFloat(n.getAttribute("max")),l=parseFloat(n.getAttribute("step")),c=parseInt(n.value,10),d=e.delta||(t?38===e.which?1:-1:0),s=c+l*d;if(void 0!==n.value&&2===n.value.length){var u=n===h.hourElement,f=n===h.minuteElement;s<a?(s=r+s+o(!u)+(o(u)&&o(!h.amPM)),f&&Y(void 0,-1,h.hourElement)):s>r&&(s=n===h.hourElement?s-r-o(!h.amPM):a,f&&Y(void 0,1,h.hourElement)),h.amPM&&u&&(1===l?s+c===23:Math.abs(s-c)>l)&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]),n.value=i(s)}}(e);var t=h._input.value;E(),ve(),h._input.value!==t&&h._debouncedChange()}function E(){if(void 0!==h.hourElement&&void 0!==h.minuteElement){var e,t,n=(parseInt(h.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(h.minuteElement.value,10)||0)%60,i=void 0!==h.secondElement?(parseInt(h.secondElement.value,10)||0)%60:0;void 0!==h.amPM&&(e=n,t=h.amPM.textContent,n=e%12+12*o(t===h.l10n.amPM[1]));var r=void 0!==h.config.minTime||h.config.minDate&&h.minDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.minDate,!0);if(void 0!==h.config.maxTime||h.config.maxDate&&h.maxDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.maxDate,!0)){var l=void 0!==h.config.maxTime?h.config.maxTime:h.config.maxDate;(n=Math.min(n,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(r){var c=void 0!==h.config.minTime?h.config.minTime:h.config.minDate;(n=Math.max(n,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}I(n,a,i)}}function T(e){var t=e||h.latestSelectedDateObj;t&&I(t.getHours(),t.getMinutes(),t.getSeconds())}function k(){var e=h.config.defaultHour,t=h.config.defaultMinute,n=h.config.defaultSeconds;if(void 0!==h.config.minDate){var a=h.config.minDate.getHours(),i=h.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(t=Math.max(i,t)),e===a&&t===i&&(n=h.config.minDate.getSeconds())}if(void 0!==h.config.maxDate){var o=h.config.maxDate.getHours(),r=h.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(t=Math.min(r,t)),e===o&&t===r&&(n=h.config.maxDate.getSeconds())}I(e,t,n)}function I(e,t,n){void 0!==h.latestSelectedDateObj&&h.latestSelectedDateObj.setHours(e%24,t,n||0,0),h.hourElement&&h.minuteElement&&!h.isMobile&&(h.hourElement.value=i(h.config.time_24hr?e:(12+e)%12+12*o(e%12==0)),h.minuteElement.value=i(t),void 0!==h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(e>=12)]),void 0!==h.secondElement&&(h.secondElement.value=i(n)))}function S(e){var t=parseInt(e.target.value)+(e.delta||0);(t/1e3>1||"Enter"===e.key&&!/[^\d]/.test(t.toString()))&&V(t)}function O(e,t,n,a){return t instanceof Array?t.forEach((function(t){return O(e,t,n,a)})):e instanceof Array?e.forEach((function(e){return O(e,t,n,a)})):(e.addEventListener(t,n,a),void h._handlers.push({element:e,event:t,handler:n,options:a}))}function _(e){return function(t){1===t.which&&e(t)}}function F(){fe("onChange")}function N(e,t){var n=void 0!==e?h.parseDate(e):h.latestSelectedDateObj||(h.config.minDate&&h.config.minDate>h.now?h.config.minDate:h.config.maxDate&&h.config.maxDate<h.now?h.config.maxDate:h.now),a=h.currentYear,i=h.currentMonth;try{void 0!==n&&(h.currentYear=n.getFullYear(),h.currentMonth=n.getMonth())}catch(e){e.message="Invalid date supplied: "+n,h.config.errorHandler(e)}t&&h.currentYear!==a&&(fe("onYearChange"),B()),!t||h.currentYear===a&&h.currentMonth===i||fe("onMonthChange"),h.redraw()}function P(e){~e.target.className.indexOf("arrow")&&Y(e,e.target.classList.contains("arrowUp")?1:-1)}function Y(e,t,n){var a=e&&e.target,i=n||a&&a.parentNode&&a.parentNode.firstChild,o=me("increment");o.delta=t,i&&i.dispatchEvent(o)}function A(e,t,n,a){var i=Z(t,!0),o=d("span","flatpickr-day "+e,t.getDate().toString());return o.dateObj=t,o.$i=a,o.setAttribute("aria-label",h.formatDate(t,h.config.ariaDateFormat)),-1===e.indexOf("hidden")&&0===w(t,h.now)&&(h.todayDateElem=o,o.classList.add("today"),o.setAttribute("aria-current","date")),i?(o.tabIndex=-1,ge(t)&&(o.classList.add("selected"),h.selectedDateElem=o,"range"===h.config.mode&&(c(o,"startRange",h.selectedDates[0]&&0===w(t,h.selectedDates[0],!0)),c(o,"endRange",h.selectedDates[1]&&0===w(t,h.selectedDates[1],!0)),"nextMonthDay"===e&&o.classList.add("inRange")))):o.classList.add("flatpickr-disabled"),"range"===h.config.mode&&function(e){return!("range"!==h.config.mode||h.selectedDates.length<2)&&w(e,h.selectedDates[0])>=0&&w(e,h.selectedDates[1])<=0}(t)&&!ge(t)&&o.classList.add("inRange"),h.weekNumbers&&1===h.config.showMonths&&"prevMonthDay"!==e&&n%7==1&&h.weekNumbers.insertAdjacentHTML("beforeend","<span class=’flatpickr-day’>"+h.config.getWeek(t)+"</span>"),fe("onDayCreate",o),o}function j(e){e.focus(),"range"===h.config.mode&&ee(e)}function H(e){for(var t=e>0?0:h.config.showMonths-1,n=e>0?h.config.showMonths:-1,a=t;a!=n;a+=e)for(var i=h.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf("hidden")&&Z(c.dateObj))return c}}function L(e,t){var n=Q(document.activeElement||document.body),a=void 0!==e?e:n?document.activeElement:void 0!==h.selectedDateElem&&Q(h.selectedDateElem)?h.selectedDateElem:void 0!==h.todayDateElem&&Q(h.todayDateElem)?h.todayDateElem:H(t>0?1:-1);return void 0===a?h._input.focus():n?void function(e,t){for(var n=-1===e.className.indexOf("Month")?e.dateObj.getMonth():h.currentMonth,a=t>0?h.config.showMonths:-1,i=t>0?1:-1,o=n-h.currentMonth;o!=a;o+=i)for(var r=h.daysContainer.children[o],l=n-h.currentMonth===o?e.$i+t:t<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d<c&&d!=(t>0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf("hidden")&&Z(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(t))return j(s)}h.changeMonth(i),L(H(i),0)}(a,t):j(a)}function W(e,t){for(var n=(new Date(e,t,1).getDay()-h.l10n.firstDayOfWeek+7)%7,a=h.utils.getDaysInMonth((t-1+12)%12),i=h.utils.getDaysInMonth(t),o=window.document.createDocumentFragment(),r=h.config.showMonths>1,l=r?"prevMonthDay hidden":"prevMonthDay",c=r?"nextMonthDay hidden":"nextMonthDay",s=a+1-n,u=0;s<=a;s++,u++)o.appendChild(A(l,new Date(e,t-1,s),s,u));for(s=1;s<=i;s++,u++)o.appendChild(A("",new Date(e,t,s),s,u));for(var f=i+1;f<=42-n&&(1===h.config.showMonths||u%7!=0);f++,u++)o.appendChild(A(c,new Date(e,t+1,f%i),f,u));var m=d("div","dayContainer");return m.appendChild(o),m}function R(){if(void 0!==h.daysContainer){s(h.daysContainer),h.weekNumbers&&s(h.weekNumbers);for(var e=document.createDocumentFragment(),t=0;t<h.config.showMonths;t++){var n=new Date(h.currentYear,h.currentMonth,1);n.setMonth(h.currentMonth+t),e.appendChild(W(n.getFullYear(),n.getMonth()))}h.daysContainer.appendChild(e),h.days=h.daysContainer.firstChild,"range"===h.config.mode&&1===h.selectedDates.length&&ee()}}function B(){if(!(h.config.showMonths>1||"dropdown"!==h.config.monthSelectorType)){var e=function(e){return!(void 0!==h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&e<h.config.minDate.getMonth()||void 0!==h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()&&e>h.config.maxDate.getMonth())};h.monthsDropdownContainer.tabIndex=-1,h.monthsDropdownContainer.innerHTML="";for(var t=0;t<12;t++)if(e(t)){var n=d("option","flatpickr-monthDropdown-month");n.value=new Date(h.currentYear,t).getMonth().toString(),n.textContent=m(t,h.config.shorthandCurrentMonth,h.l10n),n.tabIndex=-1,h.currentMonth===t&&(n.selected=!0),h.monthsDropdownContainer.appendChild(n)}}}function J(){var e,t=d("div","flatpickr-month"),n=window.document.createDocumentFragment();h.config.showMonths>1||"static"===h.config.monthSelectorType?e=d("span","cur-month"):(h.monthsDropdownContainer=d("select","flatpickr-monthDropdown-months"),O(h.monthsDropdownContainer,"change",(function(e){var t=e.target,n=parseInt(t.value,10);h.changeMonth(n-h.currentMonth),fe("onMonthChange")})),B(),e=h.monthsDropdownContainer);var a=u("cur-year",{tabindex:"-1"}),i=a.getElementsByTagName("input")[0];i.setAttribute("aria-label",h.l10n.yearAriaLabel),h.config.minDate&&i.setAttribute("min",h.config.minDate.getFullYear().toString()),h.config.maxDate&&(i.setAttribute("max",h.config.maxDate.getFullYear().toString()),i.disabled=!!h.config.minDate&&h.config.minDate.getFullYear()===h.config.maxDate.getFullYear());var o=d("div","flatpickr-current-month");return o.appendChild(e),o.appendChild(a),n.appendChild(o),t.appendChild(n),{container:t,yearElement:i,monthElement:e}}function K(){s(h.monthNav),h.monthNav.appendChild(h.prevMonthNav),h.config.showMonths&&(h.yearElements=[],h.monthElements=[]);for(var e=h.config.showMonths;e–;){var t=J();h.yearElements.push(t.yearElement),h.monthElements.push(t.monthElement),h.monthNav.appendChild(t.container)}h.monthNav.appendChild(h.nextMonthNav)}function U(){h.weekdayContainer?s(h.weekdayContainer):h.weekdayContainer=d("div","flatpickr-weekdays");for(var e=h.config.showMonths;e–;){var t=d("div","flatpickr-weekdaycontainer");h.weekdayContainer.appendChild(t)}return q(),h.weekdayContainer}function q(){if(h.weekdayContainer){var e=h.l10n.firstDayOfWeek,t=h.l10n.weekdays.shorthand.slice();e>0&&e<t.length&&(t=t.splice(e,t.length).concat(t.splice(0,e)));for(var n=h.config.showMonths;n–;)h.weekdayContainer.children[n].innerHTML="\n <span class=’flatpickr-weekday’>\n "+t.join("</span><span class=’flatpickr-weekday’>")+"\n </span>\n "}}function $(e,t){void 0===t&&(t=!0);var n=t?e:e-h.currentMonth;n<0&&!0===h._hidePrevMonthArrow||n>0&&!0===h._hideNextMonthArrow||(h.currentMonth+=n,(h.currentMonth<0||h.currentMonth>11)&&(h.currentYear+=h.currentMonth>11?1:-1,h.currentMonth=(h.currentMonth+12)%12,fe("onYearChange"),B()),R(),fe("onMonthChange"),pe())}function z(e){return!(!h.config.appendTo||!h.config.appendTo.contains(e))||h.calendarContainer.contains(e)}function G(e){if(h.isOpen&&!h.config.inline){var t="function"==typeof(r=e).composedPath?r.composedPath()[0]:r.target,n=z(t),a=t===h.input||t===h.altInput||h.element.contains(t)||e.path&&e.path.indexOf&&(~e.path.indexOf(h.input)||~e.path.indexOf(h.altInput)),i="blur"===e.type?a&&e.relatedTarget&&!z(e.relatedTarget):!a&&!n&&!z(e.relatedTarget),o=!h.config.ignoredFocusElements.some((function(e){return e.contains(t)}));i&&o&&(void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&x(),h.close(),"range"===h.config.mode&&1===h.selectedDates.length&&(h.clear(!1),h.redraw()))}var r}function V(e){if(!(!e||h.config.minDate&&e<h.config.minDate.getFullYear()||h.config.maxDate&&e>h.config.maxDate.getFullYear())){var t=e,n=h.currentYear!==t;h.currentYear=t||h.currentYear,h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth=Math.min(h.config.maxDate.getMonth(),h.currentMonth):h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&(h.currentMonth=Math.max(h.config.minDate.getMonth(),h.currentMonth)),n&&(h.redraw(),fe("onYearChange"),B())}}function Z(e,t){void 0===t&&(t=!0);var n=h.parseDate(e,void 0,t);if(h.config.minDate&&n&&w(n,h.config.minDate,void 0!==t?t:!h.minDateHasTime)<0||h.config.maxDate&&n&&w(n,h.config.maxDate,void 0!==t?t:!h.maxDateHasTime)>0)return!1;if(0===h.config.enable.length&&0===h.config.disable.length)return!0;if(void 0===n)return!1;for(var a=h.config.enable.length>0,i=a?h.config.enable:h.config.disable,o=0,r=void 0;o<i.length;o++){if("function"==typeof(r=i[o])&&r(n))return a;if(r instanceof Date&&void 0!==n&&r.getTime()===n.getTime())return a;if("string"==typeof r&&void 0!==n){var l=h.parseDate(r,void 0,!0);return l&&l.getTime()===n.getTime()?a:!a}if("object"==typeof r&&void 0!==n&&r.from&&r.to&&n.getTime()>=r.from.getTime()&&n.getTime()<=r.to.getTime())return a}return!a}function Q(e){return void 0!==h.daysContainer&&-1===e.className.indexOf("hidden")&&h.daysContainer.contains(e)}function X(e){var t=e.target===h._input,n=h.config.allowInput,a=h.isOpen&&(!n||!t),i=h.config.inline&&t&&!n;if(13===e.keyCode&&t){if(n)return h.setDate(h._input.value,!0,e.target===h.altInput?h.config.altFormat:h.config.dateFormat),e.target.blur();h.open()}else if(z(e.target)||a||i){var o=!!h.timeContainer&&h.timeContainer.contains(e.target);switch(e.keyCode){case 13:o?(e.preventDefault(),x(),le()):ce(e);break;case 27:e.preventDefault(),le();break;case 8:case 46:t&&!h.config.allowInput&&(e.preventDefault(),h.clear());break;case 37:case 39:if(o||t)h.hourElement&&h.hourElement.focus();else if(e.preventDefault(),void 0!==h.daysContainer&&(!1===n||document.activeElement&&Q(document.activeElement))){var r=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),$(r),L(H(1),0)):L(void 0,r)}break;case 38:case 40:e.preventDefault();var l=40===e.keyCode?1:-1;h.daysContainer&&void 0!==e.target.$i||e.target===h.input||e.target===h.altInput?e.ctrlKey?(e.stopPropagation(),V(h.currentYear-l),L(H(1),0)):o||L(void 0,7*l):e.target===h.currentYearElement?V(h.currentYear-l):h.config.enableTime&&(!o&&h.hourElement&&h.hourElement.focus(),x(e),h._debouncedChange());break;case 9:if(o){var c=[h.hourElement,h.minuteElement,h.secondElement,h.amPM].concat(h.pluginElements).filter((function(e){return e})),d=c.indexOf(e.target);if(-1!==d){var s=c[d+(e.shiftKey?-1:1)];e.preventDefault(),(s||h._input).focus()}}else!h.config.noCalendar&&h.daysContainer&&h.daysContainer.contains(e.target)&&e.shiftKey&&(e.preventDefault(),h._input.focus())}}if(void 0!==h.amPM&&e.target===h.amPM)switch(e.key){case h.l10n.amPM[0].charAt(0):case h.l10n.amPM[0].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[0],E(),ve();break;case h.l10n.amPM[1].charAt(0):case h.l10n.amPM[1].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[1],E(),ve()}(t||z(e.target))&&fe("onKeyDown",e)}function ee(e){if(1===h.selectedDates.length&&(!e||e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled"))){for(var t=e?e.dateObj.getTime():h.days.firstElementChild.dateObj.getTime(),n=h.parseDate(h.selectedDates[0],void 0,!0).getTime(),a=Math.min(t,h.selectedDates[0].getTime()),i=Math.max(t,h.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;c<i;c+=b)Z(new Date(c),!0)||(o=o||c>a&&c<i,c<n&&(!r||c>r)?r=c:c>n&&(!l||c<l)&&(l=c));for(var d=0;d<h.config.showMonths;d++)for(var s=h.daysContainer.children[d],u=function(a,i){var c,d,u,f=s.children[a],m=f.dateObj.getTime(),g=r>0&&m<r||l>0&&m>l;return g?(f.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach((function(e){f.classList.remove(e)})),"continue"):o&&!g?"continue":(["startRange","inRange","endRange","notAllowed"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(t<=h.selectedDates[0].getTime()?"startRange":"endRange"),n<t&&m===n?f.classList.add("startRange"):n>t&&m===n&&f.classList.add("endRange"),m>=r&&(0===l||m<=l)&&(d=n,u=t,(c=m)>Math.min(d,u)&&c<Math.max(d,u))&&f.classList.add("inRange"))))},f=0,m=s.children.length;f<m;f++)u(f)}}function te(){!h.isOpen||h.config.static||h.config.inline||oe()}function ne(){h.setDate(void 0!==h.config.minDate?new Date(h.config.minDate.getTime()):new Date,!0),k(),ve()}function ae(e){return function(t){var n=h.config["_"+e+"Date"]=h.parseDate(t,h.config.dateFormat),a=h.config["_"+("min"===e?"max":"min")+"Date"];void 0!==n&&(h["min"===e?"minDateHasTime":"maxDateHasTime"]=n.getHours()>0||n.getMinutes()>0||n.getSeconds()>0),h.selectedDates&&(h.selectedDates=h.selectedDates.filter((function(e){return Z(e)})),h.selectedDates.length||"min"!==e||T(n),ve()),h.daysContainer&&(re(),void 0!==n?h.currentYearElement[e]=n.getFullYear().toString():h.currentYearElement.removeAttribute(e),h.currentYearElement.disabled=!!a&&void 0!==n&&a.getFullYear()===n.getFullYear())}}function ie(){"object"!=typeof h.config.locale&&void 0===y.l10ns[h.config.locale]&&h.config.errorHandler(new Error("flatpickr: invalid locale "+h.config.locale)),h.l10n=e({},y.l10ns.default,"object"==typeof h.config.locale?h.config.locale:"default"!==h.config.locale?y.l10ns[h.config.locale]:void 0),p.K="("+h.l10n.amPM[0]+"|\"+h.l10n.amPM[1]+\"|"+h.l10n.amPM[0].toLowerCase()+"|\"+h.l10n.amPM[1].toLowerCase()+\")\",void 0===e({},g,JSON.parse(JSON.stringify(f.dataset||{}))).time_24hr&&void 0===y.defaultConfig.time_24hr&&(h.config.time_24hr=h.l10n.time_24hr),h.formatDate=v(h),h.parseDate=D({config:h.config,l10n:h.l10n})}function oe(e){if(void 0!==h.calendarContainer){fe(\"onPreCalendarPosition\");var t=e||h._positionElement,n=Array.prototype.reduce.call(h.calendarContainer.children,(function(e,t){return e+t.offsetHeight}),0),a=h.calendarContainer.offsetWidth,i=h.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=t.getBoundingClientRect(),d=window.innerHeight-l.bottom,s=\"above\"===o||"below"!==o&&d<n&&l.top>n,u=window.pageYOffset+l.top+(s?-n-2:t.offsetHeight+2);if(c(h.calendarContainer,"arrowTop",!s),c(h.calendarContainer,"arrowBottom",s),!h.config.inline){var f=window.pageXOffset+l.left-(null!=r&&"center"===r?(a-l.width)/2:0),m=window.document.body.offsetWidth-(window.pageXOffset+l.right),g=f+a>window.document.body.offsetWidth,p=m+a>window.document.body.offsetWidth;if(c(h.calendarContainer,"rightMost",g),!h.config.static)if(h.calendarContainer.style.top=u+"px",g)if(p){var v=document.styleSheets[0];if(void 0===v)return;var D=window.document.body.offsetWidth,w=Math.max(0,D/2-a/2),b=v.cssRules.length,C="{left:"+l.left+"px;right:auto;}";c(h.calendarContainer,"rightMost",!1),c(h.calendarContainer,"centerMost",!0),v.insertRule(".flatpickr-calendar.centerMost:before,.flatpickr-calendar.centerMost:after"+C,b),h.calendarContainer.style.left=w+"px",h.calendarContainer.style.right="auto"}else h.calendarContainer.style.left="auto",h.calendarContainer.style.right=m+"px";else h.calendarContainer.style.left=f+"px",h.calendarContainer.style.right="auto"}}}function re(){h.config.noCalendar||h.isMobile||(pe(),R())}function le(){h._input.focus(),-1!==window.navigator.userAgent.indexOf("MSIE")||void 0!==navigator.msMaxTouchPoints?setTimeout(h.close,0):h.close()}function ce(e){e.preventDefault(),e.stopPropagation();var t=function e(t,n){return n(t)?t:t.parentNode?e(t.parentNode,n):void 0}(e.target,(function(e){return e.classList&&e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled")&&!e.classList.contains("notAllowed")}));if(void 0!==t){var n=t,a=h.latestSelectedDateObj=new Date(n.dateObj.getTime()),i=(a.getMonth()<h.currentMonth||a.getMonth()>h.currentMonth+h.config.showMonths-1)&&"range"!==h.config.mode;if(h.selectedDateElem=n,"single"===h.config.mode)h.selectedDates=[a];else if("multiple"===h.config.mode){var o=ge(a);o?h.selectedDates.splice(parseInt(o),1):h.selectedDates.push(a)}else"range"===h.config.mode&&(2===h.selectedDates.length&&h.clear(!1,!1),h.latestSelectedDateObj=a,h.selectedDates.push(a),0!==w(a,h.selectedDates[0],!0)&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()})));if(E(),i){var r=h.currentYear!==a.getFullYear();h.currentYear=a.getFullYear(),h.currentMonth=a.getMonth(),r&&(fe("onYearChange"),B()),fe("onMonthChange")}if(pe(),R(),ve(),h.config.enableTime&&setTimeout((function(){return h.showTimeInput=!0}),50),i||"range"===h.config.mode||1!==h.config.showMonths?void 0!==h.selectedDateElem&&void 0===h.hourElement&&h.selectedDateElem&&h.selectedDateElem.focus():j(n),void 0!==h.hourElement&&void 0!==h.hourElement&&h.hourElement.focus(),h.config.closeOnSelect){var l="single"===h.config.mode&&!h.config.enableTime,c="range"===h.config.mode&&2===h.selectedDates.length&&!h.config.enableTime;(l||c)&&le()}F()}}h.parseDate=D({config:h.config,l10n:h.l10n}),h._handlers=[],h.pluginElements=[],h.loadedPlugins=[],h._bind=O,h._setHoursFromDate=T,h._positionCalendar=oe,h.changeMonth=$,h.changeYear=V,h.clear=function(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0),h.input.value="",void 0!==h.altInput&&(h.altInput.value=""),void 0!==h.mobileInput&&(h.mobileInput.value=""),h.selectedDates=[],h.latestSelectedDateObj=void 0,!0===t&&(h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth()),h.showTimeInput=!1,!0===h.config.enableTime&&k(),h.redraw(),e&&fe("onChange")},h.close=function(){h.isOpen=!1,h.isMobile||(void 0!==h.calendarContainer&&h.calendarContainer.classList.remove("open"),void 0!==h._input&&h._input.classList.remove("active")),fe("onClose")},h._createElement=d,h.destroy=function(){void 0!==h.config&&fe("onDestroy");for(var e=h._handlers.length;e–;){var t=h._handlers[e];t.element.removeEventListener(t.event,t.handler,t.options)}if(h._handlers=[],h.mobileInput)h.mobileInput.parentNode&&h.mobileInput.parentNode.removeChild(h.mobileInput),h.mobileInput=void 0;else if(h.calendarContainer&&h.calendarContainer.parentNode)if(h.config.static&&h.calendarContainer.parentNode){var n=h.calendarContainer.parentNode;if(n.lastChild&&n.removeChild(n.lastChild),n.parentNode){for(;n.firstChild;)n.parentNode.insertBefore(n.firstChild,n);n.parentNode.removeChild(n)}}else h.calendarContainer.parentNode.removeChild(h.calendarContainer);h.altInput&&(h.input.type="text",h.altInput.parentNode&&h.altInput.parentNode.removeChild(h.altInput),delete h.altInput),h.input&&(h.input.type=h.input._type,h.input.classList.remove("flatpickr-input"),h.input.removeAttribute("readonly"),h.input.value=""),["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach((function(e){try{delete h[e]}catch(e){}}))},h.isEnabled=Z,h.jumpToDate=N,h.open=function(e,t){if(void 0===t&&(t=h._positionElement),!0===h.isMobile)return e&&(e.preventDefault(),e.target&&e.target.blur()),void 0!==h.mobileInput&&(h.mobileInput.focus(),h.mobileInput.click()),void fe("onOpen");if(!h._input.disabled&&!h.config.inline){var n=h.isOpen;h.isOpen=!0,n||(h.calendarContainer.classList.add("open"),h._input.classList.add("active"),fe("onOpen"),oe(t)),!0===h.config.enableTime&&!0===h.config.noCalendar&&(0===h.selectedDates.length&&ne(),!1!==h.config.allowInput||void 0!==e&&h.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return h.hourElement.select()}),50))}},h.redraw=re,h.set=function(e,n){if(null!==e&&"object"==typeof e)for(var a in Object.assign(h.config,e),e)void 0!==de[a]&&de[a].forEach((function(e){return e()}));else h.config[e]=n,void 0!==de[e]?de[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(h.config[e]=l(n));h.redraw(),ve(!1)},h.setDate=function(e,t,n){if(void 0===t&&(t=!1),void 0===n&&(n=h.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return h.clear(t);se(e,n),h.showTimeInput=h.selectedDates.length>0,h.latestSelectedDateObj=h.selectedDates[h.selectedDates.length-1],h.redraw(),N(),T(),0===h.selectedDates.length&&h.clear(!1),ve(t),t&&fe("onChange")},h.toggle=function(e){if(!0===h.isOpen)return h.close();h.open(e)};var de={locale:[ie,q],showMonths:[K,M,U],minDate:[N],maxDate:[N]};function se(e,t){var n=[];if(e instanceof Array)n=e.map((function(e){return h.parseDate(e,t)}));else if(e instanceof Date||"number"==typeof e)n=[h.parseDate(e,t)];else if("string"==typeof e)switch(h.config.mode){case"single":case"time":n=[h.parseDate(e,t)];break;case"multiple":n=e.split(h.config.conjunction).map((function(e){return h.parseDate(e,t)}));break;case"range":n=e.split(h.l10n.rangeSeparator).map((function(e){return h.parseDate(e,t)}))}else h.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(e)));h.selectedDates=n.filter((function(e){return e instanceof Date&&Z(e,!1)})),"range"===h.config.mode&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()}))}function ue(e){return e.slice().map((function(e){return"string"==typeof e||"number"==typeof e||e instanceof Date?h.parseDate(e,void 0,!0):e&&"object"==typeof e&&e.from&&e.to?{from:h.parseDate(e.from,void 0),to:h.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function fe(e,t){if(void 0!==h.config){var n=h.config[e];if(void 0!==n&&n.length>0)for(var a=0;n[a]&&a<n.length;a++)n[a](h.selectedDates,h.input.value,h,t);"onChange"===e&&(h.input.dispatchEvent(me("change")),h.input.dispatchEvent(me("input")))}}function me(e){var t=document.createEvent("Event");return t.initEvent(e,!0,!0),t}function ge(e){for(var t=0;t<h.selectedDates.length;t++)if(0===w(h.selectedDates[t],e))return""+t;return!1}function pe(){h.config.noCalendar||h.isMobile||!h.monthNav||(h.yearElements.forEach((function(e,t){var n=new Date(h.currentYear,h.currentMonth,1);n.setMonth(h.currentMonth+t),h.config.showMonths>1||"static"===h.config.monthSelectorType?h.monthElements[t].textContent=m(n.getMonth(),h.config.shorthandCurrentMonth,h.l10n)+" ":h.monthsDropdownContainer.value=n.getMonth().toString(),e.value=n.getFullYear().toString()})),h._hidePrevMonthArrow=void 0!==h.config.minDate&&(h.currentYear===h.config.minDate.getFullYear()?h.currentMonth<=h.config.minDate.getMonth():h.currentYear<h.config.minDate.getFullYear()),h._hideNextMonthArrow=void 0!==h.config.maxDate&&(h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth+1>h.config.maxDate.getMonth():h.currentYear>h.config.maxDate.getFullYear()))}function he(e){return h.selectedDates.map((function(t){return h.formatDate(t,e)})).filter((function(e,t,n){return"range"!==h.config.mode||h.config.enableTime||n.indexOf(e)===t})).join("range"!==h.config.mode?h.config.conjunction:h.l10n.rangeSeparator)}function ve(e){void 0===e&&(e=!0),void 0!==h.mobileInput&&h.mobileFormatStr&&(h.mobileInput.value=void 0!==h.latestSelectedDateObj?h.formatDate(h.latestSelectedDateObj,h.mobileFormatStr):""),h.input.value=he(h.config.dateFormat),void 0!==h.altInput&&(h.altInput.value=he(h.config.altFormat)),!1!==e&&fe("onValueUpdate")}function De(e){var t=h.prevMonthNav.contains(e.target),n=h.nextMonthNav.contains(e.target);t||n?$(t?-1:1):h.yearElements.indexOf(e.target)>=0?e.target.select():e.target.classList.contains("arrowUp")?h.changeYear(h.currentYear+1):e.target.classList.contains("arrowDown")&&h.changeYear(h.currentYear-1)}return function(){h.element=h.input=f,h.isOpen=!1,function(){var a=["wrap","weekNumbers","allowInput","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],i=e({},g,JSON.parse(JSON.stringify(f.dataset||{}))),o={};h.config.parseDate=i.parseDate,h.config.formatDate=i.formatDate,Object.defineProperty(h.config,"enable",{get:function(){return h.config._enable},set:function(e){h.config._enable=ue(e)}}),Object.defineProperty(h.config,"disable",{get:function(){return h.config._disable},set:function(e){h.config._disable=ue(e)}});var r="time"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var c=y.defaultConfig.dateFormat||n.dateFormat;o.dateFormat=i.noCalendar||r?"H:i"+(i.enableSeconds?":S":""):c+" H:i"+(i.enableSeconds?":S":"")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=y.defaultConfig.altFormat||n.altFormat;o.altFormat=i.noCalendar||r?"h:i"+(i.enableSeconds?":S K":" K"):d+" h:i"+(i.enableSeconds?":S":"")+" K"}i.altInputClass||(h.config.altInputClass=h.input.className+" "+h.config.altInputClass),Object.defineProperty(h.config,"minDate",{get:function(){return h.config._minDate},set:ae("min")}),Object.defineProperty(h.config,"maxDate",{get:function(){return h.config._maxDate},set:ae("max")});var s=function(e){return function(t){h.config["min"===e?"_minTime":"_maxTime"]=h.parseDate(t,"H:i:S")}};Object.defineProperty(h.config,"minTime",{get:function(){return h.config._minTime},set:s("min")}),Object.defineProperty(h.config,"maxTime",{get:function(){return h.config._maxTime},set:s("max")}),"time"===i.mode&&(h.config.noCalendar=!0,h.config.enableTime=!0),Object.assign(h.config,o,i);for(var u=0;u<a.length;u++)h.config[a[u]]=!0===h.config[a[u]]||"true"===h.config[a[u]];for(t.filter((function(e){return void 0!==h.config[e]})).forEach((function(e){h.config[e]=l(h.config[e]||[]).map(C)})),h.isMobile=!h.config.disableMobile&&!h.config.inline&&"single"===h.config.mode&&!h.config.disable.length&&!h.config.enable.length&&!h.config.weekNumbers&&/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),u=0;u<h.config.plugins.length;u++){var m=h.config.plugins[u](h)||{};for(var p in m)t.indexOf(p)>-1?h.config[p]=l(m[p]).map(C).concat(h.config[p]):void 0===i[p]&&(h.config[p]=m[p])}fe("onParseConfig")}(),ie(),h.input=h.config.wrap?f.querySelector("[data-input]"):f,h.input?(h.input._type=h.input.type,h.input.type="text",h.input.classList.add("flatpickr-input"),h._input=h.input,h.config.altInput&&(h.altInput=d(h.input.nodeName,h.config.altInputClass),h._input=h.altInput,h.altInput.placeholder=h.input.placeholder,h.altInput.disabled=h.input.disabled,h.altInput.required=h.input.required,h.altInput.tabIndex=h.input.tabIndex,h.altInput.type="text",h.input.setAttribute("type","hidden"),!h.config.static&&h.input.parentNode&&h.input.parentNode.insertBefore(h.altInput,h.input.nextSibling)),h.config.allowInput||h._input.setAttribute("readonly","readonly"),h._positionElement=h.config.positionElement||h._input):h.config.errorHandler(new Error("Invalid input element specified")),function(){h.selectedDates=[],h.now=h.parseDate(h.config.now)||new Date;var e=h.config.defaultDate||("INPUT"!==h.input.nodeName&&"TEXTAREA"!==h.input.nodeName||!h.input.placeholder||h.input.value!==h.input.placeholder?h.input.value:null);e&&se(e,h.config.dateFormat),h._initialDate=h.selectedDates.length>0?h.selectedDates[0]:h.config.minDate&&h.config.minDate.getTime()>h.now.getTime()?h.config.minDate:h.config.maxDate&&h.config.maxDate.getTime()<h.now.getTime()?h.config.maxDate:h.now,h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth(),h.selectedDates.length>0&&(h.latestSelectedDateObj=h.selectedDates[0]),void 0!==h.config.minTime&&(h.config.minTime=h.parseDate(h.config.minTime,"H:i")),void 0!==h.config.maxTime&&(h.config.maxTime=h.parseDate(h.config.maxTime,"H:i")),h.minDateHasTime=!!h.config.minDate&&(h.config.minDate.getHours()>0||h.config.minDate.getMinutes()>0||h.config.minDate.getSeconds()>0),h.maxDateHasTime=!!h.config.maxDate&&(h.config.maxDate.getHours()>0||h.config.maxDate.getMinutes()>0||h.config.maxDate.getSeconds()>0),Object.defineProperty(h,"showTimeInput",{get:function(){return h._showTimeInput},set:function(e){h._showTimeInput=e,h.calendarContainer&&c(h.calendarContainer,"showTimeInput",e),h.isOpen&&oe()}})}(),h.utils={getDaysInMonth:function(e,t){return void 0===e&&(e=h.currentMonth),void 0===t&&(t=h.currentYear),1===e&&(t%4==0&&t%100!=0||t%400==0)?29:h.l10n.daysInMonth[e]}},h.isMobile||function(){var e=window.document.createDocumentFragment();if(h.calendarContainer=d("div","flatpickr-calendar"),h.calendarContainer.tabIndex=-1,!h.config.noCalendar){if(e.appendChild((h.monthNav=d("div","flatpickr-months"),h.yearElements=[],h.monthElements=[],h.prevMonthNav=d("span","flatpickr-prev-month"),h.prevMonthNav.innerHTML=h.config.prevArrow,h.nextMonthNav=d("span","flatpickr-next-month"),h.nextMonthNav.innerHTML=h.config.nextArrow,K(),Object.defineProperty(h,"_hidePrevMonthArrow",{get:function(){return h.__hidePrevMonthArrow},set:function(e){h.__hidePrevMonthArrow!==e&&(c(h.prevMonthNav,"flatpickr-disabled",e),h.__hidePrevMonthArrow=e)}}),Object.defineProperty(h,"_hideNextMonthArrow",{get:function(){return h.__hideNextMonthArrow},set:function(e){h.__hideNextMonthArrow!==e&&(c(h.nextMonthNav,"flatpickr-disabled",e),h.__hideNextMonthArrow=e)}}),h.currentYearElement=h.yearElements[0],pe(),h.monthNav)),h.innerContainer=d("div","flatpickr-innerContainer"),h.config.weekNumbers){var t=function(){h.calendarContainer.classList.add("hasWeeks");var e=d("div","flatpickr-weekwrapper");e.appendChild(d("span","flatpickr-weekday",h.l10n.weekAbbreviation));var t=d("div","flatpickr-weeks");return e.appendChild(t),{weekWrapper:e,weekNumbers:t}}(),n=t.weekWrapper,a=t.weekNumbers;h.innerContainer.appendChild(n),h.weekNumbers=a,h.weekWrapper=n}h.rContainer=d("div","flatpickr-rContainer"),h.rContainer.appendChild(U()),h.daysContainer||(h.daysContainer=d("div","flatpickr-days"),h.daysContainer.tabIndex=-1),R(),h.rContainer.appendChild(h.daysContainer),h.innerContainer.appendChild(h.rContainer),e.appendChild(h.innerContainer)}h.config.enableTime&&e.appendChild(function(){h.calendarContainer.classList.add("hasTime"),h.config.noCalendar&&h.calendarContainer.classList.add("noCalendar"),h.timeContainer=d("div","flatpickr-time"),h.timeContainer.tabIndex=-1;var e=d("span","flatpickr-time-separator",":"),t=u("flatpickr-hour",{"aria-label":h.l10n.hourAriaLabel});h.hourElement=t.getElementsByTagName("input")[0];var n=u("flatpickr-minute",{"aria-label":h.l10n.minuteAriaLabel});if(h.minuteElement=n.getElementsByTagName("input")[0],h.hourElement.tabIndex=h.minuteElement.tabIndex=-1,h.hourElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getHours():h.config.time_24hr?h.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(h.config.defaultHour)),h.minuteElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getMinutes():h.config.defaultMinute),h.hourElement.setAttribute("step",h.config.hourIncrement.toString()),h.minuteElement.setAttribute("step",h.config.minuteIncrement.toString()),h.hourElement.setAttribute("min",h.config.time_24hr?"0":"1"),h.hourElement.setAttribute("max",h.config.time_24hr?"23":"12"),h.minuteElement.setAttribute("min","0"),h.minuteElement.setAttribute("max","59"),h.timeContainer.appendChild(t),h.timeContainer.appendChild(e),h.timeContainer.appendChild(n),h.config.time_24hr&&h.timeContainer.classList.add("time24hr"),h.config.enableSeconds){h.timeContainer.classList.add("hasSeconds");var a=u("flatpickr-second");h.secondElement=a.getElementsByTagName("input")[0],h.secondElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getSeconds():h.config.defaultSeconds),h.secondElement.setAttribute("step",h.minuteElement.getAttribute("step")),h.secondElement.setAttribute("min","0"),h.secondElement.setAttribute("max","59"),h.timeContainer.appendChild(d("span","flatpickr-time-separator",":")),h.timeContainer.appendChild(a)}return h.config.time_24hr||(h.amPM=d("span","flatpickr-am-pm",h.l10n.amPM[o((h.latestSelectedDateObj?h.hourElement.value:h.config.defaultHour)>11)]),h.amPM.title=h.l10n.toggleTitle,h.amPM.tabIndex=-1,h.timeContainer.appendChild(h.amPM)),h.timeContainer}()),c(h.calendarContainer,"rangeMode","range"===h.config.mode),c(h.calendarContainer,"animate",!0===h.config.animate),c(h.calendarContainer,"multiMonth",h.config.showMonths>1),h.calendarContainer.appendChild(e);var r=void 0!==h.config.appendTo&&void 0!==h.config.appendTo.nodeType;if((h.config.inline||h.config.static)&&(h.calendarContainer.classList.add(h.config.inline?"inline":"static"),h.config.inline&&(!r&&h.element.parentNode?h.element.parentNode.insertBefore(h.calendarContainer,h._input.nextSibling):void 0!==h.config.appendTo&&h.config.appendTo.appendChild(h.calendarContainer)),h.config.static)){var l=d("div","flatpickr-wrapper");h.element.parentNode&&h.element.parentNode.insertBefore(l,h.element),l.appendChild(h.element),h.altInput&&l.appendChild(h.altInput),l.appendChild(h.calendarContainer)}h.config.static||h.config.inline||(void 0!==h.config.appendTo?h.config.appendTo:window.document.body).appendChild(h.calendarContainer)}(),function(){if(h.config.wrap&&["open","close","toggle","clear"].forEach((function(e){Array.prototype.forEach.call(h.element.querySelectorAll("[data-"+e+"]"),(function(t){return O(t,"click",h[e])}))})),h.isMobile)!function(){var e=h.config.enableTime?h.config.noCalendar?"time":"datetime-local":"date";h.mobileInput=d("input",h.input.className+" flatpickr-mobile"),h.mobileInput.step=h.input.getAttribute("step")||"any",h.mobileInput.tabIndex=1,h.mobileInput.type=e,h.mobileInput.disabled=h.input.disabled,h.mobileInput.required=h.input.required,h.mobileInput.placeholder=h.input.placeholder,h.mobileFormatStr="datetime-local"===e?"Y-m-d\\TH:i:S":"date"===e?"Y-m-d":"H:i:S",h.selectedDates.length>0&&(h.mobileInput.defaultValue=h.mobileInput.value=h.formatDate(h.selectedDates[0],h.mobileFormatStr)),h.config.minDate&&(h.mobileInput.min=h.formatDate(h.config.minDate,"Y-m-d")),h.config.maxDate&&(h.mobileInput.max=h.formatDate(h.config.maxDate,"Y-m-d")),h.input.type="hidden",void 0!==h.altInput&&(h.altInput.type="hidden");try{h.input.parentNode&&h.input.parentNode.insertBefore(h.mobileInput,h.input.nextSibling)}catch(e){}O(h.mobileInput,"change",(function(e){h.setDate(e.target.value,!1,h.mobileFormatStr),fe("onChange"),fe("onClose")}))}();else{var e=r(te,50);h._debouncedChange=r(F,300),h.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&O(h.daysContainer,"mouseover",(function(e){"range"===h.config.mode&&ee(e.target)})),O(window.document.body,"keydown",X),h.config.inline||h.config.static||O(window,"resize",e),void 0!==window.ontouchstart?O(window.document,"touchstart",G):O(window.document,"mousedown",_(G)),O(window.document,"focus",G,{capture:!0}),!0===h.config.clickOpens&&(O(h._input,"focus",h.open),O(h._input,"mousedown",_(h.open))),void 0!==h.daysContainer&&(O(h.monthNav,"mousedown",_(De)),O(h.monthNav,["keyup","increment"],S),O(h.daysContainer,"mousedown",_(ce))),void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&(O(h.timeContainer,["increment"],x),O(h.timeContainer,"blur",x,{capture:!0}),O(h.timeContainer,"mousedown",_(P)),O([h.hourElement,h.minuteElement],["focus","click"],(function(e){return e.target.select()})),void 0!==h.secondElement&&O(h.secondElement,"focus",(function(){return h.secondElement&&h.secondElement.select()})),void 0!==h.amPM&&O(h.amPM,"mousedown",_((function(e){x(e),F()}))))}}(),(h.selectedDates.length||h.config.noCalendar)&&(h.config.enableTime&&T(h.config.noCalendar?h.latestSelectedDateObj||h.config.minDate:void 0),ve(!1)),M(),h.showTimeInput=h.selectedDates.length>0||h.config.noCalendar;var a=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!h.isMobile&&a&&oe(),fe("onReady")}(),h}function M(e,t){for(var n=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;i<n.length;i++){var o=n[i];try{if(null!==o.getAttribute("data-fp-omit"))continue;void 0!==o._flatpickr&&(o._flatpickr.destroy(),o._flatpickr=void 0),o._flatpickr=C(o,t||{}),a.push(o._flatpickr)}catch(e){console.error(e)}}return 1===a.length?a[0]:a}"function"!=typeof Object.assign&&(Object.assign=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];if(!e)throw TypeError("Cannot convert undefined or null to object");for(var a=function(t){t&&Object.keys(t).forEach((function(n){return e[n]=t[n]}))},i=0,o=t;i<o.length;i++){var r=o[i];a(r)}return e}),"undefined"!=typeof HTMLElement&&"undefined"!=typeof HTMLCollection&&"undefined"!=typeof NodeList&&(HTMLCollection.prototype.flatpickr=NodeList.prototype.flatpickr=function(e){return M(this,e)},HTMLElement.prototype.flatpickr=function(e){return M([this],e)});var y=function(e,t){return"string"==typeof e?M(window.document.querySelectorAll(e),t):e instanceof Node?M([e],t):M(e,t)};return y.defaultConfig={},y.l10ns={en:e({},a),default:e({},a)},y.localize=function(t){y.l10ns.default=e({},y.l10ns.default,t)},y.setDefaults=function(t){y.defaultConfig=e({},y.defaultConfig,t)},y.parseDate=D({}),y.formatDate=v({}),y.compareDates=w,"undefined"!=typeof jQuery&&void 0!==jQuery.fn&&(jQuery.fn.flatpickr=function(e){return M(this,e)}),Date.prototype.fp_incr=function(e){return new Date(this.getFullYear(),this.getMonth(),this.getDate()+("string"==typeof e?parseInt(e,10):e))},"undefined"!=typeof window&&(window.flatpickr=y),y},"object"==typeof n&&void 0!==t?t.exports=i():"function"==typeof define&&define.amd?define(i):(a=a||self).flatpickr=i()},n”, ” 421: function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});e.default=’\n.flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n background: #fff;\n -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);\n box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #e6e6e6;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: \’\’;\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.rightMost:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #e6e6e6;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #fff;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #e6e6e6;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #fff;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n background: transparent;\n color: rgba(0, 0, 0, 0.9);\n fill: rgba(0, 0, 0, 0.9);\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: rgba(0, 0, 0, 0.9);\n fill: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n /\n /*rtl:begin:ignore/\n /\n */\n left: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n /\n /*rtl:begin:ignore/\n /\n */\n right: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #959ea9;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(57, 57, 57, 0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0, 0, 0, 0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0, 0, 0, 0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: "";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(57, 57, 57, 0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(57, 57, 57, 0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(0, 0, 0, 0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(0, 0, 0, 0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: transparent;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: transparent;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: transparent;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: transparent;\n color: rgba(0, 0, 0, 0.54);\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #e6e6e6;\n box-shadow: -1px 0 0 #e6e6e6;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #393939;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e6e6e6;\n border-color: #e6e6e6;\n}\n.flatpickr-day.today {\n border-color: #959ea9;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #959ea9;\n background: #959ea9;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #569ff7;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #569ff7;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #569ff7;\n box-shadow: -10px 0 0 #569ff7;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(57, 57, 57, 0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(57, 57, 57, 0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;\n box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n -webkit-box-shadow: 1px 0 0 #e6e6e6;\n box-shadow: 1px 0 0 #e6e6e6;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(57, 57, 57, 0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-time:after {\n content: "";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #393939;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #393939;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #393939;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #393939;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eee;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n.flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);\n box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #eceef1;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-innerContainer {\n border-bottom: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n border: 1px solid #eceef1;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: \’\’;\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.rightMost:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n border-radius: 5px 5px 0 0;\n background: #eceef1;\n color: #5a6171;\n fill: #5a6171;\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: #5a6171;\n fill: #5a6171;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n /\n /*rtl:begin:ignore/\n /\n */\n left: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n /\n /*rtl:begin:ignore/\n /\n */\n right: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #bbb;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(72, 72, 72, 0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0, 0, 0, 0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0, 0, 0, 0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: "";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(72, 72, 72, 0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(72, 72, 72, 0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(90, 97, 113, 0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: #5a6171;\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: #5a6171;\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(90, 97, 113, 0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: #eceef1;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: #eceef1;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: #eceef1;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: #eceef1;\n color: #5a6171;\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n border-left: 1px solid #eceef1;\n border-right: 1px solid #eceef1;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #eceef1;\n box-shadow: -1px 0 0 #eceef1;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #484848;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e2e2e2;\n border-color: #e2e2e2;\n}\n.flatpickr-day.today {\n border-color: #bbb;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #bbb;\n background: #bbb;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #ff5a5f;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #ff5a5f;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #ff5a5f;\n box-shadow: -10px 0 0 #ff5a5f;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(72, 72, 72, 0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(72, 72, 72, 0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n border-left: 1px solid #eceef1;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(72, 72, 72, 0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n background: #fff;\n border-bottom: 1px solid #eceef1;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n background: #fff;\n border-radius: 0 0 5px 5px;\n}\n.flatpickr-time:after {\n content: "";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #484848;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #484848;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #484848;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #484848;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eaeaea;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\nspan.flatpickr-day.selected {\n font-weight: bold;\n}\n’},n”, ” 422: function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(1).__importDefault(e(186)),r=e(423);class n extends r.AbstractRangeSliderView{}a.DateRangeSliderView=n,n.__name__="DateRangeSliderView";class d extends r.AbstractSlider{constructor(e){super(e),this.behaviour="drag",this.connected=[!1,!0,!1]}static init_DateRangeSlider(){this.prototype.default_view=n,this.override({format:"%d %b %Y"})}_formatter(e,t){return i.default(e,t)}}a.DateRangeSlider=d,d.__name__="DateRangeSlider",d.init_DateRangeSlider()},n”, ” 423: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=s.__importStar(t(424)),r=t(72),o=t(9),n=t(405),a=t(131),d=t(425),_=t(412),h=s.__importDefault(t(426)),c=s.__importDefault(t(427));class u extends n.ControlView{controls(){yield this.slider_el}get noUiSlider(){return this.slider_el.noUiSlider}connect_signals(){super.connect_signals();const{direction:t,orientation:e,tooltips:i}=this.model.properties;this.on_change([t,e,i],()=>this.render());const{start:s,end:l,value:r,step:o,title:n}=this.model.properties;this.on_change([s,l,r,o],()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s})});const{bar_color:a}=this.model.properties;this.on_change(a,()=>{this._set_bar_color()});const{show_value:d}=this.model.properties;this.on_change([r,n,d],()=>this._update_title())}styles(){return[…super.styles(),h.default,c.default]}_update_title(){r.empty(this.title_el);const t=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=t?"none":"",!t&&(0!=this.model.title.length&&(this.title_el.textContent=this.model.title+": "),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map(t=>this.model.pretty(t)).join(" .. ");this.title_el.appendChild(r.span({class:d.bk_slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(".noUi-connect").style.backgroundColor=this.model.bar_color}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let n;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};n=o.repeat(t,i.length)}else n=!1;if(null==this.slider_el){this.slider_el=r.div(),l.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:n,orientation:this.model.orientation,direction:this.model.direction}),this.noUiSlider.on("slide",(t,e,i)=>this._slide(i)),this.noUiSlider.on("change",(t,e,i)=>this._change(i));const o=(t,e)=>{if(!n)return;this.slider_el.querySelectorAll(".noUi-handle")[t].querySelector(".noUi-tooltip").style.display=e?"block":""};this.noUiSlider.on("start",(t,e)=>o(e,!0)),this.noUiSlider.on("end",(t,e)=>o(e,!1))}else this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s});this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute("disabled","true"):this.slider_el.removeAttribute("disabled"),this.title_el=r.div({class:d.bk_slider_title}),this._update_title(),this.group_el=r.div({class:_.bk_input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){this.model.value=this._calc_from(t),this.model.value_throttled=this.model.value}}u.__name__="AbstractBaseSliderView";class m extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=m,m.__name__="AbstractSliderView";class p extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=p,p.__name__="AbstractRangeSliderView";class b extends n.Control{constructor(t){super(t),this.connected=!1}static init_AbstractSlider(){this.define(({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:r,Enum:o,Ref:n})=>({title:[s,""],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[r(s,n(a.TickFormatter))],direction:[o("ltr","rtl"),"ltr"],tooltips:[e,!0],bar_color:[l,"#e6e6e6"]}))}_formatter(t,e){return""+t}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=b,b.__name__="AbstractSlider",b.init_AbstractSlider()},n”, ” 424: function _(t,e,r){n”, ” /! nouislider - 14.6.0 - 6/27/2020 /n”, ” var n;n=function(){"use strict";var t="14.6.0";function e(t){t.parentElement.removeChild(t)}function r(t){return null!=t}function n(t){t.preventDefault()}function i(t){return"number"==typeof t&&!isNaN(t)&&isFinite(t)}function o(t,e,r){r>0&&(u(t,e),setTimeout((function(){c(t,e)}),r))}function s(t){return Math.max(Math.min(t,100),0)}function a(t){return Array.isArray(t)?t:[t]}function l(t){var e=(t=String(t)).split(".");return e.length>1?e[1].length:0}function u(t,e){t.classList&&!/\s/.test(e)?t.classList.add(e):t.className+=" "+e}function c(t,e){t.classList&&!/\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\b)"+e.split(" ").join("|")+"(\\b|$)","gi")," ")}function p(t){var e=void 0!==window.pageXOffset,r="CSS1Compat"===(t.compatMode||"");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function f(t,e){return 100/(e-t)}function d(t,e,r){return 100*e/(t[r+1]-t[r])}function h(t,e){for(var r=1;t>=e[r];)r+=1;return r}function m(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=h(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return d(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/f(s,a)}function g(t,e,r,n){if(100===n)return n;var i=h(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}function v(t,e,r){var n;if("number"==typeof e&&(e=[e]),!Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘range’ contains invalid value.");if(!i(n="min"===t?0:"max"===t?100:parseFloat(t))||!i(e[0]))throw new Error("noUiSlider (14.6.0): ‘range’ value isn’t numeric.");r.xPct.push(n),r.xVal.push(e[0]),n?r.xSteps.push(!isNaN(e[1])&&e[1]):isNaN(e[1])||(r.xSteps[0]=e[1]),r.xHighestCompleteStep.push(0)}function b(t,e,r){if(e)if(r.xVal[t]!==r.xVal[t+1]){r.xSteps[t]=d([r.xVal[t],r.xVal[t+1]],e,0)/f(r.xPct[t],r.xPct[t+1]);var n=(r.xVal[t+1]-r.xVal[t])/r.xNumSteps[t],i=Math.ceil(Number(n.toFixed(3))-1),o=r.xVal[t]+r.xNumSteps[t]*i;r.xHighestCompleteStep[t]=o}else r.xSteps[t]=r.xHighestCompleteStep[t]=r.xVal[t]}function x(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.xHighestCompleteStep=[],this.snap=e;var i=[];for(n in t)t.hasOwnProperty(n)&&i.push([t[n],n]);for(i.length&&"object"==typeof i[0][0]?i.sort((function(t,e){return t[0][0]-e[0][0]})):i.sort((function(t,e){return t[0]-e[0]})),n=0;n<i.length;n++)v(i[n][1],i[n][0],this);for(this.xNumSteps=this.xSteps.slice(0),n=0;n<this.xNumSteps.length;n++)b(n,this.xNumSteps[n],this)}x.prototype.getDistance=function(t){var e,r=[];for(e=0;e<this.xNumSteps.length-1;e++){var n=this.xNumSteps[e];if(n&&t/n%1!=0)throw new Error("noUiSlider (14.6.0): ‘limit’, ‘margin’ and ‘padding’ of "+this.xPct[e]+"% range must be divisible by step.");r[e]=d(this.xVal,t,e)}return r},x.prototype.getAbsoluteDistance=function(t,e,r){var n,i=0;if(t<this.xPct[this.xPct.length-1])for(;t>this.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++;var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c–):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},x.prototype.toStepping=function(t){return t=m(this.xVal,this.xPct,t)},x.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=h(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*f(s,e[n]))}(this.xVal,this.xPct,t)},x.prototype.getStep=function(t){return t=g(this.xPct,this.xSteps,this.snap,t)},x.prototype.getDefaultStep=function(t,e,r){var n=h(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},x.prototype.getNearbySteps=function(t){var e=h(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},x.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(l);return Math.max.apply(null,t)},x.prototype.convert=function(t){return this.getStep(this.toStepping(t))};var S={to:function(t){return void 0!==t&&t.toFixed(2)},from:Number},w={target:"target",base:"base",origin:"origin",handle:"handle",handleLower:"handle-lower",handleUpper:"handle-upper",touchArea:"touch-area",horizontal:"horizontal",vertical:"vertical",background:"background",connect:"connect",connects:"connects",ltr:"ltr",rtl:"rtl",textDirectionLtr:"txt-dir-ltr",textDirectionRtl:"txt-dir-rtl",draggable:"draggable",drag:"state-drag",tap:"state-tap",active:"active",tooltip:"tooltip",pips:"pips",pipsHorizontal:"pips-horizontal",pipsVertical:"pips-vertical",marker:"marker",markerHorizontal:"marker-horizontal",markerVertical:"marker-vertical",markerNormal:"marker-normal",markerLarge:"marker-large",markerSub:"marker-sub",value:"value",valueHorizontal:"value-horizontal",valueVertical:"value-vertical",valueNormal:"value-normal",valueLarge:"value-large",valueSub:"value-sub"};function y(t){if(function(t){return"object"==typeof t&&"function"==typeof t.to&&"function"==typeof t.from}(t))return!0;throw new Error("noUiSlider (14.6.0): ‘format’ requires ‘to’ and ‘from’ methods.")}function E(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘step’ is not numeric.");t.singleStep=e}function C(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘keyboardPageMultiplier’ is not numeric.");t.keyboardPageMultiplier=e}function P(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘keyboardDefaultStep’ is not numeric.");t.keyboardDefaultStep=e}function N(t,e){if("object"!=typeof e||Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘range’ is not an object.");if(void 0===e.min||void 0===e.max)throw new Error("noUiSlider (14.6.0): Missing ‘min’ or ‘max’ in ‘range’.");if(e.min===e.max)throw new Error("noUiSlider (14.6.0): ‘range’ ‘min’ and ‘max’ cannot be equal.");t.spectrum=new x(e,t.snap,t.singleStep)}function k(t,e){if(e=a(e),!Array.isArray(e)||!e.length)throw new Error("noUiSlider (14.6.0): ‘start’ option is incorrect.");t.handles=e.length,t.start=e}function U(t,e){if(t.snap=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘snap’ option must be a boolean.")}function A(t,e){if(t.animate=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘animate’ option must be a boolean.")}function V(t,e){if(t.animationDuration=e,"number"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘animationDuration’ option must be a number.")}function D(t,e){var r,n=[!1];if("lower"===e?e=[!0,!1]:"upper"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r<t.handles;r++)n.push(e);n.push(!1)}else{if(!Array.isArray(e)||!e.length||e.length!==t.handles+1)throw new Error("noUiSlider (14.6.0): ‘connect’ option doesn’t match handle count.");n=e}t.connect=n}function M(t,e){switch(e){case"horizontal":t.ort=0;break;case"vertical":t.ort=1;break;default:throw new Error("noUiSlider (14.6.0): ‘orientation’ option is invalid.")}}function O(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘margin’ option must be numeric.");0!==e&&(t.margin=t.spectrum.getDistance(e))}function L(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘limit’ option must be numeric.");if(t.limit=t.spectrum.getDistance(e),!t.limit||t.handles<2)throw new Error("noUiSlider (14.6.0): ‘limit’ option is only supported on linear sliders with 2 or more handles.")}function z(t,e){var r;if(!i(e)&&!Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘padding’ option must be numeric or array of exactly 2 numbers.");if(Array.isArray(e)&&2!==e.length&&!i(e[0])&&!i(e[1]))throw new Error("noUiSlider (14.6.0): ‘padding’ option must be numeric or array of exactly 2 numbers.");if(0!==e){for(Array.isArray(e)||(e=[e,e]),t.padding=[t.spectrum.getDistance(e[0]),t.spectrum.getDistance(e[1])],r=0;r<t.spectrum.xNumSteps.length-1;r++)if(t.padding[0][r]<0||t.padding[1][r]<0)throw new Error("noUiSlider (14.6.0): ‘padding’ option must be a positive number(s).");var n=e[0]+e[1],o=t.spectrum.xVal[0];if(n/(t.spectrum.xVal[t.spectrum.xVal.length-1]-o)>1)throw new Error("noUiSlider (14.6.0): ‘padding’ option must not exceed 100% of the range.")}}function H(t,e){switch(e){case"ltr":t.dir=0;break;case"rtl":t.dir=1;break;default:throw new Error("noUiSlider (14.6.0): ‘direction’ option was not recognized.")}}function j(t,e){if("string"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘behaviour’ must be a string containing options.");var r=e.indexOf("tap")>=0,n=e.indexOf("drag")>=0,i=e.indexOf("fixed")>=0,o=e.indexOf("snap")>=0,s=e.indexOf("hover")>=0,a=e.indexOf("unconstrained")>=0;if(i){if(2!==t.handles)throw new Error("noUiSlider (14.6.0): ‘fixed’ behaviour must be used with 2 handles");O(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error("noUiSlider (14.6.0): ‘unconstrained’ behaviour cannot be used with margin or limit");t.events={tap:r||o,drag:n,fixed:i,snap:o,hover:s,unconstrained:a}}function F(t,e){if(!1!==e)if(!0===e){t.tooltips=[];for(var r=0;r<t.handles;r++)t.tooltips.push(!0)}else{if(t.tooltips=a(e),t.tooltips.length!==t.handles)throw new Error("noUiSlider (14.6.0): must pass a formatter for all handles.");t.tooltips.forEach((function(t){if("boolean"!=typeof t&&("object"!=typeof t||"function"!=typeof t.to))throw new Error("noUiSlider (14.6.0): ‘tooltips’ must be passed a formatter or ‘false’.")}))}}function R(t,e){t.ariaFormat=e,y(e)}function T(t,e){t.format=e,y(e)}function B(t,e){if(t.keyboardSupport=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘keyboardSupport’ option must be a boolean.")}function q(t,e){t.documentElement=e}function X(t,e){if("string"!=typeof e&&!1!==e)throw new Error("noUiSlider (14.6.0): ‘cssPrefix’ must be a string or `false`.");t.cssPrefix=e}function _(t,e){if("object"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘cssClasses’ must be an object.");if("string"==typeof t.cssPrefix)for(var r in t.cssClasses={},e)e.hasOwnProperty(r)&&(t.cssClasses[r]=t.cssPrefix+e[r]);else t.cssClasses=e}function Y(t){var e={margin:0,limit:0,padding:0,animate:!0,animationDuration:300,ariaFormat:S,format:S},n={step:{r:!1,t:E},keyboardPageMultiplier:{r:!1,t:C},keyboardDefaultStep:{r:!1,t:P},start:{r:!0,t:k},connect:{r:!0,t:D},direction:{r:!0,t:H},snap:{r:!1,t:U},animate:{r:!1,t:A},animationDuration:{r:!1,t:V},range:{r:!0,t:N},orientation:{r:!1,t:M},margin:{r:!1,t:O},limit:{r:!1,t:L},padding:{r:!1,t:z},behaviour:{r:!0,t:j},ariaFormat:{r:!1,t:R},format:{r:!1,t:T},tooltips:{r:!1,t:F},keyboardSupport:{r:!0,t:B},documentElement:{r:!1,t:q},cssPrefix:{r:!0,t:X},cssClasses:{r:!0,t:_}},i={connect:!1,direction:"ltr",behaviour:"tap",orientation:"horizontal",keyboardSupport:!0,cssPrefix:"noUi-",cssClasses:w,keyboardPageMultiplier:5,keyboardDefaultStep:10};t.format&&!t.ariaFormat&&(t.ariaFormat=t.format),Object.keys(n).forEach((function(o){if(!r(t[o])&&void 0===i[o]){if(n[o].r)throw new Error("noUiSlider (14.6.0): ‘"+o+"’ is required.");return!0}n[o].t(e,r(t[o])?t[o]:i[o])})),e.pips=t.pips;var o=document.createElement("div"),s=void 0!==o.style.msTransform,a=void 0!==o.style.transform;return e.transformRule=a?"transform":s?"msTransform":"webkitTransform",e.style=[["left","top"],["right","bottom"]][e.dir][e.ort],e}function I(t,r,i){var l,f,d,h,m,g,v,b,x=window.navigator.pointerEnabled?{start:"pointerdown",move:"pointermove",end:"pointerup"}:window.navigator.msPointerEnabled?{start:"MSPointerDown",move:"MSPointerMove",end:"MSPointerUp"}:{start:"mousedown touchstart",move:"mousemove touchmove",end:"mouseup touchend"},S=window.CSS&&CSS.supports&&CSS.supports("touch-action","none")&&function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("test",null,e)}catch(t){}return t}(),w=t,y=r.spectrum,E=[],C=[],P=[],N=0,k={},U=t.ownerDocument,A=r.documentElement||U.documentElement,V=U.body,D="rtl"===U.dir||1===r.ort?0:100;function M(t,e){var r=U.createElement("div");return e&&u(r,e),t.appendChild(r),r}function O(t,e){var n=M(t,r.cssClasses.origin),i=M(n,r.cssClasses.handle);return M(i,r.cssClasses.touchArea),i.setAttribute("data-handle",e),r.keyboardSupport&&(i.setAttribute("tabindex","0"),i.addEventListener("keydown",(function(t){return function(t,e){if(H()||j(e))return!1;var n=["Left","Right"],i=["Down","Up"],o=["PageDown","PageUp"],s=["Home","End"];r.dir&&!r.ort?n.reverse():r.ort&&!r.dir&&(i.reverse(),o.reverse());var a,l=t.key.replace("Arrow",""),u=l===o[0],c=l===o[1],p=l===i[0]||l===n[0]||u,f=l===i[1]||l===n[1]||c,d=l===s[0],h=l===s[1];if(!(p||f||d||h))return!0;if(t.preventDefault(),f||p){var m=r.keyboardPageMultiplier,g=p?0:1,v=ft(e)[g];if(null===v)return!1;!1===v&&(v=y.getDefaultStep(C[e],p,r.keyboardDefaultStep)),(c||u)&&(v*=m),v=Math.max(v,1e-7),v*=p?-1:1,a=E[e]+v}else a=h?r.spectrum.xVal[r.spectrum.xVal.length-1]:r.spectrum.xVal[0];return at(e,y.toStepping(a),!0,!0),et("slide",e),et("update",e),et("change",e),et("set",e),!1}(t,e)}))),i.setAttribute("role","slider"),i.setAttribute("aria-orientation",r.ort?"vertical":"horizontal"),0===e?u(i,r.cssClasses.handleLower):e===r.handles-1&&u(i,r.cssClasses.handleUpper),n}function L(t,e){return!!e&&M(t,r.cssClasses.connect)}function z(t,e){return!!r.tooltips[e]&&M(t.firstChild,r.cssClasses.tooltip)}function H(){return w.hasAttribute("disabled")}function j(t){return f[t].hasAttribute("disabled")}function F(){m&&(tt("update.tooltips"),m.forEach((function(t){t&&e(t)})),m=null)}function R(){F(),m=f.map(z),Z("update.tooltips",(function(t,e,n){if(m[e]){var i=t[e];!0!==r.tooltips[e]&&(i=r.tooltips[e].to(n[e])),m[e].innerHTML=i}}))}function T(t,e,n){var i=U.createElement("div"),o=[];o[0]=r.cssClasses.valueNormal,o[1]=r.cssClasses.valueLarge,o[2]=r.cssClasses.valueSub;var s=[];s[0]=r.cssClasses.markerNormal,s[1]=r.cssClasses.markerLarge,s[2]=r.cssClasses.markerSub;var a=[r.cssClasses.valueHorizontal,r.cssClasses.valueVertical],l=[r.cssClasses.markerHorizontal,r.cssClasses.markerVertical];function c(t,e){var n=e===r.cssClasses.value,i=n?o:s;return e+" "+(n?a:l)[r.ort]+" "+i[t]}return u(i,r.cssClasses.pips),u(i,0===r.ort?r.cssClasses.pipsHorizontal:r.cssClasses.pipsVertical),Object.keys(t).forEach((function(o){!function(t,o,s){if(-1!==(s=e?e(o,s):s)){var a=M(i,!1);a.className=c(s,r.cssClasses.marker),a.style[r.style]=t+"%",s>0&&((a=M(i,!1)).className=c(s,r.cssClasses.value),a.setAttribute("data-value",o),a.style[r.style]=t+"%",a.innerHTML=n.to(o))}}(o,t[o][0],t[o][1])})),i}function B(){h&&(e(h),h=null)}function q(t){B();var e=t.mode,r=t.density||1,n=t.filter||!1,i=function(t,e,r){if("range"===t||"steps"===t)return y.xVal;if("count"===t){if(e<2)throw new Error("noUiSlider (14.6.0): ‘values’ (>= 2) required for mode ‘count’.");var n=e-1,i=100/n;for(e=[];n–;)e[n]=n*i;e.push(100),t="positions"}return"positions"===t?e.map((function(t){return y.fromStepping(r?y.getStep(t):t)})):"values"===t?r?e.map((function(t){return y.fromStepping(y.getStep(y.toStepping(t)))})):e:void 0}(e,t.values||!1,t.stepped||!1),o=function(t,e,r){var n,i={},o=y.xVal[0],s=y.xVal[y.xVal.length-1],a=!1,l=!1,u=0;return n=r.slice().sort((function(t,e){return t-e})),(r=n.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(r.unshift(o),a=!0),r[r.length-1]!==s&&(r.push(s),l=!0),r.forEach((function(n,o){var s,c,p,f,d,h,m,g,v,b,x=n,S=r[o+1],w="steps"===e;if(w&&(s=y.xNumSteps[o]),s||(s=S-x),!1!==x&&void 0!==S)for(s=Math.max(s,1e-7),c=x;c<=S;c=(c+s).toFixed(7)/1){for(g=(d=(f=y.toStepping(c))-u)/t,b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[y.fromStepping(h),0];m=r.indexOf(c)>-1?1:w?2:0,!o&&a&&c!==S&&(m=0),c===S&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}(r,e,i),s=t.format||{to:Math.round};return h=w.appendChild(T(o,n,s))}function X(){var t=l.getBoundingClientRect(),e="offset"+["Width","Height"][r.ort];return 0===r.ort?t.width||l[e]:t.height||l[e]}function _(t,e,n,i){var o=function(o){return!!(o=function(t,e,r){var n,i,o=0===t.type.indexOf("touch"),s=0===t.type.indexOf("mouse"),a=0===t.type.indexOf("pointer");if(0===t.type.indexOf("MSPointer")&&(a=!0),o){var l=function(t){return t.target===r||r.contains(t.target)||t.target.shadowRoot&&t.target.shadowRoot.contains(r)};if("touchstart"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;n=u[0].pageX,i=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;n=c.pageX,i=c.pageY}}return e=e||p(U),(s||a)&&(n=t.clientX+e.x,i=t.clientY+e.y),t.pageOffset=e,t.points=[n,i],t.cursor=s||a,t}(o,i.pageOffset,i.target||e))&&!(H()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp("\\b"+a+"\\b").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==o.buttons&&o.buttons>1)&&(!i.hover||!o.buttons)&&(S||o.preventDefault(),o.calcPoint=o.points[r.ort],void n(o,i)));var s,a},s=[];return t.split(" ").forEach((function(t){e.addEventListener(t,o,!!S&&{passive:!0}),s.push([t,o])})),s}function I(t){var e,n,i,o,a,u,c=100*(t-(e=l,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,a=o.documentElement,u=p(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(u.x=0),n?i.top+u.y-a.clientTop:i.left+u.x-a.clientLeft))/X();return c=s(c),r.dir?100-c:c}function W(t,e){"mouseout"===t.type&&"HTML"===t.target.nodeName&&null===t.relatedTarget&&G(t,e)}function $(t,e){if(-1===navigator.appVersion.indexOf("MSIE 9")&&0===t.buttons&&0!==e.buttonsProperty)return G(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);it(n>0,100*n/e.baseSize,e.locations,e.handleNumbers)}function G(t,e){e.handle&&(c(e.handle,r.cssClasses.active),N-=1),e.listeners.forEach((function(t){A.removeEventListener(t[0],t[1])})),0===N&&(c(w,r.cssClasses.drag),st(),t.cursor&&(V.style.cursor="",V.removeEventListener("selectstart",n))),e.handleNumbers.forEach((function(t){et("change",t),et("set",t),et("end",t)}))}function J(t,e){if(e.handleNumbers.some(j))return!1;var i;1===e.handleNumbers.length&&(i=f[e.handleNumbers[0]].children[0],N+=1,u(i,r.cssClasses.active)),t.stopPropagation();var o=[],s=_(x.move,A,$,{target:t.target,handle:i,listeners:o,startCalcPoint:t.calcPoint,baseSize:X(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:C.slice()}),a=_(x.end,A,G,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers}),l=_("mouseout",A,W,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers});o.push.apply(o,s.concat(a,l)),t.cursor&&(V.style.cursor=getComputedStyle(t.target).cursor,f.length>1&&u(w,r.cssClasses.drag),V.addEventListener("selectstart",n,!1)),e.handleNumbers.forEach((function(t){et("start",t)}))}function K(t){if(!t.buttons&&!t.touches)return!1;t.stopPropagation();var e=I(t.calcPoint),n=function(t){var e=100,r=!1;return f.forEach((function(n,i){if(!j(i)){var o=C[i],s=Math.abs(o-t);(s<e||s<=e&&t>o||100===s&&100===e)&&(r=i,e=s)}})),r}(e);if(!1===n)return!1;r.events.snap||o(w,r.cssClasses.tap,r.animationDuration),at(n,e,!0,!0),st(),et("slide",n,!0),et("update",n,!0),et("change",n,!0),et("set",n,!0),r.events.snap&&J(t,{handleNumbers:[n]})}function Q(t){var e=I(t.calcPoint),r=y.getStep(e),n=y.fromStepping(r);Object.keys(k).forEach((function(t){"hover"===t.split(".")[0]&&k[t].forEach((function(t){t.call(g,n)}))}))}function Z(t,e){k[t]=k[t]||[],k[t].push(e),"update"===t.split(".")[0]&&f.forEach((function(t,e){et("update",e)}))}function tt(t){var e=t&&t.split(".")[0],r=e&&t.substring(e.length);Object.keys(k).forEach((function(t){var n=t.split(".")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||delete k[t]}))}function et(t,e,n){Object.keys(k).forEach((function(i){var o=i.split(".")[0];t===o&&k[i].forEach((function(t){t.call(g,E.map(r.format.to),e,E.slice(),n||!1,C.slice(),g)}))}))}function rt(t,e,n,i,o,a){var l;return f.length>1&&!r.events.unconstrained&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.margin,0),n=Math.max(n,l)),o&&e<f.length-1&&(l=y.getAbsoluteDistance(t[e+1],r.margin,1),n=Math.min(n,l))),f.length>1&&r.limit&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.limit,0),n=Math.min(n,l)),o&&e<f.length-1&&(l=y.getAbsoluteDistance(t[e+1],r.limit,1),n=Math.max(n,l))),r.padding&&(0===e&&(l=y.getAbsoluteDistance(0,r.padding[0],0),n=Math.max(n,l)),e===f.length-1&&(l=y.getAbsoluteDistance(100,r.padding[1],1),n=Math.min(n,l))),!((n=s(n=y.getStep(n)))===t[e]&&!a)&&n}function nt(t,e){var n=r.ort;return(n?e:t)+", "+(n?t:e)}function it(t,e,r,n){var i=r.slice(),o=[!t,t],s=[t,!t];n=n.slice(),t&&n.reverse(),n.length>1?n.forEach((function(t,r){var n=rt(i,t,i[t]+e,o[r],s[r],!1);!1===n?e=0:(e=n-i[t],i[t]=n)})):o=s=[!0];var a=!1;n.forEach((function(t,n){a=at(t,r[t]+e,o[n],s[n])||a})),a&&n.forEach((function(t){et("update",t),et("slide",t)}))}function ot(t,e){return r.dir?100-t-e:t}function st(){P.forEach((function(t){var e=C[t]>50?-1:1,r=3+(f.length+e*t);f[t].style.zIndex=r}))}function at(t,e,n,i){return!1!==(e=rt(C,t,e,n,i,!1))&&(function(t,e){C[t]=e,E[t]=y.fromStepping(e);var n="translate("+nt(10*(ot(e,0)-D)+"%","0")+")";f[t].style[r.transformRule]=n,lt(t),lt(t+1)}(t,e),!0)}function lt(t){if(d[t]){var e=0,n=100;0!==t&&(e=C[t-1]),t!==d.length-1&&(n=C[t]);var i=n-e,o="translate("+nt(ot(e,i)+"%","0")+")",s="scale("+nt(i/100,"1")+")";d[t].style[r.transformRule]=o+" "+s}}function ut(t,e){return null===t||!1===t||void 0===t?C[e]:("number"==typeof t&&(t=String(t)),t=r.format.from(t),!1===(t=y.toStepping(t))||isNaN(t)?C[e]:t)}function ct(t,e){var n=a(t),i=void 0===C[0];e=void 0===e||!!e,r.animate&&!i&&o(w,r.cssClasses.tap,r.animationDuration),P.forEach((function(t){at(t,ut(n[t],t),!0,!1)}));for(var s=1===P.length?0:1;s<P.length;++s)P.forEach((function(t){at(t,C[t],!0,!0)}));st(),P.forEach((function(t){et("update",t),null!==n[t]&&e&&et("set",t)}))}function pt(){var t=E.map(r.format.to);return 1===t.length?t[0]:t}function ft(t){var e=C[t],n=y.getNearbySteps(e),i=E[t],o=n.thisStep.step,s=null;if(r.snap)return[i-n.stepBefore.startValue||null,n.stepAfter.startValue-i||null];!1!==o&&i+o>n.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=y.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}return u(v=w,r.cssClasses.target),0===r.dir?u(v,r.cssClasses.ltr):u(v,r.cssClasses.rtl),0===r.ort?u(v,r.cssClasses.horizontal):u(v,r.cssClasses.vertical),u(v,"rtl"===getComputedStyle(v).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),l=M(v,r.cssClasses.base),function(t,e){var n=M(e,r.cssClasses.connects);f=[],(d=[]).push(L(n,t[0]));for(var i=0;i<r.handles;i++)f.push(O(e,i)),P[i]=i,d.push(L(n,t[i+1]))}(r.connect,l),(b=r.events).fixed||f.forEach((function(t,e){_(x.start,t.children[0],J,{handleNumbers:[e]})})),b.tap&&_(x.start,l,K,{}),b.hover&&_(x.move,l,Q,{hover:!0}),b.drag&&d.forEach((function(t,e){if(!1!==t&&0!==e&&e!==d.length-1){var n=f[e-1],i=f[e],o=[t];u(t,r.cssClasses.draggable),b.fixed&&(o.push(n.children[0]),o.push(i.children[0])),o.forEach((function(t){_(x.start,t,J,{handles:[n,i],handleNumbers:[e-1,e]})}))}})),ct(r.start),r.pips&&q(r.pips),r.tooltips&&R(),Z("update",(function(t,e,n,i,o){P.forEach((function(t){var e=f[t],i=rt(C,t,0,!0,!0,!0),s=rt(C,t,100,!0,!0,!0),a=o[t],l=r.ariaFormat.to(n[t]);i=y.fromStepping(i).toFixed(1),s=y.fromStepping(s).toFixed(1),a=y.fromStepping(a).toFixed(1),e.children[0].setAttribute("aria-valuemin",i),e.children[0].setAttribute("aria-valuemax",s),e.children[0].setAttribute("aria-valuenow",a),e.children[0].setAttribute("aria-valuetext",l)}))})),g={destroy:function(){for(var t in r.cssClasses)r.cssClasses.hasOwnProperty(t)&&c(w,r.cssClasses[t]);for(;w.firstChild;)w.removeChild(w.firstChild);delete w.noUiSlider},steps:function(){return P.map(ft)},on:Z,off:tt,get:pt,set:ct,setHandle:function(t,e,r){if(!((t=Number(t))>=0&&t<P.length))throw new Error("noUiSlider (14.6.0): invalid handle number, got: "+t);at(t,ut(e,t),!0,!0),et("update",t),r&&et("set",t)},reset:function(t){ct(r.start,t)},__moveHandles:function(t,e,r){it(t,e,C,r)},options:i,updateOptions:function(t,e){var n=pt(),o=["margin","limit","padding","range","animate","snap","step","format","pips","tooltips"];o.forEach((function(e){void 0!==t[e]&&(i[e]=t[e])}));var s=Y(i);o.forEach((function(e){void 0!==t[e]&&(r[e]=s[e])})),y=s.spectrum,r.margin=s.margin,r.limit=s.limit,r.padding=s.padding,r.pips?q(r.pips):B(),r.tooltips?R():F(),C=[],ct(t.start||n,e)},target:w,removePips:B,removeTooltips:F,getTooltips:function(){return m},getOrigins:function(){return f},pips:q}}return{__spectrum:x,version:t,cssClasses:w,create:function(t,e){if(!t||!t.nodeName)throw new Error("noUiSlider (14.6.0): create requires a single element, got: "+t);if(t.noUiSlider)throw new Error("noUiSlider (14.6.0): Slider was already initialized.");var r=I(t,Y(e),e);return t.noUiSlider=r,r}}},"function"==typeof define&&define.amd?define([],n):"object"==typeof r?e.exports=n():window.noUiSlider=n()},n”, ” 425: function _(e,l,i){Object.defineProperty(i,"__esModule",{value:!0}),i.bk_slider_value="bk-slider-value",i.bk_slider_title="bk-slider-title"},n”, ” 426: function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});t.default="\n.bk-root {\n /! nouislider - 14.6.0 - 6/27/2020 /\n / Functional styling;\n * These styles are required for noUiSlider to function.\n * You don’t need to change these rules to apply your design.\n /\n / Wrapper for all connect elements.\n /\n / Offset direction\n /\n / Give origins 0 height/width so they don’t interfere with clicking the\n * connect elements.\n /\n / Slider size and handle placement;\n /\n / Styling;\n * Giving the connect element a border radius causes issues with using transform: scale\n /\n / Handles and cursors;\n /\n / Handle stripes;\n /\n / Disabled state;\n /\n / Base;\n \n */\n / Values;\n \n */\n / Markings;\n \n */\n / Horizontal layout;\n \n */\n / Vertical layout;\n \n */\n}\n.bk-root .noUi-target,\n.bk-root .noUi-target * {\n -webkit-touch-callout: none;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n -webkit-user-select: none;\n -ms-touch-action: none;\n touch-action: none;\n -ms-user-select: none;\n -moz-user-select: none;\n user-select: none;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.bk-root .noUi-target {\n position: relative;\n}\n.bk-root .noUi-base,\n.bk-root .noUi-connects {\n width: 100%;\n height: 100%;\n position: relative;\n z-index: 1;\n}\n.bk-root .noUi-connects {\n overflow: hidden;\n z-index: 0;\n}\n.bk-root .noUi-connect,\n.bk-root .noUi-origin {\n will-change: transform;\n position: absolute;\n z-index: 1;\n top: 0;\n right: 0;\n -ms-transform-origin: 0 0;\n -webkit-transform-origin: 0 0;\n -webkit-transform-style: preserve-3d;\n transform-origin: 0 0;\n transform-style: flat;\n}\n.bk-root .noUi-connect {\n height: 100%;\n width: 100%;\n}\n.bk-root .noUi-origin {\n height: 10%;\n width: 10%;\n}\n.bk-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {\n left: 0;\n right: auto;\n}\n.bk-root .noUi-vertical .noUi-origin {\n width: 0;\n}\n.bk-root .noUi-horizontal .noUi-origin {\n height: 0;\n}\n.bk-root .noUi-handle {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n position: absolute;\n}\n.bk-root .noUi-touch-area {\n height: 100%;\n width: 100%;\n}\n.bk-root .noUi-state-tap .noUi-connect,\n.bk-root .noUi-state-tap .noUi-origin {\n -webkit-transition: transform 0.3s;\n transition: transform 0.3s;\n}\n.bk-root .noUi-state-drag * {\n cursor: inherit !important;\n}\n.bk-root .noUi-horizontal {\n height: 18px;\n}\n.bk-root .noUi-horizontal .noUi-handle {\n width: 34px;\n height: 28px;\n right: -17px;\n top: -6px;\n}\n.bk-root .noUi-vertical {\n width: 18px;\n}\n.bk-root .noUi-vertical .noUi-handle {\n width: 28px;\n height: 34px;\n right: -6px;\n top: -17px;\n}\n.bk-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {\n left: -17px;\n right: auto;\n}\n.bk-root .noUi-target {\n background: #FAFAFA;\n border-radius: 4px;\n border: 1px solid #D3D3D3;\n box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;\n}\n.bk-root .noUi-connects {\n border-radius: 3px;\n}\n.bk-root .noUi-connect {\n background: #3FB8AF;\n}\n.bk-root .noUi-draggable {\n cursor: ew-resize;\n}\n.bk-root .noUi-vertical .noUi-draggable {\n cursor: ns-resize;\n}\n.bk-root .noUi-handle {\n border: 1px solid #D9D9D9;\n border-radius: 3px;\n background: #FFF;\n cursor: default;\n box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;\n}\n.bk-root .noUi-active {\n box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;\n}\n.bk-root .noUi-handle:before,\n.bk-root .noUi-handle:after {\n content: \"\";\n display: block;\n position: absolute;\n height: 14px;\n width: 1px;\n background: #E8E7E6;\n left: 14px;\n top: 6px;\n}\n.bk-root .noUi-handle:after {\n left: 17px;\n}\n.bk-root .noUi-vertical .noUi-handle:before,\n.bk-root .noUi-vertical .noUi-handle:after {\n width: 14px;\n height: 1px;\n left: 6px;\n top: 14px;\n}\n.bk-root .noUi-vertical .noUi-handle:after {\n top: 17px;\n}\n.bk-root [disabled] .noUi-connect {\n background: #B8B8B8;\n}\n.bk-root [disabled].noUi-target,\n.bk-root [disabled].noUi-handle,\n.bk-root [disabled] .noUi-handle {\n cursor: not-allowed;\n}\n.bk-root .noUi-pips,\n.bk-root .noUi-pips * {\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.bk-root .noUi-pips {\n position: absolute;\n color: #999;\n}\n.bk-root .noUi-value {\n position: absolute;\n white-space: nowrap;\n text-align: center;\n}\n.bk-root .noUi-value-sub {\n color: #ccc;\n font-size: 10px;\n}\n.bk-root .noUi-marker {\n position: absolute;\n background: #CCC;\n}\n.bk-root .noUi-marker-sub {\n background: #AAA;\n}\n.bk-root .noUi-marker-large {\n background: #AAA;\n}\n.bk-root .noUi-pips-horizontal {\n padding: 10px 0;\n height: 80px;\n top: 100%;\n left: 0;\n width: 100%;\n}\n.bk-root .noUi-value-horizontal {\n -webkit-transform: translate(-50%, 50%);\n transform: translate(-50%, 50%);\n}\n.bk-root .noUi-rtl .noUi-value-horizontal {\n -webkit-transform: translate(50%, 50%);\n transform: translate(50%, 50%);\n}\n.bk-root .noUi-marker-horizontal.noUi-marker {\n margin-left: -1px;\n width: 2px;\n height: 5px;\n}\n.bk-root .noUi-marker-horizontal.noUi-marker-sub {\n height: 10px;\n}\n.bk-root .noUi-marker-horizontal.noUi-marker-large {\n height: 15px;\n}\n.bk-root .noUi-pips-vertical {\n padding: 0 10px;\n height: 100%;\n top: 0;\n left: 100%;\n}\n.bk-root .noUi-value-vertical {\n -webkit-transform: translate(0, -50%);\n transform: translate(0, -50%);\n padding-left: 25px;\n}\n.bk-root .noUi-rtl .noUi-value-vertical {\n -webkit-transform: translate(0, 50%);\n transform: translate(0, 50%);\n}\n.bk-root .noUi-marker-vertical.noUi-marker {\n width: 5px;\n height: 2px;\n margin-top: -1px;\n}\n.bk-root .noUi-marker-vertical.noUi-marker-sub {\n width: 10px;\n}\n.bk-root .noUi-marker-vertical.noUi-marker-large {\n width: 15px;\n}\n.bk-root .noUi-tooltip {\n display: block;\n position: absolute;\n border: 1px solid #D9D9D9;\n border-radius: 3px;\n background: #fff;\n color: #000;\n padding: 5px;\n text-align: center;\n white-space: nowrap;\n}\n.bk-root .noUi-horizontal .noUi-tooltip {\n -webkit-transform: translate(-50%, 0);\n transform: translate(-50%, 0);\n left: 50%;\n bottom: 120%;\n}\n.bk-root .noUi-vertical .noUi-tooltip {\n -webkit-transform: translate(0, -50%);\n transform: translate(0, -50%);\n top: 50%;\n right: 120%;\n}\n.bk-root .noUi-horizontal .noUi-origin > .noUi-tooltip {\n -webkit-transform: translate(50%, 0);\n transform: translate(50%, 0);\n left: auto;\n bottom: 10px;\n}\n.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip {\n -webkit-transform: translate(0, -18px);\n transform: translate(0, -18px);\n top: auto;\n right: 28px;\n}\n.bk-root .noUi-handle {\n cursor: grab;\n cursor: -webkit-grab;\n}\n.bk-root .noUi-handle.noUi-active {\n cursor: grabbing;\n cursor: -webkit-grabbing;\n}\n.bk-root .noUi-handle:after,\n.bk-root .noUi-handle:before {\n display: none;\n}\n.bk-root .noUi-tooltip {\n display: none;\n white-space: nowrap;\n}\n.bk-root .noUi-handle:hover .noUi-tooltip {\n display: block;\n}\n.bk-root .noUi-horizontal {\n width: 100%;\n height: 10px;\n}\n.bk-root .noUi-vertical {\n width: 10px;\n height: 100%;\n}\n.bk-root .noUi-horizontal .noUi-handle {\n width: 14px;\n height: 18px;\n right: -7px;\n top: -5px;\n}\n.bk-root .noUi-vertical .noUi-handle {\n width: 18px;\n height: 14px;\n right: -5px;\n top: -7px;\n}\n.bk-root .noUi-target.noUi-horizontal {\n margin: 5px 0px;\n}\n.bk-root .noUi-target.noUi-vertical {\n margin: 0px 5px;\n}\n"},n”, ” 427: function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default="\n.bk-root .bk-slider-title {\n white-space: nowrap;\n}\n.bk-root .bk-slider-value {\n font-weight: 600;\n}\n"},n”, ” 428: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1).__importDefault(e(186)),a=e(423);class d extends a.AbstractSliderView{}i.DateSliderView=d,d.__name__="DateSliderView";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour="tap",this.connected=[!0,!1]}static init_DateSlider(){this.prototype.default_view=d,this.override({format:"%d %b %Y"})}_formatter(e,t){return r.default(e,t)}}i.DateSlider=s,s.__name__="DateSlider",s.init_DateSlider()},n”, ” 429: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),_=e(430),n=r.__importStar(e(18));class s extends _.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.model.text}}i.DivView=s,s.__name__="DivView";class a extends _.Markup{constructor(e){super(e)}static init_Div(){this.prototype.default_view=s,this.define({render_as_text:[n.Boolean,!1]})}}i.Div=a,a.__name__="Div",a.init_Div()},n”, ” 430: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(217),n=e(72),l=i.__importStar(e(18)),r=e(472),_=e(431),c=i.__importDefault(e(432));class u extends r.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>{this.layout.invalidate_cache(),this.render(),this.root.compute_layout()})}styles(){return[…super.styles(),c.default]}_update_layout(){this.layout=new a.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:"inline-block"});this.markup_el=n.div({class:_.bk_clearfix,style:e}),this.el.appendChild(this.markup_el)}}s.MarkupView=u,u.__name__="MarkupView";class o extends r.Widget{constructor(e){super(e)}static init_Markup(){this.define({text:[l.String,""],style:[l.Any,{}]})}}s.Markup=o,o.__name__="Markup",o.init_Markup()},n”, ” 431: function _(e,c,f){Object.defineProperty(f,"__esModule",{value:!0}),f.bk_clearfix="bk-clearfix"},n”, ” 432: function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-clearfix:before,\n.bk-root .bk-clearfix:after {\n content: "";\n display: table;\n}\n.bk-root .bk-clearfix:after {\n clear: both;\n}\n’},n”, ” 433: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(404),o=e(313),_=e(72),d=n.__importStar(e(18)),l=e(8),r=e(173),u=e(281),c=e(282),h=n.__importDefault(e(284));class p extends s.AbstractButtonView{constructor(){super(…arguments),this._open=!1}styles(){return[…super.styles(),h.default]}render(){super.render();const e=_.div({class:[c.bk_caret,r.bk_down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(u.bk_dropdown_toggle),t.addEventListener("click",()=>this._toggle_menu()),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map((e,t)=>{if(null==e)return _.div({class:c.bk_divider});{const i=l.isString(e)?e:e[0],n=_.div({},i);return n.addEventListener("click",()=>this._item_click(t)),n}});this.menu=_.div({class:[c.bk_menu,r.bk_below]},t),this.el.appendChild(this.menu),_.undisplay(this.menu)}_show_menu(){if(!this._open){this._open=!0,_.display(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener("click",e),this._hide_menu())};document.addEventListener("click",e)}}_hide_menu(){this._open&&(this._open=!1,_.undisplay(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new o.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=l.isString(t)?t:t[1];l.isString(i)?this.model.trigger_event(new o.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__="DropdownView";class m extends s.AbstractButton{constructor(e){super(e)}static init_Dropdown(){this.prototype.default_view=p,this.define({split:[d.Boolean,!1],menu:[d.Array,[]]}),this.override({label:"Dropdown"})}get is_split(){return this.split}}i.Dropdown=m,m.__name__="Dropdown",m.init_Dropdown()},n”, ” 434: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e(1).__importStar(e(18)),s=e(472);class n extends s.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.width.change,()=>this.render())}render(){null==this.dialogEl&&(this.dialogEl=document.createElement("input"),this.dialogEl.type="file",this.dialogEl.multiple=this.model.multiple,this.dialogEl.onchange=()=>{const{files:e}=this.dialogEl;null!=e&&this.load_files(e)},this.el.appendChild(this.dialogEl)),null!=this.model.accept&&""!=this.model.accept&&(this.dialogEl.accept=this.model.accept),this.dialogEl.style.width="{this.model.width}px",this.dialogEl.disabled=this.model.disabled}async load_files(e){const t=[],i=[],l=[];let s;for(s=0;s<e.length;s++){i.push(e[s].name);const n=await this.readfile(e[s]),[,o,,a]=n.split(/[:;,]/,4);t.push(a),l.push(o)}this.model.multiple?(this.model.filename=i,this.model.mime_type=l,this.model.value=t):(this.model.filename=i[0],this.model.mime_type=l[0],this.model.value=t[0])}readfile(e){return new Promise((t,i)=>{const l=new FileReader;l.onload=()=>{var s;const{result:n}=l;null!=n?t(n):i(null!==(s=l.error)&&void 0!==s?s:new Error(`unable to read ‘${e.name}’`))},l.readAsDataURL(e)})}}i.FileInputView=n,n.__name__="FileInputView";class o extends s.Widget{constructor(e){super(e)}static init_FileInput(){this.prototype.default_view=n,this.define({value:[l.Any,""],mime_type:[l.Any,""],filename:[l.Any,""],accept:[l.String,""],multiple:[l.Boolean,!1]})}}i.FileInput=o,o.__name__="FileInput",o.init_FileInput()},n”, ” 435: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(72),l=e(8),o=i.__importStar(e(18)),c=e(410),r=e(412);class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!0,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll("option"))t.selected=e.has(t.value);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector("select:focus"),t=[];for(const e of this.el.querySelectorAll("option"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.MultiSelectView=h,h.__name__="MultiSelectView";class d extends c.InputWidget{constructor(e){super(e)}static init_MultiSelect(){this.prototype.default_view=h,this.define({value:[o.Array,[]],options:[o.Array,[]],size:[o.Number,4]})}}s.MultiSelect=d,d.__name__="MultiSelect",d.init_MultiSelect()},n”, ” 436: function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});const t=a(430),p=a(72);class s extends t.MarkupView{render(){super.render();const a=p.p({style:{margin:0}},this.model.text);this.markup_el.appendChild(a)}}r.ParagraphView=s,s.__name__="ParagraphView";class i extends t.Markup{constructor(a){super(a)}static init_Paragraph(){this.prototype.default_view=s}}r.Paragraph=i,i.__name__="Paragraph",i.init_Paragraph()},n”, ” 437: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(409);class r extends n.TextInputView{render(){super.render(),this.input_el.type="password"}}s.PasswordInputView=r,r.__name__="PasswordInputView";class p extends n.TextInput{constructor(e){super(e)}static init_PasswordInput(){this.prototype.default_view=r}}s.PasswordInput=p,p.__name__="PasswordInput",p.init_PasswordInput()},n”, ” 438: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e(1),s=l.__importDefault(e(439)),o=e(72),n=e(8),h=e(217),a=l.__importStar(e(18)),c=e(412),u=l.__importDefault(e(440)),d=e(410);class _ extends d.InputWidgetView{constructor(){super(…arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,()=>this.set_disabled());const{value:e,max_items:t,option_limit:i,delete_button:l,placeholder:s,options:o,name:n,title:h}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h],()=>this.render())}styles(){return[…super.styles(),u.default]}_update_layout(){this.layout=new h.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.select_el=o.select({multiple:!0,class:c.bk_input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.select_el);const e=new Set(this.model.value),t=this.model.options.map(t=>{let i,l;return n.isString(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}}),i=this.model.solid?"solid":"light",l="choices__item "+i,h="choices__button "+i,a={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:h}};null!=this.model.placeholder&&(a.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(a.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(a.renderChoiceLimit=this.model.option_limit),this.choice_el=new s.default(this.select_el,a);const u=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=u()&&this.root.invalidate_layout(),this._last_height=u(),this.select_el.addEventListener("change",()=>this.change_input())}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector("select:focus"),t=[];for(const e of this.el.querySelectorAll("option"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}i.MultiChoiceView=_,_.__name__="MultiChoiceView";class r extends d.InputWidget{constructor(e){super(e)}static init_MultiChoice(){this.prototype.default_view=_,this.define({value:[a.Array,[]],options:[a.Array,[]],max_items:[a.Number,null],delete_button:[a.Boolean,!0],placeholder:[a.String,null],option_limit:[a.Number,null],solid:[a.Boolean,!0]})}}i.MultiChoice=r,r.__name__="MultiChoice",r.init_MultiChoice()},n”, ” 439: function _(e,t,i){n”, ” /! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme /n”, ” var n,s;n=window,s=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/public/assets/scripts/",i(i.s=4)}([function(e,t,i){"use strict";var n=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===s}(e)}(e)},s="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return"function"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){"use strict";(function(e,n){var s,r=i(3);s="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){n”, ” /!n”, ” * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)n”, ” n”, ” * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)n”, ” * All Rights Reserved. Apache Software License 2.0n”, ” *n”, ” * http://www.apache.org/licenses/LICENSE-2.0n”, ” */n”, ” e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var r=i(2),o=i(8),a=i(0),c=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.caseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_,y=i.id,E=void 0===y?null:y,I=i.keys,S=void 0===I?[]:I,w=i.shouldSort,O=void 0===w||w,C=i.getFn,A=void 0===C?o:C,L=i.sortFn,T=void 0===L?function(e,t){return e.score-t.score}:L,x=i.tokenize,k=void 0!==x&&x,P=i.matchAllTokens,D=void 0!==P&&P,M=i.includeMatches,N=void 0!==M&&M,F=i.includeScore,j=void 0!==F&&F,K=i.verbose,R=void 0!==K&&K;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b,id:E,keys:S,includeMatches:N,includeScore:j,shouldSort:O,getFn:A,sortFn:T,verbose:R,tokenize:k,matchAllTokens:D},this.setCollection(t)}var t,i;return t=e,(i=[{key:"setCollection",value:function(e){return this.list=e,e}},{key:"search",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log(’———\nSearch pattern: "’.concat(e,’"’));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&"number"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:"_prepareSearchers",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n<s;n+=1)t.push(new r(i[n],this.options));return{tokenSearchers:t,fullSearcher:new r(e,this.options)}}},{key:"_search",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if("string"==typeof i[0]){for(var r=0,o=i.length;r<o;r+=1)this._analyze({key:"",value:i[r],record:r,index:r},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t});return{weights:null,results:s}}for(var a={},c=0,l=i.length;c<l;c+=1)for(var h=i[c],u=0,d=this.options.keys.length;u<d;u+=1){var p=this.options.keys[u];if("string"!=typeof p){if(a[p.name]={weight:1-p.weight||1},p.weight<=0||p.weight>1)throw new Error("Key weight has to be > 0 and <= 1");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:"_analyze",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if("string"==typeof r){this._log("\nKey: ".concat(""===i?"-":i));var y=d.search(r);if(this._log(‘Full text: "’.concat(r,’", score: ‘).concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S<h.length;S+=1){var w=h[S];this._log(’\nPattern: "’.concat(w.pattern,’"’));for(var O=!1,C=0;C<E.length;C+=1){var A=E[C],L=w.search(A),T={};L.isMatch?(T[A]=L.score,g=!0,O=!0,I.push(L.score)):(T[A]=1,this.options.matchAllTokens||I.push(1)),this._log(‘Token: "’.concat(A,’", score: ‘).concat(T[A]))}O&&(b+=1)}_=I[0];for(var x=I.length,k=1;k<x;k+=1)_+=I[k];_/=x,this._log("Token score average:",_)}var P=y.score;_>-1&&(P=(P+_)/2),this._log("Score average:",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log("\nCheck Matches: ".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N<F;N+=1)this._analyze({key:i,arrayIndex:N,value:r[N],record:o,index:c},{resultMap:m,results:v,tokenSearchers:h,fullSearcher:d})}}},{key:"_computeScore",value:function(e,t){this._log("\n\nComputing score:\n");for(var i=0,n=t.length;i<n;i+=1){for(var s=t[i].output,r=s.length,o=1,a=1,c=0;c<r;c+=1){var l=e?e[s[c].key].weight:1,h=(1===l?s[c].score:s[c].score||.001)*l;1!==l?a=Math.min(a,h):(s[c].nScore=h,o*=h)}t[i].score=1===a?o:a,this._log(t[i])}}},{key:"_sort",value:function(e){this._log("\n\nSorting…."),e.sort(this.options.sortFn)}},{key:"_format",value:function(e){var t=[];if(this.options.verbose){var i=[];this._log("\n\nOutput:\n\n",JSON.stringify(e,(function(e,t){if("object"===n(t)&&null!==t){if(-1!==i.indexOf(t))return;i.push(t)}return t}))),i=null}var s=[];this.options.includeMatches&&s.push((function(e,t){var i=e.output;t.matches=[];for(var n=0,s=i.length;n<s;n+=1){var r=i[n];if(0!==r.matchedIndices.length){var o={indices:r.matchedIndices,value:r.value};r.key&&(o.key=r.key),r.hasOwnProperty("arrayIndex")&&r.arrayIndex>-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;r<o;r+=1){var a=e[r];if(this.options.id&&(a.item=this.options.getFn(a.item,this.options.id)[0]),s.length){for(var c={item:a.item},l=0,h=s.length;l<h;l+=1)s[l](a,c);t.push(c)}else t.push(a.item)}return t}},{key:"_log",value:function(){var e;this.options.verbose&&(e=console).log.apply(e,arguments)}}])&&s(t.prototype,i),e}();e.exports=c},function(e,t,i){function n(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var s=i(3),r=i(4),o=i(7),a=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.isCaseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b},this.pattern=this.options.isCaseSensitive?t:t.toLowerCase(),this.pattern.length<=u&&(this.patternAlphabet=o(this.pattern))}var t,i;return t=e,(i=[{key:"search",value:function(e){if(this.options.isCaseSensitive||(e=e.toLowerCase()),this.pattern===e)return{isMatch:!0,score:0,matchedIndices:[[0,e.length-1]]};var t=this.options,i=t.maxPatternLength,n=t.tokenSeparator;if(this.pattern.length>i)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),e}();e.exports=a},function(e,t){var i=/[\-\[\]\/\{\}\(\)\\+\?\.\\\^\$\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,"\\$&").replace(n,"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c<l;c+=1){var h=r[c];a.push([e.indexOf(h),h.length-1])}return{score:o?.5:1,isMatch:o,matchedIndices:a}}},function(e,t,i){var n=i(5),s=i(6);e.exports=function(e,t,i,r){for(var o=r.location,a=void 0===o?0:o,c=r.distance,l=void 0===c?100:c,h=r.threshold,u=void 0===h?.6:h,d=r.findAllMatches,p=void 0!==d&&d,m=r.minMatchCharLength,f=void 0===m?1:m,v=a,g=e.length,_=u,b=e.indexOf(t,v),y=t.length,E=[],I=0;I<g;I+=1)E[I]=0;if(-1!==b){var S=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});if(_=Math.min(S,_),-1!==(b=e.lastIndexOf(t,v+y))){var w=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});_=Math.min(w,_)}}b=-1;for(var O=[],C=1,A=y+g,L=1<<y-1,T=0;T<y;T+=1){for(var x=0,k=A;x<k;)n(t,{errors:T,currentLocation:v+k,expectedLocation:v,distance:l})<=_?x=k:A=k,k=Math.floor((A-x)/2+x);A=k;var P=Math.max(1,v-k+1),D=p?g:Math.min(v+k,g)+y,M=Array(D+2);M[D+1]=(1<<T)-1;for(var N=D;N>=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r<o;r+=1){var a=e[r];a&&-1===n?n=r:a||-1===n||((s=r-1)-n+1>=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n<i;n+=1)t[e.charAt(n)]=0;for(var s=0;s<i;s+=1)t[e.charAt(s)]|=1<<i-s-1;return t}},function(e,t,i){var n=i(0);e.exports=function(e,t){return function e(t,i,s){if(i){var r=i.indexOf("."),o=i,a=null;-1!==r&&(o=i.slice(0,r),a=i.slice(r+1));var c=t[o];if(null!=c)if(a||"string"!=typeof c&&"number"!=typeof c)if(n(c))for(var l=0,h=c.length;l<h;l+=1)e(c[l],a,s);else a&&e(c,a,s);else s.push(c.toString())}else s.push(t);return s}(e,t,[])}}])},function(e,t,i){"use strict";function n(e){var t,i=e.Symbol;return"function"==typeof i?i.observable?t=i.observable:(t=i("observable"),i.observable=t):t="@@observable",t}i.d(t,"a",(function(){return n}))},function(e,t,i){e.exports=i(7)},function(e,t){var i;i=function(){return this}();try{i=i||new Function("return this")()}catch(e){"object"==typeof window&&(i=window)}e.exports=i},function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},function(e,t,i){"use strict";i.r(t);var n=i(2),s=i.n(n),r=i(0),o=i.n(r),a=i(1),c=function(){return Math.random().toString(36).substring(7).split("").join(".")},l={INIT:"@@redux/INIT"+c(),REPLACE:"@@redux/REPLACE"+c(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+c()}};function h(e){if("object"!=typeof e||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function u(e,t,i){var n;if("function"==typeof t&&"function"==typeof i||"function"==typeof i&&"function"==typeof arguments[3])throw new Error("It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function.");if("function"==typeof t&&void 0===i&&(i=t,t=void 0),void 0!==i){if("function"!=typeof i)throw new Error("Expected the enhancer to be a function.");return i(u)(e,t)}if("function"!=typeof e)throw new Error("Expected the reducer to be a function.");var s=e,r=t,o=[],c=o,d=!1;function p(){c===o&&(c=o.slice())}function m(){if(d)throw new Error("You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");return r}function f(e){if("function"!=typeof e)throw new Error("Expected the listener to be a function.");if(d)throw new Error("You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");var t=!0;return p(),c.push(e),function(){if(t){if(d)throw new Error("You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");t=!1,p();var i=c.indexOf(e);c.splice(i,1)}}}function v(e){if(!h(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(void 0===e.type)throw new Error(‘Actions may not have an undefined "type" property. Have you misspelled a constant?’);if(d)throw new Error("Reducers may not dispatch actions.");try{d=!0,r=s(r,e)}finally{d=!1}for(var t=o=c,i=0;i<t.length;i++)(0,t[i])();return e}function g(e){if("function"!=typeof e)throw new Error("Expected the nextReducer to be a function.");s=e,v({type:l.REPLACE})}function _(){var e,t=f;return(e={subscribe:function(e){if("object"!=typeof e||null===e)throw new TypeError("Expected the observer to be an object.");function i(){e.next&&e.next(m())}return i(),{unsubscribe:t(i)}}})[a.a]=function(){return this},e}return v({type:l.INIT}),(n={dispatch:v,subscribe:f,getState:m,replaceReducer:g})[a.a]=_,n}function d(e,t){var i=t&&t.type;return"Given "+(i&&’action "’+String(i)+’"’||"an action")+’, reducer "’+e+’" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.’}var p,m=[],f=[],v=[],g={loading:!1},_=function(e,t){switch(void 0===e&&(e=g),t.type){case"SET_IS_LOADING":return{loading:t.isLoading};default:return e}},b=function(e){return Array.from({length:e},(function(){return(e=0,t=36,Math.floor(Math.random()*(t-e)+e)).toString(36);var e,t})).join("")},y=function(e){return Object.prototype.toString.call(e).slice(8,-1)},E=function(e,t){return null!=t&&y(t)===e},I=function(e){return"string"!=typeof e?e:e.replace(/&/g,"&").replace(/>/g,"&rt;").replace(/</g,"<").replace(/"/g,""")},S=(p=document.createElement("div"),function(e){var t=e.trim();p.innerHTML=t;for(var i=p.children[0];p.firstChild;)p.removeChild(p.firstChild);return i}),w=function(e,t){return e.score-t.score},O=function(e){return JSON.parse(JSON.stringify(e))},C=function(e){for(var t=Object.keys(e),i={},n=0;n<t.length;n++){var s=t[n];"function"==typeof e[s]&&(i[s]=e[s])}var r,o=Object.keys(i);try{!function(e){Object.keys(e).forEach((function(t){var i=e[t];if(void 0===i(void 0,{type:l.INIT}))throw new Error(‘Reducer "’+t+"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don’t want to set a value for this reducer, you can use null instead of undefined.");if(void 0===i(void 0,{type:l.PROBE_UNKNOWN_ACTION()}))throw new Error(‘Reducer "’+t+"\" returned undefined when probed with a random type. Don’t try to handle "+l.INIT+’ or other actions in "redux/" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.’)}))}(i)}catch(e){r=e}return function(e,t){if(void 0===e&&(e={}),r)throw r;for(var n=!1,s={},a=0;a<o.length;a++){var c=o[a],l=i[c],h=e[c],u=l(h,t);if(void 0===u){var p=d(c,t);throw new Error(p)}s[c]=u,n=n||u!==h}return n?s:e}}({items:function(e,t){switch(void 0===e&&(e=m),t.type){case"ADD_ITEM":return[].concat(e,[{id:t.id,choiceId:t.choiceId,groupId:t.groupId,value:t.value,label:t.label,active:!0,highlighted:!1,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]).map((function(e){var t=e;return t.highlighted=!1,t}));case"REMOVE_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.active=!1),i}));case"HIGHLIGHT_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.highlighted=t.highlighted),i}));default:return e}},groups:function(e,t){switch(void 0===e&&(e=f),t.type){case"ADD_GROUP":return[].concat(e,[{id:t.id,value:t.value,active:t.active,disabled:t.disabled}]);case"CLEAR_CHOICES":return[];default:return e}},choices:function(e,t){switch(void 0===e&&(e=v),t.type){case"ADD_CHOICE":return[].concat(e,[{id:t.id,elementId:t.elementId,groupId:t.groupId,value:t.value,label:t.label||t.value,disabled:t.disabled||!1,selected:!1,active:!0,score:9999,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]);case"ADD_ITEM":return t.activateOptions?e.map((function(e){var i=e;return i.active=t.active,i})):t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case"REMOVE_ITEM":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case"FILTER_CHOICES":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case"ACTIVATE_CHOICES":return e.map((function(e){var i=e;return i.active=t.active,i}));case"CLEAR_CHOICES":return v;default:return e}},general:_}),A=function(e,t){var i=e;if("CLEAR_ALL"===t.type)i=void 0;else if("RESET_TO"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var T=function(){function e(){this._store=u(A,window.__REDUX_DEVTOOLS_EXTENSION__&&window.__REDUX_DEVTOOLS_EXTENSION__())}var t,i,n,s=e.prototype;return s.subscribe=function(e){this._store.subscribe(e)},s.dispatch=function(e){this._store.dispatch(e)},s.isLoading=function(){return this.state.general.loading},s.getChoiceById=function(e){return this.activeChoices.find((function(t){return t.id===parseInt(e,10)}))},s.getGroupById=function(e){return this.groups.find((function(t){return t.id===e}))},t=e,(i=[{key:"state",get:function(){return this._store.getState()}},{key:"items",get:function(){return this.state.items}},{key:"activeItems",get:function(){return this.items.filter((function(e){return!0===e.active}))}},{key:"highlightedActiveItems",get:function(){return this.items.filter((function(e){return e.active&&e.highlighted}))}},{key:"choices",get:function(){return this.state.choices}},{key:"activeChoices",get:function(){return this.choices.filter((function(e){return!0===e.active}))}},{key:"selectableChoices",get:function(){return this.choices.filter((function(e){return!0!==e.disabled}))}},{key:"searchableChoices",get:function(){return this.selectableChoices.filter((function(e){return!0!==e.placeholder}))}},{key:"placeholderChoice",get:function(){return[].concat(this.choices).reverse().find((function(e){return!0===e.placeholder}))}},{key:"groups",get:function(){return this.state.groups}},{key:"activeGroups",get:function(){var e=this.groups,t=this.choices;return e.filter((function(e){var i=!0===e.active&&!1===e.disabled,n=t.some((function(e){return!0===e.active&&!1===e.disabled}));return i&&n}),[])}}])&&L(t.prototype,i),n&&L(t,n),e}();function x(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var k=function(){function e(e){var t=e.element,i=e.type,n=e.classNames;this.element=t,this.classNames=n,this.type=i,this.isActive=!1}var t,i,n,s=e.prototype;return s.getChild=function(e){return this.element.querySelector(e)},s.show=function(){return this.element.classList.add(this.classNames.activeState),this.element.setAttribute("aria-expanded","true"),this.isActive=!0,this},s.hide=function(){return this.element.classList.remove(this.classNames.activeState),this.element.setAttribute("aria-expanded","false"),this.isActive=!1,this},t=e,(i=[{key:"distanceFromTopWindow",get:function(){return this.element.getBoundingClientRect().bottom}}])&&x(t.prototype,i),n&&x(t,n),e}(),P={items:[],choices:[],silent:!1,renderChoiceLimit:-1,maxItemCount:-1,addItems:!0,addItemFilter:null,removeItems:!0,removeItemButton:!1,editItems:!1,duplicateItemsAllowed:!0,delimiter:",",paste:!0,searchEnabled:!0,searchChoices:!0,searchFloor:1,searchResultLimit:4,searchFields:["label","value"],position:"auto",resetScrollPosition:!0,shouldSort:!0,shouldSortItems:!1,sorter:function(e,t){var i=e.value,n=e.label,s=void 0===n?i:n,r=t.value,o=t.label,a=void 0===o?r:o;return s.localeCompare(a,[],{sensitivity:"base",ignorePunctuation:!0,numeric:!0})},placeholder:!0,placeholderValue:null,searchPlaceholderValue:null,prependValue:null,appendValue:null,renderSelectedChoices:"auto",loadingText:"Loading…",noResultsText:"No results found",noChoicesText:"No choices to choose from",itemSelectText:"Press to select",uniqueItemText:"Only unique values can be added",customAddItemText:"Only values matching specific conditions can be added",addItemText:function(e){return’Press Enter to add <b>"’+I(e)+’"</b>’},maxItemText:function(e){return"Only "+e+" values can be added"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:"choices",containerInner:"choices__inner",input:"choices__input",inputCloned:"choices__input–cloned",list:"choices__list",listItems:"choices__list–multiple",listSingle:"choices__list–single",listDropdown:"choices__list–dropdown",item:"choices__item",itemSelectable:"choices__item–selectable",itemDisabled:"choices__item–disabled",itemChoice:"choices__item–choice",placeholder:"choices__placeholder",group:"choices__group",groupHeading:"choices__heading",button:"choices__button",activeState:"is-active",focusState:"is-focused",openState:"is-open",disabledState:"is-disabled",highlightedState:"is-highlighted",selectedState:"is-selected",flippedState:"is-flipped",loadingState:"is-loading",noResults:"has-no-results",noChoices:"has-no-choices"}},D="showDropdown",M="hideDropdown",N="change",F="choice",j="search",K="addItem",R="removeItem",H="highlightItem",B="highlightChoice",V="ADD_CHOICE",G="FILTER_CHOICES",q="ACTIVATE_CHOICES",U="CLEAR_CHOICES",z="ADD_GROUP",W="ADD_ITEM",X="REMOVE_ITEM",$="HIGHLIGHT_ITEM",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener("focus",this._onFocus),this.element.addEventListener("blur",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener("focus",this._onFocus),this.element.removeEventListener("blur",this._onBlur)},t.shouldFlip=function(e){if("number"!=typeof e)return!1;var t=!1;return"auto"===this.position?t=!window.matchMedia("(min-height: "+(e+1)+"px)").matches:"top"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},t.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute("aria-expanded","true"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute("aria-expanded","false"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute("aria-disabled"),"select-one"===this.type&&this.element.setAttribute("tabindex","0"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute("aria-disabled","true"),"select-one"===this.type&&this.element.setAttribute("tabindex","-1"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement("div")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute("aria-busy","true"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute("aria-busy"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function oe(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var ae=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.preventPaste;this.element=t,this.type=i,this.classNames=n,this.preventPaste=s,this.isFocussed=this.element===document.activeElement,this.isDisabled=t.disabled,this._onPaste=this._onPaste.bind(this),this._onInput=this._onInput.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t,i,n,s=e.prototype;return s.addEventListeners=function(){this.element.addEventListener("paste",this._onPaste),this.element.addEventListener("input",this._onInput,{passive:!0}),this.element.addEventListener("focus",this._onFocus,{passive:!0}),this.element.addEventListener("blur",this._onBlur,{passive:!0})},s.removeEventListeners=function(){this.element.removeEventListener("input",this._onInput,{passive:!0}),this.element.removeEventListener("paste",this._onPaste),this.element.removeEventListener("focus",this._onFocus,{passive:!0}),this.element.removeEventListener("blur",this._onBlur,{passive:!0})},s.enable=function(){this.element.removeAttribute("disabled"),this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.isDisabled=!0},s.focus=function(){this.isFocussed||this.element.focus()},s.blur=function(){this.isFocussed&&this.element.blur()},s.clear=function(e){return void 0===e&&(e=!0),this.element.value&&(this.element.value=""),e&&this.setWidth(),this},s.setWidth=function(){var e=this.element,t=e.style,i=e.value,n=e.placeholder;t.minWidth=n.length+1+"ch",t.width=i.length+1+"ch"},s.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},s.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},s._onInput=function(){"select-one"!==this.type&&this.setWidth()},s._onPaste=function(e){this.preventPaste&&e.preventDefault()},s._onFocus=function(){this.isFocussed=!0},s._onBlur=function(){this.isFocussed=!1},t=e,(i=[{key:"placeholder",set:function(e){this.element.placeholder=e}},{key:"value",get:function(){return I(this.element.value)},set:function(e){this.element.value=e}}])&&oe(t.prototype,i),n&&oe(t,n),e}(),ce=function(){function e(e){var t=e.element;this.element=t,this.scrollPos=this.element.scrollTop,this.height=this.element.offsetHeight}var t=e.prototype;return t.clear=function(){this.element.innerHTML=""},t.append=function(e){this.element.appendChild(e)},t.getChild=function(e){return this.element.querySelector(e)},t.hasChildren=function(){return this.element.hasChildNodes()},t.scrollToTop=function(){this.element.scrollTop=0},t.scrollToChildElement=function(e,t){var i=this;if(e){var n=this.element.offsetHeight,s=this.element.scrollTop+n,r=e.offsetHeight,o=e.offsetTop+r,a=t>0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),n<e&&(s=!0)):(this._scrollUp(n,4,e),n>e&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function le(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var he=function(){function e(e){var t=e.element,i=e.classNames;if(this.element=t,this.classNames=i,!(t instanceof HTMLInputElement||t instanceof HTMLSelectElement))throw new TypeError("Invalid element passed");this.isDisabled=!1}var t,i,n,s=e.prototype;return s.conceal=function(){this.element.classList.add(this.classNames.input),this.element.hidden=!0,this.element.tabIndex=-1;var e=this.element.getAttribute("style");e&&this.element.setAttribute("data-choice-orig-style",e),this.element.setAttribute("data-choice","active")},s.reveal=function(){this.element.classList.remove(this.classNames.input),this.element.hidden=!1,this.element.removeAttribute("tabindex");var e=this.element.getAttribute("data-choice-orig-style");e?(this.element.removeAttribute("data-choice-orig-style"),this.element.setAttribute("style",e)):this.element.removeAttribute("style"),this.element.removeAttribute("data-choice"),this.element.value=this.element.value},s.enable=function(){this.element.removeAttribute("disabled"),this.element.disabled=!1,this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.element.disabled=!0,this.isDisabled=!0},s.triggerEvent=function(e,t){!function(e,t,i){void 0===i&&(i=null);var n=new CustomEvent(t,{detail:i,bubbles:!0,cancelable:!0});e.dispatchEvent(n)}(this.element,e,t)},t=e,(i=[{key:"isActive",get:function(){return"active"===this.element.dataset.choice}},{key:"dir",get:function(){return this.element.dir}},{key:"value",get:function(){return this.element.value},set:function(e){this.element.value=e}}])&&le(t.prototype,i),n&&le(t,n),e}();function ue(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var de=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.delimiter;return(i=e.call(this,{element:n,classNames:s})||this).delimiter=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,n=o,(s=[{key:"value",get:function(){return this.element.value},set:function(e){var t=e.map((function(e){return e.value})).join(this.delimiter);this.element.setAttribute("value",t),this.element.value=t}}])&&ue(n.prototype,s),r&&ue(n,r),o}(he);function pe(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var me=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.template;return(i=e.call(this,{element:n,classNames:s})||this).template=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,o.prototype.appendDocFragment=function(e){this.element.innerHTML="",this.element.appendChild(e)},n=o,(s=[{key:"placeholderOption",get:function(){return this.element.querySelector(‘option[value=""]’)||this.element.querySelector("option[placeholder]")}},{key:"optionGroups",get:function(){return Array.from(this.element.getElementsByTagName("OPTGROUP"))}},{key:"options",get:function(){return Array.from(this.element.options)},set:function(e){var t=this,i=document.createDocumentFragment();e.forEach((function(e){return n=e,s=t.template(n),void i.appendChild(s);var n,s})),this.appendDocFragment(i)}}])&&pe(n.prototype,s),r&&pe(n,r),o}(he),fe={containerOuter:function(e,t,i,n,s,r){var o=e.containerOuter,a=Object.assign(document.createElement("div"),{className:o});return a.dataset.type=r,t&&(a.dir=t),n&&(a.tabIndex=0),i&&(a.setAttribute("role",s?"combobox":"listbox"),s&&a.setAttribute("aria-autocomplete","list")),a.setAttribute("aria-haspopup","true"),a.setAttribute("aria-expanded","false"),a},containerInner:function(e){var t=e.containerInner;return Object.assign(document.createElement("div"),{className:t})},itemList:function(e,t){var i=e.list,n=e.listSingle,s=e.listItems;return Object.assign(document.createElement("div"),{className:i+" "+(t?n:s)})},placeholder:function(e,t){var i=e.placeholder;return Object.assign(document.createElement("div"),{className:i,innerHTML:t})},item:function(e,t,i){var n=e.item,s=e.button,r=e.highlightedState,o=e.itemSelectable,a=e.placeholder,c=t.id,l=t.value,h=t.label,u=t.customProperties,d=t.active,p=t.disabled,m=t.highlighted,f=t.placeholder,v=Object.assign(document.createElement("div"),{className:n,innerHTML:h});if(Object.assign(v.dataset,{item:"",id:c,value:l,customProperties:u}),d&&v.setAttribute("aria-selected","true"),p&&v.setAttribute("aria-disabled","true"),f&&v.classList.add(a),v.classList.add(m?r:o),i){p&&v.classList.remove(o),v.dataset.deletable="";var g=Object.assign(document.createElement("button"),{type:"button",className:s,innerHTML:"Remove item"});g.setAttribute("aria-label","Remove item: ‘"+l+"’"),g.dataset.button="",v.appendChild(g)}return v},choiceList:function(e,t){var i=e.list,n=Object.assign(document.createElement("div"),{className:i});return t||n.setAttribute("aria-multiselectable","true"),n.setAttribute("role","listbox"),n},choiceGroup:function(e,t){var i=e.group,n=e.groupHeading,s=e.itemDisabled,r=t.id,o=t.value,a=t.disabled,c=Object.assign(document.createElement("div"),{className:i+" "+(a?s:"")});return c.setAttribute("role","group"),Object.assign(c.dataset,{group:"",id:r,value:o}),a&&c.setAttribute("aria-disabled","true"),c.appendChild(Object.assign(document.createElement("div"),{className:n,innerHTML:o})),c},choice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.itemSelectable,o=e.selectedState,a=e.itemDisabled,c=e.placeholder,l=t.id,h=t.value,u=t.label,d=t.groupId,p=t.elementId,m=t.disabled,f=t.selected,v=t.placeholder,g=Object.assign(document.createElement("div"),{id:p,innerHTML:u,className:n+" "+s});return f&&g.classList.add(o),v&&g.classList.add(c),g.setAttribute("role",d>0?"treeitem":"option"),Object.assign(g.dataset,{choice:"",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled="",g.setAttribute("aria-disabled","true")):(g.classList.add(r),g.dataset.choiceSelectable=""),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement("input"),{type:"text",className:i+" "+n,autocomplete:"off",autocapitalize:"off",spellcheck:!1});return s.setAttribute("role","textbox"),s.setAttribute("aria-autocomplete","list"),s.setAttribute("aria-label",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement("div");return n.classList.add(t,i),n.setAttribute("aria-expanded","false"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i="");var a=[n,s];return"no-choices"===i?a.push(o):"no-results"===i&&a.push(r),Object.assign(document.createElement("div"),{innerHTML:t,className:a.join(" ")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},ve=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ge=function(e,t){return{type:$,id:e,highlighted:t}},_e=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},be=function(e){return{type:"SET_IS_LOADING",isLoading:e}};function ye(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var Ee="-ms-scroll-limit"in document.documentElement.style&&"-ms-ime-align"in document.documentElement.style,Ie={},Se=function(){var e,t,i;function n(e,t){var i=this;void 0===e&&(e="[data-choice]"),void 0===t&&(t={}),this.config=o.a.all([P,n.defaults.options,t],{arrayMerge:function(e,t){return[].concat(t)}});var s,r,a,c,l=(s=this.config,r=P,a=Object.keys(s).sort(),c=Object.keys(r).sort(),a.filter((function(e){return c.indexOf(e)<0})));l.length&&console.warn("Unknown config option(s) passed",l.join(", "));var h="string"==typeof e?document.querySelector(e):e;if(!(h instanceof HTMLInputElement||h instanceof HTMLSelectElement))throw TypeError("Expected one of the following types text|select-one|select-multiple");if(this._isTextElement="text"===h.type,this._isSelectOneElement="select-one"===h.type,this._isSelectMultipleElement="select-multiple"===h.type,this._isSelectElement=this._isSelectOneElement||this._isSelectMultipleElement,this.config.searchEnabled=this._isSelectMultipleElement||this.config.searchEnabled,["auto","always"].includes(this.config.renderSelectedChoices)||(this.config.renderSelectedChoices="auto"),t.addItemFilter&&"function"!=typeof t.addItemFilter){var u=t.addItemFilter instanceof RegExp?t.addItemFilter:new RegExp(t.addItemFilter);this.config.addItemFilter=u.test.bind(u)}if(this._isTextElement?this.passedElement=new de({element:h,classNames:this.config.classNames,delimiter:this.config.delimiter}):this.passedElement=new me({element:h,classNames:this.config.classNames,template:function(e){return i._templates.option(e)}}),this.initialised=!1,this._store=new T,this._initialState={},this._currentState={},this._prevState={},this._currentValue="",this._canSearch=this.config.searchEnabled,this._isScrollingOnIe=!1,this._highlightPosition=0,this._wasTap=!0,this._placeholderValue=this._generatePlaceholderValue(),this._baseId=function(e,t){var i=e.id||e.name&&e.name+"-"+b(2)||b(4);return i=t+"-"+(i=i.replace(/(:|\.|\[|\]|,)/g,""))}(this.passedElement.element,"choices-"),this._direction=this.passedElement.dir,!this._direction){var d=window.getComputedStyle(this.passedElement.element).direction;d!==window.getComputedStyle(document.documentElement).direction&&(this._direction=d)}if(this._idNames={itemChoice:"item-choice"},this._presetGroups=this.passedElement.optionGroups,this._presetOptions=this.passedElement.options,this._presetChoices=this.config.choices,this._presetItems=this.config.items,this.passedElement.value&&(this._presetItems=this._presetItems.concat(this.passedElement.value.split(this.config.delimiter))),this.passedElement.options&&this.passedElement.options.forEach((function(e){i._presetChoices.push({value:e.value,label:e.innerHTML,selected:e.selected,disabled:e.disabled||e.parentNode.disabled,placeholder:""===e.value||e.hasAttribute("placeholder"),customProperties:e.getAttribute("data-custom-properties")})})),this._render=this._render.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this),this._onKeyUp=this._onKeyUp.bind(this),this._onKeyDown=this._onKeyDown.bind(this),this._onClick=this._onClick.bind(this),this._onTouchMove=this._onTouchMove.bind(this),this._onTouchEnd=this._onTouchEnd.bind(this),this._onMouseDown=this._onMouseDown.bind(this),this._onMouseOver=this._onMouseOver.bind(this),this._onFormReset=this._onFormReset.bind(this),this._onAKey=this._onAKey.bind(this),this._onEnterKey=this._onEnterKey.bind(this),this._onEscapeKey=this._onEscapeKey.bind(this),this._onDirectionKey=this._onDirectionKey.bind(this),this._onDeleteKey=this._onDeleteKey.bind(this),this.passedElement.isActive)return this.config.silent||console.warn("Trying to initialise Choices on element already initialised"),void(this.initialised=!0);this.init()}e=n,i=[{key:"defaults",get:function(){return Object.preventExtensions({get options(){return Ie},get templates(){return fe}})}}],(t=null)&&ye(e.prototype,t),i&&ye(e,i);var r=n.prototype;return r.init=function(){if(!this.initialised){this._createTemplates(),this._createElements(),this._createStructure(),this._initialState=O(this._store.state),this._store.subscribe(this._render),this._render(),this._addEventListeners(),(!this.config.addItems||this.passedElement.element.hasAttribute("disabled"))&&this.disable(),this.initialised=!0;var e=this.config.callbackOnInit;e&&"function"==typeof e&&e.call(this)}},r.destroy=function(){this.initialised&&(this._removeEventListeners(),this.passedElement.reveal(),this.containerOuter.unwrap(this.passedElement.element),this.clearStore(),this._isSelectElement&&(this.passedElement.options=this._presetOptions),this._templates=null,this.initialised=!1)},r.enable=function(){return this.passedElement.isDisabled&&this.passedElement.enable(),this.containerOuter.isDisabled&&(this._addEventListeners(),this.input.enable(),this.containerOuter.enable()),this},r.disable=function(){return this.passedElement.isDisabled||this.passedElement.disable(),this.containerOuter.isDisabled||(this._removeEventListeners(),this.input.disable(),this.containerOuter.disable()),this},r.highlightItem=function(e,t){if(void 0===t&&(t=!0),!e)return this;var i=e.id,n=e.groupId,s=void 0===n?-1:n,r=e.value,o=void 0===r?"":r,a=e.label,c=void 0===a?"":a,l=s>=0?this._store.getGroupById(s):null;return this._store.dispatch(ge(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?"":s,o=e.label,a=void 0===o?"":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ge(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t="value"),void 0===i&&(i="label"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError("setChoices was called on a non-initialized instance of Choices");if(!this._isSelectElement)throw new TypeError("setChoices can’t be used with INPUT based Choices");if("string"!=typeof t||!t)throw new TypeError("value parameter must be a name of ‘value’ field in passed objects");if(n&&this.clearChoices(),"function"==typeof e){var r=e(this);if("function"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(".setChoices first argument function must return either array of choices or Promise, got: "+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(".setChoices must be called either with array of choices with a function resulting into Promise of array of choices");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:"CLEAR_ALL"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(ve(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate("notice",a.notice))}else{var c,l;this._isSearching?(l="function"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate("notice",l,"no-results")):(l="function"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate("notice",l,"no-choices")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&("always"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate("choiceGroup",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if("auto"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate("choice",e,n.config.itemSelectText);t.appendChild(i)}},h=e;"auto"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v<m;v+=1)f[v]&&l(f[v]);return t},r._createItemsFragment=function(e,t){var i=this;void 0===t&&(t=document.createDocumentFragment());var n=this.config,s=n.shouldSortItems,r=n.sorter,o=n.removeItemButton;return s&&!this._isSelectOneElement&&e.sort(r),this._isTextElement?this.passedElement.value=e:this.passedElement.options=e,e.forEach((function(e){var n=i._getTemplate("item",e,o);t.appendChild(n)})),t},r._triggerChange=function(e){null!=e&&this.passedElement.triggerEvent(N,{value:e})},r._selectPlaceholderChoice=function(){var e=this._store.placeholderChoice;e&&(this._addItem({value:e.value,label:e.label,choiceId:e.id,groupId:e.groupId,placeholder:e.placeholder}),this._triggerChange(e.value))},r._handleButtonAction=function(e,t){if(e&&t&&this.config.removeItems&&this.config.removeItemButton){var i=t.parentNode.getAttribute("data-id"),n=e.find((function(e){return e.id===parseInt(i,10)}));this._removeItem(n),this._triggerChange(n.value),this._isSelectOneElement&&this._selectPlaceholderChoice()}},r._handleItemAction=function(e,t,i){var n=this;if(void 0===i&&(i=!1),e&&t&&this.config.removeItems&&!this._isSelectOneElement){var s=t.getAttribute("data-id");e.forEach((function(e){e.id!==parseInt(s,10)||e.highlighted?!i&&e.highlighted&&n.unhighlightItem(e):n.highlightItem(e)})),this.input.focus()}},r._handleChoiceAction=function(e,t){if(e&&t){var i=t.dataset.id,n=this._store.getChoiceById(i);if(n){var s=e[0]&&e[0].keyCode?e[0].keyCode:null,r=this.dropdown.isActive;n.keyCode=s,this.passedElement.triggerEvent(F,{choice:n}),n.selected||n.disabled||this._canAddItem(e,n.value).response&&(this._addItem({value:n.value,label:n.label,choiceId:n.id,groupId:n.groupId,customProperties:n.customProperties,placeholder:n.placeholder,keyCode:n.keyCode}),this._triggerChange(n.value)),this.clearInput(),r&&this._isSelectOneElement&&(this.hideDropdown(!0),this.containerOuter.focus())}}},r._handleBackspace=function(e){if(this.config.removeItems&&e){var t=e[e.length-1],i=e.some((function(e){return e.highlighted}));this.config.editItems&&!i&&t?(this.input.value=t.value,this.input.setWidth(),this._removeItem(t),this._triggerChange(t.value)):(i||this.highlightItem(t,!1),this.removeHighlightedItems(!0))}},r._startLoading=function(){this._store.dispatch(be(!0))},r._stopLoading=function(){this._store.dispatch(be(!1))},r._handleLoadingState=function(e){void 0===e&&(e=!0);var t=this.itemList.getChild("."+this.config.classNames.placeholder);e?(this.disable(),this.containerOuter.addLoadingState(),this._isSelectOneElement?t?t.innerHTML=this.config.loadingText:(t=this._getTemplate("placeholder",this.config.loadingText),this.itemList.append(t)):this.input.placeholder=this.config.loadingText):(this.enable(),this.containerOuter.removeLoadingState(),this._isSelectOneElement?t.innerHTML=this._placeholderValue||"":this.input.placeholder=this._placeholderValue||"")},r._handleSearch=function(e){if(e&&this.input.isFocussed){var t=this._store.choices,i=this.config,n=i.searchFloor,s=i.searchChoices,r=t.some((function(e){return!e.active}));if(e&&e.length>=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(ve(!0)))}},r._canAddItem=function(e,t){var i=!0,n="function"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i="value"),e.some((function(e){return"string"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n="function"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n="function"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&"function"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n="function"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t="string"==typeof e?e.trim():e,i="string"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+" ")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.addEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.addEventListener("mousedown",this._onMouseDown,!0),e.addEventListener("click",this._onClick,{passive:!0}),e.addEventListener("touchmove",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener("mouseover",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener("focus",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener("blur",this._onBlur,{passive:!0})),this.input.element.addEventListener("keyup",this._onKeyUp,{passive:!0}),this.input.element.addEventListener("focus",this._onFocus,{passive:!0}),this.input.element.addEventListener("blur",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener("reset",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.removeEventListener("mousedown",this._onMouseDown,!0),e.removeEventListener("click",this._onClick),e.removeEventListener("touchmove",this._onTouchMove),this.dropdown.element.removeEventListener("mouseover",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener("focus",this._onFocus),this.containerOuter.element.removeEventListener("blur",this._onBlur)),this.input.element.removeEventListener("keyup",this._onKeyUp),this.input.element.removeEventListener("focus",this._onFocus),this.input.element.removeEventListener("blur",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener("reset",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate("notice",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(ve(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute("data-button");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild("."+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1;if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector("[data-choice-selectable]:last-of-type"):this.dropdown.element.querySelector("[data-choice-selectable]");else{var p=this.dropdown.element.querySelector("."+this.config.classNames.highlightedState);u=p?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&"string"==typeof t){for(var n=(i>0?"next":"previous")+"ElementSibling",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(p,"[data-choice-selectable]",d):this.dropdown.element.querySelector("[data-choice-selectable]")}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(Ee&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n="ltr"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX<i.offsetLeft;this._isScrollingOnIe=n}if(t!==this.input.element){var s=t.closest("[data-button],[data-item],[data-choice]");if(s instanceof HTMLElement){var r=e.shiftKey,o=this._store.activeItems,a=s.dataset;"button"in a?this._handleButtonAction(o,s):"item"in a?this._handleItemAction(o,s,r):"choice"in a&&this._handleChoiceAction(o,s)}e.preventDefault()}}},r._onMouseOver=function(e){var t=e.target;t instanceof HTMLElement&&"choice"in t.dataset&&this._highlightChoice(t)},r._onClick=function(e){var t=e.target;this.containerOuter.element.contains(t)?this.dropdown.isActive||this.containerOuter.isDisabled?this._isSelectOneElement&&t!==this.input.element&&!this.dropdown.element.contains(t)&&this.hideDropdown():this._isTextElement?document.activeElement!==this.input.element&&this.input.focus():(this.showDropdown(),this.containerOuter.focus()):(this._store.highlightedActiveItems.length>0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t["select-one"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t["select-multiple"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n["select-one"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n["select-multiple"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:"RESET_TO",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll("[data-choice-selectable]"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll("."+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute("aria-selected","false")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute("aria-selected","true"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m="string"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E("Object",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+"-"+this._idNames.itemChoice+"-"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?"value":s,o=e.labelKey,a=void 0===o?"label":o,c=E("Object",i)?i.choices:Array.from(i.getElementsByTagName("OPTION")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(_e({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E("Object",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(_e({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;r<n;r++)s[r-1]=arguments[r];return(t=this._templates[e]).call.apply(t,[this,i].concat(s))},r._createTemplates=function(){var e=this.config.callbackOnCreateTemplates,t={};e&&"function"==typeof e&&(t=e.call(this,S)),this._templates=o()(fe,t)},r._createElements=function(){this.containerOuter=new re({element:this._getTemplate("containerOuter",this._direction,this._isSelectElement,this._isSelectOneElement,this.config.searchEnabled,this.passedElement.element.type),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.containerInner=new re({element:this._getTemplate("containerInner"),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.input=new ae({element:this._getTemplate("input",this._placeholderValue),classNames:this.config.classNames,type:this.passedElement.element.type,preventPaste:!this.config.paste}),this.choiceList=new ce({element:this._getTemplate("choiceList",this._isSelectOneElement)}),this.itemList=new ce({element:this._getTemplate("itemList",this._isSelectOneElement)}),this.dropdown=new k({element:this._getTemplate("dropdown"),classNames:this.config.classNames,type:this.passedElement.element.type})},r._createStructure=function(){this.passedElement.conceal(),this.containerInner.wrap(this.passedElement.element),this.containerOuter.wrap(this.containerInner.element),this._isSelectOneElement?this.input.placeholder=this.config.searchPlaceholderValue||"":this._placeholderValue&&(this.input.placeholder=this._placeholderValue,this.input.setWidth()),this.containerOuter.element.appendChild(this.containerInner.element),this.containerOuter.element.appendChild(this.dropdown.element),this.containerInner.element.appendChild(this.itemList.element),this._isTextElement||this.dropdown.element.appendChild(this.choiceList.element),this._isSelectOneElement?this.config.searchEnabled&&this.dropdown.element.insertBefore(this.input.element,this.dropdown.element.firstChild):this.containerInner.element.appendChild(this.input.element),this._isSelectElement&&(this._highlightPosition=0,this._isSearching=!1,this._startLoading(),this._presetGroups.length?this._addPredefinedGroups(this._presetGroups):this._addPredefinedChoices(this._presetChoices),this._stopLoading()),this._isTextElement&&this._addPredefinedItems(this._presetItems)},r._addPredefinedGroups=function(e){var t=this,i=this.passedElement.placeholderOption;i&&"SELECT"===i.parentNode.tagName&&this._addChoice({value:i.value,label:i.innerHTML,isSelected:i.selected,isDisabled:i.disabled,placeholder:!0}),e.forEach((function(e){return t._addGroup({group:e,id:e.id||null})}))},r._addPredefinedChoices=function(e){var t=this;this.config.shouldSort&&e.sort(this.config.sorter);var i=e.some((function(e){return e.selected})),n=e.findIndex((function(e){return void 0===e.disabled||!e.disabled}));e.forEach((function(e,s){var r=e.value,o=e.label,a=e.customProperties,c=e.placeholder;if(t._isSelectElement)if(e.choices)t._addGroup({group:e,id:e.id||null});else{var l=!(!t._isSelectOneElement||i||s!==n)||e.selected,h=e.disabled;t._addChoice({value:r,label:o,isSelected:l,isDisabled:h,customProperties:a,placeholder:c})}else t._addChoice({value:r,label:o,isSelected:e.selected,isDisabled:e.disabled,customProperties:a,placeholder:c})}))},r._addPredefinedItems=function(e){var t=this;e.forEach((function(e){"object"==typeof e&&e.value&&t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}),"string"==typeof e&&t._addItem({value:e})}))},r._setChoiceOrItem=function(e){var t=this;({object:function(){e.value&&(t._isTextElement?t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}):t._addChoice({value:e.value,label:e.label,isSelected:!0,isDisabled:!1,customProperties:e.customProperties,placeholder:e.placeholder}))},string:function(){t._isTextElement?t._addItem({value:e}):t._addChoice({value:e,label:e,isSelected:!0,isDisabled:!1})}})[y(e).toLowerCase()]()},r._findAndSelectChoiceByValue=function(e){var t=this,i=this._store.choices.find((function(i){return t.config.valueComparer(i.value,e)}));i&&!i.selected&&this._addItem({value:i.value,label:i.label,choiceId:i.id,groupId:i.groupId,customProperties:i.customProperties,placeholder:i.placeholder,keyCode:i.keyCode})},r._generatePlaceholderValue=function(){if(this._isSelectElement){var e=this.passedElement.placeholderOption;return!!e&&e.text}var t=this.config,i=t.placeholder,n=t.placeholderValue,s=this.passedElement.element.dataset;if(i){if(n)return n;if(s.placeholder)return s.placeholder}return!1},n}();t.default=Se}]).default},"object"==typeof i&&"object"==typeof t?t.exports=s():"function"==typeof define&&define.amd?define([],s):"object"==typeof i?i.Choices=s():n.Choices=s()},n”, ” 440: function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default="\n.bk-root {\n /*===============================\n= Choices =\n===============================/\n /===== End of Choices ======/\n}\n.bk-root .choices {\n position: relative;\n margin-bottom: 24px;\n font-size: 16px;\n}\n.bk-root .choices:focus {\n outline: none;\n}\n.bk-root .choices:last-child {\n margin-bottom: 0;\n}\n.bk-root .choices.is-disabled .choices__inner,\n.bk-root .choices.is-disabled .choices__input {\n background-color: #eaeaea;\n cursor: not-allowed;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.bk-root .choices.is-disabled .choices__item {\n cursor: not-allowed;\n}\n.bk-root .choices [hidden] {\n display: none !important;\n}\n.bk-root .choices[data-type*=’select-one’] {\n cursor: pointer;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__inner {\n padding-bottom: 7.5px;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__input {\n display: block;\n width: 100%;\n padding: 10px;\n border-bottom: 1px solid #dddddd;\n background-color: #ffffff;\n margin: 0;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n padding: 0;\n background-size: 8px;\n position: absolute;\n top: 50%;\n right: 0;\n margin-top: -10px;\n margin-right: 25px;\n height: 20px;\n width: 20px;\n border-radius: 10em;\n opacity: 0.5;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button:hover,\n.bk-root .choices[data-type*=’select-one’] .choices__button:focus {\n opacity: 1;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button:focus {\n box-shadow: 0px 0px 0px 2px #00bcd4;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__item[data-value=’’] .choices__button {\n display: none;\n}\n.bk-root .choices[data-type*=’select-one’]:after {\n content: ‘’;\n height: 0;\n width: 0;\n border-style: solid;\n border-color: #333333 transparent transparent transparent;\n border-width: 5px;\n position: absolute;\n right: 11.5px;\n top: 50%;\n margin-top: -2.5px;\n pointer-events: none;\n}\n.bk-root .choices[data-type*=’select-one’].is-open:after {\n border-color: transparent transparent #333333 transparent;\n margin-top: -7.5px;\n}\n.bk-root .choices[data-type*=’select-one’][dir=’rtl’]:after {\n left: 11.5px;\n right: auto;\n}\n.bk-root .choices[data-type*=’select-one’][dir=’rtl’] .choices__button {\n right: auto;\n left: 0;\n margin-left: 25px;\n margin-right: 0;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__inner,\n.bk-root .choices[data-type*=’text’] .choices__inner {\n cursor: text;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__button,\n.bk-root .choices[data-type*=’text’] .choices__button {\n position: relative;\n display: inline-block;\n margin-top: 0;\n margin-right: -4px;\n margin-bottom: 0;\n margin-left: 8px;\n padding-left: 16px;\n border-left: 1px solid #008fa1;\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n background-size: 8px;\n width: 8px;\n line-height: 1;\n opacity: 0.75;\n border-radius: 0;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__button:hover,\n.bk-root .choices[data-type*=’select-multiple’] .choices__button:focus,\n.bk-root .choices[data-type*=’text’] .choices__button:hover,\n.bk-root .choices[data-type*=’text’] .choices__button:focus {\n opacity: 1;\n}\n.bk-root .choices__inner {\n display: inline-block;\n vertical-align: top;\n width: 100%;\n background-color: #f9f9f9;\n padding: 7.5px 7.5px 3.75px;\n border: 1px solid #dddddd;\n border-radius: 2.5px;\n font-size: 14px;\n min-height: 44px;\n overflow: hidden;\n}\n.bk-root .is-focused .choices__inner,\n.bk-root .is-open .choices__inner {\n border-color: #b7b7b7;\n}\n.bk-root .is-open .choices__inner {\n border-radius: 2.5px 2.5px 0 0;\n}\n.bk-root .is-flipped.is-open .choices__inner {\n border-radius: 0 0 2.5px 2.5px;\n}\n.bk-root .choices__list {\n margin: 0;\n padding-left: 0;\n list-style: none;\n}\n.bk-root .choices__list–single {\n display: inline-block;\n padding: 4px 16px 4px 4px;\n width: 100%;\n}\n.bk-root [dir=’rtl’] .choices__list–single {\n padding-right: 4px;\n padding-left: 16px;\n}\n.bk-root .choices__list–single .choices__item {\n width: 100%;\n}\n.bk-root .choices__list–multiple {\n display: inline;\n}\n.bk-root .choices__list–multiple .choices__item {\n display: inline-block;\n vertical-align: middle;\n border-radius: 20px;\n padding: 4px 10px;\n font-size: 12px;\n font-weight: 500;\n margin-right: 3.75px;\n margin-bottom: 3.75px;\n background-color: #00bcd4;\n border: 1px solid #00a5bb;\n color: #ffffff;\n word-break: break-all;\n box-sizing: border-box;\n}\n.bk-root .choices__list–multiple .choices__item[data-deletable] {\n padding-right: 5px;\n}\n.bk-root [dir=’rtl’] .choices__list–multiple .choices__item {\n margin-right: 0;\n margin-left: 3.75px;\n}\n.bk-root .choices__list–multiple .choices__item.is-highlighted {\n background-color: #00a5bb;\n border: 1px solid #008fa1;\n}\n.bk-root .is-disabled .choices__list–multiple .choices__item {\n background-color: #aaaaaa;\n border: 1px solid #919191;\n}\n.bk-root .choices__list–dropdown {\n visibility: hidden;\n z-index: 1;\n position: absolute;\n width: 100%;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n top: 100%;\n margin-top: -1px;\n border-bottom-left-radius: 2.5px;\n border-bottom-right-radius: 2.5px;\n overflow: hidden;\n word-break: break-all;\n will-change: visibility;\n}\n.bk-root .choices__list–dropdown.is-active {\n visibility: visible;\n}\n.bk-root .is-open .choices__list–dropdown {\n border-color: #b7b7b7;\n}\n.bk-root .is-flipped .choices__list–dropdown {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: -1px;\n border-radius: 0.25rem 0.25rem 0 0;\n}\n.bk-root .choices__list–dropdown .choices__list {\n position: relative;\n max-height: 300px;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n will-change: scroll-position;\n}\n.bk-root .choices__list–dropdown .choices__item {\n position: relative;\n padding: 10px;\n font-size: 14px;\n}\n.bk-root [dir=’rtl’] .choices__list–dropdown .choices__item {\n text-align: right;\n}\n@media (min-width: 640px) {\n .bk-root .choices__list–dropdown .choices__item–selectable {\n padding-right: 100px;\n }\n .bk-root .choices__list–dropdown .choices__item–selectable:after {\n content: attr(data-select-text);\n font-size: 12px;\n opacity: 0;\n position: absolute;\n right: 10px;\n top: 50%;\n transform: translateY(-50%);\n }\n .bk-root [dir=’rtl’] .choices__list–dropdown .choices__item–selectable {\n text-align: right;\n padding-left: 100px;\n padding-right: 10px;\n }\n .bk-root [dir=’rtl’] .choices__list–dropdown .choices__item–selectable:after {\n right: auto;\n left: 10px;\n }\n}\n.bk-root .choices__list–dropdown .choices__item–selectable.is-highlighted {\n background-color: #f2f2f2;\n}\n.bk-root .choices__list–dropdown .choices__item–selectable.is-highlighted:after {\n opacity: 0.5;\n}\n.bk-root .choices__item {\n cursor: default;\n}\n.bk-root .choices__item–selectable {\n cursor: pointer;\n}\n.bk-root .choices__item–disabled {\n cursor: not-allowed;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n opacity: 0.5;\n}\n.bk-root .choices__heading {\n font-weight: 600;\n font-size: 12px;\n padding: 10px;\n border-bottom: 1px solid #f7f7f7;\n color: gray;\n}\n.bk-root .choices__button {\n text-indent: -9999px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n border: 0;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center;\n cursor: pointer;\n}\n.bk-root .choices__button:focus {\n outline: none;\n}\n.bk-root .choices__input {\n display: inline-block;\n vertical-align: baseline;\n background-color: #f9f9f9;\n font-size: 14px;\n margin-bottom: 5px;\n border: 0;\n border-radius: 0;\n max-width: 100%;\n padding: 4px 0 4px 2px;\n}\n.bk-root .choices__input:focus {\n outline: 0;\n}\n.bk-root [dir=’rtl’] .choices__input {\n padding-right: 2px;\n padding-left: 0;\n}\n.bk-root .choices__placeholder {\n opacity: 0.5;\n}\n.bk-root .choices {\n width: 100%;\n}\n.bk-root .choices {\n box-sizing: border-box;\n}\n.bk-root .choices ,\n.bk-root .choices *:before,\n.bk-root .choices *:after {\n box-sizing: inherit;\n}\n.bk-root .choices__inner .choices__item.light {\n background-color: rgba(0, 126, 255, 0.08);\n border-radius: 5px;\n border: 1px solid rgba(0, 126, 255, 0.24);\n color: #007eff;\n}\n.bk-root .choices__inner .choices__item.solid {\n background-color: #1f77b4;\n border: none;\n border-radius: 5px;\n color: white;\n}\n.bk-root .choices__inner .choices__item.solid .is-highlighted {\n background-color: #1f77b4;\n border: none;\n}\n.bk-root .choices__input {\n background-color: transparent;\n}\n.bk-root .choices__inner {\n background: transparent;\n border: 1px solid darkgray;\n border-radius: 5px;\n min-height: unset;\n}\n.bk-root .choices__list {\n white-space: initial;\n}\n.bk-root .choices[data-type*=select-multiple] .choices__button.light {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDA3ZWZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n}\n.bk-root .choices[data-type*=select-multiple] .choices__button.solid {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjZmZmZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n border-left: 1px solid white;\n opacity: 1;\n}\n"},n”, ” 441: function _(e,t,l){Object.defineProperty(l,"__esModule",{value:!0});const i=e(1),n=i.__importStar(e(188)),s=e(410),u=e(72),h=e(11),o=i.__importStar(e(18)),a=e(442),r=e(412),d=/^[-+]?\d*$/,p=/^[-+]?\d\.?\d*(?:(?:\d|\d.)[eE][-+]?)*\d*$/;class _ extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value}),this.connect(this.model.properties.low.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(t<=l,"Invalid bounds, low must be inferior to high"),null!=e&&null!=t&&(this.model.value=Math.max(e,t))}),this.connect(this.model.properties.high.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(l>=t,"Invalid bounds, high must be superior to low"),null!=e&&null!=l&&(this.model.value=Math.min(e,l))}),this.connect(this.model.properties.high.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):""}_set_input_filter(e){this.input_el.addEventListener("input",()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}})}render(){super.render(),this.input_el=u.input({type:"text",class:r.bk_input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener("change",()=>this.change_input()),this.input_el.addEventListener("focusout",()=>this.input_el.value=this.format_value),this.group_el.appendChild(this.input_el)}set_input_filter(){"int"==this.model.mode?this._set_input_filter(e=>d.test(e)):"float"==this.model.mode&&this._set_input_filter(e=>p.test(e))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=""!==this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=_,_.__name__="NumericInputView";class m extends s.InputWidget{constructor(e){super(e)}static init_NumericInput(){this.prototype.default_view=_,this.define({value:[o.Number,null],placeholder:[o.String,""],mode:[o.Any,"int"],format:[o.Any],low:[o.Number,null],high:[o.Number,null]})}_formatter(e,t){return a.isString(t)?n.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):""+e}}l.NumericInput=m,m.__name__="NumericInput",m.init_NumericInput()},n”, ” 442: function _(t,_,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(1);e.__exportStar(t(13),r),e.__exportStar(t(9),r),e.__exportStar(t(29),r),e.__exportStar(t(443),r),e.__exportStar(t(8),r),e.__exportStar(t(25),r)},n”, ” 443: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class n{constructor(e){this.seed=e%2147483647,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%2147483647,this.seed}float(){return(this.integer()-1)/2147483646}floats(e){const t=new Array(e);for(let s=0;s<e;s++)t[s]=this.float();return t}}s.Random=n,n.__name__="Random",s.random=new n(Date.now())},n”, ” 444: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e(430),i=e(72);class n extends s.MarkupView{render(){super.render();const e=i.pre({style:{overflow:"auto"}},this.model.text);this.markup_el.appendChild(e)}}r.PreTextView=n,n.__name__="PreTextView";class _ extends s.Markup{constructor(e){super(e)}static init_PreText(){this.prototype.default_view=n}}r.PreText=_,_.__name__="PreText",_.init_PreText()},n”, ” 445: function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),a=t(415),n=t(72),u=i.__importStar(t(18)),s=t(173);class _ extends a.ButtonGroupView{change_active(t){this.model.active!==t&&(this.model.active=t)}_update_active(){const{active:t}=this.model;this._buttons.forEach((o,e)=>{n.classes(o).toggle(s.bk_active,t===e)})}}e.RadioButtonGroupView=_,_.__name__="RadioButtonGroupView";class c extends a.ButtonGroup{constructor(t){super(t)}static init_RadioButtonGroup(){this.prototype.default_view=_,this.define({active:[u.Any,null]})}}e.RadioButtonGroup=c,c.__name__="RadioButtonGroup",c.init_RadioButtonGroup()},n”, ” 446: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),a=e(72),s=e(29),o=n.__importStar(e(18)),d=e(417),l=e(173),p=e(412);class r extends d.InputGroupView{render(){super.render();const e=a.div({class:[p.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const i=s.uniqueId(),{active:t,labels:n}=this.model;this._inputs=[];for(let s=0;s<n.length;s++){const o=a.input({type:"radio",name:i,value:""+s});o.addEventListener("change",()=>this.change_active(s)),this._inputs.push(o),this.model.disabled&&(o.disabled=!0),s==t&&(o.checked=!0);const d=a.label({},o,a.span({},n[s]));e.appendChild(d)}}change_active(e){this.model.active=e}}t.RadioGroupView=r,r.__name__="RadioGroupView";class u extends d.InputGroup{constructor(e){super(e)}static init_RadioGroup(){this.prototype.default_view=r,this.define({active:[o.Number],labels:[o.Array,[]],inline:[o.Boolean,!1]})}}t.RadioGroup=u,u.__name__="RadioGroup",u.init_RadioGroup()},n”, ” 447: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1).__importStar(e(188)),a=e(423),n=e(8);class o extends a.AbstractRangeSliderView{}r.RangeSliderView=o,o.__name__="RangeSliderView";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour="drag",this.connected=[!1,!0,!1]}static init_RangeSlider(){this.prototype.default_view=o,this.override({format:"0[.]00"})}_formatter(e,t){return n.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.RangeSlider=s,s.__name__="RangeSlider",s.init_RangeSlider()},n”, ” 448: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(72),l=e(8),o=e(13),p=n.__importStar(e(18)),u=e(410),a=e(412);class _ extends u.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,()=>{this._update_value()}),this.on_change(t,()=>{s.empty(this.input_el),s.append(this.input_el,…this.options_el())})}options_el(){function e(e){return e.map(e=>{let t,i;return l.isString(e)?t=i=e:[t,i]=e,s.option({value:t},i)})}const{options:t}=this.model;return l.isArray(t)?e(t):o.entries(t).map(([t,i])=>s.optgroup({label:t},e(i)))}render(){super.render(),this.input_el=s.select({class:a.bk_input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;null!=e&&0!=e.length&&(this.input_el.value=this.model.value)}}i.SelectView=_,_.__name__="SelectView";class h extends u.InputWidget{constructor(e){super(e)}static init_Select(){this.prototype.default_view=_,this.define({value:[p.String,""],options:[p.Any,[]]})}}i.Select=h,h.__name__="Select",h.init_Select()},n”, ” 449: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1).__importStar(e(188)),o=e(423),s=e(8);class _ extends o.AbstractSliderView{}r.SliderView=_,_.__name__="SliderView";class a extends o.AbstractSlider{constructor(e){super(e),this.behaviour="tap",this.connected=[!0,!1]}static init_Slider(){this.prototype.default_view=_,this.override({format:"0[.]00"})}_formatter(e,t){return s.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.Slider=a,a.__name__="Slider",a.init_Slider()},n”, ” 450: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(441),l=n.__importStar(e(18)),r=e(72),{min:o,max:_,floor:a,abs:h}=Math;function u(e){return a(e)!==e?e.toFixed(16).replace(/0+$/,"").split(".")[1].length:0}class p extends s.NumericInputView{buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.buttons())r.toggle_attribute(e,"disabled",this.model.disabled)})}render(){super.render(),this.wrapper_el=r.div({class:"bk-spin-wrapper"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=r.button({class:"bk-spin-btn bk-spin-btn-up"}),this.btn_down_el=r.button({class:"bk-spin-btn bk-spin-btn-down"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())r.toggle_attribute(e,"disabled",this.model.disabled),e.addEventListener("mousedown",e=>this._btn_mouse_down(e)),e.addEventListener("mouseup",()=>this._btn_mouse_up()),e.addEventListener("mouseleave",()=>this._btn_mouse_leave());this.input_el.addEventListener("keydown",e=>this._input_key_down(e)),this.input_el.addEventListener("keyup",()=>this.model.value_throttled=this.model.value),this.input_el.addEventListener("wheel",e=>this._input_mouse_wheel(e)),this.input_el.addEventListener("wheel",function(e,t,i=!1){let n;return function(…s){const l=this,r=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),r&&e.apply(l,s)}}(()=>{this.model.value_throttled=this.model.value},this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model;return _(…[e,t,i].map(h).reduce((e,t)=>(null!=t&&e.push(t),e),[]).map(u))}_start_incrementation(e){clearInterval(this._interval_handle),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(e),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(2*e),this._interval/10))}this.increment(e)};this._interval_handle=setInterval(()=>i(e*t),this._interval)}_stop_incrementation(){clearInterval(this._interval_handle),this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._start_incrementation(t)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?o(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?_(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__="SpinnerView";class d extends s.NumericInput{constructor(e){super(e)}static init_Spinner(){this.prototype.default_view=p,this.define({value_throttled:[l.Number,null],step:[l.Number,1],page_step_multiplier:[l.Number,10],wheel_wait:[l.Number,100]}),this.override({mode:"float"})}}i.Spinner=d,d.__name__="Spinner",d.init_Spinner()},n”, ” 451: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(410),l=e(72),h=s.__importStar(e(18)),o=e(412);class a extends n.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.rows.change,()=>this.input_el.rows=this.model.rows),this.connect(this.model.properties.cols.change,()=>this.input_el.cols=this.model.cols),this.connect(this.model.properties.max_length.change,()=>this.input_el.maxLength=this.model.max_length)}render(){super.render(),this.input_el=l.textarea({class:o.bk_input,name:this.model.name,disabled:this.model.disabled,placeholder:this.model.placeholder,cols:this.model.cols,rows:this.model.rows,maxLength:this.model.max_length}),this.input_el.textContent=this.model.value,this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}}i.TextAreaInputView=a,a.__name__="TextAreaInputView";class p extends n.InputWidget{constructor(e){super(e)}static init_TextAreaInput(){this.prototype.default_view=a,this.define({value:[h.String,""],value_input:[h.String,""],placeholder:[h.String,""],cols:[h.Number,20],rows:[h.Number,2],max_length:[h.Number,500]})}}i.TextAreaInput=p,p.__name__="TextAreaInput",p.init_TextAreaInput()},n”, ” 452: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),c=e(404),o=e(72),a=s.__importStar(e(18)),n=e(173);class l extends c.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._update_active())}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){o.classes(this.button_el).toggle(n.bk_active,this.model.active)}}i.ToggleView=l,l.__name__="ToggleView";class _ extends c.AbstractButton{constructor(e){super(e)}static init_Toggle(){this.prototype.default_view=l,this.define({active:[a.Boolean,!1]}),this.override({label:"Toggle"})}}i.Toggle=_,_.__name__="Toggle",_.init_Toggle()},n”, ” }, 402, {"models/widgets/main":402,"models/widgets/index":403,"models/widgets/abstract_button":404,"models/widgets/control":405,"models/widgets/widget":472,"models/widgets/abstract_icon":407,"models/widgets/autocomplete_input":408,"models/widgets/text_input":409,"models/widgets/input_widget":410,"styles/widgets/inputs.css":411,"styles/widgets/inputs":412,"models/widgets/button":413,"models/widgets/checkbox_button_group":414,"models/widgets/button_group":415,"models/widgets/checkbox_group":416,"models/widgets/input_group":417,"models/widgets/color_picker":418,"models/widgets/date_picker":419,"styles/widgets/flatpickr.css":421,"models/widgets/date_range_slider":422,"models/widgets/abstract_slider":423,"styles/widgets/sliders":425,"styles/widgets/nouislider.css":426,"styles/widgets/sliders.css":427,"models/widgets/date_slider":428,"models/widgets/div":429,"models/widgets/markup":430,"styles/clearfix":431,"styles/clearfix.css":432,"models/widgets/dropdown":433,"models/widgets/file_input":434,"models/widgets/multiselect":435,"models/widgets/paragraph":436,"models/widgets/password_input":437,"models/widgets/multichoice":438,"styles/widgets/choices.css":440,"models/widgets/numeric_input":441,"api/linalg":442,"core/util/random":443,"models/widgets/pretext":444,"models/widgets/radio_button_group":445,"models/widgets/radio_group":446,"models/widgets/range_slider":447,"models/widgets/selectbox":448,"models/widgets/slider":449,"models/widgets/spinner":450,"models/widgets/textarea_input":451,"models/widgets/toggle":452}, {});n”, ” })n”, “n”, “n”, ” / END bokeh-widgets.min.js /n”, ” },n”, ” n”, ” function(Bokeh) {n”, ” / BEGIN bokeh-tables.min.js /n”, ” /!n”, ” * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn”, ” * All rights reserved.n”, ” * n”, ” * Redistribution and use in source and binary forms, with or without modification,n”, ” * are permitted provided that the following conditions are met:n”, ” * n”, ” * Redistributions of source code must retain the above copyright notice,n”, ” * this list of conditions and the following disclaimer.n”, ” * n”, ” * Redistributions in binary form must reproduce the above copyright notice,n”, ” * this list of conditions and the following disclaimer in the documentationn”, ” * and/or other materials provided with the distribution.n”, ” * n”, ” * Neither the name of Anaconda nor the names of any contributorsn”, ” * may be used to endorse or promote products derived from this softwaren”, ” * without specific prior written permission.n”, ” * n”, ” * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n”, ” * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn”, ” * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn”, ” * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn”, ” * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn”, ” * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn”, ” * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn”, ” * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn”, ” * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n”, ” * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn”, ” * THE POSSIBILITY OF SUCH DAMAGE.n”, ” /n”, ” (function(root, factory) {n”, ” factory(root["Bokeh"], "2.2.3");n”, ” })(this, function(Bokeh, version) {n”, ” var define;n”, ” return (function(modules, entry, aliases, externals) {n”, ” const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n”, ” if (bokeh != null) {n”, ” return bokeh.register_plugin(modules, entry, aliases);n”, ” } else {n”, ” throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n”, ” }n”, ” })n”, ” ({n”, ” 453: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1).__importStar(e(454));o.Tables=r;e(7).register_models(r)},n”, ” 454: function _(a,g,r){Object.defineProperty(r,"__esModule",{value:!0});const e=a(1);e.__exportStar(a(455),r),e.__exportStar(a(475),r);var t=a(456);r.DataTable=t.DataTable;var o=a(474);r.TableColumn=o.TableColumn;var n=a(473);r.TableWidget=n.TableWidget;var u=a(481);r.AvgAggregator=u.AvgAggregator,r.MinAggregator=u.MinAggregator,r.MaxAggregator=u.MaxAggregator,r.SumAggregator=u.SumAggregator;var l=a(482);r.GroupingInfo=l.GroupingInfo,r.DataCube=l.DataCube},n”, ” 455: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1).__importStar(e(18)),r=e(72),a=e(78),n=e(81),l=e(456),u=e(478);class d extends a.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error("unsupported")}css_classes(){return super.css_classes().concat(u.bk_cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener("keydown",e=>{switch(e.keyCode){case r.Keys.Left:case r.Keys.Right:case r.Keys.Up:case r.Keys.Down:case r.Keys.PageUp:case r.Keys.PageDown:e.stopImmediatePropagation()}})}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(""==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[l.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=d,d.__name__="CellEditorView";class o extends n.Model{}i.CellEditor=o,o.__name__="CellEditor";class _ extends d{get emptyValue(){return""}_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=_,_.__name__="StringEditorView";class c extends o{static init_StringEditor(){this.prototype.default_view=_,this.define({completions:[s.Array,[]]})}}i.StringEditor=c,c.__name__="StringEditor",c.init_StringEditor();class p extends d{_createInput(){return r.textarea()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=p,p.__name__="TextEditorView";class h extends o{static init_TextEditor(){this.prototype.default_view=p}}i.TextEditor=h,h.__name__="TextEditor",h.init_TextEditor();class E extends d{_createInput(){return r.select()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild(r.option({value:e},e));this.focus()}}i.SelectEditorView=E,E.__name__="SelectEditorView";class V extends o{static init_SelectEditor(){this.prototype.default_view=E,this.define({options:[s.Array,[]]})}}i.SelectEditor=V,V.__name__="SelectEditor",V.init_SelectEditor();class m extends d{_createInput(){return r.input({type:"text"})}}i.PercentEditorView=m,m.__name__="PercentEditorView";class f extends o{static init_PercentEditor(){this.prototype.default_view=m}}i.PercentEditor=f,f.__name__="PercentEditor",f.init_PercentEditor();class x extends d{_createInput(){return r.input({type:"checkbox"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=x,x.__name__="CheckboxEditorView";class w extends o{static init_CheckboxEditor(){this.prototype.default_view=x}}i.CheckboxEditor=w,w.__name__="CheckboxEditor",w.init_CheckboxEditor();class g extends d{_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseInt(this.getValue(),10)||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:"Please enter a valid integer"}:super.validateValue(e)}}i.IntEditorView=g,g.__name__="IntEditorView";class y extends o{static init_IntEditor(){this.prototype.default_view=g,this.define({step:[s.Number,1]})}}i.IntEditor=y,y.__name__="IntEditor",y.init_IntEditor();class v extends d{_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseFloat(this.getValue())||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:"Please enter a valid number"}:super.validateValue(e)}}i.NumberEditorView=v,v.__name__="NumberEditorView";class b extends o{static init_NumberEditor(){this.prototype.default_view=v,this.define({step:[s.Number,.01]})}}i.NumberEditor=b,b.__name__="NumberEditor",b.init_NumberEditor();class I extends d{_createInput(){return r.input({type:"text"})}}i.TimeEditorView=I,I.__name__="TimeEditorView";class N extends o{static init_TimeEditor(){this.prototype.default_view=I}}i.TimeEditor=N,N.__name__="TimeEditor",N.init_TimeEditor();class C extends d{_createInput(){return r.input({type:"text"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=C,C.__name__="DateEditorView";class D extends o{static init_DateEditor(){this.prototype.default_view=C}}i.DateEditor=D,D.__name__="DateEditor",D.init_DateEditor()},n”, ” 456: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),o=e(457),n=e(461),l=e(462),r=e(463),d=e(29),a=e(8),h=e(9),u=e(13),c=e(19),_=e(472),m=e(473),g=e(474),p=e(478),f=s.__importDefault(e(479)),b=s.__importDefault(e(480));i.DTINDEX_NAME="__bkdt_internal_index__",i.AutosizeModes={fit_columns:"FCV",fit_viewport:"FVC",force_fit:"LFF",none:"NOA"};class w{constructor(e,t){this.init(e,t)}init(e,t){if(i.DTINDEX_NAME in e.data)throw new Error(`special name ${i.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[…this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of u.keys(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[i.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==i.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return h.range(0,this.getLength()).map(e=>this.getItem(e))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,h.range(e,t,i).map(e=>this.getItem(e))}sort(e){let t=e.map(e=>[e.sortCol.field,e.sortAsc?1:-1]);0==t.length&&(t=[[i.DTINDEX_NAME,1]]);const s=this.getRecords(),o=this.index.slice();this.index.sort((e,i)=>{for(const[n,l]of t){const t=s[o.indexOf(e)][n],r=s[o.indexOf(i)][n];if(t!==r)return a.isNumber(t)&&a.isNumber(r)?l*(t-r||+isNaN(t)-+isNaN(r)):""+t>""+r?l:-l}return 0})}}i.TableDataProvider=w,w.__name__="TableDataProvider";class x extends _.WidgetView{constructor(){super(…arguments),this._in_selection_update=!1,this._warned_not_reorderable=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.source.streaming,()=>this.updateGrid()),this.connect(this.model.source.patching,()=>this.updateGrid()),this.connect(this.model.source.change,()=>this.updateGrid()),this.connect(this.model.source.properties.data.change,()=>this.updateGrid()),this.connect(this.model.source.selected.change,()=>this.updateSelection()),this.connect(this.model.source.selected.properties.indices.change,()=>this.updateSelection())}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[…super.styles(),f.default,b.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return"fit_viewport"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map(t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc}));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map(e=>this.data.index.indexOf(e)).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:d.uniqueId(),name:this.model.index_header,field:i.DTINDEX_NAME,width:this.model.index_width,behavior:"select",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:p.bk_cell_index,headerCssClass:p.bk_header_index}}css_classes(){return super.css_classes().concat(p.bk_data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.map(e=>Object.assign(Object.assign({},e.toColumn()),{parent:this}));let s=null;if("checkbox"==this.model.selectable&&(s=new n.CheckboxSelectColumn({cssClass:p.bk_cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:d}=this.model;!d||"undefined"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(this._warned_not_reorderable||(c.logger.warn("jquery-ui is required to enable DataTable.reorderable"),this._warned_not_reorderable=!0),d=!1);let h=-1,u=!1;const{frozen_rows:_,frozen_columns:m}=this.model,g=null==m?-1:m-1;null!=_&&(u=_<0,h=Math.abs(_));const f={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:d,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:g,frozenRow:h,frozenBottom:u},b=null!=this.grid;if(this.data=new w(this.model.source,this.model.view),this.grid=new r.Grid(this.el,this.data,t,f),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))}),!1!==this.model.selectable){this.grid.setSelectionModel(new o.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return a.isString(i)&&(i=i.replace(/\n/g,"\\n")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new l.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map(e=>this.data.index[e]))}),this.updateSelection(),this.model.header_row||this._hide_header()}b&&this.updateLayout(b,!1)}_hide_header(){for(const e of this.el.querySelectorAll(".slick-header-columns"))e.style.height="0px";this.grid.resizeCanvas()}}i.DataTableView=x,x.__name__="DataTableView";class C extends m.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}static init_DataTable(){this.prototype.default_view=x,this.define(({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Null:r})=>({autosize_mode:[n("fit_columns","fit_viewport","none","force_fit"),"force_fit"],auto_edit:[t,!1],columns:[e(s(g.TableColumn)),[]],fit_columns:[l(t,r),null],frozen_columns:[l(i,r),null],frozen_rows:[l(i,r),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n("checkbox")),!0],index_position:[l(i,r),0],index_header:[o,"#"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]})),this.override({width:600,height:400})}update_sort_columns(e){this._sort_columns=e.map(({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t}))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?h.some(t,t=>e.top<=t&&t<=e.bottom)?null:Math.max(0,Math.min(…t)-1):null}}i.DataTable=C,C.__name__="DataTable",C.init_DataTable()},n”, ” 457: function _(e,t,n){var o=e(458),r=e(460);t.exports={RowSelectionModel:function(e){var t,n,l,i=[],c=this,u=new r.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n<e.length;n++)for(var o=e[n].fromRow;o<=e[n].toRow;o++)t.push(o);return t}function h(e){for(var n=[],o=t.getColumns().length-1,l=0;l<e.length;l++)n.push(new r.Range(e[l],0,e[l],o));return n}function w(){return f(i)}function g(e){(i&&0!==i.length||e&&0!==e.length)&&(i=e,c.onSelectedRangesChanged.notify(i))}function v(e,n){l.selectActiveRow&&null!=n.row&&g([new r.Range(n.row,0,n.row,t.getColumns().length-1)])}function p(e){var n=t.getActiveCell();if(t.getOptions().multiSelect&&n&&e.shiftKey&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&(e.which==r.keyCode.UP||e.which==r.keyCode.DOWN)){var o=w();o.sort((function(e,t){return e-t})),o.length||(o=[n.row]);var l,i=o[0],c=o[o.length-1];if((l=e.which==r.keyCode.DOWN?n.row<c||i==c?++c:++i:n.row<c?–c:–i)>=0&&l<t.getDataLength())t.scrollRowIntoView(l),g(h(function(e,t){var n,o=[];for(n=e;n<=t;n++)o.push(n);for(n=t;n<e;n++)o.push(n);return o}(i,c)));e.preventDefault(),e.stopPropagation()}}function y(e){var n=t.getCellFromEvent(e);if(!n||!t.canCellBeActive(n.row,n.cell))return!1;if(!t.getOptions().multiSelect||!e.ctrlKey&&!e.shiftKey&&!e.metaKey)return!1;var r=f(i),l=o.inArray(n.row,r);if(-1===l&&(e.ctrlKey||e.metaKey))r.push(n.row),t.setActiveCell(n.row,n.cell);else if(-1!==l&&(e.ctrlKey||e.metaKey))r=o.grep(r,(function(e,t){return e!==n.row})),t.setActiveCell(n.row,n.cell);else if(r.length&&e.shiftKey){var c=r.pop(),u=Math.min(n.row,c),s=Math.max(n.row,c);r=[];for(var a=u;a<=s;a++)a!==c&&r.push(a);r.push(c),t.setActiveCell(n.row,n.cell)}return g(h(r)),e.stopImmediatePropagation(),!0}o.extend(this,{getSelectedRows:w,setSelectedRows:function(e){g(h(e))},getSelectedRanges:function(){return i},setSelectedRanges:g,init:function(n){l=o.extend(!0,{},s,e),t=n,u.subscribe(t.onActiveCellChanged,a(v)),u.subscribe(t.onKeyDown,a(p)),u.subscribe(t.onClick,a(y))},destroy:function(){u.unsubscribeAll()},pluginName:"RowSelectionModel",onSelectedRangesChanged:new r.Event})}}},n”, ” 458: function _(e,n,f){n.exports="undefined"!=typeof $?$:e(459)},n”, ” 459: function _(e,t,n){n”, ” /!n”, ” * jQuery JavaScript Library v3.5.1n”, ” * https://jquery.com/n”, ” n”, ” * Includes Sizzle.jsn”, ” * https://sizzlejs.com/n”, ” *n”, ” * Copyright JS Foundation and other contributorsn”, ” * Released under the MIT licensen”, ” * https://jquery.org/licensen”, ” *n”, ” * Date: 2020-05-04T22:49Zn”, ” */n”, ” !function(e,n){"use strict";"object"==typeof t&&"object"==typeof t.exports?t.exports=e.document?n(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(e)}("undefined"!=typeof window?window:this,(function(e,t){"use strict";var n=[],r=Object.getPrototypeOf,i=n.slice,o=n.flat?function(e){return n.flat.call(e)}:function(e){return n.concat.apply([],e)},a=n.push,s=n.indexOf,u={},l=u.toString,c=u.hasOwnProperty,f=c.toString,p=f.call(Object),d={},h=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},g=function(e){return null!=e&&e===e.window},v=e.document,y={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||v).createElement("script");if(o.text=e,t)for(r in y)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?u[l.call(e)]||"object":typeof e}var b=function(e,t){return new b.fn.init(e,t)};function w(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!h(e)&&!g(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}b.fn=b.prototype={jquery:"3.5.1",constructor:b,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return b.each(this,e)},map:function(e){return this.pushStack(b.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(b.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(b.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:a,sort:n.sort,splice:n.splice},b.extend=b.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||h(a)||(a={}),s===u&&(a=this,s–);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(b.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||b.isPlainObject(n)?n:{},i=!1,a[t]=b.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},b.extend({expando:"jQuery"+("3.5.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==l.call(e))&&(!(t=r(e))||"function"==typeof(n=c.call(t,"constructor")&&t.constructor)&&f.call(n)===p)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){m(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(w(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(w(Object(e))?b.merge(n,"string"==typeof e?[e]:e):a.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:s.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,a=0,s=[];if(w(e))for(r=e.length;a<r;a++)null!=(i=t(e[a],a,n))&&s.push(i);else for(a in e)null!=(i=t(e[a],a,n))&&s.push(i);return o(s)},guid:1,support:d}),"function"==typeof Symbol&&(b.fn[Symbol.iterator]=n[Symbol.iterator]),b.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),(function(e,t){u["[object "+t+"]"]=t.toLowerCase()}));var T=n”, ” /!n”, ” * Sizzle CSS Selector Engine v2.3.5n”, ” * https://sizzlejs.com/n”, ” n”, ” * Copyright JS Foundation and other contributorsn”, ” * Released under the MIT licensen”, ” * https://js.foundation/n”, ” *n”, ” * Date: 2020-03-14n”, ” */n”, ” function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,v,y,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ue(),S=ue(),k=ue(),A=ue(),N=function(e,t){return e===t&&(f=!0),0},D={}.hasOwnProperty,j=[],q=j.pop,L=j.push,H=j.push,O=j.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:’((?:\\\\.|[^\\\\’]))’|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\"+I+\"))|)"+M+"\\]",F=":("+I+")(?:\\(((‘((?:\\\\.|[^\\\\’]))’|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+","+M+""),z=new RegExp("^"+M+"([>+~]|"+M+")"+M+""),U=new RegExp(M+"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\d*)n|)"+M+"(?:([+-]|)"+M+"*(\\d+)|))"+M+"\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d)"+M+"\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{H.apply(j=O.call(w.childNodes),w.childNodes),j[w.childNodes.length].nodeType}catch(e){H={apply:j.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+" "]&&(!v||!v.test(e))&&(1!==w||"object"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute("id"))?c=c.replace(re,ie):t.setAttribute("id",c=b)),s=(h=a(e)).length;s–;)h[s]=(c?"#"+c:":scope")+" "+xe(h[s]);y=h.join(",")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace($,"$1"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split("|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||"button"===n)&&t.type===e}}function ge(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a–;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),n.attributes=ce((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(""===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML="<a id=’"+b+"’></a><select id=’"+b+"-\r\\’ msallowcapture=’’><option selected=’’></option></select>",e.querySelectorAll("[msallowcapture^=’’]").length&&v.push("[^$]="+M+"*(?:’’|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+b+"-]").length||v.push("~="),(t=d.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name=’’]").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:’’|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+b+"+").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")})),ce((function(e){e.innerHTML="<a href=’’ disabled=’disabled’></a><select disabled=’disabled’><option/></select>";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll(",:x"),v.push(",.*:")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,""),m.call(e,"[s!=’’]:x"),y.push("!=",F)})),v=v.length&&new RegExp(v.join("|")),y=y.length&&new RegExp(y.join("|")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+" "]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i–;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return""===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||"")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(B," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a–;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,"$1"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s–;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||"")||se.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),odd:ve((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),lt:ve((function(e,t,n){for(var r=n<0?n+t:n>t?t:n;–r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e}))}}).pseudos.nth=r.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=de(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=he(t);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(e,t,n){var r=t.dir,i=t.next,o=i||r,a=n&&"parentNode"===o,s=C++;return t.first?function(t,n,i){for(;t=t[r];)if(1===t.nodeType||a)return e(t,n,i);return!1}:function(t,n,u){var l,c,f,p=[T,s];if(u){for(;t=t[r];)if((1===t.nodeType||a)&&e(t,n,u))return!0}else for(;t=t[r];)if(1===t.nodeType||a)if(c=(f=t[b]||(t[b]={}))[t.uniqueID]||(f[t.uniqueID]={}),i&&i===t.nodeName.toLowerCase())t=t[r]||t;else{if((l=c[o])&&l[0]===T&&l[1]===s)return p[2]=l[2];if(c[o]=p,p[2]=e(t,n,u))return!0}return!1}}function we(e){return e.length>1?function(t,n,r){for(var i=e.length;i–;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(e,t,n,r,i,o){return r&&!r[b]&&(r=Ce(r)),i&&!i[b]&&(i=Ce(i,o)),le((function(o,a,s,u){var l,c,f,p=[],d=[],h=a.length,g=o||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(t||"",s.nodeType?[s]:s,[]),v=!e||!o&&t?g:Te(g,p,e,s,u),y=n?i||(o?e:h||r)?[]:a:v;if(n&&n(v,y,s,u),r)for(l=Te(y,d),r(l,[],s,u),c=l.length;c–;)(f=l[c])&&(y[d[c]]=!(v[d[c]]=f));if(o){if(i||e){if(i){for(l=[],c=y.length;c–;)(f=y[c])&&l.push(v[c]=f);i(null,y=[],l,u)}for(c=y.length;c–;)(f=y[c])&&(l=i?P(o,f):p[c])>-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u<o;u++)if(n=r.relative[e[u].type])p=[be(we(p),n)];else{if((n=r.filter[e[u].type].apply(null,e[u].matches))[b]){for(i=++u;i<o&&!r.relative[e[i].type];i++);return Ce(u>1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:" "===e[u-2].type?"":""})).replace($,"$1"),n,u<i&&Ee(e.slice(u,i)),i<o&&Ee(e=e.slice(i)),i<o&&xe(e))}p.push(n)}return we(p)}return me.prototype=r.filters=r.pseudos,r.setFilters=new me,a=se.tokenize=function(e,t){var n,i,o,a,s,u,l,c=S[e+" "];if(c)return t?0:c.slice(0);for(s=e,u=[],l=r.preFilter;s;){for(a in n&&!(i=_.exec(s))||(i&&(s=s.slice(i[0].length)||s),u.push(o=[])),n=!1,(i=z.exec(s))&&(n=i.shift(),o.push({value:n,type:i[0].replace($," ")}),s=s.slice(n.length)),r.filter)!(i=G[a].exec(s))||l[a]&&!(i=l[a](i))||(n=i.shift(),o.push({value:n,type:a,matches:i}),s=s.slice(n.length));if(!n)break}return t?s.length:s?se.error(e):S(e,u).slice(0)},s=se.compile=function(e,t){var n,i=[],o=[],s=k[e+" "];if(!s){for(t||(t=a(e)),n=t.length;n–;)(s=Ee(t[n]))[b]?i.push(s):o.push(s);(s=k(e,function(e,t){var n=t.length>0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y–,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m–;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i))).selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o–&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split("").sort(N).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))})),ce((function(e){return e.innerHTML="<a href=’#’></a>","#"===e.firstChild.getAttribute("href")}))||fe("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||fe("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute("disabled")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);b.find=T,b.expr=T.selectors,b.expr[":"]=b.expr.pseudos,b.uniqueSort=b.unique=T.uniqueSort,b.text=T.getText,b.isXMLDoc=T.isXML,b.contains=T.contains,b.escapeSelector=T.escape;var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&b(e).is(n))break;r.push(e)}return r},E=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},S=b.expr.match.needsContext;function k(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function N(e,t,n){return h(t)?b.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?b.grep(e,(function(e){return e===t!==n})):"string"!=typeof t?b.grep(e,(function(e){return s.call(t,e)>-1!==n})):b.filter(t,e,n)}b.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?b.find.matchesSelector(r,e)?[r]:[]:b.find.matches(e,b.grep(t,(function(e){return 1===e.nodeType})))},b.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(b(e).filter((function(){for(t=0;t<r;t++)if(b.contains(i[t],this))return!0})));for(n=this.pushStack([]),t=0;t<r;t++)b.find(e,i[t],n);return r>1?b.uniqueSort(n):n},filter:function(e){return this.pushStack(N(this,e||[],!1))},not:function(e){return this.pushStack(N(this,e||[],!0))},is:function(e){return!!N(this,"string"==typeof e&&S.test(e)?b(e):e||[],!1).length}});var D,j=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(b.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof b?t[0]:t,b.merge(this,b.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),A.test(r[1])&&b.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(b):b.makeArray(e,this)}).prototype=b.fn,D=b(v);var q=/^(?:parents|prev(?:Until|All))/,L={children:!0,contents:!0,next:!0,prev:!0};function H(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}b.fn.extend({has:function(e){var t=b(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(b.contains(this,t[e]))return!0}))},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&b(e);if(!S.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&b.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?b.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?s.call(b(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(b.uniqueSort(b.merge(this.get(),b(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,"parentNode")},parentsUntil:function(e,t,n){return C(e,"parentNode",n)},next:function(e){return H(e,"nextSibling")},prev:function(e){return H(e,"previousSibling")},nextAll:function(e){return C(e,"nextSibling")},prevAll:function(e){return C(e,"previousSibling")},nextUntil:function(e,t,n){return C(e,"nextSibling",n)},prevUntil:function(e,t,n){return C(e,"previousSibling",n)},siblings:function(e){return E((e.parentNode||{}).firstChild,e)},children:function(e){return E(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(k(e,"template")&&(e=e.content||e),b.merge([],e.childNodes))}},(function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),this.length>1&&(L[e]||b.uniqueSort(i),q.test(e)&&i.reverse()),this.pushStack(i)}}));var O=/[^\x20\t\r\n\f]+/g;function P(e){return e}function R(e){throw e}function M(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}b.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return b.each(e.match(O)||[],(function(e,n){t[n]=!0})),t}(e):b.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s<o.length;)!1===o[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=o.length,n=!1);e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},l={add:function(){return o&&(n&&!t&&(s=o.length-1,a.push(n)),function t(n){b.each(n,(function(n,r){h(r)?e.unique&&l.has(r)||o.push(r):r&&r.length&&"string"!==x(r)&&t(r)}))}(arguments),n&&!t&&u()),this},remove:function(){return b.each(arguments,(function(e,t){for(var n;(n=b.inArray(t,o,n))>-1;)o.splice(n,1),n<=s&&s–})),this},has:function(e){return e?b.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},b.extend({Deferred:function(t){var n=[["notify","progress",b.Callbacks("memory"),b.Callbacks("memory"),2],["resolve","done",b.Callbacks("once memory"),b.Callbacks("once memory"),0,"resolved"],["reject","fail",b.Callbacks("once memory"),b.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return b.Deferred((function(t){b.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t<o)){if((e=r.apply(s,u))===n.promise())throw new TypeError("Thenable self-resolution");l=e&&("object"==typeof e||"function"==typeof e)&&e.then,h(l)?i?l.call(e,a(o,n,P,i),a(o,n,R,i)):(o++,l.call(e,a(o,n,P,i),a(o,n,R,i),a(o,n,P,n.notifyWith))):(r!==P&&(s=void 0,u=[e]),(i||n.resolveWith)(s,u))}},c=i?l:function(){try{l()}catch(e){b.Deferred.exceptionHook&&b.Deferred.exceptionHook(e,c.stackTrace),t+1>=o&&(r!==R&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(b.Deferred.getStackHook&&(c.stackTrace=b.Deferred.getStackHook()),e.setTimeout(c))}}return b.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:P,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:P)),n[2][3].add(a(0,e,h(r)?r:R))})).promise()},promise:function(e){return null!=e?b.extend(e,i):i}},o={};return b.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=b.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,–t||a.resolveWith(r,o)}};if(t<=1&&(M(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n–;)M(o[n],s(n),a.reject);return a.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;b.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&I.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},b.readyException=function(t){e.setTimeout((function(){throw t}))};var W=b.Deferred();function F(){v.removeEventListener("DOMContentLoaded",F),e.removeEventListener("load",F),b.ready()}b.fn.ready=function(e){return W.then(e).catch((function(e){b.readyException(e)})),this},b.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?–b.readyWait:b.isReady)||(b.isReady=!0,!0!==e&&–b.readyWait>0||W.resolveWith(v,[b]))}}),b.ready.then=W.then,"complete"===v.readyState||"loading"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(b.ready):(v.addEventListener("DOMContentLoaded",F),e.addEventListener("load",F));var B=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n))for(s in i=!0,n)B(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(b(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},$=/^-ms-/,_=/-([a-z])/g;function z(e,t){return t.toUpperCase()}function U(e){return e.replace($,"ms-").replace(_,z)}var X=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function V(){this.expando=b.expando+V.uid++}V.uid=1,V.prototype={cache:function(e){var t=e[this.expando];return t||(t={},X(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[U(t)]=n;else for(r in t)i[U(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][U(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(U):(t=U(t))in r?[t]:t.match(O)||[]).length;for(;n–;)delete r[t[n]]}(void 0===t||b.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!b.isEmptyObject(t)}};var G=new V,Y=new V,Q=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,J=/[A-Z]/g;function K(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(J,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=function(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Q.test(e)?JSON.parse(e):e)}(n)}catch(e){}Y.set(e,t,n)}else n=void 0;return n}b.extend({hasData:function(e){return Y.hasData(e)||G.hasData(e)},data:function(e,t,n){return Y.access(e,t,n)},removeData:function(e,t){Y.remove(e,t)},_data:function(e,t,n){return G.access(e,t,n)},_removeData:function(e,t){G.remove(e,t)}}),b.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=Y.get(o),1===o.nodeType&&!G.get(o,"hasDataAttrs"))){for(n=a.length;n–;)a[n]&&0===(r=a[n].name).indexOf("data-")&&(r=U(r.slice(5)),K(o,r,i[r]));G.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof e?this.each((function(){Y.set(this,e)})):B(this,(function(t){var n;if(o&&void 0===t)return void 0!==(n=Y.get(o,e))||void 0!==(n=K(o,e))?n:void 0;this.each((function(){Y.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){Y.remove(this,e)}))}}),b.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=G.get(e,t),n&&(!r||Array.isArray(n)?r=G.access(e,t,b.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r–),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){b.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return G.get(e,n)||G.access(e,n,{empty:b.Callbacks("once memory").add((function(){G.remove(e,[t+"queue",n])}))})}}),b.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n–),arguments.length<n?b.queue(this[0],e):void 0===t?this:this.each((function(){var n=b.queue(this,e,t);b._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&b.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){b.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=b.Deferred(),o=this,a=this.length,s=function(){–r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a–;)(n=G.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var Z=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ee=new RegExp("^(?:([+-])=|)("+Z+")([a-z%]*)$","i"),te=["Top","Right","Bottom","Left"],ne=v.documentElement,re=function(e){return b.contains(e.ownerDocument,e)},ie={composed:!0};ne.getRootNode&&(re=function(e){return b.contains(e.ownerDocument,e)||e.getRootNode(ie)===e.ownerDocument});var oe=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&re(e)&&"none"===b.css(e,"display")};function ae(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return b.css(e,t,"")},u=s(),l=n&&n[3]||(b.cssNumber[t]?"":"px"),c=e.nodeType&&(b.cssNumber[t]||"px"!==l&&+u)&&ee.exec(b.css(e,t));if(c&&c[3]!==l){for(u/=2,l=l||c[3],c=+u||1;a–;)b.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,b.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var se={};function ue(e){var t,n=e.ownerDocument,r=e.nodeName,i=se[r];return i||(t=n.body.appendChild(n.createElement(r)),i=b.css(t,"display"),t.parentNode.removeChild(t),"none"===i&&(i="block"),se[r]=i,i)}function le(e,t){for(var n,r,i=[],o=0,a=e.length;o<a;o++)(r=e[o]).style&&(n=r.style.display,t?("none"===n&&(i[o]=G.get(r,"display")||null,i[o]||(r.style.display="")),""===r.style.display&&oe(r)&&(i[o]=ue(r))):"none"!==n&&(i[o]="none",G.set(r,"display",n)));for(o=0;o<a;o++)null!=i[o]&&(e[o].style.display=i[o]);return e}b.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each((function(){oe(this)?b(this).show():b(this).hide()}))}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=v.createDocumentFragment().appendChild(v.createElement("div")),(fe=v.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),d.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",d.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",d.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||""):void 0!==e.querySelectorAll?e.querySelectorAll(t||""):[],void 0===t||t&&k(e,t)?b.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)G.set(e[n],"globalEval",!t||G.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,d.option||(ge.optgroup=ge.option=[1,"<select multiple=’multiple’>","</select>"]);var me=/<|&#?\\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if(\"object\"===x(o))b.merge(p,o.nodeType?[o]:o);else if(me.test(o)){for(a=a||f.appendChild(t.createElement(\"div\")),s=(de.exec(o)||[\"\",\"\"])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+b.htmlPrefilter(o)+u[2],c=u[0];c--;)a=a.lastChild;b.merge(p,a.childNodes),(a=f.firstChild).textContent=\"\"}else p.push(t.createTextNode(o));for(f.textContent=\"\",d=0;o=p[d++];)if(r&&b.inArray(o,r)>-1)i&&i.push(o);else if(l=re(o),a=ve(f.appendChild(o),\"script\"),l&&ye(a),n)for(c=0;o=a[c++];)he.test(o.type||"")&&n.push(o);return f}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\.(.+)|)/;function Ce(){return!0}function Ee(){return!1}function Se(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==("focus"===t)}function ke(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)ke(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ee;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return b().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=b.guid++)),e.each((function(){b.event.add(this,t,i,r,n)}))}function Ae(e,t,n){n?(G.set(e,t,!1),b.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=G.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(b.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),G.set(this,t,a),r=n(this,t),this[t](),a!==(o=G.get(this,t))||r?G.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o.value}else a.length&&(G.set(this,t,{value:b.event.trigger(b.extend(a[0],b.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===G.get(e,t)&&b.event.add(e,t,Ce)}b.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.get(e);if(X(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&b.find.matchesSelector(ne,i),n.guid||(n.guid=b.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==b&&b.event.triggered!==t.type?b.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(O)||[""]).length;l–;)d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=b.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=b.event.special[d]||{},c=b.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&b.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),b.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.hasData(e)&&G.get(e);if(v&&(u=v.events)){for(l=(t=(t||"").match(O)||[""]).length;l–;)if(d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){for(f=b.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;o–;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(""!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount–,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||b.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(u)&&G.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=b.event.fix(e),l=(G.get(this,"events")||Object.create(null))[u.type]||[],c=b.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){for(a=b.event.handlers.call(this,u,l),t=0;(i=a[t++])&&!u.isPropagationStopped();)for(u.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!u.isImmediatePropagationStopped();)u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((b.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&e.button>=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?b(i,this).index(l)>-1:b.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(e,t){Object.defineProperty(b.Event.prototype,e,{enumerable:!0,configurable:!0,get:h(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[b.expando]?e:new b.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&k(t,"input")&&Ae(t,"click",Ce),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&k(t,"input")&&Ae(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&k(t,"input")&&G.get(t,"click")||k(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},b.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},b.Event=function(e,t){if(!(this instanceof b.Event))return new b.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ce:Ee,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&b.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[b.expando]=!0},b.Event.prototype={constructor:b.Event,isDefaultPrevented:Ee,isPropagationStopped:Ee,isImmediatePropagationStopped:Ee,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ce,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ce,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ce,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},b.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&be.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&we.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},b.event.addProp),b.each({focus:"focusin",blur:"focusout"},(function(e,t){b.event.special[e]={setup:function(){return Ae(this,e,Se),!1},trigger:function(){return Ae(this,e),!0},delegateType:t}})),b.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},(function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return i&&(i===r||b.contains(r,i))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}})),b.fn.extend({on:function(e,t,n,r){return ke(this,e,t,n,r)},one:function(e,t,n,r){return ke(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,b(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Ee),this.each((function(){b.event.remove(this,e,n,t)}))}});var Ne=/<script|<style|<link/i,De=/checked\s*(?:[^=]|=\s*.checked.)/i,je=/^\s*<!(?:\[CDATA\[|–)|(?:\]\]|–)>\s*$/g;function qe(e,t){return k(e,"table")&&k(11!==t.nodeType?t:t.firstChild,"tr")&&b(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(G.hasData(e)&&(s=G.get(e).events))for(i in G.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)b.event.add(t,i,s[i][n]);Y.hasData(e)&&(o=Y.access(e),a=b.extend({},o),Y.set(t,a))}}function Pe(e,t){var n=t.nodeName.toLowerCase();"input"===n&&pe.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function Re(e,t,n,r){t=o(t);var i,a,s,u,l,c,f=0,p=e.length,g=p-1,v=t[0],y=h(v);if(y||p>1&&"string"==typeof v&&!d.checkClone&&De.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Re(o,t,n,r)}));if(p&&(a=(i=xe(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=b.map(ve(i,"script"),Le)).length;f<p;f++)l=i,f!==g&&(l=b.clone(l,!0,!0),u&&b.merge(s,ve(l,"script"))),n.call(e[f],l,f);if(u)for(c=s[s.length-1].ownerDocument,b.map(s,He),f=0;f<u;f++)l=s[f],he.test(l.type||"")&&!G.access(l,"globalEval")&&b.contains(c,l)&&(l.src&&"module"!==(l.type||"").toLowerCase()?b._evalUrl&&!l.noModule&&b._evalUrl(l.src,{nonce:l.nonce||l.getAttribute("nonce")},c):m(l.textContent.replace(je,""),l,c))}return e}function Me(e,t,n){for(var r,i=t?b.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||b.cleanData(ve(r)),r.parentNode&&(n&&re(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}b.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=re(e);if(!(d.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(a=ve(s),r=0,i=(o=ve(e)).length;r<i;r++)Pe(o[r],a[r]);if(t)if(n)for(o=o||ve(e),a=a||ve(s),r=0,i=o.length;r<i;r++)Oe(o[r],a[r]);else Oe(e,s);return(a=ve(s,"script")).length>0&&ye(a,!u&&ve(e,"script")),s},cleanData:function(e){for(var t,n,r,i=b.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[G.expando]){if(t.events)for(r in t.events)i[r]?b.event.remove(n,r):b.removeEvent(n,r,t.handle);n[G.expando]=void 0}n[Y.expando]&&(n[Y.expando]=void 0)}}}),b.fn.extend({detach:function(e){return Me(this,e,!0)},remove:function(e){return Me(this,e)},text:function(e){return B(this,(function(e){return void 0===e?b.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Re(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)}))},prepend:function(){return Re(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(b.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return b.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ne.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=b.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(b.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return Re(this,arguments,(function(t){var n=this.parentNode;b.inArray(this,e)<0&&(b.cleanData(ve(this)),n&&n.replaceChild(t,this))}),e)}}),b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},(function(e,t){b.fn[e]=function(e){for(var n,r=[],i=b(e),o=i.length-1,s=0;s<=o;s++)n=s===o?this:this.clone(!0),b(i[s])[t](n),a.apply(r,n.get());return this.pushStack(r)}}));var Ie=new RegExp("^("+Z+")(?!px)[a-z%]+$","i"),We=function(t){var n=t.ownerDocument.defaultView;return n&&n.opener||(n=e),n.getComputedStyle(t)},Fe=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Be=new RegExp(te.join("|"),"i");function $e(e,t,n){var r,i,o,a,s=e.style;return(n=n||We(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||re(e)||(a=b.style(e,t)),!d.pixelBoxStyles()&&Ie.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function _e(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function t(){if(c){l.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",c.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ne.appendChild(l).appendChild(c);var t=e.getComputedStyle(c);r="1%"!==t.top,u=12===n(t.marginLeft),c.style.right="60%",a=36===n(t.right),i=36===n(t.width),c.style.position="absolute",o=12===n(c.offsetWidth/3),ne.removeChild(l),c=null}}function n(e){return Math.round(parseFloat(e))}var r,i,o,a,s,u,l=v.createElement("div"),c=v.createElement("div");c.style&&(c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",d.clearCloneStyle="content-box"===c.style.backgroundClip,b.extend(d,{boxSizingReliable:function(){return t(),i},pixelBoxStyles:function(){return t(),a},pixelPosition:function(){return t(),r},reliableMarginLeft:function(){return t(),u},scrollboxSize:function(){return t(),o},reliableTrDimensions:function(){var t,n,r,i;return null==s&&(t=v.createElement("table"),n=v.createElement("tr"),r=v.createElement("div"),t.style.cssText="position:absolute;left:-11111px",n.style.height="1px",r.style.height="9px",ne.appendChild(t).appendChild(n).appendChild(r),i=e.getComputedStyle(n),s=parseInt(i.height)>3,ne.removeChild(t)),s}}))}();var ze=["Webkit","Moz","ms"],Ue=v.createElement("div").style,Xe={};function Ve(e){var t=b.cssProps[e]||Xe[e];return t||(e in Ue?e:Xe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=ze.length;n–;)if((e=ze[n]+t)in Ue)return e}(e)||e)}var Ge=/^(none|table(?!-c[ea]).+)/,Ye=/^–/,Qe={position:"absolute",visibility:"hidden",display:"block"},Je={letterSpacing:"0",fontWeight:"400"};function Ke(e,t,n){var r=ee.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ze(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=b.css(e,n+te[a],!0,i)),r?("content"===n&&(u-=b.css(e,"padding"+te[a],!0,i)),"margin"!==n&&(u-=b.css(e,"border"+te[a]+"Width",!0,i))):(u+=b.css(e,"padding"+te[a],!0,i),"padding"!==n?u+=b.css(e,"border"+te[a]+"Width",!0,i):s+=b.css(e,"border"+te[a]+"Width",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function et(e,t,n){var r=We(e),i=(!d.boxSizingReliable()||n)&&"border-box"===b.css(e,"boxSizing",!1,r),o=i,a=$e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Ie.test(a)){if(!n)return a;a="auto"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&k(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===b.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===b.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ze(e,t,n||(i?"border":"content"),o,r,a)+"px"}function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=$e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=U(t),u=Ye.test(t),l=e.style;if(u||(t=Ve(s)),a=b.cssHooks[t]||b.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ee.exec(n))&&i[1]&&(n=ae(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(b.cssNumber[s]?"":"px")),d.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=U(t);return Ye.test(t)||(t=Ve(s)),(a=b.cssHooks[t]||b.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=$e(e,t,r)),"normal"===i&&t in Je&&(i=Je[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),b.each(["height","width"],(function(e,t){b.cssHooks[t]={get:function(e,n,r){if(n)return!Ge.test(b.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):Fe(e,Qe,(function(){return et(e,t,r)}))},set:function(e,n,r){var i,o=We(e),a=!d.scrollboxSize()&&"absolute"===o.position,s=(a||r)&&"border-box"===b.css(e,"boxSizing",!1,o),u=r?Ze(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),u&&(i=ee.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=b.css(e,t)),Ke(0,n,u)}}})),b.cssHooks.marginLeft=_e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat($e(e,"marginLeft"))||e.getBoundingClientRect().left-Fe(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),b.each({margin:"",padding:"",border:"Width"},(function(e,t){b.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+te[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(b.cssHooks[e+t].set=Ke)})),b.fn.extend({css:function(e,t){return B(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=We(e),i=t.length;a<i;a++)o[t[a]]=b.css(e,t[a],!1,r);return o}return void 0!==n?b.style(e,t,n):b.css(e,t)}),e,t,arguments.length>1)}}),b.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||b.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=b.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):1!==e.elem.nodeType||!b.cssHooks[e.prop]&&null==e.elem.style[Ve(e.prop)]?e.elem[e.prop]=e.now:b.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},b.fx=tt.prototype.init,b.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,b.fx.interval),b.fx.tick())}function st(){return e.setTimeout((function(){nt=void 0})),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=te[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(ct.tweeners[t]||[]).concat(ct.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function ct(e,t,n){var r,i,o=0,a=ct.prefilters.length,s=b.Deferred().always((function(){delete u.elem})),u=function(){if(i)return!1;for(var t=nt||st(),n=Math.max(0,l.startTime+l.duration-t),r=1-(n/l.duration||0),o=0,a=l.tweens.length;o<a;o++)l.tweens[o].run(r);return s.notifyWith(e,[l,r,n]),r<1&&a?n:(a||s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{},easing:b.easing._default},n),originalProperties:t,originalOptions:n,startTime:nt||st(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)l.tweens[n].run(1);return t?(s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l,t])):s.rejectWith(e,[l,t]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=U(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=b.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);o<a;o++)if(r=ct.prefilters[o].call(l,e,c,l.opts))return h(r.stop)&&(b._queueHooks(l.elem,l.opts.queue).stop=r.stop.bind(r)),r;return b.map(c,lt,l),h(l.opts.start)&&l.opts.start.call(e,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l}b.Animation=b.extend(ct,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return ae(n.elem,e,ee.exec(t),n),n}]},tweener:function(e,t){h(e)?(t=e,e=["*"]):e=e.match(O);for(var n,r=0,i=e.length;r<i;r++)n=e[r],ct.tweeners[n]=ct.tweeners[n]||[],ct.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&oe(e),v=G.get(e,"fxshow");for(r in n.queue||(null==(a=b._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always((function(){p.always((function(){a.unqueued–,b.queue(e,"fx").length||a.empty.fire()}))}))),t)if(i=t[r],it.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||b.style(e,r)}if((u=!b.isEmptyObject(t))||!b.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=G.get(e,"display")),"none"===(c=b.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=b.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===b.css(e,"float")&&(u||(p.done((function(){h.display=l})),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always((function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]}))),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=G.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done((function(){for(r in g||le([e]),G.remove(e,"fxshow"),d)b.style(e,r,d[r])}))),u=lt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?ct.prefilters.unshift(e):ct.prefilters.push(e)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||h(e)&&e,duration:e,easing:n&&t||t&&!h(t)&&t};return b.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in b.fx.speeds?r.duration=b.fx.speeds[r.duration]:r.duration=b.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){h(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(oe).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=ct(this,b.extend({},e),o);(i||G.get(this,"finish"))&&t.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&this.queue(e||"fx",[]),this.each((function(){var t=!0,i=null!=e&&e+"queueHooks",o=b.timers,a=G.get(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&ot.test(i)&&r(a[i]);for(i=o.length;i–;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||b.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||"fx"),this.each((function(){var t,n=G.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t–;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish}))}}),b.each(["toggle","show","hide"],(function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ut(t,!0),e,r,i)}})),b.each({slideDown:ut("show"),slideUp:ut("hide"),slideToggle:ut("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},(function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}})),b.timers=[],b.fx.tick=function(){var e,t=0,n=b.timers;for(nt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t–,1);n.length||b.fx.stop(),nt=void 0},b.fx.timer=function(e){b.timers.push(e),b.fx.start()},b.fx.interval=13,b.fx.start=function(){rt||(rt=!0,at())},b.fx.stop=function(){rt=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fn.delay=function(t,n){return t=b.fx&&b.fx.speeds[t]||t,n=n||"fx",this.queue(n,(function(n,r){var i=e.setTimeout(n,t);r.stop=function(){e.clearTimeout(i)}}))},function(){var e=v.createElement("input"),t=v.createElement("select").appendChild(v.createElement("option"));e.type="checkbox",d.checkOn=""!==e.value,d.optSelected=t.selected,(e=v.createElement("input")).value="t",e.type="radio",d.radioValue="t"===e.value}();var ft,pt=b.expr.attrHandle;b.fn.extend({attr:function(e,t){return B(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){b.removeAttr(this,e)}))}}),b.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?b.prop(e,t,n):(1===o&&b.isXMLDoc(e)||(i=b.attrHooks[t.toLowerCase()]||(b.expr.match.bool.test(t)?ft:void 0)),void 0!==n?null===n?void b.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=b.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&"radio"===t&&k(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(O);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ft={set:function(e,t,n){return!1===t?b.removeAttr(e,n):e.setAttribute(n,n),n}},b.each(b.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=pt[t]||b.find.attr;pt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=pt[a],pt[a]=i,i=null!=n(e,t,r)?a:null,pt[a]=o),i}}));var dt=/^(?:input|select|textarea|button)$/i,ht=/^(?:a|area)$/i;function gt(e){return(e.match(O)||[]).join(" ")}function vt(e){return e.getAttribute&&e.getAttribute("class")||""}function yt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(O)||[]}b.fn.extend({prop:function(e,t){return B(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[b.propFix[e]||e]}))}}),b.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&b.isXMLDoc(e)||(t=b.propFix[t]||t,i=b.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=b.find.attr(e,"tabindex");return t?parseInt(t,10):dt.test(e.nodeName)||ht.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),d.optSelected||(b.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),b.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){b.propFix[this.toLowerCase()]=this})),b.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).addClass(e.call(this,t,vt(this)))}));if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr("class","");if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){b(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=b(this),a=yt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=vt(this))&&G.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":G.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+gt(vt(n))+" ").indexOf(t)>-1)return!0;return!1}});var mt=/\r/g;b.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,b(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=b.map(i,(function(e){return null==e?"":e+""}))),(t=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=b.valHooks[i.type]||b.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(mt,""):null==n?"":n:void 0}}),b.extend({valHooks:{option:{get:function(e){var t=b.find.attr(e,"value");return null!=t?t:gt(b.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!k(n.parentNode,"optgroup"))){if(t=b(n).val(),a)return t;s.push(t)}return s},set:function(e,t){for(var n,r,i=e.options,o=b.makeArray(t),a=i.length;a–;)((r=i[a]).selected=b.inArray(b.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),b.each(["radio","checkbox"],(function(){b.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=b.inArray(b(e).val(),t)>-1}},d.checkOn||(b.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),d.focusin="onfocusin"in e;var xt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};b.extend(b.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,"type")?t.type:t,x=c.call(t,"namespace")?t.namespace.split("."):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!xt.test(m+b.event.triggered)&&(m.indexOf(".")>-1&&(x=m.split("."),m=x.shift(),x.sort()),l=m.indexOf(":")<0&&"on"+m,(t=t[b.expando]?t:new b.Event(m,"object"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:b.makeArray(n,[t]),p=b.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,xt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(G.get(a,"events")||Object.create(null))[t.type]&&G.get(a,"handle"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&X(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!X(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),b.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,bt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,bt),b.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=b.extend(new b.Event,n,{type:e,isSimulated:!0});b.event.trigger(r,null,t)}}),b.fn.extend({trigger:function(e,t){return this.each((function(){b.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return b.event.trigger(e,t,n,!0)}}),d.focusin||b.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){b.event.simulate(t,e.target,b.event.fix(e))};b.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t);i||r.addEventListener(e,n,!0),G.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t)-1;i?G.access(r,t,i):(r.removeEventListener(e,n,!0),G.remove(r,t))}}}));var wt=e.location,Tt={guid:Date.now()},Ct=/\?/;b.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+t),n};var Et=/\[\]$/,St=/\r?\n/g,kt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function Nt(e,t,n,r){var i;if(Array.isArray(t))b.each(t,(function(t,i){n||Et.test(e)?r(e,i):Nt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==x(t))r(e,t);else for(i in t)Nt(e+"["+i+"]",t[i],n,r)}b.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,(function(){i(this.name,this.value)}));else for(n in e)Nt(n,e[n],t,i);return r.join("&")},b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&At.test(this.nodeName)&&!kt.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var n=b(this).val();return null==n?null:Array.isArray(n)?b.map(n,(function(e){return{name:t.name,value:e.replace(St,"\r\n")}})):{name:t.name,value:n.replace(St,"\r\n")}})).get()}});var Dt=/%20/g,jt=/#.*$/,qt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ht=/^(?:GET|HEAD)$/,Ot=/^\/\//,Pt={},Rt={},Mt="*/".concat("*"),It=v.createElement("a");function Wt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(O)||[];if(h(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Ft(e,t,n,r){var i={},o=e===Rt;function a(s){var u;return i[s]=!0,b.each(e[s]||[],(function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function Bt(e,t){var n,r,i=b.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&b.extend(!0,e,r),e}It.href=wt.href,b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Mt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,b.ajaxSettings),t):Bt(b.ajaxSettings,e)},ajaxPrefilter:Wt(Pt),ajaxTransport:Wt(Rt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=b.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?b(h):b.event,y=b.Deferred(),m=b.Callbacks("once memory"),x=d.statusCode||{},w={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Lt.exec(o);)a[t[1].toLowerCase()+" "]=(a[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=a[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||wt.href)+"").replace(Ot,wt.protocol+"//"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||"*").toLowerCase().match(O)||[""],null==d.crossDomain){u=v.createElement("a");try{u.href=d.url,u.href=u.href,d.crossDomain=It.protocol+"//"+It.host!=u.protocol+"//"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=b.param(d.data,d.traditional)),Ft(Pt,d,n,E),l)return E;for(f in(c=b.event&&d.global)&&0==b.active++&&b.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!Ht.test(d.type),i=d.url.replace(jt,""),d.hasContent?d.data&&d.processData&&0===(d.contentType||"").indexOf("application/x-www-form-urlencoded")&&(d.data=d.data.replace(Dt,"+")):(p=d.url.slice(i.length),d.data&&(d.processData||"string"==typeof d.data)&&(i+=(Ct.test(i)?"&":"?")+d.data,delete d.data),!1===d.cache&&(i=i.replace(qt,"$1"),p=(Ct.test(i)?"&":"?")+"_="+Tt.guid+++p),d.url=i+p),d.ifModified&&(b.lastModified[i]&&E.setRequestHeader("If-Modified-Since",b.lastModified[i]),b.etag[i]&&E.setRequestHeader("If-None-Match",b.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader("Content-Type",d.contentType),E.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Mt+"; q=0.01":""):d.accepts["*"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C="abort",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Ft(Rt,d,n,E)){if(E.readyState=1,c&&g.trigger("ajaxSend",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort("timeout")}),d.timeout));try{l=!1,r.send(w,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,"No Transport");function S(t,n,a,u){var f,p,v,w,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||"",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(w=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;"*"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&b.inArray("script",d.dataTypes)>-1&&(d.converters["text script"]=function(){}),w=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(d,w,E,f),f?(d.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(b.lastModified[i]=T),(T=E.getResponseHeader("etag"))&&(b.etag[i]=T)),204===t||"HEAD"===d.type?C="nocontent":304===t?C="notmodified":(C=w.state,p=w.data,f=!(v=w.error))):(v=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?"ajaxSuccess":"ajaxError",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger("ajaxComplete",[E,d]),–b.active||b.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return b.get(e,t,n,"json")},getScript:function(e,t){return b.get(e,void 0,t,"script")}}),b.each(["get","post"],(function(e,t){b[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),b.ajax(b.extend({url:e,type:t,dataType:i,data:n,success:r},b.isPlainObject(e)&&e))}})),b.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),b._evalUrl=function(e,t,n){return b.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){b.globalEval(e,t,n)}})},b.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=b(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){b(this).wrapInner(e.call(this,t))})):this.each((function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){b(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){b(this).replaceWith(this.childNodes)})),this}}),b.expr.pseudos.hidden=function(e){return!b.expr.pseudos.visible(e)},b.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},b.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var $t={0:200,1223:204},_t=b.ajaxSettings.xhr();d.cors=!!_t&&"withCredentials"in _t,d.ajax=_t=!!_t,b.ajaxTransport((function(t){var n,r;if(d.cors||_t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o($t[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),b.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),b.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=b("<script>").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),v.head.appendChild(t[0])},abort:function(){n&&n()}}}));var zt,Ut=[],Xt=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Ut.pop()||b.expando+"_"+Tt.guid++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",(function(t,n,r){var i,o,a,s=!1!==t.jsonp&&(Xt.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&Xt.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=h(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(Xt,"$1"+i):!1!==t.jsonp&&(t.url+=(Ct.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return a||b.error(i+" was not called"),a[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){a=arguments},r.always((function(){void 0===o?b(e).removeProp(i):e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,Ut.push(i)),a&&h(o)&&o(a[0]),a=o=void 0})),"script"})),d.createHTMLDocument=((zt=v.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===zt.childNodes.length),b.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(d.createHTMLDocument?((r=(t=v.implementation.createHTMLDocument("")).createElement("base")).href=v.location.href,t.head.appendChild(r)):t=v),o=!n&&[],(i=A.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&b(o).remove(),b.merge([],i.childNodes)));var r,i,o},b.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return s>-1&&(r=gt(e.slice(s)),e=e.slice(0,s)),h(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),a.length>0&&b.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done((function(e){o=arguments,a.html(r?b("<div>").append(b.parseHTML(e)).find(r):e)})).always(n&&function(e,t){a.each((function(){n.apply(this,o||[e.responseText,t,e])}))}),this},b.expr.pseudos.animated=function(e){return b.grep(b.timers,(function(t){return e===t.elem})).length},b.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=b.css(e,"position"),c=b(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=b.css(e,"top"),u=b.css(e,"left"),("absolute"===l||"fixed"===l)&&(o+u).indexOf("auto")>-1?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),h(t)&&(t=t.call(e,n,b.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},b.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){b.offset.setOffset(this,e,t)}));var t,n,r=this[0];return r?r.getClientRects().length?(t=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===b.css(r,"position"))t=r.getBoundingClientRect();else{for(t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&"static"===b.css(e,"position");)e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=b(e).offset()).top+=b.css(e,"borderTopWidth",!0),i.left+=b.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-b.css(r,"marginTop",!0),left:t.left-i.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map((function(){for(var e=this.offsetParent;e&&"static"===b.css(e,"position");)e=e.offsetParent;return e||ne}))}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},(function(e,t){var n="pageYOffset"===t;b.fn[e]=function(r){return B(this,(function(e,r,i){var o;if(g(e)?o=e:9===e.nodeType&&(o=e.defaultView),void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i}),e,r,arguments.length)}})),b.each(["top","left"],(function(e,t){b.cssHooks[t]=_e(d.pixelPosition,(function(e,n){if(n)return n=$e(e,t),Ie.test(n)?b(e).position()[t]+"px":n}))})),b.each({Height:"height",Width:"width"},(function(e,t){b.each({padding:"inner"+e,content:t,"":"outer"+e},(function(n,r){b.fn[r]=function(i,o){var a=arguments.length&&(n||"boolean"!=typeof i),s=n||(!0===i||!0===o?"margin":"border");return B(this,(function(t,n,i){var o;return g(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(o=t.documentElement,Math.max(t.body["scroll"+e],o["scroll"+e],t.body["offset"+e],o["offset"+e],o["client"+e])):void 0===i?b.css(t,n,s):b.style(t,n,i,s)}),t,a?i:void 0,a)}}))})),b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],(function(e,t){b.fn[t]=function(e){return this.on(t,e)}})),b.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,""):this.off(t,e||"",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),b.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),(function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}));var Vt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;b.proxy=function(e,t){var n,r,o;if("string"==typeof t&&(n=e[t],t=e,e=n),h(e))return r=i.call(arguments,2),(o=function(){return e.apply(t||this,r.concat(i.call(arguments)))}).guid=e.guid=e.guid||b.guid++,o},b.holdReady=function(e){e?b.readyWait++:b.ready(!0)},b.isArray=Array.isArray,b.parseJSON=JSON.parse,b.nodeName=k,b.isFunction=h,b.isWindow=g,b.camelCase=U,b.type=x,b.now=Date.now,b.isNumeric=function(e){var t=b.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},b.trim=function(e){return null==e?"":(e+"").replace(Vt,"")},"function"==typeof define&&define.amd&&define("jquery",[],(function(){return b}));var Gt=e.jQuery,Yt=e.$;return b.noConflict=function(t){return e.$===b&&(e.$=Yt),t&&e.jQuery===b&&(e.jQuery=Gt),b},void 0===t&&(e.jQuery=e.$=b),b}))},n”, ” 460: function _(t,n,i){var o=t(458);function e(){var t=!1,n=!1;this.stopPropagation=function(){t=!0},this.isPropagationStopped=function(){return t},this.stopImmediatePropagation=function(){n=!0},this.isImmediatePropagationStopped=function(){return n}}function r(){this.__nonDataRow=!0}function u(){this.__group=!0,this.level=0,this.count=0,this.value=null,this.title=null,this.collapsed=!1,this.selectChecked=!1,this.totals=null,this.rows=[],this.groups=null,this.groupingKey=null}function s(){this.__groupTotals=!0,this.group=null,this.initialized=!1}function l(){var t=null;this.isActive=function(n){return n?t===n:null!==t},this.activate=function(n){if(n!==t){if(null!==t)throw new Error("SlickGrid.EditorLock.activate: an editController is still active, can’t activate another editController");if(!n.commitCurrentEdit)throw new Error("SlickGrid.EditorLock.activate: editController must implement .commitCurrentEdit()");if(!n.cancelCurrentEdit)throw new Error("SlickGrid.EditorLock.activate: editController must implement .cancelCurrentEdit()");t=n}},this.deactivate=function(n){if(t!==n)throw new Error("SlickGrid.EditorLock.deactivate: specified editController is not the currently active one");t=null},this.commitCurrentEdit=function(){return!t||t.commitCurrentEdit()},this.cancelCurrentEdit=function(){return!t||t.cancelCurrentEdit()}}u.prototype=new r,u.prototype.equals=function(t){return this.value===t.value&&this.count===t.count&&this.collapsed===t.collapsed&&this.title===t.title},s.prototype=new r,n.exports={Event:function(){var t=[];this.subscribe=function(n){t.push(n)},this.unsubscribe=function(n){for(var i=t.length-1;i>=0;i–)t[i]===n&&t.splice(i,1)},this.notify=function(n,i,o){var r;i=i||new e,o=o||this;for(var u=0;u<t.length&&!i.isPropagationStopped()&&!i.isImmediatePropagationStopped();u++)r=t[u].call(o,i,n);return r}},EventData:e,EventHandler:function(){var t=[];this.subscribe=function(n,i){return t.push({event:n,handler:i}),n.subscribe(i),this},this.unsubscribe=function(n,i){for(var o=t.length;o–;)if(t[o].event===n&&t[o].handler===i)return t.splice(o,1),void n.unsubscribe(i);return this},this.unsubscribeAll=function(){for(var n=t.length;n–;)t[n].event.unsubscribe(t[n].handler);return t=[],this}},Range:function(t,n,i,o){void 0===i&&void 0===o&&(i=t,o=n),this.fromRow=Math.min(t,i),this.fromCell=Math.min(n,o),this.toRow=Math.max(t,i),this.toCell=Math.max(n,o),this.isSingleRow=function(){return this.fromRow==this.toRow},this.isSingleCell=function(){return this.fromRow==this.toRow&&this.fromCell==this.toCell},this.contains=function(t,n){return t>=this.fromRow&&t<=this.toRow&&n>=this.fromCell&&n<=this.toCell},this.toString=function(){return this.isSingleCell()?"("+this.fromRow+":"+this.fromCell+")":"("+this.fromRow+":"+this.fromCell+" - "+this.toRow+":"+this.toCell+")"}},NonDataRow:r,Group:u,GroupTotals:s,EditorLock:l,GlobalEditorLock:new l,TreeColumns:function(t){var n={};function i(t,n){return t.filter((function(t){var o=n.call(t);return o&&t.columns&&(t.columns=i(t.columns,n)),o&&(!t.columns||t.columns.length)}))}function e(t){return void 0===t?-1:t}function r(t){var n=[];if(t.hasOwnProperty("length"))for(var i=0;i<t.length;i++)n=n.concat(r(t[i]));else{if(!t.hasOwnProperty("columns"))return t;n=n.concat(r(t.columns))}return n}function u(){return o.extend(!0,[],t)}!function t(i){i.forEach((function(i){n[i.id]=i,i.columns&&t(i.columns)}))}(t),this.hasDepth=function(){for(var n in t)if(t[n].hasOwnProperty("columns"))return!0;return!1},this.getTreeColumns=function(){return t},this.extractColumns=function(){return this.hasDepth()?r(t):t},this.getDepth=function(){return function t(n){if(!n.length)return n.columns?1+t(n.columns):1;for(var i in n)return t(n[i])}(t)},this.getColumnsInDepth=function(n){return function t(n,i,o){var e=[];if(i==(o=o||0))return n.length&&n.forEach((function(t){t.columns&&(t.extractColumns=function(){return r(t)})})),n;for(var u in n)n[u].columns&&(e=e.concat(t(n[u].columns,i,o+1)));return e}(t,n)},this.getColumnsInGroup=function(t){return r(t)},this.visibleColumns=function(){return i(u(),(function(){return this.visible}))},this.filter=function(t){return i(u(),t)},this.reOrder=function(n){return function t(n,i){n.sort((function(t,n){return e(i.getColumnIndex(t.id))-e(i.getColumnIndex(n.id))})).forEach((function(n){n.columns&&t(n.columns,i)}))}(t,n)},this.getById=function(t){return n[t]},this.getInIds=function(t){return t.map((function(t){return n[t]}))}},keyCode:{SPACE:8,BACKSPACE:8,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,ESC:27,HOME:36,INSERT:45,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,RIGHT:39,TAB:9,UP:38,A:65,C:67,V:86},preClickClassName:"slick-edit-preclick",GridAutosizeColsMode:{None:"NOA",LegacyOff:"LOF",LegacyForceFit:"LFF",IgnoreViewport:"IGV",FitColsToViewport:"FCV",FitViewportToCols:"FVC"},ColAutosizeMode:{Locked:"LCK",Guide:"GUI",Content:"CON",ContentIntelligent:"CTI"},RowSelectionMode:{FirstRow:"FS1",FirstNRows:"FSN",AllRows:"ALL",LastRow:"LS1"},ValueFilterMode:{None:"NONE",DeDuplicate:"DEDP",GetGreatestAndSub:"GR8T",GetLongestTextAndSub:"LNSB",GetLongestText:"LNSC"},WidthEvalMode:{CanvasTextSize:"CANV",HTML:"HTML"}}},n”, ” 461: function _(e,t,o){var l=e(458),n=e(460);t.exports={CheckboxSelectColumn:function(e){var t,o=null,i=k(),c=new n.EventHandler,r={},d=!1,a=l.extend(!0,{},{columnId:"_checkbox_selector",cssClass:null,hideSelectAllCheckbox:!1,toolTip:"Select/Deselect All",width:30,hideInColumnTitleRow:!1,hideInFilterHeaderRow:!0},e);function s(){t.updateColumnHeader(a.columnId,"","")}function u(){l("#filter-checkbox-selectall-container").hide()}function h(e,n){var c,s,u,h=t.getSelectedRows(),f={},p=0;if("function"==typeof o)for(u=0;u<t.getDataLength();u++){C(s,t.getDataItem(u),t)||p++}var b=[];for(s=0;s<h.length;s++){c=h[s],C(s,t.getDataItem(c),t)?(f[c]=!0,f[c]!==r[c]&&(t.invalidateRow(c),delete r[c])):b.push(c)}for(s in r)t.invalidateRow(s);(r=f,t.render(),d=h.length&&h.length+p>=t.getDataLength(),a.hideInColumnTitleRow||a.hideSelectAllCheckbox||R(d),a.hideInFilterHeaderRow)||l("#header-filter-selector"+i).prop("checked",d);if(b.length>0){for(s=0;s<b.length;s++){var m=h.indexOf(b[s]);h.splice(m,1)}t.setSelectedRows(h)}}function f(e,o){32==e.which&&t.getColumns()[o.cell].id===a.columnId&&(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit()||b(o.row),e.preventDefault(),e.stopImmediatePropagation())}function p(e,o){if(t.getColumns()[o.cell].id===a.columnId&&l(e.target).is(":checkbox")){if(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit())return e.preventDefault(),void e.stopImmediatePropagation();b(o.row),e.stopPropagation(),e.stopImmediatePropagation()}}function b(e){var o=t.getDataItem(e);C(e,o,t)&&(r[e]?t.setSelectedRows(l.grep(t.getSelectedRows(),(function(t){return t!=e}))):t.setSelectedRows(t.getSelectedRows().concat(e)),t.setActiveCell(e,function(){if(null===g){g=0;for(var e=t.getColumns(),o=0;o<e.length;o++)e[o].id==a.columnId&&(g=o)}return g}()))}function m(e,o){if(o.column.id==a.columnId&&l(e.target).is(":checkbox")){if(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit())return e.preventDefault(),void e.stopImmediatePropagation();if(l(e.target).is(":checked")){for(var n=[],i=0;i<t.getDataLength();i++){C(i,t.getDataItem(i),t)&&n.push(i)}t.setSelectedRows(n)}else t.setSelectedRows([]);e.stopPropagation(),e.stopImmediatePropagation()}}"function"==typeof a.selectableOverride&&v(a.selectableOverride);var g=null;function k(){return Math.round(1e7*Math.random())}function w(e,t,o,l,n,i){var c=k()+e;return n&&C(e,n,i)?r[e]?"<input id=’selector"+c+"’ type=’checkbox’ checked=’checked’><label for=’selector"+c+"’></label>":"<input id=’selector"+c+"’ type=’checkbox’><label for=’selector"+c+"’></label>":null}function C(e,t,l){return"function"!=typeof o||o(e,t,l)}function R(e){e?t.updateColumnHeader(a.columnId,"<input id=’header-selector"+i+"’ type=’checkbox’ checked=’checked’><label for=’header-selector"+i+"’></label>",a.toolTip):t.updateColumnHeader(a.columnId,"<input id=’header-selector"+i+"’ type=’checkbox’><label for=’header-selector"+i+"’></label>",a.toolTip)}function v(e){o=e}l.extend(this,{init:function(e){t=e,c.subscribe(t.onSelectedRowsChanged,h).subscribe(t.onClick,p).subscribe(t.onKeyDown,f),a.hideInFilterHeaderRow||function(e){e.onHeaderRowCellRendered.subscribe((function(e,t){"sel"===t.column.field&&(l(t.node).empty(),l("<span id=’filter-checkbox-selectall-container’><input id=’header-filter-selector"+i+"’ type=’checkbox’><label for=’header-filter-selector"+i+"’></label></span>").appendTo(t.node).on("click",(function(e){m(e,t)})))}))}(e),a.hideInColumnTitleRow||c.subscribe(t.onHeaderClick,m)},destroy:function(){c.unsubscribeAll()},pluginName:"CheckboxSelectColumn",deSelectRows:function(e){var o,n=e.length,i=[];for(o=0;o<n;o++)r[e[o]]&&(i[i.length]=e[o]);t.setSelectedRows(l.grep(t.getSelectedRows(),(function(e){return i.indexOf(e)<0})))},selectRows:function(e){var o,l=e.length,n=[];for(o=0;o<l;o++)r[e[o]]||(n[n.length]=e[o]);t.setSelectedRows(t.getSelectedRows().concat(n))},getColumnDefinition:function(){return{id:a.columnId,name:a.hideSelectAllCheckbox||a.hideInColumnTitleRow?"":"<input id=’header-selector"+i+"’ type=’checkbox’><label for=’header-selector"+i+"’></label>",toolTip:a.hideSelectAllCheckbox||a.hideInColumnTitleRow?"":a.toolTip,field:"sel",width:a.width,resizable:!1,sortable:!1,cssClass:a.cssClass,hideSelectAllCheckbox:a.hideSelectAllCheckbox,formatter:w}},getOptions:function(){return a},selectableOverride:v,setOptions:function(e){if((a=l.extend(!0,{},a,e)).hideSelectAllCheckbox)s(),u();else if(a.hideInColumnTitleRow?s():(R(d),c.subscribe(t.onHeaderClick,m)),a.hideInFilterHeaderRow)u();else{var o=l("#filter-checkbox-selectall-container");o.show(),o.find(‘input[type="checkbox"]’).prop("checked",d)}}})}}},n”, ” 462: function _(e,t,o){var l=e(458),n=e(460),a=n.keyCode;t.exports={CellExternalCopyManager:function(e){var t,o,r=this,i=e||{},s=i.copiedCellStyleLayerKey||"copy-manager",u=i.copiedCellStyle||"copied",c=0,d=i.bodyElement||document.body,f=i.onCopyInit||null,h=i.onCopySuccess||null;function C(e){if(i.headerColumnValueExtractor){var t=i.headerColumnValueExtractor(e);if(t)return t}return e.name}function m(e,o,n){if(i.dataItemColumnValueExtractor){var a=i.dataItemColumnValueExtractor(e,o);if(a)return a}var r="";if(o.editor){var s={container:l("<p>"),column:o,position:{top:0,left:0},grid:t,event:n},u=new o.editor(s);u.loadValue(e),r=u.serializeValue(),u.destroy()}else r=e[o.field];return r}function g(e,o,n){if(o.denyPaste)return null;if(i.dataItemColumnValueSetter)return i.dataItemColumnValueSetter(e,o,n);if(o.editor){var a={container:l("body"),column:o,position:{top:0,left:0},grid:t},r=new o.editor(a);r.loadValue(e),r.applyValue(e,n),r.destroy()}else e[o.field]=n}function p(e){var t=document.createElement("textarea");return t.style.position="absolute",t.style.left="-1000px",t.style.top=document.body.scrollTop+"px",t.value=e,d.appendChild(t),t.select(),t}function y(e,l){var n;if(!t.getEditorLock().isActive()||t.getOptions().autoEdit){if(e.which==a.ESC&&o&&(e.preventDefault(),w(),r.onCopyCancelled.notify({ranges:o}),o=null),(e.which===a.C||e.which===a.INSERT)&&(e.ctrlKey||e.metaKey)&&!e.shiftKey&&(f&&f.call(),0!==(n=t.getSelectionModel().getSelectedRanges()).length)){o=n,v(n),r.onCopyCells.notify({ranges:n});for(var s=t.getColumns(),u="",c=0;c<n.length;c++){for(var y=n[c],D=[],S=y.fromRow;S<y.toRow+1;S++){var R=[],x=t.getDataItem(S);if(0===D.length&&i.includeHeaderWhenCopying){for(var E=[],V=y.fromCell;V<y.toCell+1;V++)s[V].name.length>0&&E.push(C(s[V]));D.push(E.join("\t"))}for(V=y.fromCell;V<y.toCell+1;V++)R.push(m(x,s[V],e));D.push(R.join("\t"))}u+=D.join("\r\n")+"\r\n"}if(window.clipboardData)return window.clipboardData.setData("Text",u),!0;var b=document.activeElement;if((M=p(u)).focus(),setTimeout((function(){d.removeChild(M),b?b.focus():console.log("Not element to restore focus to after copy?")}),100),h){var I=0;I=1===n.length?n[0].toRow+1-n[0].fromRow:n.length,h.call(this,I)}return!1}if(!i.readOnlyMode&&(e.which===a.V&&(e.ctrlKey||e.metaKey)&&!e.shiftKey||e.which===a.INSERT&&e.shiftKey&&!e.ctrlKey)){var M=p("");return setTimeout((function(){!function(e,t){var o=e.getColumns(),l=t.value.split(/[\n\f\r]/);""===l[l.length-1]&&l.pop();var n=[],a=0;d.removeChild(t);for(var s=0;s<l.length;s++)""!==l[s]?n[a++]=l[s].split("\t"):n[a++]=[""];var u=e.getActiveCell(),c=e.getSelectionModel().getSelectedRanges(),f=c&&c.length?c[0]:null,h=null,C=null;if(f)h=f.fromRow,C=f.fromCell;else{if(!u)return;h=u.row,C=u.cell}var m=!1,p=n.length,y=n.length?n[0].length:0;1==n.length&&1==n[0].length&&f&&(m=!0,p=f.toRow-f.fromRow+1,y=f.toCell-f.fromCell+1);var w=e.getData().length-h,D=0;if(w<p&&i.newRowCreator){var S=e.getData();for(D=1;D<=p-w;D++)S.push({});e.setData(S),e.render()}var R=h+p>e.getDataLength();if(i.newRowCreator&&R){var x=h+p-e.getDataLength();i.newRowCreator(x)}var E={isClipboardCommand:!0,clippedRange:n,oldValues:[],cellExternalCopyManager:r,_options:i,setDataItemValueForColumn:g,markCopySelection:v,oneCellToMultiple:m,activeRow:h,activeCell:C,destH:p,destW:y,maxDestY:e.getDataLength(),maxDestX:e.getColumns().length,h:0,w:0,execute:function(){this.h=0;for(var t=0;t<this.destH;t++){this.oldValues[t]=[],this.w=0,this.h++;for(var l=0;l<this.destW;l++){this.w++;var a=h+t,r=C+l;if(a<this.maxDestY&&r<this.maxDestX){e.getCellNode(a,r);var i=e.getDataItem(a);this.oldValues[t][l]=i[o[r].field],m?this.setDataItemValueForColumn(i,o[r],n[0][0]):this.setDataItemValueForColumn(i,o[r],n[t]?n[t][l]:""),e.updateCell(a,r),e.onCellChange.notify({row:a,cell:r,item:i,grid:e})}}}var s={fromCell:C,fromRow:h,toCell:C+this.w-1,toRow:h+this.h-1};this.markCopySelection([s]),e.getSelectionModel().setSelectedRanges([s]),this.cellExternalCopyManager.onPasteCells.notify({ranges:[s]})},undo:function(){for(var t=0;t<this.destH;t++)for(var l=0;l<this.destW;l++){var n=h+t,a=C+l;if(n<this.maxDestY&&a<this.maxDestX){e.getCellNode(n,a);var r=e.getDataItem(n);m?this.setDataItemValueForColumn(r,o[a],this.oldValues[0][0]):this.setDataItemValueForColumn(r,o[a],this.oldValues[t][l]),e.updateCell(n,a),e.onCellChange.notify({row:n,cell:a,item:r,grid:e})}}var i={fromCell:C,fromRow:h,toCell:C+this.w-1,toRow:h+this.h-1};if(this.markCopySelection([i]),e.getSelectionModel().setSelectedRanges([i]),this.cellExternalCopyManager.onPasteCells.notify({ranges:[i]}),D>1){for(var s=e.getData();D>1;D–)s.splice(s.length-1,1);e.setData(s),e.render()}}};i.clipboardCommandHandler?i.clipboardCommandHandler(E):E.execute()}(t,M)}),100),!1}}}function v(e){w();for(var o=t.getColumns(),l={},n=0;n<e.length;n++)for(var a=e[n].fromRow;a<=e[n].toRow;a++){l[a]={};for(var i=e[n].fromCell;i<=e[n].toCell&&i<o.length;i++)l[a][o[i].id]=u}t.setCellCssStyles(s,l),clearTimeout(c),c=setTimeout((function(){r.clearCopySelection()}),2e3)}function w(){t.removeCellCssStyles(s)}l.extend(this,{init:function(e){(t=e).onKeyDown.subscribe(y);var o=e.getSelectionModel();if(!o)throw new Error("Selection model is mandatory for this plugin. Please set a selection model on the grid before adding this plugin: grid.setSelectionModel(new Slick.CellSelectionModel())");o.onSelectedRangesChanged.subscribe((function(e,o){t.focus()}))},destroy:function(){t.onKeyDown.unsubscribe(y)},pluginName:"CellExternalCopyManager",clearCopySelection:w,handleKeyDown:y,onCopyCells:new n.Event,onCopyCancelled:new n.Event,onPasteCells:new n.Event,setIncludeHeaderWhenCopying:function(e){i.includeHeaderWhenCopying=e}})}}},n”, ” 463: function _(r,t,o){var _=r(1);_.__exportStar(r(460),t.exports),_.__exportStar(r(464),t.exports),_.__exportStar(r(467),t.exports),_.__exportStar(r(468),t.exports),_.__exportStar(r(469),t.exports),_.__exportStar(r(470),t.exports),_.__exportStar(r(471),t.exports)},n”, ” 464: function _(require,module,exports){n”, ” /n”, ” * @licensen”, ” * (c) 2009-2016 Michael Leibmann”, ” * michael{dot}leibman{at}gmail{dot}comn”, ” * http://github.com/mleibman/slickgridn”, ” n”, ” * Distributed under MIT license.n”, ” * All rights reserved.n”, ” *n”, ” * SlickGrid v2.4n”, ” *n”, ” * NOTES:n”, ” * Cell/row DOM manipulations are done directly bypassing jQuery’s DOM manipulation methods.n”, ” * This increases the speed dramatically, but can only be done safely because there are no event handlersn”, ” * or data associated with any cell/row DOM nodes. Cell editors must make sure they implement .destroy()n”, ” * and do proper cleanup.n”, ” */n”, ” var $=require(458),Slick=require(460),scrollbarDimensions,maxSupportedCssHeight;function SlickGrid(container,data,columns,options){$.fn.drag||require(465),$.fn.drop||require(466);var defaults={alwaysShowVerticalScroll:!1,alwaysAllowHorizontalScroll:!1,explicitInitialization:!1,rowHeight:25,defaultColumnWidth:80,enableAddRow:!1,leaveSpaceForNewRows:!1,editable:!1,autoEdit:!0,suppressActiveCellChangeOnEdit:!1,enableCellNavigation:!0,enableColumnReorder:!0,asyncEditorLoading:!1,asyncEditorLoadDelay:100,forceFitColumns:!1,enableAsyncPostRender:!1,asyncPostRenderDelay:50,enableAsyncPostRenderCleanup:!1,asyncPostRenderCleanupDelay:40,autoHeight:!1,editorLock:Slick.GlobalEditorLock,showColumnHeader:!0,showHeaderRow:!1,headerRowHeight:25,createFooterRow:!1,showFooterRow:!1,footerRowHeight:25,createPreHeaderPanel:!1,showPreHeaderPanel:!1,preHeaderPanelHeight:25,showTopPanel:!1,topPanelHeight:25,formatterFactory:null,editorFactory:null,cellFlashingCssClass:"flashing",selectedCellCssClass:"selected",multiSelect:!0,enableTextSelectionOnCells:!1,dataItemColumnValueExtractor:null,frozenBottom:!1,frozenColumn:-1,frozenRow:-1,fullWidthRows:!1,multiColumnSort:!1,numberedMultiColumnSort:!1,tristateMultiColumnSort:!1,sortColNumberInSeparateSpan:!1,defaultFormatter,forceSyncScrolling:!1,addNewRowCssClass:"new-row",preserveCopiedSelectionOnPaste:!1,showCellSelection:!0,viewportClass:null,minRowBuffer:3,emulatePagingWhenScrolling:!0,editorCellNavOnLRKeys:!1,doPaging:!0,autosizeColsMode:Slick.GridAutosizeColsMode.LegacyOff,autosizeColPaddingPx:4,autosizeTextAvgToMWidthRatio:.75,viewportSwitchToScrollModeWidthPercent:void 0,viewportMinWidthPx:void 0,viewportMaxWidthPx:void 0},columnDefaults={name:"",resizable:!0,sortable:!1,minWidth:30,maxWidth:void 0,rerenderOnResize:!1,headerCssClass:null,defaultSortAsc:!0,focusable:!0,selectable:!0},columnAutosizeDefaults={ignoreHeaderText:!1,colValueArray:void 0,allowAddlPercent:void 0,formatterOverride:void 0,autosizeMode:Slick.ColAutosizeMode.ContentIntelligent,rowSelectionModeOnInit:void 0,rowSelectionMode:Slick.RowSelectionMode.FirstNRows,rowSelectionCount:100,valueFilterMode:Slick.ValueFilterMode.None,widthEvalMode:Slick.WidthEvalMode.CanvasTextSize,sizeToRemaining:void 0,widthPx:void 0,colDataTypeOf:void 0},th,h,ph,n,cj,page=0,offset=0,vScrollDir=1,initialized=!1,$container,uid="slickgrid_"+Math.round(1e6*Math.random()),self=this,$focusSink,$focusSink2,$groupHeaders=$(),$headerScroller,$headers,$headerRow,$headerRowScroller,$headerRowSpacerL,$headerRowSpacerR,$footerRow,$footerRowScroller,$footerRowSpacerL,$footerRowSpacerR,$preHeaderPanel,$preHeaderPanelScroller,$preHeaderPanelSpacer,$preHeaderPanelR,$preHeaderPanelScrollerR,$preHeaderPanelSpacerR,$topPanelScroller,$topPanel,$viewport,$canvas,$style,$boundAncestors,treeColumns,stylesheet,columnCssRulesL,columnCssRulesR,viewportH,viewportW,canvasWidth,canvasWidthL,canvasWidthR,headersWidth,headersWidthL,headersWidthR,viewportHasHScroll,viewportHasVScroll,headerColumnWidthDiff=0,headerColumnHeightDiff=0,cellWidthDiff=0,cellHeightDiff=0,jQueryNewWidthBehaviour=!1,absoluteColumnMinWidth,hasFrozenRows=!1,frozenRowsHeight=0,actualFrozenRow=-1,paneTopH=0,paneBottomH=0,viewportTopH=0,viewportBottomH=0,topPanelH=0,headerRowH=0,footerRowH=0,tabbingDirection=1,$activeCanvasNode,$activeViewportNode,activePosX,activeRow,activeCell,activeCellNode=null,currentEditor=null,serializedEditorValue,editController,rowsCache={},renderedRows=0,numVisibleRows=0,prevScrollTop=0,scrollTop=0,lastRenderedScrollTop=0,lastRenderedScrollLeft=0,prevScrollLeft=0,scrollLeft=0,selectionModel,selectedRows=[],plugins=[],cellCssClasses={},columnsById={},sortColumns=[],columnPosLeft=[],columnPosRight=[],pagingActive=!1,pagingIsLastPage=!1,scrollThrottle=ActionThrottle(render,50),h_editorLoader=null,h_render=null,h_postrender=null,h_postrenderCleanup=null,postProcessedRows={},postProcessToRow=null,postProcessFromRow=null,postProcessedCleanupQueue=[],postProcessgroupId=0,counter_rows_rendered=0,counter_rows_removed=0,rowNodeFromLastMouseWheelEvent,zombieRowNodeFromLastMouseWheelEvent,zombieRowCacheFromLastMouseWheelEvent,zombieRowPostProcessedFromLastMouseWheelEvent,$paneHeaderL,$paneHeaderR,$paneTopL,$paneTopR,$paneBottomL,$paneBottomR,$headerScrollerL,$headerScrollerR,$headerL,$headerR,$groupHeadersL,$groupHeadersR,$headerRowScrollerL,$headerRowScrollerR,$footerRowScrollerL,$footerRowScrollerR,$headerRowL,$headerRowR,$footerRowL,$footerRowR,$topPanelScrollerL,$topPanelScrollerR,$topPanelL,$topPanelR,$viewportTopL,$viewportTopR,$viewportBottomL,$viewportBottomR,$canvasTopL,$canvasTopR,$canvasBottomL,$canvasBottomR,$viewportScrollContainerX,$viewportScrollContainerY,$headerScrollContainer,$headerRowScrollContainer,$footerRowScrollContainer,cssShow={position:"absolute",visibility:"hidden",display:"block"},$hiddenParents,oldProps=[],columnResizeDragging=!1;function init(){if(($container=container instanceof $?container:$(container)).length<1)throw new Error("SlickGrid requires a valid container, "+container+" does not exist in the DOM.");if(cacheCssForHiddenInit(),maxSupportedCssHeight=maxSupportedCssHeight||getMaxSupportedCssHeight(),options=$.extend({},defaults,options),validateAndEnforceOptions(),columnDefaults.width=options.defaultColumnWidth,treeColumns=new Slick.TreeColumns(columns),columns=treeColumns.extractColumns(),updateColumnProps(),options.enableColumnReorder&&!$.fn.sortable)throw new Error("SlickGrid’s ‘enableColumnReorder = true’ option requires jquery-ui.sortable module to be loaded");if(editController={commitCurrentEdit,cancelCurrentEdit},$container.empty().css("overflow","hidden").css("outline",0).addClass(uid).addClass("ui-widget"),/relative|absolute|fixed/.test($container.css("position"))||$container.css("position","relative"),$focusSink=$("<div tabIndex=’0’ hideFocus style=’position:fixed;width:0;height:0;top:0;left:0;outline:0;’></div>").appendTo($container),$paneHeaderL=$("<div class=’slick-pane slick-pane-header slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneHeaderR=$("<div class=’slick-pane slick-pane-header slick-pane-right’ tabIndex=’0’ />").appendTo($container),$paneTopL=$("<div class=’slick-pane slick-pane-top slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneTopR=$("<div class=’slick-pane slick-pane-top slick-pane-right’ tabIndex=’0’ />").appendTo($container),$paneBottomL=$("<div class=’slick-pane slick-pane-bottom slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneBottomR=$("<div class=’slick-pane slick-pane-bottom slick-pane-right’ tabIndex=’0’ />").appendTo($container),options.createPreHeaderPanel&&($preHeaderPanelScroller=$("<div class=’slick-preheader-panel ui-state-default’ style=’overflow:hidden;position:relative;’ />").appendTo($paneHeaderL),$preHeaderPanel=$("<div />").appendTo($preHeaderPanelScroller),$preHeaderPanelSpacer=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($preHeaderPanelScroller),$preHeaderPanelScrollerR=$("<div class=’slick-preheader-panel ui-state-default’ style=’overflow:hidden;position:relative;’ />").appendTo($paneHeaderR),$preHeaderPanelR=$("<div />").appendTo($preHeaderPanelScrollerR),$preHeaderPanelSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($preHeaderPanelScrollerR),options.showPreHeaderPanel||($preHeaderPanelScroller.hide(),$preHeaderPanelScrollerR.hide())),$headerScrollerL=$("<div class=’slick-header ui-state-default slick-header-left’ />").appendTo($paneHeaderL),$headerScrollerR=$("<div class=’slick-header ui-state-default slick-header-right’ />").appendTo($paneHeaderR),$headerScroller=$().add($headerScrollerL).add($headerScrollerR),treeColumns.hasDepth()){$groupHeadersL=[],$groupHeadersR=[];for(var e=0;e<treeColumns.getDepth()-1;e++)$groupHeadersL[e]=$("<div class=’slick-group-header-columns slick-group-header-columns-left’ style=’left:-1000px’ />").appendTo($headerScrollerL),$groupHeadersR[e]=$("<div class=’slick-group-header-columns slick-group-header-columns-right’ style=’left:-1000px’ />").appendTo($headerScrollerR);$groupHeaders=$().add($groupHeadersL).add($groupHeadersR)}$headerL=$("<div class=’slick-header-columns slick-header-columns-left’ style=’left:-1000px’ />").appendTo($headerScrollerL),$headerR=$("<div class=’slick-header-columns slick-header-columns-right’ style=’left:-1000px’ />").appendTo($headerScrollerR),$headers=$().add($headerL).add($headerR),$headerRowScrollerL=$("<div class=’slick-headerrow ui-state-default’ />").appendTo($paneTopL),$headerRowScrollerR=$("<div class=’slick-headerrow ui-state-default’ />").appendTo($paneTopR),$headerRowScroller=$().add($headerRowScrollerL).add($headerRowScrollerR),$headerRowSpacerL=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($headerRowScrollerL),$headerRowSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($headerRowScrollerR),$headerRowL=$("<div class=’slick-headerrow-columns slick-headerrow-columns-left’ />").appendTo($headerRowScrollerL),$headerRowR=$("<div class=’slick-headerrow-columns slick-headerrow-columns-right’ />").appendTo($headerRowScrollerR),$headerRow=$().add($headerRowL).add($headerRowR),$topPanelScrollerL=$("<div class=’slick-top-panel-scroller ui-state-default’ />").appendTo($paneTopL),$topPanelScrollerR=$("<div class=’slick-top-panel-scroller ui-state-default’ />").appendTo($paneTopR),$topPanelScroller=$().add($topPanelScrollerL).add($topPanelScrollerR),$topPanelL=$("<div class=’slick-top-panel’ style=’width:10000px’ />").appendTo($topPanelScrollerL),$topPanelR=$("<div class=’slick-top-panel’ style=’width:10000px’ />").appendTo($topPanelScrollerR),$topPanel=$().add($topPanelL).add($topPanelR),options.showColumnHeader||$headerScroller.hide(),options.showTopPanel||$topPanelScroller.hide(),options.showHeaderRow||$headerRowScroller.hide(),$viewportTopL=$("<div class=’slick-viewport slick-viewport-top slick-viewport-left’ tabIndex=’0’ hideFocus />").appendTo($paneTopL),$viewportTopR=$("<div class=’slick-viewport slick-viewport-top slick-viewport-right’ tabIndex=’0’ hideFocus />").appendTo($paneTopR),$viewportBottomL=$("<div class=’slick-viewport slick-viewport-bottom slick-viewport-left’ tabIndex=’0’ hideFocus />").appendTo($paneBottomL),$viewportBottomR=$("<div class=’slick-viewport slick-viewport-bottom slick-viewport-right’ tabIndex=’0’ hideFocus />").appendTo($paneBottomR),$viewport=$().add($viewportTopL).add($viewportTopR).add($viewportBottomL).add($viewportBottomR),$activeViewportNode=$viewportTopL,$canvasTopL=$("<div class=’grid-canvas grid-canvas-top grid-canvas-left’ tabIndex=’0’ hideFocus />").appendTo($viewportTopL),$canvasTopR=$("<div class=’grid-canvas grid-canvas-top grid-canvas-right’ tabIndex=’0’ hideFocus />").appendTo($viewportTopR),$canvasBottomL=$("<div class=’grid-canvas grid-canvas-bottom grid-canvas-left’ tabIndex=’0’ hideFocus />").appendTo($viewportBottomL),$canvasBottomR=$("<div class=’grid-canvas grid-canvas-bottom grid-canvas-right’ tabIndex=’0’ hideFocus />").appendTo($viewportBottomR),options.viewportClass&&$viewport.toggleClass(options.viewportClass,!0),$canvas=$().add($canvasTopL).add($canvasTopR).add($canvasBottomL).add($canvasBottomR),scrollbarDimensions=scrollbarDimensions||measureScrollbar(),$activeCanvasNode=$canvasTopL,$preHeaderPanelSpacer&&$preHeaderPanelSpacer.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),$headers.width(getHeadersWidth()),$headerRowSpacerL.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),$headerRowSpacerR.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),options.createFooterRow&&($footerRowScrollerR=$("<div class=’slick-footerrow ui-state-default’ />").appendTo($paneTopR),$footerRowScrollerL=$("<div class=’slick-footerrow ui-state-default’ />").appendTo($paneTopL),$footerRowScroller=$().add($footerRowScrollerL).add($footerRowScrollerR),$footerRowSpacerL=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").css("width",getCanvasWidth()+scrollbarDimensions.width+"px").appendTo($footerRowScrollerL),$footerRowSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").css("width",getCanvasWidth()+scrollbarDimensions.width+"px").appendTo($footerRowScrollerR),$footerRowL=$("<div class=’slick-footerrow-columns slick-footerrow-columns-left’ />").appendTo($footerRowScrollerL),$footerRowR=$("<div class=’slick-footerrow-columns slick-footerrow-columns-right’ />").appendTo($footerRowScrollerR),$footerRow=$().add($footerRowL).add($footerRowR),options.showFooterRow||$footerRowScroller.hide()),$focusSink2=$focusSink.clone().appendTo($container),options.explicitInitialization||finishInitialization()}function finishInitialization(){initialized||(initialized=!0,getViewportWidth(),getViewportHeight(),measureCellPaddingAndBorder(),disableSelection($headers),options.enableTextSelectionOnCells||$viewport.on("selectstart.ui",(function(e){return $(e.target).is("input,textarea")})),setFrozenOptions(),setPaneVisibility(),setScroller(),setOverflow(),updateColumnCaches(),createColumnHeaders(),createColumnGroupHeaders(),createColumnFooter(),setupColumnSort(),createCssRules(),resizeCanvas(),bindAncestorScrollEvents(),$container.on("resize.slickgrid",resizeCanvas),$viewport.on("scroll",handleScroll),$.fn.mousewheel&&$viewport.on("mousewheel",handleMouseWheel),$headerScroller.on("contextmenu",handleHeaderContextMenu).on("click",handleHeaderClick).on("mouseenter",".slick-header-column",handleHeaderMouseEnter).on("mouseleave",".slick-header-column",handleHeaderMouseLeave),$headerRowScroller.on("scroll",handleHeaderRowScroll),options.createFooterRow&&($footerRow.on("contextmenu",handleFooterContextMenu).on("click",handleFooterClick),$footerRowScroller.on("scroll",handleFooterRowScroll)),options.createPreHeaderPanel&&$preHeaderPanelScroller.on("scroll",handlePreHeaderPanelScroll),$focusSink.add($focusSink2).on("keydown",handleKeyDown),$canvas.on("keydown",handleKeyDown).on("click",handleClick).on("dblclick",handleDblClick).on("contextmenu",handleContextMenu).on("draginit",handleDragInit).on("dragstart",{distance:3},handleDragStart).on("drag",handleDrag).on("dragend",handleDragEnd).on("mouseenter",".slick-cell",handleMouseEnter).on("mouseleave",".slick-cell",handleMouseLeave),restoreCssFromHiddenInit())}function cacheCssForHiddenInit(){($hiddenParents=$container.parents().addBack().not(":visible")).each((function(){var e={};for(var o in cssShow)e[o]=this.style[o],this.style[o]=cssShow[o];oldProps.push(e)}))}function restoreCssFromHiddenInit(){$hiddenParents.each((function(e){var o=oldProps[e];for(var t in cssShow)this.style[t]=o[t]}))}function hasFrozenColumns(){return options.frozenColumn>-1}function registerPlugin(e){plugins.unshift(e),e.init(self)}function unregisterPlugin(e){for(var o=plugins.length;o>=0;o–)if(plugins[o]===e){plugins[o].destroy&&plugins[o].destroy(),plugins.splice(o,1);break}}function getPluginByName(e){for(var o=plugins.length-1;o>=0;o–)if(plugins[o].pluginName===e)return plugins[o]}function setSelectionModel(e){selectionModel&&(selectionModel.onSelectedRangesChanged.unsubscribe(handleSelectedRangesChanged),selectionModel.destroy&&selectionModel.destroy()),(selectionModel=e)&&(selectionModel.init(self),selectionModel.onSelectedRangesChanged.subscribe(handleSelectedRangesChanged))}function getSelectionModel(){return selectionModel}function getCanvasNode(e,o){e||(e=0),o||(o=0);var t="number"==typeof e?e:getColumnIndex(e);return hasFrozenRows&&o>=actualFrozenRow+(options.frozenBottom?0:1)?hasFrozenColumns()&&t>options.frozenColumn?$canvasBottomR[0]:$canvasBottomL[0]:hasFrozenColumns()&&t>options.frozenColumn?$canvasTopR[0]:$canvasTopL[0]}function getActiveCanvasNode(e){return setActiveCanvasNode(e),$activeCanvasNode[0]}function getCanvases(){return $canvas}function setActiveCanvasNode(e){e&&($activeCanvasNode=$(e.target).closest(".grid-canvas"))}function getViewportNode(){return $viewport[0]}function getActiveViewportNode(e){return setActiveViewPortNode(e),$activeViewportNode[0]}function setActiveViewportNode(e){e&&($activeViewportNode=$(e.target).closest(".slick-viewport"))}function measureScrollbar(){var e=$(‘<div class="’+$viewport.className+’" style="position:absolute; top:-10000px; left:-10000px; overflow:auto; width:100px; height:100px;"></div>’).appendTo("body"),o=$(‘<div style="width:200px; height:200px; overflow:auto;"></div>’).appendTo(e),t={width:e[0].offsetWidth-e[0].clientWidth,height:e[0].offsetHeight-e[0].clientHeight};return o.remove(),e.remove(),t}function getHeadersWidth(){headersWidth=headersWidthL=headersWidthR=0;for(var e=!options.autoHeight,o=0,t=columns.length;o<t;o++){var n=columns[o].width;options.frozenColumn>-1&&o>options.frozenColumn?headersWidthR+=n:headersWidthL+=n}return e&&(options.frozenColumn>-1&&o>options.frozenColumn?headersWidthR+=scrollbarDimensions.width:headersWidthL+=scrollbarDimensions.width),hasFrozenColumns()?(headersWidthL+=1e3,headersWidthR=Math.max(headersWidthR,viewportW)+headersWidthL,headersWidthR+=scrollbarDimensions.width):(headersWidthL+=scrollbarDimensions.width,headersWidthL=Math.max(headersWidthL,viewportW)+1e3),headersWidth=headersWidthL+headersWidthR,Math.max(headersWidth,viewportW)+1e3}function getHeadersWidthL(){return headersWidthL=0,columns.forEach((function(e,o){options.frozenColumn>-1&&o>options.frozenColumn||(headersWidthL+=e.width)})),hasFrozenColumns()?headersWidthL+=1e3:(headersWidthL+=scrollbarDimensions.width,headersWidthL=Math.max(headersWidthL,viewportW)+1e3),headersWidthL}function getHeadersWidthR(){return headersWidthR=0,columns.forEach((function(e,o){options.frozenColumn>-1&&o>options.frozenColumn&&(headersWidthR+=e.width)})),hasFrozenColumns()&&(headersWidthR=Math.max(headersWidthR,viewportW)+getHeadersWidthL(),headersWidthR+=scrollbarDimensions.width),headersWidthR}function getCanvasWidth(){var e=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW,o=columns.length;for(canvasWidthL=canvasWidthR=0;o–;)hasFrozenColumns()&&o>options.frozenColumn?canvasWidthR+=columns[o].width:canvasWidthL+=columns[o].width;var t=canvasWidthL+canvasWidthR;return options.fullWidthRows?Math.max(t,e):t}function updateCanvasWidth(e){var o,t=canvasWidth,n=canvasWidthL,l=canvasWidthR;((o=(canvasWidth=getCanvasWidth())!==t||canvasWidthL!==n||canvasWidthR!==l)||hasFrozenColumns()||hasFrozenRows)&&($canvasTopL.width(canvasWidthL),getHeadersWidth(),$headerL.width(headersWidthL),$headerR.width(headersWidthR),hasFrozenColumns()?($canvasTopR.width(canvasWidthR),$paneHeaderL.width(canvasWidthL),$paneHeaderR.css("left",canvasWidthL),$paneHeaderR.css("width",viewportW-canvasWidthL),$paneTopL.width(canvasWidthL),$paneTopR.css("left",canvasWidthL),$paneTopR.css("width",viewportW-canvasWidthL),$headerRowScrollerL.width(canvasWidthL),$headerRowScrollerR.width(viewportW-canvasWidthL),$headerRowL.width(canvasWidthL),$headerRowR.width(canvasWidthR),options.createFooterRow&&($footerRowScrollerL.width(canvasWidthL),$footerRowScrollerR.width(viewportW-canvasWidthL),$footerRowL.width(canvasWidthL),$footerRowR.width(canvasWidthR)),options.createPreHeaderPanel&&$preHeaderPanel.width(canvasWidth),$viewportTopL.width(canvasWidthL),$viewportTopR.width(viewportW-canvasWidthL),hasFrozenRows&&($paneBottomL.width(canvasWidthL),$paneBottomR.css("left",canvasWidthL),$viewportBottomL.width(canvasWidthL),$viewportBottomR.width(viewportW-canvasWidthL),$canvasBottomL.width(canvasWidthL),$canvasBottomR.width(canvasWidthR))):($paneHeaderL.width("100%"),$paneTopL.width("100%"),$headerRowScrollerL.width("100%"),$headerRowL.width(canvasWidth),options.createFooterRow&&($footerRowScrollerL.width("100%"),$footerRowL.width(canvasWidth)),options.createPreHeaderPanel&&($preHeaderPanel.width("100%"),$preHeaderPanel.width(canvasWidth)),$viewportTopL.width("100%"),hasFrozenRows&&($viewportBottomL.width("100%"),$canvasBottomL.width(canvasWidthL))),viewportHasHScroll=canvasWidth>viewportW-scrollbarDimensions.width),$headerRowSpacerL.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),$headerRowSpacerR.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),options.createFooterRow&&($footerRowSpacerL.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),$footerRowSpacerR.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0))),(o||e)&&applyColumnWidths()}function disableSelection(e){e&&e.jquery&&e.attr("unselectable","on").css("MozUserSelect","none").on("selectstart.ui",(function(){return!1}))}function getMaxSupportedCssHeight(){for(var e=1e6,o=navigator.userAgent.toLowerCase().match(/firefox/)?6e6:1e9,t=$("<div style=’display:none’ />").appendTo(document.body);;){var n=2*e;if(t.css("height",n),n>o||t.height()!==n)break;e=n}return t.remove(),e}function getUID(){return uid}function getHeaderColumnWidthDiff(){return headerColumnWidthDiff}function getScrollbarDimensions(){return scrollbarDimensions}function bindAncestorScrollEvents(){for(var e=hasFrozenRows&&!options.frozenBottom?$canvasBottomL[0]:$canvasTopL[0];(e=e.parentNode)!=document.body&&null!=e;)if(e==$viewportTopL[0]||e.scrollWidth!=e.clientWidth||e.scrollHeight!=e.clientHeight){var o=$(e);$boundAncestors=$boundAncestors?$boundAncestors.add(o):o,o.on("scroll."+uid,handleActiveCellPositionChange)}}function unbindAncestorScrollEvents(){$boundAncestors&&($boundAncestors.off("scroll."+uid),$boundAncestors=null)}function updateColumnHeader(e,o,t){if(initialized){var n=getColumnIndex(e);if(null!=n){var l=columns[n],r=$headers.children().eq(n);r&&(void 0!==o&&(columns[n].name=o),void 0!==t&&(columns[n].toolTip=t),trigger(self.onBeforeHeaderCellDestroy,{node:r[0],column:l,grid:self}),r.attr("title",t||"").children().eq(0).html(o),trigger(self.onHeaderCellRendered,{node:r[0],column:l,grid:self}))}}}function getHeader(e){if(!e)return hasFrozenColumns()?$headers:$headerL;var o=getColumnIndex(e.id);return hasFrozenColumns()?o<=options.frozenColumn?$headerL:$headerR:$headerL}function getHeaderColumn(e){var o="number"==typeof e?e:getColumnIndex(e),t=hasFrozenColumns()?o<=options.frozenColumn?$headerL:$headerR:$headerL,n=hasFrozenColumns()?o<=options.frozenColumn?o:o-options.frozenColumn-1:o,l=t.children().eq(n);return l&&l[0]}function getHeaderRow(){return hasFrozenColumns()?$headerRow:$headerRow[0]}function getFooterRow(){return hasFrozenColumns()?$footerRow:$footerRow[0]}function getPreHeaderPanel(){return $preHeaderPanel[0]}function getPreHeaderPanelRight(){return $preHeaderPanelR[0]}function getHeaderRowColumn(e){var o,t="number"==typeof e?e:getColumnIndex(e);hasFrozenColumns()?t<=options.frozenColumn?o=$headerRowL:(o=$headerRowR,t-=options.frozenColumn+1):o=$headerRowL;var n=o.children().eq(t);return n&&n[0]}function getFooterRowColumn(e){var o,t="number"==typeof e?e:getColumnIndex(e);hasFrozenColumns()?t<=options.frozenColumn?o=$footerRowL:(o=$footerRowR,t-=options.frozenColumn+1):o=$footerRowL;var n=o&&o.children().eq(t);return n&&n[0]}function createColumnFooter(){if(options.createFooterRow){$footerRow.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowL.empty(),$footerRowR.empty();for(var e=0;e<columns.length;e++){var o=columns[e],t=$("<div class=’ui-state-default slick-footerrow-column l"+e+" r"+e+"’></div>").data("column",o).addClass(hasFrozenColumns()&&e<=options.frozenColumn?"frozen":"").appendTo(hasFrozenColumns()&&e>options.frozenColumn?$footerRowR:$footerRowL);trigger(self.onFooterRowCellRendered,{node:t[0],column:o,grid:self})}}}function createColumnGroupHeaders(){var e=0,o=!1;if(treeColumns.hasDepth()){for(var t=0;t<$groupHeadersL.length;t++){$groupHeadersL[t].empty(),$groupHeadersR[t].empty();var n=treeColumns.getColumnsInDepth(t);for(var l in n){var r=n[l];e+=r.extractColumns().length,hasFrozenColumns()&&0===t&&e-1===options.frozenColumn&&(o=!0),$("<div class=’ui-state-default slick-group-header-column’ />").html("<span class=’slick-column-name’>"+r.name+"</span>").attr("id",""+uid+r.id).attr("title",r.toolTip||"").data("column",r).addClass(r.headerCssClass||"").addClass(hasFrozenColumns()&&e-1>options.frozenColumn?"frozen":"").appendTo(hasFrozenColumns()&&e-1>options.frozenColumn?$groupHeadersR[t]:$groupHeadersL[t])}if(hasFrozenColumns()&&0===t&&!o){$groupHeadersL[t].empty(),$groupHeadersR[t].empty(),alert("All columns of group should to be grouped!");break}}applyColumnGroupHeaderWidths()}}function createColumnHeaders(){function e(){$(this).addClass("ui-state-hover")}function o(){$(this).removeClass("ui-state-hover")}$headers.find(".slick-header-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeHeaderCellDestroy,{node:this,column:e,grid:self})})),$headerL.empty(),$headerR.empty(),getHeadersWidth(),$headerL.width(headersWidthL),$headerR.width(headersWidthR),$headerRow.find(".slick-headerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeHeaderRowCellDestroy,{node:this,column:e,grid:self})})),$headerRowL.empty(),$headerRowR.empty(),options.createFooterRow&&($footerRowL.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowL.empty(),hasFrozenColumns()&&($footerRowR.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowR.empty()));for(var t=0;t<columns.length;t++){var n=columns[t],l=hasFrozenColumns()?t<=options.frozenColumn?$headerL:$headerR:$headerL,r=hasFrozenColumns()?t<=options.frozenColumn?$headerRowL:$headerRowR:$headerRowL,i=$("<div class=’ui-state-default slick-header-column’ />").html("<span class=’slick-column-name’>"+n.name+"</span>").width(n.width-headerColumnWidthDiff).attr("id",""+uid+n.id).attr("title",n.toolTip||"").data("column",n).addClass(n.headerCssClass||"").addClass(hasFrozenColumns()&&t<=options.frozenColumn?"frozen":"").appendTo(l);if((options.enableColumnReorder||n.sortable)&&i.on("mouseenter",e).on("mouseleave",o),n.hasOwnProperty("headerCellAttrs")&&n.headerCellAttrs instanceof Object)for(var a in n.headerCellAttrs)n.headerCellAttrs.hasOwnProperty(a)&&i.attr(a,n.headerCellAttrs[a]);if(n.sortable&&(i.addClass("slick-header-sortable"),i.append("<span class=’slick-sort-indicator"+(options.numberedMultiColumnSort&&!options.sortColNumberInSeparateSpan?" slick-sort-indicator-numbered":"")+"’ />"),options.numberedMultiColumnSort&&options.sortColNumberInSeparateSpan&&i.append("<span class=’slick-sort-indicator-numbered’ />")),trigger(self.onHeaderCellRendered,{node:i[0],column:n,grid:self}),options.showHeaderRow){var s=$("<div class=’ui-state-default slick-headerrow-column l"+t+" r"+t+"’></div>").data("column",n).addClass(hasFrozenColumns()&&t<=options.frozenColumn?"frozen":"").appendTo(r);trigger(self.onHeaderRowCellRendered,{node:s[0],column:n,grid:self})}if(options.createFooterRow&&options.showFooterRow){var d=$("<div class=’ui-state-default slick-footerrow-column l"+t+" r"+t+"’></div>").data("column",n).appendTo($footerRow);trigger(self.onFooterRowCellRendered,{node:d[0],column:n,grid:self})}}setSortColumns(sortColumns),setupColumnResize(),options.enableColumnReorder&&("function"==typeof options.enableColumnReorder?options.enableColumnReorder(self,$headers,headerColumnWidthDiff,setColumns,setupColumnResize,columns,getColumnIndex,uid,trigger):setupColumnReorder())}function setupColumnSort(){$headers.click((function(e){if(!columnResizeDragging&&(e.metaKey=e.metaKey||e.ctrlKey,!$(e.target).hasClass("slick-resizable-handle"))){var o=$(e.target).closest(".slick-header-column");if(o.length){var t=o.data("column");if(t.sortable){if(!getEditorLock().commitCurrentEdit())return;for(var n=null,l=0;l<sortColumns.length;l++)if(sortColumns[l].columnId==t.id){(n=sortColumns[l]).sortAsc=!n.sortAsc;break}var r=!!n;options.tristateMultiColumnSort?(n||(n={columnId:t.id,sortAsc:t.defaultSortAsc}),r&&n.sortAsc&&(sortColumns.splice(l,1),n=null),options.multiColumnSort||(sortColumns=[]),!n||r&&options.multiColumnSort||sortColumns.push(n)):e.metaKey&&options.multiColumnSort?n&&sortColumns.splice(l,1):((e.shiftKey||e.metaKey)&&options.multiColumnSort||(sortColumns=[]),n?0===sortColumns.length&&sortColumns.push(n):(n={columnId:t.id,sortAsc:t.defaultSortAsc},sortColumns.push(n))),setSortColumns(sortColumns),options.multiColumnSort?trigger(self.onSort,{multiColumnSort:!0,sortCols:$.map(sortColumns,(function(e){return{columnId:columns[getColumnIndex(e.columnId)].id,sortCol:columns[getColumnIndex(e.columnId)],sortAsc:e.sortAsc}}))},e):trigger(self.onSort,{multiColumnSort:!1,columnId:sortColumns.length>0?t.id:null,sortCol:sortColumns.length>0?t:null,sortAsc:!(sortColumns.length>0)||sortColumns[0].sortAsc},e)}}}}))}function currentPositionInHeader(e){var o=0;return $headers.find(".slick-header-column").each((function(t){if(this.id==e)return o=t,!1})),o}function limitPositionInGroup(e){var o,t=0,n=0;return treeColumns.getColumnsInDepth($groupHeadersL.length-1).some((function(l){return t=n,n+=l.columns.length,l.columns.some((function(t){return t.id===e&&(o=l),o})),o})),n–,{start:t,end:n,group:o}}function remove(e,o){var t=e.lastIndexOf(o);t>-1&&(e.splice(t,1),remove(e,o))}function columnPositionValidInGroup(e){var o=currentPositionInHeader(e[0].id),t=limitPositionInGroup(e.data("column").id),n=t.start<=o&&o<=t.end;return{limit:t,valid:n,message:n?"":’Column "’.concat(e.text(),’" can be reordered only within the "’,t.group.name,’" group!’)}}function setupColumnReorder(){$headers.filter(":ui-sortable").sortable("destroy");var e,o=null;function t(){$viewportScrollContainerX[0].scrollLeft=$viewportScrollContainerX[0].scrollLeft+10}function n(){$viewportScrollContainerX[0].scrollLeft=$viewportScrollContainerX[0].scrollLeft-10}$headers.sortable({containment:"parent",distance:3,axis:"x",cursor:"default",tolerance:"intersection",helper:"clone",placeholder:"slick-sortable-placeholder ui-state-default slick-header-column",start:function(o,t){t.placeholder.width(t.helper.outerWidth()-headerColumnWidthDiff),e=!hasFrozenColumns()||t.placeholder.offset().left+t.placeholder.width()>$viewportScrollContainerX.offset().left,$(t.helper).addClass("slick-header-column-active")},beforeStop:function(e,o){$(o.helper).removeClass("slick-header-column-active")},sort:function(l,r){e&&l.originalEvent.pageX>$container[0].clientWidth?o||(o=setInterval(t,100)):e&&l.originalEvent.pageX<$viewportScrollContainerX.offset().left?o||(o=setInterval(n,100)):(clearInterval(o),o=null)},stop:function(e,t){var n=!1;clearInterval(o),o=null;var l=null;if(treeColumns.hasDepth()){var r=columnPositionValidInGroup(t.item);l=r.limit,(n=!r.valid)&&alert(r.message)}if(!n&&getEditorLock().commitCurrentEdit()){var i=$headerL.sortable("toArray");i=i.concat($headerR.sortable("toArray"));for(var a=[],s=0;s<i.length;s++)a.push(columns[getColumnIndex(i[s].replace(uid,""))]);setColumns(a),trigger(self.onColumnsReordered,{impactedColumns:getImpactedColumns(l)}),e.stopPropagation(),setupColumnResize()}else $(this).sortable("cancel")}})}function getImpactedColumns(e){var o=[];if(e)for(var t=e.start;t<=e.end;t++)o.push(columns[t]);else o=columns;return o}function setupColumnResize(){var e,o,t,n,l,r,i,a,s;(l=$headers.children()).find(".slick-resizable-handle").remove(),l.each((function(e,o){e>=columns.length||columns[e].resizable&&(void 0===a&&(a=e),s=e)})),void 0!==a&&l.each((function(d,c){d>=columns.length||d<a||options.forceFitColumns&&d>=s||($(c),$("<div class=’slick-resizable-handle’ />").appendTo(c).on("dragstart",(function(o,a){if(!getEditorLock().commitCurrentEdit())return!1;n=o.pageX,$(this).parent().addClass("slick-header-column-active");var s=null,c=null;if(l.each((function(e,o){e>=columns.length||(columns[e].previousWidth=$(o).outerWidth())})),options.forceFitColumns)for(s=0,c=0,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(null!==c&&(t.maxWidth?c+=t.maxWidth-t.previousWidth:c=null),s+=t.previousWidth-Math.max(t.minWidth||0,absoluteColumnMinWidth));var u=0,h=0;for(e=0;e<=d;e++)(t=columns[e]).resizable&&(null!==h&&(t.maxWidth?h+=t.maxWidth-t.previousWidth:h=null),u+=t.previousWidth-Math.max(t.minWidth||0,absoluteColumnMinWidth));null===s&&(s=1e5),null===u&&(u=1e5),null===c&&(c=1e5),null===h&&(h=1e5),i=n+Math.min(s,h),r=n-Math.min(u,c)})).on("drag",(function(l,a){columnResizeDragging=!0;var s,c,u=Math.min(i,Math.max(r,l.pageX))-n,h=0;if(u<0){for(c=u,e=d;e>=0;e–)(t=columns[e]).resizable&&(s=Math.max(t.minWidth||0,absoluteColumnMinWidth),c&&t.previousWidth+c<s?(c+=t.previousWidth-s,t.width=s):(t.width=t.previousWidth+c,c=0));for(o=0;o<=d;o++)t=columns[o],hasFrozenColumns()&&o>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0),hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width);else for(e=d+1;e<columns.length;e++)t=columns[e],hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0))}else{for(c=u,h=0,0,e=d;e>=0;e–)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0));for(o=0;o<=d;o++)t=columns[o],hasFrozenColumns()&&o>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(s=Math.max(t.minWidth||0,absoluteColumnMinWidth),c&&t.previousWidth+c<s?(c+=t.previousWidth-s,t.width=s):(t.width=t.previousWidth+c,c=0),hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width);else for(e=d+1;e<columns.length;e++)t=columns[e],hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width}hasFrozenColumns()&&h!=canvasWidthL&&($headerL.width(h+1e3),$paneHeaderR.css("left",h)),applyColumnHeaderWidths(),applyColumnGroupHeaderWidths(),options.syncColumnCellResize&&applyColumnWidths(),trigger(self.onColumnsDrag,{triggeredByColumn:$(this).parent().attr("id").replace(uid,""),resizeHandle:$(this)})})).on("dragend",(function(o,n){$(this).parent().removeClass("slick-header-column-active");var r,i=$(this).parent().attr("id").replace(uid,"");for(!0===trigger(self.onBeforeColumnsResize,{triggeredByColumn:i})&&(applyColumnHeaderWidths(),applyColumnGroupHeaderWidths()),e=0;e<columns.length;e++)t=columns[e],r=$(l[e]).outerWidth(),t.previousWidth!==r&&t.rerenderOnResize&&invalidateAllRows();updateCanvasWidth(!0),render(),trigger(self.onColumnsResized,{triggeredByColumn:i}),setTimeout((function(){columnResizeDragging=!1}),300)})))}))}function getVBoxDelta(e){var o=0;return e&&"function"==typeof e.css&&$.each(["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],(function(t,n){o+=parseFloat(e.css(n))||0})),o}function setFrozenOptions(){if(options.frozenColumn=options.frozenColumn>=0&&options.frozenColumn<columns.length?parseInt(options.frozenColumn):-1,options.frozenRow>-1){hasFrozenRows=!0,frozenRowsHeight=options.frozenRow*options.rowHeight;var e=getDataLength();actualFrozenRow=options.frozenBottom?e-options.frozenRow:options.frozenRow}else hasFrozenRows=!1}function setPaneVisibility(){hasFrozenColumns()?($paneHeaderR.show(),$paneTopR.show(),hasFrozenRows?($paneBottomL.show(),$paneBottomR.show()):($paneBottomR.hide(),$paneBottomL.hide())):($paneHeaderR.hide(),$paneTopR.hide(),$paneBottomR.hide(),hasFrozenRows?$paneBottomL.show():($paneBottomR.hide(),$paneBottomL.hide()))}function setOverflow(){$viewportTopL.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"scroll":hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"auto","overflow-y":options.alwaysShowVerticalScroll?"scroll":hasFrozenColumns()?"hidden":hasFrozenRows?"scroll":"auto"}),$viewportTopR.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"scroll":hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"auto","overflow-y":options.alwaysShowVerticalScroll?"scroll":(hasFrozenColumns(),hasFrozenRows?"scroll":"auto")}),$viewportBottomL.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"scroll":"auto":(hasFrozenRows&&options.alwaysAllowHorizontalScroll,"auto"),"overflow-y":options.alwaysShowVerticalScroll?"scroll":hasFrozenColumns()?"hidden":hasFrozenRows?"scroll":"auto"}),$viewportBottomR.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"scroll":"auto":(hasFrozenRows&&options.alwaysAllowHorizontalScroll,"auto"),"overflow-y":options.alwaysShowVerticalScroll?"scroll":(hasFrozenColumns(),"auto")}),options.viewportClass&&($viewportTopL.toggleClass(options.viewportClass,!0),$viewportTopR.toggleClass(options.viewportClass,!0),$viewportBottomL.toggleClass(options.viewportClass,!0),$viewportBottomR.toggleClass(options.viewportClass,!0))}function setScroller(){hasFrozenColumns()?($headerScrollContainer=$headerScrollerR,$headerRowScrollContainer=$headerRowScrollerR,$footerRowScrollContainer=$footerRowScrollerR,hasFrozenRows?options.frozenBottom?($viewportScrollContainerX=$viewportBottomR,$viewportScrollContainerY=$viewportTopR):$viewportScrollContainerX=$viewportScrollContainerY=$viewportBottomR:$viewportScrollContainerX=$viewportScrollContainerY=$viewportTopR):($headerScrollContainer=$headerScrollerL,$headerRowScrollContainer=$headerRowScrollerL,$footerRowScrollContainer=$footerRowScrollerL,hasFrozenRows?options.frozenBottom?($viewportScrollContainerX=$viewportBottomL,$viewportScrollContainerY=$viewportTopL):$viewportScrollContainerX=$viewportScrollContainerY=$viewportBottomL:$viewportScrollContainerX=$viewportScrollContainerY=$viewportTopL)}function measureCellPaddingAndBorder(){var e,o=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],t=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],n=$.fn.jquery.split(".");jQueryNewWidthBehaviour=1==n[0]&&n[1]>=8||n[0]>=2,e=$("<div class=’ui-state-default slick-header-column’ style=’visibility:hidden’>-</div>").appendTo($headers),headerColumnWidthDiff=headerColumnHeightDiff=0,"border-box"!=e.css("box-sizing")&&"border-box"!=e.css("-moz-box-sizing")&&"border-box"!=e.css("-webkit-box-sizing")&&($.each(o,(function(o,t){headerColumnWidthDiff+=parseFloat(e.css(t))||0})),$.each(t,(function(o,t){headerColumnHeightDiff+=parseFloat(e.css(t))||0}))),e.remove();var l=$("<div class=’slick-row’ />").appendTo($canvas);e=$("<div class=’slick-cell’ id=’’ style=’visibility:hidden’>-</div>").appendTo(l),cellWidthDiff=cellHeightDiff=0,"border-box"!=e.css("box-sizing")&&"border-box"!=e.css("-moz-box-sizing")&&"border-box"!=e.css("-webkit-box-sizing")&&($.each(o,(function(o,t){cellWidthDiff+=parseFloat(e.css(t))||0})),$.each(t,(function(o,t){cellHeightDiff+=parseFloat(e.css(t))||0}))),l.remove(),absoluteColumnMinWidth=Math.max(headerColumnWidthDiff,cellWidthDiff)}function createCssRules(){$style=$("<style type=’text/css’ rel=’stylesheet’ />").appendTo($("head"));for(var e=options.rowHeight-cellHeightDiff,o=["."+uid+" .slick-group-header-column { left: 1000px; }","."+uid+" .slick-header-column { left: 1000px; }","."+uid+" .slick-top-panel { height:"+options.topPanelHeight+"px; }","."+uid+" .slick-preheader-panel { height:"+options.preHeaderPanelHeight+"px; }","."+uid+" .slick-headerrow-columns { height:"+options.headerRowHeight+"px; }","."+uid+" .slick-footerrow-columns { height:"+options.footerRowHeight+"px; }","."+uid+" .slick-cell { height:"+e+"px; }","."+uid+" .slick-row { height:"+options.rowHeight+"px; }"],t=0;t<columns.length;t++)o.push("."+uid+" .l"+t+" { }"),o.push("."+uid+" .r"+t+" { }");$style[0].styleSheet?$style[0].styleSheet.cssText=o.join(" "):$style[0].appendChild(document.createTextNode(o.join(" ")))}function getColumnCssRules(e){var o;if(!stylesheet){var t=document.styleSheets;for(o=0;o<t.length;o++)if((t[o].ownerNode||t[o].owningElement)==$style[0]){stylesheet=t[o];break}if(!stylesheet)throw new Error("Cannot find stylesheet.");columnCssRulesL=[],columnCssRulesR=[];var n,l,r=stylesheet.cssRules||stylesheet.rules;for(o=0;o<r.length;o++){var i=r[o].selectorText;(n=/\.l\d+/.exec(i))?(l=parseInt(n[0].substr(2,n[0].length-2),10),columnCssRulesL[l]=r[o]):(n=/\.r\d+/.exec(i))&&(l=parseInt(n[0].substr(2,n[0].length-2),10),columnCssRulesR[l]=r[o])}}return{left:columnCssRulesL[e],right:columnCssRulesR[e]}}function removeCssRules(){$style.remove(),stylesheet=null}function destroy(){getEditorLock().cancelCurrentEdit(),trigger(self.onBeforeDestroy,{});for(var e=plugins.length;e–;)unregisterPlugin(plugins[e]);options.enableColumnReorder&&$headers.filter(":ui-sortable").sortable("destroy"),unbindAncestorScrollEvents(),$container.off(".slickgrid"),removeCssRules(),$canvas.off("draginit dragstart dragend drag"),$container.empty().removeClass(uid)}var canvas=null,canvas_context=null;function autosizeColumn(e,o){var t=e;if("number"==typeof e)t=columns[e];else if("string"==typeof e)for(var n=0;n<columns.length;n++)columns[n].Id===e&&(t=columns[n]);getColAutosizeWidth(t,$(getCanvasNode(0,0)),o)}function autosizeColumns(e,o){if((e=e||options.autosizeColsMode)!==Slick.GridAutosizeColsMode.LegacyForceFit&&e!==Slick.GridAutosizeColsMode.LegacyOff){if(e!==Slick.GridAutosizeColsMode.None){(canvas=document.createElement("canvas"))&&canvas.getContext&&(canvas_context=canvas.getContext("2d"));var t,n,l,r,i=$(getCanvasNode(0,0)),a=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW,s=0,d=0,c=0,u=0,h=0;for(t=0;t<columns.length;t++)getColAutosizeWidth(n=columns[t],i,o),h+=n.autoSize.autosizeMode===Slick.ColAutosizeMode.Locked?n.width:0,u+=n.autoSize.autosizeMode===Slick.ColAutosizeMode.Locked?n.width:n.minWidth,s+=n.autoSize.widthPx,d+=n.autoSize.sizeToRemaining?0:n.autoSize.widthPx,c+=n.autoSize.sizeToRemaining&&n.minWidth||0;var p=s-d;if(e===Slick.GridAutosizeColsMode.FitViewportToCols){var m=s+scrollbarDimensions.width;e=Slick.GridAutosizeColsMode.IgnoreViewport,options.viewportMaxWidthPx&&m>options.viewportMaxWidthPx?(m=options.viewportMaxWidthPx,e=Slick.GridAutosizeColsMode.FitColsToViewport):options.viewportMinWidthPx&&m<options.viewportMinWidthPx&&(m=options.viewportMinWidthPx,e=Slick.GridAutosizeColsMode.FitColsToViewport),$container.width(m)}if(e===Slick.GridAutosizeColsMode.FitColsToViewport)if(p>0&&d<a-c)for(t=0;t<columns.length;t++){var w=a-d;l=(n=columns[t]).autoSize.sizeToRemaining?w*n.autoSize.widthPx/p:n.autoSize.widthPx,n.rerenderOnResize&&n.width!=l&&(r=!0),n.width=l}else if(options.viewportSwitchToScrollModeWidthPercent&&d+c>a*options.viewportSwitchToScrollModeWidthPercent/100||u>a)e=Slick.GridAutosizeColsMode.IgnoreViewport;else{var v=d-h,f=a-h-c;for(t=0;t<columns.length;t++)l=(n=columns[t]).width,n.autoSize.autosizeMode!==Slick.ColAutosizeMode.Locked&&(n.autoSize.sizeToRemaining?l=n.minWidth:((l=f/v*n.autoSize.widthPx)<n.minWidth&&(l=n.minWidth),v-=n.autoSize.widthPx,f-=l)),n.rerenderOnResize&&n.width!=l&&(r=!0),n.width=l}if(e===Slick.GridAutosizeColsMode.IgnoreViewport)for(t=0;t<columns.length;t++)l=columns[t].autoSize.widthPx,columns[t].rerenderOnResize&&columns[t].width!=l&&(r=!0),columns[t].width=l;reRenderColumns(r)}}else legacyAutosizeColumns()}function LogColWidths(){for(var e="Col Widths:",o=0;o<columns.length;o++)e+=" "+columns[o].width;console.log(e)}function getColAutosizeWidth(e,o,t){var n=e.autoSize;if(n.widthPx=e.width,n.autosizeMode!==Slick.ColAutosizeMode.Locked&&n.autosizeMode!==Slick.ColAutosizeMode.Guide){var l=getDataLength();if(n.autosizeMode===Slick.ColAutosizeMode.ContentIntelligent){var r,i=n.colDataTypeOf;if(l>0){var a=getDataItem(0);a&&"object"===(i=typeof(r=a[e.field]))&&(r instanceof Date&&(i="date"),"undefined"!=typeof moment&&r instanceof moment&&(i="moment"))}"boolean"===i&&(n.colValueArray=[!0,!1]),"number"===i&&(n.valueFilterMode=Slick.ValueFilterMode.GetGreatestAndSub,n.rowSelectionMode=Slick.RowSelectionMode.AllRows),"string"===i&&(n.valueFilterMode=Slick.ValueFilterMode.GetLongestText,n.rowSelectionMode=Slick.RowSelectionMode.AllRows,n.allowAddlPercent=5),"date"===i&&(n.colValueArray=[new Date(2009,8,30,12,20,20)]),"moment"===i&&"undefined"!=typeof moment&&(n.colValueArray=[moment([2009,8,30,12,20,20])])}var s=getColContentSize(e,o,t);s=s*(n.allowAddlPercent?1+n.allowAddlPercent/100:1)+options.autosizeColPaddingPx,e.minWidth&&s<e.minWidth&&(s=e.minWidth),e.maxWidth&&s>e.maxWidth&&(s=e.maxWidth),n.widthPx=s}}function getColContentSize(e,o,t){var n,l=e.autoSize,r=1,i=0,a=0;if(l.ignoreHeaderText||(a=getColHeaderWidth(e)),l.colValueArray)return i=getColWidth(e,o,l.colValueArray),Math.max(a,i);var s=getData();s.getItems&&(s=s.getItems());var d=(t?l.rowSelectionModeOnInit:void 0)||l.rowSelectionMode;if(d===Slick.RowSelectionMode.FirstRow&&(s=s.slice(0,1)),d===Slick.RowSelectionMode.LastRow&&(s=s.slice(s.length-1,s.length)),d===Slick.RowSelectionMode.FirstNRows&&(s=s.slice(0,l.rowSelectionCount)),l.valueFilterMode===Slick.ValueFilterMode.DeDuplicate){var c={};for(u=0,n=s.length;u<n;u++)c[s[u][e.field]]=!0;if(Object.keys)s=Object.keys(c);else for(var u in s=[],c)s.push(u)}if(l.valueFilterMode===Slick.ValueFilterMode.GetGreatestAndSub){var h,p=0;for(u=0,n=s.length;u<n;u++)w=s[u][e.field],Math.abs(w)>p&&(h=w,p=Math.abs(w));h=""+h,s=[h=+(h=Array(h.length+1).join("9"))]}if(l.valueFilterMode===Slick.ValueFilterMode.GetLongestTextAndSub){var m=0;for(u=0,n=s.length;u<n;u++)((w=s[u][e.field])||"").length>m&&(m=w.length);w=Array(m+1).join("m"),r=options.autosizeTextAvgToMWidthRatio,s=[w]}if(l.valueFilterMode===Slick.ValueFilterMode.GetLongestText){m=0;var w,v=0;for(u=0,n=s.length;u<n;u++)((w=s[u][e.field])||"").length>m&&(m=w.length,v=u);s=[w=s[v][e.field]]}return i=getColWidth(e,o,s)*r,Math.max(a,i)}function getColWidth(e,o,t){var n=getColumnIndex(e.id),l=$(‘<div class="slick-row ui-widget-content"></div>’),r=$(‘<div class="slick-cell"></div>’);r.css({position:"absolute",visibility:"hidden","text-overflow":"initial","white-space":"nowrap"}),l.append(r),o.append(l);var i,a,s,d,c=0;return canvas_context&&e.autoSize.widthEvalMode===Slick.WidthEvalMode.CanvasTextSize?(canvas_context.font=r.css("font-size")+" "+r.css("font-family"),$(t).each((function(o,t){d=Array.isArray(t)?t[e.field]:t,(i=(a=""+d)?canvas_context.measureText(a).width:0)>c&&(c=i,s=a)})),r.html(s),i=r.outerWidth(),l.remove(),i):($(t).each((function(o,t){d=Array.isArray(t)?t[e.field]:t,applyFormatResultToCellNode(e.formatterOverride?e.formatterOverride(o,n,d,e,t):e.formatter?e.formatter(o,n,d,e,t):""+d,r[0]),(i=r.outerWidth())>c&&(c=i)})),l.remove(),c)}function getColHeaderWidth(e){var o=0,t=getUID()+e.id,n=document.getElementById(t),l=t+"_";if(n){var r=n.cloneNode(!0);r.id=l,r.style.cssText="position: absolute; visibility: hidden;right: auto;text-overflow: initial;white-space: nowrap;",n.parentNode.insertBefore(r,n),o=r.offsetWidth,r.parentNode.removeChild(r)}else{var i=getHeader(e);o=(n=$("<div class=’ui-state-default slick-header-column’ />").html("<span class=’slick-column-name’>"+e.name+"</span>").attr("id",l).css({position:"absolute",visibility:"hidden",right:"auto","text-overflow:":"initial","white-space":"nowrap"}).addClass(e.headerCssClass||"").appendTo(i))[0].offsetWidth,i[0].removeChild(n[0])}return o}function legacyAutosizeColumns(){var e,o,t,n=[],l=0,r=0,i=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW;for(e=0;e<columns.length;e++)o=columns[e],n.push(o.width),r+=o.width,o.resizable&&(l+=o.width-Math.max(o.minWidth,absoluteColumnMinWidth));for(t=r;r>i&&l;){var a=(r-i)/l;for(e=0;e<columns.length&&r>i;e++){o=columns[e];var s=n[e];if(!(!o.resizable||s<=o.minWidth||s<=absoluteColumnMinWidth)){var d=Math.max(o.minWidth,absoluteColumnMinWidth),c=Math.floor(a*(s-d))||1;r-=c=Math.min(c,s-d),l-=c,n[e]-=c}}if(t<=r)break;t=r}for(t=r;r<i;){var u=i/r;for(e=0;e<columns.length&&r<i;e++){o=columns[e];var h,p=n[e];r+=h=!o.resizable||o.maxWidth<=p?0:Math.min(Math.floor(u*p)-p,o.maxWidth-p||1e6)||1,n[e]+=r<=i?h:0}if(t>=r)break;t=r}var m=!1;for(e=0;e<columns.length;e++)columns[e].rerenderOnResize&&columns[e].width!=n[e]&&(m=!0),columns[e].width=n[e];reRenderColumns(m)}function reRenderColumns(e){applyColumnHeaderWidths(),applyColumnGroupHeaderWidths(),updateCanvasWidth(!0),trigger(self.onAutosizeColumns,{columns}),e&&(invalidateAllRows(),render())}function trigger(e,o,t){return t=t||new Slick.EventData,(o=o||{}).grid=self,e.notify(o,t,self)}function getEditorLock(){return options.editorLock}function getEditController(){return editController}function getColumnIndex(e){return columnsById[e]}function applyColumnGroupHeaderWidths(){if(treeColumns.hasDepth())for(var e=$groupHeadersL.length-1;e>=0;e–){treeColumns.getColumnsInDepth(e);$().add($groupHeadersL[e]).add($groupHeadersR[e]).each((function(e){var o=$(this),t=0;o.width(0===e?getHeadersWidthL():getHeadersWidthR()),o.children().each((function(){var e=$(this),n=$(this).data("column");n.width=0,n.columns.forEach((function(){var e=o.next().children(":eq("+t+++")");n.width+=e.outerWidth()})),e.width(n.width-headerColumnWidthDiff)}))}))}}function applyColumnHeaderWidths(){if(initialized){for(var e,o=0,t=$headers.children(),n=columns.length;o<n;o++)e=$(t[o]),jQueryNewWidthBehaviour?e.outerWidth()!==columns[o].width&&e.outerWidth(columns[o].width):e.width()!==columns[o].width-headerColumnWidthDiff&&e.width(columns[o].width-headerColumnWidthDiff);updateColumnCaches()}}function applyColumnWidths(){for(var e,o,t=0,n=0;n<columns.length;n++)e=columns[n].width,(o=getColumnCssRules(n)).left.style.left=t+"px",o.right.style.right=(-1!=options.frozenColumn&&n>options.frozenColumn?canvasWidthR:canvasWidthL)-t-e+"px",options.frozenColumn==n?t=0:t+=columns[n].width}function setSortColumn(e,o){setSortColumns([{columnId:e,sortAsc:o}])}function setSortColumns(e){sortColumns=e;var o=options.numberedMultiColumnSort&&sortColumns.length>1,t=$headers.children();t.removeClass("slick-header-column-sorted").find(".slick-sort-indicator").removeClass("slick-sort-indicator-asc slick-sort-indicator-desc"),t.find(".slick-sort-indicator-numbered").text(""),$.each(sortColumns,(function(e,n){null==n.sortAsc&&(n.sortAsc=!0);var l=getColumnIndex(n.columnId);null!=l&&(t.eq(l).addClass("slick-header-column-sorted").find(".slick-sort-indicator").addClass(n.sortAsc?"slick-sort-indicator-asc":"slick-sort-indicator-desc"),o&&t.eq(l).find(".slick-sort-indicator-numbered").text(e+1))}))}function getSortColumns(){return sortColumns}function handleSelectedRangesChanged(e,o){var t=selectedRows.slice(0);selectedRows=[];for(var n={},l=0;l<o.length;l++)for(var r=o[l].fromRow;r<=o[l].toRow;r++){n[r]||(selectedRows.push(r),n[r]={});for(var i=o[l].fromCell;i<=o[l].toCell;i++)canCellBeSelected(r,i)&&(n[r][columns[i].id]=options.selectedCellCssClass)}setCellCssStyles(options.selectedCellCssClass,n),simpleArrayEquals(t,selectedRows)&&trigger(self.onSelectedRowsChanged,{rows:getSelectedRows(),previousSelectedRows:t},e)}function simpleArrayEquals(e,o){return Array.isArray(e)&&Array.isArray(o)&&o.sort().toString()!==e.sort().toString()}function getColumns(){return columns}function updateColumnCaches(){columnPosLeft=[],columnPosRight=[];for(var e=0,o=0,t=columns.length;o<t;o++)columnPosLeft[o]=e,columnPosRight[o]=e+columns[o].width,options.frozenColumn==o?e=0:e+=columns[o].width}function updateColumnProps(){columnsById={};for(var e=0;e<columns.length;e++){columns[e].width&&(columns[e].widthRequest=columns[e].width);var o=columns[e]=$.extend({},columnDefaults,columns[e]);o.autoSize=$.extend({},columnAutosizeDefaults,o.autoSize),columnsById[o.id]=e,o.minWidth&&o.width<o.minWidth&&(o.width=o.minWidth),o.maxWidth&&o.width>o.maxWidth&&(o.width=o.maxWidth),o.resizable}}function setColumns(e){var o=new Slick.TreeColumns(e);columns=o.hasDepth()?(treeColumns=o).extractColumns():e,updateColumnProps(),updateColumnCaches(),initialized&&(setPaneVisibility(),setOverflow(),invalidateAllRows(),createColumnHeaders(),createColumnGroupHeaders(),createColumnFooter(),removeCssRules(),createCssRules(),resizeCanvas(),updateCanvasWidth(),applyColumnHeaderWidths(),applyColumnWidths(),handleScroll())}function getOptions(){return options}function setOptions(e,o){if(getEditorLock().commitCurrentEdit()){makeActiveCellNormal(),void 0!==e.showColumnHeader&&setColumnHeaderVisibility(e.showColumnHeader),options.enableAddRow!==e.enableAddRow&&invalidateRow(getDataLength());var t=$.extend(!0,{},options);options=$.extend(options,e),trigger(self.onSetOptions,{optionsBefore:t,optionsAfter:options}),validateAndEnforceOptions(),$viewport.css("overflow-y",options.autoHeight?"hidden":"auto"),o||render(),setFrozenOptions(),setScroller(),zombieRowNodeFromLastMouseWheelEvent=null,setColumns(treeColumns.extractColumns())}}function validateAndEnforceOptions(){options.autoHeight&&(options.leaveSpaceForNewRows=!1),options.forceFitColumns&&(options.autosizeColsMode=Slick.GridAutosizeColsMode.LegacyForceFit,console.log("forceFitColumns option is deprecated - use autosizeColsMode"))}function setData(e,o){data=e,invalidateAllRows(),updateRowCount(),o&&scrollTo(0)}function getData(){return data}function getDataLength(){return data.getLength?data.getLength():data&&data.length||0}function getDataLengthIncludingAddNew(){return getDataLength()+(options.enableAddRow&&(!pagingActive||pagingIsLastPage)?1:0)}function getDataItem(e){return data.getItem?data.getItem(e):data[e]}function getTopPanel(){return $topPanel[0]}function setTopPanelVisibility(e,o){var t=!1!==o;options.showTopPanel!=e&&(options.showTopPanel=e,e?t?$topPanelScroller.slideDown("fast",resizeCanvas):($topPanelScroller.show(),resizeCanvas()):t?$topPanelScroller.slideUp("fast",resizeCanvas):($topPanelScroller.hide(),resizeCanvas()))}function setHeaderRowVisibility(e,o){var t=!1!==o;options.showHeaderRow!=e&&(options.showHeaderRow=e,e?t?$headerRowScroller.slideDown("fast",resizeCanvas):($headerRowScroller.show(),resizeCanvas()):t?$headerRowScroller.slideUp("fast",resizeCanvas):($headerRowScroller.hide(),resizeCanvas()))}function setColumnHeaderVisibility(e,o){options.showColumnHeader!=e&&(options.showColumnHeader=e,e?o?$headerScroller.slideDown("fast",resizeCanvas):($headerScroller.show(),resizeCanvas()):o?$headerScroller.slideUp("fast",resizeCanvas):($headerScroller.hide(),resizeCanvas()))}function setFooterRowVisibility(e,o){var t=!1!==o;options.showFooterRow!=e&&(options.showFooterRow=e,e?t?$footerRowScroller.slideDown("fast",resizeCanvas):($footerRowScroller.show(),resizeCanvas()):t?$footerRowScroller.slideUp("fast",resizeCanvas):($footerRowScroller.hide(),resizeCanvas()))}function setPreHeaderPanelVisibility(e,o){var t=!1!==o;options.showPreHeaderPanel!=e&&(options.showPreHeaderPanel=e,e?t?$preHeaderPanelScroller.slideDown("fast",resizeCanvas):($preHeaderPanelScroller.show(),resizeCanvas()):t?$preHeaderPanelScroller.slideUp("fast",resizeCanvas):($preHeaderPanelScroller.hide(),resizeCanvas()))}function getContainerNode(){return $container.get(0)}function getRowTop(e){return options.rowHeight*e-offset}function getRowFromPosition(e){return Math.floor((e+offset)/options.rowHeight)}function scrollTo(e){e=Math.max(e,0),e=Math.min(e,th-$viewportScrollContainerY.height()+(viewportHasHScroll||hasFrozenColumns()?scrollbarDimensions.height:0));var o=offset;page=Math.min(n-1,Math.floor(e/ph));var t=e-(offset=Math.round(page*cj));offset!=o&&(cleanupRows(getVisibleRange(t)),updateRowPositions());prevScrollTop!=t&&(vScrollDir=prevScrollTop+o<t+offset?1:-1,lastRenderedScrollTop=scrollTop=prevScrollTop=t,hasFrozenColumns()&&($viewportTopL[0].scrollTop=t),hasFrozenRows&&($viewportBottomL[0].scrollTop=$viewportBottomR[0].scrollTop=t),$viewportScrollContainerY[0].scrollTop=t,trigger(self.onViewportChanged,{}))}function defaultFormatter(e,o,t,n,l,r){return null==t?"":(t+"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}function getFormatter(e,o){var t=data.getItemMetadata&&data.getItemMetadata(e),n=t&&t.columns&&(t.columns[o.id]||t.columns[getColumnIndex(o.id)]);return n&&n.formatter||t&&t.formatter||o.formatter||options.formatterFactory&&options.formatterFactory.getFormatter(o)||options.defaultFormatter}function callFormatter(e,o,t,n,l,r){var i,a=data.getItemMetadata&&data.getItemMetadata(e);if(a=a&&a.columns){var s=a[n.id]||a[o];i=getFormatter(e,n)(e,o,t,n,l,s)}else i=getFormatter(e,n)(e,o,t,n,l);return i}function getEditor(e,o){var t=columns[o],n=data.getItemMetadata&&data.getItemMetadata(e),l=n&&n.columns;return l&&l[t.id]&&void 0!==l[t.id].editor?l[t.id].editor:l&&l[o]&&void 0!==l[o].editor?l[o].editor:t.editor||options.editorFactory&&options.editorFactory.getEditor(t)}function getDataItemValueForColumn(e,o){return options.dataItemColumnValueExtractor?options.dataItemColumnValueExtractor(e,o):e[o.field]}function appendRowHtml(e,o,t,n,l){var r=getDataItem(t),i=t<l&&!r,a="slick-row"+(hasFrozenRows&&t<=options.frozenRow?" frozen":"")+(i?" loading":"")+(t===activeRow&&options.showCellSelection?" active":"")+(t%2==1?" odd":" even");r||(a+=" "+options.addNewRowCssClass);var s=data.getItemMetadata&&data.getItemMetadata(t);s&&s.cssClasses&&(a+=" "+s.cssClasses);var d,c,u=getFrozenRowOffset(t),h="<div class=’ui-widget-content "+a+"’ style=’top:"+(getRowTop(t)-u)+"px’>";e.push(h),hasFrozenColumns()&&o.push(h);for(var p=0,m=columns.length;p<m;p++){if(c=columns[p],d=1,s&&s.columns){var w=s.columns[c.id]||s.columns[p];""===(d=w&&w.colspan||1)&&(d=m-p)}if(columnPosRight[Math.min(m-1,p+d-1)]>n.leftPx){if(!c.alwaysRenderColumn&&columnPosLeft[p]>n.rightPx)break;hasFrozenColumns()&&p>options.frozenColumn?appendCellHtml(o,t,p,d,r):appendCellHtml(e,t,p,d,r)}else(c.alwaysRenderColumn||hasFrozenColumns()&&p<=options.frozenColumn)&&appendCellHtml(e,t,p,d,r);d>1&&(p+=d-1)}e.push("</div>"),hasFrozenColumns()&&o.push("</div>")}function appendCellHtml(e,o,t,n,l){var r=columns[t],i="slick-cell l"+t+" r"+Math.min(columns.length-1,t+n-1)+(r.cssClass?" "+r.cssClass:"");for(var a in hasFrozenColumns()&&t<=options.frozenColumn&&(i+=" frozen"),o===activeRow&&t===activeCell&&options.showCellSelection&&(i+=" active"),cellCssClasses)cellCssClasses[a][o]&&cellCssClasses[a][o][r.id]&&(i+=" "+cellCssClasses[a][o][r.id]);var s=null,d="";l&&(s=getDataItemValueForColumn(l,r),null==(d=getFormatter(o,r)(o,t,s,r,l,self))&&(d=""));var c=trigger(self.onBeforeAppendCell,{row:o,cell:t,value:s,dataContext:l})||"";c+=d&&d.addClasses?(c?" ":"")+d.addClasses:"";var u=d&&d.toolTip?"title=’"+d.toolTip+"’":"",h="";if(r.hasOwnProperty("cellAttrs")&&r.cellAttrs instanceof Object)for(var a in r.cellAttrs)r.cellAttrs.hasOwnProperty(a)&&(h+=" "+a+’="’+r.cellAttrs[a]+’" ‘);e.push("<div class=’"+i+(c?" "+c:"")+"’ "+u+h+">"),l&&e.push("[object Object]"!==Object.prototype.toString.call(d)?d:d.text),e.push("</div>"),rowsCache[o].cellRenderQueue.push(t),rowsCache[o].cellColSpans[t]=n}function cleanupRows(e){for(var o in rowsCache){var t=!0;hasFrozenRows&&(options.frozenBottom&&o>=actualFrozenRow||!options.frozenBottom&&o<=actualFrozenRow)&&(t=!1),(o=parseInt(o,10))!==activeRow&&(o<e.top||o>e.bottom)&&t&&removeRowFromCache(o)}options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}function invalidate(){updateRowCount(),invalidateAllRows(),render()}function invalidateAllRows(){for(var e in currentEditor&&makeActiveCellNormal(),rowsCache)removeRowFromCache(e);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}function queuePostProcessedRowForCleanup(e,o,t){for(var n in postProcessgroupId++,o)o.hasOwnProperty(n)&&postProcessedCleanupQueue.push({actionType:"C",groupId:postProcessgroupId,node:e.cellNodesByColumnIdx[0|n],columnIdx:0|n,rowIdx:t});postProcessedCleanupQueue.push({actionType:"R",groupId:postProcessgroupId,node:e.rowNode}),$(e.rowNode).detach()}function queuePostProcessedCellForCleanup(e,o,t){postProcessedCleanupQueue.push({actionType:"C",groupId:postProcessgroupId,node:e,columnIdx:o,rowIdx:t}),$(e).detach()}function removeRowFromCache(e){var o=rowsCache[e];o&&(rowNodeFromLastMouseWheelEvent==o.rowNode[0]||hasFrozenColumns()&&rowNodeFromLastMouseWheelEvent==o.rowNode[1]?(o.rowNode.hide(),zombieRowNodeFromLastMouseWheelEvent=o.rowNode):o.rowNode.each((function(){this.parentElement.removeChild(this)})),delete rowsCache[e],delete postProcessedRows[e],renderedRows–,counter_rows_removed++)}function invalidateRows(e){var o,t;if(e&&e.length){for(vScrollDir=0,t=e.length,o=0;o<t;o++)currentEditor&&activeRow===e[o]&&makeActiveCellNormal(),rowsCache[e[o]]&&removeRowFromCache(e[o]);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}}function invalidateRow(e){(e||0===e)&&invalidateRows([e])}function applyFormatResultToCellNode(e,o,t){null==e&&(e=""),"[object Object]"===Object.prototype.toString.call(e)?(o.innerHTML=e.text,e.removeClasses&&!t&&$(o).removeClass(e.removeClasses),e.addClasses&&$(o).addClass(e.addClasses),e.toolTip&&$(o).attr("title",e.toolTip)):o.innerHTML=e}function updateCell(e,o){var t=getCellNode(e,o);if(t){var n=columns[o],l=getDataItem(e);if(currentEditor&&activeRow===e&&activeCell===o)currentEditor.loadValue(l);else applyFormatResultToCellNode(l?getFormatter(e,n)(e,o,getDataItemValueForColumn(l,n),n,l,self):"",t),invalidatePostProcessingResults(e)}}function updateRow(e){var o=rowsCache[e];if(o){ensureCellNodesInRowsCache(e);var t=getDataItem(e);for(var n in o.cellNodesByColumnIdx)if(o.cellNodesByColumnIdx.hasOwnProperty(n)){var l=columns[n|=0],r=o.cellNodesByColumnIdx[n][0];e===activeRow&&n===activeCell&¤tEditor?currentEditor.loadValue(t):t?applyFormatResultToCellNode(getFormatter(e,l)(e,n,getDataItemValueForColumn(t,l),l,t,self),r):r.innerHTML=""}invalidatePostProcessingResults(e)}}function getViewportHeight(){if(options.autoHeight&&-1==options.frozenColumn||(topPanelH=options.showTopPanel?options.topPanelHeight+getVBoxDelta($topPanelScroller):0,headerRowH=options.showHeaderRow?options.headerRowHeight+getVBoxDelta($headerRowScroller):0,footerRowH=options.showFooterRow?options.footerRowHeight+getVBoxDelta($footerRowScroller):0),options.autoHeight){var e=$paneHeaderL.outerHeight();e+=options.showHeaderRow?options.headerRowHeight+getVBoxDelta($headerRowScroller):0,e+=options.showFooterRow?options.footerRowHeight+getVBoxDelta($footerRowScroller):0,e+=getCanvasWidth()>viewportW?scrollbarDimensions.height:0,viewportH=options.rowHeight*getDataLengthIncludingAddNew()+(-1==options.frozenColumn?e:0)}else{var o=options.showColumnHeader?parseFloat($.css($headerScroller[0],"height"))+getVBoxDelta($headerScroller):0,t=options.createPreHeaderPanel&&options.showPreHeaderPanel?options.preHeaderPanelHeight+getVBoxDelta($preHeaderPanelScroller):0;viewportH=parseFloat($.css($container[0],"height",!0))-parseFloat($.css($container[0],"paddingTop",!0))-parseFloat($.css($container[0],"paddingBottom",!0))-o-topPanelH-headerRowH-footerRowH-t}return numVisibleRows=Math.ceil(viewportH/options.rowHeight),viewportH}function getViewportWidth(){viewportW=parseFloat($container.width())}function resizeCanvas(){if(initialized){paneTopH=0,paneBottomH=0,viewportTopH=0,viewportBottomH=0,getViewportWidth(),getViewportHeight(),hasFrozenRows?options.frozenBottom?(paneTopH=viewportH-frozenRowsHeight-scrollbarDimensions.height,paneBottomH=frozenRowsHeight+scrollbarDimensions.height):(paneTopH=frozenRowsHeight,paneBottomH=viewportH-frozenRowsHeight):paneTopH=viewportH,paneTopH+=topPanelH+headerRowH+footerRowH,hasFrozenColumns()&&options.autoHeight&&(paneTopH+=scrollbarDimensions.height),viewportTopH=paneTopH-topPanelH-headerRowH-footerRowH,options.autoHeight&&(hasFrozenColumns()&&$container.height(paneTopH+parseFloat($.css($headerScrollerL[0],"height"))),$paneTopL.css("position","relative")),$paneTopL.css({top:$paneHeaderL.height(),height:paneTopH});var e=$paneTopL.position().top+paneTopH;options.autoHeight||$viewportTopL.height(viewportTopH),hasFrozenColumns()?($paneTopR.css({top:$paneHeaderL.height(),height:paneTopH}),$viewportTopR.height(viewportTopH),hasFrozenRows&&($paneBottomL.css({top:e,height:paneBottomH}),$paneBottomR.css({top:e,height:paneBottomH}),$viewportBottomR.height(paneBottomH))):hasFrozenRows&&($paneBottomL.css({width:"100%",height:paneBottomH}),$paneBottomL.css("top",e)),hasFrozenRows?($viewportBottomL.height(paneBottomH),options.frozenBottom?($canvasBottomL.height(frozenRowsHeight),hasFrozenColumns()&&$canvasBottomR.height(frozenRowsHeight)):($canvasTopL.height(frozenRowsHeight),hasFrozenColumns()&&$canvasTopR.height(frozenRowsHeight))):$viewportTopR.height(viewportTopH),scrollbarDimensions&&scrollbarDimensions.width||(scrollbarDimensions=measureScrollbar()),options.autosizeColsMode===Slick.GridAutosizeColsMode.LegacyForceFit&&autosizeColumns(),updateRowCount(),handleScroll(),lastRenderedScrollLeft=-1,render()}}function updatePagingStatusFromView(e){pagingActive=0!==e.pageSize,pagingIsLastPage=e.pageNum==e.totalPages-1}function updateRowCount(){if(initialized){var e=getDataLength(),o=getDataLengthIncludingAddNew(),t=0,l=hasFrozenRows&&!options.frozenBottom?$canvasBottomL.height():$canvasTopL.height();if(hasFrozenRows)t=getDataLength()-options.frozenRow;else t=o+(options.leaveSpaceForNewRows?numVisibleRows-1:0);var r=$viewportScrollContainerY.height(),i=viewportHasVScroll;viewportHasVScroll=options.alwaysShowVerticalScroll||!options.autoHeight&&t*options.rowHeight>r,makeActiveCellNormal();var a=e-1;for(var s in rowsCache)s>a&&removeRowFromCache(s);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup(),activeCellNode&&activeRow>a&&resetActiveCell();l=h;options.autoHeight?h=options.rowHeight*t:(th=Math.max(options.rowHeight*t,r-scrollbarDimensions.height))<maxSupportedCssHeight?(h=ph=th,n=1,cj=0):(ph=(h=maxSupportedCssHeight)/100,n=Math.floor(th/ph),cj=(th-h)/(n-1)),h!==l&&(hasFrozenRows&&!options.frozenBottom?($canvasBottomL.css("height",h),hasFrozenColumns()&&$canvasBottomR.css("height",h)):($canvasTopL.css("height",h),$canvasTopR.css("height",h)),scrollTop=$viewportScrollContainerY[0].scrollTop);var d=scrollTop+offset<=th-r;0==th||0==scrollTop?page=offset=0:scrollTo(d?scrollTop+offset:th-r),h!=l&&options.autoHeight&&resizeCanvas(),options.autosizeColsMode===Slick.GridAutosizeColsMode.LegacyForceFit&&i!=viewportHasVScroll&&autosizeColumns(),updateCanvasWidth(!1)}}function getVisibleRange(e,o){return null==e&&(e=scrollTop),null==o&&(o=scrollLeft),{top:getRowFromPosition(e),bottom:getRowFromPosition(e+viewportH)+1,leftPx:o,rightPx:o+viewportW}}function getRenderedRange(e,o){var t=getVisibleRange(e,o),n=Math.round(viewportH/options.rowHeight),l=options.minRowBuffer;return-1==vScrollDir?(t.top-=n,t.bottom+=l):1==vScrollDir?(t.top-=l,t.bottom+=n):(t.top-=l,t.bottom+=l),t.top=Math.max(0,t.top),t.bottom=Math.min(getDataLengthIncludingAddNew()-1,t.bottom),t.leftPx-=viewportW,t.rightPx+=viewportW,t.leftPx=Math.max(0,t.leftPx),t.rightPx=Math.min(canvasWidth,t.rightPx),t}function ensureCellNodesInRowsCache(e){var o=rowsCache[e];if(o&&o.cellRenderQueue.length)for(var t=o.rowNode.children().last();o.cellRenderQueue.length;){var n=o.cellRenderQueue.pop();o.cellNodesByColumnIdx[n]=t,0===(t=t.prev()).length&&(t=$(o.rowNode[0]).children().last())}}function cleanUpCells(e,o){if(!hasFrozenRows||!(options.frozenBottom&&o>actualFrozenRow||o<=actualFrozenRow)){var t,n=rowsCache[o],l=[];for(var r in n.cellNodesByColumnIdx)if(n.cellNodesByColumnIdx.hasOwnProperty(r)&&!((r|=0)<=options.frozenColumn||Array.isArray(columns)&&columns[r]&&columns[r].alwaysRenderColumn)){var i=n.cellColSpans[r];(columnPosLeft[r]>e.rightPx||columnPosRight[Math.min(columns.length-1,r+i-1)]<e.leftPx)&&(o==activeRow&&r==activeCell||l.push(r))}for(;null!=(t=l.pop());)n.cellNodesByColumnIdx[t][0].parentElement.removeChild(n.cellNodesByColumnIdx[t][0]),delete n.cellColSpans[t],delete n.cellNodesByColumnIdx[t],postProcessedRows[o]&&delete postProcessedRows[o][t]}}function cleanUpAndRenderCells(e){for(var o,t,n,l=[],r=[],i=e.top,a=e.bottom;i<=a;i++)if(o=rowsCache[i]){ensureCellNodesInRowsCache(i),cleanUpCells(e,i),t=0;var s=data.getItemMetadata&&data.getItemMetadata(i);s=s&&s.columns;for(var d=getDataItem(i),c=0,u=columns.length;c<u&&!(columnPosLeft[c]>e.rightPx);c++)if(null==(n=o.cellColSpans[c])){if(n=1,s){var h=s[columns[c].id]||s[c];""===(n=h&&h.colspan||1)&&(n=u-c)}columnPosRight[Math.min(u-1,c+n-1)]>e.leftPx&&(appendCellHtml(l,i,c,n,d),t++),c+=n>1?n-1:0}else c+=n>1?n-1:0;t&&(t,r.push(i))}if(l.length){var p,m,w=document.createElement("div");for(w.innerHTML=l.join("");null!=(p=r.pop());){var v;for(o=rowsCache[p];null!=(v=o.cellRenderQueue.pop());)m=w.lastChild,hasFrozenColumns()&&v>options.frozenColumn?o.rowNode[1].appendChild(m):o.rowNode[0].appendChild(m),o.cellNodesByColumnIdx[v]=$(m)}}}function renderRows(e){for(var o=[],t=[],n=[],l=!1,r=getDataLength(),i=e.top,a=e.bottom;i<=a;i++)rowsCache[i]||hasFrozenRows&&options.frozenBottom&&i==getDataLength()||(renderedRows++,n.push(i),rowsCache[i]={rowNode:null,cellColSpans:[],cellNodesByColumnIdx:[],cellRenderQueue:[]},appendRowHtml(o,t,i,e,r),activeCellNode&&activeRow===i&&(l=!0),counter_rows_rendered++);if(n.length){var s=document.createElement("div"),d=document.createElement("div");s.innerHTML=o.join(""),d.innerHTML=t.join("");for(i=0,a=n.length;i<a;i++)hasFrozenRows&&n[i]>=actualFrozenRow?hasFrozenColumns()?rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasBottomL)).add($(d.firstChild).appendTo($canvasBottomR)):rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasBottomL)):hasFrozenColumns()?rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasTopL)).add($(d.firstChild).appendTo($canvasTopR)):rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasTopL));l&&(activeCellNode=getCellNode(activeRow,activeCell))}}function startPostProcessing(){options.enableAsyncPostRender&&(clearTimeout(h_postrender),h_postrender=setTimeout(asyncPostProcessRows,options.asyncPostRenderDelay))}function startPostProcessingCleanup(){options.enableAsyncPostRenderCleanup&&(clearTimeout(h_postrenderCleanup),h_postrenderCleanup=setTimeout(asyncPostProcessCleanupRows,options.asyncPostRenderCleanupDelay))}function invalidatePostProcessingResults(e){for(var o in postProcessedRows[e])postProcessedRows[e].hasOwnProperty(o)&&(postProcessedRows[e][o]="C");postProcessFromRow=Math.min(postProcessFromRow,e),postProcessToRow=Math.max(postProcessToRow,e),startPostProcessing()}function updateRowPositions(){for(var e in rowsCache){var o=e?parseInt(e):0;rowsCache[o].rowNode[0].style.top=getRowTop(o)+"px"}}function render(){if(initialized){scrollThrottle.dequeue();var e=getVisibleRange(),o=getRenderedRange();if(cleanupRows(o),lastRenderedScrollLeft!=scrollLeft){if(hasFrozenRows){var t=$.extend(!0,{},o);options.frozenBottom?(t.top=actualFrozenRow,t.bottom=getDataLength()):(t.top=0,t.bottom=options.frozenRow),cleanUpAndRenderCells(t)}cleanUpAndRenderCells(o)}renderRows(o),hasFrozenRows&&(options.frozenBottom?renderRows({top:actualFrozenRow,bottom:getDataLength()-1,leftPx:o.leftPx,rightPx:o.rightPx}):renderRows({top:0,bottom:options.frozenRow-1,leftPx:o.leftPx,rightPx:o.rightPx})),postProcessFromRow=e.top,postProcessToRow=Math.min(getDataLengthIncludingAddNew()-1,e.bottom),startPostProcessing(),lastRenderedScrollTop=scrollTop,lastRenderedScrollLeft=scrollLeft,h_render=null,trigger(self.onRendered,{startRow:e.top,endRow:e.bottom,grid:self})}}function handleHeaderScroll(){handleElementScroll($headerScrollContainer[0])}function handleHeaderRowScroll(){var e=$headerRowScrollContainer[0].scrollLeft;e!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=e)}function handleFooterRowScroll(){var e=$footerRowScrollContainer[0].scrollLeft;e!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=e)}function handlePreHeaderPanelScroll(){handleElementScroll($preHeaderPanelScroller[0])}function handleElementScroll(e){var o=e.scrollLeft;o!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=o)}function handleScroll(){return scrollTop=$viewportScrollContainerY[0].scrollTop,scrollLeft=$viewportScrollContainerX[0].scrollLeft,_handleScroll(!1)}function _handleScroll(e){var o=$viewportScrollContainerY[0].scrollHeight-$viewportScrollContainerY[0].clientHeight,t=$viewportScrollContainerY[0].scrollWidth-$viewportScrollContainerY[0].clientWidth;o=Math.max(0,o),t=Math.max(0,t),scrollTop>o&&(scrollTop=o),scrollLeft>t&&(scrollLeft=t);var l=Math.abs(scrollTop-prevScrollTop),r=Math.abs(scrollLeft-prevScrollLeft);if(r&&(prevScrollLeft=scrollLeft,$viewportScrollContainerX[0].scrollLeft=scrollLeft,$headerScrollContainer[0].scrollLeft=scrollLeft,$topPanelScroller[0].scrollLeft=scrollLeft,$headerRowScrollContainer[0].scrollLeft=scrollLeft,options.createFooterRow&&($footerRowScrollContainer[0].scrollLeft=scrollLeft),options.createPreHeaderPanel&&(hasFrozenColumns()?$preHeaderPanelScrollerR[0].scrollLeft=scrollLeft:$preHeaderPanelScroller[0].scrollLeft=scrollLeft),hasFrozenColumns()?hasFrozenRows&&($viewportTopR[0].scrollLeft=scrollLeft):hasFrozenRows&&($viewportTopL[0].scrollLeft=scrollLeft)),l)if(vScrollDir=prevScrollTop<scrollTop?1:-1,prevScrollTop=scrollTop,e&&($viewportScrollContainerY[0].scrollTop=scrollTop),hasFrozenColumns()&&(hasFrozenRows&&!options.frozenBottom?$viewportBottomL[0].scrollTop=scrollTop:$viewportTopL[0].scrollTop=scrollTop),l<viewportH)scrollTo(scrollTop+offset);else{var i=offset;page=h==viewportH?0:Math.min(n-1,Math.floor(scrollTop*((th-viewportH)/(h-viewportH))*(1/ph))),i!=(offset=Math.round(page*cj))&&invalidateAllRows()}if(r||l){var a=Math.abs(lastRenderedScrollLeft-scrollLeft),s=Math.abs(lastRenderedScrollTop-scrollTop);(a>20||s>20)&&(options.forceSyncScrolling||s<viewportH&&a<viewportW?render():scrollThrottle.enqueue(),trigger(self.onViewportChanged,{}))}return trigger(self.onScroll,{scrollLeft,scrollTop}),!(!r&&!l)}function ActionThrottle(e,o){var t=!1,n=!1;function l(){n=!1}function r(){t=!0,setTimeout(i,o),e()}function i(){n?(l(),r()):t=!1}return{enqueue:function(){t?n=!0:r()},dequeue:l}}function asyncPostProcessRows(){for(var e=getDataLength();postProcessFromRow<=postProcessToRow;){var o=vScrollDir>=0?postProcessFromRow++:postProcessToRow–,t=rowsCache[o];if(t&&!(o>=e)){for(var n in postProcessedRows[o]||(postProcessedRows[o]={}),ensureCellNodesInRowsCache(o),t.cellNodesByColumnIdx)if(t.cellNodesByColumnIdx.hasOwnProperty(n)){var l=columns[n|=0],r=postProcessedRows[o][n];if(l.asyncPostRender&&"R"!==r){var i=t.cellNodesByColumnIdx[n];i&&l.asyncPostRender(i,o,getDataItem(o),l,"C"===r),postProcessedRows[o][n]="R"}}return void(h_postrender=setTimeout(asyncPostProcessRows,options.asyncPostRenderDelay))}}}function asyncPostProcessCleanupRows(){if(postProcessedCleanupQueue.length>0){for(var e=postProcessedCleanupQueue[0].groupId;postProcessedCleanupQueue.length>0&&postProcessedCleanupQueue[0].groupId==e;){var o=postProcessedCleanupQueue.shift();if("R"==o.actionType&&$(o.node).remove(),"C"==o.actionType){var t=columns[o.columnIdx];t.asyncPostRenderCleanup&&o.node&&t.asyncPostRenderCleanup(o.node,o.rowIdx,t)}}h_postrenderCleanup=setTimeout(asyncPostProcessCleanupRows,options.asyncPostRenderCleanupDelay)}}function updateCellCssStylesOnRenderedRows(e,o){var t,n,l,r;for(var i in rowsCache){if(r=o&&o[i],l=e&&e[i],r)for(n in r)l&&r[n]==l[n]||(t=getCellNode(i,getColumnIndex(n)))&&$(t).removeClass(r[n]);if(l)for(n in l)r&&r[n]==l[n]||(t=getCellNode(i,getColumnIndex(n)))&&$(t).addClass(l[n])}}function addCellCssStyles(e,o){if(cellCssClasses[e])throw new Error("addCellCssStyles: cell CSS hash with key ‘"+e+"’ already exists.");cellCssClasses[e]=o,updateCellCssStylesOnRenderedRows(o,null),trigger(self.onCellCssStylesChanged,{key:e,hash:o,grid:self})}function removeCellCssStyles(e){cellCssClasses[e]&&(updateCellCssStylesOnRenderedRows(null,cellCssClasses[e]),delete cellCssClasses[e],trigger(self.onCellCssStylesChanged,{key:e,hash:null,grid:self}))}function setCellCssStyles(e,o){var t=cellCssClasses[e];cellCssClasses[e]=o,updateCellCssStylesOnRenderedRows(o,t),trigger(self.onCellCssStylesChanged,{key:e,hash:o,grid:self})}function getCellCssStyles(e){return cellCssClasses[e]}function flashCell(e,o,t){(t=t||100,rowsCache[e])&&function e(o,n){n&&setTimeout((function(){o.queue((function(){o.toggleClass(options.cellFlashingCssClass).dequeue(),e(o,n-1)}))}),t)}($(getCellNode(e,o)),4)}function handleMouseWheel(e,o,t,n){var l=$(e.target).closest(".slick-row"),r=l[0];if(r!=rowNodeFromLastMouseWheelEvent){var i=l.parents(".grid-canvas").hasClass("grid-canvas-left");if(zombieRowNodeFromLastMouseWheelEvent&&zombieRowNodeFromLastMouseWheelEvent[i?0:1]!=r){var a=zombieRowNodeFromLastMouseWheelEvent[i||1==zombieRowNodeFromLastMouseWheelEvent.length?0:1];a.parentElement.removeChild(a),zombieRowNodeFromLastMouseWheelEvent=null}rowNodeFromLastMouseWheelEvent=r}scrollTop=Math.max(0,$viewportScrollContainerY[0].scrollTop-n*options.rowHeight),scrollLeft=$viewportScrollContainerX[0].scrollLeft+10*t,_handleScroll(!0)&&e.preventDefault()}function handleDragInit(e,o){var t=getCellFromEvent(e);if(!t||!cellExists(t.row,t.cell))return!1;var n=trigger(self.onDragInit,o,e);return!!e.isImmediatePropagationStopped()&&n}function handleDragStart(e,o){var t=getCellFromEvent(e);if(!t||!cellExists(t.row,t.cell))return!1;var n=trigger(self.onDragStart,o,e);return!!e.isImmediatePropagationStopped()&&n}function handleDrag(e,o){return trigger(self.onDrag,o,e)}function handleDragEnd(e,o){trigger(self.onDragEnd,o,e)}function handleKeyDown(e){trigger(self.onKeyDown,{row:activeRow,cell:activeCell},e);var o=e.isImmediatePropagationStopped(),t=Slick.keyCode;if(!o&&!e.shiftKey&&!e.altKey){if(options.editable&¤tEditor&¤tEditor.keyCaptureList&¤tEditor.keyCaptureList.indexOf(e.which)>-1)return;e.which==t.HOME?o=e.ctrlKey?navigateTop():navigateRowStart():e.which==t.END&&(o=e.ctrlKey?navigateBottom():navigateRowEnd())}if(!o)if(e.shiftKey||e.altKey||e.ctrlKey)e.which!=t.TAB||!e.shiftKey||e.ctrlKey||e.altKey||(o=navigatePrev());else{if(options.editable&¤tEditor&¤tEditor.keyCaptureList&¤tEditor.keyCaptureList.indexOf(e.which)>-1)return;if(e.which==t.ESCAPE){if(!getEditorLock().isActive())return;cancelEditAndSetFocus()}else e.which==t.PAGE_DOWN?(navigatePageDown(),o=!0):e.which==t.PAGE_UP?(navigatePageUp(),o=!0):e.which==t.LEFT?o=navigateLeft():e.which==t.RIGHT?o=navigateRight():e.which==t.UP?o=navigateUp():e.which==t.DOWN?o=navigateDown():e.which==t.TAB?o=navigateNext():e.which==t.ENTER&&(options.editable&&(currentEditor?activeRow===getDataLength()?navigateDown():commitEditAndSetFocus():getEditorLock().commitCurrentEdit()&&makeActiveCellEditable(void 0,void 0,e)),o=!0)}if(o){e.stopPropagation(),e.preventDefault();try{e.originalEvent.keyCode=0}catch(e){}}}function handleClick(e){currentEditor||(e.target!=document.activeElement||$(e.target).hasClass("slick-cell"))&&setFocus();var o=getCellFromEvent(e);if(o&&(null===currentEditor||activeRow!=o.row||activeCell!=o.cell)&&(trigger(self.onClick,{row:o.row,cell:o.cell},e),!e.isImmediatePropagationStopped()&&canCellBeActive(o.row,o.cell)&&(!getEditorLock().isActive()||getEditorLock().commitCurrentEdit()))){scrollRowIntoView(o.row,!1);var t=e.target&&e.target.className===Slick.preClickClassName,n=columns[o.cell],l=!!(options.editable&&n&&n.editor&&options.suppressActiveCellChangeOnEdit);setActiveCellInternal(getCellNode(o.row,o.cell),null,t,l,e)}}function handleContextMenu(e){var o=$(e.target).closest(".slick-cell",$canvas);0!==o.length&&(activeCellNode===o[0]&&null!==currentEditor||trigger(self.onContextMenu,{},e))}function handleDblClick(e){var o=getCellFromEvent(e);!o||null!==currentEditor&&activeRow==o.row&&activeCell==o.cell||(trigger(self.onDblClick,{row:o.row,cell:o.cell},e),e.isImmediatePropagationStopped()||options.editable&&gotoCell(o.row,o.cell,!0,e))}function handleHeaderMouseEnter(e){trigger(self.onHeaderMouseEnter,{column:$(this).data("column"),grid:self},e)}function handleHeaderMouseLeave(e){trigger(self.onHeaderMouseLeave,{column:$(this).data("column"),grid:self},e)}function handleHeaderContextMenu(e){var o=$(e.target).closest(".slick-header-column",".slick-header-columns"),t=o&&o.data("column");trigger(self.onHeaderContextMenu,{column:t},e)}function handleHeaderClick(e){if(!columnResizeDragging){var o=$(e.target).closest(".slick-header-column",".slick-header-columns"),t=o&&o.data("column");t&&trigger(self.onHeaderClick,{column:t},e)}}function handleFooterContextMenu(e){var o=$(e.target).closest(".slick-footerrow-column",".slick-footerrow-columns"),t=o&&o.data("column");trigger(self.onFooterContextMenu,{column:t},e)}function handleFooterClick(e){var o=$(e.target).closest(".slick-footerrow-column",".slick-footerrow-columns"),t=o&&o.data("column");trigger(self.onFooterClick,{column:t},e)}function handleMouseEnter(e){trigger(self.onMouseEnter,{},e)}function handleMouseLeave(e){trigger(self.onMouseLeave,{},e)}function cellExists(e,o){return!(e<0||e>=getDataLength()||o<0||o>=columns.length)}function getCellFromPoint(e,o){for(var t=getRowFromPosition(o),n=0,l=0,r=0;r<columns.length&&l<e;r++)l+=columns[r].width,n++;return n<0&&(n=0),{row:t,cell:n-1}}function getCellFromNode(e){var o=/l\d+/.exec(e.className);if(!o)throw new Error("getCellFromNode: cannot get cell - "+e.className);return parseInt(o[0].substr(1,o[0].length-1),10)}function getRowFromNode(e){for(var o in rowsCache)for(var t in rowsCache[o].rowNode)if(rowsCache[o].rowNode[t]===e)return o?parseInt(o):0;return null}function getFrozenRowOffset(e){return hasFrozenRows?options.frozenBottom?e>=actualFrozenRow?h<viewportTopH?actualFrozenRow*options.rowHeight:h:0:e>=actualFrozenRow?frozenRowsHeight:0:0}function getCellFromEvent(e){var o,t,n=$(e.target).closest(".slick-cell",$canvas);if(!n.length)return null;if(o=getRowFromNode(n[0].parentNode),hasFrozenRows){var l=n.parents(".grid-canvas").offset(),r=0;n.parents(".grid-canvas-bottom").length&&(r=options.frozenBottom?$canvasTopL.height():frozenRowsHeight),o=getCellFromPoint(e.clientX-l.left,e.clientY-l.top+r+$(document).scrollTop()).row}return t=getCellFromNode(n[0]),null==o||null==t?null:{row:o,cell:t}}function getCellNodeBox(e,o){if(!cellExists(e,o))return null;for(var t=getFrozenRowOffset(e),n=getRowTop(e)-t,l=n+options.rowHeight-1,r=0,i=0;i<o;i++)r+=columns[i].width,options.frozenColumn==i&&(r=0);return{top:n,left:r,bottom:l,right:r+columns[o].width}}function resetActiveCell(){setActiveCellInternal(null,!1)}function setFocus(){-1==tabbingDirection?$focusSink[0].focus():$focusSink2[0].focus()}function scrollCellIntoView(e,o,t){if(scrollRowIntoView(e,t),!(o<=options.frozenColumn)){var n=getColspan(e,o);internalScrollColumnIntoView(columnPosLeft[o],columnPosRight[o+(n>1?n-1:0)])}}function internalScrollColumnIntoView(e,o){var t=scrollLeft+$viewportScrollContainerX.width();e<scrollLeft?($viewportScrollContainerX.scrollLeft(e),handleScroll(),render()):o>t&&($viewportScrollContainerX.scrollLeft(Math.min(e,o-$viewportScrollContainerX[0].clientWidth)),handleScroll(),render())}function scrollColumnIntoView(e){internalScrollColumnIntoView(columnPosLeft[e],columnPosRight[e])}function setActiveCellInternal(e,o,t,n,l){null!==activeCellNode&&(makeActiveCellNormal(),$(activeCellNode).removeClass("active"),rowsCache[activeRow]&&$(rowsCache[activeRow].rowNode).removeClass("active"));if(null!=(activeCellNode=e)){var r=$(activeCellNode),i=r.offset(),a=Math.floor(r.parents(".grid-canvas").offset().top),s=r.parents(".grid-canvas-bottom").length;hasFrozenRows&&s&&(a-=options.frozenBottom?$canvasTopL.height():frozenRowsHeight);var d=getCellFromPoint(i.left,Math.ceil(i.top)-a);activeRow=d.row,activeCell=activePosX=activeCell=activePosX=getCellFromNode(activeCellNode),null==o&&(o=activeRow==getDataLength()||options.autoEdit),options.showCellSelection&&(r.addClass("active"),rowsCache[activeRow]&&$(rowsCache[activeRow].rowNode).addClass("active")),options.editable&&o&&isCellPotentiallyEditable(activeRow,activeCell)&&(clearTimeout(h_editorLoader),options.asyncEditorLoading?h_editorLoader=setTimeout((function(){makeActiveCellEditable(void 0,t,l)}),options.asyncEditorLoadDelay):makeActiveCellEditable(void 0,t,l))}else activeRow=activeCell=null;n||trigger(self.onActiveCellChanged,getActiveCell())}function clearTextSelection(){if(document.selection&&document.selection.empty)try{document.selection.empty()}catch(e){}else if(window.getSelection){var e=window.getSelection();e&&e.removeAllRanges&&e.removeAllRanges()}}function isCellPotentiallyEditable(e,o){var t=getDataLength();return!(e<t&&!getDataItem(e))&&(!(columns[o].cannotTriggerInsert&&e>=t)&&!!getEditor(e,o))}function makeActiveCellNormal(){if(currentEditor){if(trigger(self.onBeforeCellEditorDestroy,{editor:currentEditor}),currentEditor.destroy(),currentEditor=null,activeCellNode){var e=getDataItem(activeRow);if($(activeCellNode).removeClass("editable invalid"),e){var o=columns[activeCell];applyFormatResultToCellNode(getFormatter(activeRow,o)(activeRow,activeCell,getDataItemValueForColumn(e,o),o,e,self),activeCellNode),invalidatePostProcessingResults(activeRow)}}navigator.userAgent.toLowerCase().match(/msie/)&&clearTextSelection(),getEditorLock().deactivate(editController)}}function makeActiveCellEditable(e,o,t){if(activeCellNode){if(!options.editable)throw new Error("Grid : makeActiveCellEditable : should never get called when options.editable is false");if(clearTimeout(h_editorLoader),isCellPotentiallyEditable(activeRow,activeCell)){var n=columns[activeCell],l=getDataItem(activeRow);if(!1!==trigger(self.onBeforeEditCell,{row:activeRow,cell:activeCell,item:l,column:n})){getEditorLock().activate(editController),$(activeCellNode).addClass("editable");var r=e||getEditor(activeRow,activeCell);e||r.suppressClearOnEdit||(activeCellNode.innerHTML="");var i=data.getItemMetadata&&data.getItemMetadata(activeRow),a=(i=i&&i.columns)&&(i[n.id]||i[activeCell]);currentEditor=new r({grid:self,gridPosition:absBox($container[0]),position:absBox(activeCellNode),container:activeCellNode,column:n,columnMetaData:a,item:l||{},event:t,commitChanges:commitEditAndSetFocus,cancelChanges:cancelEditAndSetFocus}),l&&(currentEditor.loadValue(l),o&¤tEditor.preClick&¤tEditor.preClick()),serializedEditorValue=currentEditor.serializeValue(),currentEditor.position&&handleActiveCellPositionChange()}else setFocus()}}}function commitEditAndSetFocus(){getEditorLock().commitCurrentEdit()&&(setFocus(),options.autoEdit&&navigateDown())}function cancelEditAndSetFocus(){getEditorLock().cancelCurrentEdit()&&setFocus()}function absBox(e){var o={top:e.offsetTop,left:e.offsetLeft,bottom:0,right:0,width:$(e).outerWidth(),height:$(e).outerHeight(),visible:!0};o.bottom=o.top+o.height,o.right=o.left+o.width;for(var t=e.offsetParent;(e=e.parentNode)!=document.body&&null!=e;)o.visible&&e.scrollHeight!=e.offsetHeight&&"visible"!=$(e).css("overflowY")&&(o.visible=o.bottom>e.scrollTop&&o.top<e.scrollTop+e.clientHeight),o.visible&&e.scrollWidth!=e.offsetWidth&&"visible"!=$(e).css("overflowX")&&(o.visible=o.right>e.scrollLeft&&o.left<e.scrollLeft+e.clientWidth),o.left-=e.scrollLeft,o.top-=e.scrollTop,e===t&&(o.left+=e.offsetLeft,o.top+=e.offsetTop,t=e.offsetParent),o.bottom=o.top+o.height,o.right=o.left+o.width;return o}function getActiveCellPosition(){return absBox(activeCellNode)}function getGridPosition(){return absBox($container[0])}function handleActiveCellPositionChange(){if(activeCellNode&&(trigger(self.onActiveCellPositionChanged,{}),currentEditor)){var e=getActiveCellPosition();currentEditor.show&¤tEditor.hide&&(e.visible?currentEditor.show():currentEditor.hide()),currentEditor.position&¤tEditor.position(e)}}function getCellEditor(){return currentEditor}function getActiveCell(){return activeCellNode?{row:activeRow,cell:activeCell}:null}function getActiveCellNode(){return activeCellNode}function scrollRowIntoView(e,o){if(!hasFrozenRows||!options.frozenBottom&&e>actualFrozenRow-1||options.frozenBottom&&e<actualFrozenRow-1){var t=$viewportScrollContainerY.height(),n=hasFrozenRows&&!options.frozenBottom?e-options.frozenRow:e,l=n*options.rowHeight,r=(n+1)*options.rowHeight-t+(viewportHasHScroll?scrollbarDimensions.height:0);(n+1)*options.rowHeight>scrollTop+t+offset?(scrollTo(o?l:r),render()):n*options.rowHeight<scrollTop+offset&&(scrollTo(o?r:l),render())}}function scrollRowToTop(e){scrollTo(e*options.rowHeight),render()}function scrollPage(e){var o=e*numVisibleRows;if(scrollTo((getRowFromPosition(scrollTop+options.rowHeight-1)+o)*options.rowHeight),render(),options.enableCellNavigation&&null!=activeRow){var t=activeRow+o,n=getDataLengthIncludingAddNew();t>=n&&(t=n-1),t<0&&(t=0);for(var l=0,r=null,i=activePosX;l<=activePosX;)canCellBeActive(t,l)&&(r=l),l+=getColspan(t,l);null!==r?(setActiveCellInternal(getCellNode(t,r)),activePosX=i):resetActiveCell()}}function navigatePageDown(){scrollPage(1)}function navigatePageUp(){scrollPage(-1)}function navigateTop(){navigateToRow(0)}function navigateBottom(){navigateToRow(getDataLength()-1)}function navigateToRow(e){var o=getDataLength();if(!o)return!0;if(e<0?e=0:e>=o&&(e=o-1),scrollCellIntoView(e,0,!0),options.enableCellNavigation&&null!=activeRow){for(var t=0,n=null,l=activePosX;t<=activePosX;)canCellBeActive(e,t)&&(n=t),t+=getColspan(e,t);null!==n?(setActiveCellInternal(getCellNode(e,n)),activePosX=l):resetActiveCell()}return!0}function getColspan(e,o){var t=data.getItemMetadata&&data.getItemMetadata(e);if(!t||!t.columns)return 1;var n=t.columns[columns[o].id]||t.columns[o],l=n&&n.colspan;return l=""===l?columns.length-o:l||1}function findFirstFocusableCell(e){for(var o=0;o<columns.length;){if(canCellBeActive(e,o))return o;o+=getColspan(e,o)}return null}function findLastFocusableCell(e){for(var o=0,t=null;o<columns.length;)canCellBeActive(e,o)&&(t=o),o+=getColspan(e,o);return t}function gotoRight(e,o,t){if(o>=columns.length)return null;do{o+=getColspan(e,o)}while(o<columns.length&&!canCellBeActive(e,o));return o<columns.length?{row:e,cell:o,posX:o}:null}function gotoLeft(e,o,t){if(o<=0)return null;var n=findFirstFocusableCell(e);if(null===n||n>=o)return null;for(var l,r={row:e,cell:n,posX:n};;){if(!(l=gotoRight(r.row,r.cell,r.posX)))return null;if(l.cell>=o)return r;r=l}}function gotoDown(e,o,t){for(var n,l=getDataLengthIncludingAddNew();;){if(++e>=l)return null;for(n=o=0;o<=t;)n=o,o+=getColspan(e,o);if(canCellBeActive(e,n))return{row:e,cell:n,posX:t}}}function gotoUp(e,o,t){for(var n;;){if(–e<0)return null;for(n=o=0;o<=t;)n=o,o+=getColspan(e,o);if(canCellBeActive(e,n))return{row:e,cell:n,posX:t}}}function gotoNext(e,o,t){if(null==e&&null==o&&canCellBeActive(e=o=t=0,o))return{row:e,cell:o,posX:o};var n=gotoRight(e,o,t);if(n)return n;var l=null,r=getDataLengthIncludingAddNew();for(e===r-1&&e–;++e<r;)if(null!==(l=findFirstFocusableCell(e)))return{row:e,cell:l,posX:l};return null}function gotoPrev(e,o,t){if(null==e&&null==o&&canCellBeActive(e=getDataLengthIncludingAddNew()-1,o=t=columns.length-1))return{row:e,cell:o,posX:o};for(var n,l;!n&&!(n=gotoLeft(e,o,t));){if(–e<0)return null;o=0,null!==(l=findLastFocusableCell(e))&&(n={row:e,cell:l,posX:l})}return n}function gotoRowStart(e,o,t){var n=findFirstFocusableCell(e);return null===n?null:{row:e,cell:n,posX:n}}function gotoRowEnd(e,o,t){var n=findLastFocusableCell(e);return null===n?null:{row:e,cell:n,posX:n}}function navigateRight(){return navigate("right")}function navigateLeft(){return navigate("left")}function navigateDown(){return navigate("down")}function navigateUp(){return navigate("up")}function navigateNext(){return navigate("next")}function navigatePrev(){return navigate("prev")}function navigateRowStart(){return navigate("home")}function navigateRowEnd(){return navigate("end")}function navigate(e){if(!options.enableCellNavigation)return!1;if(!activeCellNode&&"prev"!=e&&"next"!=e)return!1;if(!getEditorLock().commitCurrentEdit())return!0;setFocus();tabbingDirection={up:-1,down:1,left:-1,right:1,prev:-1,next:1,home:-1,end:1}[e];var o=(0,{up:gotoUp,down:gotoDown,left:gotoLeft,right:gotoRight,prev:gotoPrev,next:gotoNext,home:gotoRowStart,end:gotoRowEnd}[e])(activeRow,activeCell,activePosX);if(o){if(hasFrozenRows&&options.frozenBottom&o.row==getDataLength())return;var t=o.row==getDataLength();return(!options.frozenBottom&&o.row>=actualFrozenRow||options.frozenBottom&&o.row<actualFrozenRow)&&scrollCellIntoView(o.row,o.cell,!t&&options.emulatePagingWhenScrolling),setActiveCellInternal(getCellNode(o.row,o.cell)),activePosX=o.posX,!0}return setActiveCellInternal(getCellNode(activeRow,activeCell)),!1}function getCellNode(e,o){if(rowsCache[e]){ensureCellNodesInRowsCache(e);try{return rowsCache[e].cellNodesByColumnIdx.length>o?rowsCache[e].cellNodesByColumnIdx[o][0]:null}catch(t){return rowsCache[e].cellNodesByColumnIdx[o]}}return null}function setActiveCell(e,o,t,n,l){initialized&&(e>getDataLength()||e<0||o>=columns.length||o<0||options.enableCellNavigation&&(scrollCellIntoView(e,o,!1),setActiveCellInternal(getCellNode(e,o),t,n,l)))}function canCellBeActive(e,o){if(!options.enableCellNavigation||e>=getDataLengthIncludingAddNew()||e<0||o>=columns.length||o<0)return!1;var t=data.getItemMetadata&&data.getItemMetadata(e);if(t&&void 0!==t.focusable)return!!t.focusable;var n=t&&t.columns;return n&&n[columns[o].id]&&void 0!==n[columns[o].id].focusable?!!n[columns[o].id].focusable:n&&n[o]&&void 0!==n[o].focusable?!!n[o].focusable:!!columns[o].focusable}function canCellBeSelected(e,o){if(e>=getDataLength()||e<0||o>=columns.length||o<0)return!1;var t=data.getItemMetadata&&data.getItemMetadata(e);if(t&&void 0!==t.selectable)return!!t.selectable;var n=t&&t.columns&&(t.columns[columns[o].id]||t.columns[o]);return n&&void 0!==n.selectable?!!n.selectable:!!columns[o].selectable}function gotoCell(e,o,t,n){if(initialized&&canCellBeActive(e,o)&&getEditorLock().commitCurrentEdit()){scrollCellIntoView(e,o,!1);var l=getCellNode(e,o),r=columns[o],i=!!(options.editable&&r&&r.editor&&options.suppressActiveCellChangeOnEdit);setActiveCellInternal(l,t||e===getDataLength()||options.autoEdit,null,i,n),currentEditor||setFocus()}}function commitCurrentEdit(){var e=getDataItem(activeRow),o=columns[activeCell];if(currentEditor){if(currentEditor.isValueChanged()){var t=currentEditor.validate();if(t.valid){if(activeRow<getDataLength()){var n={row:activeRow,cell:activeCell,editor:currentEditor,serializedValue:currentEditor.serializeValue(),prevSerializedValue:serializedEditorValue,execute:function(){this.editor.applyValue(e,this.serializedValue),updateRow(this.row),trigger(self.onCellChange,{row:this.row,cell:this.cell,item:e})},undo:function(){this.editor.applyValue(e,this.prevSerializedValue),updateRow(this.row),trigger(self.onCellChange,{row:this.row,cell:this.cell,item:e})}};options.editCommandHandler?(makeActiveCellNormal(),options.editCommandHandler(e,o,n)):(n.execute(),makeActiveCellNormal())}else{var l={};currentEditor.applyValue(l,currentEditor.serializeValue()),makeActiveCellNormal(),trigger(self.onAddNewRow,{item:l,column:o})}return!getEditorLock().isActive()}return $(activeCellNode).removeClass("invalid"),$(activeCellNode).width(),$(activeCellNode).addClass("invalid"),trigger(self.onValidationError,{editor:currentEditor,cellNode:activeCellNode,validationResults:t,row:activeRow,cell:activeCell,column:o}),currentEditor.focus(),!1}makeActiveCellNormal()}return!0}function cancelCurrentEdit(){return makeActiveCellNormal(),!0}function rowsToRanges(e){for(var o=[],t=columns.length-1,n=0;n<e.length;n++)o.push(new Slick.Range(e[n],0,e[n],t));return o}function getSelectedRows(){if(!selectionModel)throw new Error("Selection model is not set");return selectedRows.slice(0)}function setSelectedRows(e){if(!selectionModel)throw new Error("Selection model is not set");self&&self.getEditorLock&&!self.getEditorLock().isActive()&&selectionModel.setSelectedRanges(rowsToRanges(e))}this.debug=function(){var e="";e+="\ncounter_rows_rendered: "+counter_rows_rendered,e+="\ncounter_rows_removed: "+counter_rows_removed,e+="\nrenderedRows: "+renderedRows,e+="\nnumVisibleRows: "+numVisibleRows,e+="\nmaxSupportedCssHeight: "+maxSupportedCssHeight,e+="\nn(umber of pages): "+n,e+="\n(current) page: "+page,e+="\npage height (ph): "+ph,e+="\nvScrollDir: "+vScrollDir,alert(e)},this.eval=function(expr){return eval(expr)},$.extend(this,{slickGridVersion:"2.4.27",onScroll:new Slick.Event,onSort:new Slick.Event,onHeaderMouseEnter:new Slick.Event,onHeaderMouseLeave:new Slick.Event,onHeaderContextMenu:new Slick.Event,onHeaderClick:new Slick.Event,onHeaderCellRendered:new Slick.Event,onBeforeHeaderCellDestroy:new Slick.Event,onHeaderRowCellRendered:new Slick.Event,onFooterRowCellRendered:new Slick.Event,onFooterContextMenu:new Slick.Event,onFooterClick:new Slick.Event,onBeforeHeaderRowCellDestroy:new Slick.Event,onBeforeFooterRowCellDestroy:new Slick.Event,onMouseEnter:new Slick.Event,onMouseLeave:new Slick.Event,onClick:new Slick.Event,onDblClick:new Slick.Event,onContextMenu:new Slick.Event,onKeyDown:new Slick.Event,onAddNewRow:new Slick.Event,onBeforeAppendCell:new Slick.Event,onValidationError:new Slick.Event,onViewportChanged:new Slick.Event,onColumnsReordered:new Slick.Event,onColumnsDrag:new Slick.Event,onColumnsResized:new Slick.Event,onBeforeColumnsResize:new Slick.Event,onCellChange:new Slick.Event,onBeforeEditCell:new Slick.Event,onBeforeCellEditorDestroy:new Slick.Event,onBeforeDestroy:new Slick.Event,onActiveCellChanged:new Slick.Event,onActiveCellPositionChanged:new Slick.Event,onDragInit:new Slick.Event,onDragStart:new Slick.Event,onDrag:new Slick.Event,onDragEnd:new Slick.Event,onSelectedRowsChanged:new Slick.Event,onCellCssStylesChanged:new Slick.Event,onAutosizeColumns:new Slick.Event,onRendered:new Slick.Event,onSetOptions:new Slick.Event,registerPlugin,unregisterPlugin,getPluginByName,getColumns,setColumns,getColumnIndex,updateColumnHeader,setSortColumn,setSortColumns,getSortColumns,autosizeColumns,autosizeColumn,getOptions,setOptions,getData,getDataLength,getDataItem,setData,getSelectionModel,setSelectionModel,getSelectedRows,setSelectedRows,getContainerNode,updatePagingStatusFromView,applyFormatResultToCellNode,render,invalidate,invalidateRow,invalidateRows,invalidateAllRows,updateCell,updateRow,getViewport:getVisibleRange,getRenderedRange,resizeCanvas,updateRowCount,scrollRowIntoView,scrollRowToTop,scrollCellIntoView,scrollColumnIntoView,getCanvasNode,getUID,getHeaderColumnWidthDiff,getScrollbarDimensions,getHeadersWidth,getCanvasWidth,getCanvases,getActiveCanvasNode,setActiveCanvasNode,getViewportNode,getActiveViewportNode,setActiveViewportNode,focus:setFocus,scrollTo,getCellFromPoint,getCellFromEvent,getActiveCell,setActiveCell,getActiveCellNode,getActiveCellPosition,resetActiveCell,editActiveCell:makeActiveCellEditable,getCellEditor,getCellNode,getCellNodeBox,canCellBeSelected,canCellBeActive,navigatePrev,navigateNext,navigateUp,navigateDown,navigateLeft,navigateRight,navigatePageUp,navigatePageDown,navigateTop,navigateBottom,navigateRowStart,navigateRowEnd,gotoCell,getTopPanel,setTopPanelVisibility,getPreHeaderPanel,getPreHeaderPanelLeft:getPreHeaderPanel,getPreHeaderPanelRight,setPreHeaderPanelVisibility,getHeader,getHeaderColumn,setHeaderRowVisibility,getHeaderRow,getHeaderRowColumn,setFooterRowVisibility,getFooterRow,getFooterRowColumn,getGridPosition,flashCell,addCellCssStyles,setCellCssStyles,removeCellCssStyles,getCellCssStyles,getFrozenRowOffset,setColumnHeaderVisibility,init:finishInitialization,destroy,getEditorLock,getEditController}),init()}module.exports={Grid:SlickGrid}},n”, ” 465: function _(t,e,a){n”, ” /!n”, ” * jquery.event.drag - v 2.3.0n”, ” * Copyright (c) 2010 Three Dub Media - http://threedubmedia.comn”, ” * Open Source MIT License - http://threedubmedia.com/code/licensen”, ” */n”, ” var n=t(458);n.fn.drag=function(t,e,a){var r="string"==typeof t?t:"",o=n.isFunction(t)?t:n.isFunction(e)?e:null;return 0!==r.indexOf("drag")&&(r="drag"+r),a=(t==o?e:a)||{},o?this.on(r,a,o):this.trigger(r)};var r=n.event,o=r.special,i=o.drag={defaults:{which:1,distance:0,not:":input",handle:null,relative:!1,drop:!0,click:!1},datakey:"dragdata",noBubble:!0,add:function(t){var e=n.data(this,i.datakey),a=t.data||{};e.related+=1,n.each(i.defaults,(function(t,n){void 0!==a[t]&&(e[t]=a[t])}))},remove:function(){n.data(this,i.datakey).related-=1},setup:function(){if(!n.data(this,i.datakey)){var t=n.extend({related:0},i.defaults);n.data(this,i.datakey,t),r.add(this,"touchstart mousedown",i.init,t),this.attachEvent&&this.attachEvent("ondragstart",i.dontstart)}},teardown:function(){(n.data(this,i.datakey)||{}).related||(n.removeData(this,i.datakey),r.remove(this,"touchstart mousedown",i.init),i.textselect(!0),this.detachEvent&&this.detachEvent("ondragstart",i.dontstart))},init:function(t){if(!i.touched){var e,a=t.data;if(!(0!=t.which&&a.which>0&&t.which!=a.which)){var d=n(t.target).attr("class")||"";if(!n(t.target).is(a.not)&&d&&-1!==d.toString().indexOf("slick")&&(!a.handle||n(t.target).closest(a.handle,t.currentTarget).length)&&(i.touched="touchstart"==t.type?this:null,a.propagates=1,a.mousedown=this,a.interactions=[i.interaction(this,a)],a.target=t.target,a.pageX=t.pageX,a.pageY=t.pageY,a.dragging=null,e=i.hijack(t,"draginit",a),a.propagates))return(e=i.flatten(e))&&e.length&&(a.interactions=[],n.each(e,(function(){a.interactions.push(i.interaction(this,a))}))),a.propagates=a.interactions.length,!1!==a.drop&&o.drop&&o.drop.handler(t,a),i.textselect(!1),i.touched?r.add(i.touched,"touchmove touchend",i.handler,a):r.add(document,"mousemove mouseup",i.handler,a),!(!i.touched||a.live)&&void 0}}},interaction:function(t,e){var a=t&&t.ownerDocument&&n(t)[e.relative?"position":"offset"]()||{top:0,left:0};return{drag:t,callback:new i.callback,droppable:[],offset:a}},handler:function(t){var e=t.data;switch(t.type){case!e.dragging&&"touchmove":t.preventDefault();case!e.dragging&&"mousemove":if(Math.pow(t.pageX-e.pageX,2)+Math.pow(t.pageY-e.pageY,2)<Math.pow(e.distance,2))break;t.target=e.target,i.hijack(t,"dragstart",e),e.propagates&&(e.dragging=!0);case"touchmove":t.preventDefault();case"mousemove":if(e.dragging){if(i.hijack(t,"drag",e),e.propagates){!1!==e.drop&&o.drop&&o.drop.handler(t,e);break}t.type="mouseup"}case"touchend":case"mouseup":default:i.touched?r.remove(i.touched,"touchmove touchend",i.handler):r.remove(document,"mousemove mouseup",i.handler),e.dragging&&(!1!==e.drop&&o.drop&&o.drop.handler(t,e),i.hijack(t,"dragend",e)),i.textselect(!0),!1===e.click&&e.dragging&&n.data(e.mousedown,"suppress.click",(new Date).getTime()+5),e.dragging=i.touched=!1}},hijack:function(t,e,a,o,d){if(a){var s,c,l,p={event:t.originalEvent,type:t.type},u=e.indexOf("drop")?"drag":"drop",g=o||0,h=isNaN(o)?a.interactions.length:o;t.type=e;var f=function(){};t.originalEvent=new n.Event(p.event,{preventDefault:f,stopPropagation:f,stopImmediatePropagation:f}),a.results=[];do{if(c=a.interactions[g]){if("dragend"!==e&&c.cancelled)continue;l=i.properties(t,a,c),c.results=[],n(d||c[u]||a.droppable).each((function(o,d){if(l.target=d,t.isPropagationStopped=function(){return!1},!1===(s=d?r.dispatch.call(d,t,l):null)?("drag"==u&&(c.cancelled=!0,a.propagates-=1),"drop"==e&&(c[u][o]=null)):"dropinit"==e&&c.droppable.push(i.element(s)||d),"dragstart"==e&&(c.proxy=n(i.element(s)||c.drag)[0]),c.results.push(s),delete t.result,"dropinit"!==e)return s})),a.results[g]=i.flatten(c.results),"dropinit"==e&&(c.droppable=i.flatten(c.droppable)),"dragstart"!=e||c.cancelled||l.update()}}while(++g<h);return t.type=p.type,t.originalEvent=p.event,i.flatten(a.results)}},properties:function(t,e,a){var n=a.callback;return n.drag=a.drag,n.proxy=a.proxy||a.drag,n.startX=e.pageX,n.startY=e.pageY,n.deltaX=t.pageX-e.pageX,n.deltaY=t.pageY-e.pageY,n.originalX=a.offset.left,n.originalY=a.offset.top,n.offsetX=n.originalX+n.deltaX,n.offsetY=n.originalY+n.deltaY,n.drop=i.flatten((a.drop||[]).slice()),n.available=i.flatten((a.droppable||[]).slice()),n},element:function(t){if(t&&(t.jquery||1==t.nodeType))return t},flatten:function(t){return n.map(t,(function(t){return t&&t.jquery?n.makeArray(t):t&&t.length?i.flatten(t):t}))},textselect:function(t){n(document)[t?"off":"on"]("selectstart",i.dontstart).css("MozUserSelect",t?"":"none"),document.unselectable=t?"off":"on"},dontstart:function(){return!1},callback:function(){}};i.callback.prototype={update:function(){o.drop&&this.available.length&&n.each(this.available,(function(t){o.drop.locate(this,t)}))}};var d=r.dispatch;r.dispatch=function(t){if(!(n.data(this,"suppress."+t.type)-(new Date).getTime()>0))return d.apply(this,arguments);n.removeData(this,"suppress."+t.type)},o.draginit=o.dragstart=o.dragend=i},n”, ” 466: function _(t,e,a){n”, ” /!n”, ” * jquery.event.drop - v 2.3.0n”, ” * Copyright (c) 2010 Three Dub Media - http://threedubmedia.comn”, ” * Open Source MIT License - http://threedubmedia.com/code/licensen”, ” /n”, ” var n=t(458);n.fn.drop=function(t,e,a){var i="string"==typeof t?t:"",o=n.isFunction(t)?t:n.isFunction(e)?e:null;return 0!==i.indexOf("drop")&&(i="drop"+i),a=(t==o?e:a)||{},o?this.on(i,a,o):this.trigger(i)},n.drop=function(t){t=t||{},o.multi=!0===t.multi?1/0:!1===t.multi?1:isNaN(t.multi)?o.multi:t.multi,o.delay=t.delay||o.delay,o.tolerance=n.isFunction(t.tolerance)?t.tolerance:null===t.tolerance?null:o.tolerance,o.mode=t.mode||o.mode||"intersect"};var i=n.event.special,o=n.event.special.drop={multi:1,delay:20,mode:"overlap",targets:[],datakey:"dropdata",noBubble:!0,add:function(t){n.data(this,o.datakey).related+=1},remove:function(){n.data(this,o.datakey).related-=1},setup:function(){if(!n.data(this,o.datakey)){n.data(this,o.datakey,{related:0,active:[],anyactive:0,winner:0,location:{}}),o.targets.push(this)}},teardown:function(){if(!(n.data(this,o.datakey)||{}).related){n.removeData(this,o.datakey);var t=this;o.targets=n.grep(o.targets,(function(e){return e!==t}))}},handler:function(t,e){var a;if(e)switch(t.type){case"mousedown":case"touchstart":a=n(o.targets),"string"==typeof e.drop&&(a=a.filter(e.drop)),a.each((function(){var t=n.data(this,o.datakey);t.active=[],t.anyactive=0,t.winner=0})),e.droppable=a,i.drag.hijack(t,"dropinit",e);break;case"mousemove":case"touchmove":o.event=t,o.timer||o.tolerate(e);break;case"mouseup":case"touchend":o.timer=clearTimeout(o.timer),e.propagates&&(i.drag.hijack(t,"drop",e),i.drag.hijack(t,"dropend",e))}},locate:function(t,e){var a=n.data(t,o.datakey),i=n(t),r=i.length&&!i.is(document)?i.offset():{},d=i.outerHeight(),l=i.outerWidth(),c={elem:t,width:l,height:d,top:r.top,left:r.left,right:r.left+l,bottom:r.top+d};return a&&(a.location=c,a.index=e,a.elem=t),c},contains:function(t,e){return(e[0]||e.left)>=t.left&&(e[0]||e.right)<=t.right&&(e[1]||e.top)>=t.top&&(e[1]||e.bottom)<=t.bottom},modes:{intersect:function(t,e,a){return this.contains(a,[t.pageX,t.pageY])?1e9:this.modes.overlap.apply(this,arguments)},overlap:function(t,e,a){return Math.max(0,Math.min(a.bottom,e.bottom)-Math.max(a.top,e.top))*Math.max(0,Math.min(a.right,e.right)-Math.max(a.left,e.left))},fit:function(t,e,a){return this.contains(a,e)?1:0},middle:function(t,e,a){return this.contains(a,[e.left+.5*e.width,e.top+.5*e.height])?1:0}},sort:function(t,e){return e.winner-t.winner||t.index-e.index},tolerate:function(t){var e,a,r,d,l,c,s,u,p=0,h=t.interactions.length,m=[o.event.pageX,o.event.pageY],f=o.tolerance||o.modes[o.mode];do{if(u=t.interactions[p]){if(!u)return;u.drop=[],l=[],c=u.droppable.length,f&&(r=o.locate(u.proxy)),e=0;do{if(s=u.droppable[e]){if(!(a=(d=n.data(s,o.datakey)).location))continue;d.winner=f?f.call(o,o.event,r,a):o.contains(a,m)?1:0,l.push(d)}}while(++e<c);l.sort(o.sort),e=0;do{(d=l[e])&&(d.winner&&u.drop.length<o.multi?(d.active[p]||d.anyactive||(!1!==i.drag.hijack(o.event,"dropstart",t,p,d.elem)[0]?(d.active[p]=1,d.anyactive+=1):d.winner=0),d.winner&&u.drop.push(d.elem)):d.active[p]&&1==d.anyactive&&(i.drag.hijack(o.event,"dropend",t,p,d.elem),d.active[p]=0,d.anyactive-=1))}while(++e<c)}}while(++p<h);o.last&&m[0]==o.last.pageX&&m[1]==o.last.pageY?delete o.timer:o.timer=setTimeout((function(){o.tolerate(t)}),o.delay),o.last=o.event}};i.dropinit=i.dropstart=i.dropend=o},n”, ” 467: function _(e,t,n){var r=e(458),o=e(460);var i={Avg:function(e){this.field_=e,this.init=function(){this.count_=0,this.nonNullCount_=0,this.sum_=0},this.accumulate=function(e){var t=e[this.field_];this.count_++,null==t||""===t||isNaN(t)||(this.nonNullCount_++,this.sum_+=parseFloat(t))},this.storeResult=function(e){e.avg||(e.avg={}),0!==this.nonNullCount_&&(e.avg[this.field_]=this.sum_/this.nonNullCount_)}},Min:function(e){this.field_=e,this.init=function(){this.min_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(null==this.min_||t<this.min_)&&(this.min_=t)},this.storeResult=function(e){e.min||(e.min={}),e.min[this.field_]=this.min_}},Max:function(e){this.field_=e,this.init=function(){this.max_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(null==this.max_||t>this.max_)&&(this.max_=t)},this.storeResult=function(e){e.max||(e.max={}),e.max[this.field_]=this.max_}},Sum:function(e){this.field_=e,this.init=function(){this.sum_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(this.sum_+=parseFloat(t))},this.storeResult=function(e){e.sum||(e.sum={}),e.sum[this.field_]=this.sum_}},Count:function(e){this.field_=e,this.init=function(){},this.storeResult=function(e){e.count||(e.count={}),e.count[this.field_]=e.group.rows.length}}};t.exports={DataView:function(e){var t,n,i,l,a,u=this,s="id",g=[],c=[],f={},p=null,h=null,d=null,m=!1,v=!0,_={},w={},y=[],$=[],C={getter:null,formatter:null,comparer:function(e,t){return e.value===t.value?0:e.value>t.value?1:-1},predefinedValues:[],aggregators:[],aggregateEmpty:!1,aggregateCollapsed:!1,aggregateChildGroups:!1,collapsed:!1,displayTotalsRow:!0,lazyTotalsCalculation:!1},I=[],R=[],x=[],E=0,M=0,F=0,S=new o.Event,b=new o.Event,A=new o.Event,N=new o.Event,G=new o.Event,T=new o.Event,O=new o.Event,P=new o.Event;function D(e){for(var t,n=e=e||0,r=g.length;n<r;n++){if(void 0===(t=g[n][s]))throw new Error("Each data element must implement a unique ‘id’ property");f[t]=n}}function K(){var e=E?Math.max(1,Math.ceil(F/E)):1;return{pageSize:E,pageNum:M,totalRows:F,totalPages:e,dataView:u}}function j(e,r){v=r,n=e,t=null,!1===r&&g.reverse(),g.sort(e),!1===r&&g.reverse(),f={},D(),le()}function B(e,r){v=r,t=e,n=null;var o=Object.prototype.toString;Object.prototype.toString="function"==typeof e?e:function(){return this[e]},!1===r&&g.reverse(),g.sort(),Object.prototype.toString=o,!1===r&&g.reverse(),f={},D(),le()}function z(t){e.groupItemMetadataProvider||(e.groupItemMetadataProvider=new o.Data.GroupItemMetadataProvider),R=[],x=[],I=(t=t||[])instanceof Array?t:[t];for(var n=0;n<I.length;n++){var i=I[n]=r.extend(!0,{},C,I[n]);i.getterIsAFn="function"==typeof i.getter,i.compiledAccumulators=[];for(var l=i.aggregators.length;l–;)i.compiledAccumulators[l]=ee(i.aggregators[l]);x[n]={}}le()}function V(){if(!p){p={};for(var e=0,t=c.length;e<t;e++)p[c[e][s]]=e}}function q(e){return g[f[e]]}function U(e,t){if(void 0===f[e])throw new Error("Invalid id");if(e!==t[s]){var n=t[s];if(null==n)throw new Error("Cannot update item to associate with a null id");if(void 0!==f[n])throw new Error("Cannot update item to associate with a non-unique id");f[n]=f[e],delete f[e],d&&d[e]&&delete d[e],e=n}g[f[e]]=t,d||(d={}),d[e]=!0,le()}function L(e,t){g.splice(e,0,t),D(e),le()}function k(e){var t=f[e];if(void 0===t)throw new Error("Invalid id");delete f[e],g.splice(t,1),D(t),le()}function H(e){if(!n)throw new Error("sortedAddItem() requires a sort comparer, use sort()");L(function(e){var t=0,r=g.length;for(;t<r;){var o=t+r>>>1;-1===n(g[o],e)?t=o+1:r=o}return t}(e),e)}function W(e,t){if(null==e)for(var n=0;n<I.length;n++)x[n]={},I[n].collapsed=t,!0===t?P.notify({level:n,groupingKey:null}):O.notify({level:n,groupingKey:null});else x[e]={},I[e].collapsed=t,!0===t?P.notify({level:e,groupingKey:null}):O.notify({level:e,groupingKey:null});le()}function J(e,t,n){x[e][t]=I[e].collapsed^n,le()}function Q(e,t){for(var n,r,i,l=[],a={},u=t?t.level+1:0,s=I[u],g=0,c=s.predefinedValues.length;g<c;g++)(n=a[r=s.predefinedValues[g]])||((n=new o.Group).value=r,n.level=u,n.groupingKey=(t?t.groupingKey+":|:":"")+r,l[l.length]=n,a[r]=n);for(g=0,c=e.length;g<c;g++)i=e[g],(n=a[r=s.getterIsAFn?s.getter(i):i[s.getter]])||((n=new o.Group).value=r,n.level=u,n.groupingKey=(t?t.groupingKey+":|:":"")+r,l[l.length]=n,a[r]=n),n.rows[n.count++]=i;if(u<I.length-1)for(g=0;g<l.length;g++)(n=l[g]).groups=Q(n.rows,n);return l.length&&function e(t,n){var r,o=I[n=n||0],i=o.collapsed,l=x[n],a=t.length;for(;a–;)(r=t[a]).collapsed&&!o.aggregateCollapsed||(r.groups&&e(r.groups,n+1),o.aggregators.length&&(o.aggregateEmpty||r.rows.length||r.groups&&r.groups.length)&&Y(r),r.collapsed=i^l[r.groupingKey],r.title=o.formatter?o.formatter(r):r.value)}(l,u),l.sort(I[u].comparer),l}function X(e){var t,n=e.group,r=I[n.level],o=n.level==I.length,i=r.aggregators.length;if(!o&&r.aggregateChildGroups)for(var l=n.groups.length;l–;)n.groups[l].totals.initialized||X(n.groups[l].totals);for(;i–;)(t=r.aggregators[i]).init(),!o&&r.aggregateChildGroups?r.compiledAccumulators[i].call(t,n.groups):r.compiledAccumulators[i].call(t,n.rows),t.storeResult(e);e.initialized=!0}function Y(e){var t=I[e.level],n=new o.GroupTotals;n.group=e,e.totals=n,t.lazyTotalsCalculation||X(n)}function Z(e){var t=e.toString().indexOf("function")>=0?/^function[^(]\(([^)]*)\)\s*{([\s\S]*)}$/:/^[^(]*\(([^)]*)\)\s*{([\s\S]*)}$/,n=e.toString().match(t);return{params:n[1].split(","),body:n[2]}}function ee(e){if(e.accumulate){var t=Z(e.accumulate),n=new Function("_items","for (var "+t.params[0]+", _i=0, _il=_items.length; _i<_il; _i++) {"+t.params[0]+" = _items[_i]; "+t.body+"}"),r="compiledAccumulatorLoop";return n.displayName=r,n.name=te(n,r),n}return function(){}}function te(e,t){try{Object.defineProperty(e,"name",{writable:!0,value:t})}catch(n){e.name=t}}function ne(e,t){for(var n=[],r=0,o=0,i=e.length;o<i;o++)h(e[o],t)&&(n[r++]=e[o]);return n}function re(e,t,n){for(var r,o=[],i=0,l=0,a=e.length;l<a;l++)r=e[l],n[l]?o[i++]=r:h(r,t)&&(o[i++]=r,n[l]=!0);return o}function oe(t){if(h){var n=e.inlineFilters?l:ne,r=e.inlineFilters?a:re;_.isFilterNarrowing?y=n(y,i):_.isFilterExpanding?y=r(t,i,$):_.isFilterUnchanged||(y=n(t,i))}else y=E?t:t.concat();var o;return E?(y.length<=M*E&&(M=0===y.length?0:Math.floor((y.length-1)/E)),o=y.slice(E*M,E*M+E)):o=y,{totalRows:y.length,rows:o}}function ie(e){p=null,_.isFilterNarrowing==w.isFilterNarrowing&&_.isFilterExpanding==w.isFilterExpanding||($=[]);var t=oe(e);F=t.totalRows;var n=t.rows;R=[],I.length&&(R=Q(n)).length&&(n=function e(t,n){for(var r,o,i=I[n=n||0],l=[],a=0,u=0,s=t.length;u<s;u++){if(o=t[u],l[a++]=o,!o.collapsed)for(var g=0,c=(r=o.groups?e(o.groups,n+1):o.rows).length;g<c;g++)l[a++]=r[g];o.totals&&i.displayTotalsRow&&(!o.collapsed||i.aggregateCollapsed)&&(l[a++]=o.totals)}return l}(R));var r=function(e,t){var n,r,o,i=[],l=0,a=Math.max(t.length,e.length);_&&_.ignoreDiffsBefore&&(l=Math.max(0,Math.min(t.length,_.ignoreDiffsBefore))),_&&_.ignoreDiffsAfter&&(a=Math.min(t.length,Math.max(0,_.ignoreDiffsAfter)));for(var u=l,g=e.length;u<a;u++)u>=g?i[i.length]=u:(n=t[u],r=e[u],(!n||I.length&&(o=n.__nonDataRow||r.__nonDataRow)&&n.__group!==r.__group||n.__group&&!n.equals(r)||o&&(n.__groupTotals||r.__groupTotals)||n[s]!=r[s]||d&&d[n[s]])&&(i[i.length]=u));return i}(c,n);return c=n,r}function le(){if(!m){var e=r.extend(!0,{},K()),t=c.length,n=F,o=ie(g);E&&F<M*E&&(M=Math.max(0,Math.ceil(F/E)-1),o=ie(g)),d=null,w=_,_={},n!==F&&(G.notify(e,null,u),T.notify(K(),null,u)),t!==c.length&&b.notify({previous:t,current:c.length,dataView:u,callingOnRowsChanged:o.length>0},null,u),o.length>0&&A.notify({rows:o,dataView:u,calledOnRowCountChanged:t!==c.length},null,u),(t!==c.length||o.length>0)&&N.notify({rowsDiff:o,previousRowCount:t,currentRowCount:c.length,rowCountChanged:t!==c.length,rowsChanged:o.length>0,dataView:u},null,u)}}e=r.extend(!0,{},{groupItemMetadataProvider:null,inlineFilters:!1},e),r.extend(this,{beginUpdate:function(){m=!0},endUpdate:function(){m=!1,le()},setPagingOptions:function(e){G.notify(K(),null,u),null!=e.pageSize&&(E=e.pageSize,M=E?Math.min(M,Math.max(0,Math.ceil(F/E)-1)):0),null!=e.pageNum&&(M=Math.min(e.pageNum,Math.max(0,Math.ceil(F/E)-1))),T.notify(K(),null,u),le()},getPagingInfo:K,getIdPropertyName:function(){return s},getItems:function(){return g},setItems:function(e,t){void 0!==t&&(s=t),g=y=e,f={},D(),function(){for(var e,t=0,n=g.length;t<n;t++)if(void 0===(e=g[t][s])||f[e]!==t)throw new Error("Each data element must implement a unique ‘id’ property")}(),le(),S.notify({idProperty:t},null,u)},setFilter:function(t){h=t,e.inlineFilters&&(l=function(){var e=Z(h),t="{ _retval[_idx++] = $item$; continue _coreloop; }$1",n=e.body.replace(/return false\s*([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return!1([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return true\s*([;}]|\}|$)/gi,t).replace(/return!0([;}]|\}|$)/gi,t).replace(/return ([^;}]+?)\s*([;}]|$)/gi,"{ if ($1) { _retval[_idx++] = $item$; }; continue _coreloop; }$2"),r=["var _retval = [], _idx = 0; ","var $item$, $args$ = _args; ","_coreloop: ","for (var _i = 0, _il = _items.length; _i < _il; _i++) { ","$item$ = _items[_i]; ","$filter$; ","} ","return _retval; "].join("");r=(r=(r=r.replace(/\$filter\$/gi,n)).replace(/\$item\$/gi,e.params[0])).replace(/\$args\$/gi,e.params[1]);var o=new Function("_items,_args",r);return o.displayName="compiledFilter",o.name=te(o,"compiledFilter"),o}(),a=function(){var e=Z(h),t="{ _cache[_i] = true;_retval[_idx++] = $item$; continue _coreloop; }$1",n=e.body.replace(/return false\s*([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return!1([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return true\s*([;}]|\}|$)/gi,t).replace(/return!0([;}]|\}|$)/gi,t).replace(/return ([^;}]+?)\s*([;}]|$)/gi,"{ if ((_cache[_i] = $1)) { _retval[_idx++] = $item$; }; continue _coreloop; }$2"),r=["var _retval = [], _idx = 0; ","var $item$, $args$ = _args; ","_coreloop: ","for (var _i = 0, _il = _items.length; _i < _il; _i++) { ","$item$ = _items[_i]; ","if (_cache[_i]) { ","_retval[_idx++] = $item$; ","continue _coreloop; ","} ","$filter$; ","} ","return _retval; "].join("");r=(r=(r=r.replace(/\$filter\$/gi,n)).replace(/\$item\$/gi,e.params[0])).replace(/\$args\$/gi,e.params[1]);var o=new Function("_items,_args,_cache",r),i="compiledFilterWithCaching";return o.displayName=i,o.name=te(o,i),o}()),le()},getFilter:function(){return h},getFilteredItems:function(){return y},sort:j,fastSort:B,reSort:function(){n?j(n,v):t&&B(t,v)},setGrouping:z,getGrouping:function(){return I},groupBy:function(e,t,n){z(null!=e?{getter:e,formatter:t,comparer:n}:[])},setAggregators:function(e,t){if(!I.length)throw new Error("At least one grouping must be specified before calling setAggregators().");I[0].aggregators=e,I[0].aggregateCollapsed=t,z(I)},collapseAllGroups:function(e){W(e,!0)},expandAllGroups:function(e){W(e,!1)},collapseGroup:function(e){var t,n,r=Array.prototype.slice.call(arguments),o=r[0];1===r.length&&-1!==o.indexOf(":|:\")?(t=o,n=o.split(\":|:").length-1):(t=r.join(":|:\"),n=r.length-1),J(n,t,!0),P.notify({level:n,groupingKey:t})},expandGroup:function(e){var t,n,r=Array.prototype.slice.call(arguments),o=r[0];1===r.length&&-1!==o.indexOf(\":|:")?(n=o.split(":|:\").length-1,t=o):(n=r.length-1,t=r.join(\":|:")),J(n,t,!1),O.notify({level:n,groupingKey:t})},getGroups:function(){return R},getIdxById:function(e){return f[e]},getRowByItem:function(e){return V(),p[e[s]]},getRowById:function(e){return V(),p[e]},getItemById:q,getItemByIdx:function(e){return g[e]},mapItemsToRows:function(e){var t=[];V();for(var n=0,r=e.length;n<r;n++){var o=p[e[n][s]];null!=o&&(t[t.length]=o)}return t},mapRowsToIds:function(e){for(var t=[],n=0,r=e.length;n<r;n++)e[n]<c.length&&(t[t.length]=c[e[n]][s]);return t},mapIdsToRows:function(e){var t=[];V();for(var n=0,r=e.length;n<r;n++){var o=p[e[n]];null!=o&&(t[t.length]=o)}return t},setRefreshHints:function(e){_=e},setFilterArgs:function(e){i=e},refresh:le,updateItem:U,insertItem:L,addItem:function(e){g.push(e),D(g.length-1),le()},deleteItem:k,sortedAddItem:H,sortedUpdateItem:function(e,t){if(void 0===f[e]||e!==t[s])throw new Error("Invalid or non-matching id "+f[e]);if(!n)throw new Error("sortedUpdateItem() requires a sort comparer, use sort()");var r=q(e);0!==n(r,t)?(k(e),H(t)):U(e,t)},syncGridSelection:function(e,t,n){var i,l=this,a=l.mapRowsToIds(e.getSelectedRows()),u=new o.Event;function s(t){a.join(",")!=t.join(",")&&(a=t,u.notify({grid:e,ids:a,dataView:l},new o.EventData,l))}return e.onSelectedRowsChanged.subscribe((function(t,o){if(!i){var u=l.mapRowsToIds(e.getSelectedRows());if(n&&e.getOptions().multiSelect)s(r.grep(a,(function(e){return void 0===l.getRowById(e)})).concat(u));else s(u)}})),this.onRowsOrCountChanged.subscribe((function(){if(a.length>0){i=!0;var n=l.mapIdsToRows(a);t||s(l.mapRowsToIds(n)),e.setSelectedRows(n),i=!1}})),u},syncGridCellCssStyles:function(e,t){var n,r;function o(e){for(var t in n={},e){var r=c[t][s];n[r]=e[t]}}function i(){if(n){r=!0,V();var o={};for(var i in n){var l=p[i];null!=l&&(o[l]=n[i])}e.setCellCssStyles(t,o),r=!1}}o(e.getCellCssStyles(t)),e.onCellCssStylesChanged.subscribe((function(n,l){r||t==l.key&&(l.hash?o(l.hash):(e.onCellCssStylesChanged.unsubscribe(),u.onRowsOrCountChanged.unsubscribe(i)))})),this.onRowsOrCountChanged.subscribe(i)},getLength:function(){return c.length},getItem:function(e){var t=c[e];if(t&&t.__group&&t.totals&&!t.totals.initialized){var n=I[t.level];n.displayTotalsRow||(X(t.totals),t.title=n.formatter?n.formatter(t):t.value)}else t&&t.__groupTotals&&!t.initialized&&X(t);return t},getItemMetadata:function(t){var n=c[t];return void 0===n?null:n.__group?e.groupItemMetadataProvider.getGroupRowMetadata(n):n.__groupTotals?e.groupItemMetadataProvider.getTotalsRowMetadata(n):null},onSetItemsCalled:S,onRowCountChanged:b,onRowsChanged:A,onRowsOrCountChanged:N,onBeforePagingInfoChanged:G,onPagingInfoChanged:T,onGroupExpanded:O,onGroupCollapsed:P})},Aggregators:i,Data:{Aggregators:i}}},n”, ” 468: function _(e,t,i){var n=e(458),o=e(460);function l(e){var t,i;function o(){var t=e.column.editorFixedDecimalPlaces;return void 0===t&&(t=l.DefaultDecimalPlaces),t||0===t?t:null}this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field];var l=o();null!==l&&(i||0===i)&&i.toFixed&&(i=i.toFixed(l)),t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){var e=parseFloat(t.val());l.AllowEmptyValue?e||0===e||(e=""):e=e||0;var i=o();return null!==i&&(e||0===e)&&e.toFixed&&(e=parseFloat(e.toFixed(i))),e},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(isNaN(t.val()))return{valid:!1,msg:"Please enter a valid number"};if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()}function a(e){var t=this.selectionStart,i=this.value.length;(e.keyCode===o.keyCode.LEFT&&t>0||e.keyCode===o.keyCode.RIGHT&&t<i-1)&&e.stopImmediatePropagation()}function s(e){e.keyCode!==o.keyCode.LEFT&&e.keyCode!==o.keyCode.RIGHT||e.stopImmediatePropagation()}l.DefaultDecimalPlaces=null,l.AllowEmptyValue=!1,t.exports={Editors:{Text:function(e){var t,i;this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.getValue=function(){return t.val()},this.setValue=function(e){t.val(e)},this.loadValue=function(n){i=n[e.column.field]||"",t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},Integer:function(e){var t,i;this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field],t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return parseInt(t.val(),10)||0},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(isNaN(t.val()))return{valid:!1,msg:"Please enter a valid integer"};if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},Float:l,Date:function(e){var t,i,o=!1;this.init=function(){(t=n("<INPUT type=text class=’editor-text’ />")).appendTo(e.container),t.focus().select(),t.datepicker({showOn:"button",buttonImageOnly:!0,beforeShow:function(){o=!0},onClose:function(){o=!1}}),t.width(t.width()-18)},this.destroy=function(){n.datepicker.dpDiv.stop(!0,!0),t.datepicker("hide"),t.datepicker("destroy"),t.remove()},this.show=function(){o&&n.datepicker.dpDiv.stop(!0,!0).show()},this.hide=function(){o&&n.datepicker.dpDiv.stop(!0,!0).hide()},this.position=function(e){o&&n.datepicker.dpDiv.css("top",e.top+30).css("left",e.left)},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field],t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},YesNoSelect:function(e){var t,i;this.init=function(){(t=n("<SELECT tabIndex=’0’ class=’editor-yesno’><OPTION value=’yes’>Yes</OPTION><OPTION value=’no’>No</OPTION></SELECT>")).appendTo(e.container),t.focus()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){t.val((i=n[e.column.field])?"yes":"no"),t.select()},this.serializeValue=function(){return"yes"==t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return t.val()!=i},this.validate=function(){return{valid:!0,msg:null}},this.init()},Checkbox:function(e){var t,i;this.init=function(){(t=n("<INPUT type=checkbox value=’true’ class=’editor-checkbox’ hideFocus>")).appendTo(e.container),t.focus()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){(i=!!n[e.column.field])?t.prop("checked",!0):t.prop("checked",!1)},this.preClick=function(){t.prop("checked",!t.prop("checked"))},this.serializeValue=function(){return t.prop("checked")},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return this.serializeValue()!==i},this.validate=function(){return{valid:!0,msg:null}},this.init()},PercentComplete:function(e){var t,i,o;this.init=function(){(t=n("<INPUT type=text class=’editor-percentcomplete’ />")).width(n(e.container).innerWidth()-25),t.appendTo(e.container),(i=n("<div class=’editor-percentcomplete-picker’ />").appendTo(e.container)).append("<div class=’editor-percentcomplete-helper’><div class=’editor-percentcomplete-wrapper’><div class=’editor-percentcomplete-slider’ /><div class=’editor-percentcomplete-buttons’ /></div></div>"),i.find(".editor-percentcomplete-buttons").append("<button val=0>Not started</button><br/><button val=50>In Progress</button><br/><button val=100>Complete</button>"),t.focus().select(),i.find(".editor-percentcomplete-slider").slider({orientation:"vertical",range:"min",value:o,slide:function(e,i){t.val(i.value)}}),i.find(".editor-percentcomplete-buttons button").on("click",(function(e){t.val(n(this).attr("val")),i.find(".editor-percentcomplete-slider").slider("value",n(this).attr("val"))}))},this.destroy=function(){t.remove(),i.remove()},this.focus=function(){t.focus()},this.loadValue=function(i){t.val(o=i[e.column.field]),t.select()},this.serializeValue=function(){return parseInt(t.val(),10)||0},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==o)&&(parseInt(t.val(),10)||0)!=o},this.validate=function(){return isNaN(parseInt(t.val(),10))?{valid:!1,msg:"Please enter a valid positive number"}:{valid:!0,msg:null}},this.init()},LongText:function(e){var t,i,l,a=this;this.init=function(){var o=n("body");e.grid.getOptions().editorCellNavOnLRKeys;i=n("<DIV style=’z-index:10000;position:absolute;background:white;padding:5px;border:3px solid gray; -moz-border-radius:10px; border-radius:10px;’/>").appendTo(o),t=n("<TEXTAREA hidefocus rows=5 style=’background:white;width:250px;height:80px;border:0;outline:0’>").appendTo(i),n("<DIV style=’text-align:right’><BUTTON>Save</BUTTON><BUTTON>Cancel</BUTTON></DIV>").appendTo(i),i.find("button:first").on("click",this.save),i.find("button:last").on("click",this.cancel),t.on("keydown",this.handleKeyDown),a.position(e.position),t.focus().select()},this.handleKeyDown=function(t){if(t.which==o.keyCode.ENTER&&t.ctrlKey)a.save();else if(t.which==o.keyCode.ESCAPE)t.preventDefault(),a.cancel();else if(t.which==o.keyCode.TAB&&t.shiftKey)t.preventDefault(),e.grid.navigatePrev();else if(t.which==o.keyCode.TAB)t.preventDefault(),e.grid.navigateNext();else if((t.which==o.keyCode.LEFT||t.which==o.keyCode.RIGHT)&&e.grid.getOptions().editorCellNavOnLRKeys){var i=this.selectionStart,n=this.value.length;t.keyCode===o.keyCode.LEFT&&0===i&&e.grid.navigatePrev(),t.keyCode===o.keyCode.RIGHT&&i>=n-1&&e.grid.navigateNext()}},this.save=function(){e.commitChanges()},this.cancel=function(){t.val(l),e.cancelChanges()},this.hide=function(){i.hide()},this.show=function(){i.show()},this.position=function(e){i.css("top",e.top-5).css("left",e.left-5)},this.destroy=function(){i.remove()},this.focus=function(){t.focus()},this.loadValue=function(i){t.val(l=i[e.column.field]),t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==l)&&t.val()!=l},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()}}}},n”, ” 469: function _(e,n,r){e(460);n.exports={Formatters:{PercentComplete:function(e,n,r,t,c){return null==r||""===r?"-":r<50?"<span style=’color:red;font-weight:bold;’>"+r+"%</span>":"<span style=’color:green’>"+r+"%</span>"},PercentCompleteBar:function(e,n,r,t,c){return null==r||""===r?"":"<span class=’percent-complete-bar’ style=’background:"+(r<30?"red":r<70?"silver":"green")+";width:"+r+"%’></span>"},YesNo:function(e,n,r,t,c){return r?"Yes":"No"},Checkmark:function(e,n,r,t,c){return r?"<img src=’../images/tick.png’>":""},Checkbox:function(e,n,r,t,c){return’<img class="slick-edit-preclick" src="../images/’+(r?"CheckboxY":"CheckboxN")+’.png">’}}}},n”, ” 470: function _(t,o,r){var e=t(458),n=t(460);o.exports={RemoteModel:function(){var t={length:0},o="",r=null,a=1,l=null,i=null,s=new n.Event,u=new n.Event;function f(){for(var o in t)delete t[o];t.length=0}function c(n,f){if(i){i.abort();for(var c=i.fromPage;c<=i.toPage;c++)t[50*c]=void 0}n<0&&(n=0),t.length>0&&(f=Math.min(f,t.length-1));for(var d=Math.floor(n/50),v=Math.floor(f/50);void 0!==t[50*d]&&d<v;)d++;for(;void 0!==t[50*v]&&d<v;)v–;if(d>v||d==v&&void 0!==t[50*d])u.notify({from:n,to:f});else{var m="http://octopart.com/api/v3/parts/search?apikey=68b25f31&include[]=short_description&show[]=uid&show[]=manufacturer&show[]=mpn&show[]=brand&show[]=octopart_url&show[]=short_description&q="+o+"&start="+50*d+"&limit="+(50*(v-d)+50);null!=r&&(m+="&sortby="+r+(a>0?"+asc":"+desc")),null!=l&&clearTimeout(l),l=setTimeout((function(){for(var o=d;o<=v;o++)t[50*o]=null;s.notify({from:n,to:f}),(i=e.jsonp({url:m,callbackParameter:"callback",cache:!0,success:h,error:function(){!function(t,o){alert("error loading pages "+t+" to "+o)}(d,v)}})).fromPage=d,i.toPage=v}),50)}}function h(o){var r=o.request.start,e=r+o.results.length;t.length=Math.min(parseInt(o.hits),1e3);for(var n=0;n<o.results.length;n++){var a=o.results[n].item;t[r+n]=a,t[r+n].index=r+n}i=null,u.notify({from:r,to:e})}return{data:t,clear:f,isDataLoaded:function(o,r){for(var e=o;e<=r;e++)if(null==t[e]||null==t[e])return!1;return!0},ensureData:c,reloadData:function(o,r){for(var e=o;e<=r;e++)delete t[e];c(o,r)},setSort:function(t,o){r=t,a=o,f()},setSearch:function(t){o=t,f()},onDataLoading:s,onDataLoaded:u}}}},n”, ” 471: function _(e,s,t){var o=e(458),l=e(460);s.exports={GroupItemMetadataProvider:function(e){var s,t={checkboxSelect:!1,checkboxSelectCssClass:"slick-group-select-checkbox",checkboxSelectPlugin:null,groupCssClass:"slick-group",groupTitleCssClass:"slick-group-title",totalsCssClass:"slick-group-totals",groupFocusable:!0,totalsFocusable:!1,toggleCssClass:"slick-group-toggle",toggleExpandedCssClass:"expanded",toggleCollapsedCssClass:"collapsed",enableExpandCollapse:!0,groupFormatter:function(e,s,t,o,l,r){if(!a.enableExpandCollapse)return l.title;var c=15*l.level+"px";return(a.checkboxSelect?’<span class="’+a.checkboxSelectCssClass+" "+(l.selectChecked?"checked":"unchecked")+’"></span>’:"")+"<span class=’"+a.toggleCssClass+" "+(l.collapsed?a.toggleCollapsedCssClass:a.toggleExpandedCssClass)+"’ style=’margin-left:"+c+"’></span><span class=’"+a.groupTitleCssClass+"’ level=’"+l.level+"’>"+l.title+"</span>"},totalsFormatter:function(e,s,t,o,l,a){return o.groupTotalsFormatter&&o.groupTotalsFormatter(l,o,a)||""},includeHeaderTotals:!1},a=o.extend(!0,{},t,e);function r(e,t){var r=o(e.target),c=this.getDataItem(t.row);if(c&&c instanceof l.Group&&r.hasClass(a.toggleCssClass)){var n=s.getRenderedRange();this.getData().setRefreshHints({ignoreDiffsBefore:n.top,ignoreDiffsAfter:n.bottom+1}),c.collapsed?this.getData().expandGroup(c.groupingKey):this.getData().collapseGroup(c.groupingKey),e.stopImmediatePropagation(),e.preventDefault()}if(c&&c instanceof l.Group&&r.hasClass(a.checkboxSelectCssClass)){c.selectChecked=!c.selectChecked,r.removeClass(c.selectChecked?"unchecked":"checked"),r.addClass(c.selectChecked?"checked":"unchecked");var i=s.getData().mapItemsToRows(c.rows);(c.selectChecked?a.checkboxSelectPlugin.selectRows:a.checkboxSelectPlugin.deSelectRows)(i)}}function c(e,t){if(a.enableExpandCollapse&&e.which==l.keyCode.SPACE){var o=this.getActiveCell();if(o){var r=this.getDataItem(o.row);if(r&&r instanceof l.Group){var c=s.getRenderedRange();this.getData().setRefreshHints({ignoreDiffsBefore:c.top,ignoreDiffsAfter:c.bottom+1}),r.collapsed?this.getData().expandGroup(r.groupingKey):this.getData().collapseGroup(r.groupingKey),e.stopImmediatePropagation(),e.preventDefault()}}}}return{init:function(e){(s=e).onClick.subscribe(r),s.onKeyDown.subscribe(c)},destroy:function(){s&&(s.onClick.unsubscribe(r),s.onKeyDown.unsubscribe(c))},getGroupRowMetadata:function(e){var s=e&&e.level;return{selectable:!1,focusable:a.groupFocusable,cssClasses:a.groupCssClass+" slick-group-level-"+s,formatter:a.includeHeaderTotals&&a.totalsFormatter,columns:{0:{colspan:a.includeHeaderTotals?"1":"",formatter:a.groupFormatter,editor:null}}}},getTotalsRowMetadata:function(e){var s=e&&e.group&&e.group.level;return{selectable:!1,focusable:a.totalsFocusable,cssClasses:a.totalsCssClass+" slick-group-level-"+s,formatter:a.totalsFormatter,editor:null}},getOptions:function(){return a},setOptions:function(e){o.extend(!0,a,e)}}}}},n”, ” 472: function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return"horizontal"==this.model.orientation?super._width_policy():"fixed"}_height_policy(){return"horizontal"==this.model.orientation?"fixed":super._height_policy()}box_sizing(){const i=super.box_sizing();return"horizontal"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__="WidgetView";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,"horizontal"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__="Widget",s.init_Widget()},n”, ” 473: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),n=e(472),c=e(114),a=s.__importStar(e(18));class o extends n.Widget{constructor(e){super(e)}static init_TableWidget(){this.define({source:[a.Instance],view:[a.Instance,()=>new c.CDSView]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.source,this.view.compute_indices())}}t.TableWidget=o,o.__name__="TableWidget",o.init_TableWidget()},n”, ” 474: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const r=t(1),o=t(475),n=t(455),l=r.__importStar(t(18)),a=t(29),d=t(81);class s extends d.Model{constructor(t){super(t)}static init_TableColumn(){this.define({field:[l.String],title:[l.String],width:[l.Number,300],formatter:[l.Instance,()=>new o.StringFormatter],editor:[l.Instance,()=>new n.StringEditor],sortable:[l.Boolean,!0],default_sort:[l.Sort,"ascending"]})}toColumn(){var t;return{id:a.uniqueId(),field:this.field,name:null!==(t=this.title)&&void 0!==t?t:this.field,width:this.width,formatter:null!=this.formatter?this.formatter.doFormat.bind(this.formatter):void 0,model:this.editor,editor:this.editor.default_view,sortable:this.sortable,defaultSortAsc:"ascending"==this.default_sort}}}i.TableColumn=s,s.__name__="TableColumn",s.init_TableColumn()},n”, ” 475: function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),i=n.__importDefault(t(186)),a=n.__importStar(t(188)),o=t(476),s=n.__importStar(t(18)),l=t(72),c=t(8),m=t(81);class _ extends m.Model{constructor(t){super(t)}doFormat(t,e,r,n,i){return null==r?"":(r+"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}}r.CellFormatter=_,_.__name__="CellFormatter";class u extends _{constructor(t){super(t)}static init_StringFormatter(){this.define({font_style:[s.FontStyle,"normal"],text_align:[s.TextAlign,"left"],text_color:[s.Color]})}doFormat(t,e,r,n,i){const{font_style:a,text_align:o,text_color:s}=this,c=l.div({},null==r?"":""+r);switch(a){case"bold":c.style.fontWeight="bold";break;case"italic":c.style.fontStyle="italic"}return null!=o&&(c.style.textAlign=o),null!=s&&(c.style.color=s),c.outerHTML}}r.StringFormatter=u,u.__name__="StringFormatter",u.init_StringFormatter();class F extends u{constructor(t){super(t)}static init_ScientificFormatter(){this.define({nan_format:[s.String],precision:[s.Number,10],power_limit_high:[s.Number,5],power_limit_low:[s.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}doFormat(t,e,r,n,i){const a=r<=this.scientific_limit_low||r>=this.scientific_limit_high;let o=this.precision;return o<1&&(o=1),r=null!=r&&!isNaN(r)||null==this.nan_format?a?r.toExponential(o):r.toFixed(o).replace(/(\.[0-9]?)0+$/,"$1").replace(/\.$/,""):this.nan_format,super.doFormat(t,e,r,n,i)}}r.ScientificFormatter=F,F.__name__="ScientificFormatter",F.init_ScientificFormatter();class d extends u{constructor(t){super(t)}static init_NumberFormatter(){this.define({format:[s.String,"0,0"],language:[s.String,"en"],rounding:[s.RoundingFunction,"round"],nan_format:[s.String]})}doFormat(t,e,r,n,i){const{format:o,language:s,nan_format:l}=this,c=(()=>{switch(this.rounding){case"round":case"nearest":return Math.round;case"floor":case"rounddown":return Math.floor;case"ceil":case"roundup":return Math.ceil}})();return r=null!=r&&!isNaN(r)||null==l?a.format(r,o,s,c):l,super.doFormat(t,e,r,n,i)}}r.NumberFormatter=d,d.__name__="NumberFormatter",d.init_NumberFormatter();class f extends _{constructor(t){super(t)}static init_BooleanFormatter(){this.define({icon:[s.String,"check"]})}doFormat(t,e,r,n,i){return r?l.i({class:this.icon}).outerHTML:""}}r.BooleanFormatter=f,f.__name__="BooleanFormatter",f.init_BooleanFormatter();class g extends u{constructor(t){super(t)}static init_DateFormatter(){this.define({format:[s.String,"ISO-8601"],nan_format:[s.String]})}getFormat(){switch(this.format){case"ATOM":case"W3C":case"RFC-3339":case"ISO-8601":return"%Y-%m-%d";case"COOKIE":return"%a, %d %b %Y";case"RFC-850":return"%A, %d-%b-%y";case"RFC-1123":case"RFC-2822":return"%a, %e %b %Y";case"RSS":case"RFC-822":case"RFC-1036":return"%a, %e %b %y";case"TIMESTAMP":return;default:return this.format}}doFormat(t,e,r,n,a){const{nan_format:o}=this;let s;return s=null!=(r=c.isString(r)?parseInt(r,10):r)&&!isNaN(r)&&-9223372036854776!==r||null==o?null==r?"":i.default(r,this.getFormat()):o,super.doFormat(t,e,s,n,a)}}r.DateFormatter=g,g.__name__="DateFormatter",g.init_DateFormatter();class h extends _{constructor(t){super(t)}static init_HTMLTemplateFormatter(){this.define({template:[s.String,"<%= value %>"]})}doFormat(t,e,r,n,i){const{template:a}=this;if(null==r)return"";return o._.template(a)(Object.assign(Object.assign({},i),{value:r}))}}r.HTMLTemplateFormatter=h,h.__name__="HTMLTemplateFormatter",h.init_HTMLTemplateFormatter()},n”, ” 476: function _(e,n,t){var f=e(477),i=f.template;function o(e,n,t){return i(e,n,t)}o._=f,n.exports=o,"function"==typeof define&&define.amd?define((function(){return o})):"undefined"==typeof window&&"undefined"==typeof navigator||(window.UnderscoreTemplate=o)},n”, ” 477: function _(r,e,n){n”, ” // (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn”, ” // Underscore may be freely distributed under the MIT license.n”, ” var t={},a=Array.prototype,u=Object.prototype,c=a.slice,o=u.toString,l=u.hasOwnProperty,i=a.forEach,f=Object.keys,s=Array.isArray,p=function(){},_=p.each=p.forEach=function(r,e,n){if(null!=r)if(i&&r.forEach===i)r.forEach(e,n);else if(r.length===+r.length){for(var a=0,u=r.length;a<u;a++)if(e.call(n,r[a],a,r)===t)return}else{var c=p.keys(r);for(a=0,u=c.length;a<u;a++)if(e.call(n,r[c[a]],c[a],r)===t)return}};p.keys=f||function(r){if(r!==Object(r))throw new TypeError("Invalid object");var e=[];for(var n in r)p.has(r,n)&&e.push(n);return e},p.defaults=function(r){return _(c.call(arguments,1),(function(e){if(e)for(var n in e)void 0===r[n]&&(r[n]=e[n])})),r},p.isArray=s||function(r){return"[object Array]"===o.call(r)},p.has=function(r,e){if(!p.isArray(e))return null!=r&&l.call(r,e);for(var n=e.length,t=0;t<n;t++){var a=e[t];if(null==r||!l.call(r,a))return!1;r=r[a]}return!!n};var h={escape:{"&":"&","<":"<",">":">",’"’:""","’":"'"}},v={escape:new RegExp("["+p.keys(h.escape).join("")+"]","g")};p.each(["escape"],(function(r){p[r]=function(e){return null==e?"":(""+e).replace(v[r],(function(e){return h[r][e]}))}})),p.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var g=/(.)^/,y={"’":"’","\\":"\\","\r":"r","\n":"n","\t":"t","\u2028":"u2028","\u2029":"u2029"},j=/\\|’|\\r|\n|\t|\u2028|\u2029/g;p.template=function(r,e,n){var t;n=p.defaults({},n,p.templateSettings);var a=new RegExp([(n.escape||g).source,(n.interpolate||g).source,(n.evaluate||g).source].join("|\")+\"|$\",\"g\"),u=0,c=\"__p+='\";r.replace(a,(function(e,n,t,a,o){return c+=r.slice(u,o).replace(j,(function(r){return\"\\\\\"+y[r]})),n&&(c+=\"'+\\n((__t=(\"+n+\"))==null?'':_.escape(__t))+\\n'\"),t&&(c+=\"'+\\n((__t=(\"+t+\"))==null?'':__t)+\\n'\"),a&&(c+=\"';\\n\"+a+\"\\n__p+='\"),u=o+e.length,e})),c+=\"';\\n\",n.variable||(c=\"with(obj||{}){\\n\"+c+\"}\\n\"),c=\"var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\\n\"+c+\"return __p;\\n\";try{t=new Function(n.variable||"obj","_",c)}catch(r){throw r.source=c,r}if(e)return t(e,p);var o=function(r){return t.call(this,r,p)};return o.source="function("+(n.variable||"obj")+"){\n"+c+"}",o},e.exports=p},n”, ” 478: function _(e,l,b){Object.defineProperty(b,"__esModule",{value:!0}),b.bk_data_table="bk-data-table",b.bk_cell_index="bk-cell-index",b.bk_header_index="bk-header-index",b.bk_cell_editor="bk-cell-editor",b.bk_cell_select="bk-cell-select"},n”, ” 479: function _(A,n,o){Object.defineProperty(o,"__esModule",{value:!0});o.default=’\n.bk-root {\n /\nIMPORTANT:\nIn order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.\nNo built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS\nclasses should alter those!\n/\n /\nIMPORTANT:\nIn order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.\nNo built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS\nclasses should alter those!\n/\n /* Menu button /\n / Menu /\n / Menu items /\n / Disabled /\n / Divider /\n / Excluded item from Column Picker will be hidden /\n}\n.bk-root .slick-header.ui-state-default,\n.bk-root .slick-headerrow.ui-state-default,\n.bk-root .slick-footerrow.ui-state-default,\n.bk-root .slick-top-panel-scroller.ui-state-default,\n.bk-root .slick-group-header.ui-state-default {\n width: 100%;\n overflow: auto;\n position: relative;\n border-left: 0px !important;\n}\n.bk-root .slick-header.ui-state-default {\n overflow: inherit;\n}\n.bk-root .slick-header::-webkit-scrollbar,\n.bk-root .slick-headerrow::-webkit-scrollbar,\n.bk-root .slick-footerrow::-webkit-scrollbar {\n display: none;\n}\n.bk-root .slick-header-columns,\n.bk-root .slick-headerrow-columns,\n.bk-root .slick-footerrow-columns,\n.bk-root .slick-group-header-columns {\n position: relative;\n white-space: nowrap;\n cursor: default;\n overflow: hidden;\n}\n.bk-root .slick-header-column.ui-state-default,\n.bk-root .slick-group-header-column.ui-state-default {\n position: relative;\n display: inline-block;\n box-sizing: content-box !important;\n / this here only for Firefox! /\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n height: 16px;\n line-height: 16px;\n margin: 0;\n padding: 4px;\n border-right: 1px solid silver;\n border-left: 0px !important;\n border-top: 0px !important;\n border-bottom: 0px !important;\n float: left;\n}\n.bk-root .slick-footerrow-column.ui-state-default {\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n margin: 0;\n padding: 4px;\n border-right: 1px solid silver;\n border-left: 0px;\n border-top: 0px;\n border-bottom: 0px;\n float: left;\n line-height: 20px;\n vertical-align: middle;\n}\n.bk-root .slick-headerrow-column.ui-state-default,\n.bk-root .slick-footerrow-column.ui-state-default {\n padding: 4px;\n}\n.bk-root .slick-header-column-sorted {\n font-style: italic;\n}\n.bk-root .slick-sort-indicator {\n display: inline-block;\n width: 8px;\n height: 5px;\n margin-left: 4px;\n margin-top: 6px;\n float: left;\n}\n.bk-root .slick-sort-indicator-numbered {\n display: inline-block;\n width: 8px;\n height: 5px;\n margin-left: 4px;\n margin-top: 0;\n line-height: 20px;\n float: left;\n font-family: Arial;\n font-style: normal;\n font-weight: bold;\n color: #6190CD;\n}\n.bk-root .slick-sort-indicator-desc {\n background: url(images/sort-desc.gif);\n}\n.bk-root .slick-sort-indicator-asc {\n background: url(images/sort-asc.gif);\n}\n.bk-root .slick-resizable-handle {\n position: absolute;\n font-size: 0.1px;\n display: block;\n cursor: col-resize;\n width: 9px;\n right: -5px;\n top: 0;\n height: 100%;\n z-index: 1;\n}\n.bk-root .slick-sortable-placeholder {\n background: silver;\n}\n.bk-root .grid-canvas {\n position: relative;\n outline: 0;\n}\n.bk-root .slick-row.ui-widget-content,\n.bk-root .slick-row.ui-state-active {\n position: absolute;\n border: 0px;\n width: 100%;\n}\n.bk-root .slick-cell,\n.bk-root .slick-headerrow-column,\n.bk-root .slick-footerrow-column {\n position: absolute;\n border: 1px solid transparent;\n border-right: 1px dotted silver;\n border-bottom-color: silver;\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n vertical-align: middle;\n z-index: 1;\n padding: 1px 2px 2px 1px;\n margin: 0;\n white-space: nowrap;\n cursor: default;\n}\n.bk-root .slick-cell,\n.bk-root .slick-headerrow-column {\n border-bottom-color: silver;\n}\n.bk-root .slick-footerrow-column {\n border-top-color: silver;\n}\n.bk-root .slick-group-toggle {\n display: inline-block;\n}\n.bk-root .slick-cell.highlighted {\n background: lightskyblue;\n background: rgba(0, 0, 255, 0.2);\n -webkit-transition: all 0.5s;\n -moz-transition: all 0.5s;\n -o-transition: all 0.5s;\n transition: all 0.5s;\n}\n.bk-root .slick-cell.flashing {\n border: 1px solid red !important;\n}\n.bk-root .slick-cell.editable {\n z-index: 11;\n overflow: visible;\n background: white;\n border-color: black;\n border-style: solid;\n}\n.bk-root .slick-cell:focus {\n outline: none;\n}\n.bk-root .slick-reorder-proxy {\n display: inline-block;\n background: blue;\n opacity: 0.15;\n cursor: move;\n}\n.bk-root .slick-reorder-guide {\n display: inline-block;\n height: 2px;\n background: blue;\n opacity: 0.7;\n}\n.bk-root .slick-selection {\n z-index: 10;\n position: absolute;\n border: 2px dashed black;\n}\n.bk-root .slick-pane {\n position: absolute;\n outline: 0;\n overflow: hidden;\n width: 100%;\n}\n.bk-root .slick-pane-header {\n display: block;\n}\n.bk-root .slick-header {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-headerrow {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-top-panel-scroller {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-top-panel {\n width: 10000px;\n}\n.bk-root .slick-viewport {\n position: relative;\n outline: 0;\n width: 100%;\n}\n.bk-root .slick-header-columns {\n background: url(\’images/header-columns-bg.gif\’) repeat-x center bottom;\n border-bottom: 1px solid silver;\n}\n.bk-root .slick-header-column {\n background: url(\’images/header-columns-bg.gif\’) repeat-x center bottom;\n border-right: 1px solid silver;\n}\n.bk-root .slick-header-column:hover,\n.bk-root .slick-header-column-active {\n background: white url(\’images/header-columns-over-bg.gif\’) repeat-x center bottom;\n}\n.bk-root .slick-headerrow {\n background: #fafafa;\n}\n.bk-root .slick-headerrow-column {\n background: #fafafa;\n border-bottom: 0;\n height: 100%;\n}\n.bk-root .slick-row.ui-state-active {\n background: #F5F7D7;\n}\n.bk-root .slick-row {\n position: absolute;\n background: white;\n border: 0px;\n line-height: 20px;\n}\n.bk-root .slick-row.selected {\n z-index: 10;\n background: #DFE8F6;\n}\n.bk-root .slick-cell {\n padding-left: 4px;\n padding-right: 4px;\n}\n.bk-root .slick-group {\n border-bottom: 2px solid silver;\n}\n.bk-root .slick-group-toggle {\n width: 9px;\n height: 9px;\n margin-right: 5px;\n}\n.bk-root .slick-group-toggle.expanded {\n background: url(images/collapse.gif) no-repeat center center;\n}\n.bk-root .slick-group-toggle.collapsed {\n background: url(images/expand.gif) no-repeat center center;\n}\n.bk-root .slick-group-totals {\n color: gray;\n background: white;\n}\n.bk-root .slick-group-select-checkbox {\n width: 13px;\n height: 13px;\n margin: 3px 10px 0 0;\n display: inline-block;\n}\n.bk-root .slick-group-select-checkbox.checked {\n background: url(images/GrpCheckboxY.png) no-repeat center center;\n}\n.bk-root .slick-group-select-checkbox.unchecked {\n background: url(images/GrpCheckboxN.png) no-repeat center center;\n}\n.bk-root .slick-cell.selected {\n background-color: beige;\n}\n.bk-root .slick-cell.active {\n border-color: gray;\n border-style: solid;\n}\n.bk-root .slick-sortable-placeholder {\n background: silver !important;\n}\n.bk-root .slick-row.odd {\n background: #fafafa;\n}\n.bk-root .slick-row.ui-state-active {\n background: #F5F7D7;\n}\n.bk-root .slick-row.loading {\n opacity: 0.5;\n}\n.bk-root .slick-cell.invalid {\n border-color: red;\n -moz-animation-duration: 0.2s;\n -webkit-animation-duration: 0.2s;\n -moz-animation-name: slickgrid-invalid-hilite;\n -webkit-animation-name: slickgrid-invalid-hilite;\n}\n@-moz-keyframes slickgrid-invalid-hilite {\n from {\n box-shadow: 0 0 6px red;\n }\n to {\n box-shadow: none;\n }\n}\n@-webkit-keyframes slickgrid-invalid-hilite {\n from {\n box-shadow: 0 0 6px red;\n }\n to {\n box-shadow: none;\n }\n}\n.bk-root .slick-column-name,\n.bk-root .slick-sort-indicator {\n /*\n * This makes all "float:right" elements after it that spill over to the next line\n * display way below the lower boundary of the column thus hiding them.\n /\n display: inline-block;\n float: left;\n margin-bottom: 100px;\n}\n.bk-root .slick-header-button {\n display: inline-block;\n float: right;\n vertical-align: top;\n margin: 1px;\n /*\n * This makes all "float:right" elements after it that spill over to the next line\n * display way below the lower boundary of the column thus hiding them.\n /\n margin-bottom: 100px;\n height: 15px;\n width: 15px;\n background-repeat: no-repeat;\n background-position: center center;\n cursor: pointer;\n}\n.bk-root .slick-header-button-hidden {\n width: 0;\n -webkit-transition: 0.2s width;\n -ms-transition: 0.2s width;\n transition: 0.2s width;\n}\n.bk-root .slick-header-column:hover > .slick-header-button {\n width: 15px;\n}\n.bk-root .slick-header-menubutton {\n position: absolute;\n right: 0;\n top: 0;\n bottom: 0;\n width: 14px;\n background-repeat: no-repeat;\n background-position: left center;\n background-image: url(../images/down.gif);\n cursor: pointer;\n display: none;\n border-left: thin ridge silver;\n}\n.bk-root .slick-header-column:hover > .slick-header-menubutton,\n.bk-root .slick-header-column-active .slick-header-menubutton {\n display: inline-block;\n}\n.bk-root .slick-header-menu {\n position: absolute;\n display: inline-block;\n margin: 0;\n padding: 2px;\n cursor: default;\n}\n.bk-root .slick-header-menuitem {\n list-style: none;\n margin: 0;\n padding: 0;\n cursor: pointer;\n}\n.bk-root .slick-header-menuicon {\n display: inline-block;\n width: 16px;\n height: 16px;\n vertical-align: middle;\n margin-right: 4px;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .slick-header-menucontent {\n display: inline-block;\n vertical-align: middle;\n}\n.bk-root .slick-header-menuitem-disabled {\n color: silver;\n}\n.bk-root .slick-header-menuitem.slick-header-menuitem-divider {\n cursor: default;\n border: none;\n overflow: hidden;\n padding: 0;\n height: 1px;\n margin: 8px 2px;\n background-color: #cecece;\n}\n.bk-root .slick-header-menuitem-divider.slick-header-menuitem:hover {\n background-color: #cecece;\n}\n.bk-root .slick-columnpicker {\n border: 1px solid #718BB7;\n background: #f0f0f0;\n padding: 6px;\n -moz-box-shadow: 2px 2px 2px silver;\n -webkit-box-shadow: 2px 2px 2px silver;\n box-shadow: 2px 2px 2px silver;\n min-width: 150px;\n cursor: default;\n position: absolute;\n z-index: 20;\n overflow: auto;\n resize: both;\n}\n.bk-root .slick-columnpicker > .close {\n float: right;\n}\n.bk-root .slick-columnpicker .title {\n font-size: 16px;\n width: 60%;\n border-bottom: solid 1px #d6d6d6;\n margin-bottom: 10px;\n}\n.bk-root .slick-columnpicker li {\n list-style: none;\n margin: 0;\n padding: 0;\n background: none;\n}\n.bk-root .slick-columnpicker input {\n margin: 4px;\n}\n.bk-root .slick-columnpicker li a {\n display: block;\n padding: 4px;\n font-weight: bold;\n}\n.bk-root .slick-columnpicker li a:hover {\n background: white;\n}\n.bk-root .slick-columnpicker-list li.hidden {\n display: none;\n}\n.bk-root .slick-pager {\n width: 100%;\n height: 26px;\n border: 1px solid gray;\n border-top: 0;\n background: url(\’../images/header-columns-bg.gif\’) repeat-x center bottom;\n vertical-align: middle;\n}\n.bk-root .slick-pager .slick-pager-status {\n display: inline-block;\n padding: 6px;\n}\n.bk-root .slick-pager .ui-icon-container {\n display: inline-block;\n margin: 2px;\n border-color: gray;\n}\n.bk-root .slick-pager .slick-pager-nav {\n display: inline-block;\n float: left;\n padding: 2px;\n}\n.bk-root .slick-pager .slick-pager-settings {\n display: block;\n float: right;\n padding: 2px;\n}\n.bk-root .slick-pager .slick-pager-settings * {\n vertical-align: middle;\n}\n.bk-root .slick-pager .slick-pager-settings a {\n padding: 2px;\n text-decoration: underline;\n cursor: pointer;\n}\n.bk-root .slick-header-columns {\n border-bottom: 1px solid silver;\n background-image: none;\n}\n.bk-root .slick-header-column {\n border-right: 1px solid transparent;\n background-image: none;\n}\n.bk-root .slick-header-column:last-of-type {\n border-right-color: transparent;\n}\n.bk-root .slick-header-column:hover,\n.bk-root .slick-header-column-active {\n background-color: #F0F8FF;\n background-image: none;\n}\n.bk-root .slick-group-toggle.expanded {\n background-image: url("data:image/gif;base64,R0lGODlhCQAJAPcAAAFGeoCAgNXz/+v5/+v6/+z5/+36//L7//X8//j9/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACQAJAAAIMwADCBxIUIDBgwIEChgwwECBAgQUFjBAkaJCABgxGlB4AGHCAAIQiBypEEECkScJqgwQEAA7");\n}\n.bk-root .slick-group-toggle.collapsed {\n background-image: url("data:image/gif;base64,R0lGODlhCQAJAPcAAAFGeoCAgNXz/+v5/+v6/+z5/+36//L7//X8//j9/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACQAJAAAIOAADCBxIUIDBgwIEChgwAECBAgQUFjAAQIABAwoBaNSIMYCAAwIqGlSIAEHFkiQTIBCgkqDLAAEBADs=");\n}\n.bk-root .slick-group-select-checkbox.checked {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAIAAACQKrqGAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAEcSURBVChTjdI9S8NQFAbg/raQXVwCRRFE7GK7OXTwD+ikk066VF3a0ja0hQTyQdJrwNq0zrYSQRLEXMSWSlCIb8glqRcFD+9yz3nugXwU4n9XQqMoGjj36uBJsTwuaNo3EwBG4Yy7pe7Gv8YcvhJCGFVsjxsjxujj6OTSGlHv+U2WZUZbPWKOv1ZjT5a7pbIoiptbO5b73mwrjHa1B27l8VlTEIS1damlTnEE+EEN9/P8WrfH81qdAIGeXvTTmzltdCy46sEhxpKUINReZR9NnqZbr9puugxV3NjWh/k74WmmEdWhmUNy2jNmWRc6fZTVADCqao52u+DGWTACYNT3fRxwtatPufTNR4yCIGAUn5hS+vJHhWGY/ANx/A3tvdv+1tZmuwAAAABJRU5ErkJggg==");\n}\n.bk-root .slick-group-select-checkbox.unchecked {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAIAAACQKrqGAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAACXSURBVChT1dIxC4MwEAXg/v8/VOhQVDBNakV0KA6pxS4JhWRSIYPEJxwdDi1de7wleR+3JIf486w0hKCKRpSvvOhZcCmvNQBRuKqdah03U7UjNNH81rOaBYDo8SQaPX8JANFEaLaGBeAPaaY61rGksiN6TmR5H1j9CSoAosYYHLA7vTxYMvVEZa0liif23r93xjm3/oEYF8PiDn/I2FHCAAAAAElFTkSuQmCC");\n}\n.bk-root .slick-sort-indicator-desc {\n background-image: url("data:image/gif;base64,R0lGODlhDQAFAIcAAGGQzUD/QOPu+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAMAAAEALAAAAAANAAUAAAgeAAUAGEgQgIAACBEKLHgwYcKFBh1KFNhQosOKEgMCADs=");\n}\n.bk-root .slick-sort-indicator-asc {\n background-image: url("data:image/gif;base64,R0lGODlhDQAFAIcAAGGQzUD/QOPu+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAMAAAEALAAAAAANAAUAAAgbAAMIDABgoEGDABIeRJhQ4cKGEA8KmEiRosGAADs=");\n}\n.bk-root .slick-header-menubutton {\n background-image: url("data:image/gif;base64,R0lGODlhDgAOAIABADtKYwAAACH5BAEAAAEALAAAAAAOAA4AAAISjI+py+0PHZgUsGobhTn6DxoFADs=");\n}\n.bk-root .slick-pager {\n background-image: none;\n}\n’},n”, ” 480: function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default=’\n.bk-root .bk-data-table {\n box-sizing: content-box;\n font-size: 11px;\n}\n.bk-root .bk-data-table input[type="checkbox"] {\n margin-left: 4px;\n margin-right: 4px;\n}\n.bk-root .bk-cell-special-defaults {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n}\n.bk-root .bk-cell-select {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n}\n.bk-root .slick-cell.bk-cell-index {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n text-align: right;\n background: #f0f0f0;\n color: #909090;\n}\n.bk-root .bk-header-index .slick-column-name {\n float: right;\n}\n.bk-root .slick-row.selected .bk-cell-index {\n background-color: transparent;\n}\n.bk-root .slick-row.odd {\n background: #f0f0f0;\n}\n.bk-root .slick-cell {\n padding-left: 4px;\n padding-right: 4px;\n border-right-color: transparent;\n border: 0.25px solid transparent;\n}\n.bk-root .slick-cell .bk {\n line-height: inherit;\n}\n.bk-root .slick-cell.active {\n border-style: dashed;\n}\n.bk-root .slick-cell.selected {\n background-color: #F0F8FF;\n}\n.bk-root .slick-cell.editable {\n padding-left: 0;\n padding-right: 0;\n}\n.bk-root .bk-cell-editor {\n display: contents;\n}\n.bk-root .bk-cell-editor input,\n.bk-root .bk-cell-editor select {\n width: 100%;\n height: 100%;\n border: 0;\n margin: 0;\n padding: 0;\n outline: 0;\n background: transparent;\n vertical-align: baseline;\n}\n.bk-root .bk-cell-editor input {\n padding-left: 4px;\n padding-right: 4px;\n}\n.bk-root .bk-cell-editor-completion {\n font-size: 11px;\n}\n’},n”, ” 481: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const r=t(1),a=t(463),{Avg:i,Min:o,Max:g,Sum:n}=a.Data.Aggregators,u=r.__importStar(t(18)),c=t(81);class _ extends c.Model{constructor(t){super(t)}static init_RowAggregator(){this.define({field_:[u.String,""]})}}s.RowAggregator=_,_.__name__="RowAggregator",_.init_RowAggregator();const l=new i;class m extends _{constructor(){super(…arguments),this.key="avg",this.init=l.init,this.accumulate=l.accumulate,this.storeResult=l.storeResult}}s.AvgAggregator=m,m.__name__="AvgAggregator";const h=new o;class A extends _{constructor(){super(…arguments),this.key="min",this.init=h.init,this.accumulate=h.accumulate,this.storeResult=h.storeResult}}s.MinAggregator=A,A.__name__="MinAggregator";const R=new g;class d extends _{constructor(){super(…arguments),this.key="max",this.init=R.init,this.accumulate=R.accumulate,this.storeResult=R.storeResult}}s.MaxAggregator=d,d.__name__="MaxAggregator";const x=new n;class w extends _{constructor(){super(…arguments),this.key="sum",this.init=x.init,this.accumulate=x.accumulate,this.storeResult=x.storeResult}}s.SumAggregator=w,w.__name__="SumAggregator"},n”, ” 482: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t(1).__importStar(t(18)),r=t(72),i=t(463),a=t(456),n=t(81);function l(t,e,s,o,i){const{collapsed:a,level:n,title:l}=i,u=r.span({class:"slick-group-toggle "+(a?"collapsed":"expanded"),style:{"margin-left":15*n+"px"}}),g=r.span({class:"slick-group-title",level:n},l);return`${u.outerHTML}${g.outerHTML}`}function u(t,e){const s=this.getDataItem(e.row);s instanceof i.Group&&t.target.classList.contains("slick-group-toggle")&&(s.collapsed?this.getData().expandGroup(s.groupingKey):this.getData().collapseGroup(s.groupingKey),t.stopImmediatePropagation(),t.preventDefault(),this.invalidate(),this.render())}class g extends n.Model{constructor(t){super(t)}static init_GroupingInfo(){this.define({getter:[o.String,""],aggregators:[o.Array,[]],collapsed:[o.Boolean,!1]})}get comparer(){return(t,e)=>t.value===e.value?0:t.value>e.value?1:-1}}s.GroupingInfo=g,g.__name__="GroupingInfo",g.init_GroupingInfo();class c extends a.TableDataProvider{constructor(t,e,s,o){super(t,e),this.columns=s,this.groupingInfos=[],this.groupingDelimiter=":|:",this.target=o}setGrouping(t){this.groupingInfos=t,this.toggledGroupsByLevel=t.map(()=>({})),this.refresh()}extractGroups(t,e){const s=[],o=new Map,r=e?e.level+1:0,{comparer:a,getter:n}=this.groupingInfos[r];return t.forEach(t=>{const a=this.source.data[n][t];let l=o.get(a);if(!l){const t=e?`${e.groupingKey}${this.groupingDelimiter}${a}`:""+a;l=Object.assign(new i.Group,{value:a,level:r,groupingKey:t}),s.push(l),o.set(a,l)}l.rows.push(t)}),r<this.groupingInfos.length-1&&s.forEach(t=>{t.groups=this.extractGroups(t.rows,t)}),s.sort(a),s}calculateTotals(t,e){const s={avg:{},max:{},min:{},sum:{}},{source:{data:o}}=this,r=Object.keys(o),i=t.rows.map(t=>r.reduce((e,s)=>Object.assign(Object.assign({},e),{[s]:o[s][t]}),{}));return e.forEach(t=>{t.init(),i.forEach(e=>t.accumulate(e)),t.storeResult(s)}),s}addTotals(t,e=0){const{aggregators:s,collapsed:o}=this.groupingInfos[e],r=this.toggledGroupsByLevel[e];t.forEach(t=>{t.groups&&this.addTotals(t.groups,e+1),s.length&&t.rows.length&&(t.totals=this.calculateTotals(t,s)),t.collapsed=o!==r[t.groupingKey],t.title=t.value?""+t.value:""})}flattenedGroupedRows(t,e=0){const s=[];return t.forEach(t=>{if(s.push(t),!t.collapsed){const o=t.groups?this.flattenedGroupedRows(t.groups,e+1):t.rows;s.push(…o)}}),s}refresh(){const t=this.extractGroups([…this.view.indices]),e=this.source.data[this.columns[0].field];t.length&&(this.addTotals(t),this.rows=this.flattenedGroupedRows(t),this.target.data={row_indices:this.rows.map(t=>t instanceof i.Group?t.rows:t),labels:this.rows.map(t=>t instanceof i.Group?t.title:e[t])})}getLength(){return this.rows.length}getItem(t){const e=this.rows[t],{source:{data:s}}=this;return e instanceof i.Group?e:Object.keys(s).reduce((t,o)=>Object.assign(Object.assign({},t),{[o]:s[o][e]}),{[a.DTINDEX_NAME]:e})}getItemMetadata(t){const e=this.rows[t],s=this.columns.slice(1),o=e instanceof i.Group?this.groupingInfos[e.level].aggregators:[];return e instanceof i.Group?{selectable:!1,focusable:!1,cssClasses:"slick-group",columns:[{formatter:l},…s.map((function(t){const{field:e,formatter:s}=t,r=o.find(({field_:t})=>t===e);if(r){const{key:t}=r;return{formatter:(o,r,i,a,n)=>s?s(o,r,n.totals[t][e],a,n):""}}return{}}))]}:{}}collapseGroup(t){const e=t.split(this.groupingDelimiter).length-1;this.toggledGroupsByLevel[e][t]=!this.groupingInfos[e].collapsed,this.refresh()}expandGroup(t){const e=t.split(this.groupingDelimiter).length-1;this.toggledGroupsByLevel[e][t]=this.groupingInfos[e].collapsed,this.refresh()}}s.DataCubeProvider=c,c.__name__="DataCubeProvider";class p extends a.DataTableView{render(){const t={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:!1,autosizeColsMode:this.autosize,multiColumnSort:!1,editable:this.model.editable,autoEdit:this.model.auto_edit,rowHeight:this.model.row_height},e=this.model.columns.map(t=>t.toColumn());var s,o;e[0].formatter=(s=e[0].formatter,o=this.model.grouping.length,(t,e,i,a,n)=>{const l=r.span({class:"slick-group-toggle",style:{"margin-left":15*(o||0)+"px"}}),u=s?s(t,e,i,a,n):""+i;return`${l.outerHTML}${u&&u.replace(/^<div/,"<span").replace(/div>$/,"span>")}`}),delete e[0].editor,this.data=new c(this.model.source,this.model.view,e,this.model.target),this.data.setGrouping(this.model.grouping),this.el.style.width=this.model.width+"px",this.grid=new i.Grid(this.el,this.data,e,t),this.grid.onClick.subscribe(u)}}s.DataCubeView=p,p.__name__="DataCubeView";class h extends a.DataTable{constructor(t){super(t)}static init_DataCube(){this.prototype.default_view=p,this.define({grouping:[o.Array,[]],target:[o.Instance]})}}s.DataCube=h,h.__name__="DataCube",h.init_DataCube()},n”, ” }, 453, {"models/widgets/tables/main":453,"models/widgets/tables/index":454,"models/widgets/tables/cell_editors":455,"models/widgets/tables/data_table":456,"models/widgets/widget":472,"models/widgets/tables/table_widget":473,"models/widgets/tables/table_column":474,"models/widgets/tables/cell_formatters":475,"styles/widgets/tables":478,"styles/widgets/slickgrid.css":479,"styles/widgets/tables.css":480,"models/widgets/tables/row_aggregators":481,"models/widgets/tables/data_cube":482}, {});n”, ” })n”, “n”, “n”, ” / END bokeh-tables.min.js /n”, ” },n”, ” n”, ” function(Bokeh) {n”, ” Bokeh.set_log_level("info");n”, ” },n”, ” n”, ” function(Bokeh) {n”, ” / BEGIN panel.min.js /n”, ” /!n”, ” * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn”, ” * All rights reserved.n”, ” * n”, ” * Redistribution and use in source and binary forms, with or without modification,n”, ” * are permitted provided that the following conditions are met:n”, ” * n”, ” * Redistributions of source code must retain the above copyright notice,n”, ” * this list of conditions and the following disclaimer.n”, ” * n”, ” * Redistributions in binary form must reproduce the above copyright notice,n”, ” * this list of conditions and the following disclaimer in the documentationn”, ” * and/or other materials provided with the distribution.n”, ” * n”, ” * Neither the name of Anaconda nor the names of any contributorsn”, ” * may be used to endorse or promote products derived from this softwaren”, ” * without specific prior written permission.n”, ” * n”, ” * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n”, ” * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn”, ” * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn”, ” * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn”, ” * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn”, ” * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn”, ” * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn”, ” * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn”, ” * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n”, ” * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn”, ” * THE POSSIBILITY OF SUCH DAMAGE.n”, ” /n”, ” (function(root, factory) {n”, ” factory(root["Bokeh"], undefined);n”, ” })(this, function(Bokeh, version) {n”, ” var define;n”, ” return (function(modules, entry, aliases, externals) {n”, ” const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n”, ” if (bokeh != null) {n”, ” return bokeh.register_plugin(modules, entry, aliases);n”, ” } else {n”, ” throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n”, ” }n”, ” })n”, ” ({n”, ” "4e90918c0a": function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e("tslib").__importStar(e("c4b9651916"));o.Panel=s;e("@bokehjs/base").register_models(s)},n”, ” "c4b9651916": function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});const o=a("tslib");var t=a("abb1112c2c");r.AcePlot=t.AcePlot;var c=a("66d52165db");r.Audio=c.Audio;var d=a("0106b0a1bf");r.Card=d.Card;var l=a("684c940c17");r.CommManager=l.CommManager;var v=a("d0d2aafca0");r.DeckGLPlot=v.DeckGLPlot;var b=a("c6decbe3f5");r.ECharts=b.ECharts;var i=a("ed08037ce5");r.HTML=i.HTML;var P=a("cb7ac8d1fa");r.IPyWidget=P.IPyWidget;var f=a("284504a0cf");r.JSON=f.JSON;var n=a("7a99dba4eb");r.FileDownload=n.FileDownload;var S=a("7b859fb3cf");r.KaTeX=S.KaTeX;var g=a("aded270681");r.Location=g.Location;var s=a("0c21036737");r.MathJax=s.MathJax;var y=a("79c41bbf71");r.Player=y.Player;var M=a("47b5ae5c43");r.PlotlyPlot=M.PlotlyPlot;var m=a("765e9cea08");r.Progress=m.Progress;var C=a("ff9dd91f7b");r.SingleSelect=C.SingleSelect;var L=a("38b2bc9574");r.State=L.State;var V=a("294adeb985");r.VegaPlot=V.VegaPlot;var u=a("b0c3e9e9c2");r.Video=u.Video;var _=a("3c7145a2fa");r.VideoStream=_.VideoStream,o.__exportStar(a("c51f25e2a7"),r)},n”, ” "abb1112c2c": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),n=e("@bokehjs/core/dom"),a=e("7116a7a602");class d extends a.PanelHTMLBoxView{initialize(){super.initialize(),this._ace=window.ace,this._container=n.div({id:"_"+Math.random().toString(36).substr(2,9),style:{width:"100%",height:"100%"}})}connect_signals(){super.connect_signals(),this.connect(this.model.properties.code.change,()=>this._update_code_from_model()),this.connect(this.model.properties.theme.change,()=>this._update_theme()),this.connect(this.model.properties.language.change,()=>this._update_language()),this.connect(this.model.properties.filename.change,()=>this._update_filename()),this.connect(this.model.properties.print_margin.change,()=>this._update_print_margin()),this.connect(this.model.properties.annotations.change,()=>this._add_annotations()),this.connect(this.model.properties.readonly.change,()=>{this._editor.setReadOnly(this.model.readonly)})}render(){super.render(),this._container!==this.el.childNodes[0]&&this.el.appendChild(this._container),this._container.textContent=this.model.code,this._editor=this._ace.edit(this._container.id),this._langTools=this._ace.require("ace/ext/language_tools"),this._modelist=this._ace.require("ace/ext/modelist"),this._editor.setOptions({enableBasicAutocompletion:!0,enableSnippets:!0,fontFamily:"monospace"}),this._update_theme(),this._update_filename(),this._update_language(),this._editor.setReadOnly(this.model.readonly),this._editor.setShowPrintMargin(this.model.print_margin),this._editor.on("change",()=>this._update_code_from_editor())}_update_code_from_model(){this._editor&&this._editor.getValue()!=this.model.code&&this._editor.setValue(this.model.code)}_update_print_margin(){this._editor.setShowPrintMargin(this.model.print_margin)}_update_code_from_editor(){this._editor.getValue()!=this.model.code&&(this.model.code=this._editor.getValue())}_update_theme(){this._editor.setTheme("ace/theme/"+this.model.theme)}_update_filename(){if(this.model.filename){const e=this._modelist.getModeForPath(this.model.filename).mode;this.model.language=e.slice(9)}}_update_language(){null!=this.model.language&&this._editor.session.setMode("ace/mode/"+this.model.language)}_add_annotations(){this._editor.session.setAnnotations(this.model.annotations)}after_layout(){super.after_layout(),this._editor.resize()}}i.AcePlotView=d,d.__name__="AcePlotView";class h extends s.HTMLBox{constructor(e){super(e)}static init_AcePlot(){this.prototype.default_view=d,this.define({code:[o.String],filename:[o.String],language:[o.String],theme:[o.String,"chrome"],annotations:[o.Array,[]],readonly:[o.Boolean,!1],print_margin:[o.Boolean,!1]}),this.override({height:300,width:300})}}i.AcePlot=h,h.__name__="AcePlot",h.__module__="panel.models.ace",h.init_AcePlot()},n”, ” "7116a7a602": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e("@bokehjs/core/layout/html"),h=e("@bokehjs/core/layout/types"),o=e("@bokehjs/core/dom"),n=e("@bokehjs/models/widgets/markup"),_=e("@bokehjs/models/layouts/html_box");function a(e,i){let t=null!=i.width?"fixed":"fit",s=null!=i.height?"fixed":"fit";const{sizing_mode:h}=i;if(null!=h)if("fixed"==h)t=s="fixed";else if("stretch_both"==h)t=s="max";else if("stretch_width"==h)t="max";else if("stretch_height"==h)s="max";else switch(h){case"scale_width":t="max",s="min";break;case"scale_height":t="min",s="max";break;case"scale_both":t="max",s="max";break;default:throw new Error("unreachable")}"fixed"==t&&i.width?e.style.width=i.width+"px":"max"==t&&(e.style.width="100%"),"fixed"==s&&i.height?e.style.height=i.height+"px":"max"==s&&(e.style.height="100%")}t.set_size=a;class d extends s.VariadicBox{constructor(e,i,t){super(e),this.el=e,this.sizing_mode=i,this.changed=t,this._cache=new Map,this._cache_count=new Map}_measure(e){const i=[e.width,e.height,this.sizing_mode].toString(),t=this.changed&&"fixed"!=this.sizing_mode&&null!=this.sizing_mode?1:0,s=this._cache.get(i),n=this._cache_count.get(i);if(null!=s&&null!=n&&n>=t)return this._cache_count.set(i,n+1),s;const _=new h.Sizeable(e).bounded_to(this.sizing.size),a=o.sized(this.el,_,()=>{const e=new h.Sizeable(o.content_size(this.el)),{border:i,padding:t}=o.extents(this.el);return e.grow_by(i).grow_by(t).map(Math.ceil)});return this._cache.set(i,a),this._cache_count.set(i,0),a}invalidate_cache(){}}t.CachedVariadicBox=d,d.__name__="CachedVariadicBox";class l extends n.MarkupView{_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new d(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}render(){super.render(),a(this.markup_el,this.model)}}t.PanelMarkupView=l,l.__name__="PanelMarkupView";class c extends _.HTMLBoxView{_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new d(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}render(){super.render(),a(this.el,this.model)}}t.PanelHTMLBoxView=c,c.__name__="PanelHTMLBoxView"},n”, ” "66d52165db": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),l=e("7116a7a602");class d extends l.PanelHTMLBoxView{initialize(){super.initialize(),this._blocked=!1,this._setting=!1,this._time=Date.now()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.loop.change,()=>this.set_loop()),this.connect(this.model.properties.paused.change,()=>this.set_paused()),this.connect(this.model.properties.time.change,()=>this.set_time()),this.connect(this.model.properties.value.change,()=>this.set_value()),this.connect(this.model.properties.volume.change,()=>this.set_volume())}render(){super.render(),this.audioEl=document.createElement("audio"),this.audioEl.controls=!0,this.audioEl.src=this.model.value,this.audioEl.currentTime=this.model.time,this.audioEl.loop=this.model.loop,null!=this.model.volume?this.audioEl.volume=this.model.volume/100:this.model.volume=100*this.audioEl.volume,this.audioEl.onpause=()=>this.model.paused=!0,this.audioEl.onplay=()=>this.model.paused=!1,this.audioEl.ontimeupdate=()=>this.update_time(this),this.audioEl.onvolumechange=()=>this.update_volume(this),this.el.appendChild(this.audioEl),this.model.paused||this.audioEl.play()}update_time(e){e._setting?e._setting=!1:Date.now()-e._time<e.model.throttle||(e._blocked=!0,e.model.time=e.audioEl.currentTime,e._time=Date.now())}update_volume(e){e._setting?e._setting=!1:(e._blocked=!0,e.model.volume=100*e.audioEl.volume)}set_loop(){this.audioEl.loop=this.model.loop}set_paused(){!this.audioEl.paused&&this.model.paused&&this.audioEl.pause(),this.audioEl.paused&&!this.model.paused&&this.audioEl.play()}set_volume(){this._blocked?this._blocked=!1:(this._setting=!0,null!=this.model.volume&&(this.audioEl.volume=this.model.volume/100))}set_time(){this._blocked?this._blocked=!1:(this._setting=!0,this.audioEl.currentTime=this.model.time)}set_value(){this.audioEl.src=this.model.value}}i.AudioView=d,d.__name__="AudioView";class u extends s.HTMLBox{constructor(e){super(e)}static init_Audio(){this.prototype.default_view=d,this.define({loop:[o.Boolean,!1],paused:[o.Boolean,!0],time:[o.Number,0],throttle:[o.Number,250],value:[o.Any,""],volume:[o.Number,null]})}}i.Audio=u,u.__name__="Audio",u.__module__="panel.models.widgets",u.init_Audio()},n”, ” "0106b0a1bf": function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const l=e("tslib"),o=e("@bokehjs/models/layouts/column"),a=l.__importStar(e("@bokehjs/core/dom")),i=e("@bokehjs/core/dom"),n=e("@bokehjs/core/layout/grid"),r=l.__importStar(e("@bokehjs/core/properties"));class c extends n.Column{constructor(e,s=!1){super(e),this.collapsed=s}_measure_totals(e,s){const t=this.collapsed?e.slice(0,1):e,l=t.length-1;return this.collapsed||(t[l]=t[l]+5),super._measure_totals(t,s)}}t.CollapseableColumnLayout=c,c.__name__="CollapseableColumnLayout";class d extends o.ColumnView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.collapsed.change,()=>this._collapse());const{active_header_background:e,header_background:s,header_color:t}=this.model.properties;this.on_change([e,s,t],()=>this.render())}_update_layout(){const e=this.child_views.map(e=>e.layout);this.layout=new c(e,this.model.collapsed),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0];const s=this.box_sizing();this.model.collapsed&&(s.height=void 0),this.layout.set_sizing(s)}render(){i.empty(this.el);const{background:e,button_css_classes:s,header_color:t,header_tag:l,header_css_classes:o}=this.model;this.el.style.backgroundColor=null!=e?e:"",i.classes(this.el).clear().add(…this.css_classes());let n=this.model.header_background;this.model.collapsed||null==this.model.active_header_background||(n=this.model.active_header_background);const r=this.child_views[0];let c;if(this.model.collapsible){this.button_el=a.createElement("button",{type:"button",class:o}),this.button_el.style.backgroundColor=null!=n?n:"",this.button_el.appendChild(r.el);const e=a.createElement("p",{class:s});e.innerHTML=this.model.collapsed?"+":"−",this.button_el.appendChild(e),this.button_el.onclick=()=>this._toggle_button(),c=this.button_el}else c=a.createElement(l,{class:o}),c.style.backgroundColor=null!=n?n:"",c.appendChild(r.el);c.style.color=null!=t?t:"",this.el.appendChild(c),r.render();for(const e of this.child_views.slice(1))this.model.collapsed||this.el.appendChild(e.el),e.render()}_toggle_button(){this.model.collapsed=!this.model.collapsed}_collapse(){this.invalidate_render(),this.resize_layout()}_createElement(){return a.createElement(this.model.tag,{class:this.css_classes()})}}t.CardView=d,d.__name__="CardView";class h extends o.Column{constructor(e){super(e)}static init_Card(){this.prototype.default_view=d,this.define({active_header_background:[r.String,null],button_css_classes:[r.Array,[]],collapsed:[r.Boolean,!0],collapsible:[r.Boolean,!0],header_background:[r.String,null],header_color:[r.String,null],header_css_classes:[r.Array,[]],header_tag:[r.String,"div"],tag:[r.String,"div"]})}}t.Card=h,h.__name__="Card",h.__module__="panel.models.layout",h.init_Card()},n”, ” "684c940c17": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),i=e("@bokehjs/document"),s=e("@bokehjs/core/view"),c=e("@bokehjs/model"),l=e("@bokehjs/protocol/message"),_=e("@bokehjs/protocol/receiver");class r extends s.View{renderTo(){}}n.CommManagerView=r,r.__name__="CommManagerView";class a extends c.Model{constructor(e){super(e),this._document_listener=e=>this._document_changed(e),this._receiver=new _.Receiver,this._event_buffer=[],this._blocked=!1,this._timeout=Date.now(),null!=window.PyViz&&window.PyViz.comm_manager?(this.ns=window.PyViz,this.ns.comm_manager.register_target(this.plot_id,this.comm_id,e=>this.msg_handler(e)),this._client_comm=this.ns.comm_manager.get_client_comm(this.plot_id,this.client_comm_id,e=>this.on_ack(e))):console.log("Could not find comm manager on window.PyViz, ensure the extension is loaded.")}_doc_attached(){super._doc_attached(),null!=this.document&&this.document.on_change(this._document_listener)}_document_changed(e){e.setter_id!==this.id&&(e instanceof i.ModelChangedEvent&&!(e.attr in e.model.serializable_attributes())||(this._event_buffer.push(e),(!this._blocked||Date.now()>this._timeout)&&(setTimeout(()=>this.process_events(),this.debounce),this._blocked=!0,this._timeout=Date.now()+this.timeout)))}process_events(){if(null==this.document||null==this._client_comm)return;const e=this.document.create_json_patch(this._event_buffer);this._event_buffer=[];const t=l.Message.create("PATCH-DOC",{},e);this._client_comm.send(t)}on_ack(e){const t=e.metadata;this._event_buffer.length?(this._blocked=!0,this._timeout=Date.now()+this.timeout,this.process_events()):this._blocked=!1,"Ready"==t.msg_type&&t.content?console.log("Python callback returned following output:",t.content):"Error"==t.msg_type&&console.log("Python failed with the following traceback:",t.traceback)}msg_handler(e){const t=e.metadata,n=e.buffers,o=e.content.data,i=this.plot_id;if("Ready"==t.msg_type)t.content?console.log("Python callback returned following output:",t.content):"Error"==t.msg_type&&console.log("Python failed with the following traceback:",t.traceback);else if(null!=i){let e=null;if(i in this.ns.plot_index&&null!=this.ns.plot_index[i]?e=this.ns.plot_index[i]:void 0!==window.Bokeh&&i in window.Bokeh.index&&(e=window.Bokeh.index[i]),null==e)return;null!=n&&n.length>0?this._receiver.consume(n[0].buffer):this._receiver.consume(o);const t=this._receiver.message;null!=t&&Object.keys(t.content).length>0&&null!=this.document&&this.document.apply_json_patch(t.content,t.buffers,this.id)}}static init_CommManager(){this.prototype.default_view=r,this.define({plot_id:[o.String,null],comm_id:[o.String,null],client_comm_id:[o.String,null],timeout:[o.Number,5e3],debounce:[o.Number,50]})}}n.CommManager=a,a.__name__="CommManager",a.__module__="panel.models.comm_manager",a.init_CommManager()},n”, ” "d0d2aafca0": function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const i=e("tslib"),n=e("@bokehjs/core/dom"),a=i.__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),c=e("7116a7a602"),r=e("064eac2866"),d=i.__importDefault(e("093eb75864"));function l(){const e={},t=window.deck,o=Object.keys(t).filter(e=>e.charAt(0)===e.charAt(0).toUpperCase());for(const i of o)e[i]=t[i];return e}class _ extends c.PanelHTMLBoxView{connect_signals(){super.connect_signals();const{data:e,mapbox_api_key:t,tooltip:o,layers:i,initialViewState:n,data_sources:a}=this.model.properties;this.on_change([t,o],()=>this.render()),this.on_change([e,n],()=>this.updateDeck()),this.on_change([i],()=>this._update_layers()),this.on_change([a],()=>this._connect_sources(!0)),this._layer_map={},this._connected=[],this._connect_sources()}_update_layers(){this._layer_map={},this._update_data(!0)}_connect_sources(e=!1){for(const e of this.model.data_sources)this._connected.indexOf(e)<0&&(this.connect(e.properties.data.change,()=>this._update_data(!0)),this._connected.push(e));this._update_data(e)}initialize(){if(super.initialize(),window.deck.JSONConverter){const{CSVLoader:e,Tile3DLoader:t}=window.loaders;window.loaders.registerLoaders([t,e]);const o={classes:l(),enumerations:{COORDINATE_SYSTEM:window.deck.COORDINATE_SYSTEM,GL:d.default},constants:{Tile3DLoader:t}};this.jsonConverter=new window.deck.JSONConverter({configuration:o})}}_update_data(e=!0){let t=0;for(const e of this.model.layers){let o;if(t+=1,t-1 in this._layer_map)o=this.model.data_sources[this._layer_map[t-1]];else{if("number"!=typeof e.data)continue;this._layer_map[t-1]=e.data,o=this.model.data_sources[e.data]}const i=[],n=o.columns();for(let e=0;e<o.get_length();e++){const t={};for(const i of n){let n=o.get_array(i);const a=null==n[0].shape?null:n[0].shape;null!=a&&a.length>1&&"number"==typeof a[0]?t[i]=n.slice(e*a[1],e*a[1]+a[1]):t[i]=n[e]}i.push(t)}e.data=i}e&&this.updateDeck()}_on_click_event(e){const t={coordinate:e.coordinate,lngLat:e.lngLat,index:e.index};this.model.clickState=t}_on_hover_event(e){const t={coordinate:e.coordinate,lngLat:e.lngLat,index:e.index};this.model.hoverState=t}_on_viewState_event(e){this.model.viewState=e.viewState}getData(){return Object.assign(Object.assign({},this.model.data),{layers:this.model.layers,initialViewState:this.model.initialViewState,onViewStateChange:e=>this._on_viewState_event(e),onClick:e=>this._on_click_event(e),onHover:e=>this._on_hover_event(e)})}updateDeck(){if(!this.deckGL)return void this.render();const e=this.getData();if(window.deck.updateDeck)window.deck.updateDeck(e,this.deckGL);else{const t=this.jsonConverter.convert(e);this.deckGL.setProps(t)}}createDeck({mapboxApiKey:e,container:t,jsonInput:o,tooltip:i}){let n;try{const a=this.jsonConverter.convert(o),s=r.makeTooltip(i);n=new window.deck.DeckGL(Object.assign(Object.assign({},a),{map:window.mapboxgl,mapboxApiAccessToken:e,container:t,getTooltip:s}))}catch(e){console.error(e)}return n}render(){super.render();const e=n.div({class:"deckgl"});c.set_size(e,this.model);const t=this.model.mapbox_api_key,o=this.model.tooltip,i=this.getData();window.deck.createDeck?this.deckGL=window.deck.createDeck({mapboxApiKey:t,container:e,jsonInput:i,tooltip:o}):this.deckGL=this.createDeck({mapboxApiKey:t,container:e,jsonInput:i,tooltip:o}),this.el.appendChild(e)}}o.DeckGLPlotView=_,_.__name__="DeckGLPlotView";class h extends s.HTMLBox{constructor(e){super(e)}static init_DeckGLPlot(){this.prototype.default_view=_,this.define({data:[a.Any],data_sources:[a.Array,[]],clickState:[a.Any],hoverState:[a.Any],initialViewState:[a.Any],layers:[a.Array,[]],mapbox_api_key:[a.String],tooltip:[a.Any],viewState:[a.Any]}),this.override({height:400,width:600})}}o.DeckGLPlot=h,h.__name__="DeckGLPlot",h.__module__="panel.models.deckgl",h.init_DeckGLPlot()},n”, ” "064eac2866": function _(e,t,n){n”, ” /n”, ” This file was adapted from https://github.com/uber/deck.gl/ the LICENSEn”, ” below is preserved to comply with the original license.n”, ” n”, ” Copyright (c) 2015 - 2017 Uber Technologies, Inc.n”, ” n”, ” Permission is hereby granted, free of charge, to any person obtaining a copyn”, ” of this software and associated documentation files (the "Software"), to dealn”, ” in the Software without restriction, including without limitation the rightsn”, ” to use, copy, modify, merge, publish, distribute, sublicense, and/or selln”, ” copies of the Software, and to permit persons to whom the Software isn”, ” furnished to do so, subject to the following conditions:n”, ” n”, ” The above copyright notice and this permission notice shall be included inn”, ” all copies or substantial portions of the Software.n”, ” n”, ” THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORn”, ” IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,n”, ” FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEn”, ” AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERn”, ” LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,n”, ” OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS INn”, ” THE SOFTWARE.n”, ” /n”, ” let i,l;Object.defineProperty(n,"__esModule",{value:!0});const o={fontFamily:’"Helvetica Neue", Helvetica, Arial, sans-serif’,display:"flex",flex:"wrap",maxWidth:"500px",flexDirection:"column",zIndex:2};function r(){return document.createElement("div")}function s(e){if(!e.picked)return null;if(e.object===i)return l;const t={html:a(e.object),style:o};return l=t,i=e.object,t}n.getTooltipDefault=s;const c=new Set(["position","index"]);function a(e){const t=r();for(const n in e){if(c.has(n))continue;const i=r();i.className="header",i.textContent=n;const l=r();l.className="value",l.textContent=u(e[n]);const o=r();f(o,i,l),o.appendChild(i),o.appendChild(l),t.appendChild(o)}return t.innerHTML}function f(e,t,n){Object.assign(t.style,{fontWeight:700,marginRight:"10px",flex:"1 1 0%"}),Object.assign(n.style,{flex:"none",maxWidth:"250px",overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"}),Object.assign(e.style,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"stretch"})}function u(e){let t;if(Array.isArray(e)&&e.length>4)t=`Array<${e.length}>`;else if("string"==typeof e)t=e;else if("number"==typeof e)t=String(e);else try{t=JSON.stringify(e)}catch(e){t="<Non-Serializable Object>"}return t.length>50&&(t=t.slice(0,50)),t}function p(e,t){let n=e;for(const e in t)n=n.replace(`{${e}}`,t[e]);return n}n.tabularize=a,n.toText=u,n.substituteIn=p,n.makeTooltip=function(e){return e?e.html||e.text?t=>{if(!t.picked)return null;const n={style:e.style||o};return e.html?n.html=p(e.html,t.object):n.text=p(e.text,t.object),n}:s:null}},n”, ” "093eb75864": function _(E,_,R){_.exports={DEPTH_BUFFER_BIT:256,STENCIL_BUFFER_BIT:1024,COLOR_BUFFER_BIT:16384,POINTS:0,LINES:1,LINE_LOOP:2,LINE_STRIP:3,TRIANGLES:4,TRIANGLE_STRIP:5,TRIANGLE_FAN:6,ZERO:0,ONE:1,SRC_COLOR:768,ONE_MINUS_SRC_COLOR:769,SRC_ALPHA:770,ONE_MINUS_SRC_ALPHA:771,DST_ALPHA:772,ONE_MINUS_DST_ALPHA:773,DST_COLOR:774,ONE_MINUS_DST_COLOR:775,SRC_ALPHA_SATURATE:776,CONSTANT_COLOR:32769,ONE_MINUS_CONSTANT_COLOR:32770,CONSTANT_ALPHA:32771,ONE_MINUS_CONSTANT_ALPHA:32772,FUNC_ADD:32774,FUNC_SUBTRACT:32778,FUNC_REVERSE_SUBTRACT:32779,BLEND_EQUATION:32777,BLEND_EQUATION_RGB:32777,BLEND_EQUATION_ALPHA:34877,BLEND_DST_RGB:32968,BLEND_SRC_RGB:32969,BLEND_DST_ALPHA:32970,BLEND_SRC_ALPHA:32971,BLEND_COLOR:32773,ARRAY_BUFFER_BINDING:34964,ELEMENT_ARRAY_BUFFER_BINDING:34965,LINE_WIDTH:2849,ALIASED_POINT_SIZE_RANGE:33901,ALIASED_LINE_WIDTH_RANGE:33902,CULL_FACE_MODE:2885,FRONT_FACE:2886,DEPTH_RANGE:2928,DEPTH_WRITEMASK:2930,DEPTH_CLEAR_VALUE:2931,DEPTH_FUNC:2932,STENCIL_CLEAR_VALUE:2961,STENCIL_FUNC:2962,STENCIL_FAIL:2964,STENCIL_PASS_DEPTH_FAIL:2965,STENCIL_PASS_DEPTH_PASS:2966,STENCIL_REF:2967,STENCIL_VALUE_MASK:2963,STENCIL_WRITEMASK:2968,STENCIL_BACK_FUNC:34816,STENCIL_BACK_FAIL:34817,STENCIL_BACK_PASS_DEPTH_FAIL:34818,STENCIL_BACK_PASS_DEPTH_PASS:34819,STENCIL_BACK_REF:36003,STENCIL_BACK_VALUE_MASK:36004,STENCIL_BACK_WRITEMASK:36005,VIEWPORT:2978,SCISSOR_BOX:3088,COLOR_CLEAR_VALUE:3106,COLOR_WRITEMASK:3107,UNPACK_ALIGNMENT:3317,PACK_ALIGNMENT:3333,MAX_TEXTURE_SIZE:3379,MAX_VIEWPORT_DIMS:3386,SUBPIXEL_BITS:3408,RED_BITS:3410,GREEN_BITS:3411,BLUE_BITS:3412,ALPHA_BITS:3413,DEPTH_BITS:3414,STENCIL_BITS:3415,POLYGON_OFFSET_UNITS:10752,POLYGON_OFFSET_FACTOR:32824,TEXTURE_BINDING_2D:32873,SAMPLE_BUFFERS:32936,SAMPLES:32937,SAMPLE_COVERAGE_VALUE:32938,SAMPLE_COVERAGE_INVERT:32939,COMPRESSED_TEXTURE_FORMATS:34467,VENDOR:7936,RENDERER:7937,VERSION:7938,IMPLEMENTATION_COLOR_READ_TYPE:35738,IMPLEMENTATION_COLOR_READ_FORMAT:35739,BROWSER_DEFAULT_WEBGL:37444,STATIC_DRAW:35044,STREAM_DRAW:35040,DYNAMIC_DRAW:35048,ARRAY_BUFFER:34962,ELEMENT_ARRAY_BUFFER:34963,BUFFER_SIZE:34660,BUFFER_USAGE:34661,CURRENT_VERTEX_ATTRIB:34342,VERTEX_ATTRIB_ARRAY_ENABLED:34338,VERTEX_ATTRIB_ARRAY_SIZE:34339,VERTEX_ATTRIB_ARRAY_STRIDE:34340,VERTEX_ATTRIB_ARRAY_TYPE:34341,VERTEX_ATTRIB_ARRAY_NORMALIZED:34922,VERTEX_ATTRIB_ARRAY_POINTER:34373,VERTEX_ATTRIB_ARRAY_BUFFER_BINDING:34975,CULL_FACE:2884,FRONT:1028,BACK:1029,FRONT_AND_BACK:1032,BLEND:3042,DEPTH_TEST:2929,DITHER:3024,POLYGON_OFFSET_FILL:32823,SAMPLE_ALPHA_TO_COVERAGE:32926,SAMPLE_COVERAGE:32928,SCISSOR_TEST:3089,STENCIL_TEST:2960,NO_ERROR:0,INVALID_ENUM:1280,INVALID_VALUE:1281,INVALID_OPERATION:1282,OUT_OF_MEMORY:1285,CONTEXT_LOST_WEBGL:37442,CW:2304,CCW:2305,DONT_CARE:4352,FASTEST:4353,NICEST:4354,GENERATE_MIPMAP_HINT:33170,BYTE:5120,UNSIGNED_BYTE:5121,SHORT:5122,UNSIGNED_SHORT:5123,INT:5124,UNSIGNED_INT:5125,FLOAT:5126,DOUBLE:5130,DEPTH_COMPONENT:6402,ALPHA:6406,RGB:6407,RGBA:6408,LUMINANCE:6409,LUMINANCE_ALPHA:6410,UNSIGNED_SHORT_4_4_4_4:32819,UNSIGNED_SHORT_5_5_5_1:32820,UNSIGNED_SHORT_5_6_5:33635,FRAGMENT_SHADER:35632,VERTEX_SHADER:35633,COMPILE_STATUS:35713,DELETE_STATUS:35712,LINK_STATUS:35714,VALIDATE_STATUS:35715,ATTACHED_SHADERS:35717,ACTIVE_ATTRIBUTES:35721,ACTIVE_UNIFORMS:35718,MAX_VERTEX_ATTRIBS:34921,MAX_VERTEX_UNIFORM_VECTORS:36347,MAX_VARYING_VECTORS:36348,MAX_COMBINED_TEXTURE_IMAGE_UNITS:35661,MAX_VERTEX_TEXTURE_IMAGE_UNITS:35660,MAX_TEXTURE_IMAGE_UNITS:34930,MAX_FRAGMENT_UNIFORM_VECTORS:36349,SHADER_TYPE:35663,SHADING_LANGUAGE_VERSION:35724,CURRENT_PROGRAM:35725,NEVER:512,ALWAYS:519,LESS:513,EQUAL:514,LEQUAL:515,GREATER:516,GEQUAL:518,NOTEQUAL:517,KEEP:7680,REPLACE:7681,INCR:7682,DECR:7683,INVERT:5386,INCR_WRAP:34055,DECR_WRAP:34056,NEAREST:9728,LINEAR:9729,NEAREST_MIPMAP_NEAREST:9984,LINEAR_MIPMAP_NEAREST:9985,NEAREST_MIPMAP_LINEAR:9986,LINEAR_MIPMAP_LINEAR:9987,TEXTURE_MAG_FILTER:10240,TEXTURE_MIN_FILTER:10241,TEXTURE_WRAP_S:10242,TEXTURE_WRAP_T:10243,TEXTURE_2D:3553,TEXTURE:5890,TEXTURE_CUBE_MAP:34067,TEXTURE_BINDING_CUBE_MAP:34068,TEXTURE_CUBE_MAP_POSITIVE_X:34069,TEXTURE_CUBE_MAP_NEGATIVE_X:34070,TEXTURE_CUBE_MAP_POSITIVE_Y:34071,TEXTURE_CUBE_MAP_NEGATIVE_Y:34072,TEXTURE_CUBE_MAP_POSITIVE_Z:34073,TEXTURE_CUBE_MAP_NEGATIVE_Z:34074,MAX_CUBE_MAP_TEXTURE_SIZE:34076,TEXTURE0:33984,ACTIVE_TEXTURE:34016,REPEAT:10497,CLAMP_TO_EDGE:33071,MIRRORED_REPEAT:33648,TEXTURE_WIDTH:4096,TEXTURE_HEIGHT:4097,FLOAT_VEC2:35664,FLOAT_VEC3:35665,FLOAT_VEC4:35666,INT_VEC2:35667,INT_VEC3:35668,INT_VEC4:35669,BOOL:35670,BOOL_VEC2:35671,BOOL_VEC3:35672,BOOL_VEC4:35673,FLOAT_MAT2:35674,FLOAT_MAT3:35675,FLOAT_MAT4:35676,SAMPLER_2D:35678,SAMPLER_CUBE:35680,LOW_FLOAT:36336,MEDIUM_FLOAT:36337,HIGH_FLOAT:36338,LOW_INT:36339,MEDIUM_INT:36340,HIGH_INT:36341,FRAMEBUFFER:36160,RENDERBUFFER:36161,RGBA4:32854,RGB5_A1:32855,RGB565:36194,DEPTH_COMPONENT16:33189,STENCIL_INDEX:6401,STENCIL_INDEX8:36168,DEPTH_STENCIL:34041,RENDERBUFFER_WIDTH:36162,RENDERBUFFER_HEIGHT:36163,RENDERBUFFER_INTERNAL_FORMAT:36164,RENDERBUFFER_RED_SIZE:36176,RENDERBUFFER_GREEN_SIZE:36177,RENDERBUFFER_BLUE_SIZE:36178,RENDERBUFFER_ALPHA_SIZE:36179,RENDERBUFFER_DEPTH_SIZE:36180,RENDERBUFFER_STENCIL_SIZE:36181,FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:36048,FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:36049,FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL:36050,FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE:36051,COLOR_ATTACHMENT0:36064,DEPTH_ATTACHMENT:36096,STENCIL_ATTACHMENT:36128,DEPTH_STENCIL_ATTACHMENT:33306,NONE:0,FRAMEBUFFER_COMPLETE:36053,FRAMEBUFFER_INCOMPLETE_ATTACHMENT:36054,FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT:36055,FRAMEBUFFER_INCOMPLETE_DIMENSIONS:36057,FRAMEBUFFER_UNSUPPORTED:36061,FRAMEBUFFER_BINDING:36006,RENDERBUFFER_BINDING:36007,READ_FRAMEBUFFER:36008,DRAW_FRAMEBUFFER:36009,MAX_RENDERBUFFER_SIZE:34024,INVALID_FRAMEBUFFER_OPERATION:1286,UNPACK_FLIP_Y_WEBGL:37440,UNPACK_PREMULTIPLY_ALPHA_WEBGL:37441,UNPACK_COLORSPACE_CONVERSION_WEBGL:37443,READ_BUFFER:3074,UNPACK_ROW_LENGTH:3314,UNPACK_SKIP_ROWS:3315,UNPACK_SKIP_PIXELS:3316,PACK_ROW_LENGTH:3330,PACK_SKIP_ROWS:3331,PACK_SKIP_PIXELS:3332,TEXTURE_BINDING_3D:32874,UNPACK_SKIP_IMAGES:32877,UNPACK_IMAGE_HEIGHT:32878,MAX_3D_TEXTURE_SIZE:32883,MAX_ELEMENTS_VERTICES:33e3,MAX_ELEMENTS_INDICES:33001,MAX_TEXTURE_LOD_BIAS:34045,MAX_FRAGMENT_UNIFORM_COMPONENTS:35657,MAX_VERTEX_UNIFORM_COMPONENTS:35658,MAX_ARRAY_TEXTURE_LAYERS:35071,MIN_PROGRAM_TEXEL_OFFSET:35076,MAX_PROGRAM_TEXEL_OFFSET:35077,MAX_VARYING_COMPONENTS:35659,FRAGMENT_SHADER_DERIVATIVE_HINT:35723,RASTERIZER_DISCARD:35977,VERTEX_ARRAY_BINDING:34229,MAX_VERTEX_OUTPUT_COMPONENTS:37154,MAX_FRAGMENT_INPUT_COMPONENTS:37157,MAX_SERVER_WAIT_TIMEOUT:37137,MAX_ELEMENT_INDEX:36203,RED:6403,RGB8:32849,RGBA8:32856,RGB10_A2:32857,TEXTURE_3D:32879,TEXTURE_WRAP_R:32882,TEXTURE_MIN_LOD:33082,TEXTURE_MAX_LOD:33083,TEXTURE_BASE_LEVEL:33084,TEXTURE_MAX_LEVEL:33085,TEXTURE_COMPARE_MODE:34892,TEXTURE_COMPARE_FUNC:34893,SRGB:35904,SRGB8:35905,SRGB8_ALPHA8:35907,COMPARE_REF_TO_TEXTURE:34894,RGBA32F:34836,RGB32F:34837,RGBA16F:34842,RGB16F:34843,TEXTURE_2D_ARRAY:35866,TEXTURE_BINDING_2D_ARRAY:35869,R11F_G11F_B10F:35898,RGB9_E5:35901,RGBA32UI:36208,RGB32UI:36209,RGBA16UI:36214,RGB16UI:36215,RGBA8UI:36220,RGB8UI:36221,RGBA32I:36226,RGB32I:36227,RGBA16I:36232,RGB16I:36233,RGBA8I:36238,RGB8I:36239,RED_INTEGER:36244,RGB_INTEGER:36248,RGBA_INTEGER:36249,R8:33321,RG8:33323,R16F:33325,R32F:33326,RG16F:33327,RG32F:33328,R8I:33329,R8UI:33330,R16I:33331,R16UI:33332,R32I:33333,R32UI:33334,RG8I:33335,RG8UI:33336,RG16I:33337,RG16UI:33338,RG32I:33339,RG32UI:33340,R8_SNORM:36756,RG8_SNORM:36757,RGB8_SNORM:36758,RGBA8_SNORM:36759,RGB10_A2UI:36975,TEXTURE_IMMUTABLE_FORMAT:37167,TEXTURE_IMMUTABLE_LEVELS:33503,UNSIGNED_INT_2_10_10_10_REV:33640,UNSIGNED_INT_10F_11F_11F_REV:35899,UNSIGNED_INT_5_9_9_9_REV:35902,FLOAT_32_UNSIGNED_INT_24_8_REV:36269,UNSIGNED_INT_24_8:34042,HALF_FLOAT:5131,RG:33319,RG_INTEGER:33320,INT_2_10_10_10_REV:36255,CURRENT_QUERY:34917,QUERY_RESULT:34918,QUERY_RESULT_AVAILABLE:34919,ANY_SAMPLES_PASSED:35887,ANY_SAMPLES_PASSED_CONSERVATIVE:36202,MAX_DRAW_BUFFERS:34852,DRAW_BUFFER0:34853,DRAW_BUFFER1:34854,DRAW_BUFFER2:34855,DRAW_BUFFER3:34856,DRAW_BUFFER4:34857,DRAW_BUFFER5:34858,DRAW_BUFFER6:34859,DRAW_BUFFER7:34860,DRAW_BUFFER8:34861,DRAW_BUFFER9:34862,DRAW_BUFFER10:34863,DRAW_BUFFER11:34864,DRAW_BUFFER12:34865,DRAW_BUFFER13:34866,DRAW_BUFFER14:34867,DRAW_BUFFER15:34868,MAX_COLOR_ATTACHMENTS:36063,COLOR_ATTACHMENT1:36065,COLOR_ATTACHMENT2:36066,COLOR_ATTACHMENT3:36067,COLOR_ATTACHMENT4:36068,COLOR_ATTACHMENT5:36069,COLOR_ATTACHMENT6:36070,COLOR_ATTACHMENT7:36071,COLOR_ATTACHMENT8:36072,COLOR_ATTACHMENT9:36073,COLOR_ATTACHMENT10:36074,COLOR_ATTACHMENT11:36075,COLOR_ATTACHMENT12:36076,COLOR_ATTACHMENT13:36077,COLOR_ATTACHMENT14:36078,COLOR_ATTACHMENT15:36079,SAMPLER_3D:35679,SAMPLER_2D_SHADOW:35682,SAMPLER_2D_ARRAY:36289,SAMPLER_2D_ARRAY_SHADOW:36292,SAMPLER_CUBE_SHADOW:36293,INT_SAMPLER_2D:36298,INT_SAMPLER_3D:36299,INT_SAMPLER_CUBE:36300,INT_SAMPLER_2D_ARRAY:36303,UNSIGNED_INT_SAMPLER_2D:36306,UNSIGNED_INT_SAMPLER_3D:36307,UNSIGNED_INT_SAMPLER_CUBE:36308,UNSIGNED_INT_SAMPLER_2D_ARRAY:36311,MAX_SAMPLES:36183,SAMPLER_BINDING:35097,PIXEL_PACK_BUFFER:35051,PIXEL_UNPACK_BUFFER:35052,PIXEL_PACK_BUFFER_BINDING:35053,PIXEL_UNPACK_BUFFER_BINDING:35055,COPY_READ_BUFFER:36662,COPY_WRITE_BUFFER:36663,COPY_READ_BUFFER_BINDING:36662,COPY_WRITE_BUFFER_BINDING:36663,FLOAT_MAT2x3:35685,FLOAT_MAT2x4:35686,FLOAT_MAT3x2:35687,FLOAT_MAT3x4:35688,FLOAT_MAT4x2:35689,FLOAT_MAT4x3:35690,UNSIGNED_INT_VEC2:36294,UNSIGNED_INT_VEC3:36295,UNSIGNED_INT_VEC4:36296,UNSIGNED_NORMALIZED:35863,SIGNED_NORMALIZED:36764,VERTEX_ATTRIB_ARRAY_INTEGER:35069,VERTEX_ATTRIB_ARRAY_DIVISOR:35070,TRANSFORM_FEEDBACK_BUFFER_MODE:35967,MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS:35968,TRANSFORM_FEEDBACK_VARYINGS:35971,TRANSFORM_FEEDBACK_BUFFER_START:35972,TRANSFORM_FEEDBACK_BUFFER_SIZE:35973,TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN:35976,MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS:35978,MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS:35979,INTERLEAVED_ATTRIBS:35980,SEPARATE_ATTRIBS:35981,TRANSFORM_FEEDBACK_BUFFER:35982,TRANSFORM_FEEDBACK_BUFFER_BINDING:35983,TRANSFORM_FEEDBACK:36386,TRANSFORM_FEEDBACK_PAUSED:36387,TRANSFORM_FEEDBACK_ACTIVE:36388,TRANSFORM_FEEDBACK_BINDING:36389,FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:33296,FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:33297,FRAMEBUFFER_ATTACHMENT_RED_SIZE:33298,FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:33299,FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:33300,FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:33301,FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:33302,FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:33303,FRAMEBUFFER_DEFAULT:33304,DEPTH24_STENCIL8:35056,DRAW_FRAMEBUFFER_BINDING:36006,READ_FRAMEBUFFER_BINDING:36010,RENDERBUFFER_SAMPLES:36011,FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER:36052,FRAMEBUFFER_INCOMPLETE_MULTISAMPLE:36182,UNIFORM_BUFFER:35345,UNIFORM_BUFFER_BINDING:35368,UNIFORM_BUFFER_START:35369,UNIFORM_BUFFER_SIZE:35370,MAX_VERTEX_UNIFORM_BLOCKS:35371,MAX_FRAGMENT_UNIFORM_BLOCKS:35373,MAX_COMBINED_UNIFORM_BLOCKS:35374,MAX_UNIFORM_BUFFER_BINDINGS:35375,MAX_UNIFORM_BLOCK_SIZE:35376,MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS:35377,MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS:35379,UNIFORM_BUFFER_OFFSET_ALIGNMENT:35380,ACTIVE_UNIFORM_BLOCKS:35382,UNIFORM_TYPE:35383,UNIFORM_SIZE:35384,UNIFORM_BLOCK_INDEX:35386,UNIFORM_OFFSET:35387,UNIFORM_ARRAY_STRIDE:35388,UNIFORM_MATRIX_STRIDE:35389,UNIFORM_IS_ROW_MAJOR:35390,UNIFORM_BLOCK_BINDING:35391,UNIFORM_BLOCK_DATA_SIZE:35392,UNIFORM_BLOCK_ACTIVE_UNIFORMS:35394,UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES:35395,UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER:35396,UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER:35398,OBJECT_TYPE:37138,SYNC_CONDITION:37139,SYNC_STATUS:37140,SYNC_FLAGS:37141,SYNC_FENCE:37142,SYNC_GPU_COMMANDS_COMPLETE:37143,UNSIGNALED:37144,SIGNALED:37145,ALREADY_SIGNALED:37146,TIMEOUT_EXPIRED:37147,CONDITION_SATISFIED:37148,WAIT_FAILED:37149,SYNC_FLUSH_COMMANDS_BIT:1,COLOR:6144,DEPTH:6145,STENCIL:6146,MIN:32775,MAX:32776,DEPTH_COMPONENT24:33190,STREAM_READ:35041,STREAM_COPY:35042,STATIC_READ:35045,STATIC_COPY:35046,DYNAMIC_READ:35049,DYNAMIC_COPY:35050,DEPTH_COMPONENT32F:36012,DEPTH32F_STENCIL8:36013,INVALID_INDEX:4294967295,TIMEOUT_IGNORED:-1,MAX_CLIENT_WAIT_TIMEOUT_WEBGL:37447,VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE:35070,UNMASKED_VENDOR_WEBGL:37445,UNMASKED_RENDERER_WEBGL:37446,MAX_TEXTURE_MAX_ANISOTROPY_EXT:34047,TEXTURE_MAX_ANISOTROPY_EXT:34046,COMPRESSED_RGB_S3TC_DXT1_EXT:33776,COMPRESSED_RGBA_S3TC_DXT1_EXT:33777,COMPRESSED_RGBA_S3TC_DXT3_EXT:33778,COMPRESSED_RGBA_S3TC_DXT5_EXT:33779,COMPRESSED_R11_EAC:37488,COMPRESSED_SIGNED_R11_EAC:37489,COMPRESSED_RG11_EAC:37490,COMPRESSED_SIGNED_RG11_EAC:37491,COMPRESSED_RGB8_ETC2:37492,COMPRESSED_RGBA8_ETC2_EAC:37493,COMPRESSED_SRGB8_ETC2:37494,COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:37495,COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2:37496,COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2:37497,COMPRESSED_RGB_PVRTC_4BPPV1_IMG:35840,COMPRESSED_RGBA_PVRTC_4BPPV1_IMG:35842,COMPRESSED_RGB_PVRTC_2BPPV1_IMG:35841,COMPRESSED_RGBA_PVRTC_2BPPV1_IMG:35843,COMPRESSED_RGB_ETC1_WEBGL:36196,COMPRESSED_RGB_ATC_WEBGL:35986,COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL:35986,COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL:34798,UNSIGNED_INT_24_8_WEBGL:34042,HALF_FLOAT_OES:36193,RGBA32F_EXT:34836,RGB32F_EXT:34837,FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT:33297,UNSIGNED_NORMALIZED_EXT:35863,MIN_EXT:32775,MAX_EXT:32776,SRGB_EXT:35904,SRGB_ALPHA_EXT:35906,SRGB8_ALPHA8_EXT:35907,FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT:33296,FRAGMENT_SHADER_DERIVATIVE_HINT_OES:35723,COLOR_ATTACHMENT0_WEBGL:36064,COLOR_ATTACHMENT1_WEBGL:36065,COLOR_ATTACHMENT2_WEBGL:36066,COLOR_ATTACHMENT3_WEBGL:36067,COLOR_ATTACHMENT4_WEBGL:36068,COLOR_ATTACHMENT5_WEBGL:36069,COLOR_ATTACHMENT6_WEBGL:36070,COLOR_ATTACHMENT7_WEBGL:36071,COLOR_ATTACHMENT8_WEBGL:36072,COLOR_ATTACHMENT9_WEBGL:36073,COLOR_ATTACHMENT10_WEBGL:36074,COLOR_ATTACHMENT11_WEBGL:36075,COLOR_ATTACHMENT12_WEBGL:36076,COLOR_ATTACHMENT13_WEBGL:36077,COLOR_ATTACHMENT14_WEBGL:36078,COLOR_ATTACHMENT15_WEBGL:36079,DRAW_BUFFER0_WEBGL:34853,DRAW_BUFFER1_WEBGL:34854,DRAW_BUFFER2_WEBGL:34855,DRAW_BUFFER3_WEBGL:34856,DRAW_BUFFER4_WEBGL:34857,DRAW_BUFFER5_WEBGL:34858,DRAW_BUFFER6_WEBGL:34859,DRAW_BUFFER7_WEBGL:34860,DRAW_BUFFER8_WEBGL:34861,DRAW_BUFFER9_WEBGL:34862,DRAW_BUFFER10_WEBGL:34863,DRAW_BUFFER11_WEBGL:34864,DRAW_BUFFER12_WEBGL:34865,DRAW_BUFFER13_WEBGL:34866,DRAW_BUFFER14_WEBGL:34867,DRAW_BUFFER15_WEBGL:34868,MAX_COLOR_ATTACHMENTS_WEBGL:36063,MAX_DRAW_BUFFERS_WEBGL:34852,VERTEX_ARRAY_BINDING_OES:34229,QUERY_COUNTER_BITS_EXT:34916,CURRENT_QUERY_EXT:34917,QUERY_RESULT_EXT:34918,QUERY_RESULT_AVAILABLE_EXT:34919,TIME_ELAPSED_EXT:35007,TIMESTAMP_EXT:36392,GPU_DISJOINT_EXT:36795}},n”, ” "c6decbe3f5": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),h=e("@bokehjs/models/layouts/html_box");class r extends h.HTMLBoxView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>this._plot());const{width:e,height:t,renderer:s,theme:i}=this.model.properties;this.on_change([e,t],()=>this._resize()),this.on_change([i,s],()=>this.render())}render(){super.render();const e={width:this.model.width,height:this.model.height,renderer:this.model.renderer};null!=this._chart&&window.echarts.dispose(this._chart),this._chart=window.echarts.init(this.el,this.model.theme,e),this._plot()}after_layout(){super.after_layout(),this._chart.resize()}_plot(){null!=window.echarts&&this._chart.setOption(this.model.data)}_resize(){this._chart.resize({width:this.model.width,height:this.model.height})}}s.EChartsView=r,r.__name__="EChartsView";class o extends h.HTMLBox{constructor(e){super(e)}static init_ECharts(){this.prototype.default_view=r,this.define({data:[i.Any],theme:[i.String,"default"],renderer:[i.String,"canvas"]})}}s.ECharts=o,o.__name__="ECharts",o.__module__="panel.models.echarts",o.init_ECharts()},n”, ” "ed08037ce5": function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const n=e("@bokehjs/models/widgets/markup"),a=e("7116a7a602");function o(e){return(new DOMParser).parseFromString(e,"text/html").documentElement.textContent}r.htmlDecode=o;class s extends a.PanelMarkupView{render(){super.render();const e=o(this.model.text)||this.model.text;e?(this.markup_el.innerHTML=e,Array.from(this.markup_el.querySelectorAll("script")).forEach(e=>{const t=document.createElement("script");Array.from(e.attributes).forEach(e=>t.setAttribute(e.name,e.value)),t.appendChild(document.createTextNode(e.innerHTML)),e.parentNode&&e.parentNode.replaceChild(t,e)})):this.markup_el.innerHTML=""}}r.HTMLView=s,s.__name__="HTMLView";class i extends n.Markup{constructor(e){super(e)}static init_HTML(){this.prototype.default_view=s}}r.HTML=i,i.__name__="HTML",i.__module__="panel.models.markup",i.init_HTML()},n”, ” "cb7ac8d1fa": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),d=e("7116a7a602"),l=window.Jupyter;class o extends d.PanelHTMLBoxView{constructor(){super(…arguments),this.rendered=!1}render(){super.render(),this._render().then(()=>{this.rendered=!0,this.invalidate_layout(),this.notify_finished()})}has_finished(){return this.rendered&&super.has_finished()}async _render(){const{spec:e,state:i}=this.model.bundle;let t;if(null!=l&&null!=l.notebook?t=l.notebook.kernel.widget_manager:null!=window.PyViz.widget_manager&&(t=window.PyViz.widget_manager),t)if(null==this.ipyview){const n=(await t.set_state(i)).find(i=>i.model_id==e.model_id);if(null!=n){const e=await t.create_view(n,{el:this.el});if(this.ipyview=e,e.children_views)for(const i of e.children_views.views)await i;this.el.appendChild(e.el),e.trigger("displayed",e)}}else this.el.appendChild(this.ipyview.el);else console.log("Panel IPyWidget model could not find a WidgetManager")}}t.IPyWidgetView=o,o.__name__="IPyWidgetView";class r extends s.HTMLBox{constructor(e){super(e)}static init_IPyWidget(){this.prototype.default_view=o,this.define({bundle:[n.Any,{}]})}}t.IPyWidget=r,r.__name__="IPyWidget",r.__module__="panel.models.ipywidget",r.init_IPyWidget()},n”, ” "284504a0cf": function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e("tslib"),n=s.__importStar(e("@bokehjs/core/properties")),i=e("@bokehjs/models/widgets/markup"),o=s.__importDefault(e("18bba7b7e1")),d=e("7116a7a602");class a extends d.PanelMarkupView{connect_signals(){super.connect_signals();const{depth:e,hover_preview:t,theme:r}=this.model.properties;this.on_change([e,t,r],()=>this.render())}render(){super.render();const e=this.model.text.replace(/(\r\n|\n|\r)/gm,"").replace("’",’"’);let t;try{t=window.JSON.parse(e)}catch(e){return void(this.markup_el.innerHTML="<b>Invalid JSON:</b> "+e.toString())}const r={hoverPreviewEnabled:this.model.hover_preview,theme:this.model.theme},s=null==this.model.depth?1/0:this.model.depth,n=new o.default(t,s,r).render();let i="border-radius: 5px; padding: 10px;";"dark"==this.model.theme?n.style.cssText="background-color: rgb(30, 30, 30);"+i:n.style.cssText=i,this.markup_el.append(n)}}r.JSONView=a,a.__name__="JSONView";const l=["dark","light"];class p extends i.Markup{constructor(e){super(e)}static init_JSON(){this.prototype.default_view=a,this.define({depth:[n.Number,1],hover_preview:[n.Boolean,!1],theme:[n.Enum(l),"dark"]})}}r.JSON=p,p.__name__="JSON",p.__module__="panel.models.markup",p.init_JSON()},n”, ” "18bba7b7e1": function _(t,e,r){function n(t){return null===t?"null":typeof t}function o(t){return!!t&&"object"==typeof t}function i(t){if(void 0===t)return"";if(null===t)return"Object";if("object"==typeof t&&!t.constructor)return"Object";var e=/function ([^(])/.exec(t.constructor.toString());return e&&e.length>1?e[1]:""}function s(t,e,r){return"null"===t||"undefined"===t?t:("string"!==t&&"stringifiable"!==t||(r=’"’+r.replace(/"/g,’\\"’)+’"’),"function"===t?e.toString().replace(/[\r\n]/g,"").replace(/\{.*\}/,"")+"{…}":r)}function a(t){var e="";return o(t)?(e=i(t),Array.isArray(t)&&(e+="["+t.length+"]")):e=s(n(t),t,t),e}function f(t){return"json-formatter-"+t}function m(t,e,r){var n=document.createElement(t);return e&&n.classList.add(f(e)),void 0!==r&&(r instanceof Node?n.appendChild(r):n.appendChild(document.createTextNode(String(r)))),n}Object.defineProperty(r,"__esModule",{value:!0}),function(t){if("undefined"!=typeof window){var e=document.createElement("style");e.setAttribute("media","screen"),e.innerHTML=t,document.head.appendChild(e)}}(‘.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: "No properties";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: "[]";\n}\n.json-formatter-row .json-formatter-string,\n.json-formatter-row .json-formatter-stringifiable {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: "►";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: "No properties";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: "[]";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string,\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: "►";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n’);var l=/(^\d{1,4}[\.|\\/|-]\\d{1,2}[\\.|\\/|-]\\d{1,4})(\\s*(?:0?[1-9]:[0-5]|1(?=[012])\\d:[0-5])\\d\\s*[ap]m)?$/,d=/\\d{2}:\\d{2}:\\d{2} GMT-\\d{4}/,c=/\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{3}Z/,p=window.requestAnimationFrame||function(t){return t(),0},j={hoverPreviewEnabled:!1,hoverPreviewArrayCount:100,hoverPreviewFieldCount:5,animateOpen:!0,animateClose:!0,theme:null,useToJSON:!0,sortPropertiesBy:null},h=function(){function t(t,e,r,n){void 0===e&&(e=1),void 0===r&&(r=j),this.json=t,this.open=e,this.config=r,this.key=n,this._isOpen=null,void 0===this.config.hoverPreviewEnabled&&(this.config.hoverPreviewEnabled=j.hoverPreviewEnabled),void 0===this.config.hoverPreviewArrayCount&&(this.config.hoverPreviewArrayCount=j.hoverPreviewArrayCount),void 0===this.config.hoverPreviewFieldCount&&(this.config.hoverPreviewFieldCount=j.hoverPreviewFieldCount),void 0===this.config.useToJSON&&(this.config.useToJSON=j.useToJSON),\"\"===this.key&&(this.key='\"\"')}return Object.defineProperty(t.prototype,\"isOpen\",{get:function(){return null!==this._isOpen?this._isOpen:this.open>0},set:function(t){this._isOpen=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,\"isDate\",{get:function(){return this.json instanceof Date||"string"===this.type&&(l.test(this.json)||c.test(this.json)||d.test(this.json))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isUrl",{get:function(){return"string"===this.type&&0===this.json.indexOf("http")},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isArray",{get:function(){return Array.isArray(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isObject",{get:function(){return o(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isEmptyObject",{get:function(){return!this.keys.length&&!this.isArray},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isEmpty",{get:function(){return this.isEmptyObject||this.keys&&!this.keys.length&&this.isArray},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"useToJSON",{get:function(){return this.config.useToJSON&&"stringifiable"===this.type},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"hasKey",{get:function(){return void 0!==this.key},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"constructorName",{get:function(){return i(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"type",{get:function(){return this.config.useToJSON&&this.json&&this.json.toJSON?"stringifiable":n(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"keys",{get:function(){if(this.isObject){var t=Object.keys(this.json);return!this.isArray&&this.config.sortPropertiesBy?t.sort(this.config.sortPropertiesBy):t}return[]},enumerable:!0,configurable:!0}),t.prototype.toggleOpen=function(){this.isOpen=!this.isOpen,this.element&&(this.isOpen?this.appendChildren(this.config.animateOpen):this.removeChildren(this.config.animateClose),this.element.classList.toggle(f("open")))},t.prototype.openAtDepth=function(t){void 0===t&&(t=1),t<0||(this.open=t,this.isOpen=0!==t,this.element&&(this.removeChildren(!1),0===t?this.element.classList.remove(f("open")):(this.appendChildren(this.config.animateOpen),this.element.classList.add(f("open")))))},t.prototype.getInlinepreview=function(){var t=this;if(this.isArray)return this.json.length>this.config.hoverPreviewArrayCount?"Array["+this.json.length+"]":"["+this.json.map(a).join(", ")+"]";var e=this.keys,r=e.slice(0,this.config.hoverPreviewFieldCount).map((function(e){return e+":"+a(t.json[e])})),n=e.length>=this.config.hoverPreviewFieldCount?"…":"";return"{"+r.join(", ")+n+"}"},t.prototype.render=function(){this.element=m("div","row");var t=this.isObject?m("a","toggler-link"):m("span");if(this.isObject&&!this.useToJSON&&t.appendChild(m("span","toggler")),this.hasKey&&t.appendChild(m("span","key",this.key+":")),this.isObject&&!this.useToJSON){var e=m("span","value"),r=m("span"),n=m("span","constructor-name",this.constructorName);if(r.appendChild(n),this.isArray){var o=m("span");o.appendChild(m("span","bracket","[")),o.appendChild(m("span","number",this.json.length)),o.appendChild(m("span","bracket","]")),r.appendChild(o)}e.appendChild(r),t.appendChild(e)}else{(e=this.isUrl?m("a"):m("span")).classList.add(f(this.type)),this.isDate&&e.classList.add(f("date")),this.isUrl&&(e.classList.add(f("url")),e.setAttribute("href",this.json));var i=s(this.type,this.json,this.useToJSON?this.json.toJSON():this.json);e.appendChild(document.createTextNode(i)),t.appendChild(e)}if(this.isObject&&this.config.hoverPreviewEnabled){var a=m("span","preview-text");a.appendChild(document.createTextNode(this.getInlinepreview())),t.appendChild(a)}var l=m("div","children");return this.isObject&&l.classList.add(f("object")),this.isArray&&l.classList.add(f("array")),this.isEmpty&&l.classList.add(f("empty")),this.config&&this.config.theme&&this.element.classList.add(f(this.config.theme)),this.isOpen&&this.element.classList.add(f("open")),this.element.appendChild(t),this.element.appendChild(l),this.isObject&&this.isOpen&&this.appendChildren(),this.isObject&&!this.useToJSON&&t.addEventListener("click",this.toggleOpen.bind(this)),this.element},t.prototype.appendChildren=function(e){var r=this;void 0===e&&(e=!1);var n=this.element.querySelector("div."+f("children"));if(n&&!this.isEmpty)if(e){var o=0,i=function(){var e=r.keys[o],s=new t(r.json[e],r.open-1,r.config,e);n.appendChild(s.render()),(o+=1)<r.keys.length&&(o>10?i():p(i))};p(i)}else this.keys.forEach((function(e){var o=new t(r.json[e],r.open-1,r.config,e);n.appendChild(o.render())}))},t.prototype.removeChildren=function(t){void 0===t&&(t=!1);var e=this.element.querySelector("div."+f("children"));if(t){var r=0,n=function(){e&&e.children.length&&(e.removeChild(e.children[0]),(r+=1)>10?n():p(n))};p(n)}else e&&(e.innerHTML="")},t}();r.default=h},n”, ” "7a99dba4eb": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e("tslib"),s=e("@bokehjs/models/widgets/input_widget"),o=e("@bokehjs/styles/buttons"),n=l.__importStar(e("@bokehjs/core/properties"));class a extends s.InputWidgetView{constructor(){super(…arguments),this._downloadable=!1,this._embed=!1,this._prev_href="",this._prev_download=""}initialize(){super.initialize(),this.model.data&&this.model.filename&&(this._embed=!0)}connect_signals(){super.connect_signals(),this.connect(this.model.properties.button_type.change,()=>this._update_button_style()),this.connect(this.model.properties.filename.change,()=>this._update_download()),this.connect(this.model.properties._transfers.change,()=>this._handle_click()),this.connect(this.model.properties.label.change,()=>this._update_label())}render(){super.render(),this.group_el.style.display="flex",this.group_el.style.alignItems="stretch",this.anchor_el=document.createElement("a"),this._update_button_style(),this._update_label(),this.model.disabled?(this.anchor_el.setAttribute("disabled",""),this._downloadable=!1):(this.anchor_el.removeAttribute("disabled"),this._prev_download&&(this.anchor_el.download=this._prev_download),this._prev_href&&(this.anchor_el.href=this._prev_href),this.anchor_el.download&&this.anchor_el.download&&(this._downloadable=!0)),this._embed?this._make_link_downloadable():(this._click_listener=this._increment_clicks.bind(this),this.anchor_el.addEventListener("click",this._click_listener)),this.group_el.appendChild(this.anchor_el)}_increment_clicks(){this.model.clicks=this.model.clicks+1}_handle_click(){!this.model.auto&&this._downloadable||(this._make_link_downloadable(),!this._embed&&this.model.auto&&(this.anchor_el.removeEventListener("click",this._click_listener),this.anchor_el.click(),this.anchor_el.removeAttribute("href"),this.anchor_el.removeAttribute("download"),this.anchor_el.addEventListener("click",this._click_listener)),this._prev_href=this.anchor_el.getAttribute("href"),this._prev_download=this.anchor_el.getAttribute("download"))}_make_link_downloadable(){this._update_href(),this._update_download(),this.anchor_el.download&&this.anchor_el.href&&(this._downloadable=!0)}_update_href(){if(this.model.data){const e=function(e){const t=atob(e.split(",")[1]),i=e.split(",")[0].split(":")[1].split(";")[0],l=new ArrayBuffer(t.length),s=new Uint8Array(l);for(let e=0;e<t.length;e++)s[e]=t.charCodeAt(e);return new Blob([l],{type:i})}(this.model.data);this.anchor_el.href=URL.createObjectURL(e)}}_update_download(){this.model.filename&&(this.anchor_el.download=this.model.filename)}_update_label(){this.anchor_el.textContent=this.model.label}_update_button_style(){if(this.anchor_el.hasAttribute("class")){const e=this.anchor_el.classList.item(1);e&&this.anchor_el.classList.replace(e,o.bk_btn_type(this.model.button_type))}else this.anchor_el.classList.add(o.bk_btn),this.anchor_el.classList.add(o.bk_btn_type(this.model.button_type))}}i.FileDownloadView=a,a.__name__="FileDownloadView";class h extends s.InputWidget{constructor(e){super(e)}static init_FileDownload(){this.prototype.default_view=a,this.define({auto:[n.Boolean,!1],clicks:[n.Number,0],data:[n.NullString,null],label:[n.String,"Download"],filename:[n.String,null],button_type:[n.ButtonType,"default"],_transfers:[n.Number,0]}),this.override({title:""})}}i.FileDownload=h,h.__name__="FileDownload",h.__module__="panel.models.widgets",h.init_FileDownload()},n”, ” "7b859fb3cf": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e("@bokehjs/models/widgets/markup"),n=e("7116a7a602");class r extends n.PanelMarkupView{render(){super.render(),this.markup_el.innerHTML=this.model.text,window.renderMathInElement&&window.renderMathInElement(this.el,{delimiters:[{left:"$$",right:"$$",display:!0},{left:"\\[",right:"\\]",display:!0},{left:"$",right:"$",display:!1},{left:"\\(",right:"\\)",display:!1}]})}}i.KaTeXView=r,r.__name__="KaTeXView";class s extends a.Markup{constructor(e){super(e)}static init_KaTeX(){this.prototype.default_view=r}}i.KaTeX=s,s.__name__="KaTeX",s.__module__="panel.models.katex",s.init_KaTeX()},n”, ” "aded270681": function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o("tslib").__importStar(o("@bokehjs/core/properties")),a=o("@bokehjs/core/view"),n=o("@bokehjs/model");class h extends a.View{initialize(){super.initialize(),this.model.pathname=window.location.pathname,this.model.search=window.location.search,this.model.hash=window.location.hash,this.model.href=window.location.href,this.model.hostname=window.location.hostname,this.model.protocol=window.location.protocol,this.model.port=window.location.port}connect_signals(){super.connect_signals(),this.connect(this.model.properties.pathname.change,()=>this.update("pathname")),this.connect(this.model.properties.search.change,()=>this.update("search")),this.connect(this.model.properties.hash.change,()=>this.update("hash")),this.connect(this.model.properties.reload.change,()=>this.update("reload"))}update(o){this.model.reload&&"reload"!==o?("pathname"==o&&(window.location.pathname=this.model.pathname),"search"==o&&(window.location.search=this.model.search),"hash"==o&&(window.location.hash=this.model.hash)):(window.history.pushState({},"",`${this.model.pathname}${this.model.search}${this.model.hash}`),this.model.href=window.location.href,"reload"===o&&window.location.reload())}}t.LocationView=h,h.__name__="LocationView";class s extends n.Model{constructor(o){super(o)}static init_Location(){this.prototype.default_view=h,this.define({href:[i.String,""],hostname:[i.String,""],pathname:[i.String,""],protocol:[i.String,""],port:[i.String,""],search:[i.String,""],hash:[i.String,""],reload:[i.Boolean,!1]})}}t.Location=s,s.__name__="Location",s.__module__="panel.models.location",s.init_Location()},n”, ” "0c21036737": function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e("@bokehjs/models/widgets/markup"),s=e("7116a7a602");class _ extends s.PanelMarkupView{initialize(){super.initialize(),this._hub=window.MathJax.Hub,this._hub.Config({tex2jax:{inlineMath:[["$","$"],["\\(","\\)"]]}})}render(){super.render(),this._hub&&(this.markup_el.innerHTML=this.model.text,this._hub.Queue(["Typeset",this._hub,this.markup_el]))}}a.MathJaxView=_,_.__name__="MathJaxView";class h extends i.Markup{constructor(e){super(e)}static init_MathJax(){this.prototype.default_view=_}}a.MathJax=h,h.__name__="MathJax",h.__module__="panel.models.mathjax",h.init_MathJax()},n”, ” "79c41bbf71": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/core/dom"),l=e("@bokehjs/models/widgets/widget");function n(e){e.forEach(e=>e.style.borderStyle="inset")}function a(e){e.forEach(e=>e.style.borderStyle="outset")}class r extends l.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.value.change,()=>this.render()),this.connect(this.model.properties.loop_policy.change,()=>this.set_loop_state(this.model.loop_policy)),this.connect(this.model.properties.show_loop_controls.change,()=>{this.model.show_loop_controls&&this.loop_state.parentNode!=this.groupEl?this.groupEl.appendChild(this.loop_state):this.model.show_loop_controls||this.loop_state.parentNode!=this.groupEl||this.el.removeChild(this.loop_state)})}get_height(){return 250}render(){if(null!=this.sliderEl)return this.sliderEl.min=String(this.model.start),this.sliderEl.max=String(this.model.end),void(this.sliderEl.value=String(this.model.value));super.render(),this.groupEl=o.div(),this.groupEl.style.display="flex",this.groupEl.style.flexDirection="column",this.groupEl.style.alignItems="center",this.sliderEl=document.createElement("input"),this.sliderEl.style.width="100%",this.sliderEl.setAttribute("type","range"),this.sliderEl.value=String(this.model.value),this.sliderEl.min=String(this.model.start),this.sliderEl.max=String(this.model.end),this.sliderEl.onchange=e=>this.set_frame(parseInt(e.target.value));const e=o.div();e.style.cssText="margin: 0 auto; display: flex; padding: 5px; align-items: stretch; width: 100%;";const t="text-align: center; min-width: 20px; flex-grow: 1; margin: 2px",s="text-align: center; min-width: 40px; flex-grow: 2; margin: 2px",i=document.createElement("button");i.style.cssText=t,i.appendChild(document.createTextNode("–")),i.onclick=()=>this.slower(),e.appendChild(i);const l=document.createElement("button");l.style.cssText=s,l.appendChild(document.createTextNode("❚◀◀")),l.onclick=()=>this.first_frame(),e.appendChild(l);const r=document.createElement("button");r.style.cssText=s,r.appendChild(document.createTextNode("❚◀")),r.onclick=()=>this.previous_frame(),e.appendChild(r);const d=document.createElement("button");d.style.cssText=s,d.appendChild(document.createTextNode("◀")),d.onclick=()=>this.reverse_animation(),e.appendChild(d);const h=document.createElement("button");h.style.cssText=s,h.appendChild(document.createTextNode("❚❚")),h.onclick=()=>this.pause_animation(),e.appendChild(h);const p=document.createElement("button");p.style.cssText=s,p.appendChild(document.createTextNode("▶")),p.onclick=()=>this.play_animation(),e.appendChild(p);const c=document.createElement("button");c.style.cssText=s,c.appendChild(document.createTextNode("▶❚")),c.onclick=()=>this.next_frame(),e.appendChild(c);const m=document.createElement("button");m.style.cssText=s,m.appendChild(document.createTextNode("▶▶❚")),m.onclick=()=>this.last_frame(),e.appendChild(m);const _=document.createElement("button");_.style.cssText=t,_.appendChild(document.createTextNode("+")),_.onclick=()=>this.faster(),e.appendChild(_),this._toggle_reverse=()=>{a([h,p]),n([d])},this._toogle_pause=()=>{a([d,p]),n([h])},this._toggle_play=()=>{a([d,h]),n([p])},this.loop_state=document.createElement("form"),this.loop_state.style.cssText="margin: 0 auto; display: table";const u=document.createElement("input");u.type="radio",u.value="once",u.name="state";const g=document.createElement("label");g.innerHTML="Once",g.style.cssText="padding: 0 10px 0 5px; user-select:none;";const f=document.createElement("input");f.setAttribute("type","radio"),f.setAttribute("value","loop"),f.setAttribute("name","state");const v=document.createElement("label");v.innerHTML="Loop",v.style.cssText="padding: 0 10px 0 5px; user-select:none;";const y=document.createElement("input");y.setAttribute("type","radio"),y.setAttribute("value","reflect"),y.setAttribute("name","state");const x=document.createElement("label");x.innerHTML="Reflect",x.style.cssText="padding: 0 10px 0 5px; user-select:none;","once"==this.model.loop_policy?u.checked=!0:"loop"==this.model.loop_policy?f.checked=!0:y.checked=!0,this.loop_state.appendChild(u),this.loop_state.appendChild(g),this.loop_state.appendChild(f),this.loop_state.appendChild(v),this.loop_state.appendChild(y),this.loop_state.appendChild(x),this.groupEl.appendChild(this.sliderEl),this.groupEl.appendChild(e),this.model.show_loop_controls&&this.groupEl.appendChild(this.loop_state),this.el.appendChild(this.groupEl)}set_frame(e){this.model.value!=e&&(this.model.value=e),this.sliderEl.value!=String(e)&&(this.sliderEl.value=String(e))}get_loop_state(){for(var e=this.loop_state.state,t=0;t<e.length;t++){var s=e[t];if(s.checked)return s.value}return"once"}set_loop_state(e){for(var t=this.loop_state.state,s=0;s<t.length;s++){var i=t[s];i.value==e&&(i.checked=!0)}}next_frame(){this.set_frame(Math.min(this.model.end,this.model.value+this.model.step))}previous_frame(){this.set_frame(Math.max(this.model.start,this.model.value-this.model.step))}first_frame(){this.set_frame(this.model.start)}last_frame(){this.set_frame(this.model.end)}slower(){this.model.interval=Math.round(this.model.interval/.7),this.model.direction>0?this.play_animation():this.model.direction<0&&this.reverse_animation()}faster(){this.model.interval=Math.round(.7*this.model.interval),this.model.direction>0?this.play_animation():this.model.direction<0&&this.reverse_animation()}anim_step_forward(){if(this.model.value<this.model.end)this.next_frame();else{var e=this.get_loop_state();"loop"==e?this.first_frame():"reflect"==e?(this.last_frame(),this.reverse_animation()):(this.pause_animation(),this.last_frame())}}anim_step_reverse(){if(this.model.value>this.model.start)this.previous_frame();else{var e=this.get_loop_state();"loop"==e?this.last_frame():"reflect"==e?(this.first_frame(),this.play_animation()):(this.pause_animation(),this.first_frame())}}pause_animation(){this._toogle_pause(),this.model.direction=0,this.timer&&(clearInterval(this.timer),this.timer=null)}play_animation(){this.pause_animation(),this._toggle_play(),this.model.direction=1,this.timer||(this.timer=setInterval(()=>this.anim_step_forward(),this.model.interval))}reverse_animation(){this.pause_animation(),this._toggle_reverse(),this.model.direction=-1,this.timer||(this.timer=setInterval(()=>this.anim_step_reverse(),this.model.interval))}}s.PlayerView=r,r.__name__="PlayerView";class d extends l.Widget{constructor(e){super(e)}static init_Player(){this.prototype.default_view=r,this.define({direction:[i.Number,0],interval:[i.Number,500],start:[i.Number],end:[i.Number],step:[i.Number,1],loop_policy:[i.Any,"once"],value:[i.Any,0],show_loop_controls:[i.Boolean,!0]}),this.override({width:400})}}s.Player=d,d.__name__="Player",d.__module__="panel.models.widgets",d.init_Player()},n”, ” "47b5ae5c43": function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const r=t("tslib").__importStar(t("@bokehjs/core/properties")),i=t("@bokehjs/core/dom"),l=t("@bokehjs/core/util/object"),s=t("@bokehjs/core/util/eq"),a=t("@bokehjs/models/layouts/html_box"),p=t("99a25e6992"),n=t("990b5dd5c7"),_=t("7116a7a602"),h=(t,e,o)=>{let r=Array.isArray(e)?[]:{};if("click"===o||"hover"===o||"selected"===o){const o=[];if(null==e)return null;const i=t.data;for(let t=0;t<e.points.length;t++){const r=e.points[t];let l={};for(let t in r){const e=r[t];!r.hasOwnProperty(t)||Array.isArray(e)||n.isPlainObject(e)||(l[t]=e)}null!=r&&(r.hasOwnProperty("curveNumber")&&r.hasOwnProperty("pointNumber")&&i[r.curveNumber].hasOwnProperty("customdata")&&(l.customdata=i[r.curveNumber].customdata[r.pointNumber]),r.hasOwnProperty("pointNumbers")&&(l.pointNumbers=r.pointNumbers)),o[t]=l}r.points=o}else if("relayout"===o||"restyle"===o)for(let t in e)e.hasOwnProperty(t)&&(r[t]=e[t]);return e.hasOwnProperty("range")&&(r.range=e.range),e.hasOwnProperty("lassoPoints")&&(r.lassoPoints=e.lassoPoints),r};class u extends _.PanelHTMLBoxView{constructor(){super(…arguments),this._settingViewport=!1,this._plotInitialized=!1,this._reacting=!1,this._relayouting=!1,this._end_relayouting=p.debounce(()=>{this._relayouting=!1},2e3,!1)}connect_signals(){super.connect_signals(),this.connect(this.model.properties.viewport_update_policy.change,this._updateSetViewportFunction),this.connect(this.model.properties.viewport_update_throttle.change,this._updateSetViewportFunction),this.connect(this.model.properties._render_count.change,this.plot),this.connect(this.model.properties.viewport.change,this._updateViewportFromProperty)}render(){super.render(),this._layout_wrapper=i.div({style:"height: 100%; width: 100%"}),this.el.appendChild(this._layout_wrapper),window.Plotly&&this.plot()}plot(){if(!window.Plotly)return;const t=[];for(let e=0;e<this.model.data.length;e++)t.push(this._get_trace(e,!1));let e=n.deepCopy(this.model.layout);if(this._relayouting){const{layout:t}=this._layout_wrapper;Object.keys(t).reduce((t,o)=>{"axis"===o.slice(1,5)&&"range"in t&&(e[o].range=t.range)},{})}this._reacting=!0,window.Plotly.react(this._layout_wrapper,t,e,this.model.config).then(()=>{var t,e;this._updateSetViewportFunction(),this._updateViewportProperty(),this._plotInitialized||(this._layout_wrapper.on("plotly_relayout",t=>{!0!==t._update_from_property&&(this.model.relayout_data=h(this._layout_wrapper,t,"relayout"),this._updateViewportProperty(),this._end_relayouting())}),this._layout_wrapper.on("plotly_relayouting",()=>{"mouseup"!==this.model.viewport_update_policy&&(this._relayouting=!0,this._updateViewportProperty())}),this._layout_wrapper.on("plotly_restyle",t=>{this.model.restyle_data=h(this._layout_wrapper,t,"restyle"),this._updateViewportProperty()}),this._layout_wrapper.on("plotly_click",t=>{this.model.click_data=h(this._layout_wrapper,t,"click")}),this._layout_wrapper.on("plotly_hover",t=>{this.model.hover_data=h(this._layout_wrapper,t,"hover")}),this._layout_wrapper.on("plotly_selected",t=>{this.model.selected_data=h(this._layout_wrapper,t,"selected")}),this._layout_wrapper.on("plotly_clickannotation",t=>{delete t.event,delete t.fullAnnotation,this.model.clickannotation_data=t}),this._layout_wrapper.on("plotly_deselect",()=>{this.model.selected_data=null}),this._layout_wrapper.on("plotly_unhover",()=>{this.model.hover_data=null})),this._plotInitialized=!0,this._reacting=!1,t=this._layout_wrapper,(e=window.getComputedStyle(t).display)&&"none"!==e&&window.Plotly.Plots.resize(this._layout_wrapper)})}_get_trace(t,e){const o=l.clone(this.model.data[t]),r=this.model.data_sources[t];for(const t of r.columns()){let i=r.get_array(t)[0];if(null!=i.shape&&i.shape.length>1){const t=[],e=i.shape;for(let o=0;o<e[0];o++)t.push(i.slice(o*e[1],(o+1)*e[1]));i=t}let l=t.split("."),s=l[l.length-1],a=o;for(let t of l.slice(0,-1))a=a[t];e&&1==l.length?a[s]=[i]:a[s]=i}return o}_updateViewportFromProperty(){if(!window.Plotly||this._settingViewport||this._reacting||!this.model.viewport)return;const t=this._layout_wrapper._fullLayout;Object.keys(this.model.viewport).reduce((e,o)=>{if(s.isEqual(n.get(t,o),e))return!0;{let t=n.deepCopy(this.model.viewport);return t._update_from_property=!0,window.Plotly.relayout(this.el,t),!1}},{})}_updateViewportProperty(){const t=this._layout_wrapper._fullLayout;let e={};for(let o in t){if(!t.hasOwnProperty(o))continue;let r=o.slice(0,5);"xaxis"!==r&&"yaxis"!==r||(e[o+".range"]=n.deepCopy(t[o].range))}s.isEqual(e,this.model.viewport)||this._setViewport(e)}_updateSetViewportFunction(){"continuous"===this.model.viewport_update_policy||"mouseup"===this.model.viewport_update_policy?this._setViewport=t=>{this._settingViewport||(this._settingViewport=!0,this.model.viewport=t,this._settingViewport=!1)}:this._setViewport=n.throttle(t=>{this._settingViewport||(this._settingViewport=!0,this.model.viewport=t,this._settingViewport=!1)},this.model.viewport_update_throttle)}}o.PlotlyPlotView=u,u.__name__="PlotlyPlotView";class d extends a.HTMLBox{constructor(t){super(t)}static init_PlotlyPlot(){this.prototype.default_view=u,this.define({data:[r.Array,[]],layout:[r.Any,{}],config:[r.Any,{}],data_sources:[r.Array,[]],relayout_data:[r.Any,{}],restyle_data:[r.Array,[]],click_data:[r.Any,{}],hover_data:[r.Any,{}],clickannotation_data:[r.Any,{}],selected_data:[r.Any,{}],viewport:[r.Any,{}],viewport_update_policy:[r.String,"mouseup"],viewport_update_throttle:[r.Number,200],_render_count:[r.Number,0]})}}o.PlotlyPlot=d,d.__name__="PlotlyPlot",d.__module__="panel.models.plotly",d.init_PlotlyPlot()},n”, ” "99a25e6992": function _(n,l,u){function t(n,l,u){var t,e,o,a,r;function i(){var c=Date.now()-a;c<l&&c>=0?t=setTimeout(i,l-c):(t=null,u||(r=n.apply(o,e),o=e=null))}null==l&&(l=100);var c=function(){o=this,e=arguments,a=Date.now();var c=u&&!t;return t||(t=setTimeout(i,l)),c&&(r=n.apply(o,e),o=e=null),r};return c.clear=function(){t&&(clearTimeout(t),t=null)},c.flush=function(){t&&(r=n.apply(o,e),o=e=null,clearTimeout(t),t=null)},c}t.debounce=t,l.exports=t},n”, ” "990b5dd5c7": function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.get=(t,e,n)=>{const r=n=>String.prototype.split.call(e,n).filter(Boolean).reduce((t,e)=>null!=t?t[e]:t,t),o=r(/[,[\]]+?/)||r(/[,[\].]+?/);return void 0===o||o===t?n:o},n.throttle=function(t,e){var n=0;return function(){var r=Number(new Date);r-n>=e&&(t(),n=r)}},n.deepCopy=function t(e){var n;if(null==e||"object"!=typeof e)return e;if(e instanceof Array){n=[];for(var r=0,o=e.length;r<o;r++)n[r]=t(e[r]);return n}if(e instanceof Object){const n={};for(const r in e){const o=r;e.hasOwnProperty(o)&&(n[o]=t(e[o]))}return n}throw new Error("Unable to copy obj! Its type isn’t supported.")},n.isPlainObject=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},n”, ” "765e9cea08": function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/models/layouts/html_box"),r=e("7116a7a602");class l extends o.HTMLBoxView{connect_signals(){super.connect_signals();const e=()=>{this.render(),this.root.compute_layout()};this.connect(this.model.properties.height.change,e),this.connect(this.model.properties.width.change,e),this.connect(this.model.properties.height_policy.change,e),this.connect(this.model.properties.width_policy.change,e),this.connect(this.model.properties.sizing_mode.change,e),this.connect(this.model.properties.active.change,()=>this.setCSS()),this.connect(this.model.properties.bar_color.change,()=>this.setCSS()),this.connect(this.model.properties.css_classes.change,()=>this.setCSS()),this.connect(this.model.properties.value.change,()=>this.setValue()),this.connect(this.model.properties.max.change,()=>this.setMax())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:"inline-block"});this.progressEl=document.createElement("progress"),this.setValue(),this.setMax(),r.set_size(this.progressEl,this.model),this.setCSS();for(const s in e)this.progressEl.style.setProperty(s,e[s]);this.el.appendChild(this.progressEl)}setCSS(){let e=this.model.css_classes.join(" ")+" "+this.model.bar_color;this.model.active&&(e+=" active"),this.progressEl.className=e}setValue(){null!=this.model.value&&(this.progressEl.value=this.model.value)}setMax(){null!=this.model.max&&(this.progressEl.max=this.model.max)}_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new r.CachedVariadicBox(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}}t.ProgressView=l,l.__name__="ProgressView";class n extends o.HTMLBox{constructor(e){super(e)}static init_Progress(){this.prototype.default_view=l,this.define({active:[i.Boolean,!0],bar_color:[i.String,"primary"],style:[i.Any,{}],max:[i.Number,100],value:[i.Any,null]})}}t.Progress=n,n.__name__="Progress",n.__module__="panel.models.widgets",n.init_Progress()},n”, ” "ff9dd91f7b": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib"),n=e("@bokehjs/core/dom"),l=e("@bokehjs/core/util/types"),o=i.__importStar(e("@bokehjs/core/properties")),c=e("@bokehjs/models/widgets/input_widget"),r=e("@bokehjs/styles/widgets/inputs");class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!1,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.style.backgroundImage="none",this.select_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=this.model.value;for(const t of this.el.querySelectorAll("option"))t.value===e&&(t.selected=!0);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector("select:focus");let t=null;for(const e of this.el.querySelectorAll("option"))if(e.selected){t=e.value;break}this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.SingleSelectView=h,h.__name__="SingleSelectView";class d extends c.InputWidget{constructor(e){super(e)}static init_SingleSelect(){this.prototype.default_view=h,this.define({value:[o.String,""],options:[o.Array,[]],size:[o.Number,4]})}}s.SingleSelect=d,d.__name__="SingleSelect",d.__module__="panel.models.widgets",d.init_SingleSelect()},n”, ” "38b2bc9574": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),a=e("@bokehjs/core/view"),o=e("@bokehjs/core/util/array"),c=e("@bokehjs/model"),n=e("@bokehjs/protocol/receiver");class r extends a.View{renderTo(){}}s.StateView=r,r.__name__="StateView";class _ extends c.Model{constructor(e){super(e),this._receiver=new n.Receiver,this._cache={}}apply_state(e){this._receiver.consume(e.header),this._receiver.consume(e.metadata),this._receiver.consume(e.content),this._receiver.message&&this.document&&this.document.apply_json_patch(this._receiver.message.content)}_receive_json(e,t){const s=JSON.parse(e);this._cache[t]=s;let i=this.state;for(const e of this.values)i=i[e];i===t?this.apply_state(s):this._cache[i]&&this.apply_state(this._cache[i])}set_state(e,t){let s=o.copy(this.values);s[this.widgets[e.id]]=t;let i=this.state;for(const e of s)i=i[e];var a,c,n;this.values=s,this.json?this._cache[i]?this.apply_state(this._cache[i]):(a=i,c=e=>this._receive_json(e,i),(n=new XMLHttpRequest).overrideMimeType("application/json"),n.open("GET",a,!0),n.onreadystatechange=function(){4==n.readyState&&200==n.status&&c(n.responseText)},n.send(null)):this.apply_state(i)}static init_State(){this.prototype.default_view=r,this.define({json:[i.Boolean,!1],state:[i.Any,{}],widgets:[i.Any,{}],values:[i.Any,[]]})}}s.State=_,_.__name__="State",_.__module__="panel.models.state",_.init_State()},n”, ” "294adeb985": function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t("tslib").__importStar(t("@bokehjs/core/properties")),a=t("@bokehjs/core/util/types"),n=t("@bokehjs/models/layouts/html_box");class c extends n.HTMLBoxView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,this._plot),this.connect(this.model.properties.data_sources.change,()=>this._connect_sources()),this._connected=[],this._connect_sources()}_connect_sources(){for(const t in this.model.data_sources){const e=this.model.data_sources[t];this._connected.indexOf(t)<0&&(this.connect(e.properties.data.change,this._plot),this._connected.push(t))}}_fetch_datasets(){const t={};for(const e in this.model.data_sources){const s=this.model.data_sources[e],o=[],a=s.columns();for(let t=0;t<s.get_length();t++){const e={};for(const o of a)e[o]=s.data[o][t];o.push(e)}t[e]=o}return t}render(){super.render(),this._plot()}_plot(){const t=this.model.data;if(null!=t&&window.vegaEmbed){if(this.model.data_sources&&Object.keys(this.model.data_sources).length>0){const e=this._fetch_datasets();if("data"in e&&(t.data.values=e.data,delete e.data),null!=t.data){const s=a.isArray(t.data)?t.data:[t.data];for(const t of s)t.name in e&&(t.values=e[t.name],delete e[t.name])}this.model.data.datasets=e}window.vegaEmbed(this.el,this.model.data,{actions:!1})}}}s.VegaPlotView=c,c.__name__="VegaPlotView";class i extends n.HTMLBox{constructor(t){super(t)}static init_VegaPlot(){this.prototype.default_view=c,this.define({data:[o.Any],data_sources:[o.Any]})}}s.VegaPlot=i,i.__name__="VegaPlot",i.__module__="panel.models.vega",i.init_VegaPlot()},n”, ” "b0c3e9e9c2": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),l=e("7116a7a602");class d extends l.PanelHTMLBoxView{initialize(){super.initialize(),this._blocked=!1,this._setting=!1,this._time=Date.now()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.loop.change,()=>this.set_loop()),this.connect(this.model.properties.paused.change,()=>this.set_paused()),this.connect(this.model.properties.time.change,()=>this.set_time()),this.connect(this.model.properties.value.change,()=>this.set_value()),this.connect(this.model.properties.volume.change,()=>this.set_volume())}render(){super.render(),this.videoEl=document.createElement("video"),this.model.sizing_mode&&"fixed"!==this.model.sizing_mode||(this.model.height&&(this.videoEl.height=this.model.height),this.model.width&&(this.videoEl.width=this.model.width)),this.videoEl.style.objectFit="fill",this.videoEl.style.minWidth="100%",this.videoEl.style.minHeight="100%",this.videoEl.controls=!0,this.videoEl.src=this.model.value,this.videoEl.currentTime=this.model.time,this.videoEl.loop=this.model.loop,null!=this.model.volume?this.videoEl.volume=this.model.volume/100:this.model.volume=100*this.videoEl.volume,this.videoEl.onpause=()=>this.model.paused=!0,this.videoEl.onplay=()=>this.model.paused=!1,this.videoEl.ontimeupdate=()=>this.update_time(this),this.videoEl.onvolumechange=()=>this.update_volume(this),this.el.appendChild(this.videoEl),this.model.paused||this.videoEl.play()}update_time(e){e._setting?e._setting=!1:Date.now()-e._time<e.model.throttle||(e._blocked=!0,e.model.time=e.videoEl.currentTime,e._time=Date.now())}update_volume(e){e._setting?e._setting=!1:(e._blocked=!0,e.model.volume=100*e.videoEl.volume)}set_loop(){this.videoEl.loop=this.model.loop}set_paused(){!this.videoEl.paused&&this.model.paused&&this.videoEl.pause(),this.videoEl.paused&&!this.model.paused&&this.videoEl.play()}set_volume(){this._blocked?this._blocked=!1:(this._setting=!0,null!=this.model.volume&&(this.videoEl.volume=this.model.volume/100))}set_time(){this._blocked?this._blocked=!1:(this._setting=!0,this.videoEl.currentTime=this.model.time)}set_value(){this.videoEl.src=this.model.value}}t.VideoView=d,d.__name__="VideoView";class h extends s.HTMLBox{constructor(e){super(e)}static init_Video(){this.prototype.default_view=d,this.define({loop:[o.Boolean,!1],paused:[o.Boolean,!0],time:[o.Number,0],throttle:[o.Number,250],value:[o.Any,""],volume:[o.Number,null]})}}t.Video=h,h.__name__="Video",h.__module__="panel.models.widgets",h.init_Video()},n”, ” "3c7145a2fa": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/models/layouts/html_box"),h=e("7116a7a602");class a extends h.PanelHTMLBoxView{constructor(){super(…arguments),this.constraints={audio:!1,video:!0}}initialize(){super.initialize(),null!==this.model.timeout&&this.set_timeout()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.timeout.change,()=>this.set_timeout()),this.connect(this.model.properties.snapshot.change,()=>this.snapshot()),this.connect(this.model.properties.paused.change,()=>this.pause())}pause(){this.model.paused&&(null!=this.timer&&(clearInterval(this.timer),this.timer=null),this.videoEl.pause()),this.set_timeout()}set_timeout(){this.timer&&(clearInterval(this.timer),this.timer=null),this.model.timeout>0&&(this.timer=setInterval(()=>this.snapshot(),this.model.timeout))}snapshot(){this.canvasEl.width=this.videoEl.videoWidth,this.canvasEl.height=this.videoEl.videoHeight;const e=this.canvasEl.getContext("2d");e&&e.drawImage(this.videoEl,0,0,this.canvasEl.width,this.canvasEl.height),this.model.value=this.canvasEl.toDataURL("image/"+this.model.format,.95)}remove(){super.remove(),this.timer&&(clearInterval(this.timer),this.timer=null)}render(){super.render(),this.videoEl||(this.videoEl=document.createElement("video"),this.model.sizing_mode&&"fixed"!==this.model.sizing_mode||(this.model.height&&(this.videoEl.height=this.model.height),this.model.width&&(this.videoEl.width=this.model.width)),this.videoEl.style.objectFit="fill",this.videoEl.style.minWidth="100%",this.videoEl.style.minHeight="100%",this.canvasEl=document.createElement("canvas"),this.el.appendChild(this.videoEl),navigator.mediaDevices.getUserMedia&&navigator.mediaDevices.getUserMedia(this.constraints).then(e=>{this.videoEl.srcObject=e,this.model.paused||this.videoEl.play()}).catch(console.error))}}i.VideoStreamView=a,a.__name__="VideoStreamView";class l extends o.HTMLBox{constructor(e){super(e)}static init_VideoStream(){this.prototype.default_view=a,this.define({format:[s.String,"png"],paused:[s.Boolean,!1],snapshot:[s.Boolean,!1],timeout:[s.Number,0],value:[s.Any]}),this.override({height:240,width:320})}}i.VideoStream=l,l.__name__="VideoStream",l.__module__="panel.models.widgets",l.init_VideoStream()},n”, ” "c51f25e2a7": function _(e,o,l){Object.defineProperty(l,"__esModule",{value:!0});var V=e("6ed30646d7");l.VTKJSPlot=V.VTKJSPlot;var t=e("087f1e0be6");l.VTKVolumePlot=t.VTKVolumePlot;var a=e("3ae7537200");l.VTKAxes=a.VTKAxes;var r=e("4baab0b7ce");l.VTKSynchronizedPlot=r.VTKSynchronizedPlot},n”, ” "6ed30646d7": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("021b2a3929"),a=e("6c442cdcb4");class r extends s.AbstractVTKView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>{this.invalidate_render()})}render(){super.render(),this._create_orientation_widget(),this._set_axes()}invalidate_render(){this._vtk_renwin=null,super.invalidate_render()}init_vtk_renwin(){this._vtk_renwin=a.vtkns.FullScreenRenderWindow.newInstance({rootContainer:this.el,container:this._vtk_container})}plot(){if(!this.model.data)return void this._vtk_renwin.getRenderWindow().render();const e=a.vtkns.DataAccessHelper.get("zip",{zipContent:atob(this.model.data),callback:t=>{const n=a.vtkns.HttpSceneLoader.newInstance({renderer:this._vtk_renwin.getRenderer(),dataAccessHelper:e}),i=a.vtk.macro.debounce(()=>setTimeout(()=>{null==this._axes&&this.model.axes&&this._set_axes(),this._set_camera_state(),this._get_camera_state()},100),100);n.setUrl("index.json"),n.onReady(i)}})}}n.VTKJSPlotView=r,r.__name__="VTKJSPlotView";class o extends s.AbstractVTKPlot{static init_VTKJSPlot(){this.prototype.default_view=r,this.define({data:[i.String],enable_keybindings:[i.Boolean,!1]})}}n.VTKJSPlot=o,o.__name__="VTKJSPlot",o.init_VTKJSPlot()},n”, ” "021b2a3929": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e("tslib").__importStar(e("@bokehjs/core/properties")),r=e("@bokehjs/core/dom"),s=e("@bokehjs/models/layouts/html_box"),a=e("@bokehjs/core/util/object"),o=e("7116a7a602"),_=e("6c442cdcb4"),d=e("c010237f8b"),c={padding:"0px 2px 0px 2px",maxHeight:"150px",height:"auto",backgroundColor:"rgba(255, 255, 255, 0.4)",borderRadius:"10px",margin:"2px",boxSizing:"border-box",overflow:"hidden",overflowY:"auto",transition:"width 0.1s linear",bottom:"0px",position:"absolute"};class h extends o.PanelHTMLBoxView{initialize(){super.initialize(),this._camera_callbacks=[],this._renderable=!0,this._setting_camera=!1}_add_colorbars(){const e=this.el.querySelector(".vtk_info");if(e&&this.el.removeChild(e),this.model.color_mappers.length<1)return;const t=document.createElement("div");t.classList.add("vtk_info"),_.applyStyle(t,c),_.applyStyle(t,{width:"350px"}),this.el.appendChild(t);const i=[];this.model.color_mappers.forEach(e=>{const n=new d.VTKColorBar(t,e);i.push(n)});const n=document.createElement("div");_.applyStyle(n,{textAlign:"center",fontSize:"20px"}),n.innerText="…",t.addEventListener("click",()=>{"30px"===t.style.width?(t.removeChild(n),_.applyStyle(t,{height:"auto",width:"350px"}),i.forEach(e=>t.appendChild(e.canvas))):(i.forEach(e=>t.removeChild(e.canvas)),_.applyStyle(t,{height:"30px",width:"30px"}),t.appendChild(n))}),t.click()}connect_signals(){super.connect_signals(),this.on_change(this.model.properties.orientation_widget,()=>{this._orientation_widget_visibility(this.model.orientation_widget)}),this.on_change(this.model.properties.camera,()=>this._set_camera_state()),this.on_change(this.model.properties.axes,()=>{this._delete_axes(),this.model.axes&&this._set_axes(),this._vtk_render()}),this.on_change(this.model.properties.color_mappers,()=>this._add_colorbars())}render(){super.render(),this._vtk_renwin&&this._vtk_container?(o.set_size(this._vtk_container,this.model),this.el.appendChild(this._vtk_container)):(this._orientationWidget=null,this._axes=null,this._vtk_container=r.div(),this.init_vtk_renwin(),o.set_size(this._vtk_container,this.model),this.el.appendChild(this._vtk_container),this._vtk_renwin.getInteractor().onEndAnimation(()=>this._get_camera_state()),this._remove_default_key_binding(),this._bind_key_events(),this.plot(),this._add_colorbars(),this.model.renderer_el=this._vtk_renwin)}after_layout(){super.after_layout(),this._renderable&&this._vtk_renwin.resize(),this._vtk_render()}invalidate_render(){this._unsubscribe_camera_cb(),super.invalidate_render()}remove(){this._unsubscribe_camera_cb(),window.removeEventListener("resize",this._vtk_renwin.resize),this._vtk_renwin.delete(),super.remove()}get _vtk_camera_state(){const e=this._vtk_renwin.getRenderer().getActiveCamera();let t;return e&&(t=a.clone(e.get()),delete t.classHierarchy,delete t.vtkObject,delete t.vtkCamera,delete t.viewPlaneNormal,delete t.flattenedDepIds,delete t.managedInstanceId,delete t.directionOfProjection),t}get _axes_canvas(){let e=this._vtk_container.querySelector(".axes-canvas");return e||(e=r.canvas({style:{position:"absolute",top:"0",left:"0",width:"100%",height:"100%"}}),e.classList.add("axes-canvas"),this._vtk_container.appendChild(e),this._vtk_renwin.setResizeCallback(()=>{if(this._axes_canvas){const e=this._vtk_container.getBoundingClientRect(),t=Math.floor(e.width*window.devicePixelRatio),i=Math.floor(e.height*window.devicePixelRatio);this._axes_canvas.setAttribute("width",t.toFixed()),this._axes_canvas.setAttribute("height",i.toFixed())}})),e}_bind_key_events(){this.el.addEventListener("mouseenter",()=>{const e=this._vtk_renwin.getInteractor();this.model.enable_keybindings&&(document.querySelector("body").addEventListener("keypress",e.handleKeyPress),document.querySelector("body").addEventListener("keydown",e.handleKeyDown),document.querySelector("body").addEventListener("keyup",e.handleKeyUp))}),this.el.addEventListener("mouseleave",()=>{const e=this._vtk_renwin.getInteractor();document.querySelector("body").removeEventListener("keypress",e.handleKeyPress),document.querySelector("body").removeEventListener("keydown",e.handleKeyDown),document.querySelector("body").removeEventListener("keyup",e.handleKeyUp)})}_create_orientation_widget(){const e=_.vtkns.AxesActor.newInstance();this._orientationWidget=_.vtkns.OrientationMarkerWidget.newInstance({actor:e,interactor:this._vtk_renwin.getInteractor()}),this._orientationWidget.setEnabled(!0),this._orientationWidget.setViewportCorner(_.vtkns.OrientationMarkerWidget.Corners.BOTTOM_RIGHT),this._orientationWidget.setViewportSize(.15),this._orientationWidget.setMinPixelSize(75),this._orientationWidget.setMaxPixelSize(300),this.model.interactive_orientation_widget&&this._make_orientation_widget_interactive(),this._orientation_widget_visibility(this.model.orientation_widget)}_make_orientation_widget_interactive(){this._widgetManager=_.vtkns.WidgetManager.newInstance(),this._widgetManager.setRenderer(this._orientationWidget.getRenderer());const e=this._orientationWidget.getActor(),t=_.vtkns.InteractiveOrientationWidget.newInstance();t.placeWidget(e.getBounds()),t.setBounds(e.getBounds()),t.setPlaceFactor(1);this._widgetManager.addWidget(t).onOrientationChange(({direction:e})=>{const t=this._vtk_renwin.getRenderer().getActiveCamera(),i=t.getFocalPoint(),n=t.getPosition(),r=t.getViewUp(),s=Math.sqrt(Math.pow(n[0]-i[0],2)+Math.pow(n[1]-i[1],2)+Math.pow(n[2]-i[2],2));t.setPosition(i[0]+e[0]*s,i[1]+e[1]*s,i[2]+e[2]*s),e[0]&&t.setViewUp(_.majorAxis(r,1,2)),e[1]&&t.setViewUp(_.majorAxis(r,0,2)),e[2]&&t.setViewUp(_.majorAxis(r,0,1)),this._vtk_renwin.getRenderer().resetCameraClippingRange(),this._vtk_render(),this._get_camera_state()})}_delete_axes(){if(this._axes){Object.keys(this._axes).forEach(e=>this._vtk_renwin.getRenderer().removeActor(this._axes[e])),this._axes=null;const e=this._axes_canvas.getContext("2d");e&&e.clearRect(0,0,this._axes_canvas.clientWidth*window.devicePixelRatio,this._axes_canvas.clientHeight*window.devicePixelRatio)}}_get_camera_state(){this._setting_camera||(this._setting_camera=!0,this.model.camera=this._vtk_camera_state,this._setting_camera=!1)}_orientation_widget_visibility(e){this._orientationWidget.setEnabled(e),null!=this._widgetManager&&(e?this._widgetManager.enablePicking():this._widgetManager.disablePicking()),this._vtk_render()}_remove_default_key_binding(){const e=this._vtk_renwin.getInteractor();document.querySelector("body").removeEventListener("keypress",e.handleKeyPress),document.querySelector("body").removeEventListener("keydown",e.handleKeyDown),document.querySelector("body").removeEventListener("keyup",e.handleKeyUp)}_set_axes(){if(this.model.axes&&this._vtk_renwin.getRenderer()){const{psActor:e,axesActor:t,gridActor:i}=this.model.axes.create_axes(this._axes_canvas);this._axes={psActor:e,axesActor:t,gridActor:i},this._vtk_renwin.getRenderer().addActor(e),this._vtk_renwin.getRenderer().addActor(t),this._vtk_renwin.getRenderer().addActor(i)}}_set_camera_state(){this._setting_camera||void 0===this._vtk_renwin.getRenderer()||(this._setting_camera=!0,this.model.camera&&JSON.stringify(this.model.camera)!=JSON.stringify(this._vtk_camera_state)&&this._vtk_renwin.getRenderer().getActiveCamera().set(this.model.camera),this._vtk_renwin.getRenderer().resetCameraClippingRange(),this._vtk_render(),this._setting_camera=!1)}_unsubscribe_camera_cb(){this._camera_callbacks.splice(0,this._camera_callbacks.length).map(e=>e.unsubscribe())}_vtk_render(){this._renderable&&(this._orientationWidget&&this._orientationWidget.updateMarkerOrientation(),this._vtk_renwin.getRenderWindow().render())}}i.AbstractVTKView=h,h.__name__="AbstractVTKView";class l extends s.HTMLBox{constructor(e){super(e)}getActors(){return this.renderer_el.getRenderer().getActors()}static init_AbstractVTKPlot(){this.define({axes:[n.Instance],camera:[n.Instance],color_mappers:[n.Array,[]],orientation_widget:[n.Boolean,!1],interactive_orientation_widget:[n.Boolean,!1]}),this.override({height:300,width:300})}}i.AbstractVTKPlot=l,l.__name__="AbstractVTKPlot",l.__module__="panel.models.vtk",l.init_AbstractVTKPlot()},n”, ” "6c442cdcb4": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e("@bokehjs/core/util/array");if(n.ARRAY_TYPES={uint8:Uint8Array,int8:Int8Array,uint16:Uint16Array,int16:Int16Array,uint32:Uint32Array,int32:Int32Array,float32:Float32Array,float64:Float64Array},n.vtk=window.vtk,n.vtkns={},n.vtk){n.vtkns.Actor=n.vtk.Rendering.Core.vtkActor,n.vtkns.AxesActor=n.vtk.Rendering.Core.vtkAxesActor,n.vtkns.Base64=n.vtk.Common.Core.vtkBase64,n.vtkns.BoundingBox=n.vtk.Common.DataModel.vtkBoundingBox,n.vtkns.Camera=n.vtk.Rendering.Core.vtkCamera,n.vtkns.ColorTransferFunction=n.vtk.Rendering.Core.vtkColorTransferFunction,n.vtkns.CubeSource=n.vtk.Filters.Sources.vtkCubeSource,n.vtkns.DataAccessHelper=n.vtk.IO.Core.DataAccessHelper,n.vtkns.DataArray=n.vtk.Common.Core.vtkDataArray,n.vtkns.Follower=n.vtk.Rendering.Core.vtkFollower,n.vtkns.FullScreenRenderWindow=n.vtk.Rendering.Misc.vtkFullScreenRenderWindow,n.vtkns.Glyph3DMapper=n.vtk.Rendering.Core.vtkGlyph3DMapper,n.vtkns.HttpSceneLoader=n.vtk.IO.Core.vtkHttpSceneLoader,n.vtkns.ImageData=n.vtk.Common.DataModel.vtkImageData,n.vtkns.ImageMapper=n.vtk.Rendering.Core.vtkImageMapper,n.vtkns.ImageProperty=n.vtk.Rendering.Core.vtkImageProperty,n.vtkns.ImageSlice=n.vtk.Rendering.Core.vtkImageSlice,n.vtkns.InteractiveOrientationWidget=n.vtk.Widgets.Widgets3D.vtkInteractiveOrientationWidget,n.vtkns.InteractorStyleTrackballCamera=n.vtk.Interaction.Style.vtkInteractorStyleTrackballCamera,n.vtkns.Light=n.vtk.Rendering.Core.vtkLight,n.vtkns.LineSource=n.vtk.Filters.Sources.vtkLineSource,n.vtkns.LookupTable=n.vtk.Common.Core.vtkLookupTable,n.vtkns.macro=n.vtk.macro,n.vtkns.Mapper=n.vtk.Rendering.Core.vtkMapper,n.vtkns.OpenGLRenderWindow=n.vtk.Rendering.OpenGL.vtkRenderWindow,n.vtkns.OrientationMarkerWidget=n.vtk.Interaction.Widgets.vtkOrientationMarkerWidget,n.vtkns.OutlineFilter=n.vtk.Filters.General.vtkOutlineFilter,n.vtkns.PiecewiseFunction=n.vtk.Common.DataModel.vtkPiecewiseFunction,n.vtkns.PixelSpaceCallbackMapper=n.vtk.Rendering.Core.vtkPixelSpaceCallbackMapper,n.vtkns.PlaneSource=n.vtk.Filters.Sources.vtkPlaneSource,n.vtkns.PointSource=n.vtk.Filters.Sources.vtkPointSource,n.vtkns.PolyData=n.vtk.Common.DataModel.vtkPolyData,n.vtkns.Property=n.vtk.Rendering.Core.vtkProperty,n.vtkns.Renderer=n.vtk.Rendering.Core.vtkRenderer,n.vtkns.RenderWindow=n.vtk.Rendering.Core.vtkRenderWindow,n.vtkns.RenderWindowInteractor=n.vtk.Rendering.Core.vtkRenderWindowInteractor,n.vtkns.SphereMapper=n.vtk.Rendering.Core.vtkSphereMapper,n.vtkns.SynchronizableRenderWindow=n.vtk.Rendering.Misc.vtkSynchronizableRenderWindow,n.vtkns.ThirdParty=n.vtk.ThirdParty,n.vtkns.Texture=n.vtk.Rendering.Core.vtkTexture,n.vtkns.Volume=n.vtk.Rendering.Core.vtkVolume,n.vtkns.VolumeController=n.vtk.Interaction.UI.vtkVolumeController,n.vtkns.VolumeMapper=n.vtk.Rendering.Core.vtkVolumeMapper,n.vtkns.VolumeProperty=n.vtk.Rendering.Core.vtkVolumeProperty,n.vtkns.WidgetManager=n.vtk.Widgets.Core.vtkWidgetManager;const{vtkObjectManager:e}=n.vtkns.SynchronizableRenderWindow;e.setTypeMapping("vtkVolumeMapper",n.vtkns.VolumeMapper.newInstance,e.oneTimeGenericUpdater),e.setTypeMapping("vtkSmartVolumeMapper",n.vtkns.VolumeMapper.newInstance,e.oneTimeGenericUpdater),e.setTypeMapping("vtkFollower",n.vtkns.Follower.newInstance,e.genericUpdater)}function o(e){const t=Math.min(Math.max(Math.round(e),0),255).toString(16);return 2==t.length?t:"0"+t}function a(e,t,n){return"#"+o(e)+o(t)+o(n)}function k(e){for(var t=new ArrayBuffer(e.length),n=new Uint8Array(t),r=0,o=e.length;r<o;r++)n[r]=e.charCodeAt(r);return t}n.applyStyle=function(e,t){Object.keys(t).forEach(n=>{e.style[n]=t[n]})},n.hexToRGB=function(e){return[parseInt(e.slice(1,3),16)/255,parseInt(e.slice(3,5),16)/255,parseInt(e.slice(5,7),16)/255]},n.rgbToHex=a,n.vtkLutToMapper=function(e){const{scale:t,nodes:o}=e.get("scale","nodes");if(t!==n.vtkns.ColorTransferFunction.Scale.LINEAR)throw"Error transfer function scale not handle";const k=o.map(e=>e.x),v=Math.min(…k),i=Math.max(…k),s=r.linspace(v,i,255),c=[0,0,0];return{low:v,high:i,palette:s.map(t=>(e.getColor(t,c),a(255*c[0],255*c[1],255*c[2])))}},n.data2VTKImageData=function(e){const t=n.vtkns.ImageData.newInstance({spacing:e.spacing});t.setDimensions(e.dims),t.setOrigin(null!=e.origin?e.origin:e.dims.map(e=>e/2));const r=n.vtkns.DataArray.newInstance({name:"scalars",numberOfComponents:1,values:new n.ARRAY_TYPES[e.dtype](k(atob(e.buffer)))});return t.getPointData().setScalars(r),t},n.majorAxis=function(e,t,n){const r=[0,0,0],o=Math.abs(e[t])>Math.abs(e[n])?t:n,a=e[o]>0?1:-1;return r[o]=a,r},n.cartesian_product=function(…e){return e.reduce((e,t)=>e.flatMap(e=>t.map(t=>[].concat(e,t))))}},n”, ” "c010237f8b": function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t("@bokehjs/models/mappers"),h=t("@bokehjs/core/util/array");class a{constructor(t,i,e={}){this.parent=t,this.mapper=i,this.options=e,e.ticksNum||(e.ticksNum=5),e.fontFamily||(e.fontFamily="Arial"),e.fontSize||(e.fontSize="12px"),e.ticksSize||(e.ticksSize=2),this.canvas=document.createElement("canvas"),this.canvas.style.width="100%",this.parent.appendChild(this.canvas),this.ctx=this.canvas.getContext("2d"),this.ctx.font=`${this.options.fontSize} ${this.options.fontFamily}`,this.ctx.lineWidth=e.ticksSize,e.height||(e.height=4*(this.font_height+1)+"px"),this.canvas.style.height=e.height,this.draw_colorbar()}get values(){const{min:t,max:i}=this.mapper.metrics;return h.linspace(t,i,this.options.ticksNum)}get ticks(){return this.values.map(t=>t.toExponential(3))}get title(){return this.mapper.name?this.mapper.name:"scalars"}get font_height(){let t=0;return this.values.forEach(i=>{const{actualBoundingBoxAscent:e,actualBoundingBoxDescent:s}=this.ctx.measureText(""+i),h=e+s;t<h&&(t=h)}),t}draw_colorbar(){this.canvas.width=this.canvas.clientWidth,this.canvas.height=this.canvas.clientHeight;const{palette:t}=this.mapper;this.ctx.font=`${this.options.fontSize} ${this.options.fontFamily}`;const i=this.font_height;this.ctx.save();const e=document.createElement("canvas"),a=t.length;e.width=a,e.height=1;const n=e.getContext("2d"),c=n.getImageData(0,0,a,1),o=new s.LinearColorMapper({palette:t}).rgba_mapper.v_compute(h.range(0,t.length));c.data.set(o),n.putImageData(c,0,0),this.ctx.drawImage(e,0,2*(this.font_height+1)+1,this.canvas.width,this.canvas.height),this.ctx.restore(),this.ctx.save(),this.ctx.textAlign="center",this.ctx.fillText(this.title,this.canvas.width/2,i+1),this.ctx.restore(),this.ctx.save();const r=h.linspace(0,this.canvas.width,5);r.forEach((t,e)=>{let s=t;0==e?(s=t+Math.ceil(this.ctx.lineWidth/2),this.ctx.textAlign="left"):e==r.length-1?(s=t-Math.ceil(this.ctx.lineWidth/2),this.ctx.textAlign="right"):this.ctx.textAlign="center",this.ctx.moveTo(s,2*(i+1)),this.ctx.lineTo(s,2*(i+1)+5),this.ctx.stroke(),this.ctx.fillText(""+this.ticks[e],t,2*(i+1))}),this.ctx.restore()}}e.VTKColorBar=a,a.__name__="VTKColorBar"},n”, ” "087f1e0be6": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),n=e("021b2a3929"),r=e("6c442cdcb4");class o extends n.AbstractVTKView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>{this._vtk_image_data=r.data2VTKImageData(this.model.data),this.invalidate_render()}),this.connect(this.model.properties.colormap.change,()=>{this.colormap_selector.value=this.model.colormap;const e=new Event("change");this.colormap_selector.dispatchEvent(e)}),this.connect(this.model.properties.shadow.change,()=>{this.shadow_selector.value=this.model.shadow?"1":"0";const e=new Event("change");this.shadow_selector.dispatchEvent(e)}),this.connect(this.model.properties.sampling.change,()=>{this.sampling_slider.value=this.model.sampling.toFixed(2);const e=new Event("input");this.sampling_slider.dispatchEvent(e)}),this.connect(this.model.properties.edge_gradient.change,()=>{this.edge_gradient_slider.value=this.model.edge_gradient.toFixed(2);const e=new Event("input");this.edge_gradient_slider.dispatchEvent(e)}),this.connect(this.model.properties.rescale.change,()=>{this._controllerWidget.setRescaleColorMap(this.model.rescale),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.ambient.change,()=>{this.volume.getProperty().setAmbient(this.model.ambient),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.diffuse.change,()=>{this.volume.getProperty().setDiffuse(this.model.diffuse),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.specular.change,()=>{this.volume.getProperty().setSpecular(this.model.specular),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.specular_power.change,()=>{this.volume.getProperty().setSpecularPower(this.model.specular_power),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.display_volume.change,()=>{this._set_volume_visibility(this.model.display_volume),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.display_slices.change,()=>{this._set_slices_visibility(this.model.display_slices),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.slice_i.change,()=>{void 0!==this.image_actor_i&&(this.image_actor_i.getMapper().setISlice(this.model.slice_i),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.slice_j.change,()=>{void 0!==this.image_actor_j&&(this.image_actor_j.getMapper().setJSlice(this.model.slice_j),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.slice_k.change,()=>{void 0!==this.image_actor_k&&(this.image_actor_k.getMapper().setKSlice(this.model.slice_k),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.render_background.change,()=>{this._vtk_renwin.getRenderer().setBackground(…r.hexToRGB(this.model.render_background)),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.interpolation.change,()=>{this._set_interpolation(this.model.interpolation),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.controller_expanded.change,()=>{null!=this._controllerWidget&&this._controllerWidget.setExpanded(this.model.controller_expanded)})}render(){this._vtk_renwin=null,this._orientationWidget=null,this._axes=null,super.render(),this._create_orientation_widget(),this._set_axes(),this.model.camera?this._set_camera_state():this._vtk_renwin.getRenderer().resetCamera(),this._get_camera_state()}invalidate_render(){this._vtk_renwin=null,super.invalidate_render()}init_vtk_renwin(){this._vtk_renwin=r.vtkns.FullScreenRenderWindow.newInstance({rootContainer:this.el,container:this._vtk_container})}plot(){this._controllerWidget=r.vtkns.VolumeController.newInstance({size:[400,150],rescaleColorMap:this.model.rescale}),this._plot_volume(),this._plot_slices(),this._controllerWidget.setupContent(this._vtk_renwin.getRenderWindow(),this.volume,!0),this._controllerWidget.setContainer(this.el),this._controllerWidget.setExpanded(this.model.controller_expanded),this._connect_js_controls(),this._vtk_renwin.getRenderWindow().getInteractor(),this._vtk_renwin.getRenderWindow().getInteractor().setDesiredUpdateRate(45),this._set_volume_visibility(this.model.display_volume),this._set_slices_visibility(this.model.display_slices),this._vtk_renwin.getRenderer().setBackground(…r.hexToRGB(this.model.render_background)),this._set_interpolation(this.model.interpolation),this._set_camera_state()}get vtk_image_data(){return this._vtk_image_data||(this._vtk_image_data=r.data2VTKImageData(this.model.data)),this._vtk_image_data}get volume(){return this._vtk_renwin.getRenderer().getVolumes()[0]}get image_actor_i(){return this._vtk_renwin.getRenderer().getActors()[0]}get image_actor_j(){return this._vtk_renwin.getRenderer().getActors()[1]}get image_actor_k(){return this._vtk_renwin.getRenderer().getActors()[2]}get shadow_selector(){return this.el.querySelector(".js-shadow")}get edge_gradient_slider(){return this.el.querySelector(".js-edge")}get sampling_slider(){return this.el.querySelector(".js-spacing")}get colormap_selector(){return this.el.querySelector(".js-color-preset")}_connect_js_controls(){const{el:e}=this._controllerWidget.get("el");if(void 0!==e){e.querySelector(".js-button").addEventListener("click",()=>this.model.controller_expanded=this._controllerWidget.getExpanded())}this.colormap_selector.addEventListener("change",()=>{this.model.colormap=this.colormap_selector.value}),this.model.colormap?this.model.properties.colormap.change.emit():this.model.colormap=this.colormap_selector.value,this.shadow_selector.addEventListener("change",()=>{this.model.shadow=!!Number(this.shadow_selector.value)}),(this.model.shadow=!!Number(this.shadow_selector.value))&&this.model.properties.shadow.change.emit(),this.sampling_slider.addEventListener("input",()=>{const e=Number(this.sampling_slider.value);Math.abs(this.model.sampling-e)>=.005&&(this.model.sampling=e)}),Math.abs(this.model.sampling-Number(this.shadow_selector.value))>=.005&&this.model.properties.sampling.change.emit(),this.edge_gradient_slider.addEventListener("input",()=>{const e=Number(this.edge_gradient_slider.value);Math.abs(this.model.edge_gradient-e)>=.005&&(this.model.edge_gradient=e)}),Math.abs(this.model.edge_gradient-Number(this.edge_gradient_slider.value))>=.005&&this.model.properties.edge_gradient.change.emit()}_plot_slices(){const e=this._vtk_image_data,t=r.vtkns.ImageSlice.newInstance(),i=r.vtkns.ImageSlice.newInstance(),s=r.vtkns.ImageSlice.newInstance(),n=r.vtkns.ImageMapper.newInstance(),o=r.vtkns.ImageMapper.newInstance(),a=r.vtkns.ImageMapper.newInstance();n.setInputData(e),n.setISlice(this.model.slice_i),t.setMapper(n),o.setInputData(e),o.setJSlice(this.model.slice_j),i.setMapper(o),a.setInputData(e),a.setKSlice(this.model.slice_k),s.setMapper(a);const l=r.vtkns.PiecewiseFunction.newInstance();l.removeAllPoints(),l.addPoint(0,1);const d=this.volume.getProperty().getRGBTransferFunction(0),c=t.getProperty();i.setProperty(c),s.setProperty(c),c.setRGBTransferFunction(d),c.setScalarOpacity(l);const _=this._vtk_renwin.getRenderer();_.addActor(t),_.addActor(i),_.addActor(s)}_plot_volume(){const e=this.vtk_image_data,t=r.vtkns.Volume.newInstance(),i=r.vtkns.VolumeMapper.newInstance();t.setMapper(i),i.setInputData(e);const s=(e.getPointData().getScalars()||e.getPointData().getArrays()[0]).getRange(),n=r.vtkns.ColorTransferFunction.newInstance();n.onModified(()=>this.model.mapper=r.vtkLutToMapper(n));const o=r.vtkns.PiecewiseFunction.newInstance(),a=.7*Math.sqrt(e.getSpacing().map(e=>e*e).reduce((e,t)=>e+t,0));i.setSampleDistance(a),t.getProperty().setRGBTransferFunction(0,n),t.getProperty().setScalarOpacity(0,o),t.getProperty().setInterpolationTypeToFastLinear(),t.getProperty().setScalarOpacityUnitDistance(0,r.vtkns.BoundingBox.getDiagonalLength(e.getBounds())/Math.max(…e.getDimensions())),t.getProperty().setGradientOpacityMinimumValue(0,0),t.getProperty().setGradientOpacityMaximumValue(0,.05*(s[1]-s[0])),t.getProperty().setShade(this.model.shadow),t.getProperty().setUseGradientOpacity(0,!0),t.getProperty().setGradientOpacityMinimumOpacity(0,0),t.getProperty().setGradientOpacityMaximumOpacity(0,1),t.getProperty().setAmbient(this.model.ambient),t.getProperty().setDiffuse(this.model.diffuse),t.getProperty().setSpecular(this.model.specular),t.getProperty().setSpecularPower(this.model.specular_power),this._vtk_renwin.getRenderer().addVolume(t)}_set_interpolation(e){"fast_linear"==e?(this.volume.getProperty().setInterpolationTypeToFastLinear(),this.image_actor_i.getProperty().setInterpolationTypeToLinear()):"linear"==e?(this.volume.getProperty().setInterpolationTypeToLinear(),this.image_actor_i.getProperty().setInterpolationTypeToLinear()):(this.volume.getProperty().setInterpolationTypeToNearest(),this.image_actor_i.getProperty().setInterpolationTypeToNearest())}_set_slices_visibility(e){this._vtk_renwin.getRenderer().getActors().map(t=>t.setVisibility(e))}_set_volume_visibility(e){this.volume.setVisibility(e)}}i.VTKVolumePlotView=o,o.__name__="VTKVolumePlotView";class a extends n.AbstractVTKPlot{constructor(e){super(e)}static init_VTKVolumePlot(){this.prototype.default_view=o,this.define({ambient:[s.Number,.2],colormap:[s.String],data:[s.Instance],diffuse:[s.Number,.7],display_slices:[s.Boolean,!1],display_volume:[s.Boolean,!0],edge_gradient:[s.Number,.2],interpolation:[s.Any,"fast_linear"],mapper:[s.Instance],render_background:[s.String,"#52576e"],rescale:[s.Boolean,!1],sampling:[s.Number,.4],shadow:[s.Boolean,!0],slice_i:[s.Int,0],slice_j:[s.Int,0],slice_k:[s.Int,0],specular:[s.Number,.3],specular_power:[s.Number,8],controller_expanded:[s.Boolean,!0]})}}i.VTKVolumePlot=a,a.__name__="VTKVolumePlot",a.init_VTKVolumePlot()},n”, ” "3ae7537200": function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t("tslib").__importStar(t("@bokehjs/core/properties")),n=t("@bokehjs/model"),a=t("2f3fd5db07"),c=t("6c442cdcb4");class r extends n.Model{constructor(t){super(t)}static init_VTKAxes(){this.define({origin:[e.Array],xticker:[e.Instance],yticker:[e.Instance],zticker:[e.Instance],digits:[e.Number,1],show_grid:[e.Boolean,!0],grid_opacity:[e.Number,.1],axes_opacity:[e.Number,1],fontsize:[e.Number,12]})}get xticks(){return this.xticker.ticks}get yticks(){return this.yticker.ticks}get zticks(){return this.zticker.ticks}get xlabels(){return this.xticker.labels?this.xticker.labels:this.xticks.map(t=>t.toFixed(this.digits))}get ylabels(){return this.yticker.labels?this.yticker.labels:this.yticks.map(t=>t.toFixed(this.digits))}get zlabels(){return this.zticker.labels?this.zticker.labels:this.zticks.map(t=>t.toFixed(this.digits))}_make_grid_lines(t,s,i){const e=[];for(let n=0;n<t-1;n++)for(let t=0;t<s-1;t++){const a=n*s+t+i,c=[5,a,n*s+t+1+i,(n+1)*s+t+1+i,(n+1)*s+t+i,a];e.push(c)}return e}_create_grid_axes(){const t=[];t.push(c.cartesian_product(this.xticks,this.yticks,[this.origin[2]])),t.push(c.cartesian_product([this.origin[0]],this.yticks,this.zticks)),t.push(c.cartesian_product(this.xticks,[this.origin[1]],this.zticks));const s=[];let i=0;s.push(this._make_grid_lines(this.xticks.length,this.yticks.length,i)),i+=this.xticks.length*this.yticks.length,s.push(this._make_grid_lines(this.yticks.length,this.zticks.length,i)),i+=this.yticks.length*this.zticks.length,s.push(this._make_grid_lines(this.xticks.length,this.zticks.length,i));const e=c.vtk({vtkClass:"vtkPolyData",points:{vtkClass:"vtkPoints",dataType:"Float32Array",numberOfComponents:3,values:t.flat(2)},lines:{vtkClass:"vtkCellArray",dataType:"Uint32Array",values:s.flat(2)}}),n=c.vtkns.Mapper.newInstance(),a=c.vtkns.Actor.newInstance();return n.setInputData(e),a.setMapper(n),a.getProperty().setOpacity(this.grid_opacity),a.setVisibility(this.show_grid),a}create_axes(t){const s=[this.xticks,this.yticks,this.zticks].map((t,s)=>{let i=null;switch(s){case 0:i=c.cartesian_product(t,[this.origin[1]],[this.origin[2]]);break;case 1:i=c.cartesian_product([this.origin[0]],t,[this.origin[2]]);break;case 2:i=c.cartesian_product([this.origin[0]],[this.origin[1]],t)}return i}).flat(2),i=c.vtk({vtkClass:"vtkPolyData",points:{vtkClass:"vtkPoints",dataType:"Float32Array",numberOfComponents:3,values:s},lines:{vtkClass:"vtkCellArray",dataType:"Uint32Array",values:[2,0,this.xticks.length-1,2,this.xticks.length,this.xticks.length+this.yticks.length-1,2,this.xticks.length+this.yticks.length,this.xticks.length+this.yticks.length+this.zticks.length-1]}}),e=c.vtkns.PixelSpaceCallbackMapper.newInstance();e.setInputData(i),e.setUseZValues(!0),e.setCallback((s,i,n)=>{const c=t.getContext("2d");if(c){const r={height:t.clientHeight*window.devicePixelRatio,width:t.clientWidth*window.devicePixelRatio},h=e.getInputData().getPoints(),l=i.getViewMatrix();a.mat4.transpose(l,l);const o=i.getProjectionMatrix(n,-1,1);a.mat4.transpose(o,o),c.clearRect(0,0,r.width,r.height),s.forEach((t,s)=>{const i=h.getPoint(s),e=a.vec3.fromValues(i[0],i[1],i[2]);if(a.vec3.transformMat4(e,e,l),e[2]+=.05,a.vec3.transformMat4(e,e,o),e[2]-.001<t[3]){let i;c.font="30px serif",c.textAlign="center",c.textBaseline="alphabetic",c.fillText(".",t[0],r.height-t[1]+2),c.font=this.fontsize*window.devicePixelRatio+"px serif",c.textAlign="right",c.textBaseline="top",i=s<this.xticks.length?this.xlabels[s]:s>=this.xticks.length&&s<this.xticks.length+this.yticks.length?this.ylabels[s-this.xticks.length]:this.zlabels[s-(this.xticks.length+this.yticks.length)],c.fillText(""+i,t[0],r.height-t[1])}})}});const n=c.vtkns.Actor.newInstance();n.setMapper(e);const r=c.vtkns.Mapper.newInstance();r.setInputData(i);const h=c.vtkns.Actor.newInstance();h.setMapper(r),h.getProperty().setOpacity(this.axes_opacity);return{psActor:n,axesActor:h,gridActor:this._create_grid_axes()}}}i.VTKAxes=r,r.__name__="VTKAxes",r.__module__="panel.models.vtk",r.init_VTKAxes()},n”, ” "2f3fd5db07": function _(t,c,a){Object.defineProperty(a,"__esModule",{value:!0});const o=t("tslib"),r=o.__importStar(t("68ca94c15c"));a.glMatrix=r;const _=o.__importStar(t("7c0b8e6048"));a.mat2=_;const e=o.__importStar(t("dc03f0a621"));a.mat2d=e;const i=o.__importStar(t("0285c50a7e"));a.mat3=i;const m=o.__importStar(t("a427635f32"));a.mat4=m;const n=o.__importStar(t("eb06fc032a"));a.quat=n;const s=o.__importStar(t("277615c682"));a.quat2=s;const p=o.__importStar(t("c56d9ff837"));a.vec2=p;const S=o.__importStar(t("2c5eb22089"));a.vec3=S;const f=o.__importStar(t("c1aa33d719"));a.vec4=f},n”, ” "68ca94c15c": function _(t,a,r){Object.defineProperty(r,"__esModule",{value:!0}),r.EPSILON=1e-6,r.ARRAY_TYPE="undefined"!=typeof Float32Array?Float32Array:Array,r.RANDOM=Math.random,r.setMatrixArrayType=function(t){r.ARRAY_TYPE=t};var n=Math.PI/180;r.toRadian=function(t){return t*n},r.equals=function(t,a){return Math.abs(t-a)<=r.EPSILON*Math.max(1,Math.abs(t),Math.abs(a))},Math.hypot||(Math.hypot=function(){for(var t=0,a=arguments.length;a–;)t+=arguments[a]*arguments[a];return Math.sqrt(t)})},n”, ” "7c0b8e6048": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=r[0],i=r[1],f=r[2],s=r[3];return t[0]=a*c+e*i,t[1]=u*c+o*i,t[2]=a*f+e*s,t[3]=u*f+o*s,t}function e(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}r.create=function(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0),t[0]=1,t[3]=1,t},r.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},r.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t},r.fromValues=function(t,n,r,u){var e=new a.ARRAY_TYPE(4);return e[0]=t,e[1]=n,e[2]=r,e[3]=u,e},r.set=function(t,n,r,a,u){return t[0]=n,t[1]=r,t[2]=a,t[3]=u,t},r.transpose=function(t,n){if(t===n){var r=n[1];t[1]=n[2],t[2]=r}else t[0]=n[0],t[1]=n[2],t[2]=n[1],t[3]=n[3];return t},r.invert=function(t,n){var r=n[0],a=n[1],u=n[2],e=n[3],o=r*e-u*a;return o?(o=1/o,t[0]=e*o,t[1]=-a*o,t[2]=-u*o,t[3]=r*o,t):null},r.adjoint=function(t,n){var r=n[0];return t[0]=n[3],t[1]=-n[1],t[2]=-n[2],t[3]=r,t},r.determinant=function(t){return t[0]*t[3]-t[2]*t[1]},r.multiply=u,r.rotate=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=Math.sin(r),i=Math.cos(r);return t[0]=a*i+e*c,t[1]=u*i+o*c,t[2]=a*-c+e*i,t[3]=u*-c+o*i,t},r.scale=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=r[0],i=r[1];return t[0]=a*c,t[1]=u*c,t[2]=e*i,t[3]=o*i,t},r.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=-r,t[3]=a,t},r.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t},r.str=function(t){return"mat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},r.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3])},r.LDU=function(t,n,r,a){return t[2]=a[2]/a[0],r[0]=a[0],r[1]=a[1],r[3]=a[3]-t[2]*r[1],[t,n,r]},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},r.subtract=e,r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=t[3],c=n[0],i=n[1],f=n[2],s=n[3];return Math.abs(r-c)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(c))&&Math.abs(u-i)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(i))&&Math.abs(e-f)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(f))&&Math.abs(o-s)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(s))},r.multiplyScalar=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},r.multiplyScalarAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},r.mul=u,r.sub=e},n”, ” "dc03f0a621": function _(t,n,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function u(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1],h=a[2],M=a[3],b=a[4],l=a[5];return t[0]=r*s+e*f,t[1]=u*s+o*f,t[2]=r*h+e*M,t[3]=u*h+o*M,t[4]=r*b+e*l+c,t[5]=u*b+o*l+i,t}function e(t,n,a){return t[0]=n[0]-a[0],t[1]=n[1]-a[1],t[2]=n[2]-a[2],t[3]=n[3]-a[3],t[4]=n[4]-a[4],t[5]=n[5]-a[5],t}a.create=function(){var t=new r.ARRAY_TYPE(6);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[4]=0,t[5]=0),t[0]=1,t[3]=1,t},a.clone=function(t){var n=new r.ARRAY_TYPE(6);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n},a.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t},a.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t},a.fromValues=function(t,n,a,u,e,o){var c=new r.ARRAY_TYPE(6);return c[0]=t,c[1]=n,c[2]=a,c[3]=u,c[4]=e,c[5]=o,c},a.set=function(t,n,a,r,u,e,o){return t[0]=n,t[1]=a,t[2]=r,t[3]=u,t[4]=e,t[5]=o,t},a.invert=function(t,n){var a=n[0],r=n[1],u=n[2],e=n[3],o=n[4],c=n[5],i=a*e-r*u;return i?(i=1/i,t[0]=e*i,t[1]=-r*i,t[2]=-u*i,t[3]=a*i,t[4]=(u*c-e*o)*i,t[5]=(r*o-a*c)*i,t):null},a.determinant=function(t){return t[0]*t[3]-t[1]*t[2]},a.multiply=u,a.rotate=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=Math.sin(a),f=Math.cos(a);return t[0]=r*f+e*s,t[1]=u*f+o*s,t[2]=r*-s+e*f,t[3]=u*-s+o*f,t[4]=c,t[5]=i,t},a.scale=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1];return t[0]=r*s,t[1]=u*s,t[2]=e*f,t[3]=o*f,t[4]=c,t[5]=i,t},a.translate=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1];return t[0]=r,t[1]=u,t[2]=e,t[3]=o,t[4]=r*s+e*f+c,t[5]=u*s+o*f+i,t},a.fromRotation=function(t,n){var a=Math.sin(n),r=Math.cos(n);return t[0]=r,t[1]=a,t[2]=-a,t[3]=r,t[4]=0,t[5]=0,t},a.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t[4]=0,t[5]=0,t},a.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=n[0],t[5]=n[1],t},a.str=function(t){return"mat2d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+")"},a.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],1)},a.add=function(t,n,a){return t[0]=n[0]+a[0],t[1]=n[1]+a[1],t[2]=n[2]+a[2],t[3]=n[3]+a[3],t[4]=n[4]+a[4],t[5]=n[5]+a[5],t},a.subtract=e,a.multiplyScalar=function(t,n,a){return t[0]=n[0]*a,t[1]=n[1]*a,t[2]=n[2]*a,t[3]=n[3]*a,t[4]=n[4]*a,t[5]=n[5]*a,t},a.multiplyScalarAndAdd=function(t,n,a,r){return t[0]=n[0]+a[0]*r,t[1]=n[1]+a[1]*r,t[2]=n[2]+a[2]*r,t[3]=n[3]+a[3]*r,t[4]=n[4]+a[4]*r,t[5]=n[5]+a[5]*r,t},a.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]&&t[4]===n[4]&&t[5]===n[5]},a.equals=function(t,n){var a=t[0],u=t[1],e=t[2],o=t[3],c=t[4],i=t[5],s=n[0],f=n[1],h=n[2],M=n[3],b=n[4],l=n[5];return Math.abs(a-s)<=r.EPSILON*Math.max(1,Math.abs(a),Math.abs(s))&&Math.abs(u-f)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(f))&&Math.abs(e-h)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(h))&&Math.abs(o-M)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(M))&&Math.abs(c-b)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(b))&&Math.abs(i-l)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(l))},a.mul=u,a.sub=e},n”, ” "0285c50a7e": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function u(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=n[0],b=n[1],l=n[2],m=n[3],v=n[4],E=n[5],P=n[6],S=n[7],d=n[8];return t[0]=f*r+b*e+l*s,t[1]=f*u+b*i+l*M,t[2]=f*o+b*c+l*h,t[3]=m*r+v*e+E*s,t[4]=m*u+v*i+E*M,t[5]=m*o+v*c+E*h,t[6]=P*r+S*e+d*s,t[7]=P*u+S*i+d*M,t[8]=P*o+S*c+d*h,t}function o(t,a,n){return t[0]=a[0]-n[0],t[1]=a[1]-n[1],t[2]=a[2]-n[2],t[3]=a[3]-n[3],t[4]=a[4]-n[4],t[5]=a[5]-n[5],t[6]=a[6]-n[6],t[7]=a[7]-n[7],t[8]=a[8]-n[8],t}n.create=function(){var t=new r.ARRAY_TYPE(9);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t},n.fromMat4=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[4],t[4]=a[5],t[5]=a[6],t[6]=a[8],t[7]=a[9],t[8]=a[10],t},n.clone=function(t){var a=new r.ARRAY_TYPE(9);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a[8]=t[8],a},n.copy=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t},n.fromValues=function(t,a,n,u,o,e,i,c,s){var M=new r.ARRAY_TYPE(9);return M[0]=t,M[1]=a,M[2]=n,M[3]=u,M[4]=o,M[5]=e,M[6]=i,M[7]=c,M[8]=s,M},n.set=function(t,a,n,r,u,o,e,i,c,s){return t[0]=a,t[1]=n,t[2]=r,t[3]=u,t[4]=o,t[5]=e,t[6]=i,t[7]=c,t[8]=s,t},n.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.transpose=function(t,a){if(t===a){var n=a[1],r=a[2],u=a[5];t[1]=a[3],t[2]=a[6],t[3]=n,t[5]=a[7],t[6]=r,t[7]=u}else t[0]=a[0],t[1]=a[3],t[2]=a[6],t[3]=a[1],t[4]=a[4],t[5]=a[7],t[6]=a[2],t[7]=a[5],t[8]=a[8];return t},n.invert=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8],h=M*e-i*s,f=-M*o+i*c,b=s*o-e*c,l=n*h+r*f+u*b;return l?(l=1/l,t[0]=h*l,t[1]=(-M*r+u*s)*l,t[2]=(i*r-u*e)*l,t[3]=f*l,t[4]=(M*n-u*c)*l,t[5]=(-i*n+u*o)*l,t[6]=b*l,t[7]=(-s*n+r*c)*l,t[8]=(e*n-r*o)*l,t):null},n.adjoint=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8];return t[0]=e*M-i*s,t[1]=u*s-r*M,t[2]=r*i-u*e,t[3]=i*c-o*M,t[4]=n*M-u*c,t[5]=u*o-n*i,t[6]=o*s-e*c,t[7]=r*c-n*s,t[8]=n*e-r*o,t},n.determinant=function(t){var a=t[0],n=t[1],r=t[2],u=t[3],o=t[4],e=t[5],i=t[6],c=t[7],s=t[8];return a*(s*o-e*c)+n*(-s*u+e*i)+r*(c*u-o*i)},n.multiply=u,n.translate=function(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=n[0],b=n[1];return t[0]=r,t[1]=u,t[2]=o,t[3]=e,t[4]=i,t[5]=c,t[6]=f*r+b*e+s,t[7]=f*u+b*i+M,t[8]=f*o+b*c+h,t},n.rotate=function(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=Math.sin(n),b=Math.cos(n);return t[0]=b*r+f*e,t[1]=b*u+f*i,t[2]=b*o+f*c,t[3]=b*e-f*r,t[4]=b*i-f*u,t[5]=b*c-f*o,t[6]=s,t[7]=M,t[8]=h,t},n.scale=function(t,a,n){var r=n[0],u=n[1];return t[0]=r*a[0],t[1]=r*a[1],t[2]=r*a[2],t[3]=u*a[3],t[4]=u*a[4],t[5]=u*a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t},n.fromTranslation=function(t,a){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=a[0],t[7]=a[1],t[8]=1,t},n.fromRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=n,t[2]=0,t[3]=-n,t[4]=r,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromScaling=function(t,a){return t[0]=a[0],t[1]=0,t[2]=0,t[3]=0,t[4]=a[1],t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromMat2d=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=0,t[3]=a[2],t[4]=a[3],t[5]=0,t[6]=a[4],t[7]=a[5],t[8]=1,t},n.fromQuat=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=n+n,i=r+r,c=u+u,s=n*e,M=r*e,h=r*i,f=u*e,b=u*i,l=u*c,m=o*e,v=o*i,E=o*c;return t[0]=1-h-l,t[3]=M-E,t[6]=f+v,t[1]=M+E,t[4]=1-s-l,t[7]=b-m,t[2]=f-v,t[5]=b+m,t[8]=1-s-h,t},n.normalFromMat4=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8],h=a[9],f=a[10],b=a[11],l=a[12],m=a[13],v=a[14],E=a[15],P=n*i-r*e,S=n*c-u*e,d=n*s-o*e,A=r*c-u*i,x=r*s-o*i,O=u*s-o*c,p=M*m-h*l,I=M*v-f*l,L=M*E-b*l,N=h*v-f*m,R=h*E-b*m,_=f*E-b*v,y=P*_-S*R+d*N+A*L-x*I+O*p;return y?(y=1/y,t[0]=(i*_-c*R+s*N)*y,t[1]=(c*L-e*_-s*I)*y,t[2]=(e*R-i*L+s*p)*y,t[3]=(u*R-r*_-o*N)*y,t[4]=(n*_-u*L+o*I)*y,t[5]=(r*L-n*R-o*p)*y,t[6]=(m*O-v*x+E*A)*y,t[7]=(v*d-l*O-E*S)*y,t[8]=(l*x-m*d+E*P)*y,t):null},n.projection=function(t,a,n){return t[0]=2/a,t[1]=0,t[2]=0,t[3]=0,t[4]=-2/n,t[5]=0,t[6]=-1,t[7]=1,t[8]=1,t},n.str=function(t){return"mat3("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+")"},n.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8])},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t[8]=a[8]+n[8],t},n.subtract=o,n.multiplyScalar=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t[8]=a[8]*n,t},n.multiplyScalarAndAdd=function(t,a,n,r){return t[0]=a[0]+n[0]*r,t[1]=a[1]+n[1]*r,t[2]=a[2]+n[2]*r,t[3]=a[3]+n[3]*r,t[4]=a[4]+n[4]*r,t[5]=a[5]+n[5]*r,t[6]=a[6]+n[6]*r,t[7]=a[7]+n[7]*r,t[8]=a[8]+n[8]*r,t},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]&&t[8]===a[8]},n.equals=function(t,a){var n=t[0],u=t[1],o=t[2],e=t[3],i=t[4],c=t[5],s=t[6],M=t[7],h=t[8],f=a[0],b=a[1],l=a[2],m=a[3],v=a[4],E=a[5],P=a[6],S=a[7],d=a[8];return Math.abs(n-f)<=r.EPSILON*Math.max(1,Math.abs(n),Math.abs(f))&&Math.abs(u-b)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(b))&&Math.abs(o-l)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(l))&&Math.abs(e-m)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(m))&&Math.abs(i-v)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(v))&&Math.abs(c-E)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(E))&&Math.abs(s-P)<=r.EPSILON*Math.max(1,Math.abs(s),Math.abs(P))&&Math.abs(M-S)<=r.EPSILON*Math.max(1,Math.abs(M),Math.abs(S))&&Math.abs(h-d)<=r.EPSILON*Math.max(1,Math.abs(h),Math.abs(d))},n.mul=u,n.sub=o},n”, ” "a427635f32": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function h(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function o(t,a,n){var r=a[0],h=a[1],o=a[2],u=a[3],M=a[4],e=a[5],s=a[6],i=a[7],c=a[8],f=a[9],b=a[10],l=a[11],v=a[12],m=a[13],P=a[14],E=a[15],S=n[0],I=n[1],O=n[2],p=n[3];return t[0]=S*r+I*M+O*c+p*v,t[1]=S*h+I*e+O*f+p*m,t[2]=S*o+I*s+O*b+p*P,t[3]=S*u+I*i+O*l+p*E,S=n[4],I=n[5],O=n[6],p=n[7],t[4]=S*r+I*M+O*c+p*v,t[5]=S*h+I*e+O*f+p*m,t[6]=S*o+I*s+O*b+p*P,t[7]=S*u+I*i+O*l+p*E,S=n[8],I=n[9],O=n[10],p=n[11],t[8]=S*r+I*M+O*c+p*v,t[9]=S*h+I*e+O*f+p*m,t[10]=S*o+I*s+O*b+p*P,t[11]=S*u+I*i+O*l+p*E,S=n[12],I=n[13],O=n[14],p=n[15],t[12]=S*r+I*M+O*c+p*v,t[13]=S*h+I*e+O*f+p*m,t[14]=S*o+I*s+O*b+p*P,t[15]=S*u+I*i+O*l+p*E,t}function u(t,a,n){var r=a[0],h=a[1],o=a[2],u=a[3],M=r+r,e=h+h,s=o+o,i=r*M,c=r*e,f=r*s,b=h*e,l=h*s,v=o*s,m=u*M,P=u*e,E=u*s;return t[0]=1-(b+v),t[1]=c+E,t[2]=f-P,t[3]=0,t[4]=c-E,t[5]=1-(i+v),t[6]=l+m,t[7]=0,t[8]=f+P,t[9]=l-m,t[10]=1-(i+b),t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t}function M(t,a){var n=a[0],r=a[1],h=a[2],o=a[4],u=a[5],M=a[6],e=a[8],s=a[9],i=a[10];return t[0]=Math.hypot(n,r,h),t[1]=Math.hypot(o,u,M),t[2]=Math.hypot(e,s,i),t}function e(t,a,n){return t[0]=a[0]-n[0],t[1]=a[1]-n[1],t[2]=a[2]-n[2],t[3]=a[3]-n[3],t[4]=a[4]-n[4],t[5]=a[5]-n[5],t[6]=a[6]-n[6],t[7]=a[7]-n[7],t[8]=a[8]-n[8],t[9]=a[9]-n[9],t[10]=a[10]-n[10],t[11]=a[11]-n[11],t[12]=a[12]-n[12],t[13]=a[13]-n[13],t[14]=a[14]-n[14],t[15]=a[15]-n[15],t}n.create=function(){var t=new r.ARRAY_TYPE(16);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t},n.clone=function(t){var a=new r.ARRAY_TYPE(16);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a[8]=t[8],a[9]=t[9],a[10]=t[10],a[11]=t[11],a[12]=t[12],a[13]=t[13],a[14]=t[14],a[15]=t[15],a},n.copy=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t[9]=a[9],t[10]=a[10],t[11]=a[11],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15],t},n.fromValues=function(t,a,n,h,o,u,M,e,s,i,c,f,b,l,v,m){var P=new r.ARRAY_TYPE(16);return P[0]=t,P[1]=a,P[2]=n,P[3]=h,P[4]=o,P[5]=u,P[6]=M,P[7]=e,P[8]=s,P[9]=i,P[10]=c,P[11]=f,P[12]=b,P[13]=l,P[14]=v,P[15]=m,P},n.set=function(t,a,n,r,h,o,u,M,e,s,i,c,f,b,l,v,m){return t[0]=a,t[1]=n,t[2]=r,t[3]=h,t[4]=o,t[5]=u,t[6]=M,t[7]=e,t[8]=s,t[9]=i,t[10]=c,t[11]=f,t[12]=b,t[13]=l,t[14]=v,t[15]=m,t},n.identity=h,n.transpose=function(t,a){if(t===a){var n=a[1],r=a[2],h=a[3],o=a[6],u=a[7],M=a[11];t[1]=a[4],t[2]=a[8],t[3]=a[12],t[4]=n,t[6]=a[9],t[7]=a[13],t[8]=r,t[9]=o,t[11]=a[14],t[12]=h,t[13]=u,t[14]=M}else t[0]=a[0],t[1]=a[4],t[2]=a[8],t[3]=a[12],t[4]=a[1],t[5]=a[5],t[6]=a[9],t[7]=a[13],t[8]=a[2],t[9]=a[6],t[10]=a[10],t[11]=a[14],t[12]=a[3],t[13]=a[7],t[14]=a[11],t[15]=a[15];return t},n.invert=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=a[4],M=a[5],e=a[6],s=a[7],i=a[8],c=a[9],f=a[10],b=a[11],l=a[12],v=a[13],m=a[14],P=a[15],E=n*M-r*u,S=n*e-h*u,I=n*s-o*u,O=r*e-h*M,p=r*s-o*M,L=h*s-o*e,N=i*v-c*l,R=i*m-f*l,x=i*P-b*l,y=c*m-f*v,A=c*P-b*v,Y=f*P-b*m,d=E*Y-S*A+I*y+O*x-p*R+L*N;return d?(d=1/d,t[0]=(M*Y-e*A+s*y)*d,t[1]=(h*A-r*Y-o*y)*d,t[2]=(v*L-m*p+P*O)*d,t[3]=(f*p-c*L-b*O)*d,t[4]=(e*x-u*Y-s*R)*d,t[5]=(n*Y-h*x+o*R)*d,t[6]=(m*I-l*L-P*S)*d,t[7]=(i*L-f*I+b*S)*d,t[8]=(u*A-M*x+s*N)*d,t[9]=(r*x-n*A-o*N)*d,t[10]=(l*p-v*I+P*E)*d,t[11]=(c*I-i*p-b*E)*d,t[12]=(M*R-u*y-e*N)*d,t[13]=(n*y-r*R+h*N)*d,t[14]=(v*S-l*O-m*E)*d,t[15]=(i*O-c*S+f*E)*d,t):null},n.adjoint=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=a[4],M=a[5],e=a[6],s=a[7],i=a[8],c=a[9],f=a[10],b=a[11],l=a[12],v=a[13],m=a[14],P=a[15];return t[0]=M*(f*P-b*m)-c*(e*P-s*m)+v*(e*b-s*f),t[1]=-(r*(f*P-b*m)-c*(h*P-o*m)+v*(h*b-o*f)),t[2]=r*(e*P-s*m)-M*(h*P-o*m)+v*(h*s-o*e),t[3]=-(r*(e*b-s*f)-M*(h*b-o*f)+c*(h*s-o*e)),t[4]=-(u*(f*P-b*m)-i*(e*P-s*m)+l*(e*b-s*f)),t[5]=n*(f*P-b*m)-i*(h*P-o*m)+l*(h*b-o*f),t[6]=-(n*(e*P-s*m)-u*(h*P-o*m)+l*(h*s-o*e)),t[7]=n*(e*b-s*f)-u*(h*b-o*f)+i*(h*s-o*e),t[8]=u*(c*P-b*v)-i*(M*P-s*v)+l*(M*b-s*c),t[9]=-(n*(c*P-b*v)-i*(r*P-o*v)+l*(r*b-o*c)),t[10]=n*(M*P-s*v)-u*(r*P-o*v)+l*(r*s-o*M),t[11]=-(n*(M*b-s*c)-u*(r*b-o*c)+i*(r*s-o*M)),t[12]=-(u*(c*m-f*v)-i*(M*m-e*v)+l*(M*f-e*c)),t[13]=n*(c*m-f*v)-i*(r*m-h*v)+l*(r*f-h*c),t[14]=-(n*(M*m-e*v)-u*(r*m-h*v)+l*(r*e-h*M)),t[15]=n*(M*f-e*c)-u*(r*f-h*c)+i*(r*e-h*M),t},n.determinant=function(t){var a=t[0],n=t[1],r=t[2],h=t[3],o=t[4],u=t[5],M=t[6],e=t[7],s=t[8],i=t[9],c=t[10],f=t[11],b=t[12],l=t[13],v=t[14],m=t[15];return(a*u-n*o)*(c*m-f*v)-(a*M-r*o)*(i*m-f*l)+(a*e-h*o)*(i*v-c*l)+(n*M-r*u)*(s*m-f*b)-(n*e-h*u)*(s*v-c*b)+(r*e-h*M)*(s*l-i*b)},n.multiply=o,n.translate=function(t,a,n){var r,h,o,u,M,e,s,i,c,f,b,l,v=n[0],m=n[1],P=n[2];return a===t?(t[12]=a[0]*v+a[4]*m+a[8]*P+a[12],t[13]=a[1]*v+a[5]*m+a[9]*P+a[13],t[14]=a[2]*v+a[6]*m+a[10]*P+a[14],t[15]=a[3]*v+a[7]*m+a[11]*P+a[15]):(r=a[0],h=a[1],o=a[2],u=a[3],M=a[4],e=a[5],s=a[6],i=a[7],c=a[8],f=a[9],b=a[10],l=a[11],t[0]=r,t[1]=h,t[2]=o,t[3]=u,t[4]=M,t[5]=e,t[6]=s,t[7]=i,t[8]=c,t[9]=f,t[10]=b,t[11]=l,t[12]=r*v+M*m+c*P+a[12],t[13]=h*v+e*m+f*P+a[13],t[14]=o*v+s*m+b*P+a[14],t[15]=u*v+i*m+l*P+a[15]),t},n.scale=function(t,a,n){var r=n[0],h=n[1],o=n[2];return t[0]=a[0]*r,t[1]=a[1]*r,t[2]=a[2]*r,t[3]=a[3]*r,t[4]=a[4]*h,t[5]=a[5]*h,t[6]=a[6]*h,t[7]=a[7]*h,t[8]=a[8]*o,t[9]=a[9]*o,t[10]=a[10]*o,t[11]=a[11]*o,t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15],t},n.rotate=function(t,a,n,h){var o,u,M,e,s,i,c,f,b,l,v,m,P,E,S,I,O,p,L,N,R,x,y,A,Y=h[0],d=h[1],g=h[2],T=Math.hypot(Y,d,g);return T<r.EPSILON?null:(Y*=T=1/T,d*=T,g*=T,o=Math.sin(n),M=1-(u=Math.cos(n)),e=a[0],s=a[1],i=a[2],c=a[3],f=a[4],b=a[5],l=a[6],v=a[7],m=a[8],P=a[9],E=a[10],S=a[11],I=Y*Y*M+u,O=d*Y*M+g*o,p=g*Y*M-d*o,L=Y*d*M-g*o,N=d*d*M+u,R=g*d*M+Y*o,x=Y*g*M+d*o,y=d*g*M-Y*o,A=g*g*M+u,t[0]=e*I+f*O+m*p,t[1]=s*I+b*O+P*p,t[2]=i*I+l*O+E*p,t[3]=c*I+v*O+S*p,t[4]=e*L+f*N+m*R,t[5]=s*L+b*N+P*R,t[6]=i*L+l*N+E*R,t[7]=c*L+v*N+S*R,t[8]=e*x+f*y+m*A,t[9]=s*x+b*y+P*A,t[10]=i*x+l*y+E*A,t[11]=c*x+v*y+S*A,a!==t&&(t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t)},n.rotateX=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[4],u=a[5],M=a[6],e=a[7],s=a[8],i=a[9],c=a[10],f=a[11];return a!==t&&(t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[4]=o*h+s*r,t[5]=u*h+i*r,t[6]=M*h+c*r,t[7]=e*h+f*r,t[8]=s*h-o*r,t[9]=i*h-u*r,t[10]=c*h-M*r,t[11]=f*h-e*r,t},n.rotateY=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[0],u=a[1],M=a[2],e=a[3],s=a[8],i=a[9],c=a[10],f=a[11];return a!==t&&(t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[0]=o*h-s*r,t[1]=u*h-i*r,t[2]=M*h-c*r,t[3]=e*h-f*r,t[8]=o*r+s*h,t[9]=u*r+i*h,t[10]=M*r+c*h,t[11]=e*r+f*h,t},n.rotateZ=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[0],u=a[1],M=a[2],e=a[3],s=a[4],i=a[5],c=a[6],f=a[7];return a!==t&&(t[8]=a[8],t[9]=a[9],t[10]=a[10],t[11]=a[11],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[0]=o*h+s*r,t[1]=u*h+i*r,t[2]=M*h+c*r,t[3]=e*h+f*r,t[4]=s*h-o*r,t[5]=i*h-u*r,t[6]=c*h-M*r,t[7]=f*h-e*r,t},n.fromTranslation=function(t,a){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=a[0],t[13]=a[1],t[14]=a[2],t[15]=1,t},n.fromScaling=function(t,a){return t[0]=a[0],t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=a[1],t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=a[2],t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotation=function(t,a,n){var h,o,u,M=n[0],e=n[1],s=n[2],i=Math.hypot(M,e,s);return i<r.EPSILON?null:(M*=i=1/i,e*=i,s*=i,h=Math.sin(a),u=1-(o=Math.cos(a)),t[0]=M*M*u+o,t[1]=e*M*u+s*h,t[2]=s*M*u-e*h,t[3]=0,t[4]=M*e*u-s*h,t[5]=e*e*u+o,t[6]=s*e*u+M*h,t[7]=0,t[8]=M*s*u+e*h,t[9]=e*s*u-M*h,t[10]=s*s*u+o,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t)},n.fromXRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=r,t[6]=n,t[7]=0,t[8]=0,t[9]=-n,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromYRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=0,t[2]=-n,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=n,t[9]=0,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromZRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=n,t[2]=0,t[3]=0,t[4]=-n,t[5]=r,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotationTranslation=u,n.fromQuat2=function(t,a){var n=new r.ARRAY_TYPE(3),h=-a[0],o=-a[1],M=-a[2],e=a[3],s=a[4],i=a[5],c=a[6],f=a[7],b=h*h+o*o+M*M+e*e;return b>0?(n[0]=2*(s*e+f*h+i*M-c*o)/b,n[1]=2*(i*e+f*o+c*h-s*M)/b,n[2]=2*(c*e+f*M+s*o-i*h)/b):(n[0]=2*(s*e+f*h+i*M-c*o),n[1]=2*(i*e+f*o+c*h-s*M),n[2]=2*(c*e+f*M+s*o-i*h)),u(t,a,n),t},n.getTranslation=function(t,a){return t[0]=a[12],t[1]=a[13],t[2]=a[14],t},n.getScaling=M,n.getRotation=function(t,a){var n=new r.ARRAY_TYPE(3);M(n,a);var h=1/n[0],o=1/n[1],u=1/n[2],e=a[0]*h,s=a[1]*o,i=a[2]*u,c=a[4]*h,f=a[5]*o,b=a[6]*u,l=a[8]*h,v=a[9]*o,m=a[10]*u,P=e+f+m,E=0;return P>0?(E=2*Math.sqrt(P+1),t[3]=.25*E,t[0]=(b-v)/E,t[1]=(l-i)/E,t[2]=(s-c)/E):e>f&&e>m?(E=2*Math.sqrt(1+e-f-m),t[3]=(b-v)/E,t[0]=.25*E,t[1]=(s+c)/E,t[2]=(l+i)/E):f>m?(E=2*Math.sqrt(1+f-e-m),t[3]=(l-i)/E,t[0]=(s+c)/E,t[1]=.25*E,t[2]=(b+v)/E):(E=2*Math.sqrt(1+m-e-f),t[3]=(s-c)/E,t[0]=(l+i)/E,t[1]=(b+v)/E,t[2]=.25*E),t},n.fromRotationTranslationScale=function(t,a,n,r){var h=a[0],o=a[1],u=a[2],M=a[3],e=h+h,s=o+o,i=u+u,c=h*e,f=h*s,b=h*i,l=o*s,v=o*i,m=u*i,P=M*e,E=M*s,S=M*i,I=r[0],O=r[1],p=r[2];return t[0]=(1-(l+m))*I,t[1]=(f+S)*I,t[2]=(b-E)*I,t[3]=0,t[4]=(f-S)*O,t[5]=(1-(c+m))*O,t[6]=(v+P)*O,t[7]=0,t[8]=(b+E)*p,t[9]=(v-P)*p,t[10]=(1-(c+l))*p,t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t},n.fromRotationTranslationScaleOrigin=function(t,a,n,r,h){var o=a[0],u=a[1],M=a[2],e=a[3],s=o+o,i=u+u,c=M+M,f=o*s,b=o*i,l=o*c,v=u*i,m=u*c,P=M*c,E=e*s,S=e*i,I=e*c,O=r[0],p=r[1],L=r[2],N=h[0],R=h[1],x=h[2],y=(1-(v+P))*O,A=(b+I)*O,Y=(l-S)*O,d=(b-I)*p,g=(1-(f+P))*p,T=(m+E)*p,_=(l+S)*L,q=(m-E)*L,w=(1-(f+v))*L;return t[0]=y,t[1]=A,t[2]=Y,t[3]=0,t[4]=d,t[5]=g,t[6]=T,t[7]=0,t[8]=_,t[9]=q,t[10]=w,t[11]=0,t[12]=n[0]+N-(y*N+d*R+_*x),t[13]=n[1]+R-(A*N+g*R+q*x),t[14]=n[2]+x-(Y*N+T*R+w*x),t[15]=1,t},n.fromQuat=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=n+n,M=r+r,e=h+h,s=n*u,i=r*u,c=r*M,f=h*u,b=h*M,l=h*e,v=o*u,m=o*M,P=o*e;return t[0]=1-c-l,t[1]=i+P,t[2]=f-m,t[3]=0,t[4]=i-P,t[5]=1-s-l,t[6]=b+v,t[7]=0,t[8]=f+m,t[9]=b-v,t[10]=1-s-c,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.frustum=function(t,a,n,r,h,o,u){var M=1/(n-a),e=1/(h-r),s=1/(o-u);return t[0]=2*o*M,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=2*o*e,t[6]=0,t[7]=0,t[8]=(n+a)*M,t[9]=(h+r)*e,t[10]=(u+o)*s,t[11]=-1,t[12]=0,t[13]=0,t[14]=u*o*2*s,t[15]=0,t},n.perspective=function(t,a,n,r,h){var o,u=1/Math.tan(a/2);return t[0]=u/n,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=u,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=h&&h!==1/0?(o=1/(r-h),t[10]=(h+r)*o,t[14]=2*h*r*o):(t[10]=-1,t[14]=-2*r),t},n.perspectiveFromFieldOfView=function(t,a,n,r){var h=Math.tan(a.upDegrees*Math.PI/180),o=Math.tan(a.downDegrees*Math.PI/180),u=Math.tan(a.leftDegrees*Math.PI/180),M=Math.tan(a.rightDegrees*Math.PI/180),e=2/(u+M),s=2/(h+o);return t[0]=e,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=s,t[6]=0,t[7]=0,t[8]=-(u-M)*e*.5,t[9]=(h-o)*s*.5,t[10]=r/(n-r),t[11]=-1,t[12]=0,t[13]=0,t[14]=r*n/(n-r),t[15]=0,t},n.ortho=function(t,a,n,r,h,o,u){var M=1/(a-n),e=1/(r-h),s=1/(o-u);return t[0]=-2*M,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*e,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*s,t[11]=0,t[12]=(a+n)*M,t[13]=(h+r)*e,t[14]=(u+o)*s,t[15]=1,t},n.lookAt=function(t,a,n,o){var u,M,e,s,i,c,f,b,l,v,m=a[0],P=a[1],E=a[2],S=o[0],I=o[1],O=o[2],p=n[0],L=n[1],N=n[2];return Math.abs(m-p)<r.EPSILON&&Math.abs(P-L)<r.EPSILON&&Math.abs(E-N)<r.EPSILON?h(t):(f=m-p,b=P-L,l=E-N,u=I*(l*=v=1/Math.hypot(f,b,l))-O*(b*=v),M=O*(f*=v)-S*l,e=S*b-I*f,(v=Math.hypot(u,M,e))?(u*=v=1/v,M*=v,e*=v):(u=0,M=0,e=0),s=b*e-l*M,i=l*u-f*e,c=f*M-b*u,(v=Math.hypot(s,i,c))?(s*=v=1/v,i*=v,c*=v):(s=0,i=0,c=0),t[0]=u,t[1]=s,t[2]=f,t[3]=0,t[4]=M,t[5]=i,t[6]=b,t[7]=0,t[8]=e,t[9]=c,t[10]=l,t[11]=0,t[12]=-(u*m+M*P+e*E),t[13]=-(s*m+i*P+c*E),t[14]=-(f*m+b*P+l*E),t[15]=1,t)},n.targetTo=function(t,a,n,r){var h=a[0],o=a[1],u=a[2],M=r[0],e=r[1],s=r[2],i=h-n[0],c=o-n[1],f=u-n[2],b=i*i+c*c+f*f;b>0&&(i*=b=1/Math.sqrt(b),c*=b,f*=b);var l=e*f-s*c,v=s*i-M*f,m=M*c-e*i;return(b=l*l+v*v+m*m)>0&&(l*=b=1/Math.sqrt(b),v*=b,m*=b),t[0]=l,t[1]=v,t[2]=m,t[3]=0,t[4]=c*m-f*v,t[5]=f*l-i*m,t[6]=i*v-c*l,t[7]=0,t[8]=i,t[9]=c,t[10]=f,t[11]=0,t[12]=h,t[13]=o,t[14]=u,t[15]=1,t},n.str=function(t){return"mat4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+", "+t[9]+", "+t[10]+", "+t[11]+", "+t[12]+", "+t[13]+", "+t[14]+", "+t[15]+")"},n.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8],t[9],t[10],t[11],t[12],t[13],t[14],t[15])},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t[8]=a[8]+n[8],t[9]=a[9]+n[9],t[10]=a[10]+n[10],t[11]=a[11]+n[11],t[12]=a[12]+n[12],t[13]=a[13]+n[13],t[14]=a[14]+n[14],t[15]=a[15]+n[15],t},n.subtract=e,n.multiplyScalar=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t[8]=a[8]*n,t[9]=a[9]*n,t[10]=a[10]*n,t[11]=a[11]*n,t[12]=a[12]*n,t[13]=a[13]*n,t[14]=a[14]*n,t[15]=a[15]*n,t},n.multiplyScalarAndAdd=function(t,a,n,r){return t[0]=a[0]+n[0]*r,t[1]=a[1]+n[1]*r,t[2]=a[2]+n[2]*r,t[3]=a[3]+n[3]*r,t[4]=a[4]+n[4]*r,t[5]=a[5]+n[5]*r,t[6]=a[6]+n[6]*r,t[7]=a[7]+n[7]*r,t[8]=a[8]+n[8]*r,t[9]=a[9]+n[9]*r,t[10]=a[10]+n[10]*r,t[11]=a[11]+n[11]*r,t[12]=a[12]+n[12]*r,t[13]=a[13]+n[13]*r,t[14]=a[14]+n[14]*r,t[15]=a[15]+n[15]*r,t},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]&&t[8]===a[8]&&t[9]===a[9]&&t[10]===a[10]&&t[11]===a[11]&&t[12]===a[12]&&t[13]===a[13]&&t[14]===a[14]&&t[15]===a[15]},n.equals=function(t,a){var n=t[0],h=t[1],o=t[2],u=t[3],M=t[4],e=t[5],s=t[6],i=t[7],c=t[8],f=t[9],b=t[10],l=t[11],v=t[12],m=t[13],P=t[14],E=t[15],S=a[0],I=a[1],O=a[2],p=a[3],L=a[4],N=a[5],R=a[6],x=a[7],y=a[8],A=a[9],Y=a[10],d=a[11],g=a[12],T=a[13],_=a[14],q=a[15];return Math.abs(n-S)<=r.EPSILON*Math.max(1,Math.abs(n),Math.abs(S))&&Math.abs(h-I)<=r.EPSILON*Math.max(1,Math.abs(h),Math.abs(I))&&Math.abs(o-O)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(O))&&Math.abs(u-p)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(p))&&Math.abs(M-L)<=r.EPSILON*Math.max(1,Math.abs(M),Math.abs(L))&&Math.abs(e-N)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(N))&&Math.abs(s-R)<=r.EPSILON*Math.max(1,Math.abs(s),Math.abs(R))&&Math.abs(i-x)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(x))&&Math.abs(c-y)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(y))&&Math.abs(f-A)<=r.EPSILON*Math.max(1,Math.abs(f),Math.abs(A))&&Math.abs(b-Y)<=r.EPSILON*Math.max(1,Math.abs(b),Math.abs(Y))&&Math.abs(l-d)<=r.EPSILON*Math.max(1,Math.abs(l),Math.abs(d))&&Math.abs(v-g)<=r.EPSILON*Math.max(1,Math.abs(v),Math.abs(g))&&Math.abs(m-T)<=r.EPSILON*Math.max(1,Math.abs(m),Math.abs(T))&&Math.abs(P-_)<=r.EPSILON*Math.max(1,Math.abs(P),Math.abs(_))&&Math.abs(E-q)<=r.EPSILON*Math.max(1,Math.abs(E),Math.abs(q))},n.mul=o,n.sub=e},n”, ” "eb06fc032a": function _(t,r,a){Object.defineProperty(a,"__esModule",{value:!0});const n=t("tslib"),e=n.__importStar(t("68ca94c15c")),o=n.__importStar(t("0285c50a7e")),s=n.__importStar(t("2c5eb22089")),u=n.__importStar(t("c1aa33d719"));function c(){var t=new e.ARRAY_TYPE(4);return e.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t[3]=1,t}function i(t,r,a){a*=.5;var n=Math.sin(a);return t[0]=n*r[0],t[1]=n*r[1],t[2]=n*r[2],t[3]=Math.cos(a),t}function h(t,r,a){var n=r[0],e=r[1],o=r[2],s=r[3],u=a[0],c=a[1],i=a[2],h=a[3];return t[0]=n*h+s*u+e*i-o*c,t[1]=e*h+s*c+o*u-n*i,t[2]=o*h+s*i+n*c-e*u,t[3]=s*h-n*u-e*c-o*i,t}function M(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=Math.sqrt(a*a+n*n+e*e),u=Math.exp(o),c=s>0?u*Math.sin(s)/s:0;return t[0]=a*c,t[1]=n*c,t[2]=e*c,t[3]=u*Math.cos(s),t}function l(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=Math.sqrt(a*a+n*n+e*e),u=s>0?Math.atan2(s,o)/s:0;return t[0]=a*u,t[1]=n*u,t[2]=e*u,t[3]=.5*Math.log(a*a+n*n+e*e+o*o),t}function f(t,r,a,n){var o,s,u,c,i,h=r[0],M=r[1],l=r[2],f=r[3],v=a[0],m=a[1],q=a[2],d=a[3];return(s=h*v+M*m+l*q+f*d)<0&&(s=-s,v=-v,m=-m,q=-q,d=-d),1-s>e.EPSILON?(o=Math.acos(s),u=Math.sin(o),c=Math.sin((1-n)*o)/u,i=Math.sin(n*o)/u):(c=1-n,i=n),t[0]=c*h+i*v,t[1]=c*M+i*m,t[2]=c*l+i*q,t[3]=c*f+i*d,t}function v(t,r){var a,n=r[0]+r[4]+r[8];if(n>0)a=Math.sqrt(n+1),t[3]=.5*a,a=.5/a,t[0]=(r[5]-r[7])*a,t[1]=(r[6]-r[2])*a,t[2]=(r[1]-r[3])*a;else{var e=0;r[4]>r[0]&&(e=1),r[8]>r[3*e+e]&&(e=2);var o=(e+1)%3,s=(e+2)%3;a=Math.sqrt(r[3*e+e]-r[3*o+o]-r[3*s+s]+1),t[e]=.5*a,a=.5/a,t[3]=(r[3*o+s]-r[3*s+o])*a,t[o]=(r[3*o+e]+r[3*e+o])*a,t[s]=(r[3*s+e]+r[3*e+s])*a}return t}var m,q,d,p,A,g;a.create=c,a.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t},a.setAxisAngle=i,a.getAxisAngle=function(t,r){var a=2*Math.acos(r[3]),n=Math.sin(a/2);return n>e.EPSILON?(t[0]=r[0]/n,t[1]=r[1]/n,t[2]=r[2]/n):(t[0]=1,t[1]=0,t[2]=0),a},a.getAngle=function(t,r){var n=a.dot(t,r);return Math.acos(2*n*n-1)},a.multiply=h,a.rotateX=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c+s*u,t[1]=e*c+o*u,t[2]=o*c-e*u,t[3]=s*c-n*u,t},a.rotateY=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c-o*u,t[1]=e*c+s*u,t[2]=o*c+n*u,t[3]=s*c-e*u,t},a.rotateZ=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c+e*u,t[1]=e*c-n*u,t[2]=o*c+s*u,t[3]=s*c-o*u,t},a.calculateW=function(t,r){var a=r[0],n=r[1],e=r[2];return t[0]=a,t[1]=n,t[2]=e,t[3]=Math.sqrt(Math.abs(1-a*a-n*n-e*e)),t},a.exp=M,a.ln=l,a.pow=function(t,r,n){return l(t,r),a.scale(t,t,n),M(t,t),t},a.slerp=f,a.random=function(t){var r=e.RANDOM(),a=e.RANDOM(),n=e.RANDOM(),o=Math.sqrt(1-r),s=Math.sqrt(r);return t[0]=o*Math.sin(2*Math.PI*a),t[1]=o*Math.cos(2*Math.PI*a),t[2]=s*Math.sin(2*Math.PI*n),t[3]=s*Math.cos(2*Math.PI*n),t},a.invert=function(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=a*a+n*n+e*e+o*o,u=s?1/s:0;return t[0]=-a*u,t[1]=-n*u,t[2]=-e*u,t[3]=o*u,t},a.conjugate=function(t,r){return t[0]=-r[0],t[1]=-r[1],t[2]=-r[2],t[3]=r[3],t},a.fromMat3=v,a.fromEuler=function(t,r,a,n){var e=.5*Math.PI/180;r*=e,a*=e,n*=e;var o=Math.sin(r),s=Math.cos(r),u=Math.sin(a),c=Math.cos(a),i=Math.sin(n),h=Math.cos(n);return t[0]=o*c*h-s*u*i,t[1]=s*u*h+o*c*i,t[2]=s*c*i-o*u*h,t[3]=s*c*h+o*u*i,t},a.str=function(t){return"quat("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},a.clone=u.clone,a.fromValues=u.fromValues,a.copy=u.copy,a.set=u.set,a.add=u.add,a.mul=h,a.scale=u.scale,a.dot=u.dot,a.lerp=u.lerp,a.length=u.length,a.len=a.length,a.squaredLength=u.squaredLength,a.sqrLen=a.squaredLength,a.normalize=u.normalize,a.exactEquals=u.exactEquals,a.equals=u.equals,a.rotationTo=(m=s.create(),q=s.fromValues(1,0,0),d=s.fromValues(0,1,0),function(t,r,n){var e=s.dot(r,n);return e<-.999999?(s.cross(m,q,r),s.len(m)<1e-6&&s.cross(m,d,r),s.normalize(m,m),i(t,m,Math.PI),t):e>.999999?(t[0]=0,t[1]=0,t[2]=0,t[3]=1,t):(s.cross(m,r,n),t[0]=m[0],t[1]=m[1],t[2]=m[2],t[3]=1+e,a.normalize(t,t))}),a.sqlerp=(p=c(),A=c(),function(t,r,a,n,e,o){return f(p,r,e,o),f(A,a,n,o),f(t,p,A,2*o*(1-o)),t}),a.setAxes=(g=o.create(),function(t,r,n,e){return g[0]=n[0],g[3]=n[1],g[6]=n[2],g[1]=e[0],g[4]=e[1],g[7]=e[2],g[2]=-r[0],g[5]=-r[1],g[8]=-r[2],a.normalize(t,v(t,g))})},n”, ” "2c5eb22089": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(){var t=new a.ARRAY_TYPE(3);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t}function e(t){var n=t[0],r=t[1],a=t[2];return Math.hypot(n,r,a)}function o(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t}function i(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t}function c(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t}function h(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2];return Math.hypot(r,a,u)}function M(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2];return r*r+a*a+u*u}function s(t){var n=t[0],r=t[1],a=t[2];return n*n+r*r+a*a}function f(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}var l;r.create=u,r.clone=function(t){var n=new a.ARRAY_TYPE(3);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n},r.length=e,r.fromValues=function(t,n,r){var u=new a.ARRAY_TYPE(3);return u[0]=t,u[1]=n,u[2]=r,u},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t},r.set=function(t,n,r,a){return t[0]=n,t[1]=r,t[2]=a,t},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t},r.subtract=o,r.multiply=i,r.divide=c,r.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t},r.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t},r.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t},r.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t},r.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t},r.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t},r.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t},r.distance=h,r.squaredDistance=M,r.squaredLength=s,r.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t},r.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t},r.normalize=function(t,n){var r=n[0],a=n[1],u=n[2],e=r*r+a*a+u*u;return e>0&&(e=1/Math.sqrt(e)),t[0]=n[0]*e,t[1]=n[1]*e,t[2]=n[2]*e,t},r.dot=f,r.cross=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[0],i=r[1],c=r[2];return t[0]=u*c-e*i,t[1]=e*o-a*c,t[2]=a*i-u*o,t},r.lerp=function(t,n,r,a){var u=n[0],e=n[1],o=n[2];return t[0]=u+a*(r[0]-u),t[1]=e+a*(r[1]-e),t[2]=o+a*(r[2]-o),t},r.hermite=function(t,n,r,a,u,e){var o=e*e,i=o*(2*e-3)+1,c=o*(e-2)+e,h=o*(e-1),M=o*(3-2*e);return t[0]=n[0]*i+r[0]*c+a[0]*h+u[0]*M,t[1]=n[1]*i+r[1]*c+a[1]*h+u[1]*M,t[2]=n[2]*i+r[2]*c+a[2]*h+u[2]*M,t},r.bezier=function(t,n,r,a,u,e){var o=1-e,i=o*o,c=e*e,h=i*o,M=3*e*i,s=3*c*o,f=c*e;return t[0]=n[0]*h+r[0]*M+a[0]*s+u[0]*f,t[1]=n[1]*h+r[1]*M+a[1]*s+u[1]*f,t[2]=n[2]*h+r[2]*M+a[2]*s+u[2]*f,t},r.random=function(t,n){n=n||1;var r=2*a.RANDOM()*Math.PI,u=2*a.RANDOM()-1,e=Math.sqrt(1-u*u)*n;return t[0]=Math.cos(r)*e,t[1]=Math.sin(r)*e,t[2]=u*n,t},r.transformMat4=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[3]*a+r[7]*u+r[11]*e+r[15];return o=o||1,t[0]=(r[0]*a+r[4]*u+r[8]*e+r[12])/o,t[1]=(r[1]*a+r[5]*u+r[9]*e+r[13])/o,t[2]=(r[2]*a+r[6]*u+r[10]*e+r[14])/o,t},r.transformMat3=function(t,n,r){var a=n[0],u=n[1],e=n[2];return t[0]=a*r[0]+u*r[3]+e*r[6],t[1]=a*r[1]+u*r[4]+e*r[7],t[2]=a*r[2]+u*r[5]+e*r[8],t},r.transformQuat=function(t,n,r){var a=r[0],u=r[1],e=r[2],o=r[3],i=n[0],c=n[1],h=n[2],M=u*h-e*c,s=e*i-a*h,f=a*c-u*i,l=u*f-e*s,v=e*M-a*f,m=a*s-u*M,d=2*o;return M*=d,s*=d,f*=d,l*=2,v*=2,m*=2,t[0]=i+M+l,t[1]=c+s+v,t[2]=h+f+m,t},r.rotateX=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[0],e[1]=u[1]*Math.cos(a)-u[2]*Math.sin(a),e[2]=u[1]*Math.sin(a)+u[2]*Math.cos(a),t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.rotateY=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[2]*Math.sin(a)+u[0]*Math.cos(a),e[1]=u[1],e[2]=u[2]*Math.cos(a)-u[0]*Math.sin(a),t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.rotateZ=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[0]*Math.cos(a)-u[1]*Math.sin(a),e[1]=u[0]*Math.sin(a)+u[1]*Math.cos(a),e[2]=u[2],t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.angle=function(t,n){var r=t[0],a=t[1],u=t[2],e=n[0],o=n[1],i=n[2],c=Math.sqrt(r*r+a*a+u*u)*Math.sqrt(e*e+o*o+i*i),h=c&&f(t,n)/c;return Math.acos(Math.min(Math.max(h,-1),1))},r.zero=function(t){return t[0]=0,t[1]=0,t[2]=0,t},r.str=function(t){return"vec3("+t[0]+", "+t[1]+", "+t[2]+")"},r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=n[0],i=n[1],c=n[2];return Math.abs(r-o)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(u-i)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(i))&&Math.abs(e-c)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(c))},r.sub=o,r.mul=i,r.div=c,r.dist=h,r.sqrDist=M,r.len=e,r.sqrLen=s,r.forEach=(l=u(),function(t,n,r,a,u,e){var o,i;for(n||(n=3),r||(r=0),i=a?Math.min(a*n+r,t.length):t.length,o=r;o<i;o+=n)l[0]=t[o],l[1]=t[o+1],l[2]=t[o+2],u(l,l,e),t[o]=l[0],t[o+1]=l[1],t[o+2]=l[2];return t})},n”, ” "c1aa33d719": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0),t}function e(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}function o(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t[3]=n[3]*r[3],t}function i(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t[3]=n[3]/r[3],t}function c(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2],e=n[3]-t[3];return Math.hypot(r,a,u,e)}function h(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2],e=n[3]-t[3];return r*r+a*a+u*u+e*e}function M(t){var n=t[0],r=t[1],a=t[2],u=t[3];return Math.hypot(n,r,a,u)}function f(t){var n=t[0],r=t[1],a=t[2],u=t[3];return n*n+r*r+a*a+u*u}var s;r.create=u,r.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},r.fromValues=function(t,n,r,u){var e=new a.ARRAY_TYPE(4);return e[0]=t,e[1]=n,e[2]=r,e[3]=u,e},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},r.set=function(t,n,r,a,u){return t[0]=n,t[1]=r,t[2]=a,t[3]=u,t},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},r.subtract=e,r.multiply=o,r.divide=i,r.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t[3]=Math.ceil(n[3]),t},r.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t[3]=Math.floor(n[3]),t},r.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t[3]=Math.min(n[3],r[3]),t},r.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t[3]=Math.max(n[3],r[3]),t},r.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t[3]=Math.round(n[3]),t},r.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},r.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},r.distance=c,r.squaredDistance=h,r.length=M,r.squaredLength=f,r.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t[3]=-n[3],t},r.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t[3]=1/n[3],t},r.normalize=function(t,n){var r=n[0],a=n[1],u=n[2],e=n[3],o=r*r+a*a+u*u+e*e;return o>0&&(o=1/Math.sqrt(o)),t[0]=r*o,t[1]=a*o,t[2]=u*o,t[3]=e*o,t},r.dot=function(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]+t[3]*n[3]},r.cross=function(t,n,r,a){var u=r[0]*a[1]-r[1]*a[0],e=r[0]*a[2]-r[2]*a[0],o=r[0]*a[3]-r[3]*a[0],i=r[1]*a[2]-r[2]*a[1],c=r[1]*a[3]-r[3]*a[1],h=r[2]*a[3]-r[3]*a[2],M=n[0],f=n[1],s=n[2],l=n[3];return t[0]=f*h-s*c+l*i,t[1]=-M*h+s*o-l*e,t[2]=M*c-f*o+l*u,t[3]=-M*i+f*e-s*u,t},r.lerp=function(t,n,r,a){var u=n[0],e=n[1],o=n[2],i=n[3];return t[0]=u+a*(r[0]-u),t[1]=e+a*(r[1]-e),t[2]=o+a*(r[2]-o),t[3]=i+a*(r[3]-i),t},r.random=function(t,n){var r,u,e,o,i,c;n=n||1;do{i=(r=2*a.RANDOM()-1)*r+(u=2*a.RANDOM()-1)*u}while(i>=1);do{c=(e=2*a.RANDOM()-1)*e+(o=2*a.RANDOM()-1)*o}while(c>=1);var h=Math.sqrt((1-i)/c);return t[0]=n*r,t[1]=n*u,t[2]=n*e*h,t[3]=n*o*h,t},r.transformMat4=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3];return t[0]=r[0]*a+r[4]*u+r[8]*e+r[12]*o,t[1]=r[1]*a+r[5]*u+r[9]*e+r[13]*o,t[2]=r[2]*a+r[6]*u+r[10]*e+r[14]*o,t[3]=r[3]*a+r[7]*u+r[11]*e+r[15]*o,t},r.transformQuat=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[0],i=r[1],c=r[2],h=r[3],M=h*a+i*e-c*u,f=h*u+c*a-o*e,s=h*e+o*u-i*a,l=-o*a-i*u-c*e;return t[0]=M*h+l*-o+f*-c-s*-i,t[1]=f*h+l*-i+s*-o-M*-c,t[2]=s*h+l*-c+M*-i-f*-o,t[3]=n[3],t},r.zero=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t},r.str=function(t){return"vec4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=t[3],i=n[0],c=n[1],h=n[2],M=n[3];return Math.abs(r-i)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(i))&&Math.abs(u-c)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(c))&&Math.abs(e-h)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(h))&&Math.abs(o-M)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(M))},r.sub=e,r.mul=o,r.div=i,r.dist=c,r.sqrDist=h,r.len=M,r.sqrLen=f,r.forEach=(s=u(),function(t,n,r,a,u,e){var o,i;for(n||(n=4),r||(r=0),i=a?Math.min(a*n+r,t.length):t.length,o=r;o<i;o+=n)s[0]=t[o],s[1]=t[o+1],s[2]=t[o+2],s[3]=t[o+3],u(s,s,e),t[o]=s[0],t[o+1]=s[1],t[o+2]=s[2],t[o+3]=s[3];return t})},n”, ” "277615c682": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib"),e=r.__importStar(t("68ca94c15c")),u=r.__importStar(t("eb06fc032a")),o=r.__importStar(t("a427635f32"));function i(t,a,n){var r=.5*n[0],e=.5*n[1],u=.5*n[2],o=a[0],i=a[1],s=a[2],c=a[3];return t[0]=o,t[1]=i,t[2]=s,t[3]=c,t[4]=r*c+e*s-u*i,t[5]=e*c+u*o-r*s,t[6]=u*c+r*i-e*o,t[7]=-r*o-e*i-u*s,t}function s(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t}function c(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=n[4],s=n[5],c=n[6],h=n[7],f=a[4],M=a[5],l=a[6],b=a[7],v=n[0],m=n[1],R=n[2],P=n[3];return t[0]=r*P+o*v+e*R-u*m,t[1]=e*P+o*m+u*v-r*R,t[2]=u*P+o*R+r*m-e*v,t[3]=o*P-r*v-e*m-u*R,t[4]=r*h+o*i+e*c-u*s+f*P+b*v+M*R-l*m,t[5]=e*h+o*s+u*i-r*c+M*P+b*m+l*v-f*R,t[6]=u*h+o*c+r*s-e*i+l*P+b*R+f*m-M*v,t[7]=o*h-r*i-e*s-u*c+b*P-f*v-M*m-l*R,t}n.create=function(){var t=new e.ARRAY_TYPE(8);return e.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[4]=0,t[5]=0,t[6]=0,t[7]=0),t[3]=1,t},n.clone=function(t){var a=new e.ARRAY_TYPE(8);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a},n.fromValues=function(t,a,n,r,u,o,i,s){var c=new e.ARRAY_TYPE(8);return c[0]=t,c[1]=a,c[2]=n,c[3]=r,c[4]=u,c[5]=o,c[6]=i,c[7]=s,c},n.fromRotationTranslationValues=function(t,a,n,r,u,o,i){var s=new e.ARRAY_TYPE(8);s[0]=t,s[1]=a,s[2]=n,s[3]=r;var c=.5*u,h=.5*o,f=.5*i;return s[4]=c*r+h*n-f*a,s[5]=h*r+f*t-c*n,s[6]=f*r+c*a-h*t,s[7]=-c*t-h*a-f*n,s},n.fromRotationTranslation=i,n.fromTranslation=function(t,a){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=.5*a[0],t[5]=.5*a[1],t[6]=.5*a[2],t[7]=0,t},n.fromRotation=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.fromMat4=function(t,a){var n=u.create();o.getRotation(n,a);var r=new e.ARRAY_TYPE(3);return o.getTranslation(r,a),i(t,n,r),t},n.copy=s,n.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.set=function(t,a,n,r,e,u,o,i,s){return t[0]=a,t[1]=n,t[2]=r,t[3]=e,t[4]=u,t[5]=o,t[6]=i,t[7]=s,t},n.getReal=u.copy,n.getDual=function(t,a){return t[0]=a[4],t[1]=a[5],t[2]=a[6],t[3]=a[7],t},n.setReal=u.copy,n.setDual=function(t,a){return t[4]=a[0],t[5]=a[1],t[6]=a[2],t[7]=a[3],t},n.getTranslation=function(t,a){var n=a[4],r=a[5],e=a[6],u=a[7],o=-a[0],i=-a[1],s=-a[2],c=a[3];return t[0]=2*(n*c+u*o+r*s-e*i),t[1]=2*(r*c+u*i+e*o-n*s),t[2]=2*(e*c+u*s+n*i-r*o),t},n.translate=function(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=.5*n[0],s=.5*n[1],c=.5*n[2],h=a[4],f=a[5],M=a[6],l=a[7];return t[0]=r,t[1]=e,t[2]=u,t[3]=o,t[4]=o*i+e*c-u*s+h,t[5]=o*s+u*i-r*c+f,t[6]=o*c+r*s-e*i+M,t[7]=-r*i-e*s-u*c+l,t},n.rotateX=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateX(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateY=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateY(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateZ=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateZ(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateByQuatAppend=function(t,a,n){var r=n[0],e=n[1],u=n[2],o=n[3],i=a[0],s=a[1],c=a[2],h=a[3];return t[0]=i*o+h*r+s*u-c*e,t[1]=s*o+h*e+c*r-i*u,t[2]=c*o+h*u+i*e-s*r,t[3]=h*o-i*r-s*e-c*u,i=a[4],s=a[5],c=a[6],h=a[7],t[4]=i*o+h*r+s*u-c*e,t[5]=s*o+h*e+c*r-i*u,t[6]=c*o+h*u+i*e-s*r,t[7]=h*o-i*r-s*e-c*u,t},n.rotateByQuatPrepend=function(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=n[0],s=n[1],c=n[2],h=n[3];return t[0]=r*h+o*i+e*c-u*s,t[1]=e*h+o*s+u*i-r*c,t[2]=u*h+o*c+r*s-e*i,t[3]=o*h-r*i-e*s-u*c,i=n[4],s=n[5],c=n[6],h=n[7],t[4]=r*h+o*i+e*c-u*s,t[5]=e*h+o*s+u*i-r*c,t[6]=u*h+o*c+r*s-e*i,t[7]=o*h-r*i-e*s-u*c,t},n.rotateAroundAxis=function(t,a,n,r){if(Math.abs(r)<e.EPSILON)return s(t,a);var u=Math.hypot(n[0],n[1],n[2]);r*=.5;var o=Math.sin(r),i=o*n[0]/u,c=o*n[1]/u,h=o*n[2]/u,f=Math.cos(r),M=a[0],l=a[1],b=a[2],v=a[3];t[0]=M*f+v*i+l*h-b*c,t[1]=l*f+v*c+b*i-M*h,t[2]=b*f+v*h+M*c-l*i,t[3]=v*f-M*i-l*c-b*h;var m=a[4],R=a[5],P=a[6],d=a[7];return t[4]=m*f+d*i+R*h-P*c,t[5]=R*f+d*c+P*i-m*h,t[6]=P*f+d*h+m*c-R*i,t[7]=d*f-m*i-R*c-P*h,t},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t},n.multiply=c,n.mul=c,n.scale=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t},n.dot=u.dot,n.lerp=function(t,a,r,e){var u=1-e;return n.dot(a,r)<0&&(e=-e),t[0]=a[0]*u+r[0]*e,t[1]=a[1]*u+r[1]*e,t[2]=a[2]*u+r[2]*e,t[3]=a[3]*u+r[3]*e,t[4]=a[4]*u+r[4]*e,t[5]=a[5]*u+r[5]*e,t[6]=a[6]*u+r[6]*e,t[7]=a[7]*u+r[7]*e,t},n.invert=function(t,a){var r=n.squaredLength(a);return t[0]=-a[0]/r,t[1]=-a[1]/r,t[2]=-a[2]/r,t[3]=a[3]/r,t[4]=-a[4]/r,t[5]=-a[5]/r,t[6]=-a[6]/r,t[7]=a[7]/r,t},n.conjugate=function(t,a){return t[0]=-a[0],t[1]=-a[1],t[2]=-a[2],t[3]=a[3],t[4]=-a[4],t[5]=-a[5],t[6]=-a[6],t[7]=a[7],t},n.length=u.length,n.len=n.length,n.squaredLength=u.squaredLength,n.sqrLen=n.squaredLength,n.normalize=function(t,a){var r=n.squaredLength(a);if(r>0){r=Math.sqrt(r);var e=a[0]/r,u=a[1]/r,o=a[2]/r,i=a[3]/r,s=a[4],c=a[5],h=a[6],f=a[7],M=e*s+u*c+o*h+i*f;t[0]=e,t[1]=u,t[2]=o,t[3]=i,t[4]=(s-e*M)/r,t[5]=(c-u*M)/r,t[6]=(h-o*M)/r,t[7]=(f-i*M)/r}return t},n.str=function(t){return"quat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+")"},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]},n.equals=function(t,a){var n=t[0],r=t[1],u=t[2],o=t[3],i=t[4],s=t[5],c=t[6],h=t[7],f=a[0],M=a[1],l=a[2],b=a[3],v=a[4],m=a[5],R=a[6],P=a[7];return Math.abs(n-f)<=e.EPSILON*Math.max(1,Math.abs(n),Math.abs(f))&&Math.abs(r-M)<=e.EPSILON*Math.max(1,Math.abs(r),Math.abs(M))&&Math.abs(u-l)<=e.EPSILON*Math.max(1,Math.abs(u),Math.abs(l))&&Math.abs(o-b)<=e.EPSILON*Math.max(1,Math.abs(o),Math.abs(b))&&Math.abs(i-v)<=e.EPSILON*Math.max(1,Math.abs(i),Math.abs(v))&&Math.abs(s-m)<=e.EPSILON*Math.max(1,Math.abs(s),Math.abs(m))&&Math.abs(c-R)<=e.EPSILON*Math.max(1,Math.abs(c),Math.abs(R))&&Math.abs(h-P)<=e.EPSILON*Math.max(1,Math.abs(h),Math.abs(P))}},n”, ” "c56d9ff837": function _(n,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=n("tslib").__importStar(n("68ca94c15c"));function u(){var n=new a.ARRAY_TYPE(2);return a.ARRAY_TYPE!=Float32Array&&(n[0]=0,n[1]=0),n}function e(n,t,r){return n[0]=t[0]-r[0],n[1]=t[1]-r[1],n}function o(n,t,r){return n[0]=t[0]*r[0],n[1]=t[1]*r[1],n}function c(n,t,r){return n[0]=t[0]/r[0],n[1]=t[1]/r[1],n}function i(n,t){var r=t[0]-n[0],a=t[1]-n[1];return Math.hypot(r,a)}function f(n,t){var r=t[0]-n[0],a=t[1]-n[1];return r*r+a*a}function s(n){var t=n[0],r=n[1];return Math.hypot(t,r)}function h(n){var t=n[0],r=n[1];return t*t+r*r}var M;r.create=u,r.clone=function(n){var t=new a.ARRAY_TYPE(2);return t[0]=n[0],t[1]=n[1],t},r.fromValues=function(n,t){var r=new a.ARRAY_TYPE(2);return r[0]=n,r[1]=t,r},r.copy=function(n,t){return n[0]=t[0],n[1]=t[1],n},r.set=function(n,t,r){return n[0]=t,n[1]=r,n},r.add=function(n,t,r){return n[0]=t[0]+r[0],n[1]=t[1]+r[1],n},r.subtract=e,r.multiply=o,r.divide=c,r.ceil=function(n,t){return n[0]=Math.ceil(t[0]),n[1]=Math.ceil(t[1]),n},r.floor=function(n,t){return n[0]=Math.floor(t[0]),n[1]=Math.floor(t[1]),n},r.min=function(n,t,r){return n[0]=Math.min(t[0],r[0]),n[1]=Math.min(t[1],r[1]),n},r.max=function(n,t,r){return n[0]=Math.max(t[0],r[0]),n[1]=Math.max(t[1],r[1]),n},r.round=function(n,t){return n[0]=Math.round(t[0]),n[1]=Math.round(t[1]),n},r.scale=function(n,t,r){return n[0]=t[0]*r,n[1]=t[1]*r,n},r.scaleAndAdd=function(n,t,r,a){return n[0]=t[0]+r[0]*a,n[1]=t[1]+r[1]*a,n},r.distance=i,r.squaredDistance=f,r.length=s,r.squaredLength=h,r.negate=function(n,t){return n[0]=-t[0],n[1]=-t[1],n},r.inverse=function(n,t){return n[0]=1/t[0],n[1]=1/t[1],n},r.normalize=function(n,t){var r=t[0],a=t[1],u=r*r+a*a;return u>0&&(u=1/Math.sqrt(u)),n[0]=t[0]*u,n[1]=t[1]*u,n},r.dot=function(n,t){return n[0]*t[0]+n[1]*t[1]},r.cross=function(n,t,r){var a=t[0]*r[1]-t[1]*r[0];return n[0]=n[1]=0,n[2]=a,n},r.lerp=function(n,t,r,a){var u=t[0],e=t[1];return n[0]=u+a*(r[0]-u),n[1]=e+a*(r[1]-e),n},r.random=function(n,t){t=t||1;var r=2*a.RANDOM()*Math.PI;return n[0]=Math.cos(r)*t,n[1]=Math.sin(r)*t,n},r.transformMat2=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[2]*u,n[1]=r[1]*a+r[3]*u,n},r.transformMat2d=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[2]*u+r[4],n[1]=r[1]*a+r[3]*u+r[5],n},r.transformMat3=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[3]*u+r[6],n[1]=r[1]*a+r[4]*u+r[7],n},r.transformMat4=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[4]*u+r[12],n[1]=r[1]*a+r[5]*u+r[13],n},r.rotate=function(n,t,r,a){var u=t[0]-r[0],e=t[1]-r[1],o=Math.sin(a),c=Math.cos(a);return n[0]=u*c-e*o+r[0],n[1]=u*o+e*c+r[1],n},r.angle=function(n,t){var r=n[0],a=n[1],u=t[0],e=t[1],o=Math.sqrt(r*r+a*a)*Math.sqrt(u*u+e*e),c=o&&(r*u+a*e)/o;return Math.acos(Math.min(Math.max(c,-1),1))},r.zero=function(n){return n[0]=0,n[1]=0,n},r.str=function(n){return"vec2("+n[0]+", "+n[1]+")"},r.exactEquals=function(n,t){return n[0]===t[0]&&n[1]===t[1]},r.equals=function(n,t){var r=n[0],u=n[1],e=t[0],o=t[1];return Math.abs(r-e)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(e))&&Math.abs(u-o)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(o))},r.len=s,r.sub=e,r.mul=o,r.div=c,r.dist=i,r.sqrDist=f,r.sqrLen=h,r.forEach=(M=u(),function(n,t,r,a,u,e){var o,c;for(t||(t=2),r||(r=0),c=a?Math.min(a*t+r,n.length):n.length,o=r;o<c;o+=t)M[0]=n[o],M[1]=n[o+1],u(M,M,e),n[o]=M[0],n[o+1]=M[1];return n})},n”, ” "4baab0b7ce": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),r=e("@bokehjs/core/util/object"),i=e("021b2a3929"),o=e("6c442cdcb4"),_=e("11e0707a8f");class a extends i.AbstractVTKView{initialize(){super.initialize(),this._promises=[],this._renderable=!1,this._arrays={},this._decoded_arrays={},this._pending_arrays={},this.getArray=e=>this._arrays[e]?Promise.resolve(this._arrays[e]):new Promise((t,n)=>{this._pending_arrays[e]={resolve:t,reject:n}}),this.registerArray=(e,t)=>(this._arrays[e]=t,this._pending_arrays[e]&&this._pending_arrays[e].resolve(t),!0),this._synchronizer_context=o.vtkns.SynchronizableRenderWindow.getSynchronizerContext("panel")}connect_signals(){super.connect_signals(),this.connect(this.model.properties.arrays.change,()=>this._decode_arrays()),this.connect(this.model.properties.scene.change,()=>{if(this.model.rebuild)this._vtk_renwin=null,this.invalidate_render();else{const e=r.clone(this.model.scene);Promise.all(this._promises).then(()=>{this._sync_plot(e,()=>{this._on_scene_ready()})})}}),this.connect(this.model.properties.one_time_reset.change,()=>{this._vtk_renwin.getRenderWindow().clearOneTimeUpdaters()})}init_vtk_renwin(){this._vtk_renwin=_.FullScreenRenderWindowSynchronized.newInstance({rootContainer:this.el,container:this._vtk_container,synchronizerContext:this._synchronizer_context})}plot(){this._vtk_renwin.getRenderWindow().clearOneTimeUpdaters(),this._decode_arrays();const e=r.clone(this.model.scene);Promise.all(this._promises).then(()=>{this._sync_plot(e,()=>this._on_scene_ready()).then(()=>{this._set_camera_state(),this._get_camera_state()})})}_decode_arrays(){const e=new o.vtkns.ThirdParty.JSZip,t=this.model.arrays,n=this.registerArray,s=this.model.arrays_processed,r=this.model;Object.keys(t).forEach(i=>{this._decoded_arrays[i]||(this._decoded_arrays[i]=!0,this._promises.push(function(i){return e.loadAsync(atob(t[i])).then(e=>e.file("data/"+i)).then(e=>e.async("arraybuffer")).then(e=>n(i,e)).then(()=>{s.push(i),r.properties.arrays_processed.change.emit()})}(i)))})}_on_scene_ready(){this._promises.length>0||(this._renderable=!0,this._camera_callbacks.push(this._vtk_renwin.getRenderer().getActiveCamera().onModified(()=>this._vtk_render())),this._orientationWidget||this._create_orientation_widget(),this._axes||this._set_axes(),this._vtk_renwin.resize(),this._vtk_render())}_sync_plot(e,t){this._renderable=!1,this._promises=[],this._unsubscribe_camera_cb(),this._synchronizer_context.setFetchArrayFunction(e=>Promise.resolve(this._arrays[e]));const n=this._synchronizer_context.getInstance(this.model.scene.dependencies[0].id);return n&&!this._vtk_renwin.getRenderer()&&this._vtk_renwin.getRenderWindow().addRenderer(n),this._vtk_renwin.getRenderWindow().synchronize(e).then(t)}}n.VTKSynchronizedPlotView=a,a.__name__="VTKSynchronizedPlotView";class h extends i.AbstractVTKPlot{constructor(e){super(e),this.outline=o.vtkns.OutlineFilter.newInstance();const t=o.vtkns.Mapper.newInstance();t.setInputConnection(this.outline.getOutputPort()),this.outline_actor=o.vtkns.Actor.newInstance(),this.outline_actor.setMapper(t)}getActors(e){let t=this.renderer_el.getRenderer().getActors();if(e){const n=this.renderer_el.getSynchronizerContext("panel");t=t.filter(t=>{const s=n.getInstanceId(t);return!!s&&s.slice(-16)==e.slice(1,17)})}return t}static init_VTKSynchronizedPlot(){this.prototype.default_view=a,this.define({arrays:[s.Any,{}],arrays_processed:[s.Array,[]],enable_keybindings:[s.Boolean,!1],one_time_reset:[s.Boolean],rebuild:[s.Boolean,!1],scene:[s.Any,{}]}),this.override({height:300,width:300})}}n.VTKSynchronizedPlot=h,h.__name__="VTKSynchronizedPlot",h.__module__="panel.models.vtk",h.init_VTKSynchronizedPlot()},n”, ” "11e0707a8f": function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const t=e("6c442cdcb4");if(t.vtk){const e={containerStyle:null,controlPanelStyle:null,listenWindowResize:!0,resizeCallback:null,controllerVisibility:!0,synchronizerContextName:"default"},n={position:"absolute",left:"25px",top:"25px",backgroundColor:"white",borderRadius:"5px",listStyle:"none",padding:"5px 10px",margin:"0",display:"block",border:"solid 1px black",maxWidth:"calc(100vw - 70px)",maxHeight:"calc(100vh - 60px)",overflow:"auto"};o.FullScreenRenderWindowSynchronized={newInstance:t.vtk.macro.newInstance((o,r,i={})=>{Object.assign(r,e,i),t.vtk.macro.obj(o,r),t.vtk.macro.get(o,r,["renderWindow","openGLRenderWindow","interactor","rootContainer","container","controlContainer","synchronizerContext"]),function(e,o){o.renderWindow=t.vtkns.SynchronizableRenderWindow.newInstance({synchronizerContext:o.synchronizerContext}),o.openGLRenderWindow=t.vtkns.OpenGLRenderWindow.newInstance(),o.openGLRenderWindow.setContainer(o.container),o.renderWindow.addView(o.openGLRenderWindow),o.interactor=t.vtkns.RenderWindowInteractor.newInstance(),o.interactor.setInteractorStyle(t.vtkns.InteractorStyleTrackballCamera.newInstance()),o.interactor.setView(o.openGLRenderWindow),o.interactor.initialize(),o.interactor.bindEvents(o.container),e.getRenderer=()=>o.renderWindow.getRenderers()[0],e.removeController=()=>{const e=o.controlContainer;e&&e.parentNode.removeChild(e)},e.setControllerVisibility=e=>{o.controllerVisibility=e,o.controlContainer&&(o.controlContainer.style.display=e?"block":"none")},e.toggleControllerVisibility=()=>{e.setControllerVisibility(!o.controllerVisibility)},e.addController=r=>{o.controlContainer=document.createElement("div"),t.applyStyle(o.controlContainer,o.controlPanelStyle||n),o.rootContainer.appendChild(o.controlContainer),o.controlContainer.innerHTML=r,e.setControllerVisibility(o.controllerVisibility),o.rootContainer.addEventListener("keypress",n=>{"c"===String.fromCharCode(n.charCode)&&e.toggleControllerVisibility()})},e.delete=t.vtk.macro.chain(e.setContainer,o.openGLRenderWindow.delete,e.delete),e.resize=()=>{const e=o.container.getBoundingClientRect(),n=window.devicePixelRatio||1;o.openGLRenderWindow.setSize(Math.floor(e.width*n),Math.floor(e.height*n)),o.resizeCallback&&o.resizeCallback(e),o.renderWindow.render()},e.setResizeCallback=n=>{o.resizeCallback=n,e.resize()},o.listenWindowResize&&window.addEventListener("resize",e.resize),e.resize()}(o,r)})}}},n”, ” }, "4e90918c0a", {"index":"4e90918c0a","models/index":"c4b9651916","models/ace":"abb1112c2c","models/layout":"7116a7a602","models/audio":"66d52165db","models/card":"0106b0a1bf","models/comm_manager":"684c940c17","models/deckgl":"d0d2aafca0","models/tooltips":"064eac2866","models/echarts":"c6decbe3f5","models/html":"ed08037ce5","models/ipywidget":"cb7ac8d1fa","models/json":"284504a0cf","models/file_download":"7a99dba4eb","models/katex":"7b859fb3cf","models/location":"aded270681","models/mathjax":"0c21036737","models/player":"79c41bbf71","models/plotly":"47b5ae5c43","models/util":"990b5dd5c7","models/progress":"765e9cea08","models/singleselect":"ff9dd91f7b","models/state":"38b2bc9574","models/vega":"294adeb985","models/video":"b0c3e9e9c2","models/videostream":"3c7145a2fa","models/vtk/index":"c51f25e2a7","models/vtk/vtkjs":"6ed30646d7","models/vtk/vtklayout":"021b2a3929","models/vtk/util":"6c442cdcb4","models/vtk/vtkcolorbar":"c010237f8b","models/vtk/vtkvolume":"087f1e0be6","models/vtk/vtkaxes":"3ae7537200","models/vtk/vtksynchronized":"4baab0b7ce","models/vtk/panel_fullscreen_renwin_sync":"11e0707a8f"}, {});n”, ” })n”, “n”, “n”, ” /* END panel.min.js */n”, ” },n”, ” function(Bokeh) {} // ensure no trailing comma for IEn”, ” ];n”, “n”, ” function run_inline_js() {n”, ” if ((root.Bokeh !== undefined) || (force === true)) {n”, ” for (var i = 0; i < inline_js.length; i++) {n”, ” inline_js[i].call(root, root.Bokeh);n”, ” }} else if (Date.now() < root._bokeh_timeout) {n”, ” setTimeout(run_inline_js, 100);n”, ” } else if (!root._bokeh_failed_load) {n”, ” console.log("Bokeh: BokehJS failed to load within specified timeout.");n”, ” root._bokeh_failed_load = true;n”, ” }n”, ” }n”, “n”, ” if (root._bokeh_is_loading === 0) {n”, ” console.debug("Bokeh: BokehJS loaded, going straight to plotting");n”, ” run_inline_js();n”, ” } else {n”, ” load_libs(css_urls, js_urls, function() {n”, ” console.debug("Bokeh: BokehJS plotting callback run at", now());n”, ” run_inline_js();n”, ” });n”, ” }n”, “}(window));”
], “application/vnd.holoviews_load.v0+json”: “n(function(root) {n function now() {n return new Date();n }nn var force = true;nn if (typeof root._bokeh_onload_callbacks === "undefined" || force === true) {n root._bokeh_onload_callbacks = [];n root._bokeh_is_loading = undefined;n }nn if (typeof (root._bokeh_timeout) === "undefined" || force === true) {n root._bokeh_timeout = Date.now() + 5000;n root._bokeh_failed_load = false;n }nn function run_callbacks() {n try {n root._bokeh_onload_callbacks.forEach(function(callback) {n if (callback != null)n callback();n });n } finally {n delete root._bokeh_onload_callbacksn }n console.debug("Bokeh: all callbacks have finished");n }nn function load_libs(css_urls, js_urls, callback) {n if (css_urls == null) css_urls = [];n if (js_urls == null) js_urls = [];nn root._bokeh_onload_callbacks.push(callback);n if (root._bokeh_is_loading > 0) {n console.debug("Bokeh: BokehJS is being loaded, scheduling callback at", now());n return null;n }n if (js_urls == null || js_urls.length === 0) {n run_callbacks();n return null;n }n console.debug("Bokeh: BokehJS not loaded, scheduling load and callback at", now());n root._bokeh_is_loading = css_urls.length + js_urls.length;nn function on_load() {n root._bokeh_is_loading–;n if (root._bokeh_is_loading === 0) {n console.debug("Bokeh: all BokehJS libraries/stylesheets loaded");n run_callbacks()n }n }nn function on_error() {n console.error("failed to load " + url);n }nn for (var i = 0; i < css_urls.length; i++) {n var url = css_urls[i];n const element = document.createElement("link");n element.onload = on_load;n element.onerror = on_error;n element.rel = "stylesheet";n element.type = "text/css";n element.href = url;n console.debug("Bokeh: injecting link tag for BokehJS stylesheet: ", url);n document.body.appendChild(element);n }nn var skip = [];n if (window.requirejs) {n require([], function() {n })n }n for (var i = 0; i < js_urls.length; i++) {n var url = js_urls[i];n if (skip.indexOf(url) >= 0) { on_load(); continue; }n var element = document.createElement(‘script’);n element.onload = on_load;n element.onerror = on_error;n element.async = false;n element.src = url;n console.debug("Bokeh: injecting script tag for BokehJS library: ", url);n document.head.appendChild(element);n }ntif (!js_urls.length) {n on_load()n }n };nn function inject_raw_css(css) {n const element = document.createElement("style");n element.appendChild(document.createTextNode(css));n document.body.appendChild(element);n }nn var js_urls = [];n var css_urls = [];nn var inline_js = [n function(Bokeh) {n inject_raw_css(".bk.alert {\n padding: 0.75rem 1.25rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n /* Don’t set margin because that will not render correctly! /\n / margin-bottom: 1rem; /\n margin-top: 15px;\n margin-bottom: 15px;\n}\n.bk.alert a {\n color: rgb(11, 46, 19); / #002752; /\n font-weight: 700;\n text-decoration: rgb(11, 46, 19);\n text-decoration-color: rgb(11, 46, 19);\n text-decoration-line: none;\n text-decoration-style: solid;\n text-decoration-thickness: auto;\n }\n.bk.alert a:hover {\n color: rgb(11, 46, 19);\n font-weight: 700;\n text-decoration: underline;\n}\n\n.bk.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n.bk.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.bk.alert-secondary {\n color: #383d41;\n background-color: #e2e3e5;\n border-color: #d6d8db;\n }\n.bk.alert-secondary hr {\n border-top-color: #c8cbcf;\n}\n\n.bk.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n }\n\n.bk.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.bk.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n }\n.bk.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.bk.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n }\n\n.bk.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.bk.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n.bk.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.bk.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n }\n.bk.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.bk.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n }\n.bk.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n\n/ adjf\u00e6l /\n\n.bk.alert-primary a {\n color: #002752;\n}\n\n.bk.alert-secondary a {\n color: #202326;\n}\n\n\n.bk.alert-success a {\n color: #0b2e13;\n}\n\n\n.bk.alert-info a {\n color: #062c33;\n}\n\n\n.bk.alert-warning a {\n color: #533f03;\n}\n\n\n.bk.alert-danger a {\n color: #491217;\n}\n\n.bk.alert-light a {\n color: #686868;\n}\n\n.bk.alert-dark a {\n color: #040505;\n}");n },n function(Bokeh) {n inject_raw_css(".bk.card {\n border: 1px solid rgba(0,0,0,.125);\n border-radius: 0.25rem;\n}\n.bk.accordion {\n border: 1px solid rgba(0,0,0,.125);\n}\n.bk.card-header {\n align-items: center;\n background-color: rgba(0, 0, 0, 0.03);\n border-radius: 0.25rem;\n display: flex;\n justify-content: space-between;\n padding: 0 1.25rem 0 0;\n width: 100%;\n}\n.bk.accordion-header {\n align-items: center;\n background-color: rgba(0, 0, 0, 0.03);\n border-radius: 0;\n display: flex;\n justify-content: space-between;\n padding: 0 1.25rem 0 0;\n width: 100%;\n}\np.bk.card-button {\n background-color: transparent;\n font-size: 1.25rem;\n font-weight: 700;\n margin: 0;\n margin-left: -15px;\n}\n.bk.card-header-row {\n position: relative !important;\n}\n.bk.card-title {\n align-items: center;\n display: flex !important;\n font-size: 1.4em;\n font-weight: bold;\n padding: 0.25em;\n position: relative !important;\n}\n");n },n function(Bokeh) {n inject_raw_css(".bk.panel-widget-box {\n\tmin-height: 20px;\n\tbackground-color: #f5f5f5;\n\tborder: 1px solid #e3e3e3;\n\tborder-radius: 4px;\n\t-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\n\tbox-shadow: inset 0 1px 1px rgba(0,0,0,.05);\n\toverflow-x: hidden;\n\toverflow-y: hidden;\n}\n\n.scrollable {\n overflow: scroll;\n}\n\nprogress {\n\tappearance: none;\n\t-moz-appearance: none;\n\t-webkit-appearance: none;\n\n\tborder: none;\n\theight: 20px;\n\tbackground-color: whiteSmoke;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\n\tcolor: royalblue;\n\tposition: relative;\n\tmargin: 0 0 1.5em;\n}\n\nprogress[value]::-webkit-progress-bar {\n\tbackground-color: whiteSmoke;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\n}\n\nprogress[value]::-webkit-progress-value {\n\tposition: relative;\n\n\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\n\tborder-radius:3px;\n}\n\nprogress.active:not([value])::before {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress[value]::-moz-progress-bar {\n\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\n\tborder-radius:3px;\n}\n\nprogress:not([value])::-moz-progress-bar {\n\tborder-radius:3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n\n}\n\nprogress.active:not([value])::-moz-progress-bar {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress.active:not([value])::-webkit-progress-bar {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\nprogress.primary:not([value])::before { background-color: #007bff; }\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\n\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\nprogress.secondary:not([value])::before { background-color: #6c757d; }\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\n\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\nprogress.success:not([value])::before { background-color: #28a745; }\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\nprogress.success::-moz-progress-bar { background-color: #28a745; }\n\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\nprogress.danger:not([value])::before { background-color: #dc3545; }\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\n\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\nprogress.warning:not([value])::before { background-color: #ffc107; }\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\n\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\nprogress.info:not([value])::before { background-color: #17a2b8; }\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\n\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\nprogress.light:not([value])::before { background-color: #f8f9fa; }\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\n\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\nprogress.dark:not([value])::before { background-color: #343a40; }\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\n\nprogress:not([value])::-webkit-progress-bar {\n\tborder-radius: 3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n}\nprogress:not([value])::before {\n\tcontent:\" \";\n\tposition:absolute;\n\theight: 20px;\n\ttop:0;\n\tleft:0;\n\tright:0;\n\tbottom:0;\n\tborder-radius: 3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n}\n\n@keyframes stripes {\n from {background-position: 0%}\n to {background-position: 100%}\n}\n\n.bk.loader::after {\n content: \"\";\n border-radius: 50%;\n -webkit-mask-image: radial-gradient(transparent 50%, rgba(0, 0, 0, 1) 54%);\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n position: absolute;\n}\n\n.bk-root .bk.loader.dark::after {\n background: #0f0f0f;\n}\n\n.bk-root .bk.loader.light::after {\n background: #f0f0f0;\n}\n\n.bk-root .bk.loader.spin::after {\n animation: spin 2s linear infinite;\n}\n\n.bk-root div.bk.loader.spin.primary-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #007bff 50%);\n}\n\n.bk-root div.bk.loader.spin.secondary-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #6c757d 50%);\n}\n\n.bk-root div.bk.loader.spin.success-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #28a745 50%);\n}\n\n.bk-root div.bk.loader.spin.danger-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #dc3545 50%);\n}\n\n.bk-root div.bk.loader.spin.warning-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #ffc107 50%);\n}\n\n.bk-root div.bk.loader.spin.info-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #17a2b8 50%);\n}\n\n.bk-root div.bk.loader.spin.light-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #f8f9fa 50%);\n}\n\n.bk-root div.bk.loader.dark-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #343a40 50%);\n}\n\n.bk-root div.bk.loader.spin.primary-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #007bff 50%);\n}\n\n.bk-root div.bk.loader.spin.secondary-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #6c757d 50%);\n}\n\n.bk-root div.bk.loader.spin.success-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #28a745 50%);\n}\n\n.bk-root div.bk.loader.spin.danger-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #dc3545 50%)\n}\n\n.bk-root div.bk.loader.spin.warning-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #ffc107 50%);\n}\n\n.bk-root div.bk.loader.spin.info-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #17a2b8 50%);\n}\n\n.bk-root div.bk.loader.spin.light-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #f8f9fa 50%);\n}\n\n.bk-root div.bk.loader.spin.dark-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #343a40 50%);\n}\n\n/ Safari /\n@-webkit-keyframes spin {\n 0% { -webkit-transform: rotate(0deg); }\n 100% { -webkit-transform: rotate(360deg); }\n}\n\n@keyframes spin {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n}\n\n.dot div {\n height: 100%;\n width: 100%;\n border: 1px solid #000 !important;\n background-color: #fff;\n border-radius: 50%;\n display: inline-block;\n}\n\n.dot-filled div {\n height: 100%;\n width: 100%;\n border: 1px solid #000 !important;\n border-radius: 50%;\n display: inline-block;\n}\n\n.dot-filled.primary div {\n background-color: #007bff;\n}\n\n.dot-filled.secondary div {\n background-color: #6c757d;\n}\n\n.dot-filled.success div {\n background-color: #28a745;\n}\n\n.dot-filled.danger div {\n background-color: #dc3545;\n}\n\n.dot-filled.warning div {\n background-color: #ffc107;\n}\n\n.dot-filled.info div {\n background-color: #17a2b8;\n}\n\n.dot-filled.dark div {\n background-color: #343a40;\n}\n\n.dot-filled.light div {\n background-color: #f8f9fa;\n}");n },n function(Bokeh) {n inject_raw_css(".codehilite .hll { background-color: #ffffcc }\n.codehilite { background: #f8f8f8; }\n.codehilite .c { color: #408080; font-style: italic } / Comment /\n.codehilite .err { border: 1px solid #FF0000 } / Error /\n.codehilite .k { color: #008000; font-weight: bold } / Keyword /\n.codehilite .o { color: #666666 } / Operator /\n.codehilite .ch { color: #408080; font-style: italic } / Comment.Hashbang /\n.codehilite .cm { color: #408080; font-style: italic } / Comment.Multiline /\n.codehilite .cp { color: #BC7A00 } / Comment.Preproc /\n.codehilite .cpf { color: #408080; font-style: italic } / Comment.PreprocFile /\n.codehilite .c1 { color: #408080; font-style: italic } / Comment.Single /\n.codehilite .cs { color: #408080; font-style: italic } / Comment.Special /\n.codehilite .gd { color: #A00000 } / Generic.Deleted /\n.codehilite .ge { font-style: italic } / Generic.Emph /\n.codehilite .gr { color: #FF0000 } / Generic.Error /\n.codehilite .gh { color: #000080; font-weight: bold } / Generic.Heading /\n.codehilite .gi { color: #00A000 } / Generic.Inserted /\n.codehilite .go { color: #888888 } / Generic.Output /\n.codehilite .gp { color: #000080; font-weight: bold } / Generic.Prompt /\n.codehilite .gs { font-weight: bold } / Generic.Strong /\n.codehilite .gu { color: #800080; font-weight: bold } / Generic.Subheading /\n.codehilite .gt { color: #0044DD } / Generic.Traceback /\n.codehilite .kc { color: #008000; font-weight: bold } / Keyword.Constant /\n.codehilite .kd { color: #008000; font-weight: bold } / Keyword.Declaration /\n.codehilite .kn { color: #008000; font-weight: bold } / Keyword.Namespace /\n.codehilite .kp { color: #008000 } / Keyword.Pseudo /\n.codehilite .kr { color: #008000; font-weight: bold } / Keyword.Reserved /\n.codehilite .kt { color: #B00040 } / Keyword.Type /\n.codehilite .m { color: #666666 } / Literal.Number /\n.codehilite .s { color: #BA2121 } / Literal.String /\n.codehilite .na { color: #7D9029 } / Name.Attribute /\n.codehilite .nb { color: #008000 } / Name.Builtin /\n.codehilite .nc { color: #0000FF; font-weight: bold } / Name.Class /\n.codehilite .no { color: #880000 } / Name.Constant /\n.codehilite .nd { color: #AA22FF } / Name.Decorator /\n.codehilite .ni { color: #999999; font-weight: bold } / Name.Entity /\n.codehilite .ne { color: #D2413A; font-weight: bold } / Name.Exception /\n.codehilite .nf { color: #0000FF } / Name.Function /\n.codehilite .nl { color: #A0A000 } / Name.Label /\n.codehilite .nn { color: #0000FF; font-weight: bold } / Name.Namespace /\n.codehilite .nt { color: #008000; font-weight: bold } / Name.Tag /\n.codehilite .nv { color: #19177C } / Name.Variable /\n.codehilite .ow { color: #AA22FF; font-weight: bold } / Operator.Word /\n.codehilite .w { color: #bbbbbb } / Text.Whitespace /\n.codehilite .mb { color: #666666 } / Literal.Number.Bin /\n.codehilite .mf { color: #666666 } / Literal.Number.Float /\n.codehilite .mh { color: #666666 } / Literal.Number.Hex /\n.codehilite .mi { color: #666666 } / Literal.Number.Integer /\n.codehilite .mo { color: #666666 } / Literal.Number.Oct /\n.codehilite .sa { color: #BA2121 } / Literal.String.Affix /\n.codehilite .sb { color: #BA2121 } / Literal.String.Backtick /\n.codehilite .sc { color: #BA2121 } / Literal.String.Char /\n.codehilite .dl { color: #BA2121 } / Literal.String.Delimiter /\n.codehilite .sd { color: #BA2121; font-style: italic } / Literal.String.Doc /\n.codehilite .s2 { color: #BA2121 } / Literal.String.Double /\n.codehilite .se { color: #BB6622; font-weight: bold } / Literal.String.Escape /\n.codehilite .sh { color: #BA2121 } / Literal.String.Heredoc /\n.codehilite .si { color: #BB6688; font-weight: bold } / Literal.String.Interpol /\n.codehilite .sx { color: #008000 } / Literal.String.Other /\n.codehilite .sr { color: #BB6688 } / Literal.String.Regex /\n.codehilite .s1 { color: #BA2121 } / Literal.String.Single /\n.codehilite .ss { color: #19177C } / Literal.String.Symbol /\n.codehilite .bp { color: #008000 } / Name.Builtin.Pseudo /\n.codehilite .fm { color: #0000FF } / Name.Function.Magic /\n.codehilite .vc { color: #19177C } / Name.Variable.Class /\n.codehilite .vg { color: #19177C } / Name.Variable.Global /\n.codehilite .vi { color: #19177C } / Name.Variable.Instance /\n.codehilite .vm { color: #19177C } / Name.Variable.Magic /\n.codehilite .il { color: #666666 } / Literal.Number.Integer.Long /\n\n.markdown h1 { margin-block-start: 0.34em }\n.markdown h2 { margin-block-start: 0.42em }\n.markdown h3 { margin-block-start: 0.5em }\n.markdown h4 { margin-block-start: 0.67em }\n.markdown h5 { margin-block-start: 0.84em }\n.markdown h6 { margin-block-start: 1.17em }\n.markdown ul { padding-inline-start: 2em }\n.markdown ol { padding-inline-start: 2em }\n.markdown strong { font-weight: 600 }\n.markdown a { color: -webkit-link }\n.markdown a { color: -moz-hyperlinkText }\n");n },n function(Bokeh) {n inject_raw_css(".json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-row .json-formatter-string,\n.json-formatter-row .json-formatter-stringifiable {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string,\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n");n },n function(Bokeh) {n inject_raw_css("table.panel-df {\n margin-left: auto;\n margin-right: auto;\n border: none;\n border-collapse: collapse;\n border-spacing: 0;\n color: black;\n font-size: 12px;\n table-layout: fixed;\n width: 100%;\n}\n\n.panel-df tr, .panel-df th, .panel-df td {\n text-align: right;\n vertical-align: middle;\n padding: 0.5em 0.5em !important;\n line-height: normal;\n white-space: normal;\n max-width: none;\n border: none;\n}\n\n.panel-df tbody {\n display: table-row-group;\n vertical-align: middle;\n border-color: inherit;\n}\n\n.panel-df tbody tr:nth-child(odd) {\n background: #f5f5f5;\n}\n\n.panel-df thead {\n border-bottom: 1px solid black;\n vertical-align: bottom;\n}\n\n.panel-df tr:hover {\n background: lightblue !important;\n cursor: pointer;\n}\n");n },n function(Bokeh) {n / BEGIN bokeh.min.js /n /!n * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn * All rights reserved.n * n * Redistribution and use in source and binary forms, with or without modification,n * are permitted provided that the following conditions are met:n * n * Redistributions of source code must retain the above copyright notice,n * this list of conditions and the following disclaimer.n * n * Redistributions in binary form must reproduce the above copyright notice,n * this list of conditions and the following disclaimer in the documentationn * and/or other materials provided with the distribution.n * n * Neither the name of Anaconda nor the names of any contributorsn * may be used to endorse or promote products derived from this softwaren * without specific prior written permission.n * n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn * THE POSSIBILITY OF SUCH DAMAGE.n /n (function(root, factory) {n const bokeh = factory();n bokeh.__bokeh__ = true;n if (typeof root.Bokeh === "undefined" || typeof root.Bokeh.__bokeh__ === "undefined") {n root.Bokeh = bokeh;n }n const Bokeh = root.Bokeh;n Bokeh[bokeh.version] = bokeh;n })(this, function() {n var define;n var parent_require = typeof require === "function" && requiren return (function(modules, entry, aliases, externals) {n if (aliases === undefined) aliases = {};n if (externals === undefined) externals = {};nn var cache = {};nn var normalize = function(name) {n if (typeof name === "number")n return name;nn if (name === "bokehjs")n return entry;nn var prefix = "@bokehjs/"n if (name.slice(0, prefix.length) === prefix)n name = name.slice(prefix.length)nn var alias = aliases[name]n if (alias != null)n return alias;nn var trailing = name.length > 0 && name[name.lenght-1] === "/";n var index = aliases[name + (trailing ? "" : "/") + "index"];n if (index != null)n return index;nn return name;n }nn var require = function(name) {n var mod = cache[name];n if (!mod) {n var id = normalize(name);nn mod = cache[id];n if (!mod) {n if (!modules[id]) {n if (externals[id] === false || (externals[id] == true && parent_require)) {n try {n mod = {exports: externals[id] ? parent_require(id) : {}};n cache[id] = cache[name] = mod;n return mod.exports;n } catch (e) {}n }nn var err = new Error("Cannot find module ‘" + name + "’");n err.code = ‘MODULE_NOT_FOUND’;n throw err;n }nn mod = {exports: {}};n cache[id] = cache[name] = mod;n modules[id].call(mod.exports, require, mod, mod.exports);n } elsen cache[name] = mod;n }nn return mod.exports;n }n require.resolve = function(name) {n return ""n }nn var main = require(entry);n main.require = require;nn if (typeof Proxy !== "undefined") {n // allow Bokeh.loader["@bokehjs/module/name"] syntaxn main.loader = new Proxy({}, {n get: function(_obj, module) {n return require(module);n }n });n }nn main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {n if (plugin_aliases === undefined) plugin_aliases = {};n if (plugin_externals === undefined) plugin_externals = {};nn for (var name in plugin_modules) {n modules[name] = plugin_modules[name];n }nn for (var name in plugin_aliases) {n aliases[name] = plugin_aliases[name];n }nn for (var name in plugin_externals) {n externals[name] = plugin_externals[name];n }nn var plugin = require(plugin_entry);nn for (var name in plugin) {n main[name] = plugin[name];n }nn return plugin;n }nn return main;n })n ([n function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});e(1).__exportStar(e(2),_)},n function _(t,e,n){n /! *************************************************************************n Copyright (c) Microsoft Corporation.n n Permission to use, copy, modify, and/or distribute this software for anyn purpose with or without fee is hereby granted.n n THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITHn REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITYn AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROMn LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE ORn OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE ORn PERFORMANCE OF THIS SOFTWARE.n ************************************************************************* /n Object.defineProperty(n,"__esModule",{value:!0});var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function o(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function a(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,a=n.call(t),i=[];try{for(;(void 0===e||e– >0)&&!(r=a.next()).done;)i.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=a.return)&&n.call(a)}finally{if(o)throw o.error}}return i}function i(t){return this instanceof i?(this.v=t,this):new i(t)}n.__extends=function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},n.__assign=function(){return n.__assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t},n.__assign.apply(this,arguments)},n.__rest=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(t);o<r.length;o++)e.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(t,r[o])&&(n[r[o]]=t[r[o]])}return n},n.__decorate=function(t,e,n,r){var o,a=arguments.length,i=a<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(t,e,n,r);else for(var u=t.length-1;u>=0;u–)(o=t[u])&&(i=(a<3?o(i):a>3?o(e,n,i):o(e,n))||i);return a>3&&i&&Object.defineProperty(e,n,i),i},n.__param=function(t,e){return function(n,r){e(n,r,t)}},n.__metadata=function(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)},n.__awaiter=function(t,e,n,r){return new(n||(n=Promise))((function(o,a){function i(t){try{c(r.next(t))}catch(t){a(t)}}function u(t){try{c(r.throw(t))}catch(t){a(t)}}function c(t){var e;t.done?o(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,u)}c((r=r.apply(t,e||[])).next())}))},n.__generator=function(t,e){var n,r,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(a){return function(u){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1],o=a;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(a);break}o[2]&&i.ops.pop(),i.trys.pop();continue}a=e.call(t,i)}catch(t){a=[6,t],r=0}finally{n=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,u])}}},n.__createBinding=function(t,e,n,r){void 0===r&&(r=n),t[r]=e[n]},n.__exportStar=function(t,e){for(var n in t)"default"===n||e.hasOwnProperty(n)||(e[n]=t[n])},n.__values=o,n.__read=a,n.__spread=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(a(arguments[e]));return t},n.__spreadArrays=function(){for(var t=0,e=0,n=arguments.length;e<n;e++)t+=arguments[e].length;var r=Array(t),o=0;for(e=0;e<n;e++)for(var a=arguments[e],i=0,u=a.length;i<u;i++,o++)r[o]=a[i];return r},n.__await=i,n.__asyncGenerator=function(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,o=n.apply(t,e||[]),a=[];return r={},u("next"),u("throw"),u("return"),r[Symbol.asyncIterator]=function(){return this},r;function u(t){o[t]&&(r[t]=function(e){return new Promise((function(n,r){a.push([t,e,n,r])>1||c(t,e)}))})}function c(t,e){try{(n=o[t](e)).value instanceof i?Promise.resolve(n.value.v).then(f,l):s(a[0][2],n)}catch(t){s(a[0][3],t)}var n}function f(t){c("next",t)}function l(t){c("throw",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},n.__asyncDelegator=function(t){var e,n;return e={},r("next"),r("throw",(function(t){throw t})),r("return"),e[Symbol.iterator]=function(){return this},e;function r(r,o){e[r]=t[r]?function(e){return(n=!n)?{value:i(t[r](e)),done:"return"===r}:o?o(e):e}:o}},n.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=o(t),e={},r("next"),r("throw"),r("return"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,o){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,o,(e=t[n](e)).done,e.value)}))}}},n.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,"raw",{value:e}):t.raw=e,t},n.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e},n.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},n.__classPrivateFieldGet=function(t,e){if(!e.has(t))throw new TypeError("attempted to get private field on non-instance");return e.get(t)},n.__classPrivateFieldSet=function(t,e,n){if(!e.has(t))throw new TypeError("attempted to set private field on non-instance");return e.set(t,n),n}},n function _(e,r,t){var l=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var t in e)Object.hasOwnProperty.call(e,t)&&(r[t]=e[t]);return r.default=e,r};Object.defineProperty(t,"__esModule",{value:!0});var o=e(3);t.version=o.version;var s=e(4);t.index=s.index,t.embed=l(e(4)),t.protocol=l(e(390)),t._testing=l(e(391));var n=e(19);t.logger=n.logger,t.set_log_level=n.set_log_level;var a=e(27);t.settings=a.settings;var i=e(7);t.Models=i.Models;var v=e(5);t.documents=v.documents;var _=e(392);t.safely=_.safely},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0}),o.version="2.2.3"},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(5),s=e(19),r=e(29),d=e(13),_=e(8),c=e(16),i=e(381),a=e(383),u=e(382);var l=e(381);t.add_document_standalone=l.add_document_standalone,t.index=l.index;var m=e(383);t.add_document_from_session=m.add_document_from_session;var f=e(388);t.embed_items_notebook=f.embed_items_notebook,t.kernels=f.kernels;var g=e(382);async function O(e,o,t,c){_.isString(e)&&(e=JSON.parse(r.unescape(e)));const l={};for(const[o,t]of d.entries(e))l[o]=n.Document.from_json(t);const m=[];for(const e of o){const o=u._resolve_element(e),n=u._resolve_root_elements(e);if(null!=e.docid)m.push(await i.add_document_standalone(l[e.docid],o,n,e.use_for_title));else{if(null==e.token)throw new Error("Error rendering Bokeh items: either ‘docid’ or ‘token’ was expected.");{const r=a._get_ws_url(t,c);s.logger.debug("embed: computed ws url: "+r);try{m.push(await a.add_document_from_session(r,e.token,o,n,e.use_for_title)),console.log("Bokeh items were rendered successfully")}catch(e){console.log("Error rendering Bokeh items:",e)}}}}return m}t.BOKEH_ROOT=g.BOKEH_ROOT,t.embed_item=async function(e,o){const t={},n=r.uuid4();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(u.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n},[_]=await c.defer(()=>O(t,[d]));return _},t.embed_items=async function(e,o,t,n){return await c.defer(()=>O(e,o,t,n))}},n function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const o=e(1);o.__exportStar(e(6),_),o.__exportStar(e(121),_)},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),n=e(7),r=e(3),i=e(19),_=e(313),a=e(14),l=e(15),c=e(17),h=e(31),d=e(9),f=e(13),u=o.__importStar(e(120)),m=e(25),g=e(8),p=e(272),w=e(85),v=e(81),b=e(121);class y{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new b.MessageSentEvent(this.document,"bokeh_event",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=y,y.__name__="EventManager",s.documents=[],s.DEFAULT_TITLE="Bokeh Application";class j{constructor(){s.documents.push(this),this._init_timestamp=Date.now(),this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new y(this),this.idle=new l.Signal0(this,"idle"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter(e=>e instanceof p.LayoutDOM)}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(i.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new _.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new _.LODStart)),this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&this._interactive_plot.trigger_event(new _.LODEnd),this._interactive_plot=null,this._interactive_timestamp=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error("Attempted to overwrite a document with itself");e.clear();const t=d.copy(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error("Somehow we didn’t detach "+e);if(0!=this._all_models.size)throw new Error("this._all_models still had stuff in it: "+this._all_models);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){i.logger.debug("invalidating document models"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=u.union(e,t.references());const t=new Set(this._all_models.values()),s=u.difference(t,e),o=u.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(i.logger.debug("Adding root: "+e),!d.includes(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new b.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof v.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named ‘${e}’`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof b.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new b.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _references_json(e,t=!0){const s=[];for(const o of e){const e=o.struct();e.attributes=o.attributes_as_json(t),delete e.attributes.id,s.push(e)}return s}static _instantiate_object(e,t,s){const o=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(n.Models(t))(o)}static _instantiate_references_json(e,t){const s=new Map;for(const o of e){const e=o.id,n=o.type,r=o.attributes||{};let i=t.get(e);null==i&&(i=j._instantiate_object(e,n,r),null!=o.subtype&&i.set_subtype(o.subtype)),s.set(i.id,i)}return s}static _resolve_refs(e,t,s,o){function n(e){if(c.is_ref(e)){if(t.has(e.id))return t.get(e.id);if(s.has(e.id))return s.get(e.id);throw new Error(`reference ${JSON.stringify(e)} isn’t known (not in Document?)`)}return h.is_NDArray_ref(e)?h.decode_NDArray(e,o):g.isArray(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):g.isPlainObject(e)?function(e){const t={};for(const[s,o]of f.entries(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:r,attributes:i}of e){const e=!t.has(r),_=e?s.get(r):t.get(r),a=j._resolve_refs(i,t,s,o);_.setv(a,{silent:!0}),n.set(r,{instance:_,is_new:e})}const r=[],i=new Set;function _(e){if(e instanceof a.HasProps){if(n.has(e.id)&&!i.has(e.id)){i.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of f.values(o))_(e);s&&(t.finalize(),r.push(t))}}else if(g.isArray(e))for(const t of e)_(t);else if(g.isPlainObject(e))for(const t of f.values(e))_(t)}for(const e of n.values())_(e.instance);for(const e of r)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const r={kind:"ModelChanged",model:{id:e.id},attr:t,new:s};return a.HasProps._json_record_references(o,s,n,{recursive:!0}),r}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),r=Object.keys(t.attributes),_=d.difference(n,r),a=d.difference(r,n),l=d.intersection(n,r),c=[];for(const e of _)i.logger.warn(`Server sent key ${e} but we don’t seem to have it in our JSON`);for(const n of a){const r=t.attributes[n];c.push(j._event_for_attribute_change(e,n,r,s,o))}for(const n of l){const r=e.attributes[n],i=t.attributes[n];null==r&&null==i||(null==r||null==i?c.push(j._event_for_attribute_change(e,n,i,s,o)):m.isEqual(r,i)||c.push(j._event_for_attribute_change(e,n,i,s,o)))}return c.filter(e=>null!=e)}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),r=new Map,i=[];for(const t of e.roots.root_ids)r.set(t,n.get(t)),i.push(t);const _=o(s),a=new Map,l=[];for(const e of s.roots.root_ids)a.set(e,_.get(e)),l.push(e);if(i.sort(),l.sort(),d.difference(i,l).length>0||d.difference(l,i).length>0)throw new Error("Not implemented: computing add/remove of document roots");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=j._events_to_sync_objects(n.get(e),_.get(e),t,c);h=h.concat(s)}return{references:j._references_json(c,!1),events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=this._roots.map(e=>e.id),s=this._all_models.values();return{version:r.version,title:this._title,roots:{root_ids:t,references:j._references_json(s,e)}}}static from_json_string(e){const t=JSON.parse(e);return j.from_json(t)}static from_json(e){i.logger.debug("Creating Document from JSON");const t=e.version,s=-1!==t.indexOf("+")||-1!==t.indexOf("-"),o=`Library versions: JS (${r.version}) / Python (${t})`;s||r.version.replace(/-(dev|rc)\./,"$1")==t?i.logger.debug(o):(i.logger.warn("JS/Python version mismatch"),i.logger.warn(o));const n=e.roots,_=n.root_ids,a=n.references,l=j._instantiate_references_json(a,new Map);j._initialize_references_json(a,new Map,l,new Map);const c=new j;for(const e of _){const t=l.get(e);null!=t&&c.add_root(t)}return c.set_title(e.title),c}replace_with_json(e){j.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){const t=new Set,s=[];for(const o of e){if(o.document!==this)throw i.logger.warn("Cannot create a patch using events from a different document, event had ",o.document," we are ",this),new Error("Cannot create a patch using events from a different document");s.push(o.json(t))}return{events:s,references:j._references_json(t)}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,r=j._instantiate_references_json(o,this._all_models);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case"RootAdded":case"RootRemoved":case"ModelChanged":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)r.set(t,s);else if(!r.has(t))throw i.logger.warn(`Got an event for unknown model ${e.model}"`),new Error("event model wasn’t known");break}}const _=new Map,a=new Map;for(const[e,t]of r)this._all_models.has(e)?_.set(e,t):a.set(e,t);j._initialize_references_json(o,_,a,t);for(const e of n)switch(e.kind){case"MessageSent":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error("expected exactly one buffer");{const[[,e]]=t;n=e}}else n=j._resolve_refs(o,_,a,t);this._trigger_on_message(s,n);break}case"ModelChanged":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const r=e.attr,i=j._resolve_refs(e.new,_,a,t);n.setv({[r]:i},{setter_id:s});break}case"ColumnDataChanged":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const r=j._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in r||(r[e]=n.data[e]);n.setv({data:r},{setter_id:s,check_eq:!1});break}case"ColumnsStreamed":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error("Cannot stream to non-ColumnDataSource");const n=e.data,r=e.rollover;o.stream(n,r,s);break}case"ColumnsPatched":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error("Cannot patch non-ColumnDataSource");const n=e.patches;o.patch(n,s);break}case"RootAdded":{const t=e.model.id,o=r.get(t);this.add_root(o,s);break}case"RootRemoved":{const t=e.model.id,o=r.get(t);this.remove_root(o,s);break}case"TitleChanged":this.set_title(e.title,s);break;default:throw new Error("Unknown patch event "+JSON.stringify(e))}}}s.Document=j,j.__name__="Document"},n function _(e,r,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),t=e(8),d=e(13),i=e(14);s.overrides={};const l=new Map;s.Models=e=>{const r=s.overrides[e]||l.get(e);if(null==r)throw new Error(`Model ‘${e}’ does not exist. This could be due to a widget or a custom model not being registered before first usage.`);return r},s.Models.register=(e,r)=>{s.overrides[e]=r},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,r=!1,s)=>{var o;if(null!=e)for(const n of d.values(e))if(o=n,t.isObject(o)&&o.prototype instanceof i.HasProps){const e=n.__qualified__;r||!l.has(e)?l.set(e,n):null!=s?s(e):console.warn(`Model ‘${e}’ was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>Array.from(l.keys());const n=o.__importStar(e(34));s.register_models(n)},n function _(n,t,r){Object.defineProperty(r,"__esModule",{value:!0});n // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn // Underscore may be freely distributed under the MIT license.n const e=n(9),i=Object.prototype.toString;function o(n){return"[object Number]"===i.call(n)}function c(n){const t=typeof n;return"function"===t||"object"===t&&!!n}r.isBoolean=function(n){return!0===n||!1===n||"[object Boolean]"===i.call(n)},r.isNumber=o,r.isInteger=function(n){return o(n)&&Number.isInteger(n)},r.isString=function(n){return"[object String]"===i.call(n)},r.isFunction=function(n){return"[object Function]"===i.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return e.every(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r<e;r++)if(!t(n[r]))return!1;return!0},r.isTypedArray=function(n){return ArrayBuffer.isView(n)&&!(n instanceof DataView)},r.isObject=c,r.isPlainObject=function(n){return c(n)&&(null==n.constructor||n.constructor===Object)},r.isIterable=function(n){return Symbol.iterator in Object(n)}},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});n // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn // Underscore may be freely distributed under the MIT license.n const r=n(10),o=n(11),i=n(12);e.map=i.map,e.reduce=i.reduce,e.min=i.min,e.min_by=i.min_by,e.max=i.max,e.max_by=i.max_by,e.sum=i.sum,e.cumsum=i.cumsum,e.every=i.every,e.some=i.some,e.find=i.find,e.find_last=i.find_last,e.find_index=i.find_index,e.find_last_index=i.find_last_index,e.sorted_index=i.sorted_index,e.is_empty=i.is_empty;const u=Array.prototype.slice;function c(n){return u.call(n)}function f(n){return[].concat(…n)}function s(n,t){return-1!==n.indexOf(t)}function a(n,t,e=1){o.assert(e>0,"’step’ must be a positive number"),null==t&&(t=n,n=0);const{max:r,ceil:i,abs:u}=Math,c=n<=t?e:-e,f=r(i(u(t-n)/e),0),s=new Array(f);for(let t=0;t<f;t++,n+=c)s[t]=n;return s}e.head=function(n){return n[0]},e.tail=function(n){return n[n.length-1]},e.last=function(n){return n[n.length-1]},e.copy=c,e.concat=f,e.includes=s,e.contains=s,e.nth=function(n,t){return n[t>=0?t:n.length+t]},e.zip=function(…n){if(0==n.length)return[];const t=i.min(n.map(n=>n.length)),e=n.length,r=new Array(t);for(let o=0;o<t;o++){r[o]=new Array(e);for(let t=0;t<e;t++)r[o][t]=n[t][o]}return r},e.unzip=function(n){const t=n.length,e=i.min(n.map(n=>n.length)),r=Array(e);for(let n=0;n<e;n++)r[n]=new Array(t);for(let o=0;o<t;o++)for(let t=0;t<e;t++)r[t][o]=n[o][t];return r},e.range=a,e.linspace=function(n,t,e=100){const r=(t-n)/(e-1),o=new Array(e);for(let t=0;t<e;t++)o[t]=n+r*t;return o},e.transpose=function(n){const t=n.length,e=n[0].length,r=[];for(let o=0;o<e;o++){r[o]=[];for(let e=0;e<t;e++)r[o][e]=n[e][o]}return r},e.argmin=function(n){return i.min_by(a(n.length),t=>n[t])},e.argmax=function(n){return i.max_by(a(n.length),t=>n[t])},e.sort_by=function(n,t){const e=n.map((n,e)=>({value:n,index:e,key:t(n)}));return e.sort((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(e<r||void 0===r)return-1}return n.index-t.index}),e.map(n=>n.value)},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[…t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);s(r,n)||(r.push(n),e.push(o))}return e},e.union=function(…n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[…t]},e.intersection=function(n,…t){const e=[];n:for(const r of n)if(!s(e,r)){for(const n of t)if(!s(n,r))continue n;e.push(r)}return e},e.difference=function(n,…t){const e=f(t);return n.filter(n=>!s(e,n))},e.remove_at=function(n,t){const e=c(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e<n.length;)t(n[e])?n.splice(e,1):e++},e.shuffle=function(n){const t=n.length,e=new Array(t);for(let o=0;o<t;o++){const t=r.randomIn(0,o);t!==o&&(e[o]=e[t]),e[t]=n[o]}return e},e.pairwise=function(n,t){const e=n.length,r=new Array(e-1);for(let o=0;o<e-1;o++)r[o]=t(n[o],n[o+1]);return r},e.reversed=function(n){const t=n.length,e=new Array(t);for(let r=0;r<t;r++)e[t-r-1]=n[r];return e},e.repeat=function(n,t){const e=new Array(t);for(let r=0;r<t;r++)e[r]=n;return e}},n function _(n,t,r){function e(n){if(0==n)return 0;for(;n<=0;)n+=2*Math.PI;for(;n>2*Math.PI;)n-=2*Math.PI;return n}function a(n,t){return e(n-t)}function o(){return Math.random()}Object.defineProperty(r,"__esModule",{value:!0}),r.angle_norm=e,r.angle_dist=a,r.angle_between=function(n,t,r,o){const u=a(t,r);if(0==u)return!1;if(u==2*Math.PI)return!0;const f=e(n),i=a(t,f)<=u&&a(f,r)<=u;return 0==o?i:!i},r.random=o,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(Math.PI/180)},r.degrees=function(n){return n/(Math.PI/180)},r.rnorm=function(n,t){let r,e;for(;r=o(),e=o(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let a=e/r;return a=n+t*a,a},r.clamp=function(n,t,r){return n<t?t:n>r?r:n}},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});class o extends Error{}n.AssertionError=o,o.__name__="AssertionError",n.assert=function(e,r){if(!(!0===e||!1!==e&&e()))throw new o(null!=r?r:"Assertion failed")},n.unreachable=function(){throw new Error("unreachable code")}},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=n(8),o=n(10);function i(n,t,e,…r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,u=new n.constructor(i);let l=0;for(;l<t;l++)u[l]=n[l];for(const n of r)u[l++]=n;for(let r=t+e;r<o;r++)u[l++]=n[r];return u}function u(n,t){return i(n,t,n.length-t)}function l(n,t){const e=n.length,r=new n.constructor(e);for(let o=0;o<e;o++)r[o]=t(n[o],o,n);return r}function c(n,t,e){const r=n.length;if(void 0===e&&0==r)throw new Error("can’t reduce an empty array without an initial value");let o,i;for(void 0===e?(o=n[0],i=1):(o=e,i=0);i<r;i++)o=t(o,n[i],i,n);return o}function f(n){return function(t,e){const r=t.length;let o=n>0?0:r-1;for(;o>=0&&o<r;o+=n)if(e(t[o]))return o;return-1}}function s(n,t){let e=0,r=n.length;for(;e<r;){const o=Math.floor((e+r)/2);n[o]<t?e=o+1:r=o}return e}function h(n,t,e,r,o){const i=(o-e)/(r-t);let u=i*(n-t)+e;return isFinite(u)||(u=i*(n-r)+o,isFinite(u)||e!=o||(u=e)),u}function a(n,t){if(n<t[0])return-1;if(n>t[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return r.isArray(n)?n.slice():new n.constructor(n)},e.splice=i,e.head=u,e.insert=function(n,t,e){return i(n,e,0,t)},e.append=function(n,t){return i(n,n.length,0,t)},e.prepend=function(n,t){return i(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;e<r;e++)if(n[e]===t)return e;return-1},e.subselect=function(n,t){const e=t.length,r=new n.constructor(e);for(let o=0;o<e;o++)r[o]=n[t[o]];return r},e.map=l,e.filter=function(n,t){const e=n.length,r=new n.constructor(e);let o=0;for(let i=0;i<e;i++){const e=n[i];t(e,i,n)&&(r[o++]=e)}return u(r,o)},e.reduce=c,e.min=function(n){let t,e=1/0;for(let r=0,o=n.length;r<o;r++)t=n[r],!isNaN(t)&&t<e&&(e=t);return e},e.max=function(n){let t,e=-1/0;for(let r=0,o=n.length;r<o;r++)t=n[r],!isNaN(t)&&t>e&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;o<i;o++)t=n[o],isNaN(t)||(t<e&&(e=t),t>r&&(r=t));return[e,r]},e.min_by=function(n,t){if(0==n.length)throw new Error("min_by() called with an empty array");let e=n[0],r=t(e);for(let o=1,i=n.length;o<i;o++){const i=n[o],u=t(i);u<r&&(e=i,r=u)}return e},e.max_by=function(n,t){if(0==n.length)throw new Error("max_by() called with an empty array");let e=n[0],r=t(e);for(let o=1,i=n.length;o<i;o++){const i=n[o],u=t(i);u>r&&(e=i,r=u)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;e<r;e++)t+=n[e];return t},e.cumsum=function(n){const t=new n.constructor(n.length);return c(n,(n,e,r)=>t[r]=n+e,0),t},e.every=function(n,t){for(let e=0,r=n.length;e<r;e++)if(!t(n[e]))return!1;return!0},e.some=function(n,t){for(let e=0,r=n.length;e<r;e++)if(t(n[e]))return!0;return!1},e.index_of=function(n,t){for(let e=0,r=n.length;e<r;e++)if(n[e]===t)return e;return-1},e.find_index=f(1),e.find_last_index=f(-1),e.find=function(n,t){const r=e.find_index(n,t);return-1==r?void 0:n[r]},e.find_last=function(n,t){const r=e.find_last_index(n,t);return-1==r?void 0:n[r]},e.sorted_index=s,e.bin_counts=function(n,t){const e=t.length-1,r=Array(e).fill(0);for(let i=0;i<n.length;i++){const u=s(t,n[i]);r[o.clamp(u-1,0,e-1)]+=1}return r},e.interpolate=function(n,t,e){const r=n.length,o=new Array(r);for(let i=0;i<r;i++){const r=n[i];if(isNaN(r)){o[i]=r;continue}const u=a(r,t);if(-1==u)o[i]=e[0];else if(u==t.length)o[i]=e[e.length-1];else if(u==t.length-1||t[u]==r)o[i]=e[u];else{const n=t[u],l=e[u],c=t[u+1],f=e[u+1];o[i]=h(r,n,l,c,f)}}return o},e.left_edge_index=a,e.norm=function(n,t,e){const r=e-t;return l(n,n=>(n-t)/r)}},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const c=e(9);function o(e){return Object.keys(e).length}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(e){return Object.assign({},e)},n.merge=function(e,t){const n=Object.create(Object.prototype),o=c.concat([Object.keys(e),Object.keys(t)]);for(const s of o){const o=e.hasOwnProperty(s)?e[s]:[],r=t.hasOwnProperty(s)?t[s]:[];n[s]=c.union(o,r)}return n},n.size=o,n.isEmpty=function(e){return 0==o(e)},n.to_object=function(e){const t={};for(const[n,c]of e)t[n]=c;return t}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const s=t(1),n=t(15),i=t(17),o=s.__importStar(t(18)),c=s.__importStar(t(21)),a=s.__importStar(t(28)),_=t(29),u=t(9),f=t(13),l=t(8),h=t(25),p=t(5),d=t(30),y=t(31),g=t(25),v=t(33),m=s.__importStar(t(21));class b extends(n.Signalable()){constructor(t={}){var e;super(),this._subtype=void 0,this.document=null,this.destroyed=new n.Signal0(this,"destroyed"),this.change=new n.Signal0(this,"change"),this.transformchange=new n.Signal0(this,"transformchange"),this.properties={},this._pending=!1,this._changing=!1;const r=t instanceof Map?t.get:e=>t[e];for(const[t,{type:e,default_value:s,options:n}]of f.entries(this._props)){let i;i=e instanceof c.Kind?new o.PrimitiveProperty(this,t,e,s,r(t),n):new e(this,t,c.Any,s,r(t),n),this.properties[t]=i}null!==(e=r("__deferred__"))&&void 0!==e&&e||(this.finalize(),this.connect_signals())}set type(t){console.warn("prototype.type = ‘ModelName’ is deprecated, use static __name__ instead"),this.constructor.__name__=t}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:t,__name__:e}=this;return null!=t?`${t}.${e}`:e}static get[Symbol.toStringTag](){return this.__name__}static init_HasProps(){this.prototype._props={},this.prototype._mixins=[],this.define({id:[o.String,()=>_.uniqueId()]})}static _fix_default(t,e){if(void 0!==t){if(l.isFunction(t))return t;if(l.isArray(t))return()=>u.copy(t);if(l.isPlainObject(t))return()=>f.clone(t);if(l.isObject(t))throw new Error(t+" must be explicitly wrapped in a function");return()=>t}}static define(t){for(const[e,r]of f.entries(l.isFunction(t)?t(m):t)){if(null!=this.prototype._props[e])throw new Error(`attempted to redefine property ‘${this.prototype.type}.${e}’`);if(null!=this.prototype[e])throw new Error(`attempted to redefine attribute ‘${this.prototype.type}.${e}’`);Object.defineProperty(this.prototype,e,{get(){return this.properties[e].get_value()},set(t){return this.setv({[e]:t}),this},configurable:!1,enumerable:!0});const[t,s,n]=r,i={type:t,default_value:this._fix_default(s,e),options:n},o=f.clone(this.prototype._props);o[e]=i,this.prototype._props=o}}static internal(t){const e={};for(const[r,s]of f.entries(t)){const[t,n,i={}]=s;e[r]=[t,n,Object.assign(Object.assign({},i),{internal:!0})]}this.define(e)}static mixins(t){function e(t){switch(t){case"line":return a.LineVector;case"fill":return a.FillVector;case"hatch":return a.HatchVector;case"text":return a.TextVector;default:throw new Error(`Unknown property mixin kind ‘${t}’`)}}function r(t,e){const r={};for(const[s,n]of f.entries(e))r[t+s]=n;return r}function s(t){const[e]=Object.keys(t),[r]=e.split("_",1);return r}l.isArray(t)||(t=[t]);const n={},i=[];for(const o of t)if(l.isString(o)){const[t,s=""]=o.split(":"),c=e(t);i.push(o),f.extend(n,r(s,c))}else if(l.isArray(o)){const[t,e]=o;i.push(`${s(e)}:${t}`),f.extend(n,r(t,e))}else{const t=o;i.push(s(t)),f.extend(n,t)}this.define(n),this.prototype._mixins=[…this.prototype._mixins,…i]}static override(t){for(const[e,r]of f.entries(t)){const t=this._fix_default(r,e),s=this.prototype._props[e];if(null==s)throw new Error(`attempted to override nonexistent ‘${this.prototype.type}.${e}’`);const n=f.clone(this.prototype._props);n[e]=Object.assign(Object.assign({},s),{default_value:t}),this.prototype._props=n}}toString(){return`${this.type}(${this.id})`}property(t){const e=this.properties[t];if(null!=e)return e;throw new Error(`unknown property ${this.type}.${t}`)}get attributes(){const t={};for(const e of this)t[e.attr]=e.get_value();return t}[g.equals](t,e){for(const r of this){const s=t.property(r.attr);if(e.eq(r.get_value(),s.get_value()))return!1}return!0}[v.pretty](t){const e=t.token,r=[];for(const s of this)if(s.dirty){const n=s.get_value();r.push(`${s.attr}${e(":")} ${t.to_string(n)}`)}return`${this.constructor.__qualified__}${e("(")}${e("{")}${r.join(e(",")+" ")}${e("}")}${e(")")}`}finalize(){for(const t of this)null!=t.spec.transform&&this.connect(t.spec.transform.change,()=>this.transformchange.emit());this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){n.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return new this.constructor(this.attributes)}_setv(t,e){const r=e.check_eq,s=[],n=this._changing;this._changing=!0;for(const[e,n]of t)!1!==r&&h.isEqual(e.get_value(),n)||(e.set_value(n),s.push(e));s.length>0&&(this._pending=!0);for(const t of s)t.change.emit();if(!n){if(!e.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(t,e={}){const r=f.entries(t);if(0==r.length)return;if(!0===e.silent){for(const[t,e]of r)this.properties[t].set_value(e);return}const s=new Map,n=new Map;for(const[t,e]of r){const r=this.properties[t];s.set(r,e),n.set(r,r.get_value())}this._setv(s,e);const{document:i}=this;if(null!=i){const t=[];for(const[e,r]of n)t.push([e,r,e.get_value()]);for(const[,e,r]of t)if(this._needs_invalidate(e,r)){i._invalidate_all_models();break}this._push_changes(t,e)}}getv(t){return this.property(t).get_value()}ref(){return{id:this.id}}struct(){const t={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(t.subtype=this._subtype),t}set_subtype(t){this._subtype=t}*[Symbol.iterator](){yield*f.values(this.properties)}*syncable_properties(){for(const t of this)t.syncable&&(yield t)}serializable_attributes(){const t={};for(const e of this.syncable_properties())t[e.attr]=e.get_value();return t}static _value_to_json(t){if(t instanceof b)return t.ref();if(d.is_NDArray(t))return y.encode_NDArray(t);if(l.isArray(t)||l.isTypedArray(t)){const e=t.length,r=new Array(e);for(let s=0;s<e;s++){const e=t[s];r[s]=b._value_to_json(e)}return r}if(l.isPlainObject(t)){const e={};for(const[r,s]of f.entries(t))e[r]=b._value_to_json(s);return e}return t}attributes_as_json(t=!0,e=b._value_to_json){const r={};for(const s of this)s.syncable&&(t||s.dirty)&&(r[s.attr]=e(s.get_value()));return r}static _json_record_references(t,e,r,s){const{recursive:n}=s;if(i.is_ref(e)){const s=t.get_model_by_id(e.id);null==s||r.has(s)||b._value_record_references(s,r,{recursive:n})}else if(l.isArray(e))for(const s of e)b._json_record_references(t,s,r,{recursive:n});else if(l.isPlainObject(e))for(const s of f.values(e))b._json_record_references(t,s,r,{recursive:n})}static _value_record_references(t,e,r){const{recursive:s}=r;if(t instanceof b){if(!e.has(t)&&(e.add(t),s)){const r=t._immediate_references();for(const t of r)b._value_record_references(t,e,{recursive:!0})}}else if(l.isArray(t))for(const r of t)b._value_record_references(r,e,{recursive:s});else if(l.isPlainObject(t))for(const r of f.values(t))b._value_record_references(r,e,{recursive:s})}_immediate_references(){const t=new Set;for(const e of this.syncable_properties()){const r=e.get_value();b._value_record_references(r,t,{recursive:!1})}return t}references(){const t=new Set;return b._value_record_references(this,t,{recursive:!0}),t}_doc_attached(){}_doc_detached(){}attach_document(t){if(null!=this.document&&this.document!=t)throw new Error("models must be owned by only a single document");this.document=t,this._doc_attached()}detach_document(){this._doc_detached(),this.document=null}_needs_invalidate(t,e){const r=new Set;b._value_record_references(e,r,{recursive:!1});const s=new Set;b._value_record_references(t,s,{recursive:!1});for(const t of r)if(!s.has(t))return!0;for(const t of s)if(!r.has(t))return!0;return!1}_push_changes(t,e={}){const{document:r}=this;if(null==r)return;const{setter_id:s}=e,n=[];for(const[e,i,o]of t)e.syncable&&n.push(new p.ModelChangedEvent(r,this,e.attr,i,o,s));if(0!=n.length){let t;1==n.length?[t]=n:t=new p.DocumentEventBatch(r,n,s),r._trigger_on_change(t)}}materialize_dataspecs(t){const e={};for(const r of this){if(!(r instanceof o.VectorSpec))continue;if(r.optional&&null==r.spec.value&&!r.dirty)continue;const s=r.attr,n=r.array(t);e["_"+s]=n,r instanceof o.DistanceSpec&&(e["max_"+s]=u.max(n))}return e}on_change(t,e){for(const r of l.isArray(t)?t:[t])this.connect(r.change,e)}}r.HasProps=b,b.init_HasProps()},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const l=n(16),s=n(9);class o{constructor(n,t){this.sender=n,this.name=t}connect(n,t=null){c.has(this.sender)||c.set(this.sender,[]);const e=c.get(this.sender);if(null!=u(e,this,n,t))return!1;const l=null!=t?t:n;r.has(l)||r.set(l,[]);const s=r.get(l),o={signal:this,slot:n,context:t};return e.push(o),s.push(o),!0}disconnect(n,t=null){const e=c.get(this.sender);if(null==e||0===e.length)return!1;const l=u(e,this,n,t);if(null==l)return!1;const s=null!=t?t:n,o=r.get(s);return l.signal=null,a(e),a(o),!0}emit(n){var t;const e=null!==(t=c.get(this.sender))&&void 0!==t?t:[];for(const{signal:t,slot:l,context:s}of e)t===this&&l.call(s,n,this.sender)}}e.Signal=o,o.__name__="Signal";class i extends o{emit(){super.emit(void 0)}}e.Signal0=i,i.__name__="Signal0",function(n){n.disconnectBetween=function(n,t){const e=c.get(n);if(null==e||0===e.length)return;const l=r.get(t);if(null!=l&&0!==l.length){for(const t of l){if(null==t.signal)return;t.signal.sender===n&&(t.signal=null)}a(e),a(l)}},n.disconnectSender=function(n){var t;const e=c.get(n);if(null!=e&&0!==e.length){for(const n of e){if(null==n.signal)return;const e=null!==(t=n.context)&&void 0!==t?t:n.slot;n.signal=null,a(r.get(e))}a(e)}},n.disconnectReceiver=function(n){const t=r.get(n);if(null!=t&&0!==t.length){for(const n of t){if(null==n.signal)return;const t=n.signal.sender;n.signal=null,a(c.get(t))}a(t)}},n.disconnectAll=function(n){const t=c.get(n);if(null!=t&&0!==t.length){for(const n of t)n.signal=null;a(t)}const e=r.get(n);if(null!=e&&0!==e.length){for(const n of e)n.signal=null;a(e)}}}(o||(e.Signal=o={})),e.Signalable=function(){return class{connect(n,t){return n.connect(t,this)}disconnect(n,t){return n.disconnect(t,this)}}};const c=new WeakMap,r=new WeakMap;function u(n,t,e,l){return s.find(n,n=>n.signal===t&&n.slot===e&&n.context===l)}const g=new Set;function a(n){0===g.size&&l.defer(f),g.add(n)}function f(){for(const n of g)s.remove_by(n,n=>null==n.signal);g.clear()}},n function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.delay=n // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn // Underscore may be freely distributed under the MIT license.n function(n,e){return setTimeout(n,e)};const u="function"==typeof requestAnimationFrame?requestAnimationFrame:setImmediate;t.defer=function(n){return new Promise(e=>{u(()=>e(n()))})},t.throttle=function(n,e,t={}){let u,o,i,r=null,l=0;const c=function(){l=!1===t.leading?0:Date.now(),r=null,i=n.apply(u,o),r||(u=o=null)};return function(){const a=Date.now();l||!1!==t.leading||(l=a);const f=e-(a-l);return u=this,o=arguments,f<=0||f>e?(r&&(clearTimeout(r),r=null),l=a,i=n.apply(u,o),r||(u=o=null)):r||!1===t.trailing||(r=setTimeout(c,f)),i}},t.once=function(n){let e,t=!1;return function(){return t||(t=!0,e=n()),e}}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(8),r=e(13);t.is_ref=function(e){if(i.isPlainObject(e)){const n=r.keys(e);return 1==n.length&&"id"==n[0]}return!1}},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const a=e(1),s=e(15),i=e(19),r=a.__importStar(e(20)),l=e(24),o=e(9),c=e(12),_=e(22),u=e(8),d=e(27);function p(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function S(e){return u.isPlainObject(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}n.isSpec=S;class m{constructor(e,t,n,a,i,r={}){var l,o;let c;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=a,this._dirty=!1,this.change=new s.Signal0(this.obj,"change"),this.internal=null!==(l=r.internal)&&void 0!==l&&l,this.optional=null!==(o=r.optional)&&void 0!==o&&o,void 0!==i)c=i,this._dirty=!0;else{const t=this._default_override();c=void 0!==t?t:void 0!==a?a(e):null}this._update(c)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){null!=e&&this.validate(e),this.spec={value:e}}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${p(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj.type}.${this.attr} given invalid value: ${p(e)}`)}valid(e){return this.kind.valid(e)}value(e=!0){if(!this.is_value)throw new Error("attempted to retrieve property value for property without value specification");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=m,m.__name__="Property";class h extends m{}n.PrimitiveProperty=h,h.__name__="PrimitiveProperty";class v extends m{}n.Any=v,v.__name__="Any";class g extends m{valid(e){return u.isArray(e)||e instanceof Float32Array||e instanceof Float64Array}}n.Array=g,g.__name__="Array";class x extends m{valid(e){return u.isBoolean(e)}}n.Boolean=x,x.__name__="Boolean";class y extends m{valid(e){return u.isString(e)&&_.is_color(e)}}n.Color=y,y.__name__="Color";class f extends m{}n.Instance=f,f.__name__="Instance";class A extends m{valid(e){return u.isNumber(e)}}n.Number=A,A.__name__="Number";class P extends A{valid(e){return u.isNumber(e)&&(0|e)==e}}n.Int=P,P.__name__="Int";class C extends A{}n.Angle=C,C.__name__="Angle";class b extends A{valid(e){return u.isNumber(e)&&0<=e&&e<=1}}n.Percent=b,b.__name__="Percent";class L extends m{valid(e){return u.isString(e)}}n.String=L,L.__name__="String";class N extends m{valid(e){return null===e||u.isString(e)}}n.NullString=N,N.__name__="NullString";class T extends L{}n.FontSize=T,T.__name__="FontSize";class q extends L{_default_override(){return d.settings.dev?"Bokeh":void 0}}n.Font=q,q.__name__="Font";class B extends m{valid(e){return u.isString(e)&&o.includes(this.enum_values,e)}}function M(e){return class extends B{get enum_values(){return[…e]}}}n.EnumProperty=B,B.__name__="EnumProperty",n.Enum=M;class w extends B{get enum_values(){return[…r.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;n<e.length;n++)switch(e[n]){case"clock":t[n]=0;break;case"anticlock":t[n]=1}return t}}n.Direction=w,w.__name__="Direction",n.Anchor=M(r.Anchor),n.AngleUnits=M(r.AngleUnits),n.BoxOrigin=M(r.BoxOrigin),n.ButtonType=M(r.ButtonType),n.CalendarPosition=M(r.CalendarPosition),n.Dimension=M(r.Dimension),n.Dimensions=M(r.Dimensions),n.Distribution=M(r.Distribution),n.FontStyle=M(r.FontStyle),n.HatchPatternType=M(r.HatchPatternType),n.HTTPMethod=M(r.HTTPMethod),n.HexTileOrientation=M(r.HexTileOrientation),n.HoverMode=M(r.HoverMode),n.LatLon=M(r.LatLon),n.LegendClickPolicy=M(r.LegendClickPolicy),n.LegendLocation=M(r.LegendLocation),n.LineCap=M(r.LineCap),n.LineJoin=M(r.LineJoin),n.LinePolicy=M(r.LinePolicy),n.Location=M(r.Location),n.Logo=M(r.Logo),n.MarkerType=M(r.MarkerType),n.MutedPolicy=M(r.MutedPolicy),n.Orientation=M(r.Orientation),n.OutputBackend=M(r.OutputBackend),n.PaddingUnits=M(r.PaddingUnits),n.Place=M(r.Place),n.PointPolicy=M(r.PointPolicy),n.RadiusDimension=M(r.RadiusDimension),n.RenderLevel=M(r.RenderLevel),n.RenderMode=M(r.RenderMode),n.ResetPolicy=M(r.ResetPolicy),n.RoundingFunction=M(r.RoundingFunction),n.Side=M(r.Side),n.SizingMode=M(r.SizingMode),n.Sort=M(r.Sort),n.SpatialUnits=M(r.SpatialUnits),n.StartEnd=M(r.StartEnd),n.StepMode=M(r.StepMode),n.TapBehavior=M(r.TapBehavior),n.TextAlign=M(r.TextAlign),n.TextBaseline=M(r.TextBaseline),n.TextureRepetition=M(r.TextureRepetition),n.TickLabelOrientation=M(r.TickLabelOrientation),n.TooltipAttachment=M(r.TooltipAttachment),n.UpdateMode=M(r.UpdateMode),n.VerticalAlign=M(r.VerticalAlign);class D extends m{get_value(){return null===this.spec.value?null:this.spec}_update(e){S(e)?this.spec=e:this.spec={value:e},null!=this.spec.value&&this.validate(this.spec.value)}}n.ScalarSpec=D,D.__name__="ScalarSpec";class k extends D{}n.AnyScalar=k,k.__name__="AnyScalar";class F extends D{}n.ColorScalar=F,F.__name__="ColorScalar";class U extends D{}n.NumberScalar=U,U.__name__="NumberScalar";class z extends D{}n.StringScalar=z,z.__name__="StringScalar";class O extends D{}n.NullStringScalar=O,O.__name__="NullStringScalar";class R extends D{}n.ArrayScalar=R,R.__name__="ArrayScalar";class $ extends D{}n.LineJoinScalar=$,$.__name__="LineJoinScalar";class E extends D{}n.LineCapScalar=E,E.__name__="LineCapScalar";class H extends D{}n.FontSizeScalar=H,H.__name__="FontSizeScalar";class j extends D{}n.FontStyleScalar=j,j.__name__="FontStyleScalar";class X extends D{}n.TextAlignScalar=X,X.__name__="TextAlignScalar";class Y extends D{}n.TextBaselineScalar=Y,Y.__name__="TextBaselineScalar";class I extends m{get_value(){return null===this.spec.value?null:this.spec}_update(e){S(e)?this.spec=e:this.spec={value:e},null!=this.spec.value&&this.validate(this.spec.value)}array(e){var t;let n;const a=null!==(t=e.get_length())&&void 0!==t?t:1;if(null!=this.spec.field){const t=e.get_column(this.spec.field);if(null!=t)n=this.normalize(t);else{i.logger.warn(`attempted to retrieve property array for nonexistent field ‘${this.spec.field}’`);const e=new l.NumberArray(a);e.fill(NaN),n=e}}else if(null!=this.spec.expr)n=this.normalize(this.spec.expr.v_compute(e));else{const e=this.value(!1);if(u.isNumber(e)){const t=new l.NumberArray(a);t.fill(e),n=t}else n=o.repeat(e,a)}return null!=this.spec.transform&&(n=this.spec.transform.v_compute(n)),n}}n.VectorSpec=I,I.__name__="VectorSpec";class J extends I{}n.DataSpec=J,J.__name__="DataSpec";class V extends I{_update(e){super._update(e),null==this.spec.units&&(this.spec.units=this.default_units);const t=this.spec.units;if(!o.includes(this.valid_units,t))throw new Error(`units must be one of ${this.valid_units.join(", ")}; got: ${t}`)}get units(){return this.spec.units}set units(e){this.spec.units=e}}n.UnitsSpec=V,V.__name__="UnitsSpec";class G extends V{array(e){return new l.NumberArray(super.array(e))}}n.NumberUnitsSpec=G,G.__name__="NumberUnitsSpec";class K extends J{}n.BaseCoordinateSpec=K,K.__name__="BaseCoordinateSpec";class Q extends K{}n.CoordinateSpec=Q,Q.__name__="CoordinateSpec";class W extends K{}n.CoordinateSeqSpec=W,W.__name__="CoordinateSeqSpec";class Z extends K{}n.CoordinateSeqSeqSeqSpec=Z,Z.__name__="CoordinateSeqSeqSeqSpec";class ee extends Q{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSpec=ee,ee.__name__="XCoordinateSpec";class te extends Q{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSpec=te,te.__name__="YCoordinateSpec";class ne extends W{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSeqSpec=ne,ne.__name__="XCoordinateSeqSpec";class ae extends W{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSeqSpec=ae,ae.__name__="YCoordinateSeqSpec";class se extends Z{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSeqSeqSeqSpec=se,se.__name__="XCoordinateSeqSeqSeqSpec";class ie extends Z{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSeqSeqSeqSpec=ie,ie.__name__="YCoordinateSeqSeqSeqSpec";class re extends G{get default_units(){return"rad"}get valid_units(){return[…r.AngleUnits]}normalize(e){return"deg"==this.spec.units&&(e=c.map(e,e=>e*Math.PI/180)),e=c.map(e,e=>-e),super.normalize(e)}}n.AngleSpec=re,re.__name__="AngleSpec";class le extends G{get default_units(){return"data"}get valid_units(){return[…r.SpatialUnits]}}n.DistanceSpec=le,le.__name__="DistanceSpec";class oe extends J{array(e){return new Uint8Array(super.array(e))}}n.BooleanSpec=oe,oe.__name__="BooleanSpec";class ce extends J{array(e){return new l.NumberArray(super.array(e))}}n.NumberSpec=ce,ce.__name__="NumberSpec";class _e extends J{array(e){const t=super.array(e),n=t.length,a=new l.ColorArray(n);for(let e=0;e<n;e++){const n=t[e];if(u.isNumber(n))a[e]=n;else{const t=_.color2rgba(n);a[e]=_.encode_rgba(t)}}return a}}n.ColorSpec=_e,_e.__name__="ColorSpec";class ue extends J{}n.FontSizeSpec=ue,ue.__name__="FontSizeSpec";class de extends J{}n.MarkerSpec=de,de.__name__="MarkerSpec";class pe extends J{}n.StringSpec=pe,pe.__name__="StringSpec";class Se extends J{}n.NullStringSpec=Se,Se.__name__="NullStringSpec";class me extends J{}n.NDArraySpec=me,me.__name__="NDArraySpec"},n function _(e,l,o){Object.defineProperty(o,"__esModule",{value:!0});const n=e(8),t=e(13),s={};class g{constructor(e,l){this.name=e,this.level=l}}o.LogLevel=g,g.__name__="LogLevel";class r{constructor(e,l=r.INFO){this._name=e,this.set_level(l)}static get levels(){return Object.keys(r.log_levels)}static get(e,l=r.INFO){if(e.length>0){let o=s[e];return null==o&&(s[e]=o=new r(e,l)),o}throw new TypeError("Logger.get() expects a non-empty string name and an optional log-level")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof g)this._log_level=e;else{if(!n.isString(e)||null==r.log_levels[e])throw new Error("Logger.set_level() expects a log-level object or a string name of a log-level");this._log_level=r.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of t.entries(r.log_levels))o.level<this._log_level.level||this._log_level.level===r.OFF.level?this[e]=function(){}:this[e]=i(e,l)}trace(…e){}debug(…e){}info(…e){}warn(…e){}error(…e){}}function i(e,l){return null!=console[e]?console[e].bind(console,l):null!=console.log?console.log.bind(console,l):function(){}}function _(e){const l=o.logger.level;return n.isString(e)&&null==r.log_levels[e]?(console.log(`[bokeh] unrecognized logging level ‘${e}’ passed to Bokeh.set_log_level(), ignoring`),console.log("[bokeh] valid log levels are: "+r.levels.join(", "))):(console.log(`[bokeh] setting log level to: ‘${n.isString(e)?e:e.level}’`),o.logger.set_level(e)),l}o.Logger=r,r.__name__="Logger",r.TRACE=new g("trace",0),r.DEBUG=new g("debug",1),r.INFO=new g("info",2),r.WARN=new g("warn",6),r.ERROR=new g("error",7),r.FATAL=new g("fatal",8),r.OFF=new g("off",9),r.log_levels={trace:r.TRACE,debug:r.DEBUG,info:r.INFO,warn:r.WARN,error:r.ERROR,fatal:r.FATAL,off:r.OFF},o.logger=r.get("bokeh"),o.set_log_level=_,o.with_log_level=function(e,l){const o=_(e);try{l()}finally{_(o)}}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(21);t.Align=o.Enum("start","center","end"),t.Anchor=o.Enum("top_left","top_center","top_right","center_left","center","center_right","bottom_left","bottom_center","bottom_right"),t.AngleUnits=o.Enum("deg","rad"),t.BoxOrigin=o.Enum("corner","center"),t.ButtonType=o.Enum("default","primary","success","warning","danger"),t.CalendarPosition=o.Enum("auto","above","below"),t.Dimension=o.Enum("width","height"),t.Dimensions=o.Enum("width","height","both"),t.Direction=o.Enum("clock","anticlock"),t.Distribution=o.Enum("uniform","normal"),t.FontStyle=o.Enum("normal","italic","bold","bold italic"),t.HatchPatternType=o.Enum("blank","dot","ring","horizontal_line","vertical_line","cross","horizontal_dash","vertical_dash","spiral","right_diagonal_line","left_diagonal_line","diagonal_cross","right_diagonal_dash","left_diagonal_dash","horizontal_wave","vertical_wave","criss_cross"," ",".","o","-","|","+",’"’,":","@","/","\\","x",",","`","v",">",""),t.HTTPMethod=o.Enum("POST","GET"),t.HexTileOrientation=o.Enum("pointytop","flattop"),t.HoverMode=o.Enum("mouse","hline","vline"),t.LatLon=o.Enum("lat","lon"),t.LegendClickPolicy=o.Enum("none","hide","mute"),t.LegendLocation=t.Anchor,t.LineCap=o.Enum("butt","round","square"),t.LineJoin=o.Enum("miter","round","bevel"),t.LinePolicy=o.Enum("prev","next","nearest","interp","none"),t.Location=o.Enum("above","below","left","right"),t.Logo=o.Enum("normal","grey"),t.MarkerType=o.Enum("asterisk","circle","circle_cross","circle_dot","circle_x","circle_y","cross","dash","diamond","diamond_cross","diamond_dot","dot","hex","hex_dot","inverted_triangle","plus","square","square_cross","square_dot","square_pin","square_x","triangle","triangle_dot","triangle_pin","x","y"),t.MutedPolicy=o.Enum("show","ignore"),t.Orientation=o.Enum("vertical","horizontal"),t.OutputBackend=o.Enum("canvas","svg","webgl"),t.PaddingUnits=o.Enum("percent","absolute"),t.Place=o.Enum("above","below","left","right","center"),t.PointPolicy=o.Enum("snap_to_data","follow_mouse","none"),t.RadiusDimension=o.Enum("x","y","max","min"),t.RenderLevel=o.Enum("image","underlay","glyph","guide","annotation","overlay"),t.RenderMode=o.Enum("canvas","css"),t.ResetPolicy=o.Enum("standard","event_only"),t.RoundingFunction=o.Enum("round","nearest","floor","rounddown","ceil","roundup"),t.SelectionMode=o.Enum("replace","append","intersect","subtract"),t.Side=o.Enum("above","below","left","right"),t.SizingMode=o.Enum("stretch_width","stretch_height","stretch_both","scale_width","scale_height","scale_both","fixed"),t.Sort=o.Enum("ascending","descending"),t.SpatialUnits=o.Enum("screen","data"),t.StartEnd=o.Enum("start","end"),t.StepMode=o.Enum("after","before","center"),t.TapBehavior=o.Enum("select","inspect"),t.TextAlign=o.Enum("left","right","center"),t.TextBaseline=o.Enum("top","middle","bottom","alphabetic","hanging","ideographic"),t.TextureRepetition=o.Enum("repeat","repeat_x","repeat_y","no_repeat"),t.TickLabelOrientation=o.Enum("vertical","horizontal","parallel","normal"),t.TooltipAttachment=o.Enum("horizontal","vertical","left","right","above","below"),t.UpdateMode=o.Enum("replace","append"),t.VerticalAlign=o.Enum("top","middle","bottom")},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1).__importStar(e(8)),r=e(22);class i{}t.Kind=i,i.__name__="Kind",function(e){class n extends i{valid(e){return!0}}n.__name__="Any",e.Any=n;class t extends i{valid(e){return!0}}t.__name__="Unknown",e.Unknown=t;class l extends i{valid(e){return s.isBoolean(e)}}l.__name__="Boolean",e.Boolean=l;class a extends i{constructor(e){super(),this.obj_type=e}valid(e){return!0}}a.__name__="Ref",e.Ref=a;class _ extends i{valid(e){return s.isNumber(e)}}_.__name__="Number",e.Number=_;class u extends _{valid(e){return super.valid(e)&&s.isInteger(e)}}u.__name__="Int",e.Int=u;class d extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some(n=>n.valid(e))}}d.__name__="Or",e.Or=d;class o extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!s.isArray(e))return!1;for(let n=0;n<this.types.length;n++){const t=this.types[n],s=e[n];if(!t.valid(s))return!1}return!0}}o.__name__="Tuple",e.Tuple=o;class c extends i{constructor(e){super(),this.item_type=e}valid(e){return s.isArray(e)&&e.every(e=>this.item_type.valid(e))}}c.__name__="Array",e.Array=c;class m extends i{valid(e){return null===e}}m.__name__="Null",e.Null=m;class p extends i{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}p.__name__="Nullable",e.Nullable=p;class y extends i{valid(e){return s.isString(e)}}y.__name__="String",e.String=y;class v extends i{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}v.__name__="Enum",e.Enum=v;class h extends i{constructor(e){super(),this.item_type=e}valid(e){if(!s.isPlainObject(e))return!1;for(const n in e)if(e.hasOwnProperty(n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}h.__name__="Struct",e.Struct=h;class w extends i{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof Map))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}w.__name__="Dict",e.Dict=w;class K extends i{valid(e){return s.isString(e)&&r.is_color(e)}}K.__name__="Color",e.Color=K;class f extends _{valid(e){return super.valid(e)&&0<=e&&e<=1}}f.__name__="Percent",e.Percent=f}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null,t.Nullable=e=>new t.Kinds.Nullable(e),t.Or=(…e)=>new t.Kinds.Or(e),t.Tuple=(…e)=>new t.Kinds.Tuple(e),t.Array=e=>new t.Kinds.Array(e),t.Struct=e=>new t.Kinds.Struct(e),t.Dict=(e,n)=>new t.Kinds.Dict(e,n),t.Enum=(…e)=>new t.Kinds.Enum(e),t.Ref=e=>new t.Kinds.Ref(e),t.Percent=new t.Kinds.Percent,t.Color=new t.Kinds.Color,t.Auto=t.Enum("auto"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(23),l=e(9);function a(e){const r=Number(e).toString(16);return 1==r.length?"0"+r:r}function o(e){if(0==(e+="").indexOf("#"))return e;if(n.is_svg_color(e))return n.svg_colors[e];if(0==e.indexOf("rgb")){const r=e.replace(/^rgba?\(|\\s+|\)$/g,"").split(",");let t=r.slice(0,3).map(a).join("");return 4==r.length&&(t+=a(Math.floor(255*parseFloat(r[3])))),"#"+t.slice(0,8)}return e}function s(e){let r;switch(e.substring(0,4)){case"rgba":r={start:"rgba(",len:4,alpha:!0};break;case"rgb(":r={start:"rgb(",len:3,alpha:!1};break;default:return!1}if(new RegExp(".*?(\\.).*(,)").test(e))return!1;const t=e.replace(r.start,"").replace(")","").split(",").map(parseFloat);return t.length==r.len&&((!r.alpha||0<=t[3]&&t[3]<=1)&&!l.includes(t.slice(0,3).map(e=>0<=e&&e<=255),!1))}t.is_color=function(e){return n.is_svg_color(e.toLowerCase())||"#"==e.substring(0,1)||s(e)},t.rgb2hex=function(e,r,t){return`#${a(255&e)}${a(255&r)}${a(255&t)}`},t.color2hex=o,t.encode_rgba=function([e,r,t,n]){return(255*e|0)<<24|(255*r|0)<<16|(255*t|0)<<8|255*n|0},t.decode_rgba=function(e){return[(e>>24&255)/255,(e>>16&255)/255,(e>>8&255)/255,(e>>0&255)/255]},t.color2rgba=function(e,r=1){if(!e)return[0,0,0,0];let t=o(e);t=t.replace(/ |#/g,\"\"),t.length<=4&&(t=t.replace(/(.)/g,\"$1$1\"));const n=t.match(/../g).map(e=>parseInt(e,16)/255);for(;n.length<3;)n.push(0);return n.length<4&&n.push(r),n.slice(0,4)},t.valid_rgb=s},\n function _(e,F,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.svg_colors={indianred:\"#CD5C5C\",lightcoral:\"#F08080\",salmon:\"#FA8072\",darksalmon:\"#E9967A\",lightsalmon:\"#FFA07A\",crimson:\"#DC143C\",red:\"#FF0000\",firebrick:\"#B22222\",darkred:\"#8B0000\",pink:\"#FFC0CB\",lightpink:\"#FFB6C1\",hotpink:\"#FF69B4\",deeppink:\"#FF1493\",mediumvioletred:\"#C71585\",palevioletred:\"#DB7093\",coral:\"#FF7F50\",tomato:\"#FF6347\",orangered:\"#FF4500\",darkorange:\"#FF8C00\",orange:\"#FFA500\",gold:\"#FFD700\",yellow:\"#FFFF00\",lightyellow:\"#FFFFE0\",lemonchiffon:\"#FFFACD\",lightgoldenrodyellow:\"#FAFAD2\",papayawhip:\"#FFEFD5\",moccasin:\"#FFE4B5\",peachpuff:\"#FFDAB9\",palegoldenrod:\"#EEE8AA\",khaki:\"#F0E68C\",darkkhaki:\"#BDB76B\",lavender:\"#E6E6FA\",thistle:\"#D8BFD8\",plum:\"#DDA0DD\",violet:\"#EE82EE\",orchid:\"#DA70D6\",fuchsia:\"#FF00FF\",magenta:\"#FF00FF\",mediumorchid:\"#BA55D3\",mediumpurple:\"#9370DB\",blueviolet:\"#8A2BE2\",darkviolet:\"#9400D3\",darkorchid:\"#9932CC\",darkmagenta:\"#8B008B\",purple:\"#800080\",indigo:\"#4B0082\",slateblue:\"#6A5ACD\",darkslateblue:\"#483D8B\",mediumslateblue:\"#7B68EE\",greenyellow:\"#ADFF2F\",chartreuse:\"#7FFF00\",lawngreen:\"#7CFC00\",lime:\"#00FF00\",limegreen:\"#32CD32\",palegreen:\"#98FB98\",lightgreen:\"#90EE90\",mediumspringgreen:\"#00FA9A\",springgreen:\"#00FF7F\",mediumseagreen:\"#3CB371\",seagreen:\"#2E8B57\",forestgreen:\"#228B22\",green:\"#008000\",darkgreen:\"#006400\",yellowgreen:\"#9ACD32\",olivedrab:\"#6B8E23\",olive:\"#808000\",darkolivegreen:\"#556B2F\",mediumaquamarine:\"#66CDAA\",darkseagreen:\"#8FBC8F\",lightseagreen:\"#20B2AA\",darkcyan:\"#008B8B\",teal:\"#008080\",aqua:\"#00FFFF\",cyan:\"#00FFFF\",lightcyan:\"#E0FFFF\",paleturquoise:\"#AFEEEE\",aquamarine:\"#7FFFD4\",turquoise:\"#40E0D0\",mediumturquoise:\"#48D1CC\",darkturquoise:\"#00CED1\",cadetblue:\"#5F9EA0\",steelblue:\"#4682B4\",lightsteelblue:\"#B0C4DE\",powderblue:\"#B0E0E6\",lightblue:\"#ADD8E6\",skyblue:\"#87CEEB\",lightskyblue:\"#87CEFA\",deepskyblue:\"#00BFFF\",dodgerblue:\"#1E90FF\",cornflowerblue:\"#6495ED\",royalblue:\"#4169E1\",blue:\"#0000FF\",mediumblue:\"#0000CD\",darkblue:\"#00008B\",navy:\"#000080\",midnightblue:\"#191970\",cornsilk:\"#FFF8DC\",blanchedalmond:\"#FFEBCD\",bisque:\"#FFE4C4\",navajowhite:\"#FFDEAD\",wheat:\"#F5DEB3\",burlywood:\"#DEB887\",tan:\"#D2B48C\",rosybrown:\"#BC8F8F\",sandybrown:\"#F4A460\",goldenrod:\"#DAA520\",darkgoldenrod:\"#B8860B\",peru:\"#CD853F\",chocolate:\"#D2691E\",saddlebrown:\"#8B4513\",sienna:\"#A0522D\",brown:\"#A52A2A\",maroon:\"#800000\",white:\"#FFFFFF\",snow:\"#FFFAFA\",honeydew:\"#F0FFF0\",mintcream:\"#F5FFFA\",azure:\"#F0FFFF\",aliceblue:\"#F0F8FF\",ghostwhite:\"#F8F8FF\",whitesmoke:\"#F5F5F5\",seashell:\"#FFF5EE\",beige:\"#F5F5DC\",oldlace:\"#FDF5E6\",floralwhite:\"#FFFAF0\",ivory:\"#FFFFF0\",antiquewhite:\"#FAEBD7\",linen:\"#FAF0E6\",lavenderblush:\"#FFF0F5\",mistyrose:\"#FFE4E1\",gainsboro:\"#DCDCDC\",lightgray:\"#D3D3D3\",lightgrey:\"#D3D3D3\",silver:\"#C0C0C0\",darkgray:\"#A9A9A9\",darkgrey:\"#A9A9A9\",gray:\"#808080\",grey:\"#808080\",dimgray:\"#696969\",dimgrey:\"#696969\",lightslategray:\"#778899\",lightslategrey:\"#778899\",slategray:\"#708090\",slategrey:\"#708090\",darkslategray:\"#2F4F4F\",darkslategrey:\"#2F4F4F\",black:\"#000000\"},r.is_svg_color=function(e){return e in r.svg_colors}},\n function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.NumberArray=Float32Array,e.ColorArray=Uint32Array;const s=r(25);class a{constructor(r,t){this.offsets=r,this.array=t}[s.equals](r,t){return t.arrays(this.offsets,r.offsets)&&t.arrays(this.array,r.array)}get length(){return this.offsets.length}clone(){return new a(new Uint32Array(this.offsets),new e.NumberArray(this.array))}static from(r){const t=r.length,s=new Uint32Array(t);let n=0;for(let e=0;e<t;e++){const t=r[e].length;s[e]=n,n+=t}const o=new e.NumberArray(n);for(let e=0;e<t;e++)o.set(r[e],s[e]);return new a(s,o)}*[Symbol.iterator](){const{offsets:r,length:t}=this;for(let e=0;e<t;e++)yield this.array.subarray(r[e],r[e+1])}get(r){const{offsets:t}=this;return this.array.subarray(t[r],t[r+1])}set(r,t){this.array.set(t,this.offsets[r])}}e.RaggedArray=a,a.__name__=\"RaggedArray\",a[Symbol.toStringTag]=\"RaggedArray\";var n=r(26);e.Indices=n.BitSet},\n function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.equals=Symbol(\"equals\"),r.wildcard=Symbol(\"wildcard\");const n=Object.prototype.toString;class s{constructor(){this.a_stack=[],this.b_stack=[]}eq(t,e){if(Object.is(t,e))return!0;if(t===r.wildcard||e===r.wildcard)return!0;if(null==t||null==e)return t===e;const s=n.call(t);if(s!=n.call(e))return!1;switch(s){case\"[object Number]\":return this.numbers(t,e);case\"[object RegExp]\":case\"[object String]\":return\"\"+t==\"\"+e;case\"[object Date]\":case\"[object Boolean]\":return+t==+e}const{a_stack:o,b_stack:c}=this;let a=o.length;for(;a--;)if(o[a]===t)return c[a]===e;o.push(t),c.push(e);const i=(()=>{if(null!=t[r.equals]&&null!=e[r.equals])return t[r.equals](e,this);switch(s){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(\"\"+t,\"\"+e)}if(t instanceof Node)return this.nodes(t,e);throw Error(\"can't compare objects of type \"+s)})();return o.pop(),c.pop(),i}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n<r;n++)if(!this.eq(t[n],e[n]))return!1;return!0}iterables(t,e){const r=t[Symbol.iterator](),n=e[Symbol.iterator]();for(;;){const t=r.next(),e=n.next();if(t.done&&e.done)return!0;if(t.done||e.done)return!1;if(!this.eq(t.value,e.value))return!1}}maps(t,e){if(t.size!=e.size)return!1;for(const[r,n]of t)if(!e.has(r)||!this.eq(n,e.get(r)))return!1;return!0}sets(t,e){if(t.size!=e.size)return!1;for(const r of t)if(!e.has(r))return!1;return!0}objects(t,e){const r=Object.keys(t);if(r.length!=Object.keys(e).length)return!1;for(const n of r)if(!e.hasOwnProperty(n)||!this.eq(t[n],e[n]))return!1;return!0}nodes(t,e){return t.nodeType==e.nodeType&&(t.textContent==e.textContent&&!!this.iterables(t.childNodes,e.childNodes))}}r.Comparator=s,s.__name__="Comparator";const{abs:o}=Math;class c extends s{constructor(t=1e-4){super(),this.tolerance=t}numbers(t,e){return super.numbers(t,e)||o(t-e)<this.tolerance}}function a(t,e){return(new s).eq(t,e)}r.SimilarComparator=c,c.__name__="SimilarComparator",r.is_equal=a,r.is_similar=function(t,e,r){return new c(r).eq(t,e)},r.isEqual=a},n function _(t,s,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(11),i=t(9),n=t(25);class o{constructor(t,s=0){this.size=t,this[Symbol.toStringTag]="BitSet",this._count=null,this._nwords=Math.ceil(t/32),0==s||1==s?(this._array=new Uint32Array(this._nwords),1==s&&this._array.fill(4294967295)):(e.assert(s.length==this._nwords,"Initializer size mismatch"),this._array=s)}clone(){return new o(this.size,new Uint32Array(this._array))}[n.equals](t,s){if(!s.eq(this.size,t.size))return!1;const{_nwords:r}=this,e=this.size%r,i=0==e?r:r-1;for(let s=0;s<i;s++)if(this._array[s]!=t._array[s])return!1;if(0==e)return!0;{const s=1<<e-1,r=s-1^s;return(this._array[i]&r)==(t._array[i]&r)}}static all_set(t){return new o(t,1)}static all_unset(t){return new o(t,0)}static from_indices(t,s){const r=new o(t);for(const t of s)r.set(t);return r}static from_booleans(t,s){const r=new o(t),e=Math.min(t,s.length);for(let t=0;t<e;t++)s[t]&&r.set(t);return r}_check_bounds(t){e.assert(0<=t&&t<this.size,"Out of bounds")}get(t){this._check_bounds(t);const s=t>>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<<e:this._array[r]&=~(1<<e)}unset(t){this.set(t,!1)}*[Symbol.iterator](){yield*this.ones()}get count(){let t=this._count;return null==t&&(this._count=t=this._get_count()),t}_get_count(){const{_array:t,_nwords:s,size:r}=this;let e=0;for(let i=0,n=0;n<s;n++){const s=t[n];if(0==s)i+=32;else for(let t=0;t<32&&i<r;t++,i++)s>>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i<s;i++){const s=t[i];if(0!=s)for(let t=0;t<32&&e<r;t++,e++)s>>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i<s;i++){const s=t[i];if(4294967295!=s)for(let t=0;t<32&&e<r;t++,e++)s>>>t&1||(yield e);else e+=32}}_check_size(t){e.assert(this.size==t.size,"Size mismatch")}add(t){this._check_size(t);for(let s=0;s<this._nwords;s++)this._array[s]|=t._array[s]}intersect(t){this._check_size(t);for(let s=0;s<this._nwords;s++)this._array[s]&=t._array[s]}subtract(t){this._check_size(t);for(let s=0;s<this._nwords;s++){const r=this._array[s],e=t._array[s];this._array[s]=(r^e)&r}}union(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++)s._array[r]|=t._array[r];return s}intersection(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++)s._array[r]&=t._array[r];return s}difference(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++){const e=this._array[r],i=t._array[r];s._array[r]=(e^i)&e}return s}select(t){const s=this.count,r=new t.constructor(s);let e=0;for(const s of this)r[e++]=t[s];return r}}r.BitSet=o,o.__name__="BitSet";class a{constructor(t,s,r){this.nrows=t,this.ncols=s,this._matrix=new Array(t);for(let e=0;e<t;e++){this._matrix[e]=new Array(s);for(let t=0;t<s;t++)this._matrix[e][t]=r(e,t)}}at(t,s){return this._matrix[t][s]}*[Symbol.iterator](){for(let t=0;t<this.nrows;t++)for(let s=0;s<this.ncols;s++){const r=this._matrix[t][s];yield[r,t,s]}}*values(){for(const[t]of this)yield t}map(t){return new a(this.nrows,this.ncols,(s,r)=>t(this.at(s,r),s,r))}apply(t){const s=a.from(t),{nrows:r,ncols:e}=this;if(r==s.nrows&&e==s.ncols)return new a(r,e,(t,r)=>s.at(t,r)(this.at(t,r),t,r));throw new Error("dimensions don’t match")}to_sparse(){return[…this]}static from(t,s){if(t instanceof a)return t;if(null!=s){const r=t,e=Math.floor(r.length/s);return new a(e,s,(t,e)=>r[t*s+e])}{const s=t,r=t.length,e=i.min(s.map(t=>t.length));return new a(r,e,(t,r)=>s[t][r])}}}r.Matrix=a,a.__name__="Matrix"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class n{constructor(){this._dev=!1}set dev(e){this._dev=e}get dev(){return this._dev}}s.Settings=n,n.__name__="Settings",s.settings=new n},n function _(e,l,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(1).__importStar(e(18));t.Line={line_color:[a.Color,"black"],line_alpha:[a.Number,1],line_width:[a.Number,1],line_join:[a.LineJoin,"bevel"],line_cap:[a.LineCap,"butt"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.Fill={fill_color:[a.Color,"gray"],fill_alpha:[a.Number,1]},t.Hatch={hatch_color:[a.Color,"black"],hatch_alpha:[a.Number,1],hatch_scale:[a.Number,12],hatch_pattern:[a.NullString,null],hatch_weight:[a.Number,1],hatch_extra:[a.Any,{}]},t.Text={text_color:[a.Color,"#444444"],text_alpha:[a.Number,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSize,"16px"],text_font_style:[a.FontStyle,"normal"],text_align:[a.TextAlign,"left"],text_baseline:[a.TextBaseline,"bottom"],text_line_height:[a.Number,1.2]},t.LineScalar={line_color:[a.ColorScalar,"black"],line_alpha:[a.NumberScalar,1],line_width:[a.NumberScalar,1],line_join:[a.LineJoinScalar,"bevel"],line_cap:[a.LineCapScalar,"butt"],line_dash:[a.ArrayScalar,[]],line_dash_offset:[a.NumberScalar,0]},t.FillScalar={fill_color:[a.ColorScalar,"gray"],fill_alpha:[a.NumberScalar,1]},t.HatchScalar={hatch_color:[a.ColorScalar,"black"],hatch_alpha:[a.NumberScalar,1],hatch_scale:[a.NumberScalar,12],hatch_pattern:[a.NullStringScalar,null],hatch_weight:[a.NumberScalar,1],hatch_extra:[a.AnyScalar,{}]},t.TextScalar={text_color:[a.ColorScalar,"#444444"],text_alpha:[a.NumberScalar,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSizeScalar,"16px"],text_font_style:[a.FontStyleScalar,"normal"],text_align:[a.TextAlignScalar,"left"],text_baseline:[a.TextBaselineScalar,"bottom"],text_line_height:[a.NumberScalar,1.2]},t.LineVector={line_color:[a.ColorSpec,"black"],line_alpha:[a.NumberSpec,1],line_width:[a.NumberSpec,1],line_join:[a.LineJoin,"bevel"],line_cap:[a.LineCap,"butt"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.FillVector={fill_color:[a.ColorSpec,"gray"],fill_alpha:[a.NumberSpec,1]},t.HatchVector={hatch_color:[a.ColorSpec,"black"],hatch_alpha:[a.NumberSpec,1],hatch_scale:[a.NumberSpec,12],hatch_pattern:[a.NullStringSpec,null],hatch_weight:[a.NumberSpec,1],hatch_extra:[a.Any,{}]},t.TextVector={text_color:[a.ColorSpec,"#444444"],text_alpha:[a.NumberSpec,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSizeSpec,"16px"],text_font_style:[a.FontStyle,"normal"],text_align:[a.TextAlign,"left"],text_baseline:[a.TextBaseline,"bottom"],text_line_height:[a.Number,1.2]}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(27);function u(){const t=new Array(32);for(let e=0;e<32;e++)t[e]="0123456789ABCDEF".substr(Math.floor(16*Math.random()),1);return t[12]="4",t[16]="0123456789ABCDEF".substr(3&t[16].charCodeAt(0)|8,1),t.join("")}r.startsWith=function(t,e,r=0){return t.substr(r,e.length)==e},r.uuid4=u;let s=1e3;r.uniqueId=function(t){const e=n.settings.dev?"j"+s++:u();return null!=t?`${t}-${e}`:e},r.escape=function(t){return t.replace(/(?:[&<>"’])/g,t=>{switch(t){case"&":return"&";case"<":return"<";case">":return">";case’"’:return""";case"’":return"'";case"":return"`";default:return t}})},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,(t,e)=>{switch(e){case"amp":return"&";case"lt":return"<";case"gt":return">";case"quot":return’"’;case"#x27":return"’";case"#x60":return"";default:return e}})},r.use_strict=function(t){return"’use strict’;\n"+t}},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(8),a=t(11),n=t(25),i=Symbol("__ndarray__");class h extends Uint8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint8",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint8NDArray=h,h.__name__="Uint8NDArray";class _ extends Int8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int8",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int8NDArray=_,_.__name__="Int8NDArray";class u extends Uint16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint16",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint16NDArray=u,u.__name__="Uint16NDArray";class l extends Int16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int16",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int16NDArray=l,l.__name__="Int16NDArray";class y extends Uint32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint32NDArray=y,y.__name__="Uint32NDArray";class c extends Int32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int32NDArray=c,c.__name__="Int32NDArray";class p extends Float32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="float32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Float32NDArray=p,p.__name__="Float32NDArray";class o extends Float64Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="float64",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}function d(t){return r.isObject(t)&&t.__ndarray__==i}e.Float64NDArray=o,o.__name__="Float64NDArray",e.is_NDArray=d,e.ndarray=function(t,s={}){let{dtype:e}=s;null==e&&(e=t instanceof ArrayBuffer||r.isArray(t)?"float32":(()=>{switch(!0){case t instanceof Uint8Array:return"uint8";case t instanceof Int8Array:return"int8";case t instanceof Uint16Array:return"uint16";case t instanceof Int16Array:return"int16";case t instanceof Uint32Array:return"uint32";case t instanceof Int32Array:return"int32";case t instanceof Float32Array:return"float32";case t instanceof Float64Array:return"float64";default:a.unreachable()}})());const{shape:n}=s;switch(e){case"uint8":return new h(t,n);case"int8":return new _(t,n);case"uint16":return new u(t,n);case"int16":return new l(t,n);case"uint32":return new y(t,n);case"int32":return new c(t,n);case"float32":return new p(t,n);case"float64":return new o(t,n)}}},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),a=e(8),f=e(32),_=n.__importStar(e(30));function o(e){const r=new Uint8Array(e),t=Array.from(r).map(e=>String.fromCharCode(e));return btoa(t.join(""))}function s(e){const r=atob(e),t=r.length,n=new Uint8Array(t);for(let e=0,a=t;e<a;e++)n[e]=r.charCodeAt(e);return n.buffer}function i(e){const r=new Uint8Array(e.buffer,e.byteOffset,2*e.length);for(let e=0,t=r.length;e<t;e+=2){const t=r[e];r[e]=r[e+1],r[e+1]=t}}function u(e){const r=new Uint8Array(e.buffer,e.byteOffset,4*e.length);for(let e=0,t=r.length;e<t;e+=4){let t=r[e];r[e]=r[e+3],r[e+3]=t,t=r[e+1],r[e+1]=r[e+2],r[e+2]=t}}function c(e){const r=new Uint8Array(e.buffer,e.byteOffset,8*e.length);for(let e=0,t=r.length;e<t;e+=8){let t=r[e];r[e]=r[e+7],r[e+7]=t,t=r[e+1],r[e+1]=r[e+6],r[e+6]=t,t=r[e+2],r[e+2]=r[e+5],r[e+5]=t,t=r[e+3],r[e+3]=r[e+4],r[e+4]=t}}t.buffer_to_base64=o,t.base64_to_buffer=s,t.BYTE_ORDER=f.is_little_endian?"little":"big",t.swap16=i,t.swap32=u,t.swap64=c,t.is_NDArray_ref=function(e){return a.isPlainObject(e)&&("__buffer__"in e||"__ndarray__"in e)},t.decode_NDArray=function(e,r){const{shape:n,dtype:a,order:f}=e;let o;if("__buffer__"in e){const t=r.get(e.__buffer__);if(null==t)throw new Error(`buffer for ${e.__buffer__} not found);o=t}else o=s(e.__ndarray__);const l=(()=>{switch(a){case"uint8":return new _.Uint8NDArray(o,n);case"int8":return new _.Int8NDArray(o,n);case"uint16":return new _.Uint16NDArray(o,n);case"int16":return new _.Int16NDArray(o,n);case"uint32":return new _.Uint32NDArray(o,n);case"int32":return new _.Int32NDArray(o,n);case"float32":return new _.Float32NDArray(o,n);case"float64":return new _.Float64NDArray(o,n)}})();if(f!==t.BYTE_ORDER)switch(l.BYTES_PER_ELEMENT){case 2:i(l);break;case 4:u(l);break;case 8:c(l)}return l},t.encode_NDArray=function(e,r){const n={order:t.BYTE_ORDER,dtype:e.dtype,shape:e.shape};if(null!=r){const t=""+r.size;return r.set(t,e.buffer),Object.assign({__buffer__:t},n)}{const r=o(e.buffer);return Object.assign({__ndarray__:r},n)}}},n function _(e,n,i){Object.defineProperty(i,"__esModule",{value:!0}),i.is_ie=(()=>{const e="undefined"!=typeof navigator?navigator.userAgent:"";return e.indexOf("MSIE")>=0||e.indexOf("Trident")>0||e.indexOf("Edge")>0})(),i.is_mobile="undefined"!=typeof window&&("ontouchstart"in window||navigator.maxTouchPoints>0),i.is_little_endian=(()=>{const e=new ArrayBuffer(4),n=new Uint8Array(e);new Uint32Array(e)[1]=168496141;let i=!0;return 10==n[4]&&11==n[5]&&12==n[6]&&13==n[7]&&(i=!1),i})()},n function _(t,r,n){Object.defineProperty(n,"__esModule",{value:!0});const e=t(8),i=t(13);n.pretty=Symbol("pretty");class o{constructor(t){this.precision=null==t?void 0:t.precision}to_string(t){return function(t){return n.pretty in Object(t)}(t)?t[n.pretty](this):e.isBoolean(t)?this.boolean(t):e.isNumber(t)?this.number(t):e.isString(t)?this.string(t):e.isArray(t)?this.array(t):e.isIterable(t)?this.iterable(t):e.isPlainObject(t)?this.object(t):""+t}token(t){return t}boolean(t){return""+t}number(t){return null!=this.precision?t.toFixed(this.precision):""+t}string(t){return`"${t.replace(/’/g,"\\’")}"}array(t){const r=this.token,n=[];for(const r of t)n.push(this.to_string(r));return`${r("[")}${n.join(r(",")+" ")}${r("]")}}iterable(t){var r;const n=this.token,e=null!==(r=Object(t)[Symbol.toStringTag])&&void 0!==r?r:"Object",i=this.array(t);return`${e}${n("(")}${i}${n(")")}`}object(t){const r=this.token,n=[];for(const[e,o]of i.entries(t))n.push(${e}${r(":")} ${this.to_string(o)});return`${r("{")}${n.join(r(",")+" ")}${r("}")}`}}n.Printer=o,o.__name__="Printer",n.to_string=function(t,r){return new o(r).to_string(t)}},n function _(t,_,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(1);e.__exportStar(t(35),r),e.__exportStar(t(176),r),e.__exportStar(t(203),r),e.__exportStar(t(207),r),e.__exportStar(t(218),r),e.__exportStar(t(222),r),e.__exportStar(t(228),r),e.__exportStar(t(232),r),e.__exportStar(t(265),r),e.__exportStar(t(268),r),e.__exportStar(t(270),r),e.__exportStar(t(132),r),e.__exportStar(t(148),r),e.__exportStar(t(287),r),e.__exportStar(t(291),r),e.__exportStar(t(320),r),e.__exportStar(t(321),r),e.__exportStar(t(322),r),e.__exportStar(t(323),r),e.__exportStar(t(324),r),e.__exportStar(t(329),r),e.__exportStar(t(331),r),e.__exportStar(t(342),r),e.__exportStar(t(346),r)},n function _(a,e,o){Object.defineProperty(o,"__esModule",{value:!0});var r=a(36);o.Annotation=r.Annotation;var n=a(83);o.Arrow=n.Arrow;var t=a(84);o.ArrowHead=t.ArrowHead;var v=a(84);o.OpenHead=v.OpenHead;var l=a(84);o.NormalHead=l.NormalHead;var d=a(84);o.TeeHead=d.TeeHead;var i=a(84);o.VeeHead=i.VeeHead;var A=a(122);o.Band=A.Band;var H=a(124);o.BoxAnnotation=H.BoxAnnotation;var T=a(125);o.ColorBar=T.ColorBar;var p=a(160);o.Label=p.Label;var L=a(162);o.LabelSet=L.LabelSet;var b=a(163);o.Legend=b.Legend;var B=a(164);o.LegendItem=B.LegendItem;var S=a(166);o.PolyAnnotation=S.PolyAnnotation;var P=a(167);o.Slope=P.Slope;var g=a(168);o.Span=g.Span;var m=a(161);o.TextAnnotation=m.TextAnnotation;var w=a(169);o.Title=w.Title;var x=a(170);o.ToolbarPanel=x.ToolbarPanel;var s=a(171);o.Tooltip=s.Tooltip;var u=a(175);o.Whisker=u.Whisker},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const s=t(1).__importStar(t(37)),i=t(13),o=t(70);class _ extends o.RendererView{get panel(){return this.layout}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.visible,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible){const{width:t,height:e}=this._get_size();return{width:Math.round(t),height:Math.round(e)}}return{width:0,height:0}}_get_size(){throw new Error("not implemented")}set_data(t){const e=this.model.materialize_dataspecs(t);if(i.extend(this,e),this.plot_model.use_map){const t=this;null!=t._x&&([t._x,t._y]=s.project_xy(t._x,t._y)),null!=t._xs&&([t._xs,t._ys]=s.project_xsys(t._xs,t._ys))}}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}n.AnnotationView=_,_.__name__="AnnotationView";class a extends o.Renderer{constructor(t){super(t)}static init_Annotation(){this.override({level:"annotation"})}}n.Annotation=a,a.__name__="Annotation",a.init_Annotation()},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=n(1),o=r.__importDefault(n(38)),l=r.__importDefault(n(39)),c=n(24),i=new l.default("GOOGLE"),u=new l.default("WGS84"),a=o.default(u,i);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?a.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?a.inverse([n,t]):[NaN,NaN]};const s={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},f={lon:[-180,180],lat:[-85.06,85.06]},{min:_,max:p}=Math;function m(n,t){const r=_(n.length,t.length),o=new c.NumberArray(r),l=new c.NumberArray(r);return e.inplace.project_xy(n,t,o,l),[o,l]}e.clip_mercator=function(n,t,e){const[r,o]=s[e];return[p(n,r),_(t,o)]},e.in_bounds=function(n,t){const[e,r]=f[t];return e<n&&n<r},function(n){function t(n,t,r,o){const l=_(n.length,t.length);r=null!=r?r:n,o=null!=o?o:t;for(let c=0;c<l;c++){const l=n[c],i=t[c],[u,a]=e.wgs84_mercator.compute(l,i);r[c]=u,o[c]=a}}n.project_xy=t,n.project_xsys=function(n,e,r,o){const l=_(n.length,e.length);r=null!=r?r:n,o=null!=o?o:e;for(let c=0;c<l;c++)t(n[c],e[c],r[c],o[c])}}(e.inplace||(e.inplace={})),e.project_xy=m,e.project_xsys=function(n,t){const e=_(n.length,t.length),r=new Array(e),o=new Array(e);for(let l=0;l<e;l++){const[e,c]=m(n[l],t[l]);r[l]=e,o[l]=c}return[r,o]}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(1),o=r.__importDefault(e(39)),a=r.__importDefault(e(64));var i=o.default("WGS84");function c(e,n,t){var r,o,i;return Array.isArray(t)?(r=a.default(e,n,t)||{x:NaN,y:NaN},t.length>2?void 0!==e.name&&"geocent"===e.name||void 0!==n.name&&"geocent"===n.name?"number"==typeof r.z?[r.x,r.y,r.z].concat(t.splice(3)):[r.x,r.y,t[2]].concat(t.splice(3)):[r.x,r.y].concat(t.splice(2)):[r.x,r.y]):(o=a.default(e,n,t),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&"geocent"===e.name||void 0!==n.name&&"geocent"===n.name){if("x"===r||"y"===r||"z"===r)return}else if("x"===r||"y"===r)return;o[r]=t[r]})),o)}function u(e){return e instanceof o.default?e:e.oProj?e.oProj:o.default(e)}t.default=function(e,n,t){e=u(e);var r,o=!1;return void 0===n?(n=e,e=i,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=i,o=!0),n=u(n),t?c(e,n,t):(r={forward:function(t){return c(e,n,t)},inverse:function(t){return c(n,e,t)}},o&&(r.oProj=n),r)}},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),i=s.__importDefault(e(40)),u=s.__importDefault(e(51)),l=s.__importDefault(e(52)),o=e(60),r=s.__importDefault(e(62)),f=s.__importDefault(e(63)),d=s.__importDefault(e(47));function p(e,t){if(!(this instanceof p))return new p(e);t=t||function(e){if(e)throw e};var a=i.default(e);if("object"==typeof a){var s=p.projections.get(a.projName);if(s){if(a.datumCode&&"none"!==a.datumCode){var l=d.default(r.default,a.datumCode);l&&(a.datum_params=l.towgs84?l.towgs84.split(","):null,a.ellps=l.ellipse,a.datumName=l.datumName?l.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||"enu",a.ellps=a.ellps||"wgs84";var m=o.sphere(a.a,a.b,a.rf,a.ellps,a.sphere),n=o.eccentricity(m.a,m.b,m.rf,a.R_A),h=a.datum||f.default(a.datumCode,a.datum_params,m.a,m.b,n.es,n.ep2);u.default(this,a),u.default(this,s),this.a=m.a,this.b=m.b,this.rf=m.rf,this.sphere=m.sphere,this.es=n.es,this.e=n.e,this.ep2=n.ep2,this.datum=h,this.init(),t(null,this)}else t(e)}else t(e)}p.projections=l.default,p.projections.start(),a.default=p},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const u=t(1),n=u.__importDefault(t(41)),f=u.__importDefault(t(48)),i=u.__importDefault(t(43)),a=u.__importDefault(t(47));var o=["PROJECTEDCRS","PROJCRS","GEOGCS","GEOCCS","PROJCS","LOCAL_CS","GEODCRS","GEODETICCRS","GEODETICDATUM","ENGCRS","ENGINEERINGCRS"];var l=["3857","900913","3785","102113"];r.default=function(t){if(!function(t){return"string"==typeof t}(t))return t;if(function(t){return t in n.default}(t))return n.default[t];if(function(t){return o.some((function(e){return t.indexOf(e)>-1}))}(t)){var e=f.default(t);if(function(t){var e=a.default(t,"authority");if(e){var r=a.default(e,"epsg");return r&&l.indexOf(r)>-1}}(e))return n.default["EPSG:3857"];var r=function(t){var e=a.default(t,"extension");if(e)return a.default(e,"proj4")}(e);return r?i.default(r):e}return function(t){return"+"===t[0]}(t)?i.default(t):void 0}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=t(1),n=i.__importDefault(t(42)),f=i.__importDefault(t(43)),a=i.__importDefault(t(48));function l(t){var e=this;if(2===arguments.length){var r=arguments[1];"string"==typeof r?"+"===r.charAt(0)?l[t]=f.default(arguments[1]):l[t]=a.default(arguments[1]):l[t]=r}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?l.apply(e,t):l(t)}));if("string"==typeof t){if(t in l)return l[t]}else"EPSG"in t?l["EPSG:"+t.EPSG]=t:"ESRI"in t?l["ESRI:"+t.ESRI]=t:"IAU2000"in t?l["IAU2000:"+t.IAU2000]=t:console.log(t);return}}n.default(l),r.default=l},n function _(e,t,l){Object.defineProperty(l,"__esModule",{value:!0}),l.default=function(e){e("EPSG:4326","+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees"),e("EPSG:4269","+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees"),e("EPSG:3857","+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs"),e.WGS84=e["EPSG:4326"],e["EPSG:3785"]=e["EPSG:3857"],e.GOOGLE=e["EPSG:3857"],e["EPSG:900913"]=e["EPSG:3857"],e["EPSG:102113"]=e["EPSG:3857"]}},n function _(t,n,o){Object.defineProperty(o,"__esModule",{value:!0});const e=t(1),a=t(44),u=e.__importDefault(t(45)),r=e.__importDefault(t(46)),i=e.__importDefault(t(47));o.default=function(t){var n,o,e,f={},l=t.split("+").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split("=");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:"projName",datum:"datumCode",rf:function(t){f.rf=parseFloat(t)},lat_0:function(t){f.lat0=t*a.D2R},lat_1:function(t){f.lat1=t*a.D2R},lat_2:function(t){f.lat2=t*a.D2R},lat_ts:function(t){f.lat_ts=t*a.D2R},lon_0:function(t){f.long0=t*a.D2R},lon_1:function(t){f.long1=t*a.D2R},lon_2:function(t){f.long2=t*a.D2R},alpha:function(t){f.alpha=parseFloat(t)*a.D2R},lonc:function(t){f.longc=t*a.D2R},x_0:function(t){f.x0=parseFloat(t)},y_0:function(t){f.y0=parseFloat(t)},k_0:function(t){f.k0=parseFloat(t)},k:function(t){f.k0=parseFloat(t)},a:function(t){f.a=parseFloat(t)},b:function(t){f.b=parseFloat(t)},r_a:function(){f.R_A=!0},zone:function(t){f.zone=parseInt(t,10)},south:function(){f.utmSouth=!0},towgs84:function(t){f.datum_params=t.split(",").map((function(t){return parseFloat(t)}))},to_meter:function(t){f.to_meter=parseFloat(t)},units:function(t){f.units=t;var n=i.default(r.default,t);n&&(f.to_meter=n.to_meter)},from_greenwich:function(t){f.from_greenwich=t*a.D2R},pm:function(t){var n=i.default(u.default,t);f.from_greenwich=(n||parseFloat(t))*a.D2R},nadgrids:function(t){"@null"===t?f.datumCode="none":f.nadgrids=t},axis:function(t){3===t.length&&-1!=="ewnsud".indexOf(t.substr(0,1))&&-1!=="ewnsud".indexOf(t.substr(1,1))&&-1!=="ewnsud".indexOf(t.substr(2,1))&&(f.axis=t)}};for(n in l)o=l[n],n in c?"function"==typeof(e=c[n])?e(o):f[e]=o:f[n]=o;return"string"==typeof f.datumCode&&"WGS84"!==f.datumCode&&(f.datumCode=f.datumCode.toLowerCase()),f}},n function _(P,_,e){Object.defineProperty(e,"__esModule",{value:!0}),e.PJD_3PARAM=1,e.PJD_7PARAM=2,e.PJD_WGS84=4,e.PJD_NODATUM=5,e.SEC_TO_RAD=484813681109536e-20,e.HALF_PI=Math.PI/2,e.SIXTH=.16666666666666666,e.RA4=.04722222222222222,e.RA6=.022156084656084655,e.EPSLN=1e-10,e.D2R=.017453292519943295,e.R2D=57.29577951308232,e.FORTPI=Math.PI/4,e.TWO_PI=2*Math.PI,e.SPI=3.14159265359},n function _(e,o,r){Object.defineProperty(r,"__esModule",{value:!0});var a={};r.default=a,a.greenwich=0,a.lisbon=-9.131906111111,a.paris=2.337229166667,a.bogota=-74.080916666667,a.madrid=-3.687938888889,a.rome=12.452333333333,a.bern=7.439583333333,a.jakarta=106.807719444444,a.ferro=-17.666666666667,a.brussels=4.367975,a.stockholm=18.058277777778,a.athens=23.7163375,a.oslo=10.722916666667},n function _(e,t,f){Object.defineProperty(f,"__esModule",{value:!0}),f.default={ft:{to_meter:.3048},"us-ft":{to_meter:1200/3937}}},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});var o=/[\s_\-\/\(\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,""),f=-1;++f<a.length;)if((t=a[f]).toLowerCase().replace(o,"")===n)return e[t]}},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const o=e(1);const d=o.__importDefault(e(49)),r=e(50);function n(e){return.017453292519943295*e}a.default=function(e){var t=d.default(e),a=t.shift(),o=t.shift();t.unshift(["name",o]),t.unshift(["type",a]);var l={};return r.sExpr(t,l),function(e){if("GEOGCS"===e.type?e.projName="longlat":"LOCAL_CS"===e.type?(e.projName="identity",e.local=!0):"object"==typeof e.PROJECTION?e.projName=Object.keys(e.PROJECTION)[0]:e.projName=e.PROJECTION,e.AXIS){for(var t="",a=0,o=e.AXIS.length;a<o;++a){var d=e.AXIS[a][0].toLowerCase();-1!==d.indexOf("north")?t+="n":-1!==d.indexOf("south")?t+="s":-1!==d.indexOf("east")?t+="e":-1!==d.indexOf("west")&&(t+="w")}2===t.length&&(t+="u"),3===t.length&&(e.axis=t)}e.UNIT&&(e.units=e.UNIT.name.toLowerCase(),"metre"===e.units&&(e.units="meter"),e.UNIT.convert&&("GEOGCS"===e.type?e.DATUM&&e.DATUM.SPHEROID&&(e.to_meter=e.UNIT.convert*e.DATUM.SPHEROID.a):e.to_meter=e.UNIT.convert));var r=e.GEOGCS;function l(t){return t*(e.to_meter||1)}"GEOGCS"===e.type&&(r=e),r&&(r.DATUM?e.datumCode=r.DATUM.name.toLowerCase():e.datumCode=r.name.toLowerCase(),"d_"===e.datumCode.slice(0,2)&&(e.datumCode=e.datumCode.slice(2)),"new_zealand_geodetic_datum_1949"!==e.datumCode&&"new_zealand_1949"!==e.datumCode||(e.datumCode="nzgd49"),"wgs_1984"!==e.datumCode&&"world_geodetic_system_1984"!==e.datumCode||("Mercator_Auxiliary_Sphere"===e.PROJECTION&&(e.sphere=!0),e.datumCode="wgs84"),"_ferro"===e.datumCode.slice(-6)&&(e.datumCode=e.datumCode.slice(0,-6)),"_jakarta"===e.datumCode.slice(-8)&&(e.datumCode=e.datumCode.slice(0,-8)),~e.datumCode.indexOf("belge")&&(e.datumCode="rnb72"),r.DATUM&&r.DATUM.SPHEROID&&(e.ellps=r.DATUM.SPHEROID.name.replace("_19","").replace(/[Cc]larke\_18/,"clrk"),"international"===e.ellps.toLowerCase().slice(0,13)&&(e.ellps="intl"),e.a=r.DATUM.SPHEROID.a,e.rf=parseFloat(r.DATUM.SPHEROID.rf,10)),r.DATUM&&r.DATUM.TOWGS84&&(e.datum_params=r.DATUM.TOWGS84),~e.datumCode.indexOf("osgb_1936")&&(e.datumCode="osgb36"),~e.datumCode.indexOf("osni_1952")&&(e.datumCode="osni52"),(~e.datumCode.indexOf("tm65")||~e.datumCode.indexOf("geodetic_datum_of_1965"))&&(e.datumCode="ire65"),"ch1903+"===e.datumCode&&(e.datumCode="ch1903"),~e.datumCode.indexOf("israel")&&(e.datumCode="isr93")),e.b&&!isFinite(e.b)&&(e.b=e.a),[["standard_parallel_1","Standard_Parallel_1"],["standard_parallel_2","Standard_Parallel_2"],["false_easting","False_Easting"],["false_northing","False_Northing"],["central_meridian","Central_Meridian"],["latitude_of_origin","Latitude_Of_Origin"],["latitude_of_origin","Central_Parallel"],["scale_factor","Scale_Factor"],["k0","scale_factor"],["latitude_of_center","Latitude_Of_Center"],["latitude_of_center","Latitude_of_center"],["lat0","latitude_of_center",n],["longitude_of_center","Longitude_Of_Center"],["longitude_of_center","Longitude_of_center"],["longc","longitude_of_center",n],["x0","false_easting",l],["y0","false_northing",l],["long0","central_meridian",n],["lat0","latitude_of_origin",n],["lat0","standard_parallel_1",n],["lat1","standard_parallel_1",n],["lat2","standard_parallel_2",n],["azimuth","Azimuth"],["alpha","azimuth",n],["srsCode","name"]].forEach((function(t){return a=e,d=(o=t)[0],r=o[1],void(!(d in a)&&r in a&&(a[d]=a[r],3===o.length&&(a[d]=o[2](a[d]))));var a,o,d,r})),e.long0||!e.longc||"Albers_Conic_Equal_Area"!==e.projName&&"Lambert_Azimuthal_Equal_Area"!==e.projName||(e.long0=e.longc),e.lat_ts||!e.lat1||"Stereographic_South_Pole"!==e.projName&&"Polar Stereographic (variant B)"!==e.projName||(e.lat0=n(e.lat1>0?90:-90),e.lat_ts=e.lat1)}(l),l}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(t){return new a(t).output()};var i=/\s/,s=/[A-Za-z]/,h=/[A-Za-z84]/,o=/[,\]]/,n=/[\d\.E\-\+]/;function a(t){if("string"!=typeof t)throw new Error("not a string");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}a.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;i.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},a.prototype.afterquote=function(t){if(’"’===t)return this.word+=’"’,void(this.state=4);if(o.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error("havn’t handled \""+t+’" in afterquote yet, index ‘+this.place)},a.prototype.afterItem=function(t){return","===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):"]"===t?(this.level–,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},a.prototype.number=function(t){if(!n.test(t)){if(o.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error("havn’t handled \""+t+’" in number yet, index ‘+this.place)}this.word+=t},a.prototype.quoted=function(t){’"’!==t?this.word+=t:this.state=5},a.prototype.keyword=function(t){if(h.test(t))this.word+=t;else{if("["===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!o.test(t))throw new Error("havn’t handled \""+t+’" in keyword yet, index ‘+this.place);this.afterItem(t)}},a.prototype.neutral=function(t){if(s.test(t))return this.word=t,void(this.state=2);if(’"’===t)return this.word="",void(this.state=4);if(n.test(t))return this.word=t,void(this.state=3);if(!o.test(t))throw new Error("havn’t handled \""+t+’" in neutral yet, index ‘+this.place);this.afterItem(t)},a.prototype.output=function(){for(;this.place<this.text.length;)this.readCharicter();if(-1===this.state)return this.root;throw new Error(‘unable to parse string "’+this.text+’". State is ‘+this.state)}},n function _(e,r,a){function s(e,r,a){Array.isArray(r)&&(a.unshift(r),r=null);var s=r?{}:e,n=a.reduce((function(e,r){return c(r,e),e}),s);r&&(e[r]=n)}function c(e,r){if(Array.isArray(e)){var a=e.shift();if("PARAMETER"===a&&(a=e.shift()),1===e.length)return Array.isArray(e[0])?(r[a]={},void c(e[0],r[a])):void(r[a]=e[0]);if(e.length)if("TOWGS84"!==a){if("AXIS"===a)return a in r||(r[a]=[]),void r[a].push(e);var n;switch(Array.isArray(a)||(r[a]={}),a){case"UNIT":case"PRIMEM":case"VERT_DATUM":return r[a]={name:e[0].toLowerCase(),convert:e[1]},void(3===e.length&&c(e[2],r[a]));case"SPHEROID":case"ELLIPSOID":return r[a]={name:e[0],a:e[1],rf:e[2]},void(4===e.length&&c(e[3],r[a]));case"PROJECTEDCRS":case"PROJCRS":case"GEOGCS":case"GEOCCS":case"PROJCS":case"LOCAL_CS":case"GEODCRS":case"GEODETICCRS":case"GEODETICDATUM":case"EDATUM":case"ENGINEERINGDATUM":case"VERT_CS":case"VERTCRS":case"VERTICALCRS":case"COMPD_CS":case"COMPOUNDCRS":case"ENGINEERINGCRS":case"ENGCRS":case"FITTED_CS":case"LOCAL_DATUM":case"DATUM":return e[0]=["name",e[0]],void s(r,a,e);default:for(n=-1;++n<e.length;)if(!Array.isArray(e[n]))return c(e,r[a]);return s(r,a,e)}}else r[a]=e;else r[a]=!0}else r[e]=!0}Object.defineProperty(a,"__esModule",{value:!0}),a.sExpr=c},n function _(e,n,r){Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,n){var r,t;if(e=e||{},!n)return e;for(t in n)void 0!==(r=n[t])&&(e[t]=r);return e}},n function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const a=t(1),n=a.__importDefault(t(53)),r=a.__importDefault(t(59));var u=[n.default,r.default],f={},i=[];function d(t,e){var o=i.length;return t.names?(i[o]=t,t.names.forEach((function(t){f[t.toLowerCase()]=o})),this):(console.log(e),!0)}function c(t){if(!t)return!1;var e=t.toLowerCase();return void 0!==f[e]&&i[f[e]]?i[f[e]]:void 0}function l(){u.forEach(d)}o.add=d,o.get=c,o.start=l,o.default={start:l,add:d,get:c}},n function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const h=t(1),a=h.__importDefault(t(54)),e=h.__importDefault(t(55)),r=h.__importDefault(t(57)),n=h.__importDefault(t(58)),l=t(44);function u(){var t=this.b/this.a;this.es=1-t*t,"x0"in this||(this.x0=0),"y0"in this||(this.y0=0),this.e=Math.sqrt(this.es),this.lat_ts?this.sphere?this.k0=Math.cos(this.lat_ts):this.k0=a.default(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts)):this.k0||(this.k?this.k0=this.k:this.k0=1)}function o(t){var i,s,h=t.x,a=t.y;if(a*l.R2D>90&&a*l.R2D<-90&&h*l.R2D>180&&h*l.R2D<-180)return null;if(Math.abs(Math.abs(a)-l.HALF_PI)<=l.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(l.FORTPI+.5*a));else{var n=Math.sin(a),u=r.default(this.e,a,n);i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0-this.a*this.k0*Math.log(u)}return t.x=i,t.y=s,t}function f(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=l.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var r=Math.exp(-a/(this.a*this.k0));if(-9999===(s=n.default(this.e,r)))return null}return i=e.default(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=u,s.forward=o,s.inverse=f,s.names=["Mercator","Popular Visualisation Pseudo Mercator","Mercator_1SP","Mercator_Auxiliary_Sphere","merc"],s.default={init:u,forward:o,inverse:f,names:s.names}},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.default=function(e,t,n){var r=e*t;return n/Math.sqrt(1-r*r)}},n function _(e,t,u){Object.defineProperty(u,"__esModule",{value:!0});const n=e(1),a=e(44),f=n.__importDefault(e(56));u.default=function(e){return Math.abs(e)<=a.SPI?e:e-f.default(e)*a.TWO_PI}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return e<0?-1:1}},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const a=t(44);n.default=function(t,e,n){var o=t*n,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(a.HALF_PI-e))/o}},n function _(t,a,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(44);e.default=function(t,a){for(var e,r,o=.5*t,u=n.HALF_PI-2*Math.atan(a),f=0;f<=15;f++)if(e=t*Math.sin(u),u+=r=n.HALF_PI-2*Math.atan(a*Math.pow((1-e)/(1+e),o))-u,Math.abs(r)<=1e-10)return u;return-9999}},n function _(e,n,i){function t(){}function r(e){return e}Object.defineProperty(i,"__esModule",{value:!0}),i.init=t,i.forward=r,i.inverse=r,i.names=["longlat","identity"],i.default={init:t,forward:r,inverse:r,names:i.names}},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=e(1),n=e(44),f=a.__importStar(e(61)),u=a.__importDefault(e(47));r.eccentricity=function(e,t,r,a){var f=e*e,u=t*t,i=(f-u)/f,c=0;return a?(f=(e*=1-i*(n.SIXTH+i*(n.RA4+i*n.RA6)))*e,i=0):c=Math.sqrt(i),{es:i,e:c,ep2:(f-u)/u}},r.sphere=function(e,t,r,a,i){if(!e){var c=u.default(f.default,a);c||(c=f.WGS84),e=c.a,t=c.b,r=c.rf}return r&&!t&&(t=(1-1/r)*e),(0===r||Math.abs(e-t)<n.EPSLN)&&(i=!0,t=e),{a:e,b:t,rf:r,sphere:i}}},n function _(e,a,l){Object.defineProperty(l,"__esModule",{value:!0});var s={};l.default=s,s.MERIT={a:6378137,rf:298.257,ellipseName:"MERIT 1983"},s.SGS85={a:6378136,rf:298.257,ellipseName:"Soviet Geodetic System 85"},s.GRS80={a:6378137,rf:298.257222101,ellipseName:"GRS 1980(IUGG, 1980)"},s.IAU76={a:6378140,rf:298.257,ellipseName:"IAU 1976"},s.airy={a:6377563.396,b:6356256.91,ellipseName:"Airy 1830"},s.APL4={a:6378137,rf:298.25,ellipseName:"Appl. Physics. 1965"},s.NWL9D={a:6378145,rf:298.25,ellipseName:"Naval Weapons Lab., 1965"},s.mod_airy={a:6377340.189,b:6356034.446,ellipseName:"Modified Airy"},s.andrae={a:6377104.43,rf:300,ellipseName:"Andrae 1876 (Den., Iclnd.)"},s.aust_SA={a:6378160,rf:298.25,ellipseName:"Australian Natl & S. Amer. 1969"},s.GRS67={a:6378160,rf:298.247167427,ellipseName:"GRS 67(IUGG 1967)"},s.bessel={a:6377397.155,rf:299.1528128,ellipseName:"Bessel 1841"},s.bess_nam={a:6377483.865,rf:299.1528128,ellipseName:"Bessel 1841 (Namibia)"},s.clrk66={a:6378206.4,b:6356583.8,ellipseName:"Clarke 1866"},s.clrk80={a:6378249.145,rf:293.4663,ellipseName:"Clarke 1880 mod."},s.clrk58={a:6378293.645208759,rf:294.2606763692654,ellipseName:"Clarke 1858"},s.CPM={a:6375738.7,rf:334.29,ellipseName:"Comm. des Poids et Mesures 1799"},s.delmbr={a:6376428,rf:311.5,ellipseName:"Delambre 1810 (Belgium)"},s.engelis={a:6378136.05,rf:298.2566,ellipseName:"Engelis 1985"},s.evrst30={a:6377276.345,rf:300.8017,ellipseName:"Everest 1830"},s.evrst48={a:6377304.063,rf:300.8017,ellipseName:"Everest 1948"},s.evrst56={a:6377301.243,rf:300.8017,ellipseName:"Everest 1956"},s.evrst69={a:6377295.664,rf:300.8017,ellipseName:"Everest 1969"},s.evrstSS={a:6377298.556,rf:300.8017,ellipseName:"Everest (Sabah & Sarawak)"},s.fschr60={a:6378166,rf:298.3,ellipseName:"Fischer (Mercury Datum) 1960"},s.fschr60m={a:6378155,rf:298.3,ellipseName:"Fischer 1960"},s.fschr68={a:6378150,rf:298.3,ellipseName:"Fischer 1968"},s.helmert={a:6378200,rf:298.3,ellipseName:"Helmert 1906"},s.hough={a:6378270,rf:297,ellipseName:"Hough"},s.intl={a:6378388,rf:297,ellipseName:"International 1909 (Hayford)"},s.kaula={a:6378163,rf:298.24,ellipseName:"Kaula 1961"},s.lerch={a:6378139,rf:298.257,ellipseName:"Lerch 1979"},s.mprts={a:6397300,rf:191,ellipseName:"Maupertius 1738"},s.new_intl={a:6378157.5,b:6356772.2,ellipseName:"New International 1967"},s.plessis={a:6376523,rf:6355863,ellipseName:"Plessis 1817 (France)"},s.krass={a:6378245,rf:298.3,ellipseName:"Krassovsky, 1942"},s.SEasia={a:6378155,b:6356773.3205,ellipseName:"Southeast Asia"},s.walbeck={a:6376896,b:6355834.8467,ellipseName:"Walbeck"},s.WGS60={a:6378165,rf:298.3,ellipseName:"WGS 60"},s.WGS66={a:6378145,rf:298.25,ellipseName:"WGS 66"},s.WGS7={a:6378135,rf:298.26,ellipseName:"WGS 72"},l.WGS84=s.WGS84={a:6378137,rf:298.257223563,ellipseName:"WGS 84"},s.sphere={a:6370997,b:6370997,ellipseName:"Normal Sphere (r=6370997)"}},n function _(e,a,s){Object.defineProperty(s,"__esModule",{value:!0});var t={};s.default=t,t.wgs84={towgs84:"0,0,0",ellipse:"WGS84",datumName:"WGS84"},t.ch1903={towgs84:"674.374,15.056,405.346",ellipse:"bessel",datumName:"swiss"},t.ggrs87={towgs84:"-199.87,74.79,246.62",ellipse:"GRS80",datumName:"Greek_Geodetic_Reference_System_1987"},t.nad83={towgs84:"0,0,0",ellipse:"GRS80",datumName:"North_American_Datum_1983"},t.nad27={nadgrids:"@conus,@alaska,@ntv2_0.gsb,@ntv1_can.dat",ellipse:"clrk66",datumName:"North_American_Datum_1927"},t.potsdam={towgs84:"606.0,23.0,413.0",ellipse:"bessel",datumName:"Potsdam Rauenberg 1950 DHDN"},t.carthage={towgs84:"-263.0,6.0,431.0",ellipse:"clark80",datumName:"Carthage 1934 Tunisia"},t.hermannskogel={towgs84:"653.0,-212.0,449.0",ellipse:"bessel",datumName:"Hermannskogel"},t.osni52={towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"airy",datumName:"Irish National"},t.ire65={towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"mod_airy",datumName:"Ireland 1965"},t.rassadiran={towgs84:"-133.63,-157.5,-158.62",ellipse:"intl",datumName:"Rassadiran"},t.nzgd49={towgs84:"59.47,-5.04,187.44,0.47,-0.1,1.024,-4.5993",ellipse:"intl",datumName:"New Zealand Geodetic Datum 1949"},t.osgb36={towgs84:"446.448,-125.157,542.060,0.1502,0.2470,0.8421,-20.4894",ellipse:"airy",datumName:"Airy 1830"},t.s_jtsk={towgs84:"589,76,480",ellipse:"bessel",datumName:"S-JTSK (Ferro)"},t.beduaram={towgs84:"-106,-87,188",ellipse:"clrk80",datumName:"Beduaram"},t.gunung_segara={towgs84:"-403,684,41",ellipse:"bessel",datumName:"Gunung Segara Jakarta"},t.rnb72={towgs84:"106.869,-52.2978,103.724,-0.33657,0.456955,-1.84218,1",ellipse:"intl",datumName:"Reseau National Belge 1972"}},n function _(a,m,_){Object.defineProperty(_,"__esModule",{value:!0});const t=a(44);_.default=function(a,m,_,u,d,p){var r={};return r.datum_type=void 0===a||"none"===a?t.PJD_NODATUM:t.PJD_WGS84,m&&(r.datum_params=m.map(parseFloat),0===r.datum_params[0]&&0===r.datum_params[1]&&0===r.datum_params[2]||(r.datum_type=t.PJD_3PARAM),r.datum_params.length>3&&(0===r.datum_params[3]&&0===r.datum_params[4]&&0===r.datum_params[5]&&0===r.datum_params[6]||(r.datum_type=t.PJD_7PARAM,r.datum_params[3]*=t.SEC_TO_RAD,r.datum_params[4]*=t.SEC_TO_RAD,r.datum_params[5]*=t.SEC_TO_RAD,r.datum_params[6]=r.datum_params[6]/1e6+1))),r.a=_,r.b=u,r.es=d,r.ep2=p,r}},n function _(t,e,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t(1),u=t(44),m=r.__importDefault(t(65)),_=r.__importDefault(t(67)),o=r.__importDefault(t(39)),d=r.__importDefault(t(68)),f=r.__importDefault(t(69));a.default=function t(e,a,r){var n;if(Array.isArray(r)&&(r=d.default(r)),f.default(r),e.datum&&a.datum&&function(t,e){return(t.datum.datum_type===u.PJD_3PARAM||t.datum.datum_type===u.PJD_7PARAM)&&"WGS84"!==e.datumCode||(e.datum.datum_type===u.PJD_3PARAM||e.datum.datum_type===u.PJD_7PARAM)&&"WGS84"!==t.datumCode}(e,a)&&(r=t(e,n=new o.default("WGS84"),r),e=n),"enu"!==e.axis&&(r=_.default(e,!1,r)),"longlat"===e.projName)r={x:r.x*u.D2R,y:r.y*u.D2R,z:r.z||0};else if(e.to_meter&&(r={x:r.x*e.to_meter,y:r.y*e.to_meter,z:r.z||0}),!(r=e.inverse(r)))return;return e.from_greenwich&&(r.x+=e.from_greenwich),r=m.default(e.datum,a.datum,r),a.from_greenwich&&(r={x:r.x-a.from_greenwich,y:r.y,z:r.z||0}),"longlat"===a.projName?r={x:r.x*u.R2D,y:r.y*u.R2D,z:r.z||0}:(r=a.forward(r),a.to_meter&&(r={x:r.x/a.to_meter,y:r.y/a.to_meter,z:r.z||0})),"enu"!==a.axis?_.default(a,!0,r):r}},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const u=e(44),o=e(66);function _(e){return e===u.PJD_3PARAM||e===u.PJD_7PARAM}a.default=function(e,t,a){return o.compareDatums(e,t)||e.datum_type===u.PJD_NODATUM||t.datum_type===u.PJD_NODATUM?a:e.es!==t.es||e.a!==t.a||_(e.datum_type)||_(t.datum_type)?(a=o.geodeticToGeocentric(a,e.es,e.a),_(e.datum_type)&&(a=o.geocentricToWgs84(a,e.datum_type,e.datum_params)),_(t.datum_type)&&(a=o.geocentricFromWgs84(a,t.datum_type,t.datum_params)),o.geocentricToGeodetic(a,t.es,t.a,t.b)):a}},n function _(a,t,r){Object.defineProperty(r,"__esModule",{value:!0});const e=a(44);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===e.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==e.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,u,s,_,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-e.HALF_PI&&d>-1.001*e.HALF_PI)d=-e.HALF_PI;else if(d>e.HALF_PI&&d<1.001*e.HALF_PI)d=e.HALF_PI;else{if(d<-e.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>e.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),u=Math.sin(d),_=Math.cos(d),s=u*u,{x:((m=r/Math.sqrt(1-t*s))+i)*_*Math.cos(n),y:(m+i)*_*Math.sin(n),z:(m*(1-t)+i)*u}},r.geocentricToGeodetic=function(a,t,r,m){var u,s,_,n,d,i,p,P,o,y,M,z,c,A,x,f=a.x,h=a.y,I=a.z?a.z:0;if(u=Math.sqrt(f*f+h*h),s=Math.sqrt(f*f+h*h+I*I),u/r<1e-12){if(A=0,s/r<1e-12)return e.HALF_PI,x=-m,{x:a.x,y:a.y,z:a.z}}else A=Math.atan2(h,f);_=I/s,P=(n=u/s)*(1-t)*(d=1/Math.sqrt(1-t*(2-t)*n*n)),o=_*d,c=0;do{c++,i=t*(p=r/Math.sqrt(1-t*o*o))/(p+(x=u*P+I*o-p*(1-t*o*o))),z=(M=_*(d=1/Math.sqrt(1-i*(2-i)*n*n)))*P-(y=n*(1-i)*d)*o,P=y,o=M}while(z*z>1e-24&&c<30);return{x:A,y:Math.atan(M/Math.abs(y)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-_*a.z)+u,z:i*(-n*a.x+_*a.y+a.z)+s}}},r.geocentricFromWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-u)/i,o=(a.z-s)/i;return{x:p+d*P-n*o,y:-d*p+P+_*o,z:n*p-_*P+o}}}},n function _(e,a,i){Object.defineProperty(i,"__esModule",{value:!0}),i.default=function(e,a,i){var s,n,r,c=i.x,d=i.y,u=i.z||0,f={};for(r=0;r<3;r++)if(!a||2!==r||void 0!==i.z)switch(0===r?(s=c,n=-1!=="ew".indexOf(e.axis[r])?"x":"y"):1===r?(s=d,n=-1!=="ns".indexOf(e.axis[r])?"y":"x"):(s=u,n="z"),e.axis[r]){case"e":case"w":case"n":case"s":f[n]=s;break;case"u":void 0!==i[n]&&(f.z=s);break;case"d":void 0!==i[n]&&(f.z=-s);break;default:return null}return f}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var n={x:e[0],y:e[1]};return e.length>2&&(n.z=e[2]),e.length>3&&(n.m=e[3]),n}},n function _(e,i,n){function t(e){if("function"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError("coordinates must be finite numbers")}if("number"!=typeof e||e!=e||!isFinite(e))throw new TypeError("coordinates must be finite numbers")}Object.defineProperty(n,"__esModule",{value:!0}),n.default=function(e){t(e.x),t(e.y)}},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),r=e(71),s=n.__importStar(e(74)),_=n.__importStar(e(18)),a=e(81),o=e(82);class l extends r.View{get coordinates(){return this._coordinates}initialize(){super.initialize(),this.visuals=new s.Visuals(this.model),this.needs_webgl_blit=!1,this._initialize_coordinates()}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],()=>this._initialize_coordinates())}_initialize_coordinates(){const{x_range_name:e,y_range_name:i}=this.model,{frame:t}=this.plot_view,n=t.x_scales.get(e),r=t.y_scales.get(i);this._coordinates=new o.CoordinateTransform(n,r)}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.plot_view.canvas_view;return"overlay"==this.model.level?e:i}request_render(){this.plot_view.request_render()}notify_finished(){this.plot_view.notify_finished()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}}t.RendererView=l,l.__name__="RendererView";class d extends a.Model{constructor(e){super(e)}static init_Renderer(){this.define({level:[_.RenderLevel],visible:[_.Boolean,!0],x_range_name:[_.String,"default"],y_range_name:[_.String,"default"]})}}t.Renderer=d,d.__name__="Renderer",d.init_Renderer()},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),r=t(15),n=t(72),o=t(8),h=i.__importDefault(t(73));class a{constructor(t){if(this.removed=new r.Signal0(this,"removed"),this._ready=Promise.resolve(void 0),null==t.model)throw new Error("model of a view wasn’t configured");this.model=t.model,this._parent=t.parent}get ready(){return this._ready}connect(t,e){return t.connect((t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then(()=>i)},this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=n.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this._parent=void 0,this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get parent(){if(void 0!==this._parent)return this._parent;throw new Error("parent of a view wasn’t configured")}get is_root(){return null===this.parent}get root(){return this.is_root?this:this.parent.root}assert_root(){if(!this.is_root)throw new Error(this.toString()+" is not a root layout")}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){r.Signal.disconnectReceiver(this)}on_change(t,e){for(const s of o.isArray(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[h.default]}}s.View=a,a.__name__="View"},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(8),o=t(13),s=t=>(e={},…n)=>{const s=document.createElement(t);s.classList.add("bk");for(let[t,n]of o.entries(e))if(null!=n&&(!i.isBoolean(n)||n))if("class"===t&&(i.isString(n)&&(n=n.split(/\s+/)),i.isArray(n)))for(const t of n)null!=t&&s.classList.add(t);else if("style"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.style[t]=e;else if("data"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.dataset[t]=e;else s.setAttribute(t,n);function l(t){if(i.isString(t))s.appendChild(document.createTextNode(t));else if(t instanceof Node)s.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)s.appendChild(e);else if(null!=t&&!1!==t)throw new Error("expected a DOM element, string, false or null, got "+JSON.stringify(t))}for(const t of n)if(i.isArray(t))for(const e of t)l(e);else l(t);return s};function l(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function r(t,…e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function a(t,e){const n=Element.prototype;return(n.matches||n.webkitMatchesSelector||n.mozMatchesSelector||n.msMatchesSelector).call(t,e)}function c(t){return parseFloat(t)||0}function h(t){const e=getComputedStyle(t);return{border:{top:c(e.borderTopWidth),bottom:c(e.borderBottomWidth),left:c(e.borderLeftWidth),right:c(e.borderRightWidth)},margin:{top:c(e.marginTop),bottom:c(e.marginBottom),left:c(e.marginLeft),right:c(e.marginRight)},padding:{top:c(e.paddingTop),bottom:c(e.paddingBottom),left:c(e.paddingLeft),right:c(e.paddingRight)}}}function d(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,…n){return s(t)(e,…n)},n.div=s("div"),n.span=s("span"),n.canvas=s("canvas"),n.link=s("link"),n.style=s("style"),n.a=s("a"),n.p=s("p"),n.i=s("i"),n.pre=s("pre"),n.button=s("button"),n.label=s("label"),n.input=s("input"),n.select=s("select"),n.option=s("option"),n.optgroup=s("optgroup"),n.textarea=s("textarea"),n.nbsp=function(){return document.createTextNode(" ")},n.append=function(t,…e){for(const n of e)t.appendChild(n)},n.remove=l,n.removeElement=l,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=r,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=""},n.undisplay=function(t){t.style.display="none"},n.show=function(t){t.style.visibility=""},n.hide=function(t){t.style.visibility="hidden"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=a,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(a(n,e))return n;return null},n.extents=h,n.size=d,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=h(t),{width:s,height:l}=d(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=h(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=e.x+"px",i.top=e.y+"px",i.width=e.width+"px",i.height=e.height+"px",null==n)i.margin="";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class f{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e<this.classList.length;e++){const n=this.classList.item(e);null!=n&&t.push(n)}return t}has(t){return this.classList.contains(t)}add(…t){for(const e of t)this.classList.add(e);return this}remove(…t){for(const e of t)this.classList.remove(e);return this}clear(){for(const t of this.values)"bk"!=t&&this.classList.remove(t);return this}toggle(t,e){return(null!=e?e:!this.has(t))?this.add(t):this.remove(t),this}}var u;function p(t,e,n){const{width:i,height:o,position:s,display:l}=t.style;t.style.position="absolute",t.style.display="",t.style.width=null!=e.width&&e.width!=1/0?e.width+"px":"auto",t.style.height=null!=e.height&&e.height!=1/0?e.height+"px":"auto";try{return n()}finally{t.style.position=s,t.style.display=l,t.style.width=i,t.style.height=o}}n.ClassList=f,f.__name__="ClassList",n.classes=function(t){return new f(t)},n.toggle_attribute=function(t,e,n){null==n&&(n=!t.hasAttribute(e)),n?t.setAttribute(e,"true"):t.removeAttribute(e)},(u=n.Keys||(n.Keys={}))[u.Backspace=8]="Backspace",u[u.Tab=9]="Tab",u[u.Enter=13]="Enter",u[u.Esc=27]="Esc",u[u.PageUp=33]="PageUp",u[u.PageDown=34]="PageDown",u[u.Left=37]="Left",u[u.Up=38]="Up",u[u.Right=39]="Right",u[u.Down=40]="Down",u[u.Delete=46]="Delete",n.undisplayed=function(t,e){const{display:n}=t.style;t.style.display="none";try{return e()}finally{t.style.display=n}},n.unsized=function(t,e){return p(t,{},e)},n.sized=p;class g{constructor(t){this.root=t,this.known=new Set,this.style=n.style({type:"text/css"}),r(t,this.style)}append(t){this.known.has(t)||(this.style.appendChild(document.createTextNode(t)),this.known.add(t))}}n.StyleSheet=g,g.__name__="StyleSheet",n.stylesheet=new g(document.head)},n function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default="\n.bk-root {\n position: relative;\n width: auto;\n height: auto;\n z-index: 0;\n box-sizing: border-box;\n font-family: Helvetica, Arial, sans-serif;\n font-size: 13px;\n}\n.bk-root .bk,\n.bk-root .bk:before,\n.bk-root .bk:after {\n box-sizing: inherit;\n margin: 0;\n border: 0;\n padding: 0;\n background-image: none;\n font-family: inherit;\n font-size: 100%;\n line-height: 1.42857143;\n}\n.bk-root pre.bk {\n font-family: Courier, monospace;\n}\n"},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),l=s.__importStar(e(28)),c=s.__importStar(e(18)),i=e(22),o=e(8),r=e(75),h=e(77);function n(e,t){const[a,s,l,c]=o.isString(e)?i.color2rgba(e):i.decode_rgba(e);return`rgba(${255*a}, ${255*s}, ${255*l}, ${1==c?t:c})`}function _(e,t,a){e.moveTo(0,a+.5),e.lineTo(t,a+.5),e.stroke()}function u(e,t,a){e.moveTo(a+.5,0),e.lineTo(a+.5,t),e.stroke()}function v(e,t){e.moveTo(0,t),e.lineTo(t,0),e.stroke(),e.moveTo(0,0),e.lineTo(t,t),e.stroke()}a.hatch_aliases={" ":"blank",".":"dot",o:"ring","-":"horizontal_line","|\":\"vertical_line\",\"+\":\"cross\",'\"':\"horizontal_dash\",\":\":\"vertical_dash\",\"@\":\"spiral\",\"/\":\"right_diagonal_line\",\"\\\\\":\"left_diagonal_line\",x:\"diagonal_cross\",\",\":\"right_diagonal_dash\",\"`\":\"left_diagonal_dash\",v:\"horizontal_wave\",\">\":\"vertical_wave\",\"*\":\"criss_cross\"};class p{constructor(e,t=\"\"){this.obj=e,this.prefix=t,this.cache={};for(const a of this.attrs)this[a]=e.properties[t+a]}warm_cache(e,t){for(const a of this.attrs){const s=this.obj.properties[this.prefix+a];if(void 0!==s.spec.value)this.cache[a]=s.spec.value;else{if(!(null!=e&&s instanceof c.VectorSpec))throw new Error(\"source is required with a vectorized visual property\");{const l=s.array(e),c=null!=t?t.select(l):l;this.cache[a+\"_array\"]=c}}}}cache_select(e,t){const a=this.obj.properties[this.prefix+e];let s;return void 0!==a.spec.value?this.cache[e]=s=a.spec.value:this.cache[e]=s=this.cache[e+\"_array\"][t],s}get_array(e){return this.cache[e+\"_array\"]}set_vectorize(e,t){this._set_vectorize(e,t)}}a.ContextProperties=p,p.__name__=\"ContextProperties\";class f extends p{set_value(e){const t=this.line_color.value(),a=this.line_alpha.value();e.strokeStyle=n(t,a),e.lineWidth=this.line_width.value(),e.lineJoin=this.line_join.value(),e.lineCap=this.line_cap.value(),e.lineDash=this.line_dash.value(),e.lineDashOffset=this.line_dash_offset.value()}get doit(){return!(null===this.line_color.spec.value||0==this.line_alpha.spec.value||0==this.line_width.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"line_color\",t),s=this.cache_select(\"line_alpha\",t),l=this.cache_select(\"line_width\",t),c=this.cache_select(\"line_join\",t),i=this.cache_select(\"line_cap\",t),o=this.cache_select(\"line_dash\",t),r=this.cache_select(\"line_dash_offset\",t);e.strokeStyle=n(a,s),e.lineWidth=l,e.lineJoin=c,e.lineCap=i,e.lineDash=o,e.lineDashOffset=r}color_value(){return n(this.line_color.value(),this.line_alpha.value())}}a.Line=f,f.__name__=\"Line\",f.prototype.attrs=Object.keys(l.LineVector);class d extends p{set_value(e){const t=this.fill_color.value(),a=this.fill_alpha.value();e.fillStyle=n(t,a)}get doit(){return!(null===this.fill_color.spec.value||0==this.fill_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"fill_color\",t),s=this.cache_select(\"fill_alpha\",t);e.fillStyle=n(a,s)}color_value(){return n(this.fill_color.value(),this.fill_alpha.value())}}a.Fill=d,d.__name__=\"Fill\",d.prototype.attrs=Object.keys(l.FillVector);class k extends p{cache_select(e,t){let s;if(\"pattern\"==e){const e=this.cache_select(\"hatch_color\",t),s=this.cache_select(\"hatch_alpha\",t),l=this.cache_select(\"hatch_scale\",t),c=this.cache_select(\"hatch_pattern\",t),i=this.cache_select(\"hatch_weight\",t),{hatch_extra:o}=this.cache;if(null!=o&&o.hasOwnProperty(c)){const t=o[c];this.cache.pattern=t.get_pattern(e,s,l,i)}else this.cache.pattern=t=>{const o=t instanceof r.SVGRenderingContext2D?\"svg\":\"canvas\",p=new h.CanvasLayer(o,!0);return p.resize(l,l),p.prepare(),function(e,t,s,l,c,i){var o;const r=c,h=r/2,p=h/2;switch(e.strokeStyle=n(s,l),e.lineCap=\"square\",e.fillStyle=s,e.lineWidth=i,null!==(o=a.hatch_aliases[t])&&void 0!==o?o:t){case\"blank\":break;case\"dot\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":_(e,r,h);break;case\"vertical_line\":u(e,r,h);break;case\"cross\":_(e,r,h),u(e,r,h);break;case\"horizontal_dash\":_(e,h,h);break;case\"vertical_dash\":u(e,h,h);break;case\"spiral\":{const t=r/30;e.moveTo(h,h);for(let a=0;a<360;a++){const s=.1*a,l=h+t*s*Math.cos(s),c=h+t*s*Math.sin(s);e.lineTo(l,c)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-p,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(5*p+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(p+.5,r),e.lineTo(.5-p,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(5*p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":v(e,r);break;case\"right_diagonal_dash\":e.moveTo(p+.5,3*p+.5),e.lineTo(3*p+.5,p+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(p+.5,p+.5),e.lineTo(3*p+.5,3*p+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,p),e.lineTo(h,3*p),e.lineTo(r,p),e.stroke();break;case\"vertical_wave\":e.moveTo(p,0),e.lineTo(3*p,h),e.lineTo(p,r),e.stroke();break;case\"criss_cross\":v(e,r),_(e,r,h),u(e,r,h)}}(p.ctx,c,e,s,l,i),t.createPattern(p.canvas,\"repeat\")}}else s=super.cache_select(e,t);return s}_try_defer(e){const{hatch_pattern:t,hatch_extra:a}=this.cache;if(null!=a&&a.hasOwnProperty(t)){a[t].onload(e)}}get doit(){return!(null===this.hatch_color.spec.value||0==this.hatch_alpha.spec.value||" "==this.hatch_pattern.spec.value||"blank"==this.hatch_pattern.spec.value||null===this.hatch_pattern.spec.value)}doit2(e,t,a,s){if(!this.doit)return;this.cache_select("pattern",t);null==this.cache.pattern(e)?this._try_defer(s):(this.set_vectorize(e,t),a())}_set_vectorize(e,t){this.cache_select("pattern",t),e.fillStyle=this.cache.pattern(e)}color_value(){return n(this.hatch_color.value(),this.hatch_alpha.value())}}a.Hatch=k,k.__name__="Hatch",k.prototype.attrs=Object.keys(l.HatchVector);class x extends p{color_value(){return n(this.text_color.value(),this.text_alpha.value())}font_value(){const e=this.text_font.value(),t=this.text_font_size.value();return`${this.text_font_style.value()} ${t} ${e}`}v_font_value(e){super.cache_select("text_font_style",e),super.cache_select("text_font_size",e),super.cache_select("text_font",e);const{text_font_style:t,text_font_size:a,text_font:s}=this.cache;return`${t} ${a} ${s}`}cache_select(e,t){let a;return"font"==e?this.cache.font=a=this.v_font_value(t):a=super.cache_select(e,t),a}set_value(e){const t=this.text_color.value(),a=this.text_alpha.value();e.fillStyle=n(t,a),e.font=this.font_value(),e.textAlign=this.text_align.value(),e.textBaseline=this.text_baseline.value()}get doit(){return!(null===this.text_color.spec.value||0==this.text_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select("text_color",t),s=this.cache_select("text_alpha",t),l=this.cache_select("font",t),c=this.cache_select("text_align",t),i=this.cache_select("text_baseline",t);e.fillStyle=n(a,s),e.font=l,e.textAlign=c,e.textBaseline=i}}a.Text=x,x.__name__="Text",x.prototype.attrs=Object.keys(l.TextVector);class b{constructor(e){for(const t of e._mixins){const[a,s=""]=t.split(":");let l;switch(a){case"line":l=f;break;case"fill":l=d;break;case"hatch":l=k;break;case"text":l=x;break;default:throw new Error("unknown visual: "+a)}this[s+a]=new l(e,s)}}warm_cache(e,t){for(const a in this)if(this.hasOwnProperty(a)){const s=this[a];s instanceof p&&s.warm_cache(e,t)}}}a.Visuals=b,b.__name__="Visuals"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(76),n=t(8),r=t(72);function a(t){if(!t)throw new Error("cannot create a random attribute name for an undefined object");const e="ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";let i="";do{i="";for(let t=0;t<12;t++)i+=e[Math.floor(Math.random()*e.length)]}while(t[i]);return i}function o(t){const e={left:"start",right:"end",center:"middle",start:"start",end:"end"};return e[t]||e.start}function l(t){const e={alphabetic:"alphabetic",hanging:"hanging",top:"text-before-edge",bottom:"text-after-edge",middle:"central"};return e[t]||e.alphabetic}const h=function(t,e){const i=new Map,s=t.split(",");e=e||10;for(let t=0;t<s.length;t+=2){const n="&"+s[t+1]+";",r=parseInt(s[t],e);i.set(n,"&#"+r+";")}return i.set("\\xa0"," "),i}("50,nbsp,51,iexcl,52,cent,53,pound,54,curren,55,yen,56,brvbar,57,sect,58,uml,59,copy,5a,ordf,5b,laquo,5c,not,5d,shy,5e,reg,5f,macr,5g,deg,5h,plusmn,5i,sup2,5j,sup3,5k,acute,5l,micro,5m,para,5n,middot,5o,cedil,5p,sup1,5q,ordm,5r,raquo,5s,frac14,5t,frac12,5u,frac34,5v,iquest,60,Agrave,61,Aacute,62,Acirc,63,Atilde,64,Auml,65,Aring,66,AElig,67,Ccedil,68,Egrave,69,Eacute,6a,Ecirc,6b,Euml,6c,Igrave,6d,Iacute,6e,Icirc,6f,Iuml,6g,ETH,6h,Ntilde,6i,Ograve,6j,Oacute,6k,Ocirc,6l,Otilde,6m,Ouml,6n,times,6o,Oslash,6p,Ugrave,6q,Uacute,6r,Ucirc,6s,Uuml,6t,Yacute,6u,THORN,6v,szlig,70,agrave,71,aacute,72,acirc,73,atilde,74,auml,75,aring,76,aelig,77,ccedil,78,egrave,79,eacute,7a,ecirc,7b,euml,7c,igrave,7d,iacute,7e,icirc,7f,iuml,7g,eth,7h,ntilde,7i,ograve,7j,oacute,7k,ocirc,7l,otilde,7m,ouml,7n,divide,7o,oslash,7p,ugrave,7q,uacute,7r,ucirc,7s,uuml,7t,yacute,7u,thorn,7v,yuml,ci,fnof,sh,Alpha,si,Beta,sj,Gamma,sk,Delta,sl,Epsilon,sm,Zeta,sn,Eta,so,Theta,sp,Iota,sq,Kappa,sr,Lambda,ss,Mu,st,Nu,su,Xi,sv,Omicron,t0,Pi,t1,Rho,t3,Sigma,t4,Tau,t5,Upsilon,t6,Phi,t7,Chi,t8,Psi,t9,Omega,th,alpha,ti,beta,tj,gamma,tk,delta,tl,epsilon,tm,zeta,tn,eta,to,theta,tp,iota,tq,kappa,tr,lambda,ts,mu,tt,nu,tu,xi,tv,omicron,u0,pi,u1,rho,u2,sigmaf,u3,sigma,u4,tau,u5,upsilon,u6,phi,u7,chi,u8,psi,u9,omega,uh,thetasym,ui,upsih,um,piv,812,bull,816,hellip,81i,prime,81j,Prime,81u,oline,824,frasl,88o,weierp,88h,image,88s,real,892,trade,89l,alefsym,8cg,larr,8ch,uarr,8ci,rarr,8cj,darr,8ck,harr,8dl,crarr,8eg,lArr,8eh,uArr,8ei,rArr,8ej,dArr,8ek,hArr,8g0,forall,8g2,part,8g3,exist,8g5,empty,8g7,nabla,8g8,isin,8g9,notin,8gb,ni,8gf,prod,8gh,sum,8gi,minus,8gn,lowast,8gq,radic,8gt,prop,8gu,infin,8h0,ang,8h7,and,8h8,or,8h9,cap,8ha,cup,8hb,int,8hk,there4,8hs,sim,8i5,cong,8i8,asymp,8j0,ne,8j1,equiv,8j4,le,8j5,ge,8k2,sub,8k3,sup,8k4,nsub,8k6,sube,8k7,supe,8kl,oplus,8kn,otimes,8l5,perp,8m5,sdot,8o8,lceil,8o9,rceil,8oa,lfloor,8ob,rfloor,8p9,lang,8pa,rang,9ea,loz,9j0,spades,9j3,clubs,9j5,hearts,9j6,diams,ai,OElig,aj,oelig,b0,Scaron,b1,scaron,bo,Yuml,m6,circ,ms,tilde,802,ensp,803,emsp,809,thinsp,80c,zwnj,80d,zwj,80e,lrm,80f,rlm,80j,ndash,80k,mdash,80o,lsquo,80p,rsquo,80q,sbquo,80s,ldquo,80t,rdquo,80u,bdquo,810,dagger,811,Dagger,81g,permil,81p,lsaquo,81q,rsaquo,85c,euro",32),c={strokeStyle:{svgAttr:"stroke",canvas:"#000000",svg:"none",apply:"stroke"},fillStyle:{svgAttr:"fill",canvas:"#000000",svg:null,apply:"fill"},lineCap:{svgAttr:"stroke-linecap",canvas:"butt",svg:"butt",apply:"stroke"},lineJoin:{svgAttr:"stroke-linejoin",canvas:"miter",svg:"miter",apply:"stroke"},miterLimit:{svgAttr:"stroke-miterlimit",canvas:10,svg:4,apply:"stroke"},lineWidth:{svgAttr:"stroke-width",canvas:1,svg:1,apply:"stroke"},globalAlpha:{svgAttr:"opacity",canvas:1,svg:1,apply:"fill stroke"},font:{canvas:"10px sans-serif"},shadowColor:{canvas:"#000000"},shadowOffsetX:{canvas:0},shadowOffsetY:{canvas:0},shadowBlur:{canvas:0},textAlign:{canvas:"start"},textBaseline:{canvas:"alphabetic"},lineDash:{svgAttr:"stroke-dasharray",canvas:[],svg:null,apply:"stroke"}};class _{constructor(t,e){this.__root=t,this.__ctx=e}addColorStop(t,e){const i=this.__ctx.__createElement("stop");if(i.setAttribute("offset",""+t),-1!==e.indexOf("rgba")){const t=/rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?\.?\d*)\s*\)/gi.exec(e),[,s,n,r,a]=t;i.setAttribute("stop-color",`rgb(${s},${n},${r})`),i.setAttribute("stop-opacity",a)}else i.setAttribute("stop-color",e);this.__root.appendChild(i)}}_.__name__="CanvasGradient";class u{constructor(t,e){this.__root=t,this.__ctx=e}}u.__name__="CanvasPattern";class p{constructor(t){var e,i,n;this.__currentPosition=null,this.__currentElementsToStyle=null,this._transform=new s.AffineTransform,this._clip_path=null,this.__document=null!==(e=null==t?void 0:t.document)&&void 0!==e?e:document,(null==t?void 0:t.ctx)?this.__ctx=t.ctx:(this.__canvas=this.__document.createElement("canvas"),this.__ctx=this.__canvas.getContext("2d")),this.__setDefaultStyles(),this.__stack=[],this.__root=this.__document.createElementNS("http://www.w3.org/2000/svg","svg"),this.__root.setAttribute("version","1.1"),this.__root.setAttribute("xmlns","http://www.w3.org/2000/svg"),this.__root.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:xlink","http://www.w3.org/1999/xlink"),this.width=null!==(i=null==t?void 0:t.width)&&void 0!==i?i:500,this.height=null!==(n=null==t?void 0:t.height)&&void 0!==n?n:500,this.__ids={},this.__defs=this.__document.createElementNS("http://www.w3.org/2000/svg","defs"),this.__root.appendChild(this.__defs)}get canvas(){return this}get width(){return this._width}set width(t){this._width=t,this.__root.setAttribute("width",""+t)}get height(){return this._height}set height(t){this._height=t,this.__root.setAttribute("height",""+t)}__createElement(t,e={},i=!1){const s=this.__document.createElementNS("http://www.w3.org/2000/svg",t);i&&(s.setAttribute("fill","none"),s.setAttribute("stroke","none"));const n=Object.keys(e);for(const t of n)s.setAttribute(t,""+e[t]);return s}__setDefaultStyles(){const t=Object.keys(c),e=this;for(let i=0;i<t.length;i++){const s=t[i];e[s]=c[s].canvas}}__applyStyleState(t){const e=Object.keys(t),i=this;for(let s=0;s<e.length;s++){const n=e[s];i[n]=t[n]}}__getStyleState(){const t=Object.keys(c),e={};for(let i=0;i<t.length;i++){const s=t[i];e[s]=this[s]}return e}__applyStyleToCurrentElement(t){let e=this.__currentElement;const i=this.__currentElementsToStyle;if(null!=i){e.setAttribute(t,""),e=i.element;for(const e of i.children)e.setAttribute(t,"")}const s=Object.keys(c);for(let i=0;i<s.length;i++){const r=c[s[i]],a=this[s[i]];if(r.apply)if(a instanceof u){for(const t of[…a.__ctx.__defs.childNodes])if(t instanceof Element){const e=t.getAttribute("id");this.__ids[e]=e,this.__defs.appendChild(t)}const t=a.__root.getAttribute("id");e.setAttribute(r.apply,`url(#${t})`)}else if(a instanceof _){const t=a.__root.getAttribute("id");e.setAttribute(r.apply,`url(#${t})`)}else if(-1!==r.apply.indexOf(t)&&r.svg!==a)if("stroke"!==r.svgAttr&&"fill"!==r.svgAttr||!n.isString(a)||-1===a.indexOf("rgba")){let n=r.svgAttr;if("globalAlpha"===s[i]&&(n=t+"-"+r.svgAttr,e.getAttribute(n)))continue;e.setAttribute(n,""+a)}else{const t=/rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?\.?\d*)\s*\)/gi.exec(a),[,i,s,n,o]=t;e.setAttribute(r.svgAttr,`rgb(${i},${s},${n})`);let l=parseFloat(o);const h=this.globalAlpha;null!=h&&(l*=h),e.setAttribute(r.svgAttr+"-opacity",""+l)}}}get_serialized_svg(t=!1){let e=(new XMLSerializer).serializeToString(this.__root);if(/xmlns="http:\/\/www\.w3\.org\/2000\/svg".+xmlns="http:\/\/www\.w3\.org\/2000\/svg/gi.test(e)&&(e=e.replace(‘xmlns="http://www.w3.org/2000/svg’,’xmlns:xlink="http://www.w3.org/1999/xlink’)),t)for(const[t,i]of h){const s=new RegExp(t,"gi");s.test(e)&&(e=e.replace(s,i))}return e}get_svg(){return this.__root}save(){this.__stack.push({transform:this._transform,clip_path:this._clip_path,attributes:this.__getStyleState()}),this._transform=this._transform.clone()}restore(){if(0==this.__stack.length)return;const{transform:t,clip_path:e,attributes:i}=this.__stack.pop();this._transform=t,this._clip_path=e,this.__applyStyleState(i)}_apply_transform(t,e=this._transform){e.is_identity||t.setAttribute("transform",e.toString())}scale(t,e){isFinite(t)&&(null==e||isFinite(e))&&this._transform.scale(t,null!=e?e:t)}rotate(t){isFinite(t)&&this._transform.rotate(t)}translate(t,e){isFinite(t+e)&&this._transform.translate(t,e)}transform(t,e,i,s,n,r){isFinite(t+e+i+s+n+r)&&this._transform.transform(t,e,i,s,n,r)}beginPath(){this.__currentDefaultPath="",this.__currentPosition=null;const t=this.__createElement("path",{},!0);this.__root.appendChild(t),this.__currentElement=t}__applyCurrentDefaultPath(){const t=this.__currentElement;"path"===t.nodeName?t.setAttribute("d",this.__currentDefaultPath):console.error("Attempted to apply path command to node",t.nodeName)}__addPathCommand(t,e,i){const s=this.__currentDefaultPath?" ":"";this.__currentDefaultPath+=s+i,this.__currentPosition={x:t,y:e}}get _hasCurrentDefaultPath(){return!!this.__currentDefaultPath}moveTo(t,e){if(!isFinite(t+e))return;"path"!==this.__currentElement.nodeName&&this.beginPath();const[i,s]=this._transform.apply(t,e);this.__addPathCommand(i,s,`M ${i} ${s}`)}closePath(){this._hasCurrentDefaultPath&&this.__addPathCommand(NaN,NaN,"Z")}lineTo(t,e){if(isFinite(t+e))if(this._hasCurrentDefaultPath){const[i,s]=this._transform.apply(t,e);this.__addPathCommand(i,s,`L ${i} ${s}`)}else this.moveTo(t,e)}bezierCurveTo(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))return;const[a,o]=this._transform.apply(n,r),[l,h]=this._transform.apply(t,e),[c,_]=this._transform.apply(i,s);this.__addPathCommand(a,o,`C ${l} ${h} ${c} ${_} ${a} ${o}`)}quadraticCurveTo(t,e,i,s){if(!isFinite(t+e+i+s))return;const[n,r]=this._transform.apply(i,s),[a,o]=this._transform.apply(t,e);this.__addPathCommand(n,r,`Q ${a} ${o} ${n} ${r}`)}arcTo(t,e,i,s,n){if(!isFinite(t+e+i+s+n))return;if(null==this.__currentPosition)return;const r=this.__currentPosition.x,a=this.__currentPosition.y;if(n<0)throw new Error("IndexSizeError: The radius provided ("+n+") is negative.");if(r===t&&a===e||t===i&&e===s||0===n)return void this.lineTo(t,e);function o([t,e]){const i=Math.sqrt(t**2+e**2);return[t/i,e/i]}const l=o([r-t,a-e]),h=o([i-t,s-e]);if(l[0]*h[1]==l[1]*h[0])return void this.lineTo(t,e);const c=l[0]*h[0]+l[1]*h[1],_=Math.acos(Math.abs(c)),u=o([l[0]+h[0],l[1]+h[1]]),p=n/Math.sin(_/2),d=t+p*u[0],m=e+p*u[1],f=[-l[1],l[0]],g=[h[1],-h[0]];function w(t){const e=t[0];return t[1]>=0?Math.acos(e):-Math.acos(e)}const b=w(f),v=w(g);this.lineTo(d+f[0]*n,m+f[1]*n),this.arc(d,m,n,b,v)}stroke(){"path"===this.__currentElement.nodeName&&this.__currentElement.setAttribute("paint-order","fill"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement("stroke"),null!=this._clip_path&&this.__currentElement.setAttribute("clip-path",this._clip_path)}fill(){"path"===this.__currentElement.nodeName&&this.__currentElement.setAttribute("paint-order","stroke"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement("fill"),null!=this._clip_path&&this.__currentElement.setAttribute("clip-path",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&("path"!==this.__currentElement.nodeName&&this.beginPath(),this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){r.empty(this.__defs),r.empty(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const n=this.__createElement("rect",{x:t,y:e,width:i,height:s,fill:"#FFFFFF"},!0);this._apply_transform(n),this.__root.appendChild(n)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error("The provided double value is non-finite");const[n,r]=this._transform.apply(t,e),[o,l]=this._transform.apply(i,s),h=this.__createElement("linearGradient",{id:a(this.__ids),x1:n+"px",x2:o+"px",y1:r+"px",y2:l+"px",gradientUnits:"userSpaceOnUse"},!1);return this.__defs.appendChild(h),new _(h,this)}createRadialGradient(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))throw new Error("The provided double value is non-finite");const[o,l]=this._transform.apply(t,e),[h,c]=this._transform.apply(s,n),u=this.__createElement("radialGradient",{id:a(this.__ids),cx:h+"px",cy:c+"px",r:r+"px",fx:o+"px",fy:l+"px",gradientUnits:"userSpaceOnUse"},!1);return this.__defs.appendChild(u),new _(u,this)}__parseFont(){const t=/^\s*(?=(?:(?:[-a-z]+\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\1|\2|\3)\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\d]+(?:\%|in|[cem]m|ex|p[ctx]))(?:\s*\/\s*(normal|[.\d]+(?:\%|in|[cem]m|ex|p[ctx])))?\s*([-,\’\"\sa-z0-9]+?)\s*$/i.exec(this.font),e={style:t[1]||"normal",size:t[4]||"10px",family:t[6]||"sans-serif",weight:t[3]||"normal",decoration:t[2]||"normal"};return"underline"===this.__fontUnderline&&(e.decoration="underline"),null!=this.__fontHref&&(e.href=this.__fontHref),e}__wrapTextLink(t,e){if(t.href){const i=this.__createElement("a");return i.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",t.href),i.appendChild(e),i}return e}__applyText(t,e,i,s){const n=this.__parseFont(),r=this.__createElement("text",{"font-family":n.family,"font-size":n.size,"font-style":n.style,"font-weight":n.weight,"text-decoration":n.decoration,x:e,y:i,"text-anchor":o(this.textAlign),"dominant-baseline":l(this.textBaseline)},!0);r.appendChild(this.__document.createTextNode(t)),this._apply_transform(r),this.__currentElement=r,this.__applyStyleToCurrentElement(s),this.__root.appendChild(this.__wrapTextLink(n,r))}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,"fill")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,"stroke")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,n,r=!1){if(!isFinite(t+e+i+s+n))return;if(s===n)return;(s%=2*Math.PI)===(n%=2*Math.PI)&&(n=(n+2*Math.PI-.001*(r?-1:1))%(2*Math.PI));const a=t+i*Math.cos(n),o=e+i*Math.sin(n),l=t+i*Math.cos(s),h=e+i*Math.sin(s),c=r?0:1;let _=0,u=n-s;u<0&&(u+=2*Math.PI),_=r?u>Math.PI?0:1:u>Math.PI?1:0,this.lineTo(l,h);const p=i,d=i,[m,f]=this._transform.apply(a,o);this.__addPathCommand(m,f,`A ${p} ${d} 0 ${_} ${c} ${m} ${f}`)}clip(){const t=this.__createElement("clipPath"),e=a(this.__ids);this.__applyCurrentDefaultPath(),t.setAttribute("id",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,…e){let i,s,n,r,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,n=l,r=h}else if(4==e.length){if([i,s,n,r]=e,!isFinite(i+s+n+r))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error("Inavlid number of arguments passed to drawImage: "+arguments.length);if([a,o,l,h,i,s,n,r]=e,!isFinite(a+o+l+h+i+s+n+r))return}const c=this.__root,_="translate("+i+", "+s+")",u=this._transform.clone().translate(i,s);if(t instanceof p||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;u.is_identity?i=c:(i=this.__createElement("g"),this._apply_transform(i,u),c.appendChild(i));for(const t of[…e.childNodes])if(t instanceof SVGDefsElement){for(const e of[…t.childNodes])if(e instanceof Element){const t=e.getAttribute("id");this.__ids[t]=t,this.__defs.appendChild(e)}}else i.appendChild(t)}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement("image");if(e.setAttribute("width",""+n),e.setAttribute("height",""+r),e.setAttribute("preserveAspectRatio","none"),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement("canvas");e.width=n,e.height=r;e.getContext("2d").drawImage(t,a,o,l,h,0,0,n,r),t=e}e.setAttribute("transform",_);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute("src");e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",i),c.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement("image");e.setAttribute("width",""+n),e.setAttribute("height",""+r),e.setAttribute("preserveAspectRatio","none");const i=this.__document.createElement("canvas");i.width=n,i.height=r;const s=i.getContext("2d");s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,n,r),t=i,e.setAttribute("transform",_),e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",t.toDataURL()),c.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS("http://www.w3.org/2000/svg","pattern"),s=a(this.__ids);if(i.setAttribute("id",s),i.setAttribute("width",""+this._to_number(t.width)),i.setAttribute("height",""+this._to_number(t.height)),i.setAttribute("patternUnits","userSpaceOnUse"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS("http://www.w3.org/2000/svg","image"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute("src");e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof p){for(const e of[…t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error("unsupported");for(const e of[…t.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}return new u(i,this)}setLineDash(t){t&&t.length>0?this.lineDash=t.join(","):this.lineDash=null}_to_number(t){return n.isNumber(t)?t:t.baseVal.value}}i.SVGRenderingContext2D=p,p.__name__="SVGRenderingContext2D"},n function _(t,s,r){Object.defineProperty(r,"__esModule",{value:!0});const{sin:e,cos:n}=Math;class i{constructor(t=1,s=0,r=0,e=1,n=0,i=0){this.a=t,this.b=s,this.c=r,this.d=e,this.e=n,this.f=i}toString(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return`matrix(${t}, ${s}, ${r}, ${e}, ${n}, ${i})`}clone(){const{a:t,b:s,c:r,d:e,e:n,f:a}=this;return new i(t,s,r,e,n,a)}get is_identity(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return 1==t&&0==s&&0==r&&1==e&&0==n&&0==i}apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this;return[r*t+n*s+a,e*t+i*s+h]}iv_apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this,c=t.length;for(let o=0;o<c;o++){const c=t[o],f=s[o];t[o]=r*c+n*f+a,s[o]=e*c+i*f+h}}transform(t,s,r,e,n,i){const{a,b:h,c,d:o,e:f,f:l}=this;return this.a=a*t+c*s,this.c=a*r+c*e,this.e=a*n+c*i+f,this.b=h*t+o*s,this.d=h*r+o*e,this.f=h*n+o*i+l,this}translate(t,s){return this.transform(1,0,0,1,t,s)}scale(t,s){return this.transform(t,0,0,s,0,0)}skew(t,s){return this.transform(1,s,t,1,0,0)}rotate(t){const s=e(t),r=n(t);return this.transform(r,s,-s,r,0,0)}rotate_ccw(t){return this.rotate(-t)}translate_x(t){return this.translate(t,0)}translate_y(t){return this.translate(0,t)}flip(){return this.scale(-1,-1)}flip_x(){return this.scale(1,-1)}flip_y(){return this.scale(-1,1)}}r.AffineTransform=i,i.__name__="AffineTransform"},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),a=e(14),n=e(78),l=e(19),o=s.__importStar(e(18)),r=e(72),h=e(13),c=e(79),_=e(80),d=e(75),p=(()=>{const e=document.createElement("canvas"),t=e.getContext("webgl",{premultipliedAlpha:!0});return null!=t?{canvas:e,gl:t}:void l.logger.trace("WebGL is not supported")})(),v={position:"absolute",top:"0",left:"0",width:"100%",height:"100%"};class b{constructor(e,t){switch(this.backend=e,this.hidpi=t,this.pixel_ratio=1,this.bbox=new c.BBox,e){case"webgl":case"canvas":{this._el=this._canvas=r.canvas({style:v});const e=this.canvas.getContext("2d");if(null==e)throw new Error("unable to obtain 2D rendering context");this._ctx=e,t&&(this.pixel_ratio=devicePixelRatio);break}case"svg":{const e=new d.SVGRenderingContext2D;this._ctx=e,this._canvas=e.get_svg(),this._el=r.div({style:v},this._canvas);break}}_.fixup_ctx(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t});const i=this._ctx instanceof d.SVGRenderingContext2D?this._ctx:this.canvas;i.width=e*this.pixel_ratio,i.height=t*this.pixel_ratio}prepare(){const{ctx:e,hidpi:t,pixel_ratio:i}=this;e.save(),t&&(e.scale(i,i),e.translate(.5,.5)),this.clear()}clear(){const{x:e,y:t,width:i,height:s}=this.bbox;this.ctx.clearRect(e,t,i,s)}finish(){this.ctx.restore()}to_blob(){const{_canvas:e}=this;if(e instanceof HTMLCanvasElement)return null!=e.msToBlob?Promise.resolve(e.msToBlob()):new Promise((t,i)=>{e.toBlob(e=>null!=e?t(e):i(),"image/png")});{const e=this._ctx.get_serialized_svg(!0),t=new Blob([e],{type:"image/svg+xml"});return Promise.resolve(t)}}}i.CanvasLayer=b,b.__name__="CanvasLayer";class g extends n.DOMView{constructor(){super(…arguments),this.bbox=new c.BBox}initialize(){super.initialize();const{output_backend:e,hidpi:t}=this.model;"webgl"==e&&(this.webgl=p),this.underlays_el=r.div({style:v}),this.primary=new b(e,t),this.overlays=new b(e,t),this.overlays_el=r.div({style:v}),this.events_el=r.div({class:"bk-canvas-events",style:v});const i=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];h.extend(this.el.style,v),r.append(this.el,…i),l.logger.debug("CanvasView initialized")}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const{gl:a}=t;a.enable(a.SCISSOR_TEST);const[n,l,o,r]=e,{xview:h,yview:c}=this.bbox,_=h.compute(n),d=c.compute(l+r),p=this.pixel_ratio;a.scissor(p*_,p*d,p*o,p*r),a.enable(a.BLEND),a.blendFuncSeparate(a.SRC_ALPHA,a.ONE_MINUS_SRC_ALPHA,a.ONE_MINUS_DST_ALPHA,a.ONE)}}clear_webgl(){const{webgl:e}=this;if(null!=e){const{gl:t,canvas:i}=e;t.viewport(0,0,i.width,i.height),t.clearColor(0,0,0,0),t.clear(t.COLOR_BUFFER_BIT||t.DEPTH_BUFFER_BIT)}}blit_webgl(e){const{webgl:t}=this;if(null!=t&&(l.logger.debug("Blitting WebGL canvas"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi)){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}}compose(){const{output_backend:e,hidpi:t}=this.model,{width:i,height:s}=this.bbox,a=new b(e,t);return a.resize(i,s),a.ctx.drawImage(this.primary.canvas,0,0),a.ctx.drawImage(this.overlays.canvas,0,0),a}to_blob(){return this.compose().to_blob()}}i.CanvasView=g,g.__name__="CanvasView";class x extends a.HasProps{constructor(e){super(e)}static init_Canvas(){this.prototype.default_view=g,this.internal({hidpi:[o.Boolean,!0],output_backend:[o.OutputBackend,"canvas"]})}}i.Canvas=x,x.__name__="Canvas",x.init_Canvas()},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(71),r=e(72);class n extends i.View{initialize(){super.initialize(),this.el=this._createElement()}remove(){r.remove(this.el),super.remove()}css_classes(){return[]}render(){}renderTo(e){e.appendChild(this.el),this.render()}_createElement(){return r.createElement(this.tagName,{class:this.css_classes()})}}t.DOMView=n,n.__name__="DOMView",n.prototype.tagName="div"},n function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const h=t(24),{min:r,max:s}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:r(t.x0,i.x0),x1:s(t.x1,i.x1),y0:r(t.y0,i.y0),y1:s(t.y1,i.y1)}};class n{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if("x0"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}});this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if("x"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}});this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if("width"in t)if("left"in t)i=t.left,e=i+t.width;else if("right"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if("height"in t)if("top"in t)h=t.top,r=h+t.height;else if("bottom"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}});this.x0=i,this.y0=h,this.x1=e,this.y1=r}}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get rect(){return{x0:this.x0,y0:this.y0,x1:this.x1,y1:this.y1}}get box(){return{x:this.x,y:this.y,width:this.width,height:this.height}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}relativize(){const{width:t,height:i}=this;return new n({x:0,y:0,width:t,height:i})}contains(t,i){return t>=this.x0&&t<=this.x1&&i>=this.y0&&i<=this.y1}clip(t,i){return t<this.x0?t=this.x0:t>this.x1&&(t=this.x1),i<this.y0?i=this.y0:i>this.y1&&(i=this.y1),[t,i]}union(t){return new n({x0:r(this.x0,t.x0),y0:r(this.y0,t.y0),x1:s(this.x1,t.x1),y1:s(this.y1,t.y1)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.left;for(let h=0;h<t.length;h++)i[h]=e+t[h];return i}}}get yview(){return{compute:t=>this.bottom-t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.bottom;for(let h=0;h<t.length;h++)i[h]=e-t[h];return i}}}}e.BBox=n,n.__name__="BBox"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.fixup_ctx=function(e){!function(e){void 0===e.lineDash&&Object.defineProperty(e,"lineDash",{get:()=>e.getLineDash(),set:t=>e.setLineDash(t)})}(e),function(e){e.setImageSmoothingEnabled=t=>{e.imageSmoothingEnabled=t,e.mozImageSmoothingEnabled=t,e.oImageSmoothingEnabled=t,e.webkitImageSmoothingEnabled=t,e.msImageSmoothingEnabled=t},e.getImageSmoothingEnabled=()=>{const t=e.imageSmoothingEnabled;return null==t||t}}(e),function(e){e.measureText&&null==e.html5MeasureText&&(e.html5MeasureText=e.measureText,e.measureText=t=>{const n=e.html5MeasureText(t);return n.ascent=1.6*e.html5MeasureText("m").width,n})}(e),function(e){e.ellipse||(e.ellipse=function(t,n,o,a,i,l,m,r=!1){const u=.551784;e.translate(t,n),e.rotate(i);let s=o,g=a;r&&(s=-o,g=-a),e.moveTo(-s,0),e.bezierCurveTo(-s,g*u,-s*u,g,0,g),e.bezierCurveTo(s*u,g,s,g*u,s,0),e.bezierCurveTo(s,-g*u,s*u,-g,0,-g),e.bezierCurveTo(-s*u,-g,-s,-g*u,-s,0),e.rotate(-i),e.translate(-t,-n)})}(e)}},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(1),c=e(14),i=n.__importStar(e(18)),a=e(8),r=e(13),o=e(19);class l extends c.HasProps{constructor(e){super(e)}static init_Model(){this.define({tags:[i.Array,[]],name:[i.String],js_property_callbacks:[i.Any,{}],js_event_callbacks:[i.Any,{}],subscribed_events:[i.Array,[]]})}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,()=>this._update_property_callbacks()),this.connect(this.properties.js_event_callbacks.change,()=>this._update_event_callbacks()),this.connect(this.properties.subscribed_events.change,()=>this._update_event_callbacks())}_process_event(e){for(const t of this.js_event_callbacks[e.event_name]||[])t.execute(e);null!=this.document&&this.subscribed_events.some(t=>t==e.event_name)&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):o.logger.warn("WARNING: Document not defined for updating event callbacks")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(":");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of r.entries(this.js_property_callbacks)){const n=s.map(e=>()=>e.execute(this));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){r.isEmpty(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if(a.isString(e))return[…this.references()].filter(t=>t instanceof l&&t.name===e);if(e.prototype instanceof c.HasProps)return[…this.references()].filter(t=>t instanceof e);throw new Error("invalid selector")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error("found more than one object matching given selector")}}}s.Model=l,l.__name__="Model",l.init_Model()},n function _(e,s,_){Object.defineProperty(_,"__esModule",{value:!0});class t{constructor(e,s){this.x_scale=e,this.y_scale=s,this.x_range=this.x_scale.source_range,this.y_range=this.y_scale.source_range,this.ranges=[this.x_range,this.y_range],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,s){return[this.x_scale.v_compute(e),this.y_scale.v_compute(s)]}map_from_screen(e,s){return[this.x_scale.v_invert(e),this.y_scale.v_invert(s)]}}_.CoordinateTransform=t,t.__name__="CoordinateTransform"},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),a=t(36),o=t(84),r=t(85),n=t(28),_=i.__importStar(t(18)),h=t(10);class c extends a.AnnotationView{initialize(){super.initialize(),null==this.model.source&&(this.model.source=new r.ColumnDataSource),this.set_data(this.model.source)}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.set_data(this.model.source)),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}set_data(t){super.set_data(t),this.visuals.warm_cache(t),this.plot_view.request_render()}_map_data(){const{frame:t}=this.plot_view;let e,s,i,a;return"data"==this.model.start_units?(e=this.coordinates.x_scale.v_compute(this._x_start),s=this.coordinates.y_scale.v_compute(this._y_start)):(e=t.xview.v_compute(this._x_start),s=t.yview.v_compute(this._y_start)),"data"==this.model.end_units?(i=this.coordinates.x_scale.v_compute(this._x_end),a=this.coordinates.y_scale.v_compute(this._y_end)):(i=t.xview.v_compute(this._x_end),a=t.yview.v_compute(this._y_end)),[[e,s],[i,a]]}_render(){const{ctx:t}=this.layer;t.save();const[e,s]=this._map_data();null!=this.model.end&&this._arrow_head(t,"render",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,"render",this.model.start,s,e),t.beginPath();const{x:i,y:a,width:o,height:r}=this.plot_view.frame.bbox;t.rect(i,a,o,r),null!=this.model.end&&this._arrow_head(t,"clip",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,"clip",this.model.start,s,e),t.closePath(),t.clip(),this._arrow_body(t,e,s),t.restore()}_arrow_head(t,e,s,i,a){for(let o=0,r=this._x_start.length;o<r;o++){const r=Math.PI/2+h.atan2([i[0][o],i[1][o]],[a[0][o],a[1][o]]);t.save(),t.translate(a[0][o],a[1][o]),t.rotate(r),"render"==e?s.render(t,o):"clip"==e&&s.clip(t,o),t.restore()}}_arrow_body(t,e,s){if(this.visuals.line.doit)for(let i=0,a=this._x_start.length;i<a;i++)this.visuals.line.set_vectorize(t,i),t.beginPath(),t.moveTo(e[0][i],e[1][i]),t.lineTo(s[0][i],s[1][i]),t.stroke()}}s.ArrowView=c,c.__name__="ArrowView";class d extends a.Annotation{constructor(t){super(t)}static init_Arrow(){this.prototype.default_view=c,this.mixins(n.LineVector),this.define({x_start:[_.NumberSpec],y_start:[_.NumberSpec],start_units:[_.SpatialUnits,"data"],start:[_.Instance,null],x_end:[_.NumberSpec],y_end:[_.NumberSpec],end_units:[_.SpatialUnits,"data"],end:[_.Instance,()=>new o.OpenHead({})],source:[_.Instance]})}}s.Arrow=d,d.__name__="Arrow",d.init_Arrow()},n function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),o=i(36),l=i(74),n=i(28),h=t.__importStar(i(18));class a extends o.Annotation{constructor(i){super(i)}static init_ArrowHead(){this.define({size:[h.Number,25]})}initialize(){super.initialize(),this.visuals=new l.Visuals(this)}}s.ArrowHead=a,a.__name__="ArrowHead",a.init_ArrowHead();class r extends a{constructor(i){super(i)}static init_OpenHead(){this.mixins(n.LineVector)}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,0),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.stroke())}}s.OpenHead=r,r.__name__="OpenHead",r.init_OpenHead();class z extends a{constructor(i){super(i)}static init_NormalHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:"black"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._normal(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._normal(i,e),i.stroke())}_normal(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.closePath()}}s.NormalHead=z,z.__name__="NormalHead",z.init_NormalHead();class _ extends a{constructor(i){super(i)}static init_VeeHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:"black"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._vee(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._vee(i,e),i.stroke())}_vee(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.closePath()}}s.VeeHead=_,_.__name__="VeeHead",_.init_VeeHead();class c extends a{constructor(i){super(i)}static init_TeeHead(){this.mixins(n.LineVector)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,0),i.lineTo(-.5*this.size,0),i.stroke())}clip(i,e){}}s.TeeHead=c,c.__name__="TeeHead",c.init_TeeHead()},n function _(t,n,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t(1),o=t(86),r=s.__importStar(t(18)),i=t(8),l=t(13),a=s.__importStar(t(119)),c=t(120),u=t(121);function h(t,n,e){if(i.isArray(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if(i.isTypedArray(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let i;t.length<e?(i=new t.constructor(e),i.set(t,0)):i=t;for(let t=o,n=r;t<n;t++)i[t-o]=i[t];for(let t=0,e=n.length;t<e;t++)i[t+(r-o)]=n[t];return i}{const e=new t.constructor(n);return a.concat(t,e)}}throw new Error("unsupported array types")}function d(t,n){let e,s,o;return i.isNumber(t)?(e=t,o=t+1,s=1):(e=null!=t.start?t.start:0,o=null!=t.stop?t.stop:n,s=null!=t.step?t.step:1),[e,o,s]}function f(t,n){const e=new Set;let s=!1;for(const[o,r]of n){let n,l,a,c;if(i.isArray(o)){const[s]=o;e.add(s),n=t[s].shape,l=t[s],c=r,2===o.length?(n=[1,n[0]],a=[o[0],0,o[1]]):a=o}else i.isNumber(o)?(c=[r],e.add(o)):(c=r,s=!0),a=[0,0,o],n=[1,t.length],l=t;let u=0;const[h,f,m]=d(a[1],n[0]),[_,p,g]=d(a[2],n[1]);for(let t=h;t<f;t+=m)for(let o=_;o<p;o+=g)s&&e.add(o),l[t*n[1]+o]=c[u],u++}return e}e.stream_to_column=h,e.slice=d,e.patch_to_column=f;class m extends o.ColumnarDataSource{constructor(t){super(t)}static init_ColumnDataSource(){this.define({data:[r.Any,{}]})}stream(t,n,e){const{data:s}=this;for(const[e,o]of l.entries(t))s[e]=h(s[e],o,n);if(this.setv({data:s},{silent:!0}),this.streaming.emit(),null!=this.document){const s=new u.ColumnsStreamedEvent(this.document,this.ref(),t,n);this.document._notify_change(this,"data",null,null,{setter_id:e,hint:s})}}patch(t,n){const{data:e}=this;let s=new Set;for(const[n,o]of l.entries(t))s=c.union(s,f(e[n],o));if(this.setv({data:e},{silent:!0}),this.patching.emit([…s]),null!=this.document){const e=new u.ColumnsPatchedEvent(this.document,this.ref(),t);this.document._notify_change(this,"data",null,null,{setter_id:n,hint:e})}}}e.ColumnDataSource=m,m.__name__="ColumnDataSource",m.init_ColumnDataSource()},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const a=t(1),s=t(87),i=t(15),r=t(19),l=t(89),c=a.__importStar(t(18)),o=t(8),u=t(9),h=t(13),g=t(88),_=t(118);class d extends s.DataSource{constructor(t){super(t)}get_array(t){let e=this.data[t];return null==e?this.data[t]=e=[]:o.isArray(e)||(this.data[t]=e=Array.from(e)),e}static init_ColumnarDataSource(){this.define({selection_policy:[c.Instance,()=>new _.UnionRenderers]}),this.internal({selection_manager:[c.Instance,t=>new l.SelectionManager({source:t})],inspected:[c.Instance,()=>new g.Selection]})}initialize(){super.initialize(),this._select=new i.Signal0(this,"select"),this.inspect=new i.Signal(this,"inspect"),this.streaming=new i.Signal0(this,"streaming"),this.patching=new i.Signal(this,"patching")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return h.keys(this.data)}get_length(t=!0){const e=u.uniq(h.values(this.data).map(t=>t.length));switch(e.length){case 0:return null;case 1:return e[0];default:{const n="data source has columns of inconsistent lengths";if(t)return r.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=d,d.__name__="ColumnarDataSource",d.init_ColumnarDataSource()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const c=e(1),n=e(81),o=e(88),i=c.__importStar(e(18));class r extends n.Model{constructor(e){super(e)}static init_DataSource(){this.define({selected:[i.Instance,()=>new o.Selection]})}}a.DataSource=r,r.__name__="DataSource",r.init_DataSource()},n function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),n=i(81),l=t.__importStar(i(18)),c=i(9),h=i(13);class d extends n.Model{constructor(i){super(i)}get_view(){return this.view}static init_Selection(){this.define({indices:[l.Array,[]],line_indices:[l.Array,[]],multiline_indices:[l.Any,{}]}),this.internal({selected_glyphs:[l.Array,[]],view:[l.Any],image_indices:[l.Array,[]]})}initialize(){super.initialize()}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s="replace"){switch(s){case"replace":this.indices=i.indices,this.line_indices=i.line_indices,this.selected_glyphs=i.selected_glyphs,this.view=i.view,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices;break;case"append":this.update_through_union(i);break;case"intersect":this.update_through_intersection(i);break;case"subtract":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.view=null,this.selected_glyphs=[]}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=c.union(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=c.intersection(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=c.difference(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}}s.Selection=d,d.__name__="Selection",d.init_Selection()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(14),o=e(88),c=e(90),r=e(116),l=i.__importStar(e(18));class p extends n.HasProps{constructor(e){super(e),this.inspectors=new Map}static init_SelectionManager(){this.internal({source:[l.Any]})}select(e,t,s,i="replace"){const n=[],o=[];for(const t of e)t instanceof c.GlyphRendererView?n.push(t):t instanceof r.GraphRendererView&&o.push(t);let l=!1;for(const e of o){const n=e.model.selection_policy.hit_test(t,e);l=l||e.model.selection_policy.do_selection(n,e.model,s,i)}if(n.length>0){const e=this.source.selection_policy.hit_test(t,n);l=l||this.source.selection_policy.do_selection(e,this.source,s,i)}return l}inspect(e,t){let s=!1;if(e instanceof c.GlyphRendererView){const i=e.hit_test(t);if(null!=i){s=!i.is_empty();const n=this.get_or_create_inspector(e.model);n.update(i,!0,"replace"),this.source.setv({inspected:n},{silent:!0}),this.source.inspect.emit([e,{geometry:t}])}}else if(e instanceof r.GraphRendererView){const i=e.model.inspection_policy.hit_test(t,e);s=s||e.model.inspection_policy.do_inspection(i,t,e,!1,"replace")}return s}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new o.Selection,this.inspectors.set(e,t)),t}}s.SelectionManager=p,p.__name__="SelectionManager",p.init_SelectionManager()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),l=e(91),n=e(92),h=e(110),o=e(111),a=e(113),c=e(114),_=e(24),d=s.__importStar(e(18)),r=e(12),p=e(9),g=e(13),u=e(115),y=e(98),m={fill:{},line:{}},v={fill:{fill_alpha:.3,fill_color:"grey"},line:{line_alpha:.3,line_color:"grey"}},f={fill:{fill_alpha:.2},line:{}};class w extends l.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model.glyph,t=p.includes(e._mixins,"fill"),i=p.includes(e._mixins,"line"),s=g.clone(e.attributes);function l(l){const n=g.clone(s);return t&&g.extend(n,l.fill),i&&g.extend(n,l.line),new e.constructor(n)}delete s.id,this.glyph=await this.build_glyph_view(e);let{selection_glyph:n}=this.model;null==n?n=l({fill:{},line:{}}):"auto"===n&&(n=l(m)),this.selection_glyph=await this.build_glyph_view(n);let{nonselection_glyph:h}=this.model;null==h?h=l({fill:{},line:{}}):"auto"===h&&(h=l(f)),this.nonselection_glyph=await this.build_glyph_view(h);const{hover_glyph:o}=this.model;null!=o&&(this.hover_glyph=await this.build_glyph_view(o));const{muted_glyph:a}=this.model;null!=a&&(this.muted_glyph=await this.build_glyph_view(a));const c=l(v);this.decimated_glyph=await this.build_glyph_view(c),this.set_data(!1)}async build_glyph_view(e){return u.build_view(e,{parent:this})}remove(){var e,t;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),null===(t=this.muted_glyph)||void 0===t||t.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.glyph.change,()=>this.set_data()),this.connect(this.model.data_source.change,()=>this.set_data()),this.connect(this.model.data_source.streaming,()=>this.set_data()),this.connect(this.model.data_source.patching,e=>this.set_data(!0,e)),this.connect(this.model.data_source.selected.change,()=>this.request_render()),this.connect(this.model.data_source._select,()=>this.request_render()),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,()=>this.request_render()),this.connect(this.model.properties.view.change,()=>this.set_data()),this.connect(this.model.view.properties.indices.change,()=>this.set_data()),this.connect(this.model.view.properties.masked.change,()=>this.set_visuals()),this.connect(this.model.properties.visible.change,()=>this.plot_view.update_dataranges());const{x_ranges:e,y_ranges:t}=this.plot_view.frame;for(const[,t]of e)t instanceof y.FactorRange&&this.connect(t.change,()=>this.set_data());for(const[,e]of t)e instanceof y.FactorRange&&this.connect(e.change,()=>this.set_data());this.connect(this.model.glyph.transformchange,()=>this.set_data())}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}set_data(e=!0,t=null){const i=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:s}=this;this.glyph.set_data(i,s,t),this.set_visuals(),this._update_masked_indices();const{lod_factor:l}=this.plot_model,n=this.all_indices.count;this.decimated=new _.Indices(n);for(let e=0;e<n;e+=l)this.decimated.set(e);this.set_data_timestamp=Date.now(),e&&this.request_render()}set_visuals(){var e,t,i,s;const l=this.model.data_source,{all_indices:n}=this;this.glyph.set_visuals(l,n),this.decimated_glyph.set_visuals(l,n),null===(e=this.selection_glyph)||void 0===e||e.set_visuals(l,n),null===(t=this.nonselection_glyph)||void 0===t||t.set_visuals(l,n),null===(i=this.hover_glyph)||void 0===i||i.set_visuals(l,n),null===(s=this.muted_glyph)||void 0===s||s.set_visuals(l,n)}get has_webgl(){return this.glyph.has_webgl}_render(){const e=this.has_webgl;this.glyph.map_data();const t=[…this.all_indices];let i=[…this._update_masked_indices()];const{ctx:s}=this.layer;s.save();const{selected:l}=this.model.data_source;let c;c=!l||l.is_empty()?[]:this.glyph instanceof n.LineView&&l.selected_glyph===this.glyph.model?this.model.view.convert_indices_from_subset(i):l.indices;const{inspected:_}=this.model.data_source,d=new Set((()=>!_||_.is_empty()?[]:_.selected_glyph?this.model.view.convert_indices_from_subset(i):_.indices.length>0?_.indices:Object.keys(_.multiline_indices).map(e=>parseInt(e)))()),g=r.filter(i,e=>d.has(t[e])),{lod_threshold:u}=this.plot_model;let y,m,v;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=u&&t.length>u?(i=[…this.decimated],y=this.decimated_glyph,m=this.decimated_glyph,v=this.selection_glyph):(y=this.model.muted&&null!=this.muted_glyph?this.muted_glyph:this.glyph,m=this.nonselection_glyph,v=this.selection_glyph),null!=this.hover_glyph&&g.length&&(i=p.difference(i,g)),c.length){const e={};for(const t of c)e[t]=!0;const l=new Array,h=new Array;if(this.glyph instanceof n.LineView)for(const i of t)null!=e[i]?l.push(i):h.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):h.push(s);m.render(s,h,this.glyph),v.render(s,l,this.glyph),null!=this.hover_glyph&&(this.glyph instanceof n.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):this.hover_glyph.render(s,g,this.glyph))}else if(this.glyph instanceof n.LineView)this.hover_glyph&&g.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):y.render(s,t,this.glyph);else if(this.glyph instanceof h.PatchView||this.glyph instanceof o.HAreaView||this.glyph instanceof a.VAreaView)if(0==_.selected_glyphs.length||null==this.hover_glyph)y.render(s,t,this.glyph);else for(const e of _.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t,this.glyph);else y.render(s,i,this.glyph),this.hover_glyph&&g.length&&this.hover_glyph.render(s,g,this.glyph);s.restore()}draw_legend(e,t,i,s,l,n,h,o){null==o&&(o=this.model.get_reference_point(n,h)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o)}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=w,w.__name__="GlyphRendererView";class b extends l.DataRenderer{constructor(e){super(e)}static init_GlyphRenderer(){this.prototype.default_view=w,this.define({data_source:[d.Instance],view:[d.Instance,()=>new c.CDSView],glyph:[d.Instance],hover_glyph:[d.Instance],nonselection_glyph:[d.Any,"auto"],selection_glyph:[d.Any,"auto"],muted_glyph:[d.Instance],muted:[d.Boolean,!1]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){let i=0;if(null!=e){const s=this.data_source.get_column(e);if(null!=s){const e=r.indexOf(s,t);-1!=e&&(i=e)}}return i}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=b,b.__name__="GlyphRenderer",b.init_GlyphRenderer()},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(70);class n extends a.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=n,n.__name__="DataRendererView";class s extends a.Renderer{constructor(e){super(e)}static init_DataRenderer(){this.override({level:"glyph"})}}t.DataRenderer=s,s.__name__="DataRenderer",s.init_DataRenderer()},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),n=e(93),l=e(100),_=e(102),r=s.__importStar(e(28)),o=s.__importStar(e(101)),h=e(88);class a extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&(this.glglyph=new _.LineGL(e.gl,this))}_render(e,i,{sx:t,sy:s}){let n=!1,l=null;this.visuals.line.set_value(e);for(const _ of i){if(n){if(!isFinite(t[_]+s[_])){e.stroke(),e.beginPath(),n=!1,l=_;continue}null!=l&&_-l>1&&(e.stroke(),n=!1)}n?e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]),n=!0),l=_}n&&e.stroke()}_hit_point(e){const i=new h.Selection,t={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.visuals.line.line_width.value()/2);for(let e=0,l=this.sx.length-1;e<l;e++){const l={x:this.sx[e],y:this.sy[e]},_={x:this.sx[e+1],y:this.sy[e+1]},r=o.dist_to_segment(t,l,_);r<n&&r<s&&(s=r,i.add_to_selected_glyphs(this.model),i.view=this,i.line_indices=[e])}return i}_hit_span(e){const{sx:i,sy:t}=e,s=new h.Selection;let n,l;"v"==e.direction?(n=this.renderer.yscale.invert(t),l=this._y):(n=this.renderer.xscale.invert(i),l=this._x);for(let e=0,i=l.length-1;e<i;e++)(l[e]<=n&&n<=l[e+1]||l[e+1]<=n&&n<=l[e])&&(s.add_to_selected_glyphs(this.model),s.view=this,s.line_indices.push(e));return s}get_interpolation_hit(e,i){const[t,s,n,_]=[this._x[e],this._y[e],this._x[e+1],this._y[e+1]];return l.line_interpolation(this.renderer,i,t,s,n,_)}draw_legend_for_index(e,i,t){l.generic_line_legend(this.visuals,e,i,t)}}t.LineView=a,a.__name__="LineView";class c extends n.XYGlyph{constructor(e){super(e)}static init_Line(){this.prototype.default_view=a,this.mixins(r.Line)}}t.Line=c,c.__name__="Line",c.init_Line()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),_=e(37),n=s.__importStar(e(18)),a=e(94);class d extends a.GlyphView{_project_data(){_.inplace.project_xy(this._x,this._y)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++){const t=this._x[i],s=this._y[i];isNaN(t+s)||!isFinite(t+s)?e.add_empty():e.add(t,s,t,s)}}scenterxy(e){return[this.sx[e],this.sy[e]]}}i.XYGlyphView=d,d.__name__="XYGlyphView";class p extends a.Glyph{constructor(e){super(e)}static init_XYGlyph(){this.define({x:[n.XCoordinateSpec,{field:"x"}],y:[n.YCoordinateSpec,{field:"y"}]})}}i.XYGlyph=p,p.__name__="XYGlyph",p.init_XYGlyph()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),n=s.__importStar(t(18)),a=s.__importStar(t(79)),r=s.__importStar(t(74)),_=t(71),l=t(81),o=t(19),h=t(24),d=t(12),c=t(95),u=t(98),p=t(88);class y extends _.View{constructor(){super(…arguments),this._index=null,this._data_size=null,this._nohit_warned=new Set}get renderer(){return this.parent}get has_webgl(){return null!=this.glglyph}get index(){const{_index:t}=this;if(null!=t)return t;throw new Error(this+".index_data() wasn’t called")}get data_size(){const{_data_size:t}=this;if(null!=t)return t;throw new Error(this+".set_data() wasn’t called")}initialize(){super.initialize(),this.visuals=new r.Visuals(this.model)}set_visuals(t,e){this.visuals.warm_cache(t,e),null!=this.glglyph&&this.glglyph.set_visuals_changed()}render(t,e,i){t.beginPath(),null!=this.glglyph&&(this.renderer.needs_webgl_blit=this.glglyph.render(t,e,i),this.renderer.needs_webgl_blit)||this._render(t,e,i)}has_finished(){return!0}notify_finished(){this.renderer.notify_finished()}_bounds(t){return t}bounds(){return this._bounds(this.index.bbox)}log_bounds(){const{x0:t,x1:e}=this.index.bounds(a.positive_x()),{y0:i,y1:s}=this.index.bounds(a.positive_y());return this._bounds({x0:t,y0:i,x1:e,y1:s})}get_anchor_point(t,e,[i,s]){switch(t){case"center":{const[t,n]=this.scenterxy(e,i,s);return{x:t,y:n}}default:return null}}scenterx(t,e,i){return this.scenterxy(t,e,i)[0]}scentery(t,e,i){return this.scenterxy(t,e,i)[1]}sdist(t,e,i,s="edge",n=!1){let a,r;const _=e.length;if("center"==s){const t=d.map(i,t=>t/2);a=new Float64Array(_);for(let i=0;i<_;i++)a[i]=e[i]-t[i];r=new Float64Array(_);for(let i=0;i<_;i++)r[i]=e[i]+t[i]}else{a=e,r=new Float64Array(_);for(let t=0;t<_;t++)r[t]=a[t]+i[t]}const l=t.v_compute(a),o=t.v_compute(r);return n?d.map(l,(t,e)=>Math.ceil(Math.abs(o[e]-l[e]))):d.map(l,(t,e)=>Math.abs(o[e]-l[e]))}draw_legend_for_index(t,e,i){}hit_test(t){switch(t.type){case"point":if(null!=this._hit_point)return this._hit_point(t);break;case"span":if(null!=this._hit_span)return this._hit_span(t);break;case"rect":if(null!=this._hit_rect)return this._hit_rect(t);break;case"poly":if(null!=this._hit_poly)return this._hit_poly(t)}return this._nohit_warned.has(t.type)||(o.logger.debug(‘${t.type}’ selection not available for ${this.model.type}),this._nohit_warned.add(t.type)),null}_hit_rect_against_index(t){const{sx0:e,sx1:i,sy0:s,sy1:n}=t,[a,r]=this.renderer.coordinates.x_scale.r_invert(e,i),[_,l]=this.renderer.coordinates.y_scale.r_invert(s,n),o=[…this.index.indices({x0:a,x1:r,y0:_,y1:l})];return new p.Selection({indices:o})}_project_data(){}set_data(t,e,i){var s,a;const{x_range:r,y_range:_}=this.renderer.coordinates;this._data_size=null!==(s=t.get_length())&&void 0!==s?s:1;for(const i of this.model){if(!(i instanceof n.VectorSpec))continue;if(i.optional&&null==i.spec.value&&!i.dirty)continue;const s=i.attr,a=i.array(t);let l=e.select(a);if(i instanceof n.BaseCoordinateSpec){const t="x"==i.dimension?r:_;if(t instanceof u.FactorRange)if(i instanceof n.CoordinateSpec)l=t.v_synthetic(l);else if(i instanceof n.CoordinateSeqSpec)for(let e=0;e<l.length;e++)l[e]=t.v_synthetic(l[e]);i instanceof n.CoordinateSeqSpec&&(l=h.RaggedArray.from(l))}else i instanceof n.DistanceSpec&&(this["max_"+s]=d.max(l));this["_"+s]=l}this.renderer.plot_view.model.use_map&&this._project_data(),this._set_data(i),null===(a=this.glglyph)||void 0===a||a.set_data_changed(),this.index_data()}_set_data(t){}get _index_size(){return this.data_size}index_data(){const t=new c.SpatialIndex(this._index_size);this._index_data(t),t.finish(),this._index=t}mask_data(){return null!=this.glglyph||null==this._mask_data?h.Indices.all_set(this.data_size):this._mask_data()}map_data(){var t;const e=this,{x_scale:i,y_scale:s}=this.renderer.coordinates;for(const t of this.model)if(t instanceof n.BaseCoordinateSpec){const n="x"==t.dimension?i:s;let a=e["_"+t.attr];if(a instanceof h.RaggedArray){const t=n.v_compute(a.array);a=new h.RaggedArray(a.offsets,t)}else a=n.v_compute(a);this["s"+t.attr]=a}this._map_data(),null===(t=this.glglyph)||void 0===t||t.set_data_changed()}_map_data(){}}i.GlyphView=y,y.__name__="GlyphView";class g extends l.Model{constructor(t){super(t)}static init_Glyph(){}}i.Glyph=g,g.__name__="Glyph",g.init_Glyph()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1).__importDefault(e(96)),s=e(24),o=e(79);function d(e,n){let t=0,i=n.length-1;for(;t<i;){const s=t+i>>1;n[s]>e?i=s:t=s+1}return n[t]}class x extends i.default{search_indices(e,n,t,i){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let o=this._boxes.length-4;const x=[],h=new s.Indices(this.numItems);for(;void 0!==o;){const s=Math.min(o+4*this.nodeSize,d(o,this._levelBounds));for(let d=o;d<s;d+=4){const s=0|this._indices[d>>2];t<this._boxes[d+0]||(i<this._boxes[d+1]||e>this._boxes[d+2]||n>this._boxes[d+3]||(o<4*this.numItems?h.set(s):x.push(s)))}o=x.pop()}return h}}x.__name__="_FlatBush";class h{constructor(e){this.index=null,e>0&&(this.index=new x(e))}add(e,n,t,i){var s;null===(s=this.index)||void 0===s||s.add(e,n,t,i)}add_empty(){var e;null===(e=this.index)||void 0===e||e.add(1/0,1/0,-1/0,-1/0)}finish(){var e;null===(e=this.index)||void 0===e||e.finish()}_normalize(e){let{x0:n,y0:t,x1:i,y1:s}=e;return n>i&&([n,i]=[i,n]),t>s&&([t,s]=[s,t]),{x0:n,y0:t,x1:i,y1:s}}get bbox(){if(null==this.index)return o.empty();{const{minX:e,minY:n,maxX:t,maxY:i}=this.index;return{x0:e,y0:n,x1:t,y1:i}}}indices(e){if(null==this.index)return new s.Indices(0);{const{x0:n,y0:t,x1:i,y1:s}=this._normalize(e);return this.index.search_indices(n,t,i,s)}}bounds(e){const n=o.empty();for(const t of this.indices(e)){const e=this.index._boxes,i=e[4*t+0],s=e[4*t+1],o=e[4*t+2],d=e[4*t+3];o<n.x0&&(n.x0=o),i>n.x1&&(n.x1=i),d<n.y0&&(n.y0=d),s>n.y1&&(n.y1=s)}return n}}t.SpatialIndex=h,h.__name__="SpatialIndex"},n function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1).__importDefault(t(97)),h=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class n{static from(t){if(!(t instanceof ArrayBuffer))throw new Error("Data must be an instance of ArrayBuffer.");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error("Data does not appear to be in a Flatbush format.");if(i>>4!=3)throw new Error(Got v${i>>4} data when expected v3.);const[e]=new Uint16Array(t,2,1),[o]=new Uint32Array(t,4,1);return new n(o,e,h[15&i],t)}constructor(t,s=16,i=Float64Array,n){if(void 0===t)throw new Error("Missing required argument: numItems.");if(isNaN(t)||t<=0)throw new Error(Unpexpected numItems value: ${t}.);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let o=t,r=o;this._levelBounds=[4*o];do{o=Math.ceil(o/this.nodeSize),r+=o,this._levelBounds.push(4*r)}while(1!==o);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=h.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(Unexpected typed array class: ${i}.);n&&n instanceof ArrayBuffer?(this.data=n,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new e.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,t<this.minX&&(this.minX=t),s<this.minY&&(this.minY=s),i>this.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(Added ${this._pos>>2} items when expected ${this.numItems}.);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e<this.numItems;e++){let h=4*e;const n=this._boxes[h++],o=this._boxes[h++],r=this._boxes[h++],a=this._boxes[h++],d=Math.floor(65535*((n+r)/2-this.minX)/t),x=Math.floor(65535*((o+a)/2-this.minY)/s);i[e]=_(d,x)}!function t(s,i,e,h,n,o){if(Math.floor(h/o)>=Math.floor(n/o))return;const r=s[h+n>>1];let _=h-1,d=n+1;for(;;){do{_++}while(s[_]<r);do{d–}while(s[d]>r);if(_>=d)break;a(s,i,e,_,d)}t(s,i,e,h,d,o),t(s,i,e,d+1,n,o)}(i,this._boxes,this._indices,0,this.numItems-1,this.nodeSize);for(let t=0,s=0;t<this._levelBounds.length-1;t++){const i=this._levelBounds[t];for(;s<i;){const t=s;let e=1/0,h=1/0,n=-1/0,o=-1/0;for(let t=0;t<this.nodeSize&&s<i;t++)e=Math.min(e,this._boxes[s++]),h=Math.min(h,this._boxes[s++]),n=Math.max(n,this._boxes[s++]),o=Math.max(o,this._boxes[s++]);this._indices[this._pos>>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let n=this._boxes.length-4;const o=[],a=[];for(;void 0!==n;){const _=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let r=n;r<_;r+=4){const _=0|this._indices[r>>2];i<this._boxes[r]||(e<this._boxes[r+1]||t>this._boxes[r+2]||s>this._boxes[r+3]||(n<4*this.numItems?(void 0===h||h(_))&&a.push(_):o.push(_)))}n=o.pop()}return a}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let n=this._boxes.length-4;const a=this._queue,_=[],d=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let i=n;i<e;i+=4){const e=0|this._indices[i>>2],r=o(t,this._boxes[i],this._boxes[i+2]),_=o(s,this._boxes[i+1],this._boxes[i+3]),d=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&a.push(-e-1,d):a.push(e,d)}for(;a.length&&a.peek()<0;){if(a.peekValue()>d)return a.clear(),_;if(_.push(-a.pop()-1),_.length===i)return a.clear(),_}n=a.pop()}return a.clear(),_}}function o(t,s,i){return t<s?s-t:t<=i?0:t-i}function r(t,s){let i=0,e=s.length-1;for(;i<e;){const h=i+e>>1;s[h]>t?e=h:i=h+1}return s[i]}function a(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],d=s[o+2],x=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=d,s[r+3]=x;const l=i[e];i[e]=i[h],i[h]=l}function _(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let d=t^s,x=e|65535^(d|i);return d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),(x<<1|d)>>>0}i.default=n},n function _(s,t,i){Object.defineProperty(i,"__esModule",{value:!0});i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length–,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h<i;){let s=1+(h<<1);const i=s+1;let e=this.ids[s],l=this.values[s];const n=this.values[i];if(i<this.length&&n<l&&(s=i,e=this.ids[i],l=n),l>=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const s=t(1),i=t(99),r=s.__importStar(t(18)),a=t(24),o=t(9),p=t(8),g=t(11);function c(t,e,n=0){const s=new Map;for(let i=0;i<t.length;i++){const r=t[i];if(s.has(r))throw new Error("duplicate factor or subfactor: "+r);s.set(r,{value:.5+i*(1+e)+n})}return[s,(t.length-1)*e]}function l(t,e,n,s=0){var i;const r=new Map,a=new Map;for(const[e,n]of t){const t=null!==(i=a.get(e))&&void 0!==i?i:[];a.set(e,[…t,n])}let p=s,g=0;for(const[t,s]of a){const i=s.length,[a,l]=c(s,n,p);g+=l;const u=o.sum(s.map(t=>a.get(t).value));r.set(t,{value:u/i,mapping:a}),p+=i+e+l}return[r,(a.size-1)*e+g]}function u(t,e,n,s,i=0){var r;const a=new Map,p=new Map;for(const[e,n,s]of t){const t=null!==(r=p.get(e))&&void 0!==r?r:[];p.set(e,[…t,[n,s]])}let g=i,c=0;for(const[t,i]of p){const r=i.length,[p,u]=l(i,n,s,g);c+=u;const h=o.sum(i.map(([t])=>p.get(t).value));a.set(t,{value:h/r,mapping:p}),g+=r+e+u}return[a,(p.size-1)*e+c]}n.map_one_level=c,n.map_two_levels=l,n.map_three_levels=u;class h extends i.Range{constructor(t){super(t)}static init_FactorRange(){this.define({factors:[r.Array,[]],factor_padding:[r.Number,0],subgroup_padding:[r.Number,.8],group_padding:[r.Number,1.4],range_padding:[r.Number,0],range_padding_units:[r.PaddingUnits,"percent"],start:[r.Number],end:[r.Number]}),this.internal({levels:[r.Number],mids:[r.Array,null],tops:[r.Array,null]})}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,()=>this.reset()),this.connect(this.properties.factor_padding.change,()=>this.reset()),this.connect(this.properties.group_padding.change,()=>this.reset()),this.connect(this.properties.subgroup_padding.change,()=>this.reset()),this.connect(this.properties.range_padding.change,()=>this.reset()),this.connect(this.properties.range_padding_units.change,()=>this.reset())}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[e]=t,n=this._mapping.get(e);return null!=n?n.value:NaN}case 2:{const[e,n]=t,s=this._mapping.get(e);if(null!=s){const t=s.mapping.get(n);if(null!=t)return t.value}return NaN}case 3:{const[e,n,s]=t,i=this._mapping.get(e);if(null!=i){const t=i.mapping.get(n);if(null!=t){const e=t.mapping.get(s);if(null!=e)return e.value}}return NaN}default:g.unreachable()}}synthetic(t){if(p.isNumber(t))return t;if(p.isString(t))return this._lookup([t]);let e=0;const n=t[t.length-1];return p.isNumber(n)&&(e=n,t=t.slice(0,-1)),this._lookup(t)+e}v_synthetic(t){const e=t.length,n=new a.NumberArray(e);for(let s=0;s<e;s++)n[s]=this.synthetic(t[s]);return n}_init(t){const{levels:e,mapping:n,tops:s,mids:i,inside_padding:r}=(()=>{if(o.every(this.factors,p.isString)){const t=this.factors,[e,n]=c(t,this.factor_padding);return{levels:1,mapping:e,tops:null,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&2==t.length&&p.isString(t[0])&&p.isString(t[1]))){const t=this.factors,[e,n]=l(t,this.group_padding,this.factor_padding),s=[…e.keys()];return{levels:2,mapping:e,tops:s,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&3==t.length&&p.isString(t[0])&&p.isString(t[1])&&p.isString(t[2]))){const t=this.factors,[e,n]=u(t,this.group_padding,this.subgroup_padding,this.factor_padding),s=[…e.keys()],i=[];for(const[t,n]of e)for(const e of n.mapping.keys())i.push([t,e]);return{levels:3,mapping:e,tops:s,mids:i,inside_padding:n}}g.unreachable()})();this._mapping=n,this.tops=s,this.mids=i;let a=0,h=this.factors.length+r;if("percent"==this.range_padding_units){const t=(h-a)*this.range_padding/2;a-=t,h+=t}else a-=this.range_padding,h+=this.range_padding;this.setv({start:a,end:h,levels:e},{silent:t}),"auto"==this.bounds&&this.setv({bounds:[a,h]},{silent:!0})}}n.FactorRange=h,h.__name__="FactorRange",h.init_FactorRange()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(81),a=n.__importStar(e(18));class r extends s.Model{constructor(e){super(e),this.have_updated_interactively=!1}static init_Range(){this.define({bounds:[a.Any],min_interval:[a.Any],max_interval:[a.Any]}),this.internal({plots:[a.Array,[]]})}get is_reversed(){return this.start>this.end}get is_valid(){return!isNaN(this.min)&&!isNaN(this.max)}}i.Range=r,r.__name__="Range",r.init_Range()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1).__importStar(e(101));i.generic_line_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){t.save(),t.beginPath(),t.moveTo(i,(c+o)/2),t.lineTo(n,(c+o)/2),e.line.doit&&(e.line.set_vectorize(t,r),t.stroke()),t.restore()},i.generic_area_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){const l=.1*Math.abs(n-i),a=.1*Math.abs(o-c),s=i+l,_=n-l,h=c+a,v=o-a;e.fill.doit&&(e.fill.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),null!=e.hatch&&e.hatch.doit&&(e.hatch.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),e.line&&e.line.doit&&(t.beginPath(),t.rect(s,h,_-s,v-h),e.line.set_vectorize(t,r),t.stroke())},i.line_interpolation=function(e,t,i,c,o,r){const{sx:l,sy:a}=t;let s,_,h,v;"point"==t.type?([h,v]=e.yscale.r_invert(a-1,a+1),[s,_]=e.xscale.r_invert(l-1,l+1)):"v"==t.direction?([h,v]=e.yscale.r_invert(a,a),[s,_]=[Math.min(i-1,o-1),Math.max(i+1,o+1)]):([s,_]=e.xscale.r_invert(l,l),[h,v]=[Math.min(c-1,r-1),Math.max(c+1,r+1)]);const{x,y}=n.check_2_segments_intersect(s,h,_,v,i,c,o,r);return[x,y]}},n function _(t,n,e){function i(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function r(t,n,e){const r=i(n,e);if(0==r)return i(t,n);const s=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/r;if(s<0)return i(t,n);if(s>1)return i(t,e);return i(t,{x:n.x+s*(e.x-n.x),y:n.y+s*(e.y-n.y)})}Object.defineProperty(e,"__esModule",{value:!0}),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u<e.length;u++){const c=e[u],_=i[u];o<n!=_<n&&s+(n-o)/(_-o)*(c-s)<t&&(r=!r),s=c,o=_}return r},e.point_in_ellipse=function(t,n,e,i,r,s,o){return((Math.cos(e)/r)**2+(Math.sin(e)/i)**2)*(t-s)**2+2*Math.cos(e)*Math.sin(e)*((1/r)**2-(1/i)**2)*(t-s)*(n-o)+((Math.cos(e)/i)**2+(Math.sin(e)/r)**2)*(n-o)**2<=1},e.dist_2_pts=i,e.dist_to_segment_squared=r,e.dist_to_segment=function(t,n,e){return Math.sqrt(r(t,n,e))},e.check_2_segments_intersect=function(t,n,e,i,r,s,o,u){const c=(u-s)*(e-t)-(o-r)*(i-n);if(0==c)return{hit:!1,x:null,y:null};{let _=n-s,l=t-r;const y=(e-t)*_-(i-n)*l;_=((o-r)*_-(u-s)*l)/c,l=y/c;return{hit:_>0&&_<1&&l>0&&l<1,x:t+_*(e-t),y:n+_*(i-n)}}}},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(103),a=t(107),n=t(108),o=t(109),_=t(22);class h{constructor(t){this._atlas=new Map,this._width=256,this._height=256,this.tex=new i.Texture2d(t),this.tex.set_wrapping(t.REPEAT,t.REPEAT),this.tex.set_interpolation(t.NEAREST,t.NEAREST),this.tex.set_size([this._width,this._height],t.RGBA),this.tex.set_data([0,0],[this._width,this._height],new Uint8Array(4*this._width*this._height)),this.get_atlas_data([1])}get_atlas_data(t){const e=t.join("-");let s=this._atlas.get(e);if(null==s){const[i,a]=this.make_pattern(t),n=this._atlas.size;this.tex.set_data([0,n],[this._width,1],new Uint8Array(i.map(t=>t+10))),s=[n/this._height,a],this._atlas.set(e,s)}return s}make_pattern(t){t.length>1&&t.length%2&&(t=t.concat(t));let e=0;for(const s of t)e+=s;const s=[];let i=0;for(let e=0,a=t.length+2;e<a;e+=2){const a=Math.max(1e-4,t[e%t.length]),n=Math.max(1e-4,t[(e+1)%t.length]);s.push(i,i+a),i+=a+n}const a=this._width,n=new Float32Array(4*a);for(let t=0,i=a;t<i;t++){let i,o,_;const h=e*t/(a-1);let r=0,l=1e16;for(let t=0,e=s.length;t<e;t++){const e=Math.abs(s[t]-h);e<l&&(r=t,l=e)}r%2==0?(_=h<=s[r]?1:0,o=s[r],i=s[r+1]):(_=h>s[r]?-1:0,o=s[r-1],i=s[r]),n[4*t+0]=s[r],n[4*t+1]=_,n[4*t+2]=o,n[4*t+3]=i}return[n,e]}}h.__name__="DashAtlas";const r={miter:0,round:1,bevel:2},l={"":0,none:0,".":0,round:1,")":1,"(":1,o:1,"triangle in":2,"<":2,"triangle out":3,">":3,square:4,"[":4,"]":4,"=":4,butt:5,"|\":5};class g extends a.BaseGLGlyph{init(){const{gl:t}=this;this._scale_aspect=0;const e=n.vertex_shader,s=o.fragment_shader;this.prog=new i.Program(t),this.prog.set_shaders(e,s),this.index_buffer=new i.IndexBuffer(t),this.vbo_position=new i.VertexBuffer(t),this.vbo_tangents=new i.VertexBuffer(t),this.vbo_segment=new i.VertexBuffer(t),this.vbo_angles=new i.VertexBuffer(t),this.vbo_texcoord=new i.VertexBuffer(t),this.dash_atlas=new h(t)}draw(t,e,s){const i=e.glglyph;if(i.data_changed&&(i._set_data(),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(),this.visuals_changed=!1),i._update_scale(1,1),this._scale_aspect=1,this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord),this.prog.set_uniform(\"u_length\",\"float\",[i.cumsum]),this.prog.set_texture(\"u_dash_atlas\",this.dash_atlas.tex),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_uniform(\"u_scale_aspect\",\"vec2\",[1,1]),this.prog.set_uniform(\"u_scale_length\",\"float\",[Math.sqrt(2)]),this.I_triangles=i.I_triangles,this.I_triangles.length<65535)this.index_buffer.set_size(2*this.I_triangles.length),this.index_buffer.set_data(0,new Uint16Array(this.I_triangles)),this.prog.draw(this.gl.TRIANGLES,this.index_buffer);else{t=Array.from(this.I_triangles);const e=this.I_triangles.length,s=64008,a=[];for(let t=0,i=Math.ceil(e/s);t<i;t++)a.push([]);for(let e=0,i=t.length;e<i;e++){const i=t[e]%s;a[Math.floor(t[e]/s)].push(i)}for(let t=0,e=a.length;t<e;t++){const e=new Uint16Array(a[t]),n=t*s*4;0!==e.length&&(this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position,0,2*n),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents,0,4*n),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment,0,2*n),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles,0,2*n),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord,0,2*n),this.index_buffer.set_size(2*e.length),this.index_buffer.set_data(0,e),this.prog.draw(this.gl.TRIANGLES,this.index_buffer))}}}_set_data(){this._bake(),this.vbo_position.set_size(4*this.V_position.length),this.vbo_position.set_data(0,this.V_position),this.vbo_tangents.set_size(4*this.V_tangents.length),this.vbo_tangents.set_data(0,this.V_tangents),this.vbo_angles.set_size(4*this.V_angles.length),this.vbo_angles.set_data(0,this.V_angles),this.vbo_texcoord.set_size(4*this.V_texcoord.length),this.vbo_texcoord.set_data(0,this.V_texcoord)}_set_visuals(){const t=_.color2rgba(this.glyph.visuals.line.line_color.value(),this.glyph.visuals.line.line_alpha.value()),e=l[this.glyph.visuals.line.line_cap.value()],s=r[this.glyph.visuals.line.line_join.value()];this.prog.set_uniform(\"u_color\",\"vec4\",t),this.prog.set_uniform(\"u_linewidth\",\"float\",[this.glyph.visuals.line.line_width.value()]),this.prog.set_uniform(\"u_antialias\",\"float\",[.9]),this.prog.set_uniform(\"u_linecaps\",\"vec2\",[e,e]),this.prog.set_uniform(\"u_linejoin\",\"float\",[s]),this.prog.set_uniform(\"u_miter_limit\",\"float\",[10]);const i=this.glyph.visuals.line.line_dash.value();let a=0,n=1;i.length&&([a,n]=this.dash_atlas.get_atlas_data(i)),this.prog.set_uniform(\"u_dash_index\",\"float\",[a]),this.prog.set_uniform(\"u_dash_phase\",\"float\",[this.glyph.visuals.line.line_dash_offset.value()]),this.prog.set_uniform(\"u_dash_period\",\"float\",[n]),this.prog.set_uniform(\"u_dash_caps\",\"vec2\",[e,e]),this.prog.set_uniform(\"u_closed\",\"float\",[0])}_bake(){let t,e,s,i,a,n,o,_;const h=this.nvertices,r=this.glyph.sx,l=this.glyph.sy,g=o=new Float32Array(2*h),u=new Float32Array(2*h),f=_=new Float32Array(4*h);for(let t=0,e=h;t<e;t++)g[2*t+0]=r[t],g[2*t+1]=l[t];this.tangents=e=new Float32Array(2*h-2);for(let t=0,s=h-1;t<s;t++)e[2*t+0]=o[2*(t+1)+0]-o[2*t+0],e[2*t+1]=o[2*(t+1)+1]-o[2*t+1];for(let t=0,s=h-1;t<s;t++)f[4*(t+1)+0]=e[2*t+0],f[4*(t+1)+1]=e[2*t+1],f[4*t+2]=e[2*t+0],f[4*t+3]=e[2*t+1];f[0]=e[0],f[1]=e[1],f[4*(h-1)+2]=e[2*(h-2)+0],f[4*(h-1)+3]=e[2*(h-2)+1];const c=new Float32Array(h);for(let t=0,e=h;t<e;t++)c[t]=Math.atan2(_[4*t+0]*_[4*t+3]-_[4*t+1]*_[4*t+2],_[4*t+0]*_[4*t+2]+_[4*t+1]*_[4*t+3]);for(let t=0,e=h-1;t<e;t++)u[2*t+0]=c[t],u[2*t+1]=c[t+1];const p=4*h-4;this.V_position=i=new Float32Array(2*p),this.V_angles=s=new Float32Array(2*p),this.V_tangents=a=new Float32Array(4*p),this.V_texcoord=n=new Float32Array(2*p);for(let t=0,e=h;t<e;t++)for(let e=0;e<4;e++){for(let a=0;a<2;a++)i[2*(4*t+e-2)+a]=g[2*t+a],s[2*(4*t+e)+a]=u[2*t+a];for(let s=0;s<4;s++)a[4*(4*t+e-2)+s]=f[4*t+s]}for(let t=0,e=h;t<e;t++)n[2*(4*t+0)+0]=-1,n[2*(4*t+1)+0]=-1,n[2*(4*t+2)+0]=1,n[2*(4*t+3)+0]=1,n[2*(4*t+0)+1]=-1,n[2*(4*t+1)+1]=1,n[2*(4*t+2)+1]=-1,n[2*(4*t+3)+1]=1;const d=6*(h-1);this.I_triangles=t=new Uint32Array(d);for(let e=0,s=h;e<s;e++)t[6*e+0]=0+4*e,t[6*e+1]=1+4*e,t[6*e+2]=3+4*e,t[6*e+3]=2+4*e,t[6*e+4]=0+4*e,t[6*e+5]=3+4*e}_update_scale(t,e){let s;const i=this.nvertices,a=4*i-4,n=this.tangents,o=new Float32Array(i-1),_=new Float32Array(2*i);this.V_segment=s=new Float32Array(2*a);for(let s=0,a=i-1;s<a;s++)o[s]=Math.sqrt((n[2*s+0]*t)**2+(n[2*s+1]*e)**2);let h=0;for(let t=0,e=i-1;t<e;t++)h+=o[t],_[2*(t+1)+0]=h,_[2*t+1]=h;for(let t=0,e=i;t<e;t++)for(let e=0;e<4;e++)for(let i=0;i<2;i++)s[2*(4*t+e)+i]=_[2*t+i];this.cumsum=h,this.vbo_segment.set_size(4*this.V_segment.length),this.vbo_segment.set_data(0,this.V_segment)}}s.LineGL=g,g.__name__=\"LineGL\"},\n function _(e,r,f){Object.defineProperty(f,\"__esModule\",{value:!0});var u=e(104);f.Program=u.Program;var t=e(106);f.Texture2d=t.Texture2d;var a=e(105);f.IndexBuffer=a.IndexBuffer,f.VertexBuffer=a.VertexBuffer},\n function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(105);class a{constructor(t){this.gl=t,this.UTYPEMAP={float:\"uniform1fv\",vec2:\"uniform2fv\",vec3:\"uniform3fv\",vec4:\"uniform4fv\",int:\"uniform1iv\",ivec2:\"uniform2iv\",ivec3:\"uniform3iv\",ivec4:\"uniform4iv\",bool:\"uniform1iv\",bvec2:\"uniform2iv\",bvec3:\"uniform3iv\",bvec4:\"uniform4iv\",mat2:\"uniformMatrix2fv\",mat3:\"uniformMatrix3fv\",mat4:\"uniformMatrix4fv\",sampler1D:\"uniform1i\",sampler2D:\"uniform1i\",sampler3D:\"uniform1i\"},this.ATYPEMAP={float:\"vertexAttrib1f\",vec2:\"vertexAttrib2f\",vec3:\"vertexAttrib3f\",vec4:\"vertexAttrib4f\"},this.ATYPEINFO={float:[1,5126],vec2:[2,5126],vec3:[3,5126],vec4:[4,5126]},this._linked=!1,this._validated=!1,this._unset_variables=new Set,this._known_invalid=new Set,this._locations=new Map,this._samplers=new Map,this._attributes=new Map,this.handle=this.gl.createProgram()}delete(){this.gl.deleteProgram(this.handle)}activate(){this.gl.useProgram(this.handle)}deactivate(){this.gl.useProgram(0)}set_shaders(t,e){const i=this.gl;this._linked=!1;const s=i.createShader(i.VERTEX_SHADER),a=i.createShader(i.FRAGMENT_SHADER),r=[[t,s,\"vertex\"],[e,a,\"fragment\"]];for(const[t,e,s]of r){i.shaderSource(e,t),i.compileShader(e);if(!i.getShaderParameter(e,i.COMPILE_STATUS)){const t=i.getShaderInfoLog(e);throw new Error(`errors in ${s} shader:\\n${t}`)}}if(i.attachShader(this.handle,s),i.attachShader(this.handle,a),i.linkProgram(this.handle),!i.getProgramParameter(this.handle,i.LINK_STATUS)){const t=i.getProgramInfoLog(this.handle);throw new Error(\"Program link error:\\n\"+t)}this._unset_variables=this._get_active_attributes_and_uniforms(),i.detachShader(this.handle,s),i.detachShader(this.handle,a),i.deleteShader(s),i.deleteShader(a),this._known_invalid.clear(),this._linked=!0}_get_active_attributes_and_uniforms(){const t=this.gl;this._locations.clear();const e=new RegExp(\"(\\\\w+)\\\\s*(\\\\[(\\\\d+)\\\\])\\\\s*\"),i=t.getProgramParameter(this.handle,t.ACTIVE_UNIFORMS),s=[],a=[],r=[[s,t.getProgramParameter(this.handle,t.ACTIVE_ATTRIBUTES),t.getActiveAttrib,t.getAttribLocation],[a,i,t.getActiveUniform,t.getUniformLocation]];for(const[i,s,a,n]of r)for(let r=0;r<s;r+=1){const s=a.call(t,this.handle,r),o=s.name,h=o.match(e);if(null!=h){const t=h[1];for(let e=0;e<s.size;e+=1)i.push([`${t}[${e}]`,s.type])}else i.push([o,s.type]);this._locations.set(o,n.call(t,this.handle,o))}const n=new Set;for(const[t]of s)n.add(t);for(const[t]of a)n.add(t);return n}set_texture(t,e){var i;if(!this._linked)throw new Error(\"Cannot set uniform when program has no code\");const s=null!==(i=this._locations.get(t))&&void 0!==i?i:-1;if(s<0)this._known_invalid.has(t)||(this._known_invalid.add(t),console.log(`\"Variable ${t} is not an active texture`));else{this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate();{let i=this._samplers.size;this._samplers.has(t)&&(i=this._samplers.get(t)[2]),this._samplers.set(t,[e._target,e.handle,i]),this.gl.uniform1i(s,i)}}}set_uniform(t,e,i){var s;if(!this._linked)throw new Error(\"Cannot set uniform when program has no code\");const a=null!==(s=this._locations.get(t))&&void 0!==s?s:-1;if(a<0)return void(this._known_invalid.has(t)||(this._known_invalid.add(t),console.log(`Variable ${t} is not an active uniform`)));this._unset_variables.has(t)&&this._unset_variables.delete(t);let r=1;if(!e.startsWith(\"mat\")){const t=\"int\"==e||"bool"==e?"float":e.replace(/^ib/,"");r=Math.floor(i.length/this.ATYPEINFO[t][0])}if(r>1)for(let e=0;e<r;e+=1)if(this._unset_variables.has(${t}[${e}])){const i=`${t}[${e}]`;this._unset_variables.has(i)&&this._unset_variables.delete(i)}const n=this.UTYPEMAP[e];this.activate(),e.startsWith("mat")?this.gl[n](a,!1,i):this.gl[n](a,i)}set_attribute(t,e,i,a=0,r=0){var n;if(!this._linked)throw new Error("Cannot set attribute when program has no code");const o=null!==(n=this._locations.get(t))&&void 0!==n?n:-1;if(o<0)this._known_invalid.has(t)||(this._known_invalid.add(t),i instanceof s.VertexBuffer&&r>0||console.log(Variable ${t} is not an active attribute));else if(this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate(),i instanceof s.VertexBuffer){const[s,n]=this.ATYPEINFO[e],h="vertexAttribPointer",l=[s,n,!1,a,r];this._attributes.set(t,[i.handle,o,h,l])}else{const s=this.ATYPEMAP[e];this._attributes.set(t,[null,o,s,i])}}_pre_draw(){this.activate();for(const[t,e,i]of this._samplers.values())this.gl.activeTexture(this.gl.TEXTURE0+i),this.gl.bindTexture(t,e);for(const[t,e,i,s]of this._attributes.values())null!=t?(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,t),this.gl.enableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,…s])):(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,…s]));this._validated||(this._validated=!0,this._validate())}_validate(){if(this._unset_variables.size&&console.log("Program has unset variables: "+this._unset_variables),this.gl.validateProgram(this.handle),!this.gl.getProgramParameter(this.handle,this.gl.VALIDATE_STATUS))throw console.log(this.gl.getProgramInfoLog(this.handle)),new Error("Program validation error")}draw(t,e){if(!this._linked)throw new Error("Cannot draw program if code has not been set");if(e instanceof s.IndexBuffer){this._pre_draw(),e.activate();const i=e.buffer_size/2,s=this.gl.UNSIGNED_SHORT;this.gl.drawElements(t,i,s,0),e.deactivate()}else{const[i,s]=e;0!=s&&(this._pre_draw(),this.gl.drawArrays(t,i,s))}}}i.Program=a,a.__name__="Program"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class i{constructor(e){this.gl=e,this._usage=35048,this.buffer_size=0,this.handle=this.gl.createBuffer()}delete(){this.gl.deleteBuffer(this.handle)}activate(){this.gl.bindBuffer(this._target,this.handle)}deactivate(){this.gl.bindBuffer(this._target,null)}set_size(e){e!=this.buffer_size&&(this.activate(),this.gl.bufferData(this._target,e,this._usage),this.buffer_size=e)}set_data(e,t){this.activate(),this.gl.bufferSubData(this._target,e,t)}}s.Buffer=i,i.__name__="Buffer";class r extends i{constructor(){super(…arguments),this._target=34962}}s.VertexBuffer=r,r.__name__="VertexBuffer";class a extends i{constructor(){super(…arguments),this._target=34963}}s.IndexBuffer=a,a.__name__="IndexBuffer"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const a=t(11);class r{constructor(t){this.gl=t,this._target=3553,this._types={Int8Array:5120,Uint8Array:5121,Int16Array:5122,Uint16Array:5123,Int32Array:5124,Uint32Array:5125,Float32Array:5126},this.handle=this.gl.createTexture()}delete(){this.gl.deleteTexture(this.handle)}activate(){this.gl.bindTexture(this._target,this.handle)}deactivate(){this.gl.bindTexture(this._target,0)}_get_alignment(t){const e=[4,8,2,1];for(const i of e)if(t%i==0)return i;a.unreachable()}set_wrapping(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_S,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_T,e)}set_interpolation(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_MIN_FILTER,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_MAG_FILTER,e)}set_size([t,e],i){var a,r,s;t==(null===(a=this._shape_format)||void 0===a?void 0:a.width)&&e==(null===(r=this._shape_format)||void 0===r?void 0:r.height)&&i==(null===(s=this._shape_format)||void 0===s?void 0:s.format)||(this._shape_format={width:t,height:e,format:i},this.activate(),this.gl.texImage2D(this._target,0,i,t,e,0,i,this.gl.UNSIGNED_BYTE,null))}set_data(t,[e,i],a){this.activate();const{format:r}=this._shape_format,[s,h]=t,l=this._types[a.constructor.name];if(null==l)throw new Error(Type ${a.constructor.name} not allowed for texture);const _=this._get_alignment(e);4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,_),this.gl.texSubImage2D(this._target,0,s,h,e,i,r,l,a),4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,4)}}i.Texture2d=r,r.__name__="Texture2d"},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});class s{constructor(e,t){this.gl=e,this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.init()}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,i){if(0==t.length)return!0;const{width:s,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:s,height:h};return this.draw(t,i,a),!0}}i.BaseGLGlyph=s,s.__name__="BaseGLGlyph"},n function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.vertex_shader="\nprecision mediump float;\n\nconst float PI = 3.14159265358979323846264;\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\n\nuniform float u_pixel_ratio;\nuniform vec2 u_canvas_size, u_offset;\nuniform vec2 u_scale_aspect;\nuniform float u_scale_length;\n\nuniform vec4 u_color;\nuniform float u_antialias;\nuniform float u_length;\nuniform float u_linewidth;\nuniform float u_dash_index;\nuniform float u_closed;\n\nattribute vec2 a_position;\nattribute vec4 a_tangents;\nattribute vec2 a_segment;\nattribute vec2 a_angles;\nattribute vec2 a_texcoord;\n\nvarying vec4 v_color;\nvarying vec2 v_segment;\nvarying vec2 v_angles;\nvarying vec2 v_texcoord;\nvarying vec2 v_miter;\nvarying float v_length;\nvarying float v_linewidth;\n\nfloat cross(in vec2 v1, in vec2 v2)\n{\n return v1.x*v2.y - v1.y*v2.x;\n}\n\nfloat signed_distance(in vec2 v1, in vec2 v2, in vec2 v3)\n{\n return cross(v2-v1,v1-v3) / length(v2-v1);\n}\n\nvoid rotate( in vec2 v, in float alpha, out vec2 result )\n{\n float c = cos(alpha);\n float s = sin(alpha);\n result = vec2( c*v.x - s*v.y,\n s*v.x + c*v.y );\n}\n\nvoid main()\n{\n bool closed = (u_closed > 0.0);\n\n // Attributes and uniforms to varyings\n v_color = u_color;\n v_linewidth = u_linewidth;\n v_segment = a_segment * u_scale_length;\n v_length = u_length * u_scale_length;\n\n // Scale to map to pixel coordinates. The original algorithm from the paper\n // assumed isotropic scale. We obviously do not have this.\n vec2 abs_scale_aspect = abs(u_scale_aspect);\n vec2 abs_scale = u_scale_length * abs_scale_aspect;\n\n // Correct angles for aspect ratio\n vec2 av;\n av = vec2(1.0, tan(a_angles.x)) / abs_scale_aspect;\n v_angles.x = atan(av.y, av.x);\n av = vec2(1.0, tan(a_angles.y)) / abs_scale_aspect;\n v_angles.y = atan(av.y, av.x);\n\n // Thickness below 1 pixel are represented using a 1 pixel thickness\n // and a modified alpha\n v_color.a = min(v_linewidth, v_color.a);\n v_linewidth = max(v_linewidth, 1.0);\n\n // If color is fully transparent we just will discard the fragment anyway\n if( v_color.a <= 0.0 ) {\n gl_Position = vec4(0.0,0.0,0.0,1.0);\n return;\n }\n\n // This is the actual half width of the line\n float w = ceil(u_antialias+v_linewidth)/2.0;\n\n vec2 position = a_position;\n\n vec2 t1 = normalize(a_tangents.xy * abs_scale_aspect); // note the scaling for aspect ratio here\n vec2 t2 = normalize(a_tangents.zw * abs_scale_aspect);\n float u = a_texcoord.x;\n float v = a_texcoord.y;\n vec2 o1 = vec2( +t1.y, -t1.x);\n vec2 o2 = vec2( +t2.y, -t2.x);\n\n // This is a join\n // —————————————————————-\n if( t1 != t2 ) {\n float angle = atan (t1.x*t2.y-t1.y*t2.x, t1.x*t2.x+t1.y*t2.y); // Angle needs recalculation for some reason\n vec2 t = normalize(t1+t2);\n vec2 o = vec2( + t.y, - t.x);\n\n if ( u_dash_index > 0.0 )\n {\n // Broken angle\n // —————————————————————-\n if( (abs(angle) > THETA) ) {\n position += v * w * o / cos(angle/2.0);\n float s = sign(angle);\n if( angle < 0.0 ) {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n if( v == 1.0 ) {\n position -= 2.0 * w * t1 / sin(angle);\n u -= 2.0 * w / sin(angle);\n }\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n if( v == 1.0 ) {\n position += 2.0 * w * t2 / sin(angle);\n u += 2.0*w / sin(angle);\n }\n }\n } else {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n if( v == -1.0 ) {\n position += 2.0 * w * t1 / sin(angle);\n u += 2.0 * w / sin(angle);\n }\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n if( v == -1.0 ) {\n position -= 2.0 * w * t2 / sin(angle);\n u -= 2.0*w / sin(angle);\n }\n }\n }\n // Continuous angle\n // ————————————————————\n } else {\n position += v * w * o / cos(angle/2.0);\n if( u == +1.0 ) u = v_segment.y;\n else u = v_segment.x;\n }\n }\n\n // Solid line\n // ——————————————————————–\n else\n {\n position.xy += v * w * o / cos(angle/2.0);\n if( angle < 0.0 ) {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n }\n } else {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n }\n }\n }\n\n // This is a line start or end (t1 == t2)\n // ————————————————————————\n } else {\n position += v * w * o1;\n if( u == -1.0 ) {\n u = v_segment.x - w;\n position -= w * t1;\n } else {\n u = v_segment.y + w;\n position += w * t2;\n }\n }\n\n // Miter distance\n // ————————————————————————\n vec2 t;\n vec2 curr = a_position * abs_scale;\n if( a_texcoord.x < 0.0 ) {\n vec2 next = curr + t2*(v_segment.y-v_segment.x);\n\n rotate( t1, +v_angles.x/2.0, t);\n v_miter.x = signed_distance(curr, curr+t, position);\n\n rotate( t2, +v_angles.y/2.0, t);\n v_miter.y = signed_distance(next, next+t, position);\n } else {\n vec2 prev = curr - t1*(v_segment.y-v_segment.x);\n\n rotate( t1, -v_angles.x/2.0,t);\n v_miter.x = signed_distance(prev, prev+t, position);\n\n rotate( t2, -v_angles.y/2.0,t);\n v_miter.y = signed_distance(curr, curr+t, position);\n }\n\n if (!closed && v_segment.x <= 0.0) {\n v_miter.x = 1e10;\n }\n if (!closed && v_segment.y >= v_length)\n {\n v_miter.y = 1e10;\n }\n\n v_texcoord = vec2( u, v*w );\n\n // Calculate position in device coordinates. Note that we\n // already scaled with abs scale above.\n vec2 normpos = position * sign(u_scale_aspect);\n normpos += 0.5; // make up for Bokeh’s offset\n normpos /= u_canvas_size / u_pixel_ratio; // in 0..1\n gl_Position = vec4(normpos*2.0-1.0, 0.0, 1.0);\n gl_Position.y = -1.0;\n}\n"},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.fragment_shader="\nprecision mediump float;\n\nconst float PI = 3.14159265358979323846264;\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\n\nuniform sampler2D u_dash_atlas;\n\nuniform vec2 u_linecaps;\nuniform float u_miter_limit;\nuniform float u_linejoin;\nuniform float u_antialias;\nuniform float u_dash_phase;\nuniform float u_dash_period;\nuniform float u_dash_index;\nuniform vec2 u_dash_caps;\nuniform float u_closed;\n\nvarying vec4 v_color;\nvarying vec2 v_segment;\nvarying vec2 v_angles;\nvarying vec2 v_texcoord;\nvarying vec2 v_miter;\nvarying float v_length;\nvarying float v_linewidth;\n\n// Compute distance to cap —————————————————-\nfloat cap( int type, float dx, float dy, float t, float linewidth )\n{\n float d = 0.0;\n dx = abs(dx);\n dy = abs(dy);\n if (type == 0) discard; // None\n else if (type == 1) d = sqrt(dx*dx+dy*dy); // Round\n else if (type == 3) d = (dx+abs(dy)); // Triangle in\n else if (type == 2) d = max(abs(dy),(t+dx-abs(dy))); // Triangle out\n else if (type == 4) d = max(dx,dy); // Square\n else if (type == 5) d = max(dx+t,dy); // Butt\n return d;\n}\n\n// Compute distance to join ————————————————-\nfloat join( in int type, in float d, in vec2 segment, in vec2 texcoord, in vec2 miter,\n in float linewidth )\n{\n // texcoord.x is distance from start\n // texcoord.y is distance from centerline\n // segment.x and y indicate the limits (as for texcoord.x) for this segment\n\n float dx = texcoord.x;\n\n // Round join\n if( type == 1 ) {\n if (dx < segment.x) {\n d = max(d,length( texcoord - vec2(segment.x,0.0)));\n //d = length( texcoord - vec2(segment.x,0.0));\n } else if (dx > segment.y) {\n d = max(d,length( texcoord - vec2(segment.y,0.0)));\n //d = length( texcoord - vec2(segment.y,0.0));\n }\n }\n // Bevel join\n else if ( type == 2 ) {\n if (dx < segment.x) {\n vec2 x = texcoord - vec2(segment.x,0.0);\n d = max(d, max(abs(x.x), abs(x.y)));\n\n } else if (dx > segment.y) {\n vec2 x = texcoord - vec2(segment.y,0.0);\n d = max(d, max(abs(x.x), abs(x.y)));\n }\n / Original code for bevel which does not work for us\n if( (dx < segment.x) || (dx > segment.y) )\n d = max(d, min(abs(x.x),abs(x.y)));\n /\n }\n\n return d;\n}\n\nvoid main()\n{\n // If color is fully transparent we just discard the fragment\n if( v_color.a <= 0.0 ) {\n discard;\n }\n\n // Test if dash pattern is the solid one (0)\n bool solid = (u_dash_index == 0.0);\n\n // Test if path is closed\n bool closed = (u_closed > 0.0);\n\n vec4 color = v_color;\n float dx = v_texcoord.x;\n float dy = v_texcoord.y;\n float t = v_linewidth/2.0-u_antialias;\n float width = 1.0; //v_linewidth; original code had dashes scale with line width, we do not\n float d = 0.0;\n\n vec2 linecaps = u_linecaps;\n vec2 dash_caps = u_dash_caps;\n float line_start = 0.0;\n float line_stop = v_length;\n\n // Apply miter limit; fragments too far into the miter are simply discarded\n if( (dx < v_segment.x) || (dx > v_segment.y) ) {\n float into_miter = max(v_segment.x - dx, dx - v_segment.y);\n if (into_miter > u_miter_limit*v_linewidth/2.0)\n discard;\n }\n\n // Solid line ————————————————————–\n if( solid ) {\n d = abs(dy);\n if( (!closed) && (dx < line_start) ) {\n d = cap( int(u_linecaps.x), abs(dx), abs(dy), t, v_linewidth );\n }\n else if( (!closed) && (dx > line_stop) ) {\n d = cap( int(u_linecaps.y), abs(dx)-line_stop, abs(dy), t, v_linewidth );\n }\n else {\n d = join( int(u_linejoin), abs(dy), v_segment, v_texcoord, v_miter, v_linewidth );\n }\n\n // Dash line ————————————————————–\n } else {\n float segment_start = v_segment.x;\n float segment_stop = v_segment.y;\n float segment_center= (segment_start+segment_stop)/2.0;\n float freq = u_dash_period*width;\n float u = mod( dx + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n float dash_center= tex.x * width;\n float dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n float dash_start = dx - u + _start;\n float dash_stop = dx - u + _stop;\n\n // Compute extents of the first dash (the one relative to v_segment.x)\n // Note: this could be computed in the vertex shader\n if( (dash_stop < segment_start) && (dash_caps.x != 5.0) ) {\n float u = mod(segment_start + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n dash_center= tex.x * width;\n //dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n dash_start = segment_start - u + _start;\n dash_stop = segment_start - u + _stop;\n }\n\n // Compute extents of the last dash (the one relatives to v_segment.y)\n // Note: This could be computed in the vertex shader\n else if( (dash_start > segment_stop) && (dash_caps.y != 5.0) ) {\n float u = mod(segment_stop + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n dash_center= tex.x * width;\n //dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n dash_start = segment_stop - u + _start;\n dash_stop = segment_stop - u + _stop;\n }\n\n // This test if the we are dealing with a discontinuous angle\n bool discontinuous = ((dx < segment_center) && abs(v_angles.x) > THETA) ||\n ((dx >= segment_center) && abs(v_angles.y) > THETA);\n //if( dx < line_start) discontinuous = false;\n //if( dx > line_stop) discontinuous = false;\n\n float d_join = join( int(u_linejoin), abs(dy),\n v_segment, v_texcoord, v_miter, v_linewidth );\n\n // When path is closed, we do not have room for linecaps, so we make room\n // by shortening the total length\n if (closed) {\n line_start += v_linewidth/2.0;\n line_stop -= v_linewidth/2.0;\n }\n\n // We also need to take antialias area into account\n //line_start += u_antialias;\n //line_stop -= u_antialias;\n\n // Check is dash stop is before line start\n if( dash_stop <= line_start ) {\n discard;\n }\n // Check is dash start is beyond line stop\n if( dash_start >= line_stop ) {\n discard;\n }\n\n // Check if current dash start is beyond segment stop\n if( discontinuous ) {\n // Dash start is beyond segment, we discard\n if( (dash_start > segment_stop) ) {\n discard;\n //gl_FragColor = vec4(1.0,0.0,0.0,.25); return;\n }\n\n // Dash stop is before segment, we discard\n if( (dash_stop < segment_start) ) {\n discard; //gl_FragColor = vec4(0.0,1.0,0.0,.25); return;\n }\n\n // Special case for round caps (nicer with this)\n if( dash_caps.x == 1.0 ) {\n if( (u > _stop) && (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0)) {\n discard;\n }\n }\n\n // Special case for round caps (nicer with this)\n if( dash_caps.y == 1.0 ) {\n if( (u < _start) && (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0)) {\n discard;\n }\n }\n\n // Special case for triangle caps (in & out) and square\n // We make sure the cap stop at crossing frontier\n if( (dash_caps.x != 1.0) && (dash_caps.x != 5.0) ) {\n if( (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0) ) {\n float a = v_angles.x/2.0;\n float x = (segment_start-dx)*cos(a) - dy*sin(a);\n float y = (segment_start-dx)*sin(a) + dy*cos(a);\n if( x > 0.0 ) discard;\n // We transform the cap into square to avoid holes\n dash_caps.x = 4.0;\n }\n }\n\n // Special case for triangle caps (in & out) and square\n // We make sure the cap stop at crossing frontier\n if( (dash_caps.y != 1.0) && (dash_caps.y != 5.0) ) {\n if( (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0) ) {\n float a = v_angles.y/2.0;\n float x = (dx-segment_stop)*cos(a) - dy*sin(a);\n float y = (dx-segment_stop)*sin(a) + dy*cos(a);\n if( x > 0.0 ) discard;\n // We transform the caps into square to avoid holes\n dash_caps.y = 4.0;\n }\n }\n }\n\n // Line cap at start\n if( (dx < line_start) && (dash_start < line_start) && (dash_stop > line_start) ) {\n d = cap( int(linecaps.x), dx-line_start, dy, t, v_linewidth);\n }\n // Line cap at stop\n else if( (dx > line_stop) && (dash_stop > line_stop) && (dash_start < line_stop) ) {\n d = cap( int(linecaps.y), dx-line_stop, dy, t, v_linewidth);\n }\n // Dash cap left - dash_type = -1, 0 or 1, but there may be roundoff errors\n else if( dash_type < -0.5 ) {\n d = cap( int(dash_caps.y), abs(u-dash_center), dy, t, v_linewidth);\n if( (dx > line_start) && (dx < line_stop) )\n d = max(d,d_join);\n }\n // Dash cap right\n else if( dash_type > 0.5 ) {\n d = cap( int(dash_caps.x), abs(dash_center-u), dy, t, v_linewidth);\n if( (dx > line_start) && (dx < line_stop) )\n d = max(d,d_join);\n }\n // Dash body (plain)\n else {// if( dash_type > -0.5 && dash_type < 0.5) {\n d = abs(dy);\n }\n\n // Line join\n if( (dx > line_start) && (dx < line_stop)) {\n if( (dx <= segment_start) && (dash_start <= segment_start)\n && (dash_stop >= segment_start) ) {\n d = d_join;\n // Antialias at outer border\n float angle = PI/2.+v_angles.x;\n float f = abs( (segment_start - dx)*cos(angle) - dy*sin(angle));\n d = max(f,d);\n }\n else if( (dx > segment_stop) && (dash_start <= segment_stop)\n && (dash_stop >= segment_stop) ) {\n d = d_join;\n // Antialias at outer border\n float angle = PI/2.+v_angles.y;\n float f = abs((dx - segment_stop)*cos(angle) - dy*sin(angle));\n d = max(f,d);\n }\n else if( dx < (segment_start - v_linewidth/2.)) {\n discard;\n }\n else if( dx > (segment_stop + v_linewidth/2.)) {\n discard;\n }\n }\n else if( dx < (segment_start - v_linewidth/2.)) {\n discard;\n }\n else if( dx > (segment_stop + v_linewidth/2.)) {\n discard;\n }\n }\n\n // Distance to border ——————————————————\n d = d - t;\n if( d < 0.0 ) {\n gl_FragColor = color;\n } else {\n d /= u_antialias;\n gl_FragColor = vec4(color.rgb, exp(-d*d)*color.a);\n }\n}\n"},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),l=e(93),_=e(100),n=s.__importStar(e(101)),o=s.__importStar(e(28)),a=e(88);class h extends l.XYGlyphView{_inner_loop(e,i,t,s,l){for(const _ of i)0!=_?isNaN(t[_]+s[_])?(e.closePath(),l.apply(e),e.beginPath()):e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]));e.closePath(),l.call(e)}_render(e,i,{sx:t,sy:s}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner_loop(e,i,t,s,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner_loop(e,i,t,s,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_value(e),this._inner_loop(e,i,t,s,e.stroke))}draw_legend_for_index(e,i,t){_.generic_area_legend(this.visuals,e,i,t)}_hit_point(e){const i=new a.Selection;return n.point_in_poly(e.sx,e.sy,this.sx,this.sy)&&(i.add_to_selected_glyphs(this.model),i.view=this),i}}t.PatchView=h,h.__name__="PatchView";class r extends l.XYGlyph{constructor(e){super(e)}static init_Patch(){this.prototype.default_view=h,this.mixins([o.Line,o.Fill,o.Hatch])}}t.Patch=r,r.__name__="Patch",r.init_Patch()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x1[r],n=this._x2[r],a=this._y[r];isNaN(i+n+a)||!isFinite(i+n+a)?e.add_empty():e.add(t(i,n),a,s(i,n),a)}}_inner(e,t,s,i,r){e.beginPath();for(let s=0,r=t.length;s<r;s++)e.lineTo(t[s],i[s]);for(let t=s.length-1;t>=0;t–)e.lineTo(s[t],i[t]);e.closePath(),r.call(e)}_render(e,t,{sx1:s,sx2:i,sy:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}_hit_point(e){const t=this.sy.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e<r;e++)s[e]=this.sx1[e],i[e]=this.sy[e],s[t+e]=this.sx2[t-e-1],i[t+e]=this.sy[t-e-1];const n=new h.Selection;return a.point_in_poly(e.sx,e.sy,s,i)&&(n.add_to_selected_glyphs(this.model),n.view=this),n}scenterxy(e){return[(this.sx1[e]+this.sx2[e])/2,this.sy[e]]}_map_data(){this.sx1=this.renderer.xscale.v_compute(this._x1),this.sx2=this.renderer.xscale.v_compute(this._x2),this.sy=this.renderer.yscale.v_compute(this._y)}}s.HAreaView=l,l.__name__="HAreaView";class o extends n.Area{constructor(e){super(e)}static init_HArea(){this.prototype.default_view=l,this.define({x1:[_.XCoordinateSpec,{field:"x1"}],x2:[_.XCoordinateSpec,{field:"x2"}],y:[_.YCoordinateSpec,{field:"y"}]})}}s.HArea=o,o.__name__="HArea",o.init_HArea()},n function _(e,_,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e(1),r=e(94),t=e(100),n=a.__importStar(e(28));class s extends r.GlyphView{draw_legend_for_index(e,_,i){t.generic_area_legend(this.visuals,e,_,i)}}i.AreaView=s,s.__name__="AreaView";class c extends r.Glyph{constructor(e){super(e)}static init_Area(){this.mixins([n.Fill,n.HatchVector])}}i.Area=c,c.__name__="Area",c.init_Area()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x[r],n=this._y1[r],a=this._y2[r];isNaN(i+n+a)||!isFinite(i+n+a)?e.add_empty():e.add(i,t(n,a),i,s(n,a))}}_inner(e,t,s,i,r){e.beginPath();for(let i=0,r=s.length;i<r;i++)e.lineTo(t[i],s[i]);for(let s=i.length-1;s>=0;s–)e.lineTo(t[s],i[s]);e.closePath(),r.call(e)}_render(e,t,{sx:s,sy1:i,sy2:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}scenterxy(e){return[this.sx[e],(this.sy1[e]+this.sy2[e])/2]}_hit_point(e){const t=this.sx.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e<r;e++)s[e]=this.sx[e],i[e]=this.sy1[e],s[t+e]=this.sx[t-e-1],i[t+e]=this.sy2[t-e-1];const n=new h.Selection;return a.point_in_poly(e.sx,e.sy,s,i)&&(n.add_to_selected_glyphs(this.model),n.view=this),n}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sy1=this.renderer.yscale.v_compute(this._y1),this.sy2=this.renderer.yscale.v_compute(this._y2)}}s.VAreaView=l,l.__name__="VAreaView";class o extends n.Area{constructor(e){super(e)}static init_VArea(){this.prototype.default_view=l,this.define({x:[_.XCoordinateSpec,{field:"x"}],y1:[_.YCoordinateSpec,{field:"y1"}],y2:[_.YCoordinateSpec,{field:"y2"}]})}}s.VArea=o,o.__name__="VArea",o.init_VArea()},n function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),n=i(81),c=t.__importStar(i(18)),o=i(88),r=i(24),_=i(86);class a extends n.Model{constructor(i){super(i)}static init_CDSView(){this.define({filters:[c.Array,[]],source:[c.Instance]}),this.internal({indices:[c.Any],indices_map:[c.Any,{}],masked:[c.Any,null]})}initialize(){super.initialize(),this.compute_indices()}connect_signals(){super.connect_signals(),this.connect(this.properties.filters.change,()=>this.compute_indices());const i=()=>{const i=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,i),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,i),this.connect(this.source.patching,i)))};let e=null!=this.source;e?i():this.connect(this.properties.source.change,()=>{e||(i(),e=!0)})}compute_indices(){var i;const{source:e}=this;if(null==e)return;const s=null!==(i=e.get_length())&&void 0!==i?i:1,t=r.Indices.all_set(s);for(const i of this.filters)t.intersect(i.compute_indices(e));this.indices=t,this._indices=[…t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let i=0;i<this._indices.length;i++)this.indices_map[this._indices[i]]=i}convert_selection_from_subset(i){const e=i.indices.map(i=>this._indices[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_selection_to_subset(i){const e=i.indices.map(i=>this.indices_map[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_indices_from_subset(i){return i.map(i=>this._indices[i])}}s.CDSView=a,a.__name__="CDSView",a.init_CDSView()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(9);async function i(e,n,t){const o=new e(Object.assign(Object.assign({},t),{model:n}));return o.initialize(),await o.lazy_initialize(),o}t.build_view=async function(e,n={parent:null},t=(e=>e.default_view)){const o=await i(t(e),e,n);return o.connect_signals(),o},t.build_views=async function(e,n,t={parent:null},s=(e=>e.default_view)){const c=o.difference([…e.keys()],n);for(const n of c)e.get(n).remove(),e.delete(n);const a=[],f=n.filter(n=>!e.has(n));for(const n of f){const o=await i(s(n),n,t);e.set(n,o),a.push(o)}for(const e of a)e.connect_signals();return a},t.remove_views=function(e){for(const[n,t]of e)t.remove(),e.delete(n)}},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),i=e(91),s=e(117),a=t.__importStar(e(18)),o=e(115),_=e(11);class l extends i.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model;let r=null,n=null;const t={v_compute(n){_.assert(null==r);const[t]=r=e.layout_provider.get_edge_coordinates(n);return t}},i={v_compute(e){_.assert(null!=r);const[,n]=r;return r=null,n}},s={v_compute(r){_.assert(null==n);const[t]=n=e.layout_provider.get_node_coordinates(r);return t}},a={v_compute(e){_.assert(null!=n);const[,r]=n;return n=null,r}},{edge_renderer:l,node_renderer:d}=this.model;l.glyph.properties.xs.internal=!0,l.glyph.properties.ys.internal=!0,d.glyph.properties.x.internal=!0,d.glyph.properties.y.internal=!0,l.glyph.xs={expr:t},l.glyph.ys={expr:i},d.glyph.x={expr:s},d.glyph.y={expr:a};const{parent:p}=this;this.edge_view=await o.build_view(l,{parent:p}),this.node_view=await o.build_view(d,{parent:p})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,()=>{this.edge_view.set_data(!1),this.node_view.set_data(!1),this.request_render()})}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}}n.GraphRendererView=l,l.__name__="GraphRendererView";class d extends i.DataRenderer{constructor(e){super(e)}static init_GraphRenderer(){this.prototype.default_view=l,this.define({layout_provider:[a.Instance],node_renderer:[a.Instance],edge_renderer:[a.Instance],selection_policy:[a.Instance,()=>new s.NodesOnly],inspection_policy:[a.Instance,()=>new s.NodesOnly]})}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}n.GraphRenderer=d,d.__name__="GraphRenderer",d.init_GraphRenderer()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const d=e(81),s=e(12),o=e(9),_=e(88);class i extends d.Model{constructor(e){super(e)}_hit_test_nodes(e,t){if(!t.model.visible)return null;const n=t.node_view.glyph.hit_test(e);return null==n?null:t.node_view.model.view.convert_selection_from_subset(n)}_hit_test_edges(e,t){if(!t.model.visible)return null;const n=t.edge_view.glyph.hit_test(e);return null==n?null:t.edge_view.model.view.convert_selection_from_subset(n)}}n.GraphHitTestPolicy=i,i.__name__="GraphHitTestPolicy";class r extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.model.get_selection_manager().get_or_create_inspector(n.node_view.model);return o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesOnly=r,r.__name__="NodesOnly";class c extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}get_linked_edges(e,t,n){let d=[];"selection"==n?d=e.selected.indices.map(t=>e.data.index[t]):"inspection"==n&&(d=e.inspected.indices.map(t=>e.data.index[t]));const s=[];for(let e=0;e<t.data.start.length;e++)(o.contains(d,t.data.start[e])||o.contains(d,t.data.end[e]))&&s.push(e);const i=new _.Selection;for(const e of s)i.multiline_indices[e]=[0];return i.indices=s,i}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;s.update(e,n,d);const o=t.edge_renderer.data_source.selected,_=this.get_linked_edges(t.node_renderer.data_source,t.edge_renderer.data_source,"selection");return o.update(_,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model);o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model),i=this.get_linked_edges(n.node_view.model.data_source,n.edge_view.model.data_source,"inspection");return _.update(i,d,s),n.edge_view.model.data_source.setv({inspected:_},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesAndLinkedEdges=c,c.__name__="NodesAndLinkedEdges";class a extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_edges(e,t)}get_linked_nodes(e,t,n){let d=[];"selection"==n?d=t.selected.indices:"inspection"==n&&(d=t.inspected.indices);const i=[];for(const e of d)i.push(t.data.start[e]),i.push(t.data.end[e]);const r=o.uniq(i).map(t=>s.indexOf(e.data.index,t));return new _.Selection({indices:r})}do_selection(e,t,n,d){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,n,d);const o=t.node_renderer.data_source.selected,_=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,"selection");return o.update(_,n,d),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model);o.update(e,d,s),n.edge_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model),i=this.get_linked_nodes(n.node_view.model.data_source,n.edge_view.model.data_source,"inspection");return _.update(i,d,s),n.node_view.model.data_source.setv({inspected:_},{silent:!0}),n.edge_view.model.data_source.inspect.emit([n.edge_view,{geometry:t}]),!o.is_empty()}}n.EdgesAndLinkedNodes=a,a.__name__="EdgesAndLinkedNodes"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e(81);class o extends s.Model{do_selection(e,t,n,s){return null!==e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=o,o.__name__="SelectionPolicy";class r extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=r,r.__name__="IntersectRenderers";class c extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=c,c.__name__="UnionRenderers"},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.concat=function(t,…e){let n=t.length;for(const t of e)n+=t.length;const o=new t.constructor(n);o.set(t,0);let c=t.length;for(const t of e)o.set(t,c),c+=t.length;return o}},n function _(n,o,e){function t(…n){const o=new Set;for(const e of n)for(const n of e)o.add(n);return o}Object.defineProperty(e,"__esModule",{value:!0}),e.union=t,e.intersection=function(n,…o){const e=new Set;n:for(const t of n){for(const n of o)if(!n.has(t))continue n;e.add(t)}return e},e.difference=function(n,…o){const e=new Set(n);for(const n of t(…o))e.delete(n);return e}},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(14);class o{constructor(e){this.document=e}}s.DocumentEvent=o,o.__name__="DocumentEvent";class r extends o{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=r,r.__name__="DocumentEventBatch";class d extends o{}s.DocumentChangedEvent=d,d.__name__="DocumentChangedEvent";class _ extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}json(e){const t=this.msg_data,s=n.HasProps._value_to_json(t),o=new Set;return n.HasProps._value_record_references(t,o,{recursive:!0}),{kind:"MessageSent",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=_,_.__name__="MessageSentEvent";class i extends d{constructor(e,t,s,n,o,r,d){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=r,this.hint=d}json(e){if("id"===this.attr)throw new Error("’id’ field should never change, whatever code just set it is wrong");if(null!=this.hint)return this.hint.json(e);const t=this.new_,s=n.HasProps._value_to_json(t),o=new Set;n.HasProps._value_record_references(t,o,{recursive:!0}),o.has(this.model)&&this.model!==t&&o.delete(this.model);for(const t of o)e.add(t);return{kind:"ModelChanged",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=i,i.__name__="ModelChangedEvent";class a extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}json(e){return{kind:"ColumnsPatched",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=a,a.__name__="ColumnsPatchedEvent";class c extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}json(e){return{kind:"ColumnsStreamed",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=c,c.__name__="ColumnsStreamedEvent";class h extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}json(e){return{kind:"TitleChanged",title:this.title}}}s.TitleChangedEvent=h,h.__name__="TitleChangedEvent";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return n.HasProps._value_record_references(this.model,e,{recursive:!0}),{kind:"RootAdded",model:this.model.ref()}}}s.RootAddedEvent=u,u.__name__="RootAddedEvent";class l extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return{kind:"RootRemoved",model:this.model.ref()}}}s.RootRemovedEvent=l,l.__name__="RootRemovedEvent"},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),l=e(123),_=i.__importStar(e(28));class o extends l.UpperLowerView{connect_signals(){super.connect_signals();const e=()=>this.set_data(this.model.source);this.connect(this.model.change,e),this.connect(this.model.source.streaming,e),this.connect(this.model.source.patching,e),this.connect(this.model.source.change,e)}_render(){this._map_data();const{ctx:e}=this.layer;e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s<t;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);for(let s=this._upper_sx.length-1;s>=0;s–)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_value(e),e.fill()),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s<t;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);this.visuals.line.doit&&(this.visuals.line.set_value(e),e.stroke()),e.beginPath(),e.moveTo(this._upper_sx[0],this._upper_sy[0]);for(let s=0,t=this._upper_sx.length;s<t;s++)e.lineTo(this._upper_sx[s],this._upper_sy[s]);this.visuals.line.doit&&(this.visuals.line.set_value(e),e.stroke())}}t.BandView=o,o.__name__="BandView";class n extends l.UpperLower{constructor(e){super(e)}static init_Band(){this.prototype.default_view=o,this.mixins([_.Line,_.Fill]),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}}t.Band=n,n.__name__="Band",n.init_Band()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),o=e(36),r=e(85),p=s.__importStar(e(18));class _ extends o.AnnotationView{initialize(){super.initialize(),this.set_data(this.model.source)}set_data(e){super.set_data(e),this.visuals.warm_cache(e),this.plot_view.request_render()}_map_data(){const{frame:e}=this.plot_view,t=this.model.dimension,i=this.coordinates.x_scale,s=this.coordinates.y_scale,o="height"==t?s:i,r="height"==t?i:s,p="height"==t?e.yview:e.xview,_="height"==t?e.xview:e.yview;let a,n,h;a="data"==this.model.properties.lower.units?o.v_compute(this._lower):p.v_compute(this._lower),n="data"==this.model.properties.upper.units?o.v_compute(this._upper):p.v_compute(this._upper),h="data"==this.model.properties.base.units?r.v_compute(this._base):_.v_compute(this._base);const[c,u]="height"==t?[1,0]:[0,1],l=[a,h],w=[n,h];this._lower_sx=l[c],this._lower_sy=l[u],this._upper_sx=w[c],this._upper_sy=w[u]}}i.UpperLowerView=_,_.__name__="UpperLowerView";class a extends o.Annotation{constructor(e){super(e)}static init_UpperLower(){this.define({lower:[p.DistanceSpec],upper:[p.DistanceSpec],base:[p.DistanceSpec],dimension:[p.Dimension,"height"],source:[p.Instance,()=>new r.ColumnDataSource]})}}i.UpperLower=a,a.__name__="UpperLower",a.init_UpperLower()},n function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const e=t(1),o=t(36),n=t(15),l=e.__importStar(t(28)),a=e.__importStar(t(18)),h=t(79);s.EDGE_TOLERANCE=2.5;class r extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this)),this.connect(this.model.data_update,()=>this.plot_view.request_paint(this))}_render(){if(null==this.model.left&&null==this.model.right&&null==this.model.top&&null==this.model.bottom)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,s=this.coordinates.y_scale,e=(t,i,s,e,o)=>{let n;return n=null!=t?this.model.screen?t:"data"==i?s.compute(t):e.compute(t):o,n};this.sleft=e(this.model.left,this.model.left_units,i,t.xview,t.bbox.left),this.sright=e(this.model.right,this.model.right_units,i,t.xview,t.bbox.right),this.stop=e(this.model.top,this.model.top_units,s,t.yview,t.bbox.top),this.sbottom=e(this.model.bottom,this.model.bottom_units,s,t.yview,t.bbox.bottom),this._paint_box(this.sleft,this.sright,this.sbottom,this.stop)}_paint_box(t,i,s,e){const{ctx:o}=this.layer;o.save(),o.beginPath(),o.rect(t,e,i-t,s-e),this.visuals.fill.doit&&(this.visuals.fill.set_value(o),o.fill()),this.visuals.line.doit&&(this.visuals.line.set_value(o),o.stroke()),o.restore()}interactive_bbox(){const t=this.model.properties.line_width.value()+s.EDGE_TOLERANCE;return new h.BBox({x0:this.sleft-t,y0:this.stop-t,x1:this.sright+t,y1:this.sbottom+t})}interactive_hit(t,i){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,i)}cursor(t,i){return Math.abs(t-this.sleft)<3||Math.abs(t-this.sright)<3?this.model.ew_cursor:Math.abs(i-this.sbottom)<3||Math.abs(i-this.stop)<3?this.model.ns_cursor:t>this.sleft&&t<this.sright&&i>this.stop&&i<this.sbottom?this.model.in_cursor:null}}s.BoxAnnotationView=r,r.__name__="BoxAnnotationView";class u extends o.Annotation{constructor(t){super(t)}static init_BoxAnnotation(){this.prototype.default_view=r,this.mixins([l.Line,l.Fill]),this.define({render_mode:[a.RenderMode,"canvas"],top:[a.Number,null],top_units:[a.SpatialUnits,"data"],bottom:[a.Number,null],bottom_units:[a.SpatialUnits,"data"],left:[a.Number,null],left_units:[a.SpatialUnits,"data"],right:[a.Number,null],right_units:[a.SpatialUnits,"data"]}),this.internal({screen:[a.Boolean,!1],ew_cursor:[a.String,null],ns_cursor:[a.String,null],in_cursor:[a.String,null]}),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}initialize(){super.initialize(),this.data_update=new n.Signal0(this,"data_update")}update({left:t,right:i,top:s,bottom:e}){this.setv({left:t,right:i,top:s,bottom:e,screen:!0},{silent:!0}),this.data_update.emit()}}s.BoxAnnotation=u,u.__name__="BoxAnnotation",u.init_BoxAnnotation()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),a=t(36),s=t(126),r=t(130),n=t(132),l=t(145),_=t(156),h=t(157),m=t(158),d=o.__importStar(t(28)),c=o.__importStar(t(18)),u=o.__importStar(t(159)),g=t(9),p=t(12),f=t(8),b=t(11);class v extends a.AnnotationView{initialize(){super.initialize(),this._set_canvas_image()}connect_signals(){super.connect_signals(),this.connect(this.model.ticker.change,()=>this.plot_view.request_render()),this.connect(this.model.formatter.change,()=>this.plot_view.request_render()),null!=this.model.color_mapper&&this.connect(this.model.color_mapper.change,()=>{this._set_canvas_image(),this.plot_view.request_render()})}_get_size(){if(null==this.model.color_mapper)return{width:0,height:0};{const{width:t,height:e}=this.compute_legend_dimensions();return{width:t,height:e}}}_set_canvas_image(){if(null==this.model.color_mapper)return;let t,e,{palette:i}=this.model.color_mapper;switch("vertical"==this.model.orientation&&(i=g.reversed(i)),this.model.orientation){case"vertical":[t,e]=[1,i.length];break;case"horizontal":[t,e]=[i.length,1]}const o=document.createElement("canvas");o.width=t,o.height=e;const a=o.getContext("2d"),s=a.getImageData(0,0,t,e),r=new n.LinearColorMapper({palette:i}).rgba_mapper.v_compute(g.range(0,i.length));s.data.set(r),a.putImageData(s,0,0),this.image=o}compute_legend_dimensions(){const t=this._computed_image_dimensions(),[e,i]=[t.height,t.width],o=this._get_label_extent(),a=this._title_extent(),s=this._tick_extent(),{padding:r}=this.model;let n,l;switch(this.model.orientation){case"vertical":n=e+a+2*r,l=i+s+o+2*r;break;case"horizontal":n=e+a+s+o+2*r,l=i+2*r}return{width:l,height:n}}compute_legend_location(){const t=this.compute_legend_dimensions(),[e,i]=[t.height,t.width],o=this.model.margin,a=null!=this.panel?this.panel:this.plot_view.frame,[s,r]=a.bbox.ranges,{location:n}=this.model;let l,_;if(f.isString(n))switch(n){case"top_left":l=s.start+o,_=r.start+o;break;case"top_center":l=(s.end+s.start)/2-i/2,_=r.start+o;break;case"top_right":l=s.end-o-i,_=r.start+o;break;case"bottom_right":l=s.end-o-i,_=r.end-o-e;break;case"bottom_center":l=(s.end+s.start)/2-i/2,_=r.end-o-e;break;case"bottom_left":l=s.start+o,_=r.end-o-e;break;case"center_left":l=s.start+o,_=(r.end+r.start)/2-e/2;break;case"center":l=(s.end+s.start)/2-i/2,_=(r.end+r.start)/2-e/2;break;case"center_right":l=s.end-o-i,_=(r.end+r.start)/2-e/2}else if(f.isArray(n)&&2==n.length){const[t,i]=n;l=a.xview.compute(t),_=a.yview.compute(i)-e}else b.unreachable();return{sx:l,sy:_}}_render(){if(null==this.model.color_mapper)return;const{ctx:t}=this.layer;t.save();const{sx:e,sy:i}=this.compute_legend_location();t.translate(e,i),this._draw_bbox(t);const o=this._get_image_offset();t.translate(o.x,o.y),this._draw_image(t);const a=this.tick_info();this._draw_major_ticks(t,a),this._draw_minor_ticks(t,a),this._draw_major_labels(t,a),this.model.title&&this._draw_title(t),t.restore()}_draw_bbox(t){const e=this.compute_legend_dimensions();t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(0,0,e.width,e.height)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_image(t){const e=this._computed_image_dimensions();t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this.image,0,0,e.width,e.height),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_major_ticks(t,e){if(!this.visuals.major_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.major,_=this.model.major_tick_in,h=this.model.major_tick_out;t.save(),t.translate(s,r),this.visuals.major_tick_line.set_value(t);for(let e=0,a=n.length;e<a;e++)t.beginPath(),t.moveTo(Math.round(n[e]+i*h),Math.round(l[e]+o*h)),t.lineTo(Math.round(n[e]-i*_),Math.round(l[e]-o*_)),t.stroke();t.restore()}_draw_minor_ticks(t,e){if(!this.visuals.minor_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.minor,_=this.model.minor_tick_in,h=this.model.minor_tick_out;t.save(),t.translate(s,r),this.visuals.minor_tick_line.set_value(t);for(let e=0,a=n.length;e<a;e++)t.beginPath(),t.moveTo(Math.round(n[e]+i*h),Math.round(l[e]+o*h)),t.lineTo(Math.round(n[e]-i*_),Math.round(l[e]-o*_)),t.stroke();t.restore()}_draw_major_labels(t,e){if(!this.visuals.major_label_text.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],n=this.model.label_standoff+this._tick_extent(),[l,_]=[n*i,n*o],[h,m]=e.coords.major,d=e.labels.major;this.visuals.major_label_text.set_value(t),t.save(),t.translate(s+l,r+_);for(let e=0,a=h.length;e<a;e++)t.fillText(d[e],Math.round(h[e]+i*this.model.label_standoff),Math.round(m[e]+o*this.model.label_standoff));t.restore()}_draw_title(t){this.visuals.title_text.doit&&(t.save(),this.visuals.title_text.set_value(t),t.fillText(this.model.title,0,-this.model.title_standoff),t.restore())}_get_label_extent(){const t=this.tick_info().labels.major;let e;if(g.is_empty(t))e=0;else{const{ctx:i}=this.layer;switch(i.save(),this.visuals.major_label_text.set_value(i),this.model.orientation){case"vertical":e=g.max(t.map(t=>i.measureText(t.toString()).width));break;case"horizontal":e=u.measure_font(this.visuals.major_label_text.font_value()).height}e+=this.model.label_standoff,i.restore()}return e}_get_image_offset(){return{x:this.model.padding,y:this.model.padding+this._title_extent()}}_normals(){return"vertical"==this.model.orientation?[1,0]:[0,1]}_title_extent(){const t=this.model.title_text_font+" "+this.model.title_text_font_size+" "+this.model.title_text_font_style;return this.model.title?u.measure_font(t).height+this.model.title_standoff:0}_tick_extent(){return g.max([this.model.major_tick_out,this.model.minor_tick_out])}_computed_image_dimensions(){const t=this.plot_view.frame.bbox.height,e=this.plot_view.frame.bbox.width,i=this._title_extent();let o,a;switch(this.model.orientation){case"vertical":"auto"==this.model.height?null!=this.panel?o=t-2*this.model.padding-i:(o=g.max([25*this.model.color_mapper.palette.length,.3*t]),o=g.min([o,.8*t-2*this.model.padding-i])):o=this.model.height,a="auto"==this.model.width?25:this.model.width;break;case"horizontal":o="auto"==this.model.height?25:this.model.height,"auto"==this.model.width?null!=this.panel?a=e-2*this.model.padding:(a=g.max([25*this.model.color_mapper.palette.length,.3*e]),a=g.min([a,.8*e-2*this.model.padding])):a=this.model.width}return{width:a,height:o}}_tick_coordinate_scale(t){const e={source_range:new m.Range1d({start:this.model.color_mapper.metrics.min,end:this.model.color_mapper.metrics.max}),target_range:new m.Range1d({start:0,end:t})},{color_mapper:i}=this.model;if(i instanceof n.LinearColorMapper)return new l.LinearScale(e);if(i instanceof n.LogColorMapper)return new h.LogScale(e);if(i instanceof n.ScanningColorMapper){const{binning:t}=i.metrics;return new _.LinearInterpolationScale(Object.assign(Object.assign({},e),{binning:t}))}b.unreachable()}_format_major_labels(t,e){const i=this.model.formatter.doFormat(t,null);for(let t=0,o=e.length;t<o;t++)e[t]in this.model.major_label_overrides&&(i[t]=this.model.major_label_overrides[e[t]]);return i}tick_info(){const t=this._computed_image_dimensions();let e;switch(this.model.orientation){case"vertical":e=t.height;break;case"horizontal":e=t.width}const i=this._tick_coordinate_scale(e),[o,a]=this._normals(),[s,r]=[this.model.color_mapper.metrics.min,this.model.color_mapper.metrics.max],n=this.model.ticker.get_ticks(s,r,null,null,this.model.ticker.desired_num_ticks),l=n.major,_=n.minor,h=[[],[]],m=[[],[]];for(let t=0,e=l.length;t<e;t++)l[t]<s||l[t]>r||(h[o].push(l[t]),h[a].push(0));for(let t=0,e=_.length;t<e;t++)_[t]<s||_[t]>r||(m[o].push(_[t]),m[a].push(0));const d={major:this._format_major_labels(h[o],l)},c={major:[[],[]],minor:[[],[]]};return c.major[o]=i.v_compute(h[o]),c.minor[o]=i.v_compute(m[o]),c.major[a]=h[a],c.minor[a]=m[a],"vertical"==this.model.orientation&&(c.major[o]=p.map(c.major[o],t=>e-t),c.minor[o]=p.map(c.minor[o],t=>e-t)),{coords:c,labels:d}}}i.ColorBarView=v,v.__name__="ColorBarView";class w extends a.Annotation{constructor(t){super(t)}static init_ColorBar(){this.prototype.default_view=v,this.mixins([["major_label_",d.Text],["title_",d.Text],["major_tick_",d.Line],["minor_tick_",d.Line],["border_",d.Line],["bar_",d.Line],["background_",d.Fill]]),this.define({location:[c.Any,"top_right"],orientation:[c.Orientation,"vertical"],title:[c.String],title_standoff:[c.Number,2],width:[c.Any,"auto"],height:[c.Any,"auto"],scale_alpha:[c.Number,1],ticker:[c.Instance,()=>new s.BasicTicker],formatter:[c.Instance,()=>new r.BasicTickFormatter],major_label_overrides:[c.Any,{}],color_mapper:[c.Instance],label_standoff:[c.Number,5],margin:[c.Number,30],padding:[c.Number,10],major_tick_in:[c.Number,5],major_tick_out:[c.Number,0],minor_tick_in:[c.Number,0],minor_tick_out:[c.Number,0]}),this.override({background_fill_color:"#ffffff",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_align:"center",major_label_text_baseline:"middle",major_label_text_font_size:"11px",major_tick_line_color:"#ffffff",minor_tick_line_color:null,title_text_font_size:"13px",title_text_font_style:"italic"})}}i.ColorBar=w,w.__name__="ColorBar",w.init_ColorBar()},n function _(e,c,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(127);class r extends i.AdaptiveTicker{constructor(e){super(e)}}s.BasicTicker=r,r.__name__="BasicTicker"},n function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const a=t(1),s=t(128),n=t(9),r=a.__importStar(t(18));class _ extends s.ContinuousTicker{constructor(t){super(t)}static init_AdaptiveTicker(){this.define({base:[r.Number,10],mantissas:[r.Array,[1,2,5]],min_interval:[r.Number,0],max_interval:[r.Number]})}initialize(){super.initialize();const t=n.nth(this.mantissas,-1)/this.base,i=n.nth(this.mantissas,0)*this.base;this.extended_mantissas=[t,…this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,e){const a=i-t,s=this.get_ideal_interval(t,i,e),r=Math.floor(function(t,i=Math.E){return Math.log(t)/Math.log(i)}(s/this.base_factor,this.base)),_=this.base**r*this.base_factor,h=this.extended_mantissas,m=h.map(t=>Math.abs(e-a/(t*_))),o=h[n.argmin(m)];return c=o*_,l=this.get_min_interval(),u=this.get_max_interval(),Math.max(l,Math.min(u,c));var c,l,u}}e.AdaptiveTicker=_,_.__name__="AdaptiveTicker",_.init_AdaptiveTicker()},n function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(1),r=t(129),s=n.__importStar(t(18)),o=t(9);class _ extends r.Ticker{constructor(t){super(t)}static init_ContinuousTicker(){this.define({num_minor_ticks:[s.Number,5],desired_num_ticks:[s.Number,6]})}get_ticks(t,i,e,n,r){return this.get_ticks_no_defaults(t,i,n,this.desired_num_ticks)}get_ticks_no_defaults(t,i,e,n){const r=this.get_interval(t,i,n),s=Math.floor(t/r),_=Math.ceil(i/r);let c;c=isFinite(s)&&isFinite(_)?o.range(s,_+1):[];const u=c.map(t=>t*r).filter(e=>t<=e&&e<=i),a=this.num_minor_ticks,l=[];if(a>0&&u.length>0){const e=r/a,n=o.range(0,a).map(t=>t*e);for(const e of n.slice(1)){const n=u[0]-e;t<=n&&n<=i&&l.push(n)}for(const e of u)for(const r of n){const n=e+r;t<=n&&n<=i&&l.push(n)}}return{major:u,minor:l}}get_min_interval(){return this.min_interval}get_max_interval(){return null!=this.max_interval?this.max_interval:1/0}get_ideal_interval(t,i,e){return(i-t)/e}}e.ContinuousTicker=_,_.__name__="ContinuousTicker",_.init_ContinuousTicker()},n function _(e,c,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Ticker=r,r.__name__="Ticker"},n function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=i(1),s=i(131),n=r.__importStar(i(18));class o extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}static init_BasicTickFormatter(){this.define({precision:[n.Any,"auto"],use_scientific:[n.Boolean,!0],power_limit_high:[n.Number,5],power_limit_low:[n.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,r=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const s of i){const i=Math.abs(s);if(!(i<=r)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){const r=new Array(i.length);if(t)for(let t=0,s=i.length;t<s;t++)r[t]=i[t].toExponential(e);else for(let t=0,s=i.length;t<s;t++)r[t]=i[t].toFixed(e).replace(/(\.[0-9]?)0+$/,"$1").replace(/\.$/,"");return r}_auto_precision(i,t){const e=new Array(i.length),r=this.last_precision<=15;i:for(let s=this.last_precision;r?s<=15:s>=1;r?s++:s–){if(t){e[0]=i[0].toExponential(s);for(let t=1;t<i.length;t++)if(e[t]==e[t-1])continue i;this.last_precision=s;break}e[0]=i[0].toFixed(s).replace(/(\.[0-9]*?)0+$/,"$1").replace(/\.$/,"");for(let t=1;t<i.length;t++)if(e[t]=i[t].toFixed(s).replace(/(\.[0-9]*?)0+$/,"$1").replace(/\.$/,""),e[t]==e[t-1])continue i;this.last_precision=s;break}return this.last_precision}doFormat(i,t){if(0==i.length)return[];const e=this._need_sci(i),r="auto"==this.precision?this._auto_precision(i,e):this.precision;return this._format_with_precision(i,e,r)}}e.BasicTickFormatter=o,o.__name__="BasicTickFormatter",o.init_BasicTickFormatter()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(81);class c extends r.Model{constructor(e){super(e)}}o.TickFormatter=c,c.__name__="TickFormatter"},n function _(r,a,o){Object.defineProperty(o,"__esModule",{value:!0});var e=r(133);o.CategoricalColorMapper=e.CategoricalColorMapper;var p=r(138);o.CategoricalMarkerMapper=p.CategoricalMarkerMapper;var l=r(139);o.CategoricalPatternMapper=l.CategoricalPatternMapper;var C=r(140);o.ContinuousColorMapper=C.ContinuousColorMapper;var M=r(135);o.ColorMapper=M.ColorMapper;var n=r(141);o.LinearColorMapper=n.LinearColorMapper;var t=r(142);o.LogColorMapper=t.LogColorMapper;var i=r(143);o.ScanningColorMapper=i.ScanningColorMapper;var c=r(144);o.EqHistColorMapper=c.EqHistColorMapper},n function _(r,t,e){Object.defineProperty(e,"__esModule",{value:!0});const o=r(1),a=r(134),c=r(135),i=o.__importStar(r(18));class s extends c.ColorMapper{constructor(r){super(r)}static init_CategoricalColorMapper(){this.define({factors:[i.Array],start:[i.Number,0],end:[i.Number]})}_v_compute(r,t,e,{nan_color:o}){a.cat_v_compute(r,this.factors,e,t,this.start,this.end,o)}}e.CategoricalColorMapper=s,s.__name__="CategoricalColorMapper",s.init_CategoricalColorMapper()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const l=e(12),i=e(8);function u(e,n){if(e.length!=n.length)return!1;for(let t=0,l=e.length;t<l;t++)if(e[t]!==n[t])return!1;return!0}t._cat_equals=u,t.cat_v_compute=function(e,n,t,c,f,o,r){for(let _=0,g=e.length;_<g;_++){let g,s,d=e[_];i.isString(d)?g=l.index_of(n,d):(null!=f?d=null!=o?d.slice(f,o):d.slice(f):null!=o&&(d=d.slice(0,o)),g=1==d.length?l.index_of(n,d[0]):l.find_index(n,e=>u(e,d))),s=g<0||g>=t.length?r:t[g],c[_]=s}}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),o=t(136),_=n.__importStar(t(18)),i=t(8),l=t(22),c=t(32);function a(t){return i.isNumber(t)?t:("#"!=t[0]&&(t=l.color2hex(t)),9!=t.length&&(t+="ff"),parseInt(t.slice(1),16))}function s(t){const e=new Uint32Array(t.length);for(let r=0,n=t.length;r<n;r++)e[r]=a(t[r]);return e}function p(t){if(c.is_little_endian){const e=new DataView(t.buffer);for(let r=0,n=t.length;r<n;r++)e.setUint32(4*r,t[r])}return new Uint8Array(t.buffer)}r._convert_color=a,r._convert_palette=s,r._uint32_to_rgba=p;class u extends o.Mapper{constructor(t){super(t)}static init_ColorMapper(){this.define({palette:[_.Any],nan_color:[_.Color,"gray"]})}v_compute(t){const e=new Array(t.length);return this._v_compute(t,e,this.palette,this._colors(t=>t)),e}get rgba_mapper(){const t=this,e=s(this.palette),r=this._colors(a);return{v_compute(n){const o=new Uint32Array(n.length);return t._v_compute(n,o,e,r),p(o)}}}_colors(t){return{nan_color:t(this.nan_color)}}}r.ColorMapper=u,u.__name__="ColorMapper",u.init_ColorMapper()},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(137);class s extends o.Transform{constructor(e){super(e)}compute(e){throw new Error("mapping single values is not supported")}}n.Mapper=s,s.__name__="Mapper"},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(81);class s extends r.Model{constructor(e){super(e)}}o.Transform=s,s.__name__="Transform"},n function _(r,e,a){Object.defineProperty(a,"__esModule",{value:!0});const t=r(1),s=r(134),i=r(136),c=t.__importStar(r(18));class n extends i.Mapper{constructor(r){super(r)}static init_CategoricalMarkerMapper(){this.define({factors:[c.Array],markers:[c.Array],start:[c.Number,0],end:[c.Number],default_value:[c.MarkerType,"circle"]})}v_compute(r){const e=new Array(r.length);return s.cat_v_compute(r,this.factors,this.markers,e,this.start,this.end,this.default_value),e}}a.CategoricalMarkerMapper=n,n.__name__="CategoricalMarkerMapper",n.init_CategoricalMarkerMapper()},n function _(t,e,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t(1),n=t(134),s=t(136),i=r.__importStar(t(18));class c extends s.Mapper{constructor(t){super(t)}static init_CategoricalPatternMapper(){this.define({factors:[i.Array],patterns:[i.Array],start:[i.Number,0],end:[i.Number],default_value:[i.HatchPatternType," "]})}v_compute(t){const e=new Array(t.length);return n.cat_v_compute(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=c,c.__name__="CategoricalPatternMapper",c.init_CategoricalPatternMapper()},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(135),s=t(90),l=t(9),i=t(8);class c extends n.ColorMapper{constructor(t){super(t),this._scan_data=null}static init_ContinuousColorMapper(){this.define(({Number:t,String:o,Null:e,Ref:n,Color:l,Or:i,Tuple:c,Array:a})=>({high:[i(t,e),null],low:[i(t,e),null],high_color:[i(l,e),null],low_color:[i(l,e),null],domain:[a(c(n(s.GlyphRenderer),i(o,a(o)))),[]]}))}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,()=>this.update_data()),this.connect(t.data_source.selected.change,()=>this.update_data())};this.connect(this.properties.domain.change,()=>t()),t()}update_data(){const{domain:t,palette:o}=this,e=[…this._collect(t)];this._scan_data=this.scan(e,o.length),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[o,e]of t)for(const t of i.isArray(e)?e:[e]){let e=o.data_source.get_column(t);e=o.view.indices.select(e);const n=o.view.masked,s=o.data_source.selected.indices;let c;if(null!=n&&s.length>0?c=l.intersection([…n],s):null!=n?c=[…n]:s.length>0&&(c=s),null!=c&&(e=l.map(c,t=>e[t])),e.length>0&&!i.isNumber(e[0]))for(const t of e)yield*t;else yield*e}}_v_compute(t,o,e,n){const{nan_color:s}=n;let{low_color:i,high_color:c}=n;null==i&&(i=e[0]),null==c&&(c=e[e.length-1]);const{domain:a}=this,r=l.is_empty(a)?t:[…this._collect(a)];this._scan_data=this.scan(r,e.length);for(let n=0,l=t.length;n<l;n++){const l=t[n];isNaN(l)?o[n]=s:o[n]=this.cmap(l,e,i,c,this._scan_data)}}_colors(t){return Object.assign(Object.assign({},super._colors(t)),{low_color:null!=this.low_color?t(this.low_color):void 0,high_color:null!=this.high_color?t(this.high_color):void 0})}}e.ContinuousColorMapper=c,c.__name__="ContinuousColorMapper",c.init_ContinuousColorMapper()},n function _(n,r,o){Object.defineProperty(o,"__esModule",{value:!0});const e=n(140),t=n(12);class a extends e.ContinuousColorMapper{constructor(n){super(n)}scan(n,r){const o=null!=this.low?this.low:t.min(n),e=null!=this.high?this.high:t.max(n);return{max:e,min:o,norm_factor:1/(e-o),normed_interval:1/r}}cmap(n,r,o,e,t){const a=r.length-1;if(n==t.max)return r[a];const i=(n-t.min)*t.norm_factor,l=Math.floor(i/t.normed_interval);return l<0?o:l>a?e:r[l]}}o.LinearColorMapper=a,a.__name__="LinearColorMapper"},n function _(o,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=o(140),r=o(12);class l extends e.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:r.min(o),e=null!=this.high?this.high:r.max(o);return{max:e,min:n,scale:t/(Math.log(e)-Math.log(n))}}cmap(o,t,n,e,r){const l=t.length-1;if(o>r.max)return e;if(o==r.max)return t[l];if(o<r.min)return n;const a=Math.log(o)-Math.log(r.min);let s=Math.floor(a*r.scale);return s>l&&(s=l),t[s]}}n.LogColorMapper=l,l.__name__="LogColorMapper"},n function _(n,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=n(140),o=n(12);class t extends i.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,r,i,t){if(n<t.binning[0])return r;if(n>t.binning[t.binning.length-1])return i;return e[o.left_edge_index(n,t.binning)]}}r.ScanningColorMapper=t,t.__name__="ScanningColorMapper"},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const i=n(1),o=n(143),r=n(12),s=n(9),a=i.__importStar(n(18)),l=n(19);class p extends o.ScanningColorMapper{constructor(n){super(n)}static init_EqHistColorMapper(){this.define({bins:[a.Int,65536]})}scan(n,t){const e=null!=this.low?this.low:r.min(n),i=null!=this.high?this.high:r.max(n),o=this.bins,a=s.linspace(e,i,o+1),p=r.bin_counts(n,a),c=new Array(o);for(let n=0,t=a.length;n<t-1;n++){const t=a[n],e=a[n+1];c[n]=(t+e)/2}const h=s.cumsum(p),u=h[h.length-1],g=r.map(h,n=>n/u);let m=t-1,_=[],M=0,f=2*t;for(;m!=t&&M<4&&0!=m;){const n=f/m;if(n>1e3)break;f=Math.round(Math.max(t*n,t));const e=s.range(0,f),i=r.map(g,n=>n*(f-1));_=r.interpolate(e,i,c);m=s.uniq(_).length-1,M++}if(0==m){_=[e,i];for(let n=0;n<t-1;n++)_.push(i)}else _=_.slice(_.length-t-1),m!=t&&l.logger.warn("EqHistColorMapper warning: Histogram equalization did not converge.");return{min:e,max:i,binning:_}}}e.EqHistColorMapper=p,p.__name__="EqHistColorMapper",p.init_EqHistColorMapper()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),i=e(146),_=r.__importStar(e(18));class a extends i.ContinuousScale{constructor(e){super(e)}static init_LinearScale(){this.internal({scan_result:[_.Any]})}compute(e){return this._linear_compute(e)}v_compute(e){return this._linear_v_compute(e)}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}n.LinearScale=a,a.__name__="LinearScale",a.init_LinearScale()},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const c=e(147);class s extends c.Scale{constructor(e){super(e)}}o.ContinuousScale=s,s.__name__="ContinuousScale"},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),_=t(148),s=t(24),i=n.__importStar(t(18));class a extends _.Transform{constructor(t){super(t)}static init_Scale(){this.internal({source_range:[i.Any],target_range:[i.Any]})}r_compute(t,e){return this.target_range.is_reversed?[this.compute(e),this.compute(t)]:[this.compute(t),this.compute(e)]}r_invert(t,e){return this.target_range.is_reversed?[this.invert(e),this.invert(t)]:[this.invert(t),this.invert(e)]}_linear_compute(t){const[e,r]=this._linear_compute_state();return e*t+r}_linear_v_compute(t){const[e,r]=this._linear_compute_state(),n=new s.NumberArray(t.length);for(let _=0;_<t.length;_++)n[_]=e*t[_]+r;return n}_linear_invert(t){const[e,r]=this._linear_compute_state();return(t-r)/e}_linear_v_invert(t){const[e,r]=this._linear_compute_state(),n=new s.NumberArray(t.length);for(let _=0;_<t.length;_++)n[_]=(t[_]-r)/e;return n}_linear_compute_state(){const t=this.source_range.start,e=this.source_range.end,r=this.target_range.start,n=(this.target_range.end-r)/(e-t);return[n,-n*t+r]}}r.Scale=a,a.__name__="Scale",a.init_Scale()},n function _(r,o,t){Object.defineProperty(t,"__esModule",{value:!0});var e=r(149);t.CustomJSTransform=e.CustomJSTransform;var a=r(150);t.Dodge=a.Dodge;var n=r(152);t.Interpolator=n.Interpolator;var p=r(153);t.Jitter=p.Jitter;var l=r(154);t.LinearInterpolator=l.LinearInterpolator;var v=r(155);t.StepInterpolator=v.StepInterpolator;var s=r(137);t.Transform=s.Transform},n function _(t,r,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),e=t(137),a=n.__importStar(t(18)),o=t(13),u=t(29);class i extends e.Transform{constructor(t){super(t)}static init_CustomJSTransform(){this.define({args:[a.Any,{}],func:[a.String,""],v_func:[a.String,""]})}get names(){return o.keys(this.args)}get values(){return o.values(this.args)}_make_transform(t,r){return new Function(…this.names,t,u.use_strict(r))}get scalar_transform(){return this._make_transform("x",this.func)}get vector_transform(){return this._make_transform("xs",this.v_func)}compute(t){return this.scalar_transform(…this.values,t)}v_compute(t){return this.vector_transform(…this.values,t)}}s.CustomJSTransform=i,i.__name__="CustomJSTransform",i.init_CustomJSTransform()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(1),r=e(151),_=o.__importStar(e(18));class i extends r.RangeTransform{constructor(e){super(e)}static init_Dodge(){this.define({value:[_.Number,0]})}_compute(e){return e+this.value}}n.Dodge=i,i.__name__="Dodge",i.init_Dodge()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),s=e(137),a=e(98),i=r.__importStar(e(18)),o=e(24),c=e(8);class u extends s.Transform{constructor(e){super(e)}static init_RangeTransform(){this.define({range:[i.Instance]})}v_compute(e){let t;if(this.range instanceof a.FactorRange)t=this.range.v_synthetic(e);else{if(!c.isArrayableOf(e,c.isNumber))throw new Error("unexpected");t=e}const n=new o.NumberArray(t.length);for(let e=0;e<t.length;e++){const r=t[e];n[e]=this._compute(r)}return n}compute(e){if(this.range instanceof a.FactorRange)return this._compute(this.range.synthetic(e));if(c.isNumber(e))return this._compute(e);throw new Error("unexpected")}}n.RangeTransform=u,u.__name__="RangeTransform",u.init_RangeTransform()},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),o=t(137),s=n.__importStar(t(18)),i=t(24),a=t(9),h=t(8);class d extends o.Transform{constructor(t){super(t),this._sorted_dirty=!0}static init_Interpolator(){this.define({x:[s.Any],y:[s.Any],data:[s.Any],clip:[s.Boolean,!0]})}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._sorted_dirty=!0)}v_compute(t){const e=new i.NumberArray(t.length);for(let r=0;r<t.length;r++){const n=t[r];e[r]=this.compute(n)}return e}sort(t=!1){if(!this._sorted_dirty)return;let e,r;if(h.isString(this.x)&&h.isString(this.y)&&null!=this.data){const t=this.data.columns();if(!a.includes(t,this.x))throw new Error("The x parameter does not correspond to a valid column name defined in the data parameter");if(!a.includes(t,this.y))throw new Error("The y parameter does not correspond to a valid column name defined in the data parameter");e=this.data.get_column(this.x),r=this.data.get_column(this.y)}else{if(!h.isArray(this.x)||!h.isArray(this.y))throw new Error("parameters ‘x’ and ‘y’ must be both either string fields or arrays");e=this.x,r=this.y}if(e.length!==r.length)throw new Error("The length for x and y do not match");if(e.length<2)throw new Error("x and y must have at least two elements to support interpolation");const n=e.length,o=new Uint32Array(n);for(let t=0;t<n;t++)o[t]=t;const s=t?-1:1;o.sort((t,r)=>s*(e[t]-e[r])),this._x_sorted=new i.NumberArray(n),this._y_sorted=new i.NumberArray(n);for(let t=0;t<n;t++)this._x_sorted[t]=e[o[t]],this._y_sorted[t]=r[o[t]];this._sorted_dirty=!1}}r.Interpolator=d,d.__name__="Interpolator",d.init_Interpolator()},n function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),s=t(151),n=r.__importStar(t(18)),u=r.__importStar(t(10));class o extends s.RangeTransform{constructor(t){super(t)}static init_Jitter(){this.define({mean:[n.Number,0],width:[n.Number,1],distribution:[n.Distribution,"uniform"]})}v_compute(t){return null!=this.previous_values&&this.previous_values.length==t.length||(this.previous_values=super.v_compute(t)),this.previous_values}_compute(t){switch(this.distribution){case"uniform":return t+this.mean+(u.random()-.5)*this.width;case"normal":return t+u.rnorm(this.mean,this.width)}}}e.Jitter=o,o.__name__="Jitter",o.init_Jitter()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const _=t(9),r=t(152);class o extends r.Interpolator{constructor(t){super(t)}compute(t){if(this.sort(!1),this.clip){if(t<this._x_sorted[0]||t>this._x_sorted[this._x_sorted.length-1])return NaN}else{if(t<this._x_sorted[0])return this._y_sorted[0];if(t>this._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=_.find_last_index(this._x_sorted,s=>s<t),e=this._x_sorted[s],r=this._x_sorted[s+1],o=this._y_sorted[s],i=this._y_sorted[s+1];return o+(t-e)/(r-e)*(i-o)}}e.LinearInterpolator=o,o.__name__="LinearInterpolator"},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const s=t(1),o=t(152),_=s.__importStar(t(18)),i=t(9);class n extends o.Interpolator{constructor(t){super(t)}static init_StepInterpolator(){this.define({mode:[_.StepMode,"after"]})}compute(t){if(this.sort(!1),this.clip){if(t<this._x_sorted[0]||t>this._x_sorted[this._x_sorted.length-1])return NaN}else{if(t<this._x_sorted[0])return this._y_sorted[0];if(t>this._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case"after":e=i.find_last_index(this._x_sorted,e=>t>=e);break;case"before":e=i.find_index(this._x_sorted,e=>t<=e);break;case"center":{const r=this._x_sorted.map(e=>Math.abs(e-t)),s=i.min(r);e=i.find_index(r,t=>s===t);break}default:throw new Error("unknown mode: "+this.mode)}return-1!=e?this._y_sorted[e]:NaN}}r.StepInterpolator=n,n.__name__="StepInterpolator",n.init_StepInterpolator()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),a=e(147),i=e(24),s=e(9),o=e(12),c=r.__importStar(e(18));class _ extends a.Scale{constructor(e){super(e)}static init_LinearInterpolationScale(){this.internal({binning:[c.Array]})}compute(e){return e}v_compute(e){const t=o.norm(e,this.source_range.start,this.source_range.end),n=s.linspace(0,1,this.binning.length),r=o.interpolate(t,n,this.binning),a=o.norm(r,this.source_range.start,this.source_range.end),c=this.target_range.end-this.target_range.start,_=o.map(a,e=>this.target_range.start+e*c);return new i.NumberArray(_)}invert(e){return e}v_invert(e){return new i.NumberArray(e)}}n.LinearInterpolationScale=_,_.__name__="LinearInterpolationScale",_.init_LinearInterpolationScale()},n function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const a=t(146),r=t(24);class s extends a.ContinuousScale{constructor(t){super(t)}compute(t){const[e,o,a,r]=this._compute_state();let s;if(0==a)s=0;else{const n=(Math.log(t)-r)/a;s=isFinite(n)?n*e+o:NaN}return s}v_compute(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);if(0==a)for(let e=0;e<t.length;e++)n[e]=0;else for(let r=0;r<t.length;r++){const l=(Math.log(t[r])-s)/a;let c;c=isFinite(l)?l*e+o:NaN,n[r]=c}return n}invert(t){const[e,o,a,r]=this._compute_state(),s=(t-o)/e;return Math.exp(a*s+r)}v_invert(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);for(let r=0;r<t.length;r++){const l=(t[r]-o)/e;n[r]=Math.exp(a*l+s)}return n}_get_safe_factor(t,e){let o=t<0?0:t,a=e<0?0:e;if(o==a)if(0==o)[o,a]=[1,10];else{const t=Math.log(o)/Math.log(10);o=10**Math.floor(t),a=Math.ceil(t)!=Math.floor(t)?10**Math.ceil(t):10**(Math.ceil(t)+1)}return[o,a]}_compute_state(){const t=this.source_range.start,e=this.source_range.end,o=this.target_range.start,a=this.target_range.end-o,[r,s]=this._get_safe_factor(t,e);let n,l;0==r?(n=Math.log(s),l=0):(n=Math.log(s)-Math.log(r),l=Math.log(r));return[a,o,n,l]}}o.LogScale=s,s.__name__="LogScale"},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),n=t(99),r=i.__importStar(t(18));class a extends n.Range{constructor(t){super(t)}static init_Range1d(){this.define({start:[r.Number,0],end:[r.Number,1],reset_start:[r.Number],reset_end:[r.Number]})}_set_auto_bounds(){if("auto"==this.bounds){const t=Math.min(this.reset_start,this.reset_end),e=Math.max(this.reset_start,this.reset_end);this.setv({bounds:[t,e]},{silent:!0})}}initialize(){super.initialize(),null==this.reset_start&&(this.reset_start=this.start),null==this.reset_end&&(this.reset_end=this.end),this._set_auto_bounds()}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}reset(){this._set_auto_bounds(),this.start!=this.reset_start||this.end!=this.reset_end?this.setv({start:this.reset_start,end:this.reset_end}):this.change.emit()}}s.Range1d=a,a.__name__="Range1d",a.init_Range1d()},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=t(72),i=new Map;n.measure_font=function(t){const e=i.get(t);if(null!=e)return e;const n=o.span({style:{font:t}},"Hg"),l=o.div({style:{display:"inline-block",width:"1px",height:"0px"}}),s=o.div({},n,l);document.body.appendChild(s);try{l.style.verticalAlign="baseline";const e=o.offset(l).top-o.offset(n).top;l.style.verticalAlign="bottom";const d=o.offset(l).top-o.offset(n).top,c={height:d,ascent:e,descent:d-e};return i.set(t,c),c}finally{document.body.removeChild(s)}};const l=new Map;n.measure_text=function(t,e){let n=l.get(e);if(null!=n){const e=n.get(t);if(null!=e)return e}else n=new Map,l.set(e,n);const i=o.div({style:{display:"inline-block","white-space":"nowrap",font:e}},t);document.body.appendChild(i);try{const{width:e,height:o}=i.getBoundingClientRect();return n.set(t,{width:e,height:o}),{width:e,height:o}}finally{document.body.removeChild(i)}}},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(161),l=s.__importStar(t(28)),n=s.__importStar(t(18));class o extends a.TextAnnotationView{initialize(){super.initialize(),this.visuals.warm_cache()}_get_size(){const{ctx:t}=this.layer;this.visuals.text.set_value(t);const{width:e,ascent:i}=t.measureText(this.model.text);return{width:e,height:i}}_render(){let t;switch(this.model.angle_units){case"rad":t=-this.model.angle;break;case"deg":t=-this.model.angle*Math.PI/180}const e=null!=this.panel?this.panel:this.plot_view.frame,i=this.coordinates.x_scale,s=this.coordinates.y_scale;let a="data"==this.model.x_units?i.compute(this.model.x):e.xview.compute(this.model.x),l="data"==this.model.y_units?s.compute(this.model.y):e.yview.compute(this.model.y);a+=this.model.x_offset,l-=this.model.y_offset;("canvas"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,this.model.text,a,l,t)}}i.LabelView=o,o.__name__="LabelView";class _ extends a.TextAnnotation{constructor(t){super(t)}static init_Label(){this.prototype.default_view=o,this.mixins([l.Text,["border_",l.Line],["background_",l.Fill]]),this.define({x:[n.Number],x_units:[n.SpatialUnits,"data"],y:[n.Number],y_units:[n.SpatialUnits,"data"],text:[n.String],angle:[n.Angle,0],angle_units:[n.AngleUnits,"rad"],x_offset:[n.Number,0],y_offset:[n.Number,0]}),this.override({background_fill_color:null,border_line_color:null})}}i.Label=_,_.__name__="Label",_.init_Label()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),l=e(36),a=e(72),n=i.__importStar(e(18)),o=e(159),r=e(11);class _ extends l.AnnotationView{constructor(){super(…arguments),this.rotate=!0}initialize(){super.initialize(),"css"==this.model.render_mode&&(this.el=a.div(),this.plot_view.canvas_view.add_overlay(this.el))}remove(){null!=this.el&&a.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),"css"==this.model.render_mode?this.connect(this.model.change,()=>this.render()):this.connect(this.model.change,()=>this.plot_view.request_render())}render(){this.model.visible||"css"!=this.model.render_mode||a.undisplay(this.el),super.render()}_calculate_text_dimensions(e,t){const{width:s}=e.measureText(t),{height:i}=o.measure_font(this.visuals.text.font_value());return[s,i]}_calculate_bounding_box_dimensions(e,t){const[s,i]=this._calculate_text_dimensions(e,t);let l,a;switch(e.textAlign){case"left":l=0;break;case"center":l=-s/2;break;case"right":l=-s;break;default:r.unreachable()}switch(e.textBaseline){case"top":a=0;break;case"middle":a=-.5*i;break;case"bottom":a=-1*i;break;case"alphabetic":a=-.8*i;break;case"hanging":a=-.17*i;break;case"ideographic":a=-.83*i;break;default:r.unreachable()}return[l,a,s,i]}_canvas_text(e,t,s,i,l){this.visuals.text.set_value(e);const a=this._calculate_bounding_box_dimensions(e,t);e.save(),e.beginPath(),e.translate(s,i),l&&e.rotate(l),e.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),e.stroke()),this.visuals.text.doit&&(this.visuals.text.set_value(e),e.fillText(t,0,0)),e.restore()}_css_text(e,t,s,i,l){const{el:n}=this;r.assert(null!=n),a.undisplay(n),this.visuals.text.set_value(e);const o=this._calculate_bounding_box_dimensions(e,t),_=this.visuals.border_line.line_dash.value().length<2?"solid":"dashed";this.visuals.border_line.set_value(e),this.visuals.background_fill.set_value(e),n.style.position="absolute",n.style.left=s+o[0]+"px",n.style.top=i+o[1]+"px",n.style.color=""+this.visuals.text.text_color.value(),n.style.opacity=""+this.visuals.text.text_alpha.value(),n.style.font=""+this.visuals.text.font_value(),n.style.lineHeight="normal",l&&(n.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(n.style.backgroundColor=""+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(n.style.borderStyle=""+_,n.style.borderWidth=this.visuals.border_line.line_width.value()+"px",n.style.borderColor=""+this.visuals.border_line.color_value()),n.textContent=t,a.display(n)}}s.TextAnnotationView=_,_.__name__="TextAnnotationView";class u extends l.Annotation{constructor(e){super(e)}static init_TextAnnotation(){this.define({render_mode:[n.RenderMode,"canvas"]})}}s.TextAnnotation=u,u.__name__="TextAnnotation",u.init_TextAnnotation()},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),o=t(161),l=t(85),a=i.__importStar(t(28)),n=t(72),r=i.__importStar(t(18));class _ extends o.TextAnnotationView{initialize(){if(super.initialize(),this.set_data(this.model.source),"css"==this.model.render_mode)for(let t=0,e=this._text.length;t<e;t++){const t=n.div({style:{display:"none"}});this.el.appendChild(t)}}connect_signals(){super.connect_signals(),"css"==this.model.render_mode?(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.render()})):(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}))}set_data(t){super.set_data(t),this.visuals.warm_cache(t)}_map_data(){const t=this.coordinates.x_scale,e=this.coordinates.y_scale,s=null!=this.panel?this.panel:this.plot_view.frame;return["data"==this.model.x_units?t.v_compute(this._x):s.xview.v_compute(this._x),"data"==this.model.y_units?e.v_compute(this._y):s.yview.v_compute(this._y)]}_render(){const t="canvas"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer,[s,i]=this._map_data();for(let o=0,l=this._text.length;o<l;o++)t(e,o,this._text[o],s[o]+this._x_offset[o],i[o]-this._y_offset[o],this._angle[o])}_get_size(){const{ctx:t}=this.layer;this.visuals.text.set_value(t);const{width:e,ascent:s}=t.measureText(this._text[0]);return{width:e,height:s}}_v_canvas_text(t,e,s,i,o,l){this.visuals.text.set_vectorize(t,e);const a=this._calculate_bounding_box_dimensions(t,s);t.save(),t.beginPath(),t.translate(i,o),t.rotate(l),t.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_vectorize(t,e),t.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_vectorize(t,e),t.stroke()),this.visuals.text.doit&&(this.visuals.text.set_vectorize(t,e),t.fillText(s,0,0)),t.restore()}_v_css_text(t,e,s,i,o,l){const a=this.el.children[e];a.textContent=s,this.visuals.text.set_vectorize(t,e);const r=this._calculate_bounding_box_dimensions(t,s),_=this.visuals.border_line.line_dash.value().length<2?"solid":"dashed";this.visuals.border_line.set_vectorize(t,e),this.visuals.background_fill.set_vectorize(t,e),a.style.position="absolute",a.style.left=i+r[0]+"px",a.style.top=o+r[1]+"px",a.style.color=""+this.visuals.text.text_color.value(),a.style.opacity=""+this.visuals.text.text_alpha.value(),a.style.font=""+this.visuals.text.font_value(),a.style.lineHeight="normal",l&&(a.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(a.style.backgroundColor=""+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(a.style.borderStyle=""+_,a.style.borderWidth=this.visuals.border_line.line_width.value()+"px",a.style.borderColor=""+this.visuals.border_line.color_value()),n.display(a)}}s.LabelSetView=_,_.__name__="LabelSetView";class h extends o.TextAnnotation{constructor(t){super(t)}static init_LabelSet(){this.prototype.default_view=_,this.mixins([a.TextVector,["border_",a.LineVector],["background_",a.FillVector]]),this.define({x:[r.NumberSpec],y:[r.NumberSpec],x_units:[r.SpatialUnits,"data"],y_units:[r.SpatialUnits,"data"],text:[r.StringSpec,{field:"text"}],angle:[r.AngleSpec,0],x_offset:[r.NumberSpec,{value:0}],y_offset:[r.NumberSpec,{value:0}],source:[r.Instance,()=>new l.ColumnDataSource]}),this.override({background_fill_color:null,border_line_color:null})}}s.LabelSet=h,h.__name__="LabelSet",h.init_LabelSet()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=t(36),n=s.__importStar(t(28)),h=s.__importStar(t(18)),a=t(15),_=t(159),o=t(79),r=t(9),d=t(8),c=t(11);class g extends l.AnnotationView{cursor(t,e){return"none"==this.model.click_policy?null:"pointer"}get legend_padding(){return null!=this.visuals.border_line.line_color.value()?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.item_change,()=>this.plot_view.request_render())}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:s,label_width:l}=this.model;this.max_label_height=r.max([_.measure_font(this.visuals.label_text.font_value()).height,s,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,r.max([n.measureText(e).width,l]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?_.measure_font(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const h=Math.max(r.max([…this.text_widths.values()]),0),a=this.model.margin,{legend_padding:g}=this,m=this.model.spacing,{label_standoff:b}=this.model;let u,f;if("vertical"==this.model.orientation)u=t.length*this.max_label_height+Math.max(t.length-1,0)*m+2*g+this.title_height,f=r.max([h+i+b+2*g,this.title_width+2*g]);else{let e=2*g+Math.max(t.length-1,0)*m;for(const[,t]of this.text_widths)e+=r.max([t,l])+i+b;f=r.max([this.title_width+2*g,e]),u=this.max_label_height+this.title_height+2*g}const x=null!=this.panel?this.panel:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if(d.isString(v))switch(v){case"top_left":y=p.start+a,k=w.start+a;break;case"top_center":y=(p.end+p.start)/2-f/2,k=w.start+a;break;case"top_right":y=p.end-a-f,k=w.start+a;break;case"bottom_right":y=p.end-a-f,k=w.end-a-u;break;case"bottom_center":y=(p.end+p.start)/2-f/2,k=w.end-a-u;break;case"bottom_left":y=p.start+a,k=w.end-a-u;break;case"center_left":y=p.start+a,k=(w.end+w.start)/2-u/2;break;case"center":y=(p.end+p.start)/2-f/2,k=(w.end+w.start)/2-u/2;break;case"center_right":y=p.end-a-f,k=(w.end+w.start)/2-u/2}else if(d.isArray(v)&&2==v.length){const[t,e]=v;y=x.xview.compute(t),k=x.yview.compute(e)-u}else c.unreachable();return new o.BBox({left:y,top:k,width:f,height:u})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=i=l;const _=this.compute_legend_bbox(),r="vertical"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop();for(const g of c){const c=_.x+a,m=_.y+i+this.title_height;let b,u;[b,u]=r?[_.width-2*l,this.max_label_height]:[this.text_widths.get(g)+s+h,this.max_label_height];if(new o.BBox({left:c,top:m,width:b,height:u}).contains(t,e)){switch(this.model.click_policy){case"hide":for(const t of d.renderers)t.visible=!t.visible;break;case"mute":for(const t of d.renderers)t.muted=!t.muted}return!0}r?i+=this.max_label_height+n:a+=this.text_widths.get(g)+s+h+n}}return!1}_render(){if(0==this.model.items.length)return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this.model.title&&this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.set_value(t),t.fill(),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.stroke())}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=l,_=l;const o="vertical"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop(),g=d.get_field_from_label_prop();if(0==c.length)continue;const m=(()=>{switch(this.model.click_policy){case"none":return!0;case"hide":return r.every(d.renderers,t=>t.visible);case"mute":return r.every(d.renderers,t=>!t.muted)}})();for(const r of c){const c=e.x+a,b=e.y+_+this.title_height,u=c+i,f=b+s;o?_+=this.max_label_height+n:a+=this.text_widths.get(r)+i+h+n,this.visuals.label_text.set_value(t),t.fillText(r,u+h,b+this.max_label_height/2);for(const e of d.renderers){this.plot_view.renderer_views.get(e).draw_legend(t,c,u,b,f,g,r,d.index)}if(!m){let s,n;[s,n]=o?[e.width-2*l,this.max_label_height]:[this.text_widths.get(r)+i+h,this.max_label_height],t.beginPath(),t.rect(c,b,s,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(this.model.title,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=g,g.__name__="LegendView";class m extends l.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new a.Signal0(this,"item_change")}static init_Legend(){this.prototype.default_view=g,this.mixins([["label_",n.Text],["title_",n.Text],["inactive_",n.Fill],["border_",n.Line],["background_",n.Fill]]),this.define({orientation:[h.Orientation,"vertical"],location:[h.Any,"top_right"],title:[h.String],title_standoff:[h.Number,5],label_standoff:[h.Number,5],glyph_height:[h.Number,20],glyph_width:[h.Number,20],label_height:[h.Number,20],label_width:[h.Number,20],margin:[h.Number,10],padding:[h.Number,10],spacing:[h.Number,3],items:[h.Array,[]],click_policy:[h.Any,"none"]}),this.override({border_line_color:"#e5e5e5",border_line_alpha:.5,border_line_width:1,background_fill_color:"#ffffff",background_fill_alpha:.95,inactive_fill_color:"white",inactive_fill_alpha:.7,label_text_font_size:"13px",label_text_baseline:"middle",title_text_font_size:"13px",title_text_font_style:"italic"})}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(…i)}return t}}i.Legend=m,m.__name__="Legend",m.init_Legend()},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),l=e(81),i=e(86),s=e(165),o=t.__importStar(e(18)),_=e(19),a=e(9);class u extends l.Model{constructor(e){super(e)}static init_LegendItem(){this.define({label:[o.StringSpec,null],renderers:[o.Array,[]],index:[o.Number,null]})}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!a.includes(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()});this._check_data_sources_on_renderers()||_.logger.error("Non matching data sources on legend item renderers");this._check_field_label_on_data_source()||_.logger.error("Bad column name on label: "+this.label)}get_field_from_label_prop(){const{label:e}=this;return s.isField(e)?e.field:null}get_labels_list_from_label_prop(){if(s.isValue(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return["No source found"];if(r=this.renderers[0].data_source,r instanceof i.ColumnarDataSource){const n=r.get_column(e);return null!=n?a.uniq(Array.from(n)):["Invalid field"]}}return[]}}n.LegendItem=u,u.__name__="LegendItem",u.init_LegendItem()},n function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(8);n.isValue=function(e){return t.isPlainObject(e)&&"value"in e},n.isField=function(e){return t.isPlainObject(e)&&"field"in e}},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(36),o=n.__importStar(t(28)),l=t(15),a=n.__importStar(t(18));class r extends s.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.data_update,()=>this.plot_view.request_render())}_render(){const{xs:t,ys:e}=this.model;if(t.length!=e.length)return;if(t.length<3||e.length<3)return;const{frame:i}=this.plot_view,{ctx:n}=this.layer;for(let s=0,o=t.length;s<o;s++){let o,l;if("screen"!=this.model.xs_units)throw new Error("not implemented");if(o=this.model.screen?t[s]:i.xview.compute(t[s]),"screen"!=this.model.ys_units)throw new Error("not implemented");l=this.model.screen?e[s]:i.yview.compute(e[s]),0==s?(n.beginPath(),n.moveTo(o,l)):n.lineTo(o,l)}n.closePath(),this.visuals.line.doit&&(this.visuals.line.set_value(n),n.stroke()),this.visuals.fill.doit&&(this.visuals.fill.set_value(n),n.fill())}}i.PolyAnnotationView=r,r.__name__="PolyAnnotationView";class _ extends s.Annotation{constructor(t){super(t)}static init_PolyAnnotation(){this.prototype.default_view=r,this.mixins([o.Line,o.Fill]),this.define({xs:[a.Array,[]],xs_units:[a.SpatialUnits,"data"],ys:[a.Array,[]],ys_units:[a.SpatialUnits,"data"]}),this.internal({screen:[a.Boolean,!1]}),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}initialize(){super.initialize(),this.data_update=new l.Signal0(this,"data_update")}update({xs:t,ys:e}){this.setv({xs:t,ys:e,screen:!0},{silent:!0}),this.data_update.emit()}}i.PolyAnnotation=_,_.__name__="PolyAnnotation",_.init_PolyAnnotation()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),l=n.__importStar(e(18));class r extends o.AnnotationView{initialize(){super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render())}_render(){const e=this.model.gradient,t=this.model.y_intercept;if(null==e||null==t)return;const{frame:i}=this.plot_view,n=this.coordinates.x_scale,o=this.coordinates.y_scale,s=i.bbox.top,l=s+i.bbox.height,r=(o.invert(s)-t)/e,_=(o.invert(l)-t)/e,a=n.compute(r),c=n.compute(_),{ctx:p}=this.layer;p.save(),p.beginPath(),this.visuals.line.set_value(p),p.moveTo(a,s),p.lineTo(c,l),p.stroke(),p.restore()}}i.SlopeView=r,r.__name__="SlopeView";class _ extends o.Annotation{constructor(e){super(e)}static init_Slope(){this.prototype.default_view=r,this.mixins(s.Line),this.define({gradient:[l.Number,null],y_intercept:[l.Number,null]}),this.override({line_color:"black"})}}i.Slope=_,_.__name__="Slope",_.init_Slope()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),a=n.__importStar(e(18));class l extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,n=this.coordinates.y_scale,o=(t,i)=>"data"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,a,l,r;"width"==this.model.dimension?(l=o(n,t.yview),a=t.bbox.left,r=t.bbox.width,s=this.model.properties.line_width.value()):(l=t.bbox.top,a=o(i,t.xview),r=this.model.properties.line_width.value(),s=t.bbox.height);const{ctx:_}=this.layer;_.save(),_.beginPath(),this.visuals.line.set_value(_),_.moveTo(a,l),"width"==this.model.dimension?_.lineTo(a+r,l):_.lineTo(a,l+s),_.stroke(),_.restore()}}i.SpanView=l,l.__name__="SpanView";class r extends o.Annotation{constructor(e){super(e)}static init_Span(){this.prototype.default_view=l,this.mixins(s.Line),this.define({render_mode:[a.RenderMode,"canvas"],location:[a.Number,null],location_units:[a.SpatialUnits,"data"],dimension:[a.Dimension,"width"]}),this.override({line_color:"black"}),this.internal({for_hover:[a.Boolean,!1]})}}i.Span=r,r.__name__="Span",r.init_Span()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const l=t(1),s=t(161),a=t(74),n=l.__importStar(t(28)),o=l.__importStar(t(18));class r extends s.TextAnnotationView{initialize(){super.initialize(),this.visuals.text=new a.Text(this.model)}_get_location(){const t=this.panel,e=this.model.offset;let i,l;const{bbox:s}=t;switch(t.side){case"above":case"below":switch(this.model.vertical_align){case"top":l=s.top+5;break;case"middle":l=s.vcenter;break;case"bottom":l=s.bottom-5}switch(this.model.align){case"left":i=s.left+e;break;case"center":i=s.hcenter;break;case"right":i=s.right-e}break;case"left":switch(this.model.vertical_align){case"top":i=s.left-5;break;case"middle":i=s.hcenter;break;case"bottom":i=s.right+5}switch(this.model.align){case"left":l=s.bottom-e;break;case"center":l=s.vcenter;break;case"right":l=s.top+e}break;case"right":switch(this.model.vertical_align){case"top":i=s.right-5;break;case"middle":i=s.hcenter;break;case"bottom":i=s.left+5}switch(this.model.align){case"left":l=s.top+e;break;case"center":l=s.vcenter;break;case"right":l=s.bottom-e}}return[i,l]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),l=this.panel.get_label_angle_heuristic("parallel");("canvas"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,l)}_get_size(){const{text:t}=this.model;if(null==t||0==t.length)return{width:0,height:0};{this.visuals.text.set_value(this.layer.ctx);const{width:e,ascent:i}=this.layer.ctx.measureText(t);return{width:e,height:i*this.visuals.text.text_line_height.value()+10}}}}i.TitleView=r,r.__name__="TitleView";class c extends s.TextAnnotation{constructor(t){super(t)}static init_Title(){this.prototype.default_view=r,this.mixins([["border_",n.Line],["background_",n.Fill]]),this.define({text:[o.String],text_font:[o.Font,"helvetica"],text_font_size:[o.StringSpec,"13px"],text_font_style:[o.FontStyle,"bold"],text_color:[o.ColorSpec,"#444444"],text_alpha:[o.NumberSpec,1],text_line_height:[o.Number,1],vertical_align:[o.VerticalAlign,"bottom"],align:[o.TextAlign,"left"],offset:[o.Number,0]}),this.override({background_fill_color:null,border_line_color:null}),this.internal({text_align:[o.TextAlign,"left"],text_baseline:[o.TextBaseline,"bottom"]})}}i.Title=c,c.__name__="Title",c.init_Title()},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),l=e(36),s=e(115),a=e(72),n=e(79),r=o.__importStar(e(18));class _ extends l.AnnotationView{constructor(){super(…arguments),this.rotate=!0,this._invalidate_toolbar=!0,this._previous_bbox=new n.BBox}initialize(){super.initialize(),this.el=a.div(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){this._toolbar_view=await s.build_view(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push(e=>this._toolbar_view.set_visibility(e))}remove(){this._toolbar_view.remove(),a.remove(this.el),super.remove()}render(){this.model.visible||a.undisplay(this.el),super.render()}_render(){const{bbox:e}=this.panel;this._previous_bbox.equals(e)||(a.position(this.el,e),this._previous_bbox=e),this._invalidate_toolbar&&(this.el.style.position="absolute",this.el.style.overflow="hidden",this._toolbar_view.render(),a.empty(this.el),this.el.appendChild(this._toolbar_view.el),this._invalidate_toolbar=!1),a.display(this.el)}_get_size(){const{tools:e,logo:i}=this.model.toolbar;return{width:30*e.length+(null!=i?25:0),height:30}}}t.ToolbarPanelView=_,_.__name__="ToolbarPanelView";class h extends l.Annotation{constructor(e){super(e)}static init_ToolbarPanel(){this.prototype.default_view=_,this.define({toolbar:[r.Instance]})}}t.ToolbarPanel=h,h.__name__="ToolbarPanel",h.init_ToolbarPanel()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=t(36),o=t(72),n=s.__importStar(t(18)),a=t(172),h=t(173),r=s.__importDefault(t(174));class c extends l.AnnotationView{initialize(){super.initialize(),this.el=o.div({class:a.bk_tooltip}),o.undisplay(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){o.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,()=>this.render()),this.connect(this.model.properties.position.change,()=>this._reposition())}styles(){return[…super.styles(),r.default]}render(){this.model.visible||o.undisplay(this.el),super.render()}_render(){const{content:t}=this.model;null!=t?(o.empty(this.el),o.classes(this.el).toggle(a.bk_tooltip_custom,this.model.custom),this.el.appendChild(t),this.model.show_arrow&&this.el.classList.add(a.bk_tooltip_arrow)):o.undisplay(this.el)}_reposition(){const{position:t}=this.model;if(null==t)return void o.undisplay(this.el);const[e,i]=t,s=(()=>{const t=this.parent.layout.bbox.relativize(),{attachment:s}=this.model;switch(s){case"horizontal":return e<t.hcenter?"right":"left";case"vertical":return i<t.vcenter?"below":"above";default:return s}})();let l;this.el.classList.remove(h.bk_right),this.el.classList.remove(h.bk_left),this.el.classList.remove(h.bk_above),this.el.classList.remove(h.bk_below),o.display(this.el);let n=null,a=null;switch(s){case"right":this.el.classList.add(h.bk_left),n=e+(this.el.offsetWidth-this.el.clientWidth)+10,l=i-this.el.offsetHeight/2;break;case"left":this.el.classList.add(h.bk_right),a=this.plot_view.layout.bbox.width-e+10,l=i-this.el.offsetHeight/2;break;case"below":this.el.classList.add(h.bk_above),l=i+(this.el.offsetHeight-this.el.clientHeight)+10,n=Math.round(e-this.el.offsetWidth/2);break;case"above":this.el.classList.add(h.bk_below),l=i-this.el.offsetHeight-10,n=Math.round(e-this.el.offsetWidth/2)}this.el.style.top=l+"px",this.el.style.left=null!=n?n+"px":"auto",this.el.style.right=null!=a?a+"px":"auto"}}i.TooltipView=c,c.__name__="TooltipView";class d extends l.Annotation{constructor(t){super(t)}static init_Tooltip(){this.prototype.default_view=c,this.define({attachment:[n.TooltipAttachment,"horizontal"],inner_only:[n.Boolean,!0],show_arrow:[n.Boolean,!0]}),this.override({level:"overlay"}),this.internal({position:[n.Any,null],content:[n.Any,()=>o.div()],custom:[n.Any]})}clear(){this.position=null}}i.Tooltip=d,d.__name__="Tooltip",d.init_Tooltip()},n function _(o,t,l){Object.defineProperty(l,"__esModule",{value:!0}),l.bk_tooltip="bk-tooltip",l.bk_tooltip_arrow="bk-tooltip-arrow",l.bk_tooltip_custom="bk-tooltip-custom",l.bk_tooltip_row_label="bk-tooltip-row-label",l.bk_tooltip_row_value="bk-tooltip-row-value",l.bk_tooltip_color_block="bk-tooltip-color-block"},n function _(e,b,k){Object.defineProperty(k,"__esModule",{value:!0}),k.bk_active="bk-active",k.bk_inline="bk-inline",k.bk_left="bk-left",k.bk_right="bk-right",k.bk_above="bk-above",k.bk_below="bk-below",k.bk_up="bk-up",k.bk_down="bk-down",k.bk_side=function(e){switch(e){case"above":return k.bk_above;case"below":return k.bk_below;case"left":return k.bk_left;case"right":return k.bk_right}}},n function _(o,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root {\n /* Same border color used everywhere /\n / Gray of icons /\n}\n.bk-root .bk-tooltip {\n font-weight: 300;\n font-size: 12px;\n position: absolute;\n padding: 5px;\n border: 1px solid #e5e5e5;\n color: #2f2f2f;\n background-color: white;\n pointer-events: none;\n opacity: 0.95;\n z-index: 100;\n}\n.bk-root .bk-tooltip > div:not(:first-child) {\n / gives space when multiple elements are being hovered over /\n margin-top: 5px;\n border-top: #e5e5e5 1px dashed;\n}\n.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before {\n position: absolute;\n margin: -7px 0 0 0;\n top: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 7px 0 7px 0;\n border-color: transparent;\n content: " ";\n display: block;\n left: -10px;\n border-right-width: 10px;\n border-right-color: #909599;\n}\n.bk-root .bk-tooltip.bk-left::before {\n left: -10px;\n border-right-width: 10px;\n border-right-color: #909599;\n}\n.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after {\n position: absolute;\n margin: -7px 0 0 0;\n top: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 7px 0 7px 0;\n border-color: transparent;\n content: " ";\n display: block;\n right: -10px;\n border-left-width: 10px;\n border-left-color: #909599;\n}\n.bk-root .bk-tooltip.bk-right::after {\n right: -10px;\n border-left-width: 10px;\n border-left-color: #909599;\n}\n.bk-root .bk-tooltip.bk-above::before {\n position: absolute;\n margin: 0 0 0 -7px;\n left: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 7px 0 7px;\n border-color: transparent;\n content: " ";\n display: block;\n top: -10px;\n border-bottom-width: 10px;\n border-bottom-color: #909599;\n}\n.bk-root .bk-tooltip.bk-below::after {\n position: absolute;\n margin: 0 0 0 -7px;\n left: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 7px 0 7px;\n border-color: transparent;\n content: " ";\n display: block;\n bottom: -10px;\n border-top-width: 10px;\n border-top-color: #909599;\n}\n.bk-root .bk-tooltip-row-label {\n text-align: right;\n color: #26aae1;\n / blue from toolbar highlighting /\n}\n.bk-root .bk-tooltip-row-value {\n color: default;\n / seems to be necessary for notebook /\n}\n.bk-root .bk-tooltip-color-block {\n width: 12px;\n height: 12px;\n margin-left: 5px;\n margin-right: 5px;\n outline: #dddddd solid 1px;\n display: inline-block;\n}\n’},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),r=e(123),o=e(84),h=e(28),n=i.__importStar(e(18));class l extends r.UpperLowerView{connect_signals(){super.connect_signals(),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}_render(){this._map_data();const{ctx:e}=this.layer;if(this.visuals.line.doit)for(let s=0,t=this._lower_sx.length;s<t;s++)this.visuals.line.set_vectorize(e,s),e.beginPath(),e.moveTo(this._lower_sx[s],this._lower_sy[s]),e.lineTo(this._upper_sx[s],this._upper_sy[s]),e.stroke();const s="height"==this.model.dimension?0:Math.PI/2;if(null!=this.model.lower_head)for(let t=0,i=this._lower_sx.length;t<i;t++)e.save(),e.translate(this._lower_sx[t],this._lower_sy[t]),e.rotate(s+Math.PI),this.model.lower_head.render(e,t),e.restore();if(null!=this.model.upper_head)for(let t=0,i=this._upper_sx.length;t<i;t++)e.save(),e.translate(this._upper_sx[t],this._upper_sy[t]),e.rotate(s),this.model.upper_head.render(e,t),e.restore()}}t.WhiskerView=l,l.__name__="WhiskerView";class _ extends r.UpperLower{constructor(e){super(e)}static init_Whisker(){this.prototype.default_view=l,this.mixins(h.LineVector),this.define({lower_head:[n.Instance,()=>new o.TeeHead({level:"underlay",size:10})],upper_head:[n.Instance,()=>new o.TeeHead({level:"underlay",size:10})]}),this.override({level:"underlay"})}}t.Whisker=_,_.__name__="Whisker",_.init_Whisker()},n function _(i,a,e){Object.defineProperty(e,"__esModule",{value:!0});var r=i(177);e.Axis=r.Axis;var s=i(179);e.CategoricalAxis=s.CategoricalAxis;var x=i(182);e.ContinuousAxis=x.ContinuousAxis;var A=i(183);e.DatetimeAxis=A.DatetimeAxis;var o=i(184);e.LinearAxis=o.LinearAxis;var t=i(197);e.LogAxis=t.LogAxis;var n=i(200);e.MercatorAxis=n.MercatorAxis},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(178),l=s.__importStar(t(28)),n=s.__importStar(t(18)),o=t(9),r=t(8),_=t(98),{abs:h,min:c,max:d}=Math;class m extends a.GuideRendererView{constructor(){super(…arguments),this.rotate=!0}get panel(){return this.layout}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const e={tick:this._tick_extent(),tick_label:this._tick_label_extents(),axis_label:this._axis_label_extent()},{tick_coords:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,e),this._draw_major_ticks(s,e,i),this._draw_minor_ticks(s,e,i),this._draw_major_labels(s,e,i),this._draw_axis_label(s,e,i),null===(t=this._paint)||void 0===t||t.call(this,s,e,i),s.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible&&null==this.model.fixed_location&&this.is_renderable){const t=this._get_size();return{width:0,height:Math.round(t)}}return{width:0,height:0}}_get_size(){return this._tick_extent()+this._tick_label_extent()+this._axis_label_extent()}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,l]=this.coordinates.map_to_screen(i,s),[n,o]=this.normals,[r,_]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath(),t.moveTo(Math.round(a[0]+n*r),Math.round(l[0]+o*_));for(let e=1;e<a.length;e++){const i=Math.round(a[e]+n*r),s=Math.round(l[e]+o*_);t.lineTo(i,s)}t.stroke()}_draw_major_ticks(t,e,i){const s=this.model.major_tick_in,a=this.model.major_tick_out,l=this.visuals.major_tick_line;this._draw_ticks(t,i.major,s,a,l)}_draw_minor_ticks(t,e,i){const s=this.model.minor_tick_in,a=this.model.minor_tick_out,l=this.visuals.minor_tick_line;this._draw_ticks(t,i.minor,s,a,l)}_draw_major_labels(t,e,i){const s=i.major,a=this.compute_labels(s[this.dimension]),l=this.model.major_label_orientation,n=e.tick+this.model.major_label_standoff,o=this.visuals.major_label_text;this._draw_oriented_labels(t,a,s,l,this.panel.side,n,o)}_draw_axis_label(t,e,i){if(null==this.model.axis_label||0==this.model.axis_label.length||null!=this.model.fixed_location)return;let s,a;const{bbox:l}=this.panel;switch(this.panel.side){case"above":s=l.hcenter,a=l.bottom;break;case"below":s=l.hcenter,a=l.top;break;case"left":s=l.right,a=l.vcenter;break;case"right":s=l.left,a=l.vcenter;break;default:throw new Error("unknown side: "+this.panel.side)}const n=[[s],[a]],r=e.tick+o.sum(e.tick_label)+this.model.axis_label_standoff,_=this.visuals.axis_label_text;this._draw_oriented_labels(t,[this.model.axis_label],n,"parallel",this.panel.side,r,_,"screen")}_draw_ticks(t,e,i,s,a){if(!a.doit)return;const[l,n]=e,[o,r]=this.coordinates.map_to_screen(l,n),[_,h]=this.normals,[c,d]=this.offsets,[m,b]=[_*(c-i),h*(d-i)],[u,x]=[_*(c+s),h*(d+s)];a.set_value(t),t.beginPath();for(let e=0;e<o.length;e++){const i=Math.round(o[e]+u),s=Math.round(r[e]+x),a=Math.round(o[e]+m),l=Math.round(r[e]+b);t.moveTo(i,s),t.lineTo(a,l)}t.stroke()}_draw_oriented_labels(t,e,i,s,a,l,n,o="data"){if(!n.doit||0==e.length)return;let _,h,c,d;if("screen"==o)[_,h]=i,[c,d]=[0,0];else{const[t,e]=i;[_,h]=this.coordinates.map_to_screen(t,e),[c,d]=this.offsets}const[m,b]=this.normals,u=m*(c+l),x=b*(d+l);let f;n.set_value(t),this.panel.apply_label_text_heuristics(t,s),f=r.isString(s)?this.panel.get_label_angle_heuristic(s):-s;for(let i=0;i<_.length;i++){const s=Math.round(_[i]+u),a=Math.round(h[i]+x);t.translate(s,a),t.rotate(f),t.fillText(e[i],0,0),t.rotate(-f),t.translate(-s,-a)}}_axis_label_extent(){if(null==this.model.axis_label||""==this.model.axis_label)return 0;const t=this.model.axis_label_standoff,e=this.visuals.axis_label_text;return this._oriented_labels_extent([this.model.axis_label],"parallel",this.panel.side,t,e)}_tick_extent(){return this.model.major_tick_out}_tick_label_extent(){return o.sum(this._tick_label_extents())}_tick_label_extents(){const t=this.tick_coords.major,e=this.compute_labels(t[this.dimension]),i=this.model.major_label_orientation,s=this.model.major_label_standoff,a=this.visuals.major_label_text;return[this._oriented_labels_extent(e,i,this.panel.side,s,a)]}_oriented_labels_extent(t,e,i,s,a){if(0==t.length)return 0;const l=this.layer.ctx;let n,o;a.set_value(l),r.isString(e)?(n=1,o=this.panel.get_label_angle_heuristic(e)):(n=2,o=-e),o=Math.abs(o);const _=Math.cos(o),h=Math.sin(o);let c=0;for(let e=0;e<t.length;e++){const s=1.1*l.measureText(t[e]).width,a=.9*l.measureText(t[e]).ascent;let o;o="above"==i||"below"==i?s*h+a/n*_:s*_+a/n*h,o>c&&(c=o)}return c>0&&(c+=s),c}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.doFormat(t,this);for(let i=0;i<t.length;i++)t[i]in this.model.major_label_overrides&&(e[i]=this.model.major_label_overrides[t[i]]);return e}get offsets(){if(null!=this.model.fixed_location)return[0,0];const{frame:t}=this.plot_view;let[e,i]=[0,0];switch(this.panel.side){case"below":i=h(this.panel.bbox.top-t.bbox.bottom);break;case"above":i=h(this.panel.bbox.bottom-t.bbox.top);break;case"right":e=h(this.panel.bbox.left-t.bbox.right);break;case"left":e=h(this.panel.bbox.right-t.bbox.left)}return[e,i]}get ranges(){const t=this.dimension,e=(t+1)%2,{ranges:i}=this.coordinates;return[i[t],i[e]]}get computed_bounds(){const[t]=this.ranges,e=this.model.bounds,i=[t.min,t.max];if("auto"==e)return[t.min,t.max];{let t,s;const[a,l]=e,[n,o]=i;return h(a-l)>h(n-o)?(t=d(c(a,l),n),s=c(d(a,l),o)):(t=c(a,l),s=d(a,l)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=[new Array(2),new Array(2)];return l[t][0]=Math.max(s,i.min),l[t][1]=Math.min(a,i.max),l[t][0]>l[t][1]&&(l[t][0]=l[t][1]=NaN),l[e][0]=this.loc,l[e][1]=this.loc,l}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=this.model.ticker.get_ticks(s,a,i,this.loc,{}),n=l.major,o=l.minor,r=[[],[]],_=[[],[]],[h,c]=[i.min,i.max];for(let i=0;i<n.length;i++)n[i]<h||n[i]>c||(r[t].push(n[i]),r[e].push(this.loc));for(let i=0;i<o.length;i++)o[i]<h||o[i]>c||(_[t].push(o[i]),_[e].push(this.loc));return{major:r,minor:_}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if(r.isNumber(t))return t;const[,e]=this.ranges;if(e instanceof _.FactorRange)return e.synthetic(t);throw new Error("unexpected")}const[,e]=this.ranges;switch(this.panel.side){case"left":case"below":return e.start;case"right":case"above":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}}i.AxisView=m,m.__name__="AxisView";class b extends a.GuideRenderer{constructor(t){super(t)}static init_Axis(){this.prototype.default_view=m,this.mixins([["axis_",l.Line],["major_tick_",l.Line],["minor_tick_",l.Line],["major_label_",l.Text],["axis_label_",l.Text]]),this.define({bounds:[n.Any,"auto"],ticker:[n.Instance],formatter:[n.Instance],axis_label:[n.String,""],axis_label_standoff:[n.Int,5],major_label_standoff:[n.Int,5],major_label_orientation:[n.Any,"horizontal"],major_label_overrides:[n.Any,{}],major_tick_in:[n.Number,2],major_tick_out:[n.Number,6],minor_tick_in:[n.Number,0],minor_tick_out:[n.Number,4],fixed_location:[n.Any,null]}),this.override({axis_line_color:"black",major_tick_line_color:"black",minor_tick_line_color:"black",major_label_text_font_size:"11px",major_label_text_align:"center",major_label_text_baseline:"alphabetic",axis_label_text_font_size:"13px",axis_label_text_font_style:"italic"})}}i.Axis=b,b.__name__="Axis",b.init_Axis()},n function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});const i=e(70);class n extends i.RendererView{}d.GuideRendererView=n,n.__name__="GuideRendererView";class t extends i.Renderer{constructor(e){super(e)}static init_GuideRenderer(){this.override({level:"guide"})}}d.GuideRenderer=t,t.__name__="GuideRenderer",t.init_GuideRenderer()},n function _(t,s,o){Object.defineProperty(o,"__esModule",{value:!0});const e=t(1),i=t(177),r=t(180),a=t(181),l=e.__importStar(t(28)),_=e.__importStar(t(18));class n extends i.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;t<e.tops.length-1;t++){let s,o;for(let i=n;i<e.factors.length;i++)if(e.factors[i][0]==e.tops[t+1]){[s,o]=[e.factors[i-1],e.factors[i]],n=i;break}const h=(e.synthetic(s)+e.synthetic(o))/2;h>i&&h<r&&(_[a].push(h),_[l].push(this.loc))}const h=this._tick_label_extent();this._draw_ticks(t,_,-3,h-6,this.visuals.separator_line)}_draw_major_labels(t,s,o){const e=this._get_factor_info();let i=s.tick+this.model.major_label_standoff;for(let o=0;o<e.length;o++){const[r,a,l,_]=e[o];this._draw_oriented_labels(t,r,a,l,this.panel.side,i,_),i+=s.tick_label[o]}}_tick_label_extents(){const t=this._get_factor_info(),s=[];for(const[o,,e,i]of t){const t=this._oriented_labels_extent(o,e,this.panel.side,this.model.major_label_standoff,i);s.push(t)}return s}_get_factor_info(){const[t]=this.ranges,[s,o]=this.computed_bounds,e=this.loc,i=this.model.ticker.get_ticks(s,o,t,e,{}),r=this.tick_coords,a=[];if(1==t.levels){const t=i.major,s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text])}else if(2==t.levels){const t=i.major.map(t=>t[1]),s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=i.major.map(t=>t[2]),s=this.model.formatter.doFormat(t,this),o=i.mids.map(t=>t[1]);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([o,r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc,{}),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map(t=>this.loc),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map(t=>this.loc)),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map(t=>this.loc)),a}}o.CategoricalAxisView=n,n.__name__="CategoricalAxisView";class h extends i.Axis{constructor(t){super(t)}static init_CategoricalAxis(){this.prototype.default_view=n,this.mixins([["separator_",l.Line],["group_",l.Text],["subgroup_",l.Text]]),this.define({group_label_orientation:[_.Any,"parallel"],subgroup_label_orientation:[_.Any,"parallel"]}),this.override({ticker:()=>new r.CategoricalTicker,formatter:()=>new a.CategoricalTickFormatter,separator_line_color:"lightgrey",separator_line_width:2,group_text_font_style:"bold",group_text_font_size:"11px",group_text_color:"grey",subgroup_text_font_style:"bold",subgroup_text_font_size:"11px"})}}o.CategoricalAxis=h,h.__name__="CategoricalAxis",h.init_CategoricalAxis()},n function _(t,c,e){Object.defineProperty(e,"__esModule",{value:!0});const o=t(129);class s extends o.Ticker{constructor(t){super(t)}get_ticks(t,c,e,o,s){return{major:this._collect(e.factors,e,t,c),minor:[],tops:this._collect(e.tops||[],e,t,c),mids:this._collect(e.mids||[],e,t,c)}}_collect(t,c,e,o){const s=[];for(const r of t){const t=c.synthetic(r);t>e&&t<o&&s.push(r)}return s}}e.CategoricalTicker=s,s.__name__="CategoricalTicker"},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(131),c=e(9);class a extends o.TickFormatter{constructor(e){super(e)}doFormat(e,t){return c.copy(e)}}r.CategoricalTickFormatter=a,a.__name__="CategoricalTickFormatter"},n function _(s,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=s(177);class t extends o.Axis{constructor(s){super(s)}}n.ContinuousAxis=t,t.__name__="ContinuousAxis"},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(184),a=e(185),r=e(190);class n extends s.LinearAxisView{}i.DatetimeAxisView=n,n.__name__="DatetimeAxisView";class _ extends s.LinearAxis{constructor(e){super(e)}static init_DatetimeAxis(){this.prototype.default_view=n,this.override({ticker:()=>new r.DatetimeTicker,formatter:()=>new a.DatetimeTickFormatter})}}i.DatetimeAxis=_,_.__name__="DatetimeAxis",_.init_DatetimeAxis()},n function _(e,i,s){Object.defineProperty(s,"__esModule",{value:!0});const t=e(177),n=e(182),r=e(130),a=e(126);class _ extends t.AxisView{}s.LinearAxisView=_,_.__name__="LinearAxisView";class c extends n.ContinuousAxis{constructor(e){super(e)}static init_LinearAxis(){this.prototype.default_view=_,this.override({ticker:()=>new a.BasicTicker,formatter:()=>new r.BasicTickFormatter})}}s.LinearAxis=c,c.__name__="LinearAxis",c.init_LinearAxis()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),i=r.__importDefault(t(186)),n=t(131),o=t(19),a=r.__importStar(t(18)),c=t(187),m=t(9),u=t(8);function h(t){return i.default(t,"%Y %m %d %H %M %S").split(/\s+/).map(t=>parseInt(t,10))}function d(t,s){if(u.isFunction(s))return s(t);{const e=c.sprintf("$1%06d",function(t){return Math.round(t/1e3%1*1e6)}(t));return-1==(s=s.replace(/((^|[^%])(%%))%f/,e)).indexOf("%")?s:i.default(t,s)}}const l=["microseconds","milliseconds","seconds","minsec","minutes","hourmin","hours","days","months","years"];class _ extends n.TickFormatter{constructor(t){super(t),this.strip_leading_zeros=!0}static init_DatetimeTickFormatter(){this.define({microseconds:[a.Array,["%fus"]],milliseconds:[a.Array,["%3Nms","%S.%3Ns"]],seconds:[a.Array,["%Ss"]],minsec:[a.Array,[":%M:%S"]],minutes:[a.Array,[":%M","%Mm"]],hourmin:[a.Array,["%H:%M"]],hours:[a.Array,["%Hh","%H:%M"]],days:[a.Array,["%m/%d","%a%d"]],months:[a.Array,["%m/%Y","%b %Y"]],years:[a.Array,["%Y"]]})}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const t=+i.default(new Date),s=function(s){const e=s.map(s=>d(t,s).length),r=m.sort_by(m.zip(e,s),([t])=>t);return m.unzip(r)};this._width_formats={microseconds:s(this.microseconds),milliseconds:s(this.milliseconds),seconds:s(this.seconds),minsec:s(this.minsec),minutes:s(this.minutes),hourmin:s(this.hourmin),hours:s(this.hours),days:s(this.days),months:s(this.months),years:s(this.years)}}_get_resolution_str(t,s){const e=1.1*t;switch(!1){case!(e<.001):return"microseconds";case!(e<1):return"milliseconds";case!(e<60):return s>=60?"minsec":"seconds";case!(e<3600):return s>=3600?"hourmin":"minutes";case!(e<86400):return"hours";case!(e<2678400):return"days";case!(e<31536e3):return"months";default:return"years"}}doFormat(t,s){if(0==t.length)return[];const e=Math.abs(t[t.length-1]-t[0])/1e3,r=e/(t.length-1),i=this._get_resolution_str(r,e),[,[n]]=this._width_formats[i],a=[],c=l.indexOf(i),m={};for(const t of l)m[t]=0;m.seconds=5,m.minsec=4,m.minutes=4,m.hourmin=3,m.hours=3;for(const s of t){let t,e;try{e=h(s),t=d(s,n)}catch(t){o.logger.warn("unable to format tick for timestamp value "+s),o.logger.warn(" - "+t),a.push("ERR");continue}let r=!1,u=c;for(;0==e[m[l[u]]];){let n;if(u+=1,u==l.length)break;if(("minsec"==i||"hourmin"==i)&&!r){if("minsec"==i&&0==e[4]&&0!=e[5]||"hourmin"==i&&0==e[3]&&0!=e[4]){n=this._width_formats[l[c-1]][1][0],t=d(s,n);break}r=!0}n=this._width_formats[l[u]][1][0],t=d(s,n)}if(this.strip_leading_zeros){let s=t.replace(/^0+/g,"");s!=t&&isNaN(parseInt(s))&&(s="0"+s),a.push(s)}else a.push(t)}return a}}e.DatetimeTickFormatter=_,_.__name__="DatetimeTickFormatter",_.init_DatetimeTickFormatter()},n function _(e,t,n){!function(e){"object"==typeof t&&t.exports?t.exports=e():"function"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o<a&&!(f[o][n]<=r);o++);if((u=f[o]).rules){for(s=t[u.rules],c=T+1;c>=T-g;–c)for(o=0,a=s.length;o<a;o++)s[o].from<=c&&c<=s[o].to?h.push(e(u,s[o],c)):s[o].to<c&&1==g&&(g=c-s[o].to);for(h.sort((function(e,t){return e.sort-t.sort})),o=0,a=h.length;o<a;o++)r>=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return"UTC"==e.zone?n:(e.entry=t(e,"posix",n),n+e.entry.offset+e.entry.save)}function r(e,n){return"UTC"==e.zone?n:(e.entry=r=t(e,"wallclock",n),0<(o=n-r.wallclock)&&o<r.save?null:n-r.offset-r.save);var r,o}function o(e,t,o){var a,i=+(o[1]+1),s=o[2]*i,c=u.indexOf(o[3].toLowerCase());if(c>9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:"UTC",entry:{abbrev:"UTC",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push(("0"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return"^"!=n||u?("^"==n&&(r=3),3==r?(a=(a=l.join(":")).replace(/:00$/,""),"^"!=n&&(a=a.replace(/:00$/,""))):r?(a=l.slice(0,r+1).join(":"),"^"==n&&(a=a.replace(/:00$/,""))):a=l.slice(0,2).join(""),a=(a=(u<0?"-":"+")+a).replace(/([-+])(0)/,{_:" $1","-":"$1"}[n]||"$1$2")):"Z"},"%":function(e){return"%"},n:function(e){return"\n"},t:function(e){return"\t"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,"%H:%M"])},T:function(e,t){return this.convert([t,"%H:%M:%S"])},D:function(e,t){return this.convert([t,"%m/%d/%y"])},F:function(e,t){return this.convert([t,"%Y-%m-%d"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||"%I:%M:%S"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return"1.0.23";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t<e.length;t++)if(l=e[t],Array.isArray(l))t||isNaN(l[1])?l.splice.apply(e,[t–,1].concat(l)):s=l;else if(isNaN(l)){if("string"==(u=typeof l))~l.indexOf("%")?c.format=l:t||""!=l?!t&&(u=/^(\d{4})-(\d{2})-(\d{2})(?:[T\s](\d{2}):(\d{2})(?::(\d{2})(?:\.(\d+))?)?(Z|(([+-])(\d{2}(:\d{2}){0,2})))?)?$/.exec(l))?((s=[]).push.apply(s,u.slice(1,8)),u[9]?(s.push(u[10]+1),s.push.apply(s,u[11].split(/:/))):u[8]&&s.push(1)):/^\w{2,3}_\w{2}$/.test(l)?c.locale=l:(u=i.exec(l))?f.push(u):c.zone=l:s=l;else if("function"==u){if(u=l.call(c))return u}else if(/^\w{2,3}_\w{2}$/.test(l.name))c[l.name]=l;else if(l.zones){for(u in l.zones)c[u]=l.zones[u];for(u in l.rules)c[u]=l.rules[u]}}else t||(s=l);if(c[c.locale]||delete c.locale,c[c.zone]||delete c.zone,null!=s){if(""==s)s=c.clock();else if(Array.isArray(s)){for(u=[],a=!s[7],t=0;t<11;t++)u[t]=+(s[t]||0);–u[1],s=Date.UTC.apply(Date.UTC,u)+-u[7]*(36e5*u[8]+6e4*u[9]+1e3*u[10])}else s=Math.floor(s);if(!isNaN(s)){if(a&&(s=r(c,s)),null==s)return s;for(t=0,a=f.length;t<a;t++)s=o(c,s,f[t]);return c.format?(u=new Date(n(c,s)),c.format.replace(/%([-0_^]?)(:{0,3})(\d*)(.)/g,(function(e,t,n,r,o){var a,i,l="0";if(a=c[o]){for(e=String(a.call(c,u,s,t,n.length)),"_"==(t||a.style)&&(l=" "),i="-"==t?0:a.pad||0;e.length<i;)e=l+e;for(i="-"==t?0:r||a.pad;e.length<i;)e=l+e;"N"==o&&i<e.length&&(e=e.slice(0,i)),"^"==t&&(e=e.toUpperCase())}return e}))):s}}return function(){return c.convert(arguments)}},locale:"en_US",en_US:{date:"%m/%d/%Y",time24:"%I:%M:%S %p",time12:"%I:%M:%S %p",dateTime:"%a %d %b %Y %I:%M:%S %p %Z",meridiem:["AM","PM"],month:{abbrev:"Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec".split("|\"),full:\"January|February|March|April|May|June|July|August|September|October|November|December\".split(\"|")},day:{abbrev:"Sun|Mon|Tue|Wed|Thu|Fri|Sat".split("|\"),full:\"Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday\".split(\"|")}}},u="Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|year|month|day|hour|minute|second|millisecond",i=new RegExp("^\\s*([+-])(\\d+)\\s+("+u+")s?\\s*$","i"),l=[36e5,6e4,1e3,1];function s(e,t){var n,r,o;return r=new Date(Date.UTC(e.getUTCFullYear(),0)),n=Math.floor((e.getTime()-r.getTime())/864e5),r.getUTCDay()==t?o=0:8==(o=7-r.getUTCDay()+t)&&(o=1),n>=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split("|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=r(1),i=n.__importStar(r(188)),u=r(189),a=n.__importDefault(r(186)),f=r(29),o=r(8);function l(r,...e){return u.sprintf(r,...e)}function s(r,e,t){if(o.isNumber(r)){return l((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return\"\"+r}function c(r,e,n){if(null==e)return s;if(null!=n&&r in n){const e=n[r];if(o.isString(e)){if(e in t.DEFAULT_FORMATTERS)return t.DEFAULT_FORMATTERS[e];throw new Error(`Unknown tooltip field formatter type '${e}'`)}return function(r,t,n){return e.format(r,t,n)}}return t.DEFAULT_FORMATTERS.numeral}function m(r,e,t,n){if(\"$\"==r[0]){return function(r,e){if(r in e)return e[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),n)}return function(r,e,t){const n=e.get_column(r);if(null==n)return null;if(o.isNumber(t))return n[t];const i=n[t.index];if(o.isTypedArray(i)||o.isArray(i)){if(o.isArray(i[0])){return i[t.dim2][t.dim1]}return i[t.flat_index]}return i}(r.substring(1).replace(/[{}]/g,\"\"),e,t)}t.DEFAULT_FORMATTERS={numeral:(r,e,t)=>i.format(r,e),datetime:(r,e,t)=>a.default(r,e),printf:(r,e,t)=>l(e,r)},t.sprintf=l,t.basic_formatter=s,t.get_formatter=c,t.get_value=m,t.replace_placeholders=function(r,e,t,n,i={}){let u,a;if(o.isString(r)?(u=r,a=!1):(u=r.html,a=!0),u=u.replace(/@\\$name/g,r=>`@{${i.name}}`),u=u.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,(r,u,o)=>{const l=m(u,e,t,i);if(null==l)return\"\"+f.escape(\"???\");if(\"safe\"==o)return a=!0,\"\"+l;const s=c(u,o,n);return\"\"+f.escape(s(l,o,i))}),a){return[...(new DOMParser).parseFromString(u,\"text/html\").body.childNodes]}return u}},\n function _(e,n,t){\n /*!\n * numbro.js\n * version : 1.6.2\n * author : Företagsplatsen AB\n * license : MIT\n * http://www.foretagsplatsen.se\n */\n var r,i={},a=i,o=\"en-US\",l=null,u=\"0,0\";void 0!==n&&n.exports;function c(e){this._value=e}function s(e){var n,t=\"\";for(n=0;n<e;n++)t+=\"0\";return t}function f(e,n,t,r){var i,a,o=Math.pow(10,n);return a=e.toFixed(0).search(\"e\")>-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||"")+s(i-r.length),n>0&&(a+="."+s(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp("0{1,"+r+"}$"),a=a.replace(i,"")),a}function d(e,n,t){return n.indexOf("$")>-1?function(e,n,t){var r,a,l=n,u=l.indexOf("$"),c=l.indexOf("("),s=l.indexOf("+"),f=l.indexOf("-"),d="",p="";-1===l.indexOf("$")?"infix"===i[o].currency.position?(p=i[o].currency.symbol,i[o].currency.spaceSeparated&&(p=" "+p+" ")):i[o].currency.spaceSeparated&&(d=" "):l.indexOf(" $")>-1?(d=" ",l=l.replace(" $","")):l.indexOf("$ ")>-1?(d=" ",l=l.replace("$ ","")):l=l.replace("$","");if(a=h(e,l,t,p),-1===n.indexOf("$"))switch(i[o].currency.position){case"postfix":a.indexOf(")")>-1?((a=a.split("")).splice(-1,0,d+i[o].currency.symbol),a=a.join("")):a=a+d+i[o].currency.symbol;break;case"infix":break;case"prefix":a.indexOf("(")>-1||a.indexOf("-")>-1?(a=a.split(""),r=Math.max(c,f)+1,a.splice(r,0,i[o].currency.symbol+d),a=a.join("")):a=i[o].currency.symbol+d+a;break;default:throw Error(‘Currency position should be among ["prefix", "infix", "postfix"]’)}else u<=1?a.indexOf("(")>-1||a.indexOf("+")>-1||a.indexOf("-")>-1?(a=a.split(""),r=1,(u<c||u<s||u<f)&&(r=0),a.splice(r,0,i[o].currency.symbol+d),a=a.join("")):a=i[o].currency.symbol+d+a:a.indexOf(")")>-1?((a=a.split("")).splice(-1,0,d+i[o].currency.symbol),a=a.join("")):a=a+d+i[o].currency.symbol;return a}(e,n,t):n.indexOf("%")>-1?function(e,n,t){var r,i="";e*=100,n.indexOf(" %")>-1?(i=" ",n=n.replace(" %","")):n=n.replace("%","");(r=h(e,n,t)).indexOf(")")>-1?((r=r.split("")).splice(-1,0,i+"%"),r=r.join("")):r=r+i+"%";return r}(e,n,t):n.indexOf(":")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+":"+(t<10?"0"+t:t)+":"+(r<10?"0"+r:r)}(e):h(e,n,t)}function h(e,n,t,r){var a,u,c,s,d,h,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k="",U=!1,N=!1,S=!1,j=!1,D=!1,C="",L="",T=Math.abs(e),K=["B","KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"],G=["B","KB","MB","GB","TB","PB","EB","ZB","YB"],I="",P=!1,R=!1;if(0===e&&null!==l)return l;if(!isFinite(e))return""+e;if(0===n.indexOf("{")){var W=n.indexOf("}");if(-1===W)throw Error(‘Format should also contain a "}"’);b=n.slice(1,W),n=n.slice(W+1)}else b="";if(n.indexOf("}")===n.length-1){var Y=n.indexOf("{");if(-1===Y)throw Error(‘Format should also contain a "{"’);w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w="";if(v=null===($=-1===n.indexOf(".")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\..*/))?-1:$[1].length,-1!==n.indexOf("-")&&(P=!0),n.indexOf("(")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf("+")>-1&&(E=!0,n=n.replace(/\+/g,"")),n.indexOf("a")>-1){if(g=n.split(".")[0].match(/[0-9]+/g)||["0"],g=parseInt(g[0],10),U=n.indexOf("aK")>=0,N=n.indexOf("aM")>=0,S=n.indexOf("aB")>=0,j=n.indexOf("aT")>=0,D=U||N||S||j,n.indexOf(" a")>-1?(k=" ",n=n.replace(" a","")):n=n.replace("a",""),p=0===(p=(d=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(h=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,d)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(".")&&g>3))for(n+="[.]",M=(M=0===h?0:3*~~(h/3)-h)<0?M+3:M,a=0;a<M;a++)n+="0";Math.floor(Math.log(Math.abs(e))/Math.LN10)+1!==g&&(T>=Math.pow(10,12)&&!D||j?(k+=i[o].abbreviations.trillion,e/=Math.pow(10,12)):T<Math.pow(10,12)&&T>=Math.pow(10,9)&&!D||S?(k+=i[o].abbreviations.billion,e/=Math.pow(10,9)):T<Math.pow(10,9)&&T>=Math.pow(10,6)&&!D||N?(k+=i[o].abbreviations.million,e/=Math.pow(10,6)):(T<Math.pow(10,6)&&T>=Math.pow(10,3)&&!D||U)&&(k+=i[o].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf("b")>-1)for(n.indexOf(" b")>-1?(C=" ",n=n.replace(" b","")):n=n.replace("b",""),s=0;s<=K.length;s++)if(u=Math.pow(1024,s),c=Math.pow(1024,s+1),e>=u&&e<c){C+=K[s],u>0&&(e/=u);break}if(n.indexOf("d")>-1)for(n.indexOf(" d")>-1?(C=" ",n=n.replace(" d","")):n=n.replace("d",""),s=0;s<=G.length;s++)if(u=Math.pow(1e3,s),c=Math.pow(1e3,s+1),e>=u&&e<c){C+=G[s],u>0&&(e/=u);break}if(n.indexOf("o")>-1&&(n.indexOf(" o")>-1?(L=" ",n=n.replace(" o","")):n=n.replace("o",""),i[o].ordinal&&(L+=i[o].ordinal(e))),n.indexOf("[.]")>-1&&(F=!0,n=n.replace("[.]",".")),x=e.toString().split(".")[0],O=n.split(".")[1],y=n.indexOf(","),O){if(x=(I=-1!==O.indexOf("")?f(e,e.toString().split(".")[1].length,t):O.indexOf("[")>-1?f(e,(O=(O=O.replace("]","")).split("["))[0].length+O[1].length,t,O[1].length):f(e,O.length,t)).split(".")[0],I.split(".")[1].length)I=(r?k+r:i[o].delimiters.decimal)+I.split(".")[1];else I="";F&&0===Number(I.slice(1))&&(I="")}else x=f(e,null,t);return x.indexOf("-")>-1&&(x=x.slice(1),R=!0),x.length<v&&(x=new Array(v-x.length+1).join("0")+x),y>-1&&(x=x.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1"+i[o].delimiters.thousands)),0===n.indexOf(".")&&(x=""),b+(n.indexOf("(")<n.indexOf("-")?(B&&R?"(":"")+(P&&R||!B&&R?"-":""):(P&&R||!B&&R?"-":"")+(B&&R?"(":""))+(!R&&E&&0!==e?"+":"")+x+I+(L||"")+(k&&!r?k:"")+(C||"")+(B&&R?")":"")+w}function p(e,n){i[e]=n}function m(e){o=e;var n=i[e].defaults;n&&n.format&&r.defaultFormat(n.format),n&&n.currencyFormat&&r.defaultCurrencyFormat(n.currencyFormat)}(r=function(e){return r.isNumbro(e)?e=e.value():0===e||void 0===e?e=0:Number(e)||(e=r.fn.unformat(e)),new c(Number(e))}).version="1.6.2",r.isNumbro=function(e){return e instanceof c},r.setLanguage=function(e,n){console.warn("`setLanguage` is deprecated since version 1.6.0. Use `setCulture` instead");var t=e,r=e.split("-")[0],i=null;a[t]||(Object.keys(a).forEach((function(e){i||e.split("-")[0]!==r||(i=e)})),t=i||n||"en-US"),m(t)},r.setCulture=function(e,n){var t=e,r=e.split("-")[1],a=null;i[t]||(r&&Object.keys(i).forEach((function(e){a||e.split("-")[1]!==r||(a=e)})),t=a||n||"en-US"),m(t)},r.language=function(e,n){if(console.warn("`language` is deprecated since version 1.6.0. Use `culture` instead"),!e)return o;if(e&&!n){if(!a[e])throw new Error("Unknown language : "+e);m(e)}return!n&&a[e]||p(e,n),r},r.culture=function(e,n){if(!e)return o;if(e&&!n){if(!i[e])throw new Error("Unknown culture : "+e);m(e)}return!n&&i[e]||p(e,n),r},r.languageData=function(e){if(console.warn("`languageData` is deprecated since version 1.6.0. Use `cultureData` instead"),!e)return a[o];if(!a[e])throw new Error("Unknown language : "+e);return a[e]},r.cultureData=function(e){if(!e)return i[o];if(!i[e])throw new Error("Unknown culture : "+e);return i[e]},r.culture("en-US",{delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(e){var n=e%10;return 1==~~(e%100/10)?"th":1===n?"st":2===n?"nd":3===n?"rd":"th"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",0000 a"},formats:{fourDigits:"0000 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00"}}),r.languages=function(){return console.warn("`languages` is deprecated since version 1.6.0. Use `cultures` instead"),a},r.cultures=function(){return i},r.zeroFormat=function(e){l="string"==typeof e?e:null},r.defaultFormat=function(e){u="string"==typeof e?e:"0.0"},r.defaultCurrencyFormat=function(e){"string"==typeof e?e:"0$"},r.validate=function(e,n){var t,i,a,o,l,u,c,s;if("string"!=typeof e&&(e+="",console.warn&&console.warn("Numbro.js: Value is not string. It has been co-erced to: ",e)),(e=e.trim()).match(/^\d+$/))return!0;if(""===e)return!1;try{c=r.cultureData(n)}catch(e){c=r.cultureData(r.culture())}return a=c.currency.symbol,l=c.abbreviations,t=c.delimiters.decimal,i="."===c.delimiters.thousands?"\\.":c.delimiters.thousands,(null===(s=e.match(/^[^\d]+/))||(e=e.substr(1),s[0]===a))&&((null===(s=e.match(/[^\d]+$/))||(e=e.slice(0,-1),s[0]===l.thousand||s[0]===l.million||s[0]===l.billion||s[0]===l.trillion))&&(u=new RegExp(i+"{2}"),!e.match(/[^\d.,]/g)&&(!((o=e.split(t)).length>2)&&(o.length<2?!!o[0].match(/^\d+.\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\d+$/):!!o[0].match(/^\d+.*\d$/)&&!o[0].match(u)&&!!o[1].match(/^\d+$/)))))},n.exports={format:function(e,n,t,i){return null!=t&&t!==r.culture()&&r.setCulture(t),d(Number(e),null!=n?n:u,null==i?Math.round:i)}}},n function _(e,n,t){!function(){"use strict";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|’[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y="";for(s=0;s<g;s++)if("string"==typeof t[s])y+=t[s];else if("object"==typeof t[s]){if((o=t[s]).keys)for(i=r[d],a=0;a<o.keys.length;a++){if(null==i)throw new Error(n(‘[sprintf] Cannot access property "%s" of undefined value "%s"’,o.keys[a],o.keys[a-1]));i=i[o.keys[a]]}else i=o.param_no?r[o.param_no]:r[d++];if(e.not_type.test(o.type)&&e.not_primitive.test(o.type)&&i instanceof Function&&(i=i()),e.numeric_arg.test(o.type)&&"number"!=typeof i&&isNaN(i))throw new TypeError(n("[sprintf] expecting number but found %T",i));switch(e.number.test(o.type)&&(u=i>=0),o.type){case"b":i=parseInt(i,10).toString(2);break;case"c":i=String.fromCharCode(parseInt(i,10));break;case"d":case"i":i=parseInt(i,10);break;case"j":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case"e":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case"f":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case"g":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case"o":i=(parseInt(i,10)>>>0).toString(8);break;case"s":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case"t":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case"T":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case"u":i=parseInt(i,10)>>>0;break;case"v":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case"x":i=(parseInt(i,10)>>>0).toString(16);break;case"X":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f="":(f=u?"+":"-",i=i.toString().replace(e.sign,"")),c=o.pad_char?"0"===o.pad_char?"0":o.pad_char.charAt(1):" ",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):"",y+=o.align?f+i+p:"0"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push("%");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(o.push(c[1]);""!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError("[sprintf] failed to parse named argument key");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),"undefined"!=typeof window&&(window.sprintf=n,window.vsprintf=r,"function"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},n function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(9),a=e(127),s=e(191),r=e(192),c=e(195),_=e(196),m=e(194);class k extends s.CompositeTicker{constructor(e){super(e)}static init_DatetimeTicker(){this.override({num_minor_ticks:0,tickers:()=>[new a.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*m.ONE_MILLI,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:m.ONE_SECOND,max_interval:30*m.ONE_MINUTE,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:m.ONE_HOUR,max_interval:12*m.ONE_HOUR,num_minor_ticks:0}),new r.DaysTicker({days:t.range(1,32)}),new r.DaysTicker({days:t.range(1,31,3)}),new r.DaysTicker({days:[1,8,15,22]}),new r.DaysTicker({days:[1,15]}),new c.MonthsTicker({months:t.range(0,12,1)}),new c.MonthsTicker({months:t.range(0,12,2)}),new c.MonthsTicker({months:t.range(0,12,4)}),new c.MonthsTicker({months:t.range(0,12,6)}),new _.YearsTicker({})]})}}n.DatetimeTicker=k,k.__name__="DatetimeTicker",k.init_DatetimeTicker()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const r=t(1),s=t(128),n=r.__importStar(t(18)),_=t(9);class a extends s.ContinuousTicker{constructor(t){super(t)}static init_CompositeTicker(){this.define({tickers:[n.Array,[]]})}get min_intervals(){return this.tickers.map(t=>t.get_min_interval())}get max_intervals(){return this.tickers.map(t=>t.get_max_interval())}get min_interval(){return this.min_intervals[0]}get max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[_.sorted_index(this.min_intervals,s)-1,_.sorted_index(this.max_intervals,s)],a=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map(t=>Math.abs(i-r/t));let c;if(_.is_empty(a.filter(t=>!isNaN(t))))c=this.tickers[0];else{const t=n[_.argmin(a)];c=this.tickers[t]}return c}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=a,a.__name__="CompositeTicker",a.init_CompositeTicker()},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(1),s=t(193),a=t(194),o=i.__importStar(t(18)),r=t(9);class _ extends s.SingleIntervalTicker{constructor(t){super(t)}static init_DaysTicker(){this.define({days:[o.Array,[]]}),this.override({num_minor_ticks:0})}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*a.ONE_DAY:this.interval=31*a.ONE_DAY}get_ticks_no_defaults(t,e,n,i){const s=function(t,e){const n=a.last_month_no_later_than(new Date(t)),i=a.last_month_no_later_than(new Date(e));i.setUTCMonth(i.getUTCMonth()+1);const s=[],o=n;for(;s.push(a.copy_date(o)),o.setUTCMonth(o.getUTCMonth()+1),!(o>i););return s}(t,e),o=this.days,_=this.interval;return{major:r.concat(s.map(t=>((t,e)=>{const n=t.getUTCMonth(),i=[];for(const s of o){const o=a.copy_date(t);o.setUTCDate(s);new Date(o.getTime()+e/2).getUTCMonth()==n&&i.push(o)}return i})(t,_))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.DaysTicker=_,_.__name__="DaysTicker",_.init_DaysTicker()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),r=e(128),l=n.__importStar(e(18));class a extends r.ContinuousTicker{constructor(e){super(e)}static init_SingleIntervalTicker(){this.define({interval:[l.Number]})}get_interval(e,t,i){return this.interval}get min_interval(){return this.interval}get max_interval(){return this.interval}}i.SingleIntervalTicker=a,a.__name__="SingleIntervalTicker",a.init_SingleIntervalTicker()},n function _(t,e,n){function _(t){return new Date(t.getTime())}function O(t){const e=_(t);return e.setUTCDate(1),e.setUTCHours(0),e.setUTCMinutes(0),e.setUTCSeconds(0),e.setUTCMilliseconds(0),e}Object.defineProperty(n,"__esModule",{value:!0}),n.ONE_MILLI=1,n.ONE_SECOND=1e3,n.ONE_MINUTE=60*n.ONE_SECOND,n.ONE_HOUR=60*n.ONE_MINUTE,n.ONE_DAY=24*n.ONE_HOUR,n.ONE_MONTH=30*n.ONE_DAY,n.ONE_YEAR=365*n.ONE_DAY,n.copy_date=_,n.last_month_no_later_than=O,n.last_year_no_later_than=function(t){const e=O(t);return e.setUTCMonth(0),e}},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),i=t(193),s=t(194),a=r.__importStar(t(18)),o=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}static init_MonthsTicker(){this.define({months:[a.Array,[]]})}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*s.ONE_MONTH:this.interval=12*s.ONE_MONTH}get_ticks_no_defaults(t,e,n,r){const i=function(t,e){const n=s.last_year_no_later_than(new Date(t)),r=s.last_year_no_later_than(new Date(e));r.setUTCFullYear(r.getUTCFullYear()+1);const i=[],a=n;for(;i.push(s.copy_date(a)),a.setUTCFullYear(a.getUTCFullYear()+1),!(a>r););return i}(t,e),a=this.months;return{major:o.concat(i.map(t=>a.map(e=>{const n=s.copy_date(t);return n.setUTCMonth(e),n}))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.MonthsTicker=_,_.__name__="MonthsTicker",_.init_MonthsTicker()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(126),r=e(193),n=e(194);class _ extends r.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=n.ONE_YEAR,this.basic_ticker=new i.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=n.last_year_no_later_than(new Date(e)).getUTCFullYear(),_=n.last_year_no_later_than(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,_,a,i).major.map(e=>Date.UTC(e,0,1)).filter(a=>e<=a&&a<=t),minor:[]}}}a.YearsTicker=_,_.__name__="YearsTicker"},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(177),o=e(182),n=e(198),r=e(199);class _ extends s.AxisView{}t.LogAxisView=_,_.__name__="LogAxisView";class c extends o.ContinuousAxis{constructor(e){super(e)}static init_LogAxis(){this.prototype.default_view=_,this.override({ticker:()=>new r.LogTicker,formatter:()=>new n.LogTickFormatter})}}t.LogAxis=c,c.__name__="LogAxis",c.init_LogAxis()},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=t(1),o=t(131),a=t(130),n=i.__importStar(t(18));class c extends o.TickFormatter{constructor(t){super(t)}static init_LogTickFormatter(){this.define({ticker:[n.Instance,null]})}initialize(){super.initialize(),this.basic_formatter=new a.BasicTickFormatter}doFormat(t,e){if(0==t.length)return[];const r=null!=this.ticker?this.ticker.base:10;let i=!1;const o=new Array(t.length);for(let e=0,a=t.length;e<a;e++)if(o[e]=`${r}^${Math.round(Math.log(t[e])/Math.log(r))}`,e>0&&o[e]==o[e-1]){i=!0;break}return i?this.basic_formatter.doFormat(t,e):o}}r.LogTickFormatter=c,c.__name__="LogTickFormatter",c.init_LogTickFormatter()},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(127),s=t(9);class n extends i.AdaptiveTicker{constructor(t){super(t)}static init_LogTicker(){this.override({mantissas:[1,5]})}get_ticks_no_defaults(t,o,e,i){const n=this.num_minor_ticks,r=[],c=this.base,a=Math.log(t)/Math.log(c),f=Math.log(o)/Math.log(c),l=f-a;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,i),c=Math.floor(t/e),a=Math.ceil(o/e);if(h=s.range(c,a+1).filter(t=>0!=t).map(t=>t*e).filter(e=>t<=e&&e<=o),n>0&&h.length>0){const t=e/n,o=s.range(0,n).map(o=>o*t);for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*a),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=s.range(t-1,o+1,e).map(t=>c**t),n>0&&h.length>0){const t=c**e/n,o=s.range(1,n+1).map(o=>o*t);for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter(e=>t<=e&&e<=o),minor:r.filter(e=>t<=e&&e<=o)}}}e.LogTicker=n,n.__name__="LogTicker",n.init_LogTicker()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(177),s=e(184),o=e(201),a=e(202);class c extends i.AxisView{}r.MercatorAxisView=c,c.__name__="MercatorAxisView";class n extends s.LinearAxis{constructor(e){super(e)}static init_MercatorAxis(){this.prototype.default_view=c,this.override({ticker:()=>new a.MercatorTicker({dimension:"lat"}),formatter:()=>new o.MercatorTickFormatter({dimension:"lat"})})}}r.MercatorAxis=n,n.__name__="MercatorAxis",n.init_MercatorAxis()},n function _(r,t,e){Object.defineProperty(e,"__esModule",{value:!0});const o=r(1),n=r(130),i=o.__importStar(r(18)),c=r(37);class a extends n.BasicTickFormatter{constructor(r){super(r)}static init_MercatorTickFormatter(){this.define({dimension:[i.LatLon]})}doFormat(r,t){if(null==this.dimension)throw new Error("MercatorTickFormatter.dimension not configured");if(0==r.length)return[];const e=r.length,o=new Array(e);if("lon"==this.dimension)for(let n=0;n<e;n++){const[e]=c.wgs84_mercator.invert(r[n],t.loc);o[n]=e}else for(let n=0;n<e;n++){const[,e]=c.wgs84_mercator.invert(t.loc,r[n]);o[n]=e}return super.doFormat(o,t)}}e.MercatorTickFormatter=a,a.__name__="MercatorTickFormatter",a.init_MercatorTickFormatter()},n function _(t,o,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),s=t(126),e=n.__importStar(t(18)),i=t(37);class c extends s.BasicTicker{constructor(t){super(t)}static init_MercatorTicker(){this.define({dimension:[e.LatLon]})}get_ticks_no_defaults(t,o,r,n){if(null==this.dimension)throw new Error(this+".dimension wasn’t configured");return[t,o]=i.clip_mercator(t,o,this.dimension),"lon"==this.dimension?this._get_ticks_lon(t,o,r,n):this._get_ticks_lat(t,o,r,n)}_get_ticks_lon(t,o,r,n){const[s]=i.wgs84_mercator.invert(t,r),[e,c]=i.wgs84_mercator.invert(o,r),_=super.get_ticks_no_defaults(s,e,r,n),a=[];for(const t of _.major)if(i.in_bounds(t,"lon")){const[o]=i.wgs84_mercator.compute(t,c);a.push(o)}const m=[];for(const t of _.minor)if(i.in_bounds(t,"lon")){const[o]=i.wgs84_mercator.compute(t,c);m.push(o)}return{major:a,minor:m}}_get_ticks_lat(t,o,r,n){const[,s]=i.wgs84_mercator.invert(r,t),[e,c]=i.wgs84_mercator.invert(r,o),_=super.get_ticks_no_defaults(s,c,r,n),a=[];for(const t of _.major)if(i.in_bounds(t,"lat")){const[,o]=i.wgs84_mercator.compute(e,t);a.push(o)}const m=[];for(const t of _.minor)if(i.in_bounds(t,"lat")){const[,o]=i.wgs84_mercator.compute(e,t);m.push(o)}return{major:a,minor:m}}}r.MercatorTicker=c,c.__name__="MercatorTicker",c.init_MercatorTicker()},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});var t=e(204);o.CustomJS=t.CustomJS;var u=e(206);o.OpenURL=u.OpenURL},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),u=t(205),c=n.__importStar(t(18)),r=t(13),a=t(29);class i extends u.Callback{constructor(t){super(t)}static init_CustomJS(){this.define({args:[c.Any,{}],code:[c.String,""]})}get names(){return r.keys(this.args)}get values(){return r.values(this.args)}get func(){const t=a.use_strict(this.code);return new Function(…this.names,"cb_obj","cb_data",t)}execute(t,e={}){return this.func.apply(t,this.values.concat(t,e))}}s.CustomJS=i,i.__name__="CustomJS",i.init_CustomJS()},n function _(e,c,l){Object.defineProperty(l,"__esModule",{value:!0});const a=e(81);class n extends a.Model{constructor(e){super(e)}}l.Callback=n,n.__name__="Callback"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(1),i=e(205),s=e(187),r=e(8),c=o.__importStar(e(18));class a extends i.Callback{constructor(e){super(e)}static init_OpenURL(){this.define({url:[c.String,"http://"],same_tab:[c.Boolean,!1]})}execute(e,{source:t}){const n=e=>{const n=s.replace_placeholders(this.url,t,e);if(!r.isString(n))throw new Error("HTML output is not supported in this context");this.same_tab?window.location.href=n:window.open(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=a,a.__name__="OpenURL",a.init_OpenURL()},n function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var n=a(77);r.Canvas=n.Canvas;var s=a(208);r.CartesianFrame=s.CartesianFrame},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const a=e(209),_=e(146),n=e(157),r=e(158),i=e(210),g=e(98),c=e(212),o=e(13),l=e(11);class h extends c.LayoutItem{constructor(e,t,s,a,_={},n={}){super(),this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=n,l.assert(null==e.source_range&&null==e.target_range),l.assert(null==t.source_range&&null==t.target_range),this._configure_scales()}_get_ranges(e,t){return new Map(o.entries(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s){const c=new Map;for(const[o,l]of t){if((l instanceof i.DataRange1d||l instanceof r.Range1d)&&!(e instanceof _.ContinuousScale))throw new Error(Range ${l.type} is incompatible is Scale ${e.type});if(l instanceof g.FactorRange&&!(e instanceof a.CategoricalScale))throw new Error(Range ${l.type} is incompatible is Scale ${e.type});e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint="log");const t=e.clone();t.setv({source_range:l,target_range:s}),c.set(o,t)}return c}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new r.Range1d({start:e.left,end:e.right}),this._y_target=new r.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}_set_geometry(e,t){super._set_geometry(e,t),this._update_scales()}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get("default")}get y_scale(){return this._y_scales.get("default")}get xscales(){return o.to_object(this.x_scales)}get yscales(){return o.to_object(this.y_scales)}}s.CartesianFrame=h,h.__name__="CartesianFrame"},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(147);class _ extends n.Scale{constructor(e){super(e)}compute(e){return super._linear_compute(this.source_range.synthetic(e))}v_compute(e){return super._linear_v_compute(this.source_range.v_synthetic(e))}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}t.CategoricalScale=_,_.__name__="CategoricalScale"},n function _(t,i,n){Object.defineProperty(n,"__esModule",{value:!0});const e=t(1),a=t(211),s=t(90),l=t(19),_=e.__importStar(t(18)),o=e.__importStar(t(79)),r=t(9);class h extends a.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}static init_DataRange1d(){this.define({start:[_.Number],end:[_.Number],range_padding:[_.Number,.1],range_padding_units:[_.PaddingUnits,"percent"],flipped:[_.Boolean,!1],follow:[_.StartEnd],follow_interval:[_.Number],default_span:[_.Number,2],only_visible:[_.Boolean,!1]}),this.internal({scale_hint:[_.String,"auto"]})}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const t=this.names;let i=this.renderers;if(0==i.length)for(const t of this.plots){const n=t.renderers.filter(t=>t instanceof s.GlyphRenderer);i=i.concat(n)}t.length>0&&(i=i.filter(i=>r.includes(t,i.name))),l.logger.debug(computed ${i.length} renderers for ${this});for(const t of i)l.logger.trace(" - "+t);return i}_compute_plot_bounds(t,i){let n=o.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=o.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=o.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return e<i*a?e=i*a:a=e/i,n.x1=s+.5*e,n.x0=s-.5*e,n.y1=l+.5*a,n.y0=l-.5*a,n}_compute_min_max(t,i){let n,e,a=o.empty();for(const i of t)a=o.union(a,i);return[n,e]=0==i?[a.x0,a.x1]:[a.y0,a.y1],[n,e]}_compute_range(t,i){const n=this.range_padding;let e,a;if(null!=this._initial_start&&(t=this._initial_start),null!=this._initial_end&&(i=this._initial_end),"log"==this.scale_hint){let s,_;if((isNaN(t)||!isFinite(t)||t<=0)&&(t=isNaN(i)||!isFinite(i)||i<=0?.1:i/100,l.logger.warn("could not determine minimum data value for log axis, DataRange1d using value "+t)),(isNaN(i)||!isFinite(i)||i<=0)&&(i=isNaN(t)||!isFinite(t)||t<=0?10:100*t,l.logger.warn("could not determine maximum data value for log axis, DataRange1d using value "+i)),i==t)_=this.default_span+.001,s=Math.log(t)/Math.log(10);else{let e,a;"percent"==this.range_padding_units?(e=Math.log(t)/Math.log(10),a=Math.log(i)/Math.log(10),_=(a-e)*(1+n)):(e=Math.log(t-n)/Math.log(10),a=Math.log(i+n)/Math.log(10),_=a-e),s=(e+a)/2}e=10**(s-_/2),a=10**(s+_/2)}else{let s;s=i==t?this.default_span:"percent"==this.range_padding_units?(i-t)*(1+n):i-t+2*n;const l=(i+t)/2;e=l-s/2,a=l+s/2}let s=1;this.flipped&&([e,a]=[a,e],s=-1);const _=this.follow_interval;return null!=_&&Math.abs(e-a)>_&&("start"==this.follow?a=e+s*_:"end"==this.follow&&(e=a-s*_)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.values(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&("log"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&("log"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);const[h,d]=[this.start,this.end];if(o!=h||r!=d){const t={};o!=h&&(t.start=o),r!=d&&(t.end=r),this.setv(t)}"auto"==this.bounds&&this.setv({bounds:[o,r]},{silent:!0}),this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=h,h.__name__="DataRange1d",h.init_DataRange1d()},n function _(e,a,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),r=e(99),s=n.__importStar(e(18));class _ extends r.Range{constructor(e){super(e)}static init_DataRange(){this.define({names:[s.Array,[]],renderers:[s.Array,[]]})}}t.DataRange=_,_.__name__="DataRange",_.init_DataRange()},n function _(a,o,t){Object.defineProperty(t,"__esModule",{value:!0});var e=a(213);t.Sizeable=e.Sizeable,t.SizingPolicy=e.SizingPolicy;var i=a(214);t.Layoutable=i.Layoutable,t.LayoutItem=i.LayoutItem;var n=a(215);t.HStack=n.HStack,t.VStack=n.VStack,t.AnchorLayout=n.AnchorLayout;var r=a(216);t.Grid=r.Grid,t.Row=r.Row,t.Column=r.Column;var c=a(217);t.ContentBox=c.ContentBox,t.VariadicBox=c.VariadicBox},n function _(t,h,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(21),{min:d,max:n}=Math;class w{constructor(t={}){this.width=null!=t.width?t.width:0,this.height=null!=t.height?t.height:0}bounded_to({width:t,height:h}){return new w({width:this.width==1/0&&null!=t?t:this.width,height:this.height==1/0&&null!=h?h:this.height})}expanded_to({width:t,height:h}){return new w({width:t!=1/0?n(this.width,t):this.width,height:h!=1/0?n(this.height,h):this.height})}expand_to({width:t,height:h}){this.width=n(this.width,t),this.height=n(this.height,h)}narrowed_to({width:t,height:h}){return new w({width:d(this.width,t),height:d(this.height,h)})}narrow_to({width:t,height:h}){this.width=d(this.width,t),this.height=d(this.height,h)}grow_by({left:t,right:h,top:i,bottom:e}){const d=this.width+t+h,n=this.height+i+e;return new w({width:d,height:n})}shrink_by({left:t,right:h,top:i,bottom:e}){const d=n(this.width-t-h,0),s=n(this.height-i-e,0);return new w({width:d,height:s})}map(t,h){return new w({width:t(this.width),height:(null!=h?h:t)(this.height)})}}i.Sizeable=w,w.__name__="Sizeable",i.SizingPolicy=e.Enum("fixed","fit","min","max")},n function _(i,t,h){Object.defineProperty(h,"__esModule",{value:!0});const e=i(213),s=i(79),{min:n,max:g,round:a}=Math;class l{constructor(){this._bbox=new s.BBox,this._inner_bbox=new s.BBox}get bbox(){return this._bbox}get inner_bbox(){return this._inner_bbox}get sizing(){return this._sizing}set_sizing(i){const t=i.width_policy||"fit",h=i.width,e=null!=i.min_width?i.min_width:0,s=null!=i.max_width?i.max_width:1/0,n=i.height_policy||"fit",g=i.height,a=null!=i.min_height?i.min_height:0,l=null!=i.max_height?i.max_height:1/0,_=i.aspect,d=i.margin||{top:0,right:0,bottom:0,left:0},r=!1!==i.visible,w=i.halign||"start",o=i.valign||"start";this._sizing={width_policy:t,min_width:e,width:h,max_width:s,height_policy:n,min_height:a,height:g,max_height:l,aspect:_,margin:d,visible:r,halign:w,valign:o,size:{width:h,height:g},min_size:{width:e,height:a},max_size:{width:s,height:l}},this._init()}_init(){}_set_geometry(i,t){this._bbox=i,this._inner_bbox=t}set_geometry(i,t){this._set_geometry(i,t||i)}is_width_expanding(){return"max"==this.sizing.width_policy}is_height_expanding(){return"max"==this.sizing.height_policy}apply_aspect(i,{width:t,height:h}){const{aspect:e}=this.sizing;if(null!=e){const{width_policy:s,height_policy:n}=this.sizing,g=(i,t)=>{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if("fixed"!=s&&"fixed"!=n)if(s==n){const s=t,n=a(t/e),g=a(h*e),l=h;Math.abs(i.width-s)+Math.abs(i.height-n)<=Math.abs(i.width-g)+Math.abs(i.height-l)?(t=s,h=n):(t=g,h=l)}else g(s,n)?h=a(t/e):t=a(h*e);else"fixed"==s?h=a(t/e):"fixed"==n&&(t=a(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>"fixed"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>"fixed"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,s=new e.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(s),g=this.clip_size(n),a=t(g.width),l=h(g.height),_=this.apply_aspect(s,{width:a,height:l});return Object.assign(Object.assign({},n),_)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new s.BBox({left:0,top:0,width:h,height:e});let g=void 0;if(null!=t.inner){const{left:i,top:n,right:a,bottom:l}=t.inner;g=new s.BBox({left:i,top:n,right:h-a,bottom:e-l})}this.set_geometry(n,g)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_width(i){return g(this.sizing.min_width,n(i,this.sizing.max_width))}clip_height(i){return g(this.sizing.min_height,n(i,this.sizing.max_height))}clip_size({width:i,height:t}){return{width:this.clip_width(i),height:this.clip_height(t)}}}h.Layoutable=l,l.__name__="Layoutable";class _ extends l{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;let e,s;if(i.width==1/0)e=null!=this.sizing.width?this.sizing.width:0;else switch(t){case"fixed":e=null!=this.sizing.width?this.sizing.width:0;break;case"min":e=null!=this.sizing.width?n(i.width,this.sizing.width):0;break;case"fit":e=null!=this.sizing.width?n(i.width,this.sizing.width):i.width;break;case"max":e=null!=this.sizing.width?g(i.width,this.sizing.width):i.width}if(i.height==1/0)s=null!=this.sizing.height?this.sizing.height:0;else switch(h){case"fixed":s=null!=this.sizing.height?this.sizing.height:0;break;case"min":s=null!=this.sizing.height?n(i.height,this.sizing.height):0;break;case"fit":s=null!=this.sizing.height?n(i.height,this.sizing.height):i.height;break;case"max":s=null!=this.sizing.height?g(i.height,this.sizing.height):i.height}return{width:e,height:s}}}h.LayoutItem=_,_.__name__="LayoutItem";class d extends l{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case"fixed":return null!=this.sizing.width?this.sizing.width:t.width;case"min":return t.width;case"fit":return h.width;case"max":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case"fixed":return null!=this.sizing.height?this.sizing.height:t.height;case"min":return t.height;case"fit":return h.height;case"max":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=d,d.__name__="ContentLayoutable"},n function _(t,e,h){Object.defineProperty(h,"__esModule",{value:!0});const o=t(214),r=t(79);class i extends o.Layoutable{constructor(){super(…arguments),this.children=[]}}h.Stack=i,i.__name__="Stack";class s extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e+=o.width,h=Math.max(h,o.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{top:h,bottom:o}=t;let{left:i}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({left:i,width:e,top:h,bottom:o})),i+=e}}}h.HStack=s,s.__name__="HStack";class n extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e=Math.max(e,o.width),h+=o.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{left:h,right:o}=t;let{top:i}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({top:i,height:e,left:h,right:o})),i+=e}}}h.VStack=n,n.__name__="VStack";class c extends o.Layoutable{constructor(){super(…arguments),this.children=[]}_measure(t){let e=0,h=0;for(const{layout:o}of this.children){const r=o.measure(t);e=Math.max(e,r.width),h=Math.max(h,r.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);for(const{layout:e,anchor:h,margin:o}of this.children){const{left:i,right:s,top:n,bottom:c,hcenter:a,vcenter:_}=t,{width:g,height:d}=e.measure(t);let m;switch(h){case"top_left":m=new r.BBox({left:i+o,top:n+o,width:g,height:d});break;case"top_center":m=new r.BBox({hcenter:a,top:n+o,width:g,height:d});break;case"top_right":m=new r.BBox({right:s-o,top:n+o,width:g,height:d});break;case"bottom_right":m=new r.BBox({right:s-o,bottom:c-o,width:g,height:d});break;case"bottom_center":m=new r.BBox({hcenter:a,bottom:c-o,width:g,height:d});break;case"bottom_left":m=new r.BBox({left:i+o,bottom:c-o,width:g,height:d});break;case"center_left":m=new r.BBox({left:i+o,vcenter:_,width:g,height:d});break;case"center":m=new r.BBox({hcenter:a,vcenter:_,width:g,height:d});break;case"center_right":m=new r.BBox({right:s-o,vcenter:_,width:g,height:d})}e.set_geometry(m)}}}h.AnchorLayout=c,c.__name__="AnchorLayout"},n function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const e=t(213),o=t(214),n=t(8),r=t(79),h=t(9),{max:l,round:c}=Math;class a{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}a.__name__="DefaultMap";class g{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=l(this._nrows,s+1),this._ncols=l(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter(({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1).map(({data:t})=>t)}row(t){return this._items.filter(({span:i})=>i.r0<=t&&t<=i.r1).map(({data:t})=>t)}col(t){return this._items.filter(({span:i})=>i.c0<=t&&t<=i.c1).map(({data:t})=>t)}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new g;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}g.__name__="Container";class p extends o.Layoutable{constructor(t=[]){super(),this.items=t,this.rows="auto",this.cols="auto",this.spacing=0,this.absolute=!1}is_width_expanding(){if(super.is_width_expanding())return!0;if("fixed"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return h.some(t,t=>"max"==t.policy)}is_height_expanding(){if(super.is_height_expanding())return!0;if("fixed"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return h.some(t,t=>"max"==t.policy)}_init(){super._init();const t=new g;for(const{layout:i,row:s,col:e,row_span:o,col_span:n}of this.items)if(i.sizing.visible){const r=s,h=e,l=s+(null!=o?o:1)-1,c=e+(null!=n?n:1)-1;t.add({r0:r,c0:h,r1:l,c1:c},i)}const{nrows:i,ncols:s}=t,e=new Array(i);for(let s=0;s<i;s++){const i=(()=>{const t=n.isPlainObject(this.rows)?this.rows[s]||this.rows[""]:this.rows;return null==t?{policy:"auto"}:n.isNumber(t)?{policy:"fixed",height:t}:n.isString(t)?{policy:t}:t})(),o=i.align||"auto";if("fixed"==i.policy)e[s]={policy:"fixed",height:i.height,align:o};else if("min"==i.policy)e[s]={policy:"min",align:o};else if("fit"==i.policy||"max"==i.policy)e[s]={policy:i.policy,flex:i.flex||1,align:o};else{if("auto"!=i.policy)throw new Error("unrechable");h.some(t.row(s),t=>t.is_height_expanding())?e[s]={policy:"max",flex:1,align:o}:e[s]={policy:"min",align:o}}}const o=new Array(s);for(let i=0;i<s;i++){const s=(()=>{const t=n.isPlainObject(this.cols)?this.cols[i]||this.cols[""]:this.cols;return null==t?{policy:"auto"}:n.isNumber(t)?{policy:"fixed",width:t}:n.isString(t)?{policy:t}:t})(),e=s.align||"auto";if("fixed"==s.policy)o[i]={policy:"fixed",width:s.width,align:e};else if("min"==s.policy)o[i]={policy:"min",align:e};else if("fit"==s.policy||"max"==s.policy)o[i]={policy:s.policy,flex:s.flex||1,align:e};else{if("auto"!=s.policy)throw new Error("unrechable");h.some(t.col(i),t=>t.is_width_expanding())?o[i]={policy:"max",flex:1,align:e}:o[i]={policy:"min",align:e}}}const[r,l]=n.isNumber(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:t,nrows:i,ncols:s,rows:e,cols:o,rspacing:r,cspacing:l}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:h.sum(t)+(s-1)*o,width:h.sum(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:o,rows:n,cols:r,rspacing:h,cspacing:a}=this._state,p=new Array(s);for(let t=0;t<s;t++){const i=n[t];p[t]="fixed"==i.policy?i.height:0}const _=new Array(o);for(let t=0;t<o;t++){const i=r[t];_[t]="fixed"==i.policy?i.width:0}const f=new g;i.foreach((i,s)=>{const{r0:o,c0:g,r1:d,c1:w}=i,u=(d-o)*h,m=(w-g)*a;let y=0;for(let i=o;i<=d;i++)y+=t(i,g).height;y+=u;let x=0;for(let i=g;i<=w;i++)x+=t(o,i).width;x+=m;const b=s.measure({width:x,height:y});f.add(i,{layout:s,size_hint:b});const z=new e.Sizeable(b).grow_by(s.sizing.margin);z.height-=u,z.width-=m;const j=[];for(let t=o;t<=d;t++){const i=n[t];"fixed"==i.policy?z.height-=i.height:j.push(t)}if(z.height>0){const t=c(z.height/j.length);for(const i of j)p[i]=l(p[i],t)}const O=[];for(let t=g;t<=w;t++){const i=r[t];"fixed"==i.policy?z.width-=i.width:O.push(t)}if(z.width>0){const t=c(z.width/O.length);for(const i of O)_[i]=l(_[i],t)}});return{size:this._measure_totals(p,_),row_heights:p,col_widths:_,size_hints:f}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:r}=this._state,h=this._measure_cells((t,i)=>{const s=e[t],n=o[i];return{width:"fixed"==n.policy?n.width:1/0,height:"fixed"==s.policy?s.height:1/0}});let a;a="fixed"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:h.size.height;let g,p=0;for(let t=0;t<i;t++){const i=e[t];"fit"==i.policy||"max"==i.policy?p+=i.flex:a-=h.row_heights[t]}if(a-=(i-1)*n,0!=p&&a>0)for(let t=0;t<i;t++){const i=e[t];if("fit"==i.policy||"max"==i.policy){const s=c(a*(i.flex/p));a-=s,h.row_heights[t]=s,p-=i.flex}}else if(a<0){let t=0;for(let s=0;s<i;s++){"fixed"!=e[s].policy&&t++}let s=-a;for(let o=0;o<i;o++){if("fixed"!=e[o].policy){const i=h.row_heights[o],e=c(s/t);h.row_heights[o]=l(i-e,0),s-=e>i?i:e,t–}}}g="fixed"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:h.size.width;let _=0;for(let t=0;t<s;t++){const i=o[t];"fit"==i.policy||"max"==i.policy?_+=i.flex:g-=h.col_widths[t]}if(g-=(s-1)*r,0!=_&&g>0)for(let t=0;t<s;t++){const i=o[t];if("fit"==i.policy||"max"==i.policy){const s=c(g*(i.flex/_));g-=s,h.col_widths[t]=s,_-=i.flex}}else if(g<0){let t=0;for(let i=0;i<s;i++){"fixed"!=o[i].policy&&t++}let i=-g;for(let e=0;e<s;e++){if("fixed"!=o[e].policy){const s=h.col_widths[e],o=c(i/t);h.col_widths[e]=l(s-o,0),i-=o>s?s:o,t–}}}const{row_heights:f,col_widths:d,size_hints:w}=this._measure_cells((t,i)=>({width:h.col_widths[i],height:h.row_heights[t]}));return{size:this._measure_totals(f,d),row_heights:f,col_widths:d,size_hints:w}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:h,col_widths:g,size_hints:p}=this._measure_grid(t),_=this._state.rows.map((t,i)=>Object.assign(Object.assign({},t),{top:0,height:h[i],get bottom(){return this.top+this.height}})),f=this._state.cols.map((t,i)=>Object.assign(Object.assign({},t),{left:0,width:g[i],get right(){return this.left+this.width}})),d=p.map((t,i)=>Object.assign(Object.assign({},i),{outer:new r.BBox,inner:new r.BBox}));for(let i=0,e=this.absolute?t.top:0;i<s;i++){const t=_[i];t.top=e,e+=t.height+o}for(let i=0,s=this.absolute?t.left:0;i<e;i++){const t=f[i];t.left=s,s+=t.width+n}d.foreach(({r0:t,c0:i,r1:s,c1:e},h)=>{const{layout:l,size_hint:a}=h,{sizing:g}=l,{width:p,height:d}=a,w=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=f[e].width;return s}(i,e),u=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=_[e].height;return s}(t,s),m=i==e&&"auto"!=f[i].align?f[i].align:g.halign,y=t==s&&"auto"!=_[t].align?_[t].align:g.valign;let x=f[i].left;"start"==m?x+=g.margin.left:"center"==m?x+=c((w-p)/2):"end"==m&&(x+=w-g.margin.right-p);let b=_[t].top;"start"==y?b+=g.margin.top:"center"==y?b+=c((u-d)/2):"end"==y&&(b+=u-g.margin.bottom-d),h.outer=new r.BBox({left:x,top:b,width:p,height:d})});const w=_.map(()=>({start:new a(()=>0),end:new a(()=>0)})),u=f.map(()=>({start:new a(()=>0),end:new a(()=>0)}));d.foreach(({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:r}=o;null!=r&&(w[t].start.apply(n.top,t=>l(t,r.top)),w[s].end.apply(_[s].bottom-n.bottom,t=>l(t,r.bottom)),u[i].start.apply(n.left,t=>l(t,r.left)),u[e].end.apply(f[e].right-n.right,t=>l(t,r.right)))}),d.foreach(({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:h}=o;function l({left:t,right:i,top:s,bottom:e}){const o=h.width-t-i,n=h.height-s-e;return new r.BBox({left:t,top:s,width:o,height:n})}if(null!=n.inner){let r=l(n.inner);if(!1!==n.align){const o=w[t].start.get(h.top),n=w[s].end.get(_[s].bottom-h.bottom),c=u[i].start.get(h.left),a=u[e].end.get(f[e].right-h.right);try{r=l({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=r}else o.inner=h}),d.foreach((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)})}}s.Grid=p,p.__name__="Grid";class _ extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:0,col:i})),this.rows="fit"}}s.Row=_,_.__name__="Row";class f extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:i,col:0})),this.cols="fit"}}s.Column=f,f.__name__="Column"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(214),i=e(213),a=e(72);class c extends n.ContentLayoutable{constructor(e){super(),this.content_size=a.unsized(e,()=>new i.Sizeable(a.size(e)))}_content_size(){return this.content_size}}s.ContentBox=c,c.__name__="ContentBox";class o extends n.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new i.Sizeable(e).bounded_to(this.sizing.size);return a.sized(this.el,t,()=>{const e=new i.Sizeable(a.content_size(this.el)),{border:t,padding:s}=a.extents(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)})}}s.VariadicBox=o,o.__name__="VariadicBox";class r extends o{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=r,r.__name__="CachedVariadicBox"},n function _(e,r,u){Object.defineProperty(u,"__esModule",{value:!0});var a=e(219);u.Expression=a.Expression;var n=e(220);u.Stack=n.Stack;var o=e(221);u.CumSum=o.CumSum},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(81);class i extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._connected=new Set,this._result=new Map}v_compute(e){this._connected.has(e)||(this.connect(e.change,()=>this._result.delete(e)),this.connect(e.patching,()=>this._result.delete(e)),this.connect(e.streaming,()=>this._result.delete(e)),this._connected.add(e));let t=this._result.get(e);return null==t&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=i,i.__name__="Expression"},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),i=t(219),s=t(24),o=r.__importStar(t(18));class a extends i.Expression{constructor(t){super(t)}static init_Stack(){this.define({fields:[o.Array,[]]})}_v_compute(t){var e;const n=null!==(e=t.get_length())&&void 0!==e?e:0,r=new s.NumberArray(n);for(const e of this.fields){const i=t.data[e];if(null!=i)for(let t=0,e=Math.min(n,i.length);t<e;t++)r[t]+=i[t]}return r}}n.Stack=a,a.__name__="Stack",a.init_Stack()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e(1),u=e(219),r=e(24),_=i.__importStar(e(18));class o extends u.Expression{constructor(e){super(e)}static init_CumSum(){this.define({field:[_.String],include_zero:[_.Boolean,!1]})}_v_compute(e){const t=new r.NumberArray(e.get_length()||0),n=e.data[this.field],i=this.include_zero?1:0;t[0]=this.include_zero?0:n[0];for(let e=1;e<t.length;e++)t[e]=t[e-1]+n[e-i];return t}}n.CumSum=o,o.__name__="CumSum",o.init_CumSum()},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});var l=e(223);t.BooleanFilter=l.BooleanFilter;var i=e(225);t.CustomJSFilter=i.CustomJSFilter;var o=e(224);t.Filter=o.Filter;var F=e(226);t.GroupFilter=F.GroupFilter;var a=e(227);t.IndexFilter=a.IndexFilter},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),l=e(224),i=o.__importStar(e(18)),s=e(24);class r extends l.Filter{constructor(e){super(e)}static init_BooleanFilter(){this.define({booleans:[i.Array,null]})}compute_indices(e){const n=e.length,{booleans:t}=this;return null==t?s.Indices.all_set(n):s.Indices.from_booleans(n,t)}}t.BooleanFilter=r,r.__name__="BooleanFilter",r.init_BooleanFilter()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Filter=r,r.__name__="Filter"},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e(1),n=e(224),i=s.__importStar(e(18)),o=e(24),u=e(13),c=e(8),a=e(29);class l extends n.Filter{constructor(e){super(e)}static init_CustomJSFilter(){this.define({args:[i.Any,{}],code:[i.String,""]})}get names(){return u.keys(this.args)}get values(){return u.values(this.args)}get func(){const e=a.use_strict(this.code);return new Function(…this.names,"source",e)}compute_indices(e){const t=e.length,r=this.func(…this.values,e);if(null==r)return o.Indices.all_set(t);if(c.isArrayOf(r,c.isInteger))return o.Indices.from_indices(t,r);if(c.isArrayOf(r,c.isBoolean))return o.Indices.from_booleans(t,r);throw new Error("expect an array of integers or booleans, or null, got "+r)}}r.CustomJSFilter=l,l.__name__="CustomJSFilter",l.init_CustomJSFilter()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),i=e(224),o=r.__importStar(e(18)),u=e(24),s=e(19);class c extends i.Filter{constructor(e){super(e)}static init_GroupFilter(){this.define({column_name:[o.String],group:[o.String]})}compute_indices(e){const t=e.get_column(this.column_name);if(null==t)return s.logger.warn(${this}: groupby column ‘${this.column_name}’ not found in the data source),new u.Indices(e.length,1);{const n=new u.Indices(e.length);for(let e=0;e<n.size;e++)t[e]===this.group&&n.set(e);return n}}}n.GroupFilter=c,c.__name__="GroupFilter",c.init_GroupFilter()},n function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),s=e(224),r=t.__importStar(e(18)),c=e(24);class l extends s.Filter{constructor(e){super(e)}static init_IndexFilter(){this.define({indices:[r.Array,null]})}compute_indices(e){const i=e.length,{indices:n}=this;return null==n?c.Indices.all_set(i):c.Indices.from_indices(i,n)}}n.IndexFilter=l,l.__name__="IndexFilter",l.init_IndexFilter()},n function _(r,t,a){Object.defineProperty(a,"__esModule",{value:!0});var e=r(130);a.BasicTickFormatter=e.BasicTickFormatter;var c=r(181);a.CategoricalTickFormatter=c.CategoricalTickFormatter;var i=r(185);a.DatetimeTickFormatter=i.DatetimeTickFormatter;var o=r(229);a.FuncTickFormatter=o.FuncTickFormatter;var m=r(198);a.LogTickFormatter=m.LogTickFormatter;var F=r(201);a.MercatorTickFormatter=F.MercatorTickFormatter;var k=r(230);a.NumeralTickFormatter=k.NumeralTickFormatter;var T=r(231);a.PrintfTickFormatter=T.PrintfTickFormatter;var v=r(131);a.TickFormatter=v.TickFormatter},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),s=t(131),i=r.__importStar(t(18)),c=t(13),a=t(29);class u extends s.TickFormatter{constructor(t){super(t)}static init_FuncTickFormatter(){this.define({args:[i.Any,{}],code:[i.String,""]})}get names(){return c.keys(this.args)}get values(){return c.values(this.args)}_make_func(){const t=a.use_strict(this.code);return new Function("tick","index","ticks",…this.names,t)}doFormat(t,e){const n=this._make_func().bind({});return t.map((t,e,r)=>n(t,e,r,…this.values))}}n.FuncTickFormatter=u,u.__name__="FuncTickFormatter",u.init_FuncTickFormatter()},n function _(r,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=r(1),o=e.__importStar(r(188)),a=r(131),i=e.__importStar(r(18));class u extends a.TickFormatter{constructor(r){super(r)}static init_NumeralTickFormatter(){this.define({format:[i.String,"0,0"],language:[i.String,"en"],rounding:[i.RoundingFunction,"round"]})}get _rounding_fn(){switch(this.rounding){case"round":case"nearest":return Math.round;case"floor":case"rounddown":return Math.floor;case"ceil":case"roundup":return Math.ceil}}doFormat(r,t){const{format:n,language:e,_rounding_fn:a}=this;return r.map(r=>o.format(r,n,e,a))}}n.NumeralTickFormatter=u,u.__name__="NumeralTickFormatter",u.init_NumeralTickFormatter()},n function _(t,r,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1),n=t(131),o=t(187),a=e.__importStar(t(18));class c extends n.TickFormatter{constructor(t){super(t)}static init_PrintfTickFormatter(){this.define({format:[a.String,"%s"]})}doFormat(t,r){return t.map(t=>o.sprintf(this.format,t))}}i.PrintfTickFormatter=c,c.__name__="PrintfTickFormatter",c.init_PrintfTickFormatter()},n function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var v=a(233);r.AnnularWedge=v.AnnularWedge;var l=a(234);r.Annulus=l.Annulus;var t=a(235);r.Arc=t.Arc;var i=a(236);r.Bezier=i.Bezier;var n=a(237);r.Circle=n.Circle;var u=a(241);r.CenterRotatable=u.CenterRotatable;var c=a(242);r.Ellipse=c.Ellipse;var g=a(243);r.EllipseOval=g.EllipseOval;var A=a(94);r.Glyph=A.Glyph;var p=a(111);r.HArea=p.HArea;var s=a(244);r.HBar=s.HBar;var d=a(246);r.HexTile=d.HexTile;var R=a(247);r.Image=R.Image;var o=a(249);r.ImageRGBA=o.ImageRGBA;var y=a(250);r.ImageURL=y.ImageURL;var h=a(92);r.Line=h.Line;var m=a(252);r.MultiLine=m.MultiLine;var B=a(253);r.MultiPolygons=B.MultiPolygons;var P=a(254);r.Oval=P.Oval;var G=a(110);r.Patch=G.Patch;var H=a(255);r.Patches=H.Patches;var I=a(256);r.Quad=I.Quad;var L=a(257);r.Quadratic=L.Quadratic;var M=a(258);r.Ray=M.Ray;var O=a(259);r.Rect=O.Rect;var x=a(260);r.Segment=x.Segment;var C=a(261);r.Step=C.Step;var E=a(262);r.Text=E.Text;var Q=a(113);r.VArea=Q.VArea;var S=a(263);r.VBar=S.VBar;var T=a(264);r.Wedge=T.Wedge;var V=a(93);r.XYGlyph=V.XYGlyph},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),_=e(24),o=i.__importStar(e(18)),d=e(10),h=e(88);class u extends r.XYGlyphView{_map_data(){"data"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,"data"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius,this._angle=new _.NumberArray(this._start_angle.length);for(let e=0,t=this._start_angle.length;e<t;e++)this._angle[e]=this._end_angle[e]-this._start_angle[e]}_render(e,t,{sx:s,sy:i,_start_angle:r,_angle:n,sinner_radius:a,souter_radius:_}){const o=this.model.properties.direction.value();for(const d of t)isNaN(s[d]+i[d]+a[d]+_[d]+r[d]+n[d])||(e.translate(s[d],i[d]),e.rotate(r[d]),e.beginPath(),e.moveTo(_[d],0),e.arc(0,0,_[d],0,n[d],o),e.rotate(n[d]),e.lineTo(a[d],0),e.arc(0,0,a[d],0,-n[d],!o),e.closePath(),e.rotate(-n[d]-r[d]),e.translate(-s[d],-i[d]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,d),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,d),e.stroke()))}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),r=this.renderer.yscale.invert(s);let n,a,_,o;if("data"==this.model.properties.outer_radius.units)n=i-this.max_outer_radius,_=i+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const e=t-this.max_outer_radius,i=t+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(e,i);const r=s-this.max_outer_radius,d=s+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,d)}const u=[];for(const e of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const t=this.souter_radius[e]**2,s=this.sinner_radius[e]**2,[n,a]=this.renderer.xscale.r_compute(i,this._x[e]),[_,o]=this.renderer.yscale.r_compute(r,this._y[e]),d=(n-a)**2+(_-o)**2;d<=t&&d>=s&&u.push(e)}const l=this.model.properties.direction.value(),c=[];for(const e of u){const i=Math.atan2(s-this.sy[e],t-this.sx[e]);d.angle_between(-i,-this._start_angle[e],-this._end_angle[e],l)&&c.push(e)}return new h.Selection({indices:c})}draw_legend_for_index(e,t,s){n.generic_area_legend(this.visuals,e,t,s)}scenterxy(e){const t=(this.sinner_radius[e]+this.souter_radius[e])/2,s=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+t*Math.cos(s),this.sy[e]+t*Math.sin(s)]}}s.AnnularWedgeView=u,u.__name__="AnnularWedgeView";class l extends r.XYGlyph{constructor(e){super(e)}static init_AnnularWedge(){this.prototype.default_view=u,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[o.Direction,"anticlock"],inner_radius:[o.DistanceSpec],outer_radius:[o.DistanceSpec],start_angle:[o.AngleSpec],end_angle:[o.AngleSpec]})}}s.AnnularWedge=l,l.__name__="AnnularWedge",l.init_AnnularWedge()},n function _(s,i,e){Object.defineProperty(e,"__esModule",{value:!0});const t=s(1),r=s(93),n=s(28),a=t.__importStar(s(18)),_=s(32),u=s(88);class o extends r.XYGlyphView{_map_data(){"data"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,"data"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius}_render(s,i,{sx:e,sy:t,sinner_radius:r,souter_radius:n}){for(const a of i)if(!isNaN(e[a]+t[a]+r[a]+n[a])){if(this.visuals.fill.doit){if(this.visuals.fill.set_vectorize(s,a),s.beginPath(),_.is_ie)for(const i of[!1,!0])s.arc(e[a],t[a],r[a],0,Math.PI,i),s.arc(e[a],t[a],n[a],Math.PI,0,!i);else s.arc(e[a],t[a],r[a],0,2*Math.PI,!0),s.arc(e[a],t[a],n[a],2*Math.PI,0,!1);s.fill()}this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI),s.moveTo(e[a]+n[a],t[a]),s.arc(e[a],t[a],n[a],0,2*Math.PI),s.stroke())}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let n,a,_,o;if("data"==this.model.properties.outer_radius.units)n=t-this.max_outer_radius,_=t+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const s=i-this.max_outer_radius,t=i+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_outer_radius,u=e+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,u)}const d=[];for(const s of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const i=this.souter_radius[s]**2,e=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(t,this._x[s]),[_,u]=this.renderer.yscale.r_compute(r,this._y[s]),o=(n-a)**2+(_-u)**2;o<=i&&o>=e&&d.push(s)}return new u.Selection({indices:d})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},n){const a=n+1,_=new Array(a);_[n]=(i+t)/2;const u=new Array(a);u[n]=(e+r)/2;const o=.5*Math.min(Math.abs(t-i),Math.abs(r-e)),d=new Array(a);d[n]=.4*o;const h=new Array(a);h[n]=.8*o,this._render(s,[n],{sx:_,sy:u,sinner_radius:d,souter_radius:h})}}e.AnnulusView=o,o.__name__="AnnulusView";class d extends r.XYGlyph{constructor(s){super(s)}static init_Annulus(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({inner_radius:[a.DistanceSpec],outer_radius:[a.DistanceSpec]})}}e.Annulus=d,d.__name__="Annulus",d.init_Annulus()},n function _(e,i,s){Object.defineProperty(s,"__esModule",{value:!0});const t=e(1),r=e(93),n=e(100),a=e(28),_=t.__importStar(e(18));class c extends r.XYGlyphView{_map_data(){"data"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,i,{sx:s,sy:t,sradius:r,_start_angle:n,_end_angle:a}){if(this.visuals.line.doit){const _=this.model.properties.direction.value();for(const c of i)isNaN(s[c]+t[c]+r[c]+n[c]+a[c])||(e.beginPath(),e.arc(s[c],t[c],r[c],n[c],a[c],_),this.visuals.line.set_vectorize(e,c),e.stroke())}}draw_legend_for_index(e,i,s){n.generic_line_legend(this.visuals,e,i,s)}}s.ArcView=c,c.__name__="ArcView";class d extends r.XYGlyph{constructor(e){super(e)}static init_Arc(){this.prototype.default_view=c,this.mixins(a.LineVector),this.define({direction:[_.Direction,"anticlock"],radius:[_.DistanceSpec],start_angle:[_.AngleSpec],end_angle:[_.AngleSpec]})}}s.Arc=d,d.__name__="Arc",d.init_Arc()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(28),c=e(94),o=e(100),_=e(37),r=s.__importStar(e(18));function a(e,t,i,s,n,c,o,_){const r=[],a=[[],[]];for(let a=0;a<=2;a++){let h,d,x;if(0===a?(d=6*e-12*i+6*n,h=-3*e+9*i-9*n+3*o,x=3*i-3*e):(d=6*t-12*s+6*c,h=-3*t+9*s-9*c+3*_,x=3*s-3*t),Math.abs(h)<1e-12){if(Math.abs(d)<1e-12)continue;const e=-x/d;0<e&&e<1&&r.push(e);continue}const l=d*d-4*x*h,y=Math.sqrt(l);if(l<0)continue;const p=(-d+y)/(2*h);0<p&&p<1&&r.push(p);const f=(-d-y)/(2*h);0<f&&f<1&&r.push(f)}let h=r.length;const d=h;for(;h–;){const d=r[h],x=1-d,l=x*x*x*e+3*x*x*d*i+3*x*d*d*n+d*d*d*o;a[0][h]=l;const y=x*x*x*t+3*x*x*d*s+3*x*d*d*c+d*d*d*_;a[1][h]=y}return a[0][d]=e,a[1][d]=t,a[0][d+1]=o,a[1][d+1]=_,[Math.min(…a[0]),Math.max(…a[1]),Math.max(…a[0]),Math.min(…a[1])]}class h extends c.GlyphView{_project_data(){_.inplace.project_xy(this._x0,this._y0),_.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++)if(isNaN(this._x0[i]+this._x1[i]+this._y0[i]+this._y1[i]+this._cx0[i]+this._cy0[i]+this._cx1[i]+this._cy1[i]))e.add_empty();else{const[t,s,n,c]=a(this._x0[i],this._y0[i],this._x1[i],this._y1[i],this._cx0[i],this._cy0[i],this._cx1[i],this._cy1[i]);e.add(t,s,n,c)}}_render(e,t,{sx0:i,sy0:s,sx1:n,sy1:c,scx0:o,scy0:_,scx1:r,scy1:a}){if(this.visuals.line.doit)for(const h of t)isNaN(i[h]+s[h]+n[h]+c[h]+o[h]+_[h]+r[h]+a[h])||(e.beginPath(),e.moveTo(i[h],s[h]),e.bezierCurveTo(o[h],_[h],r[h],a[h],n[h],c[h]),this.visuals.line.set_vectorize(e,h),e.stroke())}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}i.BezierView=h,h.__name__="BezierView";class d extends c.Glyph{constructor(e){super(e)}static init_Bezier(){this.prototype.default_view=h,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}],cx0:[r.XCoordinateSpec,{field:"cx0"}],cy0:[r.YCoordinateSpec,{field:"cy0"}],cx1:[r.XCoordinateSpec,{field:"cx1"}],cy1:[r.YCoordinateSpec,{field:"cy1"}]}),this.mixins(n.LineVector)}}i.Bezier=d,d.__name__="Bezier",d.init_Bezier()},n function _(s,i,e){Object.defineProperty(e,"__esModule",{value:!0});const t=s(1),r=s(93),a=s(238),n=s(28),h=t.__importStar(s(101)),d=t.__importStar(s(18)),l=s(9),_=s(12),c=s(88);class o extends r.XYGlyphView{initialize(){super.initialize();const{webgl:s}=this.renderer.plot_view.canvas_view;null!=s&&(this.glglyph=new a.CircleGL(s.gl,this))}_map_data(){if(null!=this._radius)if("data"==this.model.properties.radius.units)switch(this.model.radius_dimension){case"x":this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius);break;case"y":this.sradius=this.sdist(this.renderer.yscale,this._y,this._radius);break;case"max":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.max(s,i[e]));break}case"min":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.min(s,i[e]));break}}else this.sradius=this._radius,this.max_size=2*this.max_radius;else this.sradius=_.map(this._size,s=>s/2)}_mask_data(){const[s,i]=this.renderer.plot_view.frame.bbox.ranges;let e,t,r,a;if(null!=this._radius&&"data"==this.model.properties.radius.units){const n=s.start,h=s.end;[e,r]=this.renderer.xscale.r_invert(n,h),e-=this.max_radius,r+=this.max_radius;const d=i.start,l=i.end;[t,a]=this.renderer.yscale.r_invert(d,l),t-=this.max_radius,a+=this.max_radius}else{const n=s.start-this.max_size,h=s.end+this.max_size;[e,r]=this.renderer.xscale.r_invert(n,h);const d=i.start-this.max_size,l=i.end+this.max_size;[t,a]=this.renderer.yscale.r_invert(d,l)}return this.index.indices({x0:e,x1:r,y0:t,y1:a})}_render(s,i,{sx:e,sy:t,sradius:r}){for(const a of i)isNaN(e[a]+t[a]+r[a])||(s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI,!1),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(s,a),s.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.stroke()))}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let a,n,h,d;if(null!=this._radius&&"data"==this.model.properties.radius.units)a=t-this.max_radius,n=t+this.max_radius,h=r-this.max_radius,d=r+this.max_radius;else{const s=i-this.max_size,t=i+this.max_size;[a,n]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size,l=e+this.max_size;[h,d]=this.renderer.yscale.r_invert(r,l)}const l=this.index.indices({x0:a,x1:n,y0:h,y1:d}),_=[];if(null!=this._radius&&"data"==this.model.properties.radius.units)for(const s of l){const i=this.sradius[s]**2,[e,a]=this.renderer.xscale.r_compute(t,this._x[s]),[n,h]=this.renderer.yscale.r_compute(r,this._y[s]);(e-a)**2+(n-h)**2<=i&&_.push(s)}else for(const s of l){const t=this.sradius[s]**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&_.push(s)}return new c.Selection({indices:_})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if("h"==s.direction){let s,e;if(n=t.y0,h=t.y1,null!=this._radius&&"data"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,null!=this._radius&&"data"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[…this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new c.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[…this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new c.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=l.range(0,this.sx.length),r=[];for(let s=0,a=t.length;s<a;s++){const a=t[s];h.point_in_poly(this.sx[s],this.sy[s],i,e)&&r.push(a)}return new c.Selection({indices:r})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},a){const n=a+1,h=new Array(n);h[a]=(i+t)/2;const d=new Array(n);d[a]=(e+r)/2;const l=new Array(n);l[a]=.2*Math.min(Math.abs(t-i),Math.abs(r-e)),this._render(s,[a],{sx:h,sy:d,sradius:l})}}e.CircleView=o,o.__name__="CircleView";class u extends r.XYGlyph{constructor(s){super(s)}static init_Circle(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({angle:[d.AngleSpec,0],size:[d.DistanceSpec,{units:"screen",value:4}],radius:[d.DistanceSpec,void 0,{optional:!0}],radius_dimension:[d.RadiusDimension,"x"]})}}e.Circle=u,u.__name__="Circle",u.init_Circle()},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),a=t(103),r=t(107),o=t(239),_=t(240),l=t(237),h=t(12),n=t(19),g=t(22);function u(t,e,s,i,a,r){if(a.doit)if(a[r].is_value)e.used=!1,t.set_attribute(s,"float",[a[r].value()]);else{e.used=!0;const o=new Float32Array(a.get_array(r));e.set_size(4*i),e.set_data(0,o),t.set_attribute(s,"float",e)}else e.used=!1,t.set_attribute(s,"float",[0])}function f(t,e,s,i,a,r){const o=r+"_color",_=r+"_alpha";if(a.doit){let r,l;if(e.used=!0,a[o].is_value){const t=g.encode_rgba(g.color2rgba(a[o].value())),e=new Uint32Array(i);e.fill(t),r=e}else r=a.get_array(o);if(a[_].is_value){const t=a[_].value(),e=new Float32Array(i);e.fill(t),l=e}else l=a.get_array(_);const h=new Float32Array(4*i);for(let t=0,e=i;t<e;t++){const e=g.decode_rgba(r[t]);1==e[3]&&(e[3]=l[t]),h.set(e,4*t)}e.set_size(4*i*4),e.set_data(0,h),t.set_attribute(s,"vec4",e)}else e.used=!1,t.set_attribute(s,"vec4",[0,0,0,0])}s.attach_float=u,s.attach_color=f;class d extends r.BaseGLGlyph{init(){const{gl:t}=this,e=o.vertex_shader,s=_.fragment_shader(this._marker_code);this.prog=new a.Program(t),this.prog.set_shaders(e,s),this.vbo_sx=new a.VertexBuffer(t),this.prog.set_attribute("a_sx","float",this.vbo_sx),this.vbo_sy=new a.VertexBuffer(t),this.prog.set_attribute("a_sy","float",this.vbo_sy),this.vbo_s=new a.VertexBuffer(t),this.prog.set_attribute("a_size","float",this.vbo_s),this.vbo_a=new a.VertexBuffer(t),this.prog.set_attribute("a_angle","float",this.vbo_a),this.vbo_linewidth=new a.VertexBuffer(t),this.vbo_fg_color=new a.VertexBuffer(t),this.vbo_bg_color=new a.VertexBuffer(t),this.index_buffer=new a.IndexBuffer(t)}draw(t,e,s){const i=e.glglyph,{nvertices:a}=i;if(i.data_changed&&(i._set_data(a),this.glyph instanceof l.CircleView&&null!=this.glyph._radius&&this.vbo_s.set_data(0,h.map(this.glyph.sradius,t=>2*t)),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(a),this.visuals_changed=!1),this.prog.set_uniform("u_pixel_ratio","float",[s.pixel_ratio]),this.prog.set_uniform("u_canvas_size","vec2",[s.width,s.height]),this.prog.set_attribute("a_sx","float",i.vbo_sx),this.prog.set_attribute("a_sy","float",i.vbo_sy),this.prog.set_attribute("a_size","float",i.vbo_s),this.prog.set_attribute("a_angle","float",i.vbo_a),0!=t.length)if(t.length===a)this.prog.draw(this.gl.POINTS,[0,a]);else if(a<65535){const e=window.navigator.userAgent;e.indexOf("MSIE ")+e.indexOf("Trident/")+e.indexOf("Edge/")>0&&n.logger.warn("WebGL warning: IE is known to produce 1px sprites whith selections."),this.index_buffer.set_size(2*t.length),this.index_buffer.set_data(0,new Uint16Array(t)),this.prog.draw(this.gl.POINTS,this.index_buffer)}else{const e=64e3,s=[];for(let t=0,i=Math.ceil(a/e);t<i;t++)s.push([]);for(let i=0,a=t.length;i<a;i++){const a=t[i]%e;s[Math.floor(t[i]/e)].push(a)}for(let t=0,a=s.length;t<a;t++){const a=new Uint16Array(s[t]),r=t*e*4;0!==a.length&&(this.prog.set_attribute("a_sx","float",i.vbo_sx,0,r),this.prog.set_attribute("a_sy","float",i.vbo_sy,0,r),this.prog.set_attribute("a_size","float",i.vbo_s,0,r),this.prog.set_attribute("a_angle","float",i.vbo_a,0,r),this.vbo_linewidth.used&&this.prog.set_attribute("a_linewidth","float",this.vbo_linewidth,0,r),this.vbo_fg_color.used&&this.prog.set_attribute("a_fg_color","vec4",this.vbo_fg_color,0,4*r),this.vbo_bg_color.used&&this.prog.set_attribute("a_bg_color","vec4",this.vbo_bg_color,0,4*r),this.index_buffer.set_size(2*a.length),this.index_buffer.set_data(0,a),this.prog.draw(this.gl.POINTS,this.index_buffer))}}}_set_data(t){const e=4*t;this.vbo_sx.set_size(e),this.vbo_sy.set_size(e),this.vbo_a.set_size(e),this.vbo_s.set_size(e),this.vbo_sx.set_data(0,this.glyph.sx),this.vbo_sy.set_data(0,this.glyph.sy),null!=this.glyph._angle&&this.vbo_a.set_data(0,new Float32Array(this.glyph._angle)),this.glyph instanceof l.CircleView&&null!=this.glyph._radius?this.vbo_s.set_data(0,h.map(this.glyph.sradius,t=>2*t)):this.vbo_s.set_data(0,new Float32Array(this.glyph._size))}_set_visuals(t){u(this.prog,this.vbo_linewidth,"a_linewidth",t,this.glyph.visuals.line,"line_width"),f(this.prog,this.vbo_fg_color,"a_fg_color",t,this.glyph.visuals.line,"line"),f(this.prog,this.vbo_bg_color,"a_bg_color",t,this.glyph.visuals.fill,"fill"),this.prog.set_uniform("u_antialias","float",[.8])}}function b(t){return class extends d{get _marker_code(){return t}}}s.MarkerGL=d,d.__name__="MarkerGL";const c=i.__importStar(t(240));s.AsteriskGL=b(c.asterisk),s.CircleGL=b(c.circle),s.CircleCrossGL=b(c.circlecross),s.CircleXGL=b(c.circlex),s.CrossGL=b(c.cross),s.DiamondGL=b(c.diamond),s.DiamondCrossGL=b(c.diamondcross),s.HexGL=b(c.hex),s.InvertedTriangleGL=b(c.invertedtriangle),s.SquareGL=b(c.square),s.SquareCrossGL=b(c.squarecross),s.SquareXGL=b(c.squarex),s.TriangleGL=b(c.triangle),s.XGL=b(c.x)},n function _(n,i,a){Object.defineProperty(a,"__esModule",{value:!0}),a.vertex_shader="\nprecision mediump float;\nconst float SQRT_2 = 1.4142135623730951;\n//\nuniform float u_pixel_ratio;\nuniform vec2 u_canvas_size;\nuniform vec2 u_offset;\nuniform vec2 u_scale;\nuniform float u_antialias;\n//\nattribute float a_sx;\nattribute float a_sy;\nattribute float a_size;\nattribute float a_angle; // in radians\nattribute float a_linewidth;\nattribute vec4 a_fg_color;\nattribute vec4 a_bg_color;\n//\nvarying float v_linewidth;\nvarying float v_size;\nvarying vec4 v_fg_color;\nvarying vec4 v_bg_color;\nvarying vec2 v_rotation;\n\nvoid main (void)\n{\n v_size = a_size * u_pixel_ratio;\n v_linewidth = a_linewidth * u_pixel_ratio;\n v_fg_color = a_fg_color;\n v_bg_color = a_bg_color;\n v_rotation = vec2(cos(-a_angle), sin(-a_angle));\n vec2 pos = vec2(a_sx, a_sy); // in pixels\n pos += 0.5; // make up for Bokeh’s offset\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\n gl_Position = vec4(pos*2.0-1.0, 0.0, 1.0);\n gl_Position.y = -1.0;\n gl_PointSize = SQRT_2 * v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\n}\n"},n function _(a,n,s){Object.defineProperty(s,"__esModule",{value:!0}),s.fragment_shader=a=>`\nprecision mediump float;\nconst float SQRT_2 = 1.4142135623730951;\nconst float PI = 3.14159265358979323846264;\n//\nuniform float u_antialias;\n//\nvarying vec4 v_fg_color;\nvarying vec4 v_bg_color;\nvarying float v_linewidth;\nvarying float v_size;\nvarying vec2 v_rotation;\n\n${a}\n\nvec4 outline(float distance, float linewidth, float antialias, vec4 fg_color, vec4 bg_color)\n{\n vec4 frag_color;\n float t = linewidth/2.0 - antialias;\n float signed_distance = distance;\n float border_distance = abs(signed_distance) - t;\n float alpha = border_distance/antialias;\n alpha = exp(-alpha*alpha);\n\n // If fg alpha is zero, it probably means no outline. To avoid a dark outline\n // shining through due to aa, we set the fg color to the bg color. Avoid if (i.e. branching).\n float select = float(bool(fg_color.a));\n fg_color.rgb = select * fg_color.rgb + (1.0 - select) * bg_color.rgb;\n // Similarly, if we want a transparent bg\n select = float(bool(bg_color.a));\n bg_color.rgb = select * bg_color.rgb + (1.0 - select) * fg_color.rgb;\n\n if( border_distance < 0.0)\n frag_color = fg_color;\n else if( signed_distance < 0.0 ) {\n frag_color = mix(bg_color, fg_color, sqrt(alpha));\n } else {\n if( abs(signed_distance) < (linewidth/2.0 + antialias) ) {\n frag_color = vec4(fg_color.rgb, fg_color.a * alpha);\n } else {\n discard;\n }\n }\n return frag_color;\n}\n\nvoid main()\n{\n vec2 P = gl_PointCoord.xy - vec2(0.5, 0.5);\n P = vec2(v_rotation.x*P.x - v_rotation.y*P.y,\n v_rotation.y*P.x + v_rotation.x*P.y);\n float point_size = SQRT_2*v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\n float distance = marker(P*point_size, v_size);\n gl_FragColor = outline(distance, v_linewidth, u_antialias, v_fg_color, v_bg_color);\n}\n`,s.circle="\nfloat marker(vec2 P, float size)\n{\n return length(P) - size/2.0;\n}\n",s.square="\nfloat marker(vec2 P, float size)\n{\n return max(abs(P.x), abs(P.y)) - size/2.0;\n}\n",s.diamond="\nfloat marker(vec2 P, float size)\n{\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\n float r1 = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\n return r1 / SQRT_2;\n}\n",s.hex="\nfloat marker(vec2 P, float size)\n{\n vec2 q = abs(P);\n return max(q.y * 0.57735 + q.x - 1.0 * size/2.0, q.y - 0.866 * size/2.0);\n}\n",s.triangle="\nfloat marker(vec2 P, float size)\n{\n P.y -= size * 0.3;\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\n float r1 = max(abs(x), abs(y)) - size / 1.6;\n float r2 = P.y;\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\n}\n",s.invertedtriangle="\nfloat marker(vec2 P, float size)\n{\n P.y += size * 0.3;\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\n float r1 = max(abs(x), abs(y)) - size / 1.6;\n float r2 = - P.y;\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\n}\n",s.cross=’\nfloat marker(vec2 P, float size)\n{\n float square = max(abs(P.x), abs(P.y)) - size / 2.5; // 2.5 is a tweak\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of "width" for aa\n return max(square, cross);\n}\n’,s.circlecross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float circle = length(P) - size/2.0;\n float c1 = max(circle, s1);\n float c2 = max(circle, s2);\n float c3 = max(circle, s3);\n float c4 = max(circle, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.squarecross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\n float c1 = max(square, s1);\n float c2 = max(square, s2);\n float c3 = max(square, s3);\n float c4 = max(square, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.diamondcross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\n float diamond = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\n diamond /= SQRT_2;\n float c1 = max(diamond, s1);\n float c2 = max(diamond, s2);\n float c3 = max(diamond, s3);\n float c4 = max(diamond, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.x=’\nfloat marker(vec2 P, float size)\n{\n float circle = length(P) - size / 1.6;\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n return max(circle, X);\n}\n’,s.circlex=’\nfloat marker(vec2 P, float size)\n{\n float x = P.x - P.y;\n float y = P.x + P.y;\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float circle = length(P) - size/2.0;\n float c1 = max(circle, s1);\n float c2 = max(circle, s2);\n float c3 = max(circle, s3);\n float c4 = max(circle, s4);\n // Union\n float almost = min(min(min(c1, c2), c3), c4);\n // In this case, the X is also outside of the main shape\n float Xmask = length(P) - size / 1.6; // a circle\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n return min(max(X, Xmask), almost);\n}\n’,s.squarex="\nfloat marker(vec2 P, float size)\n{\n float x = P.x - P.y;\n float y = P.x + P.y;\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\n float c1 = max(square, s1);\n float c2 = max(square, s2);\n float c3 = max(square, s3);\n float c4 = max(square, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.asterisk=’\nfloat marker(vec2 P, float size)\n{\n // Masks\n float diamond = max(abs(SQRT_2 / 2.0 * (P.x - P.y)), abs(SQRT_2 / 2.0 * (P.x + P.y))) - size / (2.0 * SQRT_2);\n float square = max(abs(P.x), abs(P.y)) - size / (2.0 * SQRT_2);\n // Shapes\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of "width" for aa\n // Result is union of masked shapes\n return min(max(X, diamond), max(cross, square));\n}\n’},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const a=e(1),i=e(93),l=e(28),s=a.__importStar(e(18));class c extends i.XYGlyphView{}n.CenterRotatableView=c,c.__name__="CenterRotatableView";class o extends i.XYGlyph{constructor(e){super(e)}static init_CenterRotatable(){this.mixins([l.LineVector,l.FillVector]),this.define({angle:[s.AngleSpec,0],width:[s.DistanceSpec],height:[s.DistanceSpec]})}}n.CenterRotatable=o,o.__name__="CenterRotatable",o.init_CenterRotatable()},n function _(e,l,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(243);class t extends s.EllipseOvalView{}i.EllipseView=t,t.__name__="EllipseView";class _ extends s.EllipseOval{constructor(e){super(e)}static init_Ellipse(){this.prototype.default_view=t}}i.Ellipse=_,_.__name__="Ellipse",_.init_Ellipse()},n function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1),h=t(241),a=e.__importStar(t(101)),r=t(88);class n extends h.CenterRotatableView{_set_data(){this.max_w2=0,"data"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,"data"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){"data"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this._width,"center"):this.sw=this._width,"data"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this._height,"center"):this.sh=this._height}_render(t,s,{sx:i,sy:e,sw:h,sh:a,_angle:r}){for(const n of s)isNaN(i[n]+e[n]+h[n]+a[n]+r[n])||(t.beginPath(),t.ellipse(i[n],e[n],h[n]/2,a[n]/2,r[n],0,2*Math.PI),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,n),t.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,n),t.stroke()))}_hit_point(t){let s,i,e,h,n,_,l,d,o;const{sx:x,sy:m}=t,w=this.renderer.xscale.invert(x),c=this.renderer.yscale.invert(m);"data"==this.model.properties.width.units?(s=w-this.max_width,i=w+this.max_width):(_=x-this.max_width,l=x+this.max_width,[s,i]=this.renderer.xscale.r_invert(_,l)),"data"==this.model.properties.height.units?(e=c-this.max_height,h=c+this.max_height):(d=m-this.max_height,o=m+this.max_height,[e,h]=this.renderer.yscale.r_invert(d,o));const p=this.index.indices({x0:s,x1:i,y0:e,y1:h}),y=[];for(const t of p)n=a.point_in_ellipse(x,m,this._angle[t],this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new r.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:i,x1:e,y1:h},a){const r=a+1,n=new Array(r);n[a]=(s+e)/2;const _=new Array(r);_[a]=(i+h)/2;const l=this.sw[a]/this.sh[a],d=.8*Math.min(Math.abs(e-s),Math.abs(h-i)),o=new Array(r),x=new Array(r);l>1?(o[a]=d,x[a]=d/l):(o[a]=d*l,x[a]=d),this._render(t,[a],{sx:n,sy:_,sw:o,sh:x,_angle:[0]})}_bounds({x0:t,x1:s,y0:i,y1:e}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:i-this.max_h2,y1:e+this.max_h2}}}i.EllipseOvalView=n,n.__name__="EllipseOvalView";class _ extends h.CenterRotatable{constructor(t){super(t)}}i.EllipseOval=_,_.__name__="EllipseOval"},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),h=t(245),r=t(24),_=i.__importStar(t(18));class a extends h.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){return[Math.min(this._left[t],this._right[t]),Math.max(this._left[t],this._right[t]),this._y[t]+.5*this._height[t],this._y[t]-.5*this._height[t]]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this._height,"center"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new r.NumberArray(t),this.sbottom=new r.NumberArray(t);for(let e=0;e<t;e++)this.stop[e]=this.sy[e]-this.sh[e]/2,this.sbottom[e]=this.sy[e]+this.sh[e]/2;this._clamp_viewport()}}s.HBarView=a,a.__name__="HBarView";class o extends h.Box{constructor(t){super(t)}static init_HBar(){this.prototype.default_view=a,this.define({left:[_.XCoordinateSpec,{value:0}],y:[_.YCoordinateSpec,{field:"y"}],height:[_.NumberSpec,{value:1}],right:[_.XCoordinateSpec,{field:"right"}]})}}s.HBar=o,o.__name__="HBar",o.init_HBar()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(28),r=t(94),n=t(100),a=t(88);class h extends r.GlyphView{get_anchor_point(t,e,i){const s=Math.min(this.sleft[e],this.sright[e]),r=Math.max(this.sright[e],this.sleft[e]),n=Math.min(this.stop[e],this.sbottom[e]),a=Math.max(this.sbottom[e],this.stop[e]);switch(t){case"top_left":return{x:s,y:n};case"top_center":return{x:(s+r)/2,y:n};case"top_right":return{x:r,y:n};case"bottom_left":return{x:s,y:a};case"bottom_center":return{x:(s+r)/2,y:a};case"bottom_right":return{x:r,y:a};case"center_left":return{x:s,y:(n+a)/2};case"center":return{x:(s+r)/2,y:(n+a)/2};case"center_right":return{x:r,y:(n+a)/2};default:return null}}_index_data(t){const{min:e,max:i}=Math,{data_size:s}=this;for(let r=0;r<s;r++){const[s,n,a,h]=this._lrtb(r);isNaN(s+n+a+h)||!isFinite(s+n+a+h)?t.add_empty():t.add(e(s,n),e(a,h),i(n,s),i(a,h))}}_render(t,e,{sleft:i,sright:s,stop:r,sbottom:n}){for(const a of e)isNaN(i[a]+r[a]+s[a]+n[a])||(t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()),this.visuals.hatch.doit2(t,a,()=>{t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.stroke()))}_clamp_viewport(){const t=this.renderer.plot_view.frame.bbox.h_range,e=this.renderer.plot_view.frame.bbox.v_range,i=this.stop.length;for(let s=0;s<i;s++)this.stop[s]=Math.max(this.stop[s],e.start),this.sbottom[s]=Math.min(this.sbottom[s],e.end),this.sleft[s]=Math.max(this.sleft[s],t.start),this.sright[s]=Math.min(this.sright[s],t.end)}_hit_rect(t){return this._hit_rect_against_index(t)}_hit_point(t){const{sx:e,sy:i}=t,s=this.renderer.xscale.invert(e),r=this.renderer.yscale.invert(i),n=[…this.index.indices({x0:s,y0:r,x1:s,y1:r})];return new a.Selection({indices:n})}_hit_span(t){const{sx:e,sy:i}=t;let s;if("v"==t.direction){const t=this.renderer.yscale.invert(i),e=this.renderer.plot_view.frame.bbox.h_range,[r,n]=this.renderer.xscale.r_invert(e.start,e.end);s=[…this.index.indices({x0:r,y0:t,x1:n,y1:t})]}else{const t=this.renderer.xscale.invert(e),i=this.renderer.plot_view.frame.bbox.v_range,[r,n]=this.renderer.yscale.r_invert(i.start,i.end);s=[…this.index.indices({x0:t,y0:r,x1:t,y1:n})]}return new a.Selection({indices:s})}draw_legend_for_index(t,e,i){n.generic_area_legend(this.visuals,t,e,i)}}i.BoxView=h,h.__name__="BoxView";class o extends r.Glyph{constructor(t){super(t)}static init_Box(){this.mixins([s.LineVector,s.FillVector,s.HatchVector])}}i.Box=o,o.__name__="Box",o.init_Box()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(94),n=i.__importStar(e(101)),a=i.__importStar(e(18)),o=e(28),c=e(24),_=e(37),h=e(100),l=e(88);class d extends r.GlyphView{scenterxy(e){return[this.sx[e],this.sy[e]]}_set_data(){const e=this._q.length,{orientation:t,size:s,aspect_scale:i}=this.model;this._x=new c.NumberArray(e),this._y=new c.NumberArray(e);const r=Math.sqrt(3);if("pointytop"==t)for(let t=0;t<e;t++)this._x[t]=s*r*(this._q[t]+this._r[t]/2)/i,this._y[t]=3-s/2*this._r[t];else for(let t=0;t<e;t++)this._x[t]=3*s/2*this._q[t],this._y[t]=-s*r*(this._r[t]+this._q[t]/2)*i}_project_data(){_.inplace.project_xy(this._x,this._y)}_index_data(e){let t=this.model.size,s=Math.sqrt(3)*t/2;"flattop"==this.model.orientation?([s,t]=[t,s],t*=this.model.aspect_scale):s/=this.model.aspect_scale;const{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x[r],n=this._y[r];isNaN(i+n)||!isFinite(i+n)?e.add_empty():e.add(i-s,n-t,i+s,n+t)}}map_data(){[this.sx,this.sy]=this.renderer.coordinates.map_to_screen(this._x,this._y),[this.svx,this.svy]=this._get_unscaled_vertices()}_get_unscaled_vertices(){const e=this.model.size,t=this.model.aspect_scale;if("pointytop"==this.model.orientation){const s=this.renderer.yscale,i=this.renderer.xscale,r=Math.abs(s.compute(0)-s.compute(e)),n=Math.sqrt(3)/2*Math.abs(i.compute(0)-i.compute(e))/t,a=r/2;return[[0,-n,-n,0,n,n],[r,a,-a,-r,-a,a]]}{const s=this.renderer.xscale,i=this.renderer.yscale,r=Math.abs(s.compute(0)-s.compute(e)),n=Math.sqrt(3)/2*Math.abs(i.compute(0)-i.compute(e))*t,a=r/2;return[[r,a,-a,-r,-a,a],[0,-n,-n,0,n,n]]}}_render(e,t,{sx:s,sy:i,svx:r,svy:n,_scale:a}){for(const o of t)if(!isNaN(s[o]+i[o]+a[o])){e.translate(s[o],i[o]),e.beginPath();for(let t=0;t<6;t++)e.lineTo(r[t]*a[o],n[t]*a[o]);e.closePath(),e.translate(-s[o],-i[o]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,o),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,o),e.stroke())}}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),r=this.renderer.yscale.invert(s),a=this.index.indices({x0:i,y0:r,x1:i,y1:r}),o=[];for(const e of a)n.point_in_poly(t-this.sx[e],s-this.sy[e],this.svx,this.svy)&&o.push(e);return new l.Selection({indices:o})}_hit_span(e){const{sx:t,sy:s}=e;let i;if("v"==e.direction){const e=this.renderer.yscale.invert(s),t=this.renderer.plot_view.frame.bbox.h_range,[r,n]=this.renderer.xscale.r_invert(t.start,t.end);i=[…this.index.indices({x0:r,y0:e,x1:n,y1:e})]}else{const e=this.renderer.xscale.invert(t),s=this.renderer.plot_view.frame.bbox.v_range,[r,n]=this.renderer.yscale.r_invert(s.start,s.end);i=[…this.index.indices({x0:e,y0:r,x1:e,y1:n})]}return new l.Selection({indices:i})}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:r}=e,[n,a]=this.renderer.xscale.r_invert(t,s),[o,c]=this.renderer.yscale.r_invert(i,r),_=[…this.index.indices({x0:n,x1:a,y0:o,y1:c})];return new l.Selection({indices:_})}draw_legend_for_index(e,t,s){h.generic_area_legend(this.visuals,e,t,s)}}s.HexTileView=d,d.__name__="HexTileView";class x extends r.Glyph{constructor(e){super(e)}static init_HexTile(){this.prototype.default_view=d,this.mixins([o.LineVector,o.FillVector]),this.define({r:[a.NumberSpec],q:[a.NumberSpec],size:[a.Number,1],aspect_scale:[a.Number,1],scale:[a.NumberSpec,1],orientation:[a.HexTileOrientation,"pointytop"]}),this.override({line_color:null})}}s.HexTile=x,x.__name__="HexTile",x.init_HexTile()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const _=e(1),i=e(248),n=e(141),s=_.__importStar(e(18));class r extends i.ImageBaseView{connect_signals(){super.connect_signals(),this.connect(this.model.color_mapper.change,()=>this._update_image())}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.plot_view.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}a.ImageView=r,r.__name__="ImageView";class o extends i.ImageBase{constructor(e){super(e)}static init_Image(){this.prototype.default_view=r,this.define({color_mapper:[s.Instance,()=>new n.LinearColorMapper({palette:["#000000","#252525","#525252","#737373","#969696","#bdbdbd","#d9d9d9","#f0f0f0","#ffffff"]})]})}}a.Image=o,o.__name__="Image",o.init_Image()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(93),h=e(24),_=i.__importStar(e(18)),n=e(88),r=e(9),d=e(30),l=e(11);class g extends a.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_render(e,t,{image_data:s,sx:i,sy:a,sw:h,sh:_}){const n=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1),e.globalAlpha=this.model.global_alpha;for(const n of t){if(null==s[n]||isNaN(i[n]+a[n]+h[n]+_[n]))continue;const t=a[n];e.translate(0,t),e.scale(1,-1),e.translate(0,-t),e.drawImage(s[n],0|i[n],0|a[n],h[n],_[n]),e.translate(0,t),e.scale(1,-1),e.translate(0,-t)}e.setImageSmoothingEnabled(n)}_set_data(e){this._set_width_heigh_data();for(let t=0,s=this._image.length;t<s;t++){if(null!=e&&e.indexOf(t)<0)continue;const s=this._image[t];let i;d.is_NDArray(s)?(l.assert(2==s.dimension,"expected a 2D array"),i=s,this._height[t]=s.shape[0],this._width[t]=s.shape[1]):(i=r.concat(s),this._height[t]=s.length,this._width[t]=s[0].length);const a=this._flat_img_to_buf8(i);this._set_image_data_from_buffer(t,a)}}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++){const[t,i,a,h]=this._lrtb(s);isNaN(t+i+a+h)||!isFinite(t+i+a+h)?e.add_empty():e.add(t,h,i,a)}}_lrtb(e){const t=this.renderer.xscale.source_range,s=this._x[e],i=t.is_reversed?s-this._dw[e]:s+this._dw[e],a=this.renderer.yscale.source_range,h=this._y[e],_=a.is_reversed?h-this._dh[e]:h+this._dh[e],[n,r]=s<i?[s,i]:[i,s],[d,l]=h<_?[h,_]:[_,h];return[n,r,l,d]}_set_width_heigh_data(){null!=this.image_data&&this.image_data.length==this._image.length||(this.image_data=new Array(this._image.length)),null!=this._width&&this._width.length==this._image.length||(this._width=new h.NumberArray(this._image.length)),null!=this._height&&this._height.length==this._image.length||(this._height=new h.NumberArray(this._image.length))}_get_or_create_canvas(e){const t=this.image_data[e];if(null!=t&&t.width==this._width[e]&&t.height==this._height[e])return t;{const t=document.createElement("canvas");return t.width=this._width[e],t.height=this._height[e],t}}_set_image_data_from_buffer(e,t){const s=this._get_or_create_canvas(e),i=s.getContext("2d"),a=i.getImageData(0,0,this._width[e],this._height[e]);a.data.set(t),i.putImageData(a,0,0),this.image_data[e]=s}_map_data(){switch(this.model.properties.dw.units){case"data":this.sw=this.sdist(this.renderer.xscale,this._x,this._dw,"edge",this.model.dilate);break;case"screen":this.sw=this._dw}switch(this.model.properties.dh.units){case"data":this.sh=this.sdist(this.renderer.yscale,this._y,this._dh,"edge",this.model.dilate);break;case"screen":this.sh=this._dh}}_image_index(e,t,s){const[i,a,h,_]=this._lrtb(e),n=this._width[e],r=this._height[e],d=(a-i)/n,l=(h-_)/r;let g=Math.floor((t-i)/d),o=Math.floor((s-_)/l);return this.renderer.xscale.source_range.is_reversed&&(g=n-g-1),this.renderer.yscale.source_range.is_reversed&&(o=r-o-1),{index:e,dim1:g,dim2:o,flat_index:o*n+g}}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),a=this.renderer.yscale.invert(s),h=this.index.indices({x0:i,x1:i,y0:a,y1:a}),_=new n.Selection;for(const e of h)t!=1/0&&s!=1/0&&_.image_indices.push(this._image_index(e,i,a));return _}}s.ImageBaseView=g,g.__name__="ImageBaseView";class o extends a.XYGlyph{constructor(e){super(e)}static init_ImageBase(){this.define({image:[_.NDArraySpec],dw:[_.DistanceSpec],dh:[_.DistanceSpec],dilate:[_.Boolean,!1],global_alpha:[_.Number,1]})}}s.ImageBase=o,o.__name__="ImageBase",o.init_ImageBase()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const _=e(248),i=e(8);class n extends _.ImageBaseView{_flat_img_to_buf8(e){let t;return t=i.isArray(e)?new Uint32Array(e):e,new Uint8Array(t.buffer)}}a.ImageRGBAView=n,n.__name__="ImageRGBAView";class r extends _.ImageBase{constructor(e){super(e)}static init_ImageRGBA(){this.prototype.default_view=n}}a.ImageRGBA=r,r.__name__="ImageRGBA",r.init_ImageRGBA()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(1),i=e(93),a=e(24),n=r.__importStar(e(18)),h=e(12),o=e(251);class _ extends i.XYGlyphView{constructor(){super(…arguments),this._images_rendered=!1}initialize(){super.initialize(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++)e.add_empty()}_set_data(){null!=this.image&&this.image.length==this._url.length||(this.image=h.map(this._url,()=>null));const{retry_attempts:e,retry_timeout:t}=this.model;for(let s=0,r=this._url.length;s<r;s++){const r=this._url[s];null!=r&&""!=r&&new o.ImageLoader(r,{loaded:e=>{this.image[s]=e,this.renderer.request_render()},attempts:e+1,timeout:t})}const s="data"==this.model.properties.w.units,r="data"==this.model.properties.h.units,i=this._x.length,n=new a.NumberArray(s?2*i:i),_=new a.NumberArray(r?2*i:i),{anchor:c}=this.model;function l(e,t){switch(c){case"top_left":case"bottom_left":case"center_left":return[e,e+t];case"top_center":case"bottom_center":case"center":return[e-t/2,e+t/2];case"top_right":case"bottom_right":case"center_right":return[e-t,e]}}function d(e,t){switch(c){case"top_left":case"top_center":case"top_right":return[e,e-t];case"bottom_left":case"bottom_center":case"bottom_right":return[e+t,e];case"center_left":case"center":case"center_right":return[e+t/2,e-t/2]}}if(s)for(let e=0;e<i;e++)[n[e],n[i+e]]=l(this._x[e],this._w[e]);else n.set(this._x,0);if(r)for(let e=0;e<i;e++)[_[e],_[i+e]]=d(this._y[e],this._h[e]);else _.set(this._y,0);const[m,u]=h.minmax(n),[p,g]=h.minmax(_);this._bounds_rect={x0:m,x1:u,y0:p,y1:g}}has_finished(){return super.has_finished()&&1==this._images_rendered}_map_data(){const e=null!=this.model.w?this._w:h.map(this._x,()=>NaN),t=null!=this.model.h?this._h:h.map(this._x,()=>NaN);switch(this.model.properties.w.units){case"data":this.sw=this.sdist(this.renderer.xscale,this._x,e,"edge",this.model.dilate);break;case"screen":this.sw=e}switch(this.model.properties.h.units){case"data":this.sh=this.sdist(this.renderer.yscale,this._y,t,"edge",this.model.dilate);break;case"screen":this.sh=t}}_render(e,t,{image:s,sx:r,sy:i,sw:a,sh:n,_angle:h}){const{frame:o}=this.renderer.plot_view;e.rect(o.bbox.left+1,o.bbox.top+1,o.bbox.width-2,o.bbox.height-2),e.clip();let _=!0;for(const o of t){if(isNaN(r[o]+i[o]+h[o]))continue;const t=s[o];null!=t?this._render_image(e,o,t,r,i,a,n,h):_=!1}_&&!this._images_rendered&&(this._images_rendered=!0,this.notify_finished())}_final_sx_sy(e,t,s,r,i){switch(e){case"top_left":return[t,s];case"top_center":return[t-r/2,s];case"top_right":return[t-r,s];case"center_right":return[t-r,s-i/2];case"bottom_right":return[t-r,s-i];case"bottom_center":return[t-r/2,s-i];case"bottom_left":return[t,s-i];case"center_left":return[t,s-i/2];case"center":return[t-r/2,s-i/2]}}_render_image(e,t,s,r,i,a,n,h){isNaN(a[t])&&(a[t]=s.width),isNaN(n[t])&&(n[t]=s.height);const{anchor:o}=this.model,[_,c]=this._final_sx_sy(o,r[t],i[t],a[t],n[t]);e.save(),e.globalAlpha=this.model.global_alpha;const l=a[t]/2,d=n[t]/2;h[t]?(e.translate(_,c),e.translate(l,d),e.rotate(h[t]),e.translate(-l,-d),e.drawImage(s,0,0,a[t],n[t]),e.translate(l,d),e.rotate(-h[t]),e.translate(-l,-d),e.translate(-_,-c)):e.drawImage(s,_,c,a[t],n[t]),e.restore()}bounds(){return this._bounds_rect}}s.ImageURLView=_,_.__name__="ImageURLView";class c extends i.XYGlyph{constructor(e){super(e)}static init_ImageURL(){this.prototype.default_view=_,this.define({url:[n.StringSpec],anchor:[n.Anchor,"top_left"],global_alpha:[n.Number,1],angle:[n.AngleSpec,0],w:[n.DistanceSpec],h:[n.DistanceSpec],dilate:[n.Boolean,!1],retry_attempts:[n.Number,0],retry_timeout:[n.Number,0]})}}s.ImageURL=c,c.__name__="ImageURL",c.init_ImageURL()},n function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(19);class a{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:a=1}=e;this.promise=new Promise((o,n)=>{this._image.crossOrigin="anonymous";let r=0;this._image.onerror=()=>{if(++r==t){const a=`unable to load ${i} image after ${t} attempts`;if(s.logger.warn(a),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());s.logger.warn(attempting to load ${i} without a cross origin policy),this._image.crossOrigin=null,r=0}setTimeout(()=>this._image.src=i,a)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i})}get finished(){return this._finished}get image(){return this._image}}t.ImageLoader=a,a.__name__="ImageLoader"},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(37),o=e(28),l=s.__importStar(e(101)),r=s.__importStar(e(18)),_=e(12),c=e(13),a=e(94),h=e(100),d=e(88);class y extends a.GlyphView{_project_data(){n.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++){const t=this._xs.get(i);if(0==t.length){e.add_empty();continue}const s=this._ys.get(i);if(0==s.length){e.add_empty();continue}const[n,o]=_.minmax(t),[l,r]=_.minmax(s);e.add(n,l,o,r)}}_render(e,t,{sxs:i,sys:s}){for(const n of t){const t=i.get(n),o=s.get(n);this.visuals.line.set_vectorize(e,n);for(let i=0,s=t.length;i<s;i++)0!=i?isNaN(t[i])||isNaN(o[i])?(e.stroke(),e.beginPath()):e.lineTo(t[i],o[i]):(e.beginPath(),e.moveTo(t[i],o[i]));e.stroke()}}_hit_point(e){const t={x:e.sx,y:e.sy};let i=9999;const s=new Map;for(let e=0,n=this.sxs.length;e<n;e++){const n=Math.max(2,this.visuals.line.cache_select("line_width",e)/2),o=this.sxs.get(e),r=this.sys.get(e);let _=null;for(let e=0,s=o.length-1;e<s;e++){const s={x:o[e],y:r[e]},c={x:o[e+1],y:r[e+1]},a=l.dist_to_segment(t,s,c);a<n&&a<i&&(i=a,_=[e])}null!=_&&s.set(e,_)}return new d.Selection({indices:[…s.keys()],multiline_indices:c.to_object(s)})}_hit_span(e){const{sx:t,sy:i}=e;let s,n;"v"==e.direction?(s=this.renderer.yscale.invert(i),n=this._ys):(s=this.renderer.xscale.invert(t),n=this._xs);const o=new Map;for(let e=0,t=n.length;e<t;e++){const t=n.get(e),i=[];for(let e=0,n=t.length-1;e<n;e++)t[e]<=s&&s<=t[e+1]&&i.push(e);i.length>0&&o.set(e,i)}return new d.Selection({indices:[…o.keys()],multiline_indices:c.to_object(o)})}get_interpolation_hit(e,t,i){const s=this._xs.get(e),n=this._ys.get(e),o=s[t],l=n[t],r=s[t+1],_=n[t+1];return h.line_interpolation(this.renderer,i,o,l,r,_)}draw_legend_for_index(e,t,i){h.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}i.MultiLineView=y,y.__name__="MultiLineView";class x extends a.Glyph{constructor(e){super(e)}static init_MultiLine(){this.prototype.default_view=y,this.define({xs:[r.XCoordinateSeqSpec,{field:"xs"}],ys:[r.YCoordinateSeqSpec,{field:"ys"}]}),this.mixins(o.LineVector)}}i.MultiLine=x,x.__name__="MultiLine",x.init_MultiLine()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(95),o=e(94),r=e(100),l=e(12),h=e(12),_=e(28),a=i.__importStar(e(101)),d=i.__importStar(e(18)),c=e(88),x=e(11);class y extends o.GlyphView{_project_data(){}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n<i;n++){const i=this._xs[n],o=this._ys[n];if(0==i.length||0==o.length){e.add_empty();continue}let r=1/0,h=-1/0,_=1/0,a=-1/0;for(let e=0,n=i.length;e<n;e++){const n=i[e][0],d=o[e][0];if(0!=n.length&&0!=d.length){const[e,i]=l.minmax(n),[o,c]=l.minmax(d);r=t(r,e),h=s(h,i),_=t(_,o),a=s(a,c)}}isFinite(r+h+_+a)?e.add(r,_,h,a):e.add_empty()}this._hole_index=this._index_hole_data()}_index_hole_data(){const{min:e,max:t}=Math,{data_size:s}=this,i=new n.SpatialIndex(s);for(let n=0;n<s;n++){const s=this._xs[n],o=this._ys[n];if(0==s.length||0==o.length){i.add_empty();continue}let r=1/0,h=-1/0,_=1/0,a=-1/0;for(let i=0,n=s.length;i<n;i++){const n=s[i],d=o[i];if(n.length>1&&d.length>1)for(let s=1,i=n.length;s<i;s++){const[i,o]=l.minmax(n[s]),[c,x]=l.minmax(d[s]);r=e(r,i),h=t(h,o),_=e(_,c),a=t(a,x)}}isFinite(r+h+_+a)?i.add(r,_,h,a):i.add_empty()}return i.finish(),i}_mask_data(){const e=this.renderer.plot_view.frame.x_range,[t,s]=[e.min,e.max],i=this.renderer.plot_view.frame.y_range,[n,o]=[i.min,i.max];return this.index.indices({x0:t,x1:s,y0:n,y1:o})}_inner_loop(e,t,s){e.beginPath();for(let i=0,n=t.length;i<n;i++)for(let n=0,o=t[i].length;n<o;n++){const o=t[i][n],r=s[i][n];for(let t=0,s=o.length;t<s;t++)0!=t?e.lineTo(o[t],r[t]):e.moveTo(o[t],r[t]);e.closePath()}}_render(e,t,{sxs:s,sys:i}){if(this.visuals.fill.doit||this.visuals.line.doit)for(const n of t){const[t,o]=[s[n],i[n]];this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,n),this._inner_loop(e,t,o),e.fill("evenodd")),this.visuals.hatch.doit2(e,n,()=>{this._inner_loop(e,t,o),e.fill("evenodd")},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,o),e.stroke())}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,o=[t,s,s,t],r=[i,i,n,n],[l,h]=this.renderer.xscale.r_invert(t,s),[_,d]=this.renderer.yscale.r_invert(i,n),x=this.index.indices({x0:l,x1:h,y0:_,y1:d}),y=[];for(const e of x){const t=this.sxs[e],s=this.sys[e];let i=!0;for(let e=0,n=t.length;e<n;e++){for(let n=0,l=t[e][0].length;n<l;n++){const l=t[e][0][n],h=s[e][0][n];if(!a.point_in_poly(l,h,o,r)){i=!1;break}}if(!i)break}i&&y.push(e)}return new c.Selection({indices:y})}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),n=this.renderer.yscale.invert(s),o=this.index.indices({x0:i,y0:n,x1:i,y1:n}),r=this._hole_index.indices({x0:i,y0:n,x1:i,y1:n}),l=[];for(const e of o){const i=this.sxs[e],n=this.sys[e];for(let o=0,h=i.length;o<h;o++){const h=i[o].length;if(a.point_in_poly(t,s,i[o][0],n[o][0]))if(1==h)l.push(e);else if(r.get(e)){if(h>1){let r=!1;for(let e=1;e<h;e++){const l=i[o][e],h=n[o][e];if(a.point_in_poly(t,s,l,h)){r=!0;break}}r||l.push(e)}}else l.push(e)}}return new c.Selection({indices:l})}_get_snap_coord(e){return h.sum(e)/e.length}scenterxy(e,t,s){if(1==this.sxs[e].length){return[this._get_snap_coord(this.sxs[e][0][0]),this._get_snap_coord(this.sys[e][0][0])]}{const i=this.sxs[e],n=this.sys[e];for(let e=0,o=i.length;e<o;e++)if(a.point_in_poly(t,s,i[e][0],n[e][0])){return[this._get_snap_coord(i[e][0]),this._get_snap_coord(n[e][0])]}}x.unreachable()}map_data(){const e=this._xs.length;this.sxs=new Array(e),this.sys=new Array(e);for(let t=0;t<e;t++){const e=this._xs[t].length;this.sxs[t]=new Array(e),this.sys[t]=new Array(e);for(let s=0;s<e;s++){const e=this._xs[t][s].length;this.sxs[t][s]=new Array(e),this.sys[t][s]=new Array(e);for(let i=0;i<e;i++){const[e,n]=this.renderer.coordinates.map_to_screen(this._xs[t][s][i],this._ys[t][s][i]);this.sxs[t][s][i]=e,this.sys[t][s][i]=n}}}}draw_legend_for_index(e,t,s){r.generic_area_legend(this.visuals,e,t,s)}}s.MultiPolygonsView=y,y.__name__="MultiPolygonsView";class f extends o.Glyph{constructor(e){super(e)}static init_MultiPolygons(){this.prototype.default_view=y,this.define({xs:[d.XCoordinateSeqSeqSeqSpec,{field:"xs"}],ys:[d.YCoordinateSeqSeqSeqSpec,{field:"ys"}]}),this.mixins([_.LineVector,_.FillVector,_.HatchVector])}}s.MultiPolygons=f,f.__name__="MultiPolygons",f.init_MultiPolygons()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const l=e(243);class s extends l.EllipseOvalView{_map_data(){super._map_data();const{sw:e}=this,t=e.length;for(let a=0;a<t;a++)e[a]*=.75}}a.OvalView=s,s.__name__="OvalView";class _ extends l.EllipseOval{constructor(e){super(e)}static init_Oval(){this.prototype.default_view=s}}a.Oval=_,_.__name__="Oval",_.init_Oval()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(94),r=e(100),o=e(12),a=e(28),_=i.__importStar(e(101)),c=i.__importStar(e(18)),l=e(88),h=e(11),d=e(37);class y extends n.GlyphView{_project_data(){d.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++){const t=this._xs.get(s),i=this._ys.get(s);if(0==t.length)e.add_empty();else{const[s,n]=o.minmax(t),[r,a]=o.minmax(i);e.add(s,r,n,a)}}}_mask_data(){const e=this.renderer.plot_view.frame.x_range,[t,s]=[e.min,e.max],i=this.renderer.plot_view.frame.y_range,[n,r]=[i.min,i.max];return this.index.indices({x0:t,x1:s,y0:n,y1:r})}_inner_loop(e,t,s,i){for(let n=0,r=t.length;n<r;n++)0!=n?isNaN(t[n]+s[n])?(e.closePath(),i.apply(e),e.beginPath()):e.lineTo(t[n],s[n]):(e.beginPath(),e.moveTo(t[n],s[n]));e.closePath(),i.call(e)}_render(e,t,{sxs:s,sys:i}){for(const n of t){const t=s.get(n),r=i.get(n);this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,n),this._inner_loop(e,t,r,e.fill)),this.visuals.hatch.doit2(e,n,()=>this._inner_loop(e,t,r,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,r,e.stroke))}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,r=[t,s,s,t],o=[i,i,n,n],[a,c]=this.renderer.xscale.r_invert(t,s),[h,d]=this.renderer.yscale.r_invert(i,n),y=this.index.indices({x0:a,x1:c,y0:h,y1:d}),p=[];for(const e of y){const t=this.sxs.get(e),s=this.sys.get(e);let i=!0;for(let e=0,n=t.length;e<n;e++){const n=t[e],a=s[e];if(!_.point_in_poly(n,a,r,o)){i=!1;break}}i&&p.push(e)}return new l.Selection({indices:p})}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),n=this.renderer.yscale.invert(s),r=this.index.indices({x0:i,y0:n,x1:i,y1:n}),o=[];for(const e of r){const i=this.sxs.get(e),n=this.sys.get(e),r=i.length;for(let a=0,c=0;;c++){if(isNaN(i[c])||c==r){const r=i.subarray(a,c),l=n.subarray(a,c);if(_.point_in_poly(t,s,r,l)){o.push(e);break}a=c+1}if(c==r)break}}return new l.Selection({indices:o})}_get_snap_coord(e){return o.sum(e)/e.length}scenterxy(e,t,s){const i=this.sxs.get(e),n=this.sys.get(e),r=i.length;let o=!1;for(let e=0,a=0;;a++){const c=isNaN(i[a]);if(o=o||c,a==r&&!o){return[this._get_snap_coord(i),this._get_snap_coord(n)]}if(c||a==r){const r=i.subarray(e,a),o=n.subarray(e,a);if(_.point_in_poly(t,s,r,o)){return[this._get_snap_coord(r),this._get_snap_coord(o)]}e=a+1}if(a==r)break}h.unreachable()}draw_legend_for_index(e,t,s){r.generic_area_legend(this.visuals,e,t,s)}}s.PatchesView=y,y.__name__="PatchesView";class p extends n.Glyph{constructor(e){super(e)}static init_Patches(){this.prototype.default_view=y,this.define({xs:[c.XCoordinateSeqSpec,{field:"xs"}],ys:[c.YCoordinateSeqSpec,{field:"ys"}]}),this.mixins([a.LineVector,a.FillVector,a.HatchVector])}}s.Patches=p,p.__name__="Patches",p.init_Patches()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),s=t(245),r=o.__importStar(t(18));class _ extends s.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){return[this._left[t],this._right[t],this._top[t],this._bottom[t]]}}i.QuadView=_,_.__name__="QuadView";class d extends s.Box{constructor(t){super(t)}static init_Quad(){this.prototype.default_view=_,this.define({right:[r.XCoordinateSpec,{field:"right"}],bottom:[r.YCoordinateSpec,{field:"bottom"}],left:[r.XCoordinateSpec,{field:"left"}],top:[r.YCoordinateSpec,{field:"top"}]})}}i.Quad=d,d.__name__="Quad",d.init_Quad()},n function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(1),a=i(28),_=i(37),c=i(94),n=i(100),r=s.__importStar(i(18));function o(i,e,t){if(e==(i+t)/2)return[i,t];{const s=(i-e)/(i-2*e+t),a=i*(1-s)**2+2*e*(1-s)*s+t*s**2;return[Math.min(i,t,a),Math.max(i,t,a)]}}class d extends c.GlyphView{_project_data(){_.inplace.project_xy(this._x0,this._y0),_.inplace.project_xy(this._x1,this._y1)}_index_data(i){const{data_size:e}=this;for(let t=0;t<e;t++)if(isNaN(this._x0[t]+this._x1[t]+this._y0[t]+this._y1[t]+this._cx[t]+this._cy[t]))i.add_empty();else{const[e,s]=o(this._x0[t],this._cx[t],this._x1[t]),[a,_]=o(this._y0[t],this._cy[t],this._y1[t]);i.add(e,a,s,_)}}_render(i,e,{sx0:t,sy0:s,sx1:a,sy1:_,scx:c,scy:n}){if(this.visuals.line.doit)for(const r of e)isNaN(t[r]+s[r]+a[r]+_[r]+c[r]+n[r])||(i.beginPath(),i.moveTo(t[r],s[r]),i.quadraticCurveTo(c[r],n[r],a[r],_[r]),this.visuals.line.set_vectorize(i,r),i.stroke())}draw_legend_for_index(i,e,t){n.generic_line_legend(this.visuals,i,e,t)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}t.QuadraticView=d,d.__name__="QuadraticView";class h extends c.Glyph{constructor(i){super(i)}static init_Quadratic(){this.prototype.default_view=d,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}],cx:[r.XCoordinateSpec,{field:"cx"}],cy:[r.YCoordinateSpec,{field:"cy"}]}),this.mixins(a.LineVector)}}t.Quadratic=h,h.__name__="Quadratic",h.init_Quadratic()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(93),a=e(100),r=e(28),l=s.__importStar(e(18));class _ extends n.XYGlyphView{_map_data(){"data"==this.model.properties.length.units?this.slength=this.sdist(this.renderer.xscale,this._x,this._length):this.slength=this._length}_render(e,t,{sx:i,sy:s,slength:n,_angle:a}){if(this.visuals.line.doit){const r=2*(this.renderer.plot_view.frame.bbox.width+this.renderer.plot_view.frame.bbox.height);for(let e=0,t=n.length;e<t;e++)0==n[e]&&(n[e]=r);for(const r of t)isNaN(i[r]+s[r]+a[r]+n[r])||(e.translate(i[r],s[r]),e.rotate(a[r]),e.beginPath(),e.moveTo(0,0),e.lineTo(n[r],0),this.visuals.line.set_vectorize(e,r),e.stroke(),e.rotate(-a[r]),e.translate(-i[r],-s[r]))}}draw_legend_for_index(e,t,i){a.generic_line_legend(this.visuals,e,t,i)}}i.RayView=_,_.__name__="RayView";class h extends n.XYGlyph{constructor(e){super(e)}static init_Ray(){this.prototype.default_view=_,this.mixins(r.LineVector),this.define({length:[l.DistanceSpec],angle:[l.AngleSpec]})}}i.Ray=h,h.__name__="Ray",h.init_Ray()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),h=t(241),r=t(100),a=t(24),n=i.__importStar(t(18)),_=t(12),o=t(88);class l extends h.CenterRotatableView{_set_data(){this.max_w2=0,"data"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,"data"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){if("data"==this.model.properties.width.units)[this.sw,this.sx0]=this._map_dist_corner_for_data_side_length(this._x,this._width,this.renderer.xscale);else{this.sw=this._width;const t=this.sx.length;this.sx0=new a.NumberArray(t);for(let s=0;s<t;s++)this.sx0[s]=this.sx[s]-this.sw[s]/2}if("data"==this.model.properties.height.units)[this.sh,this.sy1]=this._map_dist_corner_for_data_side_length(this._y,this._height,this.renderer.yscale);else{this.sh=this._height;const t=this.sy.length;this.sy1=new a.NumberArray(t);for(let s=0;s<t;s++)this.sy1[s]=this.sy[s]-this.sh[s]/2}const t=this.sw.length;this.ssemi_diag=new a.NumberArray(t);for(let s=0;s<t;s++)this.ssemi_diag[s]=Math.sqrt(this.sw[s]/2*this.sw[s]/2+this.sh[s]/2*this.sh[s]/2)}_render(t,s,{sx:e,sy:i,sx0:h,sy1:r,sw:a,sh:n,_angle:_}){if(this.visuals.fill.doit)for(const o of s)isNaN(e[o]+i[o]+h[o]+r[o]+a[o]+n[o]+_[o])||(this.visuals.fill.set_vectorize(t,o),_[o]?(t.translate(e[o],i[o]),t.rotate(_[o]),t.fillRect(-a[o]/2,-n[o]/2,a[o],n[o]),t.rotate(-_[o]),t.translate(-e[o],-i[o])):t.fillRect(h[o],r[o],a[o],n[o]));if(this.visuals.line.doit){t.beginPath();for(const o of s)isNaN(e[o]+i[o]+h[o]+r[o]+a[o]+n[o]+_[o])||0!=a[o]&&0!=n[o]&&(_[o]?(t.translate(e[o],i[o]),t.rotate(_[o]),t.rect(-a[o]/2,-n[o]/2,a[o],n[o]),t.rotate(-_[o]),t.translate(-e[o],-i[o])):t.rect(h[o],r[o],a[o],n[o]),this.visuals.line.set_vectorize(t,o),t.stroke(),t.beginPath());t.stroke()}}_hit_rect(t){return this._hit_rect_against_index(t)}_hit_point(t){let{sx:s,sy:e}=t;const i=this.renderer.xscale.invert(s),h=this.renderer.yscale.invert(e),r=this.sx0.length,n=new a.NumberArray(r);for(let t=0;t<r;t++)n[t]=this.sx0[t]+this.sw[t]/2;const l=new a.NumberArray(r);for(let t=0;t<r;t++)l[t]=this.sy1[t]+this.sh[t]/2;const d=_.max(this._ddist(0,n,this.ssemi_diag)),c=_.max(this._ddist(1,l,this.ssemi_diag)),x=i-d,m=i+d,y=h-c,w=h+c;let f,u;const g=[];for(const t of this.index.indices({x0:x,x1:m,y0:y,y1:w})){if(this._angle[t]){const i=Math.sin(-this._angle[t]),h=Math.cos(-this._angle[t]),r=h*(s-this.sx[t])-i*(e-this.sy[t])+this.sx[t],a=i*(s-this.sx[t])+h*(e-this.sy[t])+this.sy[t];s=r,e=a,f=Math.abs(this.sx[t]-s)<=this.sw[t]/2,u=Math.abs(this.sy[t]-e)<=this.sh[t]/2}else{const i=s-this.sx0[t],h=e-this.sy1[t];f=0<=i&&i<=this.sw[t],u=0<=h&&h<=this.sh[t]}f&&u&&g.push(t)}return new o.Selection({indices:g})}_map_dist_corner_for_data_side_length(t,s,e){const i=t.length,h=new Float64Array(i),r=new Float64Array(i);for(let e=0;e<i;e++)h[e]=t[e]-s[e]/2,r[e]=t[e]+s[e]/2;const a=e.v_compute(h),n=e.v_compute(r),_=this.sdist(e,h,s,"edge",this.model.dilate);let o=a;for(let t=0;t<i;t++){const s=a[t],e=n[t];if(!isNaN(s+e)&&s!=e){o=s<e?a:n;break}}return[_,o]}_ddist(t,s,e){const i=0==t?this.renderer.xscale:this.renderer.yscale,h=s,r=h.length,n=new a.NumberArray(r);for(let t=0;t<r;t++)n[t]=h[t]+e[t];const _=i.v_invert(h),o=i.v_invert(n),l=_.length,d=new a.NumberArray(l);for(let t=0;t<l;t++)d[t]=Math.abs(o[t]-_[t]);return d}draw_legend_for_index(t,s,e){r.generic_area_legend(this.visuals,t,s,e)}_bounds({x0:t,x1:s,y0:e,y1:i}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:e-this.max_h2,y1:i+this.max_h2}}}e.RectView=l,l.__name__="RectView";class d extends h.CenterRotatable{constructor(t){super(t)}static init_Rect(){this.prototype.default_view=l,this.define({dilate:[n.Boolean,!1]})}}e.Rect=d,d.__name__="Rect",d.init_Rect()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=i.__importStar(e(101)),r=i.__importStar(e(18)),_=e(28),h=e(37),a=e(94),o=e(100),c=e(88);class d extends a.GlyphView{_project_data(){h.inplace.project_xy(this._x0,this._y0),h.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n<i;n++){const i=this._x0[n],r=this._x1[n],_=this._y0[n],h=this._y1[n];isNaN(i+r+_+h)?e.add_empty():e.add(t(i,r),t(_,h),s(i,r),s(_,h))}}_render(e,t,{sx0:s,sy0:i,sx1:n,sy1:r}){if(this.visuals.line.doit)for(const _ of t)isNaN(s[_]+i[_]+n[_]+r[_])||(e.beginPath(),e.moveTo(s[_],i[_]),e.lineTo(n[_],r[_]),this.visuals.line.set_vectorize(e,_),e.stroke())}_hit_point(e){const{sx:t,sy:s}=e,i={x:t,y:s},[r,_]=this.renderer.xscale.r_invert(t-2,t+2),[h,a]=this.renderer.yscale.r_invert(s-2,s+2),o=this.index.indices({x0:r,y0:h,x1:_,y1:a}),d=[];for(const e of o){const t=Math.max(2,this.visuals.line.cache_select("line_width",e)/2)**2,s={x:this.sx0[e],y:this.sy0[e]},r={x:this.sx1[e],y:this.sy1[e]};n.dist_to_segment_squared(i,s,r)<t&&d.push(e)}return new c.Selection({indices:d})}_hit_span(e){const[t,s]=this.renderer.plot_view.frame.bbox.ranges,{sx:i,sy:n}=e;let r,_,h;"v"==e.direction?(h=this.renderer.yscale.invert(n),[r,_]=[this._y0,this._y1]):(h=this.renderer.xscale.invert(i),[r,_]=[this._x0,this._x1]);const a=[],[o,d]=this.renderer.xscale.r_invert(t.start,t.end),[x,l]=this.renderer.yscale.r_invert(s.start,s.end),y=this.index.indices({x0:o,y0:x,x1:d,y1:l});for(const t of y){(r[t]<=h&&h<=_[t]||_[t]<=h&&h<=r[t])&&a.push(t);const s=1.5+this.visuals.line.cache_select("line_width",t)/2;r[t]==_[t]&&("h"==e.direction?Math.abs(this.sx0[t]-i)<=s&&a.push(t):Math.abs(this.sy0[t]-n)<=s&&a.push(t))}return new c.Selection({indices:a})}scenterxy(e){return[(this.sx0[e]+this.sx1[e])/2,(this.sy0[e]+this.sy1[e])/2]}draw_legend_for_index(e,t,s){o.generic_line_legend(this.visuals,e,t,s)}}s.SegmentView=d,d.__name__="SegmentView";class x extends a.Glyph{constructor(e){super(e)}static init_Segment(){this.prototype.default_view=d,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}]}),this.mixins(_.LineVector)}}s.Segment=x,x.__name__="Segment",x.init_Segment()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(93),o=e(100),r=e(28),l=n.__importStar(e(18));class a extends s.XYGlyphView{_render(e,t,{sx:i,sy:n}){let s=!1,o=null;this.visuals.line.set_value(e);const r=t.length;if(!(r<2)){e.beginPath(),e.moveTo(i[0],n[0]);for(const r of t){let t,l,a,_;switch(this.model.mode){case"before":[t,a]=[i[r-1],n[r]],[l,_]=[i[r],n[r]];break;case"after":[t,a]=[i[r],n[r-1]],[l,_]=[i[r],n[r]];break;case"center":{const e=(i[r-1]+i[r])/2;[t,a]=[e,n[r-1]],[l,_]=[e,n[r]];break}default:throw new Error("unexpected")}if(s){if(!isFinite(i[r]+n[r])){e.stroke(),e.beginPath(),s=!1,o=r;continue}null!=o&&r-o>1&&(e.stroke(),s=!1)}s?(e.lineTo(t,a),e.lineTo(l,_)):(e.beginPath(),e.moveTo(i[r],n[r]),s=!0),o=r}e.lineTo(i[r-1],n[r-1]),e.stroke()}}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}}i.StepView=a,a.__name__="StepView";class _ extends s.XYGlyph{constructor(e){super(e)}static init_Step(){this.prototype.default_view=a,this.mixins(r.LineVector),this.define({mode:[l.StepMode,"before"]})}}i.Step=_,_.__name__="Step",_.init_Step()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),n=t(93),_=t(28),o=i.__importStar(t(101)),h=i.__importStar(t(18)),l=t(159),a=t(11),r=t(88);class c extends n.XYGlyphView{_rotate_point(t,s,e,i,n){return[(t-e)*Math.cos(n)-(s-i)*Math.sin(n)+e,(t-e)*Math.sin(n)+(s-i)*Math.cos(n)+i]}_text_bounds(t,s,e,i){return[[t,t+e,t+e,t,t],[s,s,s-i,s-i,s]]}_render(t,s,{sx:e,sy:i,_x_offset:n,_y_offset:_,_angle:o,_text:h}){this._sys=[],this._sxs=[];for(const a of s)if(this._sxs[a]=[],this._sys[a]=[],!isNaN(e[a]+i[a]+n[a]+_[a]+o[a])&&null!=h[a]&&this.visuals.text.doit){const s=""+h[a];t.save(),t.translate(e[a]+n[a],i[a]+_[a]),t.rotate(o[a]),this.visuals.text.set_vectorize(t,a);const r=this.visuals.text.cache_select("font",a),{height:c}=l.measure_font(r),x=this.visuals.text.text_line_height.value()*c;if(-1==s.indexOf("\n")){t.fillText(s,0,0);const o=e[a]+n[a],h=i[a]+_[a],l=t.measureText(s).width,[r,c]=this._text_bounds(o,h,l,x);this._sxs[a].push(r),this._sys[a].push(c)}else{const o=s.split("\n"),h=x*o.length,l=this.visuals.text.cache_select("text_baseline",a);let r;switch(l){case"top":r=0;break;case"middle":r=-h/2+x/2;break;case"bottom":r=-h+x;break;default:r=0,console.warn(‘${l}’ baseline not supported with multi line text)}for(const s of o){t.fillText(s,0,r);const o=e[a]+n[a],h=r+i[a]+_[a],l=t.measureText(s).width,[c,u]=this._text_bounds(o,h,l,x);this._sxs[a].push(c),this._sys[a].push(u),r+=x}}t.restore()}}_hit_point(t){const{sx:s,sy:e}=t,i=[];for(let t=0;t<this._sxs.length;t++){const n=this._sxs[t],_=this._sys[t],h=n.length;for(let l=0,a=h;l<a;l++){const[a,r]=this._rotate_point(s,e,n[h-1][0],_[h-1][0],-this._angle[t]);o.point_in_poly(a,r,n[l],_[l])&&i.push(t)}}return new r.Selection({indices:i})}scenterxy(t){const s=this._sxs[t],e=this._sys[t];a.assert(0!=s.length&&0!=e.length);const i=s[0][0],n=e[0][0],_=(s[0][2]+i)/2,o=(e[0][2]+n)/2,[h,l]=this._rotate_point(_,o,i,n,this._angle[t]);return[h,l]}}e.TextView=c,c.__name__="TextView";class x extends n.XYGlyph{constructor(t){super(t)}static init_Text(){this.prototype.default_view=c,this.mixins(_.TextVector),this.define({text:[h.NullStringSpec,{field:"text"}],angle:[h.AngleSpec,0],x_offset:[h.NumberSpec,0],y_offset:[h.NumberSpec,0]})}}e.Text=x,x.__name__="Text",x.init_Text()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),r=t(245),h=t(24),o=i.__importStar(t(18));class _ extends r.BoxView{scenterxy(t){return[this.sx[t],(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){return[this._x[t]-this._width[t]/2,this._x[t]+this._width[t]/2,Math.max(this._top[t],this._bottom[t]),Math.min(this._top[t],this._bottom[t])]}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sw=this.sdist(this.renderer.xscale,this._x,this._width,"center"),this.stop=this.renderer.yscale.v_compute(this._top),this.sbottom=this.renderer.yscale.v_compute(this._bottom);const t=this.sx.length;this.sleft=new h.NumberArray(t),this.sright=new h.NumberArray(t);for(let s=0;s<t;s++)this.sleft[s]=this.sx[s]-this.sw[s]/2,this.sright[s]=this.sx[s]+this.sw[s]/2;this._clamp_viewport()}}e.VBarView=_,_.__name__="VBarView";class a extends r.Box{constructor(t){super(t)}static init_VBar(){this.prototype.default_view=_,this.define({x:[o.XCoordinateSpec,{field:"x"}],bottom:[o.YCoordinateSpec,{value:0}],width:[o.NumberSpec,{value:1}],top:[o.YCoordinateSpec,{field:"top"}]})}}e.VBar=a,a.__name__="VBar",a.init_VBar()},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),d=i.__importStar(e(18)),l=e(10),o=e(88);class _ extends r.XYGlyphView{_map_data(){"data"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,s,{sx:t,sy:i,sradius:r,_start_angle:n,_end_angle:a}){const d=this.model.properties.direction.value();for(const l of s)isNaN(t[l]+i[l]+r[l]+n[l]+a[l])||(e.beginPath(),e.arc(t[l],i[l],r[l],n[l],a[l],d),e.lineTo(t[l],i[l]),e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,l),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,l),e.stroke()))}_hit_point(e){let s,t,i,r,n,a,d,_,c;const{sx:h,sy:u}=e,p=this.renderer.xscale.invert(h),g=this.renderer.yscale.invert(u),x=2*this.max_radius;"data"===this.model.properties.radius.units?(a=p-x,d=p+x,_=g-x,c=g+x):(t=h-x,i=h+x,[a,d]=this.renderer.xscale.r_invert(t,i),r=u-x,n=u+x,[_,c]=this.renderer.yscale.r_invert(r,n));const v=[];for(const e of this.index.indices({x0:a,x1:d,y0:_,y1:c})){const a=this.sradius[e]**2;[t,i]=this.renderer.xscale.r_compute(p,this._x[e]),[r,n]=this.renderer.yscale.r_compute(g,this._y[e]),s=(t-i)**2+(r-n)**2,s<=a&&v.push(e)}const y=this.model.properties.direction.value(),f=[];for(const e of v){const s=Math.atan2(u-this.sy[e],h-this.sx[e]);l.angle_between(-s,-this._start_angle[e],-this._end_angle[e],y)&&f.push(e)}return new o.Selection({indices:f})}draw_legend_for_index(e,s,t){n.generic_area_legend(this.visuals,e,s,t)}scenterxy(e){const s=this.sradius[e]/2,t=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+s*Math.cos(t),this.sy[e]+s*Math.sin(t)]}}t.WedgeView=_,_.__name__="WedgeView";class c extends r.XYGlyph{constructor(e){super(e)}static init_Wedge(){this.prototype.default_view=_,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[d.Direction,"anticlock"],radius:[d.DistanceSpec],start_angle:[d.AngleSpec],end_angle:[d.AngleSpec]})}}t.Wedge=c,c.__name__="Wedge",c.init_Wedge()},n function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const r=e(1);r.__exportStar(e(117),_),r.__exportStar(e(266),_),r.__exportStar(e(267),_)},n function _(e,o,r){Object.defineProperty(r,"__esModule",{value:!0});const t=e(81);class n extends t.Model{constructor(e){super(e)}}r.LayoutProvider=n,n.__name__="LayoutProvider"},n function _(t,a,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),o=t(266),n=t(24),s=r.__importStar(t(18));class u extends o.LayoutProvider{constructor(t){super(t)}static init_StaticLayoutProvider(){this.define({graph_layout:[s.Any,{}]})}get_node_coordinates(t){const a=t.data.index,e=a.length,r=new n.NumberArray(e),o=new n.NumberArray(e);for(let t=0;t<e;t++){const e=this.graph_layout[a[t]],[n,s]=null!=e?e:[NaN,NaN];r[t]=n,o[t]=s}return[r,o]}get_edge_coordinates(t){const a=t.data.start,e=t.data.end,r=a.length,o=[],n=[],s=null!=t.data.xs&&null!=t.data.ys;for(let u=0;u<r;u++){const r=null!=this.graph_layout[a[u]]&&null!=this.graph_layout[e[u]];if(s&&r)o.push(t.data.xs[u]),n.push(t.data.ys[u]);else{let t,s;r?(t=this.graph_layout[a[u]],s=this.graph_layout[e[u]]):(t=[NaN,NaN],s=[NaN,NaN]),o.push([t[0],s[0]]),n.push([t[1],s[1]])}}return[o,n]}}e.StaticLayoutProvider=u,u.__name__="StaticLayoutProvider",u.init_StaticLayoutProvider()},n function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});var i=e(269);d.Grid=i.Grid},n function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(1),n=i(178),r=s.__importStar(i(28)),o=s.__importStar(i(18)),d=i(8);class _ extends n.GuideRendererView{_render(){const i=this.layer.ctx;i.save(),this._draw_regions(i),this._draw_minor_grids(i),this._draw_grids(i),i.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render())}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;this.visuals.band_fill.set_value(i);const[e,t]=this.grid_coords("major",!1);for(let s=0;s<e.length-1;s++){if(s%2!=1)continue;const[n,r]=this.coordinates.map_to_screen(e[s],t[s]),[o,d]=this.coordinates.map_to_screen(e[s+1],t[s+1]);this.visuals.band_fill.doit&&i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0]),this.visuals.band_hatch.doit2(i,s,()=>{i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0])},()=>this.request_render())}}_draw_grids(i){if(!this.visuals.grid_line.doit)return;const[e,t]=this.grid_coords("major");this._draw_grid_helper(i,this.visuals.grid_line,e,t)}_draw_minor_grids(i){if(!this.visuals.minor_grid_line.doit)return;const[e,t]=this.grid_coords("minor");this._draw_grid_helper(i,this.visuals.minor_grid_line,e,t)}_draw_grid_helper(i,e,t,s){e.set_value(i),i.beginPath();for(let e=0;e<t.length;e++){const[n,r]=this.coordinates.map_to_screen(t[e],s[e]);i.moveTo(Math.round(n[0]),Math.round(r[0]));for(let e=1;e<n.length;e++)i.lineTo(Math.round(n[e]),Math.round(r[e]))}i.stroke()}ranges(){const i=this.model.dimension,e=(i+1)%2,{ranges:t}=this.coordinates;return[t[i],t[e]]}computed_bounds(){const[i]=this.ranges(),e=this.model.bounds,t=[i.min,i.max];let s,n;if(d.isArray(e))s=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]),s<t[0]&&(s=t[0]),n>t[1]&&(n=t[1]);else{[s,n]=t;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,n]=i.computed_bounds)}return[s,n]}grid_coords(i,e=!0){const t=this.model.dimension,s=(t+1)%2,[n,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,n,r.min,{})[i],h=n.min,c=n.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;i<l.length;i++){if((l[i]==h||l[i]==c)&&e)continue;const n=[],r=[],o=2;for(let e=0;e<o;e++){const t=u+(m-u)/(o-1)*e;n.push(l[i]),r.push(t)}_[t].push(n),_[s].push(r)}return _}}t.GridView=_,_.__name__="GridView";class a extends n.GuideRenderer{constructor(i){super(i)}static init_Grid(){this.prototype.default_view=_,this.mixins([["grid_",r.Line],["minor_grid_",r.Line],["band_",r.Fill],["band_",r.Hatch]]),this.define({bounds:[o.Any,"auto"],dimension:[o.Any,0],axis:[o.Instance],ticker:[o.Instance]}),this.override({level:"underlay",band_fill_color:null,band_fill_alpha:0,grid_line_color:"#e5e5e5",minor_grid_line_color:null})}get_ticker(){return null!=this.ticker?this.ticker:null!=this.axis?this.axis.ticker:null}}t.Grid=a,a.__name__="Grid",a.init_Grid()},n function _(a,o,r){Object.defineProperty(r,"__esModule",{value:!0});var e=a(271);r.Box=e.Box;var v=a(274);r.Column=v.Column;var x=a(275);r.GridBox=x.GridBox;var B=a(276);r.HTMLBox=B.HTMLBox;var n=a(272);r.LayoutDOM=n.LayoutDOM;var t=a(277);r.Row=t.Row;var u=a(278);r.Spacer=u.Spacer;var d=a(279);r.Panel=d.Panel,r.Tabs=d.Tabs;var i=a(286);r.WidgetBox=i.WidgetBox},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(272),o=n.__importStar(e(18));class c extends s.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children}}i.BoxView=c,c.__name__="BoxView";class r extends s.LayoutDOM{constructor(e){super(e)}static init_Box(){this.define({children:[o.Array,[]],spacing:[o.Number,0]})}}i.Box=r,r.__name__="Box",r.init_Box()},n function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const s=i(81),o=i(20),l=i(72),n=i(19),h=i(8),a=i(115),r=i(78),_=i(212),d=i(273),c=i(77);class u extends r.DOMView{constructor(){super(…arguments),this._idle_notified=!1,this._offset_parent=null,this._viewport={}}initialize(){super.initialize(),this.el.style.position=this.is_root?"relative":"absolute",this._child_views=new Map}async lazy_initialize(){await this.build_child_views()}remove(){for(const i of this.child_views)i.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener("resize",this._on_resize),this._parent_observer=setInterval(()=>{const i=this.el.offsetParent;this._offset_parent!=i&&(this._offset_parent=i,null!=i&&(this.compute_viewport(),this.invalidate_layout()))},250));const i=this.model.properties;this.on_change([i.width,i.height,i.min_width,i.min_height,i.max_width,i.max_height,i.margin,i.width_policy,i.height_policy,i.sizing_mode,i.aspect_ratio,i.visible],()=>this.invalidate_layout()),this.on_change([i.background,i.css_classes],()=>this.invalidate_render())}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener("resize",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map(i=>this._child_views.get(i))}async build_child_views(){await a.build_views(this._child_views,this.child_models,{parent:this})}render(){super.render(),l.empty(this.el);const{background:i}=this.model;this.el.style.backgroundColor=null!=i?i:"",l.classes(this.el).clear().add(…this.css_classes());for(const i of this.child_views)this.el.appendChild(i.el),i.render()}update_layout(){for(const i of this.child_views)i.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?"block":"none";const i=this.is_root?this.layout.sizing.margin:void 0;l.position(this.el,this.layout.bbox,i);for(const i of this.child_views)i.update_position()}after_layout(){for(const i of this.child_views)i.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(i){i.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build()}build(){return this.assert_root(),this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const i=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),n.logger.debug(layout computed in ${Date.now()-i} ms),this.notify_finished()}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const i of this.child_views)if(!i.has_finished())return!1;return!0}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}_width_policy(){return null!=this.model.width?"fixed":"fit"}_height_policy(){return null!=this.model.height?"fixed":"fit"}box_sizing(){let{width_policy:i,height_policy:t,aspect_ratio:e}=this.model;"auto"==i&&(i=this._width_policy()),"auto"==t&&(t=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if("fixed"==s)i=t="fixed";else if("stretch_both"==s)i=t="max";else if("stretch_width"==s)i="max";else if("stretch_height"==s)t="max";else switch(null==e&&(e="auto"),s){case"scale_width":i="max",t="min";break;case"scale_height":i="min",t="max";break;case"scale_both":i="max",t="max"}const o={width_policy:i,height_policy:t},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:a,height:r}=this.model;null!=a&&(o.width=a),null!=r&&(o.height=r);const{max_width:_,max_height:d}=this.model;null!=_&&(o.max_width=_),null!=d&&(o.max_height=d),"auto"==e&&null!=a&&null!=r?o.aspect=a/r:h.isNumber(e)&&(o.aspect=e);const{margin:c}=this.model;if(null!=c)if(h.isNumber(c))o.margin={top:c,right:c,bottom:c,left:c};else if(2==c.length){const[i,t]=c;o.margin={top:i,right:t,bottom:i,left:t}}else{const[i,t,e,s]=c;o.margin={top:i,right:t,bottom:e,left:s}}o.visible=this.model.visible;const{align:u}=this.model;return h.isArray(u)?[o.halign,o.valign]=u:o.halign=o.valign=u,o}_viewport_size(){return l.undisplayed(this.el,()=>{let i=this.el;for(;i=i.parentElement;){if(i.classList.contains(d.bk_root))continue;if(i==document.body){const{margin:{left:i,right:t,top:e,bottom:s}}=l.extents(document.body);return{width:Math.ceil(document.documentElement.clientWidth-i-t),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:t,right:e,top:s,bottom:o}}=l.extents(i),{width:n,height:h}=i.getBoundingClientRect(),a=Math.ceil(n-t-e),r=Math.ceil(h-s-o);if(a>0||r>0)return{width:a>0?a:void 0,height:r>0?r:void 0}}return{}})}export(i,t=!0){const e="png"==i?"canvas":"svg",s=new c.CanvasLayer(e,t),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(i,t),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map(i=>i.serializable_state())})}}e.LayoutDOMView=u,u.__name__="LayoutDOMView";class m extends s.Model{constructor(i){super(i)}static init_LayoutDOM(){this.define(i=>{const{Boolean:t,Number:e,String:s,Null:l,Auto:n,Color:h,Array:a,Tuple:r,Or:d}=i,c=r(e,e),u=r(e,e,e,e);return{width:[d(e,l),null],height:[d(e,l),null],min_width:[d(e,l),null],min_height:[d(e,l),null],max_width:[d(e,l),null],max_height:[d(e,l),null],margin:[d(e,c,u),[0,0,0,0]],width_policy:[d(_.SizingPolicy,n),"auto"],height_policy:[d(_.SizingPolicy,n),"auto"],aspect_ratio:[d(e,n,l),null],sizing_mode:[d(o.SizingMode,l),null],visible:[t,!0],disabled:[t,!1],align:[d(o.Align,r(o.Align,o.Align)),"start"],background:[d(h,l),null],css_classes:[a(s),[]]}})}}e.LayoutDOM=m,m.__name__="LayoutDOM",m.init_LayoutDOM()},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_root="bk-root"},n function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),e=t(271),n=t(216),l=s.__importStar(t(18));class u extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new n.Column(t),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}i.ColumnView=u,u.__name__="ColumnView";class _ extends e.Box{constructor(t){super(t)}static init_Column(){this.prototype.default_view=u,this.define({rows:[l.Any,"auto"]})}}i.Column=_,_.__name__="Column",_.init_Column()},n function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t(1),e=t(272),n=t(216),l=o.__importStar(t(18));class r extends e.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children.map(([t])=>t)}_update_layout(){this.layout=new n.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[t,i,s,o,e]of this.model.children){const n=this._child_views.get(t);this.layout.items.push({layout:n.layout,row:i,col:s,row_span:o,col_span:e})}this.layout.set_sizing(this.box_sizing())}}s.GridBoxView=r,r.__name__="GridBoxView";class a extends e.LayoutDOM{constructor(t){super(t)}static init_GridBox(){this.prototype.default_view=r,this.define({children:[l.Array,[]],rows:[l.Any,"auto"],cols:[l.Any,"auto"],spacing:[l.Any,0]})}}s.GridBox=a,a.__name__="GridBox",a.init_GridBox()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(272),_=e(212);class n extends s.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new _.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=n,n.__name__="HTMLBoxView";class i extends s.LayoutDOM{constructor(e){super(e)}}o.HTMLBox=i,i.__name__="HTMLBox"},n function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),e=t(271),_=t(216),a=s.__importStar(t(18));class n extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new _.Row(t),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}i.RowView=n,n.__name__="RowView";class l extends e.Box{constructor(t){super(t)}static init_Row(){this.prototype.default_view=n,this.define({cols:[a.Any,"auto"]})}}i.Row=l,l.__name__="Row",l.init_Row()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(272),s=e(212);class _ extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new s.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=_,_.__name__="SpacerView";class o extends i.LayoutDOM{constructor(e){super(e)}static init_Spacer(){this.prototype.default_view=_}}a.Spacer=o,o.__name__="Spacer",o.init_Spacer()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(212),l=e(72),h=e(9),o=i.__importStar(e(18)),c=e(272),d=e(81),r=e(173),n=e(280),_=e(281),b=e(282),p=i.__importDefault(e(283)),u=i.__importDefault(e(284)),m=i.__importDefault(e(285));class v extends c.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,()=>this.rebuild()),this.connect(this.model.properties.active.change,()=>this.on_active_change())}styles(){return[…super.styles(),p.default,u.default,m.default]}get child_models(){return this.model.tabs.map(e=>e.child)}_update_layout(){const e=this.model.tabs_location,t="above"==e||"below"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends a.ContentBox{_measure(e){const a=l.size(s),o=l.children(i).slice(0,3).map(e=>l.size(e)),{width:c,height:d}=super._measure(e);if(t){const t=a.width+h.sum(o.map(e=>e.width));return{width:e.width!=1/0?e.width:t,height:d}}{const t=a.height+h.sum(o.map(e=>e.height));return{width:c,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:"fit",height_policy:"fixed"}):this.header.set_sizing({width_policy:"fixed",height_policy:"fit"});let o=1,c=1;switch(e){case"above":o-=1;break;case"below":o+=1;break;case"left":c-=1;break;case"right":c+=1}const d={layout:this.header,row:o,col:c},r=this.child_views.map(e=>({layout:e.layout,row:1,col:1}));this.layout=new a.Grid([d,…r]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position="absolute",l.position(this.header_el,this.header.bbox);const e=this.model.tabs_location,t="above"==e||"below"==e,s=l.size(this.scroll_el),i=l.scroll_size(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+"px",l.display(this.scroll_el)):(this.wrapper_el.style.maxWidth="",l.undisplay(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+"px",l.display(this.scroll_el)):(this.wrapper_el.style.maxHeight="",l.undisplay(this.scroll_el))}const{child_views:a}=this;for(const e of a)l.hide(e.el);const h=a[this.model.active];null!=h&&l.show(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs_location,s="above"==t||"below"==t,i=this.model.tabs.map((t,s)=>{const i=l.div({class:[n.bk_tab,s==e?r.bk_active:null]},t.title);if(i.addEventListener("click",e=>{e.target==e.currentTarget&&this.change_active(s)}),t.closable){const e=l.div({class:n.bk_close});e.addEventListener("click",e=>{if(e.target==e.currentTarget){this.model.tabs=h.remove_at(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}}),i.appendChild(e)}return i});this.headers_el=l.div({class:[n.bk_headers]},i),this.wrapper_el=l.div({class:n.bk_headers_wrapper},this.headers_el);const a=l.div({class:[_.bk_btn,_.bk_btn_default],disabled:""},l.div({class:[b.bk_caret,r.bk_left]})),o=l.div({class:[_.bk_btn,_.bk_btn_default]},l.div({class:[b.bk_caret,r.bk_right]}));let c=0;const d=e=>()=>{const t=this.model.tabs.length;c="left"==e?Math.max(c-1,0):Math.min(c+1,t-1),0==c?a.setAttribute("disabled",""):a.removeAttribute("disabled"),c==t-1?o.setAttribute("disabled",""):o.removeAttribute("disabled");const i=l.children(this.headers_el).slice(0,c).map(e=>e.getBoundingClientRect());if(s){const e=-h.sum(i.map(e=>e.width));this.headers_el.style.left=e+"px"}else{const e=-h.sum(i.map(e=>e.height));this.headers_el.style.top=e+"px"}};a.addEventListener("click",d("left")),o.addEventListener("click",d("right")),this.scroll_el=l.div({class:_.bk_btn_group},a,o),this.header_el=l.div({class:[n.bk_tabs_header,r.bk_side(t)]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=l.children(this.headers_el);for(const e of t)e.classList.remove(r.bk_active);t[e].classList.add(r.bk_active);const{child_views:s}=this;for(const e of s)l.hide(e.el);l.show(s[e].el)}}s.TabsView=v,v.__name__="TabsView";class g extends c.LayoutDOM{constructor(e){super(e)}static init_Tabs(){this.prototype.default_view=v,this.define({tabs:[o.Array,[]],tabs_location:[o.Location,"above"],active:[o.Number,0]})}}s.Tabs=g,g.__name__="Tabs",g.init_Tabs();class w extends d.Model{constructor(e){super(e)}static init_Panel(){this.define({title:[o.String,""],child:[o.Instance],closable:[o.Boolean,!1]})}}s.Panel=w,w.__name__="Panel",w.init_Panel()},n function _(e,b,a){Object.defineProperty(a,"__esModule",{value:!0}),a.bk_tabs_header="bk-tabs-header",a.bk_headers_wrapper="bk-headers-wrapper",a.bk_headers="bk-headers",a.bk_tab="bk-tab",a.bk_close="bk-close"},n function _(n,b,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_btn="bk-btn",t.bk_btn_group="bk-btn-group",t.bk_btn_default="bk-btn-default",t.bk_btn_primary="bk-btn-primary",t.bk_btn_success="bk-btn-success",t.bk_btn_warning="bk-btn-warning",t.bk_btn_danger="bk-btn-danger",t.bk_btn_type=function(n){switch(n){case"default":return t.bk_btn_default;case"primary":return t.bk_btn_primary;case"success":return t.bk_btn_success;case"warning":return t.bk_btn_warning;case"danger":return t.bk_btn_danger}},t.bk_dropdown_toggle="bk-dropdown-toggle"},n function _(e,b,d){Object.defineProperty(d,"__esModule",{value:!0}),d.bk_menu="bk-menu",d.bk_caret="bk-caret",d.bk_divider="bk-divider"},n function _(n,o,b){Object.defineProperty(b,"__esModule",{value:!0});b.default="\n.bk-root .bk-btn {\n height: 100%;\n display: inline-block;\n text-align: center;\n vertical-align: middle;\n white-space: nowrap;\n cursor: pointer;\n padding: 6px 12px;\n font-size: 12px;\n border: 1px solid transparent;\n border-radius: 4px;\n outline: 0;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-btn:hover,\n.bk-root .bk-btn:focus {\n text-decoration: none;\n}\n.bk-root .bk-btn:active,\n.bk-root .bk-btn.bk-active {\n background-image: none;\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.bk-root .bk-btn[disabled] {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n box-shadow: none;\n}\n.bk-root .bk-btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.bk-root .bk-btn-default:hover {\n background-color: #f5f5f5;\n border-color: #b8b8b8;\n}\n.bk-root .bk-btn-default.bk-active {\n background-color: #ebebeb;\n border-color: #adadad;\n}\n.bk-root .bk-btn-default[disabled],\n.bk-root .bk-btn-default[disabled]:hover,\n.bk-root .bk-btn-default[disabled]:focus,\n.bk-root .bk-btn-default[disabled]:active,\n.bk-root .bk-btn-default[disabled].bk-active {\n background-color: #e6e6e6;\n border-color: #ccc;\n}\n.bk-root .bk-btn-primary {\n color: #fff;\n background-color: #428bca;\n border-color: #357ebd;\n}\n.bk-root .bk-btn-primary:hover {\n background-color: #3681c1;\n border-color: #2c699e;\n}\n.bk-root .bk-btn-primary.bk-active {\n background-color: #3276b1;\n border-color: #285e8e;\n}\n.bk-root .bk-btn-primary[disabled],\n.bk-root .bk-btn-primary[disabled]:hover,\n.bk-root .bk-btn-primary[disabled]:focus,\n.bk-root .bk-btn-primary[disabled]:active,\n.bk-root .bk-btn-primary[disabled].bk-active {\n background-color: #506f89;\n border-color: #357ebd;\n}\n.bk-root .bk-btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.bk-root .bk-btn-success:hover {\n background-color: #4eb24e;\n border-color: #409240;\n}\n.bk-root .bk-btn-success.bk-active {\n background-color: #47a447;\n border-color: #398439;\n}\n.bk-root .bk-btn-success[disabled],\n.bk-root .bk-btn-success[disabled]:hover,\n.bk-root .bk-btn-success[disabled]:focus,\n.bk-root .bk-btn-success[disabled]:active,\n.bk-root .bk-btn-success[disabled].bk-active {\n background-color: #667b66;\n border-color: #4cae4c;\n}\n.bk-root .bk-btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.bk-root .bk-btn-warning:hover {\n background-color: #eea43b;\n border-color: #e89014;\n}\n.bk-root .bk-btn-warning.bk-active {\n background-color: #ed9c28;\n border-color: #d58512;\n}\n.bk-root .bk-btn-warning[disabled],\n.bk-root .bk-btn-warning[disabled]:hover,\n.bk-root .bk-btn-warning[disabled]:focus,\n.bk-root .bk-btn-warning[disabled]:active,\n.bk-root .bk-btn-warning[disabled].bk-active {\n background-color: #c89143;\n border-color: #eea236;\n}\n.bk-root .bk-btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.bk-root .bk-btn-danger:hover {\n background-color: #d5433e;\n border-color: #bd2d29;\n}\n.bk-root .bk-btn-danger.bk-active {\n background-color: #d2322d;\n border-color: #ac2925;\n}\n.bk-root .bk-btn-danger[disabled],\n.bk-root .bk-btn-danger[disabled]:hover,\n.bk-root .bk-btn-danger[disabled]:focus,\n.bk-root .bk-btn-danger[disabled]:active,\n.bk-root .bk-btn-danger[disabled].bk-active {\n background-color: #a55350;\n border-color: #d43f3a;\n}\n.bk-root .bk-btn-group {\n height: 100%;\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-btn-group > .bk-btn {\n flex-grow: 1;\n -webkit-flex-grow: 1;\n}\n.bk-root .bk-btn-group > .bk-btn + .bk-btn {\n margin-left: -1px;\n}\n.bk-root .bk-btn-group > .bk-btn:first-child:not(:last-child) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):last-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.bk-root .bk-btn-group .bk-dropdown-toggle {\n flex: 0 0 0;\n -webkit-flex: 0 0 0;\n padding: 6px 6px;\n}\n"},n function _(n,o,r){Object.defineProperty(r,"__esModule",{value:!0});r.default="\n.bk-root .bk-menu-icon {\n width: 28px;\n height: 28px;\n background-size: 60%;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .bk-context-menu {\n position: absolute;\n display: inline-flex;\n display: -webkit-inline-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n width: auto;\n height: auto;\n z-index: 100;\n cursor: pointer;\n font-size: 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.bk-root .bk-context-menu.bk-horizontal {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-context-menu.bk-vertical {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-context-menu > .bk-divider {\n cursor: default;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.bk-root .bk-context-menu.bk-horizontal > .bk-divider {\n width: 1px;\n margin: 5px 0;\n}\n.bk-root .bk-context-menu.bk-vertical > .bk-divider {\n height: 1px;\n margin: 0 5px;\n}\n.bk-root .bk-context-menu > :not(.bk-divider) {\n border: 1px solid transparent;\n}\n.bk-root .bk-context-menu > :not(.bk-divider).bk-active {\n border-color: #26aae1;\n}\n.bk-root .bk-context-menu > :not(.bk-divider):hover {\n background-color: #f9f9f9;\n}\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child {\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.bk-root .bk-menu {\n position: absolute;\n left: 0;\n width: 100%;\n z-index: 100;\n cursor: pointer;\n font-size: 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.bk-root .bk-menu.bk-above {\n bottom: 100%;\n}\n.bk-root .bk-menu.bk-below {\n top: 100%;\n}\n.bk-root .bk-menu > .bk-divider {\n height: 1px;\n margin: 7.5px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.bk-root .bk-menu > :not(.bk-divider) {\n padding: 6px 12px;\n}\n.bk-root .bk-menu > :not(.bk-divider):hover,\n.bk-root .bk-menu > :not(.bk-divider).bk-active {\n background-color: #e6e6e6;\n}\n.bk-root .bk-caret {\n display: inline-block;\n vertical-align: middle;\n width: 0;\n height: 0;\n margin: 0 5px;\n}\n.bk-root .bk-caret.bk-down {\n border-top: 4px solid;\n}\n.bk-root .bk-caret.bk-up {\n border-bottom: 4px solid;\n}\n.bk-root .bk-caret.bk-down,\n.bk-root .bk-caret.bk-up {\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.bk-root .bk-caret.bk-left {\n border-right: 4px solid;\n}\n.bk-root .bk-caret.bk-right {\n border-left: 4px solid;\n}\n.bk-root .bk-caret.bk-left,\n.bk-root .bk-caret.bk-right {\n border-top: 4px solid transparent;\n border-bottom: 4px solid transparent;\n}\n"},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});n.default=’\n.bk-root .bk-tabs-header {\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n overflow: hidden;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-tabs-header .bk-btn-group {\n height: auto;\n margin-right: 5px;\n}\n.bk-root .bk-tabs-header .bk-btn-group > .bk-btn {\n flex-grow: 0;\n -webkit-flex-grow: 0;\n height: auto;\n padding: 4px 4px;\n}\n.bk-root .bk-tabs-header .bk-headers-wrapper {\n flex-grow: 1;\n -webkit-flex-grow: 1;\n overflow: hidden;\n color: #666666;\n}\n.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper {\n border-bottom: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper {\n border-left: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper {\n border-top: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper {\n border-right: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-above,\n.bk-root .bk-tabs-header.bk-below {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-tabs-header.bk-above .bk-headers,\n.bk-root .bk-tabs-header.bk-below .bk-headers {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-tabs-header.bk-left,\n.bk-root .bk-tabs-header.bk-right {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-tabs-header.bk-left .bk-headers,\n.bk-root .bk-tabs-header.bk-right .bk-headers {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-tabs-header .bk-headers {\n position: relative;\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n}\n.bk-root .bk-tabs-header .bk-tab {\n padding: 4px 8px;\n border: solid transparent;\n white-space: nowrap;\n cursor: pointer;\n}\n.bk-root .bk-tabs-header .bk-tab:hover {\n background-color: #f2f2f2;\n}\n.bk-root .bk-tabs-header .bk-tab.bk-active {\n color: #4d4d4d;\n background-color: white;\n border-color: #e6e6e6;\n}\n.bk-root .bk-tabs-header .bk-tab .bk-close {\n margin-left: 10px;\n}\n.bk-root .bk-tabs-header.bk-above .bk-tab {\n border-width: 3px 1px 0px 1px;\n border-radius: 4px 4px 0 0;\n}\n.bk-root .bk-tabs-header.bk-right .bk-tab {\n border-width: 1px 3px 1px 0px;\n border-radius: 0 4px 4px 0;\n}\n.bk-root .bk-tabs-header.bk-below .bk-tab {\n border-width: 0px 1px 3px 1px;\n border-radius: 0 0 4px 4px;\n}\n.bk-root .bk-tabs-header.bk-left .bk-tab {\n border-width: 1px 0px 1px 3px;\n border-radius: 4px 0 0 4px;\n}\n.bk-root .bk-close {\n display: inline-block;\n width: 10px;\n height: 10px;\n vertical-align: middle;\n background-image: url(\’data:image/svg+xml;utf8, <svg viewPort="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg"> <line x1="1" y1="9" x2="9" y2="1" stroke="gray" stroke-width="2"/> <line x1="1" y1="1" x2="9" y2="9" stroke="gray" stroke-width="2"/> </svg>\’);\n}\n.bk-root .bk-close:hover {\n background-image: url(\’data:image/svg+xml;utf8, <svg viewPort="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg"> <line x1="1" y1="9" x2="9" y2="1" stroke="red" stroke-width="2"/> <line x1="1" y1="1" x2="9" y2="9" stroke="red" stroke-width="2"/> </svg>\’);\n}\n’},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e(274);class _ extends o.ColumnView{}i.WidgetBoxView=_,_.__name__="WidgetBoxView";class n extends o.Column{constructor(e){super(e)}static init_WidgetBox(){this.prototype.default_view=_}}i.WidgetBox=n,n.__name__="WidgetBox",n.init_WidgetBox()},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});e(1).__exportStar(e(288),t);var a=e(289);t.Marker=a.Marker;var _=e(290);t.Scatter=_.Scatter},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const i=e(1),r=e(289),n=i.__importStar(e(238)),s=Math.sqrt(3);function c(e,t){e.rotate(Math.PI/4),a(e,t),e.rotate(-Math.PI/4)}function l(e,t){const o=t*s,i=o/3;e.moveTo(-o/2,-i),e.lineTo(0,0),e.lineTo(o/2,-i),e.lineTo(0,0),e.lineTo(0,t)}function a(e,t){e.moveTo(0,t),e.lineTo(0,-t),e.moveTo(-t,0),e.lineTo(t,0)}function u(e,t){e.moveTo(0,t),e.lineTo(t/1.5,0),e.lineTo(0,-t),e.lineTo(-t/1.5,0),e.closePath()}function d(e,t){const o=t*s,i=o/3;e.moveTo(-t,i),e.lineTo(t,i),e.lineTo(0,i-o),e.closePath()}function v(e,t,o,i,r){a(e,o),c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function _(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function f(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function T(e,t,o,i,r){_(e,t,o,i,r),P(e,t,o,i,r)}function z(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),l(e,o),e.stroke())}function C(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),c(e,o),e.stroke())}function k(e,t,o,i,r){a(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function m(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function h(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(0,o),e.lineTo(0,-o),e.moveTo(-o/1.5,0),e.lineTo(o/1.5,0),e.stroke())}function q(e,t,o,i,r){m(e,t,o,i,r),P(e,t,o,i,r)}function P(e,t,o,i,r){!function(e,t){e.beginPath(),e.arc(0,0,t/4,0,2*Math.PI,!1),e.closePath()}(e,o),i.set_vectorize(e,t),e.fillStyle=e.strokeStyle,e.fill()}function D(e,t,o,i,r){!function(e,t){const o=t/2,i=s*o;e.moveTo(t,0),e.lineTo(o,-i),e.lineTo(-o,-i),e.lineTo(-t,0),e.lineTo(-o,i),e.lineTo(o,i),e.closePath()}(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function g(e,t,o,i,r){D(e,t,o,i,r),P(e,t,o,i)}function S(e,t,o,i,r){e.rotate(Math.PI),d(e,o),e.rotate(-Math.PI),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function G(e,t,o,i,r){const n=3*o/8,s=[n,n,o,o,n,n,-n,-n,-o,-o,-n,-n],c=[o,n,n,-n,-n,-o,-o,-n,-n,n,n,o];for(e.moveTo(s[0],c[0]),t=1;t<12;t++)e.lineTo(s[t],c[t]);e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function L(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function M(e,t,o,i,r){const n=3*o/8;e.moveTo(-o,-o),e.quadraticCurveTo(0,-n,o,-o),e.quadraticCurveTo(n,0,o,o),e.quadraticCurveTo(0,n,-o,o),e.quadraticCurveTo(-n,0,-o,-o),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function p(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function x(e,t,o,i,r){L(e,t,o,i,r),P(e,t,o,i)}function I(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(-o,o),e.lineTo(o,-o),e.moveTo(-o,-o),e.lineTo(o,o),e.stroke())}function y(e,t,o,i,r){d(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function X(e,t,o,i,r){y(e,t,o,i,r),P(e,t,o,i)}function H(e,t,o,i,r){const n=o*s,c=n/3,l=3*c/8;e.moveTo(-o,c),e.quadraticCurveTo(0,l,o,c),e.quadraticCurveTo(s*l/2,l/2,0,c-n),e.quadraticCurveTo(-s*l/2,l/2,-o,c),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function Y(e,t,o,i,r){!function(e,t){e.moveTo(-t,0),e.lineTo(t,0)}(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function A(e,t,o,i,r){c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function b(e,t,o,i,r){l(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function w(e,t,o){var i;const n=class extends r.MarkerView{static initClass(){this.prototype._render_one=t,this.prototype.glglyph_cls=o}};n.initClass();const s=((i=class extends r.Marker{static initClass(){this.prototype.default_view=n}}).__name__=e,i);return s.initClass(),s}o.Asterisk=w("Asterisk",v,n.AsteriskGL),o.CircleCross=w("CircleCross",f,n.CircleCrossGL),o.CircleDot=w("CircleDot",T),o.CircleY=w("CircleY",z),o.CircleX=w("CircleX",C,n.CircleXGL),o.Cross=w("Cross",k,n.CrossGL),o.Dash=w("Dash",Y),o.Diamond=w("Diamond",m,n.DiamondGL),o.DiamondCross=w("DiamondCross",h,n.DiamondCrossGL),o.DiamondDot=w("DiamondDot",q),o.Dot=w("Dot",P),o.Hex=w("Hex",D,n.HexGL),o.HexDot=w("HexDot",g),o.InvertedTriangle=w("InvertedTriangle",S,n.InvertedTriangleGL),o.Plus=w("Plus",G),o.Square=w("Square",L,n.SquareGL),o.SquareCross=w("SquareCross",p,n.SquareCrossGL),o.SquareDot=w("SquareDot",x),o.SquarePin=w("SquarePin",M),o.SquareX=w("SquareX",I,n.SquareXGL),o.Triangle=w("Triangle",y,n.TriangleGL),o.TriangleDot=w("TriangleDot",X),o.TrianglePin=w("TrianglePin",H),o.X=w("X",A,n.XGL),o.Y=w("Y",b),o.marker_funcs={asterisk:v,circle:_,circle_cross:f,circle_dot:T,circle_y:z,circle_x:C,cross:k,diamond:m,diamond_dot:q,diamond_cross:h,dot:P,hex:D,hex_dot:g,inverted_triangle:S,plus:G,square:L,square_cross:p,square_dot:x,square_pin:M,square_x:I,triangle:y,triangle_dot:X,triangle_pin:H,dash:Y,x:A,y:b}},n function _(e,s,i){Object.defineProperty(i,"__esModule",{value:!0});const t=e(1),n=e(93),r=e(28),a=t.__importStar(e(101)),_=t.__importStar(e(18)),h=e(9),l=e(88);class c extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&null!=this.glglyph_cls&&(this.glglyph=new this.glglyph_cls(e.gl,this))}_render(e,s,{sx:i,sy:t,_size:n,_angle:r}){for(const a of s){if(isNaN(i[a]+t[a]+n[a]+r[a]))continue;const s=n[a]/2;e.beginPath(),e.translate(i[a],t[a]),r[a]&&e.rotate(r[a]),this._render_one(e,a,s,this.visuals.line,this.visuals.fill),r[a]&&e.rotate(-r[a]),e.translate(-i[a],-t[a])}}_mask_data(){const e=this.renderer.plot_view.frame.bbox.h_range,s=e.start-this.max_size,i=e.end+this.max_size,[t,n]=this.renderer.xscale.r_invert(s,i),r=this.renderer.plot_view.frame.bbox.v_range,a=r.start-this.max_size,_=r.end+this.max_size,[h,l]=this.renderer.yscale.r_invert(a,_);return this.index.indices({x0:t,x1:n,y0:h,y1:l})}_hit_point(e){const{sx:s,sy:i}=e,t=s-this.max_size,n=s+this.max_size,[r,a]=this.renderer.xscale.r_invert(t,n),_=i-this.max_size,h=i+this.max_size,[c,o]=this.renderer.yscale.r_invert(_,h),x=this.index.indices({x0:r,x1:a,y0:c,y1:o}),d=[];for(const e of x){const t=this._size[e]/2;Math.abs(this.sx[e]-s)<=t&&Math.abs(this.sy[e]-i)<=t&&d.push(e)}return new l.Selection({indices:d})}_hit_span(e){const{sx:s,sy:i}=e,t=this.bounds(),n=this.max_size/2;let r,a,_,h;if("h"==e.direction){_=t.y0,h=t.y1;const e=s-n,i=s+n;[r,a]=this.renderer.xscale.r_invert(e,i)}else{r=t.x0,a=t.x1;const e=i-n,s=i+n;[_,h]=this.renderer.yscale.r_invert(e,s)}const c=[…this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_rect(e){const{sx0:s,sx1:i,sy0:t,sy1:n}=e,[r,a]=this.renderer.xscale.r_invert(s,i),[_,h]=this.renderer.yscale.r_invert(t,n),c=[…this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_poly(e){const{sx:s,sy:i}=e,t=h.range(0,this.sx.length),n=[];for(let e=0,r=t.length;e<r;e++){const r=t[e];a.point_in_poly(this.sx[e],this.sy[e],s,i)&&n.push(r)}return new l.Selection({indices:n})}_get_legend_args({x0:e,x1:s,y0:i,y1:t},n){const r=n+1,a=new Array(r);a[n]=(e+s)/2;const _=new Array(r);_[n]=(i+t)/2;const h=new Array(r);h[n]=.4*Math.min(Math.abs(s-e),Math.abs(t-i));const l=new Array(r);return l[n]=0,{sx:a,sy:_,_size:h,_angle:l}}draw_legend_for_index(e,{x0:s,x1:i,y0:t,y1:n},r){const a=this._get_legend_args({x0:s,x1:i,y0:t,y1:n},r);this._render(e,[r],a)}}i.MarkerView=c,c.__name__="MarkerView";class o extends n.XYGlyph{constructor(e){super(e)}static init_Marker(){this.mixins([r.LineVector,r.FillVector]),this.define({size:[_.DistanceSpec,{units:"screen",value:4}],angle:[_.AngleSpec,0]})}}i.Marker=o,o.__name__="Marker",o.init_Marker()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=e(1),s=e(289),i=e(288),n=a.__importStar(e(18));class _ extends s.MarkerView{_render(e,t,{sx:r,sy:a,_size:s,_angle:n,_marker:_}){for(const c of t){if(isNaN(r[c]+a[c]+s[c]+n[c])||null==_[c])continue;const t=s[c]/2;e.beginPath(),e.translate(r[c],a[c]),n[c]&&e.rotate(n[c]),i.marker_funcs[_[c]](e,c,t,this.visuals.line,this.visuals.fill),n[c]&&e.rotate(-n[c]),e.translate(-r[c],-a[c])}}draw_legend_for_index(e,{x0:t,x1:r,y0:a,y1:s},i){const n=this._get_legend_args({x0:t,x1:r,y0:a,y1:s},i),_=new Array(i+1);_[i]=this._marker[i],n._marker=_,this._render(e,[i],n)}}r.ScatterView=_,_.__name__="ScatterView";class c extends s.Marker{constructor(e){super(e)}static init_Scatter(){this.prototype.default_view=_,this.define({marker:[n.MarkerSpec,{value:"circle"}]})}}r.Scatter=c,c.__name__="Scatter",c.init_Scatter()},n function _(a,o,p){Object.defineProperty(p,"__esModule",{value:!0});var t=a(292);p.MapOptions=t.MapOptions;var e=a(292);p.GMapOptions=e.GMapOptions;var n=a(292);p.GMapPlot=n.GMapPlot;var M=a(293);p.Plot=M.Plot},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),n=t(19),a=t(293),s=o.__importStar(t(18)),p=t(81),r=t(158),_=t(319);i.GMapPlotView=_.GMapPlotView;class l extends p.Model{constructor(t){super(t)}static init_MapOptions(){this.define({lat:[s.Number],lng:[s.Number],zoom:[s.Number,12]})}}i.MapOptions=l,l.__name__="MapOptions",l.init_MapOptions();class c extends l{constructor(t){super(t)}static init_GMapOptions(){this.define({map_type:[s.String,"roadmap"],scale_control:[s.Boolean,!1],styles:[s.String],tilt:[s.Int,45]})}}i.GMapOptions=c,c.__name__="GMapOptions",c.init_GMapOptions();class u extends a.Plot{constructor(t){super(t)}static init_GMapPlot(){this.prototype.default_view=_.GMapPlotView,this.define({map_options:[s.Instance],api_key:[s.String]}),this.override({x_range:()=>new r.Range1d,y_range:()=>new r.Range1d})}initialize(){super.initialize(),this.use_map=!0,this.api_key||n.logger.error("api_key is required. See https://developers.google.com/maps/documentation/javascript/get-api-key for more information on how to obtain your own.")}}i.GMapPlot=u,u.__name__="GMapPlot",u.init_GMapPlot()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1),o=i.__importStar(e(28)),n=i.__importStar(e(18)),s=e(15),a=e(9),l=e(13),_=e(8),h=e(272),c=e(169),u=e(145),d=e(294),b=e(85),g=e(90),p=e(210),m=e(312);r.PlotView=m.PlotView;class f extends h.LayoutDOM{constructor(e){super(e)}static init_Plot(){this.prototype.default_view=m.PlotView,this.mixins([["outline_",o.Line],["background_",o.Fill],["border_",o.Fill]]),this.define({toolbar:[n.Instance,()=>new d.Toolbar],toolbar_location:[n.Location,"right"],toolbar_sticky:[n.Boolean,!0],plot_width:[n.Number,600],plot_height:[n.Number,600],frame_width:[n.Number,null],frame_height:[n.Number,null],title:[n.Any,()=>new c.Title({text:""})],title_location:[n.Location,"above"],above:[n.Array,[]],below:[n.Array,[]],left:[n.Array,[]],right:[n.Array,[]],center:[n.Array,[]],renderers:[n.Array,[]],x_range:[n.Instance,()=>new p.DataRange1d],extra_x_ranges:[n.Any,{}],y_range:[n.Instance,()=>new p.DataRange1d],extra_y_ranges:[n.Any,{}],x_scale:[n.Instance,()=>new u.LinearScale],y_scale:[n.Instance,()=>new u.LinearScale],lod_factor:[n.Number,10],lod_interval:[n.Number,300],lod_threshold:[n.Number,2e3],lod_timeout:[n.Number,500],hidpi:[n.Boolean,!0],output_backend:[n.OutputBackend,"canvas"],min_border:[n.Number,5],min_border_top:[n.Number,null],min_border_left:[n.Number,null],min_border_bottom:[n.Number,null],min_border_right:[n.Number,null],inner_width:[n.Number],inner_height:[n.Number],outer_width:[n.Number],outer_height:[n.Number],match_aspect:[n.Boolean,!1],aspect_scale:[n.Number,1],reset_policy:[n.ResetPolicy,"standard"]}),this.override({outline_line_color:"#e5e5e5",border_fill_color:"#ffffff",background_fill_color:"#ffffff"})}get width(){const e=this.properties.width.get_value();return null!=e?e:this.plot_width}set width(e){this.setv({width:e,plot_width:e})}get height(){const e=this.properties.height.get_value();return null!=e?e:this.plot_height}set height(e){this.setv({height:e,plot_height:e})}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new s.Signal0(this,"reset");for(const e of l.values(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of l.values(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t="center"){const r=this.properties[t].get_value();this.setv({[t]:[…r,e]})}remove_layout(e){const t=t=>{a.remove_by(t,t=>t==e)};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}add_renderers(…e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new b.ColumnDataSource,r={}){const i=Object.assign(Object.assign({},r),{data_source:t,glyph:e}),o=new g.GlyphRenderer(i);return this.add_renderers(o),o}add_tools(…e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[…this.side_panels,…this.center]}get side_panels(){const{above:e,below:t,left:r,right:i}=this;return a.concat([e,t,r,i])}}r.Plot=f,f.__name__="Plot",f.init_Plot()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1).__importStar(t(18)),c=t(8),o=t(9),n=t(13),a=t(295),l=t(305),r=t=>{switch(t){case"tap":return"active_tap";case"pan":return"active_drag";case"pinch":case"scroll":return"active_scroll";case"multi":return"active_multi"}return null},_=t=>"tap"==t||"pan"==t;class h extends l.ToolbarBase{constructor(t){super(t)}static init_Toolbar(){this.prototype.default_view=l.ToolbarBaseView,this.define({active_drag:[s.Any,"auto"],active_inspect:[s.Any,"auto"],active_scroll:[s.Any,"auto"],active_tap:[s.Any,"auto"],active_multi:[s.Any,null]})}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:i,active_scroll:s,active_tap:c,active_multi:o}=this.properties;this.on_change([t,e,i,s,c,o],()=>this._init_tools())}_init_tools(){if(super._init_tools(),"auto"==this.active_inspect);else if(this.active_inspect instanceof a.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if(c.isArray(this.active_inspect)){const t=o.intersection(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)o.includes(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of n.values(this.gestures)){t.tools=o.sort_by(t.tools,t=>t.default_order);for(const e of t.tools)this.connect(e.properties.active.change,()=>this._active_change(e))}for(const[e,i]of n.entries(this.gestures)){const s=r(e);if(s){const c=this[s];"auto"==c?0!=i.tools.length&&_(e)&&t(i.tools[0]):null!=c&&(o.includes(this.tools,c)?t(c):this[s]=null)}}}}i.Toolbar=h,h.__name__="Toolbar",h.init_Toolbar()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const n=e(1),s=e(296),i=e(304),_=n.__importStar(e(18));class c extends s.ButtonToolView{}o.InspectToolView=c,c.__name__="InspectToolView";class l extends s.ButtonTool{constructor(e){super(e),this.event_type="move"}static init_InspectTool(){this.prototype.button_view=i.OnOffButtonView,this.define({toggleable:[_.Boolean,!0]}),this.override({active:!0})}}o.InspectTool=l,l.__name__="InspectTool",l.init_InspectTool()},n function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const i=t(1),s=i.__importDefault(t(297)),n=t(78),l=t(298),r=t(72),a=i.__importStar(t(18)),u=t(29),_=t(8),h=t(9),c=t(299),m=i.__importDefault(t(300)),d=i.__importDefault(t(301)),p=i.__importDefault(t(284)),f=t(302);class g extends n.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o="left"==e||"above"==e,i=this.parent.model.horizontal?"vertical":"horizontal";this._menu=new f.ContextMenu(o?h.reversed(t):t,{orientation:i,prevent_hide:t=>t.target==this.el})}this._hammer=new s.default(this.el,{touchAction:"auto",inputClass:s.default.TouchMouseInput}),this.connect(this.model.change,()=>this.render()),this._hammer.on("tap",t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()}),this._hammer.on("press",()=>this._pressed())}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[…super.styles(),m.default,d.default,p.default]}css_classes(){return super.css_classes().concat(c.bk_toolbar_button)}render(){r.empty(this.el);const t=this.model.computed_icon;_.isString(t)&&(u.startsWith(t,"data:image")?this.el.style.backgroundImage="url(’"+t+"’)":this.el.classList.add(t)),this.el.title=this.model.tooltip,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const{left:e,top:o,right:i,bottom:s}=this.el.getBoundingClientRect(),n=(()=>{switch(this.parent.model.toolbar_location){case"right":return{right:e,top:o};case"left":return{left:i,top:o};case"above":return{left:e,top:s};case"below":return{left:e,bottom:o}}})();null===(t=this._menu)||void 0===t||t.toggle(n)}}o.ButtonToolButtonView=g,g.__name__="ButtonToolButtonView";class v extends l.ToolView{}o.ButtonToolView=v,v.__name__="ButtonToolView";class b extends l.Tool{constructor(t){super(t)}static init_ButtonTool(){this.internal({disabled:[a.Boolean,!1]})}get tooltip(){return this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=b,b.__name__="ButtonTool",b.init_ButtonTool()},n function _(t,e,n){n /! Hammer.JS - v2.0.7 - 2016-04-22n * http://hammerjs.github.io/n *n * Copyright (c) 2016 Jorik Tangelder;n * Licensed under the MIT license */n !function(t,n,i,r){"use strict";var s,o=["","webkit","Moz","MS","ms","o"],a=n.createElement("div"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,n){return setTimeout(y(t,n),e)}function p(t,e,n){return!!Array.isArray(t)&&(f(t,n[e],n),!0)}function f(t,e,n){var i;if(t)if(t.forEach)t.forEach(e,n);else if(void 0!==t.length)for(i=0;i<t.length;)e.call(n,t[i],i,t),i++;else for(i in t)t.hasOwnProperty(i)&&e.call(n,t[i],i,t)}function v(e,n,i){var r="DEPRECATED METHOD: "+n+"\n"+i+" AT \n";return function(){var n=new Error("get-stack-trace"),i=n&&n.stack?n.stack.replace(/^[^\(]+?[\n$]/gm,"").replace(/^\s+at\s+/gm,"").replace(/^Object.<anonymous>\s\(/gm,"{anonymous}()@"):"Unknown Stack Trace",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,i),e.apply(this,arguments)}}s="function"!=typeof Object.assign?function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),n=1;n<arguments.length;n++){var i=arguments[n];if(null!=i)for(var r in i)i.hasOwnProperty(r)&&(e[r]=i[r])}return e}:Object.assign;var d=v((function(t,e,n){for(var i=Object.keys(e),r=0;r<i.length;)(!n||n&&void 0===t[i[r]])&&(t[i[r]]=e[i[r]]),r++;return t}),"extend","Use assign."),m=v((function(t,e){return d(t,e,!0)}),"merge","Use assign.");function g(t,e,n){var i,r=e.prototype;(i=t.prototype=Object.create(r)).constructor=t,i._super=r,n&&s(i,n)}function y(t,e){return function(){return t.apply(e,arguments)}}function T(t,e){return"function"==typeof t?t.apply(e&&e[0]||void 0,e):t}function E(t,e){return void 0===t?e:t}function I(t,e,n){f(S(e),(function(e){t.addEventListener(e,n,!1)}))}function A(t,e,n){f(S(e),(function(e){t.removeEventListener(e,n,!1)}))}function _(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1}function C(t,e){return t.indexOf(e)>-1}function S(t){return t.trim().split(/\s+/g)}function b(t,e,n){if(t.indexOf&&!n)return t.indexOf(e);for(var i=0;i<t.length;){if(n&&t[i][n]==e||!n&&t[i]===e)return i;i++}return-1}function x(t){return Array.prototype.slice.call(t,0)}function P(t,e,n){for(var i=[],r=[],s=0;s<t.length;){var o=e?t[s][e]:t[s];b(r,o)<0&&i.push(t[s]),r[s]=o,s++}return n&&(i=e?i.sort((function(t,n){return t[e]>n[e]})):i.sort()),i}function D(t,e){for(var n,i,r=e[0].toUpperCase()+e.slice(1),s=0;s<o.length;){if((i=(n=o[s])?n+r:e)in t)return i;s++}}var w=1;function O(e){var n=e.ownerDocument||e;return n.defaultView||n.parentWindow||t}var R="ontouchstart"in t,M=void 0!==D(t,"PointerEvent"),z=R&&/mobile|tablet|ip(ad|hone|od)|android/i.test(navigator.userAgent),N=["x","y"],X=["clientX","clientY"];function Y(t,e){var n=this;this.manager=t,this.callback=e,this.element=t.element,this.target=t.options.inputTarget,this.domHandler=function(e){T(t.options.enable,[t])&&n.handler(e)},this.init()}function F(t,e,n){var i=n.pointers.length,r=n.changedPointers.length,s=1&e&&i-r==0,o=12&e&&i-r==0;n.isFirst=!!s,n.isFinal=!!o,s&&(t.session={}),n.eventType=e,function(t,e){var n=t.session,i=e.pointers,r=i.length;n.firstInput||(n.firstInput=W(e));r>1&&!n.firstMultiple?n.firstMultiple=W(e):1===r&&(n.firstMultiple=!1);var s=n.firstInput,o=n.firstMultiple,a=o?o.center:s.center,h=e.center=q(i);e.timeStamp=c(),e.deltaTime=e.timeStamp-s.timeStamp,e.angle=U(a,h),e.distance=L(a,h),function(t,e){var n=e.center,i=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},i=t.offsetDelta={x:n.x,y:n.y});e.deltaX=r.x+(n.x-i.x),e.deltaY=r.y+(n.y-i.y)}(n,e),e.offsetDirection=H(e.deltaX,e.deltaY);var l=k(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=l.x,e.overallVelocityY=l.y,e.overallVelocity=u(l.x)>u(l.y)?l.x:l.y,e.scale=o?(p=o.pointers,f=i,L(f[0],f[1],X)/L(p[0],p[1],X)):1,e.rotation=o?function(t,e){return U(e[1],e[0],X)+U(t[1],t[0],X)}(o.pointers,i):0,e.maxPointers=n.prevInput?e.pointers.length>n.prevInput.maxPointers?e.pointers.length:n.prevInput.maxPointers:e.pointers.length,function(t,e){var n,i,r,s,o=t.lastInterval||e,a=e.timeStamp-o.timeStamp;if(8!=e.eventType&&(a>25||void 0===o.velocity)){var h=e.deltaX-o.deltaX,c=e.deltaY-o.deltaY,l=k(a,h,c);i=l.x,r=l.y,n=u(l.x)>u(l.y)?l.x:l.y,s=H(h,c),t.lastInterval=e}else n=o.velocity,i=o.velocityX,r=o.velocityY,s=o.direction;e.velocity=n,e.velocityX=i,e.velocityY=r,e.direction=s}(n,e);var p,f;var v=t.element;_(e.srcEvent.target,v)&&(v=e.srcEvent.target);e.target=v}(t,n),t.emit("hammer.input",n),t.recognize(n),t.session.prevInput=n}function W(t){for(var e=[],n=0;n<t.pointers.length;)e[n]={clientX:h(t.pointers[n].clientX),clientY:h(t.pointers[n].clientY)},n++;return{timeStamp:c(),pointers:e,center:q(e),deltaX:t.deltaX,deltaY:t.deltaY}}function q(t){var e=t.length;if(1===e)return{x:h(t[0].clientX),y:h(t[0].clientY)};for(var n=0,i=0,r=0;r<e;)n+=t[r].clientX,i+=t[r].clientY,r++;return{x:h(n/e),y:h(i/e)}}function k(t,e,n){return{x:e/t||0,y:n/t||0}}function H(t,e){return t===e?1:u(t)>=u(e)?t<0?2:4:e<0?8:16}function L(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return Math.sqrt(i*i+r*r)}function U(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return 180*Math.atan2(r,i)/Math.PI}Y.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var V={mousedown:1,mousemove:2,mouseup:4};function j(){this.evEl="mousedown",this.evWin="mousemove mouseup",this.pressed=!1,Y.apply(this,arguments)}g(j,Y,{handler:function(t){var e=V[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:"mouse",srcEvent:t}))}});var G={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Z={2:"touch",3:"pen",4:"mouse",5:"kinect"},B="pointerdown",$="pointermove pointerup pointercancel";function J(){this.evEl=B,this.evWin=$,Y.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(B="MSPointerDown",$="MSPointerMove MSPointerUp MSPointerCancel"),g(J,Y,{handler:function(t){var e=this.store,n=!1,i=t.type.toLowerCase().replace("ms",""),r=G[i],s=Z[t.pointerType]||t.pointerType,o="touch"==s,a=b(e,t.pointerId,"pointerId");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(n=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),n&&e.splice(a,1))}});var K={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function Q(){this.evTarget="touchstart",this.evWin="touchstart touchmove touchend touchcancel",this.started=!1,Y.apply(this,arguments)}function tt(t,e){var n=x(t.touches),i=x(t.changedTouches);return 12&e&&(n=P(n.concat(i),"identifier",!0)),[n,i]}g(Q,Y,{handler:function(t){var e=K[t.type];if(1===e&&(this.started=!0),this.started){var n=tt.call(this,t,e);12&e&&n[0].length-n[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}}});var et={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function nt(){this.evTarget="touchstart touchmove touchend touchcancel",this.targetIds={},Y.apply(this,arguments)}function it(t,e){var n=x(t.touches),i=this.targetIds;if(3&e&&1===n.length)return i[n[0].identifier]=!0,[n,n];var r,s,o=x(t.changedTouches),a=[],h=this.target;if(s=n.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r<s.length;)i[s[r].identifier]=!0,r++;for(r=0;r<o.length;)i[o[r].identifier]&&a.push(o[r]),12&e&&delete i[o[r].identifier],r++;return a.length?[P(s.concat(a),"identifier",!0),a]:void 0}g(nt,Y,{handler:function(t){var e=et[t.type],n=it.call(this,t,e);n&&this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}});function rt(){Y.apply(this,arguments);var t=y(this.handler,this);this.touch=new nt(this.manager,t),this.mouse=new j(this.manager,t),this.primaryTouch=null,this.lastTouches=[]}function st(t,e){1&t?(this.primaryTouch=e.changedPointers[0].identifier,ot.call(this,e)):12&t&&ot.call(this,e)}function ot(t){var e=t.changedPointers[0];if(e.identifier===this.primaryTouch){var n={x:e.clientX,y:e.clientY};this.lastTouches.push(n);var i=this.lastTouches;setTimeout((function(){var t=i.indexOf(n);t>-1&&i.splice(t,1)}),2500)}}function at(t){for(var e=t.srcEvent.clientX,n=t.srcEvent.clientY,i=0;i<this.lastTouches.length;i++){var r=this.lastTouches[i],s=Math.abs(e-r.x),o=Math.abs(n-r.y);if(s<=25&&o<=25)return!0}return!1}g(rt,Y,{handler:function(t,e,n){var i="touch"==n.pointerType,r="mouse"==n.pointerType;if(!(r&&n.sourceCapabilities&&n.sourceCapabilities.firesTouchEvents)){if(i)st.call(this,e,n);else if(r&&at.call(this,n))return;this.callback(t,e,n)}},destroy:function(){this.touch.destroy(),this.mouse.destroy()}});var ht=D(a.style,"touchAction"),ut=void 0!==ht,ct=function(){if(!ut)return!1;var e={},n=t.CSS&&t.CSS.supports;return["auto","manipulation","pan-y","pan-x","pan-x pan-y","none"].forEach((function(i){e[i]=!n||t.CSS.supports("touch-action",i)})),e}();function lt(t,e){this.manager=t,this.set(e)}lt.prototype={set:function(t){"compute"==t&&(t=this.compute()),ut&&this.manager.element.style&&ct[t]&&(this.manager.element.style[ht]=t),this.actions=t.toLowerCase().trim()},update:function(){this.set(this.manager.options.touchAction)},compute:function(){var t=[];return f(this.manager.recognizers,(function(e){T(e.options.enable,[e])&&(t=t.concat(e.getTouchAction()))})),function(t){if(C(t,"none"))return"none";var e=C(t,"pan-x"),n=C(t,"pan-y");if(e&&n)return"none";if(e||n)return e?"pan-x":"pan-y";if(C(t,"manipulation"))return"manipulation";return"auto"}(t.join(" "))},preventDefaults:function(t){var e=t.srcEvent,n=t.offsetDirection;if(this.manager.session.prevented)e.preventDefault();else{var i=this.actions,r=C(i,"none")&&!ct.none,s=C(i,"pan-y")&&!ct["pan-y"],o=C(i,"pan-x")&&!ct["pan-x"];if(r){var a=1===t.pointers.length,h=t.distance<2,u=t.deltaTime<250;if(a&&h&&u)return}if(!o||!s)return r||s&&6&n||o&&24&n?this.preventSrc(e):void 0}},preventSrc:function(t){this.manager.session.prevented=!0,t.preventDefault()}};function pt(t){this.options=s({},this.defaults,t||{}),this.id=w++,this.manager=null,this.options.enable=E(this.options.enable,!0),this.state=1,this.simultaneous={},this.requireFail=[]}function ft(t){return 16&t?"cancel":8&t?"end":4&t?"move":2&t?"start":""}function vt(t){return 16==t?"down":8==t?"up":2==t?"left":4==t?"right":""}function dt(t,e){var n=e.manager;return n?n.get(t):t}function mt(){pt.apply(this,arguments)}function gt(){mt.apply(this,arguments),this.pX=null,this.pY=null}function yt(){mt.apply(this,arguments)}function Tt(){pt.apply(this,arguments),this._timer=null,this._input=null}function Et(){mt.apply(this,arguments)}function It(){mt.apply(this,arguments)}function At(){pt.apply(this,arguments),this.pTime=!1,this.pCenter=!1,this._timer=null,this._input=null,this.count=0}function _t(t,e){return(e=e||{}).recognizers=E(e.recognizers,_t.defaults.preset),new Ct(t,e)}pt.prototype={defaults:{},set:function(t){return s(this.options,t),this.manager&&this.manager.touchAction.update(),this},recognizeWith:function(t){if(p(t,"recognizeWith",this))return this;var e=this.simultaneous;return e[(t=dt(t,this)).id]||(e[t.id]=t,t.recognizeWith(this)),this},dropRecognizeWith:function(t){return p(t,"dropRecognizeWith",this)||(t=dt(t,this),delete this.simultaneous[t.id]),this},requireFailure:function(t){if(p(t,"requireFailure",this))return this;var e=this.requireFail;return-1===b(e,t=dt(t,this))&&(e.push(t),t.requireFailure(this)),this},dropRequireFailure:function(t){if(p(t,"dropRequireFailure",this))return this;t=dt(t,this);var e=b(this.requireFail,t);return e>-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,n=this.state;function i(n){e.manager.emit(n,t)}n<8&&i(e.options.event+ft(n)),i(e.options.event),t.additionalEvent&&i(t.additionalEvent),n>=8&&i(e.options.event+ft(n))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=32},canEmit:function(){for(var t=0;t<this.requireFail.length;){if(!(33&this.requireFail[t].state))return!1;t++}return!0},recognize:function(t){var e=s({},t);if(!T(this.options.enable,[this,e]))return this.reset(),void(this.state=32);56&this.state&&(this.state=1),this.state=this.process(e),30&this.state&&this.tryEmit(e)},process:function(t){},getTouchAction:function(){},reset:function(){}},g(mt,pt,{defaults:{pointers:1},attrTest:function(t){var e=this.options.pointers;return 0===e||t.pointers.length===e},process:function(t){var e=this.state,n=t.eventType,i=6&e,r=this.attrTest(t);return i&&(8&n||!r)?16|e:i||r?4&n?8|e:2&e?4|e:2:32}}),g(gt,mt,{defaults:{event:"pan",threshold:10,pointers:1,direction:30},getTouchAction:function(){var t=this.options.direction,e=[];return 6&t&&e.push("pan-y"),24&t&&e.push("pan-x"),e},directionTest:function(t){var e=this.options,n=!0,i=t.distance,r=t.direction,s=t.deltaX,o=t.deltaY;return r&e.direction||(6&e.direction?(r=0===s?1:s<0?2:4,n=s!=this.pX,i=Math.abs(t.deltaX)):(r=0===o?1:o<0?8:16,n=o!=this.pY,i=Math.abs(t.deltaY))),t.direction=r,n&&i>e.threshold&&r&e.direction},attrTest:function(t){return mt.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=vt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(yt,mt,{defaults:{event:"pinch",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?"in":"out";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(Tt,pt,{defaults:{event:"press",pointers:1,time:251,threshold:9},getTouchAction:function(){return["auto"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance<e.threshold,r=t.deltaTime>e.time;if(this._input=t,!i||!n||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return 32},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+"up",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Et,mt,{defaults:{event:"rotate",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(It,mt,{defaults:{event:"swipe",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return gt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,n=this.options.direction;return 30&n?e=t.overallVelocity:6&n?e=t.overallVelocityX:24&n&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&n&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=vt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(At,pt,{defaults:{event:"tap",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return["manipulation"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance<e.threshold,r=t.deltaTime<e.time;if(this.reset(),1&t.eventType&&0===this.count)return this.failTimeout();if(i&&r&&n){if(4!=t.eventType)return this.failTimeout();var s=!this.pTime||t.timeStamp-this.pTime<e.interval,o=!this.pCenter||L(this.pCenter,t.center)<e.posThreshold;if(this.pTime=t.timeStamp,this.pCenter=t.center,o&&s?this.count+=1:this.count=1,this._input=t,0===this.count%e.taps)return this.hasRequireFailures()?(this._timer=l((function(){this.state=8,this.tryEmit()}),e.interval,this),2):8}return 32},failTimeout:function(){return this._timer=l((function(){this.state=32}),this.options.interval,this),32},reset:function(){clearTimeout(this._timer)},emit:function(){8==this.state&&(this._input.tapCount=this.count,this.manager.emit(this.options.event,this._input))}}),_t.VERSION="2.0.7",_t.defaults={domEvents:!1,touchAction:"compute",enable:!0,inputTarget:null,inputClass:null,preset:[[Et,{enable:!1}],[yt,{enable:!1},["rotate"]],[It,{direction:6}],[gt,{direction:6},["swipe"]],[At],[At,{event:"doubletap",taps:2},["tap"]],[Tt]],cssProps:{userSelect:"none",touchSelect:"none",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}};function Ct(t,e){var n;this.options=s({},_t.defaults,e||{}),this.options.inputTarget=this.options.inputTarget||t,this.handlers={},this.session={},this.recognizers=[],this.oldCssProps={},this.element=t,this.input=new((n=this).options.inputClass||(M?J:z?nt:R?rt:j))(n,F),this.touchAction=new lt(this,this.options.touchAction),St(this,!0),f(this.options.recognizers,(function(t){var e=this.add(new t[0](t[1]));t[2]&&e.recognizeWith(t[2]),t[3]&&e.requireFailure(t[3])}),this)}function St(t,e){var n,i=t.element;i.style&&(f(t.options.cssProps,(function(r,s){n=D(i.style,s),e?(t.oldCssProps[n]=i.style[n],i.style[n]=r):i.style[n]=t.oldCssProps[n]||""})),e||(t.oldCssProps={}))}Ct.prototype={set:function(t){return s(this.options,t),t.touchAction&&this.touchAction.update(),t.inputTarget&&(this.input.destroy(),this.input.target=t.inputTarget,this.input.init()),this},stop:function(t){this.session.stopped=t?2:1},recognize:function(t){var e=this.session;if(!e.stopped){var n;this.touchAction.preventDefaults(t);var i=this.recognizers,r=e.curRecognizer;(!r||r&&8&r.state)&&(r=e.curRecognizer=null);for(var s=0;s<i.length;)n=i[s],2===e.stopped||r&&n!=r&&!n.canRecognizeWith(r)?n.reset():n.recognize(t),!r&&14&n.state&&(r=e.curRecognizer=n),s++}},get:function(t){if(t instanceof pt)return t;for(var e=this.recognizers,n=0;n<e.length;n++)if(e[n].options.event==t)return e[n];return null},add:function(t){if(p(t,"add",this))return this;var e=this.get(t.options.event);return e&&this.remove(e),this.recognizers.push(t),t.manager=this,this.touchAction.update(),t},remove:function(t){if(p(t,"remove",this))return this;if(t=this.get(t)){var e=this.recognizers,n=b(e,t);-1!==n&&(e.splice(n,1),this.touchAction.update())}return this},on:function(t,e){if(void 0!==t&&void 0!==e){var n=this.handlers;return f(S(t),(function(t){n[t]=n[t]||[],n[t].push(e)})),this}},off:function(t,e){if(void 0!==t){var n=this.handlers;return f(S(t),(function(t){e?n[t]&&n[t].splice(b(n[t],e),1):delete n[t]})),this}},emit:function(t,e){this.options.domEvents&&function(t,e){var i=n.createEvent("Event");i.initEvent(t,!0,!0),i.gesture=e,e.target.dispatchEvent(i)}(t,e);var i=this.handlers[t]&&this.handlers[t].slice();if(i&&i.length){e.type=t,e.preventDefault=function(){e.srcEvent.preventDefault()};for(var r=0;r<i.length;)i[r](e),r++}},destroy:function(){this.element&&St(this,!1),this.handlers={},this.session={},this.input.destroy(),this.element=null}},s(_t,{INPUT_START:1,INPUT_MOVE:2,INPUT_END:4,INPUT_CANCEL:8,STATE_POSSIBLE:1,STATE_BEGAN:2,STATE_CHANGED:4,STATE_ENDED:8,STATE_RECOGNIZED:8,STATE_CANCELLED:16,STATE_FAILED:32,DIRECTION_NONE:1,DIRECTION_LEFT:2,DIRECTION_RIGHT:4,DIRECTION_UP:8,DIRECTION_DOWN:16,DIRECTION_HORIZONTAL:6,DIRECTION_VERTICAL:24,DIRECTION_ALL:30,Manager:Ct,Input:Y,TouchAction:lt,TouchInput:nt,MouseInput:j,PointerEventInput:J,TouchMouseInput:rt,SingleTouchInput:Q,Recognizer:pt,AttrRecognizer:mt,Tap:At,Pan:gt,Swipe:It,Pinch:yt,Rotate:Et,Press:Tt,on:I,off:A,each:f,merge:m,extend:d,assign:s,inherit:g,bindFn:y,prefixed:D}),(void 0!==t?t:"undefined"!=typeof self?self:{}).Hammer=_t,"function"==typeof define&&define.amd?define((function(){return _t})):void 0!==e&&e.exports?e.exports=_t:t.Hammer=_t}(window,document)},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1).__importStar(t(18)),o=t(71),s=t(9),a=t(81);class r extends o.View{get plot_view(){return this.parent}get plot_model(){return this.parent.model}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>{this.model.active?this.activate():this.deactivate()})}activate(){}deactivate(){}}i.ToolView=r,r.__name__="ToolView";class _ extends a.Model{constructor(t){super(t)}static init_Tool(){this.prototype._known_aliases=new Map,this.internal({active:[n.Boolean,!1]})}get synthetic_renderers(){return[]}_get_dim_tooltip(t,e){switch(e){case"width":return t+" (x-axis)";case"height":return t+" (y-axis)";case"both":return t}}_get_dim_limits([t,e],[i,n],o,a){const r=o.bbox.h_range;let _;"width"==a||"both"==a?(_=[s.min([t,i]),s.max([t,i])],_=[s.max([_[0],r.start]),s.min([_[1],r.end])]):_=[r.start,r.end];const l=o.bbox.v_range;let c;return"height"==a||"both"==a?(c=[s.min([e,n]),s.max([e,n])],c=[s.max([c[0],l.start]),s.min([c[1],l.end])]):c=[l.start,l.end],[_,c]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[…this.prototype._known_aliases.keys()];throw new Error(unexpected tool name ‘${t}’, possible tools are ${e.join(", ")})}}}i.Tool=_,_.__name__="Tool",_.init_Tool()},n function _(o,b,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_toolbar="bk-toolbar",t.bk_toolbar_hidden="bk-toolbar-hidden",t.bk_toolbar_button="bk-toolbar-button",t.bk_button_bar="bk-button-bar",t.bk_toolbar_button_custom_action="bk-toolbar-button-custom-action"},n function _(o,b,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-toolbar-hidden {\n visibility: hidden;\n opacity: 0;\n transition: visibility 0.3s linear, opacity 0.3s linear;\n}\n.bk-root .bk-toolbar,\n.bk-root .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-toolbar .bk-logo {\n flex-shrink: 0;\n -webkit-flex-shrink: 0;\n}\n.bk-root .bk-toolbar.bk-above,\n.bk-root .bk-toolbar.bk-below {\n flex-direction: row;\n -webkit-flex-direction: row;\n justify-content: flex-end;\n -webkit-justify-content: flex-end;\n}\n.bk-root .bk-toolbar.bk-above .bk-button-bar,\n.bk-root .bk-toolbar.bk-below .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-toolbar.bk-above .bk-logo,\n.bk-root .bk-toolbar.bk-below .bk-logo {\n order: 1;\n -webkit-order: 1;\n margin-left: 5px;\n margin-right: 0px;\n}\n.bk-root .bk-toolbar.bk-left,\n.bk-root .bk-toolbar.bk-right {\n flex-direction: column;\n -webkit-flex-direction: column;\n justify-content: flex-start;\n -webkit-justify-content: flex-start;\n}\n.bk-root .bk-toolbar.bk-left .bk-button-bar,\n.bk-root .bk-toolbar.bk-right .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-toolbar.bk-left .bk-logo,\n.bk-root .bk-toolbar.bk-right .bk-logo {\n order: 0;\n -webkit-order: 0;\n margin-bottom: 5px;\n margin-top: 0px;\n}\n.bk-root .bk-toolbar-button {\n width: 30px;\n height: 30px;\n cursor: pointer;\n background-size: 60% 60%;\n background-origin: border-box;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .bk-toolbar-button:hover {\n background-color: rgba(192, 192, 192, 0.15);\n}\n.bk-root .bk-toolbar-button:focus {\n outline: none;\n}\n.bk-root .bk-toolbar-button::-moz-focus-inner {\n border: 0;\n}\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button {\n border-bottom: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button.bk-active {\n border-bottom-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button {\n border-top: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button.bk-active {\n border-top-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button {\n border-left: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button.bk-active {\n border-left-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button {\n border-right: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button.bk-active {\n border-right-color: #26aae1;\n}\n.bk-root .bk-button-bar + .bk-button-bar:before {\n content: " ";\n display: inline-block;\n background-color: lightgray;\n}\n.bk-root .bk-toolbar.bk-above .bk-button-bar + .bk-button-bar:before,\n.bk-root .bk-toolbar.bk-below .bk-button-bar + .bk-button-bar:before {\n height: 10px;\n width: 1px;\n}\n.bk-root .bk-toolbar.bk-left .bk-button-bar + .bk-button-bar:before,\n.bk-root .bk-toolbar.bk-right .bk-button-bar + .bk-button-bar:before {\n height: 1px;\n width: 10px;\n}\n’},n function _(A,g,C){Object.defineProperty(C,"__esModule",{value:!0});C.default=’\n.bk-root .bk-tool-icon-copy-to-clipboard {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUSDBoBvcHQeQAAAG9JREFUWMNjXLhsJcNAAiaGAQYwB/xHwh/Q+ITEkfHQCwEWND4jmeb8H/JpgBwfI6cNBhLSEkqaGXRpgFRAcZoZsmlg1AGjDhh1wKgDRh0w6gCaVcf/R2wIkNqw+D9s0wADvUNiyIYA47BJAwPuAAAj/Cjd0TCN6wAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-replace-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxokK3gniQAAAHpJREFUWMNjXLhsJcNAAiaGAQajDhhwB7DgEP+PxmeksvjgDwFcLmYkUh2hkBj8IcBIZXsYh1w2/I8v3sgAOM0bLYhGc8GgrwuICgldfQO88pcvXvg/aOuCUQeM5oLRuoCFCJcTbOMh5XOiW0JDNhdQS3y0IBp1ABwAAF8KGrhC1Eg6AAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-append-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkZWD04WwAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAoUlEQVRYw+1WQQ6AIAwrhO8Y/bIXEz9jIMSDr8ETCUEPQzA4pMeFLKNbu4l5WR0CDOMEALBGIzMuQIBEZQjPgP9JLjwTfBjY9sO9lZsFA9IafZng3BlIyVefgd8XQFZBAWe8jfNxwsDhir6rzoCiPiy1K+J8/FRQemv2XfAdFcQ9znU4Viqg9ta1qYJ+D1BnAIBrkgGVOrXNqUA9rbyZm/AEzFh4jEeY/soAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-intersect-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkrkOpp2wAAAPhJREFUWMPtV1EKwjAMTUavI3oawR/vtn5srJdREfzwMvHHQlcT2mpdMzFfWxiP5r2+JMN+mAiCOB72CABgR1cln4oOGocJnuMTSxWk8jMm7OggYkYXA9gPE3uyd8NXHONJ+eYMdE/NqCJmEZ5ZqlJJ4sUksKN7cYSaPoCZFWR1QI+Xm1fBACU63Cw22x0AAJxudwrffVwvZ+JmQdAHZkw0d4EpAMCw8k87pMdbnwtizQumJYv3nwV6XOA1qbUT/oQLUJgFRbsiNwFVucBIlyR3p0tdMp+XmFjfLKi1LatyAXtCRjPWBdL3Ke3VuACJKFfDr/xFN2fgAR/Go0qaLlmEAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-subtract-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxgsF5XNOQAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAABFUlEQVRYw9VWUQqDMAxNpWfxQxD1MoP97G7zQ5mH2RTZYLtM9lWoMbXtxLXNX4OG9r28l4hrd0PQoqxqAACYpxH25C/nkwCHyCBwSPoS09k1T5Fo+4EiExcC4v584xGFmyIXHBLRISAVZyZufUPVa4rcrwmPDgr93ylo+2GliLRUYHK6th/o/6r7nfLpqaCsagEA8Hh9FmcNKeRmgeYDC+SCq0B6FFi8/BcV6BdR9cL3gCv3ijPKOacsn3rBEcjmaVxpfGcg4wHxzgJJnc6241Hn23DERFRAu1bNcWa3Q0uXi62XR6sCaWoSejbtdLYmU3kTEunNgj0bUbQqYG/IcMaqwPS9jftoVCAQ0ZVDJwf0zQdH4AsyW6fpQu4YegAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-clear-selection {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUGEhcuan3d3wAAAoRJREFUWMPtlzFP3EAQhd+b3TNSzg0N5TWXLkJQUUaKhIQ4fgP/g5ArrriE/I3opEgRrZtIVJR0FJQ010SioUmEZHtnUpwN9gWHGA5BJCy58MraffvmfZ41v3z9hqe8BE98vQh4cgG+Ydzmnrng8efvQJNi/uN7dznx/B3ggtfhf4ehNdUttRzBDIm/2VTiiWCG1HK0nc+3UWtq8BQIiEEakEQOADBIA4QCQmBqoHBhFNR27ikQSmGdYCdTqCpEHMDZmEKRWUBEv1gBDg5SzRJnpopILWICgWuRYflLamuzxB2BmtYqSRIka5VWU8QduXO+1hRc5YZu5GAwmP2ZJzND0IBu5HCV2+NQcAhAVRsnC2IbPzPdSjzd6to6VtfWkXi6YLaVWr7xoAwkfpb8MnC3SH7rKSMBe4M0jA/OTicFIbtCGRIyNbURhcf3ErCd6YwA1m0HgAxhw1NGQnlXBHG4kylVlSJuH0RfIP2CkL2I/qS1gIAAQiBl1QwFggIHtyxgrxK5PgyfC0JWKoT0HLh8LwoietB4TYKaIl7yeNURxB05UtMxDOcVQlZIrlRKdK6m47gjR/fuBRQihyLArtNeJD50Izcx2Eczu7iFkIug4VM3cpOr3MKDekFED0fWUHv9Zq0kpLnridjhY3XDg7NTN0jDrhO3X7O9Wg7wwyANu4mnayNg3gmbu0tCNoUyBNGv2l4rB9EXynA7082FOxAQLhU6rQVO9T2AvWowFToNCJcPORGxIRcnpjZSKATSU9NxvOQnAPArDSaQoUKnNI4iufkGtD4P3EHIcWZhz4HLceSOyrR3Izf5memPAL2cX3yhAkonysZVaWLBkd9dw1Ivv2a/AYPkK+ty1U1DAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-box-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg0kduFrowAAAIdJREFUWMPtVtEKwCAI9KL//4e9DPZ3+wP3KgOjNZouFYI4C8q7s7DtB1lGIeMoRMRinCLXg/ML3EcFqpjjloOyZxRntxpwQ8HsgHYARKFAtSFrCg3TCdMFCE1BuuALEXJLjC4qENsFVXCESZw38/kWLOkC/K4PcOc/Hj03WkoDT3EaWW9egQul6CUbq90JTwAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-box-zoom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg82t254aQAAAkBJREFUWMPN11+E1FEUB/DPTFn2qaeIpcSwr5NlUyJiKWVXWUqvlUh/iE3RY9mUekkPPURtLKNRrFJEeuphGfUUaVliiX1aVjGs6aG7+XX9ZnZ+d2fTl2vmnHvPPfeee/79Sk+may2/UQq/q7Qu+bAJoxjHIKqB/wlfUMcMVqI9bLZ+DGIKwzlzQ2GcxCx2xwvKOUKlaHTiX8bHNspjDONHkOmJBW5jIof/FvPh/06MZOb6cRc7cGn1AKUE5cdzlM/gAr5F/O24H3xkFRfxAbVygvK+cIsspjGWo1zgjeFpxL+BvnLw7laBA4xjIFJwrgu52DoVjKdY4HBEX8dSF3JLYe1fe6UcYCii3xWQjdfuSTnAtoheKCC7GNED5Zx4L4qt61jbTLHA94geKSC7P7ZeShQ0Inoi1IJuEOeORooFXkV0FZNdZs5qvFfKAeqYy7nZ6yg//HG0MBfffh71lFrQDCW2EvEP4mt4okZUDftz9rmGZkotmMxJRtlisy+MTniAWrty3AlXw0hFM2TD89l+oNsoOJXjbIs4EpqNtTCLXbiZ0g+M4mFObj8U3vsNjoZCVcmk60ZwthpepLZkB/AsivWfOJZxtpUQHfWib7KWDwzjeegBZJSdKFiE2qJTFFTwElsi/unQ/awXrU4WGMD7nOJxBY/1EO2iYConq93CHT1GOwucjdqnRyFz+VcHmMNefMY9nNkA3SWUOoXhQviSWQ4huLIRFlirFixnQq/XaKXUgg2xQNGv4V7x/RcW+AXPB3h7H1PaiQAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-zoom-in {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsUBmL8iQAAA2JJREFUWMO9l12IlFUYx3//MzPrLpSjkm5oN4FFIWVEl66IQlFYwtLOzozsjHdGRSCRF0sfBEXRVV0FQuQiLm5CZNBFgRRaRLVFhbJ2EdiN5gbK7toObTPn6eYdPTvNzPvOBz5Xh/ec5/n/n89zXtEHmZqeSXSuXBz/3zfdKvBWJHQrwZuRcP0El+QkbQXeBX6WZEgm6TtJk5lM5o4Lc+cV6qpf4Ga20Tm338zeATItVK9Ker6yvPzp4NDQ3+XieGsCU9MzTYumGbhz7m4ze9/MHgvBgItACrgfGAj2jgAvAYs3wlEujjc13kii8YyZrXXOfWhmo9GnFUlvOOemarVapVqtkslksmb2KjARqL62ecuWN9NxbRInzrldAXhV0uFSIfdew7G/gNLU9MwS8CwSmE3Oz88fcXG5blfpqVRq0Ix8VIAAX0XgrVL7HDCHGcCaWrV60LUBN8Dae58aQIxEqcA592I9M610JL0cpG/U9TIHJNKY3RV5z0R+7Nd4HZ0P1g/2RMBuegLAsRMnb4vT8d5vqKfMzOgtAlADrkmqGywmiMBTwfr3dC9j1Xv/r6Tvg/5/5ejxE6cO7M9faVbQZrYNOFSPmqQvVo9FKexvi5uWX58943aM7DwAfBDY+FbSCxP5sdkGx55GeguzrUEXPaSo2pFkAbiSZQCAzZJOmdkjwd6SpB/M7KykQTPbA2wDhoIzRzcNDx9MJwGNIXdJ0mEzmwbujL7dbma7gd03A7lKfnTOvf74nl0r6bonTUbujRSUCrm2d4L3/kvn3JPe+8+BDW2i9o+kT7z3kxP5sYsA6W47oE64TsR7P9tQL4vA2mh9WdIscKxUyJ0M7aR7acOGzikD65EQLEjaa2ZXzMwDFeB6qZBbbLTRE4EGeSaozNOZgYFf8qP7lmIvs354n0qlHpB0T7B9Ogl4IgJJrmjv/SiQjbrkD+BMUkfSbYATPdckrTOzkciWAXOlQu5cYgLdPEIapud9wMOR9zVJH3ViKx333mtHMJvNuoWFhZ3A+ojMcja77njXBEKwJJfTcqUyCIQ34Mf7nnh0paMnXacFuGoC1mr3AtuDfLzd8Zuyl+rfuGn4HLAD+Az4qZQf+61TAj0Noj8vX6oC35SL43u7teG6rf5+iXppwW7/JUL5D03qaFRvvUe+AAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-zoom-out {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsHgty9VwAAA0FJREFUWMO9l09oXFUUxn/fmXlpItppi22k7UJBRSlVkCytSAuKUloIdjKT0El3FXVXdVFKRVAQV7qQohsNwdA0UFvBhYtqUVyIVlRaogtFQVq7qSTVjA3z3nHzBq/jvPmTN/Ss7rv3nvN99/y794kByMzcfE/7picn/jenmwWeRUI3E7wdCRskuCSTdDfwBvCtJEdySV9KOhpF0e0/LF5SqKtBgbv7ZjObcvfXgShD9Zqk5+orKx8Oj4z8NT05kU1gZm6+bdK0Azezu9z9hLs/HoIBvwAF4H5gKFh7B3gBWFY3460kWve4+3oze9fdx9OpVUmvmNlMHMf1RqNBFEUldz8OHAxUX9q6bduryut+Sfvc/Wz62ZD0fK1afjND9y3gGSRwv1GMojstTxUUCoVhdyopEYDzKXjWwZ4FFnEHWBc3Goet00m7lZlZYQixKw0FZnakGZksHUnHgvCN5/KARBH37enpOVg58H13HV0Kxg/kIuD/ngSA2ZMLt3bTSZJkUzNk7k4+D0AM/CGpaXCyBw/sC8Y/qZd2GpZiuL9YLN4Sx/HpoP5/c/exQ1OVq+1yyt13SLoArEsJnMjlgfOffvK3u58Kprab2QezJxfG2iTzUzI70wRPG9jbmpmb95SNB9mpzp7/j2yVdNbdx4K565K+cvfPJQ27+x5gBzAS7Hlvy+jo4WIvoC3kWpcvS3rR3eeAO9K529x9N7C7zX6AC2b28hN7Hl1Vt44niVq13LUjmtlYkiQfA5s6eO+GpDNJkhw9NFX5ueNt2ARodyF1IHIN2JiOl4H16fiKpK+B2Vq1vBAqFAf4IJkGNiIhWJK0192vunsC1IE/a9XycquNXARa5OnApeeioaHvKuP7r3dTGsiLqFAo7JR0T7B8rhfwXARa2us4UEqr5Ffgs151i/08oTNKdIO770ptObBYq5Yv5ibQq/sl3Qc8lJ4+lnSqH1vFfp9koZRKJVtaWnqkWXqSVkqlDe+vmUDWpZMlK/X6MBDegKf3P/nYaj8ErN9fqZBYEsf3Ag8G8Xit33BaniTcvGX0IvAw8BHwTa1y4Md+CeRqRL9fudwAvpienNi7Vhu21uwflOT+L+i1X2TJP57iUvUFtHWsAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-help {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABltpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPHRpZmY6Q29tcHJlc3Npb24+NTwvdGlmZjpDb21wcmVzc2lvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzI8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMzIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDNDIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMTIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDMjIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPGRjOnN1YmplY3Q+CiAgICAgICAgICAgIDxyZGY6U2VxLz4KICAgICAgICAgPC9kYzpzdWJqZWN0PgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxNjoxMToyOCAxMToxMTo4MjwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+UGl4ZWxtYXRvciAzLjY8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cphjt2AAAAT7SURBVFgJxRdbaFxFdGb2bhui227BWrsVKYgf2kJUbP9EUPuzEB803WTXJjH61Q/7Ya1+CMYKEVTsh4J/EpvY7BoabUiNiA8s1p+4KIhpoUUEselHqyS76TbZ3HuP58ydc3d2u4+IkQxczpz3mZkzZ86VYpXjvenpjZsLhUcliE4AuUuASAgptmt1EFdwPiclzIIUUwubNn17OJlcXo1p2UpodHRiux9xB1Eug1+slbzhFxGOKc851tu7/0oznYYBDA8Pt0U2tL8KQryIq2tvZqQhD0QJHRz3yqWhgYGBpXpydQMwqz6NCnurleCSADkJEfgKfOePqL80R/wV1ZaQyr1LenKfkPCkEPKeaj0xg7vxVL3duCmA0Vyuw/fl52hgBxsBED+h4Cv9z3R/zbRm8MTJTx7HQN7GQB6w5C4L4SX7M5lfLBpurjXMyvNIShiyi0l1pL8n9b7EDGPR8fHxzSsQ6XDB3618/xqo6Pk25V5MpVJllgHM1BO58RdQ612kOYZ+GXdij70TYQB05mpj+1kU5G2fB+l3PZtOf8NGx6ambnMXb3yAxg8wjSEG6OKKR9oicBQD+ZvpH2Wzj0lQpxCPG9qMv1x6hHNCsSAlHM7ZOa682vlI9tRDbvHGbD3nZAPpDoD/3JIrLpAs26UFkC3EMUA99hpfGtEBfJjNJnS2Gwnadnvl+Xw+iuc3DAJuNyIaSCHpilVldyDjjUxj3WDZIAhxhHHyRcdNuA7AAfUaXzVKODpzFiZ4/uLvh5G+m2no+C/pyIf7MqlEJB7bpqR6nXkEUfbeawuLaZsW2ISfNQ2vtaktQlGFQyIVGT0o2+2EC4iQNGwjBIN9qdQ5Qg4mk4X4rW3vCClLtowE2FOFUxKDfNmiZci3ovKKRFPh4FK9q4Zbdr+lKKJiA13TcHR2dmLBgdmQ0GAS2MZaEowY+XbAk09IvgtYZGp16SyvFhaHcIUh645t8T9DBCcnz5zZ4hZLu3DzK2QlL1QQa0Y+pHiJKPSuOGj3PmZTheM5w2TwqBxnvBZOTk7G5gvXJ5Aelms8wnJURL+olSWcfEhf6gDoUXPMq6ZlqbzWU2pE+3hi4s6F68tfIj9cBMlikr7Z0/P0b/X0yIcUXsDCF1WhtL4OROHaXk+xlkbV0Cu732Nmhc4peaWSg73pA8dq5RkvO37ldUTfXCKZv2q45MkhvG87WQEzpCCUSvV1d9GONBy3lMvgKSwrZig8gjAietWY0QriylO2jIo4yVbOSb7KB/qmI9BPKjHpSSXYauRyn92Nq9/Kcrj13x3s3v8D481glQ/0raiNYgX9njPSBOImbrHZePl+tfFmc9sH+Xaoh8NjOKSVdDMhjjYzQLy+dFceH5+IJQf9VYXX4tROg4ZFU8m31M3mfPEqUoJqCGJfvWpo2xnNfdrhC28n06SCeSzNZxlvBINGRXCtKS7EY1uV6V7HWAm38y1cXaXsMcOCvr9ySPj+af7A1U2HJXHzVNvUXVLIGyPf+jV0pf8GHoN+TLAyPkidTCi2RpPApmnR0Bd1zGRaB/B8Oj2HSw7LLbVR1MmskW8RdEWVXSJf3JbpAMgRtc4IZoxTh9qotQjCasm46M0YX9pV1VmbpvRH5OwwgdRtSg2vKaAz/1dNKVtb17Y8DCL4HVufHxMOYl1/zTgIgiYvBnFKfaNp3YjTdPz3n9Na8//X7/k/O1tdwopcZlcAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-hover {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4oVHp0SwAAAQJJREFUWMPtlsENgzAMRb8RQ5VJItFDOgaZAMaAA0iZpN3KPZSoEEHSQBCViI/G8pfNt/KAFFcPshPdoAGgZkYVVYjQAFCyFLN8tlAbXRwAxp61nc9XCkGERpZCxRDvBl0zoxp7K98GAACxxH29srNNmPsK2l7zHoHHXZDr+/9vwDfB3kgeSB5IHkgeOH0DmesJjSXi6pUvkYt5u9teVy6aWREDM0D0BRvmGRV5N6DsQkMzI64FidtI5t3AOKWaFhuioY8dlYf9TO1PREUh/9HVeAqzIThHgWZ6MuNmC1jiL1mK4pAzlKUojEmNsxcmL0J60tazWjLZFpClPbd9BMJfL95145YajN5RHQAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-crosshair {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADEUlEQVRYR81XXVIaQRCeHqug8CXmBNETaE4gniDwIgpVspxAbxC9ATkBkCpQ8gKeQDiB5AQxNyAvUlrldr7eHxyGXZi1rMJ5opbp7m++7un+htSGF204vsoMoNXrlzSpfWa1oxQfhAegCZGaEtPorHo8znIoJwCt6+td8uk7ApUQCIHTF4BNAWzImq8ap6cP68CsBdDp9i9ZqXM7ML79g/EnCWD+jgMKENKqWT+tXK0CkQqgNRjs0OxpQIqKhoMxaG6/6JeRnK7T6yO2UvVqhYSlLX+ryORfgKn9ORDFIy7ky41yGcwsr0QAQfDH5zucOswx819fs4egI9OFCcD8DjBF7VNbEX0JzdWEt3NHSSASAcCxBDqMgt/623kvyTgNgNjJIfTjk4D4FqaJR1715MjmYAmA5Bx3AwUXQL+t105KaTlcBSC26XRvhjEIoLiq1yqXpr8FAGG16/ug4IT27fxBWu7EiQuAiImJpEMKE6nYM30uAIDDttSUOPfJP7JzbjPhAiBIh9QE67vIvoOi9WJfCwDavf40ulpjbCqmUf+W753ezURuh7Dg1SqflwAEHU6pgfyBq9Y4qx0LG++2fnZ/eUzcstmdM2AWH+jfc+liWdBJfSENf8Lifi3GVwC9mybOfi5dzatWVrbbLIHNva8p5h/16gkaFiLGGxbufkoE6XguwePiXLF3XmMfCUCUAqtKXU7sumd1CowOuJEi3Pg1FBpjitIGhyvVSfvmjci6ZR+rFQfDiPVE2jFYeICQ+PoewwjC5h7CZld6DBdyu6nDSKgzOyIMhmhK5TTqXYbRorZYM46TmpKAAOrGWwSJJekSB1yqJNOzp1Gs7YJ0EDeySDIMtJbQHh6Kf/uFfNFZkolJICRmz0P8DKWZuIG2g1hpok+Mk0Qphs0h9lzMtWRoNvYLuVImUWrmPJDlBKeRBDfATGOpHkhw670QSHWGLLckmF1PTsMlYqMJpyUbiO0weiMMceqLVTcotnMCYAYJJbcuQrVgZFP0NOOJYpr62pf3AmrHfWUG4O7abefGAfwH7EXSMJafOlYAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-lasso-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgwlGP1qdAAABMBJREFUWMO9V1uIVVUY/r61z57ZMx4DnbzgkbQXL5iCJphlWdpIGY4jpFBkEiU9ZNaDRRcITcIwMwgxoQtU2IMXdAZfMjFvpERXYiSbysyBEXFmyuHMnLP32uvrwT2xnY5nxvHQ93Jg7fWv71/r//7L4a59TRgqJk+Z6v3a+sv0OI5nk5wu6VaSVZImAThHsgjgrKTvM5nMUWvtmf5n8HodCIKgOgzDhc65pSTrJQWDsSNpJX1ljHnDOfdT37oZLLHv+8OMMasKhcIJ59xHAJYMlhwAJGUAzJfUTHLFuFzOG5QDU6dNMyQfs9Yedc5tBpAD4IYYNQGoBrDtQnt7/b0LFrJsCHzfn2itfQfAnZLiazytA3AaQAuAiwDaEgeNpGkkswAWSBqRONB38b88z5uTKePt6iiKXkk8jq+iJC5LOmiMaTLGHLPWhmWeHr7vV0dRtATAapAzIVmSo51zyzIlbm2stesFPA6pKk0r6Ryg93y/ek8YFvPOOTg3cDSiKCoC2OP7/rEoirYm4rUkF12lAWNM1lr7lqQn0+QA8gI2jBg5cj6Aj8OwmB+KAKIoukhyp6SRJAUgl0ndPLDWPi9pJQCbuviXvu+/GIZhW1dnJ24UJFuTjCCA2ADA8sYGWmsXS3qmL94kDYAtkh4Nw7ANlQJ5U6INT1KrAYC9zQdykl7nFSj5fXp5Y8NWVBhy7mUAjqShMYdMXV2dJ2klyRwAJ8lIeuGWCRMP7N7frEqSG2OmAFhKshNAp5wrmO7u7jEAngPQm1S2z2pqapr+OPt7XEly0oxwzq2RdFmSD2AMgKKJouhhAL4kA+Cs53l7e3t7uytJHgRBreTWkXwkKVJnJD0B4GAGwIJE9R6AFufc6UqSZ7PZbD6ff5dkA4CQZEHSqwAOISmXtwGIE+F1SeqqIP8d+Xz+C0mLJYWSAODteXffczjdDQNJ0BWMCoLg5gqIbRTJNwHsljQhUb0luWPM2LE7Thw/9m/5NCT/TByxAOYWi8X6/gdWV1dnfN8fNRBxJpMZTXKdc+6IpFVJWAEgkvSJpA0X2tvtVTaSjgOYBCAEEADYSHK87/sfhmEYA9gShuEDkgzJHyWtB/B1irQ2juP7ADxkrX0wOUOpzmdpzEY590HJ7Ni1r2kSyZOSiv2+hSRjSTXp/QAukzySNJOJkmalyNIl10hqMcasdc61XDNcQRD8BnITgNp+36r6kfcNFMMlLQGwTNLMEuQGQBfJl2bdPru+HDkAZAqFQux53jZHEsC6aw0eg2gylNRBcqcx5v04ji999+03AwsWAOI4Lsy9a94WkisAnE5a5WCJYwCfA1g7LJudI2lTHMeXBm1faiQzxkyRtF3S5CTupeAB+KG2tnZFT0/P30NO2VKLzrmfAbwGMipjG5Oc0dPTc0Md05SZ5U4Q2FxChErtEYD7jTGNQ3UgM8Asv90Yc9I5LSKRlXSI5CxJa0jWSALJjKRnAewfkniT+vwf7N7fXHK9rq7O7+jo+BTA/NRrdBpjnnLOnUrvXd7YMPQXSBunneno6IhIHgYwW1JtkgmBpBkATlVMAwOk3nFJ+VSoqgCMr6gIy2FcLtdKspAedyQN/98caDt/3kpyabUmf8WvG/8A1vODTBVE/0MAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-pan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4lKssI9gAAAOtJREFUWMPVll0KwyAMgNPgoc0JzDX2Mtgp3csKErSamGabIEUo/T6bHz0ezxdsjPJ5kvUDaROem7VJAp3gufkbtwtI+JYEOsHNEugIN0mgM1wtsVoF1MnyKtZHZBW4DVxoMh6jaAW0MTfnBAbALyUwCD6UwEB4VyJN4FXx4aqUAACgFLjzrsRP9AECAP4Cm88QtJeJrGivdeNdPpko+j1H7XzUB+6WYHmo4eDk4wj41XFMEfBZGXpK0F/eB+QhVcXslVo7i6eANjF5NYSojCN7wi05MJNgbfKiMaPZA75TBVKCrWWbnGrb3DPePZ9Bcbe/QecAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-xpan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4X4hxZdgAAAMpJREFUWMPtlsEKwjAMhr/pwOOedINJe/PobWXCfAIvgo/nA4heOiilZQqN2yE5lpD/I38SWt3uD9aMHSuHAiiAAmwaYCqoM/0KMABtQYDW11wEaHyiEei28bWb8LGOkk5C4iEEgE11YBQWDyHGuAMD0CeS30IQPfACbC3o+Vd2bOIOWMCtoO1mC+ap3CfmoCokFs/SZd6E0ILjnzrhvFbyEJ2FIZzXyB6iZ3AkjITn8WOdSbbAoaD4NSW+tIZdQYBOPyQKoAAKkIsPv0se4A/1UC0AAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-ypan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4anK0lywAAAMVJREFUWMPtlzEKwzAMRX/S7rlpIMXeOnaLaME36FLo8XqCdNFghGljyc4kgQi2Q/SUj0F/eL7eMMTKz6j9wNlYPGRrFcSoLH4XxQPvdQeYuPOlcLbw2dRTgqvoXEaolWM0aP4LYm0NkHYWzyFSSwlmzjw2sR6OvAXNwgEcwAEcwAEcwAEcoGYk20SiMCHlmVoCzACoojEqjHBmCeJOCOo1lgPA7Q8E8TvdjMmHuzsV3NFD4w+1t+Ai/gTx3qHuOFqdMQB8ASMwJX0IEHOeAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-range {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABCJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyI+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDx0aWZmOkNvbXByZXNzaW9uPjU8L3RpZmY6Q29tcHJlc3Npb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjMyPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT4xPC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zMjwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgICAgIDxkYzpzdWJqZWN0PgogICAgICAgICAgICA8cmRmOkJhZy8+CiAgICAgICAgIDwvZGM6c3ViamVjdD4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTgtMDQtMjhUMTQ6MDQ6NDk8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPlBpeGVsbWF0b3IgMy43PC94bXA6Q3JlYXRvclRvb2w+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgrsrWBhAAAD60lEQVRYCcVWv2scRxSemZ097SHbSeWkcYwwclDhzr1Q5T6QE1LghP6BGNIYJGRWNlaZItiFK1mr+JAu4HQu0kjpU8sgF3ITAsaFg0hOvt2Zyfvmdsa7a610Unx44Zgf773vvfneezPHNzrbhn3CT3xC3wPXYOC8LDzqdi8YY/gwh4BeknS/2th6dr2kf94AOp3OFyWgMyziOPbMDxV9FTtJnl1ut795Xd0/YQ0/vtYQwMT1KXWCfr2IjOWwtNehwN4xL9ykTrm6Pzl58yLn3J+mKh9mXbT3uRjGEDph+O8/TjfP5dBp7Ha7AX7O3o5nZeD/0E/OGyXntDgzA0X6qmCnrVutVlrUWV9f/3xo+pwhGDhvEPHOjoxnZjJggXmMHzBQ7NGNp9vxk61fr0HR7e/u7pZzCGHlc7qwBYYTT7tJYSx1AQzppyFPft5apta9w7SKcn0b7P7+/jCsDQ5mbc0dCmIJGDN0ehdcjsmkm6A6KUeKFOTE11PLxrC7Ukqh3ylL2fT0NAP9q6ur6rRCJJYsbKB0JsbCKMuy+xREePDyxQPCz+Crlw062QcA5wBOOt1l6vIl2WiI9F1fN6Q+BBqit6hEC4Hk08GQJMn4myjSP7RavVxgdaVUh/3U6HCMsPr9pYnJKRziHtWQ+un58+hGs6nsjQSjpuTyKGN3CX+FBwHXSiEVgjP+O8X6N12kIePES+GzTKAkGbNp8yJsGUMVzz8jPKReiyAQRimy5/cjye5RpF8utFp/+nwmT7d/NMzcFkS7yjJNGDaPURQxIQThEQy0SyF4l5WJYYhBa816vZ6dU7A6CAhbZVow/pDe0O9hVOoCi13r4BgBAvJHqMSQL2vE/iH6IAXEwgrRVUmBoRRwnwJQT98xEeVeSUyB4dJ5nwJBKdCFFGRmUCcu7rwIYypCTblaChuNBhWODrman5ub+4v0rMNBt8z6Ezh7GksJQpCbm79cMQE7QBFm/X6f0rjWnv8WRYg/QdbUpwDAEBy8vPyA8rNGzg3a8MiElwiM7dAtRqNoNptjGPM1laVxP9umWEMGLOKhKUOJDtBwDmzsw9fC/CzHr9SGuCTi2LbbKvVtmqXpCjMihBFa79Wrt5fGx9PDzc3fmu32Lf8qFliwU9emKhBSp+kRKn/hu9k1COEDbFdt/BoKWOAkuEbdVYyoIXv8+I/QK9dMHEb1Knb7MHOv8LFFOsjzCVHWOD7Ltn+MXCRF4729vWMDK+p8rLkvwjLg4N4v741m5YuwCI9CvHp1Ha8gFdBoPnQAkGsYYGxxcfEI7QQlFCTGUXwjAz4tWF+EpymOWu7fglE7qsOvrYE6g4+9/x/vhRbMdLOCFgAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-polygon-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjc1OfiVKAAAAe1JREFUWMPt1r9rU1EUB/DPK0XbqphFHETo4OCiFhwF0V1KHbRSROLqon+AUMVRRFBwEbRFMBiV+mMW/wIxi5OD1kERRVKRJHUwLvfBTZrU5OWBGXLgQu7Jfe98z/ec7z0vKa88b2q1BDtRHdAPBaylm1NzsxsOjPnPNt6WSWprbft+/c3I3zOAjhT1Y4+fvcjEQJIXnVECSa+AhqIHqlHH5lWCZoe+Gk4GRgDG86j9SAUdlDBSQaZhlOkuHyoVdJmsw98D1S5fM4NYM1LCpqM+Lwa240oLgmZzpVZvzKT75VLZcqksSZKWlQeAy/iORVwIvh31xvotvK7VG3Px4aWHj3Jl4C2uYSvq+Bn8v6LLbaVWb9zsBiKLCvbiNG7gLm7jAYqbPHMJMziZ9lsKoh8GtqCEVVzHftwJn+TFHp4/hg8BSCYVfMOZoPEv2NZGdy9WCGUr9toDR3E2/H4V6nwRe/BmgN65H1ZhvMuB3XiKIyFoGefwO6ysVkUlrNUNsyAK/jli533Q+Y8cJFvAeXyMS1CI/jiMr/gUtD2LQwMGr4R3p7bY3oQHQ5b38CT4D2AXXg6YcQXHpyYnlqKsi5iOAVSwL9zd7zJ09r+Cpwq72omFMazjT9Dnibym0dTkRDUKrrgwH7MwXVyYB38BstaGDfLUTsgAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-redo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4itK+dVQAAAaFJREFUWMPt1L1rFFEUBfDfJDaBBSslIFjbaSFp1FJQFMVCHkzhKIqdUYOCoBgErVz8rCwiTDMwBCIKipDWyip/gxAIWAmBgBC0eYFh2Gx2l9lFcA5M8e59782Zc84dWrT435Hs1siLchqn43MS0zgW22vYxjesYjVLw3YjBPKinMUTBOwf8J5fKLGYpWFjJAJ5Uc7gIW6jM6Kim3iNZ1katgYmEL/6I+YasvY7Lg6iRpIX5VF8wuEe/XV8wGf8jN6LWTiAc7iEQ7ucPZ+lYW0vAtfwvlbfwCKW9gpXDOv1mJvZHiSO91MiyYsyiQSuxtpXXM7SsDmM5nlRdrCMMz3sOJWl4Xevc/vwBzdwAl+yNNwZxfRI+GxelK9ikHcwh8d4NNR/YFRES1ZwoTYdR7I0rNf3TzVNIGbmSvR/Bx08mIgCFSVu4l2ltIWD9WxNGR+W8KOynqnZ0rwCeVG+wa0hjrxtWoF5dAfc28V8Mib/n+Nev5dnabg/zgw87aNEN/bHOwVRiRe4Wym9zNKwMKkpgIWKEt24njxiJlq0aPFv4i9ZWXMSPPhE/QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-reset {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4gWqH8eQAABLdJREFUWMPtlktsVGUUx3/nfvfOlLQaY2IiRRMQIRpI0PjamJhoVASDvNpCpYw1vJQYSVwZwIVQF6wwRHmkAUof9ElrI6VqDAXcID4TF0IiYQMkSlTokNCZ+b7jove2t+NMH7rQBWd3v+989/zP+Z8X3Jb/WGQySvUNTQBJESkNguAVYIWqzhaRhwBU9WcR+QXoymazn6jqzUQiMQSQzWZRVdal1vwzAI2tHQBPOuc2AbWTdOyQ53n7nHNfRwee51GzqoIQMCLDpr3x/tLQ0oZzrk5Vj0/BOEBt+KYuOlBVGlrahr0Wob27t3gEjnZ2AyQzmUwHsDgP6J/AYRE553neDwDOuUdU9QngNeCumK4TkRMhZUORcYC1qysLA6iuSQHIwkWLD6lqapQsuSmwTVV3h99I7EcAR462A2xR2Ilq6ehTaejvO1774kuLNALR33eclsaGsQDe3fYegHl43vyNwEeqGl1963mm2jl7YZRTQ82qlWP4HM6ZToC5ztkW4LHQoALru7s6Di5dvlIj/e6ujrEAWoZDn8hmMjXATMACGaAVuBjXTVVXFc/AxhaA+4zvn1DV+eHxVWPMAmvtb5GeMWZyZVhI2rt7qVy2pOh9U1snwIPW2vMi4oWJuBPYHkVAVScPoKmtkzVVK6cEMsyJraHhiCqJqJUwj/JRz7TW1iSSyR2rVyylqa0Ta+24Ic8vXaAEmDFc/l5Z2A/80OibuVyuz/f9ElUdHCmvw82t5HK5h6y1PYhsz2YyGw43t2KtBZHIGwB6+j4rCkBVUdV7gXrggnPuu8h4eP+xMeZS2D0rJYZ6AdAMzAt1b4nI26p6IFZOY8pugijcKSIHVLUK0LyST4vnrVfnWr3mjmP4QTATaERkXkypRFX3isjmuHdRJEK6Ckqquopp06bdKCkp2Sgi7XnGLcg7gzeutwNIiPYc8HixqIrIOlU9ONVIhHPEd851icgSVXUiskVV94gIqoonIt0i8gfQCfwae38e6BWRXuBZz5jZ8VbaOE4EIqlZVUEQBLlkMplS1QER2RwkEnsSyaREDUzyeNsvIhvCMqkH1kdIJ2o+k8iJB1LVVRfjZ6nqqlEAIbdVQGto8Lrv+/dbawcjAL7vc+6bs+zetetfLSHxniIFGofGGsU2oC7eOCbDfZ7nQawBOSAX74SF9oEPImOq+r7nmVmxb5raukZa8UReGmNmhbMkAwwBH467EYVZe49z7kdgenj8k7V2oTHm8kgdWcvrNdVFjR8cHkYzjDH9wLjDaEwEzpwa4MypgWvAjtjxfGNMj4jMiT+M+kFsZI/Q6Pv+HGNMT8w4wI7TAyevxXVPD5z8+zD64tRXAMHVK1eaVLUyVvuDqroV2BOnJF4ZIedviUidqt4Re9s+vbx8zZXLl7PR2+nl5Tz/zNOFp2FzxzGAklw22wUsLLaSKXwf8vhosZUM6PeDYEUum70VHfpBwKsVyyfeikOP6oBNwN1TrLbfgX3A1kKLzKeff8nLLzw38T5wZDgxn1LnNk5lLRfP26/OnR2hwfNYW2Atn9RCsrf+EECyrKysDFimqhXhyjY3VLkAXBKRDqA7nU6nS0tLhyIj6XSaN9bVclv+l/IXAmkwvZc+jNUAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-save {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4UexUIzAAAAIRJREFUWMNjXLhs5X+GAQRMDAMMWJDYjGhyf7CoIQf8x2H+f0KGM9M7BBio5FNcITo408CoA0YdQM1cwEhtB/ylgqMkCJmFLwrOQguj/xTg50hmkeyARAYGhlNUCIXjDAwM0eREwTUGBgbz0Ww46oBRB4w6YNQBow4YdcCIahP+H5EhAAAH2R8hH3Rg0QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-tap-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3NzIwRUFGMDYyMjE2ODExOTdBNUNBNjVEQTY5OTRDRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCOTJBQzE0RDQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCOTJBQzE0QzQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTQ0QzIwMUM1RjIxNjgxMUE3QkFFMzhGRjc2NTI3MjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NzcyMEVBRjA2MjIxNjgxMTk3QTVDQTY1REE2OTk0Q0UiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6eYZ88AAADLklEQVR42rSXf2TUYRzHv7tuGcfE6Vwb5zLSSjEj7Y9KWqfEmFZJP+yPMdKKmUrrn0iUfjhWlLFi6YfNrF+StBoTo39iYkTGco4xxxG59P7k/T2PT8/37nu3bx9ezvPj+zyf5/PreS78bGLS8SmrwE6yje3NHJsDBTALpknBz6JhH3NiYAB0gHqPOVv52wJ6QQ48BzdAttTioRJjdeA8mAHHS2xuk3p+M8M16ipVQE49Ds6CiFO9RLjGONf05QLx6wPQaBlbBlPgJVgkP0ETiIJ2sB/E1XfimjfgBOOlKDUqCGOcqBcQnw6BYW5YTo4wbvQhMmCfGRemC2rBiGXzWUb+kM/NRZ6CHWBM9ce5R61NgX6ayhSJ5EPlItlDRNkz4JbFHf06BkSzHjXxM+gDv1S/mPUo2AXWgt9UUHL/IVhS8yUV1/EbV3o4N+NaoE9Fu/i827K5pNYHnqAVJECShWmAaddpscYFFXwR7vnXBRGlnUN/L6kqKJlxnRUuDbaDBiL+vst5d4gpcpBrqk/2jIgCKVUolhntplzivHmwh4stGOPfwBWwl/2dpp8p7xjQZqFLiQJtauKkivYm+kzccpK57yXfOUe+P23JqAnVbhMFmlXntCWnxbT31am9ZJ4BJifsUmNTqt0cYhA5ypympPg7VkEKunPbVb8cIG+0kyHLJZNR7fUMooUKFHAPkfQo58VLK+RzwRDd4FdWG9mjpaAXzqkJa1R7kQttqEABWXMjOOxxVRfnhRm5URX1prk/0pQHwNcKlchZ+jdpC+hFdVqO0my9Hj5dkYgCn1Rfh/KdlNDHrJhPqlDih+IfBd6qwpOgEqYMsorJ2HtWxtagLJDn/W3KRfPOZhoeBJfZPgVeGKeKrkQBh5dLXl25Ny3pc4/1fkTdbvFqFQgbxWeYD0hXulhQ0pYiM1jG547fcbMQpVnHTZEn9W3ljsCzwHxCdVteNHIZvQa7/7cC7nV6zHIfyFP9EXjFa7YxKAVqPP4bxhhoLWW+z9JyCb6M/MREg59/RlmmXbmneIybB+YC/ay+yrffqEddDzwGvKxxDmzhc0tc80XVgblqFfgjwAAPubcGjAOl1wAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-undo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4em8Dh0gAAAatJREFUWMPt1rFrFFEQBvDfGhACASshkL/ALpWVrSAKEQV5sIULWlgZNSgIFkGIVQ412gkBt1lYLERREFJqJRaW1oHAoZUQsDqwecWy7N3tbe6C4H2wxc682Zn3zTfvLXPM8b8j6RqYF+UCzsfnHBawGt3fMcAX7GEvS8NgKgXkRbmMxwg41TLsN0psZmnodyogL8pFPMIdLHUk7hA7eJKl4U/rAuKu3+HslFr/FZezNPSTFslX8QErDe4DvMVH/Iq9F7VwGpdwZUjsPtaSFjv/1vCBPjaxO0xcNbHejLpZrrlvJCMCT+JzA+2fcC1Lw+GE4l3CG1yIptfjCtiKoqtiJ0vD3aM0Py/K57iIMxgkQxat4EdN7e9xdRzlk+LEEPvDWvIDXJ928sYxjL36icWK+VaWhlezOIqbGFirJd/H7szugrwoX+D2BDEvszSsT5OBdfRaru/F9dPXQF6U27g/KnmWhgctxqyzBrZGMNGL/rHI0nDkKXiKexXTsywNGx0OnFbFNk3BRoWJXnw//j+ivCi32/S8CxPVNiWOAdUiJtXITIqYY45/Cn8B2D97FYW2H+IAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-wheel-pan {\n background-image: url("data:image/png;base64,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");\n}\n.bk-root .bk-tool-icon-wheel-zoom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgskILvMJQAABTtJREFUWMPdl1+MXVUVxn/fPvf2zrSFmUKnoBCUdjRoVaIxEpO2JhilMYBCtBQS2hejpg1Uo2NUrIFAoyGmtiE+GHwQGtvQJhqDmKYRBv+URFsFDNCSptH60DJTO3dKnX/33rM/H7rvsDu9M20fDMaVnGTvtb69z7fWXmvtc/TEzqd4OyXwNsv/FwFJQVI/sA14SZKRLOlPkr5TrVYXHz70quYkEEK4TtI2YAgYkrQthHDdhV5uuw+43/ZrwCbgRttgY/tjtrc0m83X3/f+D6ydnJhYcB4BSZcBA7aP2d4ELAGW2N5k+xgwkDB0IH19CGGH7R8B1aQeAf4KvAw0ku4K2zu7uru3ApdPEyiKohd4TNKjtjt5h6RHgccSNrddbvuHtm9Jqoak7xVF8WFgdavV+pSk5cCObNmXgK++85prCj3z28HKqZMnH7D9YAY4BvwujT8BvCuL1INX9vVt+dfwcCvNb7f9q2RuSfrGvWu/sL2Nf3LX7pzvj4ENSGBPVarVd4fRkZFltjdmoMGiKO4IIWwIIWwoiuIOYDDzeOPoyMiyFLkum7WJCMDztrcrTTrIRuAQZ6NcK1utL4dWq/VZoC8BhqvV6l1lWb4YYxyLMY6VZflitVq9CxhOmL60hhCKeYiV7WMKIXw9jT1HpXw3c+bOAKzOjJubzebJrKQCQLPZPClpc7bP6rMYKtjXth2OMf7tIkr11Wz8oQDc1Fb09vY+kQw1YAuwJY2nbUluAnCWpKkaFl6IQIzxivaR2SYA89sJVK/Xp2x32R6w/a30DNjuqtfrU0ArYecDCEqgLqm94T0dEm9mBG7PxkdDlkBnkhebgIezNQ8nHcCZPL9ijE1Jf/bZZoPtzbavmqNZLbf9tSxq+yoduuJ+SZ+zXSZyBXCqU+d8fvC5yRUrV+0G2j3g2hDCLyXd/+Su3QdnvP/zCuH72LWsgf2k0oHlH2c2odlkxcpVEdgr6aDtjyb8x20/J+mA7T9I6rL9SWA5dne2/GdXLl58qNJh398An85yTMA+4DOz8Dgu6Zu2dwJXJ91ltm8Gbp7Fgb+EEB4aHhpq5CEtACqVyr3AC0AlPS8k3TSmQ2YPhhBuS/1/LpmS9JTtNTHGfwBU2uUALARotVqniqJYH2Pck85pfavVaufAwnQvnHc0McaDKVptebN94QAnJB0EdtjekydyZXqjs/0ZgLIs/w6sy8bnYGYJ63pgERKC05JutT1kOwITwL9tvzlzUQUYB+Zjs2DBgu6xsbGJZHstByZbezregcBXeCsEz1bnzXt5anLyzLq71zDLxTRdVgemdx0fv2e2w5thO5DbiqL4oKT3ZKpnpyYnz+SY2ZpTAPZmJfdIrVZbNBNUq9UW2X4kU+2dcf53Aj1pj2PA7y/6m1DS00A9za9uNBq7iqJYBuoGdRdFsazRaOzKSqye1rTbaa/tlbYrqXQP2X4FIA9/J1l39xrC0v7+w5IeB8XkwS1lWe6TGJAYKMty31tfO4qSHl/a3384I3CDpI+kzC4lnRfrue6GytEjR8oQwlY73gC0L4qlth/q0M1/LYWtR48cKQF6enrC6dOnVwGLEpnxnp7en4+O1i/tszzGOCTpPmB7ahb57QUwBWyXdF+McWg6MScmuoA8OX8xOlpvXGz422XYTsB/SnpA0h7bX5R0WzI9HUL4qe2XbI+dk3xl+V7gxoztD5jRI+YK/zkEEokx2/uB/RdzIfUtueqVN04cXwF8G3iHY3z9Urw/j8ClyhsnjrcS2Vv/J/8NLxT+/zqBTkcxU/cfEkyEAu3kmjAAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-box-edit {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4QfHjM1QAAAGRJREFUWMNjXLhsJcNAAiaGAQYsDAwM/+lsJ+OgCwGsLqMB+D8o08CoA0YdMOqAUQewDFQdMBoFIyoN/B/U7YFRB7DQIc7xyo9GwbBMA4xDqhxgISH1klXbDYk0QOseEeOgDgEAIS0JQleje6IAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-freehand-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADTElEQVRYCeWWTWwMYRjH/88721X1lZJIGxJxcEE4OOiBgzjXWh8TJKR76kWacOBGxdEJIdk4VChZI/phidRBHMRRIr7DSUiaSCRFRM3u88gz+o7Z6bBTdjmYZPf9eJ55fv/5zzvvDPC/H9QsA66Olo9Ga+/MdR+Ljm2/KQIULsz9FqItGdOfJKLhApLgVkiSCGODjWit7QpKWy+TNrFeXvzKVUT8NiTVaIgDcbiCFJ7GiT8WkARXAdYBK0Lbhi/CenArRNskuM7/tgNp4ArQ42dwjf3WY5gWTqC7O/NbNn2Xkfw/YwdSw/We14HP2IEZwX+y9cZ9SH0LmgFP7UCz4KkENBNeV0Cz4b8U8DfgKiDxMWwUXETqLvJpCQpXZfawbzS7t9v5pL19cHBwfja7YA0y/lyCM0+E5hv5+piZXwKYcF23as+37bTXsQVqgkL0p/34fHR7DcBtbetFsBmGDwMOJCggYG55yw7dMlk6DuC1Bdu2RsCU9TYWQq2IoGbsreZ5NzvEqfSBsIsIy8OTbcdgiRHeh4o8AFAEwDakbY2AaCCpH7V9aGhoUUUy3UyVbkPYFuYLDlUZH8XBpwxkK0Dbgxg5HcVi0ent7a0RULMIozaHBSMfF9b2SzdutFcFB2FkwMIJOG6qfteXOa1nHZ48tyefuwyfT9s6wtzZ3t7eZse2DR2I228TtHXzuWCx9g8MtK5cuHCZTH4tiHEOa4xFngvTyS8f35d6enomiCi4/foEXBkZaQuukChL4FYA2Whd7YcC4gEdW3CpdL3LtGAVCVYJywEyTpAuJKeMOKXZs/Bw947C50KhUFOG4cwz35cjWNBlHGeD53n3xsfHP/T19U1qciggar8Fa4I3PHobIotBWBtc2hSiChyZxVzM53Pv7FVH6Tp3uVy+g0r1ImD2GjIrQGYIxjnfuXTZGICS5k/bBwJoubwEFX4TLah9EXomJGMA3za+f9913Yl4TnzsDQ+vE6YTZOjHh4ngibstt1pzQwd04F0bPStEBpXqRoBeQ/AKghfBnOEKgS+Q7z91Xfdz/HGKg8Ox7z8iYD9z6wqTkZFgnvhMGP9VZ2or1XVkPM9z0mytSfVsHa1RLBZbLoyNzUnK+ydz3wC6I9x+lwbngwAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-poly-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjglo9eZgwAAAc5JREFUWMPt1zFrU1EUB/DfS4OmVTGDIChCP4BgnQXRxVHqIJUupp9AB8VBQcRBQUXIB9DWQoMRiXZzcnQSA34A7aAuHSJKkgo2LvfBrU3aJnlYkBy4vHcP557zP/9z3r33JdXa647N0kHSZd5Nn0rSxc8G3cXp85sMcnZZ8vge3osZ+l3vB8CWFA0iL14t79h210swAjACMAIwAjACkB90D/8/GchI9ve4nPwTBh5E9ws7OepzGWb9EddSn51Op9ZstadSg4VK1UKlKkmSDSMLALewiuNh/hVJq71Wxttmqz0dG88vPc+MgWP4grvYG3SLOBrZFFFrttqPe4HIDxh4GSei+98iSlusuYopXEAjBtEPA3tQwUpwluAbDm4TPJUz+BTW9l2Ce6G7L0X/Bw8D3T/7SKKIDzHg7QCcxjvcQAEtXAnrrg/RP0/DKPbqgcN4iVOR7gcO4dcQgRuoh7HSqwlP4n20m63jJu5n8MkWMYfP3UowhzdR8FU8w9iQwevBdyq3/27CMRzAE5yLuvsRLg+ZcR1nJ8YL81HWJUzGAPaFZwe/Q5MdyYDyNHgjzO90YyGHtVDncuiJchaHw8R4oREFV5qdiVmYLM3OgD9k5209/atmIAAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-point-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEiERGWPELgAAA4RJREFUWMO1lr1uG1cQhb9ztdRSP7AF1QxgwKlcuZSqRC9gWUUUINWqTh5AnaFOnVPEteQmRuhCURqWsSqqc9IolREXdEvQBElxtdw7KURSFEVKu4w8wAKLxdw9Z+bMnRmZGXfZ29//II8th4WwGVNyIoQLYB5vxA9Caq04iUd9A+7ZlsNC2I7TdSd2hZXMJKlnTqp9jtl/GBaqoyQ0noFKpUIzBicYYc+DEFpxkglc4oVJa5gvDn8v1xV2irG3FM4NSVwjUKlUaMcpJhCGmSEJQ6QGD8M5WnHCd8+f3QCXpPLx8WNwv0j6Bm9FMK7FJ3WBE+R/2t7c/GBmFvSBrzRTCsyTDjXrxUgEMtpxynJYmJoBJ4VAybwVARgvL7Oik0okCodnKpVKX7P0leiVMb0VvbJT+upznK4vh0GIeQwwQStJkHQD3MwsCALTJRG7Qrdrj5m/djgYaIa0hlkRdJk26XEgC9txurccBtVW3IudBImmZuACUP+ZlIDBt9FKcubYNTcAH/X0RYM1E7utJPlqe+uZzPxUcEkiSS4sTT95n15Mud0xWC0o2PAWOCdK3KYZlFxfM+tHOcnMzNr1es18ug+cgsVjP4yBU/Ppfrter1m/+l0+zYygML1xRVHU7TSb1cSzBzoBzszsH+AMdJJ49jrNZjWKou6wBnwOzcyndBpNbuueURR1Dw8Pq35p9cc5p/Dy9Dypt7jXrtdGwQECS9NPhr6Gq6txUzNigE6zydLK6lTw12/KT4FGFEUfJX2YJNONq5tVs4ODA7sD/DnwJ/BoADZuE3tHFs12dna6d4C/BI6AlbyzI8ii2TTw12/KK33gb2cdXsNZoAntbZC2SeO4c9592k/5eNQbiwvFd1kJuFGwLJr1wSPg/SwpvyFBHufOeXcFeAlE97U/uCxOY+P3b+Bn4B3Q+L8EdJfD4a+/AbC4UBzPxiPg3wlHZquB28Cn2IuR9x3gr3uV4DbwfvSDOvi4uFA8BDZmIRHkjHpS9Ht9iRqd8+5G3g05mAGcQbsdiX5QJ428G7Kygo8XYdb1/K4NWVmjzkNge2sz84bs+ELmpDDLtqWsNZBXgvmw8CTtpWVMT7x5YWBjLARnwZfKQNYN2U2LPvrh+5nBt7c2M2/It9bArCTKR8eZN+SJ13AScPnoODeRdqNenH+wul5w2gUr2WUjMFAt8bZ/0axX/wNnv4H8vTFb1QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-poly-edit {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gELFi46qJmxxAAABV9JREFUWMOdl19vFFUYxn9n9u9sCyylUIzWUoMQBAWCMdEEIt6xIRQSLIEKtvHe6AcA4yeQb7CAUNJy0daLeomJN8SEULAC2kBBapBKoLvbmdl/c14vdmY7u91tF95kknPOnHmf95znPc97Ro2OTeBbdjFDT3c32ZxVHUOE9kSMB0/m6ExuoJn1H+ur6Y+OTfD50SMN5168OgrAlyf7CfuD+z7+iDs3p8hkLUQ0iFQ/yFl5Nm/qonfHVva+s32Zw9GxCYILsZ08tpNfBhbs+1YN4OH9+7huGdECSBVfqUosbsllfmauBqiR+cCNwOr7AEo8pPHJnymXykhg5fUWjoQpl0vVvhZhbSzGoUOHqgBlt6B6uruj2Zy1E9jo0fhfeyL2x4Mnc8VErK0KUEOB64JSyptfG4RSytsJjUJVxw2lsFy3urL9nx1Qd25ObctkrVMi+jQivd7U2ZyV/3Hzpq7h3h1b/7p9Y0o8v8rwAbTWrGpSocN/FGDlbAI0Rl23PCBan0Ok158H9Ipwzi25A/Mzc9Gl/BYx/E4kYqC1NKRARNAaDCNUM27Z+Zr+ouXs0q4+LSLBHPYCFkTkC6uU39kwCdsS7WRKmaYUiAhdnZ3MPX2K4+QjQI+C94A93rMzm8ltMwyDeDzWjMZeEb2pYQDdW3vITU2jtUZ5QThOPgm8C7wP7J15OPsBsB3oWpGnVWisCeDS1VHj4vBI92+/3tgB7Ab2AruAXiDBK5oIOkhtkEYRNRuJhObrd8Dl9ewf4D5wG7hVLpen29vb5wzD+BrkbBMaL3d1dk5nsrnlFDTTFWAWmAZueWD3gCemGde2k2fw1Al1YXhEvjozoO49eczdqekrWmsc2zlrmvEKOGoW1GUjFLqSk2KpJrCLwyMCPAP+BO54QL8DM6YZX/ClsP9YnwKkXnIBP4jdIpJRpdJTCYdMwwi98KU0Hjc/dDILNyUcwTCWdOSMJ0TRmBktGRhLugu0xyLk7CIqVNm+0bGJptl1YXikD0grpY4Rjc4a8Fbgdab/6OGbAJeCUuyJnnHmZH9pbSyGuBXV8NUwlUpR1EWyixmSyTWEwqGlJ2Swbo2JXbAAfgDGgGQA9I1A9t1tlq0AxrXxn0ilUpw4fhQqYkH/sT41OTnJJwf2s6FjI5mshdYa7bqVR2uezr9MJmJt14FvGrh/O9D+e6UkM/xyCuCqEKCYnJyUTKFQrZDHjxzGshwWLQcRsOz8Hi85P23id0ug/XilAMLBmm4tPGdoaKjSH5+oAGrhwvBI9SjZTn4QSK9yenoD7dlrExPoJlXW8G8ytpNHxRKk02lGxsdRKFwXLNvx5yY94HQLGhGk4LFCYQSqaE0AwWM1eOoEbR0dKBSW7bC4mKuffxs4D/wCLKwQQPAUzIkslfp6cVomROWSolh0GjldAM4nzDi2k9/i5UAzC9aKfwNJ3zgJg9YEvN6+C7SHgKm69+sD7RfNnKTTaZRPQfAut4oFV//IS7gkcB34VlVo8kGzphlfB+DU+TfNGBpZtRastvrvARJmfMF28ge9sc2B9/PNnCilMIDwK6y8/ow/Ai4kvILTljAXvDvEvrqKSUs60KolzPjBxspavQD2tKqCAGF/Ba+xE/Wbilu54wZV8NEKF5fXzQHl/bh4hUsE0WAXSlDMYcQSrQXgCmsTseXHsJkNnjqBFGwKJaHsKlxtUHYVhbLCzr1kaOA4bcn1y1Swmb+iLpJKpVrfgdpfsiVVCYcgluwgnU7jEgJ4s5UkLFtWYyHyEg0/N1q1tmQH+YXnAMFr97Nmv3p+0QsHQRsF8qpBOE5+rb9Nkaj50tVQKjqh4OU3GNL/1/So3vuUgbAAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-line-edit {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAG/3pUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjarVdpknSpDfzPKXwEJBDLccQW4Rv4+E4BtXR198znCdeLLijgQUoppWg3//Pv5f6FDwefXJRcUk3J4xNrrKzoFH8+pyUf9/f+8J3C7y/j7jnBGApow/mZ5l2vGJfXCzne8fZ13OV+9yl3ozvx2DDYyXbauCDvRoHPON3frl5Imt7MuX8hH0seiz9/xwxnDMFgYMczUPD7m89J4fwp/iK+OVRbiMf6gm8K4bv/3NN1Pzjw2fvwn+93PLzccTZ6mJU+/HTHSX723/bSOyLi58n8jmiqz/798+a/tUZZax7rNCKOakzXqIcpu4eFDe483kh4Mv4E/byfiqd49R2OHzC1Od/woxLD44siDVJaNHfbqQNi5MkZLXPnsMdKyFy5gwwCHXhocXahhhEK+OhgLmCYn1hon1vtPBxWcPIgrGTCZrR5fHvc58A/fb5stJaFOZEvT18BF1t8AYYxZ99YBUJoXZ/K9i+50/jPjxEbwKBsNxcYqL6dLZrQK7bC5jl4cVga/Ql5yuNuABfhbAEYCmDAJwpCiXxmzkTwYwE/CuQcIjcwQOKEB1ByDCGBnMJ2Nt7JtNey8BmGvIAICSlkUFODgqwYJSbkW0EIqZMgUUSSZClSRVNIMUlKKSfTKc0hxyw55ZxLrllLKLFISSWXUmrRyjVAxsTVVHMttVZVHKpRsZdivWKgcQstNmmp5VZabdoRPj126annXnrtOniEAQlwI408yqhDJ02E0oxTZpp5llmnLsTaCisuWWnlVVZd+mTtsvqVtU/m/po1uqzxJsrW5RdrGM75sQWZnIhxBsY4EhjPxgACmo0zXyhGNuaMM185uBCEgVKMnEHGGBiMk1gWPbl7Mfcrbw7e/V9545+Yc0bd/4M5Z9S9Mfedtx9YG7rlNmyCLAvhUyhkQPrNhvO5AJFnrZIR0plaLL5liQYdDi5TubaIokFDkmoFEB8CzxZVxemssDqthPhUblPgW1iQU5g6XwNwyVI7bUFRm035iNziMkgWvEso2SXnsJfveR0Y4SlVF8YWC1pVQhJiQa8JwDvlMNIxAfq3F7GDObHU1LlhzlZaWwNp6BvACxAgInGXlllMGZCpEnZHrGA6GM2718xuFcz7YdUQxzEEfjdWz4GlkcwaonT0pgA6mB25grPILtnSMhuCpsGhmMU6uJbixJs4lbKHqh+wos1jW2rchyGRCIvN9MXu+KAmMSfAlIKVvi/tybhCPJZCu2Ow9pLdyo427+X2ovMBmKNu8PA0zgl3fS0PB1DWWkVYB47bkyiJHhkFPzTzCjzn4Dq1mqoIWzCmcDGsHQmQAQdEHsixK1IXESd5rLU7THVJNV8obHS8sZeN0G5Jdt5pQTVKCCbgK1hItTS8o92iEZpuWJ/oC2r/0+zTmhvFXoaMVKRe27altDtid6OvG1hENVwBnC61KKugNoemOiPCCNb3GoHAZOFuDxxPsD+07nbSPcr/o1Zmc4jARhotrA5F5ZcjP9rPk90vR8A+k028A+8+5wKlHVID542sMzMCuXktkRzUCpE+xCBZywjNcJITx0II9x5948CekBl4XaC5OCX2nCyObdwN3HwQh5DWL/BBEkhDYHn/vpXNgZkVTZs8rj+HO8JFC6qvDVhgAEQSYCDyC86rMhG1WPzAVB9ZldDWG6EzDcFiqJBDvFS8mXDv3SK2LPoguVB2kwUx7UL5KqZWiEzocsbvSjNnaYDNtcYJuA5cDcsrvHd6yCxGjqvl9+wh3Qh8Kc9py8sNW8ncU8qwxdPj1qIGfrPqlXeoS4/JLa/LwRLTCtxuSoZUT+2Su6kXW3QNacYQbId6NUKVbROpviybFSPQQL9lhB2MamEnFyB9Y+hrG1+xBg+L0QG2TZdTdlcsBdq9oHdt9Bu5/IM9+Nfh1AwrSqlboTA6Bgq568A7UfbaMrZjoQZhQphofvNw93+bN+5X7FYKBgLmRid+tSdV6c02A4R0cHwKobmoMt5+6WI9XNISFIywpf6RMd5/a91vE78FzVHIFmxud4woyJx76OMTCa4yhgN3iJO2VfRPFMv9sYTxFzU+1eWeYS52pwOoSJldZY6koib4P1O427rbeUrNZfu44hWjz5ZSuu/vKPpimoXbLkfxWSPetvxDWG5jQSaZCxA3ad+p6rlttDhK+YwwK1LHVe0drDtorc5vnQ1247g58vewDtU7L3DRwrG4dhCUDRKKOtYr2dXHtpt+33d1WZmfkAHdl7Q8ENF+CNgB+nOw29n5F7SeNo/ckbu4laLTCdqJLHjmhJbKzmrCEX7zULrhefuHmu0V/1nbP1pnb6FaT7sOxn4pvWkfrYhYtCeJ4Xv+kOXrroIs1eHWXN1/AfzaY94ms5vaAAABg2lDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw0AcxV/TSkUqDnYQUchQnSyIijhqFYpQIdQKrTqYXPoFTRqSFBdHwbXg4Mdi1cHFWVcHV0EQ/ABxcnRSdJES/5cUWsR4cNyPd/ced+8AoVFhmhUaBzTdNtPJhJjNrYrhV4QwjAgGIMrMMuYkKQXf8XWPAF/v4jzL/9yfo1fNWwwIiMSzzDBt4g3i6U3b4LxPHGUlWSU+Jx4z6YLEj1xXPH7jXHRZ4JlRM5OeJ44Si8UOVjqYlUyNeIo4pmo65QtZj1XOW5y1So217slfGMnrK8tcpzmEJBaxBAkiFNRQRgU24rTqpFhI037Cxz/o+iVyKeQqg5FjAVVokF0/+B/87tYqTE54SZEE0PXiOB8jQHgXaNYd5/vYcZonQPAZuNLb/moDmPkkvd7WYkdA3zZwcd3WlD3gcgcYeDJkU3alIE2hUADez+ibckD/LdCz5vXW2sfpA5ChrlI3wMEhMFqk7HWfd3d39vbvmVZ/P2aecqIM1FFZAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AQdDBkQmV+argAABM5JREFUWMOtl9trHFUcxz9n9jYzm7Tb9JIWGtqUllLwVgRBQWl90S6lTaGmF6E2/4H+A4r+A0offdlWodL4kEZw9bG+iC9iKqLF0os0EBq02dtcdmdnfj7szGZ2M5vulv5g4JwzZ873+7ufUfMLi0RSa1TZNzVFrW511xBhzMxx79EyOwrbGSSzZ073zOcXFnlv5lTi3mvfzAPwwYVZ0tHiq6+/xu+/LlGtWYgEINL9oG657N41yfSRgxw9cHjDgfMLi8QVsR0X23E3gMXnkXQJ3L9zB99vI4EA0sVXqsPF93xW7y73ACVJBJwE1j8HUBIi3Sz/QNtrIzHN+yWdSdNue915IMKWXI4TJ050Adp+U+2bmkrV6tZeYAXwEJExMyf3Hi0rM5fvAvS4wPdBKRW6vZeEUiq0RIBCddddpymu0+rRbPvEzkPVmmWLBA1EdGAbYNctt7V712QwfeSgd/uXJQnPVVoEEAQBTxXpuEMELNtNNFW1WrsrQdBCRImQEeE/wBUh53v+7tW7y5n1+BZRIoJSioXvy3itdgclURSZTBrP87AdV57G1TT0d4GPgC+Bw8Ca7bifATsTgzBvjlH1qgNdICJM7tjB8soKw4jtuD+Gw3c229e1wF+P/uHPpT86rhBBRHActwAcAl4EjgIvAYcFJnlOoq5dv6EBU8AR4OUQ6AVgGjATwuC5YUdZ4A+z+1mBTUM/AKwqpZSIpPfu2VP7+/6DYEMMPE9N83lzq23ZWwxDd4GaQnmgUloqperSCpKC8HGCXz8G7NANU8CWUKPzsUDbyLPVyjYC39e0VMZx3Ccoha4b4lQqbUlnsBqNWCXpEMgKfA38DNSBcdPQr4zlMtTtFiqlulmQmJv9ks2idUZGZMjZmZMAfBUvxWHR0y5dmPV2FcbPG9ncFdPQS3nTuAJQLBZpBS1qjSqFwjipdGr9SWlsHTewm9ZmnngMKAaV9nBd+/bmdxSLRc6dnemm3+yZ06pcLvPGW2+yfWIn1ZpFEAQEvt95goCV1TXMXH4zAt4woaRF7RTAVylAUS6Xpdpsdjvk2VMnsSyHhuVEZTh+xgywBhwLfZIdKRfj7dWqPGFubq7T428ukslkaHttLNsZ9P3nwIfh+DhwS4EO9DA0zByBCE2n1fPxpQuznSCaX1js9nFp2pjbtqGhobQ0jUY9CbgALERah3IM+El1rNqTaqaph5W1uYGAFrfA5YvnyE9MoFBYtjMI/BXgQR/4pqVDZL3V9/cYrX+x7SnsXh/H5TLwW2iBQbVLNgn65CDsrSPOIJOXwmdQ4fRHrZilUqmXwNXrNzbbfxv4ArgFVBLeJ95oDEMHwHHcvvUcRqEwuBf0SSUEB9gfxsAgAkO1kcj/WvwKPaR8EhvPAUvRtdIMtR1FtBH37w8DEeChaehXw/xfAnzHcVOjEkhHrIe0Qlz7T8PuWLEd9+2w9KphgUUgQJ7JAgAPDT13NTrJyOYqIilrlEwQv/NPMTSByxfPIU37eCqtq2zWmPYDjbavaLYVdn2NuffPjqRJK2hRLBaHzoK+X7L1QE+nIFeYoFQqkTVMaTn2UOe1LWtwEJqGzqgRnS9M4Fb+3XBJGfSrFzW9dBw0icioJBzHzUXdMJM18APwWo6Kmy1O6X+V8UHDotBqogAAAABJRU5ErkJggg==");\n}\n’},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(72),o=t(303),l=n.__importStar(t(282));class h{constructor(t,e={}){this.items=t,this.options=e,this.el=s.div(),this._open=!1,this._item_click=t=>{var e;null===(e=this.items[t])||void 0===e||e.handler(),this.hide()},this._on_mousedown=t=>{var e,i;const{target:n}=t;n instanceof Node&&this.el.contains(n)||(null===(i=(e=this.options).prevent_hide)||void 0===i?void 0:i.call(e,t))||this.hide()},this._on_keydown=t=>{t.keyCode==s.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},s.undisplay(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){s.remove(this.el),this._unlisten()}_listen(){document.addEventListener("mousedown",this._on_mousedown),document.addEventListener("keydown",this._on_keydown),window.addEventListener("blur",this._on_blur)}_unlisten(){document.removeEventListener("mousedown",this._on_mousedown),document.removeEventListener("keydown",this._on_keydown),window.removeEventListener("blur",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=e.getBoundingClientRect();this.el.style.left=null!=t.left?t.left-i.left+"px":"",this.el.style.top=null!=t.top?t.top-i.top+"px":"",this.el.style.right=null!=t.right?i.right-t.right+"px":"",this.el.style.bottom=null!=t.bottom?i.bottom-t.bottom+"px":""}}render(){var t,e;s.empty(this.el,!0);const i=null!==(t=this.options.orientation)&&void 0!==t?t:"vertical";s.classes(this.el).add("bk-context-menu","bk-"+i);for(const[t,i]of o.enumerate(this.items)){let n;if(null==t)n=s.div({class:l.bk_divider});else{if(null!=t.if&&!t.if())continue;{const i=null!=t.icon?s.div({class:["bk-menu-icon",t.icon]}):null;n=s.div({class:(null===(e=t.active)||void 0===e?void 0:e.call(t))?"bk-active":null,title:t.tooltip},i,t.label)}}n.addEventListener("click",()=>this._item_click(i)),this.el.appendChild(n)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),s.display(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),s.undisplay(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=h,h.__name__="ContextMenu"},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const t=e(9);function*r(e,n){const o=e.length;if(n>o)return;const r=t.range(n);for(yield r.map(n=>e[n]);;){let f;for(const e of t.reversed(t.range(n)))if(r[e]!=e+o-n){f=e;break}if(null==f)return;r[f]+=1;for(const e of t.range(f+1,n))r[e]=r[e-1]+1;yield r.map(n=>e[n])}}o.enumerate=function*(e){let n=0;for(const o of e)yield[o,n++]},o.combinations=r,o.subsets=function*(e){for(const n of t.range(e.length+1))yield*r(e,n)}},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(296),i=e(173),s=e(72);class c extends o.ButtonToolButtonView{render(){super.render(),s.classes(this.el).toggle(i.bk_active,this.model.active)}_clicked(){const{active:e}=this.model;this.model.active=!e}}n.OnOffButtonView=c,c.__name__="OnOffButtonView"},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),s=t(19),l=t(72),n=t(115),a=i.__importStar(t(18)),r=t(78),_=t(9),c=t(13),h=t(8),u=t(81),v=t(306),d=t(307),b=t(308),p=t(295),g=t(299),f=t(310),m=t(173),w=i.__importDefault(t(300)),y=i.__importDefault(t(311));class T extends u.Model{constructor(t){super(t)}static init_ToolbarViewModel(){this.define({_visible:[a.Any,null],autohide:[a.Boolean,!1]})}get visible(){return!this.autohide||null!=this._visible&&this._visible}}e.ToolbarViewModel=T,T.__name__="ToolbarViewModel",T.init_ToolbarViewModel();class k extends r.DOMView{initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new T({autohide:this.model.autohide})}async lazy_initialize(){await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,async()=>{await this._build_tool_button_views(),this.render()}),this.connect(this.model.properties.autohide.change,()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()}),this.connect(this._toolbar_view_model.properties._visible.change,()=>this._on_visible_change())}styles(){return[…super.styles(),w.default,y.default]}remove(){n.remove_views(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await n.build_views(this._tool_button_views,t,{parent:this},t=>t.button_view)}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const t=this._toolbar_view_model.visible,o=g.bk_toolbar_hidden;this.el.classList.contains(o)&&t?this.el.classList.remove(o):t||this.el.classList.add(o)}render(){if(l.empty(this.el),this.el.classList.add(g.bk_toolbar),this.el.classList.add(m.bk_side(this.model.toolbar_location)),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change(),null!=this.model.logo){const t="grey"===this.model.logo?f.bk_grey:null,o=l.a({href:"https://bokeh.org/",target:"_blank",class:[f.bk_logo,f.bk_logo_small,t]});this.el.appendChild(o)}for(const[,t]of this._tool_button_views)t.render();const t=[],o=t=>this._tool_button_views.get(t).el,{gestures:e}=this.model;for(const i of c.values(e))t.push(i.tools.map(o));t.push(this.model.actions.map(o)),t.push(this.model.inspectors.filter(t=>t.toggleable).map(o));for(const o of t)if(0!==o.length){const t=l.div({class:g.bk_button_bar},o);this.el.appendChild(t)}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}}function M(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=k,k.__name__="ToolbarBaseView";class B extends u.Model{constructor(t){super(t)}static init_ToolbarBase(){this.prototype.default_view=k,this.define({tools:[a.Array,[]],logo:[a.Logo,"normal"],autohide:[a.Boolean,!1]}),this.internal({gestures:[a.Any,M],actions:[a.Array,[]],inspectors:[a.Array,[]],help:[a.Array,[]],toolbar_location:[a.Location,"right"]})}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map(t=>t.id));return _.some(t,t=>!e.has(t.id))},o=this.tools.filter(t=>t instanceof p.InspectTool);t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter(t=>t instanceof b.HelpTool);t(this.help,e)&&(this.help=e);const i=this.tools.filter(t=>t instanceof d.ActionTool);t(this.actions,i)&&(this.actions=i);const l=(t,o)=>{t in this.gestures||s.logger.warn(Toolbar: unknown event type ‘${t}’ for tool: ${o})},n={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof v.GestureTool&&t.event_type)if(h.isString(t.event_type))n[t.event_type].tools.push(t),l(t.event_type,t);else{n.multi.tools.push(t);for(const o of t.event_type)l(o,t)}for(const o of Object.keys(n)){const e=this.gestures[o];t(e.tools,n[o].tools)&&(e.tools=n[o].tools),e.active&&_.every(e.tools,t=>t.id!=e.active.id)&&(e.active=null)}}get horizontal(){return"above"===this.toolbar_location||"below"===this.toolbar_location}get vertical(){return"left"===this.toolbar_location||"right"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=h.isString(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(s.logger.debug(Toolbar: deactivating tool: ${e} for event type ‘${o}’),e.active=!1),this.gestures[o].active=t,s.logger.debug(Toolbar: activating tool: ${t} for event type ‘${o}’)}else this.gestures[o].active=null}}e.ToolbarBase=B,B.__name__="ToolbarBase",B.init_ToolbarBase()},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(296),n=e(304);class u extends s.ButtonToolView{}t.GestureToolView=u,u.__name__="GestureToolView";class _ extends s.ButtonTool{constructor(e){super(e),this.button_view=n.OnOffButtonView}}t.GestureTool=_,_.__name__="GestureTool"},n function _(o,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=o(296),i=o(15);class s extends e.ButtonToolButtonView{_clicked(){this.model.do.emit(void 0)}}n.ActionToolButtonView=s,s.__name__="ActionToolButtonView";class c extends e.ButtonToolView{connect_signals(){super.connect_signals(),this.connect(this.model.do,o=>this.doit(o))}}n.ActionToolView=c,c.__name__="ActionToolView";class l extends e.ButtonTool{constructor(o){super(o),this.button_view=s,this.do=new i.Signal(this,"do")}}n.ActionTool=l,l.__name__="ActionTool"},n function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o(1),l=o(307),s=i.__importStar(o(18)),n=o(309);class _ extends l.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=_,_.__name__="HelpToolView";class r extends l.ActionTool{constructor(o){super(o),this.tool_name="Help",this.icon=n.bk_tool_icon_help}static init_HelpTool(){this.prototype.default_view=_,this.define({help_tooltip:[s.String,"Click the question mark to learn more about Bokeh plot tools."],redirect:[s.String,"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html"]}),this.register_alias("help",()=>new r)}get tooltip(){return this.help_tooltip}}t.HelpTool=r,r.__name__="HelpTool",r.init_HelpTool()},n function _(o,_,l){Object.defineProperty(l,"__esModule",{value:!0}),l.bk_tool_icon_box_select="bk-tool-icon-box-select",l.bk_tool_icon_box_zoom="bk-tool-icon-box-zoom",l.bk_tool_icon_zoom_in="bk-tool-icon-zoom-in",l.bk_tool_icon_zoom_out="bk-tool-icon-zoom-out",l.bk_tool_icon_help="bk-tool-icon-help",l.bk_tool_icon_hover="bk-tool-icon-hover",l.bk_tool_icon_crosshair="bk-tool-icon-crosshair",l.bk_tool_icon_lasso_select="bk-tool-icon-lasso-select",l.bk_tool_icon_pan="bk-tool-icon-pan",l.bk_tool_icon_xpan="bk-tool-icon-xpan",l.bk_tool_icon_ypan="bk-tool-icon-ypan",l.bk_tool_icon_range="bk-tool-icon-range",l.bk_tool_icon_polygon_select="bk-tool-icon-polygon-select",l.bk_tool_icon_redo="bk-tool-icon-redo",l.bk_tool_icon_reset="bk-tool-icon-reset",l.bk_tool_icon_save="bk-tool-icon-save",l.bk_tool_icon_tap_select="bk-tool-icon-tap-select",l.bk_tool_icon_undo="bk-tool-icon-undo",l.bk_tool_icon_wheel_pan="bk-tool-icon-wheel-pan",l.bk_tool_icon_wheel_zoom="bk-tool-icon-wheel-zoom",l.bk_tool_icon_box_edit="bk-tool-icon-box-edit",l.bk_tool_icon_freehand_draw="bk-tool-icon-freehand-draw",l.bk_tool_icon_poly_draw="bk-tool-icon-poly-draw",l.bk_tool_icon_point_draw="bk-tool-icon-point-draw",l.bk_tool_icon_poly_edit="bk-tool-icon-poly-edit",l.bk_tool_icon_line_edit="bk-tool-icon-line-edit"},n function _(o,l,b){Object.defineProperty(b,"__esModule",{value:!0}),b.bk_logo="bk-logo",b.bk_logo_notebook="bk-logo-notebook",b.bk_logo_small="bk-logo-small",b.bk_grey="bk-grey"},n function _(l,n,o){Object.defineProperty(o,"__esModule",{value:!0});o.default="\n.bk-root .bk-logo {\n margin: 5px;\n position: relative;\n display: block;\n background-repeat: no-repeat;\n}\n.bk-root .bk-logo.bk-grey {\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=’http://www.w3.org/2000/svg’><filter id=’grayscale’><feColorMatrix type=’matrix’ values=’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0’/></filter></svg>#grayscale\");\n /* Firefox 10+, Firefox on Android /\n filter: gray;\n / IE6-9 /\n -webkit-filter: grayscale(100%);\n / Chrome 19+, Safari 6+, Safari 6+ iOS /\n}\n.bk-root .bk-logo-small {\n width: 20px;\n height: 20px;\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);\n}\n.bk-root .bk-logo-notebook {\n display: inline-block;\n vertical-align: middle;\n margin-right: 5px;\n}\n"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});var s=this&&this.__rest||function(t,e){var i={};for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&e.indexOf(s)<0&&(i[s]=t[s]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(s=Object.getOwnPropertySymbols(t);n<s.length;n++)e.indexOf(s[n])<0&&Object.prototype.propertyIsEnumerable.call(t,s[n])&&(i[s[n]]=t[s[n]])}return i};const n=t(208),a=t(77),o=t(210),l=t(90),r=t(272),h=t(169),_=t(177),d=t(170),c=t(313),u=t(15),p=t(115),f=t(314),b=t(74),g=t(19),m=t(316),v=t(8),w=t(9),y=t(215),x=t(317),z=t(318),M=t(216),O=t(79);class k extends r.LayoutDOMView{constructor(){super(…arguments),this._outer_bbox=new O.BBox,this._inner_bbox=new O.BBox,this._needs_paint=!0,this._needs_layout=!1,this._invalidated_painters=new Set,this._invalidate_all=!0}get is_paused(){return null!=this._is_paused&&0!==this._is_paused}get child_models(){return[]}pause(){null==this._is_paused?this._is_paused=1:this._is_paused+=1}unpause(t=!1){if(null==this._is_paused)throw new Error("wasn’t paused");this._is_paused-=1,0!=this._is_paused||t||this.request_paint()}request_render(){this.request_paint()}request_paint(t){if(null!=t?this._invalidated_painters.add(t):this._invalidate_all=!0,!this.is_paused){const t=this.throttled_paint();this._ready=this._ready.then(()=>t)}}request_layout(){this._needs_layout=!0,this.request_paint()}reset(){"standard"==this.model.reset_policy&&(this.clear_state(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){this.ui_event_bus.destroy(),p.remove_views(this.renderer_views),p.remove_views(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.state_changed=new u.Signal0(this,"state_changed"),this.lod_started=!1,this.visuals=new b.Visuals(this.model),this._initial_state_info={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.state={history:[],index:-1};const{hidpi:t,output_backend:e}=this.model;this.canvas=new a.Canvas({hidpi:t,output_backend:e}),this.frame=new n.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges),this.throttled_paint=m.throttle(()=>this.repaint(),1e3/60);const{title_location:i,title:s}=this.model;null!=i&&null!=s&&(this._title=s instanceof h.Title?s:new h.Title({text:s}));const{toolbar_location:o,toolbar:l}=this.model;null!=o&&null!=l&&(this._toolbar=new d.ToolbarPanel({toolbar:l}),l.toolbar_location=o),this.renderer_views=new Map,this.tool_views=new Map}async lazy_initialize(){this.canvas_view=await p.build_view(this.canvas,{parent:this}),this.ui_event_bus=new f.UIEvents(this,this.model.toolbar,this.canvas_view.events_el),await this.build_renderer_views(),await this.build_tool_views(),this.update_dataranges(),this.unpause(!0),g.logger.debug("PlotView initialized")}_width_policy(){return null==this.model.frame_width?super._width_policy():"min"}_height_policy(){return null==this.model.frame_height?super._height_policy():"min"}_update_layout(){this.layout=new x.BorderLayout,this.layout.set_sizing(this.box_sizing());const{frame_width:t,frame_height:e}=this.model;this.layout.center_panel=this.frame,this.layout.center_panel.set_sizing(Object.assign(Object.assign({},null!=t?{width_policy:"fixed",width:t}:{width_policy:"fit"}),null!=e?{height_policy:"fixed",height:e}:{height_policy:"fit"}));const i=w.copy(this.model.above),s=w.copy(this.model.below),n=w.copy(this.model.left),a=w.copy(this.model.right),o=t=>{switch(t){case"above":return i;case"below":return s;case"left":return n;case"right":return a}},{title_location:l,title:r}=this.model;null!=l&&null!=r&&o(l).push(this._title);const{toolbar_location:_,toolbar:c}=this.model;if(null!=_&&null!=c){const t=o(_);let e=!0;if(this.model.toolbar_sticky)for(let i=0;i<t.length;i++){const s=t[i];if(s instanceof h.Title){t[i]="above"==_||"below"==_?[s,this._toolbar]:[this._toolbar,s],e=!1;break}}e&&t.push(this._toolbar)}const u=(t,e)=>{const i=this.renderer_views.get(e);return i.layout=new z.SidePanel(t,i)},p=(t,e)=>{const i="above"==t||"below"==t,s=[];for(const n of e)if(v.isArray(n)){const e=n.map(e=>{const s=u(t,e);if(e instanceof d.ToolbarPanel){const t=i?"width_policy":"height_policy";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[t]:"min"}))}return s});let a;i?(a=new M.Row(e),a.set_sizing({width_policy:"max",height_policy:"min"})):(a=new M.Column(e),a.set_sizing({width_policy:"min",height_policy:"max"})),a.absolute=!0,s.push(a)}else s.push(u(t,n));return s},f=null!=this.model.min_border?this.model.min_border:0;this.layout.min_border={left:null!=this.model.min_border_left?this.model.min_border_left:f,top:null!=this.model.min_border_top?this.model.min_border_top:f,right:null!=this.model.min_border_right?this.model.min_border_right:f,bottom:null!=this.model.min_border_bottom?this.model.min_border_bottom:f};const b=new y.VStack,g=new y.VStack,m=new y.HStack,O=new y.HStack;b.children=w.reversed(p("above",i)),g.children=p("below",s),m.children=w.reversed(p("left",n)),O.children=p("right",a),b.set_sizing({width_policy:"fit",height_policy:"min"}),g.set_sizing({width_policy:"fit",height_policy:"min"}),m.set_sizing({width_policy:"min",height_policy:"fit"}),O.set_sizing({width_policy:"min",height_policy:"fit"}),this.layout.top_panel=b,this.layout.bottom_panel=g,this.layout.left_panel=m,this.layout.right_panel=O}get axis_views(){const t=[];for(const[,e]of this.renderer_views)e instanceof _.AxisView&&t.push(e);return t}set_cursor(t="default"){this.canvas_view.el.style.cursor=t}set_toolbar_visibility(t){for(const e of this.visibility_callbacks)e(t)}update_dataranges(){const t=new Map,e=new Map;let i=!1;for(const[,t]of this.frame.x_ranges)t instanceof o.DataRange1d&&"log"==t.scale_hint&&(i=!0);for(const[,t]of this.frame.y_ranges)t instanceof o.DataRange1d&&"log"==t.scale_hint&&(i=!0);for(const[s,n]of this.renderer_views)if(n instanceof l.GlyphRendererView){const a=n.glyph.bounds();if(null!=a&&t.set(s,a),i){const t=n.glyph.log_bounds();null!=t&&e.set(s,t)}}let s=!1,n=!1;const{width:a,height:r}=this.frame.bbox;let h;!1!==this.model.match_aspect&&0!=a&&0!=r&&(h=1/this.model.aspect_scale*(a/r));for(const[,i]of this.frame.x_ranges){if(i instanceof o.DataRange1d){const n="log"==i.scale_hint?e:t;i.update(n,0,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}for(const[,i]of this.frame.y_ranges){if(i instanceof o.DataRange1d){const n="log"==i.scale_hint?e:t;i.update(n,1,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}if(s&&n){g.logger.warn("Follow enabled so bounds are unset.");for(const[,t]of this.frame.x_ranges)t.bounds=null;for(const[,t]of this.frame.y_ranges)t.bounds=null}this.range_update_timestamp=Date.now()}push_state(t,e){const{history:i,index:s}=this.state,n=null!=i[s]?i[s].info:{},a=Object.assign(Object.assign(Object.assign({},this._initial_state_info),n),e);this.state.history=this.state.history.slice(0,this.state.index+1),this.state.history.push({type:t,info:a}),this.state.index=this.state.history.length-1,this.state_changed.emit()}clear_state(){this.state={history:[],index:-1},this.state_changed.emit()}can_undo(){return this.state.index>=0}can_redo(){return this.state.index<this.state.history.length-1}undo(){this.can_undo()&&(this.state.index-=1,this._do_state_change(this.state.index),this.state_changed.emit())}redo(){this.can_redo()&&(this.state.index+=1,this._do_state_change(this.state.index),this.state_changed.emit())}_do_state_change(t){const e=null!=this.state.history[t]?this.state.history[t].info:this._initial_state_info;null!=e.range&&this.update_range(e.range),null!=e.selection&&this.update_selection(e.selection)}get_selection(){const t=new Map;for(const e of this.model.renderers)if(e instanceof l.GlyphRenderer){const{selected:i}=e.data_source;t.set(e,i)}return t}update_selection(t){for(const e of this.model.renderers){if(!(e instanceof l.GlyphRenderer))continue;const i=e.data_source;if(null!=t){const s=t.get(e);null!=s&&i.selected.update(s,!0)}else i.selection_manager.clear()}}reset_selection(){this.update_selection(null)}_update_ranges_together(t){let e=1;for(const[i,s]of t)e=Math.min(e,this._get_weight_to_constrain_interval(i,s));if(e<1)for(const[i,s]of t)s.start=e*s.start+(1-e)*i.start,s.end=e*s.end+(1-e)*i.end}_update_ranges_individually(t,e,i,s){let n=!1;for(const[s,a]of t){if(!i){const t=this._get_weight_to_constrain_interval(s,a);t<1&&(a.start=t*a.start+(1-t)*s.start,a.end=t*a.end+(1-t)*s.end)}if(null!=s.bounds&&"auto"!=s.bounds){const[t,o]=s.bounds,l=Math.abs(a.end-a.start);s.is_reversed?(null!=t&&t>=a.end&&(n=!0,a.end=t,(e||i)&&(a.start=t+l)),null!=o&&o<=a.start&&(n=!0,a.start=o,(e||i)&&(a.end=o-l))):(null!=t&&t>=a.start&&(n=!0,a.start=t,(e||i)&&(a.end=t+l)),null!=o&&o<=a.end&&(n=!0,a.end=o,(e||i)&&(a.start=o-l)))}}if(!(i&&n&&s))for(const[e,i]of t)e.have_updated_interactively=!0,e.start==i.start&&e.end==i.end||e.setv(i)}_get_weight_to_constrain_interval(t,e){const{min_interval:i}=t;let{max_interval:s}=t;if(null!=t.bounds&&"auto"!=t.bounds){const[e,i]=t.bounds;if(null!=e&&null!=i){const t=Math.abs(i-e);s=null!=s?Math.min(s,t):t}}let n=1;if(null!=i||null!=s){const a=Math.abs(t.end-t.start),o=Math.abs(e.end-e.start);i>0&&o<i&&(n=(a-i)/(a-o)),s>0&&o>s&&(n=(s-a)/(o-a)),n=Math.max(0,Math.min(1,n))}return n}update_range(t,e=!1,i=!1,s=!0){this.pause();const{x_ranges:n,y_ranges:a}=this.frame;if(null==t){for(const[,t]of n)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const o=[];for(const[e,i]of n)o.push([i,t.xrs.get(e)]);for(const[e,i]of a)o.push([i,t.yrs.get(e)]);i&&this._update_ranges_together(o),this._update_ranges_individually(o,e,i,s)}this.unpause()}reset_range(){this.update_range(null)}_invalidate_layout(){(()=>{for(const t of this.model.side_panels){if(this.renderer_views.get(t).layout.has_size_changed())return!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map(t=>this.renderer_views.get(t))}async build_renderer_views(){this.computed_renderers=[];const{above:t,below:e,left:i,right:s,center:n,renderers:a}=this.model;this.computed_renderers.push(…t,…e,…i,…s,…n,…a),null!=this._title&&this.computed_renderers.push(this._title),null!=this._toolbar&&this.computed_renderers.push(this._toolbar);for(const t of this.model.toolbar.tools)null!=t.overlay&&this.computed_renderers.push(t.overlay),this.computed_renderers.push(…t.synthetic_renderers);await p.build_views(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const t=this.model.toolbar.tools;(await p.build_views(this.tool_views,t,{parent:this})).map(t=>this.ui_event_bus.register_tool(t))}connect_signals(){super.connect_signals();const{x_ranges:t,y_ranges:e}=this.frame;for(const[,e]of t)this.connect(e.change,()=>{this._needs_layout=!0,this.request_paint()});for(const[,t]of e)this.connect(t.change,()=>{this._needs_layout=!0,this.request_paint()});const{plot_width:i,plot_height:s}=this.model.properties;this.on_change([i,s],()=>this.invalidate_layout());const{above:n,below:a,left:o,right:l,center:r,renderers:h}=this.model.properties;this.on_change([n,a,o,l,r,h],async()=>await this.build_renderer_views()),this.connect(this.model.toolbar.properties.tools.change,async()=>{await this.build_renderer_views(),await this.build_tool_views()}),this.connect(this.model.change,()=>this.request_paint()),this.connect(this.model.reset,()=>this.reset())}set_initial_range(){let t=!0;const{x_ranges:e,y_ranges:i}=this.frame,s=new Map,n=new Map;for(const[i,n]of e){const{start:e,end:a}=n;if(null==e||null==a||isNaN(e+a)){t=!1;break}s.set(i,{start:e,end:a})}if(t)for(const[e,s]of i){const{start:i,end:a}=s;if(null==i||null==a||isNaN(i+a)){t=!1;break}n.set(e,{start:i,end:a})}t?(this._initial_state_info.range={xrs:s,yrs:n},g.logger.debug("initial ranges set")):g.logger.warn("could not set initial ranges")}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,t]of this.renderer_views)if(!t.has_finished())return!1;return!0}after_layout(){if(super.after_layout(),this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:t,height:e}=this.layout.bbox;this.canvas_view.resize(t,e),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}this._inner_bbox.equals(this.frame.inner_bbox)||(this._inner_bbox=this.layout.inner_bbox,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){if(this.is_paused||!this.model.visible)return;g.logger.trace("PlotView.paint() for "+this.model.id);const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e<this.model.lod_interval?setTimeout(()=>{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint()},this.model.lod_timeout):t.interactive_stop()}for(const[,t]of this.renderer_views)if(null==this.range_update_timestamp||t instanceof l.GlyphRendererView&&t.set_data_timestamp>this.range_update_timestamp){this.update_dataranges();break}let e=!1,i=!1;if(this._invalidate_all)e=!0,i=!0;else for(const t of this._invalidated_painters){const{level:s}=t.model;if("overlay"!=s?e=!0:i=!0,e&&i)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const s=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:a}=this.canvas_view;e&&(n.prepare(),this.canvas_view.prepare_webgl(s),this.canvas_view.clear_webgl(),this._map_hook(n.ctx,s),this._paint_empty(n.ctx,s),this._paint_outline(n.ctx,s),this._paint_levels(n.ctx,"image",s,!0),this._paint_levels(n.ctx,"underlay",s,!0),this._paint_levels(n.ctx,"glyph",s,!0),this._paint_levels(n.ctx,"guide",s,!1),this._paint_levels(n.ctx,"annotation",s,!1),n.finish()),i&&(a.prepare(),this._paint_levels(a.ctx,"overlay",s,!1),a.finish()),null==this._initial_state_info.range&&this.set_initial_range(),this._needs_paint=!1}_paint_levels(t,e,i,s){for(const n of this.computed_renderers){if(n.level!=e)continue;const a=this.renderer_views.get(n);t.save(),(s||a.needs_clip)&&(t.beginPath(),t.rect(…i),t.clip()),a.render(),t.restore(),a.has_webgl&&a.needs_webgl_blit&&(this.canvas_view.blit_webgl(t),this.canvas_view.clear_webgl())}}_map_hook(t,e){}_paint_empty(t,e){const[i,s,n,a]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,h]=e;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(t),t.fillRect(i,s,n,a),t.clearRect(o,l,r,h)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(o,l,r,h))}_paint_outline(t,e){if(this.visuals.outline_line.doit){t.save(),this.visuals.outline_line.set_value(t);let[i,s,n,a]=e;i+n==this.layout.bbox.width&&(n-=1),s+a==this.layout.bbox.height&&(a-=1),t.strokeRect(i,s,n,a),t.restore()}}to_blob(){return this.canvas_view.to_blob()}export(t,e=!0){const i="png"==t?"canvas":"svg",s=new a.CanvasLayer(i,e),{width:n,height:o}=this.layout.bbox;s.resize(n,o);const{canvas:l}=this.canvas_view.compose();return s.ctx.drawImage(l,0,0),s}serializable_state(){const t=super.serializable_state(),{children:e}=t,i=s(t,["children"]),n=this.get_renderer_views().map(t=>t.serializable_state()).filter(t=>"bbox"in t);return Object.assign(Object.assign({},i),{children:[…e,…n]})}}i.PlotView=k,k.__name__="PlotView"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});var n=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r–)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function _(e){return function(t){t.prototype.event_name=e}}class a{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=a,a.__name__="BokehEvent";class o extends a{constructor(){super(…arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=o,o.__name__="ModelEvent";let r=class extends a{_to_json(){return{}}};s.DocumentReady=r,r.__name__="DocumentReady",s.DocumentReady=r=n([_("document_ready")],r);let c=class extends o{};s.ButtonClick=c,c.__name__="ButtonClick",s.ButtonClick=c=n([_("button_click")],c);let l=class extends o{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=l,l.__name__="MenuItemClick",s.MenuItemClick=l=n([_("menu_item_click")],l);class i extends o{}s.UIEvent=i,i.__name__="UIEvent";let u=class extends i{};s.LODStart=u,u.__name__="LODStart",s.LODStart=u=n([_("lodstart")],u);let d=class extends i{};s.LODEnd=d,d.__name__="LODEnd",s.LODEnd=d=n([_("lodend")],d);let h=class extends i{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=h,h.__name__="SelectionGeometry",s.SelectionGeometry=h=n([_("selectiongeometry")],h);let m=class extends i{};s.Reset=m,m.__name__="Reset",s.Reset=m=n([_("reset")],m);class x extends i{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=x,x.__name__="PointEvent";let p=class extends x{constructor(e,t,s,n,_,a){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=p,p.__name__="Pan",s.Pan=p=n([_("pan")],p);let j=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=j,j.__name__="Pinch",s.Pinch=j=n([_("pinch")],j);let y=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=y,y.__name__="Rotate",s.Rotate=y=n([_("rotate")],y);let P=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=P,P.__name__="MouseWheel",s.MouseWheel=P=n([_("wheel")],P);let v=class extends x{};s.MouseMove=v,v.__name__="MouseMove",s.MouseMove=v=n([_("mousemove")],v);let O=class extends x{};s.MouseEnter=O,O.__name__="MouseEnter",s.MouseEnter=O=n([_("mouseenter")],O);let b=class extends x{};s.MouseLeave=b,b.__name__="MouseLeave",s.MouseLeave=b=n([_("mouseleave")],b);let g=class extends x{};s.Tap=g,g.__name__="Tap",s.Tap=g=n([_("tap")],g);let E=class extends x{};s.DoubleTap=E,E.__name__="DoubleTap",s.DoubleTap=E=n([_("doubletap")],E);let M=class extends x{};s.Press=M,M.__name__="Press",s.Press=M=n([_("press")],M);let R=class extends x{};s.PressUp=R,R.__name__="PressUp",s.PressUp=R=n([_("pressup")],R);let f=class extends x{};s.PanStart=f,f.__name__="PanStart",s.PanStart=f=n([_("panstart")],f);let S=class extends x{};s.PanEnd=S,S.__name__="PanEnd",s.PanEnd=S=n([_("panend")],S);let D=class extends x{};s.PinchStart=D,D.__name__="PinchStart",s.PinchStart=D=n([_("pinchstart")],D);let k=class extends x{};s.PinchEnd=k,k.__name__="PinchEnd",s.PinchEnd=k=n([_("pinchend")],k);let L=class extends x{};s.RotateStart=L,L.__name__="RotateStart",s.RotateStart=L=n([_("rotatestart")],L);let C=class extends x{};s.RotateEnd=C,C.__name__="RotateEnd",s.RotateEnd=C=n([_("rotateend")],C)},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),i=n.__importDefault(t(297)),r=t(15),a=t(19),h=t(72),_=n.__importStar(t(313)),o=t(315),c=t(9),l=t(8),p=t(32),u=t(302);class d{constructor(t,e,s){this.plot_view=t,this.toolbar=e,this.hit_area=s,this.pan_start=new r.Signal(this,"pan:start"),this.pan=new r.Signal(this,"pan"),this.pan_end=new r.Signal(this,"pan:end"),this.pinch_start=new r.Signal(this,"pinch:start"),this.pinch=new r.Signal(this,"pinch"),this.pinch_end=new r.Signal(this,"pinch:end"),this.rotate_start=new r.Signal(this,"rotate:start"),this.rotate=new r.Signal(this,"rotate"),this.rotate_end=new r.Signal(this,"rotate:end"),this.tap=new r.Signal(this,"tap"),this.doubletap=new r.Signal(this,"doubletap"),this.press=new r.Signal(this,"press"),this.pressup=new r.Signal(this,"pressup"),this.move_enter=new r.Signal(this,"move:enter"),this.move=new r.Signal(this,"move"),this.move_exit=new r.Signal(this,"move:exit"),this.scroll=new r.Signal(this,"scroll"),this.keydown=new r.Signal(this,"keydown"),this.keyup=new r.Signal(this,"keyup"),this.hammer=new i.default(this.hit_area,{touchAction:"auto",inputClass:i.default.TouchMouseInput}),this._configure_hammerjs(),this.hit_area.addEventListener("mousemove",t=>this._mouse_move(t)),this.hit_area.addEventListener("mouseenter",t=>this._mouse_enter(t)),this.hit_area.addEventListener("mouseleave",t=>this._mouse_exit(t)),this.hit_area.addEventListener("contextmenu",t=>this._context_menu(t)),this.hit_area.addEventListener("wheel",t=>this._mouse_wheel(t)),document.addEventListener("keydown",this),document.addEventListener("keyup",this),this.menu=new u.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener("keydown",this),document.removeEventListener("keyup",this)}handleEvent(t){"keydown"==t.type?this._key_down(t):"keyup"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get("doubletap").recognizeWith("tap"),this.hammer.get("tap").requireFailure("doubletap"),this.hammer.get("doubletap").dropRequireFailure("tap"),this.hammer.on("doubletap",t=>this._doubletap(t)),this.hammer.on("tap",t=>this._tap(t)),this.hammer.on("press",t=>this._press(t)),this.hammer.on("pressup",t=>this._pressup(t)),this.hammer.get("pan").set({direction:i.default.DIRECTION_ALL}),this.hammer.on("panstart",t=>this._pan_start(t)),this.hammer.on("pan",t=>this._pan(t)),this.hammer.on("panend",t=>this._pan_end(t)),this.hammer.get("pinch").set({enable:!0}),this.hammer.on("pinchstart",t=>this._pinch_start(t)),this.hammer.on("pinch",t=>this._pinch(t)),this.hammer.on("pinchend",t=>this._pinch_end(t)),this.hammer.get("rotate").set({enable:!0}),this.hammer.on("rotatestart",t=>this._rotate_start(t)),this.hammer.on("rotate",t=>this._rotate(t)),this.hammer.on("rotateend",t=>this._rotate_end(t))}register_tool(t){const e=t.model.event_type;null!=e&&(l.isString(e)?this._register_tool(t,e):e.forEach((e,s)=>this._register_tool(t,e,s<1)))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},h=t=>e=>{t(e.e)};switch(e){case"pan":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case"pinch":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case"rotate":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case"move":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case"tap":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n)));break;case"press":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case"scroll":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error("unsupported event_type: "+e)}s&&(null!=n._doubletap&&n.connect(this.doubletap,h(n._doubletap.bind(n))),null!=n._keydown&&n.connect(this.keydown,h(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,h(n._keyup.bind(n))),p.is_mobile&&null!=n._scroll&&"pinch"==e&&(a.logger.debug("Registering scroll on touch screen"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e){const s=this.plot_view.get_renderer_views();for(const n of c.reversed(s)){const{level:s}=n.model;if(("annotation"==s||"overlay"==s)&&null!=n.interactive_hit&&n.interactive_hit(t,e))return n}return null}_hit_test_frame(t,e){return this.plot_view.frame.bbox.contains(t,e)}_hit_test_canvas(t,e){return this.plot_view.layout.bbox.contains(t,e)}_trigger(t,e,s){const n=this.toolbar.gestures,i=t.name.split(":")[0],r=this._hit_test_renderers(e.sx,e.sy),a=this._hit_test_canvas(e.sx,e.sy);switch(i){case"move":{const s=n[i].active;null!=s&&this.trigger(t,e,s.id);const h=this.toolbar.inspectors.filter(t=>t.active);let _="default";null!=r?(_=r.cursor(e.sx,e.sy)||_,c.is_empty(h)||(t=this.move_exit)):this._hit_test_frame(e.sx,e.sy)&&(c.is_empty(h)||(_="crosshair")),this.plot_view.set_cursor(_),this.plot_view.set_toolbar_visibility(a),h.map(s=>this.trigger(t,e,s.id));break}case"tap":{const{target:a}=s;if(null!=a&&a!=this.hit_area)return;null!=r&&null!=r.on_hit&&r.on_hit(e.sx,e.sy);const h=n[i].active;null!=h&&this.trigger(t,e,h.id);break}case"scroll":{const i=n[p.is_mobile?"pinch":"scroll"].active;null!=i&&(s.preventDefault(),s.stopPropagation(),this.trigger(t,e,i.id));break}case"pan":{const r=n[i].active;null!=r&&(s.preventDefault(),this.trigger(t,e,r.id));break}default:{const s=n[i].active;null!=s&&this.trigger(t,e,s.id)}}this._trigger_bokeh_event(e)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t){const e=(()=>{const{sx:e,sy:s}=t,n=this.plot_view.frame.x_scale.invert(e),i=this.plot_view.frame.y_scale.invert(s);switch(t.type){case"wheel":return new _.MouseWheel(e,s,n,i,t.delta);case"mousemove":return new _.MouseMove(e,s,n,i);case"mouseenter":return new _.MouseEnter(e,s,n,i);case"mouseleave":return new _.MouseLeave(e,s,n,i);case"tap":return new _.Tap(e,s,n,i);case"doubletap":return new _.DoubleTap(e,s,n,i);case"press":return new _.Press(e,s,n,i);case"pressup":return new _.PressUp(e,s,n,i);case"pan":return new _.Pan(e,s,n,i,t.deltaX,t.deltaY);case"panstart":return new _.PanStart(e,s,n,i);case"panend":return new _.PanEnd(e,s,n,i);case"pinch":return new _.Pinch(e,s,n,i,t.scale);case"pinchstart":return new _.PinchStart(e,s,n,i);case"pinchend":return new _.PinchEnd(e,s,n,i);case"rotate":return new _.Rotate(e,s,n,i,t.rotation);case"rotatestart":return new _.RotateStart(e,s,n,i);case"rotateend":return new _.RotateEnd(e,s,n,i);default:return}})();null!=e&&this.plot_view.model.trigger_event(e)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return"undefined"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=h.offset(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:o.getDeltaY(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){const e=this._tap_event(t);this._trigger_bokeh_event(e),this.trigger(this.doubletap,e)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEvents=d,d.__name__="UIEvents"},n function _(e,t,n){n /!n * jQuery Mousewheel 3.1.13n n * Copyright jQuery Foundation and other contributorsn * Released under the MIT licensen * http://jquery.org/licensen */n function r(e){const t=getComputedStyle(e).fontSize;return null!=t?parseInt(t,10):null}Object.defineProperty(n,"__esModule",{value:!0}),n.getDeltaY=function(e){let t=-e.deltaY;if(e.target instanceof HTMLElement)switch(e.deltaMode){case e.DOM_DELTA_LINE:t*=r((n=e.target).offsetParent||document.body)||r(n)||16;break;case e.DOM_DELTA_PAGE:t*=function(e){return e.clientHeight}(e.target)}var n;return t}},n function _(n,e,o){Object.defineProperty(o,"__esModule",{value:!0});const t=("undefined"!=typeof window?window.requestAnimationFrame:void 0)||("undefined"!=typeof window?window.webkitRequestAnimationFrame:void 0)||("undefined"!=typeof window?window.mozRequestAnimationFrame:void 0)||("undefined"!=typeof window?window.msRequestAnimationFrame:void 0)||function(n){return n(Date.now()),-1};o.throttle=function(n,e){let o=null,i=0,u=!1;return function(){return new Promise((d,w)=>{const r=function(){i=Date.now(),o=null,u=!1;try{n(),d()}catch(n){w(n)}},a=Date.now(),f=e-(a-i);f<=0&&!u?(null!=o&&clearTimeout(o),u=!0,t(r)):o||u?d():o=setTimeout(()=>t(r),f)})}}},n function _(t,e,h){Object.defineProperty(h,"__esModule",{value:!0});const i=t(213),o=t(214),r=t(79);class s extends o.Layoutable{constructor(){super(…arguments),this.min_border={left:0,top:0,right:0,bottom:0}}_measure(t){t=new i.Sizeable(t).bounded_to(this.sizing.size);const e=this.left_panel.measure({width:0,height:t.height}),h=Math.max(e.width,this.min_border.left),o=this.right_panel.measure({width:0,height:t.height}),r=Math.max(o.width,this.min_border.right),s=this.top_panel.measure({width:t.width,height:0}),n=Math.max(s.height,this.min_border.top),a=this.bottom_panel.measure({width:t.width,height:0}),g=Math.max(a.height,this.min_border.bottom),_=new i.Sizeable(t).shrink_by({left:h,right:r,top:n,bottom:g}),m=this.center_panel.measure(_);return{width:h+m.width+r,height:n+m.height+g,inner:{left:h,right:r,top:n,bottom:g},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return"fixed"!=t&&"fixed"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const h=this.left_panel.measure({width:0,height:t.height}),i=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:n,top:a,right:g,bottom:_}=e;this.top_panel.set_geometry(new r.BBox({left:n,right:g,bottom:a,height:o.height})),this.bottom_panel.set_geometry(new r.BBox({left:n,right:g,top:_,height:s.height})),this.left_panel.set_geometry(new r.BBox({top:a,bottom:_,right:n,width:h.width})),this.right_panel.set_geometry(new r.BBox({top:a,bottom:_,left:g,width:i.width}))}}h.BorderLayout=s,s.__name__="BorderLayout"},n function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const l=i(213),a=i(214),r=i(8),o=Math.PI/2,h="left",s="center",n={above:{parallel:0,normal:-o,horizontal:0,vertical:-o},below:{parallel:0,normal:o,horizontal:0,vertical:o},left:{parallel:-o,normal:0,horizontal:0,vertical:-o},right:{parallel:o,normal:0,horizontal:0,vertical:o}},d={above:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"alphabetic",vertical:"middle"},below:{justified:"bottom",parallel:"hanging",normal:"middle",horizontal:"hanging",vertical:"middle"},left:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"middle",vertical:"alphabetic"},right:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"middle",vertical:"alphabetic"}},_={above:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},below:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},left:{justified:s,parallel:s,normal:"right",horizontal:"right",vertical:s},right:{justified:s,parallel:s,normal:h,horizontal:h,vertical:s}},c={above:"right",below:h,left:"right",right:h},m={above:h,below:"right",left:"right",right:h};class g extends a.ContentLayoutable{constructor(i,t){switch(super(),this.side=i,this.obj=t,this.side){case"above":this._dim=0,this._normals=[0,-1];break;case"below":this._dim=0,this._normals=[0,1];break;case"left":this._dim=1,this._normals=[-1,0];break;case"right":this._dim=1,this._normals=[1,0]}this.is_horizontal?this.set_sizing({width_policy:"max",height_policy:"fixed"}):this.set_sizing({width_policy:"fixed",height_policy:"max"})}_content_size(){return new l.Sizeable(this.get_oriented_size())}get_oriented_size(){const{width:i,height:t}=this.obj.get_size();return!this.obj.rotate||this.is_horizontal?{width:i,height:t}:{width:t,height:i}}has_size_changed(){const{width:i,height:t}=this.get_oriented_size();return this.is_horizontal?this.bbox.height!=t:this.bbox.width!=i}get dimension(){return this._dim}get normals(){return this._normals}get is_horizontal(){return 0==this._dim}get is_vertical(){return 1==this._dim}apply_label_text_heuristics(i,t){const e=this.side;let l,a;r.isString(t)?(l=d[e][t],a=_[e][t]):t<0?(l="middle",a=c[e]):(l="middle",a=m[e]),i.textBaseline=l,i.textAlign=a}get_label_angle_heuristic(i){return n[this.side][i]}}e.SidePanel=g,g.__name__="SidePanel"},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(15),o=t(72),a=t(37),n=t(312),p=new i.Signal0({},"gmaps_ready");class l extends n.PlotView{initialize(){this.pause(),super.initialize(),this._tiles_loaded=!1,this.zoom_count=0;const{zoom:t,lat:e,lng:s}=this.model.map_options;if(this.initial_zoom=t,this.initial_lat=e,this.initial_lng=s,"undefined"==typeof google||null==google.maps){if(void 0===window._bokeh_gmaps_callback){!function(t){window._bokeh_gmaps_callback=()=>p.emit();const e=document.createElement("script");e.type="text/javascript",e.src=`https://maps.googleapis.com/maps/api/js?v=3.36&key=${t}&callback=_bokeh_gmaps_callback`,document.body.appendChild(e)}(atob(this.model.api_key))}p.connect(()=>this.request_render())}this.unpause()}remove(){o.remove(this.map_el),super.remove()}update_range(t){if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(t.sdx||0,t.sdy||0),super.update_range(t);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t);const e=t.factor<0?-1:1,s=this.map.getZoom(),i=s+e;if(i>=2){this.map.setZoom(i);const[t,e,,]=this._get_projected_bounds();e-t<0&&this.map.setZoom(s)}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=o.div({style:{position:"absolute"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,"idle",()=>this._set_bokeh_ranges()),t.event.addListener(this.map,"bounds_changed",()=>this._set_bokeh_ranges()),t.event.addListenerOnce(this.map,"tilesloaded",()=>this._render_finished()),this.connect(this.model.properties.map_options.change,()=>this._update_options()),this.connect(this.model.map_options.properties.styles.change,()=>this._update_styles()),this.connect(this.model.map_options.properties.lat.change,()=>this._update_center("lat")),this.connect(this.model.map_options.properties.lng.change,()=>this._update_center("lng")),this.connect(this.model.map_options.properties.zoom.change,()=>this._update_zoom()),this.connect(this.model.map_options.properties.map_type.change,()=>this._update_map_type()),this.connect(this.model.map_options.properties.scale_control.change,()=>this._update_scale_control()),this.connect(this.model.map_options.properties.tilt.change,()=>this._update_tilt())}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,i]=this._get_latlon_bounds(),[o,n]=a.wgs84_mercator.compute(t,s),[p,l]=a.wgs84_mercator.compute(e,i);return[o,p,n,l]}_set_bokeh_ranges(){const[t,e,s,i]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:i})}_update_center(t){const e=this.map.getCenter().toJSON();e[t]=this.model.map_options[t],this.map.setCenter(e),this._set_bokeh_ranges()}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center("lat"),this._update_center("lng"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&"undefined"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,i,o]=e;this.map_el.style.top=s+"px",this.map_el.style.left=t+"px",this.map_el.style.width=i+"px",this.map_el.style.height=o+"px"}}_paint_empty(t,e){const s=this.layout.bbox.width,i=this.layout.bbox.height,[o,a,n,p]=e;t.clearRect(0,0,s,i),t.beginPath(),t.moveTo(0,0),t.lineTo(0,i),t.lineTo(s,i),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(o,a),t.lineTo(o+n,a),t.lineTo(o+n,a+p),t.lineTo(o,a+p),t.lineTo(o,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=this.model.border_fill_color,t.fill())}}s.GMapPlotView=l,l.__name__="GMapPlotView"},n function _(a,e,n){Object.defineProperty(n,"__esModule",{value:!0});var g=a(211);n.DataRange=g.DataRange;var R=a(210);n.DataRange1d=R.DataRange1d;var r=a(98);n.FactorRange=r.FactorRange;var t=a(99);n.Range=t.Range;var d=a(158);n.Range1d=d.Range1d},n function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});var n=e(90);d.GlyphRenderer=n.GlyphRenderer;var R=e(116);d.GraphRenderer=R.GraphRenderer;var a=e(178);d.GuideRenderer=a.GuideRenderer;var G=e(70);d.Renderer=G.Renderer},n function _(a,e,l){Object.defineProperty(l,"__esModule",{value:!0});var c=a(209);l.CategoricalScale=c.CategoricalScale;var r=a(146);l.ContinuousScale=r.ContinuousScale;var n=a(145);l.LinearScale=n.LinearScale;var o=a(156);l.LinearInterpolationScale=o.LinearInterpolationScale;var i=a(157);l.LogScale=i.LogScale;var S=a(147);l.Scale=S.Scale},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});e(1).__exportStar(e(118),o);var n=e(88);o.Selection=n.Selection},n function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var o=a(325);r.ServerSentDataSource=o.ServerSentDataSource;var S=a(327);r.AjaxDataSource=S.AjaxDataSource;var u=a(85);r.ColumnDataSource=u.ColumnDataSource;var t=a(86);r.ColumnarDataSource=t.ColumnarDataSource;var c=a(114);r.CDSView=c.CDSView;var D=a(87);r.DataSource=D.DataSource;var v=a(328);r.GeoJSONDataSource=v.GeoJSONDataSource;var n=a(326);r.WebDataSource=n.WebDataSource},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e(326);class s extends a.WebDataSource{constructor(e){super(e),this.initialized=!1}destroy(){super.destroy()}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{this.load_data(JSON.parse(e.data),this.mode,this.max_size)}}}}i.ServerSentDataSource=s,s.__name__="ServerSentDataSource"},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const r=e(1),s=e(85),i=r.__importStar(e(18));class n extends s.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:r}=this;let s;switch(s=null!=r?r.execute(this,{response:e}):e,t){case"replace":this.data=s;break;case"append":{const e=this.data;for(const t of this.columns()){const r=Array.from(e[t]),i=Array.from(s[t]);s[t]=r.concat(i).slice(-a)}this.data=s;break}}}static init_WebDataSource(){this.define({mode:[i.UpdateMode,"replace"],max_size:[i.Number],adapter:[i.Any,null],data_url:[i.String]})}}a.WebDataSource=n,n.__name__="WebDataSource",n.init_WebDataSource()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(326),r=t(19),o=s.__importStar(t(18)),n=t(13);class d extends a.WebDataSource{constructor(t){super(t),this.initialized=!1}static init_AjaxDataSource(){this.define({polling_interval:[o.Number],content_type:[o.String,"application/json"],http_headers:[o.Any,{}],method:[o.HTTPMethod,"POST"],if_modified:[o.Boolean,!1]})}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=0,i=!1){const s=this.prepare_request();s.addEventListener("load",()=>this.do_load(s,t,e)),s.addEventListener("error",()=>this.do_error(s)),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader("Content-Type",this.content_type);const e=this.http_headers;for(const[i,s]of n.entries(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){r.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=d,d.__name__="AjaxDataSource",d.init_AjaxDataSource()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1),n=e(86),s=e(19),a=r.__importStar(e(18)),i=e(9),l=e(13);function c(e){return null!=e?e:NaN}class _ extends n.ColumnarDataSource{constructor(e){super(e)}static init_GeoJSONDataSource(){this.define({geojson:[a.Any]}),this.internal({data:[a.Any,{}]})}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,()=>this._update_data())}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return i.range(0,e).map(e=>[])}_get_new_nan_array(e){return i.range(0,e).map(e=>NaN)}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of l.entries(s))t.hasOwnProperty(e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=c(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case"Point":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=c(s);break}case"LineString":{const{coordinates:r}=e;for(let e=0;e<r.length;e++){const[n,s,a]=r[e];t.xs[o][e]=n,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"Polygon":{e.coordinates.length>1&&s.logger.warn("Bokeh does not support Polygons with holes in, only exterior ring used.");const r=e.coordinates[0];for(let e=0;e<r.length;e++){const[n,s,a]=r[e];t.xs[o][e]=n,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"MultiPoint":s.logger.warn("MultiPoint not supported in Bokeh");break;case"MultiLineString":{const n=e.coordinates.reduce(r);for(let e=0;e<n.length;e++){const[r,s,a]=n[e];t.xs[o][e]=r,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"MultiPolygon":{const n=[];for(const t of e.coordinates)t.length>1&&s.logger.warn("Bokeh does not support Polygons with holes in, only exterior ring used."),n.push(t[0]);const a=n.reduce(r);for(let e=0;e<a.length;e++){const[r,n,s]=a[e];t.xs[o][e]=r,t.ys[o][e]=n,t.zs[o][e]=c(s)}break}default:throw new Error("Invalid GeoJSON geometry type: "+e.type)}}geojson_to_column_data(){const e=JSON.parse(this.geojson);let t;switch(e.type){case"GeometryCollection":if(null==e.geometries)throw new Error("No geometries found in GeometryCollection");if(0===e.geometries.length)throw new Error("geojson.geometries must have one or more items");t=e.geometries;break;case"FeatureCollection":if(null==e.features)throw new Error("No features found in FeaturesCollection");if(0==e.features.length)throw new Error("geojson.features must have one or more items");t=e.features;break;default:throw new Error("Bokeh only supports type GeometryCollection and FeatureCollection at top level")}let o=0;for(const e of t){const t="Feature"===e.type?e.geometry:e;"GeometryCollection"==t.type?o+=t.geometries.length:o+=1}const r={x:this._get_new_nan_array(o),y:this._get_new_nan_array(o),z:this._get_new_nan_array(o),xs:this._get_new_list_array(o),ys:this._get_new_list_array(o),zs:this._get_new_list_array(o)};let n=0;for(const e of t){const t="Feature"==e.type?e.geometry:e;if("GeometryCollection"==t.type)for(const s of t.geometries)this._add_geometry(s,r,n),"Feature"===e.type&&this._add_properties(e,r,n,o),n+=1;else this._add_geometry(t,r,n),"Feature"===e.type&&this._add_properties(e,r,n,o),n+=1}return r}}o.GeoJSONDataSource=_,_.__name__="GeoJSONDataSource",_.init_GeoJSONDataSource()},n function _(e,r,i){Object.defineProperty(i,"__esModule",{value:!0});var c=e(127);i.AdaptiveTicker=c.AdaptiveTicker;var a=e(126);i.BasicTicker=a.BasicTicker;var k=e(180);i.CategoricalTicker=k.CategoricalTicker;var T=e(191);i.CompositeTicker=T.CompositeTicker;var t=e(128);i.ContinuousTicker=t.ContinuousTicker;var o=e(190);i.DatetimeTicker=o.DatetimeTicker;var v=e(192);i.DaysTicker=v.DaysTicker;var n=e(330);i.FixedTicker=n.FixedTicker;var s=e(199);i.LogTicker=s.LogTicker;var l=e(202);i.MercatorTicker=l.MercatorTicker;var u=e(195);i.MonthsTicker=u.MonthsTicker;var d=e(193);i.SingleIntervalTicker=d.SingleIntervalTicker;var g=e(129);i.Ticker=g.Ticker;var C=e(196);i.YearsTicker=C.YearsTicker},n function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=i(1),n=i(128),s=r.__importStar(i(18));class _ extends n.ContinuousTicker{constructor(i){super(i),this.min_interval=0,this.max_interval=0}static init_FixedTicker(){this.define({ticks:[s.Array,[]],minor_ticks:[s.Array,[]]})}get_ticks_no_defaults(i,t,e,r){return{major:this.ticks,minor:this.minor_ticks}}get_interval(i,t,e){return 0}}e.FixedTicker=_,_.__name__="FixedTicker",_.init_FixedTicker()},n function _(e,r,o){Object.defineProperty(o,"__esModule",{value:!0});var T=e(332);o.BBoxTileSource=T.BBoxTileSource;var c=e(333);o.MercatorTileSource=c.MercatorTileSource;var i=e(336);o.QUADKEYTileSource=i.QUADKEYTileSource;var l=e(337);o.TileRenderer=l.TileRenderer;var S=e(334);o.TileSource=S.TileSource;var u=e(341);o.TMSTileSource=u.TMSTileSource;var a=e(338);o.WMTSTileSource=a.WMTSTileSource},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(1),i=e(333),l=o.__importStar(e(18));class _ extends i.MercatorTileSource{constructor(e){super(e)}static init_BBoxTileSource(){this.define({use_latlon:[l.Boolean,!1]})}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars);let i,l,_,n;return this.use_latlon?[l,n,i,_]=this.get_tile_geographic_bounds(e,t,r):[l,n,i,_]=this.get_tile_meter_bounds(e,t,r),o.replace("{XMIN}",l.toString()).replace("{YMIN}",n.toString()).replace("{XMAX}",i.toString()).replace("{YMAX}",_.toString())}}r.BBoxTileSource=_,_.__name__="BBoxTileSource",_.init_BBoxTileSource()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const _=t(1),s=t(334),r=_.__importStar(t(18)),o=t(9),n=t(335);class l extends s.TileSource{constructor(t){super(t)}static init_MercatorTileSource(){this.define({snap_to_zoom:[r.Boolean,!1],wrap_around:[r.Boolean,!0]}),this.override({x_origin_offset:20037508.34,y_origin_offset:20037508.34,initial_resolution:156543.03392804097})}initialize(){super.initialize(),this._resolutions=o.range(this.min_zoom,this.max_zoom+1).map(t=>this.get_resolution(t))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)<Math.abs(t-r)?e:t}));return this._resolutions.indexOf(o)}snap_to_zoom_level(t,e,i,_){const[s,r,o,n]=t,l=this._resolutions[_];let u=i*l,a=e*l;if(!this.snap_to_zoom){const t=(o-s)/u,e=(n-r)/a;t>e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<<i)-e]}meters_to_tile(t,e,i){const[_,s]=this.meters_to_pixels(t,e,i);return this.pixels_to_tile(_,s)}get_tile_meter_bounds(t,e,i){const[_,s]=this.pixels_to_meters(t*this.tile_size,e*this.tile_size,i),[r,o]=this.pixels_to_meters((t+1)*this.tile_size,(e+1)*this.tile_size,i);return[_,s,r,o]}get_tile_geographic_bounds(t,e,i){const _=this.get_tile_meter_bounds(t,e,i),[s,r,o,l]=n.meters_extent_to_geographic(_);return[s,r,o,l]}get_tiles_by_extent(t,e,i=1){const[_,s,r,o]=t;let[n,l]=this.meters_to_tile(_,s,e),[u,a]=this.meters_to_tile(r,o,e);n-=i,l-=i,u+=i,a+=i;const h=[];for(let t=a;t>=l;t–)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s–){const r=1<<s-1;switch(t.charAt(_-s)){case"0":continue;case"1":e|=r;break;case"2":i|=r;break;case"3":e|=r,i|=r;break;default:throw new TypeError("Invalid Quadkey: "+t)}}return[e,i,_]}tile_xyz_to_quadkey(t,e,i){let _="";for(let s=i;s>0;s–){const i=1<<s-1;let r=0;0!=(t&i)&&(r+=1),0!=(e&i)&&(r+=2),_+=r.toString()}return _}children_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=[];for(let t=0;t<=3;t++){const[e,i,r]=this.quadkey_to_tile_xyz(_+t.toString()),o=this.get_tile_meter_bounds(e,i,r);s.push([e,i,r,o])}return s}get_closest_parent_by_tile_xyz(t,e,i){const _=this.calculate_world_x_by_tile_xyz(t,e,i);[t,e,i]=this.normalize_xyz(t,e,i);let s=this.tile_xyz_to_quadkey(t,e,i);for(;s.length>0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=l,l.__name__="MercatorTileSource",l.init_MercatorTileSource()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1),n=e(81),s=e(13),l=i.__importStar(e(18));class a extends n.Model{constructor(e){super(e)}static init_TileSource(){this.define({url:[l.String,""],tile_size:[l.Number,256],max_zoom:[l.Number,30],min_zoom:[l.Number,0],extra_url_vars:[l.Any,{}],attribution:[l.String,""],x_origin_offset:[l.Number],y_origin_offset:[l.Number],initial_resolution:[l.Number]})}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._clear_cache())}string_lookup_replace(e,t){let r=e;for(const[e,i]of s.entries(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace("{x}","{X}").replace("{y}","{Y}").replace("{z}","{Z}").replace("{q}","{Q}").replace("{xmin}","{XMIN}").replace("{ymin}","{YMIN}").replace("{xmax}","{XMAX}").replace("{ymax}","{YMAX}");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(":").map(e=>parseInt(e));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,s]=t,l=(n-r)/2+r,a=(s-i)/2+i;e.sort((function(e,t){return Math.sqrt((l-e[0])**2+(a-e[1])**2)-Math.sqrt((l-t[0])**2+(a-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace("{X}",e.toString()).replace("{Y}",t.toString()).replace("{Z}",r.toString())}}r.TileSource=a,a.__name__="TileSource",a.init_TileSource()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const n=e(37);function o(e,t){return n.wgs84_mercator.compute(e,t)}function c(e,t){return n.wgs84_mercator.invert(e,t)}r.geographic_to_meters=o,r.meters_to_geographic=c,r.geographic_extent_to_meters=function(e){const[t,r,n,c]=e,[_,u]=o(t,r),[i,g]=o(n,c);return[_,u,i,g]},r.meters_extent_to_geographic=function(e){const[t,r,n,o]=e,[_,u]=c(t,r),[i,g]=c(n,o);return[_,u,i,g]}},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const _=e(333);class s extends _.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const _=this.string_lookup_replace(this.url,this.extra_url_vars),[s,o,u]=this.tms_to_wmts(e,t,r),c=this.tile_xyz_to_quadkey(s,o,u);return _.replace("{Q}",c)}}r.QUADKEYTileSource=s,s.__name__="QUADKEYTileSource"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),_=t(338),n=t(91),a=t(158),r=t(72),o=s.__importStar(t(18)),h=t(251),l=t(9),d=t(8),m=t(89),c=t(85),g=t(339),p=s.__importDefault(t(340));class u extends n.DataRendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.tile_source.change,()=>this.request_render())}styles(){return[…super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&r.removeElement(this.attribution_el);const{attribution:t}=this.model.tile_source;if(d.isString(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=r.div({class:g.bk_tile_attribution,style:{position:"absolute",right:s+"px",bottom:_+"px","max-width":n-4+"px",padding:"2px","background-color":"rgba(255,255,255,0.5)","font-size":"9px","line-height":"1.05","white-space":"nowrap",overflow:"hidden","text-overflow":"ellipsis"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\s\n\s*/g," ")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof a.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof a.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const[n,a,r]=this.model.tile_source.normalize_xyz(t,e,i),o={img:void 0,tile_coords:[t,e,i],normalized_coords:[n,a,r],quadkey:this.model.tile_source.tile_xyz_to_quadkey(t,e,i),cache_key:this.model.tile_source.tile_xyz_to_key(t,e,i),bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]},l=this.model.tile_source.get_image_url(n,a,r);new h.ImageLoader(l,{loaded:t=>{Object.assign(o,{img:t,loaded:!0}),_?(o.finished=!0,this.notify_finished()):this.request_render()},failed(){o.finished=!0}}),this.model.tile_source.tiles.set(o.cache_key,o),this._tiles.push(o)}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0===this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,r=t,o=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,r,o,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.properties.outline_line_width.value(),e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);e<i;e++){const[i,s,_]=n[e],a=this.model.tile_source.children_by_tile_xyz(i,s,_);for(const e of a){const[i,s,_,n]=e;t.tiles.has(t.tile_xyz_to_key(i,s,_))||this._create_tile(i,s,_,n,!0)}}}_fetch_tiles(t){for(const e of t){const[t,i,s,_]=e;this._create_tile(t,i,s,_)}}_update(){const{tile_source:t}=this.model,{min_zoom:e}=t,{max_zoom:i}=t;let s=this.get_extent();const _=this.extent[2]-this.extent[0]<s[2]-s[0],n=this.map_frame.bbox.height,a=this.map_frame.bbox.width;let r=t.get_level_by_extent(s,n,a),o=!1;r<e?(s=this.extent,r=e,o=!0):r>i&&(s=this.extent,r=i,o=!0),o&&(this.x_range.setv({x_range:{start:s[0],end:s[2]}}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,r),d=[],m=[],c=[],g=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),r=t.tiles.get(a);if(null!=r&&r.loaded)m.push(a);else if(this.model.render_parents){const[e,a,r]=t.get_closest_parent_by_tile_xyz(i,s,n),o=t.tile_xyz_to_key(e,a,r),h=t.tiles.get(o);if(null!=h&&h.loaded&&!l.includes(c,o)&&c.push(o),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&g.push(e)}}}null==r&&d.push(e)}this._render_tiles(c),this._render_tiles(g),this._render_tiles(m),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout(()=>this._fetch_tiles(d),65)}}i.TileRendererView=u,u.__name__="TileRendererView";class b extends n.DataRenderer{constructor(t){super(t),this._selection_manager=new m.SelectionManager({source:new c.ColumnDataSource})}static init_TileRenderer(){this.prototype.default_view=u,this.define({alpha:[o.Number,1],smoothing:[o.Boolean,!0],tile_source:[o.Instance,()=>new _.WMTSTileSource],render_parents:[o.Boolean,!0]})}get_selection_manager(){return this._selection_manager}}i.TileRenderer=b,b.__name__="TileRenderer",b.init_TileRenderer()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(333);class s extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,_]=this.tms_to_wmts(e,t,r);return o.replace("{X}",s.toString()).replace("{Y}",c.toString()).replace("{Z}",_.toString())}}r.WMTSTileSource=s,s.__name__="WMTSTileSource"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0}),i.bk_tile_attribution="bk-tile-attribution"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});n.default="\n.bk-root .bk-tile-attribution a {\n color: black;\n}\n"},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(333);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace("{X}",e.toString()).replace("{Y}",r.toString()).replace("{Z}",t.toString())}}t.TMSTileSource=c,c.__name__="TMSTileSource"},n function _(e,r,a){Object.defineProperty(a,"__esModule",{value:!0});var t=e(343);a.CanvasTexture=t.CanvasTexture;var u=e(345);a.ImageURLTexture=u.ImageURLTexture;var v=e(344);a.Texture=v.Texture},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),c=t(344),s=r.__importStar(t(18)),i=t(29);class a extends c.Texture{constructor(t){super(t)}static init_CanvasTexture(){this.define({code:[s.String]})}get func(){const t=i.use_strict(this.code);return new Function("ctx","color","scale","weight",t)}get_pattern(t,e,n){return r=>{const c=document.createElement("canvas");c.width=e,c.height=e;const s=c.getContext("2d");return this.func.call(this,s,t,e,n),r.createPattern(c,this.repetition)}}}n.CanvasTexture=a,a.__name__="CanvasTexture",a.init_CanvasTexture()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),n=e(81),o=r.__importStar(e(18));class _ extends n.Model{constructor(e){super(e)}static init_Texture(){this.define({repetition:[o.TextureRepetition,"repeat"]})}onload(e){e()}}i.Texture=_,_.__name__="Texture",_.init_Texture()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),a=e(344),n=r.__importStar(e(18)),s=e(251);class o extends a.Texture{constructor(e){super(e)}static init_ImageURLTexture(){this.define({url:[n.String]})}initialize(){super.initialize(),this._loader=new s.ImageLoader(this.url)}get_pattern(e,t,i){return e=>this._loader.finished?e.createPattern(this._loader.image,this.repetition):null}onload(e){this._loader.promise.then(()=>e())}}i.ImageURLTexture=o,o.__name__="ImageURLTexture",o.init_ImageURLTexture()},n function _(o,l,T){Object.defineProperty(T,"__esModule",{value:!0});var a=o(307);T.ActionTool=a.ActionTool;var r=o(347);T.CustomAction=r.CustomAction;var e=o(308);T.HelpTool=e.HelpTool;var v=o(348);T.RedoTool=v.RedoTool;var t=o(349);T.ResetTool=t.ResetTool;var n=o(350);T.SaveTool=n.SaveTool;var s=o(351);T.UndoTool=s.UndoTool;var i=o(352);T.ZoomInTool=i.ZoomInTool;var P=o(355);T.ZoomOutTool=P.ZoomOutTool;var c=o(296);T.ButtonTool=c.ButtonTool;var d=o(356);T.EditTool=d.EditTool;var u=o(357);T.BoxEditTool=u.BoxEditTool;var y=o(358);T.FreehandDrawTool=y.FreehandDrawTool;var m=o(359);T.PointDrawTool=m.PointDrawTool;var x=o(360);T.PolyDrawTool=x.PolyDrawTool;var B=o(361);T.PolyTool=B.PolyTool;var S=o(362);T.PolyEditTool=S.PolyEditTool;var b=o(363);T.BoxSelectTool=b.BoxSelectTool;var h=o(366);T.BoxZoomTool=h.BoxZoomTool;var E=o(306);T.GestureTool=E.GestureTool;var Z=o(367);T.LassoSelectTool=Z.LassoSelectTool;var p=o(369);T.LineEditTool=p.LineEditTool;var w=o(371);T.PanTool=w.PanTool;var C=o(368);T.PolySelectTool=C.PolySelectTool;var D=o(372);T.RangeTool=D.RangeTool;var H=o(364);T.SelectTool=H.SelectTool;var R=o(373);T.TapTool=R.TapTool;var A=o(374);T.WheelPanTool=A.WheelPanTool;var I=o(375);T.WheelZoomTool=I.WheelZoomTool;var L=o(376);T.CrosshairTool=L.CrosshairTool;var W=o(377);T.CustomJSHover=W.CustomJSHover;var O=o(378);T.HoverTool=O.HoverTool;var _=o(295);T.InspectTool=_.InspectTool;var f=o(298);T.Tool=f.Tool;var g=o(379);T.ToolProxy=g.ToolProxy;var F=o(294);T.Toolbar=F.Toolbar;var G=o(305);T.ToolbarBase=G.ToolbarBase;var J=o(380);T.ProxyToolbar=J.ProxyToolbar;var U=o(380);T.ToolbarBox=U.ToolbarBox},n function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(307),e=n.__importStar(t(18)),c=t(299);class _ extends s.ActionToolButtonView{css_classes(){return super.css_classes().concat(c.bk_toolbar_button_custom_action)}}i.CustomActionButtonView=_,_.__name__="CustomActionButtonView";class l extends s.ActionToolView{doit(){null!=this.model.callback&&this.model.callback.execute(this.model)}}i.CustomActionView=l,l.__name__="CustomActionView";class u extends s.ActionTool{constructor(t){super(t),this.tool_name="Custom Action",this.button_view=_}static init_CustomAction(){this.prototype.default_view=l,this.define({action_tooltip:[e.String,"Perform a Custom Action"],callback:[e.Any],icon:[e.String]})}get tooltip(){return this.action_tooltip}}i.CustomAction=u,u.__name__="CustomAction",u.init_CustomAction()},n function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o(307),s=o(309);class n extends i.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_redo())}doit(){this.plot_view.redo()}}t.RedoToolView=n,n.__name__="RedoToolView";class _ extends i.ActionTool{constructor(o){super(o),this.tool_name="Redo",this.icon=s.bk_tool_icon_redo}static init_RedoTool(){this.prototype.default_view=n,this.override({disabled:!0}),this.register_alias("redo",()=>new _)}}t.RedoTool=_,_.__name__="RedoTool",_.init_RedoTool()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(307),i=e(309);class _ extends s.ActionToolView{doit(){this.plot_view.reset()}}o.ResetToolView=_,_.__name__="ResetToolView";class l extends s.ActionTool{constructor(e){super(e),this.tool_name="Reset",this.icon=i.bk_tool_icon_reset}static init_ResetTool(){this.prototype.default_view=_,this.register_alias("reset",()=>new l)}}o.ResetTool=l,l.__name__="ResetTool",l.init_ResetTool()},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(307),i=e(309);class n extends a.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:e});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement("a");t.href=URL.createObjectURL(o),t.download=e,t.target="_blank",t.dispatchEvent(new MouseEvent("click"))}doit(e="save"){switch(e){case"save":this.save("bokeh_plot");break;case"copy":this.copy()}}}t.SaveToolView=n,n.__name__="SaveToolView";class s extends a.ActionTool{constructor(e){super(e),this.tool_name="Save",this.icon=i.bk_tool_icon_save}static init_SaveTool(){this.prototype.default_view=n,this.register_alias("save",()=>new s)}get menu(){return[{icon:"bk-tool-icon-copy-to-clipboard",tooltip:"Copy image to clipboard",if:()=>"undefined"!=typeof ClipboardItem,handler:()=>{this.do.emit("copy")}}]}}t.SaveTool=s,s.__name__="SaveTool",s.init_SaveTool()},n function _(o,t,e){Object.defineProperty(e,"__esModule",{value:!0});const n=o(307),i=o(309);class s extends n.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_undo())}doit(){this.plot_view.undo()}}e.UndoToolView=s,s.__name__="UndoToolView";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name="Undo",this.icon=i.bk_tool_icon_undo}static init_UndoTool(){this.prototype.default_view=s,this.override({disabled:!0}),this.register_alias("undo",()=>new _)}}e.UndoTool=_,_.__name__="UndoTool",_.init_UndoTool()},n function _(o,i,e){Object.defineProperty(e,"__esModule",{value:!0});const n=o(353),s=o(309);class t extends n.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name="Zoom In",this.icon=s.bk_tool_icon_zoom_in}static init_ZoomInTool(){this.prototype.default_view=n.ZoomBaseToolView,this.register_alias("zoom_in",()=>new t({dimensions:"both"})),this.register_alias("xzoom_in",()=>new t({dimensions:"width"})),this.register_alias("yzoom_in",()=>new t({dimensions:"height"}))}}e.ZoomInTool=t,t.__name__="ZoomInTool",t.init_ZoomInTool()},n function _(o,t,e){Object.defineProperty(e,"__esModule",{value:!0});const i=o(1),s=o(307),n=o(354),_=i.__importStar(o(18));class l extends s.ActionToolView{doit(){const o=this.plot_view.frame,t=this.model.dimensions,e="width"==t||"both"==t,i="height"==t||"both"==t,s=n.scale_range(o,this.model.sign*this.model.factor,e,i);this.plot_view.push_state("zoom_out",{range:s}),this.plot_view.update_range(s,!1,!0),this.model.document&&this.model.document.interactive_start(this.plot_model)}}e.ZoomBaseToolView=l,l.__name__="ZoomBaseToolView";class a extends s.ActionTool{constructor(o){super(o)}static init_ZoomBaseTool(){this.prototype.default_view=l,this.define({factor:[_.Percent,.1],dimensions:[_.Dimensions,"both"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.ZoomBaseTool=a,a.__name__="ZoomBaseTool",a.init_ZoomBaseTool()},n function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=n(10);function r(n,e,t){const[o,r]=[n.start,n.end],s=null!=t?t:(r+o)/2;return[o-(o-s)*e,r-(r-s)*e]}function s(n,[e,t]){const o=new Map;for(const[r,s]of n){const[n,c]=s.r_invert(e,t);o.set(r,{start:n,end:c})}return o}t.scale_highlow=r,t.get_info=s,t.scale_range=function(n,e,t=!0,c=!0,l){e=o.clamp(e,-.9,.9);const a=t?e:0,[u,_]=r(n.bbox.h_range,a,null!=l?l.x:void 0),i=s(n.x_scales,[u,_]),f=c?e:0,[d,b]=r(n.bbox.v_range,f,null!=l?l.y:void 0);return{xrs:i,yrs:s(n.y_scales,[d,b]),factor:e}}},n function _(o,t,i){Object.defineProperty(i,"__esModule",{value:!0});const e=o(353),s=o(309);class n extends e.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name="Zoom Out",this.icon=s.bk_tool_icon_zoom_out}static init_ZoomOutTool(){this.prototype.default_view=e.ZoomBaseToolView,this.register_alias("zoom_out",()=>new n({dimensions:"both"})),this.register_alias("xzoom_out",()=>new n({dimensions:"width"})),this.register_alias("yzoom_out",()=>new n({dimensions:"height"}))}}i.ZoomOutTool=n,n.__name__="ZoomOutTool",n.init_ZoomOutTool()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1).__importStar(e(18)),i=e(9),n=e(8),r=e(11),_=e(306);class c extends _.GestureToolView{constructor(){super(…arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:o}=e;return t||o?t&&!o?"append":!t&&o?"intersect":t&&o?"subtract":void r.unreachable():"replace"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,o){if(!this.plot_view.frame.bbox.contains(e,t))return null;const s=this.plot_view.renderer_views.get(o);return[s.coordinates.x_scale.invert(e),s.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,o=t.selected.indices;o.sort();for(const e of t.columns()){const s=t.get_array(e);for(let e=0;e<o.length;e++){const t=o[e];s.splice(t-e,1)}}this._emit_cds_changes(t)}_pop_glyphs(e,t){const o=e.columns();if(t&&o.length)for(const s of o){let o=e.get_array(s);const i=o.length-t+1;i<1||(n.isArray(o)||(o=Array.from(o),e.data[s]=o),o.splice(0,i))}}_emit_cds_changes(e,t=!0,o=!0,s=!0){o&&e.selection_manager.clear(),t&&e.change.emit(),s&&(e.data=e.data,e.properties.data.change.emit())}_drag_points(e,t,o="both"){if(null==this._basepoint)return;const[s,i]=this._basepoint;for(const n of t){const t=this._map_drag(s,i,n),r=this._map_drag(e.sx,e.sy,n);if(null==r||null==t)continue;const[_,c]=r,[a,l]=t,[d,u]=[_-a,c-l],h=n.glyph,m=n.data_source,[p,f]=[h.x.field,h.y.field];for(const e of m.selected.indices)!p||"width"!=o&&"both"!=o||(m.data[p][e]+=d),!f||"height"!=o&&"both"!=o||(m.data[f][e]+=u);m.change.emit()}this._basepoint=[e.sx,e.sy]}_pad_empty_columns(e,t){for(const o of e.columns())i.includes(t,o)||e.get_array(o).push(this.model.empty_value)}_select_event(e,t,o){const s=this.plot_view.frame,{sx:i,sy:n}=e;if(!s.bbox.contains(i,n))return[];const r={type:"point",sx:i,sy:n},_=[];for(const e of o){const o=e.get_selection_manager(),s=e.data_source,i=[this.plot_view.renderer_views.get(e)];o.select(i,r,!0,t)&&_.push(e),s.properties.selected.change.emit()}return _}}o.EditToolView=c,c.__name__="EditToolView";class a extends _.GestureTool{constructor(e){super(e)}static init_EditTool(){this.define({custom_icon:[s.String],custom_tooltip:[s.String],empty_value:[s.Any],renderers:[s.Array,[]]})}get tooltip(){return this.custom_tooltip||this.tool_name}get computed_icon(){return this.custom_icon||this.icon}}o.EditTool=a,a.__name__="EditTool",a.init_EditTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),_=e(72),o=i.__importStar(e(18)),n=e(356),a=e(309);class d extends n.EditToolView{_tap(e){null==this._draw_basepoint&&null==this._basepoint&&this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)if(e.keyCode===_.Keys.Backspace)this._delete_selected(t);else if(e.keyCode==_.Keys.Esc){t.data_source.selection_manager.clear()}}_set_extent([e,t],[s,i],_,o=!1){const n=this.model.renderers[0],a=this.plot_view.renderer_views.get(n),d=n.glyph,l=n.data_source,[r,h]=a.coordinates.x_scale.r_invert(e,t),[p,u]=a.coordinates.y_scale.r_invert(s,i),[c,m]=[(r+h)/2,(p+u)/2],[f,b]=[h-r,u-p],[x,y]=[d.x.field,d.y.field],[w,v]=[d.width.field,d.height.field];if(_)this._pop_glyphs(l,this.model.num_objects),x&&l.get_array(x).push(c),y&&l.get_array(y).push(m),w&&l.get_array(w).push(f),v&&l.get_array(v).push(b),this._pad_empty_columns(l,[x,y,w,v]);else{const e=l.data[x].length-1;x&&(l.data[x][e]=c),y&&(l.data[y][e]=m),w&&(l.data[w][e]=f),v&&(l.data[v][e]=b)}this._emit_cds_changes(l,!0,!1,o)}_update_box(e,t=!1,s=!1){if(null==this._draw_basepoint)return;const i=[e.sx,e.sy],_=this.plot_view.frame,o=this.model.dimensions,n=this.model._get_dim_limits(this._draw_basepoint,i,_,o);if(null!=n){const[e,i]=n;this._set_extent(e,i,t,s)}}_doubletap(e){this.model.active&&(null!=this._draw_basepoint?(this._update_box(e,!1,!0),this._draw_basepoint=null):(this._draw_basepoint=[e.sx,e.sy],this._select_event(e,"append",this.model.renderers),this._update_box(e,!0,!1)))}_move(e){this._update_box(e,!1,!1)}_pan_start(e){if(e.shiftKey){if(null!=this._draw_basepoint)return;this._draw_basepoint=[e.sx,e.sy],this._update_box(e,!0,!1)}else{if(null!=this._basepoint)return;this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy]}}_pan(e,t=!1,s=!1){if(e.shiftKey){if(null==this._draw_basepoint)return;this._update_box(e,t,s)}else{if(null==this._basepoint)return;this._drag_points(e,this.model.renderers)}}_pan_end(e){if(this._pan(e,!1,!0),e.shiftKey)this._draw_basepoint=null;else{this._basepoint=null;for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0)}}}s.BoxEditToolView=d,d.__name__="BoxEditToolView";class l extends n.EditTool{constructor(e){super(e),this.tool_name="Box Edit Tool",this.icon=a.bk_tool_icon_box_edit,this.event_type=["tap","pan","move"],this.default_order=1}static init_BoxEditTool(){this.prototype.default_view=d,this.define({dimensions:[o.Dimensions,"both"],num_objects:[o.Int,0]})}}s.BoxEditTool=l,l.__name__="BoxEditTool",l.init_BoxEditTool()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),r=e(72),_=s.__importStar(e(18)),o=e(8),i=e(356),d=e(309);class n extends i.EditToolView{_draw(e,t,a=!1){if(!this.model.active)return;const s=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,s);if(null==r)return;const[_,i]=r,d=s.data_source,n=s.glyph,[l,h]=[n.xs.field,n.ys.field];if("new"==t)this._pop_glyphs(d,this.model.num_objects),l&&d.get_array(l).push([_]),h&&d.get_array(h).push([i]),this._pad_empty_columns(d,[l,h]);else if("add"==t){if(l){const e=d.data[l].length-1;let t=d.get_array(l)[e];o.isArray(t)||(t=Array.from(t),d.data[l][e]=t),t.push(_)}if(h){const e=d.data[h].length-1;let t=d.get_array(h)[e];o.isArray(t)||(t=Array.from(t),d.data[h][e]=t),t.push(i)}}this._emit_cds_changes(d,!0,!0,a)}_pan_start(e){this._draw(e,"new")}_pan(e){this._draw(e,"add")}_pan_end(e){this._draw(e,"add",!0)}_tap(e){this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===r.Keys.Esc?t.data_source.selection_manager.clear():e.keyCode===r.Keys.Backspace&&this._delete_selected(t)}}a.FreehandDrawToolView=n,n.__name__="FreehandDrawToolView";class l extends i.EditTool{constructor(e){super(e),this.tool_name="Freehand Draw Tool",this.icon=d.bk_tool_icon_freehand_draw,this.event_type=["pan","tap"],this.default_order=3}static init_FreehandDrawTool(){this.prototype.default_view=n,this.define({num_objects:[_.Int,0]})}}a.FreehandDrawTool=l,l.__name__="FreehandDrawTool",l.init_FreehandDrawTool()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1),i=e(72),a=s.__importStar(e(18)),n=e(356),_=e(309);class r extends n.EditToolView{_tap(e){if(this._select_event(e,this._select_mode(e),this.model.renderers).length||!this.model.add)return;const t=this.model.renderers[0],o=this._map_drag(e.sx,e.sy,t);if(null==o)return;const s=t.glyph,i=t.data_source,[a,n]=[s.x.field,s.y.field],[_,r]=o;this._pop_glyphs(i,this.model.num_objects),a&&i.get_array(a).push(_),n&&i.get_array(n).push(r),this._pad_empty_columns(i,[a,n]),i.change.emit(),i.data=i.data,i.properties.data.change.emit()}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===i.Keys.Backspace?this._delete_selected(t):e.keyCode==i.Keys.Esc&&t.data_source.selection_manager.clear()}_pan_start(e){this.model.drag&&(this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){this.model.drag&&null!=this._basepoint&&this._drag_points(e,this.model.renderers)}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0);this._basepoint=null}}}o.PointDrawToolView=r,r.__name__="PointDrawToolView";class d extends n.EditTool{constructor(e){super(e),this.tool_name="Point Draw Tool",this.icon=_.bk_tool_icon_point_draw,this.event_type=["tap","pan","move"],this.default_order=2}static init_PointDrawTool(){this.prototype.default_view=r,this.define({add:[a.Boolean,!0],drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}o.PointDrawTool=d,d.__name__="PointDrawTool",d.init_PointDrawTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(72),a=i.__importStar(e(18)),o=e(8),n=e(361),_=e(309);class d extends n.PolyToolView{constructor(){super(…arguments),this._drawing=!1,this._initialized=!1}_tap(e){this._drawing?this._draw(e,"add",!0):this._select_event(e,this._select_mode(e),this.model.renderers)}_draw(e,t,s=!1){const i=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,i);if(this._initialized||this.activate(),null==r)return;const[a,n]=this._snap_to_vertex(e,…r),_=i.data_source,d=i.glyph,[l,h]=[d.xs.field,d.ys.field];if("new"==t)this._pop_glyphs(_,this.model.num_objects),l&&_.get_array(l).push([a,a]),h&&_.get_array(h).push([n,n]),this._pad_empty_columns(_,[l,h]);else if("edit"==t){if(l){const e=_.data[l][_.data[l].length-1];e[e.length-1]=a}if(h){const e=_.data[h][_.data[h].length-1];e[e.length-1]=n}}else if("add"==t){if(l){const e=_.data[l].length-1;let t=_.get_array(l)[e];const s=t[t.length-1];t[t.length-1]=a,o.isArray(t)||(t=Array.from(t),_.data[l][e]=t),t.push(s)}if(h){const e=_.data[h].length-1;let t=_.get_array(h)[e];const s=t[t.length-1];t[t.length-1]=n,o.isArray(t)||(t=Array.from(t),_.data[h][e]=t),t.push(s)}}this._emit_cds_changes(_,!0,!1,s)}_show_vertices(){if(!this.model.active)return;const e=[],t=[];for(let s=0;s<this.model.renderers.length;s++){const i=this.model.renderers[s],r=i.data_source,a=i.glyph,[o,n]=[a.xs.field,a.ys.field];if(o)for(const t of r.get_array(o))Array.prototype.push.apply(e,t);if(n)for(const e of r.get_array(n))Array.prototype.push.apply(t,e);this._drawing&&s==this.model.renderers.length-1&&(e.splice(e.length-1,1),t.splice(t.length-1,1))}this._set_vertices(e,t)}_doubletap(e){this.model.active&&(this._drawing?(this._drawing=!1,this._draw(e,"edit",!0)):(this._drawing=!0,this._draw(e,"new",!0)))}_move(e){this._drawing&&this._draw(e,"edit")}_remove(){const e=this.model.renderers[0],t=e.data_source,s=e.glyph,[i,r]=[s.xs.field,s.ys.field];if(i){const e=t.data[i].length-1,s=t.get_array(i)[e];s.splice(s.length-1,1)}if(r){const e=t.data[r].length-1,s=t.get_array(r)[e];s.splice(s.length-1,1)}this._emit_cds_changes(t)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===r.Keys.Backspace?this._delete_selected(t):e.keyCode==r.Keys.Esc&&(this._drawing&&(this._remove(),this._drawing=!1),t.data_source.selection_manager.clear())}_pan_start(e){this.model.drag&&(this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){if(null==this._basepoint||!this.model.drag)return;const[t,s]=this._basepoint;for(const i of this.model.renderers){const r=this._map_drag(t,s,i),a=this._map_drag(e.sx,e.sy,i);if(null==a||null==r)continue;const o=i.data_source,n=i.glyph,[_,d]=[n.xs.field,n.ys.field];if(!_&&!d)continue;const[l,h]=a,[c,g]=r,[p,f]=[l-c,h-g];for(const e of o.selected.indices){let t,s,i;_&&(s=o.data[_][e]),d?(i=o.data[d][e],t=i.length):t=s.length;for(let e=0;e<t;e++)s&&(s[e]+=p),i&&(i[e]+=f)}o.change.emit()}this._basepoint=[e.sx,e.sy]}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source);this._basepoint=null}}activate(){if(this.model.vertex_renderer&&this.model.active){if(this._show_vertices(),!this._initialized)for(const e of this.model.renderers){const t=e.data_source;t.connect(t.properties.data.change,()=>this._show_vertices())}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=d,d.__name__="PolyDrawToolView";class l extends n.PolyTool{constructor(e){super(e),this.tool_name="Polygon Draw Tool",this.icon=_.bk_tool_icon_poly_draw,this.event_type=["pan","tap","move"],this.default_order=3}static init_PolyDrawTool(){this.prototype.default_view=d,this.define({drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}s.PolyDrawTool=l,l.__name__="PolyDrawTool",l.init_PolyDrawTool()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(1).__importStar(e(18)),i=e(8),s=e(356);class _ extends s.EditToolView{_set_vertices(e,t){const r=this.model.vertex_renderer.glyph,o=this.model.vertex_renderer.data_source,[s,_]=[r.x.field,r.y.field];s&&(i.isArray(e)?o.data[s]=e:r.x={value:e}),_&&(i.isArray(t)?o.data[_]=t:r.y={value:t}),this._emit_cds_changes(o,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,t,r){if(this.model.vertex_renderer){const o=this._select_event(e,"replace",[this.model.vertex_renderer]),i=this.model.vertex_renderer.data_source,s=this.model.vertex_renderer.glyph,[_,l]=[s.x.field,s.y.field];if(o.length){const e=i.selected.indices[0];_&&(t=i.data[_][e]),l&&(r=i.data[l][e]),i.selection_manager.clear()}}return[t,r]}}r.PolyToolView=_,_.__name__="PolyToolView";class l extends s.EditTool{constructor(e){super(e)}static init_PolyTool(){this.prototype.default_view=_,this.define({vertex_renderer:[o.Instance]})}}r.PolyTool=l,l.__name__="PolyTool",l.init_PolyTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(72),i=e(8),_=e(361),d=e(309);class n extends _.PolyToolView{constructor(){super(…arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,"replace",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this._select_event(e,"replace",this.model.renderers);if(!t.length)return this._set_vertices([],[]),this._selected_renderer=null,void(this._drawing=!1);const s=t[0],r=s.glyph,_=s.data_source,d=_.selected.indices[0],[n,l]=[r.xs.field,r.ys.field];let a,c;n?(a=_.data[n][d],i.isArray(a)||(_.data[n][d]=a=Array.from(a))):a=r.xs.value,l?(c=_.data[l][d],i.isArray(c)||(_.data[l][d]=c=Array.from(c))):c=r.ys.value,this._selected_renderer=s,this._set_vertices(a,c)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,"append",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===r.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==r.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=n,n.__name__="PolyEditToolView";class l extends _.PolyTool{constructor(e){super(e),this.tool_name="Poly Edit Tool",this.icon=d.bk_tool_icon_poly_edit,this.event_type=["tap","pan","move"],this.default_order=4}static init_PolyEditTool(){this.prototype.default_view=n}}s.PolyEditTool=l,l.__name__="PolyEditTool",l.init_PolyEditTool()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1),i=e(364),l=e(124),_=s.__importStar(e(18)),n=e(309);class c extends i.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if("center"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.push_state("box_select",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l="replace"){const _={type:"rect",sx0:e,sx1:t,sy0:o,sy1:s};this._select(_,i,l)}}o.BoxSelectToolView=c,c.__name__="BoxSelectToolView";const r=()=>new l.BoxAnnotation({level:"overlay",top_units:"screen",left_units:"screen",bottom_units:"screen",right_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.SelectTool{constructor(e){super(e),this.tool_name="Box Select",this.icon=n.bk_tool_icon_box_select,this.event_type="pan",this.default_order=30}static init_BoxSelectTool(){this.prototype.default_view=c,this.define({dimensions:[_.Dimensions,"both"],select_every_mousemove:[_.Boolean,!1],overlay:[_.Instance,r],origin:[_.BoxOrigin,"corner"]}),this.register_alias("box_select",()=>new h),this.register_alias("xbox_select",()=>new h({dimensions:"width"})),this.register_alias("ybox_select",()=>new h({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}o.BoxSelectTool=h,h.__name__="BoxSelectTool",h.init_BoxSelectTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(1),o=e(306),r=e(90),c=e(116),i=e(365),l=n.__importStar(e(18)),a=e(72),_=e(313),d=e(15),h=e(11);class p extends o.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect(()=>this._clear())}get computed_renderers(){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;return i.compute_renderers(e,t,s)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof r.GlyphRenderer)n=s.data_source;else{if(!(s instanceof c.GraphRenderer))continue;n=s.node_renderer.data_source}const o=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[…o,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?"append":!t&&s?"intersect":t&&s?"subtract":void h.unreachable():this.model.mode}_keyup(e){e.keyCode==a.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();this.plot_view.request_render()}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,o]of n){const n=o[0].get_selection_manager(),r=[];for(const e of o){const t=this.plot_view.renderer_views.get(e);null!=t&&r.push(t)}n.select(r,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let o;switch(e.type){case"point":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case"span":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case"rect":{const{sx0:t,sx1:r,sy0:c,sy1:i}=e,[l,a]=s.r_invert(t,r),[_,d]=n.r_invert(c,i);o=Object.assign(Object.assign({},e),{x0:l,y0:_,x1:a,y1:d});break}case"poly":{const{sx:t,sy:r}=e,c=s.v_invert(t),i=n.v_invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new _.SelectionGeometry(o,t))}}s.SelectToolView=p,p.__name__="SelectToolView";class u extends o.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new d.Signal0(this,"clear")}static init_SelectTool(){this.define({renderers:[l.Any,"auto"],names:[l.Array,[]],mode:[l.Any,"replace"]})}get menu(){return[{icon:"bk-tool-icon-replace-mode",tooltip:"Replace the current selection",active:()=>"replace"==this.mode,handler:()=>{this.mode="replace",this.active=!0}},{icon:"bk-tool-icon-append-mode",tooltip:"Append to the current selection (Shift)",active:()=>"append"==this.mode,handler:()=>{this.mode="append",this.active=!0}},{icon:"bk-tool-icon-intersect-mode",tooltip:"Intersect with the current selection (Ctrl)",active:()=>"intersect"==this.mode,handler:()=>{this.mode="intersect",this.active=!0}},{icon:"bk-tool-icon-subtract-mode",tooltip:"Subtract from the current selection (Shift+Ctrl)",active:()=>"subtract"==this.mode,handler:()=>{this.mode="subtract",this.active=!0}},null,{icon:"bk-tool-icon-clear-selection",tooltip:"Clear the current selection (Esc)",handler:()=>{this.clear.emit()}}]}}s.SelectTool=u,u.__name__="SelectTool",u.init_SelectTool()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(9);t.compute_renderers=function(e,n,t){if(null==e)return[];let u="auto"==e?n:e;return t.length>0&&(u=u.filter(e=>r.includes(t,e.name))),u}},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t(1),i=t(306),n=t(124),_=s.__importStar(t(18)),a=t(309);class l extends i.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m<n&&(m=n)),l=Math.abs(p-m),t[1]<=o[1]?(b=t[1],d=t[1]+l/s,d>_&&(d=_)):(d=t[1],b=t[1]-l/s,b<a&&(b=a)),r=Math.abs(d-b),t[0]<=o[0]?p=t[0]+s*r:m=t[0]-s*r,[[m,p],[b,d]]}_compute_limits(t){const o=this.plot_view.frame,e=this.model.dimensions;let s,i,n=this._base_point;if("center"==this.model.origin){const[o,e]=n,[s,i]=t;n=[o-(s-o),e-(i-e)]}return this.model.match_aspect&&"both"==e?[s,i]=this._match_aspect(n,t,o):[s,i]=this.model._get_dim_limits(n,t,o,e),[s,i]}_pan_start(t){this._base_point=[t.sx,t.sy]}_pan(t){const o=[t.sx,t.sy],[e,s]=this._compute_limits(o);this.model.overlay.update({left:e[0],right:e[1],top:s[0],bottom:s[1]})}_pan_end(t){const o=[t.sx,t.sy],[e,s]=this._compute_limits(o);this._update(e,s),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null}_update([t,o],[e,s]){if(Math.abs(o-t)<=5||Math.abs(s-e)<=5)return;const{x_scales:i,y_scales:n}=this.plot_view.frame,_=new Map;for(const[e,s]of i){const[i,n]=s.r_invert(t,o);_.set(e,{start:i,end:n})}const a=new Map;for(const[t,o]of n){const[i,n]=o.r_invert(e,s);a.set(t,{start:i,end:n})}const l={xrs:_,yrs:a};this.plot_view.push_state("box_zoom",{range:l}),this.plot_view.update_range(l)}}e.BoxZoomToolView=l,l.__name__="BoxZoomToolView";const r=()=>new n.BoxAnnotation({level:"overlay",top_units:"screen",left_units:"screen",bottom_units:"screen",right_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.GestureTool{constructor(t){super(t),this.tool_name="Box Zoom",this.icon=a.bk_tool_icon_box_zoom,this.event_type="pan",this.default_order=20}static init_BoxZoomTool(){this.prototype.default_view=l,this.define({dimensions:[_.Dimensions,"both"],overlay:[_.Instance,r],match_aspect:[_.Boolean,!1],origin:[_.BoxOrigin,"corner"]}),this.register_alias("box_zoom",()=>new h({dimensions:"both"})),this.register_alias("xbox_zoom",()=>new h({dimensions:"width"})),this.register_alias("ybox_zoom",()=>new h({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.BoxZoomTool=h,h.__name__="BoxZoomTool",h.init_BoxZoomTool()},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),a=e(364),i=e(368),l=e(72),_=o.__importStar(e(18)),c=e(309);class n extends a.SelectToolView{initialize(){super.initialize(),this.data=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_overlay()}_keyup(e){e.keyCode==l.Keys.Enter&&this._clear_overlay()}_pan_start(e){const{sx:s,sy:t}=e;this.data={sx:[s],sy:[t]}}_pan(e){const{sx:s,sy:t}=e,[o,a]=this.plot_view.frame.bbox.clip(s,t);this.data.sx.push(o),this.data.sy.push(a);this.model.overlay.update({xs:this.data.sx,ys:this.data.sy}),this.model.select_every_mousemove&&this._do_select(this.data.sx,this.data.sy,!1,this._select_mode(e))}_pan_end(e){this._clear_overlay(),this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state("lasso_select",{selection:this.plot_view.get_selection()})}_clear_overlay(){this.model.overlay.update({xs:[],ys:[]})}_do_select(e,s,t,o){const a={type:"poly",sx:e,sy:s};this._select(a,t,o)}}t.LassoSelectToolView=n,n.__name__="LassoSelectToolView";class h extends a.SelectTool{constructor(e){super(e),this.tool_name="Lasso Select",this.icon=c.bk_tool_icon_lasso_select,this.event_type="pan",this.default_order=12}static init_LassoSelectTool(){this.prototype.default_view=n,this.define({select_every_mousemove:[_.Boolean,!0],overlay:[_.Instance,i.DEFAULT_POLY_OVERLAY]}),this.register_alias("lasso_select",()=>new h)}}t.LassoSelectTool=h,h.__name__="LassoSelectTool",h.init_LassoSelectTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const l=e(1),i=e(364),o=e(166),a=e(72),_=l.__importStar(e(18)),c=e(9),n=e(309);class h extends i.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==a.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state("poly_select",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:c.copy(this.data.sx),ys:c.copy(this.data.sy)}))}_do_select(e,t,s,l){const i={type:"poly",sx:e,sy:t};this._select(i,s,l)}}s.PolySelectToolView=h,h.__name__="PolySelectToolView",s.DEFAULT_POLY_OVERLAY=()=>new o.PolyAnnotation({level:"overlay",xs_units:"screen",ys_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class y extends i.SelectTool{constructor(e){super(e),this.tool_name="Poly Select",this.icon=n.bk_tool_icon_polygon_select,this.event_type="tap",this.default_order=11}static init_PolySelectTool(){this.prototype.default_view=h,this.define({overlay:[_.Instance,s.DEFAULT_POLY_OVERLAY]}),this.register_alias("poly_select",()=>new y)}}s.PolySelectTool=y,y.__name__="PolySelectTool",y.init_PolySelectTool()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(370),r=s.__importStar(e(18)),_=e(309);class d extends n.LineToolView{constructor(){super(…arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const i of t){1==this._select_event(e,"replace",[i]).length&&(this._selected_renderer=i)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[i,s]=[t.x.field,t.y.field],n=e.get_array(i),r=e.get_array(s);this._set_intersection(n,r)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const i=this._select_mode(e);if(0==this._select_event(e,i,[t]).length)return}const i=this._select_mode(e);this._select_event(e,i,[t]),this._select_event(e,i,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[i,s]=[e.x.field,e.y.field];if(i&&s){const e=t.data[i],n=t.data[s];this._selected_renderer.data_source.data[i]=e,this._selected_renderer.data_source.data[s]=n}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,"append",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}i.LineEditToolView=d,d.__name__="LineEditToolView";class o extends n.LineTool{constructor(e){super(e),this.tool_name="Line Edit Tool",this.icon=_.bk_tool_icon_line_edit,this.event_type=["tap","pan","move"],this.default_order=4}static init_LineEditTool(){this.prototype.default_view=d,this.define({dimensions:[r.Dimensions,"both"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}i.LineEditTool=o,o.__name__="LineEditTool",o.init_LineEditTool()},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1).__importStar(e(18)),o=e(8),s=e(356);class _ extends s.EditToolView{_set_intersection(e,i){const t=this.model.intersection_renderer.glyph,n=this.model.intersection_renderer.data_source,[s,_]=[t.x.field,t.y.field];s&&(o.isArray(e)?n.data[s]=e:t.x={value:e}),_&&(o.isArray(i)?n.data[_]=i:t.y={value:i}),this._emit_cds_changes(n,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}t.LineToolView=_,_.__name__="LineToolView";class r extends s.EditTool{constructor(e){super(e)}static init_LineTool(){this.prototype.default_view=_,this.define({intersection_renderer:[n.Instance]})}}t.LineTool=r,r.__name__="LineTool",r.init_LineTool()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(1),i=t(306),o=n.__importStar(t(18)),a=t(309);function _(t,s,e){const n=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,e);n.set(i,{start:t,end:a})}return n}e.update_ranges=_;class h extends i.GestureToolView{_pan_start(t){this.last_dx=0,this.last_dy=0;const{sx:s,sy:e}=t,n=this.plot_view.frame.bbox;if(!n.contains(s,e)){const t=n.h_range,i=n.v_range;(s<t.start||s>t.end)&&(this.v_axis_only=!0),(e<i.start||e>i.end)&&(this.h_axis_only=!0)}null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan(t){this._update(t.deltaX,t.deltaY),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.push_state("pan",{range:this.pan_info})}_update(t,s){const e=this.plot_view.frame,n=t-this.last_dx,i=s-this.last_dy,o=e.bbox.h_range,a=o.start-n,h=o.end-n,l=e.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,x,y,g;"width"!=p&&"both"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=h,m=-n),"height"!=p&&"both"!=p||this.h_axis_only?(x=l.start,y=l.end,g=0):(x=r,y=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:b}=e,f=_(w,c,u),v=_(b,x,y);this.pan_info={xrs:f,yrs:v,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,!0)}}e.PanToolView=h,h.__name__="PanToolView";class l extends i.GestureTool{constructor(t){super(t),this.tool_name="Pan",this.event_type="pan",this.default_order=10}static init_PanTool(){this.prototype.default_view=h,this.define({dimensions:[o.Dimensions,"both"]}),this.register_alias("pan",()=>new l({dimensions:"both"})),this.register_alias("xpan",()=>new l({dimensions:"width"})),this.register_alias("ypan",()=>new l({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip("Pan",this.dimensions)}get icon(){switch(this.dimensions){case"both":return a.bk_tool_icon_pan;case"width":return a.bk_tool_icon_xpan;case"height":return a.bk_tool_icon_ypan}}}e.PanTool=l,l.__name__="PanTool",l.init_PanTool()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(124),l=e(19),a=s.__importStar(e(18)),r=e(306),o=e(309);function _(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function h(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)<s}function d(e,t,i,s,n){let l=!0;if(null!=n.left&&null!=n.right){const t=i.invert(e);(t<n.left||t>n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(e<n.bottom||e>n.top)&&(l=!1)}return l}function u(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function c(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function g(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,_(i))}function y(e,t,i){return e<t.end?(t.start=e,i):(t.start=t.end,t.end=e,_(i))}function f(e,t,i,s){const[n,l]=t.r_compute(e.start,e.end),[a,r]=t.r_invert(n+i,l+i),o=u(e.start,e.end,s);u(a,r,s)>=o&&(e.start=a,e.end=r)}i.flip_side=_,i.is_near=h,i.is_inside=d,i.sides_inside=u,i.compute_value=c,i.update_range_end_side=g,i.update_range_start_side=y,i.update_range=f;class p extends r.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,()=>this.model.update_overlay_from_ranges()),null!=this.model.y_range&&this.connect(this.model.y_range.change,()=>this.model.update_overlay_from_ranges())}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,l=s.x_scale,a=s.y_scale,r=this.model.overlay,{left:o,right:_,top:u,bottom:c}=r,g=this.model.overlay.properties.line_width.value()+n.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(h(e.sx,o,l,g)?this.side=1:h(e.sx,_,l,g)?this.side=2:d(e.sx,e.sy,l,a,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&h(e.sy,c,a,g)&&(this.side=4),0==this.side&&h(e.sy,u,a,g)?this.side=5:d(e.sx,e.sy,l,a,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)f(n,a,i,t.x_range);else if(1==this.side){const e=c(n.start,a,i,t.x_range);this.side=y(e,n,this.side)}else if(2==this.side){const e=c(n.end,a,i,t.x_range);this.side=g(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)f(l,r,s,t.y_range);else if(4==this.side){const e=c(l.start,r,s,t.y_range);this.side=y(e,l,this.side)}else if(5==this.side){const e=c(l.end,r,s,t.y_range);this.side=g(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0}}i.RangeToolView=p,p.__name__="RangeToolView";const m=()=>new n.BoxAnnotation({level:"overlay",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:.5,line_dash:[2,2]});class v extends r.GestureTool{constructor(e){super(e),this.tool_name="Range Tool",this.icon=o.bk_tool_icon_range,this.event_type="pan",this.default_order=1}static init_RangeTool(){this.prototype.default_view=p,this.define({x_range:[a.Instance,null],x_interaction:[a.Boolean,!0],y_range:[a.Instance,null],y_interaction:[a.Boolean,!0],overlay:[a.Instance,m]})}initialize(){super.initialize(),this.overlay.in_cursor="grab",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?"ew-resize":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?"ns-resize":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,l.logger.warn("RangeTool not configured with any Ranges.")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=v,v.__name__="RangeTool",v.init_RangeTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),i=e(364),c=o.__importStar(e(18)),n=e(309);class a extends i.SelectToolView{_tap(e){const{sx:t,sy:s}=e,o={type:"point",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const o=this.model.callback;if("select"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,c]of i){const i=c[0].get_selection_manager(),n=c.map(e=>this.plot_view.renderer_views.get(e));if(i.select(n,e,t,s)&&null!=o){const t=n[0].coordinates.x_scale.invert(e.sx),s=n[0].coordinates.y_scale.invert(e.sy),c={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,c)}}this._emit_selection_event(e),this.plot_view.push_state("tap",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),c=s.coordinates.y_scale.invert(e.sy),n={geometries:Object.assign(Object.assign({},e),{x:t,y:c}),source:i.source};o.execute(this.model,n)}}}}s.TapToolView=a,a.__name__="TapToolView";class _ extends i.SelectTool{constructor(e){super(e),this.tool_name="Tap",this.icon=n.bk_tool_icon_tap_select,this.event_type="tap",this.default_order=10}static init_TapTool(){this.prototype.default_view=a,this.define({behavior:[c.TapBehavior,"select"],callback:[c.Any]}),this.register_alias("click",()=>new _({behavior:"inspect"})),this.register_alias("tap",()=>new _)}}s.TapTool=_,_.__name__="TapTool",_.init_TapTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),o=e(306),n=i.__importStar(e(18)),a=e(309),l=e(371);class _ extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,[o,n]=[s.start,s.end],[a,_]=[i.start,i.end];let h,r,d,p;switch(this.model.dimension){case"height":{const t=Math.abs(_-a);h=o,r=n,d=a-t*e,p=_-t*e;break}case"width":{const t=Math.abs(n-o);h=o-t*e,r=n-t*e,d=a,p=_;break}default:throw new Error("this shouldn’t have happened")}const{x_scales:c,y_scales:u}=t,m={xrs:l.update_ranges(c,h,r),yrs:l.update_ranges(u,d,p),factor:e};this.plot_view.push_state("wheel_pan",{range:m}),this.plot_view.update_range(m,!1,!0),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}s.WheelPanToolView=_,_.__name__="WheelPanToolView";class h extends o.GestureTool{constructor(e){super(e),this.tool_name="Wheel Pan",this.icon=a.bk_tool_icon_wheel_pan,this.event_type="scroll",this.default_order=12}static init_WheelPanTool(){this.prototype.default_view=_,this.define({dimension:[n.Dimension,"width"]}),this.internal({speed:[n.Number,.001]}),this.register_alias("xwheel_pan",()=>new h({dimension:"width"})),this.register_alias("ywheel_pan",()=>new h({dimension:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimension)}}s.WheelPanTool=h,h.__name__="WheelPanTool",h.init_WheelPanTool()},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),i=e(306),l=e(354),n=s.__importStar(e(18)),_=e(32),h=e(309);class a extends i.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:l}=e;let n;n=s>=1?20*(s-1):-20/s,this._scroll({type:"wheel",sx:o,sy:t,delta:n,ctrlKey:i,shiftKey:l})}_scroll(e){const{frame:o}=this.plot_view,t=o.bbox.h_range,s=o.bbox.v_range,{sx:i,sy:n}=e,_=this.model.dimensions,h=("width"==_||"both"==_)&&t.start<i&&i<t.end,a=("height"==_||"both"==_)&&s.start<n&&n<s.end;if(!(h&&a||this.model.zoom_on_axis))return;const m=this.model.speed*e.delta,r=l.scale_range(o,m,h,a,{x:i,y:n});this.plot_view.push_state("wheel_zoom",{range:r}),this.plot_view.update_range(r,!1,!0,this.model.maintain_focus),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}t.WheelZoomToolView=a,a.__name__="WheelZoomToolView";class m extends i.GestureTool{constructor(e){super(e),this.tool_name="Wheel Zoom",this.icon=h.bk_tool_icon_wheel_zoom,this.event_type=_.is_mobile?"pinch":"scroll",this.default_order=10}static init_WheelZoomTool(){this.prototype.default_view=a,this.define({dimensions:[n.Dimensions,"both"],maintain_focus:[n.Boolean,!0],zoom_on_axis:[n.Boolean,!0],speed:[n.Number,1/600]}),this.register_alias("wheel_zoom",()=>new m({dimensions:"both"})),this.register_alias("xwheel_zoom",()=>new m({dimensions:"width"})),this.register_alias("ywheel_zoom",()=>new m({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}t.WheelZoomTool=m,m.__name__="WheelZoomTool",m.init_WheelZoomTool()},n function _(i,s,e){Object.defineProperty(e,"__esModule",{value:!0});const t=i(1),o=i(295),n=i(168),l=t.__importStar(i(18)),h=i(13),a=i(309);class r extends o.InspectToolView{_move(i){if(!this.model.active)return;const{sx:s,sy:e}=i;this.plot_view.frame.bbox.contains(s,e)?this._update_spans(s,e):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,s){const e=this.model.dimensions;"width"!=e&&"both"!=e||(this.model.spans.width.location=s),"height"!=e&&"both"!=e||(this.model.spans.height.location=i)}}e.CrosshairToolView=r,r.__name__="CrosshairToolView";class _ extends o.InspectTool{constructor(i){super(i),this.tool_name="Crosshair",this.icon=a.bk_tool_icon_crosshair}static init_CrosshairTool(){this.prototype.default_view=r,this.define({dimensions:[l.Dimensions,"both"],line_color:[l.Color,"black"],line_width:[l.Number,1],line_alpha:[l.Number,1]}),this.internal({spans:[l.Any]}),this.register_alias("crosshair",()=>new _)}get tooltip(){return this._get_dim_tooltip("Crosshair",this.dimensions)}get synthetic_renderers(){return h.values(this.spans)}initialize(){super.initialize(),this.spans={width:new n.Span({for_hover:!0,dimension:"width",location_units:"screen",level:"overlay",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha}),height:new n.Span({for_hover:!0,dimension:"height",location_units:"screen",level:"overlay",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha})}}}e.CrosshairTool=_,_.__name__="CrosshairTool",_.init_CrosshairTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(1),o=e(81),i=r.__importStar(e(18)),a=e(13),n=e(29);class u extends o.Model{constructor(e){super(e)}static init_CustomJSHover(){this.define({args:[i.Any,{}],code:[i.String,""]})}get values(){return a.values(this.args)}_make_code(e,t,s,r){return new Function(…a.keys(this.args),e,t,s,n.use_strict(r))}format(e,t,s){return this._make_code("value","format","special_vars",this.code)(…this.values,e,t,s)}}s.CustomJSHover=u,u.__name__="CustomJSHover",u.init_CustomJSHover()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),n=e(295),i=e(171),r=e(90),l=e(116),c=e(365),a=o.__importStar(e(101)),_=e(187),d=e(72),p=o.__importStar(e(18)),h=e(22),m=e(13),u=e(303),y=e(8),f=e(115),x=e(309),v=e(172);function w(e,t,s,o,n,i){const r={x:n[e],y:i[e]},l={x:n[e+1],y:i[e+1]};let c,_;if("span"==t.type)"h"==t.direction?(c=Math.abs(r.x-s),_=Math.abs(l.x-s)):(c=Math.abs(r.y-o),_=Math.abs(l.y-o));else{const e={x:s,y:o};c=a.dist_2_pts(r,e),_=a.dist_2_pts(l,e)}return c<_?[[r.x,r.y],e]:[[l.x,l.y],e+1]}function g(e,t,s){return[[e[s],t[s]],s]}s._nearest_line_hit=w,s._line_hit=g;class b extends n.InspectToolView{initialize(){super.initialize(),this._ttmodels=null,this._ttviews=new Map;const{tooltips:e}=this.model;y.isArray(e)&&(this._template_el=this._create_template(e))}remove(){f.remove_views(this._ttviews),super.remove()}connect_signals(){super.connect_signals();for(const e of this.computed_renderers)e instanceof r.GlyphRenderer?this.connect(e.data_source.inspect,this._update):e instanceof l.GraphRenderer&&(this.connect(e.node_renderer.data_source.inspect,this._update),this.connect(e.edge_renderer.data_source.inspect,this._update));this.connect(this.model.properties.renderers.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.names.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.tooltips.change,()=>this._ttmodels=null)}_compute_ttmodels(){const e=new Map,t=this.model.tooltips;if(null!=t)for(const s of this.computed_renderers){const o=new i.Tooltip({custom:y.isString(t)||y.isFunction(t),attachment:this.model.attachment,show_arrow:this.model.show_arrow});s instanceof r.GlyphRenderer?e.set(s,o):s instanceof l.GraphRenderer&&(e.set(s.node_renderer,o),e.set(s.edge_renderer,o))}return(async()=>{const t=await f.build_views(this._ttviews,[…e.values()],{parent:this.plot_view});for(const e of t)e.render()})(),e}get computed_renderers(){if(null==this._computed_renderers){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;this._computed_renderers=c.compute_renderers(e,t,s)}return this._computed_renderers}get ttmodels(){return null==this._ttmodels&&(this._ttmodels=this._compute_ttmodels()),this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)?this._inspect(t,s):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let s;if("mouse"==this.model.mode)s={type:"point",sx:e,sy:t};else{s={type:"span",direction:"vline"==this.model.mode?"h":"v",sx:e,sy:t}}for(const e of this.computed_renderers){e.get_selection_manager().inspect(this.plot_view.renderer_views.get(e),s)}null!=this.model.callback&&this._emit_callback(s)}_update([e,{geometry:t}]){if(!this.model.active)return;if(!(e instanceof r.GlyphRendererView))return;const{model:s}=e;if("ignore"==this.model.muted_policy&&s instanceof r.GlyphRenderer&&s.muted)return;const o=this.ttmodels.get(s);if(null==o)return;const n=s.get_selection_manager();let i=n.inspectors.get(s);if(s instanceof r.GlyphRenderer&&(i=s.view.convert_selection_to_subset(i)),i.is_empty())return void o.clear();const l=n.source,{sx:c,sy:a}=t,_=e.coordinates.x_scale,p=e.coordinates.y_scale,h=_.invert(c),u=p.invert(a),y=e.glyph,f=[];for(const s of i.line_indices){let o,n,r=y._x[s+1],d=y._y[s+1],m=s;switch(this.model.line_policy){case"interp":[r,d]=y.get_interpolation_hit(s,t),o=_.compute(r),n=p.compute(d);break;case"prev":[[o,n],m]=g(y.sx,y.sy,s);break;case"next":[[o,n],m]=g(y.sx,y.sy,s+1);break;case"nearest":[[o,n],m]=w(s,t,c,a,y.sx,y.sy),r=y._x[m],d=y._y[m];break;default:[o,n]=[c,a]}const x={index:m,x:h,y:u,sx:c,sy:a,data_x:r,data_y:d,rx:o,ry:n,indices:i.line_indices,name:e.model.name};f.push([o,n,this._render_tooltips(l,m,x)])}for(const t of i.image_indices){const s={index:t.index,x:h,y:u,sx:c,sy:a,name:e.model.name},o=this._render_tooltips(l,t,s);f.push([c,a,o])}for(const o of i.indices)if(m.isEmpty(i.multiline_indices)){const t=null!=y._x?y._x[o]:void 0,n=null!=y._y?y._y[o]:void 0;let _,d,p;if("snap_to_data"==this.model.point_policy){let e=y.get_anchor_point(this.model.anchor,o,[c,a]);null==e&&(e=y.get_anchor_point("center",o,[c,a])),_=e.x,d=e.y}else[_,d]=[c,a];p=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const m={index:p,x:h,y:u,sx:c,sy:a,data_x:t,data_y:n,indices:i.indices,name:e.model.name};f.push([_,d,this._render_tooltips(l,p,m)])}else for(const n of i.multiline_indices[o.toString()]){let d,m,x,v=y._xs[o][n],b=y._ys[o][n],k=n;switch(this.model.line_policy){case"interp":[v,b]=y.get_interpolation_hit(o,n,t),d=_.compute(v),m=p.compute(b);break;case"prev":[[d,m],k]=g(y.sxs[o],y.sys[o],n);break;case"next":[[d,m],k]=g(y.sxs[o],y.sys[o],n+1);break;case"nearest":[[d,m],k]=w(n,t,c,a,y.sxs[o],y.sys[o]),v=y._xs[o][k],b=y._ys[o][k];break;default:throw new Error("should’t have happened")}x=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const A={index:x,x:h,y:u,sx:c,sy:a,data_x:v,data_y:b,segment_index:k,indices:i.multiline_indices,name:e.model.name};f.push([d,m,this._render_tooltips(l,x,A)])}if(0==f.length)o.clear();else{const{content:e}=o;d.empty(o.content);for(const[,,t]of f)e.appendChild(t);const[t,s]=f[f.length-1];o.setv({position:[t,s]},{check_eq:!1})}}_emit_callback(e){for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),o=s.coordinates.x_scale.invert(e.sx),n=s.coordinates.y_scale.invert(e.sy),i=t.data_source.inspected,r=Object.assign({x:o,y:n},e);this.model.callback.execute(this.model,{index:i,geometry:r,renderer:t})}}_create_template(e){const t=d.div({style:{display:"table",borderSpacing:"2px"}});for(const[s]of e){const e=d.div({style:{display:"table-row"}});t.appendChild(e);const o=d.div({style:{display:"table-cell"},class:v.bk_tooltip_row_label},0!=s.length?s+": ":"");e.appendChild(o);const n=d.span();n.dataset.value="";const i=d.span({class:v.bk_tooltip_color_block}," ");i.dataset.swatch="",d.undisplay(i);const r=d.div({style:{display:"table-cell"},class:v.bk_tooltip_row_value},n,i);e.appendChild(r)}return t}_render_template(e,t,s,o,n){const i=e.cloneNode(!0),r=i.querySelectorAll("[data-value]"),l=i.querySelectorAll("[data-swatch]"),c=/\$color(\[.*\])?:(\w*)/;for(const[[,e],i]of u.enumerate(t)){const t=e.match(c);if(null!=t){const[,e="",n]=t,c=s.get_column(n);if(null==c){r[i].textContent=n+" unknown";continue}const a=e.indexOf("hex")>=0,_=e.indexOf("swatch")>=0;let p=y.isNumber(o)?c[o]:null;if(null==p){r[i].textContent="(null)";continue}a&&(p=h.color2hex(p)),r[i].textContent=p,_&&(l[i].style.backgroundColor=p,d.display(l[i]))}else{const t=_.replace_placeholders(e.replace("$~","$data_"),s,o,this.model.formatters,n);if(y.isString(t))r[i].textContent=t;else for(const e of t)r[i].appendChild(e)}}return i}_render_tooltips(e,t,s){const o=this.model.tooltips;if(y.isString(o)){const n=_.replace_placeholders({html:o},e,t,this.model.formatters,s);return d.div({},n)}return y.isFunction(o)?o(e,s):this._render_template(this._template_el,o,e,t,s)}}s.HoverToolView=b,b.__name__="HoverToolView";class k extends n.InspectTool{constructor(e){super(e),this.tool_name="Hover",this.icon=x.bk_tool_icon_hover}static init_HoverTool(){this.prototype.default_view=b,this.define({tooltips:[p.Any,[["index","$index"],["data (x, y)","($x, $y)"],["screen (x, y)","($sx, $sy)"]]],formatters:[p.Any,{}],renderers:[p.Any,"auto"],names:[p.Array,[]],mode:[p.HoverMode,"mouse"],muted_policy:[p.MutedPolicy,"show"],point_policy:[p.PointPolicy,"snap_to_data"],line_policy:[p.LinePolicy,"nearest"],show_arrow:[p.Boolean,!0],anchor:[p.Anchor,"center"],attachment:[p.TooltipAttachment,"horizontal"],callback:[p.Any]}),this.register_alias("hover",()=>new k)}}s.HoverTool=k,k.__name__="HoverTool",k.init_HoverTool()},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1).__importStar(t(18)),n=t(15),s=t(81),l=t(295),c=t(303);class r extends s.Model{constructor(t){super(t)}static init_ToolProxy(){this.define({tools:[i.Array,[]],active:[i.Boolean,!1],disabled:[i.Boolean,!1]})}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof l.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new n.Signal0(this,"do")}connect_signals(){super.connect_signals(),this.connect(this.do,()=>this.doit()),this.connect(this.properties.active.change,()=>this.set_active());for(const t of this.tools)this.connect(t.properties.active.change,()=>{this.active=t.active})}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,i]of c.enumerate(t))if(null==e)o.push(null);else{const t=()=>{var t,o;for(const e of this.tools)null===(o=null===(t=e.menu)||void 0===t?void 0:t[i])||void 0===o||o.handler()};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=r,r.__name__="ToolProxy",r.init_ToolProxy()},n function _(o,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=o(1).__importStar(o(18)),e=o(9),n=o(13),r=o(305),l=o(379),c=o(272),h=o(212);class a extends r.ToolbarBase{constructor(o){super(o)}static init_ProxyToolbar(){this.define({toolbars:[i.Array,[]]})}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},i=[],r=[];for(const o of this.help)e.includes(r,o.redirect)||(i.push(o),r.push(o.redirect));this._proxied_tools.push(…i),this.help=i;for(const[o,t]of n.entries(this.gestures)){o in s||(s[o]={});for(const i of t.tools)i.type in s[o]||(s[o][i.type]=[]),s[o][i.type].push(i)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const c=(o,t=!1)=>{const s=new l.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of n.keys(s)){const t=this.gestures[o];t.tools=[];for(const i of n.keys(s[o])){const e=s[o][i];if(e.length>0)if("multi"==o)for(const o of e){const s=c([o]);t.tools.push(s),this.connect(s.properties.active.change,()=>this._active_change(s))}else{const o=c(e);t.tools.push(o),this.connect(o.properties.active.change,()=>this._active_change(o))}}}this.actions=[];for(const[o,s]of n.entries(t))if("CustomAction"==o)for(const o of s)this.actions.push(c([o]));else s.length>0&&this.actions.push(c(s));this.inspectors=[];for(const t of n.values(o))t.length>0&&this.inspectors.push(c(t,!0));for(const[o,t]of n.entries(this.gestures))0!=t.tools.length&&(t.tools=e.sort_by(t.tools,o=>o.default_order),"pinch"!=o&&"scroll"!=o&&"multi"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=a,a.__name__="ProxyToolbar",a.init_ProxyToolbar();class _ extends c.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new h.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:"fit",min_width:100,height_policy:"fixed"}):this.layout.set_sizing({width_policy:"fixed",height_policy:"fit",min_height:100})}}s.ToolbarBoxView=_,_.__name__="ToolbarBoxView";class p extends c.LayoutDOM{constructor(o){super(o)}static init_ToolbarBox(){this.prototype.default_view=_,this.define({toolbar:[i.Instance],toolbar_location:[i.Location,"right"]})}}s.ToolbarBox=p,p.__name__="ToolbarBox",p.init_ToolbarBox()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(5),i=e(78),d=e(115),c=e(72),l=e(382);t.index={},t.add_document_standalone=async function(e,n,s=[],a=!1){const u=new Map;async function r(o){let a;const r=e.roots().indexOf(o),f=s[r];null!=f?a=f:n.classList.contains(l.BOKEH_ROOT)?a=n:(a=c.div({class:l.BOKEH_ROOT}),n.appendChild(a));const v=await d.build_view(o,{parent:null});return v instanceof i.DOMView&&v.renderTo(a),u.set(o,v),t.index[o.id]=v,v}for(const n of e.roots())await r(n);return a&&(window.document.title=e.title()),e.on_change(e=>{e instanceof o.RootAddedEvent?r(e.model):e instanceof o.RootRemovedEvent?function(e){const n=u.get(e);null!=n&&(n.remove(),u.delete(e),delete t.index[e.id])}(e.model):a&&e instanceof o.TitleChangedEvent&&(window.document.title=e.title)}),[…u.values()]}},n function _(e,o,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(72),r=e(273);function l(e){let o=document.getElementById(e);if(null==o)throw new Error(Error rendering Bokeh model: could not find #${e} HTML tag);if(!document.body.contains(o))throw new Error(Error rendering Bokeh model: element #${e} must be under <body>);if("SCRIPT"==o.tagName){const e=t.div({class:n.BOKEH_ROOT});t.replaceWith(o,e),o=e}return o}n.BOKEH_ROOT=r.bk_root,n._resolve_element=function(e){const{elementid:o}=e;return null!=o?l(o):document.body},n._resolve_root_elements=function(e){const o=[];if(null!=e.root_ids&&null!=e.roots)for(const n of e.root_ids)o.push(l(e.roots[n]));return o}},n function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});const e=n(384),s=n(19),c=n(381);t._get_ws_url=function(n,o){let t,e="ws:";return"https:"==window.location.protocol&&(e="wss:"),null!=o?(t=document.createElement("a"),t.href=o):t=window.location,null!=n?"/"==n&&(n=""):n=t.pathname.replace(/\/+$/,""),e+"//"+t.host+n+"/ws"};const r={};t.add_document_from_session=async function(n,o,t,a=[],i=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=e.parse_token(o).session_id;n in r||(r[n]={});const c=r[n];return s in c||(c[s]=e.pull_session(n,o,t)),c[s]}(n,o,l)}catch(n){const t=e.parse_token(o).session_id;throw s.logger.error(Failed to load Bokeh session ${t}: ${n}),n}return c.add_document_standalone(d.document,t,a,i)}},n function _(e,s,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(19),o=e(5),r=e(385),i=e(386),c=e(387);n.DEFAULT_SERVER_WEBSOCKET_URL="ws://localhost:5006/ws",n.DEFAULT_TOKEN="eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ";let l=0;function _(e){let s=e.split(".")[0];const n=s.length%4;return 0!=n&&(s+="=".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,"/").replace(/-/g,"+")))}n.parse_token=_;class h{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,o=null){this.url=e,this.token=s,this.args_string=o,this._number=l++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new i.Receiver,this.id=_(s).session_id.split(".")[0],t.logger.debug(Creating websocket ${this._number} to ‘${this.url}’ session ‘${this.id}’)}async connect(){if(this.closed_permanently)throw new Error("Cannot connect() a closed ClientConnection");if(null!=this.socket)throw new Error("Already connected");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=""+this.url;return null!=this.args_string&&this.args_string.length>0&&(e+="?"+this.args_string),this.socket=new WebSocket(e,["bokeh",this.token]),new Promise((e,s)=>{this.socket.binaryType="arraybuffer",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)})}catch(e){throw t.logger.error("websocket creation failed to url: "+this.url),t.logger.error(" - "+e),e}}close(){this.closed_permanently||(t.logger.debug("Permanently closing websocket connection "+this._number),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,"close method called on ClientConnection "+this._number),this.session._connection_closed())}_schedule_reconnect(e){setTimeout(()=>{this.closed_permanently||t.logger.info(Websocket connection ${this._number} disconnected, will not attempt to reconnect)},e)}send(e){if(null==this.socket)throw new Error("not connected so cannot send "+e);e.send(this.socket)}async send_with_reply(e){const s=await new Promise((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)});if("ERROR"===s.msgtype())throw new Error("Error reply "+s.content.text);return s}async _pull_doc_json(){const e=r.Message.create("PULL-DOC-REQ",{}),s=await this.send_with_reply(e);if(!("doc"in s.content))throw new Error("No ‘doc’ field in PULL-DOC-REPLY");return s.content.doc}async _repull_session_doc(e,s){var n;t.logger.debug(this.session?"Repulling session":"Pulling session for first time");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)t.logger.debug("Got new document after connection was already closed"),s(new Error("The connection has been closed"));else{const s=o.Document.from_json(n),i=o.Document._compute_patch_since_json(n,s);if(i.events.length>0){t.logger.debug(Sending ${i.events.length} changes from model construction back to server);const e=r.Message.create("PATCH-DOC",{},i);this.send(e)}this.session=new c.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],t.logger.debug("Created a new session from new pulled doc"),e(this.session)}else this.session.document.replace_with_json(n),t.logger.debug("Updated existing session with new pulled doc")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),t.logger.error("Failed to repull session "+e),s(e)}}_on_open(e,s){t.logger.info(Websocket connection ${this._number} is now open),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&t.logger.error("Got a message with no current handler set");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(e.toString())}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){t.logger.info(Lost websocket ${this._number} connection, ${e.code} (${e.reason})),this.socket=null,this._pending_replies.forEach(e=>e.reject("Disconnected")),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(Lost websocket connection, ${e.code} (${e.reason})))}_on_error(e){t.logger.debug("Websocket error on socket "+this._number);const s="Could not open websocket";t.logger.error("Failed to connect to Bokeh server: "+s),e(new Error(s))}_close_bad_protocol(e){t.logger.error("Closing connection: "+e),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){"ACK"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol("First message was not an ACK")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):"PATCH-DOC"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=h,h.__name__="ClientConnection",n.pull_session=function(e,s,n){return new h(e,s,n).connect()}},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(29);class n{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),i=JSON.parse(s),a=JSON.parse(t);return new n(r,i,a)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error("too many buffers received, expecting "+t);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=n.create_header(e);return new n(r,s,t)}static create_header(e){return{msgid:r.uniqueId(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error("BokehJS only supports receiving buffers, not sending");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return"msgid"in this.header?"msgtype"in this.header?null:"No msgtype in header":"No msgid in header"}}t.Message=n,n.__name__="Message"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const _=e(385),r=e(8);class i{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,r]=this._fragments.slice(0,3);this._partial=_.Message.assemble(t,s,r),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!r.isString(e))throw new Error("Expected text fragment but received binary fragment")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error("Expected binary fragment but received text fragment")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=i,i.__name__="Receiver"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(5),s=e(385),c=e(19);class i{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();"PATCH-DOC"===t?this._handle_patch(e):"OK"===t?this._handle_ok(e):"ERROR"===t?this._handle_error(e):c.logger.debug("Doing nothing with message "+e.msgtype())}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=s.Message.create("SERVER-INFO-REQ",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof o.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),c=s.Message.create("PATCH-DOC",{},n);this._connection.send(c)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){c.logger.trace("Unhandled OK reply to "+e.reqid())}_handle_error(e){c.logger.error(Unhandled ERROR reply to ${e.reqid()}: ${e.content.text})}}n.ClientSession=i,i.__name__="ClientSession"},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1);var r=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var o,t=e[Symbol.asyncIterator];return t?t.call(e):(e="function"==typeof __values?__values(e):e[Symbol.iterator](),o={},n("next"),n("throw"),n("return"),o[Symbol.asyncIterator]=function(){return this},o);function n(t){o[t]=e[t]&&function(o){return new Promise((function(n,r){(function(e,o,t,n){Promise.resolve(n).then((function(o){e({value:o,done:t})}),o)})(n,r,(o=e[t](o)).done,o.value)}))}}};const s=e(5),i=e(386),l=e(19),a=e(72),c=e(13),u=e(381),f=e(382),g=n.__importDefault(e(73)),m=n.__importDefault(e(311)),d=n.__importDefault(e(389));function p(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function _(e,o){if("undefined"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){l.logger.info("Registering Jupyter comms for target "+e);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,t=>{l.logger.info("Registering Jupyter comms for target "+e);const n=new i.Receiver;t.on_msg(p.bind(o,n))})}catch(e){l.logger.warn(Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else if(o.roots()[0].id in t.kernels){l.logger.info("Registering JupyterLab comms for target "+e);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,t=>{l.logger.info("Registering JupyterLab comms for target "+e);const n=new i.Receiver;t.onMsg=p.bind(o,n)})}catch(e){l.logger.warn(Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else if("undefined"!=typeof google&&null!=google.colab.kernel){l.logger.info("Registering Google Colab comms for target "+e);const t=google.colab.kernel.comms;try{t.registerTarget(e,async t=>{var n,s,a;l.logger.info("Registering Google Colab comms for target "+e);const c=new i.Receiver;try{for(var u,f=r(t.messages);!(u=await f.next()).done;){const e=u.value,t={data:e.data},n=[];for(const o of null!==(a=e.buffers)&&void 0!==a?a:[])n.push(new DataView(o));const r={content:t,buffers:n};p.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{u&&!u.done&&(s=f.return)&&await s.call(f)}finally{if(n)throw n.error}}})}catch(e){l.logger.warn(Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else console.warn("Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.")}a.stylesheet.append(g.default),a.stylesheet.append(m.default),a.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=c.size(e))throw new Error("embed_items_notebook expects exactly one document in docs_json");const t=s.Document.from_json(c.values(e)[0]);for(const e of o){null!=e.notebook_comms_target&&_(e.notebook_comms_target,t);const o=f._resolve_element(e),n=f._resolve_root_elements(e);u.add_document_standalone(t,o,n)}}},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});o.default="\n/* notebook specific tweaks so no black outline and matching padding\n/* can’t be wrapped inside bk-root. here are the offending jupyter lines:\n/* https://github.com/jupyter/notebook/blob/master/notebook/static/notebook/less/renderedhtml.less#L59-L76 /\n.rendered_html .bk-root .bk-tooltip table,\n.rendered_html .bk-root .bk-tooltip tr,\n.rendered_html .bk-root .bk-tooltip th,\n.rendered_html .bk-root .bk-tooltip td {\n border: none;\n padding: 1px;\n}\n"},n function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const o=e(1);o.__exportStar(e(385),_),o.__exportStar(e(386),_)},n function _(e,t,n){function s(){const e=document.getElementsByTagName("body")[0],t=document.getElementsByClassName("bokeh-test-div");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement("div");n.classList.add("bokeh-test-div"),n.style.display="none",e.insertBefore(n,e.firstChild)}Object.defineProperty(n,"__esModule",{value:!0}),n.results={},n.init=function(){s()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,s()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,s()}},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0}),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement("div");t.style.backgroundColor="#f2dede",t.style.border="1px solid #a94442",t.style.borderRadius="4px",t.style.display="inline-block",t.style.fontFamily="sans-serif",t.style.marginTop="5px",t.style.minWidth="200px",t.style.padding="5px 5px 5px 10px",t.classList.add("bokeh-error-box-into-flames");const o=document.createElement("span");o.style.backgroundColor="#a94442",o.style.borderRadius="0px 4px 0px 0px",o.style.color="white",o.style.cursor="pointer",o.style.cssFloat="right",o.style.fontSize="0.8em",o.style.margin="-6px -6px 0px 0px",o.style.padding="2px 5px 4px 5px",o.title="close",o.setAttribute("aria-label","close"),o.appendChild(document.createTextNode("x")),o.addEventListener("click",()=>r.removeChild(t));const n=document.createElement("h3");n.style.color="#a94442",n.style.margin="8px 0px 0px 0px",n.style.padding="0px",n.appendChild(document.createTextNode("Bokeh Error"));const l=document.createElement("pre");l.style.whiteSpace="unset",l.style.overflowX="auto";const s=e instanceof Error?e.message:e;l.appendChild(document.createTextNode(s)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const r=document.getElementsByTagName("body")[0];r.insertBefore(t,r.firstChild)}(e),t)return;throw e}}},n ], 0, {"main":0,"tslib":1,"index":2,"version":3,"embed/index":4,"document/index":5,"document/document":6,"base":7,"core/util/types":8,"core/util/array":9,"core/util/math":10,"core/util/assert":11,"core/util/arrayable":12,"core/util/object":13,"core/has_props":14,"core/signaling":15,"core/util/callback":16,"core/util/refs":17,"core/properties":18,"core/logging":19,"core/enums":20,"core/kinds":21,"core/util/color":22,"core/util/svg_colors":23,"core/types":24,"core/util/eq":25,"core/util/data_structures":26,"core/settings":27,"core/property_mixins":28,"core/util/string":29,"core/util/ndarray":30,"core/util/serialization":31,"core/util/compat":32,"core/util/pretty":33,"models/index":34,"models/annotations/index":35,"models/annotations/annotation":36,"core/util/projections":37,"models/renderers/renderer":70,"core/view":71,"core/dom":72,"styles/root.css":73,"core/visuals":74,"core/util/svg":75,"core/util/affine":76,"models/canvas/canvas":77,"core/dom_view":78,"core/util/bbox":79,"core/util/canvas":80,"model":81,"models/canvas/coordinates":82,"models/annotations/arrow":83,"models/annotations/arrow_head":84,"models/sources/column_data_source":85,"models/sources/columnar_data_source":86,"models/sources/data_source":87,"models/selections/selection":88,"core/selection_manager":89,"models/renderers/glyph_renderer":90,"models/renderers/data_renderer":91,"models/glyphs/line":92,"models/glyphs/xy_glyph":93,"models/glyphs/glyph":94,"core/util/spatial":95,"models/ranges/factor_range":98,"models/ranges/range":99,"models/glyphs/utils":100,"core/hittest":101,"models/glyphs/webgl/line":102,"models/glyphs/webgl/utils/index":103,"models/glyphs/webgl/utils/program":104,"models/glyphs/webgl/utils/buffer":105,"models/glyphs/webgl/utils/texture":106,"models/glyphs/webgl/base":107,"models/glyphs/webgl/line.vert":108,"models/glyphs/webgl/line.frag":109,"models/glyphs/patch":110,"models/glyphs/harea":111,"models/glyphs/area":112,"models/glyphs/varea":113,"models/sources/cds_view":114,"core/build_views":115,"models/renderers/graph_renderer":116,"models/graphs/graph_hit_test_policy":117,"models/selections/interaction_policy":118,"core/util/typed_array":119,"core/util/set":120,"document/events":121,"models/annotations/band":122,"models/annotations/upper_lower":123,"models/annotations/box_annotation":124,"models/annotations/color_bar":125,"models/tickers/basic_ticker":126,"models/tickers/adaptive_ticker":127,"models/tickers/continuous_ticker":128,"models/tickers/ticker":129,"models/formatters/basic_tick_formatter":130,"models/formatters/tick_formatter":131,"models/mappers/index":132,"models/mappers/categorical_color_mapper":133,"models/mappers/categorical_mapper":134,"models/mappers/color_mapper":135,"models/mappers/mapper":136,"models/transforms/transform":137,"models/mappers/categorical_marker_mapper":138,"models/mappers/categorical_pattern_mapper":139,"models/mappers/continuous_color_mapper":140,"models/mappers/linear_color_mapper":141,"models/mappers/log_color_mapper":142,"models/mappers/scanning_color_mapper":143,"models/mappers/eqhist_color_mapper":144,"models/scales/linear_scale":145,"models/scales/continuous_scale":146,"models/scales/scale":147,"models/transforms/index":148,"models/transforms/customjs_transform":149,"models/transforms/dodge":150,"models/transforms/range_transform":151,"models/transforms/interpolator":152,"models/transforms/jitter":153,"models/transforms/linear_interpolator":154,"models/transforms/step_interpolator":155,"models/scales/linear_interpolation_scale":156,"models/scales/log_scale":157,"models/ranges/range1d":158,"core/util/text":159,"models/annotations/label":160,"models/annotations/text_annotation":161,"models/annotations/label_set":162,"models/annotations/legend":163,"models/annotations/legend_item":164,"core/vectorization":165,"models/annotations/poly_annotation":166,"models/annotations/slope":167,"models/annotations/span":168,"models/annotations/title":169,"models/annotations/toolbar_panel":170,"models/annotations/tooltip":171,"styles/tooltips":172,"styles/mixins":173,"styles/tooltips.css":174,"models/annotations/whisker":175,"models/axes/index":176,"models/axes/axis":177,"models/renderers/guide_renderer":178,"models/axes/categorical_axis":179,"models/tickers/categorical_ticker":180,"models/formatters/categorical_tick_formatter":181,"models/axes/continuous_axis":182,"models/axes/datetime_axis":183,"models/axes/linear_axis":184,"models/formatters/datetime_tick_formatter":185,"core/util/templating":187,"models/tickers/datetime_ticker":190,"models/tickers/composite_ticker":191,"models/tickers/days_ticker":192,"models/tickers/single_interval_ticker":193,"models/tickers/util":194,"models/tickers/months_ticker":195,"models/tickers/years_ticker":196,"models/axes/log_axis":197,"models/formatters/log_tick_formatter":198,"models/tickers/log_ticker":199,"models/axes/mercator_axis":200,"models/formatters/mercator_tick_formatter":201,"models/tickers/mercator_ticker":202,"models/callbacks/index":203,"models/callbacks/customjs":204,"models/callbacks/callback":205,"models/callbacks/open_url":206,"models/canvas/index":207,"models/canvas/cartesian_frame":208,"models/scales/categorical_scale":209,"models/ranges/data_range1d":210,"models/ranges/data_range":211,"core/layout/index":212,"core/layout/types":213,"core/layout/layoutable":214,"core/layout/alignments":215,"core/layout/grid":216,"core/layout/html":217,"models/expressions/index":218,"models/expressions/expression":219,"models/expressions/stack":220,"models/expressions/cumsum":221,"models/filters/index":222,"models/filters/boolean_filter":223,"models/filters/filter":224,"models/filters/customjs_filter":225,"models/filters/group_filter":226,"models/filters/index_filter":227,"models/formatters/index":228,"models/formatters/func_tick_formatter":229,"models/formatters/numeral_tick_formatter":230,"models/formatters/printf_tick_formatter":231,"models/glyphs/index":232,"models/glyphs/annular_wedge":233,"models/glyphs/annulus":234,"models/glyphs/arc":235,"models/glyphs/bezier":236,"models/glyphs/circle":237,"models/glyphs/webgl/markers":238,"models/glyphs/webgl/markers.vert":239,"models/glyphs/webgl/markers.frag":240,"models/glyphs/center_rotatable":241,"models/glyphs/ellipse":242,"models/glyphs/ellipse_oval":243,"models/glyphs/hbar":244,"models/glyphs/box":245,"models/glyphs/hex_tile":246,"models/glyphs/image":247,"models/glyphs/image_base":248,"models/glyphs/image_rgba":249,"models/glyphs/image_url":250,"core/util/image":251,"models/glyphs/multi_line":252,"models/glyphs/multi_polygons":253,"models/glyphs/oval":254,"models/glyphs/patches":255,"models/glyphs/quad":256,"models/glyphs/quadratic":257,"models/glyphs/ray":258,"models/glyphs/rect":259,"models/glyphs/segment":260,"models/glyphs/step":261,"models/glyphs/text":262,"models/glyphs/vbar":263,"models/glyphs/wedge":264,"models/graphs/index":265,"models/graphs/layout_provider":266,"models/graphs/static_layout_provider":267,"models/grids/index":268,"models/grids/grid":269,"models/layouts/index":270,"models/layouts/box":271,"models/layouts/layout_dom":272,"styles/root":273,"models/layouts/column":274,"models/layouts/grid_box":275,"models/layouts/html_box":276,"models/layouts/row":277,"models/layouts/spacer":278,"models/layouts/tabs":279,"styles/tabs":280,"styles/buttons":281,"styles/menus":282,"styles/buttons.css":283,"styles/menus.css":284,"styles/tabs.css":285,"models/layouts/widget_box":286,"models/markers/index":287,"models/markers/defs":288,"models/markers/marker":289,"models/markers/scatter":290,"models/plots/index":291,"models/plots/gmap_plot":292,"models/plots/plot":293,"models/tools/toolbar":294,"models/tools/inspectors/inspect_tool":295,"models/tools/button_tool":296,"models/tools/tool":298,"styles/toolbar":299,"styles/toolbar.css":300,"styles/icons.css":301,"core/util/menus":302,"core/util/iterator":303,"models/tools/on_off_button":304,"models/tools/toolbar_base":305,"models/tools/gestures/gesture_tool":306,"models/tools/actions/action_tool":307,"models/tools/actions/help_tool":308,"styles/icons":309,"styles/logo":310,"styles/logo.css":311,"models/plots/plot_canvas":312,"core/bokeh_events":313,"core/ui_events":314,"core/util/wheel":315,"core/util/throttle":316,"core/layout/border":317,"core/layout/side_panel":318,"models/plots/gmap_plot_canvas":319,"models/ranges/index":320,"models/renderers/index":321,"models/scales/index":322,"models/selections/index":323,"models/sources/index":324,"models/sources/server_sent_data_source":325,"models/sources/web_data_source":326,"models/sources/ajax_data_source":327,"models/sources/geojson_data_source":328,"models/tickers/index":329,"models/tickers/fixed_ticker":330,"models/tiles/index":331,"models/tiles/bbox_tile_source":332,"models/tiles/mercator_tile_source":333,"models/tiles/tile_source":334,"models/tiles/tile_utils":335,"models/tiles/quadkey_tile_source":336,"models/tiles/tile_renderer":337,"models/tiles/wmts_tile_source":338,"styles/tiles":339,"styles/tiles.css":340,"models/tiles/tms_tile_source":341,"models/textures/index":342,"models/textures/canvas_texture":343,"models/textures/texture":344,"models/textures/image_url_texture":345,"models/tools/index":346,"models/tools/actions/custom_action":347,"models/tools/actions/redo_tool":348,"models/tools/actions/reset_tool":349,"models/tools/actions/save_tool":350,"models/tools/actions/undo_tool":351,"models/tools/actions/zoom_in_tool":352,"models/tools/actions/zoom_base_tool":353,"core/util/zoom":354,"models/tools/actions/zoom_out_tool":355,"models/tools/edit/edit_tool":356,"models/tools/edit/box_edit_tool":357,"models/tools/edit/freehand_draw_tool":358,"models/tools/edit/point_draw_tool":359,"models/tools/edit/poly_draw_tool":360,"models/tools/edit/poly_tool":361,"models/tools/edit/poly_edit_tool":362,"models/tools/gestures/box_select_tool":363,"models/tools/gestures/select_tool":364,"models/tools/util":365,"models/tools/gestures/box_zoom_tool":366,"models/tools/gestures/lasso_select_tool":367,"models/tools/gestures/poly_select_tool":368,"models/tools/edit/line_edit_tool":369,"models/tools/edit/line_tool":370,"models/tools/gestures/pan_tool":371,"models/tools/gestures/range_tool":372,"models/tools/gestures/tap_tool":373,"models/tools/gestures/wheel_pan_tool":374,"models/tools/gestures/wheel_zoom_tool":375,"models/tools/inspectors/crosshair_tool":376,"models/tools/inspectors/customjs_hover":377,"models/tools/inspectors/hover_tool":378,"models/tools/tool_proxy":379,"models/tools/toolbar_box":380,"embed/standalone":381,"embed/dom":382,"embed/server":383,"client/connection":384,"protocol/message":385,"protocol/receiver":386,"client/session":387,"embed/notebook":388,"styles/notebook.css":389,"protocol/index":390,"testing":391,"safely":392}, {});n })nnn / END bokeh.min.js /n },n n function(Bokeh) {n / BEGIN bokeh-widgets.min.js /n /!n * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn * All rights reserved.n * n * Redistribution and use in source and binary forms, with or without modification,n * are permitted provided that the following conditions are met:n * n * Redistributions of source code must retain the above copyright notice,n * this list of conditions and the following disclaimer.n * n * Redistributions in binary form must reproduce the above copyright notice,n * this list of conditions and the following disclaimer in the documentationn * and/or other materials provided with the distribution.n * n * Neither the name of Anaconda nor the names of any contributorsn * may be used to endorse or promote products derived from this softwaren * without specific prior written permission.n * n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn * THE POSSIBILITY OF SUCH DAMAGE.n /n (function(root, factory) {n factory(root["Bokeh"], "2.2.3");n })(this, function(Bokeh, version) {n var define;n return (function(modules, entry, aliases, externals) {n const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n if (bokeh != null) {n return bokeh.register_plugin(modules, entry, aliases);n } else {n throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n }n })n ({n 402: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1).__importStar(e(403));o.Widgets=r;e(7).register_models(r)},n 403: function _(r,e,t){Object.defineProperty(t,"__esModule",{value:!0});var a=r(404);t.AbstractButton=a.AbstractButton;var o=r(407);t.AbstractIcon=o.AbstractIcon;var u=r(408);t.AutocompleteInput=u.AutocompleteInput;var n=r(413);t.Button=n.Button;var i=r(414);t.CheckboxButtonGroup=i.CheckboxButtonGroup;var v=r(416);t.CheckboxGroup=v.CheckboxGroup;var p=r(418);t.ColorPicker=p.ColorPicker;var c=r(419);t.DatePicker=c.DatePicker;var l=r(422);t.DateRangeSlider=l.DateRangeSlider;var d=r(428);t.DateSlider=d.DateSlider;var I=r(429);t.Div=I.Div;var g=r(433);t.Dropdown=g.Dropdown;var S=r(434);t.FileInput=S.FileInput;var P=r(410);t.InputWidget=P.InputWidget;var k=r(430);t.Markup=k.Markup;var x=r(435);t.MultiSelect=x.MultiSelect;var D=r(436);t.Paragraph=D.Paragraph;var b=r(437);t.PasswordInput=b.PasswordInput;var s=r(438);t.MultiChoice=s.MultiChoice;var h=r(441);t.NumericInput=h.NumericInput;var A=r(444);t.PreText=A.PreText;var B=r(445);t.RadioButtonGroup=B.RadioButtonGroup;var C=r(446);t.RadioGroup=C.RadioGroup;var G=r(447);t.RangeSlider=G.RangeSlider;var R=r(448);t.Select=R.Select;var T=r(449);t.Slider=T.Slider;var M=r(450);t.Spinner=M.Spinner;var m=r(409);t.TextInput=m.TextInput;var w=r(451);t.TextAreaInput=w.TextAreaInput;var W=r(452);t.Toggle=W.Toggle;var _=r(472);t.Widget=_.Widget},n 404: function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(1),s=i.__importStar(t(18)),o=t(72),l=t(115),r=t(405),_=t(281),c=i.__importDefault(t(283));class u extends r.ControlView{*controls(){yield this.button_el}async lazy_initialize(){await super.lazy_initialize();const{icon:t}=this.model;null!=t&&(this.icon_view=await l.build_view(t,{parent:this}))}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[…super.styles(),c.default]}_render_button(…t){return o.button({type:"button",disabled:this.model.disabled,class:[_.bk_btn,_.bk_btn_type(this.model.button_type)]},…t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener("click",()=>this.click()),null!=this.icon_view&&(o.prepend(this.button_el,this.icon_view.el,o.nbsp()),this.icon_view.render()),this.group_el=o.div({class:_.bk_btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=u,u.__name__="AbstractButtonView";class a extends r.Control{constructor(t){super(t)}static init_AbstractButton(){this.define({label:[s.String,"Button"],icon:[s.Instance],button_type:[s.ButtonType,"default"]})}}n.AbstractButton=a,a.__name__="AbstractButton",a.init_AbstractButton()},n 405: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(472),n=e(72);class i extends s.WidgetView{connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.controls())n.toggle_attribute(e,"disabled",this.model.disabled)})}}o.ControlView=i,i.__name__="ControlView";class l extends s.Widget{constructor(e){super(e)}}o.Control=l,l.__name__="Control"},n 472: function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return"horizontal"==this.model.orientation?super._width_policy():"fixed"}_height_policy(){return"horizontal"==this.model.orientation?"fixed":super._height_policy()}box_sizing(){const i=super.box_sizing();return"horizontal"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__="WidgetView";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,"horizontal"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__="Widget",s.init_Widget()},n 407: function _(e,t,c){Object.defineProperty(c,"__esModule",{value:!0});const s=e(81),n=e(78);class o extends n.DOMView{}c.AbstractIconView=o,o.__name__="AbstractIconView";class _ extends s.Model{constructor(e){super(e)}}c.AbstractIcon=_,_.__name__="AbstractIcon"},n 408: function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e(1),s=e(409),h=e(72),_=i.__importStar(e(18)),o=e(10),u=e(173),r=e(282),c=i.__importDefault(e(284));class l extends s.TextInputView{constructor(){super(…arguments),this._open=!1,this._last_value="",this._hover_index=0}styles(){return[…super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener("keydown",e=>this._keydown(e)),this.input_el.addEventListener("keyup",e=>this._keyup(e)),this.menu=h.div({class:[r.bk_menu,u.bk_below]}),this.menu.addEventListener("click",e=>this._menu_click(e)),this.menu.addEventListener("mouseover",e=>this._menu_hover(e)),this.el.appendChild(this.menu),h.undisplay(this.menu)}change_input(){this._open&&this.menu.children.length>0&&(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu())}_update_completions(e){h.empty(this.menu);for(const t of e){const e=h.div({},t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(u.bk_active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,h.display(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener("click",e),this._hide_menu())};document.addEventListener("click",e)}}_hide_menu(){this._open&&(this._open=!1,h.undisplay(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t<this.menu.children.length&&this.menu.children[t].textContent!=e.target.textContent;t++);this._bump_hover(t)}}_bump_hover(e){const t=this.menu.children.length;this._open&&t>0&&(this.menu.children[this._hover_index].classList.remove(u.bk_active),this._hover_index=o.clamp(e,0,t-1),this.menu.children[this._hover_index].classList.add(u.bk_active))}_keydown(e){}_keyup(e){switch(e.keyCode){case h.Keys.Enter:this.change_input();break;case h.Keys.Esc:this._hide_menu();break;case h.Keys.Up:this._bump_hover(this._hover_index-1);break;case h.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.length<this.model.min_characters)return void this._hide_menu();const t=[],{case_sensitive:n}=this.model;let i;i=n?e=>e:e=>e.toLowerCase();for(const n of this.model.completions)i(n).startsWith(i(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__="AutocompleteInputView";class a extends s.TextInput{constructor(e){super(e)}static init_AutocompleteInput(){this.prototype.default_view=l,this.define({completions:[_.Array,[]],min_characters:[_.Int,2],case_sensitive:[_.Boolean,!0]})}}n.AutocompleteInput=a,a.__name__="AutocompleteInput",a.init_AutocompleteInput()},n 409: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(410),l=e(72),p=n.__importStar(e(18)),u=e(412);class a extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.value_input.change,()=>this.input_el.value=this.model.value_input),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}render(){super.render(),this.input_el=l.input({type:"text",class:u.bk_input,name:this.model.name,value:this.model.value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.input_el.addEventListener("change",()=>this.change_input()),this.input_el.addEventListener("input",()=>this.change_input_oninput()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_oninput(){this.model.value_input=this.input_el.value,super.change_input()}}i.TextInputView=a,a.__name__="TextInputView";class h extends s.InputWidget{constructor(e){super(e)}static init_TextInput(){this.prototype.default_view=a,this.define({value:[p.String,""],value_input:[p.String,""],placeholder:[p.String,""]})}}i.TextInput=h,h.__name__="TextInput",h.init_TextInput()},n 410: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),l=t(405),s=t(72),_=n.__importStar(t(18)),o=n.__importDefault(t(411)),r=t(412);class p extends l.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,()=>{this.label_el.textContent=this.model.title})}styles(){return[…super.styles(),o.default]}render(){super.render();const{title:t}=this.model;this.label_el=s.label({style:{display:0==t.length?"none":""}},t),this.group_el=s.div({class:r.bk_input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}i.InputWidgetView=p,p.__name__="InputWidgetView";class u extends l.Control{constructor(t){super(t)}static init_InputWidget(){this.define({title:[_.String,""]})}}i.InputWidget=u,u.__name__="InputWidget",u.init_InputWidget()},n 411: function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-input {\n display: inline-block;\n width: 100%;\n flex-grow: 1;\n -webkit-flex-grow: 1;\n min-height: 31px;\n padding: 0 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n.bk-root .bk-input:focus {\n border-color: #66afe9;\n outline: 0;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.bk-root .bk-input::placeholder,\n.bk-root .bk-input:-ms-input-placeholder,\n.bk-root .bk-input::-moz-placeholder,\n.bk-root .bk-input::-webkit-input-placeholder {\n color: #999;\n opacity: 1;\n}\n.bk-root .bk-input[disabled] {\n cursor: not-allowed;\n background-color: #eee;\n opacity: 1;\n}\n.bk-root select:not([multiple]).bk-input,\n.bk-root select:not([size]).bk-input {\n height: auto;\n appearance: none;\n -webkit-appearance: none;\n background-image: url(\’data:image/svg+xml;utf8,<svg version="1.1" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"><path d="M 0,0 25,0 12.5,20 Z" fill="black" /></svg>\’);\n background-position: right 0.5em center;\n background-size: 8px 6px;\n background-repeat: no-repeat;\n}\n.bk-root select[multiple].bk-input,\n.bk-root select[size].bk-input,\n.bk-root textarea.bk-input {\n height: auto;\n}\n.bk-root .bk-input-group {\n width: 100%;\n height: 100%;\n display: inline-flex;\n display: -webkit-inline-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: start;\n -webkit-align-items: start;\n flex-direction: column;\n -webkit-flex-direction: column;\n white-space: nowrap;\n}\n.bk-root .bk-input-group.bk-inline {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-input-group.bk-inline > *:not(:first-child) {\n margin-left: 5px;\n}\n.bk-root .bk-input-group input[type="checkbox"] + span,\n.bk-root .bk-input-group input[type="radio"] + span {\n position: relative;\n top: -2px;\n margin-left: 3px;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper {\n display: inherit;\n width: inherit;\n height: inherit;\n position: relative;\n overflow: hidden;\n padding: 0;\n vertical-align: middle;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper input {\n padding-right: 20px;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn {\n position: absolute;\n display: block;\n height: 50%;\n min-height: 0;\n min-width: 0;\n width: 30px;\n padding: 0;\n margin: 0;\n right: 0;\n border: none;\n background: none;\n cursor: pointer;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before {\n content: "";\n display: inline-block;\n transform: translateY(-50%);\n border-left: 5px solid transparent;\n border-right: 5px solid transparent;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up {\n top: 0;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before {\n border-bottom: 5px solid black;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before {\n border-bottom-color: grey;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down {\n bottom: 0;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before {\n border-top: 5px solid black;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before {\n border-top-color: grey;\n}\n’},n 412: function _(u,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.bk_input="bk-input",n.bk_input_group="bk-input-group"},n 413: function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=t(404),i=t(313);class s extends o.AbstractButtonView{click(){this.model.trigger_event(new i.ButtonClick),super.click()}}n.ButtonView=s,s.__name__="ButtonView";class u extends o.AbstractButton{constructor(t){super(t)}static init_Button(){this.prototype.default_view=s,this.override({label:"Button"})}}n.Button=u,u.__name__="Button",u.init_Button()},n 414: function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const i=t(1),c=t(415),s=t(72),n=i.__importStar(t(18)),a=t(173);class u extends c.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[…e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach((e,o)=>{s.classes(e).toggle(a.bk_active,t.has(o))})}}o.CheckboxButtonGroupView=u,u.__name__="CheckboxButtonGroupView";class r extends c.ButtonGroup{constructor(t){super(t)}static init_CheckboxButtonGroup(){this.prototype.default_view=u,this.define({active:[n.Array,[]]})}}o.CheckboxButtonGroup=r,r.__name__="CheckboxButtonGroup",r.init_CheckboxButtonGroup()},n 415: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),o=t(405),i=t(72),r=n.__importStar(t(18)),_=t(281),u=n.__importDefault(t(283));class a extends o.ControlView{*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,()=>this.render()),this.on_change(t.labels,()=>this.render()),this.on_change(t.active,()=>this._update_active())}styles(){return[…super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map((t,e)=>{const s=i.div({class:[_.bk_btn,_.bk_btn_type(this.model.button_type)],disabled:this.model.disabled},t);return s.addEventListener("click",()=>this.change_active(e)),s}),this._update_active();const t=i.div({class:_.bk_btn_group},this._buttons);this.el.appendChild(t)}}s.ButtonGroupView=a,a.__name__="ButtonGroupView";class l extends o.Control{constructor(t){super(t)}static init_ButtonGroup(){this.define({labels:[r.Array,[]],button_type:[r.ButtonType,"default"]})}}s.ButtonGroup=l,l.__name__="ButtonGroup",l.init_ButtonGroup()},n 416: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(417),o=e(72),c=e(9),a=n.__importStar(e(18)),l=e(173),d=e(412);class r extends s.InputGroupView{render(){super.render();const e=o.div({class:[d.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const{active:t,labels:i}=this.model;this._inputs=[];for(let n=0;n<i.length;n++){const s=o.input({type:"checkbox",value:""+n});s.addEventListener("change",()=>this.change_active(n)),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),c.includes(t,n)&&(s.checked=!0);const a=o.label({},s,o.span({},i[n]));e.appendChild(a)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[…t].sort()}}i.CheckboxGroupView=r,r.__name__="CheckboxGroupView";class p extends s.InputGroup{constructor(e){super(e)}static init_CheckboxGroup(){this.prototype.default_view=r,this.define({active:[a.Array,[]],labels:[a.Array,[]],inline:[a.Boolean,!1]})}}i.CheckboxGroup=p,p.__name__="CheckboxGroup",p.init_CheckboxGroup()},n 417: function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e(1),o=e(405),r=s.__importDefault(e(411));class u extends o.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}styles(){return[…super.styles(),r.default]}}n.InputGroupView=u,u.__name__="InputGroupView";class _ extends o.Control{constructor(e){super(e)}}n.InputGroup=_,_.__name__="InputGroup"},n 418: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),o=e(410),s=e(72),l=n.__importStar(e(18)),r=e(412);class c extends o.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.color.change,()=>this.input_el.value=this.model.color),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled)}render(){super.render(),this.input_el=s.input({type:"color",class:r.bk_input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}t.ColorPickerView=c,c.__name__="ColorPickerView";class d extends o.InputWidget{constructor(e){super(e)}static init_ColorPicker(){this.prototype.default_view=c,this.define({color:[l.Color,"#000000"]})}}t.ColorPicker=d,d.__name__="ColorPicker",d.init_ColorPicker()},n 419: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=n.__importDefault(e(420)),a=e(410),l=e(72),o=n.__importStar(e(18)),r=e(8),d=e(412),c=n.__importDefault(e(421));function u(e){const t=[];for(const i of e)if(r.isString(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class _ extends a.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,()=>{var t;return null===(t=this._picker)||void 0===t?void 0:t.setDate(e.value())}),this.connect(t.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("minDate",t.value())}),this.connect(i.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("maxDate",i.value())}),this.connect(n.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("disable",n.value())}),this.connect(s.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("enable",s.value())}),this.connect(a.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("position",a.value())}),this.connect(l.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("inline",l.value())})}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[…super.styles(),c.default]}render(){null==this._picker&&(super.render(),this.input_el=l.input({type:"text",class:d.bk_input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=s.default(this.input_el,{defaultDate:this.model.value,minDate:this.model.min_date,maxDate:this.model.max_date,inline:this.model.inline,position:this.model.position,disable:u(this.model.disabled_dates),enable:u(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=_,_.__name__="DatePickerView";class h extends a.InputWidget{constructor(e){super(e)}static init_DatePicker(){this.prototype.default_view=_,this.define({value:[o.Any],min_date:[o.Any],max_date:[o.Any],disabled_dates:[o.Any,[]],enabled_dates:[o.Any,[]],position:[o.CalendarPosition,"auto"],inline:[o.Boolean,!1]})}}i.DatePicker=h,h.__name__="DatePicker",h.init_DatePicker()},n 420: function _(e,t,n){n / flatpickr v4.6.3, @license MIT /var a,i;a=this,i=function(){"use strict";n /! *************************************************************************n Copyright (c) Microsoft Corporation. All rights reserved.n Licensed under the Apache License, Version 2.0 (the "License"); you may not usen this file except in compliance with the License. You may obtain a copy of then License at http://www.apache.org/licenses/LICENSE-2.0n n THIS CODE IS PROVIDED ON AN AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANYn KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIEDn WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,n MERCHANTABLITY OR NON-INFRINGEMENT.n n See the Apache Version 2.0 License for specific language governing permissionsn and limitations under the License.n ************************************************************************* /var e=function(){return(e=Object.assign||function(e){for(var t,n=1,a=arguments.length;n<a;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)},t=["onChange","onClose","onDayCreate","onDestroy","onKeyDown","onMonthChange","onOpen","onParseConfig","onReady","onValueUpdate","onYearChange","onPreCalendarPosition"],n={_disable:[],_enable:[],allowInput:!1,altFormat:"F j, Y",altInput:!1,altInputClass:"form-control input",animate:"object"==typeof window&&-1===window.navigator.userAgent.indexOf("MSIE"),ariaDateFormat:"F j, Y",clickOpens:!0,closeOnSelect:!0,conjunction:", ",dateFormat:"Y-m-d",defaultHour:12,defaultMinute:0,defaultSeconds:0,disable:[],disableMobile:!1,enable:[],enableSeconds:!1,enableTime:!1,errorHandler:function(e){return"undefined"!=typeof console&&console.warn(e)},getWeek:function(e){var t=new Date(e.getTime());t.setHours(0,0,0,0),t.setDate(t.getDate()+3-(t.getDay()+6)%7);var n=new Date(t.getFullYear(),0,4);return 1+Math.round(((t.getTime()-n.getTime())/864e5-3+(n.getDay()+6)%7)/7)},hourIncrement:1,ignoredFocusElements:[],inline:!1,locale:"default",minuteIncrement:5,mode:"single",monthSelectorType:"dropdown",nextArrow:"<svg version=’1.1’ xmlns=’http://www.w3.org/2000/svg’ xmlns:xlink=’http://www.w3.org/1999/xlink’ viewBox=’0 0 17 17’><g></g><path d=’M13.207 8.472l-7.854 7.854-0.707-0.707 7.146-7.146-7.146-7.148 0.707-0.707 7.854 7.854z’ /></svg>",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"<svg version=’1.1’ xmlns=’http://www.w3.org/2000/svg’ xmlns:xlink=’http://www.w3.org/1999/xlink’ viewBox=’0 0 17 17’><g></g><path d=’M5.207 8.471l7.146 7.147-0.707 0.707-7.853-7.854 7.854-7.853 0.707 0.707-7.147 7.146z’ /></svg>",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},a={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var t=e%100;if(t>3&&t<21)return"th";switch(t%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},i=function(e){return("0"+e).slice(-2)},o=function(e){return!0===e?1:0};function r(e,t,n){var a;return void 0===n&&(n=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,n||e.apply(i,o)}),t),n&&!a&&e.apply(i,o)}}var l=function(e){return e instanceof Array?e:[e]};function c(e,t,n){if(!0===n)return e.classList.add(t);e.classList.remove(t)}function d(e,t,n){var a=window.document.createElement(e);return t=t||"",n=n||"",a.className=t,void 0!==n&&(a.textContent=n),a}function s(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function u(e,t){var n=d("div","numInputWrapper"),a=d("input","numInput "+e),i=d("span","arrowUp"),o=d("span","arrowDown");if(-1===navigator.userAgent.indexOf("MSIE 9.0")?a.type="number":(a.type="text",a.pattern="\\d"),void 0!==t)for(var r in t)a.setAttribute(r,t[r]);return n.appendChild(a),n.appendChild(i),n.appendChild(o),n}var f=function(){},m=function(e,t,n){return n.months[t?"shorthand":"longhand"][e]},g={D:f,F:function(e,t,n){e.setMonth(n.months.longhand.indexOf(t))},G:function(e,t){e.setHours(parseFloat(t))},H:function(e,t){e.setHours(parseFloat(t))},J:function(e,t){e.setDate(parseFloat(t))},K:function(e,t,n){e.setHours(e.getHours()%12+12*o(new RegExp(n.amPM[1],"i").test(t)))},M:function(e,t,n){e.setMonth(n.months.shorthand.indexOf(t))},S:function(e,t){e.setSeconds(parseFloat(t))},U:function(e,t){return new Date(1e3*parseFloat(t))},W:function(e,t,n){var a=parseInt(t),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+n.firstDayOfWeek),i},Y:function(e,t){e.setFullYear(parseFloat(t))},Z:function(e,t){return new Date(t)},d:function(e,t){e.setDate(parseFloat(t))},h:function(e,t){e.setHours(parseFloat(t))},i:function(e,t){e.setMinutes(parseFloat(t))},j:function(e,t){e.setDate(parseFloat(t))},l:f,m:function(e,t){e.setMonth(parseFloat(t)-1)},n:function(e,t){e.setMonth(parseFloat(t)-1)},s:function(e,t){e.setSeconds(parseFloat(t))},u:function(e,t){return new Date(parseFloat(t))},w:f,y:function(e,t){e.setFullYear(2e3+parseFloat(t))}},p={D:"(\\w+)",F:"(\\w+)",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"(\\w+)",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"(\\w+)",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},h={Z:function(e){return e.toISOString()},D:function(e,t,n){return t.weekdays.shorthand[h.w(e,t,n)]},F:function(e,t,n){return m(h.n(e,t,n)-1,!1,t)},G:function(e,t,n){return i(h.h(e,t,n))},H:function(e){return i(e.getHours())},J:function(e,t){return void 0!==t.ordinal?e.getDate()+t.ordinal(e.getDate()):e.getDate()},K:function(e,t){return t.amPM[o(e.getHours()>11)]},M:function(e,t){return m(e.getMonth(),!0,t)},S:function(e){return i(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,t,n){return n.getWeek(e)},Y:function(e){return e.getFullYear()},d:function(e){return i(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return i(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,t){return t.weekdays.longhand[e.getDay()]},m:function(e){return i(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},v=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,n){var a=n||r;return void 0!==i.formatDate?i.formatDate(e,t,a):t.split("").map((function(t,n,o){return h[t]&&"\\"!==o[n-1]?h[t](e,a,i):"\\"!==t?t:""})).join("")}},D=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,a,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if("string"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if("string"==typeof e){var s=t||(i||n).dateFormat,u=String(e).trim();if("today"===u)l=new Date,a=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(i&&i.parseDate)l=i.parseDate(e,s);else{l=i&&i.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],h=0,v=0,D="";h<s.length;h++){var w=s[h],b="\\"===w,C="\\"===s[h-1]||b;if(p[w]&&!C){D+=p[w];var M=new RegExp(D).exec(e);M&&(f=!0)&&m["Y"!==w?"push":"unshift"]({fn:g[w],val:M[++v]})}else b||(D+=".");m.forEach((function(e){var t=e.fn,n=e.val;return l=t(l,n,c)||l}))}l=f?l:void 0}}if(l instanceof Date&&!isNaN(l.getTime()))return!0===a&&l.setHours(0,0,0,0),l;i.errorHandler(new Error("Invalid date provided: "+d))}}};function w(e,t,n){return void 0===n&&(n=!0),!1!==n?new Date(e.getTime()).setHours(0,0,0,0)-new Date(t.getTime()).setHours(0,0,0,0):e.getTime()-t.getTime()}var b=864e5;function C(f,g){var h={config:e({},n,y.defaultConfig),l10n:a};function C(e){return e.bind(h)}function M(){var e=h.config;!1===e.weekNumbers&&1===e.showMonths||!0!==e.noCalendar&&window.requestAnimationFrame((function(){if(void 0!==h.calendarContainer&&(h.calendarContainer.style.visibility="hidden",h.calendarContainer.style.display="block"),void 0!==h.daysContainer){var t=(h.days.offsetWidth+1)*e.showMonths;h.daysContainer.style.width=t+"px",h.calendarContainer.style.width=t+(void 0!==h.weekWrapper?h.weekWrapper.offsetWidth:0)+"px",h.calendarContainer.style.removeProperty("visibility"),h.calendarContainer.style.removeProperty("display")}}))}function x(e){0===h.selectedDates.length&&ne(),void 0!==e&&"blur"!==e.type&&function(e){e.preventDefault();var t="keydown"===e.type,n=e.target;void 0!==h.amPM&&e.target===h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]);var a=parseFloat(n.getAttribute("min")),r=parseFloat(n.getAttribute("max")),l=parseFloat(n.getAttribute("step")),c=parseInt(n.value,10),d=e.delta||(t?38===e.which?1:-1:0),s=c+l*d;if(void 0!==n.value&&2===n.value.length){var u=n===h.hourElement,f=n===h.minuteElement;s<a?(s=r+s+o(!u)+(o(u)&&o(!h.amPM)),f&&Y(void 0,-1,h.hourElement)):s>r&&(s=n===h.hourElement?s-r-o(!h.amPM):a,f&&Y(void 0,1,h.hourElement)),h.amPM&&u&&(1===l?s+c===23:Math.abs(s-c)>l)&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]),n.value=i(s)}}(e);var t=h._input.value;E(),ve(),h._input.value!==t&&h._debouncedChange()}function E(){if(void 0!==h.hourElement&&void 0!==h.minuteElement){var e,t,n=(parseInt(h.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(h.minuteElement.value,10)||0)%60,i=void 0!==h.secondElement?(parseInt(h.secondElement.value,10)||0)%60:0;void 0!==h.amPM&&(e=n,t=h.amPM.textContent,n=e%12+12*o(t===h.l10n.amPM[1]));var r=void 0!==h.config.minTime||h.config.minDate&&h.minDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.minDate,!0);if(void 0!==h.config.maxTime||h.config.maxDate&&h.maxDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.maxDate,!0)){var l=void 0!==h.config.maxTime?h.config.maxTime:h.config.maxDate;(n=Math.min(n,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(r){var c=void 0!==h.config.minTime?h.config.minTime:h.config.minDate;(n=Math.max(n,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}I(n,a,i)}}function T(e){var t=e||h.latestSelectedDateObj;t&&I(t.getHours(),t.getMinutes(),t.getSeconds())}function k(){var e=h.config.defaultHour,t=h.config.defaultMinute,n=h.config.defaultSeconds;if(void 0!==h.config.minDate){var a=h.config.minDate.getHours(),i=h.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(t=Math.max(i,t)),e===a&&t===i&&(n=h.config.minDate.getSeconds())}if(void 0!==h.config.maxDate){var o=h.config.maxDate.getHours(),r=h.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(t=Math.min(r,t)),e===o&&t===r&&(n=h.config.maxDate.getSeconds())}I(e,t,n)}function I(e,t,n){void 0!==h.latestSelectedDateObj&&h.latestSelectedDateObj.setHours(e%24,t,n||0,0),h.hourElement&&h.minuteElement&&!h.isMobile&&(h.hourElement.value=i(h.config.time_24hr?e:(12+e)%12+12*o(e%12==0)),h.minuteElement.value=i(t),void 0!==h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(e>=12)]),void 0!==h.secondElement&&(h.secondElement.value=i(n)))}function S(e){var t=parseInt(e.target.value)+(e.delta||0);(t/1e3>1||"Enter"===e.key&&!/[^\d]/.test(t.toString()))&&V(t)}function O(e,t,n,a){return t instanceof Array?t.forEach((function(t){return O(e,t,n,a)})):e instanceof Array?e.forEach((function(e){return O(e,t,n,a)})):(e.addEventListener(t,n,a),void h._handlers.push({element:e,event:t,handler:n,options:a}))}function _(e){return function(t){1===t.which&&e(t)}}function F(){fe("onChange")}function N(e,t){var n=void 0!==e?h.parseDate(e):h.latestSelectedDateObj||(h.config.minDate&&h.config.minDate>h.now?h.config.minDate:h.config.maxDate&&h.config.maxDate<h.now?h.config.maxDate:h.now),a=h.currentYear,i=h.currentMonth;try{void 0!==n&&(h.currentYear=n.getFullYear(),h.currentMonth=n.getMonth())}catch(e){e.message="Invalid date supplied: "+n,h.config.errorHandler(e)}t&&h.currentYear!==a&&(fe("onYearChange"),B()),!t||h.currentYear===a&&h.currentMonth===i||fe("onMonthChange"),h.redraw()}function P(e){~e.target.className.indexOf("arrow")&&Y(e,e.target.classList.contains("arrowUp")?1:-1)}function Y(e,t,n){var a=e&&e.target,i=n||a&&a.parentNode&&a.parentNode.firstChild,o=me("increment");o.delta=t,i&&i.dispatchEvent(o)}function A(e,t,n,a){var i=Z(t,!0),o=d("span","flatpickr-day "+e,t.getDate().toString());return o.dateObj=t,o.$i=a,o.setAttribute("aria-label",h.formatDate(t,h.config.ariaDateFormat)),-1===e.indexOf("hidden")&&0===w(t,h.now)&&(h.todayDateElem=o,o.classList.add("today"),o.setAttribute("aria-current","date")),i?(o.tabIndex=-1,ge(t)&&(o.classList.add("selected"),h.selectedDateElem=o,"range"===h.config.mode&&(c(o,"startRange",h.selectedDates[0]&&0===w(t,h.selectedDates[0],!0)),c(o,"endRange",h.selectedDates[1]&&0===w(t,h.selectedDates[1],!0)),"nextMonthDay"===e&&o.classList.add("inRange")))):o.classList.add("flatpickr-disabled"),"range"===h.config.mode&&function(e){return!("range"!==h.config.mode||h.selectedDates.length<2)&&w(e,h.selectedDates[0])>=0&&w(e,h.selectedDates[1])<=0}(t)&&!ge(t)&&o.classList.add("inRange"),h.weekNumbers&&1===h.config.showMonths&&"prevMonthDay"!==e&&n%7==1&&h.weekNumbers.insertAdjacentHTML("beforeend","<span class=’flatpickr-day’>"+h.config.getWeek(t)+"</span>"),fe("onDayCreate",o),o}function j(e){e.focus(),"range"===h.config.mode&&ee(e)}function H(e){for(var t=e>0?0:h.config.showMonths-1,n=e>0?h.config.showMonths:-1,a=t;a!=n;a+=e)for(var i=h.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf("hidden")&&Z(c.dateObj))return c}}function L(e,t){var n=Q(document.activeElement||document.body),a=void 0!==e?e:n?document.activeElement:void 0!==h.selectedDateElem&&Q(h.selectedDateElem)?h.selectedDateElem:void 0!==h.todayDateElem&&Q(h.todayDateElem)?h.todayDateElem:H(t>0?1:-1);return void 0===a?h._input.focus():n?void function(e,t){for(var n=-1===e.className.indexOf("Month")?e.dateObj.getMonth():h.currentMonth,a=t>0?h.config.showMonths:-1,i=t>0?1:-1,o=n-h.currentMonth;o!=a;o+=i)for(var r=h.daysContainer.children[o],l=n-h.currentMonth===o?e.$i+t:t<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d<c&&d!=(t>0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf("hidden")&&Z(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(t))return j(s)}h.changeMonth(i),L(H(i),0)}(a,t):j(a)}function W(e,t){for(var n=(new Date(e,t,1).getDay()-h.l10n.firstDayOfWeek+7)%7,a=h.utils.getDaysInMonth((t-1+12)%12),i=h.utils.getDaysInMonth(t),o=window.document.createDocumentFragment(),r=h.config.showMonths>1,l=r?"prevMonthDay hidden":"prevMonthDay",c=r?"nextMonthDay hidden":"nextMonthDay",s=a+1-n,u=0;s<=a;s++,u++)o.appendChild(A(l,new Date(e,t-1,s),s,u));for(s=1;s<=i;s++,u++)o.appendChild(A("",new Date(e,t,s),s,u));for(var f=i+1;f<=42-n&&(1===h.config.showMonths||u%7!=0);f++,u++)o.appendChild(A(c,new Date(e,t+1,f%i),f,u));var m=d("div","dayContainer");return m.appendChild(o),m}function R(){if(void 0!==h.daysContainer){s(h.daysContainer),h.weekNumbers&&s(h.weekNumbers);for(var e=document.createDocumentFragment(),t=0;t<h.config.showMonths;t++){var n=new Date(h.currentYear,h.currentMonth,1);n.setMonth(h.currentMonth+t),e.appendChild(W(n.getFullYear(),n.getMonth()))}h.daysContainer.appendChild(e),h.days=h.daysContainer.firstChild,"range"===h.config.mode&&1===h.selectedDates.length&&ee()}}function B(){if(!(h.config.showMonths>1||"dropdown"!==h.config.monthSelectorType)){var e=function(e){return!(void 0!==h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&e<h.config.minDate.getMonth()||void 0!==h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()&&e>h.config.maxDate.getMonth())};h.monthsDropdownContainer.tabIndex=-1,h.monthsDropdownContainer.innerHTML="";for(var t=0;t<12;t++)if(e(t)){var n=d("option","flatpickr-monthDropdown-month");n.value=new Date(h.currentYear,t).getMonth().toString(),n.textContent=m(t,h.config.shorthandCurrentMonth,h.l10n),n.tabIndex=-1,h.currentMonth===t&&(n.selected=!0),h.monthsDropdownContainer.appendChild(n)}}}function J(){var e,t=d("div","flatpickr-month"),n=window.document.createDocumentFragment();h.config.showMonths>1||"static"===h.config.monthSelectorType?e=d("span","cur-month"):(h.monthsDropdownContainer=d("select","flatpickr-monthDropdown-months"),O(h.monthsDropdownContainer,"change",(function(e){var t=e.target,n=parseInt(t.value,10);h.changeMonth(n-h.currentMonth),fe("onMonthChange")})),B(),e=h.monthsDropdownContainer);var a=u("cur-year",{tabindex:"-1"}),i=a.getElementsByTagName("input")[0];i.setAttribute("aria-label",h.l10n.yearAriaLabel),h.config.minDate&&i.setAttribute("min",h.config.minDate.getFullYear().toString()),h.config.maxDate&&(i.setAttribute("max",h.config.maxDate.getFullYear().toString()),i.disabled=!!h.config.minDate&&h.config.minDate.getFullYear()===h.config.maxDate.getFullYear());var o=d("div","flatpickr-current-month");return o.appendChild(e),o.appendChild(a),n.appendChild(o),t.appendChild(n),{container:t,yearElement:i,monthElement:e}}function K(){s(h.monthNav),h.monthNav.appendChild(h.prevMonthNav),h.config.showMonths&&(h.yearElements=[],h.monthElements=[]);for(var e=h.config.showMonths;e–;){var t=J();h.yearElements.push(t.yearElement),h.monthElements.push(t.monthElement),h.monthNav.appendChild(t.container)}h.monthNav.appendChild(h.nextMonthNav)}function U(){h.weekdayContainer?s(h.weekdayContainer):h.weekdayContainer=d("div","flatpickr-weekdays");for(var e=h.config.showMonths;e–;){var t=d("div","flatpickr-weekdaycontainer");h.weekdayContainer.appendChild(t)}return q(),h.weekdayContainer}function q(){if(h.weekdayContainer){var e=h.l10n.firstDayOfWeek,t=h.l10n.weekdays.shorthand.slice();e>0&&e<t.length&&(t=t.splice(e,t.length).concat(t.splice(0,e)));for(var n=h.config.showMonths;n–;)h.weekdayContainer.children[n].innerHTML="\n <span class=’flatpickr-weekday’>\n "+t.join("</span><span class=’flatpickr-weekday’>")+"\n </span>\n "}}function $(e,t){void 0===t&&(t=!0);var n=t?e:e-h.currentMonth;n<0&&!0===h._hidePrevMonthArrow||n>0&&!0===h._hideNextMonthArrow||(h.currentMonth+=n,(h.currentMonth<0||h.currentMonth>11)&&(h.currentYear+=h.currentMonth>11?1:-1,h.currentMonth=(h.currentMonth+12)%12,fe("onYearChange"),B()),R(),fe("onMonthChange"),pe())}function z(e){return!(!h.config.appendTo||!h.config.appendTo.contains(e))||h.calendarContainer.contains(e)}function G(e){if(h.isOpen&&!h.config.inline){var t="function"==typeof(r=e).composedPath?r.composedPath()[0]:r.target,n=z(t),a=t===h.input||t===h.altInput||h.element.contains(t)||e.path&&e.path.indexOf&&(~e.path.indexOf(h.input)||~e.path.indexOf(h.altInput)),i="blur"===e.type?a&&e.relatedTarget&&!z(e.relatedTarget):!a&&!n&&!z(e.relatedTarget),o=!h.config.ignoredFocusElements.some((function(e){return e.contains(t)}));i&&o&&(void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&x(),h.close(),"range"===h.config.mode&&1===h.selectedDates.length&&(h.clear(!1),h.redraw()))}var r}function V(e){if(!(!e||h.config.minDate&&e<h.config.minDate.getFullYear()||h.config.maxDate&&e>h.config.maxDate.getFullYear())){var t=e,n=h.currentYear!==t;h.currentYear=t||h.currentYear,h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth=Math.min(h.config.maxDate.getMonth(),h.currentMonth):h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&(h.currentMonth=Math.max(h.config.minDate.getMonth(),h.currentMonth)),n&&(h.redraw(),fe("onYearChange"),B())}}function Z(e,t){void 0===t&&(t=!0);var n=h.parseDate(e,void 0,t);if(h.config.minDate&&n&&w(n,h.config.minDate,void 0!==t?t:!h.minDateHasTime)<0||h.config.maxDate&&n&&w(n,h.config.maxDate,void 0!==t?t:!h.maxDateHasTime)>0)return!1;if(0===h.config.enable.length&&0===h.config.disable.length)return!0;if(void 0===n)return!1;for(var a=h.config.enable.length>0,i=a?h.config.enable:h.config.disable,o=0,r=void 0;o<i.length;o++){if("function"==typeof(r=i[o])&&r(n))return a;if(r instanceof Date&&void 0!==n&&r.getTime()===n.getTime())return a;if("string"==typeof r&&void 0!==n){var l=h.parseDate(r,void 0,!0);return l&&l.getTime()===n.getTime()?a:!a}if("object"==typeof r&&void 0!==n&&r.from&&r.to&&n.getTime()>=r.from.getTime()&&n.getTime()<=r.to.getTime())return a}return!a}function Q(e){return void 0!==h.daysContainer&&-1===e.className.indexOf("hidden")&&h.daysContainer.contains(e)}function X(e){var t=e.target===h._input,n=h.config.allowInput,a=h.isOpen&&(!n||!t),i=h.config.inline&&t&&!n;if(13===e.keyCode&&t){if(n)return h.setDate(h._input.value,!0,e.target===h.altInput?h.config.altFormat:h.config.dateFormat),e.target.blur();h.open()}else if(z(e.target)||a||i){var o=!!h.timeContainer&&h.timeContainer.contains(e.target);switch(e.keyCode){case 13:o?(e.preventDefault(),x(),le()):ce(e);break;case 27:e.preventDefault(),le();break;case 8:case 46:t&&!h.config.allowInput&&(e.preventDefault(),h.clear());break;case 37:case 39:if(o||t)h.hourElement&&h.hourElement.focus();else if(e.preventDefault(),void 0!==h.daysContainer&&(!1===n||document.activeElement&&Q(document.activeElement))){var r=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),$(r),L(H(1),0)):L(void 0,r)}break;case 38:case 40:e.preventDefault();var l=40===e.keyCode?1:-1;h.daysContainer&&void 0!==e.target.$i||e.target===h.input||e.target===h.altInput?e.ctrlKey?(e.stopPropagation(),V(h.currentYear-l),L(H(1),0)):o||L(void 0,7*l):e.target===h.currentYearElement?V(h.currentYear-l):h.config.enableTime&&(!o&&h.hourElement&&h.hourElement.focus(),x(e),h._debouncedChange());break;case 9:if(o){var c=[h.hourElement,h.minuteElement,h.secondElement,h.amPM].concat(h.pluginElements).filter((function(e){return e})),d=c.indexOf(e.target);if(-1!==d){var s=c[d+(e.shiftKey?-1:1)];e.preventDefault(),(s||h._input).focus()}}else!h.config.noCalendar&&h.daysContainer&&h.daysContainer.contains(e.target)&&e.shiftKey&&(e.preventDefault(),h._input.focus())}}if(void 0!==h.amPM&&e.target===h.amPM)switch(e.key){case h.l10n.amPM[0].charAt(0):case h.l10n.amPM[0].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[0],E(),ve();break;case h.l10n.amPM[1].charAt(0):case h.l10n.amPM[1].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[1],E(),ve()}(t||z(e.target))&&fe("onKeyDown",e)}function ee(e){if(1===h.selectedDates.length&&(!e||e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled"))){for(var t=e?e.dateObj.getTime():h.days.firstElementChild.dateObj.getTime(),n=h.parseDate(h.selectedDates[0],void 0,!0).getTime(),a=Math.min(t,h.selectedDates[0].getTime()),i=Math.max(t,h.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;c<i;c+=b)Z(new Date(c),!0)||(o=o||c>a&&c<i,c<n&&(!r||c>r)?r=c:c>n&&(!l||c<l)&&(l=c));for(var d=0;d<h.config.showMonths;d++)for(var s=h.daysContainer.children[d],u=function(a,i){var c,d,u,f=s.children[a],m=f.dateObj.getTime(),g=r>0&&m<r||l>0&&m>l;return g?(f.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach((function(e){f.classList.remove(e)})),"continue"):o&&!g?"continue":(["startRange","inRange","endRange","notAllowed"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(t<=h.selectedDates[0].getTime()?"startRange":"endRange"),n<t&&m===n?f.classList.add("startRange"):n>t&&m===n&&f.classList.add("endRange"),m>=r&&(0===l||m<=l)&&(d=n,u=t,(c=m)>Math.min(d,u)&&c<Math.max(d,u))&&f.classList.add("inRange"))))},f=0,m=s.children.length;f<m;f++)u(f)}}function te(){!h.isOpen||h.config.static||h.config.inline||oe()}function ne(){h.setDate(void 0!==h.config.minDate?new Date(h.config.minDate.getTime()):new Date,!0),k(),ve()}function ae(e){return function(t){var n=h.config["_"+e+"Date"]=h.parseDate(t,h.config.dateFormat),a=h.config["_"+("min"===e?"max":"min")+"Date"];void 0!==n&&(h["min"===e?"minDateHasTime":"maxDateHasTime"]=n.getHours()>0||n.getMinutes()>0||n.getSeconds()>0),h.selectedDates&&(h.selectedDates=h.selectedDates.filter((function(e){return Z(e)})),h.selectedDates.length||"min"!==e||T(n),ve()),h.daysContainer&&(re(),void 0!==n?h.currentYearElement[e]=n.getFullYear().toString():h.currentYearElement.removeAttribute(e),h.currentYearElement.disabled=!!a&&void 0!==n&&a.getFullYear()===n.getFullYear())}}function ie(){"object"!=typeof h.config.locale&&void 0===y.l10ns[h.config.locale]&&h.config.errorHandler(new Error("flatpickr: invalid locale "+h.config.locale)),h.l10n=e({},y.l10ns.default,"object"==typeof h.config.locale?h.config.locale:"default"!==h.config.locale?y.l10ns[h.config.locale]:void 0),p.K="("+h.l10n.amPM[0]+"|\"+h.l10n.amPM[1]+\"|"+h.l10n.amPM[0].toLowerCase()+"|\"+h.l10n.amPM[1].toLowerCase()+\")\",void 0===e({},g,JSON.parse(JSON.stringify(f.dataset||{}))).time_24hr&&void 0===y.defaultConfig.time_24hr&&(h.config.time_24hr=h.l10n.time_24hr),h.formatDate=v(h),h.parseDate=D({config:h.config,l10n:h.l10n})}function oe(e){if(void 0!==h.calendarContainer){fe(\"onPreCalendarPosition\");var t=e||h._positionElement,n=Array.prototype.reduce.call(h.calendarContainer.children,(function(e,t){return e+t.offsetHeight}),0),a=h.calendarContainer.offsetWidth,i=h.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=t.getBoundingClientRect(),d=window.innerHeight-l.bottom,s=\"above\"===o||"below"!==o&&d<n&&l.top>n,u=window.pageYOffset+l.top+(s?-n-2:t.offsetHeight+2);if(c(h.calendarContainer,"arrowTop",!s),c(h.calendarContainer,"arrowBottom",s),!h.config.inline){var f=window.pageXOffset+l.left-(null!=r&&"center"===r?(a-l.width)/2:0),m=window.document.body.offsetWidth-(window.pageXOffset+l.right),g=f+a>window.document.body.offsetWidth,p=m+a>window.document.body.offsetWidth;if(c(h.calendarContainer,"rightMost",g),!h.config.static)if(h.calendarContainer.style.top=u+"px",g)if(p){var v=document.styleSheets[0];if(void 0===v)return;var D=window.document.body.offsetWidth,w=Math.max(0,D/2-a/2),b=v.cssRules.length,C="{left:"+l.left+"px;right:auto;}";c(h.calendarContainer,"rightMost",!1),c(h.calendarContainer,"centerMost",!0),v.insertRule(".flatpickr-calendar.centerMost:before,.flatpickr-calendar.centerMost:after"+C,b),h.calendarContainer.style.left=w+"px",h.calendarContainer.style.right="auto"}else h.calendarContainer.style.left="auto",h.calendarContainer.style.right=m+"px";else h.calendarContainer.style.left=f+"px",h.calendarContainer.style.right="auto"}}}function re(){h.config.noCalendar||h.isMobile||(pe(),R())}function le(){h._input.focus(),-1!==window.navigator.userAgent.indexOf("MSIE")||void 0!==navigator.msMaxTouchPoints?setTimeout(h.close,0):h.close()}function ce(e){e.preventDefault(),e.stopPropagation();var t=function e(t,n){return n(t)?t:t.parentNode?e(t.parentNode,n):void 0}(e.target,(function(e){return e.classList&&e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled")&&!e.classList.contains("notAllowed")}));if(void 0!==t){var n=t,a=h.latestSelectedDateObj=new Date(n.dateObj.getTime()),i=(a.getMonth()<h.currentMonth||a.getMonth()>h.currentMonth+h.config.showMonths-1)&&"range"!==h.config.mode;if(h.selectedDateElem=n,"single"===h.config.mode)h.selectedDates=[a];else if("multiple"===h.config.mode){var o=ge(a);o?h.selectedDates.splice(parseInt(o),1):h.selectedDates.push(a)}else"range"===h.config.mode&&(2===h.selectedDates.length&&h.clear(!1,!1),h.latestSelectedDateObj=a,h.selectedDates.push(a),0!==w(a,h.selectedDates[0],!0)&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()})));if(E(),i){var r=h.currentYear!==a.getFullYear();h.currentYear=a.getFullYear(),h.currentMonth=a.getMonth(),r&&(fe("onYearChange"),B()),fe("onMonthChange")}if(pe(),R(),ve(),h.config.enableTime&&setTimeout((function(){return h.showTimeInput=!0}),50),i||"range"===h.config.mode||1!==h.config.showMonths?void 0!==h.selectedDateElem&&void 0===h.hourElement&&h.selectedDateElem&&h.selectedDateElem.focus():j(n),void 0!==h.hourElement&&void 0!==h.hourElement&&h.hourElement.focus(),h.config.closeOnSelect){var l="single"===h.config.mode&&!h.config.enableTime,c="range"===h.config.mode&&2===h.selectedDates.length&&!h.config.enableTime;(l||c)&&le()}F()}}h.parseDate=D({config:h.config,l10n:h.l10n}),h._handlers=[],h.pluginElements=[],h.loadedPlugins=[],h._bind=O,h._setHoursFromDate=T,h._positionCalendar=oe,h.changeMonth=$,h.changeYear=V,h.clear=function(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0),h.input.value="",void 0!==h.altInput&&(h.altInput.value=""),void 0!==h.mobileInput&&(h.mobileInput.value=""),h.selectedDates=[],h.latestSelectedDateObj=void 0,!0===t&&(h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth()),h.showTimeInput=!1,!0===h.config.enableTime&&k(),h.redraw(),e&&fe("onChange")},h.close=function(){h.isOpen=!1,h.isMobile||(void 0!==h.calendarContainer&&h.calendarContainer.classList.remove("open"),void 0!==h._input&&h._input.classList.remove("active")),fe("onClose")},h._createElement=d,h.destroy=function(){void 0!==h.config&&fe("onDestroy");for(var e=h._handlers.length;e–;){var t=h._handlers[e];t.element.removeEventListener(t.event,t.handler,t.options)}if(h._handlers=[],h.mobileInput)h.mobileInput.parentNode&&h.mobileInput.parentNode.removeChild(h.mobileInput),h.mobileInput=void 0;else if(h.calendarContainer&&h.calendarContainer.parentNode)if(h.config.static&&h.calendarContainer.parentNode){var n=h.calendarContainer.parentNode;if(n.lastChild&&n.removeChild(n.lastChild),n.parentNode){for(;n.firstChild;)n.parentNode.insertBefore(n.firstChild,n);n.parentNode.removeChild(n)}}else h.calendarContainer.parentNode.removeChild(h.calendarContainer);h.altInput&&(h.input.type="text",h.altInput.parentNode&&h.altInput.parentNode.removeChild(h.altInput),delete h.altInput),h.input&&(h.input.type=h.input._type,h.input.classList.remove("flatpickr-input"),h.input.removeAttribute("readonly"),h.input.value=""),["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach((function(e){try{delete h[e]}catch(e){}}))},h.isEnabled=Z,h.jumpToDate=N,h.open=function(e,t){if(void 0===t&&(t=h._positionElement),!0===h.isMobile)return e&&(e.preventDefault(),e.target&&e.target.blur()),void 0!==h.mobileInput&&(h.mobileInput.focus(),h.mobileInput.click()),void fe("onOpen");if(!h._input.disabled&&!h.config.inline){var n=h.isOpen;h.isOpen=!0,n||(h.calendarContainer.classList.add("open"),h._input.classList.add("active"),fe("onOpen"),oe(t)),!0===h.config.enableTime&&!0===h.config.noCalendar&&(0===h.selectedDates.length&&ne(),!1!==h.config.allowInput||void 0!==e&&h.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return h.hourElement.select()}),50))}},h.redraw=re,h.set=function(e,n){if(null!==e&&"object"==typeof e)for(var a in Object.assign(h.config,e),e)void 0!==de[a]&&de[a].forEach((function(e){return e()}));else h.config[e]=n,void 0!==de[e]?de[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(h.config[e]=l(n));h.redraw(),ve(!1)},h.setDate=function(e,t,n){if(void 0===t&&(t=!1),void 0===n&&(n=h.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return h.clear(t);se(e,n),h.showTimeInput=h.selectedDates.length>0,h.latestSelectedDateObj=h.selectedDates[h.selectedDates.length-1],h.redraw(),N(),T(),0===h.selectedDates.length&&h.clear(!1),ve(t),t&&fe("onChange")},h.toggle=function(e){if(!0===h.isOpen)return h.close();h.open(e)};var de={locale:[ie,q],showMonths:[K,M,U],minDate:[N],maxDate:[N]};function se(e,t){var n=[];if(e instanceof Array)n=e.map((function(e){return h.parseDate(e,t)}));else if(e instanceof Date||"number"==typeof e)n=[h.parseDate(e,t)];else if("string"==typeof e)switch(h.config.mode){case"single":case"time":n=[h.parseDate(e,t)];break;case"multiple":n=e.split(h.config.conjunction).map((function(e){return h.parseDate(e,t)}));break;case"range":n=e.split(h.l10n.rangeSeparator).map((function(e){return h.parseDate(e,t)}))}else h.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(e)));h.selectedDates=n.filter((function(e){return e instanceof Date&&Z(e,!1)})),"range"===h.config.mode&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()}))}function ue(e){return e.slice().map((function(e){return"string"==typeof e||"number"==typeof e||e instanceof Date?h.parseDate(e,void 0,!0):e&&"object"==typeof e&&e.from&&e.to?{from:h.parseDate(e.from,void 0),to:h.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function fe(e,t){if(void 0!==h.config){var n=h.config[e];if(void 0!==n&&n.length>0)for(var a=0;n[a]&&a<n.length;a++)n[a](h.selectedDates,h.input.value,h,t);"onChange"===e&&(h.input.dispatchEvent(me("change")),h.input.dispatchEvent(me("input")))}}function me(e){var t=document.createEvent("Event");return t.initEvent(e,!0,!0),t}function ge(e){for(var t=0;t<h.selectedDates.length;t++)if(0===w(h.selectedDates[t],e))return""+t;return!1}function pe(){h.config.noCalendar||h.isMobile||!h.monthNav||(h.yearElements.forEach((function(e,t){var n=new Date(h.currentYear,h.currentMonth,1);n.setMonth(h.currentMonth+t),h.config.showMonths>1||"static"===h.config.monthSelectorType?h.monthElements[t].textContent=m(n.getMonth(),h.config.shorthandCurrentMonth,h.l10n)+" ":h.monthsDropdownContainer.value=n.getMonth().toString(),e.value=n.getFullYear().toString()})),h._hidePrevMonthArrow=void 0!==h.config.minDate&&(h.currentYear===h.config.minDate.getFullYear()?h.currentMonth<=h.config.minDate.getMonth():h.currentYear<h.config.minDate.getFullYear()),h._hideNextMonthArrow=void 0!==h.config.maxDate&&(h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth+1>h.config.maxDate.getMonth():h.currentYear>h.config.maxDate.getFullYear()))}function he(e){return h.selectedDates.map((function(t){return h.formatDate(t,e)})).filter((function(e,t,n){return"range"!==h.config.mode||h.config.enableTime||n.indexOf(e)===t})).join("range"!==h.config.mode?h.config.conjunction:h.l10n.rangeSeparator)}function ve(e){void 0===e&&(e=!0),void 0!==h.mobileInput&&h.mobileFormatStr&&(h.mobileInput.value=void 0!==h.latestSelectedDateObj?h.formatDate(h.latestSelectedDateObj,h.mobileFormatStr):""),h.input.value=he(h.config.dateFormat),void 0!==h.altInput&&(h.altInput.value=he(h.config.altFormat)),!1!==e&&fe("onValueUpdate")}function De(e){var t=h.prevMonthNav.contains(e.target),n=h.nextMonthNav.contains(e.target);t||n?$(t?-1:1):h.yearElements.indexOf(e.target)>=0?e.target.select():e.target.classList.contains("arrowUp")?h.changeYear(h.currentYear+1):e.target.classList.contains("arrowDown")&&h.changeYear(h.currentYear-1)}return function(){h.element=h.input=f,h.isOpen=!1,function(){var a=["wrap","weekNumbers","allowInput","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],i=e({},g,JSON.parse(JSON.stringify(f.dataset||{}))),o={};h.config.parseDate=i.parseDate,h.config.formatDate=i.formatDate,Object.defineProperty(h.config,"enable",{get:function(){return h.config._enable},set:function(e){h.config._enable=ue(e)}}),Object.defineProperty(h.config,"disable",{get:function(){return h.config._disable},set:function(e){h.config._disable=ue(e)}});var r="time"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var c=y.defaultConfig.dateFormat||n.dateFormat;o.dateFormat=i.noCalendar||r?"H:i"+(i.enableSeconds?":S":""):c+" H:i"+(i.enableSeconds?":S":"")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=y.defaultConfig.altFormat||n.altFormat;o.altFormat=i.noCalendar||r?"h:i"+(i.enableSeconds?":S K":" K"):d+" h:i"+(i.enableSeconds?":S":"")+" K"}i.altInputClass||(h.config.altInputClass=h.input.className+" "+h.config.altInputClass),Object.defineProperty(h.config,"minDate",{get:function(){return h.config._minDate},set:ae("min")}),Object.defineProperty(h.config,"maxDate",{get:function(){return h.config._maxDate},set:ae("max")});var s=function(e){return function(t){h.config["min"===e?"_minTime":"_maxTime"]=h.parseDate(t,"H:i:S")}};Object.defineProperty(h.config,"minTime",{get:function(){return h.config._minTime},set:s("min")}),Object.defineProperty(h.config,"maxTime",{get:function(){return h.config._maxTime},set:s("max")}),"time"===i.mode&&(h.config.noCalendar=!0,h.config.enableTime=!0),Object.assign(h.config,o,i);for(var u=0;u<a.length;u++)h.config[a[u]]=!0===h.config[a[u]]||"true"===h.config[a[u]];for(t.filter((function(e){return void 0!==h.config[e]})).forEach((function(e){h.config[e]=l(h.config[e]||[]).map(C)})),h.isMobile=!h.config.disableMobile&&!h.config.inline&&"single"===h.config.mode&&!h.config.disable.length&&!h.config.enable.length&&!h.config.weekNumbers&&/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),u=0;u<h.config.plugins.length;u++){var m=h.config.plugins[u](h)||{};for(var p in m)t.indexOf(p)>-1?h.config[p]=l(m[p]).map(C).concat(h.config[p]):void 0===i[p]&&(h.config[p]=m[p])}fe("onParseConfig")}(),ie(),h.input=h.config.wrap?f.querySelector("[data-input]"):f,h.input?(h.input._type=h.input.type,h.input.type="text",h.input.classList.add("flatpickr-input"),h._input=h.input,h.config.altInput&&(h.altInput=d(h.input.nodeName,h.config.altInputClass),h._input=h.altInput,h.altInput.placeholder=h.input.placeholder,h.altInput.disabled=h.input.disabled,h.altInput.required=h.input.required,h.altInput.tabIndex=h.input.tabIndex,h.altInput.type="text",h.input.setAttribute("type","hidden"),!h.config.static&&h.input.parentNode&&h.input.parentNode.insertBefore(h.altInput,h.input.nextSibling)),h.config.allowInput||h._input.setAttribute("readonly","readonly"),h._positionElement=h.config.positionElement||h._input):h.config.errorHandler(new Error("Invalid input element specified")),function(){h.selectedDates=[],h.now=h.parseDate(h.config.now)||new Date;var e=h.config.defaultDate||("INPUT"!==h.input.nodeName&&"TEXTAREA"!==h.input.nodeName||!h.input.placeholder||h.input.value!==h.input.placeholder?h.input.value:null);e&&se(e,h.config.dateFormat),h._initialDate=h.selectedDates.length>0?h.selectedDates[0]:h.config.minDate&&h.config.minDate.getTime()>h.now.getTime()?h.config.minDate:h.config.maxDate&&h.config.maxDate.getTime()<h.now.getTime()?h.config.maxDate:h.now,h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth(),h.selectedDates.length>0&&(h.latestSelectedDateObj=h.selectedDates[0]),void 0!==h.config.minTime&&(h.config.minTime=h.parseDate(h.config.minTime,"H:i")),void 0!==h.config.maxTime&&(h.config.maxTime=h.parseDate(h.config.maxTime,"H:i")),h.minDateHasTime=!!h.config.minDate&&(h.config.minDate.getHours()>0||h.config.minDate.getMinutes()>0||h.config.minDate.getSeconds()>0),h.maxDateHasTime=!!h.config.maxDate&&(h.config.maxDate.getHours()>0||h.config.maxDate.getMinutes()>0||h.config.maxDate.getSeconds()>0),Object.defineProperty(h,"showTimeInput",{get:function(){return h._showTimeInput},set:function(e){h._showTimeInput=e,h.calendarContainer&&c(h.calendarContainer,"showTimeInput",e),h.isOpen&&oe()}})}(),h.utils={getDaysInMonth:function(e,t){return void 0===e&&(e=h.currentMonth),void 0===t&&(t=h.currentYear),1===e&&(t%4==0&&t%100!=0||t%400==0)?29:h.l10n.daysInMonth[e]}},h.isMobile||function(){var e=window.document.createDocumentFragment();if(h.calendarContainer=d("div","flatpickr-calendar"),h.calendarContainer.tabIndex=-1,!h.config.noCalendar){if(e.appendChild((h.monthNav=d("div","flatpickr-months"),h.yearElements=[],h.monthElements=[],h.prevMonthNav=d("span","flatpickr-prev-month"),h.prevMonthNav.innerHTML=h.config.prevArrow,h.nextMonthNav=d("span","flatpickr-next-month"),h.nextMonthNav.innerHTML=h.config.nextArrow,K(),Object.defineProperty(h,"_hidePrevMonthArrow",{get:function(){return h.__hidePrevMonthArrow},set:function(e){h.__hidePrevMonthArrow!==e&&(c(h.prevMonthNav,"flatpickr-disabled",e),h.__hidePrevMonthArrow=e)}}),Object.defineProperty(h,"_hideNextMonthArrow",{get:function(){return h.__hideNextMonthArrow},set:function(e){h.__hideNextMonthArrow!==e&&(c(h.nextMonthNav,"flatpickr-disabled",e),h.__hideNextMonthArrow=e)}}),h.currentYearElement=h.yearElements[0],pe(),h.monthNav)),h.innerContainer=d("div","flatpickr-innerContainer"),h.config.weekNumbers){var t=function(){h.calendarContainer.classList.add("hasWeeks");var e=d("div","flatpickr-weekwrapper");e.appendChild(d("span","flatpickr-weekday",h.l10n.weekAbbreviation));var t=d("div","flatpickr-weeks");return e.appendChild(t),{weekWrapper:e,weekNumbers:t}}(),n=t.weekWrapper,a=t.weekNumbers;h.innerContainer.appendChild(n),h.weekNumbers=a,h.weekWrapper=n}h.rContainer=d("div","flatpickr-rContainer"),h.rContainer.appendChild(U()),h.daysContainer||(h.daysContainer=d("div","flatpickr-days"),h.daysContainer.tabIndex=-1),R(),h.rContainer.appendChild(h.daysContainer),h.innerContainer.appendChild(h.rContainer),e.appendChild(h.innerContainer)}h.config.enableTime&&e.appendChild(function(){h.calendarContainer.classList.add("hasTime"),h.config.noCalendar&&h.calendarContainer.classList.add("noCalendar"),h.timeContainer=d("div","flatpickr-time"),h.timeContainer.tabIndex=-1;var e=d("span","flatpickr-time-separator",":"),t=u("flatpickr-hour",{"aria-label":h.l10n.hourAriaLabel});h.hourElement=t.getElementsByTagName("input")[0];var n=u("flatpickr-minute",{"aria-label":h.l10n.minuteAriaLabel});if(h.minuteElement=n.getElementsByTagName("input")[0],h.hourElement.tabIndex=h.minuteElement.tabIndex=-1,h.hourElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getHours():h.config.time_24hr?h.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(h.config.defaultHour)),h.minuteElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getMinutes():h.config.defaultMinute),h.hourElement.setAttribute("step",h.config.hourIncrement.toString()),h.minuteElement.setAttribute("step",h.config.minuteIncrement.toString()),h.hourElement.setAttribute("min",h.config.time_24hr?"0":"1"),h.hourElement.setAttribute("max",h.config.time_24hr?"23":"12"),h.minuteElement.setAttribute("min","0"),h.minuteElement.setAttribute("max","59"),h.timeContainer.appendChild(t),h.timeContainer.appendChild(e),h.timeContainer.appendChild(n),h.config.time_24hr&&h.timeContainer.classList.add("time24hr"),h.config.enableSeconds){h.timeContainer.classList.add("hasSeconds");var a=u("flatpickr-second");h.secondElement=a.getElementsByTagName("input")[0],h.secondElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getSeconds():h.config.defaultSeconds),h.secondElement.setAttribute("step",h.minuteElement.getAttribute("step")),h.secondElement.setAttribute("min","0"),h.secondElement.setAttribute("max","59"),h.timeContainer.appendChild(d("span","flatpickr-time-separator",":")),h.timeContainer.appendChild(a)}return h.config.time_24hr||(h.amPM=d("span","flatpickr-am-pm",h.l10n.amPM[o((h.latestSelectedDateObj?h.hourElement.value:h.config.defaultHour)>11)]),h.amPM.title=h.l10n.toggleTitle,h.amPM.tabIndex=-1,h.timeContainer.appendChild(h.amPM)),h.timeContainer}()),c(h.calendarContainer,"rangeMode","range"===h.config.mode),c(h.calendarContainer,"animate",!0===h.config.animate),c(h.calendarContainer,"multiMonth",h.config.showMonths>1),h.calendarContainer.appendChild(e);var r=void 0!==h.config.appendTo&&void 0!==h.config.appendTo.nodeType;if((h.config.inline||h.config.static)&&(h.calendarContainer.classList.add(h.config.inline?"inline":"static"),h.config.inline&&(!r&&h.element.parentNode?h.element.parentNode.insertBefore(h.calendarContainer,h._input.nextSibling):void 0!==h.config.appendTo&&h.config.appendTo.appendChild(h.calendarContainer)),h.config.static)){var l=d("div","flatpickr-wrapper");h.element.parentNode&&h.element.parentNode.insertBefore(l,h.element),l.appendChild(h.element),h.altInput&&l.appendChild(h.altInput),l.appendChild(h.calendarContainer)}h.config.static||h.config.inline||(void 0!==h.config.appendTo?h.config.appendTo:window.document.body).appendChild(h.calendarContainer)}(),function(){if(h.config.wrap&&["open","close","toggle","clear"].forEach((function(e){Array.prototype.forEach.call(h.element.querySelectorAll("[data-"+e+"]"),(function(t){return O(t,"click",h[e])}))})),h.isMobile)!function(){var e=h.config.enableTime?h.config.noCalendar?"time":"datetime-local":"date";h.mobileInput=d("input",h.input.className+" flatpickr-mobile"),h.mobileInput.step=h.input.getAttribute("step")||"any",h.mobileInput.tabIndex=1,h.mobileInput.type=e,h.mobileInput.disabled=h.input.disabled,h.mobileInput.required=h.input.required,h.mobileInput.placeholder=h.input.placeholder,h.mobileFormatStr="datetime-local"===e?"Y-m-d\\TH:i:S":"date"===e?"Y-m-d":"H:i:S",h.selectedDates.length>0&&(h.mobileInput.defaultValue=h.mobileInput.value=h.formatDate(h.selectedDates[0],h.mobileFormatStr)),h.config.minDate&&(h.mobileInput.min=h.formatDate(h.config.minDate,"Y-m-d")),h.config.maxDate&&(h.mobileInput.max=h.formatDate(h.config.maxDate,"Y-m-d")),h.input.type="hidden",void 0!==h.altInput&&(h.altInput.type="hidden");try{h.input.parentNode&&h.input.parentNode.insertBefore(h.mobileInput,h.input.nextSibling)}catch(e){}O(h.mobileInput,"change",(function(e){h.setDate(e.target.value,!1,h.mobileFormatStr),fe("onChange"),fe("onClose")}))}();else{var e=r(te,50);h._debouncedChange=r(F,300),h.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&O(h.daysContainer,"mouseover",(function(e){"range"===h.config.mode&&ee(e.target)})),O(window.document.body,"keydown",X),h.config.inline||h.config.static||O(window,"resize",e),void 0!==window.ontouchstart?O(window.document,"touchstart",G):O(window.document,"mousedown",_(G)),O(window.document,"focus",G,{capture:!0}),!0===h.config.clickOpens&&(O(h._input,"focus",h.open),O(h._input,"mousedown",_(h.open))),void 0!==h.daysContainer&&(O(h.monthNav,"mousedown",_(De)),O(h.monthNav,["keyup","increment"],S),O(h.daysContainer,"mousedown",_(ce))),void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&(O(h.timeContainer,["increment"],x),O(h.timeContainer,"blur",x,{capture:!0}),O(h.timeContainer,"mousedown",_(P)),O([h.hourElement,h.minuteElement],["focus","click"],(function(e){return e.target.select()})),void 0!==h.secondElement&&O(h.secondElement,"focus",(function(){return h.secondElement&&h.secondElement.select()})),void 0!==h.amPM&&O(h.amPM,"mousedown",_((function(e){x(e),F()}))))}}(),(h.selectedDates.length||h.config.noCalendar)&&(h.config.enableTime&&T(h.config.noCalendar?h.latestSelectedDateObj||h.config.minDate:void 0),ve(!1)),M(),h.showTimeInput=h.selectedDates.length>0||h.config.noCalendar;var a=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!h.isMobile&&a&&oe(),fe("onReady")}(),h}function M(e,t){for(var n=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;i<n.length;i++){var o=n[i];try{if(null!==o.getAttribute("data-fp-omit"))continue;void 0!==o._flatpickr&&(o._flatpickr.destroy(),o._flatpickr=void 0),o._flatpickr=C(o,t||{}),a.push(o._flatpickr)}catch(e){console.error(e)}}return 1===a.length?a[0]:a}"function"!=typeof Object.assign&&(Object.assign=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];if(!e)throw TypeError("Cannot convert undefined or null to object");for(var a=function(t){t&&Object.keys(t).forEach((function(n){return e[n]=t[n]}))},i=0,o=t;i<o.length;i++){var r=o[i];a(r)}return e}),"undefined"!=typeof HTMLElement&&"undefined"!=typeof HTMLCollection&&"undefined"!=typeof NodeList&&(HTMLCollection.prototype.flatpickr=NodeList.prototype.flatpickr=function(e){return M(this,e)},HTMLElement.prototype.flatpickr=function(e){return M([this],e)});var y=function(e,t){return"string"==typeof e?M(window.document.querySelectorAll(e),t):e instanceof Node?M([e],t):M(e,t)};return y.defaultConfig={},y.l10ns={en:e({},a),default:e({},a)},y.localize=function(t){y.l10ns.default=e({},y.l10ns.default,t)},y.setDefaults=function(t){y.defaultConfig=e({},y.defaultConfig,t)},y.parseDate=D({}),y.formatDate=v({}),y.compareDates=w,"undefined"!=typeof jQuery&&void 0!==jQuery.fn&&(jQuery.fn.flatpickr=function(e){return M(this,e)}),Date.prototype.fp_incr=function(e){return new Date(this.getFullYear(),this.getMonth(),this.getDate()+("string"==typeof e?parseInt(e,10):e))},"undefined"!=typeof window&&(window.flatpickr=y),y},"object"==typeof n&&void 0!==t?t.exports=i():"function"==typeof define&&define.amd?define(i):(a=a||self).flatpickr=i()},n 421: function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});e.default=’\n.flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n background: #fff;\n -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);\n box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #e6e6e6;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: \’\’;\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.rightMost:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #e6e6e6;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #fff;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #e6e6e6;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #fff;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n background: transparent;\n color: rgba(0, 0, 0, 0.9);\n fill: rgba(0, 0, 0, 0.9);\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: rgba(0, 0, 0, 0.9);\n fill: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n /\n /*rtl:begin:ignore/\n /\n */\n left: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n /\n /*rtl:begin:ignore/\n /\n */\n right: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #959ea9;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(57, 57, 57, 0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0, 0, 0, 0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0, 0, 0, 0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: "";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(57, 57, 57, 0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(57, 57, 57, 0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(0, 0, 0, 0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(0, 0, 0, 0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: transparent;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: transparent;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: transparent;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: transparent;\n color: rgba(0, 0, 0, 0.54);\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #e6e6e6;\n box-shadow: -1px 0 0 #e6e6e6;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #393939;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e6e6e6;\n border-color: #e6e6e6;\n}\n.flatpickr-day.today {\n border-color: #959ea9;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #959ea9;\n background: #959ea9;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #569ff7;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #569ff7;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #569ff7;\n box-shadow: -10px 0 0 #569ff7;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(57, 57, 57, 0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(57, 57, 57, 0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;\n box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n -webkit-box-shadow: 1px 0 0 #e6e6e6;\n box-shadow: 1px 0 0 #e6e6e6;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(57, 57, 57, 0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-time:after {\n content: "";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #393939;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #393939;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #393939;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #393939;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eee;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n.flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);\n box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #eceef1;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-innerContainer {\n border-bottom: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n border: 1px solid #eceef1;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: \’\’;\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.rightMost:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n border-radius: 5px 5px 0 0;\n background: #eceef1;\n color: #5a6171;\n fill: #5a6171;\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: #5a6171;\n fill: #5a6171;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n /\n /*rtl:begin:ignore/\n /\n */\n left: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n /\n /*rtl:begin:ignore/\n /\n */\n right: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #bbb;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(72, 72, 72, 0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0, 0, 0, 0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0, 0, 0, 0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: "";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(72, 72, 72, 0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(72, 72, 72, 0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(90, 97, 113, 0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: #5a6171;\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: #5a6171;\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(90, 97, 113, 0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: #eceef1;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: #eceef1;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: #eceef1;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: #eceef1;\n color: #5a6171;\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n border-left: 1px solid #eceef1;\n border-right: 1px solid #eceef1;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #eceef1;\n box-shadow: -1px 0 0 #eceef1;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #484848;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e2e2e2;\n border-color: #e2e2e2;\n}\n.flatpickr-day.today {\n border-color: #bbb;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #bbb;\n background: #bbb;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #ff5a5f;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #ff5a5f;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #ff5a5f;\n box-shadow: -10px 0 0 #ff5a5f;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(72, 72, 72, 0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(72, 72, 72, 0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n border-left: 1px solid #eceef1;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(72, 72, 72, 0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n background: #fff;\n border-bottom: 1px solid #eceef1;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n background: #fff;\n border-radius: 0 0 5px 5px;\n}\n.flatpickr-time:after {\n content: "";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #484848;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #484848;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #484848;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #484848;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eaeaea;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\nspan.flatpickr-day.selected {\n font-weight: bold;\n}\n’},n 422: function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(1).__importDefault(e(186)),r=e(423);class n extends r.AbstractRangeSliderView{}a.DateRangeSliderView=n,n.__name__="DateRangeSliderView";class d extends r.AbstractSlider{constructor(e){super(e),this.behaviour="drag",this.connected=[!1,!0,!1]}static init_DateRangeSlider(){this.prototype.default_view=n,this.override({format:"%d %b %Y"})}_formatter(e,t){return i.default(e,t)}}a.DateRangeSlider=d,d.__name__="DateRangeSlider",d.init_DateRangeSlider()},n 423: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=s.__importStar(t(424)),r=t(72),o=t(9),n=t(405),a=t(131),d=t(425),_=t(412),h=s.__importDefault(t(426)),c=s.__importDefault(t(427));class u extends n.ControlView{controls(){yield this.slider_el}get noUiSlider(){return this.slider_el.noUiSlider}connect_signals(){super.connect_signals();const{direction:t,orientation:e,tooltips:i}=this.model.properties;this.on_change([t,e,i],()=>this.render());const{start:s,end:l,value:r,step:o,title:n}=this.model.properties;this.on_change([s,l,r,o],()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s})});const{bar_color:a}=this.model.properties;this.on_change(a,()=>{this._set_bar_color()});const{show_value:d}=this.model.properties;this.on_change([r,n,d],()=>this._update_title())}styles(){return[…super.styles(),h.default,c.default]}_update_title(){r.empty(this.title_el);const t=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=t?"none":"",!t&&(0!=this.model.title.length&&(this.title_el.textContent=this.model.title+": "),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map(t=>this.model.pretty(t)).join(" .. ");this.title_el.appendChild(r.span({class:d.bk_slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(".noUi-connect").style.backgroundColor=this.model.bar_color}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let n;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};n=o.repeat(t,i.length)}else n=!1;if(null==this.slider_el){this.slider_el=r.div(),l.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:n,orientation:this.model.orientation,direction:this.model.direction}),this.noUiSlider.on("slide",(t,e,i)=>this._slide(i)),this.noUiSlider.on("change",(t,e,i)=>this._change(i));const o=(t,e)=>{if(!n)return;this.slider_el.querySelectorAll(".noUi-handle")[t].querySelector(".noUi-tooltip").style.display=e?"block":""};this.noUiSlider.on("start",(t,e)=>o(e,!0)),this.noUiSlider.on("end",(t,e)=>o(e,!1))}else this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s});this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute("disabled","true"):this.slider_el.removeAttribute("disabled"),this.title_el=r.div({class:d.bk_slider_title}),this._update_title(),this.group_el=r.div({class:_.bk_input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){this.model.value=this._calc_from(t),this.model.value_throttled=this.model.value}}u.__name__="AbstractBaseSliderView";class m extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=m,m.__name__="AbstractSliderView";class p extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=p,p.__name__="AbstractRangeSliderView";class b extends n.Control{constructor(t){super(t),this.connected=!1}static init_AbstractSlider(){this.define(({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:r,Enum:o,Ref:n})=>({title:[s,""],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[r(s,n(a.TickFormatter))],direction:[o("ltr","rtl"),"ltr"],tooltips:[e,!0],bar_color:[l,"#e6e6e6"]}))}_formatter(t,e){return""+t}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=b,b.__name__="AbstractSlider",b.init_AbstractSlider()},n 424: function _(t,e,r){n /! nouislider - 14.6.0 - 6/27/2020 /n var n;n=function(){"use strict";var t="14.6.0";function e(t){t.parentElement.removeChild(t)}function r(t){return null!=t}function n(t){t.preventDefault()}function i(t){return"number"==typeof t&&!isNaN(t)&&isFinite(t)}function o(t,e,r){r>0&&(u(t,e),setTimeout((function(){c(t,e)}),r))}function s(t){return Math.max(Math.min(t,100),0)}function a(t){return Array.isArray(t)?t:[t]}function l(t){var e=(t=String(t)).split(".");return e.length>1?e[1].length:0}function u(t,e){t.classList&&!/\s/.test(e)?t.classList.add(e):t.className+=" "+e}function c(t,e){t.classList&&!/\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\b)"+e.split(" ").join("|")+"(\\b|$)","gi")," ")}function p(t){var e=void 0!==window.pageXOffset,r="CSS1Compat"===(t.compatMode||"");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function f(t,e){return 100/(e-t)}function d(t,e,r){return 100*e/(t[r+1]-t[r])}function h(t,e){for(var r=1;t>=e[r];)r+=1;return r}function m(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=h(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return d(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/f(s,a)}function g(t,e,r,n){if(100===n)return n;var i=h(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}function v(t,e,r){var n;if("number"==typeof e&&(e=[e]),!Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘range’ contains invalid value.");if(!i(n="min"===t?0:"max"===t?100:parseFloat(t))||!i(e[0]))throw new Error("noUiSlider (14.6.0): ‘range’ value isn’t numeric.");r.xPct.push(n),r.xVal.push(e[0]),n?r.xSteps.push(!isNaN(e[1])&&e[1]):isNaN(e[1])||(r.xSteps[0]=e[1]),r.xHighestCompleteStep.push(0)}function b(t,e,r){if(e)if(r.xVal[t]!==r.xVal[t+1]){r.xSteps[t]=d([r.xVal[t],r.xVal[t+1]],e,0)/f(r.xPct[t],r.xPct[t+1]);var n=(r.xVal[t+1]-r.xVal[t])/r.xNumSteps[t],i=Math.ceil(Number(n.toFixed(3))-1),o=r.xVal[t]+r.xNumSteps[t]*i;r.xHighestCompleteStep[t]=o}else r.xSteps[t]=r.xHighestCompleteStep[t]=r.xVal[t]}function x(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.xHighestCompleteStep=[],this.snap=e;var i=[];for(n in t)t.hasOwnProperty(n)&&i.push([t[n],n]);for(i.length&&"object"==typeof i[0][0]?i.sort((function(t,e){return t[0][0]-e[0][0]})):i.sort((function(t,e){return t[0]-e[0]})),n=0;n<i.length;n++)v(i[n][1],i[n][0],this);for(this.xNumSteps=this.xSteps.slice(0),n=0;n<this.xNumSteps.length;n++)b(n,this.xNumSteps[n],this)}x.prototype.getDistance=function(t){var e,r=[];for(e=0;e<this.xNumSteps.length-1;e++){var n=this.xNumSteps[e];if(n&&t/n%1!=0)throw new Error("noUiSlider (14.6.0): ‘limit’, ‘margin’ and ‘padding’ of "+this.xPct[e]+"% range must be divisible by step.");r[e]=d(this.xVal,t,e)}return r},x.prototype.getAbsoluteDistance=function(t,e,r){var n,i=0;if(t<this.xPct[this.xPct.length-1])for(;t>this.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++;var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c–):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},x.prototype.toStepping=function(t){return t=m(this.xVal,this.xPct,t)},x.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=h(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*f(s,e[n]))}(this.xVal,this.xPct,t)},x.prototype.getStep=function(t){return t=g(this.xPct,this.xSteps,this.snap,t)},x.prototype.getDefaultStep=function(t,e,r){var n=h(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},x.prototype.getNearbySteps=function(t){var e=h(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},x.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(l);return Math.max.apply(null,t)},x.prototype.convert=function(t){return this.getStep(this.toStepping(t))};var S={to:function(t){return void 0!==t&&t.toFixed(2)},from:Number},w={target:"target",base:"base",origin:"origin",handle:"handle",handleLower:"handle-lower",handleUpper:"handle-upper",touchArea:"touch-area",horizontal:"horizontal",vertical:"vertical",background:"background",connect:"connect",connects:"connects",ltr:"ltr",rtl:"rtl",textDirectionLtr:"txt-dir-ltr",textDirectionRtl:"txt-dir-rtl",draggable:"draggable",drag:"state-drag",tap:"state-tap",active:"active",tooltip:"tooltip",pips:"pips",pipsHorizontal:"pips-horizontal",pipsVertical:"pips-vertical",marker:"marker",markerHorizontal:"marker-horizontal",markerVertical:"marker-vertical",markerNormal:"marker-normal",markerLarge:"marker-large",markerSub:"marker-sub",value:"value",valueHorizontal:"value-horizontal",valueVertical:"value-vertical",valueNormal:"value-normal",valueLarge:"value-large",valueSub:"value-sub"};function y(t){if(function(t){return"object"==typeof t&&"function"==typeof t.to&&"function"==typeof t.from}(t))return!0;throw new Error("noUiSlider (14.6.0): ‘format’ requires ‘to’ and ‘from’ methods.")}function E(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘step’ is not numeric.");t.singleStep=e}function C(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘keyboardPageMultiplier’ is not numeric.");t.keyboardPageMultiplier=e}function P(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘keyboardDefaultStep’ is not numeric.");t.keyboardDefaultStep=e}function N(t,e){if("object"!=typeof e||Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘range’ is not an object.");if(void 0===e.min||void 0===e.max)throw new Error("noUiSlider (14.6.0): Missing ‘min’ or ‘max’ in ‘range’.");if(e.min===e.max)throw new Error("noUiSlider (14.6.0): ‘range’ ‘min’ and ‘max’ cannot be equal.");t.spectrum=new x(e,t.snap,t.singleStep)}function k(t,e){if(e=a(e),!Array.isArray(e)||!e.length)throw new Error("noUiSlider (14.6.0): ‘start’ option is incorrect.");t.handles=e.length,t.start=e}function U(t,e){if(t.snap=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘snap’ option must be a boolean.")}function A(t,e){if(t.animate=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘animate’ option must be a boolean.")}function V(t,e){if(t.animationDuration=e,"number"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘animationDuration’ option must be a number.")}function D(t,e){var r,n=[!1];if("lower"===e?e=[!0,!1]:"upper"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r<t.handles;r++)n.push(e);n.push(!1)}else{if(!Array.isArray(e)||!e.length||e.length!==t.handles+1)throw new Error("noUiSlider (14.6.0): ‘connect’ option doesn’t match handle count.");n=e}t.connect=n}function M(t,e){switch(e){case"horizontal":t.ort=0;break;case"vertical":t.ort=1;break;default:throw new Error("noUiSlider (14.6.0): ‘orientation’ option is invalid.")}}function O(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘margin’ option must be numeric.");0!==e&&(t.margin=t.spectrum.getDistance(e))}function L(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘limit’ option must be numeric.");if(t.limit=t.spectrum.getDistance(e),!t.limit||t.handles<2)throw new Error("noUiSlider (14.6.0): ‘limit’ option is only supported on linear sliders with 2 or more handles.")}function z(t,e){var r;if(!i(e)&&!Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘padding’ option must be numeric or array of exactly 2 numbers.");if(Array.isArray(e)&&2!==e.length&&!i(e[0])&&!i(e[1]))throw new Error("noUiSlider (14.6.0): ‘padding’ option must be numeric or array of exactly 2 numbers.");if(0!==e){for(Array.isArray(e)||(e=[e,e]),t.padding=[t.spectrum.getDistance(e[0]),t.spectrum.getDistance(e[1])],r=0;r<t.spectrum.xNumSteps.length-1;r++)if(t.padding[0][r]<0||t.padding[1][r]<0)throw new Error("noUiSlider (14.6.0): ‘padding’ option must be a positive number(s).");var n=e[0]+e[1],o=t.spectrum.xVal[0];if(n/(t.spectrum.xVal[t.spectrum.xVal.length-1]-o)>1)throw new Error("noUiSlider (14.6.0): ‘padding’ option must not exceed 100% of the range.")}}function H(t,e){switch(e){case"ltr":t.dir=0;break;case"rtl":t.dir=1;break;default:throw new Error("noUiSlider (14.6.0): ‘direction’ option was not recognized.")}}function j(t,e){if("string"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘behaviour’ must be a string containing options.");var r=e.indexOf("tap")>=0,n=e.indexOf("drag")>=0,i=e.indexOf("fixed")>=0,o=e.indexOf("snap")>=0,s=e.indexOf("hover")>=0,a=e.indexOf("unconstrained")>=0;if(i){if(2!==t.handles)throw new Error("noUiSlider (14.6.0): ‘fixed’ behaviour must be used with 2 handles");O(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error("noUiSlider (14.6.0): ‘unconstrained’ behaviour cannot be used with margin or limit");t.events={tap:r||o,drag:n,fixed:i,snap:o,hover:s,unconstrained:a}}function F(t,e){if(!1!==e)if(!0===e){t.tooltips=[];for(var r=0;r<t.handles;r++)t.tooltips.push(!0)}else{if(t.tooltips=a(e),t.tooltips.length!==t.handles)throw new Error("noUiSlider (14.6.0): must pass a formatter for all handles.");t.tooltips.forEach((function(t){if("boolean"!=typeof t&&("object"!=typeof t||"function"!=typeof t.to))throw new Error("noUiSlider (14.6.0): ‘tooltips’ must be passed a formatter or ‘false’.")}))}}function R(t,e){t.ariaFormat=e,y(e)}function T(t,e){t.format=e,y(e)}function B(t,e){if(t.keyboardSupport=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘keyboardSupport’ option must be a boolean.")}function q(t,e){t.documentElement=e}function X(t,e){if("string"!=typeof e&&!1!==e)throw new Error("noUiSlider (14.6.0): ‘cssPrefix’ must be a string or `false`.");t.cssPrefix=e}function _(t,e){if("object"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘cssClasses’ must be an object.");if("string"==typeof t.cssPrefix)for(var r in t.cssClasses={},e)e.hasOwnProperty(r)&&(t.cssClasses[r]=t.cssPrefix+e[r]);else t.cssClasses=e}function Y(t){var e={margin:0,limit:0,padding:0,animate:!0,animationDuration:300,ariaFormat:S,format:S},n={step:{r:!1,t:E},keyboardPageMultiplier:{r:!1,t:C},keyboardDefaultStep:{r:!1,t:P},start:{r:!0,t:k},connect:{r:!0,t:D},direction:{r:!0,t:H},snap:{r:!1,t:U},animate:{r:!1,t:A},animationDuration:{r:!1,t:V},range:{r:!0,t:N},orientation:{r:!1,t:M},margin:{r:!1,t:O},limit:{r:!1,t:L},padding:{r:!1,t:z},behaviour:{r:!0,t:j},ariaFormat:{r:!1,t:R},format:{r:!1,t:T},tooltips:{r:!1,t:F},keyboardSupport:{r:!0,t:B},documentElement:{r:!1,t:q},cssPrefix:{r:!0,t:X},cssClasses:{r:!0,t:_}},i={connect:!1,direction:"ltr",behaviour:"tap",orientation:"horizontal",keyboardSupport:!0,cssPrefix:"noUi-",cssClasses:w,keyboardPageMultiplier:5,keyboardDefaultStep:10};t.format&&!t.ariaFormat&&(t.ariaFormat=t.format),Object.keys(n).forEach((function(o){if(!r(t[o])&&void 0===i[o]){if(n[o].r)throw new Error("noUiSlider (14.6.0): ‘"+o+"’ is required.");return!0}n[o].t(e,r(t[o])?t[o]:i[o])})),e.pips=t.pips;var o=document.createElement("div"),s=void 0!==o.style.msTransform,a=void 0!==o.style.transform;return e.transformRule=a?"transform":s?"msTransform":"webkitTransform",e.style=[["left","top"],["right","bottom"]][e.dir][e.ort],e}function I(t,r,i){var l,f,d,h,m,g,v,b,x=window.navigator.pointerEnabled?{start:"pointerdown",move:"pointermove",end:"pointerup"}:window.navigator.msPointerEnabled?{start:"MSPointerDown",move:"MSPointerMove",end:"MSPointerUp"}:{start:"mousedown touchstart",move:"mousemove touchmove",end:"mouseup touchend"},S=window.CSS&&CSS.supports&&CSS.supports("touch-action","none")&&function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("test",null,e)}catch(t){}return t}(),w=t,y=r.spectrum,E=[],C=[],P=[],N=0,k={},U=t.ownerDocument,A=r.documentElement||U.documentElement,V=U.body,D="rtl"===U.dir||1===r.ort?0:100;function M(t,e){var r=U.createElement("div");return e&&u(r,e),t.appendChild(r),r}function O(t,e){var n=M(t,r.cssClasses.origin),i=M(n,r.cssClasses.handle);return M(i,r.cssClasses.touchArea),i.setAttribute("data-handle",e),r.keyboardSupport&&(i.setAttribute("tabindex","0"),i.addEventListener("keydown",(function(t){return function(t,e){if(H()||j(e))return!1;var n=["Left","Right"],i=["Down","Up"],o=["PageDown","PageUp"],s=["Home","End"];r.dir&&!r.ort?n.reverse():r.ort&&!r.dir&&(i.reverse(),o.reverse());var a,l=t.key.replace("Arrow",""),u=l===o[0],c=l===o[1],p=l===i[0]||l===n[0]||u,f=l===i[1]||l===n[1]||c,d=l===s[0],h=l===s[1];if(!(p||f||d||h))return!0;if(t.preventDefault(),f||p){var m=r.keyboardPageMultiplier,g=p?0:1,v=ft(e)[g];if(null===v)return!1;!1===v&&(v=y.getDefaultStep(C[e],p,r.keyboardDefaultStep)),(c||u)&&(v*=m),v=Math.max(v,1e-7),v*=p?-1:1,a=E[e]+v}else a=h?r.spectrum.xVal[r.spectrum.xVal.length-1]:r.spectrum.xVal[0];return at(e,y.toStepping(a),!0,!0),et("slide",e),et("update",e),et("change",e),et("set",e),!1}(t,e)}))),i.setAttribute("role","slider"),i.setAttribute("aria-orientation",r.ort?"vertical":"horizontal"),0===e?u(i,r.cssClasses.handleLower):e===r.handles-1&&u(i,r.cssClasses.handleUpper),n}function L(t,e){return!!e&&M(t,r.cssClasses.connect)}function z(t,e){return!!r.tooltips[e]&&M(t.firstChild,r.cssClasses.tooltip)}function H(){return w.hasAttribute("disabled")}function j(t){return f[t].hasAttribute("disabled")}function F(){m&&(tt("update.tooltips"),m.forEach((function(t){t&&e(t)})),m=null)}function R(){F(),m=f.map(z),Z("update.tooltips",(function(t,e,n){if(m[e]){var i=t[e];!0!==r.tooltips[e]&&(i=r.tooltips[e].to(n[e])),m[e].innerHTML=i}}))}function T(t,e,n){var i=U.createElement("div"),o=[];o[0]=r.cssClasses.valueNormal,o[1]=r.cssClasses.valueLarge,o[2]=r.cssClasses.valueSub;var s=[];s[0]=r.cssClasses.markerNormal,s[1]=r.cssClasses.markerLarge,s[2]=r.cssClasses.markerSub;var a=[r.cssClasses.valueHorizontal,r.cssClasses.valueVertical],l=[r.cssClasses.markerHorizontal,r.cssClasses.markerVertical];function c(t,e){var n=e===r.cssClasses.value,i=n?o:s;return e+" "+(n?a:l)[r.ort]+" "+i[t]}return u(i,r.cssClasses.pips),u(i,0===r.ort?r.cssClasses.pipsHorizontal:r.cssClasses.pipsVertical),Object.keys(t).forEach((function(o){!function(t,o,s){if(-1!==(s=e?e(o,s):s)){var a=M(i,!1);a.className=c(s,r.cssClasses.marker),a.style[r.style]=t+"%",s>0&&((a=M(i,!1)).className=c(s,r.cssClasses.value),a.setAttribute("data-value",o),a.style[r.style]=t+"%",a.innerHTML=n.to(o))}}(o,t[o][0],t[o][1])})),i}function B(){h&&(e(h),h=null)}function q(t){B();var e=t.mode,r=t.density||1,n=t.filter||!1,i=function(t,e,r){if("range"===t||"steps"===t)return y.xVal;if("count"===t){if(e<2)throw new Error("noUiSlider (14.6.0): ‘values’ (>= 2) required for mode ‘count’.");var n=e-1,i=100/n;for(e=[];n–;)e[n]=n*i;e.push(100),t="positions"}return"positions"===t?e.map((function(t){return y.fromStepping(r?y.getStep(t):t)})):"values"===t?r?e.map((function(t){return y.fromStepping(y.getStep(y.toStepping(t)))})):e:void 0}(e,t.values||!1,t.stepped||!1),o=function(t,e,r){var n,i={},o=y.xVal[0],s=y.xVal[y.xVal.length-1],a=!1,l=!1,u=0;return n=r.slice().sort((function(t,e){return t-e})),(r=n.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(r.unshift(o),a=!0),r[r.length-1]!==s&&(r.push(s),l=!0),r.forEach((function(n,o){var s,c,p,f,d,h,m,g,v,b,x=n,S=r[o+1],w="steps"===e;if(w&&(s=y.xNumSteps[o]),s||(s=S-x),!1!==x&&void 0!==S)for(s=Math.max(s,1e-7),c=x;c<=S;c=(c+s).toFixed(7)/1){for(g=(d=(f=y.toStepping(c))-u)/t,b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[y.fromStepping(h),0];m=r.indexOf(c)>-1?1:w?2:0,!o&&a&&c!==S&&(m=0),c===S&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}(r,e,i),s=t.format||{to:Math.round};return h=w.appendChild(T(o,n,s))}function X(){var t=l.getBoundingClientRect(),e="offset"+["Width","Height"][r.ort];return 0===r.ort?t.width||l[e]:t.height||l[e]}function _(t,e,n,i){var o=function(o){return!!(o=function(t,e,r){var n,i,o=0===t.type.indexOf("touch"),s=0===t.type.indexOf("mouse"),a=0===t.type.indexOf("pointer");if(0===t.type.indexOf("MSPointer")&&(a=!0),o){var l=function(t){return t.target===r||r.contains(t.target)||t.target.shadowRoot&&t.target.shadowRoot.contains(r)};if("touchstart"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;n=u[0].pageX,i=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;n=c.pageX,i=c.pageY}}return e=e||p(U),(s||a)&&(n=t.clientX+e.x,i=t.clientY+e.y),t.pageOffset=e,t.points=[n,i],t.cursor=s||a,t}(o,i.pageOffset,i.target||e))&&!(H()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp("\\b"+a+"\\b").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==o.buttons&&o.buttons>1)&&(!i.hover||!o.buttons)&&(S||o.preventDefault(),o.calcPoint=o.points[r.ort],void n(o,i)));var s,a},s=[];return t.split(" ").forEach((function(t){e.addEventListener(t,o,!!S&&{passive:!0}),s.push([t,o])})),s}function I(t){var e,n,i,o,a,u,c=100*(t-(e=l,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,a=o.documentElement,u=p(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(u.x=0),n?i.top+u.y-a.clientTop:i.left+u.x-a.clientLeft))/X();return c=s(c),r.dir?100-c:c}function W(t,e){"mouseout"===t.type&&"HTML"===t.target.nodeName&&null===t.relatedTarget&&G(t,e)}function $(t,e){if(-1===navigator.appVersion.indexOf("MSIE 9")&&0===t.buttons&&0!==e.buttonsProperty)return G(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);it(n>0,100*n/e.baseSize,e.locations,e.handleNumbers)}function G(t,e){e.handle&&(c(e.handle,r.cssClasses.active),N-=1),e.listeners.forEach((function(t){A.removeEventListener(t[0],t[1])})),0===N&&(c(w,r.cssClasses.drag),st(),t.cursor&&(V.style.cursor="",V.removeEventListener("selectstart",n))),e.handleNumbers.forEach((function(t){et("change",t),et("set",t),et("end",t)}))}function J(t,e){if(e.handleNumbers.some(j))return!1;var i;1===e.handleNumbers.length&&(i=f[e.handleNumbers[0]].children[0],N+=1,u(i,r.cssClasses.active)),t.stopPropagation();var o=[],s=_(x.move,A,$,{target:t.target,handle:i,listeners:o,startCalcPoint:t.calcPoint,baseSize:X(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:C.slice()}),a=_(x.end,A,G,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers}),l=_("mouseout",A,W,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers});o.push.apply(o,s.concat(a,l)),t.cursor&&(V.style.cursor=getComputedStyle(t.target).cursor,f.length>1&&u(w,r.cssClasses.drag),V.addEventListener("selectstart",n,!1)),e.handleNumbers.forEach((function(t){et("start",t)}))}function K(t){if(!t.buttons&&!t.touches)return!1;t.stopPropagation();var e=I(t.calcPoint),n=function(t){var e=100,r=!1;return f.forEach((function(n,i){if(!j(i)){var o=C[i],s=Math.abs(o-t);(s<e||s<=e&&t>o||100===s&&100===e)&&(r=i,e=s)}})),r}(e);if(!1===n)return!1;r.events.snap||o(w,r.cssClasses.tap,r.animationDuration),at(n,e,!0,!0),st(),et("slide",n,!0),et("update",n,!0),et("change",n,!0),et("set",n,!0),r.events.snap&&J(t,{handleNumbers:[n]})}function Q(t){var e=I(t.calcPoint),r=y.getStep(e),n=y.fromStepping(r);Object.keys(k).forEach((function(t){"hover"===t.split(".")[0]&&k[t].forEach((function(t){t.call(g,n)}))}))}function Z(t,e){k[t]=k[t]||[],k[t].push(e),"update"===t.split(".")[0]&&f.forEach((function(t,e){et("update",e)}))}function tt(t){var e=t&&t.split(".")[0],r=e&&t.substring(e.length);Object.keys(k).forEach((function(t){var n=t.split(".")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||delete k[t]}))}function et(t,e,n){Object.keys(k).forEach((function(i){var o=i.split(".")[0];t===o&&k[i].forEach((function(t){t.call(g,E.map(r.format.to),e,E.slice(),n||!1,C.slice(),g)}))}))}function rt(t,e,n,i,o,a){var l;return f.length>1&&!r.events.unconstrained&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.margin,0),n=Math.max(n,l)),o&&e<f.length-1&&(l=y.getAbsoluteDistance(t[e+1],r.margin,1),n=Math.min(n,l))),f.length>1&&r.limit&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.limit,0),n=Math.min(n,l)),o&&e<f.length-1&&(l=y.getAbsoluteDistance(t[e+1],r.limit,1),n=Math.max(n,l))),r.padding&&(0===e&&(l=y.getAbsoluteDistance(0,r.padding[0],0),n=Math.max(n,l)),e===f.length-1&&(l=y.getAbsoluteDistance(100,r.padding[1],1),n=Math.min(n,l))),!((n=s(n=y.getStep(n)))===t[e]&&!a)&&n}function nt(t,e){var n=r.ort;return(n?e:t)+", "+(n?t:e)}function it(t,e,r,n){var i=r.slice(),o=[!t,t],s=[t,!t];n=n.slice(),t&&n.reverse(),n.length>1?n.forEach((function(t,r){var n=rt(i,t,i[t]+e,o[r],s[r],!1);!1===n?e=0:(e=n-i[t],i[t]=n)})):o=s=[!0];var a=!1;n.forEach((function(t,n){a=at(t,r[t]+e,o[n],s[n])||a})),a&&n.forEach((function(t){et("update",t),et("slide",t)}))}function ot(t,e){return r.dir?100-t-e:t}function st(){P.forEach((function(t){var e=C[t]>50?-1:1,r=3+(f.length+e*t);f[t].style.zIndex=r}))}function at(t,e,n,i){return!1!==(e=rt(C,t,e,n,i,!1))&&(function(t,e){C[t]=e,E[t]=y.fromStepping(e);var n="translate("+nt(10*(ot(e,0)-D)+"%","0")+")";f[t].style[r.transformRule]=n,lt(t),lt(t+1)}(t,e),!0)}function lt(t){if(d[t]){var e=0,n=100;0!==t&&(e=C[t-1]),t!==d.length-1&&(n=C[t]);var i=n-e,o="translate("+nt(ot(e,i)+"%","0")+")",s="scale("+nt(i/100,"1")+")";d[t].style[r.transformRule]=o+" "+s}}function ut(t,e){return null===t||!1===t||void 0===t?C[e]:("number"==typeof t&&(t=String(t)),t=r.format.from(t),!1===(t=y.toStepping(t))||isNaN(t)?C[e]:t)}function ct(t,e){var n=a(t),i=void 0===C[0];e=void 0===e||!!e,r.animate&&!i&&o(w,r.cssClasses.tap,r.animationDuration),P.forEach((function(t){at(t,ut(n[t],t),!0,!1)}));for(var s=1===P.length?0:1;s<P.length;++s)P.forEach((function(t){at(t,C[t],!0,!0)}));st(),P.forEach((function(t){et("update",t),null!==n[t]&&e&&et("set",t)}))}function pt(){var t=E.map(r.format.to);return 1===t.length?t[0]:t}function ft(t){var e=C[t],n=y.getNearbySteps(e),i=E[t],o=n.thisStep.step,s=null;if(r.snap)return[i-n.stepBefore.startValue||null,n.stepAfter.startValue-i||null];!1!==o&&i+o>n.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=y.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}return u(v=w,r.cssClasses.target),0===r.dir?u(v,r.cssClasses.ltr):u(v,r.cssClasses.rtl),0===r.ort?u(v,r.cssClasses.horizontal):u(v,r.cssClasses.vertical),u(v,"rtl"===getComputedStyle(v).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),l=M(v,r.cssClasses.base),function(t,e){var n=M(e,r.cssClasses.connects);f=[],(d=[]).push(L(n,t[0]));for(var i=0;i<r.handles;i++)f.push(O(e,i)),P[i]=i,d.push(L(n,t[i+1]))}(r.connect,l),(b=r.events).fixed||f.forEach((function(t,e){_(x.start,t.children[0],J,{handleNumbers:[e]})})),b.tap&&_(x.start,l,K,{}),b.hover&&_(x.move,l,Q,{hover:!0}),b.drag&&d.forEach((function(t,e){if(!1!==t&&0!==e&&e!==d.length-1){var n=f[e-1],i=f[e],o=[t];u(t,r.cssClasses.draggable),b.fixed&&(o.push(n.children[0]),o.push(i.children[0])),o.forEach((function(t){_(x.start,t,J,{handles:[n,i],handleNumbers:[e-1,e]})}))}})),ct(r.start),r.pips&&q(r.pips),r.tooltips&&R(),Z("update",(function(t,e,n,i,o){P.forEach((function(t){var e=f[t],i=rt(C,t,0,!0,!0,!0),s=rt(C,t,100,!0,!0,!0),a=o[t],l=r.ariaFormat.to(n[t]);i=y.fromStepping(i).toFixed(1),s=y.fromStepping(s).toFixed(1),a=y.fromStepping(a).toFixed(1),e.children[0].setAttribute("aria-valuemin",i),e.children[0].setAttribute("aria-valuemax",s),e.children[0].setAttribute("aria-valuenow",a),e.children[0].setAttribute("aria-valuetext",l)}))})),g={destroy:function(){for(var t in r.cssClasses)r.cssClasses.hasOwnProperty(t)&&c(w,r.cssClasses[t]);for(;w.firstChild;)w.removeChild(w.firstChild);delete w.noUiSlider},steps:function(){return P.map(ft)},on:Z,off:tt,get:pt,set:ct,setHandle:function(t,e,r){if(!((t=Number(t))>=0&&t<P.length))throw new Error("noUiSlider (14.6.0): invalid handle number, got: "+t);at(t,ut(e,t),!0,!0),et("update",t),r&&et("set",t)},reset:function(t){ct(r.start,t)},__moveHandles:function(t,e,r){it(t,e,C,r)},options:i,updateOptions:function(t,e){var n=pt(),o=["margin","limit","padding","range","animate","snap","step","format","pips","tooltips"];o.forEach((function(e){void 0!==t[e]&&(i[e]=t[e])}));var s=Y(i);o.forEach((function(e){void 0!==t[e]&&(r[e]=s[e])})),y=s.spectrum,r.margin=s.margin,r.limit=s.limit,r.padding=s.padding,r.pips?q(r.pips):B(),r.tooltips?R():F(),C=[],ct(t.start||n,e)},target:w,removePips:B,removeTooltips:F,getTooltips:function(){return m},getOrigins:function(){return f},pips:q}}return{__spectrum:x,version:t,cssClasses:w,create:function(t,e){if(!t||!t.nodeName)throw new Error("noUiSlider (14.6.0): create requires a single element, got: "+t);if(t.noUiSlider)throw new Error("noUiSlider (14.6.0): Slider was already initialized.");var r=I(t,Y(e),e);return t.noUiSlider=r,r}}},"function"==typeof define&&define.amd?define([],n):"object"==typeof r?e.exports=n():window.noUiSlider=n()},n 425: function _(e,l,i){Object.defineProperty(i,"__esModule",{value:!0}),i.bk_slider_value="bk-slider-value",i.bk_slider_title="bk-slider-title"},n 426: function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});t.default="\n.bk-root {\n /! nouislider - 14.6.0 - 6/27/2020 /\n / Functional styling;\n * These styles are required for noUiSlider to function.\n * You don’t need to change these rules to apply your design.\n /\n / Wrapper for all connect elements.\n /\n / Offset direction\n /\n / Give origins 0 height/width so they don’t interfere with clicking the\n * connect elements.\n /\n / Slider size and handle placement;\n /\n / Styling;\n * Giving the connect element a border radius causes issues with using transform: scale\n /\n / Handles and cursors;\n /\n / Handle stripes;\n /\n / Disabled state;\n /\n / Base;\n \n */\n / Values;\n \n */\n / Markings;\n \n */\n / Horizontal layout;\n \n */\n / Vertical layout;\n \n */\n}\n.bk-root .noUi-target,\n.bk-root .noUi-target * {\n -webkit-touch-callout: none;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n -webkit-user-select: none;\n -ms-touch-action: none;\n touch-action: none;\n -ms-user-select: none;\n -moz-user-select: none;\n user-select: none;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.bk-root .noUi-target {\n position: relative;\n}\n.bk-root .noUi-base,\n.bk-root .noUi-connects {\n width: 100%;\n height: 100%;\n position: relative;\n z-index: 1;\n}\n.bk-root .noUi-connects {\n overflow: hidden;\n z-index: 0;\n}\n.bk-root .noUi-connect,\n.bk-root .noUi-origin {\n will-change: transform;\n position: absolute;\n z-index: 1;\n top: 0;\n right: 0;\n -ms-transform-origin: 0 0;\n -webkit-transform-origin: 0 0;\n -webkit-transform-style: preserve-3d;\n transform-origin: 0 0;\n transform-style: flat;\n}\n.bk-root .noUi-connect {\n height: 100%;\n width: 100%;\n}\n.bk-root .noUi-origin {\n height: 10%;\n width: 10%;\n}\n.bk-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {\n left: 0;\n right: auto;\n}\n.bk-root .noUi-vertical .noUi-origin {\n width: 0;\n}\n.bk-root .noUi-horizontal .noUi-origin {\n height: 0;\n}\n.bk-root .noUi-handle {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n position: absolute;\n}\n.bk-root .noUi-touch-area {\n height: 100%;\n width: 100%;\n}\n.bk-root .noUi-state-tap .noUi-connect,\n.bk-root .noUi-state-tap .noUi-origin {\n -webkit-transition: transform 0.3s;\n transition: transform 0.3s;\n}\n.bk-root .noUi-state-drag * {\n cursor: inherit !important;\n}\n.bk-root .noUi-horizontal {\n height: 18px;\n}\n.bk-root .noUi-horizontal .noUi-handle {\n width: 34px;\n height: 28px;\n right: -17px;\n top: -6px;\n}\n.bk-root .noUi-vertical {\n width: 18px;\n}\n.bk-root .noUi-vertical .noUi-handle {\n width: 28px;\n height: 34px;\n right: -6px;\n top: -17px;\n}\n.bk-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {\n left: -17px;\n right: auto;\n}\n.bk-root .noUi-target {\n background: #FAFAFA;\n border-radius: 4px;\n border: 1px solid #D3D3D3;\n box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;\n}\n.bk-root .noUi-connects {\n border-radius: 3px;\n}\n.bk-root .noUi-connect {\n background: #3FB8AF;\n}\n.bk-root .noUi-draggable {\n cursor: ew-resize;\n}\n.bk-root .noUi-vertical .noUi-draggable {\n cursor: ns-resize;\n}\n.bk-root .noUi-handle {\n border: 1px solid #D9D9D9;\n border-radius: 3px;\n background: #FFF;\n cursor: default;\n box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;\n}\n.bk-root .noUi-active {\n box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;\n}\n.bk-root .noUi-handle:before,\n.bk-root .noUi-handle:after {\n content: \"\";\n display: block;\n position: absolute;\n height: 14px;\n width: 1px;\n background: #E8E7E6;\n left: 14px;\n top: 6px;\n}\n.bk-root .noUi-handle:after {\n left: 17px;\n}\n.bk-root .noUi-vertical .noUi-handle:before,\n.bk-root .noUi-vertical .noUi-handle:after {\n width: 14px;\n height: 1px;\n left: 6px;\n top: 14px;\n}\n.bk-root .noUi-vertical .noUi-handle:after {\n top: 17px;\n}\n.bk-root [disabled] .noUi-connect {\n background: #B8B8B8;\n}\n.bk-root [disabled].noUi-target,\n.bk-root [disabled].noUi-handle,\n.bk-root [disabled] .noUi-handle {\n cursor: not-allowed;\n}\n.bk-root .noUi-pips,\n.bk-root .noUi-pips * {\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.bk-root .noUi-pips {\n position: absolute;\n color: #999;\n}\n.bk-root .noUi-value {\n position: absolute;\n white-space: nowrap;\n text-align: center;\n}\n.bk-root .noUi-value-sub {\n color: #ccc;\n font-size: 10px;\n}\n.bk-root .noUi-marker {\n position: absolute;\n background: #CCC;\n}\n.bk-root .noUi-marker-sub {\n background: #AAA;\n}\n.bk-root .noUi-marker-large {\n background: #AAA;\n}\n.bk-root .noUi-pips-horizontal {\n padding: 10px 0;\n height: 80px;\n top: 100%;\n left: 0;\n width: 100%;\n}\n.bk-root .noUi-value-horizontal {\n -webkit-transform: translate(-50%, 50%);\n transform: translate(-50%, 50%);\n}\n.bk-root .noUi-rtl .noUi-value-horizontal {\n -webkit-transform: translate(50%, 50%);\n transform: translate(50%, 50%);\n}\n.bk-root .noUi-marker-horizontal.noUi-marker {\n margin-left: -1px;\n width: 2px;\n height: 5px;\n}\n.bk-root .noUi-marker-horizontal.noUi-marker-sub {\n height: 10px;\n}\n.bk-root .noUi-marker-horizontal.noUi-marker-large {\n height: 15px;\n}\n.bk-root .noUi-pips-vertical {\n padding: 0 10px;\n height: 100%;\n top: 0;\n left: 100%;\n}\n.bk-root .noUi-value-vertical {\n -webkit-transform: translate(0, -50%);\n transform: translate(0, -50%);\n padding-left: 25px;\n}\n.bk-root .noUi-rtl .noUi-value-vertical {\n -webkit-transform: translate(0, 50%);\n transform: translate(0, 50%);\n}\n.bk-root .noUi-marker-vertical.noUi-marker {\n width: 5px;\n height: 2px;\n margin-top: -1px;\n}\n.bk-root .noUi-marker-vertical.noUi-marker-sub {\n width: 10px;\n}\n.bk-root .noUi-marker-vertical.noUi-marker-large {\n width: 15px;\n}\n.bk-root .noUi-tooltip {\n display: block;\n position: absolute;\n border: 1px solid #D9D9D9;\n border-radius: 3px;\n background: #fff;\n color: #000;\n padding: 5px;\n text-align: center;\n white-space: nowrap;\n}\n.bk-root .noUi-horizontal .noUi-tooltip {\n -webkit-transform: translate(-50%, 0);\n transform: translate(-50%, 0);\n left: 50%;\n bottom: 120%;\n}\n.bk-root .noUi-vertical .noUi-tooltip {\n -webkit-transform: translate(0, -50%);\n transform: translate(0, -50%);\n top: 50%;\n right: 120%;\n}\n.bk-root .noUi-horizontal .noUi-origin > .noUi-tooltip {\n -webkit-transform: translate(50%, 0);\n transform: translate(50%, 0);\n left: auto;\n bottom: 10px;\n}\n.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip {\n -webkit-transform: translate(0, -18px);\n transform: translate(0, -18px);\n top: auto;\n right: 28px;\n}\n.bk-root .noUi-handle {\n cursor: grab;\n cursor: -webkit-grab;\n}\n.bk-root .noUi-handle.noUi-active {\n cursor: grabbing;\n cursor: -webkit-grabbing;\n}\n.bk-root .noUi-handle:after,\n.bk-root .noUi-handle:before {\n display: none;\n}\n.bk-root .noUi-tooltip {\n display: none;\n white-space: nowrap;\n}\n.bk-root .noUi-handle:hover .noUi-tooltip {\n display: block;\n}\n.bk-root .noUi-horizontal {\n width: 100%;\n height: 10px;\n}\n.bk-root .noUi-vertical {\n width: 10px;\n height: 100%;\n}\n.bk-root .noUi-horizontal .noUi-handle {\n width: 14px;\n height: 18px;\n right: -7px;\n top: -5px;\n}\n.bk-root .noUi-vertical .noUi-handle {\n width: 18px;\n height: 14px;\n right: -5px;\n top: -7px;\n}\n.bk-root .noUi-target.noUi-horizontal {\n margin: 5px 0px;\n}\n.bk-root .noUi-target.noUi-vertical {\n margin: 0px 5px;\n}\n"},n 427: function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default="\n.bk-root .bk-slider-title {\n white-space: nowrap;\n}\n.bk-root .bk-slider-value {\n font-weight: 600;\n}\n"},n 428: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1).__importDefault(e(186)),a=e(423);class d extends a.AbstractSliderView{}i.DateSliderView=d,d.__name__="DateSliderView";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour="tap",this.connected=[!0,!1]}static init_DateSlider(){this.prototype.default_view=d,this.override({format:"%d %b %Y"})}_formatter(e,t){return r.default(e,t)}}i.DateSlider=s,s.__name__="DateSlider",s.init_DateSlider()},n 429: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),_=e(430),n=r.__importStar(e(18));class s extends _.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.model.text}}i.DivView=s,s.__name__="DivView";class a extends _.Markup{constructor(e){super(e)}static init_Div(){this.prototype.default_view=s,this.define({render_as_text:[n.Boolean,!1]})}}i.Div=a,a.__name__="Div",a.init_Div()},n 430: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(217),n=e(72),l=i.__importStar(e(18)),r=e(472),_=e(431),c=i.__importDefault(e(432));class u extends r.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>{this.layout.invalidate_cache(),this.render(),this.root.compute_layout()})}styles(){return[…super.styles(),c.default]}_update_layout(){this.layout=new a.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:"inline-block"});this.markup_el=n.div({class:_.bk_clearfix,style:e}),this.el.appendChild(this.markup_el)}}s.MarkupView=u,u.__name__="MarkupView";class o extends r.Widget{constructor(e){super(e)}static init_Markup(){this.define({text:[l.String,""],style:[l.Any,{}]})}}s.Markup=o,o.__name__="Markup",o.init_Markup()},n 431: function _(e,c,f){Object.defineProperty(f,"__esModule",{value:!0}),f.bk_clearfix="bk-clearfix"},n 432: function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-clearfix:before,\n.bk-root .bk-clearfix:after {\n content: "";\n display: table;\n}\n.bk-root .bk-clearfix:after {\n clear: both;\n}\n’},n 433: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(404),o=e(313),_=e(72),d=n.__importStar(e(18)),l=e(8),r=e(173),u=e(281),c=e(282),h=n.__importDefault(e(284));class p extends s.AbstractButtonView{constructor(){super(…arguments),this._open=!1}styles(){return[…super.styles(),h.default]}render(){super.render();const e=_.div({class:[c.bk_caret,r.bk_down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(u.bk_dropdown_toggle),t.addEventListener("click",()=>this._toggle_menu()),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map((e,t)=>{if(null==e)return _.div({class:c.bk_divider});{const i=l.isString(e)?e:e[0],n=_.div({},i);return n.addEventListener("click",()=>this._item_click(t)),n}});this.menu=_.div({class:[c.bk_menu,r.bk_below]},t),this.el.appendChild(this.menu),_.undisplay(this.menu)}_show_menu(){if(!this._open){this._open=!0,_.display(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener("click",e),this._hide_menu())};document.addEventListener("click",e)}}_hide_menu(){this._open&&(this._open=!1,_.undisplay(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new o.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=l.isString(t)?t:t[1];l.isString(i)?this.model.trigger_event(new o.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__="DropdownView";class m extends s.AbstractButton{constructor(e){super(e)}static init_Dropdown(){this.prototype.default_view=p,this.define({split:[d.Boolean,!1],menu:[d.Array,[]]}),this.override({label:"Dropdown"})}get is_split(){return this.split}}i.Dropdown=m,m.__name__="Dropdown",m.init_Dropdown()},n 434: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e(1).__importStar(e(18)),s=e(472);class n extends s.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.width.change,()=>this.render())}render(){null==this.dialogEl&&(this.dialogEl=document.createElement("input"),this.dialogEl.type="file",this.dialogEl.multiple=this.model.multiple,this.dialogEl.onchange=()=>{const{files:e}=this.dialogEl;null!=e&&this.load_files(e)},this.el.appendChild(this.dialogEl)),null!=this.model.accept&&""!=this.model.accept&&(this.dialogEl.accept=this.model.accept),this.dialogEl.style.width="{this.model.width}px",this.dialogEl.disabled=this.model.disabled}async load_files(e){const t=[],i=[],l=[];let s;for(s=0;s<e.length;s++){i.push(e[s].name);const n=await this.readfile(e[s]),[,o,,a]=n.split(/[:;,]/,4);t.push(a),l.push(o)}this.model.multiple?(this.model.filename=i,this.model.mime_type=l,this.model.value=t):(this.model.filename=i[0],this.model.mime_type=l[0],this.model.value=t[0])}readfile(e){return new Promise((t,i)=>{const l=new FileReader;l.onload=()=>{var s;const{result:n}=l;null!=n?t(n):i(null!==(s=l.error)&&void 0!==s?s:new Error(`unable to read ‘${e.name}’`))},l.readAsDataURL(e)})}}i.FileInputView=n,n.__name__="FileInputView";class o extends s.Widget{constructor(e){super(e)}static init_FileInput(){this.prototype.default_view=n,this.define({value:[l.Any,""],mime_type:[l.Any,""],filename:[l.Any,""],accept:[l.String,""],multiple:[l.Boolean,!1]})}}i.FileInput=o,o.__name__="FileInput",o.init_FileInput()},n 435: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(72),l=e(8),o=i.__importStar(e(18)),c=e(410),r=e(412);class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!0,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll("option"))t.selected=e.has(t.value);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector("select:focus"),t=[];for(const e of this.el.querySelectorAll("option"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.MultiSelectView=h,h.__name__="MultiSelectView";class d extends c.InputWidget{constructor(e){super(e)}static init_MultiSelect(){this.prototype.default_view=h,this.define({value:[o.Array,[]],options:[o.Array,[]],size:[o.Number,4]})}}s.MultiSelect=d,d.__name__="MultiSelect",d.init_MultiSelect()},n 436: function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});const t=a(430),p=a(72);class s extends t.MarkupView{render(){super.render();const a=p.p({style:{margin:0}},this.model.text);this.markup_el.appendChild(a)}}r.ParagraphView=s,s.__name__="ParagraphView";class i extends t.Markup{constructor(a){super(a)}static init_Paragraph(){this.prototype.default_view=s}}r.Paragraph=i,i.__name__="Paragraph",i.init_Paragraph()},n 437: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(409);class r extends n.TextInputView{render(){super.render(),this.input_el.type="password"}}s.PasswordInputView=r,r.__name__="PasswordInputView";class p extends n.TextInput{constructor(e){super(e)}static init_PasswordInput(){this.prototype.default_view=r}}s.PasswordInput=p,p.__name__="PasswordInput",p.init_PasswordInput()},n 438: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e(1),s=l.__importDefault(e(439)),o=e(72),n=e(8),h=e(217),a=l.__importStar(e(18)),c=e(412),u=l.__importDefault(e(440)),d=e(410);class _ extends d.InputWidgetView{constructor(){super(…arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,()=>this.set_disabled());const{value:e,max_items:t,option_limit:i,delete_button:l,placeholder:s,options:o,name:n,title:h}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h],()=>this.render())}styles(){return[…super.styles(),u.default]}_update_layout(){this.layout=new h.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.select_el=o.select({multiple:!0,class:c.bk_input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.select_el);const e=new Set(this.model.value),t=this.model.options.map(t=>{let i,l;return n.isString(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}}),i=this.model.solid?"solid":"light",l="choices__item "+i,h="choices__button "+i,a={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:h}};null!=this.model.placeholder&&(a.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(a.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(a.renderChoiceLimit=this.model.option_limit),this.choice_el=new s.default(this.select_el,a);const u=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=u()&&this.root.invalidate_layout(),this._last_height=u(),this.select_el.addEventListener("change",()=>this.change_input())}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector("select:focus"),t=[];for(const e of this.el.querySelectorAll("option"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}i.MultiChoiceView=_,_.__name__="MultiChoiceView";class r extends d.InputWidget{constructor(e){super(e)}static init_MultiChoice(){this.prototype.default_view=_,this.define({value:[a.Array,[]],options:[a.Array,[]],max_items:[a.Number,null],delete_button:[a.Boolean,!0],placeholder:[a.String,null],option_limit:[a.Number,null],solid:[a.Boolean,!0]})}}i.MultiChoice=r,r.__name__="MultiChoice",r.init_MultiChoice()},n 439: function _(e,t,i){n /! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme /n var n,s;n=window,s=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/public/assets/scripts/",i(i.s=4)}([function(e,t,i){"use strict";var n=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===s}(e)}(e)},s="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return"function"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){"use strict";(function(e,n){var s,r=i(3);s="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){n /!n * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)n n * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)n * All Rights Reserved. Apache Software License 2.0n *n * http://www.apache.org/licenses/LICENSE-2.0n */n e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var r=i(2),o=i(8),a=i(0),c=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.caseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_,y=i.id,E=void 0===y?null:y,I=i.keys,S=void 0===I?[]:I,w=i.shouldSort,O=void 0===w||w,C=i.getFn,A=void 0===C?o:C,L=i.sortFn,T=void 0===L?function(e,t){return e.score-t.score}:L,x=i.tokenize,k=void 0!==x&&x,P=i.matchAllTokens,D=void 0!==P&&P,M=i.includeMatches,N=void 0!==M&&M,F=i.includeScore,j=void 0!==F&&F,K=i.verbose,R=void 0!==K&&K;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b,id:E,keys:S,includeMatches:N,includeScore:j,shouldSort:O,getFn:A,sortFn:T,verbose:R,tokenize:k,matchAllTokens:D},this.setCollection(t)}var t,i;return t=e,(i=[{key:"setCollection",value:function(e){return this.list=e,e}},{key:"search",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log(’———\nSearch pattern: "’.concat(e,’"’));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&"number"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:"_prepareSearchers",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n<s;n+=1)t.push(new r(i[n],this.options));return{tokenSearchers:t,fullSearcher:new r(e,this.options)}}},{key:"_search",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if("string"==typeof i[0]){for(var r=0,o=i.length;r<o;r+=1)this._analyze({key:"",value:i[r],record:r,index:r},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t});return{weights:null,results:s}}for(var a={},c=0,l=i.length;c<l;c+=1)for(var h=i[c],u=0,d=this.options.keys.length;u<d;u+=1){var p=this.options.keys[u];if("string"!=typeof p){if(a[p.name]={weight:1-p.weight||1},p.weight<=0||p.weight>1)throw new Error("Key weight has to be > 0 and <= 1");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:"_analyze",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if("string"==typeof r){this._log("\nKey: ".concat(""===i?"-":i));var y=d.search(r);if(this._log(‘Full text: "’.concat(r,’", score: ‘).concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S<h.length;S+=1){var w=h[S];this._log(’\nPattern: "’.concat(w.pattern,’"’));for(var O=!1,C=0;C<E.length;C+=1){var A=E[C],L=w.search(A),T={};L.isMatch?(T[A]=L.score,g=!0,O=!0,I.push(L.score)):(T[A]=1,this.options.matchAllTokens||I.push(1)),this._log(‘Token: "’.concat(A,’", score: ‘).concat(T[A]))}O&&(b+=1)}_=I[0];for(var x=I.length,k=1;k<x;k+=1)_+=I[k];_/=x,this._log("Token score average:",_)}var P=y.score;_>-1&&(P=(P+_)/2),this._log("Score average:",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log("\nCheck Matches: ".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N<F;N+=1)this._analyze({key:i,arrayIndex:N,value:r[N],record:o,index:c},{resultMap:m,results:v,tokenSearchers:h,fullSearcher:d})}}},{key:"_computeScore",value:function(e,t){this._log("\n\nComputing score:\n");for(var i=0,n=t.length;i<n;i+=1){for(var s=t[i].output,r=s.length,o=1,a=1,c=0;c<r;c+=1){var l=e?e[s[c].key].weight:1,h=(1===l?s[c].score:s[c].score||.001)*l;1!==l?a=Math.min(a,h):(s[c].nScore=h,o*=h)}t[i].score=1===a?o:a,this._log(t[i])}}},{key:"_sort",value:function(e){this._log("\n\nSorting…."),e.sort(this.options.sortFn)}},{key:"_format",value:function(e){var t=[];if(this.options.verbose){var i=[];this._log("\n\nOutput:\n\n",JSON.stringify(e,(function(e,t){if("object"===n(t)&&null!==t){if(-1!==i.indexOf(t))return;i.push(t)}return t}))),i=null}var s=[];this.options.includeMatches&&s.push((function(e,t){var i=e.output;t.matches=[];for(var n=0,s=i.length;n<s;n+=1){var r=i[n];if(0!==r.matchedIndices.length){var o={indices:r.matchedIndices,value:r.value};r.key&&(o.key=r.key),r.hasOwnProperty("arrayIndex")&&r.arrayIndex>-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;r<o;r+=1){var a=e[r];if(this.options.id&&(a.item=this.options.getFn(a.item,this.options.id)[0]),s.length){for(var c={item:a.item},l=0,h=s.length;l<h;l+=1)s[l](a,c);t.push(c)}else t.push(a.item)}return t}},{key:"_log",value:function(){var e;this.options.verbose&&(e=console).log.apply(e,arguments)}}])&&s(t.prototype,i),e}();e.exports=c},function(e,t,i){function n(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var s=i(3),r=i(4),o=i(7),a=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.isCaseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b},this.pattern=this.options.isCaseSensitive?t:t.toLowerCase(),this.pattern.length<=u&&(this.patternAlphabet=o(this.pattern))}var t,i;return t=e,(i=[{key:"search",value:function(e){if(this.options.isCaseSensitive||(e=e.toLowerCase()),this.pattern===e)return{isMatch:!0,score:0,matchedIndices:[[0,e.length-1]]};var t=this.options,i=t.maxPatternLength,n=t.tokenSeparator;if(this.pattern.length>i)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),e}();e.exports=a},function(e,t){var i=/[\-\[\]\/\{\}\(\)\\+\?\.\\\^\$\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,"\\$&").replace(n,"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c<l;c+=1){var h=r[c];a.push([e.indexOf(h),h.length-1])}return{score:o?.5:1,isMatch:o,matchedIndices:a}}},function(e,t,i){var n=i(5),s=i(6);e.exports=function(e,t,i,r){for(var o=r.location,a=void 0===o?0:o,c=r.distance,l=void 0===c?100:c,h=r.threshold,u=void 0===h?.6:h,d=r.findAllMatches,p=void 0!==d&&d,m=r.minMatchCharLength,f=void 0===m?1:m,v=a,g=e.length,_=u,b=e.indexOf(t,v),y=t.length,E=[],I=0;I<g;I+=1)E[I]=0;if(-1!==b){var S=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});if(_=Math.min(S,_),-1!==(b=e.lastIndexOf(t,v+y))){var w=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});_=Math.min(w,_)}}b=-1;for(var O=[],C=1,A=y+g,L=1<<y-1,T=0;T<y;T+=1){for(var x=0,k=A;x<k;)n(t,{errors:T,currentLocation:v+k,expectedLocation:v,distance:l})<=_?x=k:A=k,k=Math.floor((A-x)/2+x);A=k;var P=Math.max(1,v-k+1),D=p?g:Math.min(v+k,g)+y,M=Array(D+2);M[D+1]=(1<<T)-1;for(var N=D;N>=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r<o;r+=1){var a=e[r];a&&-1===n?n=r:a||-1===n||((s=r-1)-n+1>=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n<i;n+=1)t[e.charAt(n)]=0;for(var s=0;s<i;s+=1)t[e.charAt(s)]|=1<<i-s-1;return t}},function(e,t,i){var n=i(0);e.exports=function(e,t){return function e(t,i,s){if(i){var r=i.indexOf("."),o=i,a=null;-1!==r&&(o=i.slice(0,r),a=i.slice(r+1));var c=t[o];if(null!=c)if(a||"string"!=typeof c&&"number"!=typeof c)if(n(c))for(var l=0,h=c.length;l<h;l+=1)e(c[l],a,s);else a&&e(c,a,s);else s.push(c.toString())}else s.push(t);return s}(e,t,[])}}])},function(e,t,i){"use strict";function n(e){var t,i=e.Symbol;return"function"==typeof i?i.observable?t=i.observable:(t=i("observable"),i.observable=t):t="@@observable",t}i.d(t,"a",(function(){return n}))},function(e,t,i){e.exports=i(7)},function(e,t){var i;i=function(){return this}();try{i=i||new Function("return this")()}catch(e){"object"==typeof window&&(i=window)}e.exports=i},function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},function(e,t,i){"use strict";i.r(t);var n=i(2),s=i.n(n),r=i(0),o=i.n(r),a=i(1),c=function(){return Math.random().toString(36).substring(7).split("").join(".")},l={INIT:"@@redux/INIT"+c(),REPLACE:"@@redux/REPLACE"+c(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+c()}};function h(e){if("object"!=typeof e||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function u(e,t,i){var n;if("function"==typeof t&&"function"==typeof i||"function"==typeof i&&"function"==typeof arguments[3])throw new Error("It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function.");if("function"==typeof t&&void 0===i&&(i=t,t=void 0),void 0!==i){if("function"!=typeof i)throw new Error("Expected the enhancer to be a function.");return i(u)(e,t)}if("function"!=typeof e)throw new Error("Expected the reducer to be a function.");var s=e,r=t,o=[],c=o,d=!1;function p(){c===o&&(c=o.slice())}function m(){if(d)throw new Error("You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");return r}function f(e){if("function"!=typeof e)throw new Error("Expected the listener to be a function.");if(d)throw new Error("You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");var t=!0;return p(),c.push(e),function(){if(t){if(d)throw new Error("You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");t=!1,p();var i=c.indexOf(e);c.splice(i,1)}}}function v(e){if(!h(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(void 0===e.type)throw new Error(‘Actions may not have an undefined "type" property. Have you misspelled a constant?’);if(d)throw new Error("Reducers may not dispatch actions.");try{d=!0,r=s(r,e)}finally{d=!1}for(var t=o=c,i=0;i<t.length;i++)(0,t[i])();return e}function g(e){if("function"!=typeof e)throw new Error("Expected the nextReducer to be a function.");s=e,v({type:l.REPLACE})}function _(){var e,t=f;return(e={subscribe:function(e){if("object"!=typeof e||null===e)throw new TypeError("Expected the observer to be an object.");function i(){e.next&&e.next(m())}return i(),{unsubscribe:t(i)}}})[a.a]=function(){return this},e}return v({type:l.INIT}),(n={dispatch:v,subscribe:f,getState:m,replaceReducer:g})[a.a]=_,n}function d(e,t){var i=t&&t.type;return"Given "+(i&&’action "’+String(i)+’"’||"an action")+’, reducer "’+e+’" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.’}var p,m=[],f=[],v=[],g={loading:!1},_=function(e,t){switch(void 0===e&&(e=g),t.type){case"SET_IS_LOADING":return{loading:t.isLoading};default:return e}},b=function(e){return Array.from({length:e},(function(){return(e=0,t=36,Math.floor(Math.random()*(t-e)+e)).toString(36);var e,t})).join("")},y=function(e){return Object.prototype.toString.call(e).slice(8,-1)},E=function(e,t){return null!=t&&y(t)===e},I=function(e){return"string"!=typeof e?e:e.replace(/&/g,"&").replace(/>/g,"&rt;").replace(/</g,"<").replace(/"/g,""")},S=(p=document.createElement("div"),function(e){var t=e.trim();p.innerHTML=t;for(var i=p.children[0];p.firstChild;)p.removeChild(p.firstChild);return i}),w=function(e,t){return e.score-t.score},O=function(e){return JSON.parse(JSON.stringify(e))},C=function(e){for(var t=Object.keys(e),i={},n=0;n<t.length;n++){var s=t[n];"function"==typeof e[s]&&(i[s]=e[s])}var r,o=Object.keys(i);try{!function(e){Object.keys(e).forEach((function(t){var i=e[t];if(void 0===i(void 0,{type:l.INIT}))throw new Error(‘Reducer "’+t+"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don’t want to set a value for this reducer, you can use null instead of undefined.");if(void 0===i(void 0,{type:l.PROBE_UNKNOWN_ACTION()}))throw new Error(‘Reducer "’+t+"\" returned undefined when probed with a random type. Don’t try to handle "+l.INIT+’ or other actions in "redux/" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.’)}))}(i)}catch(e){r=e}return function(e,t){if(void 0===e&&(e={}),r)throw r;for(var n=!1,s={},a=0;a<o.length;a++){var c=o[a],l=i[c],h=e[c],u=l(h,t);if(void 0===u){var p=d(c,t);throw new Error(p)}s[c]=u,n=n||u!==h}return n?s:e}}({items:function(e,t){switch(void 0===e&&(e=m),t.type){case"ADD_ITEM":return[].concat(e,[{id:t.id,choiceId:t.choiceId,groupId:t.groupId,value:t.value,label:t.label,active:!0,highlighted:!1,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]).map((function(e){var t=e;return t.highlighted=!1,t}));case"REMOVE_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.active=!1),i}));case"HIGHLIGHT_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.highlighted=t.highlighted),i}));default:return e}},groups:function(e,t){switch(void 0===e&&(e=f),t.type){case"ADD_GROUP":return[].concat(e,[{id:t.id,value:t.value,active:t.active,disabled:t.disabled}]);case"CLEAR_CHOICES":return[];default:return e}},choices:function(e,t){switch(void 0===e&&(e=v),t.type){case"ADD_CHOICE":return[].concat(e,[{id:t.id,elementId:t.elementId,groupId:t.groupId,value:t.value,label:t.label||t.value,disabled:t.disabled||!1,selected:!1,active:!0,score:9999,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]);case"ADD_ITEM":return t.activateOptions?e.map((function(e){var i=e;return i.active=t.active,i})):t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case"REMOVE_ITEM":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case"FILTER_CHOICES":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case"ACTIVATE_CHOICES":return e.map((function(e){var i=e;return i.active=t.active,i}));case"CLEAR_CHOICES":return v;default:return e}},general:_}),A=function(e,t){var i=e;if("CLEAR_ALL"===t.type)i=void 0;else if("RESET_TO"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var T=function(){function e(){this._store=u(A,window.__REDUX_DEVTOOLS_EXTENSION__&&window.__REDUX_DEVTOOLS_EXTENSION__())}var t,i,n,s=e.prototype;return s.subscribe=function(e){this._store.subscribe(e)},s.dispatch=function(e){this._store.dispatch(e)},s.isLoading=function(){return this.state.general.loading},s.getChoiceById=function(e){return this.activeChoices.find((function(t){return t.id===parseInt(e,10)}))},s.getGroupById=function(e){return this.groups.find((function(t){return t.id===e}))},t=e,(i=[{key:"state",get:function(){return this._store.getState()}},{key:"items",get:function(){return this.state.items}},{key:"activeItems",get:function(){return this.items.filter((function(e){return!0===e.active}))}},{key:"highlightedActiveItems",get:function(){return this.items.filter((function(e){return e.active&&e.highlighted}))}},{key:"choices",get:function(){return this.state.choices}},{key:"activeChoices",get:function(){return this.choices.filter((function(e){return!0===e.active}))}},{key:"selectableChoices",get:function(){return this.choices.filter((function(e){return!0!==e.disabled}))}},{key:"searchableChoices",get:function(){return this.selectableChoices.filter((function(e){return!0!==e.placeholder}))}},{key:"placeholderChoice",get:function(){return[].concat(this.choices).reverse().find((function(e){return!0===e.placeholder}))}},{key:"groups",get:function(){return this.state.groups}},{key:"activeGroups",get:function(){var e=this.groups,t=this.choices;return e.filter((function(e){var i=!0===e.active&&!1===e.disabled,n=t.some((function(e){return!0===e.active&&!1===e.disabled}));return i&&n}),[])}}])&&L(t.prototype,i),n&&L(t,n),e}();function x(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var k=function(){function e(e){var t=e.element,i=e.type,n=e.classNames;this.element=t,this.classNames=n,this.type=i,this.isActive=!1}var t,i,n,s=e.prototype;return s.getChild=function(e){return this.element.querySelector(e)},s.show=function(){return this.element.classList.add(this.classNames.activeState),this.element.setAttribute("aria-expanded","true"),this.isActive=!0,this},s.hide=function(){return this.element.classList.remove(this.classNames.activeState),this.element.setAttribute("aria-expanded","false"),this.isActive=!1,this},t=e,(i=[{key:"distanceFromTopWindow",get:function(){return this.element.getBoundingClientRect().bottom}}])&&x(t.prototype,i),n&&x(t,n),e}(),P={items:[],choices:[],silent:!1,renderChoiceLimit:-1,maxItemCount:-1,addItems:!0,addItemFilter:null,removeItems:!0,removeItemButton:!1,editItems:!1,duplicateItemsAllowed:!0,delimiter:",",paste:!0,searchEnabled:!0,searchChoices:!0,searchFloor:1,searchResultLimit:4,searchFields:["label","value"],position:"auto",resetScrollPosition:!0,shouldSort:!0,shouldSortItems:!1,sorter:function(e,t){var i=e.value,n=e.label,s=void 0===n?i:n,r=t.value,o=t.label,a=void 0===o?r:o;return s.localeCompare(a,[],{sensitivity:"base",ignorePunctuation:!0,numeric:!0})},placeholder:!0,placeholderValue:null,searchPlaceholderValue:null,prependValue:null,appendValue:null,renderSelectedChoices:"auto",loadingText:"Loading…",noResultsText:"No results found",noChoicesText:"No choices to choose from",itemSelectText:"Press to select",uniqueItemText:"Only unique values can be added",customAddItemText:"Only values matching specific conditions can be added",addItemText:function(e){return’Press Enter to add <b>"’+I(e)+’"</b>’},maxItemText:function(e){return"Only "+e+" values can be added"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:"choices",containerInner:"choices__inner",input:"choices__input",inputCloned:"choices__input–cloned",list:"choices__list",listItems:"choices__list–multiple",listSingle:"choices__list–single",listDropdown:"choices__list–dropdown",item:"choices__item",itemSelectable:"choices__item–selectable",itemDisabled:"choices__item–disabled",itemChoice:"choices__item–choice",placeholder:"choices__placeholder",group:"choices__group",groupHeading:"choices__heading",button:"choices__button",activeState:"is-active",focusState:"is-focused",openState:"is-open",disabledState:"is-disabled",highlightedState:"is-highlighted",selectedState:"is-selected",flippedState:"is-flipped",loadingState:"is-loading",noResults:"has-no-results",noChoices:"has-no-choices"}},D="showDropdown",M="hideDropdown",N="change",F="choice",j="search",K="addItem",R="removeItem",H="highlightItem",B="highlightChoice",V="ADD_CHOICE",G="FILTER_CHOICES",q="ACTIVATE_CHOICES",U="CLEAR_CHOICES",z="ADD_GROUP",W="ADD_ITEM",X="REMOVE_ITEM",$="HIGHLIGHT_ITEM",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener("focus",this._onFocus),this.element.addEventListener("blur",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener("focus",this._onFocus),this.element.removeEventListener("blur",this._onBlur)},t.shouldFlip=function(e){if("number"!=typeof e)return!1;var t=!1;return"auto"===this.position?t=!window.matchMedia("(min-height: "+(e+1)+"px)").matches:"top"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},t.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute("aria-expanded","true"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute("aria-expanded","false"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute("aria-disabled"),"select-one"===this.type&&this.element.setAttribute("tabindex","0"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute("aria-disabled","true"),"select-one"===this.type&&this.element.setAttribute("tabindex","-1"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement("div")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute("aria-busy","true"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute("aria-busy"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function oe(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var ae=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.preventPaste;this.element=t,this.type=i,this.classNames=n,this.preventPaste=s,this.isFocussed=this.element===document.activeElement,this.isDisabled=t.disabled,this._onPaste=this._onPaste.bind(this),this._onInput=this._onInput.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t,i,n,s=e.prototype;return s.addEventListeners=function(){this.element.addEventListener("paste",this._onPaste),this.element.addEventListener("input",this._onInput,{passive:!0}),this.element.addEventListener("focus",this._onFocus,{passive:!0}),this.element.addEventListener("blur",this._onBlur,{passive:!0})},s.removeEventListeners=function(){this.element.removeEventListener("input",this._onInput,{passive:!0}),this.element.removeEventListener("paste",this._onPaste),this.element.removeEventListener("focus",this._onFocus,{passive:!0}),this.element.removeEventListener("blur",this._onBlur,{passive:!0})},s.enable=function(){this.element.removeAttribute("disabled"),this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.isDisabled=!0},s.focus=function(){this.isFocussed||this.element.focus()},s.blur=function(){this.isFocussed&&this.element.blur()},s.clear=function(e){return void 0===e&&(e=!0),this.element.value&&(this.element.value=""),e&&this.setWidth(),this},s.setWidth=function(){var e=this.element,t=e.style,i=e.value,n=e.placeholder;t.minWidth=n.length+1+"ch",t.width=i.length+1+"ch"},s.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},s.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},s._onInput=function(){"select-one"!==this.type&&this.setWidth()},s._onPaste=function(e){this.preventPaste&&e.preventDefault()},s._onFocus=function(){this.isFocussed=!0},s._onBlur=function(){this.isFocussed=!1},t=e,(i=[{key:"placeholder",set:function(e){this.element.placeholder=e}},{key:"value",get:function(){return I(this.element.value)},set:function(e){this.element.value=e}}])&&oe(t.prototype,i),n&&oe(t,n),e}(),ce=function(){function e(e){var t=e.element;this.element=t,this.scrollPos=this.element.scrollTop,this.height=this.element.offsetHeight}var t=e.prototype;return t.clear=function(){this.element.innerHTML=""},t.append=function(e){this.element.appendChild(e)},t.getChild=function(e){return this.element.querySelector(e)},t.hasChildren=function(){return this.element.hasChildNodes()},t.scrollToTop=function(){this.element.scrollTop=0},t.scrollToChildElement=function(e,t){var i=this;if(e){var n=this.element.offsetHeight,s=this.element.scrollTop+n,r=e.offsetHeight,o=e.offsetTop+r,a=t>0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),n<e&&(s=!0)):(this._scrollUp(n,4,e),n>e&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function le(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var he=function(){function e(e){var t=e.element,i=e.classNames;if(this.element=t,this.classNames=i,!(t instanceof HTMLInputElement||t instanceof HTMLSelectElement))throw new TypeError("Invalid element passed");this.isDisabled=!1}var t,i,n,s=e.prototype;return s.conceal=function(){this.element.classList.add(this.classNames.input),this.element.hidden=!0,this.element.tabIndex=-1;var e=this.element.getAttribute("style");e&&this.element.setAttribute("data-choice-orig-style",e),this.element.setAttribute("data-choice","active")},s.reveal=function(){this.element.classList.remove(this.classNames.input),this.element.hidden=!1,this.element.removeAttribute("tabindex");var e=this.element.getAttribute("data-choice-orig-style");e?(this.element.removeAttribute("data-choice-orig-style"),this.element.setAttribute("style",e)):this.element.removeAttribute("style"),this.element.removeAttribute("data-choice"),this.element.value=this.element.value},s.enable=function(){this.element.removeAttribute("disabled"),this.element.disabled=!1,this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.element.disabled=!0,this.isDisabled=!0},s.triggerEvent=function(e,t){!function(e,t,i){void 0===i&&(i=null);var n=new CustomEvent(t,{detail:i,bubbles:!0,cancelable:!0});e.dispatchEvent(n)}(this.element,e,t)},t=e,(i=[{key:"isActive",get:function(){return"active"===this.element.dataset.choice}},{key:"dir",get:function(){return this.element.dir}},{key:"value",get:function(){return this.element.value},set:function(e){this.element.value=e}}])&&le(t.prototype,i),n&&le(t,n),e}();function ue(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var de=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.delimiter;return(i=e.call(this,{element:n,classNames:s})||this).delimiter=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,n=o,(s=[{key:"value",get:function(){return this.element.value},set:function(e){var t=e.map((function(e){return e.value})).join(this.delimiter);this.element.setAttribute("value",t),this.element.value=t}}])&&ue(n.prototype,s),r&&ue(n,r),o}(he);function pe(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var me=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.template;return(i=e.call(this,{element:n,classNames:s})||this).template=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,o.prototype.appendDocFragment=function(e){this.element.innerHTML="",this.element.appendChild(e)},n=o,(s=[{key:"placeholderOption",get:function(){return this.element.querySelector(‘option[value=""]’)||this.element.querySelector("option[placeholder]")}},{key:"optionGroups",get:function(){return Array.from(this.element.getElementsByTagName("OPTGROUP"))}},{key:"options",get:function(){return Array.from(this.element.options)},set:function(e){var t=this,i=document.createDocumentFragment();e.forEach((function(e){return n=e,s=t.template(n),void i.appendChild(s);var n,s})),this.appendDocFragment(i)}}])&&pe(n.prototype,s),r&&pe(n,r),o}(he),fe={containerOuter:function(e,t,i,n,s,r){var o=e.containerOuter,a=Object.assign(document.createElement("div"),{className:o});return a.dataset.type=r,t&&(a.dir=t),n&&(a.tabIndex=0),i&&(a.setAttribute("role",s?"combobox":"listbox"),s&&a.setAttribute("aria-autocomplete","list")),a.setAttribute("aria-haspopup","true"),a.setAttribute("aria-expanded","false"),a},containerInner:function(e){var t=e.containerInner;return Object.assign(document.createElement("div"),{className:t})},itemList:function(e,t){var i=e.list,n=e.listSingle,s=e.listItems;return Object.assign(document.createElement("div"),{className:i+" "+(t?n:s)})},placeholder:function(e,t){var i=e.placeholder;return Object.assign(document.createElement("div"),{className:i,innerHTML:t})},item:function(e,t,i){var n=e.item,s=e.button,r=e.highlightedState,o=e.itemSelectable,a=e.placeholder,c=t.id,l=t.value,h=t.label,u=t.customProperties,d=t.active,p=t.disabled,m=t.highlighted,f=t.placeholder,v=Object.assign(document.createElement("div"),{className:n,innerHTML:h});if(Object.assign(v.dataset,{item:"",id:c,value:l,customProperties:u}),d&&v.setAttribute("aria-selected","true"),p&&v.setAttribute("aria-disabled","true"),f&&v.classList.add(a),v.classList.add(m?r:o),i){p&&v.classList.remove(o),v.dataset.deletable="";var g=Object.assign(document.createElement("button"),{type:"button",className:s,innerHTML:"Remove item"});g.setAttribute("aria-label","Remove item: ‘"+l+"’"),g.dataset.button="",v.appendChild(g)}return v},choiceList:function(e,t){var i=e.list,n=Object.assign(document.createElement("div"),{className:i});return t||n.setAttribute("aria-multiselectable","true"),n.setAttribute("role","listbox"),n},choiceGroup:function(e,t){var i=e.group,n=e.groupHeading,s=e.itemDisabled,r=t.id,o=t.value,a=t.disabled,c=Object.assign(document.createElement("div"),{className:i+" "+(a?s:"")});return c.setAttribute("role","group"),Object.assign(c.dataset,{group:"",id:r,value:o}),a&&c.setAttribute("aria-disabled","true"),c.appendChild(Object.assign(document.createElement("div"),{className:n,innerHTML:o})),c},choice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.itemSelectable,o=e.selectedState,a=e.itemDisabled,c=e.placeholder,l=t.id,h=t.value,u=t.label,d=t.groupId,p=t.elementId,m=t.disabled,f=t.selected,v=t.placeholder,g=Object.assign(document.createElement("div"),{id:p,innerHTML:u,className:n+" "+s});return f&&g.classList.add(o),v&&g.classList.add(c),g.setAttribute("role",d>0?"treeitem":"option"),Object.assign(g.dataset,{choice:"",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled="",g.setAttribute("aria-disabled","true")):(g.classList.add(r),g.dataset.choiceSelectable=""),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement("input"),{type:"text",className:i+" "+n,autocomplete:"off",autocapitalize:"off",spellcheck:!1});return s.setAttribute("role","textbox"),s.setAttribute("aria-autocomplete","list"),s.setAttribute("aria-label",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement("div");return n.classList.add(t,i),n.setAttribute("aria-expanded","false"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i="");var a=[n,s];return"no-choices"===i?a.push(o):"no-results"===i&&a.push(r),Object.assign(document.createElement("div"),{innerHTML:t,className:a.join(" ")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},ve=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ge=function(e,t){return{type:$,id:e,highlighted:t}},_e=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},be=function(e){return{type:"SET_IS_LOADING",isLoading:e}};function ye(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var Ee="-ms-scroll-limit"in document.documentElement.style&&"-ms-ime-align"in document.documentElement.style,Ie={},Se=function(){var e,t,i;function n(e,t){var i=this;void 0===e&&(e="[data-choice]"),void 0===t&&(t={}),this.config=o.a.all([P,n.defaults.options,t],{arrayMerge:function(e,t){return[].concat(t)}});var s,r,a,c,l=(s=this.config,r=P,a=Object.keys(s).sort(),c=Object.keys(r).sort(),a.filter((function(e){return c.indexOf(e)<0})));l.length&&console.warn("Unknown config option(s) passed",l.join(", "));var h="string"==typeof e?document.querySelector(e):e;if(!(h instanceof HTMLInputElement||h instanceof HTMLSelectElement))throw TypeError("Expected one of the following types text|select-one|select-multiple");if(this._isTextElement="text"===h.type,this._isSelectOneElement="select-one"===h.type,this._isSelectMultipleElement="select-multiple"===h.type,this._isSelectElement=this._isSelectOneElement||this._isSelectMultipleElement,this.config.searchEnabled=this._isSelectMultipleElement||this.config.searchEnabled,["auto","always"].includes(this.config.renderSelectedChoices)||(this.config.renderSelectedChoices="auto"),t.addItemFilter&&"function"!=typeof t.addItemFilter){var u=t.addItemFilter instanceof RegExp?t.addItemFilter:new RegExp(t.addItemFilter);this.config.addItemFilter=u.test.bind(u)}if(this._isTextElement?this.passedElement=new de({element:h,classNames:this.config.classNames,delimiter:this.config.delimiter}):this.passedElement=new me({element:h,classNames:this.config.classNames,template:function(e){return i._templates.option(e)}}),this.initialised=!1,this._store=new T,this._initialState={},this._currentState={},this._prevState={},this._currentValue="",this._canSearch=this.config.searchEnabled,this._isScrollingOnIe=!1,this._highlightPosition=0,this._wasTap=!0,this._placeholderValue=this._generatePlaceholderValue(),this._baseId=function(e,t){var i=e.id||e.name&&e.name+"-"+b(2)||b(4);return i=t+"-"+(i=i.replace(/(:|\.|\[|\]|,)/g,""))}(this.passedElement.element,"choices-"),this._direction=this.passedElement.dir,!this._direction){var d=window.getComputedStyle(this.passedElement.element).direction;d!==window.getComputedStyle(document.documentElement).direction&&(this._direction=d)}if(this._idNames={itemChoice:"item-choice"},this._presetGroups=this.passedElement.optionGroups,this._presetOptions=this.passedElement.options,this._presetChoices=this.config.choices,this._presetItems=this.config.items,this.passedElement.value&&(this._presetItems=this._presetItems.concat(this.passedElement.value.split(this.config.delimiter))),this.passedElement.options&&this.passedElement.options.forEach((function(e){i._presetChoices.push({value:e.value,label:e.innerHTML,selected:e.selected,disabled:e.disabled||e.parentNode.disabled,placeholder:""===e.value||e.hasAttribute("placeholder"),customProperties:e.getAttribute("data-custom-properties")})})),this._render=this._render.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this),this._onKeyUp=this._onKeyUp.bind(this),this._onKeyDown=this._onKeyDown.bind(this),this._onClick=this._onClick.bind(this),this._onTouchMove=this._onTouchMove.bind(this),this._onTouchEnd=this._onTouchEnd.bind(this),this._onMouseDown=this._onMouseDown.bind(this),this._onMouseOver=this._onMouseOver.bind(this),this._onFormReset=this._onFormReset.bind(this),this._onAKey=this._onAKey.bind(this),this._onEnterKey=this._onEnterKey.bind(this),this._onEscapeKey=this._onEscapeKey.bind(this),this._onDirectionKey=this._onDirectionKey.bind(this),this._onDeleteKey=this._onDeleteKey.bind(this),this.passedElement.isActive)return this.config.silent||console.warn("Trying to initialise Choices on element already initialised"),void(this.initialised=!0);this.init()}e=n,i=[{key:"defaults",get:function(){return Object.preventExtensions({get options(){return Ie},get templates(){return fe}})}}],(t=null)&&ye(e.prototype,t),i&&ye(e,i);var r=n.prototype;return r.init=function(){if(!this.initialised){this._createTemplates(),this._createElements(),this._createStructure(),this._initialState=O(this._store.state),this._store.subscribe(this._render),this._render(),this._addEventListeners(),(!this.config.addItems||this.passedElement.element.hasAttribute("disabled"))&&this.disable(),this.initialised=!0;var e=this.config.callbackOnInit;e&&"function"==typeof e&&e.call(this)}},r.destroy=function(){this.initialised&&(this._removeEventListeners(),this.passedElement.reveal(),this.containerOuter.unwrap(this.passedElement.element),this.clearStore(),this._isSelectElement&&(this.passedElement.options=this._presetOptions),this._templates=null,this.initialised=!1)},r.enable=function(){return this.passedElement.isDisabled&&this.passedElement.enable(),this.containerOuter.isDisabled&&(this._addEventListeners(),this.input.enable(),this.containerOuter.enable()),this},r.disable=function(){return this.passedElement.isDisabled||this.passedElement.disable(),this.containerOuter.isDisabled||(this._removeEventListeners(),this.input.disable(),this.containerOuter.disable()),this},r.highlightItem=function(e,t){if(void 0===t&&(t=!0),!e)return this;var i=e.id,n=e.groupId,s=void 0===n?-1:n,r=e.value,o=void 0===r?"":r,a=e.label,c=void 0===a?"":a,l=s>=0?this._store.getGroupById(s):null;return this._store.dispatch(ge(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?"":s,o=e.label,a=void 0===o?"":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ge(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t="value"),void 0===i&&(i="label"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError("setChoices was called on a non-initialized instance of Choices");if(!this._isSelectElement)throw new TypeError("setChoices can’t be used with INPUT based Choices");if("string"!=typeof t||!t)throw new TypeError("value parameter must be a name of ‘value’ field in passed objects");if(n&&this.clearChoices(),"function"==typeof e){var r=e(this);if("function"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(".setChoices first argument function must return either array of choices or Promise, got: "+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(".setChoices must be called either with array of choices with a function resulting into Promise of array of choices");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:"CLEAR_ALL"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(ve(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate("notice",a.notice))}else{var c,l;this._isSearching?(l="function"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate("notice",l,"no-results")):(l="function"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate("notice",l,"no-choices")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&("always"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate("choiceGroup",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if("auto"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate("choice",e,n.config.itemSelectText);t.appendChild(i)}},h=e;"auto"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v<m;v+=1)f[v]&&l(f[v]);return t},r._createItemsFragment=function(e,t){var i=this;void 0===t&&(t=document.createDocumentFragment());var n=this.config,s=n.shouldSortItems,r=n.sorter,o=n.removeItemButton;return s&&!this._isSelectOneElement&&e.sort(r),this._isTextElement?this.passedElement.value=e:this.passedElement.options=e,e.forEach((function(e){var n=i._getTemplate("item",e,o);t.appendChild(n)})),t},r._triggerChange=function(e){null!=e&&this.passedElement.triggerEvent(N,{value:e})},r._selectPlaceholderChoice=function(){var e=this._store.placeholderChoice;e&&(this._addItem({value:e.value,label:e.label,choiceId:e.id,groupId:e.groupId,placeholder:e.placeholder}),this._triggerChange(e.value))},r._handleButtonAction=function(e,t){if(e&&t&&this.config.removeItems&&this.config.removeItemButton){var i=t.parentNode.getAttribute("data-id"),n=e.find((function(e){return e.id===parseInt(i,10)}));this._removeItem(n),this._triggerChange(n.value),this._isSelectOneElement&&this._selectPlaceholderChoice()}},r._handleItemAction=function(e,t,i){var n=this;if(void 0===i&&(i=!1),e&&t&&this.config.removeItems&&!this._isSelectOneElement){var s=t.getAttribute("data-id");e.forEach((function(e){e.id!==parseInt(s,10)||e.highlighted?!i&&e.highlighted&&n.unhighlightItem(e):n.highlightItem(e)})),this.input.focus()}},r._handleChoiceAction=function(e,t){if(e&&t){var i=t.dataset.id,n=this._store.getChoiceById(i);if(n){var s=e[0]&&e[0].keyCode?e[0].keyCode:null,r=this.dropdown.isActive;n.keyCode=s,this.passedElement.triggerEvent(F,{choice:n}),n.selected||n.disabled||this._canAddItem(e,n.value).response&&(this._addItem({value:n.value,label:n.label,choiceId:n.id,groupId:n.groupId,customProperties:n.customProperties,placeholder:n.placeholder,keyCode:n.keyCode}),this._triggerChange(n.value)),this.clearInput(),r&&this._isSelectOneElement&&(this.hideDropdown(!0),this.containerOuter.focus())}}},r._handleBackspace=function(e){if(this.config.removeItems&&e){var t=e[e.length-1],i=e.some((function(e){return e.highlighted}));this.config.editItems&&!i&&t?(this.input.value=t.value,this.input.setWidth(),this._removeItem(t),this._triggerChange(t.value)):(i||this.highlightItem(t,!1),this.removeHighlightedItems(!0))}},r._startLoading=function(){this._store.dispatch(be(!0))},r._stopLoading=function(){this._store.dispatch(be(!1))},r._handleLoadingState=function(e){void 0===e&&(e=!0);var t=this.itemList.getChild("."+this.config.classNames.placeholder);e?(this.disable(),this.containerOuter.addLoadingState(),this._isSelectOneElement?t?t.innerHTML=this.config.loadingText:(t=this._getTemplate("placeholder",this.config.loadingText),this.itemList.append(t)):this.input.placeholder=this.config.loadingText):(this.enable(),this.containerOuter.removeLoadingState(),this._isSelectOneElement?t.innerHTML=this._placeholderValue||"":this.input.placeholder=this._placeholderValue||"")},r._handleSearch=function(e){if(e&&this.input.isFocussed){var t=this._store.choices,i=this.config,n=i.searchFloor,s=i.searchChoices,r=t.some((function(e){return!e.active}));if(e&&e.length>=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(ve(!0)))}},r._canAddItem=function(e,t){var i=!0,n="function"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i="value"),e.some((function(e){return"string"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n="function"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n="function"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&"function"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n="function"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t="string"==typeof e?e.trim():e,i="string"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+" ")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.addEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.addEventListener("mousedown",this._onMouseDown,!0),e.addEventListener("click",this._onClick,{passive:!0}),e.addEventListener("touchmove",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener("mouseover",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener("focus",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener("blur",this._onBlur,{passive:!0})),this.input.element.addEventListener("keyup",this._onKeyUp,{passive:!0}),this.input.element.addEventListener("focus",this._onFocus,{passive:!0}),this.input.element.addEventListener("blur",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener("reset",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.removeEventListener("mousedown",this._onMouseDown,!0),e.removeEventListener("click",this._onClick),e.removeEventListener("touchmove",this._onTouchMove),this.dropdown.element.removeEventListener("mouseover",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener("focus",this._onFocus),this.containerOuter.element.removeEventListener("blur",this._onBlur)),this.input.element.removeEventListener("keyup",this._onKeyUp),this.input.element.removeEventListener("focus",this._onFocus),this.input.element.removeEventListener("blur",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener("reset",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate("notice",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(ve(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute("data-button");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild("."+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1;if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector("[data-choice-selectable]:last-of-type"):this.dropdown.element.querySelector("[data-choice-selectable]");else{var p=this.dropdown.element.querySelector("."+this.config.classNames.highlightedState);u=p?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&"string"==typeof t){for(var n=(i>0?"next":"previous")+"ElementSibling",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(p,"[data-choice-selectable]",d):this.dropdown.element.querySelector("[data-choice-selectable]")}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(Ee&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n="ltr"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX<i.offsetLeft;this._isScrollingOnIe=n}if(t!==this.input.element){var s=t.closest("[data-button],[data-item],[data-choice]");if(s instanceof HTMLElement){var r=e.shiftKey,o=this._store.activeItems,a=s.dataset;"button"in a?this._handleButtonAction(o,s):"item"in a?this._handleItemAction(o,s,r):"choice"in a&&this._handleChoiceAction(o,s)}e.preventDefault()}}},r._onMouseOver=function(e){var t=e.target;t instanceof HTMLElement&&"choice"in t.dataset&&this._highlightChoice(t)},r._onClick=function(e){var t=e.target;this.containerOuter.element.contains(t)?this.dropdown.isActive||this.containerOuter.isDisabled?this._isSelectOneElement&&t!==this.input.element&&!this.dropdown.element.contains(t)&&this.hideDropdown():this._isTextElement?document.activeElement!==this.input.element&&this.input.focus():(this.showDropdown(),this.containerOuter.focus()):(this._store.highlightedActiveItems.length>0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t["select-one"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t["select-multiple"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n["select-one"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n["select-multiple"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:"RESET_TO",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll("[data-choice-selectable]"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll("."+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute("aria-selected","false")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute("aria-selected","true"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m="string"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E("Object",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+"-"+this._idNames.itemChoice+"-"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?"value":s,o=e.labelKey,a=void 0===o?"label":o,c=E("Object",i)?i.choices:Array.from(i.getElementsByTagName("OPTION")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(_e({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E("Object",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(_e({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;r<n;r++)s[r-1]=arguments[r];return(t=this._templates[e]).call.apply(t,[this,i].concat(s))},r._createTemplates=function(){var e=this.config.callbackOnCreateTemplates,t={};e&&"function"==typeof e&&(t=e.call(this,S)),this._templates=o()(fe,t)},r._createElements=function(){this.containerOuter=new re({element:this._getTemplate("containerOuter",this._direction,this._isSelectElement,this._isSelectOneElement,this.config.searchEnabled,this.passedElement.element.type),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.containerInner=new re({element:this._getTemplate("containerInner"),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.input=new ae({element:this._getTemplate("input",this._placeholderValue),classNames:this.config.classNames,type:this.passedElement.element.type,preventPaste:!this.config.paste}),this.choiceList=new ce({element:this._getTemplate("choiceList",this._isSelectOneElement)}),this.itemList=new ce({element:this._getTemplate("itemList",this._isSelectOneElement)}),this.dropdown=new k({element:this._getTemplate("dropdown"),classNames:this.config.classNames,type:this.passedElement.element.type})},r._createStructure=function(){this.passedElement.conceal(),this.containerInner.wrap(this.passedElement.element),this.containerOuter.wrap(this.containerInner.element),this._isSelectOneElement?this.input.placeholder=this.config.searchPlaceholderValue||"":this._placeholderValue&&(this.input.placeholder=this._placeholderValue,this.input.setWidth()),this.containerOuter.element.appendChild(this.containerInner.element),this.containerOuter.element.appendChild(this.dropdown.element),this.containerInner.element.appendChild(this.itemList.element),this._isTextElement||this.dropdown.element.appendChild(this.choiceList.element),this._isSelectOneElement?this.config.searchEnabled&&this.dropdown.element.insertBefore(this.input.element,this.dropdown.element.firstChild):this.containerInner.element.appendChild(this.input.element),this._isSelectElement&&(this._highlightPosition=0,this._isSearching=!1,this._startLoading(),this._presetGroups.length?this._addPredefinedGroups(this._presetGroups):this._addPredefinedChoices(this._presetChoices),this._stopLoading()),this._isTextElement&&this._addPredefinedItems(this._presetItems)},r._addPredefinedGroups=function(e){var t=this,i=this.passedElement.placeholderOption;i&&"SELECT"===i.parentNode.tagName&&this._addChoice({value:i.value,label:i.innerHTML,isSelected:i.selected,isDisabled:i.disabled,placeholder:!0}),e.forEach((function(e){return t._addGroup({group:e,id:e.id||null})}))},r._addPredefinedChoices=function(e){var t=this;this.config.shouldSort&&e.sort(this.config.sorter);var i=e.some((function(e){return e.selected})),n=e.findIndex((function(e){return void 0===e.disabled||!e.disabled}));e.forEach((function(e,s){var r=e.value,o=e.label,a=e.customProperties,c=e.placeholder;if(t._isSelectElement)if(e.choices)t._addGroup({group:e,id:e.id||null});else{var l=!(!t._isSelectOneElement||i||s!==n)||e.selected,h=e.disabled;t._addChoice({value:r,label:o,isSelected:l,isDisabled:h,customProperties:a,placeholder:c})}else t._addChoice({value:r,label:o,isSelected:e.selected,isDisabled:e.disabled,customProperties:a,placeholder:c})}))},r._addPredefinedItems=function(e){var t=this;e.forEach((function(e){"object"==typeof e&&e.value&&t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}),"string"==typeof e&&t._addItem({value:e})}))},r._setChoiceOrItem=function(e){var t=this;({object:function(){e.value&&(t._isTextElement?t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}):t._addChoice({value:e.value,label:e.label,isSelected:!0,isDisabled:!1,customProperties:e.customProperties,placeholder:e.placeholder}))},string:function(){t._isTextElement?t._addItem({value:e}):t._addChoice({value:e,label:e,isSelected:!0,isDisabled:!1})}})[y(e).toLowerCase()]()},r._findAndSelectChoiceByValue=function(e){var t=this,i=this._store.choices.find((function(i){return t.config.valueComparer(i.value,e)}));i&&!i.selected&&this._addItem({value:i.value,label:i.label,choiceId:i.id,groupId:i.groupId,customProperties:i.customProperties,placeholder:i.placeholder,keyCode:i.keyCode})},r._generatePlaceholderValue=function(){if(this._isSelectElement){var e=this.passedElement.placeholderOption;return!!e&&e.text}var t=this.config,i=t.placeholder,n=t.placeholderValue,s=this.passedElement.element.dataset;if(i){if(n)return n;if(s.placeholder)return s.placeholder}return!1},n}();t.default=Se}]).default},"object"==typeof i&&"object"==typeof t?t.exports=s():"function"==typeof define&&define.amd?define([],s):"object"==typeof i?i.Choices=s():n.Choices=s()},n 440: function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default="\n.bk-root {\n /*===============================\n= Choices =\n===============================/\n /===== End of Choices ======/\n}\n.bk-root .choices {\n position: relative;\n margin-bottom: 24px;\n font-size: 16px;\n}\n.bk-root .choices:focus {\n outline: none;\n}\n.bk-root .choices:last-child {\n margin-bottom: 0;\n}\n.bk-root .choices.is-disabled .choices__inner,\n.bk-root .choices.is-disabled .choices__input {\n background-color: #eaeaea;\n cursor: not-allowed;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.bk-root .choices.is-disabled .choices__item {\n cursor: not-allowed;\n}\n.bk-root .choices [hidden] {\n display: none !important;\n}\n.bk-root .choices[data-type*=’select-one’] {\n cursor: pointer;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__inner {\n padding-bottom: 7.5px;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__input {\n display: block;\n width: 100%;\n padding: 10px;\n border-bottom: 1px solid #dddddd;\n background-color: #ffffff;\n margin: 0;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n padding: 0;\n background-size: 8px;\n position: absolute;\n top: 50%;\n right: 0;\n margin-top: -10px;\n margin-right: 25px;\n height: 20px;\n width: 20px;\n border-radius: 10em;\n opacity: 0.5;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button:hover,\n.bk-root .choices[data-type*=’select-one’] .choices__button:focus {\n opacity: 1;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button:focus {\n box-shadow: 0px 0px 0px 2px #00bcd4;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__item[data-value=’’] .choices__button {\n display: none;\n}\n.bk-root .choices[data-type*=’select-one’]:after {\n content: ‘’;\n height: 0;\n width: 0;\n border-style: solid;\n border-color: #333333 transparent transparent transparent;\n border-width: 5px;\n position: absolute;\n right: 11.5px;\n top: 50%;\n margin-top: -2.5px;\n pointer-events: none;\n}\n.bk-root .choices[data-type*=’select-one’].is-open:after {\n border-color: transparent transparent #333333 transparent;\n margin-top: -7.5px;\n}\n.bk-root .choices[data-type*=’select-one’][dir=’rtl’]:after {\n left: 11.5px;\n right: auto;\n}\n.bk-root .choices[data-type*=’select-one’][dir=’rtl’] .choices__button {\n right: auto;\n left: 0;\n margin-left: 25px;\n margin-right: 0;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__inner,\n.bk-root .choices[data-type*=’text’] .choices__inner {\n cursor: text;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__button,\n.bk-root .choices[data-type*=’text’] .choices__button {\n position: relative;\n display: inline-block;\n margin-top: 0;\n margin-right: -4px;\n margin-bottom: 0;\n margin-left: 8px;\n padding-left: 16px;\n border-left: 1px solid #008fa1;\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n background-size: 8px;\n width: 8px;\n line-height: 1;\n opacity: 0.75;\n border-radius: 0;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__button:hover,\n.bk-root .choices[data-type*=’select-multiple’] .choices__button:focus,\n.bk-root .choices[data-type*=’text’] .choices__button:hover,\n.bk-root .choices[data-type*=’text’] .choices__button:focus {\n opacity: 1;\n}\n.bk-root .choices__inner {\n display: inline-block;\n vertical-align: top;\n width: 100%;\n background-color: #f9f9f9;\n padding: 7.5px 7.5px 3.75px;\n border: 1px solid #dddddd;\n border-radius: 2.5px;\n font-size: 14px;\n min-height: 44px;\n overflow: hidden;\n}\n.bk-root .is-focused .choices__inner,\n.bk-root .is-open .choices__inner {\n border-color: #b7b7b7;\n}\n.bk-root .is-open .choices__inner {\n border-radius: 2.5px 2.5px 0 0;\n}\n.bk-root .is-flipped.is-open .choices__inner {\n border-radius: 0 0 2.5px 2.5px;\n}\n.bk-root .choices__list {\n margin: 0;\n padding-left: 0;\n list-style: none;\n}\n.bk-root .choices__list–single {\n display: inline-block;\n padding: 4px 16px 4px 4px;\n width: 100%;\n}\n.bk-root [dir=’rtl’] .choices__list–single {\n padding-right: 4px;\n padding-left: 16px;\n}\n.bk-root .choices__list–single .choices__item {\n width: 100%;\n}\n.bk-root .choices__list–multiple {\n display: inline;\n}\n.bk-root .choices__list–multiple .choices__item {\n display: inline-block;\n vertical-align: middle;\n border-radius: 20px;\n padding: 4px 10px;\n font-size: 12px;\n font-weight: 500;\n margin-right: 3.75px;\n margin-bottom: 3.75px;\n background-color: #00bcd4;\n border: 1px solid #00a5bb;\n color: #ffffff;\n word-break: break-all;\n box-sizing: border-box;\n}\n.bk-root .choices__list–multiple .choices__item[data-deletable] {\n padding-right: 5px;\n}\n.bk-root [dir=’rtl’] .choices__list–multiple .choices__item {\n margin-right: 0;\n margin-left: 3.75px;\n}\n.bk-root .choices__list–multiple .choices__item.is-highlighted {\n background-color: #00a5bb;\n border: 1px solid #008fa1;\n}\n.bk-root .is-disabled .choices__list–multiple .choices__item {\n background-color: #aaaaaa;\n border: 1px solid #919191;\n}\n.bk-root .choices__list–dropdown {\n visibility: hidden;\n z-index: 1;\n position: absolute;\n width: 100%;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n top: 100%;\n margin-top: -1px;\n border-bottom-left-radius: 2.5px;\n border-bottom-right-radius: 2.5px;\n overflow: hidden;\n word-break: break-all;\n will-change: visibility;\n}\n.bk-root .choices__list–dropdown.is-active {\n visibility: visible;\n}\n.bk-root .is-open .choices__list–dropdown {\n border-color: #b7b7b7;\n}\n.bk-root .is-flipped .choices__list–dropdown {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: -1px;\n border-radius: 0.25rem 0.25rem 0 0;\n}\n.bk-root .choices__list–dropdown .choices__list {\n position: relative;\n max-height: 300px;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n will-change: scroll-position;\n}\n.bk-root .choices__list–dropdown .choices__item {\n position: relative;\n padding: 10px;\n font-size: 14px;\n}\n.bk-root [dir=’rtl’] .choices__list–dropdown .choices__item {\n text-align: right;\n}\n@media (min-width: 640px) {\n .bk-root .choices__list–dropdown .choices__item–selectable {\n padding-right: 100px;\n }\n .bk-root .choices__list–dropdown .choices__item–selectable:after {\n content: attr(data-select-text);\n font-size: 12px;\n opacity: 0;\n position: absolute;\n right: 10px;\n top: 50%;\n transform: translateY(-50%);\n }\n .bk-root [dir=’rtl’] .choices__list–dropdown .choices__item–selectable {\n text-align: right;\n padding-left: 100px;\n padding-right: 10px;\n }\n .bk-root [dir=’rtl’] .choices__list–dropdown .choices__item–selectable:after {\n right: auto;\n left: 10px;\n }\n}\n.bk-root .choices__list–dropdown .choices__item–selectable.is-highlighted {\n background-color: #f2f2f2;\n}\n.bk-root .choices__list–dropdown .choices__item–selectable.is-highlighted:after {\n opacity: 0.5;\n}\n.bk-root .choices__item {\n cursor: default;\n}\n.bk-root .choices__item–selectable {\n cursor: pointer;\n}\n.bk-root .choices__item–disabled {\n cursor: not-allowed;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n opacity: 0.5;\n}\n.bk-root .choices__heading {\n font-weight: 600;\n font-size: 12px;\n padding: 10px;\n border-bottom: 1px solid #f7f7f7;\n color: gray;\n}\n.bk-root .choices__button {\n text-indent: -9999px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n border: 0;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center;\n cursor: pointer;\n}\n.bk-root .choices__button:focus {\n outline: none;\n}\n.bk-root .choices__input {\n display: inline-block;\n vertical-align: baseline;\n background-color: #f9f9f9;\n font-size: 14px;\n margin-bottom: 5px;\n border: 0;\n border-radius: 0;\n max-width: 100%;\n padding: 4px 0 4px 2px;\n}\n.bk-root .choices__input:focus {\n outline: 0;\n}\n.bk-root [dir=’rtl’] .choices__input {\n padding-right: 2px;\n padding-left: 0;\n}\n.bk-root .choices__placeholder {\n opacity: 0.5;\n}\n.bk-root .choices {\n width: 100%;\n}\n.bk-root .choices {\n box-sizing: border-box;\n}\n.bk-root .choices ,\n.bk-root .choices *:before,\n.bk-root .choices *:after {\n box-sizing: inherit;\n}\n.bk-root .choices__inner .choices__item.light {\n background-color: rgba(0, 126, 255, 0.08);\n border-radius: 5px;\n border: 1px solid rgba(0, 126, 255, 0.24);\n color: #007eff;\n}\n.bk-root .choices__inner .choices__item.solid {\n background-color: #1f77b4;\n border: none;\n border-radius: 5px;\n color: white;\n}\n.bk-root .choices__inner .choices__item.solid .is-highlighted {\n background-color: #1f77b4;\n border: none;\n}\n.bk-root .choices__input {\n background-color: transparent;\n}\n.bk-root .choices__inner {\n background: transparent;\n border: 1px solid darkgray;\n border-radius: 5px;\n min-height: unset;\n}\n.bk-root .choices__list {\n white-space: initial;\n}\n.bk-root .choices[data-type*=select-multiple] .choices__button.light {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDA3ZWZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n}\n.bk-root .choices[data-type*=select-multiple] .choices__button.solid {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjZmZmZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n border-left: 1px solid white;\n opacity: 1;\n}\n"},n 441: function _(e,t,l){Object.defineProperty(l,"__esModule",{value:!0});const i=e(1),n=i.__importStar(e(188)),s=e(410),u=e(72),h=e(11),o=i.__importStar(e(18)),a=e(442),r=e(412),d=/^[-+]?\d*$/,p=/^[-+]?\d\.?\d*(?:(?:\d|\d.)[eE][-+]?)*\d*$/;class _ extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value}),this.connect(this.model.properties.low.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(t<=l,"Invalid bounds, low must be inferior to high"),null!=e&&null!=t&&(this.model.value=Math.max(e,t))}),this.connect(this.model.properties.high.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(l>=t,"Invalid bounds, high must be superior to low"),null!=e&&null!=l&&(this.model.value=Math.min(e,l))}),this.connect(this.model.properties.high.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):""}_set_input_filter(e){this.input_el.addEventListener("input",()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}})}render(){super.render(),this.input_el=u.input({type:"text",class:r.bk_input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener("change",()=>this.change_input()),this.input_el.addEventListener("focusout",()=>this.input_el.value=this.format_value),this.group_el.appendChild(this.input_el)}set_input_filter(){"int"==this.model.mode?this._set_input_filter(e=>d.test(e)):"float"==this.model.mode&&this._set_input_filter(e=>p.test(e))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=""!==this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=_,_.__name__="NumericInputView";class m extends s.InputWidget{constructor(e){super(e)}static init_NumericInput(){this.prototype.default_view=_,this.define({value:[o.Number,null],placeholder:[o.String,""],mode:[o.Any,"int"],format:[o.Any],low:[o.Number,null],high:[o.Number,null]})}_formatter(e,t){return a.isString(t)?n.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):""+e}}l.NumericInput=m,m.__name__="NumericInput",m.init_NumericInput()},n 442: function _(t,_,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(1);e.__exportStar(t(13),r),e.__exportStar(t(9),r),e.__exportStar(t(29),r),e.__exportStar(t(443),r),e.__exportStar(t(8),r),e.__exportStar(t(25),r)},n 443: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class n{constructor(e){this.seed=e%2147483647,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%2147483647,this.seed}float(){return(this.integer()-1)/2147483646}floats(e){const t=new Array(e);for(let s=0;s<e;s++)t[s]=this.float();return t}}s.Random=n,n.__name__="Random",s.random=new n(Date.now())},n 444: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e(430),i=e(72);class n extends s.MarkupView{render(){super.render();const e=i.pre({style:{overflow:"auto"}},this.model.text);this.markup_el.appendChild(e)}}r.PreTextView=n,n.__name__="PreTextView";class _ extends s.Markup{constructor(e){super(e)}static init_PreText(){this.prototype.default_view=n}}r.PreText=_,_.__name__="PreText",_.init_PreText()},n 445: function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),a=t(415),n=t(72),u=i.__importStar(t(18)),s=t(173);class _ extends a.ButtonGroupView{change_active(t){this.model.active!==t&&(this.model.active=t)}_update_active(){const{active:t}=this.model;this._buttons.forEach((o,e)=>{n.classes(o).toggle(s.bk_active,t===e)})}}e.RadioButtonGroupView=_,_.__name__="RadioButtonGroupView";class c extends a.ButtonGroup{constructor(t){super(t)}static init_RadioButtonGroup(){this.prototype.default_view=_,this.define({active:[u.Any,null]})}}e.RadioButtonGroup=c,c.__name__="RadioButtonGroup",c.init_RadioButtonGroup()},n 446: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),a=e(72),s=e(29),o=n.__importStar(e(18)),d=e(417),l=e(173),p=e(412);class r extends d.InputGroupView{render(){super.render();const e=a.div({class:[p.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const i=s.uniqueId(),{active:t,labels:n}=this.model;this._inputs=[];for(let s=0;s<n.length;s++){const o=a.input({type:"radio",name:i,value:""+s});o.addEventListener("change",()=>this.change_active(s)),this._inputs.push(o),this.model.disabled&&(o.disabled=!0),s==t&&(o.checked=!0);const d=a.label({},o,a.span({},n[s]));e.appendChild(d)}}change_active(e){this.model.active=e}}t.RadioGroupView=r,r.__name__="RadioGroupView";class u extends d.InputGroup{constructor(e){super(e)}static init_RadioGroup(){this.prototype.default_view=r,this.define({active:[o.Number],labels:[o.Array,[]],inline:[o.Boolean,!1]})}}t.RadioGroup=u,u.__name__="RadioGroup",u.init_RadioGroup()},n 447: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1).__importStar(e(188)),a=e(423),n=e(8);class o extends a.AbstractRangeSliderView{}r.RangeSliderView=o,o.__name__="RangeSliderView";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour="drag",this.connected=[!1,!0,!1]}static init_RangeSlider(){this.prototype.default_view=o,this.override({format:"0[.]00"})}_formatter(e,t){return n.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.RangeSlider=s,s.__name__="RangeSlider",s.init_RangeSlider()},n 448: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(72),l=e(8),o=e(13),p=n.__importStar(e(18)),u=e(410),a=e(412);class _ extends u.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,()=>{this._update_value()}),this.on_change(t,()=>{s.empty(this.input_el),s.append(this.input_el,…this.options_el())})}options_el(){function e(e){return e.map(e=>{let t,i;return l.isString(e)?t=i=e:[t,i]=e,s.option({value:t},i)})}const{options:t}=this.model;return l.isArray(t)?e(t):o.entries(t).map(([t,i])=>s.optgroup({label:t},e(i)))}render(){super.render(),this.input_el=s.select({class:a.bk_input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;null!=e&&0!=e.length&&(this.input_el.value=this.model.value)}}i.SelectView=_,_.__name__="SelectView";class h extends u.InputWidget{constructor(e){super(e)}static init_Select(){this.prototype.default_view=_,this.define({value:[p.String,""],options:[p.Any,[]]})}}i.Select=h,h.__name__="Select",h.init_Select()},n 449: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1).__importStar(e(188)),o=e(423),s=e(8);class _ extends o.AbstractSliderView{}r.SliderView=_,_.__name__="SliderView";class a extends o.AbstractSlider{constructor(e){super(e),this.behaviour="tap",this.connected=[!0,!1]}static init_Slider(){this.prototype.default_view=_,this.override({format:"0[.]00"})}_formatter(e,t){return s.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.Slider=a,a.__name__="Slider",a.init_Slider()},n 450: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(441),l=n.__importStar(e(18)),r=e(72),{min:o,max:_,floor:a,abs:h}=Math;function u(e){return a(e)!==e?e.toFixed(16).replace(/0+$/,"").split(".")[1].length:0}class p extends s.NumericInputView{buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.buttons())r.toggle_attribute(e,"disabled",this.model.disabled)})}render(){super.render(),this.wrapper_el=r.div({class:"bk-spin-wrapper"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=r.button({class:"bk-spin-btn bk-spin-btn-up"}),this.btn_down_el=r.button({class:"bk-spin-btn bk-spin-btn-down"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())r.toggle_attribute(e,"disabled",this.model.disabled),e.addEventListener("mousedown",e=>this._btn_mouse_down(e)),e.addEventListener("mouseup",()=>this._btn_mouse_up()),e.addEventListener("mouseleave",()=>this._btn_mouse_leave());this.input_el.addEventListener("keydown",e=>this._input_key_down(e)),this.input_el.addEventListener("keyup",()=>this.model.value_throttled=this.model.value),this.input_el.addEventListener("wheel",e=>this._input_mouse_wheel(e)),this.input_el.addEventListener("wheel",function(e,t,i=!1){let n;return function(…s){const l=this,r=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),r&&e.apply(l,s)}}(()=>{this.model.value_throttled=this.model.value},this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model;return _(…[e,t,i].map(h).reduce((e,t)=>(null!=t&&e.push(t),e),[]).map(u))}_start_incrementation(e){clearInterval(this._interval_handle),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(e),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(2*e),this._interval/10))}this.increment(e)};this._interval_handle=setInterval(()=>i(e*t),this._interval)}_stop_incrementation(){clearInterval(this._interval_handle),this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._start_incrementation(t)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?o(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?_(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__="SpinnerView";class d extends s.NumericInput{constructor(e){super(e)}static init_Spinner(){this.prototype.default_view=p,this.define({value_throttled:[l.Number,null],step:[l.Number,1],page_step_multiplier:[l.Number,10],wheel_wait:[l.Number,100]}),this.override({mode:"float"})}}i.Spinner=d,d.__name__="Spinner",d.init_Spinner()},n 451: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(410),l=e(72),h=s.__importStar(e(18)),o=e(412);class a extends n.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.rows.change,()=>this.input_el.rows=this.model.rows),this.connect(this.model.properties.cols.change,()=>this.input_el.cols=this.model.cols),this.connect(this.model.properties.max_length.change,()=>this.input_el.maxLength=this.model.max_length)}render(){super.render(),this.input_el=l.textarea({class:o.bk_input,name:this.model.name,disabled:this.model.disabled,placeholder:this.model.placeholder,cols:this.model.cols,rows:this.model.rows,maxLength:this.model.max_length}),this.input_el.textContent=this.model.value,this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}}i.TextAreaInputView=a,a.__name__="TextAreaInputView";class p extends n.InputWidget{constructor(e){super(e)}static init_TextAreaInput(){this.prototype.default_view=a,this.define({value:[h.String,""],value_input:[h.String,""],placeholder:[h.String,""],cols:[h.Number,20],rows:[h.Number,2],max_length:[h.Number,500]})}}i.TextAreaInput=p,p.__name__="TextAreaInput",p.init_TextAreaInput()},n 452: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),c=e(404),o=e(72),a=s.__importStar(e(18)),n=e(173);class l extends c.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._update_active())}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){o.classes(this.button_el).toggle(n.bk_active,this.model.active)}}i.ToggleView=l,l.__name__="ToggleView";class _ extends c.AbstractButton{constructor(e){super(e)}static init_Toggle(){this.prototype.default_view=l,this.define({active:[a.Boolean,!1]}),this.override({label:"Toggle"})}}i.Toggle=_,_.__name__="Toggle",_.init_Toggle()},n }, 402, {"models/widgets/main":402,"models/widgets/index":403,"models/widgets/abstract_button":404,"models/widgets/control":405,"models/widgets/widget":472,"models/widgets/abstract_icon":407,"models/widgets/autocomplete_input":408,"models/widgets/text_input":409,"models/widgets/input_widget":410,"styles/widgets/inputs.css":411,"styles/widgets/inputs":412,"models/widgets/button":413,"models/widgets/checkbox_button_group":414,"models/widgets/button_group":415,"models/widgets/checkbox_group":416,"models/widgets/input_group":417,"models/widgets/color_picker":418,"models/widgets/date_picker":419,"styles/widgets/flatpickr.css":421,"models/widgets/date_range_slider":422,"models/widgets/abstract_slider":423,"styles/widgets/sliders":425,"styles/widgets/nouislider.css":426,"styles/widgets/sliders.css":427,"models/widgets/date_slider":428,"models/widgets/div":429,"models/widgets/markup":430,"styles/clearfix":431,"styles/clearfix.css":432,"models/widgets/dropdown":433,"models/widgets/file_input":434,"models/widgets/multiselect":435,"models/widgets/paragraph":436,"models/widgets/password_input":437,"models/widgets/multichoice":438,"styles/widgets/choices.css":440,"models/widgets/numeric_input":441,"api/linalg":442,"core/util/random":443,"models/widgets/pretext":444,"models/widgets/radio_button_group":445,"models/widgets/radio_group":446,"models/widgets/range_slider":447,"models/widgets/selectbox":448,"models/widgets/slider":449,"models/widgets/spinner":450,"models/widgets/textarea_input":451,"models/widgets/toggle":452}, {});n })nnn / END bokeh-widgets.min.js /n },n n function(Bokeh) {n / BEGIN bokeh-tables.min.js /n /!n * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn * All rights reserved.n * n * Redistribution and use in source and binary forms, with or without modification,n * are permitted provided that the following conditions are met:n * n * Redistributions of source code must retain the above copyright notice,n * this list of conditions and the following disclaimer.n * n * Redistributions in binary form must reproduce the above copyright notice,n * this list of conditions and the following disclaimer in the documentationn * and/or other materials provided with the distribution.n * n * Neither the name of Anaconda nor the names of any contributorsn * may be used to endorse or promote products derived from this softwaren * without specific prior written permission.n * n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn * THE POSSIBILITY OF SUCH DAMAGE.n /n (function(root, factory) {n factory(root["Bokeh"], "2.2.3");n })(this, function(Bokeh, version) {n var define;n return (function(modules, entry, aliases, externals) {n const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n if (bokeh != null) {n return bokeh.register_plugin(modules, entry, aliases);n } else {n throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n }n })n ({n 453: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1).__importStar(e(454));o.Tables=r;e(7).register_models(r)},n 454: function _(a,g,r){Object.defineProperty(r,"__esModule",{value:!0});const e=a(1);e.__exportStar(a(455),r),e.__exportStar(a(475),r);var t=a(456);r.DataTable=t.DataTable;var o=a(474);r.TableColumn=o.TableColumn;var n=a(473);r.TableWidget=n.TableWidget;var u=a(481);r.AvgAggregator=u.AvgAggregator,r.MinAggregator=u.MinAggregator,r.MaxAggregator=u.MaxAggregator,r.SumAggregator=u.SumAggregator;var l=a(482);r.GroupingInfo=l.GroupingInfo,r.DataCube=l.DataCube},n 455: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1).__importStar(e(18)),r=e(72),a=e(78),n=e(81),l=e(456),u=e(478);class d extends a.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error("unsupported")}css_classes(){return super.css_classes().concat(u.bk_cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener("keydown",e=>{switch(e.keyCode){case r.Keys.Left:case r.Keys.Right:case r.Keys.Up:case r.Keys.Down:case r.Keys.PageUp:case r.Keys.PageDown:e.stopImmediatePropagation()}})}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(""==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[l.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=d,d.__name__="CellEditorView";class o extends n.Model{}i.CellEditor=o,o.__name__="CellEditor";class _ extends d{get emptyValue(){return""}_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=_,_.__name__="StringEditorView";class c extends o{static init_StringEditor(){this.prototype.default_view=_,this.define({completions:[s.Array,[]]})}}i.StringEditor=c,c.__name__="StringEditor",c.init_StringEditor();class p extends d{_createInput(){return r.textarea()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=p,p.__name__="TextEditorView";class h extends o{static init_TextEditor(){this.prototype.default_view=p}}i.TextEditor=h,h.__name__="TextEditor",h.init_TextEditor();class E extends d{_createInput(){return r.select()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild(r.option({value:e},e));this.focus()}}i.SelectEditorView=E,E.__name__="SelectEditorView";class V extends o{static init_SelectEditor(){this.prototype.default_view=E,this.define({options:[s.Array,[]]})}}i.SelectEditor=V,V.__name__="SelectEditor",V.init_SelectEditor();class m extends d{_createInput(){return r.input({type:"text"})}}i.PercentEditorView=m,m.__name__="PercentEditorView";class f extends o{static init_PercentEditor(){this.prototype.default_view=m}}i.PercentEditor=f,f.__name__="PercentEditor",f.init_PercentEditor();class x extends d{_createInput(){return r.input({type:"checkbox"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=x,x.__name__="CheckboxEditorView";class w extends o{static init_CheckboxEditor(){this.prototype.default_view=x}}i.CheckboxEditor=w,w.__name__="CheckboxEditor",w.init_CheckboxEditor();class g extends d{_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseInt(this.getValue(),10)||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:"Please enter a valid integer"}:super.validateValue(e)}}i.IntEditorView=g,g.__name__="IntEditorView";class y extends o{static init_IntEditor(){this.prototype.default_view=g,this.define({step:[s.Number,1]})}}i.IntEditor=y,y.__name__="IntEditor",y.init_IntEditor();class v extends d{_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseFloat(this.getValue())||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:"Please enter a valid number"}:super.validateValue(e)}}i.NumberEditorView=v,v.__name__="NumberEditorView";class b extends o{static init_NumberEditor(){this.prototype.default_view=v,this.define({step:[s.Number,.01]})}}i.NumberEditor=b,b.__name__="NumberEditor",b.init_NumberEditor();class I extends d{_createInput(){return r.input({type:"text"})}}i.TimeEditorView=I,I.__name__="TimeEditorView";class N extends o{static init_TimeEditor(){this.prototype.default_view=I}}i.TimeEditor=N,N.__name__="TimeEditor",N.init_TimeEditor();class C extends d{_createInput(){return r.input({type:"text"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=C,C.__name__="DateEditorView";class D extends o{static init_DateEditor(){this.prototype.default_view=C}}i.DateEditor=D,D.__name__="DateEditor",D.init_DateEditor()},n 456: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),o=e(457),n=e(461),l=e(462),r=e(463),d=e(29),a=e(8),h=e(9),u=e(13),c=e(19),_=e(472),m=e(473),g=e(474),p=e(478),f=s.__importDefault(e(479)),b=s.__importDefault(e(480));i.DTINDEX_NAME="__bkdt_internal_index__",i.AutosizeModes={fit_columns:"FCV",fit_viewport:"FVC",force_fit:"LFF",none:"NOA"};class w{constructor(e,t){this.init(e,t)}init(e,t){if(i.DTINDEX_NAME in e.data)throw new Error(`special name ${i.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[…this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of u.keys(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[i.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==i.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return h.range(0,this.getLength()).map(e=>this.getItem(e))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,h.range(e,t,i).map(e=>this.getItem(e))}sort(e){let t=e.map(e=>[e.sortCol.field,e.sortAsc?1:-1]);0==t.length&&(t=[[i.DTINDEX_NAME,1]]);const s=this.getRecords(),o=this.index.slice();this.index.sort((e,i)=>{for(const[n,l]of t){const t=s[o.indexOf(e)][n],r=s[o.indexOf(i)][n];if(t!==r)return a.isNumber(t)&&a.isNumber(r)?l*(t-r||+isNaN(t)-+isNaN(r)):""+t>""+r?l:-l}return 0})}}i.TableDataProvider=w,w.__name__="TableDataProvider";class x extends _.WidgetView{constructor(){super(…arguments),this._in_selection_update=!1,this._warned_not_reorderable=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.source.streaming,()=>this.updateGrid()),this.connect(this.model.source.patching,()=>this.updateGrid()),this.connect(this.model.source.change,()=>this.updateGrid()),this.connect(this.model.source.properties.data.change,()=>this.updateGrid()),this.connect(this.model.source.selected.change,()=>this.updateSelection()),this.connect(this.model.source.selected.properties.indices.change,()=>this.updateSelection())}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[…super.styles(),f.default,b.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return"fit_viewport"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map(t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc}));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map(e=>this.data.index.indexOf(e)).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:d.uniqueId(),name:this.model.index_header,field:i.DTINDEX_NAME,width:this.model.index_width,behavior:"select",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:p.bk_cell_index,headerCssClass:p.bk_header_index}}css_classes(){return super.css_classes().concat(p.bk_data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.map(e=>Object.assign(Object.assign({},e.toColumn()),{parent:this}));let s=null;if("checkbox"==this.model.selectable&&(s=new n.CheckboxSelectColumn({cssClass:p.bk_cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:d}=this.model;!d||"undefined"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(this._warned_not_reorderable||(c.logger.warn("jquery-ui is required to enable DataTable.reorderable"),this._warned_not_reorderable=!0),d=!1);let h=-1,u=!1;const{frozen_rows:_,frozen_columns:m}=this.model,g=null==m?-1:m-1;null!=_&&(u=_<0,h=Math.abs(_));const f={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:d,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:g,frozenRow:h,frozenBottom:u},b=null!=this.grid;if(this.data=new w(this.model.source,this.model.view),this.grid=new r.Grid(this.el,this.data,t,f),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))}),!1!==this.model.selectable){this.grid.setSelectionModel(new o.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return a.isString(i)&&(i=i.replace(/\n/g,"\\n")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new l.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map(e=>this.data.index[e]))}),this.updateSelection(),this.model.header_row||this._hide_header()}b&&this.updateLayout(b,!1)}_hide_header(){for(const e of this.el.querySelectorAll(".slick-header-columns"))e.style.height="0px";this.grid.resizeCanvas()}}i.DataTableView=x,x.__name__="DataTableView";class C extends m.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}static init_DataTable(){this.prototype.default_view=x,this.define(({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Null:r})=>({autosize_mode:[n("fit_columns","fit_viewport","none","force_fit"),"force_fit"],auto_edit:[t,!1],columns:[e(s(g.TableColumn)),[]],fit_columns:[l(t,r),null],frozen_columns:[l(i,r),null],frozen_rows:[l(i,r),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n("checkbox")),!0],index_position:[l(i,r),0],index_header:[o,"#"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]})),this.override({width:600,height:400})}update_sort_columns(e){this._sort_columns=e.map(({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t}))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?h.some(t,t=>e.top<=t&&t<=e.bottom)?null:Math.max(0,Math.min(…t)-1):null}}i.DataTable=C,C.__name__="DataTable",C.init_DataTable()},n 457: function _(e,t,n){var o=e(458),r=e(460);t.exports={RowSelectionModel:function(e){var t,n,l,i=[],c=this,u=new r.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n<e.length;n++)for(var o=e[n].fromRow;o<=e[n].toRow;o++)t.push(o);return t}function h(e){for(var n=[],o=t.getColumns().length-1,l=0;l<e.length;l++)n.push(new r.Range(e[l],0,e[l],o));return n}function w(){return f(i)}function g(e){(i&&0!==i.length||e&&0!==e.length)&&(i=e,c.onSelectedRangesChanged.notify(i))}function v(e,n){l.selectActiveRow&&null!=n.row&&g([new r.Range(n.row,0,n.row,t.getColumns().length-1)])}function p(e){var n=t.getActiveCell();if(t.getOptions().multiSelect&&n&&e.shiftKey&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&(e.which==r.keyCode.UP||e.which==r.keyCode.DOWN)){var o=w();o.sort((function(e,t){return e-t})),o.length||(o=[n.row]);var l,i=o[0],c=o[o.length-1];if((l=e.which==r.keyCode.DOWN?n.row<c||i==c?++c:++i:n.row<c?–c:–i)>=0&&l<t.getDataLength())t.scrollRowIntoView(l),g(h(function(e,t){var n,o=[];for(n=e;n<=t;n++)o.push(n);for(n=t;n<e;n++)o.push(n);return o}(i,c)));e.preventDefault(),e.stopPropagation()}}function y(e){var n=t.getCellFromEvent(e);if(!n||!t.canCellBeActive(n.row,n.cell))return!1;if(!t.getOptions().multiSelect||!e.ctrlKey&&!e.shiftKey&&!e.metaKey)return!1;var r=f(i),l=o.inArray(n.row,r);if(-1===l&&(e.ctrlKey||e.metaKey))r.push(n.row),t.setActiveCell(n.row,n.cell);else if(-1!==l&&(e.ctrlKey||e.metaKey))r=o.grep(r,(function(e,t){return e!==n.row})),t.setActiveCell(n.row,n.cell);else if(r.length&&e.shiftKey){var c=r.pop(),u=Math.min(n.row,c),s=Math.max(n.row,c);r=[];for(var a=u;a<=s;a++)a!==c&&r.push(a);r.push(c),t.setActiveCell(n.row,n.cell)}return g(h(r)),e.stopImmediatePropagation(),!0}o.extend(this,{getSelectedRows:w,setSelectedRows:function(e){g(h(e))},getSelectedRanges:function(){return i},setSelectedRanges:g,init:function(n){l=o.extend(!0,{},s,e),t=n,u.subscribe(t.onActiveCellChanged,a(v)),u.subscribe(t.onKeyDown,a(p)),u.subscribe(t.onClick,a(y))},destroy:function(){u.unsubscribeAll()},pluginName:"RowSelectionModel",onSelectedRangesChanged:new r.Event})}}},n 458: function _(e,n,f){n.exports="undefined"!=typeof $?$:e(459)},n 459: function _(e,t,n){n /!n * jQuery JavaScript Library v3.5.1n * https://jquery.com/n n * Includes Sizzle.jsn * https://sizzlejs.com/n *n * Copyright JS Foundation and other contributorsn * Released under the MIT licensen * https://jquery.org/licensen *n * Date: 2020-05-04T22:49Zn */n !function(e,n){"use strict";"object"==typeof t&&"object"==typeof t.exports?t.exports=e.document?n(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(e)}("undefined"!=typeof window?window:this,(function(e,t){"use strict";var n=[],r=Object.getPrototypeOf,i=n.slice,o=n.flat?function(e){return n.flat.call(e)}:function(e){return n.concat.apply([],e)},a=n.push,s=n.indexOf,u={},l=u.toString,c=u.hasOwnProperty,f=c.toString,p=f.call(Object),d={},h=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},g=function(e){return null!=e&&e===e.window},v=e.document,y={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||v).createElement("script");if(o.text=e,t)for(r in y)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?u[l.call(e)]||"object":typeof e}var b=function(e,t){return new b.fn.init(e,t)};function w(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!h(e)&&!g(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}b.fn=b.prototype={jquery:"3.5.1",constructor:b,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return b.each(this,e)},map:function(e){return this.pushStack(b.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(b.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(b.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:a,sort:n.sort,splice:n.splice},b.extend=b.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||h(a)||(a={}),s===u&&(a=this,s–);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(b.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||b.isPlainObject(n)?n:{},i=!1,a[t]=b.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},b.extend({expando:"jQuery"+("3.5.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==l.call(e))&&(!(t=r(e))||"function"==typeof(n=c.call(t,"constructor")&&t.constructor)&&f.call(n)===p)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){m(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(w(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(w(Object(e))?b.merge(n,"string"==typeof e?[e]:e):a.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:s.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,a=0,s=[];if(w(e))for(r=e.length;a<r;a++)null!=(i=t(e[a],a,n))&&s.push(i);else for(a in e)null!=(i=t(e[a],a,n))&&s.push(i);return o(s)},guid:1,support:d}),"function"==typeof Symbol&&(b.fn[Symbol.iterator]=n[Symbol.iterator]),b.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),(function(e,t){u["[object "+t+"]"]=t.toLowerCase()}));var T=n /!n * Sizzle CSS Selector Engine v2.3.5n * https://sizzlejs.com/n n * Copyright JS Foundation and other contributorsn * Released under the MIT licensen * https://js.foundation/n *n * Date: 2020-03-14n */n function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,v,y,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ue(),S=ue(),k=ue(),A=ue(),N=function(e,t){return e===t&&(f=!0),0},D={}.hasOwnProperty,j=[],q=j.pop,L=j.push,H=j.push,O=j.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:’((?:\\\\.|[^\\\\’]))’|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\"+I+\"))|)"+M+"\\]",F=":("+I+")(?:\\(((‘((?:\\\\.|[^\\\\’]))’|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+","+M+""),z=new RegExp("^"+M+"([>+~]|"+M+")"+M+""),U=new RegExp(M+"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\d*)n|)"+M+"(?:([+-]|)"+M+"*(\\d+)|))"+M+"\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d)"+M+"\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{H.apply(j=O.call(w.childNodes),w.childNodes),j[w.childNodes.length].nodeType}catch(e){H={apply:j.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+" "]&&(!v||!v.test(e))&&(1!==w||"object"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute("id"))?c=c.replace(re,ie):t.setAttribute("id",c=b)),s=(h=a(e)).length;s–;)h[s]=(c?"#"+c:":scope")+" "+xe(h[s]);y=h.join(",")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace($,"$1"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split("|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||"button"===n)&&t.type===e}}function ge(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a–;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),n.attributes=ce((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(""===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML="<a id=’"+b+"’></a><select id=’"+b+"-\r\\’ msallowcapture=’’><option selected=’’></option></select>",e.querySelectorAll("[msallowcapture^=’’]").length&&v.push("[^$]="+M+"*(?:’’|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+b+"-]").length||v.push("~="),(t=d.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name=’’]").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:’’|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+b+"+").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")})),ce((function(e){e.innerHTML="<a href=’’ disabled=’disabled’></a><select disabled=’disabled’><option/></select>";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll(",:x"),v.push(",.*:")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,""),m.call(e,"[s!=’’]:x"),y.push("!=",F)})),v=v.length&&new RegExp(v.join("|")),y=y.length&&new RegExp(y.join("|")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+" "]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i–;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return""===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||"")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(B," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a–;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,"$1"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s–;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||"")||se.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),odd:ve((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),lt:ve((function(e,t,n){for(var r=n<0?n+t:n>t?t:n;–r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e}))}}).pseudos.nth=r.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=de(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=he(t);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(e,t,n){var r=t.dir,i=t.next,o=i||r,a=n&&"parentNode"===o,s=C++;return t.first?function(t,n,i){for(;t=t[r];)if(1===t.nodeType||a)return e(t,n,i);return!1}:function(t,n,u){var l,c,f,p=[T,s];if(u){for(;t=t[r];)if((1===t.nodeType||a)&&e(t,n,u))return!0}else for(;t=t[r];)if(1===t.nodeType||a)if(c=(f=t[b]||(t[b]={}))[t.uniqueID]||(f[t.uniqueID]={}),i&&i===t.nodeName.toLowerCase())t=t[r]||t;else{if((l=c[o])&&l[0]===T&&l[1]===s)return p[2]=l[2];if(c[o]=p,p[2]=e(t,n,u))return!0}return!1}}function we(e){return e.length>1?function(t,n,r){for(var i=e.length;i–;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(e,t,n,r,i,o){return r&&!r[b]&&(r=Ce(r)),i&&!i[b]&&(i=Ce(i,o)),le((function(o,a,s,u){var l,c,f,p=[],d=[],h=a.length,g=o||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(t||"",s.nodeType?[s]:s,[]),v=!e||!o&&t?g:Te(g,p,e,s,u),y=n?i||(o?e:h||r)?[]:a:v;if(n&&n(v,y,s,u),r)for(l=Te(y,d),r(l,[],s,u),c=l.length;c–;)(f=l[c])&&(y[d[c]]=!(v[d[c]]=f));if(o){if(i||e){if(i){for(l=[],c=y.length;c–;)(f=y[c])&&l.push(v[c]=f);i(null,y=[],l,u)}for(c=y.length;c–;)(f=y[c])&&(l=i?P(o,f):p[c])>-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u<o;u++)if(n=r.relative[e[u].type])p=[be(we(p),n)];else{if((n=r.filter[e[u].type].apply(null,e[u].matches))[b]){for(i=++u;i<o&&!r.relative[e[i].type];i++);return Ce(u>1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:" "===e[u-2].type?"":""})).replace($,"$1"),n,u<i&&Ee(e.slice(u,i)),i<o&&Ee(e=e.slice(i)),i<o&&xe(e))}p.push(n)}return we(p)}return me.prototype=r.filters=r.pseudos,r.setFilters=new me,a=se.tokenize=function(e,t){var n,i,o,a,s,u,l,c=S[e+" "];if(c)return t?0:c.slice(0);for(s=e,u=[],l=r.preFilter;s;){for(a in n&&!(i=_.exec(s))||(i&&(s=s.slice(i[0].length)||s),u.push(o=[])),n=!1,(i=z.exec(s))&&(n=i.shift(),o.push({value:n,type:i[0].replace($," ")}),s=s.slice(n.length)),r.filter)!(i=G[a].exec(s))||l[a]&&!(i=l[a](i))||(n=i.shift(),o.push({value:n,type:a,matches:i}),s=s.slice(n.length));if(!n)break}return t?s.length:s?se.error(e):S(e,u).slice(0)},s=se.compile=function(e,t){var n,i=[],o=[],s=k[e+" "];if(!s){for(t||(t=a(e)),n=t.length;n–;)(s=Ee(t[n]))[b]?i.push(s):o.push(s);(s=k(e,function(e,t){var n=t.length>0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y–,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m–;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i))).selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o–&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split("").sort(N).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))})),ce((function(e){return e.innerHTML="<a href=’#’></a>","#"===e.firstChild.getAttribute("href")}))||fe("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||fe("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute("disabled")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);b.find=T,b.expr=T.selectors,b.expr[":"]=b.expr.pseudos,b.uniqueSort=b.unique=T.uniqueSort,b.text=T.getText,b.isXMLDoc=T.isXML,b.contains=T.contains,b.escapeSelector=T.escape;var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&b(e).is(n))break;r.push(e)}return r},E=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},S=b.expr.match.needsContext;function k(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function N(e,t,n){return h(t)?b.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?b.grep(e,(function(e){return e===t!==n})):"string"!=typeof t?b.grep(e,(function(e){return s.call(t,e)>-1!==n})):b.filter(t,e,n)}b.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?b.find.matchesSelector(r,e)?[r]:[]:b.find.matches(e,b.grep(t,(function(e){return 1===e.nodeType})))},b.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(b(e).filter((function(){for(t=0;t<r;t++)if(b.contains(i[t],this))return!0})));for(n=this.pushStack([]),t=0;t<r;t++)b.find(e,i[t],n);return r>1?b.uniqueSort(n):n},filter:function(e){return this.pushStack(N(this,e||[],!1))},not:function(e){return this.pushStack(N(this,e||[],!0))},is:function(e){return!!N(this,"string"==typeof e&&S.test(e)?b(e):e||[],!1).length}});var D,j=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(b.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof b?t[0]:t,b.merge(this,b.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),A.test(r[1])&&b.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(b):b.makeArray(e,this)}).prototype=b.fn,D=b(v);var q=/^(?:parents|prev(?:Until|All))/,L={children:!0,contents:!0,next:!0,prev:!0};function H(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}b.fn.extend({has:function(e){var t=b(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(b.contains(this,t[e]))return!0}))},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&b(e);if(!S.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&b.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?b.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?s.call(b(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(b.uniqueSort(b.merge(this.get(),b(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,"parentNode")},parentsUntil:function(e,t,n){return C(e,"parentNode",n)},next:function(e){return H(e,"nextSibling")},prev:function(e){return H(e,"previousSibling")},nextAll:function(e){return C(e,"nextSibling")},prevAll:function(e){return C(e,"previousSibling")},nextUntil:function(e,t,n){return C(e,"nextSibling",n)},prevUntil:function(e,t,n){return C(e,"previousSibling",n)},siblings:function(e){return E((e.parentNode||{}).firstChild,e)},children:function(e){return E(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(k(e,"template")&&(e=e.content||e),b.merge([],e.childNodes))}},(function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),this.length>1&&(L[e]||b.uniqueSort(i),q.test(e)&&i.reverse()),this.pushStack(i)}}));var O=/[^\x20\t\r\n\f]+/g;function P(e){return e}function R(e){throw e}function M(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}b.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return b.each(e.match(O)||[],(function(e,n){t[n]=!0})),t}(e):b.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s<o.length;)!1===o[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=o.length,n=!1);e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},l={add:function(){return o&&(n&&!t&&(s=o.length-1,a.push(n)),function t(n){b.each(n,(function(n,r){h(r)?e.unique&&l.has(r)||o.push(r):r&&r.length&&"string"!==x(r)&&t(r)}))}(arguments),n&&!t&&u()),this},remove:function(){return b.each(arguments,(function(e,t){for(var n;(n=b.inArray(t,o,n))>-1;)o.splice(n,1),n<=s&&s–})),this},has:function(e){return e?b.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},b.extend({Deferred:function(t){var n=[["notify","progress",b.Callbacks("memory"),b.Callbacks("memory"),2],["resolve","done",b.Callbacks("once memory"),b.Callbacks("once memory"),0,"resolved"],["reject","fail",b.Callbacks("once memory"),b.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return b.Deferred((function(t){b.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t<o)){if((e=r.apply(s,u))===n.promise())throw new TypeError("Thenable self-resolution");l=e&&("object"==typeof e||"function"==typeof e)&&e.then,h(l)?i?l.call(e,a(o,n,P,i),a(o,n,R,i)):(o++,l.call(e,a(o,n,P,i),a(o,n,R,i),a(o,n,P,n.notifyWith))):(r!==P&&(s=void 0,u=[e]),(i||n.resolveWith)(s,u))}},c=i?l:function(){try{l()}catch(e){b.Deferred.exceptionHook&&b.Deferred.exceptionHook(e,c.stackTrace),t+1>=o&&(r!==R&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(b.Deferred.getStackHook&&(c.stackTrace=b.Deferred.getStackHook()),e.setTimeout(c))}}return b.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:P,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:P)),n[2][3].add(a(0,e,h(r)?r:R))})).promise()},promise:function(e){return null!=e?b.extend(e,i):i}},o={};return b.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=b.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,–t||a.resolveWith(r,o)}};if(t<=1&&(M(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n–;)M(o[n],s(n),a.reject);return a.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;b.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&I.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},b.readyException=function(t){e.setTimeout((function(){throw t}))};var W=b.Deferred();function F(){v.removeEventListener("DOMContentLoaded",F),e.removeEventListener("load",F),b.ready()}b.fn.ready=function(e){return W.then(e).catch((function(e){b.readyException(e)})),this},b.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?–b.readyWait:b.isReady)||(b.isReady=!0,!0!==e&&–b.readyWait>0||W.resolveWith(v,[b]))}}),b.ready.then=W.then,"complete"===v.readyState||"loading"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(b.ready):(v.addEventListener("DOMContentLoaded",F),e.addEventListener("load",F));var B=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n))for(s in i=!0,n)B(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(b(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},$=/^-ms-/,_=/-([a-z])/g;function z(e,t){return t.toUpperCase()}function U(e){return e.replace($,"ms-").replace(_,z)}var X=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function V(){this.expando=b.expando+V.uid++}V.uid=1,V.prototype={cache:function(e){var t=e[this.expando];return t||(t={},X(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[U(t)]=n;else for(r in t)i[U(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][U(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(U):(t=U(t))in r?[t]:t.match(O)||[]).length;for(;n–;)delete r[t[n]]}(void 0===t||b.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!b.isEmptyObject(t)}};var G=new V,Y=new V,Q=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,J=/[A-Z]/g;function K(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(J,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=function(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Q.test(e)?JSON.parse(e):e)}(n)}catch(e){}Y.set(e,t,n)}else n=void 0;return n}b.extend({hasData:function(e){return Y.hasData(e)||G.hasData(e)},data:function(e,t,n){return Y.access(e,t,n)},removeData:function(e,t){Y.remove(e,t)},_data:function(e,t,n){return G.access(e,t,n)},_removeData:function(e,t){G.remove(e,t)}}),b.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=Y.get(o),1===o.nodeType&&!G.get(o,"hasDataAttrs"))){for(n=a.length;n–;)a[n]&&0===(r=a[n].name).indexOf("data-")&&(r=U(r.slice(5)),K(o,r,i[r]));G.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof e?this.each((function(){Y.set(this,e)})):B(this,(function(t){var n;if(o&&void 0===t)return void 0!==(n=Y.get(o,e))||void 0!==(n=K(o,e))?n:void 0;this.each((function(){Y.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){Y.remove(this,e)}))}}),b.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=G.get(e,t),n&&(!r||Array.isArray(n)?r=G.access(e,t,b.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r–),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){b.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return G.get(e,n)||G.access(e,n,{empty:b.Callbacks("once memory").add((function(){G.remove(e,[t+"queue",n])}))})}}),b.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n–),arguments.length<n?b.queue(this[0],e):void 0===t?this:this.each((function(){var n=b.queue(this,e,t);b._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&b.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){b.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=b.Deferred(),o=this,a=this.length,s=function(){–r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a–;)(n=G.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var Z=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ee=new RegExp("^(?:([+-])=|)("+Z+")([a-z%]*)$","i"),te=["Top","Right","Bottom","Left"],ne=v.documentElement,re=function(e){return b.contains(e.ownerDocument,e)},ie={composed:!0};ne.getRootNode&&(re=function(e){return b.contains(e.ownerDocument,e)||e.getRootNode(ie)===e.ownerDocument});var oe=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&re(e)&&"none"===b.css(e,"display")};function ae(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return b.css(e,t,"")},u=s(),l=n&&n[3]||(b.cssNumber[t]?"":"px"),c=e.nodeType&&(b.cssNumber[t]||"px"!==l&&+u)&&ee.exec(b.css(e,t));if(c&&c[3]!==l){for(u/=2,l=l||c[3],c=+u||1;a–;)b.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,b.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var se={};function ue(e){var t,n=e.ownerDocument,r=e.nodeName,i=se[r];return i||(t=n.body.appendChild(n.createElement(r)),i=b.css(t,"display"),t.parentNode.removeChild(t),"none"===i&&(i="block"),se[r]=i,i)}function le(e,t){for(var n,r,i=[],o=0,a=e.length;o<a;o++)(r=e[o]).style&&(n=r.style.display,t?("none"===n&&(i[o]=G.get(r,"display")||null,i[o]||(r.style.display="")),""===r.style.display&&oe(r)&&(i[o]=ue(r))):"none"!==n&&(i[o]="none",G.set(r,"display",n)));for(o=0;o<a;o++)null!=i[o]&&(e[o].style.display=i[o]);return e}b.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each((function(){oe(this)?b(this).show():b(this).hide()}))}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=v.createDocumentFragment().appendChild(v.createElement("div")),(fe=v.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),d.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",d.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",d.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||""):void 0!==e.querySelectorAll?e.querySelectorAll(t||""):[],void 0===t||t&&k(e,t)?b.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)G.set(e[n],"globalEval",!t||G.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,d.option||(ge.optgroup=ge.option=[1,"<select multiple=’multiple’>","</select>"]);var me=/<|&#?\\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if(\"object\"===x(o))b.merge(p,o.nodeType?[o]:o);else if(me.test(o)){for(a=a||f.appendChild(t.createElement(\"div\")),s=(de.exec(o)||[\"\",\"\"])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+b.htmlPrefilter(o)+u[2],c=u[0];c--;)a=a.lastChild;b.merge(p,a.childNodes),(a=f.firstChild).textContent=\"\"}else p.push(t.createTextNode(o));for(f.textContent=\"\",d=0;o=p[d++];)if(r&&b.inArray(o,r)>-1)i&&i.push(o);else if(l=re(o),a=ve(f.appendChild(o),\"script\"),l&&ye(a),n)for(c=0;o=a[c++];)he.test(o.type||"")&&n.push(o);return f}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\.(.+)|)/;function Ce(){return!0}function Ee(){return!1}function Se(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==("focus"===t)}function ke(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)ke(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ee;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return b().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=b.guid++)),e.each((function(){b.event.add(this,t,i,r,n)}))}function Ae(e,t,n){n?(G.set(e,t,!1),b.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=G.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(b.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),G.set(this,t,a),r=n(this,t),this[t](),a!==(o=G.get(this,t))||r?G.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o.value}else a.length&&(G.set(this,t,{value:b.event.trigger(b.extend(a[0],b.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===G.get(e,t)&&b.event.add(e,t,Ce)}b.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.get(e);if(X(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&b.find.matchesSelector(ne,i),n.guid||(n.guid=b.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==b&&b.event.triggered!==t.type?b.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(O)||[""]).length;l–;)d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=b.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=b.event.special[d]||{},c=b.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&b.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),b.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.hasData(e)&&G.get(e);if(v&&(u=v.events)){for(l=(t=(t||"").match(O)||[""]).length;l–;)if(d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){for(f=b.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;o–;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(""!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount–,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||b.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(u)&&G.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=b.event.fix(e),l=(G.get(this,"events")||Object.create(null))[u.type]||[],c=b.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){for(a=b.event.handlers.call(this,u,l),t=0;(i=a[t++])&&!u.isPropagationStopped();)for(u.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!u.isImmediatePropagationStopped();)u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((b.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&e.button>=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?b(i,this).index(l)>-1:b.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(e,t){Object.defineProperty(b.Event.prototype,e,{enumerable:!0,configurable:!0,get:h(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[b.expando]?e:new b.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&k(t,"input")&&Ae(t,"click",Ce),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&k(t,"input")&&Ae(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&k(t,"input")&&G.get(t,"click")||k(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},b.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},b.Event=function(e,t){if(!(this instanceof b.Event))return new b.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ce:Ee,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&b.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[b.expando]=!0},b.Event.prototype={constructor:b.Event,isDefaultPrevented:Ee,isPropagationStopped:Ee,isImmediatePropagationStopped:Ee,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ce,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ce,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ce,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},b.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&be.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&we.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},b.event.addProp),b.each({focus:"focusin",blur:"focusout"},(function(e,t){b.event.special[e]={setup:function(){return Ae(this,e,Se),!1},trigger:function(){return Ae(this,e),!0},delegateType:t}})),b.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},(function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return i&&(i===r||b.contains(r,i))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}})),b.fn.extend({on:function(e,t,n,r){return ke(this,e,t,n,r)},one:function(e,t,n,r){return ke(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,b(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Ee),this.each((function(){b.event.remove(this,e,n,t)}))}});var Ne=/<script|<style|<link/i,De=/checked\s*(?:[^=]|=\s*.checked.)/i,je=/^\s*<!(?:\[CDATA\[|–)|(?:\]\]|–)>\s*$/g;function qe(e,t){return k(e,"table")&&k(11!==t.nodeType?t:t.firstChild,"tr")&&b(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(G.hasData(e)&&(s=G.get(e).events))for(i in G.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)b.event.add(t,i,s[i][n]);Y.hasData(e)&&(o=Y.access(e),a=b.extend({},o),Y.set(t,a))}}function Pe(e,t){var n=t.nodeName.toLowerCase();"input"===n&&pe.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function Re(e,t,n,r){t=o(t);var i,a,s,u,l,c,f=0,p=e.length,g=p-1,v=t[0],y=h(v);if(y||p>1&&"string"==typeof v&&!d.checkClone&&De.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Re(o,t,n,r)}));if(p&&(a=(i=xe(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=b.map(ve(i,"script"),Le)).length;f<p;f++)l=i,f!==g&&(l=b.clone(l,!0,!0),u&&b.merge(s,ve(l,"script"))),n.call(e[f],l,f);if(u)for(c=s[s.length-1].ownerDocument,b.map(s,He),f=0;f<u;f++)l=s[f],he.test(l.type||"")&&!G.access(l,"globalEval")&&b.contains(c,l)&&(l.src&&"module"!==(l.type||"").toLowerCase()?b._evalUrl&&!l.noModule&&b._evalUrl(l.src,{nonce:l.nonce||l.getAttribute("nonce")},c):m(l.textContent.replace(je,""),l,c))}return e}function Me(e,t,n){for(var r,i=t?b.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||b.cleanData(ve(r)),r.parentNode&&(n&&re(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}b.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=re(e);if(!(d.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(a=ve(s),r=0,i=(o=ve(e)).length;r<i;r++)Pe(o[r],a[r]);if(t)if(n)for(o=o||ve(e),a=a||ve(s),r=0,i=o.length;r<i;r++)Oe(o[r],a[r]);else Oe(e,s);return(a=ve(s,"script")).length>0&&ye(a,!u&&ve(e,"script")),s},cleanData:function(e){for(var t,n,r,i=b.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[G.expando]){if(t.events)for(r in t.events)i[r]?b.event.remove(n,r):b.removeEvent(n,r,t.handle);n[G.expando]=void 0}n[Y.expando]&&(n[Y.expando]=void 0)}}}),b.fn.extend({detach:function(e){return Me(this,e,!0)},remove:function(e){return Me(this,e)},text:function(e){return B(this,(function(e){return void 0===e?b.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Re(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)}))},prepend:function(){return Re(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(b.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return b.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ne.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=b.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(b.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return Re(this,arguments,(function(t){var n=this.parentNode;b.inArray(this,e)<0&&(b.cleanData(ve(this)),n&&n.replaceChild(t,this))}),e)}}),b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},(function(e,t){b.fn[e]=function(e){for(var n,r=[],i=b(e),o=i.length-1,s=0;s<=o;s++)n=s===o?this:this.clone(!0),b(i[s])[t](n),a.apply(r,n.get());return this.pushStack(r)}}));var Ie=new RegExp("^("+Z+")(?!px)[a-z%]+$","i"),We=function(t){var n=t.ownerDocument.defaultView;return n&&n.opener||(n=e),n.getComputedStyle(t)},Fe=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Be=new RegExp(te.join("|"),"i");function $e(e,t,n){var r,i,o,a,s=e.style;return(n=n||We(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||re(e)||(a=b.style(e,t)),!d.pixelBoxStyles()&&Ie.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function _e(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function t(){if(c){l.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",c.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ne.appendChild(l).appendChild(c);var t=e.getComputedStyle(c);r="1%"!==t.top,u=12===n(t.marginLeft),c.style.right="60%",a=36===n(t.right),i=36===n(t.width),c.style.position="absolute",o=12===n(c.offsetWidth/3),ne.removeChild(l),c=null}}function n(e){return Math.round(parseFloat(e))}var r,i,o,a,s,u,l=v.createElement("div"),c=v.createElement("div");c.style&&(c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",d.clearCloneStyle="content-box"===c.style.backgroundClip,b.extend(d,{boxSizingReliable:function(){return t(),i},pixelBoxStyles:function(){return t(),a},pixelPosition:function(){return t(),r},reliableMarginLeft:function(){return t(),u},scrollboxSize:function(){return t(),o},reliableTrDimensions:function(){var t,n,r,i;return null==s&&(t=v.createElement("table"),n=v.createElement("tr"),r=v.createElement("div"),t.style.cssText="position:absolute;left:-11111px",n.style.height="1px",r.style.height="9px",ne.appendChild(t).appendChild(n).appendChild(r),i=e.getComputedStyle(n),s=parseInt(i.height)>3,ne.removeChild(t)),s}}))}();var ze=["Webkit","Moz","ms"],Ue=v.createElement("div").style,Xe={};function Ve(e){var t=b.cssProps[e]||Xe[e];return t||(e in Ue?e:Xe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=ze.length;n–;)if((e=ze[n]+t)in Ue)return e}(e)||e)}var Ge=/^(none|table(?!-c[ea]).+)/,Ye=/^–/,Qe={position:"absolute",visibility:"hidden",display:"block"},Je={letterSpacing:"0",fontWeight:"400"};function Ke(e,t,n){var r=ee.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ze(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=b.css(e,n+te[a],!0,i)),r?("content"===n&&(u-=b.css(e,"padding"+te[a],!0,i)),"margin"!==n&&(u-=b.css(e,"border"+te[a]+"Width",!0,i))):(u+=b.css(e,"padding"+te[a],!0,i),"padding"!==n?u+=b.css(e,"border"+te[a]+"Width",!0,i):s+=b.css(e,"border"+te[a]+"Width",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function et(e,t,n){var r=We(e),i=(!d.boxSizingReliable()||n)&&"border-box"===b.css(e,"boxSizing",!1,r),o=i,a=$e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Ie.test(a)){if(!n)return a;a="auto"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&k(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===b.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===b.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ze(e,t,n||(i?"border":"content"),o,r,a)+"px"}function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=$e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=U(t),u=Ye.test(t),l=e.style;if(u||(t=Ve(s)),a=b.cssHooks[t]||b.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ee.exec(n))&&i[1]&&(n=ae(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(b.cssNumber[s]?"":"px")),d.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=U(t);return Ye.test(t)||(t=Ve(s)),(a=b.cssHooks[t]||b.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=$e(e,t,r)),"normal"===i&&t in Je&&(i=Je[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),b.each(["height","width"],(function(e,t){b.cssHooks[t]={get:function(e,n,r){if(n)return!Ge.test(b.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):Fe(e,Qe,(function(){return et(e,t,r)}))},set:function(e,n,r){var i,o=We(e),a=!d.scrollboxSize()&&"absolute"===o.position,s=(a||r)&&"border-box"===b.css(e,"boxSizing",!1,o),u=r?Ze(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),u&&(i=ee.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=b.css(e,t)),Ke(0,n,u)}}})),b.cssHooks.marginLeft=_e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat($e(e,"marginLeft"))||e.getBoundingClientRect().left-Fe(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),b.each({margin:"",padding:"",border:"Width"},(function(e,t){b.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+te[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(b.cssHooks[e+t].set=Ke)})),b.fn.extend({css:function(e,t){return B(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=We(e),i=t.length;a<i;a++)o[t[a]]=b.css(e,t[a],!1,r);return o}return void 0!==n?b.style(e,t,n):b.css(e,t)}),e,t,arguments.length>1)}}),b.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||b.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=b.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):1!==e.elem.nodeType||!b.cssHooks[e.prop]&&null==e.elem.style[Ve(e.prop)]?e.elem[e.prop]=e.now:b.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},b.fx=tt.prototype.init,b.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,b.fx.interval),b.fx.tick())}function st(){return e.setTimeout((function(){nt=void 0})),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=te[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(ct.tweeners[t]||[]).concat(ct.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function ct(e,t,n){var r,i,o=0,a=ct.prefilters.length,s=b.Deferred().always((function(){delete u.elem})),u=function(){if(i)return!1;for(var t=nt||st(),n=Math.max(0,l.startTime+l.duration-t),r=1-(n/l.duration||0),o=0,a=l.tweens.length;o<a;o++)l.tweens[o].run(r);return s.notifyWith(e,[l,r,n]),r<1&&a?n:(a||s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{},easing:b.easing._default},n),originalProperties:t,originalOptions:n,startTime:nt||st(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)l.tweens[n].run(1);return t?(s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l,t])):s.rejectWith(e,[l,t]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=U(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=b.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);o<a;o++)if(r=ct.prefilters[o].call(l,e,c,l.opts))return h(r.stop)&&(b._queueHooks(l.elem,l.opts.queue).stop=r.stop.bind(r)),r;return b.map(c,lt,l),h(l.opts.start)&&l.opts.start.call(e,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l}b.Animation=b.extend(ct,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return ae(n.elem,e,ee.exec(t),n),n}]},tweener:function(e,t){h(e)?(t=e,e=["*"]):e=e.match(O);for(var n,r=0,i=e.length;r<i;r++)n=e[r],ct.tweeners[n]=ct.tweeners[n]||[],ct.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&oe(e),v=G.get(e,"fxshow");for(r in n.queue||(null==(a=b._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always((function(){p.always((function(){a.unqueued–,b.queue(e,"fx").length||a.empty.fire()}))}))),t)if(i=t[r],it.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||b.style(e,r)}if((u=!b.isEmptyObject(t))||!b.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=G.get(e,"display")),"none"===(c=b.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=b.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===b.css(e,"float")&&(u||(p.done((function(){h.display=l})),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always((function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]}))),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=G.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done((function(){for(r in g||le([e]),G.remove(e,"fxshow"),d)b.style(e,r,d[r])}))),u=lt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?ct.prefilters.unshift(e):ct.prefilters.push(e)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||h(e)&&e,duration:e,easing:n&&t||t&&!h(t)&&t};return b.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in b.fx.speeds?r.duration=b.fx.speeds[r.duration]:r.duration=b.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){h(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(oe).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=ct(this,b.extend({},e),o);(i||G.get(this,"finish"))&&t.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&this.queue(e||"fx",[]),this.each((function(){var t=!0,i=null!=e&&e+"queueHooks",o=b.timers,a=G.get(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&ot.test(i)&&r(a[i]);for(i=o.length;i–;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||b.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||"fx"),this.each((function(){var t,n=G.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t–;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish}))}}),b.each(["toggle","show","hide"],(function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ut(t,!0),e,r,i)}})),b.each({slideDown:ut("show"),slideUp:ut("hide"),slideToggle:ut("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},(function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}})),b.timers=[],b.fx.tick=function(){var e,t=0,n=b.timers;for(nt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t–,1);n.length||b.fx.stop(),nt=void 0},b.fx.timer=function(e){b.timers.push(e),b.fx.start()},b.fx.interval=13,b.fx.start=function(){rt||(rt=!0,at())},b.fx.stop=function(){rt=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fn.delay=function(t,n){return t=b.fx&&b.fx.speeds[t]||t,n=n||"fx",this.queue(n,(function(n,r){var i=e.setTimeout(n,t);r.stop=function(){e.clearTimeout(i)}}))},function(){var e=v.createElement("input"),t=v.createElement("select").appendChild(v.createElement("option"));e.type="checkbox",d.checkOn=""!==e.value,d.optSelected=t.selected,(e=v.createElement("input")).value="t",e.type="radio",d.radioValue="t"===e.value}();var ft,pt=b.expr.attrHandle;b.fn.extend({attr:function(e,t){return B(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){b.removeAttr(this,e)}))}}),b.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?b.prop(e,t,n):(1===o&&b.isXMLDoc(e)||(i=b.attrHooks[t.toLowerCase()]||(b.expr.match.bool.test(t)?ft:void 0)),void 0!==n?null===n?void b.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=b.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&"radio"===t&&k(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(O);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ft={set:function(e,t,n){return!1===t?b.removeAttr(e,n):e.setAttribute(n,n),n}},b.each(b.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=pt[t]||b.find.attr;pt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=pt[a],pt[a]=i,i=null!=n(e,t,r)?a:null,pt[a]=o),i}}));var dt=/^(?:input|select|textarea|button)$/i,ht=/^(?:a|area)$/i;function gt(e){return(e.match(O)||[]).join(" ")}function vt(e){return e.getAttribute&&e.getAttribute("class")||""}function yt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(O)||[]}b.fn.extend({prop:function(e,t){return B(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[b.propFix[e]||e]}))}}),b.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&b.isXMLDoc(e)||(t=b.propFix[t]||t,i=b.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=b.find.attr(e,"tabindex");return t?parseInt(t,10):dt.test(e.nodeName)||ht.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),d.optSelected||(b.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),b.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){b.propFix[this.toLowerCase()]=this})),b.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).addClass(e.call(this,t,vt(this)))}));if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr("class","");if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){b(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=b(this),a=yt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=vt(this))&&G.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":G.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+gt(vt(n))+" ").indexOf(t)>-1)return!0;return!1}});var mt=/\r/g;b.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,b(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=b.map(i,(function(e){return null==e?"":e+""}))),(t=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=b.valHooks[i.type]||b.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(mt,""):null==n?"":n:void 0}}),b.extend({valHooks:{option:{get:function(e){var t=b.find.attr(e,"value");return null!=t?t:gt(b.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!k(n.parentNode,"optgroup"))){if(t=b(n).val(),a)return t;s.push(t)}return s},set:function(e,t){for(var n,r,i=e.options,o=b.makeArray(t),a=i.length;a–;)((r=i[a]).selected=b.inArray(b.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),b.each(["radio","checkbox"],(function(){b.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=b.inArray(b(e).val(),t)>-1}},d.checkOn||(b.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),d.focusin="onfocusin"in e;var xt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};b.extend(b.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,"type")?t.type:t,x=c.call(t,"namespace")?t.namespace.split("."):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!xt.test(m+b.event.triggered)&&(m.indexOf(".")>-1&&(x=m.split("."),m=x.shift(),x.sort()),l=m.indexOf(":")<0&&"on"+m,(t=t[b.expando]?t:new b.Event(m,"object"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:b.makeArray(n,[t]),p=b.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,xt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(G.get(a,"events")||Object.create(null))[t.type]&&G.get(a,"handle"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&X(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!X(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),b.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,bt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,bt),b.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=b.extend(new b.Event,n,{type:e,isSimulated:!0});b.event.trigger(r,null,t)}}),b.fn.extend({trigger:function(e,t){return this.each((function(){b.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return b.event.trigger(e,t,n,!0)}}),d.focusin||b.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){b.event.simulate(t,e.target,b.event.fix(e))};b.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t);i||r.addEventListener(e,n,!0),G.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t)-1;i?G.access(r,t,i):(r.removeEventListener(e,n,!0),G.remove(r,t))}}}));var wt=e.location,Tt={guid:Date.now()},Ct=/\?/;b.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+t),n};var Et=/\[\]$/,St=/\r?\n/g,kt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function Nt(e,t,n,r){var i;if(Array.isArray(t))b.each(t,(function(t,i){n||Et.test(e)?r(e,i):Nt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==x(t))r(e,t);else for(i in t)Nt(e+"["+i+"]",t[i],n,r)}b.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,(function(){i(this.name,this.value)}));else for(n in e)Nt(n,e[n],t,i);return r.join("&")},b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&At.test(this.nodeName)&&!kt.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var n=b(this).val();return null==n?null:Array.isArray(n)?b.map(n,(function(e){return{name:t.name,value:e.replace(St,"\r\n")}})):{name:t.name,value:n.replace(St,"\r\n")}})).get()}});var Dt=/%20/g,jt=/#.*$/,qt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ht=/^(?:GET|HEAD)$/,Ot=/^\/\//,Pt={},Rt={},Mt="*/".concat("*"),It=v.createElement("a");function Wt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(O)||[];if(h(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Ft(e,t,n,r){var i={},o=e===Rt;function a(s){var u;return i[s]=!0,b.each(e[s]||[],(function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function Bt(e,t){var n,r,i=b.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&b.extend(!0,e,r),e}It.href=wt.href,b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Mt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,b.ajaxSettings),t):Bt(b.ajaxSettings,e)},ajaxPrefilter:Wt(Pt),ajaxTransport:Wt(Rt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=b.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?b(h):b.event,y=b.Deferred(),m=b.Callbacks("once memory"),x=d.statusCode||{},w={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Lt.exec(o);)a[t[1].toLowerCase()+" "]=(a[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=a[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||wt.href)+"").replace(Ot,wt.protocol+"//"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||"*").toLowerCase().match(O)||[""],null==d.crossDomain){u=v.createElement("a");try{u.href=d.url,u.href=u.href,d.crossDomain=It.protocol+"//"+It.host!=u.protocol+"//"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=b.param(d.data,d.traditional)),Ft(Pt,d,n,E),l)return E;for(f in(c=b.event&&d.global)&&0==b.active++&&b.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!Ht.test(d.type),i=d.url.replace(jt,""),d.hasContent?d.data&&d.processData&&0===(d.contentType||"").indexOf("application/x-www-form-urlencoded")&&(d.data=d.data.replace(Dt,"+")):(p=d.url.slice(i.length),d.data&&(d.processData||"string"==typeof d.data)&&(i+=(Ct.test(i)?"&":"?")+d.data,delete d.data),!1===d.cache&&(i=i.replace(qt,"$1"),p=(Ct.test(i)?"&":"?")+"_="+Tt.guid+++p),d.url=i+p),d.ifModified&&(b.lastModified[i]&&E.setRequestHeader("If-Modified-Since",b.lastModified[i]),b.etag[i]&&E.setRequestHeader("If-None-Match",b.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader("Content-Type",d.contentType),E.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Mt+"; q=0.01":""):d.accepts["*"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C="abort",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Ft(Rt,d,n,E)){if(E.readyState=1,c&&g.trigger("ajaxSend",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort("timeout")}),d.timeout));try{l=!1,r.send(w,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,"No Transport");function S(t,n,a,u){var f,p,v,w,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||"",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(w=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;"*"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&b.inArray("script",d.dataTypes)>-1&&(d.converters["text script"]=function(){}),w=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(d,w,E,f),f?(d.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(b.lastModified[i]=T),(T=E.getResponseHeader("etag"))&&(b.etag[i]=T)),204===t||"HEAD"===d.type?C="nocontent":304===t?C="notmodified":(C=w.state,p=w.data,f=!(v=w.error))):(v=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?"ajaxSuccess":"ajaxError",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger("ajaxComplete",[E,d]),–b.active||b.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return b.get(e,t,n,"json")},getScript:function(e,t){return b.get(e,void 0,t,"script")}}),b.each(["get","post"],(function(e,t){b[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),b.ajax(b.extend({url:e,type:t,dataType:i,data:n,success:r},b.isPlainObject(e)&&e))}})),b.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),b._evalUrl=function(e,t,n){return b.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){b.globalEval(e,t,n)}})},b.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=b(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){b(this).wrapInner(e.call(this,t))})):this.each((function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){b(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){b(this).replaceWith(this.childNodes)})),this}}),b.expr.pseudos.hidden=function(e){return!b.expr.pseudos.visible(e)},b.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},b.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var $t={0:200,1223:204},_t=b.ajaxSettings.xhr();d.cors=!!_t&&"withCredentials"in _t,d.ajax=_t=!!_t,b.ajaxTransport((function(t){var n,r;if(d.cors||_t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o($t[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),b.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),b.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=b("<script>").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),v.head.appendChild(t[0])},abort:function(){n&&n()}}}));var zt,Ut=[],Xt=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Ut.pop()||b.expando+"_"+Tt.guid++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",(function(t,n,r){var i,o,a,s=!1!==t.jsonp&&(Xt.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&Xt.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=h(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(Xt,"$1"+i):!1!==t.jsonp&&(t.url+=(Ct.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return a||b.error(i+" was not called"),a[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){a=arguments},r.always((function(){void 0===o?b(e).removeProp(i):e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,Ut.push(i)),a&&h(o)&&o(a[0]),a=o=void 0})),"script"})),d.createHTMLDocument=((zt=v.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===zt.childNodes.length),b.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(d.createHTMLDocument?((r=(t=v.implementation.createHTMLDocument("")).createElement("base")).href=v.location.href,t.head.appendChild(r)):t=v),o=!n&&[],(i=A.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&b(o).remove(),b.merge([],i.childNodes)));var r,i,o},b.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return s>-1&&(r=gt(e.slice(s)),e=e.slice(0,s)),h(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),a.length>0&&b.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done((function(e){o=arguments,a.html(r?b("<div>").append(b.parseHTML(e)).find(r):e)})).always(n&&function(e,t){a.each((function(){n.apply(this,o||[e.responseText,t,e])}))}),this},b.expr.pseudos.animated=function(e){return b.grep(b.timers,(function(t){return e===t.elem})).length},b.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=b.css(e,"position"),c=b(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=b.css(e,"top"),u=b.css(e,"left"),("absolute"===l||"fixed"===l)&&(o+u).indexOf("auto")>-1?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),h(t)&&(t=t.call(e,n,b.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},b.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){b.offset.setOffset(this,e,t)}));var t,n,r=this[0];return r?r.getClientRects().length?(t=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===b.css(r,"position"))t=r.getBoundingClientRect();else{for(t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&"static"===b.css(e,"position");)e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=b(e).offset()).top+=b.css(e,"borderTopWidth",!0),i.left+=b.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-b.css(r,"marginTop",!0),left:t.left-i.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map((function(){for(var e=this.offsetParent;e&&"static"===b.css(e,"position");)e=e.offsetParent;return e||ne}))}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},(function(e,t){var n="pageYOffset"===t;b.fn[e]=function(r){return B(this,(function(e,r,i){var o;if(g(e)?o=e:9===e.nodeType&&(o=e.defaultView),void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i}),e,r,arguments.length)}})),b.each(["top","left"],(function(e,t){b.cssHooks[t]=_e(d.pixelPosition,(function(e,n){if(n)return n=$e(e,t),Ie.test(n)?b(e).position()[t]+"px":n}))})),b.each({Height:"height",Width:"width"},(function(e,t){b.each({padding:"inner"+e,content:t,"":"outer"+e},(function(n,r){b.fn[r]=function(i,o){var a=arguments.length&&(n||"boolean"!=typeof i),s=n||(!0===i||!0===o?"margin":"border");return B(this,(function(t,n,i){var o;return g(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(o=t.documentElement,Math.max(t.body["scroll"+e],o["scroll"+e],t.body["offset"+e],o["offset"+e],o["client"+e])):void 0===i?b.css(t,n,s):b.style(t,n,i,s)}),t,a?i:void 0,a)}}))})),b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],(function(e,t){b.fn[t]=function(e){return this.on(t,e)}})),b.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,""):this.off(t,e||"",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),b.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),(function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}));var Vt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;b.proxy=function(e,t){var n,r,o;if("string"==typeof t&&(n=e[t],t=e,e=n),h(e))return r=i.call(arguments,2),(o=function(){return e.apply(t||this,r.concat(i.call(arguments)))}).guid=e.guid=e.guid||b.guid++,o},b.holdReady=function(e){e?b.readyWait++:b.ready(!0)},b.isArray=Array.isArray,b.parseJSON=JSON.parse,b.nodeName=k,b.isFunction=h,b.isWindow=g,b.camelCase=U,b.type=x,b.now=Date.now,b.isNumeric=function(e){var t=b.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},b.trim=function(e){return null==e?"":(e+"").replace(Vt,"")},"function"==typeof define&&define.amd&&define("jquery",[],(function(){return b}));var Gt=e.jQuery,Yt=e.$;return b.noConflict=function(t){return e.$===b&&(e.$=Yt),t&&e.jQuery===b&&(e.jQuery=Gt),b},void 0===t&&(e.jQuery=e.$=b),b}))},n 460: function _(t,n,i){var o=t(458);function e(){var t=!1,n=!1;this.stopPropagation=function(){t=!0},this.isPropagationStopped=function(){return t},this.stopImmediatePropagation=function(){n=!0},this.isImmediatePropagationStopped=function(){return n}}function r(){this.__nonDataRow=!0}function u(){this.__group=!0,this.level=0,this.count=0,this.value=null,this.title=null,this.collapsed=!1,this.selectChecked=!1,this.totals=null,this.rows=[],this.groups=null,this.groupingKey=null}function s(){this.__groupTotals=!0,this.group=null,this.initialized=!1}function l(){var t=null;this.isActive=function(n){return n?t===n:null!==t},this.activate=function(n){if(n!==t){if(null!==t)throw new Error("SlickGrid.EditorLock.activate: an editController is still active, can’t activate another editController");if(!n.commitCurrentEdit)throw new Error("SlickGrid.EditorLock.activate: editController must implement .commitCurrentEdit()");if(!n.cancelCurrentEdit)throw new Error("SlickGrid.EditorLock.activate: editController must implement .cancelCurrentEdit()");t=n}},this.deactivate=function(n){if(t!==n)throw new Error("SlickGrid.EditorLock.deactivate: specified editController is not the currently active one");t=null},this.commitCurrentEdit=function(){return!t||t.commitCurrentEdit()},this.cancelCurrentEdit=function(){return!t||t.cancelCurrentEdit()}}u.prototype=new r,u.prototype.equals=function(t){return this.value===t.value&&this.count===t.count&&this.collapsed===t.collapsed&&this.title===t.title},s.prototype=new r,n.exports={Event:function(){var t=[];this.subscribe=function(n){t.push(n)},this.unsubscribe=function(n){for(var i=t.length-1;i>=0;i–)t[i]===n&&t.splice(i,1)},this.notify=function(n,i,o){var r;i=i||new e,o=o||this;for(var u=0;u<t.length&&!i.isPropagationStopped()&&!i.isImmediatePropagationStopped();u++)r=t[u].call(o,i,n);return r}},EventData:e,EventHandler:function(){var t=[];this.subscribe=function(n,i){return t.push({event:n,handler:i}),n.subscribe(i),this},this.unsubscribe=function(n,i){for(var o=t.length;o–;)if(t[o].event===n&&t[o].handler===i)return t.splice(o,1),void n.unsubscribe(i);return this},this.unsubscribeAll=function(){for(var n=t.length;n–;)t[n].event.unsubscribe(t[n].handler);return t=[],this}},Range:function(t,n,i,o){void 0===i&&void 0===o&&(i=t,o=n),this.fromRow=Math.min(t,i),this.fromCell=Math.min(n,o),this.toRow=Math.max(t,i),this.toCell=Math.max(n,o),this.isSingleRow=function(){return this.fromRow==this.toRow},this.isSingleCell=function(){return this.fromRow==this.toRow&&this.fromCell==this.toCell},this.contains=function(t,n){return t>=this.fromRow&&t<=this.toRow&&n>=this.fromCell&&n<=this.toCell},this.toString=function(){return this.isSingleCell()?"("+this.fromRow+":"+this.fromCell+")":"("+this.fromRow+":"+this.fromCell+" - "+this.toRow+":"+this.toCell+")"}},NonDataRow:r,Group:u,GroupTotals:s,EditorLock:l,GlobalEditorLock:new l,TreeColumns:function(t){var n={};function i(t,n){return t.filter((function(t){var o=n.call(t);return o&&t.columns&&(t.columns=i(t.columns,n)),o&&(!t.columns||t.columns.length)}))}function e(t){return void 0===t?-1:t}function r(t){var n=[];if(t.hasOwnProperty("length"))for(var i=0;i<t.length;i++)n=n.concat(r(t[i]));else{if(!t.hasOwnProperty("columns"))return t;n=n.concat(r(t.columns))}return n}function u(){return o.extend(!0,[],t)}!function t(i){i.forEach((function(i){n[i.id]=i,i.columns&&t(i.columns)}))}(t),this.hasDepth=function(){for(var n in t)if(t[n].hasOwnProperty("columns"))return!0;return!1},this.getTreeColumns=function(){return t},this.extractColumns=function(){return this.hasDepth()?r(t):t},this.getDepth=function(){return function t(n){if(!n.length)return n.columns?1+t(n.columns):1;for(var i in n)return t(n[i])}(t)},this.getColumnsInDepth=function(n){return function t(n,i,o){var e=[];if(i==(o=o||0))return n.length&&n.forEach((function(t){t.columns&&(t.extractColumns=function(){return r(t)})})),n;for(var u in n)n[u].columns&&(e=e.concat(t(n[u].columns,i,o+1)));return e}(t,n)},this.getColumnsInGroup=function(t){return r(t)},this.visibleColumns=function(){return i(u(),(function(){return this.visible}))},this.filter=function(t){return i(u(),t)},this.reOrder=function(n){return function t(n,i){n.sort((function(t,n){return e(i.getColumnIndex(t.id))-e(i.getColumnIndex(n.id))})).forEach((function(n){n.columns&&t(n.columns,i)}))}(t,n)},this.getById=function(t){return n[t]},this.getInIds=function(t){return t.map((function(t){return n[t]}))}},keyCode:{SPACE:8,BACKSPACE:8,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,ESC:27,HOME:36,INSERT:45,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,RIGHT:39,TAB:9,UP:38,A:65,C:67,V:86},preClickClassName:"slick-edit-preclick",GridAutosizeColsMode:{None:"NOA",LegacyOff:"LOF",LegacyForceFit:"LFF",IgnoreViewport:"IGV",FitColsToViewport:"FCV",FitViewportToCols:"FVC"},ColAutosizeMode:{Locked:"LCK",Guide:"GUI",Content:"CON",ContentIntelligent:"CTI"},RowSelectionMode:{FirstRow:"FS1",FirstNRows:"FSN",AllRows:"ALL",LastRow:"LS1"},ValueFilterMode:{None:"NONE",DeDuplicate:"DEDP",GetGreatestAndSub:"GR8T",GetLongestTextAndSub:"LNSB",GetLongestText:"LNSC"},WidthEvalMode:{CanvasTextSize:"CANV",HTML:"HTML"}}},n 461: function _(e,t,o){var l=e(458),n=e(460);t.exports={CheckboxSelectColumn:function(e){var t,o=null,i=k(),c=new n.EventHandler,r={},d=!1,a=l.extend(!0,{},{columnId:"_checkbox_selector",cssClass:null,hideSelectAllCheckbox:!1,toolTip:"Select/Deselect All",width:30,hideInColumnTitleRow:!1,hideInFilterHeaderRow:!0},e);function s(){t.updateColumnHeader(a.columnId,"","")}function u(){l("#filter-checkbox-selectall-container").hide()}function h(e,n){var c,s,u,h=t.getSelectedRows(),f={},p=0;if("function"==typeof o)for(u=0;u<t.getDataLength();u++){C(s,t.getDataItem(u),t)||p++}var b=[];for(s=0;s<h.length;s++){c=h[s],C(s,t.getDataItem(c),t)?(f[c]=!0,f[c]!==r[c]&&(t.invalidateRow(c),delete r[c])):b.push(c)}for(s in r)t.invalidateRow(s);(r=f,t.render(),d=h.length&&h.length+p>=t.getDataLength(),a.hideInColumnTitleRow||a.hideSelectAllCheckbox||R(d),a.hideInFilterHeaderRow)||l("#header-filter-selector"+i).prop("checked",d);if(b.length>0){for(s=0;s<b.length;s++){var m=h.indexOf(b[s]);h.splice(m,1)}t.setSelectedRows(h)}}function f(e,o){32==e.which&&t.getColumns()[o.cell].id===a.columnId&&(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit()||b(o.row),e.preventDefault(),e.stopImmediatePropagation())}function p(e,o){if(t.getColumns()[o.cell].id===a.columnId&&l(e.target).is(":checkbox")){if(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit())return e.preventDefault(),void e.stopImmediatePropagation();b(o.row),e.stopPropagation(),e.stopImmediatePropagation()}}function b(e){var o=t.getDataItem(e);C(e,o,t)&&(r[e]?t.setSelectedRows(l.grep(t.getSelectedRows(),(function(t){return t!=e}))):t.setSelectedRows(t.getSelectedRows().concat(e)),t.setActiveCell(e,function(){if(null===g){g=0;for(var e=t.getColumns(),o=0;o<e.length;o++)e[o].id==a.columnId&&(g=o)}return g}()))}function m(e,o){if(o.column.id==a.columnId&&l(e.target).is(":checkbox")){if(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit())return e.preventDefault(),void e.stopImmediatePropagation();if(l(e.target).is(":checked")){for(var n=[],i=0;i<t.getDataLength();i++){C(i,t.getDataItem(i),t)&&n.push(i)}t.setSelectedRows(n)}else t.setSelectedRows([]);e.stopPropagation(),e.stopImmediatePropagation()}}"function"==typeof a.selectableOverride&&v(a.selectableOverride);var g=null;function k(){return Math.round(1e7*Math.random())}function w(e,t,o,l,n,i){var c=k()+e;return n&&C(e,n,i)?r[e]?"<input id=’selector"+c+"’ type=’checkbox’ checked=’checked’><label for=’selector"+c+"’></label>":"<input id=’selector"+c+"’ type=’checkbox’><label for=’selector"+c+"’></label>":null}function C(e,t,l){return"function"!=typeof o||o(e,t,l)}function R(e){e?t.updateColumnHeader(a.columnId,"<input id=’header-selector"+i+"’ type=’checkbox’ checked=’checked’><label for=’header-selector"+i+"’></label>",a.toolTip):t.updateColumnHeader(a.columnId,"<input id=’header-selector"+i+"’ type=’checkbox’><label for=’header-selector"+i+"’></label>",a.toolTip)}function v(e){o=e}l.extend(this,{init:function(e){t=e,c.subscribe(t.onSelectedRowsChanged,h).subscribe(t.onClick,p).subscribe(t.onKeyDown,f),a.hideInFilterHeaderRow||function(e){e.onHeaderRowCellRendered.subscribe((function(e,t){"sel"===t.column.field&&(l(t.node).empty(),l("<span id=’filter-checkbox-selectall-container’><input id=’header-filter-selector"+i+"’ type=’checkbox’><label for=’header-filter-selector"+i+"’></label></span>").appendTo(t.node).on("click",(function(e){m(e,t)})))}))}(e),a.hideInColumnTitleRow||c.subscribe(t.onHeaderClick,m)},destroy:function(){c.unsubscribeAll()},pluginName:"CheckboxSelectColumn",deSelectRows:function(e){var o,n=e.length,i=[];for(o=0;o<n;o++)r[e[o]]&&(i[i.length]=e[o]);t.setSelectedRows(l.grep(t.getSelectedRows(),(function(e){return i.indexOf(e)<0})))},selectRows:function(e){var o,l=e.length,n=[];for(o=0;o<l;o++)r[e[o]]||(n[n.length]=e[o]);t.setSelectedRows(t.getSelectedRows().concat(n))},getColumnDefinition:function(){return{id:a.columnId,name:a.hideSelectAllCheckbox||a.hideInColumnTitleRow?"":"<input id=’header-selector"+i+"’ type=’checkbox’><label for=’header-selector"+i+"’></label>",toolTip:a.hideSelectAllCheckbox||a.hideInColumnTitleRow?"":a.toolTip,field:"sel",width:a.width,resizable:!1,sortable:!1,cssClass:a.cssClass,hideSelectAllCheckbox:a.hideSelectAllCheckbox,formatter:w}},getOptions:function(){return a},selectableOverride:v,setOptions:function(e){if((a=l.extend(!0,{},a,e)).hideSelectAllCheckbox)s(),u();else if(a.hideInColumnTitleRow?s():(R(d),c.subscribe(t.onHeaderClick,m)),a.hideInFilterHeaderRow)u();else{var o=l("#filter-checkbox-selectall-container");o.show(),o.find(‘input[type="checkbox"]’).prop("checked",d)}}})}}},n 462: function _(e,t,o){var l=e(458),n=e(460),a=n.keyCode;t.exports={CellExternalCopyManager:function(e){var t,o,r=this,i=e||{},s=i.copiedCellStyleLayerKey||"copy-manager",u=i.copiedCellStyle||"copied",c=0,d=i.bodyElement||document.body,f=i.onCopyInit||null,h=i.onCopySuccess||null;function C(e){if(i.headerColumnValueExtractor){var t=i.headerColumnValueExtractor(e);if(t)return t}return e.name}function m(e,o,n){if(i.dataItemColumnValueExtractor){var a=i.dataItemColumnValueExtractor(e,o);if(a)return a}var r="";if(o.editor){var s={container:l("<p>"),column:o,position:{top:0,left:0},grid:t,event:n},u=new o.editor(s);u.loadValue(e),r=u.serializeValue(),u.destroy()}else r=e[o.field];return r}function g(e,o,n){if(o.denyPaste)return null;if(i.dataItemColumnValueSetter)return i.dataItemColumnValueSetter(e,o,n);if(o.editor){var a={container:l("body"),column:o,position:{top:0,left:0},grid:t},r=new o.editor(a);r.loadValue(e),r.applyValue(e,n),r.destroy()}else e[o.field]=n}function p(e){var t=document.createElement("textarea");return t.style.position="absolute",t.style.left="-1000px",t.style.top=document.body.scrollTop+"px",t.value=e,d.appendChild(t),t.select(),t}function y(e,l){var n;if(!t.getEditorLock().isActive()||t.getOptions().autoEdit){if(e.which==a.ESC&&o&&(e.preventDefault(),w(),r.onCopyCancelled.notify({ranges:o}),o=null),(e.which===a.C||e.which===a.INSERT)&&(e.ctrlKey||e.metaKey)&&!e.shiftKey&&(f&&f.call(),0!==(n=t.getSelectionModel().getSelectedRanges()).length)){o=n,v(n),r.onCopyCells.notify({ranges:n});for(var s=t.getColumns(),u="",c=0;c<n.length;c++){for(var y=n[c],D=[],S=y.fromRow;S<y.toRow+1;S++){var R=[],x=t.getDataItem(S);if(0===D.length&&i.includeHeaderWhenCopying){for(var E=[],V=y.fromCell;V<y.toCell+1;V++)s[V].name.length>0&&E.push(C(s[V]));D.push(E.join("\t"))}for(V=y.fromCell;V<y.toCell+1;V++)R.push(m(x,s[V],e));D.push(R.join("\t"))}u+=D.join("\r\n")+"\r\n"}if(window.clipboardData)return window.clipboardData.setData("Text",u),!0;var b=document.activeElement;if((M=p(u)).focus(),setTimeout((function(){d.removeChild(M),b?b.focus():console.log("Not element to restore focus to after copy?")}),100),h){var I=0;I=1===n.length?n[0].toRow+1-n[0].fromRow:n.length,h.call(this,I)}return!1}if(!i.readOnlyMode&&(e.which===a.V&&(e.ctrlKey||e.metaKey)&&!e.shiftKey||e.which===a.INSERT&&e.shiftKey&&!e.ctrlKey)){var M=p("");return setTimeout((function(){!function(e,t){var o=e.getColumns(),l=t.value.split(/[\n\f\r]/);""===l[l.length-1]&&l.pop();var n=[],a=0;d.removeChild(t);for(var s=0;s<l.length;s++)""!==l[s]?n[a++]=l[s].split("\t"):n[a++]=[""];var u=e.getActiveCell(),c=e.getSelectionModel().getSelectedRanges(),f=c&&c.length?c[0]:null,h=null,C=null;if(f)h=f.fromRow,C=f.fromCell;else{if(!u)return;h=u.row,C=u.cell}var m=!1,p=n.length,y=n.length?n[0].length:0;1==n.length&&1==n[0].length&&f&&(m=!0,p=f.toRow-f.fromRow+1,y=f.toCell-f.fromCell+1);var w=e.getData().length-h,D=0;if(w<p&&i.newRowCreator){var S=e.getData();for(D=1;D<=p-w;D++)S.push({});e.setData(S),e.render()}var R=h+p>e.getDataLength();if(i.newRowCreator&&R){var x=h+p-e.getDataLength();i.newRowCreator(x)}var E={isClipboardCommand:!0,clippedRange:n,oldValues:[],cellExternalCopyManager:r,_options:i,setDataItemValueForColumn:g,markCopySelection:v,oneCellToMultiple:m,activeRow:h,activeCell:C,destH:p,destW:y,maxDestY:e.getDataLength(),maxDestX:e.getColumns().length,h:0,w:0,execute:function(){this.h=0;for(var t=0;t<this.destH;t++){this.oldValues[t]=[],this.w=0,this.h++;for(var l=0;l<this.destW;l++){this.w++;var a=h+t,r=C+l;if(a<this.maxDestY&&r<this.maxDestX){e.getCellNode(a,r);var i=e.getDataItem(a);this.oldValues[t][l]=i[o[r].field],m?this.setDataItemValueForColumn(i,o[r],n[0][0]):this.setDataItemValueForColumn(i,o[r],n[t]?n[t][l]:""),e.updateCell(a,r),e.onCellChange.notify({row:a,cell:r,item:i,grid:e})}}}var s={fromCell:C,fromRow:h,toCell:C+this.w-1,toRow:h+this.h-1};this.markCopySelection([s]),e.getSelectionModel().setSelectedRanges([s]),this.cellExternalCopyManager.onPasteCells.notify({ranges:[s]})},undo:function(){for(var t=0;t<this.destH;t++)for(var l=0;l<this.destW;l++){var n=h+t,a=C+l;if(n<this.maxDestY&&a<this.maxDestX){e.getCellNode(n,a);var r=e.getDataItem(n);m?this.setDataItemValueForColumn(r,o[a],this.oldValues[0][0]):this.setDataItemValueForColumn(r,o[a],this.oldValues[t][l]),e.updateCell(n,a),e.onCellChange.notify({row:n,cell:a,item:r,grid:e})}}var i={fromCell:C,fromRow:h,toCell:C+this.w-1,toRow:h+this.h-1};if(this.markCopySelection([i]),e.getSelectionModel().setSelectedRanges([i]),this.cellExternalCopyManager.onPasteCells.notify({ranges:[i]}),D>1){for(var s=e.getData();D>1;D–)s.splice(s.length-1,1);e.setData(s),e.render()}}};i.clipboardCommandHandler?i.clipboardCommandHandler(E):E.execute()}(t,M)}),100),!1}}}function v(e){w();for(var o=t.getColumns(),l={},n=0;n<e.length;n++)for(var a=e[n].fromRow;a<=e[n].toRow;a++){l[a]={};for(var i=e[n].fromCell;i<=e[n].toCell&&i<o.length;i++)l[a][o[i].id]=u}t.setCellCssStyles(s,l),clearTimeout(c),c=setTimeout((function(){r.clearCopySelection()}),2e3)}function w(){t.removeCellCssStyles(s)}l.extend(this,{init:function(e){(t=e).onKeyDown.subscribe(y);var o=e.getSelectionModel();if(!o)throw new Error("Selection model is mandatory for this plugin. Please set a selection model on the grid before adding this plugin: grid.setSelectionModel(new Slick.CellSelectionModel())");o.onSelectedRangesChanged.subscribe((function(e,o){t.focus()}))},destroy:function(){t.onKeyDown.unsubscribe(y)},pluginName:"CellExternalCopyManager",clearCopySelection:w,handleKeyDown:y,onCopyCells:new n.Event,onCopyCancelled:new n.Event,onPasteCells:new n.Event,setIncludeHeaderWhenCopying:function(e){i.includeHeaderWhenCopying=e}})}}},n 463: function _(r,t,o){var _=r(1);_.__exportStar(r(460),t.exports),_.__exportStar(r(464),t.exports),_.__exportStar(r(467),t.exports),_.__exportStar(r(468),t.exports),_.__exportStar(r(469),t.exports),_.__exportStar(r(470),t.exports),_.__exportStar(r(471),t.exports)},n 464: function _(require,module,exports){n /n * @licensen * (c) 2009-2016 Michael Leibmann * michael{dot}leibman{at}gmail{dot}comn * http://github.com/mleibman/slickgridn n * Distributed under MIT license.n * All rights reserved.n *n * SlickGrid v2.4n *n * NOTES:n * Cell/row DOM manipulations are done directly bypassing jQuery’s DOM manipulation methods.n * This increases the speed dramatically, but can only be done safely because there are no event handlersn * or data associated with any cell/row DOM nodes. Cell editors must make sure they implement .destroy()n * and do proper cleanup.n */n var $=require(458),Slick=require(460),scrollbarDimensions,maxSupportedCssHeight;function SlickGrid(container,data,columns,options){$.fn.drag||require(465),$.fn.drop||require(466);var defaults={alwaysShowVerticalScroll:!1,alwaysAllowHorizontalScroll:!1,explicitInitialization:!1,rowHeight:25,defaultColumnWidth:80,enableAddRow:!1,leaveSpaceForNewRows:!1,editable:!1,autoEdit:!0,suppressActiveCellChangeOnEdit:!1,enableCellNavigation:!0,enableColumnReorder:!0,asyncEditorLoading:!1,asyncEditorLoadDelay:100,forceFitColumns:!1,enableAsyncPostRender:!1,asyncPostRenderDelay:50,enableAsyncPostRenderCleanup:!1,asyncPostRenderCleanupDelay:40,autoHeight:!1,editorLock:Slick.GlobalEditorLock,showColumnHeader:!0,showHeaderRow:!1,headerRowHeight:25,createFooterRow:!1,showFooterRow:!1,footerRowHeight:25,createPreHeaderPanel:!1,showPreHeaderPanel:!1,preHeaderPanelHeight:25,showTopPanel:!1,topPanelHeight:25,formatterFactory:null,editorFactory:null,cellFlashingCssClass:"flashing",selectedCellCssClass:"selected",multiSelect:!0,enableTextSelectionOnCells:!1,dataItemColumnValueExtractor:null,frozenBottom:!1,frozenColumn:-1,frozenRow:-1,fullWidthRows:!1,multiColumnSort:!1,numberedMultiColumnSort:!1,tristateMultiColumnSort:!1,sortColNumberInSeparateSpan:!1,defaultFormatter,forceSyncScrolling:!1,addNewRowCssClass:"new-row",preserveCopiedSelectionOnPaste:!1,showCellSelection:!0,viewportClass:null,minRowBuffer:3,emulatePagingWhenScrolling:!0,editorCellNavOnLRKeys:!1,doPaging:!0,autosizeColsMode:Slick.GridAutosizeColsMode.LegacyOff,autosizeColPaddingPx:4,autosizeTextAvgToMWidthRatio:.75,viewportSwitchToScrollModeWidthPercent:void 0,viewportMinWidthPx:void 0,viewportMaxWidthPx:void 0},columnDefaults={name:"",resizable:!0,sortable:!1,minWidth:30,maxWidth:void 0,rerenderOnResize:!1,headerCssClass:null,defaultSortAsc:!0,focusable:!0,selectable:!0},columnAutosizeDefaults={ignoreHeaderText:!1,colValueArray:void 0,allowAddlPercent:void 0,formatterOverride:void 0,autosizeMode:Slick.ColAutosizeMode.ContentIntelligent,rowSelectionModeOnInit:void 0,rowSelectionMode:Slick.RowSelectionMode.FirstNRows,rowSelectionCount:100,valueFilterMode:Slick.ValueFilterMode.None,widthEvalMode:Slick.WidthEvalMode.CanvasTextSize,sizeToRemaining:void 0,widthPx:void 0,colDataTypeOf:void 0},th,h,ph,n,cj,page=0,offset=0,vScrollDir=1,initialized=!1,$container,uid="slickgrid_"+Math.round(1e6*Math.random()),self=this,$focusSink,$focusSink2,$groupHeaders=$(),$headerScroller,$headers,$headerRow,$headerRowScroller,$headerRowSpacerL,$headerRowSpacerR,$footerRow,$footerRowScroller,$footerRowSpacerL,$footerRowSpacerR,$preHeaderPanel,$preHeaderPanelScroller,$preHeaderPanelSpacer,$preHeaderPanelR,$preHeaderPanelScrollerR,$preHeaderPanelSpacerR,$topPanelScroller,$topPanel,$viewport,$canvas,$style,$boundAncestors,treeColumns,stylesheet,columnCssRulesL,columnCssRulesR,viewportH,viewportW,canvasWidth,canvasWidthL,canvasWidthR,headersWidth,headersWidthL,headersWidthR,viewportHasHScroll,viewportHasVScroll,headerColumnWidthDiff=0,headerColumnHeightDiff=0,cellWidthDiff=0,cellHeightDiff=0,jQueryNewWidthBehaviour=!1,absoluteColumnMinWidth,hasFrozenRows=!1,frozenRowsHeight=0,actualFrozenRow=-1,paneTopH=0,paneBottomH=0,viewportTopH=0,viewportBottomH=0,topPanelH=0,headerRowH=0,footerRowH=0,tabbingDirection=1,$activeCanvasNode,$activeViewportNode,activePosX,activeRow,activeCell,activeCellNode=null,currentEditor=null,serializedEditorValue,editController,rowsCache={},renderedRows=0,numVisibleRows=0,prevScrollTop=0,scrollTop=0,lastRenderedScrollTop=0,lastRenderedScrollLeft=0,prevScrollLeft=0,scrollLeft=0,selectionModel,selectedRows=[],plugins=[],cellCssClasses={},columnsById={},sortColumns=[],columnPosLeft=[],columnPosRight=[],pagingActive=!1,pagingIsLastPage=!1,scrollThrottle=ActionThrottle(render,50),h_editorLoader=null,h_render=null,h_postrender=null,h_postrenderCleanup=null,postProcessedRows={},postProcessToRow=null,postProcessFromRow=null,postProcessedCleanupQueue=[],postProcessgroupId=0,counter_rows_rendered=0,counter_rows_removed=0,rowNodeFromLastMouseWheelEvent,zombieRowNodeFromLastMouseWheelEvent,zombieRowCacheFromLastMouseWheelEvent,zombieRowPostProcessedFromLastMouseWheelEvent,$paneHeaderL,$paneHeaderR,$paneTopL,$paneTopR,$paneBottomL,$paneBottomR,$headerScrollerL,$headerScrollerR,$headerL,$headerR,$groupHeadersL,$groupHeadersR,$headerRowScrollerL,$headerRowScrollerR,$footerRowScrollerL,$footerRowScrollerR,$headerRowL,$headerRowR,$footerRowL,$footerRowR,$topPanelScrollerL,$topPanelScrollerR,$topPanelL,$topPanelR,$viewportTopL,$viewportTopR,$viewportBottomL,$viewportBottomR,$canvasTopL,$canvasTopR,$canvasBottomL,$canvasBottomR,$viewportScrollContainerX,$viewportScrollContainerY,$headerScrollContainer,$headerRowScrollContainer,$footerRowScrollContainer,cssShow={position:"absolute",visibility:"hidden",display:"block"},$hiddenParents,oldProps=[],columnResizeDragging=!1;function init(){if(($container=container instanceof $?container:$(container)).length<1)throw new Error("SlickGrid requires a valid container, "+container+" does not exist in the DOM.");if(cacheCssForHiddenInit(),maxSupportedCssHeight=maxSupportedCssHeight||getMaxSupportedCssHeight(),options=$.extend({},defaults,options),validateAndEnforceOptions(),columnDefaults.width=options.defaultColumnWidth,treeColumns=new Slick.TreeColumns(columns),columns=treeColumns.extractColumns(),updateColumnProps(),options.enableColumnReorder&&!$.fn.sortable)throw new Error("SlickGrid’s ‘enableColumnReorder = true’ option requires jquery-ui.sortable module to be loaded");if(editController={commitCurrentEdit,cancelCurrentEdit},$container.empty().css("overflow","hidden").css("outline",0).addClass(uid).addClass("ui-widget"),/relative|absolute|fixed/.test($container.css("position"))||$container.css("position","relative"),$focusSink=$("<div tabIndex=’0’ hideFocus style=’position:fixed;width:0;height:0;top:0;left:0;outline:0;’></div>").appendTo($container),$paneHeaderL=$("<div class=’slick-pane slick-pane-header slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneHeaderR=$("<div class=’slick-pane slick-pane-header slick-pane-right’ tabIndex=’0’ />").appendTo($container),$paneTopL=$("<div class=’slick-pane slick-pane-top slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneTopR=$("<div class=’slick-pane slick-pane-top slick-pane-right’ tabIndex=’0’ />").appendTo($container),$paneBottomL=$("<div class=’slick-pane slick-pane-bottom slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneBottomR=$("<div class=’slick-pane slick-pane-bottom slick-pane-right’ tabIndex=’0’ />").appendTo($container),options.createPreHeaderPanel&&($preHeaderPanelScroller=$("<div class=’slick-preheader-panel ui-state-default’ style=’overflow:hidden;position:relative;’ />").appendTo($paneHeaderL),$preHeaderPanel=$("<div />").appendTo($preHeaderPanelScroller),$preHeaderPanelSpacer=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($preHeaderPanelScroller),$preHeaderPanelScrollerR=$("<div class=’slick-preheader-panel ui-state-default’ style=’overflow:hidden;position:relative;’ />").appendTo($paneHeaderR),$preHeaderPanelR=$("<div />").appendTo($preHeaderPanelScrollerR),$preHeaderPanelSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($preHeaderPanelScrollerR),options.showPreHeaderPanel||($preHeaderPanelScroller.hide(),$preHeaderPanelScrollerR.hide())),$headerScrollerL=$("<div class=’slick-header ui-state-default slick-header-left’ />").appendTo($paneHeaderL),$headerScrollerR=$("<div class=’slick-header ui-state-default slick-header-right’ />").appendTo($paneHeaderR),$headerScroller=$().add($headerScrollerL).add($headerScrollerR),treeColumns.hasDepth()){$groupHeadersL=[],$groupHeadersR=[];for(var e=0;e<treeColumns.getDepth()-1;e++)$groupHeadersL[e]=$("<div class=’slick-group-header-columns slick-group-header-columns-left’ style=’left:-1000px’ />").appendTo($headerScrollerL),$groupHeadersR[e]=$("<div class=’slick-group-header-columns slick-group-header-columns-right’ style=’left:-1000px’ />").appendTo($headerScrollerR);$groupHeaders=$().add($groupHeadersL).add($groupHeadersR)}$headerL=$("<div class=’slick-header-columns slick-header-columns-left’ style=’left:-1000px’ />").appendTo($headerScrollerL),$headerR=$("<div class=’slick-header-columns slick-header-columns-right’ style=’left:-1000px’ />").appendTo($headerScrollerR),$headers=$().add($headerL).add($headerR),$headerRowScrollerL=$("<div class=’slick-headerrow ui-state-default’ />").appendTo($paneTopL),$headerRowScrollerR=$("<div class=’slick-headerrow ui-state-default’ />").appendTo($paneTopR),$headerRowScroller=$().add($headerRowScrollerL).add($headerRowScrollerR),$headerRowSpacerL=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($headerRowScrollerL),$headerRowSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($headerRowScrollerR),$headerRowL=$("<div class=’slick-headerrow-columns slick-headerrow-columns-left’ />").appendTo($headerRowScrollerL),$headerRowR=$("<div class=’slick-headerrow-columns slick-headerrow-columns-right’ />").appendTo($headerRowScrollerR),$headerRow=$().add($headerRowL).add($headerRowR),$topPanelScrollerL=$("<div class=’slick-top-panel-scroller ui-state-default’ />").appendTo($paneTopL),$topPanelScrollerR=$("<div class=’slick-top-panel-scroller ui-state-default’ />").appendTo($paneTopR),$topPanelScroller=$().add($topPanelScrollerL).add($topPanelScrollerR),$topPanelL=$("<div class=’slick-top-panel’ style=’width:10000px’ />").appendTo($topPanelScrollerL),$topPanelR=$("<div class=’slick-top-panel’ style=’width:10000px’ />").appendTo($topPanelScrollerR),$topPanel=$().add($topPanelL).add($topPanelR),options.showColumnHeader||$headerScroller.hide(),options.showTopPanel||$topPanelScroller.hide(),options.showHeaderRow||$headerRowScroller.hide(),$viewportTopL=$("<div class=’slick-viewport slick-viewport-top slick-viewport-left’ tabIndex=’0’ hideFocus />").appendTo($paneTopL),$viewportTopR=$("<div class=’slick-viewport slick-viewport-top slick-viewport-right’ tabIndex=’0’ hideFocus />").appendTo($paneTopR),$viewportBottomL=$("<div class=’slick-viewport slick-viewport-bottom slick-viewport-left’ tabIndex=’0’ hideFocus />").appendTo($paneBottomL),$viewportBottomR=$("<div class=’slick-viewport slick-viewport-bottom slick-viewport-right’ tabIndex=’0’ hideFocus />").appendTo($paneBottomR),$viewport=$().add($viewportTopL).add($viewportTopR).add($viewportBottomL).add($viewportBottomR),$activeViewportNode=$viewportTopL,$canvasTopL=$("<div class=’grid-canvas grid-canvas-top grid-canvas-left’ tabIndex=’0’ hideFocus />").appendTo($viewportTopL),$canvasTopR=$("<div class=’grid-canvas grid-canvas-top grid-canvas-right’ tabIndex=’0’ hideFocus />").appendTo($viewportTopR),$canvasBottomL=$("<div class=’grid-canvas grid-canvas-bottom grid-canvas-left’ tabIndex=’0’ hideFocus />").appendTo($viewportBottomL),$canvasBottomR=$("<div class=’grid-canvas grid-canvas-bottom grid-canvas-right’ tabIndex=’0’ hideFocus />").appendTo($viewportBottomR),options.viewportClass&&$viewport.toggleClass(options.viewportClass,!0),$canvas=$().add($canvasTopL).add($canvasTopR).add($canvasBottomL).add($canvasBottomR),scrollbarDimensions=scrollbarDimensions||measureScrollbar(),$activeCanvasNode=$canvasTopL,$preHeaderPanelSpacer&&$preHeaderPanelSpacer.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),$headers.width(getHeadersWidth()),$headerRowSpacerL.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),$headerRowSpacerR.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),options.createFooterRow&&($footerRowScrollerR=$("<div class=’slick-footerrow ui-state-default’ />").appendTo($paneTopR),$footerRowScrollerL=$("<div class=’slick-footerrow ui-state-default’ />").appendTo($paneTopL),$footerRowScroller=$().add($footerRowScrollerL).add($footerRowScrollerR),$footerRowSpacerL=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").css("width",getCanvasWidth()+scrollbarDimensions.width+"px").appendTo($footerRowScrollerL),$footerRowSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").css("width",getCanvasWidth()+scrollbarDimensions.width+"px").appendTo($footerRowScrollerR),$footerRowL=$("<div class=’slick-footerrow-columns slick-footerrow-columns-left’ />").appendTo($footerRowScrollerL),$footerRowR=$("<div class=’slick-footerrow-columns slick-footerrow-columns-right’ />").appendTo($footerRowScrollerR),$footerRow=$().add($footerRowL).add($footerRowR),options.showFooterRow||$footerRowScroller.hide()),$focusSink2=$focusSink.clone().appendTo($container),options.explicitInitialization||finishInitialization()}function finishInitialization(){initialized||(initialized=!0,getViewportWidth(),getViewportHeight(),measureCellPaddingAndBorder(),disableSelection($headers),options.enableTextSelectionOnCells||$viewport.on("selectstart.ui",(function(e){return $(e.target).is("input,textarea")})),setFrozenOptions(),setPaneVisibility(),setScroller(),setOverflow(),updateColumnCaches(),createColumnHeaders(),createColumnGroupHeaders(),createColumnFooter(),setupColumnSort(),createCssRules(),resizeCanvas(),bindAncestorScrollEvents(),$container.on("resize.slickgrid",resizeCanvas),$viewport.on("scroll",handleScroll),$.fn.mousewheel&&$viewport.on("mousewheel",handleMouseWheel),$headerScroller.on("contextmenu",handleHeaderContextMenu).on("click",handleHeaderClick).on("mouseenter",".slick-header-column",handleHeaderMouseEnter).on("mouseleave",".slick-header-column",handleHeaderMouseLeave),$headerRowScroller.on("scroll",handleHeaderRowScroll),options.createFooterRow&&($footerRow.on("contextmenu",handleFooterContextMenu).on("click",handleFooterClick),$footerRowScroller.on("scroll",handleFooterRowScroll)),options.createPreHeaderPanel&&$preHeaderPanelScroller.on("scroll",handlePreHeaderPanelScroll),$focusSink.add($focusSink2).on("keydown",handleKeyDown),$canvas.on("keydown",handleKeyDown).on("click",handleClick).on("dblclick",handleDblClick).on("contextmenu",handleContextMenu).on("draginit",handleDragInit).on("dragstart",{distance:3},handleDragStart).on("drag",handleDrag).on("dragend",handleDragEnd).on("mouseenter",".slick-cell",handleMouseEnter).on("mouseleave",".slick-cell",handleMouseLeave),restoreCssFromHiddenInit())}function cacheCssForHiddenInit(){($hiddenParents=$container.parents().addBack().not(":visible")).each((function(){var e={};for(var o in cssShow)e[o]=this.style[o],this.style[o]=cssShow[o];oldProps.push(e)}))}function restoreCssFromHiddenInit(){$hiddenParents.each((function(e){var o=oldProps[e];for(var t in cssShow)this.style[t]=o[t]}))}function hasFrozenColumns(){return options.frozenColumn>-1}function registerPlugin(e){plugins.unshift(e),e.init(self)}function unregisterPlugin(e){for(var o=plugins.length;o>=0;o–)if(plugins[o]===e){plugins[o].destroy&&plugins[o].destroy(),plugins.splice(o,1);break}}function getPluginByName(e){for(var o=plugins.length-1;o>=0;o–)if(plugins[o].pluginName===e)return plugins[o]}function setSelectionModel(e){selectionModel&&(selectionModel.onSelectedRangesChanged.unsubscribe(handleSelectedRangesChanged),selectionModel.destroy&&selectionModel.destroy()),(selectionModel=e)&&(selectionModel.init(self),selectionModel.onSelectedRangesChanged.subscribe(handleSelectedRangesChanged))}function getSelectionModel(){return selectionModel}function getCanvasNode(e,o){e||(e=0),o||(o=0);var t="number"==typeof e?e:getColumnIndex(e);return hasFrozenRows&&o>=actualFrozenRow+(options.frozenBottom?0:1)?hasFrozenColumns()&&t>options.frozenColumn?$canvasBottomR[0]:$canvasBottomL[0]:hasFrozenColumns()&&t>options.frozenColumn?$canvasTopR[0]:$canvasTopL[0]}function getActiveCanvasNode(e){return setActiveCanvasNode(e),$activeCanvasNode[0]}function getCanvases(){return $canvas}function setActiveCanvasNode(e){e&&($activeCanvasNode=$(e.target).closest(".grid-canvas"))}function getViewportNode(){return $viewport[0]}function getActiveViewportNode(e){return setActiveViewPortNode(e),$activeViewportNode[0]}function setActiveViewportNode(e){e&&($activeViewportNode=$(e.target).closest(".slick-viewport"))}function measureScrollbar(){var e=$(‘<div class="’+$viewport.className+’" style="position:absolute; top:-10000px; left:-10000px; overflow:auto; width:100px; height:100px;"></div>’).appendTo("body"),o=$(‘<div style="width:200px; height:200px; overflow:auto;"></div>’).appendTo(e),t={width:e[0].offsetWidth-e[0].clientWidth,height:e[0].offsetHeight-e[0].clientHeight};return o.remove(),e.remove(),t}function getHeadersWidth(){headersWidth=headersWidthL=headersWidthR=0;for(var e=!options.autoHeight,o=0,t=columns.length;o<t;o++){var n=columns[o].width;options.frozenColumn>-1&&o>options.frozenColumn?headersWidthR+=n:headersWidthL+=n}return e&&(options.frozenColumn>-1&&o>options.frozenColumn?headersWidthR+=scrollbarDimensions.width:headersWidthL+=scrollbarDimensions.width),hasFrozenColumns()?(headersWidthL+=1e3,headersWidthR=Math.max(headersWidthR,viewportW)+headersWidthL,headersWidthR+=scrollbarDimensions.width):(headersWidthL+=scrollbarDimensions.width,headersWidthL=Math.max(headersWidthL,viewportW)+1e3),headersWidth=headersWidthL+headersWidthR,Math.max(headersWidth,viewportW)+1e3}function getHeadersWidthL(){return headersWidthL=0,columns.forEach((function(e,o){options.frozenColumn>-1&&o>options.frozenColumn||(headersWidthL+=e.width)})),hasFrozenColumns()?headersWidthL+=1e3:(headersWidthL+=scrollbarDimensions.width,headersWidthL=Math.max(headersWidthL,viewportW)+1e3),headersWidthL}function getHeadersWidthR(){return headersWidthR=0,columns.forEach((function(e,o){options.frozenColumn>-1&&o>options.frozenColumn&&(headersWidthR+=e.width)})),hasFrozenColumns()&&(headersWidthR=Math.max(headersWidthR,viewportW)+getHeadersWidthL(),headersWidthR+=scrollbarDimensions.width),headersWidthR}function getCanvasWidth(){var e=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW,o=columns.length;for(canvasWidthL=canvasWidthR=0;o–;)hasFrozenColumns()&&o>options.frozenColumn?canvasWidthR+=columns[o].width:canvasWidthL+=columns[o].width;var t=canvasWidthL+canvasWidthR;return options.fullWidthRows?Math.max(t,e):t}function updateCanvasWidth(e){var o,t=canvasWidth,n=canvasWidthL,l=canvasWidthR;((o=(canvasWidth=getCanvasWidth())!==t||canvasWidthL!==n||canvasWidthR!==l)||hasFrozenColumns()||hasFrozenRows)&&($canvasTopL.width(canvasWidthL),getHeadersWidth(),$headerL.width(headersWidthL),$headerR.width(headersWidthR),hasFrozenColumns()?($canvasTopR.width(canvasWidthR),$paneHeaderL.width(canvasWidthL),$paneHeaderR.css("left",canvasWidthL),$paneHeaderR.css("width",viewportW-canvasWidthL),$paneTopL.width(canvasWidthL),$paneTopR.css("left",canvasWidthL),$paneTopR.css("width",viewportW-canvasWidthL),$headerRowScrollerL.width(canvasWidthL),$headerRowScrollerR.width(viewportW-canvasWidthL),$headerRowL.width(canvasWidthL),$headerRowR.width(canvasWidthR),options.createFooterRow&&($footerRowScrollerL.width(canvasWidthL),$footerRowScrollerR.width(viewportW-canvasWidthL),$footerRowL.width(canvasWidthL),$footerRowR.width(canvasWidthR)),options.createPreHeaderPanel&&$preHeaderPanel.width(canvasWidth),$viewportTopL.width(canvasWidthL),$viewportTopR.width(viewportW-canvasWidthL),hasFrozenRows&&($paneBottomL.width(canvasWidthL),$paneBottomR.css("left",canvasWidthL),$viewportBottomL.width(canvasWidthL),$viewportBottomR.width(viewportW-canvasWidthL),$canvasBottomL.width(canvasWidthL),$canvasBottomR.width(canvasWidthR))):($paneHeaderL.width("100%"),$paneTopL.width("100%"),$headerRowScrollerL.width("100%"),$headerRowL.width(canvasWidth),options.createFooterRow&&($footerRowScrollerL.width("100%"),$footerRowL.width(canvasWidth)),options.createPreHeaderPanel&&($preHeaderPanel.width("100%"),$preHeaderPanel.width(canvasWidth)),$viewportTopL.width("100%"),hasFrozenRows&&($viewportBottomL.width("100%"),$canvasBottomL.width(canvasWidthL))),viewportHasHScroll=canvasWidth>viewportW-scrollbarDimensions.width),$headerRowSpacerL.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),$headerRowSpacerR.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),options.createFooterRow&&($footerRowSpacerL.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),$footerRowSpacerR.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0))),(o||e)&&applyColumnWidths()}function disableSelection(e){e&&e.jquery&&e.attr("unselectable","on").css("MozUserSelect","none").on("selectstart.ui",(function(){return!1}))}function getMaxSupportedCssHeight(){for(var e=1e6,o=navigator.userAgent.toLowerCase().match(/firefox/)?6e6:1e9,t=$("<div style=’display:none’ />").appendTo(document.body);;){var n=2*e;if(t.css("height",n),n>o||t.height()!==n)break;e=n}return t.remove(),e}function getUID(){return uid}function getHeaderColumnWidthDiff(){return headerColumnWidthDiff}function getScrollbarDimensions(){return scrollbarDimensions}function bindAncestorScrollEvents(){for(var e=hasFrozenRows&&!options.frozenBottom?$canvasBottomL[0]:$canvasTopL[0];(e=e.parentNode)!=document.body&&null!=e;)if(e==$viewportTopL[0]||e.scrollWidth!=e.clientWidth||e.scrollHeight!=e.clientHeight){var o=$(e);$boundAncestors=$boundAncestors?$boundAncestors.add(o):o,o.on("scroll."+uid,handleActiveCellPositionChange)}}function unbindAncestorScrollEvents(){$boundAncestors&&($boundAncestors.off("scroll."+uid),$boundAncestors=null)}function updateColumnHeader(e,o,t){if(initialized){var n=getColumnIndex(e);if(null!=n){var l=columns[n],r=$headers.children().eq(n);r&&(void 0!==o&&(columns[n].name=o),void 0!==t&&(columns[n].toolTip=t),trigger(self.onBeforeHeaderCellDestroy,{node:r[0],column:l,grid:self}),r.attr("title",t||"").children().eq(0).html(o),trigger(self.onHeaderCellRendered,{node:r[0],column:l,grid:self}))}}}function getHeader(e){if(!e)return hasFrozenColumns()?$headers:$headerL;var o=getColumnIndex(e.id);return hasFrozenColumns()?o<=options.frozenColumn?$headerL:$headerR:$headerL}function getHeaderColumn(e){var o="number"==typeof e?e:getColumnIndex(e),t=hasFrozenColumns()?o<=options.frozenColumn?$headerL:$headerR:$headerL,n=hasFrozenColumns()?o<=options.frozenColumn?o:o-options.frozenColumn-1:o,l=t.children().eq(n);return l&&l[0]}function getHeaderRow(){return hasFrozenColumns()?$headerRow:$headerRow[0]}function getFooterRow(){return hasFrozenColumns()?$footerRow:$footerRow[0]}function getPreHeaderPanel(){return $preHeaderPanel[0]}function getPreHeaderPanelRight(){return $preHeaderPanelR[0]}function getHeaderRowColumn(e){var o,t="number"==typeof e?e:getColumnIndex(e);hasFrozenColumns()?t<=options.frozenColumn?o=$headerRowL:(o=$headerRowR,t-=options.frozenColumn+1):o=$headerRowL;var n=o.children().eq(t);return n&&n[0]}function getFooterRowColumn(e){var o,t="number"==typeof e?e:getColumnIndex(e);hasFrozenColumns()?t<=options.frozenColumn?o=$footerRowL:(o=$footerRowR,t-=options.frozenColumn+1):o=$footerRowL;var n=o&&o.children().eq(t);return n&&n[0]}function createColumnFooter(){if(options.createFooterRow){$footerRow.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowL.empty(),$footerRowR.empty();for(var e=0;e<columns.length;e++){var o=columns[e],t=$("<div class=’ui-state-default slick-footerrow-column l"+e+" r"+e+"’></div>").data("column",o).addClass(hasFrozenColumns()&&e<=options.frozenColumn?"frozen":"").appendTo(hasFrozenColumns()&&e>options.frozenColumn?$footerRowR:$footerRowL);trigger(self.onFooterRowCellRendered,{node:t[0],column:o,grid:self})}}}function createColumnGroupHeaders(){var e=0,o=!1;if(treeColumns.hasDepth()){for(var t=0;t<$groupHeadersL.length;t++){$groupHeadersL[t].empty(),$groupHeadersR[t].empty();var n=treeColumns.getColumnsInDepth(t);for(var l in n){var r=n[l];e+=r.extractColumns().length,hasFrozenColumns()&&0===t&&e-1===options.frozenColumn&&(o=!0),$("<div class=’ui-state-default slick-group-header-column’ />").html("<span class=’slick-column-name’>"+r.name+"</span>").attr("id",""+uid+r.id).attr("title",r.toolTip||"").data("column",r).addClass(r.headerCssClass||"").addClass(hasFrozenColumns()&&e-1>options.frozenColumn?"frozen":"").appendTo(hasFrozenColumns()&&e-1>options.frozenColumn?$groupHeadersR[t]:$groupHeadersL[t])}if(hasFrozenColumns()&&0===t&&!o){$groupHeadersL[t].empty(),$groupHeadersR[t].empty(),alert("All columns of group should to be grouped!");break}}applyColumnGroupHeaderWidths()}}function createColumnHeaders(){function e(){$(this).addClass("ui-state-hover")}function o(){$(this).removeClass("ui-state-hover")}$headers.find(".slick-header-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeHeaderCellDestroy,{node:this,column:e,grid:self})})),$headerL.empty(),$headerR.empty(),getHeadersWidth(),$headerL.width(headersWidthL),$headerR.width(headersWidthR),$headerRow.find(".slick-headerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeHeaderRowCellDestroy,{node:this,column:e,grid:self})})),$headerRowL.empty(),$headerRowR.empty(),options.createFooterRow&&($footerRowL.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowL.empty(),hasFrozenColumns()&&($footerRowR.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowR.empty()));for(var t=0;t<columns.length;t++){var n=columns[t],l=hasFrozenColumns()?t<=options.frozenColumn?$headerL:$headerR:$headerL,r=hasFrozenColumns()?t<=options.frozenColumn?$headerRowL:$headerRowR:$headerRowL,i=$("<div class=’ui-state-default slick-header-column’ />").html("<span class=’slick-column-name’>"+n.name+"</span>").width(n.width-headerColumnWidthDiff).attr("id",""+uid+n.id).attr("title",n.toolTip||"").data("column",n).addClass(n.headerCssClass||"").addClass(hasFrozenColumns()&&t<=options.frozenColumn?"frozen":"").appendTo(l);if((options.enableColumnReorder||n.sortable)&&i.on("mouseenter",e).on("mouseleave",o),n.hasOwnProperty("headerCellAttrs")&&n.headerCellAttrs instanceof Object)for(var a in n.headerCellAttrs)n.headerCellAttrs.hasOwnProperty(a)&&i.attr(a,n.headerCellAttrs[a]);if(n.sortable&&(i.addClass("slick-header-sortable"),i.append("<span class=’slick-sort-indicator"+(options.numberedMultiColumnSort&&!options.sortColNumberInSeparateSpan?" slick-sort-indicator-numbered":"")+"’ />"),options.numberedMultiColumnSort&&options.sortColNumberInSeparateSpan&&i.append("<span class=’slick-sort-indicator-numbered’ />")),trigger(self.onHeaderCellRendered,{node:i[0],column:n,grid:self}),options.showHeaderRow){var s=$("<div class=’ui-state-default slick-headerrow-column l"+t+" r"+t+"’></div>").data("column",n).addClass(hasFrozenColumns()&&t<=options.frozenColumn?"frozen":"").appendTo(r);trigger(self.onHeaderRowCellRendered,{node:s[0],column:n,grid:self})}if(options.createFooterRow&&options.showFooterRow){var d=$("<div class=’ui-state-default slick-footerrow-column l"+t+" r"+t+"’></div>").data("column",n).appendTo($footerRow);trigger(self.onFooterRowCellRendered,{node:d[0],column:n,grid:self})}}setSortColumns(sortColumns),setupColumnResize(),options.enableColumnReorder&&("function"==typeof options.enableColumnReorder?options.enableColumnReorder(self,$headers,headerColumnWidthDiff,setColumns,setupColumnResize,columns,getColumnIndex,uid,trigger):setupColumnReorder())}function setupColumnSort(){$headers.click((function(e){if(!columnResizeDragging&&(e.metaKey=e.metaKey||e.ctrlKey,!$(e.target).hasClass("slick-resizable-handle"))){var o=$(e.target).closest(".slick-header-column");if(o.length){var t=o.data("column");if(t.sortable){if(!getEditorLock().commitCurrentEdit())return;for(var n=null,l=0;l<sortColumns.length;l++)if(sortColumns[l].columnId==t.id){(n=sortColumns[l]).sortAsc=!n.sortAsc;break}var r=!!n;options.tristateMultiColumnSort?(n||(n={columnId:t.id,sortAsc:t.defaultSortAsc}),r&&n.sortAsc&&(sortColumns.splice(l,1),n=null),options.multiColumnSort||(sortColumns=[]),!n||r&&options.multiColumnSort||sortColumns.push(n)):e.metaKey&&options.multiColumnSort?n&&sortColumns.splice(l,1):((e.shiftKey||e.metaKey)&&options.multiColumnSort||(sortColumns=[]),n?0===sortColumns.length&&sortColumns.push(n):(n={columnId:t.id,sortAsc:t.defaultSortAsc},sortColumns.push(n))),setSortColumns(sortColumns),options.multiColumnSort?trigger(self.onSort,{multiColumnSort:!0,sortCols:$.map(sortColumns,(function(e){return{columnId:columns[getColumnIndex(e.columnId)].id,sortCol:columns[getColumnIndex(e.columnId)],sortAsc:e.sortAsc}}))},e):trigger(self.onSort,{multiColumnSort:!1,columnId:sortColumns.length>0?t.id:null,sortCol:sortColumns.length>0?t:null,sortAsc:!(sortColumns.length>0)||sortColumns[0].sortAsc},e)}}}}))}function currentPositionInHeader(e){var o=0;return $headers.find(".slick-header-column").each((function(t){if(this.id==e)return o=t,!1})),o}function limitPositionInGroup(e){var o,t=0,n=0;return treeColumns.getColumnsInDepth($groupHeadersL.length-1).some((function(l){return t=n,n+=l.columns.length,l.columns.some((function(t){return t.id===e&&(o=l),o})),o})),n–,{start:t,end:n,group:o}}function remove(e,o){var t=e.lastIndexOf(o);t>-1&&(e.splice(t,1),remove(e,o))}function columnPositionValidInGroup(e){var o=currentPositionInHeader(e[0].id),t=limitPositionInGroup(e.data("column").id),n=t.start<=o&&o<=t.end;return{limit:t,valid:n,message:n?"":’Column "’.concat(e.text(),’" can be reordered only within the "’,t.group.name,’" group!’)}}function setupColumnReorder(){$headers.filter(":ui-sortable").sortable("destroy");var e,o=null;function t(){$viewportScrollContainerX[0].scrollLeft=$viewportScrollContainerX[0].scrollLeft+10}function n(){$viewportScrollContainerX[0].scrollLeft=$viewportScrollContainerX[0].scrollLeft-10}$headers.sortable({containment:"parent",distance:3,axis:"x",cursor:"default",tolerance:"intersection",helper:"clone",placeholder:"slick-sortable-placeholder ui-state-default slick-header-column",start:function(o,t){t.placeholder.width(t.helper.outerWidth()-headerColumnWidthDiff),e=!hasFrozenColumns()||t.placeholder.offset().left+t.placeholder.width()>$viewportScrollContainerX.offset().left,$(t.helper).addClass("slick-header-column-active")},beforeStop:function(e,o){$(o.helper).removeClass("slick-header-column-active")},sort:function(l,r){e&&l.originalEvent.pageX>$container[0].clientWidth?o||(o=setInterval(t,100)):e&&l.originalEvent.pageX<$viewportScrollContainerX.offset().left?o||(o=setInterval(n,100)):(clearInterval(o),o=null)},stop:function(e,t){var n=!1;clearInterval(o),o=null;var l=null;if(treeColumns.hasDepth()){var r=columnPositionValidInGroup(t.item);l=r.limit,(n=!r.valid)&&alert(r.message)}if(!n&&getEditorLock().commitCurrentEdit()){var i=$headerL.sortable("toArray");i=i.concat($headerR.sortable("toArray"));for(var a=[],s=0;s<i.length;s++)a.push(columns[getColumnIndex(i[s].replace(uid,""))]);setColumns(a),trigger(self.onColumnsReordered,{impactedColumns:getImpactedColumns(l)}),e.stopPropagation(),setupColumnResize()}else $(this).sortable("cancel")}})}function getImpactedColumns(e){var o=[];if(e)for(var t=e.start;t<=e.end;t++)o.push(columns[t]);else o=columns;return o}function setupColumnResize(){var e,o,t,n,l,r,i,a,s;(l=$headers.children()).find(".slick-resizable-handle").remove(),l.each((function(e,o){e>=columns.length||columns[e].resizable&&(void 0===a&&(a=e),s=e)})),void 0!==a&&l.each((function(d,c){d>=columns.length||d<a||options.forceFitColumns&&d>=s||($(c),$("<div class=’slick-resizable-handle’ />").appendTo(c).on("dragstart",(function(o,a){if(!getEditorLock().commitCurrentEdit())return!1;n=o.pageX,$(this).parent().addClass("slick-header-column-active");var s=null,c=null;if(l.each((function(e,o){e>=columns.length||(columns[e].previousWidth=$(o).outerWidth())})),options.forceFitColumns)for(s=0,c=0,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(null!==c&&(t.maxWidth?c+=t.maxWidth-t.previousWidth:c=null),s+=t.previousWidth-Math.max(t.minWidth||0,absoluteColumnMinWidth));var u=0,h=0;for(e=0;e<=d;e++)(t=columns[e]).resizable&&(null!==h&&(t.maxWidth?h+=t.maxWidth-t.previousWidth:h=null),u+=t.previousWidth-Math.max(t.minWidth||0,absoluteColumnMinWidth));null===s&&(s=1e5),null===u&&(u=1e5),null===c&&(c=1e5),null===h&&(h=1e5),i=n+Math.min(s,h),r=n-Math.min(u,c)})).on("drag",(function(l,a){columnResizeDragging=!0;var s,c,u=Math.min(i,Math.max(r,l.pageX))-n,h=0;if(u<0){for(c=u,e=d;e>=0;e–)(t=columns[e]).resizable&&(s=Math.max(t.minWidth||0,absoluteColumnMinWidth),c&&t.previousWidth+c<s?(c+=t.previousWidth-s,t.width=s):(t.width=t.previousWidth+c,c=0));for(o=0;o<=d;o++)t=columns[o],hasFrozenColumns()&&o>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0),hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width);else for(e=d+1;e<columns.length;e++)t=columns[e],hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0))}else{for(c=u,h=0,0,e=d;e>=0;e–)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0));for(o=0;o<=d;o++)t=columns[o],hasFrozenColumns()&&o>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(s=Math.max(t.minWidth||0,absoluteColumnMinWidth),c&&t.previousWidth+c<s?(c+=t.previousWidth-s,t.width=s):(t.width=t.previousWidth+c,c=0),hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width);else for(e=d+1;e<columns.length;e++)t=columns[e],hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width}hasFrozenColumns()&&h!=canvasWidthL&&($headerL.width(h+1e3),$paneHeaderR.css("left",h)),applyColumnHeaderWidths(),applyColumnGroupHeaderWidths(),options.syncColumnCellResize&&applyColumnWidths(),trigger(self.onColumnsDrag,{triggeredByColumn:$(this).parent().attr("id").replace(uid,""),resizeHandle:$(this)})})).on("dragend",(function(o,n){$(this).parent().removeClass("slick-header-column-active");var r,i=$(this).parent().attr("id").replace(uid,"");for(!0===trigger(self.onBeforeColumnsResize,{triggeredByColumn:i})&&(applyColumnHeaderWidths(),applyColumnGroupHeaderWidths()),e=0;e<columns.length;e++)t=columns[e],r=$(l[e]).outerWidth(),t.previousWidth!==r&&t.rerenderOnResize&&invalidateAllRows();updateCanvasWidth(!0),render(),trigger(self.onColumnsResized,{triggeredByColumn:i}),setTimeout((function(){columnResizeDragging=!1}),300)})))}))}function getVBoxDelta(e){var o=0;return e&&"function"==typeof e.css&&$.each(["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],(function(t,n){o+=parseFloat(e.css(n))||0})),o}function setFrozenOptions(){if(options.frozenColumn=options.frozenColumn>=0&&options.frozenColumn<columns.length?parseInt(options.frozenColumn):-1,options.frozenRow>-1){hasFrozenRows=!0,frozenRowsHeight=options.frozenRow*options.rowHeight;var e=getDataLength();actualFrozenRow=options.frozenBottom?e-options.frozenRow:options.frozenRow}else hasFrozenRows=!1}function setPaneVisibility(){hasFrozenColumns()?($paneHeaderR.show(),$paneTopR.show(),hasFrozenRows?($paneBottomL.show(),$paneBottomR.show()):($paneBottomR.hide(),$paneBottomL.hide())):($paneHeaderR.hide(),$paneTopR.hide(),$paneBottomR.hide(),hasFrozenRows?$paneBottomL.show():($paneBottomR.hide(),$paneBottomL.hide()))}function setOverflow(){$viewportTopL.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"scroll":hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"auto","overflow-y":options.alwaysShowVerticalScroll?"scroll":hasFrozenColumns()?"hidden":hasFrozenRows?"scroll":"auto"}),$viewportTopR.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"scroll":hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"auto","overflow-y":options.alwaysShowVerticalScroll?"scroll":(hasFrozenColumns(),hasFrozenRows?"scroll":"auto")}),$viewportBottomL.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"scroll":"auto":(hasFrozenRows&&options.alwaysAllowHorizontalScroll,"auto"),"overflow-y":options.alwaysShowVerticalScroll?"scroll":hasFrozenColumns()?"hidden":hasFrozenRows?"scroll":"auto"}),$viewportBottomR.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"scroll":"auto":(hasFrozenRows&&options.alwaysAllowHorizontalScroll,"auto"),"overflow-y":options.alwaysShowVerticalScroll?"scroll":(hasFrozenColumns(),"auto")}),options.viewportClass&&($viewportTopL.toggleClass(options.viewportClass,!0),$viewportTopR.toggleClass(options.viewportClass,!0),$viewportBottomL.toggleClass(options.viewportClass,!0),$viewportBottomR.toggleClass(options.viewportClass,!0))}function setScroller(){hasFrozenColumns()?($headerScrollContainer=$headerScrollerR,$headerRowScrollContainer=$headerRowScrollerR,$footerRowScrollContainer=$footerRowScrollerR,hasFrozenRows?options.frozenBottom?($viewportScrollContainerX=$viewportBottomR,$viewportScrollContainerY=$viewportTopR):$viewportScrollContainerX=$viewportScrollContainerY=$viewportBottomR:$viewportScrollContainerX=$viewportScrollContainerY=$viewportTopR):($headerScrollContainer=$headerScrollerL,$headerRowScrollContainer=$headerRowScrollerL,$footerRowScrollContainer=$footerRowScrollerL,hasFrozenRows?options.frozenBottom?($viewportScrollContainerX=$viewportBottomL,$viewportScrollContainerY=$viewportTopL):$viewportScrollContainerX=$viewportScrollContainerY=$viewportBottomL:$viewportScrollContainerX=$viewportScrollContainerY=$viewportTopL)}function measureCellPaddingAndBorder(){var e,o=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],t=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],n=$.fn.jquery.split(".");jQueryNewWidthBehaviour=1==n[0]&&n[1]>=8||n[0]>=2,e=$("<div class=’ui-state-default slick-header-column’ style=’visibility:hidden’>-</div>").appendTo($headers),headerColumnWidthDiff=headerColumnHeightDiff=0,"border-box"!=e.css("box-sizing")&&"border-box"!=e.css("-moz-box-sizing")&&"border-box"!=e.css("-webkit-box-sizing")&&($.each(o,(function(o,t){headerColumnWidthDiff+=parseFloat(e.css(t))||0})),$.each(t,(function(o,t){headerColumnHeightDiff+=parseFloat(e.css(t))||0}))),e.remove();var l=$("<div class=’slick-row’ />").appendTo($canvas);e=$("<div class=’slick-cell’ id=’’ style=’visibility:hidden’>-</div>").appendTo(l),cellWidthDiff=cellHeightDiff=0,"border-box"!=e.css("box-sizing")&&"border-box"!=e.css("-moz-box-sizing")&&"border-box"!=e.css("-webkit-box-sizing")&&($.each(o,(function(o,t){cellWidthDiff+=parseFloat(e.css(t))||0})),$.each(t,(function(o,t){cellHeightDiff+=parseFloat(e.css(t))||0}))),l.remove(),absoluteColumnMinWidth=Math.max(headerColumnWidthDiff,cellWidthDiff)}function createCssRules(){$style=$("<style type=’text/css’ rel=’stylesheet’ />").appendTo($("head"));for(var e=options.rowHeight-cellHeightDiff,o=["."+uid+" .slick-group-header-column { left: 1000px; }","."+uid+" .slick-header-column { left: 1000px; }","."+uid+" .slick-top-panel { height:"+options.topPanelHeight+"px; }","."+uid+" .slick-preheader-panel { height:"+options.preHeaderPanelHeight+"px; }","."+uid+" .slick-headerrow-columns { height:"+options.headerRowHeight+"px; }","."+uid+" .slick-footerrow-columns { height:"+options.footerRowHeight+"px; }","."+uid+" .slick-cell { height:"+e+"px; }","."+uid+" .slick-row { height:"+options.rowHeight+"px; }"],t=0;t<columns.length;t++)o.push("."+uid+" .l"+t+" { }"),o.push("."+uid+" .r"+t+" { }");$style[0].styleSheet?$style[0].styleSheet.cssText=o.join(" "):$style[0].appendChild(document.createTextNode(o.join(" ")))}function getColumnCssRules(e){var o;if(!stylesheet){var t=document.styleSheets;for(o=0;o<t.length;o++)if((t[o].ownerNode||t[o].owningElement)==$style[0]){stylesheet=t[o];break}if(!stylesheet)throw new Error("Cannot find stylesheet.");columnCssRulesL=[],columnCssRulesR=[];var n,l,r=stylesheet.cssRules||stylesheet.rules;for(o=0;o<r.length;o++){var i=r[o].selectorText;(n=/\.l\d+/.exec(i))?(l=parseInt(n[0].substr(2,n[0].length-2),10),columnCssRulesL[l]=r[o]):(n=/\.r\d+/.exec(i))&&(l=parseInt(n[0].substr(2,n[0].length-2),10),columnCssRulesR[l]=r[o])}}return{left:columnCssRulesL[e],right:columnCssRulesR[e]}}function removeCssRules(){$style.remove(),stylesheet=null}function destroy(){getEditorLock().cancelCurrentEdit(),trigger(self.onBeforeDestroy,{});for(var e=plugins.length;e–;)unregisterPlugin(plugins[e]);options.enableColumnReorder&&$headers.filter(":ui-sortable").sortable("destroy"),unbindAncestorScrollEvents(),$container.off(".slickgrid"),removeCssRules(),$canvas.off("draginit dragstart dragend drag"),$container.empty().removeClass(uid)}var canvas=null,canvas_context=null;function autosizeColumn(e,o){var t=e;if("number"==typeof e)t=columns[e];else if("string"==typeof e)for(var n=0;n<columns.length;n++)columns[n].Id===e&&(t=columns[n]);getColAutosizeWidth(t,$(getCanvasNode(0,0)),o)}function autosizeColumns(e,o){if((e=e||options.autosizeColsMode)!==Slick.GridAutosizeColsMode.LegacyForceFit&&e!==Slick.GridAutosizeColsMode.LegacyOff){if(e!==Slick.GridAutosizeColsMode.None){(canvas=document.createElement("canvas"))&&canvas.getContext&&(canvas_context=canvas.getContext("2d"));var t,n,l,r,i=$(getCanvasNode(0,0)),a=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW,s=0,d=0,c=0,u=0,h=0;for(t=0;t<columns.length;t++)getColAutosizeWidth(n=columns[t],i,o),h+=n.autoSize.autosizeMode===Slick.ColAutosizeMode.Locked?n.width:0,u+=n.autoSize.autosizeMode===Slick.ColAutosizeMode.Locked?n.width:n.minWidth,s+=n.autoSize.widthPx,d+=n.autoSize.sizeToRemaining?0:n.autoSize.widthPx,c+=n.autoSize.sizeToRemaining&&n.minWidth||0;var p=s-d;if(e===Slick.GridAutosizeColsMode.FitViewportToCols){var m=s+scrollbarDimensions.width;e=Slick.GridAutosizeColsMode.IgnoreViewport,options.viewportMaxWidthPx&&m>options.viewportMaxWidthPx?(m=options.viewportMaxWidthPx,e=Slick.GridAutosizeColsMode.FitColsToViewport):options.viewportMinWidthPx&&m<options.viewportMinWidthPx&&(m=options.viewportMinWidthPx,e=Slick.GridAutosizeColsMode.FitColsToViewport),$container.width(m)}if(e===Slick.GridAutosizeColsMode.FitColsToViewport)if(p>0&&d<a-c)for(t=0;t<columns.length;t++){var w=a-d;l=(n=columns[t]).autoSize.sizeToRemaining?w*n.autoSize.widthPx/p:n.autoSize.widthPx,n.rerenderOnResize&&n.width!=l&&(r=!0),n.width=l}else if(options.viewportSwitchToScrollModeWidthPercent&&d+c>a*options.viewportSwitchToScrollModeWidthPercent/100||u>a)e=Slick.GridAutosizeColsMode.IgnoreViewport;else{var v=d-h,f=a-h-c;for(t=0;t<columns.length;t++)l=(n=columns[t]).width,n.autoSize.autosizeMode!==Slick.ColAutosizeMode.Locked&&(n.autoSize.sizeToRemaining?l=n.minWidth:((l=f/v*n.autoSize.widthPx)<n.minWidth&&(l=n.minWidth),v-=n.autoSize.widthPx,f-=l)),n.rerenderOnResize&&n.width!=l&&(r=!0),n.width=l}if(e===Slick.GridAutosizeColsMode.IgnoreViewport)for(t=0;t<columns.length;t++)l=columns[t].autoSize.widthPx,columns[t].rerenderOnResize&&columns[t].width!=l&&(r=!0),columns[t].width=l;reRenderColumns(r)}}else legacyAutosizeColumns()}function LogColWidths(){for(var e="Col Widths:",o=0;o<columns.length;o++)e+=" "+columns[o].width;console.log(e)}function getColAutosizeWidth(e,o,t){var n=e.autoSize;if(n.widthPx=e.width,n.autosizeMode!==Slick.ColAutosizeMode.Locked&&n.autosizeMode!==Slick.ColAutosizeMode.Guide){var l=getDataLength();if(n.autosizeMode===Slick.ColAutosizeMode.ContentIntelligent){var r,i=n.colDataTypeOf;if(l>0){var a=getDataItem(0);a&&"object"===(i=typeof(r=a[e.field]))&&(r instanceof Date&&(i="date"),"undefined"!=typeof moment&&r instanceof moment&&(i="moment"))}"boolean"===i&&(n.colValueArray=[!0,!1]),"number"===i&&(n.valueFilterMode=Slick.ValueFilterMode.GetGreatestAndSub,n.rowSelectionMode=Slick.RowSelectionMode.AllRows),"string"===i&&(n.valueFilterMode=Slick.ValueFilterMode.GetLongestText,n.rowSelectionMode=Slick.RowSelectionMode.AllRows,n.allowAddlPercent=5),"date"===i&&(n.colValueArray=[new Date(2009,8,30,12,20,20)]),"moment"===i&&"undefined"!=typeof moment&&(n.colValueArray=[moment([2009,8,30,12,20,20])])}var s=getColContentSize(e,o,t);s=s*(n.allowAddlPercent?1+n.allowAddlPercent/100:1)+options.autosizeColPaddingPx,e.minWidth&&s<e.minWidth&&(s=e.minWidth),e.maxWidth&&s>e.maxWidth&&(s=e.maxWidth),n.widthPx=s}}function getColContentSize(e,o,t){var n,l=e.autoSize,r=1,i=0,a=0;if(l.ignoreHeaderText||(a=getColHeaderWidth(e)),l.colValueArray)return i=getColWidth(e,o,l.colValueArray),Math.max(a,i);var s=getData();s.getItems&&(s=s.getItems());var d=(t?l.rowSelectionModeOnInit:void 0)||l.rowSelectionMode;if(d===Slick.RowSelectionMode.FirstRow&&(s=s.slice(0,1)),d===Slick.RowSelectionMode.LastRow&&(s=s.slice(s.length-1,s.length)),d===Slick.RowSelectionMode.FirstNRows&&(s=s.slice(0,l.rowSelectionCount)),l.valueFilterMode===Slick.ValueFilterMode.DeDuplicate){var c={};for(u=0,n=s.length;u<n;u++)c[s[u][e.field]]=!0;if(Object.keys)s=Object.keys(c);else for(var u in s=[],c)s.push(u)}if(l.valueFilterMode===Slick.ValueFilterMode.GetGreatestAndSub){var h,p=0;for(u=0,n=s.length;u<n;u++)w=s[u][e.field],Math.abs(w)>p&&(h=w,p=Math.abs(w));h=""+h,s=[h=+(h=Array(h.length+1).join("9"))]}if(l.valueFilterMode===Slick.ValueFilterMode.GetLongestTextAndSub){var m=0;for(u=0,n=s.length;u<n;u++)((w=s[u][e.field])||"").length>m&&(m=w.length);w=Array(m+1).join("m"),r=options.autosizeTextAvgToMWidthRatio,s=[w]}if(l.valueFilterMode===Slick.ValueFilterMode.GetLongestText){m=0;var w,v=0;for(u=0,n=s.length;u<n;u++)((w=s[u][e.field])||"").length>m&&(m=w.length,v=u);s=[w=s[v][e.field]]}return i=getColWidth(e,o,s)*r,Math.max(a,i)}function getColWidth(e,o,t){var n=getColumnIndex(e.id),l=$(‘<div class="slick-row ui-widget-content"></div>’),r=$(‘<div class="slick-cell"></div>’);r.css({position:"absolute",visibility:"hidden","text-overflow":"initial","white-space":"nowrap"}),l.append(r),o.append(l);var i,a,s,d,c=0;return canvas_context&&e.autoSize.widthEvalMode===Slick.WidthEvalMode.CanvasTextSize?(canvas_context.font=r.css("font-size")+" "+r.css("font-family"),$(t).each((function(o,t){d=Array.isArray(t)?t[e.field]:t,(i=(a=""+d)?canvas_context.measureText(a).width:0)>c&&(c=i,s=a)})),r.html(s),i=r.outerWidth(),l.remove(),i):($(t).each((function(o,t){d=Array.isArray(t)?t[e.field]:t,applyFormatResultToCellNode(e.formatterOverride?e.formatterOverride(o,n,d,e,t):e.formatter?e.formatter(o,n,d,e,t):""+d,r[0]),(i=r.outerWidth())>c&&(c=i)})),l.remove(),c)}function getColHeaderWidth(e){var o=0,t=getUID()+e.id,n=document.getElementById(t),l=t+"_";if(n){var r=n.cloneNode(!0);r.id=l,r.style.cssText="position: absolute; visibility: hidden;right: auto;text-overflow: initial;white-space: nowrap;",n.parentNode.insertBefore(r,n),o=r.offsetWidth,r.parentNode.removeChild(r)}else{var i=getHeader(e);o=(n=$("<div class=’ui-state-default slick-header-column’ />").html("<span class=’slick-column-name’>"+e.name+"</span>").attr("id",l).css({position:"absolute",visibility:"hidden",right:"auto","text-overflow:":"initial","white-space":"nowrap"}).addClass(e.headerCssClass||"").appendTo(i))[0].offsetWidth,i[0].removeChild(n[0])}return o}function legacyAutosizeColumns(){var e,o,t,n=[],l=0,r=0,i=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW;for(e=0;e<columns.length;e++)o=columns[e],n.push(o.width),r+=o.width,o.resizable&&(l+=o.width-Math.max(o.minWidth,absoluteColumnMinWidth));for(t=r;r>i&&l;){var a=(r-i)/l;for(e=0;e<columns.length&&r>i;e++){o=columns[e];var s=n[e];if(!(!o.resizable||s<=o.minWidth||s<=absoluteColumnMinWidth)){var d=Math.max(o.minWidth,absoluteColumnMinWidth),c=Math.floor(a*(s-d))||1;r-=c=Math.min(c,s-d),l-=c,n[e]-=c}}if(t<=r)break;t=r}for(t=r;r<i;){var u=i/r;for(e=0;e<columns.length&&r<i;e++){o=columns[e];var h,p=n[e];r+=h=!o.resizable||o.maxWidth<=p?0:Math.min(Math.floor(u*p)-p,o.maxWidth-p||1e6)||1,n[e]+=r<=i?h:0}if(t>=r)break;t=r}var m=!1;for(e=0;e<columns.length;e++)columns[e].rerenderOnResize&&columns[e].width!=n[e]&&(m=!0),columns[e].width=n[e];reRenderColumns(m)}function reRenderColumns(e){applyColumnHeaderWidths(),applyColumnGroupHeaderWidths(),updateCanvasWidth(!0),trigger(self.onAutosizeColumns,{columns}),e&&(invalidateAllRows(),render())}function trigger(e,o,t){return t=t||new Slick.EventData,(o=o||{}).grid=self,e.notify(o,t,self)}function getEditorLock(){return options.editorLock}function getEditController(){return editController}function getColumnIndex(e){return columnsById[e]}function applyColumnGroupHeaderWidths(){if(treeColumns.hasDepth())for(var e=$groupHeadersL.length-1;e>=0;e–){treeColumns.getColumnsInDepth(e);$().add($groupHeadersL[e]).add($groupHeadersR[e]).each((function(e){var o=$(this),t=0;o.width(0===e?getHeadersWidthL():getHeadersWidthR()),o.children().each((function(){var e=$(this),n=$(this).data("column");n.width=0,n.columns.forEach((function(){var e=o.next().children(":eq("+t+++")");n.width+=e.outerWidth()})),e.width(n.width-headerColumnWidthDiff)}))}))}}function applyColumnHeaderWidths(){if(initialized){for(var e,o=0,t=$headers.children(),n=columns.length;o<n;o++)e=$(t[o]),jQueryNewWidthBehaviour?e.outerWidth()!==columns[o].width&&e.outerWidth(columns[o].width):e.width()!==columns[o].width-headerColumnWidthDiff&&e.width(columns[o].width-headerColumnWidthDiff);updateColumnCaches()}}function applyColumnWidths(){for(var e,o,t=0,n=0;n<columns.length;n++)e=columns[n].width,(o=getColumnCssRules(n)).left.style.left=t+"px",o.right.style.right=(-1!=options.frozenColumn&&n>options.frozenColumn?canvasWidthR:canvasWidthL)-t-e+"px",options.frozenColumn==n?t=0:t+=columns[n].width}function setSortColumn(e,o){setSortColumns([{columnId:e,sortAsc:o}])}function setSortColumns(e){sortColumns=e;var o=options.numberedMultiColumnSort&&sortColumns.length>1,t=$headers.children();t.removeClass("slick-header-column-sorted").find(".slick-sort-indicator").removeClass("slick-sort-indicator-asc slick-sort-indicator-desc"),t.find(".slick-sort-indicator-numbered").text(""),$.each(sortColumns,(function(e,n){null==n.sortAsc&&(n.sortAsc=!0);var l=getColumnIndex(n.columnId);null!=l&&(t.eq(l).addClass("slick-header-column-sorted").find(".slick-sort-indicator").addClass(n.sortAsc?"slick-sort-indicator-asc":"slick-sort-indicator-desc"),o&&t.eq(l).find(".slick-sort-indicator-numbered").text(e+1))}))}function getSortColumns(){return sortColumns}function handleSelectedRangesChanged(e,o){var t=selectedRows.slice(0);selectedRows=[];for(var n={},l=0;l<o.length;l++)for(var r=o[l].fromRow;r<=o[l].toRow;r++){n[r]||(selectedRows.push(r),n[r]={});for(var i=o[l].fromCell;i<=o[l].toCell;i++)canCellBeSelected(r,i)&&(n[r][columns[i].id]=options.selectedCellCssClass)}setCellCssStyles(options.selectedCellCssClass,n),simpleArrayEquals(t,selectedRows)&&trigger(self.onSelectedRowsChanged,{rows:getSelectedRows(),previousSelectedRows:t},e)}function simpleArrayEquals(e,o){return Array.isArray(e)&&Array.isArray(o)&&o.sort().toString()!==e.sort().toString()}function getColumns(){return columns}function updateColumnCaches(){columnPosLeft=[],columnPosRight=[];for(var e=0,o=0,t=columns.length;o<t;o++)columnPosLeft[o]=e,columnPosRight[o]=e+columns[o].width,options.frozenColumn==o?e=0:e+=columns[o].width}function updateColumnProps(){columnsById={};for(var e=0;e<columns.length;e++){columns[e].width&&(columns[e].widthRequest=columns[e].width);var o=columns[e]=$.extend({},columnDefaults,columns[e]);o.autoSize=$.extend({},columnAutosizeDefaults,o.autoSize),columnsById[o.id]=e,o.minWidth&&o.width<o.minWidth&&(o.width=o.minWidth),o.maxWidth&&o.width>o.maxWidth&&(o.width=o.maxWidth),o.resizable}}function setColumns(e){var o=new Slick.TreeColumns(e);columns=o.hasDepth()?(treeColumns=o).extractColumns():e,updateColumnProps(),updateColumnCaches(),initialized&&(setPaneVisibility(),setOverflow(),invalidateAllRows(),createColumnHeaders(),createColumnGroupHeaders(),createColumnFooter(),removeCssRules(),createCssRules(),resizeCanvas(),updateCanvasWidth(),applyColumnHeaderWidths(),applyColumnWidths(),handleScroll())}function getOptions(){return options}function setOptions(e,o){if(getEditorLock().commitCurrentEdit()){makeActiveCellNormal(),void 0!==e.showColumnHeader&&setColumnHeaderVisibility(e.showColumnHeader),options.enableAddRow!==e.enableAddRow&&invalidateRow(getDataLength());var t=$.extend(!0,{},options);options=$.extend(options,e),trigger(self.onSetOptions,{optionsBefore:t,optionsAfter:options}),validateAndEnforceOptions(),$viewport.css("overflow-y",options.autoHeight?"hidden":"auto"),o||render(),setFrozenOptions(),setScroller(),zombieRowNodeFromLastMouseWheelEvent=null,setColumns(treeColumns.extractColumns())}}function validateAndEnforceOptions(){options.autoHeight&&(options.leaveSpaceForNewRows=!1),options.forceFitColumns&&(options.autosizeColsMode=Slick.GridAutosizeColsMode.LegacyForceFit,console.log("forceFitColumns option is deprecated - use autosizeColsMode"))}function setData(e,o){data=e,invalidateAllRows(),updateRowCount(),o&&scrollTo(0)}function getData(){return data}function getDataLength(){return data.getLength?data.getLength():data&&data.length||0}function getDataLengthIncludingAddNew(){return getDataLength()+(options.enableAddRow&&(!pagingActive||pagingIsLastPage)?1:0)}function getDataItem(e){return data.getItem?data.getItem(e):data[e]}function getTopPanel(){return $topPanel[0]}function setTopPanelVisibility(e,o){var t=!1!==o;options.showTopPanel!=e&&(options.showTopPanel=e,e?t?$topPanelScroller.slideDown("fast",resizeCanvas):($topPanelScroller.show(),resizeCanvas()):t?$topPanelScroller.slideUp("fast",resizeCanvas):($topPanelScroller.hide(),resizeCanvas()))}function setHeaderRowVisibility(e,o){var t=!1!==o;options.showHeaderRow!=e&&(options.showHeaderRow=e,e?t?$headerRowScroller.slideDown("fast",resizeCanvas):($headerRowScroller.show(),resizeCanvas()):t?$headerRowScroller.slideUp("fast",resizeCanvas):($headerRowScroller.hide(),resizeCanvas()))}function setColumnHeaderVisibility(e,o){options.showColumnHeader!=e&&(options.showColumnHeader=e,e?o?$headerScroller.slideDown("fast",resizeCanvas):($headerScroller.show(),resizeCanvas()):o?$headerScroller.slideUp("fast",resizeCanvas):($headerScroller.hide(),resizeCanvas()))}function setFooterRowVisibility(e,o){var t=!1!==o;options.showFooterRow!=e&&(options.showFooterRow=e,e?t?$footerRowScroller.slideDown("fast",resizeCanvas):($footerRowScroller.show(),resizeCanvas()):t?$footerRowScroller.slideUp("fast",resizeCanvas):($footerRowScroller.hide(),resizeCanvas()))}function setPreHeaderPanelVisibility(e,o){var t=!1!==o;options.showPreHeaderPanel!=e&&(options.showPreHeaderPanel=e,e?t?$preHeaderPanelScroller.slideDown("fast",resizeCanvas):($preHeaderPanelScroller.show(),resizeCanvas()):t?$preHeaderPanelScroller.slideUp("fast",resizeCanvas):($preHeaderPanelScroller.hide(),resizeCanvas()))}function getContainerNode(){return $container.get(0)}function getRowTop(e){return options.rowHeight*e-offset}function getRowFromPosition(e){return Math.floor((e+offset)/options.rowHeight)}function scrollTo(e){e=Math.max(e,0),e=Math.min(e,th-$viewportScrollContainerY.height()+(viewportHasHScroll||hasFrozenColumns()?scrollbarDimensions.height:0));var o=offset;page=Math.min(n-1,Math.floor(e/ph));var t=e-(offset=Math.round(page*cj));offset!=o&&(cleanupRows(getVisibleRange(t)),updateRowPositions());prevScrollTop!=t&&(vScrollDir=prevScrollTop+o<t+offset?1:-1,lastRenderedScrollTop=scrollTop=prevScrollTop=t,hasFrozenColumns()&&($viewportTopL[0].scrollTop=t),hasFrozenRows&&($viewportBottomL[0].scrollTop=$viewportBottomR[0].scrollTop=t),$viewportScrollContainerY[0].scrollTop=t,trigger(self.onViewportChanged,{}))}function defaultFormatter(e,o,t,n,l,r){return null==t?"":(t+"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}function getFormatter(e,o){var t=data.getItemMetadata&&data.getItemMetadata(e),n=t&&t.columns&&(t.columns[o.id]||t.columns[getColumnIndex(o.id)]);return n&&n.formatter||t&&t.formatter||o.formatter||options.formatterFactory&&options.formatterFactory.getFormatter(o)||options.defaultFormatter}function callFormatter(e,o,t,n,l,r){var i,a=data.getItemMetadata&&data.getItemMetadata(e);if(a=a&&a.columns){var s=a[n.id]||a[o];i=getFormatter(e,n)(e,o,t,n,l,s)}else i=getFormatter(e,n)(e,o,t,n,l);return i}function getEditor(e,o){var t=columns[o],n=data.getItemMetadata&&data.getItemMetadata(e),l=n&&n.columns;return l&&l[t.id]&&void 0!==l[t.id].editor?l[t.id].editor:l&&l[o]&&void 0!==l[o].editor?l[o].editor:t.editor||options.editorFactory&&options.editorFactory.getEditor(t)}function getDataItemValueForColumn(e,o){return options.dataItemColumnValueExtractor?options.dataItemColumnValueExtractor(e,o):e[o.field]}function appendRowHtml(e,o,t,n,l){var r=getDataItem(t),i=t<l&&!r,a="slick-row"+(hasFrozenRows&&t<=options.frozenRow?" frozen":"")+(i?" loading":"")+(t===activeRow&&options.showCellSelection?" active":"")+(t%2==1?" odd":" even");r||(a+=" "+options.addNewRowCssClass);var s=data.getItemMetadata&&data.getItemMetadata(t);s&&s.cssClasses&&(a+=" "+s.cssClasses);var d,c,u=getFrozenRowOffset(t),h="<div class=’ui-widget-content "+a+"’ style=’top:"+(getRowTop(t)-u)+"px’>";e.push(h),hasFrozenColumns()&&o.push(h);for(var p=0,m=columns.length;p<m;p++){if(c=columns[p],d=1,s&&s.columns){var w=s.columns[c.id]||s.columns[p];""===(d=w&&w.colspan||1)&&(d=m-p)}if(columnPosRight[Math.min(m-1,p+d-1)]>n.leftPx){if(!c.alwaysRenderColumn&&columnPosLeft[p]>n.rightPx)break;hasFrozenColumns()&&p>options.frozenColumn?appendCellHtml(o,t,p,d,r):appendCellHtml(e,t,p,d,r)}else(c.alwaysRenderColumn||hasFrozenColumns()&&p<=options.frozenColumn)&&appendCellHtml(e,t,p,d,r);d>1&&(p+=d-1)}e.push("</div>"),hasFrozenColumns()&&o.push("</div>")}function appendCellHtml(e,o,t,n,l){var r=columns[t],i="slick-cell l"+t+" r"+Math.min(columns.length-1,t+n-1)+(r.cssClass?" "+r.cssClass:"");for(var a in hasFrozenColumns()&&t<=options.frozenColumn&&(i+=" frozen"),o===activeRow&&t===activeCell&&options.showCellSelection&&(i+=" active"),cellCssClasses)cellCssClasses[a][o]&&cellCssClasses[a][o][r.id]&&(i+=" "+cellCssClasses[a][o][r.id]);var s=null,d="";l&&(s=getDataItemValueForColumn(l,r),null==(d=getFormatter(o,r)(o,t,s,r,l,self))&&(d=""));var c=trigger(self.onBeforeAppendCell,{row:o,cell:t,value:s,dataContext:l})||"";c+=d&&d.addClasses?(c?" ":"")+d.addClasses:"";var u=d&&d.toolTip?"title=’"+d.toolTip+"’":"",h="";if(r.hasOwnProperty("cellAttrs")&&r.cellAttrs instanceof Object)for(var a in r.cellAttrs)r.cellAttrs.hasOwnProperty(a)&&(h+=" "+a+’="’+r.cellAttrs[a]+’" ‘);e.push("<div class=’"+i+(c?" "+c:"")+"’ "+u+h+">"),l&&e.push("[object Object]"!==Object.prototype.toString.call(d)?d:d.text),e.push("</div>"),rowsCache[o].cellRenderQueue.push(t),rowsCache[o].cellColSpans[t]=n}function cleanupRows(e){for(var o in rowsCache){var t=!0;hasFrozenRows&&(options.frozenBottom&&o>=actualFrozenRow||!options.frozenBottom&&o<=actualFrozenRow)&&(t=!1),(o=parseInt(o,10))!==activeRow&&(o<e.top||o>e.bottom)&&t&&removeRowFromCache(o)}options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}function invalidate(){updateRowCount(),invalidateAllRows(),render()}function invalidateAllRows(){for(var e in currentEditor&&makeActiveCellNormal(),rowsCache)removeRowFromCache(e);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}function queuePostProcessedRowForCleanup(e,o,t){for(var n in postProcessgroupId++,o)o.hasOwnProperty(n)&&postProcessedCleanupQueue.push({actionType:"C",groupId:postProcessgroupId,node:e.cellNodesByColumnIdx[0|n],columnIdx:0|n,rowIdx:t});postProcessedCleanupQueue.push({actionType:"R",groupId:postProcessgroupId,node:e.rowNode}),$(e.rowNode).detach()}function queuePostProcessedCellForCleanup(e,o,t){postProcessedCleanupQueue.push({actionType:"C",groupId:postProcessgroupId,node:e,columnIdx:o,rowIdx:t}),$(e).detach()}function removeRowFromCache(e){var o=rowsCache[e];o&&(rowNodeFromLastMouseWheelEvent==o.rowNode[0]||hasFrozenColumns()&&rowNodeFromLastMouseWheelEvent==o.rowNode[1]?(o.rowNode.hide(),zombieRowNodeFromLastMouseWheelEvent=o.rowNode):o.rowNode.each((function(){this.parentElement.removeChild(this)})),delete rowsCache[e],delete postProcessedRows[e],renderedRows–,counter_rows_removed++)}function invalidateRows(e){var o,t;if(e&&e.length){for(vScrollDir=0,t=e.length,o=0;o<t;o++)currentEditor&&activeRow===e[o]&&makeActiveCellNormal(),rowsCache[e[o]]&&removeRowFromCache(e[o]);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}}function invalidateRow(e){(e||0===e)&&invalidateRows([e])}function applyFormatResultToCellNode(e,o,t){null==e&&(e=""),"[object Object]"===Object.prototype.toString.call(e)?(o.innerHTML=e.text,e.removeClasses&&!t&&$(o).removeClass(e.removeClasses),e.addClasses&&$(o).addClass(e.addClasses),e.toolTip&&$(o).attr("title",e.toolTip)):o.innerHTML=e}function updateCell(e,o){var t=getCellNode(e,o);if(t){var n=columns[o],l=getDataItem(e);if(currentEditor&&activeRow===e&&activeCell===o)currentEditor.loadValue(l);else applyFormatResultToCellNode(l?getFormatter(e,n)(e,o,getDataItemValueForColumn(l,n),n,l,self):"",t),invalidatePostProcessingResults(e)}}function updateRow(e){var o=rowsCache[e];if(o){ensureCellNodesInRowsCache(e);var t=getDataItem(e);for(var n in o.cellNodesByColumnIdx)if(o.cellNodesByColumnIdx.hasOwnProperty(n)){var l=columns[n|=0],r=o.cellNodesByColumnIdx[n][0];e===activeRow&&n===activeCell&¤tEditor?currentEditor.loadValue(t):t?applyFormatResultToCellNode(getFormatter(e,l)(e,n,getDataItemValueForColumn(t,l),l,t,self),r):r.innerHTML=""}invalidatePostProcessingResults(e)}}function getViewportHeight(){if(options.autoHeight&&-1==options.frozenColumn||(topPanelH=options.showTopPanel?options.topPanelHeight+getVBoxDelta($topPanelScroller):0,headerRowH=options.showHeaderRow?options.headerRowHeight+getVBoxDelta($headerRowScroller):0,footerRowH=options.showFooterRow?options.footerRowHeight+getVBoxDelta($footerRowScroller):0),options.autoHeight){var e=$paneHeaderL.outerHeight();e+=options.showHeaderRow?options.headerRowHeight+getVBoxDelta($headerRowScroller):0,e+=options.showFooterRow?options.footerRowHeight+getVBoxDelta($footerRowScroller):0,e+=getCanvasWidth()>viewportW?scrollbarDimensions.height:0,viewportH=options.rowHeight*getDataLengthIncludingAddNew()+(-1==options.frozenColumn?e:0)}else{var o=options.showColumnHeader?parseFloat($.css($headerScroller[0],"height"))+getVBoxDelta($headerScroller):0,t=options.createPreHeaderPanel&&options.showPreHeaderPanel?options.preHeaderPanelHeight+getVBoxDelta($preHeaderPanelScroller):0;viewportH=parseFloat($.css($container[0],"height",!0))-parseFloat($.css($container[0],"paddingTop",!0))-parseFloat($.css($container[0],"paddingBottom",!0))-o-topPanelH-headerRowH-footerRowH-t}return numVisibleRows=Math.ceil(viewportH/options.rowHeight),viewportH}function getViewportWidth(){viewportW=parseFloat($container.width())}function resizeCanvas(){if(initialized){paneTopH=0,paneBottomH=0,viewportTopH=0,viewportBottomH=0,getViewportWidth(),getViewportHeight(),hasFrozenRows?options.frozenBottom?(paneTopH=viewportH-frozenRowsHeight-scrollbarDimensions.height,paneBottomH=frozenRowsHeight+scrollbarDimensions.height):(paneTopH=frozenRowsHeight,paneBottomH=viewportH-frozenRowsHeight):paneTopH=viewportH,paneTopH+=topPanelH+headerRowH+footerRowH,hasFrozenColumns()&&options.autoHeight&&(paneTopH+=scrollbarDimensions.height),viewportTopH=paneTopH-topPanelH-headerRowH-footerRowH,options.autoHeight&&(hasFrozenColumns()&&$container.height(paneTopH+parseFloat($.css($headerScrollerL[0],"height"))),$paneTopL.css("position","relative")),$paneTopL.css({top:$paneHeaderL.height(),height:paneTopH});var e=$paneTopL.position().top+paneTopH;options.autoHeight||$viewportTopL.height(viewportTopH),hasFrozenColumns()?($paneTopR.css({top:$paneHeaderL.height(),height:paneTopH}),$viewportTopR.height(viewportTopH),hasFrozenRows&&($paneBottomL.css({top:e,height:paneBottomH}),$paneBottomR.css({top:e,height:paneBottomH}),$viewportBottomR.height(paneBottomH))):hasFrozenRows&&($paneBottomL.css({width:"100%",height:paneBottomH}),$paneBottomL.css("top",e)),hasFrozenRows?($viewportBottomL.height(paneBottomH),options.frozenBottom?($canvasBottomL.height(frozenRowsHeight),hasFrozenColumns()&&$canvasBottomR.height(frozenRowsHeight)):($canvasTopL.height(frozenRowsHeight),hasFrozenColumns()&&$canvasTopR.height(frozenRowsHeight))):$viewportTopR.height(viewportTopH),scrollbarDimensions&&scrollbarDimensions.width||(scrollbarDimensions=measureScrollbar()),options.autosizeColsMode===Slick.GridAutosizeColsMode.LegacyForceFit&&autosizeColumns(),updateRowCount(),handleScroll(),lastRenderedScrollLeft=-1,render()}}function updatePagingStatusFromView(e){pagingActive=0!==e.pageSize,pagingIsLastPage=e.pageNum==e.totalPages-1}function updateRowCount(){if(initialized){var e=getDataLength(),o=getDataLengthIncludingAddNew(),t=0,l=hasFrozenRows&&!options.frozenBottom?$canvasBottomL.height():$canvasTopL.height();if(hasFrozenRows)t=getDataLength()-options.frozenRow;else t=o+(options.leaveSpaceForNewRows?numVisibleRows-1:0);var r=$viewportScrollContainerY.height(),i=viewportHasVScroll;viewportHasVScroll=options.alwaysShowVerticalScroll||!options.autoHeight&&t*options.rowHeight>r,makeActiveCellNormal();var a=e-1;for(var s in rowsCache)s>a&&removeRowFromCache(s);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup(),activeCellNode&&activeRow>a&&resetActiveCell();l=h;options.autoHeight?h=options.rowHeight*t:(th=Math.max(options.rowHeight*t,r-scrollbarDimensions.height))<maxSupportedCssHeight?(h=ph=th,n=1,cj=0):(ph=(h=maxSupportedCssHeight)/100,n=Math.floor(th/ph),cj=(th-h)/(n-1)),h!==l&&(hasFrozenRows&&!options.frozenBottom?($canvasBottomL.css("height",h),hasFrozenColumns()&&$canvasBottomR.css("height",h)):($canvasTopL.css("height",h),$canvasTopR.css("height",h)),scrollTop=$viewportScrollContainerY[0].scrollTop);var d=scrollTop+offset<=th-r;0==th||0==scrollTop?page=offset=0:scrollTo(d?scrollTop+offset:th-r),h!=l&&options.autoHeight&&resizeCanvas(),options.autosizeColsMode===Slick.GridAutosizeColsMode.LegacyForceFit&&i!=viewportHasVScroll&&autosizeColumns(),updateCanvasWidth(!1)}}function getVisibleRange(e,o){return null==e&&(e=scrollTop),null==o&&(o=scrollLeft),{top:getRowFromPosition(e),bottom:getRowFromPosition(e+viewportH)+1,leftPx:o,rightPx:o+viewportW}}function getRenderedRange(e,o){var t=getVisibleRange(e,o),n=Math.round(viewportH/options.rowHeight),l=options.minRowBuffer;return-1==vScrollDir?(t.top-=n,t.bottom+=l):1==vScrollDir?(t.top-=l,t.bottom+=n):(t.top-=l,t.bottom+=l),t.top=Math.max(0,t.top),t.bottom=Math.min(getDataLengthIncludingAddNew()-1,t.bottom),t.leftPx-=viewportW,t.rightPx+=viewportW,t.leftPx=Math.max(0,t.leftPx),t.rightPx=Math.min(canvasWidth,t.rightPx),t}function ensureCellNodesInRowsCache(e){var o=rowsCache[e];if(o&&o.cellRenderQueue.length)for(var t=o.rowNode.children().last();o.cellRenderQueue.length;){var n=o.cellRenderQueue.pop();o.cellNodesByColumnIdx[n]=t,0===(t=t.prev()).length&&(t=$(o.rowNode[0]).children().last())}}function cleanUpCells(e,o){if(!hasFrozenRows||!(options.frozenBottom&&o>actualFrozenRow||o<=actualFrozenRow)){var t,n=rowsCache[o],l=[];for(var r in n.cellNodesByColumnIdx)if(n.cellNodesByColumnIdx.hasOwnProperty(r)&&!((r|=0)<=options.frozenColumn||Array.isArray(columns)&&columns[r]&&columns[r].alwaysRenderColumn)){var i=n.cellColSpans[r];(columnPosLeft[r]>e.rightPx||columnPosRight[Math.min(columns.length-1,r+i-1)]<e.leftPx)&&(o==activeRow&&r==activeCell||l.push(r))}for(;null!=(t=l.pop());)n.cellNodesByColumnIdx[t][0].parentElement.removeChild(n.cellNodesByColumnIdx[t][0]),delete n.cellColSpans[t],delete n.cellNodesByColumnIdx[t],postProcessedRows[o]&&delete postProcessedRows[o][t]}}function cleanUpAndRenderCells(e){for(var o,t,n,l=[],r=[],i=e.top,a=e.bottom;i<=a;i++)if(o=rowsCache[i]){ensureCellNodesInRowsCache(i),cleanUpCells(e,i),t=0;var s=data.getItemMetadata&&data.getItemMetadata(i);s=s&&s.columns;for(var d=getDataItem(i),c=0,u=columns.length;c<u&&!(columnPosLeft[c]>e.rightPx);c++)if(null==(n=o.cellColSpans[c])){if(n=1,s){var h=s[columns[c].id]||s[c];""===(n=h&&h.colspan||1)&&(n=u-c)}columnPosRight[Math.min(u-1,c+n-1)]>e.leftPx&&(appendCellHtml(l,i,c,n,d),t++),c+=n>1?n-1:0}else c+=n>1?n-1:0;t&&(t,r.push(i))}if(l.length){var p,m,w=document.createElement("div");for(w.innerHTML=l.join("");null!=(p=r.pop());){var v;for(o=rowsCache[p];null!=(v=o.cellRenderQueue.pop());)m=w.lastChild,hasFrozenColumns()&&v>options.frozenColumn?o.rowNode[1].appendChild(m):o.rowNode[0].appendChild(m),o.cellNodesByColumnIdx[v]=$(m)}}}function renderRows(e){for(var o=[],t=[],n=[],l=!1,r=getDataLength(),i=e.top,a=e.bottom;i<=a;i++)rowsCache[i]||hasFrozenRows&&options.frozenBottom&&i==getDataLength()||(renderedRows++,n.push(i),rowsCache[i]={rowNode:null,cellColSpans:[],cellNodesByColumnIdx:[],cellRenderQueue:[]},appendRowHtml(o,t,i,e,r),activeCellNode&&activeRow===i&&(l=!0),counter_rows_rendered++);if(n.length){var s=document.createElement("div"),d=document.createElement("div");s.innerHTML=o.join(""),d.innerHTML=t.join("");for(i=0,a=n.length;i<a;i++)hasFrozenRows&&n[i]>=actualFrozenRow?hasFrozenColumns()?rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasBottomL)).add($(d.firstChild).appendTo($canvasBottomR)):rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasBottomL)):hasFrozenColumns()?rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasTopL)).add($(d.firstChild).appendTo($canvasTopR)):rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasTopL));l&&(activeCellNode=getCellNode(activeRow,activeCell))}}function startPostProcessing(){options.enableAsyncPostRender&&(clearTimeout(h_postrender),h_postrender=setTimeout(asyncPostProcessRows,options.asyncPostRenderDelay))}function startPostProcessingCleanup(){options.enableAsyncPostRenderCleanup&&(clearTimeout(h_postrenderCleanup),h_postrenderCleanup=setTimeout(asyncPostProcessCleanupRows,options.asyncPostRenderCleanupDelay))}function invalidatePostProcessingResults(e){for(var o in postProcessedRows[e])postProcessedRows[e].hasOwnProperty(o)&&(postProcessedRows[e][o]="C");postProcessFromRow=Math.min(postProcessFromRow,e),postProcessToRow=Math.max(postProcessToRow,e),startPostProcessing()}function updateRowPositions(){for(var e in rowsCache){var o=e?parseInt(e):0;rowsCache[o].rowNode[0].style.top=getRowTop(o)+"px"}}function render(){if(initialized){scrollThrottle.dequeue();var e=getVisibleRange(),o=getRenderedRange();if(cleanupRows(o),lastRenderedScrollLeft!=scrollLeft){if(hasFrozenRows){var t=$.extend(!0,{},o);options.frozenBottom?(t.top=actualFrozenRow,t.bottom=getDataLength()):(t.top=0,t.bottom=options.frozenRow),cleanUpAndRenderCells(t)}cleanUpAndRenderCells(o)}renderRows(o),hasFrozenRows&&(options.frozenBottom?renderRows({top:actualFrozenRow,bottom:getDataLength()-1,leftPx:o.leftPx,rightPx:o.rightPx}):renderRows({top:0,bottom:options.frozenRow-1,leftPx:o.leftPx,rightPx:o.rightPx})),postProcessFromRow=e.top,postProcessToRow=Math.min(getDataLengthIncludingAddNew()-1,e.bottom),startPostProcessing(),lastRenderedScrollTop=scrollTop,lastRenderedScrollLeft=scrollLeft,h_render=null,trigger(self.onRendered,{startRow:e.top,endRow:e.bottom,grid:self})}}function handleHeaderScroll(){handleElementScroll($headerScrollContainer[0])}function handleHeaderRowScroll(){var e=$headerRowScrollContainer[0].scrollLeft;e!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=e)}function handleFooterRowScroll(){var e=$footerRowScrollContainer[0].scrollLeft;e!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=e)}function handlePreHeaderPanelScroll(){handleElementScroll($preHeaderPanelScroller[0])}function handleElementScroll(e){var o=e.scrollLeft;o!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=o)}function handleScroll(){return scrollTop=$viewportScrollContainerY[0].scrollTop,scrollLeft=$viewportScrollContainerX[0].scrollLeft,_handleScroll(!1)}function _handleScroll(e){var o=$viewportScrollContainerY[0].scrollHeight-$viewportScrollContainerY[0].clientHeight,t=$viewportScrollContainerY[0].scrollWidth-$viewportScrollContainerY[0].clientWidth;o=Math.max(0,o),t=Math.max(0,t),scrollTop>o&&(scrollTop=o),scrollLeft>t&&(scrollLeft=t);var l=Math.abs(scrollTop-prevScrollTop),r=Math.abs(scrollLeft-prevScrollLeft);if(r&&(prevScrollLeft=scrollLeft,$viewportScrollContainerX[0].scrollLeft=scrollLeft,$headerScrollContainer[0].scrollLeft=scrollLeft,$topPanelScroller[0].scrollLeft=scrollLeft,$headerRowScrollContainer[0].scrollLeft=scrollLeft,options.createFooterRow&&($footerRowScrollContainer[0].scrollLeft=scrollLeft),options.createPreHeaderPanel&&(hasFrozenColumns()?$preHeaderPanelScrollerR[0].scrollLeft=scrollLeft:$preHeaderPanelScroller[0].scrollLeft=scrollLeft),hasFrozenColumns()?hasFrozenRows&&($viewportTopR[0].scrollLeft=scrollLeft):hasFrozenRows&&($viewportTopL[0].scrollLeft=scrollLeft)),l)if(vScrollDir=prevScrollTop<scrollTop?1:-1,prevScrollTop=scrollTop,e&&($viewportScrollContainerY[0].scrollTop=scrollTop),hasFrozenColumns()&&(hasFrozenRows&&!options.frozenBottom?$viewportBottomL[0].scrollTop=scrollTop:$viewportTopL[0].scrollTop=scrollTop),l<viewportH)scrollTo(scrollTop+offset);else{var i=offset;page=h==viewportH?0:Math.min(n-1,Math.floor(scrollTop*((th-viewportH)/(h-viewportH))*(1/ph))),i!=(offset=Math.round(page*cj))&&invalidateAllRows()}if(r||l){var a=Math.abs(lastRenderedScrollLeft-scrollLeft),s=Math.abs(lastRenderedScrollTop-scrollTop);(a>20||s>20)&&(options.forceSyncScrolling||s<viewportH&&a<viewportW?render():scrollThrottle.enqueue(),trigger(self.onViewportChanged,{}))}return trigger(self.onScroll,{scrollLeft,scrollTop}),!(!r&&!l)}function ActionThrottle(e,o){var t=!1,n=!1;function l(){n=!1}function r(){t=!0,setTimeout(i,o),e()}function i(){n?(l(),r()):t=!1}return{enqueue:function(){t?n=!0:r()},dequeue:l}}function asyncPostProcessRows(){for(var e=getDataLength();postProcessFromRow<=postProcessToRow;){var o=vScrollDir>=0?postProcessFromRow++:postProcessToRow–,t=rowsCache[o];if(t&&!(o>=e)){for(var n in postProcessedRows[o]||(postProcessedRows[o]={}),ensureCellNodesInRowsCache(o),t.cellNodesByColumnIdx)if(t.cellNodesByColumnIdx.hasOwnProperty(n)){var l=columns[n|=0],r=postProcessedRows[o][n];if(l.asyncPostRender&&"R"!==r){var i=t.cellNodesByColumnIdx[n];i&&l.asyncPostRender(i,o,getDataItem(o),l,"C"===r),postProcessedRows[o][n]="R"}}return void(h_postrender=setTimeout(asyncPostProcessRows,options.asyncPostRenderDelay))}}}function asyncPostProcessCleanupRows(){if(postProcessedCleanupQueue.length>0){for(var e=postProcessedCleanupQueue[0].groupId;postProcessedCleanupQueue.length>0&&postProcessedCleanupQueue[0].groupId==e;){var o=postProcessedCleanupQueue.shift();if("R"==o.actionType&&$(o.node).remove(),"C"==o.actionType){var t=columns[o.columnIdx];t.asyncPostRenderCleanup&&o.node&&t.asyncPostRenderCleanup(o.node,o.rowIdx,t)}}h_postrenderCleanup=setTimeout(asyncPostProcessCleanupRows,options.asyncPostRenderCleanupDelay)}}function updateCellCssStylesOnRenderedRows(e,o){var t,n,l,r;for(var i in rowsCache){if(r=o&&o[i],l=e&&e[i],r)for(n in r)l&&r[n]==l[n]||(t=getCellNode(i,getColumnIndex(n)))&&$(t).removeClass(r[n]);if(l)for(n in l)r&&r[n]==l[n]||(t=getCellNode(i,getColumnIndex(n)))&&$(t).addClass(l[n])}}function addCellCssStyles(e,o){if(cellCssClasses[e])throw new Error("addCellCssStyles: cell CSS hash with key ‘"+e+"’ already exists.");cellCssClasses[e]=o,updateCellCssStylesOnRenderedRows(o,null),trigger(self.onCellCssStylesChanged,{key:e,hash:o,grid:self})}function removeCellCssStyles(e){cellCssClasses[e]&&(updateCellCssStylesOnRenderedRows(null,cellCssClasses[e]),delete cellCssClasses[e],trigger(self.onCellCssStylesChanged,{key:e,hash:null,grid:self}))}function setCellCssStyles(e,o){var t=cellCssClasses[e];cellCssClasses[e]=o,updateCellCssStylesOnRenderedRows(o,t),trigger(self.onCellCssStylesChanged,{key:e,hash:o,grid:self})}function getCellCssStyles(e){return cellCssClasses[e]}function flashCell(e,o,t){(t=t||100,rowsCache[e])&&function e(o,n){n&&setTimeout((function(){o.queue((function(){o.toggleClass(options.cellFlashingCssClass).dequeue(),e(o,n-1)}))}),t)}($(getCellNode(e,o)),4)}function handleMouseWheel(e,o,t,n){var l=$(e.target).closest(".slick-row"),r=l[0];if(r!=rowNodeFromLastMouseWheelEvent){var i=l.parents(".grid-canvas").hasClass("grid-canvas-left");if(zombieRowNodeFromLastMouseWheelEvent&&zombieRowNodeFromLastMouseWheelEvent[i?0:1]!=r){var a=zombieRowNodeFromLastMouseWheelEvent[i||1==zombieRowNodeFromLastMouseWheelEvent.length?0:1];a.parentElement.removeChild(a),zombieRowNodeFromLastMouseWheelEvent=null}rowNodeFromLastMouseWheelEvent=r}scrollTop=Math.max(0,$viewportScrollContainerY[0].scrollTop-n*options.rowHeight),scrollLeft=$viewportScrollContainerX[0].scrollLeft+10*t,_handleScroll(!0)&&e.preventDefault()}function handleDragInit(e,o){var t=getCellFromEvent(e);if(!t||!cellExists(t.row,t.cell))return!1;var n=trigger(self.onDragInit,o,e);return!!e.isImmediatePropagationStopped()&&n}function handleDragStart(e,o){var t=getCellFromEvent(e);if(!t||!cellExists(t.row,t.cell))return!1;var n=trigger(self.onDragStart,o,e);return!!e.isImmediatePropagationStopped()&&n}function handleDrag(e,o){return trigger(self.onDrag,o,e)}function handleDragEnd(e,o){trigger(self.onDragEnd,o,e)}function handleKeyDown(e){trigger(self.onKeyDown,{row:activeRow,cell:activeCell},e);var o=e.isImmediatePropagationStopped(),t=Slick.keyCode;if(!o&&!e.shiftKey&&!e.altKey){if(options.editable&¤tEditor&¤tEditor.keyCaptureList&¤tEditor.keyCaptureList.indexOf(e.which)>-1)return;e.which==t.HOME?o=e.ctrlKey?navigateTop():navigateRowStart():e.which==t.END&&(o=e.ctrlKey?navigateBottom():navigateRowEnd())}if(!o)if(e.shiftKey||e.altKey||e.ctrlKey)e.which!=t.TAB||!e.shiftKey||e.ctrlKey||e.altKey||(o=navigatePrev());else{if(options.editable&¤tEditor&¤tEditor.keyCaptureList&¤tEditor.keyCaptureList.indexOf(e.which)>-1)return;if(e.which==t.ESCAPE){if(!getEditorLock().isActive())return;cancelEditAndSetFocus()}else e.which==t.PAGE_DOWN?(navigatePageDown(),o=!0):e.which==t.PAGE_UP?(navigatePageUp(),o=!0):e.which==t.LEFT?o=navigateLeft():e.which==t.RIGHT?o=navigateRight():e.which==t.UP?o=navigateUp():e.which==t.DOWN?o=navigateDown():e.which==t.TAB?o=navigateNext():e.which==t.ENTER&&(options.editable&&(currentEditor?activeRow===getDataLength()?navigateDown():commitEditAndSetFocus():getEditorLock().commitCurrentEdit()&&makeActiveCellEditable(void 0,void 0,e)),o=!0)}if(o){e.stopPropagation(),e.preventDefault();try{e.originalEvent.keyCode=0}catch(e){}}}function handleClick(e){currentEditor||(e.target!=document.activeElement||$(e.target).hasClass("slick-cell"))&&setFocus();var o=getCellFromEvent(e);if(o&&(null===currentEditor||activeRow!=o.row||activeCell!=o.cell)&&(trigger(self.onClick,{row:o.row,cell:o.cell},e),!e.isImmediatePropagationStopped()&&canCellBeActive(o.row,o.cell)&&(!getEditorLock().isActive()||getEditorLock().commitCurrentEdit()))){scrollRowIntoView(o.row,!1);var t=e.target&&e.target.className===Slick.preClickClassName,n=columns[o.cell],l=!!(options.editable&&n&&n.editor&&options.suppressActiveCellChangeOnEdit);setActiveCellInternal(getCellNode(o.row,o.cell),null,t,l,e)}}function handleContextMenu(e){var o=$(e.target).closest(".slick-cell",$canvas);0!==o.length&&(activeCellNode===o[0]&&null!==currentEditor||trigger(self.onContextMenu,{},e))}function handleDblClick(e){var o=getCellFromEvent(e);!o||null!==currentEditor&&activeRow==o.row&&activeCell==o.cell||(trigger(self.onDblClick,{row:o.row,cell:o.cell},e),e.isImmediatePropagationStopped()||options.editable&&gotoCell(o.row,o.cell,!0,e))}function handleHeaderMouseEnter(e){trigger(self.onHeaderMouseEnter,{column:$(this).data("column"),grid:self},e)}function handleHeaderMouseLeave(e){trigger(self.onHeaderMouseLeave,{column:$(this).data("column"),grid:self},e)}function handleHeaderContextMenu(e){var o=$(e.target).closest(".slick-header-column",".slick-header-columns"),t=o&&o.data("column");trigger(self.onHeaderContextMenu,{column:t},e)}function handleHeaderClick(e){if(!columnResizeDragging){var o=$(e.target).closest(".slick-header-column",".slick-header-columns"),t=o&&o.data("column");t&&trigger(self.onHeaderClick,{column:t},e)}}function handleFooterContextMenu(e){var o=$(e.target).closest(".slick-footerrow-column",".slick-footerrow-columns"),t=o&&o.data("column");trigger(self.onFooterContextMenu,{column:t},e)}function handleFooterClick(e){var o=$(e.target).closest(".slick-footerrow-column",".slick-footerrow-columns"),t=o&&o.data("column");trigger(self.onFooterClick,{column:t},e)}function handleMouseEnter(e){trigger(self.onMouseEnter,{},e)}function handleMouseLeave(e){trigger(self.onMouseLeave,{},e)}function cellExists(e,o){return!(e<0||e>=getDataLength()||o<0||o>=columns.length)}function getCellFromPoint(e,o){for(var t=getRowFromPosition(o),n=0,l=0,r=0;r<columns.length&&l<e;r++)l+=columns[r].width,n++;return n<0&&(n=0),{row:t,cell:n-1}}function getCellFromNode(e){var o=/l\d+/.exec(e.className);if(!o)throw new Error("getCellFromNode: cannot get cell - "+e.className);return parseInt(o[0].substr(1,o[0].length-1),10)}function getRowFromNode(e){for(var o in rowsCache)for(var t in rowsCache[o].rowNode)if(rowsCache[o].rowNode[t]===e)return o?parseInt(o):0;return null}function getFrozenRowOffset(e){return hasFrozenRows?options.frozenBottom?e>=actualFrozenRow?h<viewportTopH?actualFrozenRow*options.rowHeight:h:0:e>=actualFrozenRow?frozenRowsHeight:0:0}function getCellFromEvent(e){var o,t,n=$(e.target).closest(".slick-cell",$canvas);if(!n.length)return null;if(o=getRowFromNode(n[0].parentNode),hasFrozenRows){var l=n.parents(".grid-canvas").offset(),r=0;n.parents(".grid-canvas-bottom").length&&(r=options.frozenBottom?$canvasTopL.height():frozenRowsHeight),o=getCellFromPoint(e.clientX-l.left,e.clientY-l.top+r+$(document).scrollTop()).row}return t=getCellFromNode(n[0]),null==o||null==t?null:{row:o,cell:t}}function getCellNodeBox(e,o){if(!cellExists(e,o))return null;for(var t=getFrozenRowOffset(e),n=getRowTop(e)-t,l=n+options.rowHeight-1,r=0,i=0;i<o;i++)r+=columns[i].width,options.frozenColumn==i&&(r=0);return{top:n,left:r,bottom:l,right:r+columns[o].width}}function resetActiveCell(){setActiveCellInternal(null,!1)}function setFocus(){-1==tabbingDirection?$focusSink[0].focus():$focusSink2[0].focus()}function scrollCellIntoView(e,o,t){if(scrollRowIntoView(e,t),!(o<=options.frozenColumn)){var n=getColspan(e,o);internalScrollColumnIntoView(columnPosLeft[o],columnPosRight[o+(n>1?n-1:0)])}}function internalScrollColumnIntoView(e,o){var t=scrollLeft+$viewportScrollContainerX.width();e<scrollLeft?($viewportScrollContainerX.scrollLeft(e),handleScroll(),render()):o>t&&($viewportScrollContainerX.scrollLeft(Math.min(e,o-$viewportScrollContainerX[0].clientWidth)),handleScroll(),render())}function scrollColumnIntoView(e){internalScrollColumnIntoView(columnPosLeft[e],columnPosRight[e])}function setActiveCellInternal(e,o,t,n,l){null!==activeCellNode&&(makeActiveCellNormal(),$(activeCellNode).removeClass("active"),rowsCache[activeRow]&&$(rowsCache[activeRow].rowNode).removeClass("active"));if(null!=(activeCellNode=e)){var r=$(activeCellNode),i=r.offset(),a=Math.floor(r.parents(".grid-canvas").offset().top),s=r.parents(".grid-canvas-bottom").length;hasFrozenRows&&s&&(a-=options.frozenBottom?$canvasTopL.height():frozenRowsHeight);var d=getCellFromPoint(i.left,Math.ceil(i.top)-a);activeRow=d.row,activeCell=activePosX=activeCell=activePosX=getCellFromNode(activeCellNode),null==o&&(o=activeRow==getDataLength()||options.autoEdit),options.showCellSelection&&(r.addClass("active"),rowsCache[activeRow]&&$(rowsCache[activeRow].rowNode).addClass("active")),options.editable&&o&&isCellPotentiallyEditable(activeRow,activeCell)&&(clearTimeout(h_editorLoader),options.asyncEditorLoading?h_editorLoader=setTimeout((function(){makeActiveCellEditable(void 0,t,l)}),options.asyncEditorLoadDelay):makeActiveCellEditable(void 0,t,l))}else activeRow=activeCell=null;n||trigger(self.onActiveCellChanged,getActiveCell())}function clearTextSelection(){if(document.selection&&document.selection.empty)try{document.selection.empty()}catch(e){}else if(window.getSelection){var e=window.getSelection();e&&e.removeAllRanges&&e.removeAllRanges()}}function isCellPotentiallyEditable(e,o){var t=getDataLength();return!(e<t&&!getDataItem(e))&&(!(columns[o].cannotTriggerInsert&&e>=t)&&!!getEditor(e,o))}function makeActiveCellNormal(){if(currentEditor){if(trigger(self.onBeforeCellEditorDestroy,{editor:currentEditor}),currentEditor.destroy(),currentEditor=null,activeCellNode){var e=getDataItem(activeRow);if($(activeCellNode).removeClass("editable invalid"),e){var o=columns[activeCell];applyFormatResultToCellNode(getFormatter(activeRow,o)(activeRow,activeCell,getDataItemValueForColumn(e,o),o,e,self),activeCellNode),invalidatePostProcessingResults(activeRow)}}navigator.userAgent.toLowerCase().match(/msie/)&&clearTextSelection(),getEditorLock().deactivate(editController)}}function makeActiveCellEditable(e,o,t){if(activeCellNode){if(!options.editable)throw new Error("Grid : makeActiveCellEditable : should never get called when options.editable is false");if(clearTimeout(h_editorLoader),isCellPotentiallyEditable(activeRow,activeCell)){var n=columns[activeCell],l=getDataItem(activeRow);if(!1!==trigger(self.onBeforeEditCell,{row:activeRow,cell:activeCell,item:l,column:n})){getEditorLock().activate(editController),$(activeCellNode).addClass("editable");var r=e||getEditor(activeRow,activeCell);e||r.suppressClearOnEdit||(activeCellNode.innerHTML="");var i=data.getItemMetadata&&data.getItemMetadata(activeRow),a=(i=i&&i.columns)&&(i[n.id]||i[activeCell]);currentEditor=new r({grid:self,gridPosition:absBox($container[0]),position:absBox(activeCellNode),container:activeCellNode,column:n,columnMetaData:a,item:l||{},event:t,commitChanges:commitEditAndSetFocus,cancelChanges:cancelEditAndSetFocus}),l&&(currentEditor.loadValue(l),o&¤tEditor.preClick&¤tEditor.preClick()),serializedEditorValue=currentEditor.serializeValue(),currentEditor.position&&handleActiveCellPositionChange()}else setFocus()}}}function commitEditAndSetFocus(){getEditorLock().commitCurrentEdit()&&(setFocus(),options.autoEdit&&navigateDown())}function cancelEditAndSetFocus(){getEditorLock().cancelCurrentEdit()&&setFocus()}function absBox(e){var o={top:e.offsetTop,left:e.offsetLeft,bottom:0,right:0,width:$(e).outerWidth(),height:$(e).outerHeight(),visible:!0};o.bottom=o.top+o.height,o.right=o.left+o.width;for(var t=e.offsetParent;(e=e.parentNode)!=document.body&&null!=e;)o.visible&&e.scrollHeight!=e.offsetHeight&&"visible"!=$(e).css("overflowY")&&(o.visible=o.bottom>e.scrollTop&&o.top<e.scrollTop+e.clientHeight),o.visible&&e.scrollWidth!=e.offsetWidth&&"visible"!=$(e).css("overflowX")&&(o.visible=o.right>e.scrollLeft&&o.left<e.scrollLeft+e.clientWidth),o.left-=e.scrollLeft,o.top-=e.scrollTop,e===t&&(o.left+=e.offsetLeft,o.top+=e.offsetTop,t=e.offsetParent),o.bottom=o.top+o.height,o.right=o.left+o.width;return o}function getActiveCellPosition(){return absBox(activeCellNode)}function getGridPosition(){return absBox($container[0])}function handleActiveCellPositionChange(){if(activeCellNode&&(trigger(self.onActiveCellPositionChanged,{}),currentEditor)){var e=getActiveCellPosition();currentEditor.show&¤tEditor.hide&&(e.visible?currentEditor.show():currentEditor.hide()),currentEditor.position&¤tEditor.position(e)}}function getCellEditor(){return currentEditor}function getActiveCell(){return activeCellNode?{row:activeRow,cell:activeCell}:null}function getActiveCellNode(){return activeCellNode}function scrollRowIntoView(e,o){if(!hasFrozenRows||!options.frozenBottom&&e>actualFrozenRow-1||options.frozenBottom&&e<actualFrozenRow-1){var t=$viewportScrollContainerY.height(),n=hasFrozenRows&&!options.frozenBottom?e-options.frozenRow:e,l=n*options.rowHeight,r=(n+1)*options.rowHeight-t+(viewportHasHScroll?scrollbarDimensions.height:0);(n+1)*options.rowHeight>scrollTop+t+offset?(scrollTo(o?l:r),render()):n*options.rowHeight<scrollTop+offset&&(scrollTo(o?r:l),render())}}function scrollRowToTop(e){scrollTo(e*options.rowHeight),render()}function scrollPage(e){var o=e*numVisibleRows;if(scrollTo((getRowFromPosition(scrollTop+options.rowHeight-1)+o)*options.rowHeight),render(),options.enableCellNavigation&&null!=activeRow){var t=activeRow+o,n=getDataLengthIncludingAddNew();t>=n&&(t=n-1),t<0&&(t=0);for(var l=0,r=null,i=activePosX;l<=activePosX;)canCellBeActive(t,l)&&(r=l),l+=getColspan(t,l);null!==r?(setActiveCellInternal(getCellNode(t,r)),activePosX=i):resetActiveCell()}}function navigatePageDown(){scrollPage(1)}function navigatePageUp(){scrollPage(-1)}function navigateTop(){navigateToRow(0)}function navigateBottom(){navigateToRow(getDataLength()-1)}function navigateToRow(e){var o=getDataLength();if(!o)return!0;if(e<0?e=0:e>=o&&(e=o-1),scrollCellIntoView(e,0,!0),options.enableCellNavigation&&null!=activeRow){for(var t=0,n=null,l=activePosX;t<=activePosX;)canCellBeActive(e,t)&&(n=t),t+=getColspan(e,t);null!==n?(setActiveCellInternal(getCellNode(e,n)),activePosX=l):resetActiveCell()}return!0}function getColspan(e,o){var t=data.getItemMetadata&&data.getItemMetadata(e);if(!t||!t.columns)return 1;var n=t.columns[columns[o].id]||t.columns[o],l=n&&n.colspan;return l=""===l?columns.length-o:l||1}function findFirstFocusableCell(e){for(var o=0;o<columns.length;){if(canCellBeActive(e,o))return o;o+=getColspan(e,o)}return null}function findLastFocusableCell(e){for(var o=0,t=null;o<columns.length;)canCellBeActive(e,o)&&(t=o),o+=getColspan(e,o);return t}function gotoRight(e,o,t){if(o>=columns.length)return null;do{o+=getColspan(e,o)}while(o<columns.length&&!canCellBeActive(e,o));return o<columns.length?{row:e,cell:o,posX:o}:null}function gotoLeft(e,o,t){if(o<=0)return null;var n=findFirstFocusableCell(e);if(null===n||n>=o)return null;for(var l,r={row:e,cell:n,posX:n};;){if(!(l=gotoRight(r.row,r.cell,r.posX)))return null;if(l.cell>=o)return r;r=l}}function gotoDown(e,o,t){for(var n,l=getDataLengthIncludingAddNew();;){if(++e>=l)return null;for(n=o=0;o<=t;)n=o,o+=getColspan(e,o);if(canCellBeActive(e,n))return{row:e,cell:n,posX:t}}}function gotoUp(e,o,t){for(var n;;){if(–e<0)return null;for(n=o=0;o<=t;)n=o,o+=getColspan(e,o);if(canCellBeActive(e,n))return{row:e,cell:n,posX:t}}}function gotoNext(e,o,t){if(null==e&&null==o&&canCellBeActive(e=o=t=0,o))return{row:e,cell:o,posX:o};var n=gotoRight(e,o,t);if(n)return n;var l=null,r=getDataLengthIncludingAddNew();for(e===r-1&&e–;++e<r;)if(null!==(l=findFirstFocusableCell(e)))return{row:e,cell:l,posX:l};return null}function gotoPrev(e,o,t){if(null==e&&null==o&&canCellBeActive(e=getDataLengthIncludingAddNew()-1,o=t=columns.length-1))return{row:e,cell:o,posX:o};for(var n,l;!n&&!(n=gotoLeft(e,o,t));){if(–e<0)return null;o=0,null!==(l=findLastFocusableCell(e))&&(n={row:e,cell:l,posX:l})}return n}function gotoRowStart(e,o,t){var n=findFirstFocusableCell(e);return null===n?null:{row:e,cell:n,posX:n}}function gotoRowEnd(e,o,t){var n=findLastFocusableCell(e);return null===n?null:{row:e,cell:n,posX:n}}function navigateRight(){return navigate("right")}function navigateLeft(){return navigate("left")}function navigateDown(){return navigate("down")}function navigateUp(){return navigate("up")}function navigateNext(){return navigate("next")}function navigatePrev(){return navigate("prev")}function navigateRowStart(){return navigate("home")}function navigateRowEnd(){return navigate("end")}function navigate(e){if(!options.enableCellNavigation)return!1;if(!activeCellNode&&"prev"!=e&&"next"!=e)return!1;if(!getEditorLock().commitCurrentEdit())return!0;setFocus();tabbingDirection={up:-1,down:1,left:-1,right:1,prev:-1,next:1,home:-1,end:1}[e];var o=(0,{up:gotoUp,down:gotoDown,left:gotoLeft,right:gotoRight,prev:gotoPrev,next:gotoNext,home:gotoRowStart,end:gotoRowEnd}[e])(activeRow,activeCell,activePosX);if(o){if(hasFrozenRows&&options.frozenBottom&o.row==getDataLength())return;var t=o.row==getDataLength();return(!options.frozenBottom&&o.row>=actualFrozenRow||options.frozenBottom&&o.row<actualFrozenRow)&&scrollCellIntoView(o.row,o.cell,!t&&options.emulatePagingWhenScrolling),setActiveCellInternal(getCellNode(o.row,o.cell)),activePosX=o.posX,!0}return setActiveCellInternal(getCellNode(activeRow,activeCell)),!1}function getCellNode(e,o){if(rowsCache[e]){ensureCellNodesInRowsCache(e);try{return rowsCache[e].cellNodesByColumnIdx.length>o?rowsCache[e].cellNodesByColumnIdx[o][0]:null}catch(t){return rowsCache[e].cellNodesByColumnIdx[o]}}return null}function setActiveCell(e,o,t,n,l){initialized&&(e>getDataLength()||e<0||o>=columns.length||o<0||options.enableCellNavigation&&(scrollCellIntoView(e,o,!1),setActiveCellInternal(getCellNode(e,o),t,n,l)))}function canCellBeActive(e,o){if(!options.enableCellNavigation||e>=getDataLengthIncludingAddNew()||e<0||o>=columns.length||o<0)return!1;var t=data.getItemMetadata&&data.getItemMetadata(e);if(t&&void 0!==t.focusable)return!!t.focusable;var n=t&&t.columns;return n&&n[columns[o].id]&&void 0!==n[columns[o].id].focusable?!!n[columns[o].id].focusable:n&&n[o]&&void 0!==n[o].focusable?!!n[o].focusable:!!columns[o].focusable}function canCellBeSelected(e,o){if(e>=getDataLength()||e<0||o>=columns.length||o<0)return!1;var t=data.getItemMetadata&&data.getItemMetadata(e);if(t&&void 0!==t.selectable)return!!t.selectable;var n=t&&t.columns&&(t.columns[columns[o].id]||t.columns[o]);return n&&void 0!==n.selectable?!!n.selectable:!!columns[o].selectable}function gotoCell(e,o,t,n){if(initialized&&canCellBeActive(e,o)&&getEditorLock().commitCurrentEdit()){scrollCellIntoView(e,o,!1);var l=getCellNode(e,o),r=columns[o],i=!!(options.editable&&r&&r.editor&&options.suppressActiveCellChangeOnEdit);setActiveCellInternal(l,t||e===getDataLength()||options.autoEdit,null,i,n),currentEditor||setFocus()}}function commitCurrentEdit(){var e=getDataItem(activeRow),o=columns[activeCell];if(currentEditor){if(currentEditor.isValueChanged()){var t=currentEditor.validate();if(t.valid){if(activeRow<getDataLength()){var n={row:activeRow,cell:activeCell,editor:currentEditor,serializedValue:currentEditor.serializeValue(),prevSerializedValue:serializedEditorValue,execute:function(){this.editor.applyValue(e,this.serializedValue),updateRow(this.row),trigger(self.onCellChange,{row:this.row,cell:this.cell,item:e})},undo:function(){this.editor.applyValue(e,this.prevSerializedValue),updateRow(this.row),trigger(self.onCellChange,{row:this.row,cell:this.cell,item:e})}};options.editCommandHandler?(makeActiveCellNormal(),options.editCommandHandler(e,o,n)):(n.execute(),makeActiveCellNormal())}else{var l={};currentEditor.applyValue(l,currentEditor.serializeValue()),makeActiveCellNormal(),trigger(self.onAddNewRow,{item:l,column:o})}return!getEditorLock().isActive()}return $(activeCellNode).removeClass("invalid"),$(activeCellNode).width(),$(activeCellNode).addClass("invalid"),trigger(self.onValidationError,{editor:currentEditor,cellNode:activeCellNode,validationResults:t,row:activeRow,cell:activeCell,column:o}),currentEditor.focus(),!1}makeActiveCellNormal()}return!0}function cancelCurrentEdit(){return makeActiveCellNormal(),!0}function rowsToRanges(e){for(var o=[],t=columns.length-1,n=0;n<e.length;n++)o.push(new Slick.Range(e[n],0,e[n],t));return o}function getSelectedRows(){if(!selectionModel)throw new Error("Selection model is not set");return selectedRows.slice(0)}function setSelectedRows(e){if(!selectionModel)throw new Error("Selection model is not set");self&&self.getEditorLock&&!self.getEditorLock().isActive()&&selectionModel.setSelectedRanges(rowsToRanges(e))}this.debug=function(){var e="";e+="\ncounter_rows_rendered: "+counter_rows_rendered,e+="\ncounter_rows_removed: "+counter_rows_removed,e+="\nrenderedRows: "+renderedRows,e+="\nnumVisibleRows: "+numVisibleRows,e+="\nmaxSupportedCssHeight: "+maxSupportedCssHeight,e+="\nn(umber of pages): "+n,e+="\n(current) page: "+page,e+="\npage height (ph): "+ph,e+="\nvScrollDir: "+vScrollDir,alert(e)},this.eval=function(expr){return eval(expr)},$.extend(this,{slickGridVersion:"2.4.27",onScroll:new Slick.Event,onSort:new Slick.Event,onHeaderMouseEnter:new Slick.Event,onHeaderMouseLeave:new Slick.Event,onHeaderContextMenu:new Slick.Event,onHeaderClick:new Slick.Event,onHeaderCellRendered:new Slick.Event,onBeforeHeaderCellDestroy:new Slick.Event,onHeaderRowCellRendered:new Slick.Event,onFooterRowCellRendered:new Slick.Event,onFooterContextMenu:new Slick.Event,onFooterClick:new Slick.Event,onBeforeHeaderRowCellDestroy:new Slick.Event,onBeforeFooterRowCellDestroy:new Slick.Event,onMouseEnter:new Slick.Event,onMouseLeave:new Slick.Event,onClick:new Slick.Event,onDblClick:new Slick.Event,onContextMenu:new Slick.Event,onKeyDown:new Slick.Event,onAddNewRow:new Slick.Event,onBeforeAppendCell:new Slick.Event,onValidationError:new Slick.Event,onViewportChanged:new Slick.Event,onColumnsReordered:new Slick.Event,onColumnsDrag:new Slick.Event,onColumnsResized:new Slick.Event,onBeforeColumnsResize:new Slick.Event,onCellChange:new Slick.Event,onBeforeEditCell:new Slick.Event,onBeforeCellEditorDestroy:new Slick.Event,onBeforeDestroy:new Slick.Event,onActiveCellChanged:new Slick.Event,onActiveCellPositionChanged:new Slick.Event,onDragInit:new Slick.Event,onDragStart:new Slick.Event,onDrag:new Slick.Event,onDragEnd:new Slick.Event,onSelectedRowsChanged:new Slick.Event,onCellCssStylesChanged:new Slick.Event,onAutosizeColumns:new Slick.Event,onRendered:new Slick.Event,onSetOptions:new Slick.Event,registerPlugin,unregisterPlugin,getPluginByName,getColumns,setColumns,getColumnIndex,updateColumnHeader,setSortColumn,setSortColumns,getSortColumns,autosizeColumns,autosizeColumn,getOptions,setOptions,getData,getDataLength,getDataItem,setData,getSelectionModel,setSelectionModel,getSelectedRows,setSelectedRows,getContainerNode,updatePagingStatusFromView,applyFormatResultToCellNode,render,invalidate,invalidateRow,invalidateRows,invalidateAllRows,updateCell,updateRow,getViewport:getVisibleRange,getRenderedRange,resizeCanvas,updateRowCount,scrollRowIntoView,scrollRowToTop,scrollCellIntoView,scrollColumnIntoView,getCanvasNode,getUID,getHeaderColumnWidthDiff,getScrollbarDimensions,getHeadersWidth,getCanvasWidth,getCanvases,getActiveCanvasNode,setActiveCanvasNode,getViewportNode,getActiveViewportNode,setActiveViewportNode,focus:setFocus,scrollTo,getCellFromPoint,getCellFromEvent,getActiveCell,setActiveCell,getActiveCellNode,getActiveCellPosition,resetActiveCell,editActiveCell:makeActiveCellEditable,getCellEditor,getCellNode,getCellNodeBox,canCellBeSelected,canCellBeActive,navigatePrev,navigateNext,navigateUp,navigateDown,navigateLeft,navigateRight,navigatePageUp,navigatePageDown,navigateTop,navigateBottom,navigateRowStart,navigateRowEnd,gotoCell,getTopPanel,setTopPanelVisibility,getPreHeaderPanel,getPreHeaderPanelLeft:getPreHeaderPanel,getPreHeaderPanelRight,setPreHeaderPanelVisibility,getHeader,getHeaderColumn,setHeaderRowVisibility,getHeaderRow,getHeaderRowColumn,setFooterRowVisibility,getFooterRow,getFooterRowColumn,getGridPosition,flashCell,addCellCssStyles,setCellCssStyles,removeCellCssStyles,getCellCssStyles,getFrozenRowOffset,setColumnHeaderVisibility,init:finishInitialization,destroy,getEditorLock,getEditController}),init()}module.exports={Grid:SlickGrid}},n 465: function _(t,e,a){n /!n * jquery.event.drag - v 2.3.0n * Copyright (c) 2010 Three Dub Media - http://threedubmedia.comn * Open Source MIT License - http://threedubmedia.com/code/licensen */n var n=t(458);n.fn.drag=function(t,e,a){var r="string"==typeof t?t:"",o=n.isFunction(t)?t:n.isFunction(e)?e:null;return 0!==r.indexOf("drag")&&(r="drag"+r),a=(t==o?e:a)||{},o?this.on(r,a,o):this.trigger(r)};var r=n.event,o=r.special,i=o.drag={defaults:{which:1,distance:0,not:":input",handle:null,relative:!1,drop:!0,click:!1},datakey:"dragdata",noBubble:!0,add:function(t){var e=n.data(this,i.datakey),a=t.data||{};e.related+=1,n.each(i.defaults,(function(t,n){void 0!==a[t]&&(e[t]=a[t])}))},remove:function(){n.data(this,i.datakey).related-=1},setup:function(){if(!n.data(this,i.datakey)){var t=n.extend({related:0},i.defaults);n.data(this,i.datakey,t),r.add(this,"touchstart mousedown",i.init,t),this.attachEvent&&this.attachEvent("ondragstart",i.dontstart)}},teardown:function(){(n.data(this,i.datakey)||{}).related||(n.removeData(this,i.datakey),r.remove(this,"touchstart mousedown",i.init),i.textselect(!0),this.detachEvent&&this.detachEvent("ondragstart",i.dontstart))},init:function(t){if(!i.touched){var e,a=t.data;if(!(0!=t.which&&a.which>0&&t.which!=a.which)){var d=n(t.target).attr("class")||"";if(!n(t.target).is(a.not)&&d&&-1!==d.toString().indexOf("slick")&&(!a.handle||n(t.target).closest(a.handle,t.currentTarget).length)&&(i.touched="touchstart"==t.type?this:null,a.propagates=1,a.mousedown=this,a.interactions=[i.interaction(this,a)],a.target=t.target,a.pageX=t.pageX,a.pageY=t.pageY,a.dragging=null,e=i.hijack(t,"draginit",a),a.propagates))return(e=i.flatten(e))&&e.length&&(a.interactions=[],n.each(e,(function(){a.interactions.push(i.interaction(this,a))}))),a.propagates=a.interactions.length,!1!==a.drop&&o.drop&&o.drop.handler(t,a),i.textselect(!1),i.touched?r.add(i.touched,"touchmove touchend",i.handler,a):r.add(document,"mousemove mouseup",i.handler,a),!(!i.touched||a.live)&&void 0}}},interaction:function(t,e){var a=t&&t.ownerDocument&&n(t)[e.relative?"position":"offset"]()||{top:0,left:0};return{drag:t,callback:new i.callback,droppable:[],offset:a}},handler:function(t){var e=t.data;switch(t.type){case!e.dragging&&"touchmove":t.preventDefault();case!e.dragging&&"mousemove":if(Math.pow(t.pageX-e.pageX,2)+Math.pow(t.pageY-e.pageY,2)<Math.pow(e.distance,2))break;t.target=e.target,i.hijack(t,"dragstart",e),e.propagates&&(e.dragging=!0);case"touchmove":t.preventDefault();case"mousemove":if(e.dragging){if(i.hijack(t,"drag",e),e.propagates){!1!==e.drop&&o.drop&&o.drop.handler(t,e);break}t.type="mouseup"}case"touchend":case"mouseup":default:i.touched?r.remove(i.touched,"touchmove touchend",i.handler):r.remove(document,"mousemove mouseup",i.handler),e.dragging&&(!1!==e.drop&&o.drop&&o.drop.handler(t,e),i.hijack(t,"dragend",e)),i.textselect(!0),!1===e.click&&e.dragging&&n.data(e.mousedown,"suppress.click",(new Date).getTime()+5),e.dragging=i.touched=!1}},hijack:function(t,e,a,o,d){if(a){var s,c,l,p={event:t.originalEvent,type:t.type},u=e.indexOf("drop")?"drag":"drop",g=o||0,h=isNaN(o)?a.interactions.length:o;t.type=e;var f=function(){};t.originalEvent=new n.Event(p.event,{preventDefault:f,stopPropagation:f,stopImmediatePropagation:f}),a.results=[];do{if(c=a.interactions[g]){if("dragend"!==e&&c.cancelled)continue;l=i.properties(t,a,c),c.results=[],n(d||c[u]||a.droppable).each((function(o,d){if(l.target=d,t.isPropagationStopped=function(){return!1},!1===(s=d?r.dispatch.call(d,t,l):null)?("drag"==u&&(c.cancelled=!0,a.propagates-=1),"drop"==e&&(c[u][o]=null)):"dropinit"==e&&c.droppable.push(i.element(s)||d),"dragstart"==e&&(c.proxy=n(i.element(s)||c.drag)[0]),c.results.push(s),delete t.result,"dropinit"!==e)return s})),a.results[g]=i.flatten(c.results),"dropinit"==e&&(c.droppable=i.flatten(c.droppable)),"dragstart"!=e||c.cancelled||l.update()}}while(++g<h);return t.type=p.type,t.originalEvent=p.event,i.flatten(a.results)}},properties:function(t,e,a){var n=a.callback;return n.drag=a.drag,n.proxy=a.proxy||a.drag,n.startX=e.pageX,n.startY=e.pageY,n.deltaX=t.pageX-e.pageX,n.deltaY=t.pageY-e.pageY,n.originalX=a.offset.left,n.originalY=a.offset.top,n.offsetX=n.originalX+n.deltaX,n.offsetY=n.originalY+n.deltaY,n.drop=i.flatten((a.drop||[]).slice()),n.available=i.flatten((a.droppable||[]).slice()),n},element:function(t){if(t&&(t.jquery||1==t.nodeType))return t},flatten:function(t){return n.map(t,(function(t){return t&&t.jquery?n.makeArray(t):t&&t.length?i.flatten(t):t}))},textselect:function(t){n(document)[t?"off":"on"]("selectstart",i.dontstart).css("MozUserSelect",t?"":"none"),document.unselectable=t?"off":"on"},dontstart:function(){return!1},callback:function(){}};i.callback.prototype={update:function(){o.drop&&this.available.length&&n.each(this.available,(function(t){o.drop.locate(this,t)}))}};var d=r.dispatch;r.dispatch=function(t){if(!(n.data(this,"suppress."+t.type)-(new Date).getTime()>0))return d.apply(this,arguments);n.removeData(this,"suppress."+t.type)},o.draginit=o.dragstart=o.dragend=i},n 466: function _(t,e,a){n /!n * jquery.event.drop - v 2.3.0n * Copyright (c) 2010 Three Dub Media - http://threedubmedia.comn * Open Source MIT License - http://threedubmedia.com/code/licensen /n var n=t(458);n.fn.drop=function(t,e,a){var i="string"==typeof t?t:"",o=n.isFunction(t)?t:n.isFunction(e)?e:null;return 0!==i.indexOf("drop")&&(i="drop"+i),a=(t==o?e:a)||{},o?this.on(i,a,o):this.trigger(i)},n.drop=function(t){t=t||{},o.multi=!0===t.multi?1/0:!1===t.multi?1:isNaN(t.multi)?o.multi:t.multi,o.delay=t.delay||o.delay,o.tolerance=n.isFunction(t.tolerance)?t.tolerance:null===t.tolerance?null:o.tolerance,o.mode=t.mode||o.mode||"intersect"};var i=n.event.special,o=n.event.special.drop={multi:1,delay:20,mode:"overlap",targets:[],datakey:"dropdata",noBubble:!0,add:function(t){n.data(this,o.datakey).related+=1},remove:function(){n.data(this,o.datakey).related-=1},setup:function(){if(!n.data(this,o.datakey)){n.data(this,o.datakey,{related:0,active:[],anyactive:0,winner:0,location:{}}),o.targets.push(this)}},teardown:function(){if(!(n.data(this,o.datakey)||{}).related){n.removeData(this,o.datakey);var t=this;o.targets=n.grep(o.targets,(function(e){return e!==t}))}},handler:function(t,e){var a;if(e)switch(t.type){case"mousedown":case"touchstart":a=n(o.targets),"string"==typeof e.drop&&(a=a.filter(e.drop)),a.each((function(){var t=n.data(this,o.datakey);t.active=[],t.anyactive=0,t.winner=0})),e.droppable=a,i.drag.hijack(t,"dropinit",e);break;case"mousemove":case"touchmove":o.event=t,o.timer||o.tolerate(e);break;case"mouseup":case"touchend":o.timer=clearTimeout(o.timer),e.propagates&&(i.drag.hijack(t,"drop",e),i.drag.hijack(t,"dropend",e))}},locate:function(t,e){var a=n.data(t,o.datakey),i=n(t),r=i.length&&!i.is(document)?i.offset():{},d=i.outerHeight(),l=i.outerWidth(),c={elem:t,width:l,height:d,top:r.top,left:r.left,right:r.left+l,bottom:r.top+d};return a&&(a.location=c,a.index=e,a.elem=t),c},contains:function(t,e){return(e[0]||e.left)>=t.left&&(e[0]||e.right)<=t.right&&(e[1]||e.top)>=t.top&&(e[1]||e.bottom)<=t.bottom},modes:{intersect:function(t,e,a){return this.contains(a,[t.pageX,t.pageY])?1e9:this.modes.overlap.apply(this,arguments)},overlap:function(t,e,a){return Math.max(0,Math.min(a.bottom,e.bottom)-Math.max(a.top,e.top))*Math.max(0,Math.min(a.right,e.right)-Math.max(a.left,e.left))},fit:function(t,e,a){return this.contains(a,e)?1:0},middle:function(t,e,a){return this.contains(a,[e.left+.5*e.width,e.top+.5*e.height])?1:0}},sort:function(t,e){return e.winner-t.winner||t.index-e.index},tolerate:function(t){var e,a,r,d,l,c,s,u,p=0,h=t.interactions.length,m=[o.event.pageX,o.event.pageY],f=o.tolerance||o.modes[o.mode];do{if(u=t.interactions[p]){if(!u)return;u.drop=[],l=[],c=u.droppable.length,f&&(r=o.locate(u.proxy)),e=0;do{if(s=u.droppable[e]){if(!(a=(d=n.data(s,o.datakey)).location))continue;d.winner=f?f.call(o,o.event,r,a):o.contains(a,m)?1:0,l.push(d)}}while(++e<c);l.sort(o.sort),e=0;do{(d=l[e])&&(d.winner&&u.drop.length<o.multi?(d.active[p]||d.anyactive||(!1!==i.drag.hijack(o.event,"dropstart",t,p,d.elem)[0]?(d.active[p]=1,d.anyactive+=1):d.winner=0),d.winner&&u.drop.push(d.elem)):d.active[p]&&1==d.anyactive&&(i.drag.hijack(o.event,"dropend",t,p,d.elem),d.active[p]=0,d.anyactive-=1))}while(++e<c)}}while(++p<h);o.last&&m[0]==o.last.pageX&&m[1]==o.last.pageY?delete o.timer:o.timer=setTimeout((function(){o.tolerate(t)}),o.delay),o.last=o.event}};i.dropinit=i.dropstart=i.dropend=o},n 467: function _(e,t,n){var r=e(458),o=e(460);var i={Avg:function(e){this.field_=e,this.init=function(){this.count_=0,this.nonNullCount_=0,this.sum_=0},this.accumulate=function(e){var t=e[this.field_];this.count_++,null==t||""===t||isNaN(t)||(this.nonNullCount_++,this.sum_+=parseFloat(t))},this.storeResult=function(e){e.avg||(e.avg={}),0!==this.nonNullCount_&&(e.avg[this.field_]=this.sum_/this.nonNullCount_)}},Min:function(e){this.field_=e,this.init=function(){this.min_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(null==this.min_||t<this.min_)&&(this.min_=t)},this.storeResult=function(e){e.min||(e.min={}),e.min[this.field_]=this.min_}},Max:function(e){this.field_=e,this.init=function(){this.max_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(null==this.max_||t>this.max_)&&(this.max_=t)},this.storeResult=function(e){e.max||(e.max={}),e.max[this.field_]=this.max_}},Sum:function(e){this.field_=e,this.init=function(){this.sum_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(this.sum_+=parseFloat(t))},this.storeResult=function(e){e.sum||(e.sum={}),e.sum[this.field_]=this.sum_}},Count:function(e){this.field_=e,this.init=function(){},this.storeResult=function(e){e.count||(e.count={}),e.count[this.field_]=e.group.rows.length}}};t.exports={DataView:function(e){var t,n,i,l,a,u=this,s="id",g=[],c=[],f={},p=null,h=null,d=null,m=!1,v=!0,_={},w={},y=[],$=[],C={getter:null,formatter:null,comparer:function(e,t){return e.value===t.value?0:e.value>t.value?1:-1},predefinedValues:[],aggregators:[],aggregateEmpty:!1,aggregateCollapsed:!1,aggregateChildGroups:!1,collapsed:!1,displayTotalsRow:!0,lazyTotalsCalculation:!1},I=[],R=[],x=[],E=0,M=0,F=0,S=new o.Event,b=new o.Event,A=new o.Event,N=new o.Event,G=new o.Event,T=new o.Event,O=new o.Event,P=new o.Event;function D(e){for(var t,n=e=e||0,r=g.length;n<r;n++){if(void 0===(t=g[n][s]))throw new Error("Each data element must implement a unique ‘id’ property");f[t]=n}}function K(){var e=E?Math.max(1,Math.ceil(F/E)):1;return{pageSize:E,pageNum:M,totalRows:F,totalPages:e,dataView:u}}function j(e,r){v=r,n=e,t=null,!1===r&&g.reverse(),g.sort(e),!1===r&&g.reverse(),f={},D(),le()}function B(e,r){v=r,t=e,n=null;var o=Object.prototype.toString;Object.prototype.toString="function"==typeof e?e:function(){return this[e]},!1===r&&g.reverse(),g.sort(),Object.prototype.toString=o,!1===r&&g.reverse(),f={},D(),le()}function z(t){e.groupItemMetadataProvider||(e.groupItemMetadataProvider=new o.Data.GroupItemMetadataProvider),R=[],x=[],I=(t=t||[])instanceof Array?t:[t];for(var n=0;n<I.length;n++){var i=I[n]=r.extend(!0,{},C,I[n]);i.getterIsAFn="function"==typeof i.getter,i.compiledAccumulators=[];for(var l=i.aggregators.length;l–;)i.compiledAccumulators[l]=ee(i.aggregators[l]);x[n]={}}le()}function V(){if(!p){p={};for(var e=0,t=c.length;e<t;e++)p[c[e][s]]=e}}function q(e){return g[f[e]]}function U(e,t){if(void 0===f[e])throw new Error("Invalid id");if(e!==t[s]){var n=t[s];if(null==n)throw new Error("Cannot update item to associate with a null id");if(void 0!==f[n])throw new Error("Cannot update item to associate with a non-unique id");f[n]=f[e],delete f[e],d&&d[e]&&delete d[e],e=n}g[f[e]]=t,d||(d={}),d[e]=!0,le()}function L(e,t){g.splice(e,0,t),D(e),le()}function k(e){var t=f[e];if(void 0===t)throw new Error("Invalid id");delete f[e],g.splice(t,1),D(t),le()}function H(e){if(!n)throw new Error("sortedAddItem() requires a sort comparer, use sort()");L(function(e){var t=0,r=g.length;for(;t<r;){var o=t+r>>>1;-1===n(g[o],e)?t=o+1:r=o}return t}(e),e)}function W(e,t){if(null==e)for(var n=0;n<I.length;n++)x[n]={},I[n].collapsed=t,!0===t?P.notify({level:n,groupingKey:null}):O.notify({level:n,groupingKey:null});else x[e]={},I[e].collapsed=t,!0===t?P.notify({level:e,groupingKey:null}):O.notify({level:e,groupingKey:null});le()}function J(e,t,n){x[e][t]=I[e].collapsed^n,le()}function Q(e,t){for(var n,r,i,l=[],a={},u=t?t.level+1:0,s=I[u],g=0,c=s.predefinedValues.length;g<c;g++)(n=a[r=s.predefinedValues[g]])||((n=new o.Group).value=r,n.level=u,n.groupingKey=(t?t.groupingKey+":|:":"")+r,l[l.length]=n,a[r]=n);for(g=0,c=e.length;g<c;g++)i=e[g],(n=a[r=s.getterIsAFn?s.getter(i):i[s.getter]])||((n=new o.Group).value=r,n.level=u,n.groupingKey=(t?t.groupingKey+":|:":"")+r,l[l.length]=n,a[r]=n),n.rows[n.count++]=i;if(u<I.length-1)for(g=0;g<l.length;g++)(n=l[g]).groups=Q(n.rows,n);return l.length&&function e(t,n){var r,o=I[n=n||0],i=o.collapsed,l=x[n],a=t.length;for(;a–;)(r=t[a]).collapsed&&!o.aggregateCollapsed||(r.groups&&e(r.groups,n+1),o.aggregators.length&&(o.aggregateEmpty||r.rows.length||r.groups&&r.groups.length)&&Y(r),r.collapsed=i^l[r.groupingKey],r.title=o.formatter?o.formatter(r):r.value)}(l,u),l.sort(I[u].comparer),l}function X(e){var t,n=e.group,r=I[n.level],o=n.level==I.length,i=r.aggregators.length;if(!o&&r.aggregateChildGroups)for(var l=n.groups.length;l–;)n.groups[l].totals.initialized||X(n.groups[l].totals);for(;i–;)(t=r.aggregators[i]).init(),!o&&r.aggregateChildGroups?r.compiledAccumulators[i].call(t,n.groups):r.compiledAccumulators[i].call(t,n.rows),t.storeResult(e);e.initialized=!0}function Y(e){var t=I[e.level],n=new o.GroupTotals;n.group=e,e.totals=n,t.lazyTotalsCalculation||X(n)}function Z(e){var t=e.toString().indexOf("function")>=0?/^function[^(]\(([^)]*)\)\s*{([\s\S]*)}$/:/^[^(]*\(([^)]*)\)\s*{([\s\S]*)}$/,n=e.toString().match(t);return{params:n[1].split(","),body:n[2]}}function ee(e){if(e.accumulate){var t=Z(e.accumulate),n=new Function("_items","for (var "+t.params[0]+", _i=0, _il=_items.length; _i<_il; _i++) {"+t.params[0]+" = _items[_i]; "+t.body+"}"),r="compiledAccumulatorLoop";return n.displayName=r,n.name=te(n,r),n}return function(){}}function te(e,t){try{Object.defineProperty(e,"name",{writable:!0,value:t})}catch(n){e.name=t}}function ne(e,t){for(var n=[],r=0,o=0,i=e.length;o<i;o++)h(e[o],t)&&(n[r++]=e[o]);return n}function re(e,t,n){for(var r,o=[],i=0,l=0,a=e.length;l<a;l++)r=e[l],n[l]?o[i++]=r:h(r,t)&&(o[i++]=r,n[l]=!0);return o}function oe(t){if(h){var n=e.inlineFilters?l:ne,r=e.inlineFilters?a:re;_.isFilterNarrowing?y=n(y,i):_.isFilterExpanding?y=r(t,i,$):_.isFilterUnchanged||(y=n(t,i))}else y=E?t:t.concat();var o;return E?(y.length<=M*E&&(M=0===y.length?0:Math.floor((y.length-1)/E)),o=y.slice(E*M,E*M+E)):o=y,{totalRows:y.length,rows:o}}function ie(e){p=null,_.isFilterNarrowing==w.isFilterNarrowing&&_.isFilterExpanding==w.isFilterExpanding||($=[]);var t=oe(e);F=t.totalRows;var n=t.rows;R=[],I.length&&(R=Q(n)).length&&(n=function e(t,n){for(var r,o,i=I[n=n||0],l=[],a=0,u=0,s=t.length;u<s;u++){if(o=t[u],l[a++]=o,!o.collapsed)for(var g=0,c=(r=o.groups?e(o.groups,n+1):o.rows).length;g<c;g++)l[a++]=r[g];o.totals&&i.displayTotalsRow&&(!o.collapsed||i.aggregateCollapsed)&&(l[a++]=o.totals)}return l}(R));var r=function(e,t){var n,r,o,i=[],l=0,a=Math.max(t.length,e.length);_&&_.ignoreDiffsBefore&&(l=Math.max(0,Math.min(t.length,_.ignoreDiffsBefore))),_&&_.ignoreDiffsAfter&&(a=Math.min(t.length,Math.max(0,_.ignoreDiffsAfter)));for(var u=l,g=e.length;u<a;u++)u>=g?i[i.length]=u:(n=t[u],r=e[u],(!n||I.length&&(o=n.__nonDataRow||r.__nonDataRow)&&n.__group!==r.__group||n.__group&&!n.equals(r)||o&&(n.__groupTotals||r.__groupTotals)||n[s]!=r[s]||d&&d[n[s]])&&(i[i.length]=u));return i}(c,n);return c=n,r}function le(){if(!m){var e=r.extend(!0,{},K()),t=c.length,n=F,o=ie(g);E&&F<M*E&&(M=Math.max(0,Math.ceil(F/E)-1),o=ie(g)),d=null,w=_,_={},n!==F&&(G.notify(e,null,u),T.notify(K(),null,u)),t!==c.length&&b.notify({previous:t,current:c.length,dataView:u,callingOnRowsChanged:o.length>0},null,u),o.length>0&&A.notify({rows:o,dataView:u,calledOnRowCountChanged:t!==c.length},null,u),(t!==c.length||o.length>0)&&N.notify({rowsDiff:o,previousRowCount:t,currentRowCount:c.length,rowCountChanged:t!==c.length,rowsChanged:o.length>0,dataView:u},null,u)}}e=r.extend(!0,{},{groupItemMetadataProvider:null,inlineFilters:!1},e),r.extend(this,{beginUpdate:function(){m=!0},endUpdate:function(){m=!1,le()},setPagingOptions:function(e){G.notify(K(),null,u),null!=e.pageSize&&(E=e.pageSize,M=E?Math.min(M,Math.max(0,Math.ceil(F/E)-1)):0),null!=e.pageNum&&(M=Math.min(e.pageNum,Math.max(0,Math.ceil(F/E)-1))),T.notify(K(),null,u),le()},getPagingInfo:K,getIdPropertyName:function(){return s},getItems:function(){return g},setItems:function(e,t){void 0!==t&&(s=t),g=y=e,f={},D(),function(){for(var e,t=0,n=g.length;t<n;t++)if(void 0===(e=g[t][s])||f[e]!==t)throw new Error("Each data element must implement a unique ‘id’ property")}(),le(),S.notify({idProperty:t},null,u)},setFilter:function(t){h=t,e.inlineFilters&&(l=function(){var e=Z(h),t="{ _retval[_idx++] = $item$; continue _coreloop; }$1",n=e.body.replace(/return false\s*([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return!1([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return true\s*([;}]|\}|$)/gi,t).replace(/return!0([;}]|\}|$)/gi,t).replace(/return ([^;}]+?)\s*([;}]|$)/gi,"{ if ($1) { _retval[_idx++] = $item$; }; continue _coreloop; }$2"),r=["var _retval = [], _idx = 0; ","var $item$, $args$ = _args; ","_coreloop: ","for (var _i = 0, _il = _items.length; _i < _il; _i++) { ","$item$ = _items[_i]; ","$filter$; ","} ","return _retval; "].join("");r=(r=(r=r.replace(/\$filter\$/gi,n)).replace(/\$item\$/gi,e.params[0])).replace(/\$args\$/gi,e.params[1]);var o=new Function("_items,_args",r);return o.displayName="compiledFilter",o.name=te(o,"compiledFilter"),o}(),a=function(){var e=Z(h),t="{ _cache[_i] = true;_retval[_idx++] = $item$; continue _coreloop; }$1",n=e.body.replace(/return false\s*([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return!1([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return true\s*([;}]|\}|$)/gi,t).replace(/return!0([;}]|\}|$)/gi,t).replace(/return ([^;}]+?)\s*([;}]|$)/gi,"{ if ((_cache[_i] = $1)) { _retval[_idx++] = $item$; }; continue _coreloop; }$2"),r=["var _retval = [], _idx = 0; ","var $item$, $args$ = _args; ","_coreloop: ","for (var _i = 0, _il = _items.length; _i < _il; _i++) { ","$item$ = _items[_i]; ","if (_cache[_i]) { ","_retval[_idx++] = $item$; ","continue _coreloop; ","} ","$filter$; ","} ","return _retval; "].join("");r=(r=(r=r.replace(/\$filter\$/gi,n)).replace(/\$item\$/gi,e.params[0])).replace(/\$args\$/gi,e.params[1]);var o=new Function("_items,_args,_cache",r),i="compiledFilterWithCaching";return o.displayName=i,o.name=te(o,i),o}()),le()},getFilter:function(){return h},getFilteredItems:function(){return y},sort:j,fastSort:B,reSort:function(){n?j(n,v):t&&B(t,v)},setGrouping:z,getGrouping:function(){return I},groupBy:function(e,t,n){z(null!=e?{getter:e,formatter:t,comparer:n}:[])},setAggregators:function(e,t){if(!I.length)throw new Error("At least one grouping must be specified before calling setAggregators().");I[0].aggregators=e,I[0].aggregateCollapsed=t,z(I)},collapseAllGroups:function(e){W(e,!0)},expandAllGroups:function(e){W(e,!1)},collapseGroup:function(e){var t,n,r=Array.prototype.slice.call(arguments),o=r[0];1===r.length&&-1!==o.indexOf(":|:\")?(t=o,n=o.split(\":|:").length-1):(t=r.join(":|:\"),n=r.length-1),J(n,t,!0),P.notify({level:n,groupingKey:t})},expandGroup:function(e){var t,n,r=Array.prototype.slice.call(arguments),o=r[0];1===r.length&&-1!==o.indexOf(\":|:")?(n=o.split(":|:\").length-1,t=o):(n=r.length-1,t=r.join(\":|:")),J(n,t,!1),O.notify({level:n,groupingKey:t})},getGroups:function(){return R},getIdxById:function(e){return f[e]},getRowByItem:function(e){return V(),p[e[s]]},getRowById:function(e){return V(),p[e]},getItemById:q,getItemByIdx:function(e){return g[e]},mapItemsToRows:function(e){var t=[];V();for(var n=0,r=e.length;n<r;n++){var o=p[e[n][s]];null!=o&&(t[t.length]=o)}return t},mapRowsToIds:function(e){for(var t=[],n=0,r=e.length;n<r;n++)e[n]<c.length&&(t[t.length]=c[e[n]][s]);return t},mapIdsToRows:function(e){var t=[];V();for(var n=0,r=e.length;n<r;n++){var o=p[e[n]];null!=o&&(t[t.length]=o)}return t},setRefreshHints:function(e){_=e},setFilterArgs:function(e){i=e},refresh:le,updateItem:U,insertItem:L,addItem:function(e){g.push(e),D(g.length-1),le()},deleteItem:k,sortedAddItem:H,sortedUpdateItem:function(e,t){if(void 0===f[e]||e!==t[s])throw new Error("Invalid or non-matching id "+f[e]);if(!n)throw new Error("sortedUpdateItem() requires a sort comparer, use sort()");var r=q(e);0!==n(r,t)?(k(e),H(t)):U(e,t)},syncGridSelection:function(e,t,n){var i,l=this,a=l.mapRowsToIds(e.getSelectedRows()),u=new o.Event;function s(t){a.join(",")!=t.join(",")&&(a=t,u.notify({grid:e,ids:a,dataView:l},new o.EventData,l))}return e.onSelectedRowsChanged.subscribe((function(t,o){if(!i){var u=l.mapRowsToIds(e.getSelectedRows());if(n&&e.getOptions().multiSelect)s(r.grep(a,(function(e){return void 0===l.getRowById(e)})).concat(u));else s(u)}})),this.onRowsOrCountChanged.subscribe((function(){if(a.length>0){i=!0;var n=l.mapIdsToRows(a);t||s(l.mapRowsToIds(n)),e.setSelectedRows(n),i=!1}})),u},syncGridCellCssStyles:function(e,t){var n,r;function o(e){for(var t in n={},e){var r=c[t][s];n[r]=e[t]}}function i(){if(n){r=!0,V();var o={};for(var i in n){var l=p[i];null!=l&&(o[l]=n[i])}e.setCellCssStyles(t,o),r=!1}}o(e.getCellCssStyles(t)),e.onCellCssStylesChanged.subscribe((function(n,l){r||t==l.key&&(l.hash?o(l.hash):(e.onCellCssStylesChanged.unsubscribe(),u.onRowsOrCountChanged.unsubscribe(i)))})),this.onRowsOrCountChanged.subscribe(i)},getLength:function(){return c.length},getItem:function(e){var t=c[e];if(t&&t.__group&&t.totals&&!t.totals.initialized){var n=I[t.level];n.displayTotalsRow||(X(t.totals),t.title=n.formatter?n.formatter(t):t.value)}else t&&t.__groupTotals&&!t.initialized&&X(t);return t},getItemMetadata:function(t){var n=c[t];return void 0===n?null:n.__group?e.groupItemMetadataProvider.getGroupRowMetadata(n):n.__groupTotals?e.groupItemMetadataProvider.getTotalsRowMetadata(n):null},onSetItemsCalled:S,onRowCountChanged:b,onRowsChanged:A,onRowsOrCountChanged:N,onBeforePagingInfoChanged:G,onPagingInfoChanged:T,onGroupExpanded:O,onGroupCollapsed:P})},Aggregators:i,Data:{Aggregators:i}}},n 468: function _(e,t,i){var n=e(458),o=e(460);function l(e){var t,i;function o(){var t=e.column.editorFixedDecimalPlaces;return void 0===t&&(t=l.DefaultDecimalPlaces),t||0===t?t:null}this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field];var l=o();null!==l&&(i||0===i)&&i.toFixed&&(i=i.toFixed(l)),t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){var e=parseFloat(t.val());l.AllowEmptyValue?e||0===e||(e=""):e=e||0;var i=o();return null!==i&&(e||0===e)&&e.toFixed&&(e=parseFloat(e.toFixed(i))),e},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(isNaN(t.val()))return{valid:!1,msg:"Please enter a valid number"};if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()}function a(e){var t=this.selectionStart,i=this.value.length;(e.keyCode===o.keyCode.LEFT&&t>0||e.keyCode===o.keyCode.RIGHT&&t<i-1)&&e.stopImmediatePropagation()}function s(e){e.keyCode!==o.keyCode.LEFT&&e.keyCode!==o.keyCode.RIGHT||e.stopImmediatePropagation()}l.DefaultDecimalPlaces=null,l.AllowEmptyValue=!1,t.exports={Editors:{Text:function(e){var t,i;this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.getValue=function(){return t.val()},this.setValue=function(e){t.val(e)},this.loadValue=function(n){i=n[e.column.field]||"",t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},Integer:function(e){var t,i;this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field],t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return parseInt(t.val(),10)||0},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(isNaN(t.val()))return{valid:!1,msg:"Please enter a valid integer"};if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},Float:l,Date:function(e){var t,i,o=!1;this.init=function(){(t=n("<INPUT type=text class=’editor-text’ />")).appendTo(e.container),t.focus().select(),t.datepicker({showOn:"button",buttonImageOnly:!0,beforeShow:function(){o=!0},onClose:function(){o=!1}}),t.width(t.width()-18)},this.destroy=function(){n.datepicker.dpDiv.stop(!0,!0),t.datepicker("hide"),t.datepicker("destroy"),t.remove()},this.show=function(){o&&n.datepicker.dpDiv.stop(!0,!0).show()},this.hide=function(){o&&n.datepicker.dpDiv.stop(!0,!0).hide()},this.position=function(e){o&&n.datepicker.dpDiv.css("top",e.top+30).css("left",e.left)},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field],t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},YesNoSelect:function(e){var t,i;this.init=function(){(t=n("<SELECT tabIndex=’0’ class=’editor-yesno’><OPTION value=’yes’>Yes</OPTION><OPTION value=’no’>No</OPTION></SELECT>")).appendTo(e.container),t.focus()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){t.val((i=n[e.column.field])?"yes":"no"),t.select()},this.serializeValue=function(){return"yes"==t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return t.val()!=i},this.validate=function(){return{valid:!0,msg:null}},this.init()},Checkbox:function(e){var t,i;this.init=function(){(t=n("<INPUT type=checkbox value=’true’ class=’editor-checkbox’ hideFocus>")).appendTo(e.container),t.focus()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){(i=!!n[e.column.field])?t.prop("checked",!0):t.prop("checked",!1)},this.preClick=function(){t.prop("checked",!t.prop("checked"))},this.serializeValue=function(){return t.prop("checked")},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return this.serializeValue()!==i},this.validate=function(){return{valid:!0,msg:null}},this.init()},PercentComplete:function(e){var t,i,o;this.init=function(){(t=n("<INPUT type=text class=’editor-percentcomplete’ />")).width(n(e.container).innerWidth()-25),t.appendTo(e.container),(i=n("<div class=’editor-percentcomplete-picker’ />").appendTo(e.container)).append("<div class=’editor-percentcomplete-helper’><div class=’editor-percentcomplete-wrapper’><div class=’editor-percentcomplete-slider’ /><div class=’editor-percentcomplete-buttons’ /></div></div>"),i.find(".editor-percentcomplete-buttons").append("<button val=0>Not started</button><br/><button val=50>In Progress</button><br/><button val=100>Complete</button>"),t.focus().select(),i.find(".editor-percentcomplete-slider").slider({orientation:"vertical",range:"min",value:o,slide:function(e,i){t.val(i.value)}}),i.find(".editor-percentcomplete-buttons button").on("click",(function(e){t.val(n(this).attr("val")),i.find(".editor-percentcomplete-slider").slider("value",n(this).attr("val"))}))},this.destroy=function(){t.remove(),i.remove()},this.focus=function(){t.focus()},this.loadValue=function(i){t.val(o=i[e.column.field]),t.select()},this.serializeValue=function(){return parseInt(t.val(),10)||0},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==o)&&(parseInt(t.val(),10)||0)!=o},this.validate=function(){return isNaN(parseInt(t.val(),10))?{valid:!1,msg:"Please enter a valid positive number"}:{valid:!0,msg:null}},this.init()},LongText:function(e){var t,i,l,a=this;this.init=function(){var o=n("body");e.grid.getOptions().editorCellNavOnLRKeys;i=n("<DIV style=’z-index:10000;position:absolute;background:white;padding:5px;border:3px solid gray; -moz-border-radius:10px; border-radius:10px;’/>").appendTo(o),t=n("<TEXTAREA hidefocus rows=5 style=’background:white;width:250px;height:80px;border:0;outline:0’>").appendTo(i),n("<DIV style=’text-align:right’><BUTTON>Save</BUTTON><BUTTON>Cancel</BUTTON></DIV>").appendTo(i),i.find("button:first").on("click",this.save),i.find("button:last").on("click",this.cancel),t.on("keydown",this.handleKeyDown),a.position(e.position),t.focus().select()},this.handleKeyDown=function(t){if(t.which==o.keyCode.ENTER&&t.ctrlKey)a.save();else if(t.which==o.keyCode.ESCAPE)t.preventDefault(),a.cancel();else if(t.which==o.keyCode.TAB&&t.shiftKey)t.preventDefault(),e.grid.navigatePrev();else if(t.which==o.keyCode.TAB)t.preventDefault(),e.grid.navigateNext();else if((t.which==o.keyCode.LEFT||t.which==o.keyCode.RIGHT)&&e.grid.getOptions().editorCellNavOnLRKeys){var i=this.selectionStart,n=this.value.length;t.keyCode===o.keyCode.LEFT&&0===i&&e.grid.navigatePrev(),t.keyCode===o.keyCode.RIGHT&&i>=n-1&&e.grid.navigateNext()}},this.save=function(){e.commitChanges()},this.cancel=function(){t.val(l),e.cancelChanges()},this.hide=function(){i.hide()},this.show=function(){i.show()},this.position=function(e){i.css("top",e.top-5).css("left",e.left-5)},this.destroy=function(){i.remove()},this.focus=function(){t.focus()},this.loadValue=function(i){t.val(l=i[e.column.field]),t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==l)&&t.val()!=l},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()}}}},n 469: function _(e,n,r){e(460);n.exports={Formatters:{PercentComplete:function(e,n,r,t,c){return null==r||""===r?"-":r<50?"<span style=’color:red;font-weight:bold;’>"+r+"%</span>":"<span style=’color:green’>"+r+"%</span>"},PercentCompleteBar:function(e,n,r,t,c){return null==r||""===r?"":"<span class=’percent-complete-bar’ style=’background:"+(r<30?"red":r<70?"silver":"green")+";width:"+r+"%’></span>"},YesNo:function(e,n,r,t,c){return r?"Yes":"No"},Checkmark:function(e,n,r,t,c){return r?"<img src=’../images/tick.png’>":""},Checkbox:function(e,n,r,t,c){return’<img class="slick-edit-preclick" src="../images/’+(r?"CheckboxY":"CheckboxN")+’.png">’}}}},n 470: function _(t,o,r){var e=t(458),n=t(460);o.exports={RemoteModel:function(){var t={length:0},o="",r=null,a=1,l=null,i=null,s=new n.Event,u=new n.Event;function f(){for(var o in t)delete t[o];t.length=0}function c(n,f){if(i){i.abort();for(var c=i.fromPage;c<=i.toPage;c++)t[50*c]=void 0}n<0&&(n=0),t.length>0&&(f=Math.min(f,t.length-1));for(var d=Math.floor(n/50),v=Math.floor(f/50);void 0!==t[50*d]&&d<v;)d++;for(;void 0!==t[50*v]&&d<v;)v–;if(d>v||d==v&&void 0!==t[50*d])u.notify({from:n,to:f});else{var m="http://octopart.com/api/v3/parts/search?apikey=68b25f31&include[]=short_description&show[]=uid&show[]=manufacturer&show[]=mpn&show[]=brand&show[]=octopart_url&show[]=short_description&q="+o+"&start="+50*d+"&limit="+(50*(v-d)+50);null!=r&&(m+="&sortby="+r+(a>0?"+asc":"+desc")),null!=l&&clearTimeout(l),l=setTimeout((function(){for(var o=d;o<=v;o++)t[50*o]=null;s.notify({from:n,to:f}),(i=e.jsonp({url:m,callbackParameter:"callback",cache:!0,success:h,error:function(){!function(t,o){alert("error loading pages "+t+" to "+o)}(d,v)}})).fromPage=d,i.toPage=v}),50)}}function h(o){var r=o.request.start,e=r+o.results.length;t.length=Math.min(parseInt(o.hits),1e3);for(var n=0;n<o.results.length;n++){var a=o.results[n].item;t[r+n]=a,t[r+n].index=r+n}i=null,u.notify({from:r,to:e})}return{data:t,clear:f,isDataLoaded:function(o,r){for(var e=o;e<=r;e++)if(null==t[e]||null==t[e])return!1;return!0},ensureData:c,reloadData:function(o,r){for(var e=o;e<=r;e++)delete t[e];c(o,r)},setSort:function(t,o){r=t,a=o,f()},setSearch:function(t){o=t,f()},onDataLoading:s,onDataLoaded:u}}}},n 471: function _(e,s,t){var o=e(458),l=e(460);s.exports={GroupItemMetadataProvider:function(e){var s,t={checkboxSelect:!1,checkboxSelectCssClass:"slick-group-select-checkbox",checkboxSelectPlugin:null,groupCssClass:"slick-group",groupTitleCssClass:"slick-group-title",totalsCssClass:"slick-group-totals",groupFocusable:!0,totalsFocusable:!1,toggleCssClass:"slick-group-toggle",toggleExpandedCssClass:"expanded",toggleCollapsedCssClass:"collapsed",enableExpandCollapse:!0,groupFormatter:function(e,s,t,o,l,r){if(!a.enableExpandCollapse)return l.title;var c=15*l.level+"px";return(a.checkboxSelect?’<span class="’+a.checkboxSelectCssClass+" "+(l.selectChecked?"checked":"unchecked")+’"></span>’:"")+"<span class=’"+a.toggleCssClass+" "+(l.collapsed?a.toggleCollapsedCssClass:a.toggleExpandedCssClass)+"’ style=’margin-left:"+c+"’></span><span class=’"+a.groupTitleCssClass+"’ level=’"+l.level+"’>"+l.title+"</span>"},totalsFormatter:function(e,s,t,o,l,a){return o.groupTotalsFormatter&&o.groupTotalsFormatter(l,o,a)||""},includeHeaderTotals:!1},a=o.extend(!0,{},t,e);function r(e,t){var r=o(e.target),c=this.getDataItem(t.row);if(c&&c instanceof l.Group&&r.hasClass(a.toggleCssClass)){var n=s.getRenderedRange();this.getData().setRefreshHints({ignoreDiffsBefore:n.top,ignoreDiffsAfter:n.bottom+1}),c.collapsed?this.getData().expandGroup(c.groupingKey):this.getData().collapseGroup(c.groupingKey),e.stopImmediatePropagation(),e.preventDefault()}if(c&&c instanceof l.Group&&r.hasClass(a.checkboxSelectCssClass)){c.selectChecked=!c.selectChecked,r.removeClass(c.selectChecked?"unchecked":"checked"),r.addClass(c.selectChecked?"checked":"unchecked");var i=s.getData().mapItemsToRows(c.rows);(c.selectChecked?a.checkboxSelectPlugin.selectRows:a.checkboxSelectPlugin.deSelectRows)(i)}}function c(e,t){if(a.enableExpandCollapse&&e.which==l.keyCode.SPACE){var o=this.getActiveCell();if(o){var r=this.getDataItem(o.row);if(r&&r instanceof l.Group){var c=s.getRenderedRange();this.getData().setRefreshHints({ignoreDiffsBefore:c.top,ignoreDiffsAfter:c.bottom+1}),r.collapsed?this.getData().expandGroup(r.groupingKey):this.getData().collapseGroup(r.groupingKey),e.stopImmediatePropagation(),e.preventDefault()}}}}return{init:function(e){(s=e).onClick.subscribe(r),s.onKeyDown.subscribe(c)},destroy:function(){s&&(s.onClick.unsubscribe(r),s.onKeyDown.unsubscribe(c))},getGroupRowMetadata:function(e){var s=e&&e.level;return{selectable:!1,focusable:a.groupFocusable,cssClasses:a.groupCssClass+" slick-group-level-"+s,formatter:a.includeHeaderTotals&&a.totalsFormatter,columns:{0:{colspan:a.includeHeaderTotals?"1":"",formatter:a.groupFormatter,editor:null}}}},getTotalsRowMetadata:function(e){var s=e&&e.group&&e.group.level;return{selectable:!1,focusable:a.totalsFocusable,cssClasses:a.totalsCssClass+" slick-group-level-"+s,formatter:a.totalsFormatter,editor:null}},getOptions:function(){return a},setOptions:function(e){o.extend(!0,a,e)}}}}},n 472: function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return"horizontal"==this.model.orientation?super._width_policy():"fixed"}_height_policy(){return"horizontal"==this.model.orientation?"fixed":super._height_policy()}box_sizing(){const i=super.box_sizing();return"horizontal"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__="WidgetView";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,"horizontal"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__="Widget",s.init_Widget()},n 473: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),n=e(472),c=e(114),a=s.__importStar(e(18));class o extends n.Widget{constructor(e){super(e)}static init_TableWidget(){this.define({source:[a.Instance],view:[a.Instance,()=>new c.CDSView]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.source,this.view.compute_indices())}}t.TableWidget=o,o.__name__="TableWidget",o.init_TableWidget()},n 474: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const r=t(1),o=t(475),n=t(455),l=r.__importStar(t(18)),a=t(29),d=t(81);class s extends d.Model{constructor(t){super(t)}static init_TableColumn(){this.define({field:[l.String],title:[l.String],width:[l.Number,300],formatter:[l.Instance,()=>new o.StringFormatter],editor:[l.Instance,()=>new n.StringEditor],sortable:[l.Boolean,!0],default_sort:[l.Sort,"ascending"]})}toColumn(){var t;return{id:a.uniqueId(),field:this.field,name:null!==(t=this.title)&&void 0!==t?t:this.field,width:this.width,formatter:null!=this.formatter?this.formatter.doFormat.bind(this.formatter):void 0,model:this.editor,editor:this.editor.default_view,sortable:this.sortable,defaultSortAsc:"ascending"==this.default_sort}}}i.TableColumn=s,s.__name__="TableColumn",s.init_TableColumn()},n 475: function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),i=n.__importDefault(t(186)),a=n.__importStar(t(188)),o=t(476),s=n.__importStar(t(18)),l=t(72),c=t(8),m=t(81);class _ extends m.Model{constructor(t){super(t)}doFormat(t,e,r,n,i){return null==r?"":(r+"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}}r.CellFormatter=_,_.__name__="CellFormatter";class u extends _{constructor(t){super(t)}static init_StringFormatter(){this.define({font_style:[s.FontStyle,"normal"],text_align:[s.TextAlign,"left"],text_color:[s.Color]})}doFormat(t,e,r,n,i){const{font_style:a,text_align:o,text_color:s}=this,c=l.div({},null==r?"":""+r);switch(a){case"bold":c.style.fontWeight="bold";break;case"italic":c.style.fontStyle="italic"}return null!=o&&(c.style.textAlign=o),null!=s&&(c.style.color=s),c.outerHTML}}r.StringFormatter=u,u.__name__="StringFormatter",u.init_StringFormatter();class F extends u{constructor(t){super(t)}static init_ScientificFormatter(){this.define({nan_format:[s.String],precision:[s.Number,10],power_limit_high:[s.Number,5],power_limit_low:[s.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}doFormat(t,e,r,n,i){const a=r<=this.scientific_limit_low||r>=this.scientific_limit_high;let o=this.precision;return o<1&&(o=1),r=null!=r&&!isNaN(r)||null==this.nan_format?a?r.toExponential(o):r.toFixed(o).replace(/(\.[0-9]?)0+$/,"$1").replace(/\.$/,""):this.nan_format,super.doFormat(t,e,r,n,i)}}r.ScientificFormatter=F,F.__name__="ScientificFormatter",F.init_ScientificFormatter();class d extends u{constructor(t){super(t)}static init_NumberFormatter(){this.define({format:[s.String,"0,0"],language:[s.String,"en"],rounding:[s.RoundingFunction,"round"],nan_format:[s.String]})}doFormat(t,e,r,n,i){const{format:o,language:s,nan_format:l}=this,c=(()=>{switch(this.rounding){case"round":case"nearest":return Math.round;case"floor":case"rounddown":return Math.floor;case"ceil":case"roundup":return Math.ceil}})();return r=null!=r&&!isNaN(r)||null==l?a.format(r,o,s,c):l,super.doFormat(t,e,r,n,i)}}r.NumberFormatter=d,d.__name__="NumberFormatter",d.init_NumberFormatter();class f extends _{constructor(t){super(t)}static init_BooleanFormatter(){this.define({icon:[s.String,"check"]})}doFormat(t,e,r,n,i){return r?l.i({class:this.icon}).outerHTML:""}}r.BooleanFormatter=f,f.__name__="BooleanFormatter",f.init_BooleanFormatter();class g extends u{constructor(t){super(t)}static init_DateFormatter(){this.define({format:[s.String,"ISO-8601"],nan_format:[s.String]})}getFormat(){switch(this.format){case"ATOM":case"W3C":case"RFC-3339":case"ISO-8601":return"%Y-%m-%d";case"COOKIE":return"%a, %d %b %Y";case"RFC-850":return"%A, %d-%b-%y";case"RFC-1123":case"RFC-2822":return"%a, %e %b %Y";case"RSS":case"RFC-822":case"RFC-1036":return"%a, %e %b %y";case"TIMESTAMP":return;default:return this.format}}doFormat(t,e,r,n,a){const{nan_format:o}=this;let s;return s=null!=(r=c.isString(r)?parseInt(r,10):r)&&!isNaN(r)&&-9223372036854776!==r||null==o?null==r?"":i.default(r,this.getFormat()):o,super.doFormat(t,e,s,n,a)}}r.DateFormatter=g,g.__name__="DateFormatter",g.init_DateFormatter();class h extends _{constructor(t){super(t)}static init_HTMLTemplateFormatter(){this.define({template:[s.String,"<%= value %>"]})}doFormat(t,e,r,n,i){const{template:a}=this;if(null==r)return"";return o._.template(a)(Object.assign(Object.assign({},i),{value:r}))}}r.HTMLTemplateFormatter=h,h.__name__="HTMLTemplateFormatter",h.init_HTMLTemplateFormatter()},n 476: function _(e,n,t){var f=e(477),i=f.template;function o(e,n,t){return i(e,n,t)}o._=f,n.exports=o,"function"==typeof define&&define.amd?define((function(){return o})):"undefined"==typeof window&&"undefined"==typeof navigator||(window.UnderscoreTemplate=o)},n 477: function _(r,e,n){n // (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn // Underscore may be freely distributed under the MIT license.n var t={},a=Array.prototype,u=Object.prototype,c=a.slice,o=u.toString,l=u.hasOwnProperty,i=a.forEach,f=Object.keys,s=Array.isArray,p=function(){},_=p.each=p.forEach=function(r,e,n){if(null!=r)if(i&&r.forEach===i)r.forEach(e,n);else if(r.length===+r.length){for(var a=0,u=r.length;a<u;a++)if(e.call(n,r[a],a,r)===t)return}else{var c=p.keys(r);for(a=0,u=c.length;a<u;a++)if(e.call(n,r[c[a]],c[a],r)===t)return}};p.keys=f||function(r){if(r!==Object(r))throw new TypeError("Invalid object");var e=[];for(var n in r)p.has(r,n)&&e.push(n);return e},p.defaults=function(r){return _(c.call(arguments,1),(function(e){if(e)for(var n in e)void 0===r[n]&&(r[n]=e[n])})),r},p.isArray=s||function(r){return"[object Array]"===o.call(r)},p.has=function(r,e){if(!p.isArray(e))return null!=r&&l.call(r,e);for(var n=e.length,t=0;t<n;t++){var a=e[t];if(null==r||!l.call(r,a))return!1;r=r[a]}return!!n};var h={escape:{"&":"&","<":"<",">":">",’"’:""","’":"'"}},v={escape:new RegExp("["+p.keys(h.escape).join("")+"]","g")};p.each(["escape"],(function(r){p[r]=function(e){return null==e?"":(""+e).replace(v[r],(function(e){return h[r][e]}))}})),p.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var g=/(.)^/,y={"’":"’","\\":"\\","\r":"r","\n":"n","\t":"t","\u2028":"u2028","\u2029":"u2029"},j=/\\|’|\\r|\n|\t|\u2028|\u2029/g;p.template=function(r,e,n){var t;n=p.defaults({},n,p.templateSettings);var a=new RegExp([(n.escape||g).source,(n.interpolate||g).source,(n.evaluate||g).source].join("|\")+\"|$\",\"g\"),u=0,c=\"__p+='\";r.replace(a,(function(e,n,t,a,o){return c+=r.slice(u,o).replace(j,(function(r){return\"\\\\\"+y[r]})),n&&(c+=\"'+\\n((__t=(\"+n+\"))==null?'':_.escape(__t))+\\n'\"),t&&(c+=\"'+\\n((__t=(\"+t+\"))==null?'':__t)+\\n'\"),a&&(c+=\"';\\n\"+a+\"\\n__p+='\"),u=o+e.length,e})),c+=\"';\\n\",n.variable||(c=\"with(obj||{}){\\n\"+c+\"}\\n\"),c=\"var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\\n\"+c+\"return __p;\\n\";try{t=new Function(n.variable||"obj","_",c)}catch(r){throw r.source=c,r}if(e)return t(e,p);var o=function(r){return t.call(this,r,p)};return o.source="function("+(n.variable||"obj")+"){\n"+c+"}",o},e.exports=p},n 478: function _(e,l,b){Object.defineProperty(b,"__esModule",{value:!0}),b.bk_data_table="bk-data-table",b.bk_cell_index="bk-cell-index",b.bk_header_index="bk-header-index",b.bk_cell_editor="bk-cell-editor",b.bk_cell_select="bk-cell-select"},n 479: function _(A,n,o){Object.defineProperty(o,"__esModule",{value:!0});o.default=’\n.bk-root {\n /\nIMPORTANT:\nIn order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.\nNo built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS\nclasses should alter those!\n/\n /\nIMPORTANT:\nIn order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.\nNo built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS\nclasses should alter those!\n/\n /* Menu button /\n / Menu /\n / Menu items /\n / Disabled /\n / Divider /\n / Excluded item from Column Picker will be hidden /\n}\n.bk-root .slick-header.ui-state-default,\n.bk-root .slick-headerrow.ui-state-default,\n.bk-root .slick-footerrow.ui-state-default,\n.bk-root .slick-top-panel-scroller.ui-state-default,\n.bk-root .slick-group-header.ui-state-default {\n width: 100%;\n overflow: auto;\n position: relative;\n border-left: 0px !important;\n}\n.bk-root .slick-header.ui-state-default {\n overflow: inherit;\n}\n.bk-root .slick-header::-webkit-scrollbar,\n.bk-root .slick-headerrow::-webkit-scrollbar,\n.bk-root .slick-footerrow::-webkit-scrollbar {\n display: none;\n}\n.bk-root .slick-header-columns,\n.bk-root .slick-headerrow-columns,\n.bk-root .slick-footerrow-columns,\n.bk-root .slick-group-header-columns {\n position: relative;\n white-space: nowrap;\n cursor: default;\n overflow: hidden;\n}\n.bk-root .slick-header-column.ui-state-default,\n.bk-root .slick-group-header-column.ui-state-default {\n position: relative;\n display: inline-block;\n box-sizing: content-box !important;\n / this here only for Firefox! /\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n height: 16px;\n line-height: 16px;\n margin: 0;\n padding: 4px;\n border-right: 1px solid silver;\n border-left: 0px !important;\n border-top: 0px !important;\n border-bottom: 0px !important;\n float: left;\n}\n.bk-root .slick-footerrow-column.ui-state-default {\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n margin: 0;\n padding: 4px;\n border-right: 1px solid silver;\n border-left: 0px;\n border-top: 0px;\n border-bottom: 0px;\n float: left;\n line-height: 20px;\n vertical-align: middle;\n}\n.bk-root .slick-headerrow-column.ui-state-default,\n.bk-root .slick-footerrow-column.ui-state-default {\n padding: 4px;\n}\n.bk-root .slick-header-column-sorted {\n font-style: italic;\n}\n.bk-root .slick-sort-indicator {\n display: inline-block;\n width: 8px;\n height: 5px;\n margin-left: 4px;\n margin-top: 6px;\n float: left;\n}\n.bk-root .slick-sort-indicator-numbered {\n display: inline-block;\n width: 8px;\n height: 5px;\n margin-left: 4px;\n margin-top: 0;\n line-height: 20px;\n float: left;\n font-family: Arial;\n font-style: normal;\n font-weight: bold;\n color: #6190CD;\n}\n.bk-root .slick-sort-indicator-desc {\n background: url(images/sort-desc.gif);\n}\n.bk-root .slick-sort-indicator-asc {\n background: url(images/sort-asc.gif);\n}\n.bk-root .slick-resizable-handle {\n position: absolute;\n font-size: 0.1px;\n display: block;\n cursor: col-resize;\n width: 9px;\n right: -5px;\n top: 0;\n height: 100%;\n z-index: 1;\n}\n.bk-root .slick-sortable-placeholder {\n background: silver;\n}\n.bk-root .grid-canvas {\n position: relative;\n outline: 0;\n}\n.bk-root .slick-row.ui-widget-content,\n.bk-root .slick-row.ui-state-active {\n position: absolute;\n border: 0px;\n width: 100%;\n}\n.bk-root .slick-cell,\n.bk-root .slick-headerrow-column,\n.bk-root .slick-footerrow-column {\n position: absolute;\n border: 1px solid transparent;\n border-right: 1px dotted silver;\n border-bottom-color: silver;\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n vertical-align: middle;\n z-index: 1;\n padding: 1px 2px 2px 1px;\n margin: 0;\n white-space: nowrap;\n cursor: default;\n}\n.bk-root .slick-cell,\n.bk-root .slick-headerrow-column {\n border-bottom-color: silver;\n}\n.bk-root .slick-footerrow-column {\n border-top-color: silver;\n}\n.bk-root .slick-group-toggle {\n display: inline-block;\n}\n.bk-root .slick-cell.highlighted {\n background: lightskyblue;\n background: rgba(0, 0, 255, 0.2);\n -webkit-transition: all 0.5s;\n -moz-transition: all 0.5s;\n -o-transition: all 0.5s;\n transition: all 0.5s;\n}\n.bk-root .slick-cell.flashing {\n border: 1px solid red !important;\n}\n.bk-root .slick-cell.editable {\n z-index: 11;\n overflow: visible;\n background: white;\n border-color: black;\n border-style: solid;\n}\n.bk-root .slick-cell:focus {\n outline: none;\n}\n.bk-root .slick-reorder-proxy {\n display: inline-block;\n background: blue;\n opacity: 0.15;\n cursor: move;\n}\n.bk-root .slick-reorder-guide {\n display: inline-block;\n height: 2px;\n background: blue;\n opacity: 0.7;\n}\n.bk-root .slick-selection {\n z-index: 10;\n position: absolute;\n border: 2px dashed black;\n}\n.bk-root .slick-pane {\n position: absolute;\n outline: 0;\n overflow: hidden;\n width: 100%;\n}\n.bk-root .slick-pane-header {\n display: block;\n}\n.bk-root .slick-header {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-headerrow {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-top-panel-scroller {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-top-panel {\n width: 10000px;\n}\n.bk-root .slick-viewport {\n position: relative;\n outline: 0;\n width: 100%;\n}\n.bk-root .slick-header-columns {\n background: url(\’images/header-columns-bg.gif\’) repeat-x center bottom;\n border-bottom: 1px solid silver;\n}\n.bk-root .slick-header-column {\n background: url(\’images/header-columns-bg.gif\’) repeat-x center bottom;\n border-right: 1px solid silver;\n}\n.bk-root .slick-header-column:hover,\n.bk-root .slick-header-column-active {\n background: white url(\’images/header-columns-over-bg.gif\’) repeat-x center bottom;\n}\n.bk-root .slick-headerrow {\n background: #fafafa;\n}\n.bk-root .slick-headerrow-column {\n background: #fafafa;\n border-bottom: 0;\n height: 100%;\n}\n.bk-root .slick-row.ui-state-active {\n background: #F5F7D7;\n}\n.bk-root .slick-row {\n position: absolute;\n background: white;\n border: 0px;\n line-height: 20px;\n}\n.bk-root .slick-row.selected {\n z-index: 10;\n background: #DFE8F6;\n}\n.bk-root .slick-cell {\n padding-left: 4px;\n padding-right: 4px;\n}\n.bk-root .slick-group {\n border-bottom: 2px solid silver;\n}\n.bk-root .slick-group-toggle {\n width: 9px;\n height: 9px;\n margin-right: 5px;\n}\n.bk-root .slick-group-toggle.expanded {\n background: url(images/collapse.gif) no-repeat center center;\n}\n.bk-root .slick-group-toggle.collapsed {\n background: url(images/expand.gif) no-repeat center center;\n}\n.bk-root .slick-group-totals {\n color: gray;\n background: white;\n}\n.bk-root .slick-group-select-checkbox {\n width: 13px;\n height: 13px;\n margin: 3px 10px 0 0;\n display: inline-block;\n}\n.bk-root .slick-group-select-checkbox.checked {\n background: url(images/GrpCheckboxY.png) no-repeat center center;\n}\n.bk-root .slick-group-select-checkbox.unchecked {\n background: url(images/GrpCheckboxN.png) no-repeat center center;\n}\n.bk-root .slick-cell.selected {\n background-color: beige;\n}\n.bk-root .slick-cell.active {\n border-color: gray;\n border-style: solid;\n}\n.bk-root .slick-sortable-placeholder {\n background: silver !important;\n}\n.bk-root .slick-row.odd {\n background: #fafafa;\n}\n.bk-root .slick-row.ui-state-active {\n background: #F5F7D7;\n}\n.bk-root .slick-row.loading {\n opacity: 0.5;\n}\n.bk-root .slick-cell.invalid {\n border-color: red;\n -moz-animation-duration: 0.2s;\n -webkit-animation-duration: 0.2s;\n -moz-animation-name: slickgrid-invalid-hilite;\n -webkit-animation-name: slickgrid-invalid-hilite;\n}\n@-moz-keyframes slickgrid-invalid-hilite {\n from {\n box-shadow: 0 0 6px red;\n }\n to {\n box-shadow: none;\n }\n}\n@-webkit-keyframes slickgrid-invalid-hilite {\n from {\n box-shadow: 0 0 6px red;\n }\n to {\n box-shadow: none;\n }\n}\n.bk-root .slick-column-name,\n.bk-root .slick-sort-indicator {\n /*\n * This makes all "float:right" elements after it that spill over to the next line\n * display way below the lower boundary of the column thus hiding them.\n /\n display: inline-block;\n float: left;\n margin-bottom: 100px;\n}\n.bk-root .slick-header-button {\n display: inline-block;\n float: right;\n vertical-align: top;\n margin: 1px;\n /*\n * This makes all "float:right" elements after it that spill over to the next line\n * display way below the lower boundary of the column thus hiding them.\n /\n margin-bottom: 100px;\n height: 15px;\n width: 15px;\n background-repeat: no-repeat;\n background-position: center center;\n cursor: pointer;\n}\n.bk-root .slick-header-button-hidden {\n width: 0;\n -webkit-transition: 0.2s width;\n -ms-transition: 0.2s width;\n transition: 0.2s width;\n}\n.bk-root .slick-header-column:hover > .slick-header-button {\n width: 15px;\n}\n.bk-root .slick-header-menubutton {\n position: absolute;\n right: 0;\n top: 0;\n bottom: 0;\n width: 14px;\n background-repeat: no-repeat;\n background-position: left center;\n background-image: url(../images/down.gif);\n cursor: pointer;\n display: none;\n border-left: thin ridge silver;\n}\n.bk-root .slick-header-column:hover > .slick-header-menubutton,\n.bk-root .slick-header-column-active .slick-header-menubutton {\n display: inline-block;\n}\n.bk-root .slick-header-menu {\n position: absolute;\n display: inline-block;\n margin: 0;\n padding: 2px;\n cursor: default;\n}\n.bk-root .slick-header-menuitem {\n list-style: none;\n margin: 0;\n padding: 0;\n cursor: pointer;\n}\n.bk-root .slick-header-menuicon {\n display: inline-block;\n width: 16px;\n height: 16px;\n vertical-align: middle;\n margin-right: 4px;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .slick-header-menucontent {\n display: inline-block;\n vertical-align: middle;\n}\n.bk-root .slick-header-menuitem-disabled {\n color: silver;\n}\n.bk-root .slick-header-menuitem.slick-header-menuitem-divider {\n cursor: default;\n border: none;\n overflow: hidden;\n padding: 0;\n height: 1px;\n margin: 8px 2px;\n background-color: #cecece;\n}\n.bk-root .slick-header-menuitem-divider.slick-header-menuitem:hover {\n background-color: #cecece;\n}\n.bk-root .slick-columnpicker {\n border: 1px solid #718BB7;\n background: #f0f0f0;\n padding: 6px;\n -moz-box-shadow: 2px 2px 2px silver;\n -webkit-box-shadow: 2px 2px 2px silver;\n box-shadow: 2px 2px 2px silver;\n min-width: 150px;\n cursor: default;\n position: absolute;\n z-index: 20;\n overflow: auto;\n resize: both;\n}\n.bk-root .slick-columnpicker > .close {\n float: right;\n}\n.bk-root .slick-columnpicker .title {\n font-size: 16px;\n width: 60%;\n border-bottom: solid 1px #d6d6d6;\n margin-bottom: 10px;\n}\n.bk-root .slick-columnpicker li {\n list-style: none;\n margin: 0;\n padding: 0;\n background: none;\n}\n.bk-root .slick-columnpicker input {\n margin: 4px;\n}\n.bk-root .slick-columnpicker li a {\n display: block;\n padding: 4px;\n font-weight: bold;\n}\n.bk-root .slick-columnpicker li a:hover {\n background: white;\n}\n.bk-root .slick-columnpicker-list li.hidden {\n display: none;\n}\n.bk-root .slick-pager {\n width: 100%;\n height: 26px;\n border: 1px solid gray;\n border-top: 0;\n background: url(\’../images/header-columns-bg.gif\’) repeat-x center bottom;\n vertical-align: middle;\n}\n.bk-root .slick-pager .slick-pager-status {\n display: inline-block;\n padding: 6px;\n}\n.bk-root .slick-pager .ui-icon-container {\n display: inline-block;\n margin: 2px;\n border-color: gray;\n}\n.bk-root .slick-pager .slick-pager-nav {\n display: inline-block;\n float: left;\n padding: 2px;\n}\n.bk-root .slick-pager .slick-pager-settings {\n display: block;\n float: right;\n padding: 2px;\n}\n.bk-root .slick-pager .slick-pager-settings * {\n vertical-align: middle;\n}\n.bk-root .slick-pager .slick-pager-settings a {\n padding: 2px;\n text-decoration: underline;\n cursor: pointer;\n}\n.bk-root .slick-header-columns {\n border-bottom: 1px solid silver;\n background-image: none;\n}\n.bk-root .slick-header-column {\n border-right: 1px solid transparent;\n background-image: none;\n}\n.bk-root .slick-header-column:last-of-type {\n border-right-color: transparent;\n}\n.bk-root .slick-header-column:hover,\n.bk-root .slick-header-column-active {\n background-color: #F0F8FF;\n background-image: none;\n}\n.bk-root .slick-group-toggle.expanded {\n background-image: url("data:image/gif;base64,R0lGODlhCQAJAPcAAAFGeoCAgNXz/+v5/+v6/+z5/+36//L7//X8//j9/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACQAJAAAIMwADCBxIUIDBgwIEChgwwECBAgQUFjBAkaJCABgxGlB4AGHCAAIQiBypEEECkScJqgwQEAA7");\n}\n.bk-root .slick-group-toggle.collapsed {\n background-image: url("data:image/gif;base64,R0lGODlhCQAJAPcAAAFGeoCAgNXz/+v5/+v6/+z5/+36//L7//X8//j9/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACQAJAAAIOAADCBxIUIDBgwIEChgwAECBAgQUFjAAQIABAwoBaNSIMYCAAwIqGlSIAEHFkiQTIBCgkqDLAAEBADs=");\n}\n.bk-root .slick-group-select-checkbox.checked {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAIAAACQKrqGAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAEcSURBVChTjdI9S8NQFAbg/raQXVwCRRFE7GK7OXTwD+ikk066VF3a0ja0hQTyQdJrwNq0zrYSQRLEXMSWSlCIb8glqRcFD+9yz3nugXwU4n9XQqMoGjj36uBJsTwuaNo3EwBG4Yy7pe7Gv8YcvhJCGFVsjxsjxujj6OTSGlHv+U2WZUZbPWKOv1ZjT5a7pbIoiptbO5b73mwrjHa1B27l8VlTEIS1damlTnEE+EEN9/P8WrfH81qdAIGeXvTTmzltdCy46sEhxpKUINReZR9NnqZbr9puugxV3NjWh/k74WmmEdWhmUNy2jNmWRc6fZTVADCqao52u+DGWTACYNT3fRxwtatPufTNR4yCIGAUn5hS+vJHhWGY/ANx/A3tvdv+1tZmuwAAAABJRU5ErkJggg==");\n}\n.bk-root .slick-group-select-checkbox.unchecked {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAIAAACQKrqGAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAACXSURBVChT1dIxC4MwEAXg/v8/VOhQVDBNakV0KA6pxS4JhWRSIYPEJxwdDi1de7wleR+3JIf486w0hKCKRpSvvOhZcCmvNQBRuKqdah03U7UjNNH81rOaBYDo8SQaPX8JANFEaLaGBeAPaaY61rGksiN6TmR5H1j9CSoAosYYHLA7vTxYMvVEZa0liif23r93xjm3/oEYF8PiDn/I2FHCAAAAAElFTkSuQmCC");\n}\n.bk-root .slick-sort-indicator-desc {\n background-image: url("data:image/gif;base64,R0lGODlhDQAFAIcAAGGQzUD/QOPu+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAMAAAEALAAAAAANAAUAAAgeAAUAGEgQgIAACBEKLHgwYcKFBh1KFNhQosOKEgMCADs=");\n}\n.bk-root .slick-sort-indicator-asc {\n background-image: url("data:image/gif;base64,R0lGODlhDQAFAIcAAGGQzUD/QOPu+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAMAAAEALAAAAAANAAUAAAgbAAMIDABgoEGDABIeRJhQ4cKGEA8KmEiRosGAADs=");\n}\n.bk-root .slick-header-menubutton {\n background-image: url("data:image/gif;base64,R0lGODlhDgAOAIABADtKYwAAACH5BAEAAAEALAAAAAAOAA4AAAISjI+py+0PHZgUsGobhTn6DxoFADs=");\n}\n.bk-root .slick-pager {\n background-image: none;\n}\n’},n 480: function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default=’\n.bk-root .bk-data-table {\n box-sizing: content-box;\n font-size: 11px;\n}\n.bk-root .bk-data-table input[type="checkbox"] {\n margin-left: 4px;\n margin-right: 4px;\n}\n.bk-root .bk-cell-special-defaults {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n}\n.bk-root .bk-cell-select {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n}\n.bk-root .slick-cell.bk-cell-index {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n text-align: right;\n background: #f0f0f0;\n color: #909090;\n}\n.bk-root .bk-header-index .slick-column-name {\n float: right;\n}\n.bk-root .slick-row.selected .bk-cell-index {\n background-color: transparent;\n}\n.bk-root .slick-row.odd {\n background: #f0f0f0;\n}\n.bk-root .slick-cell {\n padding-left: 4px;\n padding-right: 4px;\n border-right-color: transparent;\n border: 0.25px solid transparent;\n}\n.bk-root .slick-cell .bk {\n line-height: inherit;\n}\n.bk-root .slick-cell.active {\n border-style: dashed;\n}\n.bk-root .slick-cell.selected {\n background-color: #F0F8FF;\n}\n.bk-root .slick-cell.editable {\n padding-left: 0;\n padding-right: 0;\n}\n.bk-root .bk-cell-editor {\n display: contents;\n}\n.bk-root .bk-cell-editor input,\n.bk-root .bk-cell-editor select {\n width: 100%;\n height: 100%;\n border: 0;\n margin: 0;\n padding: 0;\n outline: 0;\n background: transparent;\n vertical-align: baseline;\n}\n.bk-root .bk-cell-editor input {\n padding-left: 4px;\n padding-right: 4px;\n}\n.bk-root .bk-cell-editor-completion {\n font-size: 11px;\n}\n’},n 481: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const r=t(1),a=t(463),{Avg:i,Min:o,Max:g,Sum:n}=a.Data.Aggregators,u=r.__importStar(t(18)),c=t(81);class _ extends c.Model{constructor(t){super(t)}static init_RowAggregator(){this.define({field_:[u.String,""]})}}s.RowAggregator=_,_.__name__="RowAggregator",_.init_RowAggregator();const l=new i;class m extends _{constructor(){super(…arguments),this.key="avg",this.init=l.init,this.accumulate=l.accumulate,this.storeResult=l.storeResult}}s.AvgAggregator=m,m.__name__="AvgAggregator";const h=new o;class A extends _{constructor(){super(…arguments),this.key="min",this.init=h.init,this.accumulate=h.accumulate,this.storeResult=h.storeResult}}s.MinAggregator=A,A.__name__="MinAggregator";const R=new g;class d extends _{constructor(){super(…arguments),this.key="max",this.init=R.init,this.accumulate=R.accumulate,this.storeResult=R.storeResult}}s.MaxAggregator=d,d.__name__="MaxAggregator";const x=new n;class w extends _{constructor(){super(…arguments),this.key="sum",this.init=x.init,this.accumulate=x.accumulate,this.storeResult=x.storeResult}}s.SumAggregator=w,w.__name__="SumAggregator"},n 482: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t(1).__importStar(t(18)),r=t(72),i=t(463),a=t(456),n=t(81);function l(t,e,s,o,i){const{collapsed:a,level:n,title:l}=i,u=r.span({class:"slick-group-toggle "+(a?"collapsed":"expanded"),style:{"margin-left":15*n+"px"}}),g=r.span({class:"slick-group-title",level:n},l);return`${u.outerHTML}${g.outerHTML}`}function u(t,e){const s=this.getDataItem(e.row);s instanceof i.Group&&t.target.classList.contains("slick-group-toggle")&&(s.collapsed?this.getData().expandGroup(s.groupingKey):this.getData().collapseGroup(s.groupingKey),t.stopImmediatePropagation(),t.preventDefault(),this.invalidate(),this.render())}class g extends n.Model{constructor(t){super(t)}static init_GroupingInfo(){this.define({getter:[o.String,""],aggregators:[o.Array,[]],collapsed:[o.Boolean,!1]})}get comparer(){return(t,e)=>t.value===e.value?0:t.value>e.value?1:-1}}s.GroupingInfo=g,g.__name__="GroupingInfo",g.init_GroupingInfo();class c extends a.TableDataProvider{constructor(t,e,s,o){super(t,e),this.columns=s,this.groupingInfos=[],this.groupingDelimiter=":|:",this.target=o}setGrouping(t){this.groupingInfos=t,this.toggledGroupsByLevel=t.map(()=>({})),this.refresh()}extractGroups(t,e){const s=[],o=new Map,r=e?e.level+1:0,{comparer:a,getter:n}=this.groupingInfos[r];return t.forEach(t=>{const a=this.source.data[n][t];let l=o.get(a);if(!l){const t=e?`${e.groupingKey}${this.groupingDelimiter}${a}`:""+a;l=Object.assign(new i.Group,{value:a,level:r,groupingKey:t}),s.push(l),o.set(a,l)}l.rows.push(t)}),r<this.groupingInfos.length-1&&s.forEach(t=>{t.groups=this.extractGroups(t.rows,t)}),s.sort(a),s}calculateTotals(t,e){const s={avg:{},max:{},min:{},sum:{}},{source:{data:o}}=this,r=Object.keys(o),i=t.rows.map(t=>r.reduce((e,s)=>Object.assign(Object.assign({},e),{[s]:o[s][t]}),{}));return e.forEach(t=>{t.init(),i.forEach(e=>t.accumulate(e)),t.storeResult(s)}),s}addTotals(t,e=0){const{aggregators:s,collapsed:o}=this.groupingInfos[e],r=this.toggledGroupsByLevel[e];t.forEach(t=>{t.groups&&this.addTotals(t.groups,e+1),s.length&&t.rows.length&&(t.totals=this.calculateTotals(t,s)),t.collapsed=o!==r[t.groupingKey],t.title=t.value?""+t.value:""})}flattenedGroupedRows(t,e=0){const s=[];return t.forEach(t=>{if(s.push(t),!t.collapsed){const o=t.groups?this.flattenedGroupedRows(t.groups,e+1):t.rows;s.push(…o)}}),s}refresh(){const t=this.extractGroups([…this.view.indices]),e=this.source.data[this.columns[0].field];t.length&&(this.addTotals(t),this.rows=this.flattenedGroupedRows(t),this.target.data={row_indices:this.rows.map(t=>t instanceof i.Group?t.rows:t),labels:this.rows.map(t=>t instanceof i.Group?t.title:e[t])})}getLength(){return this.rows.length}getItem(t){const e=this.rows[t],{source:{data:s}}=this;return e instanceof i.Group?e:Object.keys(s).reduce((t,o)=>Object.assign(Object.assign({},t),{[o]:s[o][e]}),{[a.DTINDEX_NAME]:e})}getItemMetadata(t){const e=this.rows[t],s=this.columns.slice(1),o=e instanceof i.Group?this.groupingInfos[e.level].aggregators:[];return e instanceof i.Group?{selectable:!1,focusable:!1,cssClasses:"slick-group",columns:[{formatter:l},…s.map((function(t){const{field:e,formatter:s}=t,r=o.find(({field_:t})=>t===e);if(r){const{key:t}=r;return{formatter:(o,r,i,a,n)=>s?s(o,r,n.totals[t][e],a,n):""}}return{}}))]}:{}}collapseGroup(t){const e=t.split(this.groupingDelimiter).length-1;this.toggledGroupsByLevel[e][t]=!this.groupingInfos[e].collapsed,this.refresh()}expandGroup(t){const e=t.split(this.groupingDelimiter).length-1;this.toggledGroupsByLevel[e][t]=this.groupingInfos[e].collapsed,this.refresh()}}s.DataCubeProvider=c,c.__name__="DataCubeProvider";class p extends a.DataTableView{render(){const t={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:!1,autosizeColsMode:this.autosize,multiColumnSort:!1,editable:this.model.editable,autoEdit:this.model.auto_edit,rowHeight:this.model.row_height},e=this.model.columns.map(t=>t.toColumn());var s,o;e[0].formatter=(s=e[0].formatter,o=this.model.grouping.length,(t,e,i,a,n)=>{const l=r.span({class:"slick-group-toggle",style:{"margin-left":15*(o||0)+"px"}}),u=s?s(t,e,i,a,n):""+i;return`${l.outerHTML}${u&&u.replace(/^<div/,"<span").replace(/div>$/,"span>")}`}),delete e[0].editor,this.data=new c(this.model.source,this.model.view,e,this.model.target),this.data.setGrouping(this.model.grouping),this.el.style.width=this.model.width+"px",this.grid=new i.Grid(this.el,this.data,e,t),this.grid.onClick.subscribe(u)}}s.DataCubeView=p,p.__name__="DataCubeView";class h extends a.DataTable{constructor(t){super(t)}static init_DataCube(){this.prototype.default_view=p,this.define({grouping:[o.Array,[]],target:[o.Instance]})}}s.DataCube=h,h.__name__="DataCube",h.init_DataCube()},n }, 453, {"models/widgets/tables/main":453,"models/widgets/tables/index":454,"models/widgets/tables/cell_editors":455,"models/widgets/tables/data_table":456,"models/widgets/widget":472,"models/widgets/tables/table_widget":473,"models/widgets/tables/table_column":474,"models/widgets/tables/cell_formatters":475,"styles/widgets/tables":478,"styles/widgets/slickgrid.css":479,"styles/widgets/tables.css":480,"models/widgets/tables/row_aggregators":481,"models/widgets/tables/data_cube":482}, {});n })nnn / END bokeh-tables.min.js /n },n n function(Bokeh) {n Bokeh.set_log_level("info");n },n n function(Bokeh) {n / BEGIN panel.min.js /n /!n * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn * All rights reserved.n * n * Redistribution and use in source and binary forms, with or without modification,n * are permitted provided that the following conditions are met:n * n * Redistributions of source code must retain the above copyright notice,n * this list of conditions and the following disclaimer.n * n * Redistributions in binary form must reproduce the above copyright notice,n * this list of conditions and the following disclaimer in the documentationn * and/or other materials provided with the distribution.n * n * Neither the name of Anaconda nor the names of any contributorsn * may be used to endorse or promote products derived from this softwaren * without specific prior written permission.n * n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn * THE POSSIBILITY OF SUCH DAMAGE.n /n (function(root, factory) {n factory(root["Bokeh"], undefined);n })(this, function(Bokeh, version) {n var define;n return (function(modules, entry, aliases, externals) {n const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n if (bokeh != null) {n return bokeh.register_plugin(modules, entry, aliases);n } else {n throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n }n })n ({n "4e90918c0a": function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e("tslib").__importStar(e("c4b9651916"));o.Panel=s;e("@bokehjs/base").register_models(s)},n "c4b9651916": function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});const o=a("tslib");var t=a("abb1112c2c");r.AcePlot=t.AcePlot;var c=a("66d52165db");r.Audio=c.Audio;var d=a("0106b0a1bf");r.Card=d.Card;var l=a("684c940c17");r.CommManager=l.CommManager;var v=a("d0d2aafca0");r.DeckGLPlot=v.DeckGLPlot;var b=a("c6decbe3f5");r.ECharts=b.ECharts;var i=a("ed08037ce5");r.HTML=i.HTML;var P=a("cb7ac8d1fa");r.IPyWidget=P.IPyWidget;var f=a("284504a0cf");r.JSON=f.JSON;var n=a("7a99dba4eb");r.FileDownload=n.FileDownload;var S=a("7b859fb3cf");r.KaTeX=S.KaTeX;var g=a("aded270681");r.Location=g.Location;var s=a("0c21036737");r.MathJax=s.MathJax;var y=a("79c41bbf71");r.Player=y.Player;var M=a("47b5ae5c43");r.PlotlyPlot=M.PlotlyPlot;var m=a("765e9cea08");r.Progress=m.Progress;var C=a("ff9dd91f7b");r.SingleSelect=C.SingleSelect;var L=a("38b2bc9574");r.State=L.State;var V=a("294adeb985");r.VegaPlot=V.VegaPlot;var u=a("b0c3e9e9c2");r.Video=u.Video;var _=a("3c7145a2fa");r.VideoStream=_.VideoStream,o.__exportStar(a("c51f25e2a7"),r)},n "abb1112c2c": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),n=e("@bokehjs/core/dom"),a=e("7116a7a602");class d extends a.PanelHTMLBoxView{initialize(){super.initialize(),this._ace=window.ace,this._container=n.div({id:"_"+Math.random().toString(36).substr(2,9),style:{width:"100%",height:"100%"}})}connect_signals(){super.connect_signals(),this.connect(this.model.properties.code.change,()=>this._update_code_from_model()),this.connect(this.model.properties.theme.change,()=>this._update_theme()),this.connect(this.model.properties.language.change,()=>this._update_language()),this.connect(this.model.properties.filename.change,()=>this._update_filename()),this.connect(this.model.properties.print_margin.change,()=>this._update_print_margin()),this.connect(this.model.properties.annotations.change,()=>this._add_annotations()),this.connect(this.model.properties.readonly.change,()=>{this._editor.setReadOnly(this.model.readonly)})}render(){super.render(),this._container!==this.el.childNodes[0]&&this.el.appendChild(this._container),this._container.textContent=this.model.code,this._editor=this._ace.edit(this._container.id),this._langTools=this._ace.require("ace/ext/language_tools"),this._modelist=this._ace.require("ace/ext/modelist"),this._editor.setOptions({enableBasicAutocompletion:!0,enableSnippets:!0,fontFamily:"monospace"}),this._update_theme(),this._update_filename(),this._update_language(),this._editor.setReadOnly(this.model.readonly),this._editor.setShowPrintMargin(this.model.print_margin),this._editor.on("change",()=>this._update_code_from_editor())}_update_code_from_model(){this._editor&&this._editor.getValue()!=this.model.code&&this._editor.setValue(this.model.code)}_update_print_margin(){this._editor.setShowPrintMargin(this.model.print_margin)}_update_code_from_editor(){this._editor.getValue()!=this.model.code&&(this.model.code=this._editor.getValue())}_update_theme(){this._editor.setTheme("ace/theme/"+this.model.theme)}_update_filename(){if(this.model.filename){const e=this._modelist.getModeForPath(this.model.filename).mode;this.model.language=e.slice(9)}}_update_language(){null!=this.model.language&&this._editor.session.setMode("ace/mode/"+this.model.language)}_add_annotations(){this._editor.session.setAnnotations(this.model.annotations)}after_layout(){super.after_layout(),this._editor.resize()}}i.AcePlotView=d,d.__name__="AcePlotView";class h extends s.HTMLBox{constructor(e){super(e)}static init_AcePlot(){this.prototype.default_view=d,this.define({code:[o.String],filename:[o.String],language:[o.String],theme:[o.String,"chrome"],annotations:[o.Array,[]],readonly:[o.Boolean,!1],print_margin:[o.Boolean,!1]}),this.override({height:300,width:300})}}i.AcePlot=h,h.__name__="AcePlot",h.__module__="panel.models.ace",h.init_AcePlot()},n "7116a7a602": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e("@bokehjs/core/layout/html"),h=e("@bokehjs/core/layout/types"),o=e("@bokehjs/core/dom"),n=e("@bokehjs/models/widgets/markup"),_=e("@bokehjs/models/layouts/html_box");function a(e,i){let t=null!=i.width?"fixed":"fit",s=null!=i.height?"fixed":"fit";const{sizing_mode:h}=i;if(null!=h)if("fixed"==h)t=s="fixed";else if("stretch_both"==h)t=s="max";else if("stretch_width"==h)t="max";else if("stretch_height"==h)s="max";else switch(h){case"scale_width":t="max",s="min";break;case"scale_height":t="min",s="max";break;case"scale_both":t="max",s="max";break;default:throw new Error("unreachable")}"fixed"==t&&i.width?e.style.width=i.width+"px":"max"==t&&(e.style.width="100%"),"fixed"==s&&i.height?e.style.height=i.height+"px":"max"==s&&(e.style.height="100%")}t.set_size=a;class d extends s.VariadicBox{constructor(e,i,t){super(e),this.el=e,this.sizing_mode=i,this.changed=t,this._cache=new Map,this._cache_count=new Map}_measure(e){const i=[e.width,e.height,this.sizing_mode].toString(),t=this.changed&&"fixed"!=this.sizing_mode&&null!=this.sizing_mode?1:0,s=this._cache.get(i),n=this._cache_count.get(i);if(null!=s&&null!=n&&n>=t)return this._cache_count.set(i,n+1),s;const _=new h.Sizeable(e).bounded_to(this.sizing.size),a=o.sized(this.el,_,()=>{const e=new h.Sizeable(o.content_size(this.el)),{border:i,padding:t}=o.extents(this.el);return e.grow_by(i).grow_by(t).map(Math.ceil)});return this._cache.set(i,a),this._cache_count.set(i,0),a}invalidate_cache(){}}t.CachedVariadicBox=d,d.__name__="CachedVariadicBox";class l extends n.MarkupView{_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new d(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}render(){super.render(),a(this.markup_el,this.model)}}t.PanelMarkupView=l,l.__name__="PanelMarkupView";class c extends _.HTMLBoxView{_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new d(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}render(){super.render(),a(this.el,this.model)}}t.PanelHTMLBoxView=c,c.__name__="PanelHTMLBoxView"},n "66d52165db": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),l=e("7116a7a602");class d extends l.PanelHTMLBoxView{initialize(){super.initialize(),this._blocked=!1,this._setting=!1,this._time=Date.now()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.loop.change,()=>this.set_loop()),this.connect(this.model.properties.paused.change,()=>this.set_paused()),this.connect(this.model.properties.time.change,()=>this.set_time()),this.connect(this.model.properties.value.change,()=>this.set_value()),this.connect(this.model.properties.volume.change,()=>this.set_volume())}render(){super.render(),this.audioEl=document.createElement("audio"),this.audioEl.controls=!0,this.audioEl.src=this.model.value,this.audioEl.currentTime=this.model.time,this.audioEl.loop=this.model.loop,null!=this.model.volume?this.audioEl.volume=this.model.volume/100:this.model.volume=100*this.audioEl.volume,this.audioEl.onpause=()=>this.model.paused=!0,this.audioEl.onplay=()=>this.model.paused=!1,this.audioEl.ontimeupdate=()=>this.update_time(this),this.audioEl.onvolumechange=()=>this.update_volume(this),this.el.appendChild(this.audioEl),this.model.paused||this.audioEl.play()}update_time(e){e._setting?e._setting=!1:Date.now()-e._time<e.model.throttle||(e._blocked=!0,e.model.time=e.audioEl.currentTime,e._time=Date.now())}update_volume(e){e._setting?e._setting=!1:(e._blocked=!0,e.model.volume=100*e.audioEl.volume)}set_loop(){this.audioEl.loop=this.model.loop}set_paused(){!this.audioEl.paused&&this.model.paused&&this.audioEl.pause(),this.audioEl.paused&&!this.model.paused&&this.audioEl.play()}set_volume(){this._blocked?this._blocked=!1:(this._setting=!0,null!=this.model.volume&&(this.audioEl.volume=this.model.volume/100))}set_time(){this._blocked?this._blocked=!1:(this._setting=!0,this.audioEl.currentTime=this.model.time)}set_value(){this.audioEl.src=this.model.value}}i.AudioView=d,d.__name__="AudioView";class u extends s.HTMLBox{constructor(e){super(e)}static init_Audio(){this.prototype.default_view=d,this.define({loop:[o.Boolean,!1],paused:[o.Boolean,!0],time:[o.Number,0],throttle:[o.Number,250],value:[o.Any,""],volume:[o.Number,null]})}}i.Audio=u,u.__name__="Audio",u.__module__="panel.models.widgets",u.init_Audio()},n "0106b0a1bf": function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const l=e("tslib"),o=e("@bokehjs/models/layouts/column"),a=l.__importStar(e("@bokehjs/core/dom")),i=e("@bokehjs/core/dom"),n=e("@bokehjs/core/layout/grid"),r=l.__importStar(e("@bokehjs/core/properties"));class c extends n.Column{constructor(e,s=!1){super(e),this.collapsed=s}_measure_totals(e,s){const t=this.collapsed?e.slice(0,1):e,l=t.length-1;return this.collapsed||(t[l]=t[l]+5),super._measure_totals(t,s)}}t.CollapseableColumnLayout=c,c.__name__="CollapseableColumnLayout";class d extends o.ColumnView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.collapsed.change,()=>this._collapse());const{active_header_background:e,header_background:s,header_color:t}=this.model.properties;this.on_change([e,s,t],()=>this.render())}_update_layout(){const e=this.child_views.map(e=>e.layout);this.layout=new c(e,this.model.collapsed),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0];const s=this.box_sizing();this.model.collapsed&&(s.height=void 0),this.layout.set_sizing(s)}render(){i.empty(this.el);const{background:e,button_css_classes:s,header_color:t,header_tag:l,header_css_classes:o}=this.model;this.el.style.backgroundColor=null!=e?e:"",i.classes(this.el).clear().add(…this.css_classes());let n=this.model.header_background;this.model.collapsed||null==this.model.active_header_background||(n=this.model.active_header_background);const r=this.child_views[0];let c;if(this.model.collapsible){this.button_el=a.createElement("button",{type:"button",class:o}),this.button_el.style.backgroundColor=null!=n?n:"",this.button_el.appendChild(r.el);const e=a.createElement("p",{class:s});e.innerHTML=this.model.collapsed?"+":"−",this.button_el.appendChild(e),this.button_el.onclick=()=>this._toggle_button(),c=this.button_el}else c=a.createElement(l,{class:o}),c.style.backgroundColor=null!=n?n:"",c.appendChild(r.el);c.style.color=null!=t?t:"",this.el.appendChild(c),r.render();for(const e of this.child_views.slice(1))this.model.collapsed||this.el.appendChild(e.el),e.render()}_toggle_button(){this.model.collapsed=!this.model.collapsed}_collapse(){this.invalidate_render(),this.resize_layout()}_createElement(){return a.createElement(this.model.tag,{class:this.css_classes()})}}t.CardView=d,d.__name__="CardView";class h extends o.Column{constructor(e){super(e)}static init_Card(){this.prototype.default_view=d,this.define({active_header_background:[r.String,null],button_css_classes:[r.Array,[]],collapsed:[r.Boolean,!0],collapsible:[r.Boolean,!0],header_background:[r.String,null],header_color:[r.String,null],header_css_classes:[r.Array,[]],header_tag:[r.String,"div"],tag:[r.String,"div"]})}}t.Card=h,h.__name__="Card",h.__module__="panel.models.layout",h.init_Card()},n "684c940c17": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),i=e("@bokehjs/document"),s=e("@bokehjs/core/view"),c=e("@bokehjs/model"),l=e("@bokehjs/protocol/message"),_=e("@bokehjs/protocol/receiver");class r extends s.View{renderTo(){}}n.CommManagerView=r,r.__name__="CommManagerView";class a extends c.Model{constructor(e){super(e),this._document_listener=e=>this._document_changed(e),this._receiver=new _.Receiver,this._event_buffer=[],this._blocked=!1,this._timeout=Date.now(),null!=window.PyViz&&window.PyViz.comm_manager?(this.ns=window.PyViz,this.ns.comm_manager.register_target(this.plot_id,this.comm_id,e=>this.msg_handler(e)),this._client_comm=this.ns.comm_manager.get_client_comm(this.plot_id,this.client_comm_id,e=>this.on_ack(e))):console.log("Could not find comm manager on window.PyViz, ensure the extension is loaded.")}_doc_attached(){super._doc_attached(),null!=this.document&&this.document.on_change(this._document_listener)}_document_changed(e){e.setter_id!==this.id&&(e instanceof i.ModelChangedEvent&&!(e.attr in e.model.serializable_attributes())||(this._event_buffer.push(e),(!this._blocked||Date.now()>this._timeout)&&(setTimeout(()=>this.process_events(),this.debounce),this._blocked=!0,this._timeout=Date.now()+this.timeout)))}process_events(){if(null==this.document||null==this._client_comm)return;const e=this.document.create_json_patch(this._event_buffer);this._event_buffer=[];const t=l.Message.create("PATCH-DOC",{},e);this._client_comm.send(t)}on_ack(e){const t=e.metadata;this._event_buffer.length?(this._blocked=!0,this._timeout=Date.now()+this.timeout,this.process_events()):this._blocked=!1,"Ready"==t.msg_type&&t.content?console.log("Python callback returned following output:",t.content):"Error"==t.msg_type&&console.log("Python failed with the following traceback:",t.traceback)}msg_handler(e){const t=e.metadata,n=e.buffers,o=e.content.data,i=this.plot_id;if("Ready"==t.msg_type)t.content?console.log("Python callback returned following output:",t.content):"Error"==t.msg_type&&console.log("Python failed with the following traceback:",t.traceback);else if(null!=i){let e=null;if(i in this.ns.plot_index&&null!=this.ns.plot_index[i]?e=this.ns.plot_index[i]:void 0!==window.Bokeh&&i in window.Bokeh.index&&(e=window.Bokeh.index[i]),null==e)return;null!=n&&n.length>0?this._receiver.consume(n[0].buffer):this._receiver.consume(o);const t=this._receiver.message;null!=t&&Object.keys(t.content).length>0&&null!=this.document&&this.document.apply_json_patch(t.content,t.buffers,this.id)}}static init_CommManager(){this.prototype.default_view=r,this.define({plot_id:[o.String,null],comm_id:[o.String,null],client_comm_id:[o.String,null],timeout:[o.Number,5e3],debounce:[o.Number,50]})}}n.CommManager=a,a.__name__="CommManager",a.__module__="panel.models.comm_manager",a.init_CommManager()},n "d0d2aafca0": function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const i=e("tslib"),n=e("@bokehjs/core/dom"),a=i.__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),c=e("7116a7a602"),r=e("064eac2866"),d=i.__importDefault(e("093eb75864"));function l(){const e={},t=window.deck,o=Object.keys(t).filter(e=>e.charAt(0)===e.charAt(0).toUpperCase());for(const i of o)e[i]=t[i];return e}class _ extends c.PanelHTMLBoxView{connect_signals(){super.connect_signals();const{data:e,mapbox_api_key:t,tooltip:o,layers:i,initialViewState:n,data_sources:a}=this.model.properties;this.on_change([t,o],()=>this.render()),this.on_change([e,n],()=>this.updateDeck()),this.on_change([i],()=>this._update_layers()),this.on_change([a],()=>this._connect_sources(!0)),this._layer_map={},this._connected=[],this._connect_sources()}_update_layers(){this._layer_map={},this._update_data(!0)}_connect_sources(e=!1){for(const e of this.model.data_sources)this._connected.indexOf(e)<0&&(this.connect(e.properties.data.change,()=>this._update_data(!0)),this._connected.push(e));this._update_data(e)}initialize(){if(super.initialize(),window.deck.JSONConverter){const{CSVLoader:e,Tile3DLoader:t}=window.loaders;window.loaders.registerLoaders([t,e]);const o={classes:l(),enumerations:{COORDINATE_SYSTEM:window.deck.COORDINATE_SYSTEM,GL:d.default},constants:{Tile3DLoader:t}};this.jsonConverter=new window.deck.JSONConverter({configuration:o})}}_update_data(e=!0){let t=0;for(const e of this.model.layers){let o;if(t+=1,t-1 in this._layer_map)o=this.model.data_sources[this._layer_map[t-1]];else{if("number"!=typeof e.data)continue;this._layer_map[t-1]=e.data,o=this.model.data_sources[e.data]}const i=[],n=o.columns();for(let e=0;e<o.get_length();e++){const t={};for(const i of n){let n=o.get_array(i);const a=null==n[0].shape?null:n[0].shape;null!=a&&a.length>1&&"number"==typeof a[0]?t[i]=n.slice(e*a[1],e*a[1]+a[1]):t[i]=n[e]}i.push(t)}e.data=i}e&&this.updateDeck()}_on_click_event(e){const t={coordinate:e.coordinate,lngLat:e.lngLat,index:e.index};this.model.clickState=t}_on_hover_event(e){const t={coordinate:e.coordinate,lngLat:e.lngLat,index:e.index};this.model.hoverState=t}_on_viewState_event(e){this.model.viewState=e.viewState}getData(){return Object.assign(Object.assign({},this.model.data),{layers:this.model.layers,initialViewState:this.model.initialViewState,onViewStateChange:e=>this._on_viewState_event(e),onClick:e=>this._on_click_event(e),onHover:e=>this._on_hover_event(e)})}updateDeck(){if(!this.deckGL)return void this.render();const e=this.getData();if(window.deck.updateDeck)window.deck.updateDeck(e,this.deckGL);else{const t=this.jsonConverter.convert(e);this.deckGL.setProps(t)}}createDeck({mapboxApiKey:e,container:t,jsonInput:o,tooltip:i}){let n;try{const a=this.jsonConverter.convert(o),s=r.makeTooltip(i);n=new window.deck.DeckGL(Object.assign(Object.assign({},a),{map:window.mapboxgl,mapboxApiAccessToken:e,container:t,getTooltip:s}))}catch(e){console.error(e)}return n}render(){super.render();const e=n.div({class:"deckgl"});c.set_size(e,this.model);const t=this.model.mapbox_api_key,o=this.model.tooltip,i=this.getData();window.deck.createDeck?this.deckGL=window.deck.createDeck({mapboxApiKey:t,container:e,jsonInput:i,tooltip:o}):this.deckGL=this.createDeck({mapboxApiKey:t,container:e,jsonInput:i,tooltip:o}),this.el.appendChild(e)}}o.DeckGLPlotView=_,_.__name__="DeckGLPlotView";class h extends s.HTMLBox{constructor(e){super(e)}static init_DeckGLPlot(){this.prototype.default_view=_,this.define({data:[a.Any],data_sources:[a.Array,[]],clickState:[a.Any],hoverState:[a.Any],initialViewState:[a.Any],layers:[a.Array,[]],mapbox_api_key:[a.String],tooltip:[a.Any],viewState:[a.Any]}),this.override({height:400,width:600})}}o.DeckGLPlot=h,h.__name__="DeckGLPlot",h.__module__="panel.models.deckgl",h.init_DeckGLPlot()},n "064eac2866": function _(e,t,n){n /n This file was adapted from https://github.com/uber/deck.gl/ the LICENSEn below is preserved to comply with the original license.n n Copyright (c) 2015 - 2017 Uber Technologies, Inc.n n Permission is hereby granted, free of charge, to any person obtaining a copyn of this software and associated documentation files (the "Software"), to dealn in the Software without restriction, including without limitation the rightsn to use, copy, modify, merge, publish, distribute, sublicense, and/or selln copies of the Software, and to permit persons to whom the Software isn furnished to do so, subject to the following conditions:n n The above copyright notice and this permission notice shall be included inn all copies or substantial portions of the Software.n n THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORn IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEn AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERn LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS INn THE SOFTWARE.n /n let i,l;Object.defineProperty(n,"__esModule",{value:!0});const o={fontFamily:’"Helvetica Neue", Helvetica, Arial, sans-serif’,display:"flex",flex:"wrap",maxWidth:"500px",flexDirection:"column",zIndex:2};function r(){return document.createElement("div")}function s(e){if(!e.picked)return null;if(e.object===i)return l;const t={html:a(e.object),style:o};return l=t,i=e.object,t}n.getTooltipDefault=s;const c=new Set(["position","index"]);function a(e){const t=r();for(const n in e){if(c.has(n))continue;const i=r();i.className="header",i.textContent=n;const l=r();l.className="value",l.textContent=u(e[n]);const o=r();f(o,i,l),o.appendChild(i),o.appendChild(l),t.appendChild(o)}return t.innerHTML}function f(e,t,n){Object.assign(t.style,{fontWeight:700,marginRight:"10px",flex:"1 1 0%"}),Object.assign(n.style,{flex:"none",maxWidth:"250px",overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"}),Object.assign(e.style,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"stretch"})}function u(e){let t;if(Array.isArray(e)&&e.length>4)t=`Array<${e.length}>`;else if("string"==typeof e)t=e;else if("number"==typeof e)t=String(e);else try{t=JSON.stringify(e)}catch(e){t="<Non-Serializable Object>"}return t.length>50&&(t=t.slice(0,50)),t}function p(e,t){let n=e;for(const e in t)n=n.replace(`{${e}}`,t[e]);return n}n.tabularize=a,n.toText=u,n.substituteIn=p,n.makeTooltip=function(e){return e?e.html||e.text?t=>{if(!t.picked)return null;const n={style:e.style||o};return e.html?n.html=p(e.html,t.object):n.text=p(e.text,t.object),n}:s:null}},n "093eb75864": function _(E,_,R){_.exports={DEPTH_BUFFER_BIT:256,STENCIL_BUFFER_BIT:1024,COLOR_BUFFER_BIT:16384,POINTS:0,LINES:1,LINE_LOOP:2,LINE_STRIP:3,TRIANGLES:4,TRIANGLE_STRIP:5,TRIANGLE_FAN:6,ZERO:0,ONE:1,SRC_COLOR:768,ONE_MINUS_SRC_COLOR:769,SRC_ALPHA:770,ONE_MINUS_SRC_ALPHA:771,DST_ALPHA:772,ONE_MINUS_DST_ALPHA:773,DST_COLOR:774,ONE_MINUS_DST_COLOR:775,SRC_ALPHA_SATURATE:776,CONSTANT_COLOR:32769,ONE_MINUS_CONSTANT_COLOR:32770,CONSTANT_ALPHA:32771,ONE_MINUS_CONSTANT_ALPHA:32772,FUNC_ADD:32774,FUNC_SUBTRACT:32778,FUNC_REVERSE_SUBTRACT:32779,BLEND_EQUATION:32777,BLEND_EQUATION_RGB:32777,BLEND_EQUATION_ALPHA:34877,BLEND_DST_RGB:32968,BLEND_SRC_RGB:32969,BLEND_DST_ALPHA:32970,BLEND_SRC_ALPHA:32971,BLEND_COLOR:32773,ARRAY_BUFFER_BINDING:34964,ELEMENT_ARRAY_BUFFER_BINDING:34965,LINE_WIDTH:2849,ALIASED_POINT_SIZE_RANGE:33901,ALIASED_LINE_WIDTH_RANGE:33902,CULL_FACE_MODE:2885,FRONT_FACE:2886,DEPTH_RANGE:2928,DEPTH_WRITEMASK:2930,DEPTH_CLEAR_VALUE:2931,DEPTH_FUNC:2932,STENCIL_CLEAR_VALUE:2961,STENCIL_FUNC:2962,STENCIL_FAIL:2964,STENCIL_PASS_DEPTH_FAIL:2965,STENCIL_PASS_DEPTH_PASS:2966,STENCIL_REF:2967,STENCIL_VALUE_MASK:2963,STENCIL_WRITEMASK:2968,STENCIL_BACK_FUNC:34816,STENCIL_BACK_FAIL:34817,STENCIL_BACK_PASS_DEPTH_FAIL:34818,STENCIL_BACK_PASS_DEPTH_PASS:34819,STENCIL_BACK_REF:36003,STENCIL_BACK_VALUE_MASK:36004,STENCIL_BACK_WRITEMASK:36005,VIEWPORT:2978,SCISSOR_BOX:3088,COLOR_CLEAR_VALUE:3106,COLOR_WRITEMASK:3107,UNPACK_ALIGNMENT:3317,PACK_ALIGNMENT:3333,MAX_TEXTURE_SIZE:3379,MAX_VIEWPORT_DIMS:3386,SUBPIXEL_BITS:3408,RED_BITS:3410,GREEN_BITS:3411,BLUE_BITS:3412,ALPHA_BITS:3413,DEPTH_BITS:3414,STENCIL_BITS:3415,POLYGON_OFFSET_UNITS:10752,POLYGON_OFFSET_FACTOR:32824,TEXTURE_BINDING_2D:32873,SAMPLE_BUFFERS:32936,SAMPLES:32937,SAMPLE_COVERAGE_VALUE:32938,SAMPLE_COVERAGE_INVERT:32939,COMPRESSED_TEXTURE_FORMATS:34467,VENDOR:7936,RENDERER:7937,VERSION:7938,IMPLEMENTATION_COLOR_READ_TYPE:35738,IMPLEMENTATION_COLOR_READ_FORMAT:35739,BROWSER_DEFAULT_WEBGL:37444,STATIC_DRAW:35044,STREAM_DRAW:35040,DYNAMIC_DRAW:35048,ARRAY_BUFFER:34962,ELEMENT_ARRAY_BUFFER:34963,BUFFER_SIZE:34660,BUFFER_USAGE:34661,CURRENT_VERTEX_ATTRIB:34342,VERTEX_ATTRIB_ARRAY_ENABLED:34338,VERTEX_ATTRIB_ARRAY_SIZE:34339,VERTEX_ATTRIB_ARRAY_STRIDE:34340,VERTEX_ATTRIB_ARRAY_TYPE:34341,VERTEX_ATTRIB_ARRAY_NORMALIZED:34922,VERTEX_ATTRIB_ARRAY_POINTER:34373,VERTEX_ATTRIB_ARRAY_BUFFER_BINDING:34975,CULL_FACE:2884,FRONT:1028,BACK:1029,FRONT_AND_BACK:1032,BLEND:3042,DEPTH_TEST:2929,DITHER:3024,POLYGON_OFFSET_FILL:32823,SAMPLE_ALPHA_TO_COVERAGE:32926,SAMPLE_COVERAGE:32928,SCISSOR_TEST:3089,STENCIL_TEST:2960,NO_ERROR:0,INVALID_ENUM:1280,INVALID_VALUE:1281,INVALID_OPERATION:1282,OUT_OF_MEMORY:1285,CONTEXT_LOST_WEBGL:37442,CW:2304,CCW:2305,DONT_CARE:4352,FASTEST:4353,NICEST:4354,GENERATE_MIPMAP_HINT:33170,BYTE:5120,UNSIGNED_BYTE:5121,SHORT:5122,UNSIGNED_SHORT:5123,INT:5124,UNSIGNED_INT:5125,FLOAT:5126,DOUBLE:5130,DEPTH_COMPONENT:6402,ALPHA:6406,RGB:6407,RGBA:6408,LUMINANCE:6409,LUMINANCE_ALPHA:6410,UNSIGNED_SHORT_4_4_4_4:32819,UNSIGNED_SHORT_5_5_5_1:32820,UNSIGNED_SHORT_5_6_5:33635,FRAGMENT_SHADER:35632,VERTEX_SHADER:35633,COMPILE_STATUS:35713,DELETE_STATUS:35712,LINK_STATUS:35714,VALIDATE_STATUS:35715,ATTACHED_SHADERS:35717,ACTIVE_ATTRIBUTES:35721,ACTIVE_UNIFORMS:35718,MAX_VERTEX_ATTRIBS:34921,MAX_VERTEX_UNIFORM_VECTORS:36347,MAX_VARYING_VECTORS:36348,MAX_COMBINED_TEXTURE_IMAGE_UNITS:35661,MAX_VERTEX_TEXTURE_IMAGE_UNITS:35660,MAX_TEXTURE_IMAGE_UNITS:34930,MAX_FRAGMENT_UNIFORM_VECTORS:36349,SHADER_TYPE:35663,SHADING_LANGUAGE_VERSION:35724,CURRENT_PROGRAM:35725,NEVER:512,ALWAYS:519,LESS:513,EQUAL:514,LEQUAL:515,GREATER:516,GEQUAL:518,NOTEQUAL:517,KEEP:7680,REPLACE:7681,INCR:7682,DECR:7683,INVERT:5386,INCR_WRAP:34055,DECR_WRAP:34056,NEAREST:9728,LINEAR:9729,NEAREST_MIPMAP_NEAREST:9984,LINEAR_MIPMAP_NEAREST:9985,NEAREST_MIPMAP_LINEAR:9986,LINEAR_MIPMAP_LINEAR:9987,TEXTURE_MAG_FILTER:10240,TEXTURE_MIN_FILTER:10241,TEXTURE_WRAP_S:10242,TEXTURE_WRAP_T:10243,TEXTURE_2D:3553,TEXTURE:5890,TEXTURE_CUBE_MAP:34067,TEXTURE_BINDING_CUBE_MAP:34068,TEXTURE_CUBE_MAP_POSITIVE_X:34069,TEXTURE_CUBE_MAP_NEGATIVE_X:34070,TEXTURE_CUBE_MAP_POSITIVE_Y:34071,TEXTURE_CUBE_MAP_NEGATIVE_Y:34072,TEXTURE_CUBE_MAP_POSITIVE_Z:34073,TEXTURE_CUBE_MAP_NEGATIVE_Z:34074,MAX_CUBE_MAP_TEXTURE_SIZE:34076,TEXTURE0:33984,ACTIVE_TEXTURE:34016,REPEAT:10497,CLAMP_TO_EDGE:33071,MIRRORED_REPEAT:33648,TEXTURE_WIDTH:4096,TEXTURE_HEIGHT:4097,FLOAT_VEC2:35664,FLOAT_VEC3:35665,FLOAT_VEC4:35666,INT_VEC2:35667,INT_VEC3:35668,INT_VEC4:35669,BOOL:35670,BOOL_VEC2:35671,BOOL_VEC3:35672,BOOL_VEC4:35673,FLOAT_MAT2:35674,FLOAT_MAT3:35675,FLOAT_MAT4:35676,SAMPLER_2D:35678,SAMPLER_CUBE:35680,LOW_FLOAT:36336,MEDIUM_FLOAT:36337,HIGH_FLOAT:36338,LOW_INT:36339,MEDIUM_INT:36340,HIGH_INT:36341,FRAMEBUFFER:36160,RENDERBUFFER:36161,RGBA4:32854,RGB5_A1:32855,RGB565:36194,DEPTH_COMPONENT16:33189,STENCIL_INDEX:6401,STENCIL_INDEX8:36168,DEPTH_STENCIL:34041,RENDERBUFFER_WIDTH:36162,RENDERBUFFER_HEIGHT:36163,RENDERBUFFER_INTERNAL_FORMAT:36164,RENDERBUFFER_RED_SIZE:36176,RENDERBUFFER_GREEN_SIZE:36177,RENDERBUFFER_BLUE_SIZE:36178,RENDERBUFFER_ALPHA_SIZE:36179,RENDERBUFFER_DEPTH_SIZE:36180,RENDERBUFFER_STENCIL_SIZE:36181,FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:36048,FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:36049,FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL:36050,FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE:36051,COLOR_ATTACHMENT0:36064,DEPTH_ATTACHMENT:36096,STENCIL_ATTACHMENT:36128,DEPTH_STENCIL_ATTACHMENT:33306,NONE:0,FRAMEBUFFER_COMPLETE:36053,FRAMEBUFFER_INCOMPLETE_ATTACHMENT:36054,FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT:36055,FRAMEBUFFER_INCOMPLETE_DIMENSIONS:36057,FRAMEBUFFER_UNSUPPORTED:36061,FRAMEBUFFER_BINDING:36006,RENDERBUFFER_BINDING:36007,READ_FRAMEBUFFER:36008,DRAW_FRAMEBUFFER:36009,MAX_RENDERBUFFER_SIZE:34024,INVALID_FRAMEBUFFER_OPERATION:1286,UNPACK_FLIP_Y_WEBGL:37440,UNPACK_PREMULTIPLY_ALPHA_WEBGL:37441,UNPACK_COLORSPACE_CONVERSION_WEBGL:37443,READ_BUFFER:3074,UNPACK_ROW_LENGTH:3314,UNPACK_SKIP_ROWS:3315,UNPACK_SKIP_PIXELS:3316,PACK_ROW_LENGTH:3330,PACK_SKIP_ROWS:3331,PACK_SKIP_PIXELS:3332,TEXTURE_BINDING_3D:32874,UNPACK_SKIP_IMAGES:32877,UNPACK_IMAGE_HEIGHT:32878,MAX_3D_TEXTURE_SIZE:32883,MAX_ELEMENTS_VERTICES:33e3,MAX_ELEMENTS_INDICES:33001,MAX_TEXTURE_LOD_BIAS:34045,MAX_FRAGMENT_UNIFORM_COMPONENTS:35657,MAX_VERTEX_UNIFORM_COMPONENTS:35658,MAX_ARRAY_TEXTURE_LAYERS:35071,MIN_PROGRAM_TEXEL_OFFSET:35076,MAX_PROGRAM_TEXEL_OFFSET:35077,MAX_VARYING_COMPONENTS:35659,FRAGMENT_SHADER_DERIVATIVE_HINT:35723,RASTERIZER_DISCARD:35977,VERTEX_ARRAY_BINDING:34229,MAX_VERTEX_OUTPUT_COMPONENTS:37154,MAX_FRAGMENT_INPUT_COMPONENTS:37157,MAX_SERVER_WAIT_TIMEOUT:37137,MAX_ELEMENT_INDEX:36203,RED:6403,RGB8:32849,RGBA8:32856,RGB10_A2:32857,TEXTURE_3D:32879,TEXTURE_WRAP_R:32882,TEXTURE_MIN_LOD:33082,TEXTURE_MAX_LOD:33083,TEXTURE_BASE_LEVEL:33084,TEXTURE_MAX_LEVEL:33085,TEXTURE_COMPARE_MODE:34892,TEXTURE_COMPARE_FUNC:34893,SRGB:35904,SRGB8:35905,SRGB8_ALPHA8:35907,COMPARE_REF_TO_TEXTURE:34894,RGBA32F:34836,RGB32F:34837,RGBA16F:34842,RGB16F:34843,TEXTURE_2D_ARRAY:35866,TEXTURE_BINDING_2D_ARRAY:35869,R11F_G11F_B10F:35898,RGB9_E5:35901,RGBA32UI:36208,RGB32UI:36209,RGBA16UI:36214,RGB16UI:36215,RGBA8UI:36220,RGB8UI:36221,RGBA32I:36226,RGB32I:36227,RGBA16I:36232,RGB16I:36233,RGBA8I:36238,RGB8I:36239,RED_INTEGER:36244,RGB_INTEGER:36248,RGBA_INTEGER:36249,R8:33321,RG8:33323,R16F:33325,R32F:33326,RG16F:33327,RG32F:33328,R8I:33329,R8UI:33330,R16I:33331,R16UI:33332,R32I:33333,R32UI:33334,RG8I:33335,RG8UI:33336,RG16I:33337,RG16UI:33338,RG32I:33339,RG32UI:33340,R8_SNORM:36756,RG8_SNORM:36757,RGB8_SNORM:36758,RGBA8_SNORM:36759,RGB10_A2UI:36975,TEXTURE_IMMUTABLE_FORMAT:37167,TEXTURE_IMMUTABLE_LEVELS:33503,UNSIGNED_INT_2_10_10_10_REV:33640,UNSIGNED_INT_10F_11F_11F_REV:35899,UNSIGNED_INT_5_9_9_9_REV:35902,FLOAT_32_UNSIGNED_INT_24_8_REV:36269,UNSIGNED_INT_24_8:34042,HALF_FLOAT:5131,RG:33319,RG_INTEGER:33320,INT_2_10_10_10_REV:36255,CURRENT_QUERY:34917,QUERY_RESULT:34918,QUERY_RESULT_AVAILABLE:34919,ANY_SAMPLES_PASSED:35887,ANY_SAMPLES_PASSED_CONSERVATIVE:36202,MAX_DRAW_BUFFERS:34852,DRAW_BUFFER0:34853,DRAW_BUFFER1:34854,DRAW_BUFFER2:34855,DRAW_BUFFER3:34856,DRAW_BUFFER4:34857,DRAW_BUFFER5:34858,DRAW_BUFFER6:34859,DRAW_BUFFER7:34860,DRAW_BUFFER8:34861,DRAW_BUFFER9:34862,DRAW_BUFFER10:34863,DRAW_BUFFER11:34864,DRAW_BUFFER12:34865,DRAW_BUFFER13:34866,DRAW_BUFFER14:34867,DRAW_BUFFER15:34868,MAX_COLOR_ATTACHMENTS:36063,COLOR_ATTACHMENT1:36065,COLOR_ATTACHMENT2:36066,COLOR_ATTACHMENT3:36067,COLOR_ATTACHMENT4:36068,COLOR_ATTACHMENT5:36069,COLOR_ATTACHMENT6:36070,COLOR_ATTACHMENT7:36071,COLOR_ATTACHMENT8:36072,COLOR_ATTACHMENT9:36073,COLOR_ATTACHMENT10:36074,COLOR_ATTACHMENT11:36075,COLOR_ATTACHMENT12:36076,COLOR_ATTACHMENT13:36077,COLOR_ATTACHMENT14:36078,COLOR_ATTACHMENT15:36079,SAMPLER_3D:35679,SAMPLER_2D_SHADOW:35682,SAMPLER_2D_ARRAY:36289,SAMPLER_2D_ARRAY_SHADOW:36292,SAMPLER_CUBE_SHADOW:36293,INT_SAMPLER_2D:36298,INT_SAMPLER_3D:36299,INT_SAMPLER_CUBE:36300,INT_SAMPLER_2D_ARRAY:36303,UNSIGNED_INT_SAMPLER_2D:36306,UNSIGNED_INT_SAMPLER_3D:36307,UNSIGNED_INT_SAMPLER_CUBE:36308,UNSIGNED_INT_SAMPLER_2D_ARRAY:36311,MAX_SAMPLES:36183,SAMPLER_BINDING:35097,PIXEL_PACK_BUFFER:35051,PIXEL_UNPACK_BUFFER:35052,PIXEL_PACK_BUFFER_BINDING:35053,PIXEL_UNPACK_BUFFER_BINDING:35055,COPY_READ_BUFFER:36662,COPY_WRITE_BUFFER:36663,COPY_READ_BUFFER_BINDING:36662,COPY_WRITE_BUFFER_BINDING:36663,FLOAT_MAT2x3:35685,FLOAT_MAT2x4:35686,FLOAT_MAT3x2:35687,FLOAT_MAT3x4:35688,FLOAT_MAT4x2:35689,FLOAT_MAT4x3:35690,UNSIGNED_INT_VEC2:36294,UNSIGNED_INT_VEC3:36295,UNSIGNED_INT_VEC4:36296,UNSIGNED_NORMALIZED:35863,SIGNED_NORMALIZED:36764,VERTEX_ATTRIB_ARRAY_INTEGER:35069,VERTEX_ATTRIB_ARRAY_DIVISOR:35070,TRANSFORM_FEEDBACK_BUFFER_MODE:35967,MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS:35968,TRANSFORM_FEEDBACK_VARYINGS:35971,TRANSFORM_FEEDBACK_BUFFER_START:35972,TRANSFORM_FEEDBACK_BUFFER_SIZE:35973,TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN:35976,MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS:35978,MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS:35979,INTERLEAVED_ATTRIBS:35980,SEPARATE_ATTRIBS:35981,TRANSFORM_FEEDBACK_BUFFER:35982,TRANSFORM_FEEDBACK_BUFFER_BINDING:35983,TRANSFORM_FEEDBACK:36386,TRANSFORM_FEEDBACK_PAUSED:36387,TRANSFORM_FEEDBACK_ACTIVE:36388,TRANSFORM_FEEDBACK_BINDING:36389,FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:33296,FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:33297,FRAMEBUFFER_ATTACHMENT_RED_SIZE:33298,FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:33299,FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:33300,FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:33301,FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:33302,FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:33303,FRAMEBUFFER_DEFAULT:33304,DEPTH24_STENCIL8:35056,DRAW_FRAMEBUFFER_BINDING:36006,READ_FRAMEBUFFER_BINDING:36010,RENDERBUFFER_SAMPLES:36011,FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER:36052,FRAMEBUFFER_INCOMPLETE_MULTISAMPLE:36182,UNIFORM_BUFFER:35345,UNIFORM_BUFFER_BINDING:35368,UNIFORM_BUFFER_START:35369,UNIFORM_BUFFER_SIZE:35370,MAX_VERTEX_UNIFORM_BLOCKS:35371,MAX_FRAGMENT_UNIFORM_BLOCKS:35373,MAX_COMBINED_UNIFORM_BLOCKS:35374,MAX_UNIFORM_BUFFER_BINDINGS:35375,MAX_UNIFORM_BLOCK_SIZE:35376,MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS:35377,MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS:35379,UNIFORM_BUFFER_OFFSET_ALIGNMENT:35380,ACTIVE_UNIFORM_BLOCKS:35382,UNIFORM_TYPE:35383,UNIFORM_SIZE:35384,UNIFORM_BLOCK_INDEX:35386,UNIFORM_OFFSET:35387,UNIFORM_ARRAY_STRIDE:35388,UNIFORM_MATRIX_STRIDE:35389,UNIFORM_IS_ROW_MAJOR:35390,UNIFORM_BLOCK_BINDING:35391,UNIFORM_BLOCK_DATA_SIZE:35392,UNIFORM_BLOCK_ACTIVE_UNIFORMS:35394,UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES:35395,UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER:35396,UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER:35398,OBJECT_TYPE:37138,SYNC_CONDITION:37139,SYNC_STATUS:37140,SYNC_FLAGS:37141,SYNC_FENCE:37142,SYNC_GPU_COMMANDS_COMPLETE:37143,UNSIGNALED:37144,SIGNALED:37145,ALREADY_SIGNALED:37146,TIMEOUT_EXPIRED:37147,CONDITION_SATISFIED:37148,WAIT_FAILED:37149,SYNC_FLUSH_COMMANDS_BIT:1,COLOR:6144,DEPTH:6145,STENCIL:6146,MIN:32775,MAX:32776,DEPTH_COMPONENT24:33190,STREAM_READ:35041,STREAM_COPY:35042,STATIC_READ:35045,STATIC_COPY:35046,DYNAMIC_READ:35049,DYNAMIC_COPY:35050,DEPTH_COMPONENT32F:36012,DEPTH32F_STENCIL8:36013,INVALID_INDEX:4294967295,TIMEOUT_IGNORED:-1,MAX_CLIENT_WAIT_TIMEOUT_WEBGL:37447,VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE:35070,UNMASKED_VENDOR_WEBGL:37445,UNMASKED_RENDERER_WEBGL:37446,MAX_TEXTURE_MAX_ANISOTROPY_EXT:34047,TEXTURE_MAX_ANISOTROPY_EXT:34046,COMPRESSED_RGB_S3TC_DXT1_EXT:33776,COMPRESSED_RGBA_S3TC_DXT1_EXT:33777,COMPRESSED_RGBA_S3TC_DXT3_EXT:33778,COMPRESSED_RGBA_S3TC_DXT5_EXT:33779,COMPRESSED_R11_EAC:37488,COMPRESSED_SIGNED_R11_EAC:37489,COMPRESSED_RG11_EAC:37490,COMPRESSED_SIGNED_RG11_EAC:37491,COMPRESSED_RGB8_ETC2:37492,COMPRESSED_RGBA8_ETC2_EAC:37493,COMPRESSED_SRGB8_ETC2:37494,COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:37495,COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2:37496,COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2:37497,COMPRESSED_RGB_PVRTC_4BPPV1_IMG:35840,COMPRESSED_RGBA_PVRTC_4BPPV1_IMG:35842,COMPRESSED_RGB_PVRTC_2BPPV1_IMG:35841,COMPRESSED_RGBA_PVRTC_2BPPV1_IMG:35843,COMPRESSED_RGB_ETC1_WEBGL:36196,COMPRESSED_RGB_ATC_WEBGL:35986,COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL:35986,COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL:34798,UNSIGNED_INT_24_8_WEBGL:34042,HALF_FLOAT_OES:36193,RGBA32F_EXT:34836,RGB32F_EXT:34837,FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT:33297,UNSIGNED_NORMALIZED_EXT:35863,MIN_EXT:32775,MAX_EXT:32776,SRGB_EXT:35904,SRGB_ALPHA_EXT:35906,SRGB8_ALPHA8_EXT:35907,FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT:33296,FRAGMENT_SHADER_DERIVATIVE_HINT_OES:35723,COLOR_ATTACHMENT0_WEBGL:36064,COLOR_ATTACHMENT1_WEBGL:36065,COLOR_ATTACHMENT2_WEBGL:36066,COLOR_ATTACHMENT3_WEBGL:36067,COLOR_ATTACHMENT4_WEBGL:36068,COLOR_ATTACHMENT5_WEBGL:36069,COLOR_ATTACHMENT6_WEBGL:36070,COLOR_ATTACHMENT7_WEBGL:36071,COLOR_ATTACHMENT8_WEBGL:36072,COLOR_ATTACHMENT9_WEBGL:36073,COLOR_ATTACHMENT10_WEBGL:36074,COLOR_ATTACHMENT11_WEBGL:36075,COLOR_ATTACHMENT12_WEBGL:36076,COLOR_ATTACHMENT13_WEBGL:36077,COLOR_ATTACHMENT14_WEBGL:36078,COLOR_ATTACHMENT15_WEBGL:36079,DRAW_BUFFER0_WEBGL:34853,DRAW_BUFFER1_WEBGL:34854,DRAW_BUFFER2_WEBGL:34855,DRAW_BUFFER3_WEBGL:34856,DRAW_BUFFER4_WEBGL:34857,DRAW_BUFFER5_WEBGL:34858,DRAW_BUFFER6_WEBGL:34859,DRAW_BUFFER7_WEBGL:34860,DRAW_BUFFER8_WEBGL:34861,DRAW_BUFFER9_WEBGL:34862,DRAW_BUFFER10_WEBGL:34863,DRAW_BUFFER11_WEBGL:34864,DRAW_BUFFER12_WEBGL:34865,DRAW_BUFFER13_WEBGL:34866,DRAW_BUFFER14_WEBGL:34867,DRAW_BUFFER15_WEBGL:34868,MAX_COLOR_ATTACHMENTS_WEBGL:36063,MAX_DRAW_BUFFERS_WEBGL:34852,VERTEX_ARRAY_BINDING_OES:34229,QUERY_COUNTER_BITS_EXT:34916,CURRENT_QUERY_EXT:34917,QUERY_RESULT_EXT:34918,QUERY_RESULT_AVAILABLE_EXT:34919,TIME_ELAPSED_EXT:35007,TIMESTAMP_EXT:36392,GPU_DISJOINT_EXT:36795}},n "c6decbe3f5": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),h=e("@bokehjs/models/layouts/html_box");class r extends h.HTMLBoxView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>this._plot());const{width:e,height:t,renderer:s,theme:i}=this.model.properties;this.on_change([e,t],()=>this._resize()),this.on_change([i,s],()=>this.render())}render(){super.render();const e={width:this.model.width,height:this.model.height,renderer:this.model.renderer};null!=this._chart&&window.echarts.dispose(this._chart),this._chart=window.echarts.init(this.el,this.model.theme,e),this._plot()}after_layout(){super.after_layout(),this._chart.resize()}_plot(){null!=window.echarts&&this._chart.setOption(this.model.data)}_resize(){this._chart.resize({width:this.model.width,height:this.model.height})}}s.EChartsView=r,r.__name__="EChartsView";class o extends h.HTMLBox{constructor(e){super(e)}static init_ECharts(){this.prototype.default_view=r,this.define({data:[i.Any],theme:[i.String,"default"],renderer:[i.String,"canvas"]})}}s.ECharts=o,o.__name__="ECharts",o.__module__="panel.models.echarts",o.init_ECharts()},n "ed08037ce5": function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const n=e("@bokehjs/models/widgets/markup"),a=e("7116a7a602");function o(e){return(new DOMParser).parseFromString(e,"text/html").documentElement.textContent}r.htmlDecode=o;class s extends a.PanelMarkupView{render(){super.render();const e=o(this.model.text)||this.model.text;e?(this.markup_el.innerHTML=e,Array.from(this.markup_el.querySelectorAll("script")).forEach(e=>{const t=document.createElement("script");Array.from(e.attributes).forEach(e=>t.setAttribute(e.name,e.value)),t.appendChild(document.createTextNode(e.innerHTML)),e.parentNode&&e.parentNode.replaceChild(t,e)})):this.markup_el.innerHTML=""}}r.HTMLView=s,s.__name__="HTMLView";class i extends n.Markup{constructor(e){super(e)}static init_HTML(){this.prototype.default_view=s}}r.HTML=i,i.__name__="HTML",i.__module__="panel.models.markup",i.init_HTML()},n "cb7ac8d1fa": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),d=e("7116a7a602"),l=window.Jupyter;class o extends d.PanelHTMLBoxView{constructor(){super(…arguments),this.rendered=!1}render(){super.render(),this._render().then(()=>{this.rendered=!0,this.invalidate_layout(),this.notify_finished()})}has_finished(){return this.rendered&&super.has_finished()}async _render(){const{spec:e,state:i}=this.model.bundle;let t;if(null!=l&&null!=l.notebook?t=l.notebook.kernel.widget_manager:null!=window.PyViz.widget_manager&&(t=window.PyViz.widget_manager),t)if(null==this.ipyview){const n=(await t.set_state(i)).find(i=>i.model_id==e.model_id);if(null!=n){const e=await t.create_view(n,{el:this.el});if(this.ipyview=e,e.children_views)for(const i of e.children_views.views)await i;this.el.appendChild(e.el),e.trigger("displayed",e)}}else this.el.appendChild(this.ipyview.el);else console.log("Panel IPyWidget model could not find a WidgetManager")}}t.IPyWidgetView=o,o.__name__="IPyWidgetView";class r extends s.HTMLBox{constructor(e){super(e)}static init_IPyWidget(){this.prototype.default_view=o,this.define({bundle:[n.Any,{}]})}}t.IPyWidget=r,r.__name__="IPyWidget",r.__module__="panel.models.ipywidget",r.init_IPyWidget()},n "284504a0cf": function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e("tslib"),n=s.__importStar(e("@bokehjs/core/properties")),i=e("@bokehjs/models/widgets/markup"),o=s.__importDefault(e("18bba7b7e1")),d=e("7116a7a602");class a extends d.PanelMarkupView{connect_signals(){super.connect_signals();const{depth:e,hover_preview:t,theme:r}=this.model.properties;this.on_change([e,t,r],()=>this.render())}render(){super.render();const e=this.model.text.replace(/(\r\n|\n|\r)/gm,"").replace("’",’"’);let t;try{t=window.JSON.parse(e)}catch(e){return void(this.markup_el.innerHTML="<b>Invalid JSON:</b> "+e.toString())}const r={hoverPreviewEnabled:this.model.hover_preview,theme:this.model.theme},s=null==this.model.depth?1/0:this.model.depth,n=new o.default(t,s,r).render();let i="border-radius: 5px; padding: 10px;";"dark"==this.model.theme?n.style.cssText="background-color: rgb(30, 30, 30);"+i:n.style.cssText=i,this.markup_el.append(n)}}r.JSONView=a,a.__name__="JSONView";const l=["dark","light"];class p extends i.Markup{constructor(e){super(e)}static init_JSON(){this.prototype.default_view=a,this.define({depth:[n.Number,1],hover_preview:[n.Boolean,!1],theme:[n.Enum(l),"dark"]})}}r.JSON=p,p.__name__="JSON",p.__module__="panel.models.markup",p.init_JSON()},n "18bba7b7e1": function _(t,e,r){function n(t){return null===t?"null":typeof t}function o(t){return!!t&&"object"==typeof t}function i(t){if(void 0===t)return"";if(null===t)return"Object";if("object"==typeof t&&!t.constructor)return"Object";var e=/function ([^(])/.exec(t.constructor.toString());return e&&e.length>1?e[1]:""}function s(t,e,r){return"null"===t||"undefined"===t?t:("string"!==t&&"stringifiable"!==t||(r=’"’+r.replace(/"/g,’\\"’)+’"’),"function"===t?e.toString().replace(/[\r\n]/g,"").replace(/\{.*\}/,"")+"{…}":r)}function a(t){var e="";return o(t)?(e=i(t),Array.isArray(t)&&(e+="["+t.length+"]")):e=s(n(t),t,t),e}function f(t){return"json-formatter-"+t}function m(t,e,r){var n=document.createElement(t);return e&&n.classList.add(f(e)),void 0!==r&&(r instanceof Node?n.appendChild(r):n.appendChild(document.createTextNode(String(r)))),n}Object.defineProperty(r,"__esModule",{value:!0}),function(t){if("undefined"!=typeof window){var e=document.createElement("style");e.setAttribute("media","screen"),e.innerHTML=t,document.head.appendChild(e)}}(‘.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: "No properties";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: "[]";\n}\n.json-formatter-row .json-formatter-string,\n.json-formatter-row .json-formatter-stringifiable {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: "►";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: "No properties";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: "[]";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string,\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: "►";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n’);var l=/(^\d{1,4}[\.|\\/|-]\\d{1,2}[\\.|\\/|-]\\d{1,4})(\\s*(?:0?[1-9]:[0-5]|1(?=[012])\\d:[0-5])\\d\\s*[ap]m)?$/,d=/\\d{2}:\\d{2}:\\d{2} GMT-\\d{4}/,c=/\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{3}Z/,p=window.requestAnimationFrame||function(t){return t(),0},j={hoverPreviewEnabled:!1,hoverPreviewArrayCount:100,hoverPreviewFieldCount:5,animateOpen:!0,animateClose:!0,theme:null,useToJSON:!0,sortPropertiesBy:null},h=function(){function t(t,e,r,n){void 0===e&&(e=1),void 0===r&&(r=j),this.json=t,this.open=e,this.config=r,this.key=n,this._isOpen=null,void 0===this.config.hoverPreviewEnabled&&(this.config.hoverPreviewEnabled=j.hoverPreviewEnabled),void 0===this.config.hoverPreviewArrayCount&&(this.config.hoverPreviewArrayCount=j.hoverPreviewArrayCount),void 0===this.config.hoverPreviewFieldCount&&(this.config.hoverPreviewFieldCount=j.hoverPreviewFieldCount),void 0===this.config.useToJSON&&(this.config.useToJSON=j.useToJSON),\"\"===this.key&&(this.key='\"\"')}return Object.defineProperty(t.prototype,\"isOpen\",{get:function(){return null!==this._isOpen?this._isOpen:this.open>0},set:function(t){this._isOpen=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,\"isDate\",{get:function(){return this.json instanceof Date||"string"===this.type&&(l.test(this.json)||c.test(this.json)||d.test(this.json))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isUrl",{get:function(){return"string"===this.type&&0===this.json.indexOf("http")},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isArray",{get:function(){return Array.isArray(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isObject",{get:function(){return o(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isEmptyObject",{get:function(){return!this.keys.length&&!this.isArray},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isEmpty",{get:function(){return this.isEmptyObject||this.keys&&!this.keys.length&&this.isArray},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"useToJSON",{get:function(){return this.config.useToJSON&&"stringifiable"===this.type},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"hasKey",{get:function(){return void 0!==this.key},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"constructorName",{get:function(){return i(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"type",{get:function(){return this.config.useToJSON&&this.json&&this.json.toJSON?"stringifiable":n(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"keys",{get:function(){if(this.isObject){var t=Object.keys(this.json);return!this.isArray&&this.config.sortPropertiesBy?t.sort(this.config.sortPropertiesBy):t}return[]},enumerable:!0,configurable:!0}),t.prototype.toggleOpen=function(){this.isOpen=!this.isOpen,this.element&&(this.isOpen?this.appendChildren(this.config.animateOpen):this.removeChildren(this.config.animateClose),this.element.classList.toggle(f("open")))},t.prototype.openAtDepth=function(t){void 0===t&&(t=1),t<0||(this.open=t,this.isOpen=0!==t,this.element&&(this.removeChildren(!1),0===t?this.element.classList.remove(f("open")):(this.appendChildren(this.config.animateOpen),this.element.classList.add(f("open")))))},t.prototype.getInlinepreview=function(){var t=this;if(this.isArray)return this.json.length>this.config.hoverPreviewArrayCount?"Array["+this.json.length+"]":"["+this.json.map(a).join(", ")+"]";var e=this.keys,r=e.slice(0,this.config.hoverPreviewFieldCount).map((function(e){return e+":"+a(t.json[e])})),n=e.length>=this.config.hoverPreviewFieldCount?"…":"";return"{"+r.join(", ")+n+"}"},t.prototype.render=function(){this.element=m("div","row");var t=this.isObject?m("a","toggler-link"):m("span");if(this.isObject&&!this.useToJSON&&t.appendChild(m("span","toggler")),this.hasKey&&t.appendChild(m("span","key",this.key+":")),this.isObject&&!this.useToJSON){var e=m("span","value"),r=m("span"),n=m("span","constructor-name",this.constructorName);if(r.appendChild(n),this.isArray){var o=m("span");o.appendChild(m("span","bracket","[")),o.appendChild(m("span","number",this.json.length)),o.appendChild(m("span","bracket","]")),r.appendChild(o)}e.appendChild(r),t.appendChild(e)}else{(e=this.isUrl?m("a"):m("span")).classList.add(f(this.type)),this.isDate&&e.classList.add(f("date")),this.isUrl&&(e.classList.add(f("url")),e.setAttribute("href",this.json));var i=s(this.type,this.json,this.useToJSON?this.json.toJSON():this.json);e.appendChild(document.createTextNode(i)),t.appendChild(e)}if(this.isObject&&this.config.hoverPreviewEnabled){var a=m("span","preview-text");a.appendChild(document.createTextNode(this.getInlinepreview())),t.appendChild(a)}var l=m("div","children");return this.isObject&&l.classList.add(f("object")),this.isArray&&l.classList.add(f("array")),this.isEmpty&&l.classList.add(f("empty")),this.config&&this.config.theme&&this.element.classList.add(f(this.config.theme)),this.isOpen&&this.element.classList.add(f("open")),this.element.appendChild(t),this.element.appendChild(l),this.isObject&&this.isOpen&&this.appendChildren(),this.isObject&&!this.useToJSON&&t.addEventListener("click",this.toggleOpen.bind(this)),this.element},t.prototype.appendChildren=function(e){var r=this;void 0===e&&(e=!1);var n=this.element.querySelector("div."+f("children"));if(n&&!this.isEmpty)if(e){var o=0,i=function(){var e=r.keys[o],s=new t(r.json[e],r.open-1,r.config,e);n.appendChild(s.render()),(o+=1)<r.keys.length&&(o>10?i():p(i))};p(i)}else this.keys.forEach((function(e){var o=new t(r.json[e],r.open-1,r.config,e);n.appendChild(o.render())}))},t.prototype.removeChildren=function(t){void 0===t&&(t=!1);var e=this.element.querySelector("div."+f("children"));if(t){var r=0,n=function(){e&&e.children.length&&(e.removeChild(e.children[0]),(r+=1)>10?n():p(n))};p(n)}else e&&(e.innerHTML="")},t}();r.default=h},n "7a99dba4eb": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e("tslib"),s=e("@bokehjs/models/widgets/input_widget"),o=e("@bokehjs/styles/buttons"),n=l.__importStar(e("@bokehjs/core/properties"));class a extends s.InputWidgetView{constructor(){super(…arguments),this._downloadable=!1,this._embed=!1,this._prev_href="",this._prev_download=""}initialize(){super.initialize(),this.model.data&&this.model.filename&&(this._embed=!0)}connect_signals(){super.connect_signals(),this.connect(this.model.properties.button_type.change,()=>this._update_button_style()),this.connect(this.model.properties.filename.change,()=>this._update_download()),this.connect(this.model.properties._transfers.change,()=>this._handle_click()),this.connect(this.model.properties.label.change,()=>this._update_label())}render(){super.render(),this.group_el.style.display="flex",this.group_el.style.alignItems="stretch",this.anchor_el=document.createElement("a"),this._update_button_style(),this._update_label(),this.model.disabled?(this.anchor_el.setAttribute("disabled",""),this._downloadable=!1):(this.anchor_el.removeAttribute("disabled"),this._prev_download&&(this.anchor_el.download=this._prev_download),this._prev_href&&(this.anchor_el.href=this._prev_href),this.anchor_el.download&&this.anchor_el.download&&(this._downloadable=!0)),this._embed?this._make_link_downloadable():(this._click_listener=this._increment_clicks.bind(this),this.anchor_el.addEventListener("click",this._click_listener)),this.group_el.appendChild(this.anchor_el)}_increment_clicks(){this.model.clicks=this.model.clicks+1}_handle_click(){!this.model.auto&&this._downloadable||(this._make_link_downloadable(),!this._embed&&this.model.auto&&(this.anchor_el.removeEventListener("click",this._click_listener),this.anchor_el.click(),this.anchor_el.removeAttribute("href"),this.anchor_el.removeAttribute("download"),this.anchor_el.addEventListener("click",this._click_listener)),this._prev_href=this.anchor_el.getAttribute("href"),this._prev_download=this.anchor_el.getAttribute("download"))}_make_link_downloadable(){this._update_href(),this._update_download(),this.anchor_el.download&&this.anchor_el.href&&(this._downloadable=!0)}_update_href(){if(this.model.data){const e=function(e){const t=atob(e.split(",")[1]),i=e.split(",")[0].split(":")[1].split(";")[0],l=new ArrayBuffer(t.length),s=new Uint8Array(l);for(let e=0;e<t.length;e++)s[e]=t.charCodeAt(e);return new Blob([l],{type:i})}(this.model.data);this.anchor_el.href=URL.createObjectURL(e)}}_update_download(){this.model.filename&&(this.anchor_el.download=this.model.filename)}_update_label(){this.anchor_el.textContent=this.model.label}_update_button_style(){if(this.anchor_el.hasAttribute("class")){const e=this.anchor_el.classList.item(1);e&&this.anchor_el.classList.replace(e,o.bk_btn_type(this.model.button_type))}else this.anchor_el.classList.add(o.bk_btn),this.anchor_el.classList.add(o.bk_btn_type(this.model.button_type))}}i.FileDownloadView=a,a.__name__="FileDownloadView";class h extends s.InputWidget{constructor(e){super(e)}static init_FileDownload(){this.prototype.default_view=a,this.define({auto:[n.Boolean,!1],clicks:[n.Number,0],data:[n.NullString,null],label:[n.String,"Download"],filename:[n.String,null],button_type:[n.ButtonType,"default"],_transfers:[n.Number,0]}),this.override({title:""})}}i.FileDownload=h,h.__name__="FileDownload",h.__module__="panel.models.widgets",h.init_FileDownload()},n "7b859fb3cf": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e("@bokehjs/models/widgets/markup"),n=e("7116a7a602");class r extends n.PanelMarkupView{render(){super.render(),this.markup_el.innerHTML=this.model.text,window.renderMathInElement&&window.renderMathInElement(this.el,{delimiters:[{left:"$$",right:"$$",display:!0},{left:"\\[",right:"\\]",display:!0},{left:"$",right:"$",display:!1},{left:"\\(",right:"\\)",display:!1}]})}}i.KaTeXView=r,r.__name__="KaTeXView";class s extends a.Markup{constructor(e){super(e)}static init_KaTeX(){this.prototype.default_view=r}}i.KaTeX=s,s.__name__="KaTeX",s.__module__="panel.models.katex",s.init_KaTeX()},n "aded270681": function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o("tslib").__importStar(o("@bokehjs/core/properties")),a=o("@bokehjs/core/view"),n=o("@bokehjs/model");class h extends a.View{initialize(){super.initialize(),this.model.pathname=window.location.pathname,this.model.search=window.location.search,this.model.hash=window.location.hash,this.model.href=window.location.href,this.model.hostname=window.location.hostname,this.model.protocol=window.location.protocol,this.model.port=window.location.port}connect_signals(){super.connect_signals(),this.connect(this.model.properties.pathname.change,()=>this.update("pathname")),this.connect(this.model.properties.search.change,()=>this.update("search")),this.connect(this.model.properties.hash.change,()=>this.update("hash")),this.connect(this.model.properties.reload.change,()=>this.update("reload"))}update(o){this.model.reload&&"reload"!==o?("pathname"==o&&(window.location.pathname=this.model.pathname),"search"==o&&(window.location.search=this.model.search),"hash"==o&&(window.location.hash=this.model.hash)):(window.history.pushState({},"",`${this.model.pathname}${this.model.search}${this.model.hash}`),this.model.href=window.location.href,"reload"===o&&window.location.reload())}}t.LocationView=h,h.__name__="LocationView";class s extends n.Model{constructor(o){super(o)}static init_Location(){this.prototype.default_view=h,this.define({href:[i.String,""],hostname:[i.String,""],pathname:[i.String,""],protocol:[i.String,""],port:[i.String,""],search:[i.String,""],hash:[i.String,""],reload:[i.Boolean,!1]})}}t.Location=s,s.__name__="Location",s.__module__="panel.models.location",s.init_Location()},n "0c21036737": function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e("@bokehjs/models/widgets/markup"),s=e("7116a7a602");class _ extends s.PanelMarkupView{initialize(){super.initialize(),this._hub=window.MathJax.Hub,this._hub.Config({tex2jax:{inlineMath:[["$","$"],["\\(","\\)"]]}})}render(){super.render(),this._hub&&(this.markup_el.innerHTML=this.model.text,this._hub.Queue(["Typeset",this._hub,this.markup_el]))}}a.MathJaxView=_,_.__name__="MathJaxView";class h extends i.Markup{constructor(e){super(e)}static init_MathJax(){this.prototype.default_view=_}}a.MathJax=h,h.__name__="MathJax",h.__module__="panel.models.mathjax",h.init_MathJax()},n "79c41bbf71": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/core/dom"),l=e("@bokehjs/models/widgets/widget");function n(e){e.forEach(e=>e.style.borderStyle="inset")}function a(e){e.forEach(e=>e.style.borderStyle="outset")}class r extends l.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.value.change,()=>this.render()),this.connect(this.model.properties.loop_policy.change,()=>this.set_loop_state(this.model.loop_policy)),this.connect(this.model.properties.show_loop_controls.change,()=>{this.model.show_loop_controls&&this.loop_state.parentNode!=this.groupEl?this.groupEl.appendChild(this.loop_state):this.model.show_loop_controls||this.loop_state.parentNode!=this.groupEl||this.el.removeChild(this.loop_state)})}get_height(){return 250}render(){if(null!=this.sliderEl)return this.sliderEl.min=String(this.model.start),this.sliderEl.max=String(this.model.end),void(this.sliderEl.value=String(this.model.value));super.render(),this.groupEl=o.div(),this.groupEl.style.display="flex",this.groupEl.style.flexDirection="column",this.groupEl.style.alignItems="center",this.sliderEl=document.createElement("input"),this.sliderEl.style.width="100%",this.sliderEl.setAttribute("type","range"),this.sliderEl.value=String(this.model.value),this.sliderEl.min=String(this.model.start),this.sliderEl.max=String(this.model.end),this.sliderEl.onchange=e=>this.set_frame(parseInt(e.target.value));const e=o.div();e.style.cssText="margin: 0 auto; display: flex; padding: 5px; align-items: stretch; width: 100%;";const t="text-align: center; min-width: 20px; flex-grow: 1; margin: 2px",s="text-align: center; min-width: 40px; flex-grow: 2; margin: 2px",i=document.createElement("button");i.style.cssText=t,i.appendChild(document.createTextNode("–")),i.onclick=()=>this.slower(),e.appendChild(i);const l=document.createElement("button");l.style.cssText=s,l.appendChild(document.createTextNode("❚◀◀")),l.onclick=()=>this.first_frame(),e.appendChild(l);const r=document.createElement("button");r.style.cssText=s,r.appendChild(document.createTextNode("❚◀")),r.onclick=()=>this.previous_frame(),e.appendChild(r);const d=document.createElement("button");d.style.cssText=s,d.appendChild(document.createTextNode("◀")),d.onclick=()=>this.reverse_animation(),e.appendChild(d);const h=document.createElement("button");h.style.cssText=s,h.appendChild(document.createTextNode("❚❚")),h.onclick=()=>this.pause_animation(),e.appendChild(h);const p=document.createElement("button");p.style.cssText=s,p.appendChild(document.createTextNode("▶")),p.onclick=()=>this.play_animation(),e.appendChild(p);const c=document.createElement("button");c.style.cssText=s,c.appendChild(document.createTextNode("▶❚")),c.onclick=()=>this.next_frame(),e.appendChild(c);const m=document.createElement("button");m.style.cssText=s,m.appendChild(document.createTextNode("▶▶❚")),m.onclick=()=>this.last_frame(),e.appendChild(m);const _=document.createElement("button");_.style.cssText=t,_.appendChild(document.createTextNode("+")),_.onclick=()=>this.faster(),e.appendChild(_),this._toggle_reverse=()=>{a([h,p]),n([d])},this._toogle_pause=()=>{a([d,p]),n([h])},this._toggle_play=()=>{a([d,h]),n([p])},this.loop_state=document.createElement("form"),this.loop_state.style.cssText="margin: 0 auto; display: table";const u=document.createElement("input");u.type="radio",u.value="once",u.name="state";const g=document.createElement("label");g.innerHTML="Once",g.style.cssText="padding: 0 10px 0 5px; user-select:none;";const f=document.createElement("input");f.setAttribute("type","radio"),f.setAttribute("value","loop"),f.setAttribute("name","state");const v=document.createElement("label");v.innerHTML="Loop",v.style.cssText="padding: 0 10px 0 5px; user-select:none;";const y=document.createElement("input");y.setAttribute("type","radio"),y.setAttribute("value","reflect"),y.setAttribute("name","state");const x=document.createElement("label");x.innerHTML="Reflect",x.style.cssText="padding: 0 10px 0 5px; user-select:none;","once"==this.model.loop_policy?u.checked=!0:"loop"==this.model.loop_policy?f.checked=!0:y.checked=!0,this.loop_state.appendChild(u),this.loop_state.appendChild(g),this.loop_state.appendChild(f),this.loop_state.appendChild(v),this.loop_state.appendChild(y),this.loop_state.appendChild(x),this.groupEl.appendChild(this.sliderEl),this.groupEl.appendChild(e),this.model.show_loop_controls&&this.groupEl.appendChild(this.loop_state),this.el.appendChild(this.groupEl)}set_frame(e){this.model.value!=e&&(this.model.value=e),this.sliderEl.value!=String(e)&&(this.sliderEl.value=String(e))}get_loop_state(){for(var e=this.loop_state.state,t=0;t<e.length;t++){var s=e[t];if(s.checked)return s.value}return"once"}set_loop_state(e){for(var t=this.loop_state.state,s=0;s<t.length;s++){var i=t[s];i.value==e&&(i.checked=!0)}}next_frame(){this.set_frame(Math.min(this.model.end,this.model.value+this.model.step))}previous_frame(){this.set_frame(Math.max(this.model.start,this.model.value-this.model.step))}first_frame(){this.set_frame(this.model.start)}last_frame(){this.set_frame(this.model.end)}slower(){this.model.interval=Math.round(this.model.interval/.7),this.model.direction>0?this.play_animation():this.model.direction<0&&this.reverse_animation()}faster(){this.model.interval=Math.round(.7*this.model.interval),this.model.direction>0?this.play_animation():this.model.direction<0&&this.reverse_animation()}anim_step_forward(){if(this.model.value<this.model.end)this.next_frame();else{var e=this.get_loop_state();"loop"==e?this.first_frame():"reflect"==e?(this.last_frame(),this.reverse_animation()):(this.pause_animation(),this.last_frame())}}anim_step_reverse(){if(this.model.value>this.model.start)this.previous_frame();else{var e=this.get_loop_state();"loop"==e?this.last_frame():"reflect"==e?(this.first_frame(),this.play_animation()):(this.pause_animation(),this.first_frame())}}pause_animation(){this._toogle_pause(),this.model.direction=0,this.timer&&(clearInterval(this.timer),this.timer=null)}play_animation(){this.pause_animation(),this._toggle_play(),this.model.direction=1,this.timer||(this.timer=setInterval(()=>this.anim_step_forward(),this.model.interval))}reverse_animation(){this.pause_animation(),this._toggle_reverse(),this.model.direction=-1,this.timer||(this.timer=setInterval(()=>this.anim_step_reverse(),this.model.interval))}}s.PlayerView=r,r.__name__="PlayerView";class d extends l.Widget{constructor(e){super(e)}static init_Player(){this.prototype.default_view=r,this.define({direction:[i.Number,0],interval:[i.Number,500],start:[i.Number],end:[i.Number],step:[i.Number,1],loop_policy:[i.Any,"once"],value:[i.Any,0],show_loop_controls:[i.Boolean,!0]}),this.override({width:400})}}s.Player=d,d.__name__="Player",d.__module__="panel.models.widgets",d.init_Player()},n "47b5ae5c43": function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const r=t("tslib").__importStar(t("@bokehjs/core/properties")),i=t("@bokehjs/core/dom"),l=t("@bokehjs/core/util/object"),s=t("@bokehjs/core/util/eq"),a=t("@bokehjs/models/layouts/html_box"),p=t("99a25e6992"),n=t("990b5dd5c7"),_=t("7116a7a602"),h=(t,e,o)=>{let r=Array.isArray(e)?[]:{};if("click"===o||"hover"===o||"selected"===o){const o=[];if(null==e)return null;const i=t.data;for(let t=0;t<e.points.length;t++){const r=e.points[t];let l={};for(let t in r){const e=r[t];!r.hasOwnProperty(t)||Array.isArray(e)||n.isPlainObject(e)||(l[t]=e)}null!=r&&(r.hasOwnProperty("curveNumber")&&r.hasOwnProperty("pointNumber")&&i[r.curveNumber].hasOwnProperty("customdata")&&(l.customdata=i[r.curveNumber].customdata[r.pointNumber]),r.hasOwnProperty("pointNumbers")&&(l.pointNumbers=r.pointNumbers)),o[t]=l}r.points=o}else if("relayout"===o||"restyle"===o)for(let t in e)e.hasOwnProperty(t)&&(r[t]=e[t]);return e.hasOwnProperty("range")&&(r.range=e.range),e.hasOwnProperty("lassoPoints")&&(r.lassoPoints=e.lassoPoints),r};class u extends _.PanelHTMLBoxView{constructor(){super(…arguments),this._settingViewport=!1,this._plotInitialized=!1,this._reacting=!1,this._relayouting=!1,this._end_relayouting=p.debounce(()=>{this._relayouting=!1},2e3,!1)}connect_signals(){super.connect_signals(),this.connect(this.model.properties.viewport_update_policy.change,this._updateSetViewportFunction),this.connect(this.model.properties.viewport_update_throttle.change,this._updateSetViewportFunction),this.connect(this.model.properties._render_count.change,this.plot),this.connect(this.model.properties.viewport.change,this._updateViewportFromProperty)}render(){super.render(),this._layout_wrapper=i.div({style:"height: 100%; width: 100%"}),this.el.appendChild(this._layout_wrapper),window.Plotly&&this.plot()}plot(){if(!window.Plotly)return;const t=[];for(let e=0;e<this.model.data.length;e++)t.push(this._get_trace(e,!1));let e=n.deepCopy(this.model.layout);if(this._relayouting){const{layout:t}=this._layout_wrapper;Object.keys(t).reduce((t,o)=>{"axis"===o.slice(1,5)&&"range"in t&&(e[o].range=t.range)},{})}this._reacting=!0,window.Plotly.react(this._layout_wrapper,t,e,this.model.config).then(()=>{var t,e;this._updateSetViewportFunction(),this._updateViewportProperty(),this._plotInitialized||(this._layout_wrapper.on("plotly_relayout",t=>{!0!==t._update_from_property&&(this.model.relayout_data=h(this._layout_wrapper,t,"relayout"),this._updateViewportProperty(),this._end_relayouting())}),this._layout_wrapper.on("plotly_relayouting",()=>{"mouseup"!==this.model.viewport_update_policy&&(this._relayouting=!0,this._updateViewportProperty())}),this._layout_wrapper.on("plotly_restyle",t=>{this.model.restyle_data=h(this._layout_wrapper,t,"restyle"),this._updateViewportProperty()}),this._layout_wrapper.on("plotly_click",t=>{this.model.click_data=h(this._layout_wrapper,t,"click")}),this._layout_wrapper.on("plotly_hover",t=>{this.model.hover_data=h(this._layout_wrapper,t,"hover")}),this._layout_wrapper.on("plotly_selected",t=>{this.model.selected_data=h(this._layout_wrapper,t,"selected")}),this._layout_wrapper.on("plotly_clickannotation",t=>{delete t.event,delete t.fullAnnotation,this.model.clickannotation_data=t}),this._layout_wrapper.on("plotly_deselect",()=>{this.model.selected_data=null}),this._layout_wrapper.on("plotly_unhover",()=>{this.model.hover_data=null})),this._plotInitialized=!0,this._reacting=!1,t=this._layout_wrapper,(e=window.getComputedStyle(t).display)&&"none"!==e&&window.Plotly.Plots.resize(this._layout_wrapper)})}_get_trace(t,e){const o=l.clone(this.model.data[t]),r=this.model.data_sources[t];for(const t of r.columns()){let i=r.get_array(t)[0];if(null!=i.shape&&i.shape.length>1){const t=[],e=i.shape;for(let o=0;o<e[0];o++)t.push(i.slice(o*e[1],(o+1)*e[1]));i=t}let l=t.split("."),s=l[l.length-1],a=o;for(let t of l.slice(0,-1))a=a[t];e&&1==l.length?a[s]=[i]:a[s]=i}return o}_updateViewportFromProperty(){if(!window.Plotly||this._settingViewport||this._reacting||!this.model.viewport)return;const t=this._layout_wrapper._fullLayout;Object.keys(this.model.viewport).reduce((e,o)=>{if(s.isEqual(n.get(t,o),e))return!0;{let t=n.deepCopy(this.model.viewport);return t._update_from_property=!0,window.Plotly.relayout(this.el,t),!1}},{})}_updateViewportProperty(){const t=this._layout_wrapper._fullLayout;let e={};for(let o in t){if(!t.hasOwnProperty(o))continue;let r=o.slice(0,5);"xaxis"!==r&&"yaxis"!==r||(e[o+".range"]=n.deepCopy(t[o].range))}s.isEqual(e,this.model.viewport)||this._setViewport(e)}_updateSetViewportFunction(){"continuous"===this.model.viewport_update_policy||"mouseup"===this.model.viewport_update_policy?this._setViewport=t=>{this._settingViewport||(this._settingViewport=!0,this.model.viewport=t,this._settingViewport=!1)}:this._setViewport=n.throttle(t=>{this._settingViewport||(this._settingViewport=!0,this.model.viewport=t,this._settingViewport=!1)},this.model.viewport_update_throttle)}}o.PlotlyPlotView=u,u.__name__="PlotlyPlotView";class d extends a.HTMLBox{constructor(t){super(t)}static init_PlotlyPlot(){this.prototype.default_view=u,this.define({data:[r.Array,[]],layout:[r.Any,{}],config:[r.Any,{}],data_sources:[r.Array,[]],relayout_data:[r.Any,{}],restyle_data:[r.Array,[]],click_data:[r.Any,{}],hover_data:[r.Any,{}],clickannotation_data:[r.Any,{}],selected_data:[r.Any,{}],viewport:[r.Any,{}],viewport_update_policy:[r.String,"mouseup"],viewport_update_throttle:[r.Number,200],_render_count:[r.Number,0]})}}o.PlotlyPlot=d,d.__name__="PlotlyPlot",d.__module__="panel.models.plotly",d.init_PlotlyPlot()},n "99a25e6992": function _(n,l,u){function t(n,l,u){var t,e,o,a,r;function i(){var c=Date.now()-a;c<l&&c>=0?t=setTimeout(i,l-c):(t=null,u||(r=n.apply(o,e),o=e=null))}null==l&&(l=100);var c=function(){o=this,e=arguments,a=Date.now();var c=u&&!t;return t||(t=setTimeout(i,l)),c&&(r=n.apply(o,e),o=e=null),r};return c.clear=function(){t&&(clearTimeout(t),t=null)},c.flush=function(){t&&(r=n.apply(o,e),o=e=null,clearTimeout(t),t=null)},c}t.debounce=t,l.exports=t},n "990b5dd5c7": function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.get=(t,e,n)=>{const r=n=>String.prototype.split.call(e,n).filter(Boolean).reduce((t,e)=>null!=t?t[e]:t,t),o=r(/[,[\]]+?/)||r(/[,[\].]+?/);return void 0===o||o===t?n:o},n.throttle=function(t,e){var n=0;return function(){var r=Number(new Date);r-n>=e&&(t(),n=r)}},n.deepCopy=function t(e){var n;if(null==e||"object"!=typeof e)return e;if(e instanceof Array){n=[];for(var r=0,o=e.length;r<o;r++)n[r]=t(e[r]);return n}if(e instanceof Object){const n={};for(const r in e){const o=r;e.hasOwnProperty(o)&&(n[o]=t(e[o]))}return n}throw new Error("Unable to copy obj! Its type isn’t supported.")},n.isPlainObject=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},n "765e9cea08": function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/models/layouts/html_box"),r=e("7116a7a602");class l extends o.HTMLBoxView{connect_signals(){super.connect_signals();const e=()=>{this.render(),this.root.compute_layout()};this.connect(this.model.properties.height.change,e),this.connect(this.model.properties.width.change,e),this.connect(this.model.properties.height_policy.change,e),this.connect(this.model.properties.width_policy.change,e),this.connect(this.model.properties.sizing_mode.change,e),this.connect(this.model.properties.active.change,()=>this.setCSS()),this.connect(this.model.properties.bar_color.change,()=>this.setCSS()),this.connect(this.model.properties.css_classes.change,()=>this.setCSS()),this.connect(this.model.properties.value.change,()=>this.setValue()),this.connect(this.model.properties.max.change,()=>this.setMax())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:"inline-block"});this.progressEl=document.createElement("progress"),this.setValue(),this.setMax(),r.set_size(this.progressEl,this.model),this.setCSS();for(const s in e)this.progressEl.style.setProperty(s,e[s]);this.el.appendChild(this.progressEl)}setCSS(){let e=this.model.css_classes.join(" ")+" "+this.model.bar_color;this.model.active&&(e+=" active"),this.progressEl.className=e}setValue(){null!=this.model.value&&(this.progressEl.value=this.model.value)}setMax(){null!=this.model.max&&(this.progressEl.max=this.model.max)}_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new r.CachedVariadicBox(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}}t.ProgressView=l,l.__name__="ProgressView";class n extends o.HTMLBox{constructor(e){super(e)}static init_Progress(){this.prototype.default_view=l,this.define({active:[i.Boolean,!0],bar_color:[i.String,"primary"],style:[i.Any,{}],max:[i.Number,100],value:[i.Any,null]})}}t.Progress=n,n.__name__="Progress",n.__module__="panel.models.widgets",n.init_Progress()},n "ff9dd91f7b": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib"),n=e("@bokehjs/core/dom"),l=e("@bokehjs/core/util/types"),o=i.__importStar(e("@bokehjs/core/properties")),c=e("@bokehjs/models/widgets/input_widget"),r=e("@bokehjs/styles/widgets/inputs");class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!1,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.style.backgroundImage="none",this.select_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=this.model.value;for(const t of this.el.querySelectorAll("option"))t.value===e&&(t.selected=!0);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector("select:focus");let t=null;for(const e of this.el.querySelectorAll("option"))if(e.selected){t=e.value;break}this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.SingleSelectView=h,h.__name__="SingleSelectView";class d extends c.InputWidget{constructor(e){super(e)}static init_SingleSelect(){this.prototype.default_view=h,this.define({value:[o.String,""],options:[o.Array,[]],size:[o.Number,4]})}}s.SingleSelect=d,d.__name__="SingleSelect",d.__module__="panel.models.widgets",d.init_SingleSelect()},n "38b2bc9574": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),a=e("@bokehjs/core/view"),o=e("@bokehjs/core/util/array"),c=e("@bokehjs/model"),n=e("@bokehjs/protocol/receiver");class r extends a.View{renderTo(){}}s.StateView=r,r.__name__="StateView";class _ extends c.Model{constructor(e){super(e),this._receiver=new n.Receiver,this._cache={}}apply_state(e){this._receiver.consume(e.header),this._receiver.consume(e.metadata),this._receiver.consume(e.content),this._receiver.message&&this.document&&this.document.apply_json_patch(this._receiver.message.content)}_receive_json(e,t){const s=JSON.parse(e);this._cache[t]=s;let i=this.state;for(const e of this.values)i=i[e];i===t?this.apply_state(s):this._cache[i]&&this.apply_state(this._cache[i])}set_state(e,t){let s=o.copy(this.values);s[this.widgets[e.id]]=t;let i=this.state;for(const e of s)i=i[e];var a,c,n;this.values=s,this.json?this._cache[i]?this.apply_state(this._cache[i]):(a=i,c=e=>this._receive_json(e,i),(n=new XMLHttpRequest).overrideMimeType("application/json"),n.open("GET",a,!0),n.onreadystatechange=function(){4==n.readyState&&200==n.status&&c(n.responseText)},n.send(null)):this.apply_state(i)}static init_State(){this.prototype.default_view=r,this.define({json:[i.Boolean,!1],state:[i.Any,{}],widgets:[i.Any,{}],values:[i.Any,[]]})}}s.State=_,_.__name__="State",_.__module__="panel.models.state",_.init_State()},n "294adeb985": function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t("tslib").__importStar(t("@bokehjs/core/properties")),a=t("@bokehjs/core/util/types"),n=t("@bokehjs/models/layouts/html_box");class c extends n.HTMLBoxView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,this._plot),this.connect(this.model.properties.data_sources.change,()=>this._connect_sources()),this._connected=[],this._connect_sources()}_connect_sources(){for(const t in this.model.data_sources){const e=this.model.data_sources[t];this._connected.indexOf(t)<0&&(this.connect(e.properties.data.change,this._plot),this._connected.push(t))}}_fetch_datasets(){const t={};for(const e in this.model.data_sources){const s=this.model.data_sources[e],o=[],a=s.columns();for(let t=0;t<s.get_length();t++){const e={};for(const o of a)e[o]=s.data[o][t];o.push(e)}t[e]=o}return t}render(){super.render(),this._plot()}_plot(){const t=this.model.data;if(null!=t&&window.vegaEmbed){if(this.model.data_sources&&Object.keys(this.model.data_sources).length>0){const e=this._fetch_datasets();if("data"in e&&(t.data.values=e.data,delete e.data),null!=t.data){const s=a.isArray(t.data)?t.data:[t.data];for(const t of s)t.name in e&&(t.values=e[t.name],delete e[t.name])}this.model.data.datasets=e}window.vegaEmbed(this.el,this.model.data,{actions:!1})}}}s.VegaPlotView=c,c.__name__="VegaPlotView";class i extends n.HTMLBox{constructor(t){super(t)}static init_VegaPlot(){this.prototype.default_view=c,this.define({data:[o.Any],data_sources:[o.Any]})}}s.VegaPlot=i,i.__name__="VegaPlot",i.__module__="panel.models.vega",i.init_VegaPlot()},n "b0c3e9e9c2": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),l=e("7116a7a602");class d extends l.PanelHTMLBoxView{initialize(){super.initialize(),this._blocked=!1,this._setting=!1,this._time=Date.now()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.loop.change,()=>this.set_loop()),this.connect(this.model.properties.paused.change,()=>this.set_paused()),this.connect(this.model.properties.time.change,()=>this.set_time()),this.connect(this.model.properties.value.change,()=>this.set_value()),this.connect(this.model.properties.volume.change,()=>this.set_volume())}render(){super.render(),this.videoEl=document.createElement("video"),this.model.sizing_mode&&"fixed"!==this.model.sizing_mode||(this.model.height&&(this.videoEl.height=this.model.height),this.model.width&&(this.videoEl.width=this.model.width)),this.videoEl.style.objectFit="fill",this.videoEl.style.minWidth="100%",this.videoEl.style.minHeight="100%",this.videoEl.controls=!0,this.videoEl.src=this.model.value,this.videoEl.currentTime=this.model.time,this.videoEl.loop=this.model.loop,null!=this.model.volume?this.videoEl.volume=this.model.volume/100:this.model.volume=100*this.videoEl.volume,this.videoEl.onpause=()=>this.model.paused=!0,this.videoEl.onplay=()=>this.model.paused=!1,this.videoEl.ontimeupdate=()=>this.update_time(this),this.videoEl.onvolumechange=()=>this.update_volume(this),this.el.appendChild(this.videoEl),this.model.paused||this.videoEl.play()}update_time(e){e._setting?e._setting=!1:Date.now()-e._time<e.model.throttle||(e._blocked=!0,e.model.time=e.videoEl.currentTime,e._time=Date.now())}update_volume(e){e._setting?e._setting=!1:(e._blocked=!0,e.model.volume=100*e.videoEl.volume)}set_loop(){this.videoEl.loop=this.model.loop}set_paused(){!this.videoEl.paused&&this.model.paused&&this.videoEl.pause(),this.videoEl.paused&&!this.model.paused&&this.videoEl.play()}set_volume(){this._blocked?this._blocked=!1:(this._setting=!0,null!=this.model.volume&&(this.videoEl.volume=this.model.volume/100))}set_time(){this._blocked?this._blocked=!1:(this._setting=!0,this.videoEl.currentTime=this.model.time)}set_value(){this.videoEl.src=this.model.value}}t.VideoView=d,d.__name__="VideoView";class h extends s.HTMLBox{constructor(e){super(e)}static init_Video(){this.prototype.default_view=d,this.define({loop:[o.Boolean,!1],paused:[o.Boolean,!0],time:[o.Number,0],throttle:[o.Number,250],value:[o.Any,""],volume:[o.Number,null]})}}t.Video=h,h.__name__="Video",h.__module__="panel.models.widgets",h.init_Video()},n "3c7145a2fa": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/models/layouts/html_box"),h=e("7116a7a602");class a extends h.PanelHTMLBoxView{constructor(){super(…arguments),this.constraints={audio:!1,video:!0}}initialize(){super.initialize(),null!==this.model.timeout&&this.set_timeout()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.timeout.change,()=>this.set_timeout()),this.connect(this.model.properties.snapshot.change,()=>this.snapshot()),this.connect(this.model.properties.paused.change,()=>this.pause())}pause(){this.model.paused&&(null!=this.timer&&(clearInterval(this.timer),this.timer=null),this.videoEl.pause()),this.set_timeout()}set_timeout(){this.timer&&(clearInterval(this.timer),this.timer=null),this.model.timeout>0&&(this.timer=setInterval(()=>this.snapshot(),this.model.timeout))}snapshot(){this.canvasEl.width=this.videoEl.videoWidth,this.canvasEl.height=this.videoEl.videoHeight;const e=this.canvasEl.getContext("2d");e&&e.drawImage(this.videoEl,0,0,this.canvasEl.width,this.canvasEl.height),this.model.value=this.canvasEl.toDataURL("image/"+this.model.format,.95)}remove(){super.remove(),this.timer&&(clearInterval(this.timer),this.timer=null)}render(){super.render(),this.videoEl||(this.videoEl=document.createElement("video"),this.model.sizing_mode&&"fixed"!==this.model.sizing_mode||(this.model.height&&(this.videoEl.height=this.model.height),this.model.width&&(this.videoEl.width=this.model.width)),this.videoEl.style.objectFit="fill",this.videoEl.style.minWidth="100%",this.videoEl.style.minHeight="100%",this.canvasEl=document.createElement("canvas"),this.el.appendChild(this.videoEl),navigator.mediaDevices.getUserMedia&&navigator.mediaDevices.getUserMedia(this.constraints).then(e=>{this.videoEl.srcObject=e,this.model.paused||this.videoEl.play()}).catch(console.error))}}i.VideoStreamView=a,a.__name__="VideoStreamView";class l extends o.HTMLBox{constructor(e){super(e)}static init_VideoStream(){this.prototype.default_view=a,this.define({format:[s.String,"png"],paused:[s.Boolean,!1],snapshot:[s.Boolean,!1],timeout:[s.Number,0],value:[s.Any]}),this.override({height:240,width:320})}}i.VideoStream=l,l.__name__="VideoStream",l.__module__="panel.models.widgets",l.init_VideoStream()},n "c51f25e2a7": function _(e,o,l){Object.defineProperty(l,"__esModule",{value:!0});var V=e("6ed30646d7");l.VTKJSPlot=V.VTKJSPlot;var t=e("087f1e0be6");l.VTKVolumePlot=t.VTKVolumePlot;var a=e("3ae7537200");l.VTKAxes=a.VTKAxes;var r=e("4baab0b7ce");l.VTKSynchronizedPlot=r.VTKSynchronizedPlot},n "6ed30646d7": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("021b2a3929"),a=e("6c442cdcb4");class r extends s.AbstractVTKView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>{this.invalidate_render()})}render(){super.render(),this._create_orientation_widget(),this._set_axes()}invalidate_render(){this._vtk_renwin=null,super.invalidate_render()}init_vtk_renwin(){this._vtk_renwin=a.vtkns.FullScreenRenderWindow.newInstance({rootContainer:this.el,container:this._vtk_container})}plot(){if(!this.model.data)return void this._vtk_renwin.getRenderWindow().render();const e=a.vtkns.DataAccessHelper.get("zip",{zipContent:atob(this.model.data),callback:t=>{const n=a.vtkns.HttpSceneLoader.newInstance({renderer:this._vtk_renwin.getRenderer(),dataAccessHelper:e}),i=a.vtk.macro.debounce(()=>setTimeout(()=>{null==this._axes&&this.model.axes&&this._set_axes(),this._set_camera_state(),this._get_camera_state()},100),100);n.setUrl("index.json"),n.onReady(i)}})}}n.VTKJSPlotView=r,r.__name__="VTKJSPlotView";class o extends s.AbstractVTKPlot{static init_VTKJSPlot(){this.prototype.default_view=r,this.define({data:[i.String],enable_keybindings:[i.Boolean,!1]})}}n.VTKJSPlot=o,o.__name__="VTKJSPlot",o.init_VTKJSPlot()},n "021b2a3929": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e("tslib").__importStar(e("@bokehjs/core/properties")),r=e("@bokehjs/core/dom"),s=e("@bokehjs/models/layouts/html_box"),a=e("@bokehjs/core/util/object"),o=e("7116a7a602"),_=e("6c442cdcb4"),d=e("c010237f8b"),c={padding:"0px 2px 0px 2px",maxHeight:"150px",height:"auto",backgroundColor:"rgba(255, 255, 255, 0.4)",borderRadius:"10px",margin:"2px",boxSizing:"border-box",overflow:"hidden",overflowY:"auto",transition:"width 0.1s linear",bottom:"0px",position:"absolute"};class h extends o.PanelHTMLBoxView{initialize(){super.initialize(),this._camera_callbacks=[],this._renderable=!0,this._setting_camera=!1}_add_colorbars(){const e=this.el.querySelector(".vtk_info");if(e&&this.el.removeChild(e),this.model.color_mappers.length<1)return;const t=document.createElement("div");t.classList.add("vtk_info"),_.applyStyle(t,c),_.applyStyle(t,{width:"350px"}),this.el.appendChild(t);const i=[];this.model.color_mappers.forEach(e=>{const n=new d.VTKColorBar(t,e);i.push(n)});const n=document.createElement("div");_.applyStyle(n,{textAlign:"center",fontSize:"20px"}),n.innerText="…",t.addEventListener("click",()=>{"30px"===t.style.width?(t.removeChild(n),_.applyStyle(t,{height:"auto",width:"350px"}),i.forEach(e=>t.appendChild(e.canvas))):(i.forEach(e=>t.removeChild(e.canvas)),_.applyStyle(t,{height:"30px",width:"30px"}),t.appendChild(n))}),t.click()}connect_signals(){super.connect_signals(),this.on_change(this.model.properties.orientation_widget,()=>{this._orientation_widget_visibility(this.model.orientation_widget)}),this.on_change(this.model.properties.camera,()=>this._set_camera_state()),this.on_change(this.model.properties.axes,()=>{this._delete_axes(),this.model.axes&&this._set_axes(),this._vtk_render()}),this.on_change(this.model.properties.color_mappers,()=>this._add_colorbars())}render(){super.render(),this._vtk_renwin&&this._vtk_container?(o.set_size(this._vtk_container,this.model),this.el.appendChild(this._vtk_container)):(this._orientationWidget=null,this._axes=null,this._vtk_container=r.div(),this.init_vtk_renwin(),o.set_size(this._vtk_container,this.model),this.el.appendChild(this._vtk_container),this._vtk_renwin.getInteractor().onEndAnimation(()=>this._get_camera_state()),this._remove_default_key_binding(),this._bind_key_events(),this.plot(),this._add_colorbars(),this.model.renderer_el=this._vtk_renwin)}after_layout(){super.after_layout(),this._renderable&&this._vtk_renwin.resize(),this._vtk_render()}invalidate_render(){this._unsubscribe_camera_cb(),super.invalidate_render()}remove(){this._unsubscribe_camera_cb(),window.removeEventListener("resize",this._vtk_renwin.resize),this._vtk_renwin.delete(),super.remove()}get _vtk_camera_state(){const e=this._vtk_renwin.getRenderer().getActiveCamera();let t;return e&&(t=a.clone(e.get()),delete t.classHierarchy,delete t.vtkObject,delete t.vtkCamera,delete t.viewPlaneNormal,delete t.flattenedDepIds,delete t.managedInstanceId,delete t.directionOfProjection),t}get _axes_canvas(){let e=this._vtk_container.querySelector(".axes-canvas");return e||(e=r.canvas({style:{position:"absolute",top:"0",left:"0",width:"100%",height:"100%"}}),e.classList.add("axes-canvas"),this._vtk_container.appendChild(e),this._vtk_renwin.setResizeCallback(()=>{if(this._axes_canvas){const e=this._vtk_container.getBoundingClientRect(),t=Math.floor(e.width*window.devicePixelRatio),i=Math.floor(e.height*window.devicePixelRatio);this._axes_canvas.setAttribute("width",t.toFixed()),this._axes_canvas.setAttribute("height",i.toFixed())}})),e}_bind_key_events(){this.el.addEventListener("mouseenter",()=>{const e=this._vtk_renwin.getInteractor();this.model.enable_keybindings&&(document.querySelector("body").addEventListener("keypress",e.handleKeyPress),document.querySelector("body").addEventListener("keydown",e.handleKeyDown),document.querySelector("body").addEventListener("keyup",e.handleKeyUp))}),this.el.addEventListener("mouseleave",()=>{const e=this._vtk_renwin.getInteractor();document.querySelector("body").removeEventListener("keypress",e.handleKeyPress),document.querySelector("body").removeEventListener("keydown",e.handleKeyDown),document.querySelector("body").removeEventListener("keyup",e.handleKeyUp)})}_create_orientation_widget(){const e=_.vtkns.AxesActor.newInstance();this._orientationWidget=_.vtkns.OrientationMarkerWidget.newInstance({actor:e,interactor:this._vtk_renwin.getInteractor()}),this._orientationWidget.setEnabled(!0),this._orientationWidget.setViewportCorner(_.vtkns.OrientationMarkerWidget.Corners.BOTTOM_RIGHT),this._orientationWidget.setViewportSize(.15),this._orientationWidget.setMinPixelSize(75),this._orientationWidget.setMaxPixelSize(300),this.model.interactive_orientation_widget&&this._make_orientation_widget_interactive(),this._orientation_widget_visibility(this.model.orientation_widget)}_make_orientation_widget_interactive(){this._widgetManager=_.vtkns.WidgetManager.newInstance(),this._widgetManager.setRenderer(this._orientationWidget.getRenderer());const e=this._orientationWidget.getActor(),t=_.vtkns.InteractiveOrientationWidget.newInstance();t.placeWidget(e.getBounds()),t.setBounds(e.getBounds()),t.setPlaceFactor(1);this._widgetManager.addWidget(t).onOrientationChange(({direction:e})=>{const t=this._vtk_renwin.getRenderer().getActiveCamera(),i=t.getFocalPoint(),n=t.getPosition(),r=t.getViewUp(),s=Math.sqrt(Math.pow(n[0]-i[0],2)+Math.pow(n[1]-i[1],2)+Math.pow(n[2]-i[2],2));t.setPosition(i[0]+e[0]*s,i[1]+e[1]*s,i[2]+e[2]*s),e[0]&&t.setViewUp(_.majorAxis(r,1,2)),e[1]&&t.setViewUp(_.majorAxis(r,0,2)),e[2]&&t.setViewUp(_.majorAxis(r,0,1)),this._vtk_renwin.getRenderer().resetCameraClippingRange(),this._vtk_render(),this._get_camera_state()})}_delete_axes(){if(this._axes){Object.keys(this._axes).forEach(e=>this._vtk_renwin.getRenderer().removeActor(this._axes[e])),this._axes=null;const e=this._axes_canvas.getContext("2d");e&&e.clearRect(0,0,this._axes_canvas.clientWidth*window.devicePixelRatio,this._axes_canvas.clientHeight*window.devicePixelRatio)}}_get_camera_state(){this._setting_camera||(this._setting_camera=!0,this.model.camera=this._vtk_camera_state,this._setting_camera=!1)}_orientation_widget_visibility(e){this._orientationWidget.setEnabled(e),null!=this._widgetManager&&(e?this._widgetManager.enablePicking():this._widgetManager.disablePicking()),this._vtk_render()}_remove_default_key_binding(){const e=this._vtk_renwin.getInteractor();document.querySelector("body").removeEventListener("keypress",e.handleKeyPress),document.querySelector("body").removeEventListener("keydown",e.handleKeyDown),document.querySelector("body").removeEventListener("keyup",e.handleKeyUp)}_set_axes(){if(this.model.axes&&this._vtk_renwin.getRenderer()){const{psActor:e,axesActor:t,gridActor:i}=this.model.axes.create_axes(this._axes_canvas);this._axes={psActor:e,axesActor:t,gridActor:i},this._vtk_renwin.getRenderer().addActor(e),this._vtk_renwin.getRenderer().addActor(t),this._vtk_renwin.getRenderer().addActor(i)}}_set_camera_state(){this._setting_camera||void 0===this._vtk_renwin.getRenderer()||(this._setting_camera=!0,this.model.camera&&JSON.stringify(this.model.camera)!=JSON.stringify(this._vtk_camera_state)&&this._vtk_renwin.getRenderer().getActiveCamera().set(this.model.camera),this._vtk_renwin.getRenderer().resetCameraClippingRange(),this._vtk_render(),this._setting_camera=!1)}_unsubscribe_camera_cb(){this._camera_callbacks.splice(0,this._camera_callbacks.length).map(e=>e.unsubscribe())}_vtk_render(){this._renderable&&(this._orientationWidget&&this._orientationWidget.updateMarkerOrientation(),this._vtk_renwin.getRenderWindow().render())}}i.AbstractVTKView=h,h.__name__="AbstractVTKView";class l extends s.HTMLBox{constructor(e){super(e)}getActors(){return this.renderer_el.getRenderer().getActors()}static init_AbstractVTKPlot(){this.define({axes:[n.Instance],camera:[n.Instance],color_mappers:[n.Array,[]],orientation_widget:[n.Boolean,!1],interactive_orientation_widget:[n.Boolean,!1]}),this.override({height:300,width:300})}}i.AbstractVTKPlot=l,l.__name__="AbstractVTKPlot",l.__module__="panel.models.vtk",l.init_AbstractVTKPlot()},n "6c442cdcb4": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e("@bokehjs/core/util/array");if(n.ARRAY_TYPES={uint8:Uint8Array,int8:Int8Array,uint16:Uint16Array,int16:Int16Array,uint32:Uint32Array,int32:Int32Array,float32:Float32Array,float64:Float64Array},n.vtk=window.vtk,n.vtkns={},n.vtk){n.vtkns.Actor=n.vtk.Rendering.Core.vtkActor,n.vtkns.AxesActor=n.vtk.Rendering.Core.vtkAxesActor,n.vtkns.Base64=n.vtk.Common.Core.vtkBase64,n.vtkns.BoundingBox=n.vtk.Common.DataModel.vtkBoundingBox,n.vtkns.Camera=n.vtk.Rendering.Core.vtkCamera,n.vtkns.ColorTransferFunction=n.vtk.Rendering.Core.vtkColorTransferFunction,n.vtkns.CubeSource=n.vtk.Filters.Sources.vtkCubeSource,n.vtkns.DataAccessHelper=n.vtk.IO.Core.DataAccessHelper,n.vtkns.DataArray=n.vtk.Common.Core.vtkDataArray,n.vtkns.Follower=n.vtk.Rendering.Core.vtkFollower,n.vtkns.FullScreenRenderWindow=n.vtk.Rendering.Misc.vtkFullScreenRenderWindow,n.vtkns.Glyph3DMapper=n.vtk.Rendering.Core.vtkGlyph3DMapper,n.vtkns.HttpSceneLoader=n.vtk.IO.Core.vtkHttpSceneLoader,n.vtkns.ImageData=n.vtk.Common.DataModel.vtkImageData,n.vtkns.ImageMapper=n.vtk.Rendering.Core.vtkImageMapper,n.vtkns.ImageProperty=n.vtk.Rendering.Core.vtkImageProperty,n.vtkns.ImageSlice=n.vtk.Rendering.Core.vtkImageSlice,n.vtkns.InteractiveOrientationWidget=n.vtk.Widgets.Widgets3D.vtkInteractiveOrientationWidget,n.vtkns.InteractorStyleTrackballCamera=n.vtk.Interaction.Style.vtkInteractorStyleTrackballCamera,n.vtkns.Light=n.vtk.Rendering.Core.vtkLight,n.vtkns.LineSource=n.vtk.Filters.Sources.vtkLineSource,n.vtkns.LookupTable=n.vtk.Common.Core.vtkLookupTable,n.vtkns.macro=n.vtk.macro,n.vtkns.Mapper=n.vtk.Rendering.Core.vtkMapper,n.vtkns.OpenGLRenderWindow=n.vtk.Rendering.OpenGL.vtkRenderWindow,n.vtkns.OrientationMarkerWidget=n.vtk.Interaction.Widgets.vtkOrientationMarkerWidget,n.vtkns.OutlineFilter=n.vtk.Filters.General.vtkOutlineFilter,n.vtkns.PiecewiseFunction=n.vtk.Common.DataModel.vtkPiecewiseFunction,n.vtkns.PixelSpaceCallbackMapper=n.vtk.Rendering.Core.vtkPixelSpaceCallbackMapper,n.vtkns.PlaneSource=n.vtk.Filters.Sources.vtkPlaneSource,n.vtkns.PointSource=n.vtk.Filters.Sources.vtkPointSource,n.vtkns.PolyData=n.vtk.Common.DataModel.vtkPolyData,n.vtkns.Property=n.vtk.Rendering.Core.vtkProperty,n.vtkns.Renderer=n.vtk.Rendering.Core.vtkRenderer,n.vtkns.RenderWindow=n.vtk.Rendering.Core.vtkRenderWindow,n.vtkns.RenderWindowInteractor=n.vtk.Rendering.Core.vtkRenderWindowInteractor,n.vtkns.SphereMapper=n.vtk.Rendering.Core.vtkSphereMapper,n.vtkns.SynchronizableRenderWindow=n.vtk.Rendering.Misc.vtkSynchronizableRenderWindow,n.vtkns.ThirdParty=n.vtk.ThirdParty,n.vtkns.Texture=n.vtk.Rendering.Core.vtkTexture,n.vtkns.Volume=n.vtk.Rendering.Core.vtkVolume,n.vtkns.VolumeController=n.vtk.Interaction.UI.vtkVolumeController,n.vtkns.VolumeMapper=n.vtk.Rendering.Core.vtkVolumeMapper,n.vtkns.VolumeProperty=n.vtk.Rendering.Core.vtkVolumeProperty,n.vtkns.WidgetManager=n.vtk.Widgets.Core.vtkWidgetManager;const{vtkObjectManager:e}=n.vtkns.SynchronizableRenderWindow;e.setTypeMapping("vtkVolumeMapper",n.vtkns.VolumeMapper.newInstance,e.oneTimeGenericUpdater),e.setTypeMapping("vtkSmartVolumeMapper",n.vtkns.VolumeMapper.newInstance,e.oneTimeGenericUpdater),e.setTypeMapping("vtkFollower",n.vtkns.Follower.newInstance,e.genericUpdater)}function o(e){const t=Math.min(Math.max(Math.round(e),0),255).toString(16);return 2==t.length?t:"0"+t}function a(e,t,n){return"#"+o(e)+o(t)+o(n)}function k(e){for(var t=new ArrayBuffer(e.length),n=new Uint8Array(t),r=0,o=e.length;r<o;r++)n[r]=e.charCodeAt(r);return t}n.applyStyle=function(e,t){Object.keys(t).forEach(n=>{e.style[n]=t[n]})},n.hexToRGB=function(e){return[parseInt(e.slice(1,3),16)/255,parseInt(e.slice(3,5),16)/255,parseInt(e.slice(5,7),16)/255]},n.rgbToHex=a,n.vtkLutToMapper=function(e){const{scale:t,nodes:o}=e.get("scale","nodes");if(t!==n.vtkns.ColorTransferFunction.Scale.LINEAR)throw"Error transfer function scale not handle";const k=o.map(e=>e.x),v=Math.min(…k),i=Math.max(…k),s=r.linspace(v,i,255),c=[0,0,0];return{low:v,high:i,palette:s.map(t=>(e.getColor(t,c),a(255*c[0],255*c[1],255*c[2])))}},n.data2VTKImageData=function(e){const t=n.vtkns.ImageData.newInstance({spacing:e.spacing});t.setDimensions(e.dims),t.setOrigin(null!=e.origin?e.origin:e.dims.map(e=>e/2));const r=n.vtkns.DataArray.newInstance({name:"scalars",numberOfComponents:1,values:new n.ARRAY_TYPES[e.dtype](k(atob(e.buffer)))});return t.getPointData().setScalars(r),t},n.majorAxis=function(e,t,n){const r=[0,0,0],o=Math.abs(e[t])>Math.abs(e[n])?t:n,a=e[o]>0?1:-1;return r[o]=a,r},n.cartesian_product=function(…e){return e.reduce((e,t)=>e.flatMap(e=>t.map(t=>[].concat(e,t))))}},n "c010237f8b": function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t("@bokehjs/models/mappers"),h=t("@bokehjs/core/util/array");class a{constructor(t,i,e={}){this.parent=t,this.mapper=i,this.options=e,e.ticksNum||(e.ticksNum=5),e.fontFamily||(e.fontFamily="Arial"),e.fontSize||(e.fontSize="12px"),e.ticksSize||(e.ticksSize=2),this.canvas=document.createElement("canvas"),this.canvas.style.width="100%",this.parent.appendChild(this.canvas),this.ctx=this.canvas.getContext("2d"),this.ctx.font=`${this.options.fontSize} ${this.options.fontFamily}`,this.ctx.lineWidth=e.ticksSize,e.height||(e.height=4*(this.font_height+1)+"px"),this.canvas.style.height=e.height,this.draw_colorbar()}get values(){const{min:t,max:i}=this.mapper.metrics;return h.linspace(t,i,this.options.ticksNum)}get ticks(){return this.values.map(t=>t.toExponential(3))}get title(){return this.mapper.name?this.mapper.name:"scalars"}get font_height(){let t=0;return this.values.forEach(i=>{const{actualBoundingBoxAscent:e,actualBoundingBoxDescent:s}=this.ctx.measureText(""+i),h=e+s;t<h&&(t=h)}),t}draw_colorbar(){this.canvas.width=this.canvas.clientWidth,this.canvas.height=this.canvas.clientHeight;const{palette:t}=this.mapper;this.ctx.font=`${this.options.fontSize} ${this.options.fontFamily}`;const i=this.font_height;this.ctx.save();const e=document.createElement("canvas"),a=t.length;e.width=a,e.height=1;const n=e.getContext("2d"),c=n.getImageData(0,0,a,1),o=new s.LinearColorMapper({palette:t}).rgba_mapper.v_compute(h.range(0,t.length));c.data.set(o),n.putImageData(c,0,0),this.ctx.drawImage(e,0,2*(this.font_height+1)+1,this.canvas.width,this.canvas.height),this.ctx.restore(),this.ctx.save(),this.ctx.textAlign="center",this.ctx.fillText(this.title,this.canvas.width/2,i+1),this.ctx.restore(),this.ctx.save();const r=h.linspace(0,this.canvas.width,5);r.forEach((t,e)=>{let s=t;0==e?(s=t+Math.ceil(this.ctx.lineWidth/2),this.ctx.textAlign="left"):e==r.length-1?(s=t-Math.ceil(this.ctx.lineWidth/2),this.ctx.textAlign="right"):this.ctx.textAlign="center",this.ctx.moveTo(s,2*(i+1)),this.ctx.lineTo(s,2*(i+1)+5),this.ctx.stroke(),this.ctx.fillText(""+this.ticks[e],t,2*(i+1))}),this.ctx.restore()}}e.VTKColorBar=a,a.__name__="VTKColorBar"},n "087f1e0be6": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),n=e("021b2a3929"),r=e("6c442cdcb4");class o extends n.AbstractVTKView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>{this._vtk_image_data=r.data2VTKImageData(this.model.data),this.invalidate_render()}),this.connect(this.model.properties.colormap.change,()=>{this.colormap_selector.value=this.model.colormap;const e=new Event("change");this.colormap_selector.dispatchEvent(e)}),this.connect(this.model.properties.shadow.change,()=>{this.shadow_selector.value=this.model.shadow?"1":"0";const e=new Event("change");this.shadow_selector.dispatchEvent(e)}),this.connect(this.model.properties.sampling.change,()=>{this.sampling_slider.value=this.model.sampling.toFixed(2);const e=new Event("input");this.sampling_slider.dispatchEvent(e)}),this.connect(this.model.properties.edge_gradient.change,()=>{this.edge_gradient_slider.value=this.model.edge_gradient.toFixed(2);const e=new Event("input");this.edge_gradient_slider.dispatchEvent(e)}),this.connect(this.model.properties.rescale.change,()=>{this._controllerWidget.setRescaleColorMap(this.model.rescale),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.ambient.change,()=>{this.volume.getProperty().setAmbient(this.model.ambient),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.diffuse.change,()=>{this.volume.getProperty().setDiffuse(this.model.diffuse),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.specular.change,()=>{this.volume.getProperty().setSpecular(this.model.specular),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.specular_power.change,()=>{this.volume.getProperty().setSpecularPower(this.model.specular_power),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.display_volume.change,()=>{this._set_volume_visibility(this.model.display_volume),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.display_slices.change,()=>{this._set_slices_visibility(this.model.display_slices),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.slice_i.change,()=>{void 0!==this.image_actor_i&&(this.image_actor_i.getMapper().setISlice(this.model.slice_i),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.slice_j.change,()=>{void 0!==this.image_actor_j&&(this.image_actor_j.getMapper().setJSlice(this.model.slice_j),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.slice_k.change,()=>{void 0!==this.image_actor_k&&(this.image_actor_k.getMapper().setKSlice(this.model.slice_k),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.render_background.change,()=>{this._vtk_renwin.getRenderer().setBackground(…r.hexToRGB(this.model.render_background)),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.interpolation.change,()=>{this._set_interpolation(this.model.interpolation),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.controller_expanded.change,()=>{null!=this._controllerWidget&&this._controllerWidget.setExpanded(this.model.controller_expanded)})}render(){this._vtk_renwin=null,this._orientationWidget=null,this._axes=null,super.render(),this._create_orientation_widget(),this._set_axes(),this.model.camera?this._set_camera_state():this._vtk_renwin.getRenderer().resetCamera(),this._get_camera_state()}invalidate_render(){this._vtk_renwin=null,super.invalidate_render()}init_vtk_renwin(){this._vtk_renwin=r.vtkns.FullScreenRenderWindow.newInstance({rootContainer:this.el,container:this._vtk_container})}plot(){this._controllerWidget=r.vtkns.VolumeController.newInstance({size:[400,150],rescaleColorMap:this.model.rescale}),this._plot_volume(),this._plot_slices(),this._controllerWidget.setupContent(this._vtk_renwin.getRenderWindow(),this.volume,!0),this._controllerWidget.setContainer(this.el),this._controllerWidget.setExpanded(this.model.controller_expanded),this._connect_js_controls(),this._vtk_renwin.getRenderWindow().getInteractor(),this._vtk_renwin.getRenderWindow().getInteractor().setDesiredUpdateRate(45),this._set_volume_visibility(this.model.display_volume),this._set_slices_visibility(this.model.display_slices),this._vtk_renwin.getRenderer().setBackground(…r.hexToRGB(this.model.render_background)),this._set_interpolation(this.model.interpolation),this._set_camera_state()}get vtk_image_data(){return this._vtk_image_data||(this._vtk_image_data=r.data2VTKImageData(this.model.data)),this._vtk_image_data}get volume(){return this._vtk_renwin.getRenderer().getVolumes()[0]}get image_actor_i(){return this._vtk_renwin.getRenderer().getActors()[0]}get image_actor_j(){return this._vtk_renwin.getRenderer().getActors()[1]}get image_actor_k(){return this._vtk_renwin.getRenderer().getActors()[2]}get shadow_selector(){return this.el.querySelector(".js-shadow")}get edge_gradient_slider(){return this.el.querySelector(".js-edge")}get sampling_slider(){return this.el.querySelector(".js-spacing")}get colormap_selector(){return this.el.querySelector(".js-color-preset")}_connect_js_controls(){const{el:e}=this._controllerWidget.get("el");if(void 0!==e){e.querySelector(".js-button").addEventListener("click",()=>this.model.controller_expanded=this._controllerWidget.getExpanded())}this.colormap_selector.addEventListener("change",()=>{this.model.colormap=this.colormap_selector.value}),this.model.colormap?this.model.properties.colormap.change.emit():this.model.colormap=this.colormap_selector.value,this.shadow_selector.addEventListener("change",()=>{this.model.shadow=!!Number(this.shadow_selector.value)}),(this.model.shadow=!!Number(this.shadow_selector.value))&&this.model.properties.shadow.change.emit(),this.sampling_slider.addEventListener("input",()=>{const e=Number(this.sampling_slider.value);Math.abs(this.model.sampling-e)>=.005&&(this.model.sampling=e)}),Math.abs(this.model.sampling-Number(this.shadow_selector.value))>=.005&&this.model.properties.sampling.change.emit(),this.edge_gradient_slider.addEventListener("input",()=>{const e=Number(this.edge_gradient_slider.value);Math.abs(this.model.edge_gradient-e)>=.005&&(this.model.edge_gradient=e)}),Math.abs(this.model.edge_gradient-Number(this.edge_gradient_slider.value))>=.005&&this.model.properties.edge_gradient.change.emit()}_plot_slices(){const e=this._vtk_image_data,t=r.vtkns.ImageSlice.newInstance(),i=r.vtkns.ImageSlice.newInstance(),s=r.vtkns.ImageSlice.newInstance(),n=r.vtkns.ImageMapper.newInstance(),o=r.vtkns.ImageMapper.newInstance(),a=r.vtkns.ImageMapper.newInstance();n.setInputData(e),n.setISlice(this.model.slice_i),t.setMapper(n),o.setInputData(e),o.setJSlice(this.model.slice_j),i.setMapper(o),a.setInputData(e),a.setKSlice(this.model.slice_k),s.setMapper(a);const l=r.vtkns.PiecewiseFunction.newInstance();l.removeAllPoints(),l.addPoint(0,1);const d=this.volume.getProperty().getRGBTransferFunction(0),c=t.getProperty();i.setProperty(c),s.setProperty(c),c.setRGBTransferFunction(d),c.setScalarOpacity(l);const _=this._vtk_renwin.getRenderer();_.addActor(t),_.addActor(i),_.addActor(s)}_plot_volume(){const e=this.vtk_image_data,t=r.vtkns.Volume.newInstance(),i=r.vtkns.VolumeMapper.newInstance();t.setMapper(i),i.setInputData(e);const s=(e.getPointData().getScalars()||e.getPointData().getArrays()[0]).getRange(),n=r.vtkns.ColorTransferFunction.newInstance();n.onModified(()=>this.model.mapper=r.vtkLutToMapper(n));const o=r.vtkns.PiecewiseFunction.newInstance(),a=.7*Math.sqrt(e.getSpacing().map(e=>e*e).reduce((e,t)=>e+t,0));i.setSampleDistance(a),t.getProperty().setRGBTransferFunction(0,n),t.getProperty().setScalarOpacity(0,o),t.getProperty().setInterpolationTypeToFastLinear(),t.getProperty().setScalarOpacityUnitDistance(0,r.vtkns.BoundingBox.getDiagonalLength(e.getBounds())/Math.max(…e.getDimensions())),t.getProperty().setGradientOpacityMinimumValue(0,0),t.getProperty().setGradientOpacityMaximumValue(0,.05*(s[1]-s[0])),t.getProperty().setShade(this.model.shadow),t.getProperty().setUseGradientOpacity(0,!0),t.getProperty().setGradientOpacityMinimumOpacity(0,0),t.getProperty().setGradientOpacityMaximumOpacity(0,1),t.getProperty().setAmbient(this.model.ambient),t.getProperty().setDiffuse(this.model.diffuse),t.getProperty().setSpecular(this.model.specular),t.getProperty().setSpecularPower(this.model.specular_power),this._vtk_renwin.getRenderer().addVolume(t)}_set_interpolation(e){"fast_linear"==e?(this.volume.getProperty().setInterpolationTypeToFastLinear(),this.image_actor_i.getProperty().setInterpolationTypeToLinear()):"linear"==e?(this.volume.getProperty().setInterpolationTypeToLinear(),this.image_actor_i.getProperty().setInterpolationTypeToLinear()):(this.volume.getProperty().setInterpolationTypeToNearest(),this.image_actor_i.getProperty().setInterpolationTypeToNearest())}_set_slices_visibility(e){this._vtk_renwin.getRenderer().getActors().map(t=>t.setVisibility(e))}_set_volume_visibility(e){this.volume.setVisibility(e)}}i.VTKVolumePlotView=o,o.__name__="VTKVolumePlotView";class a extends n.AbstractVTKPlot{constructor(e){super(e)}static init_VTKVolumePlot(){this.prototype.default_view=o,this.define({ambient:[s.Number,.2],colormap:[s.String],data:[s.Instance],diffuse:[s.Number,.7],display_slices:[s.Boolean,!1],display_volume:[s.Boolean,!0],edge_gradient:[s.Number,.2],interpolation:[s.Any,"fast_linear"],mapper:[s.Instance],render_background:[s.String,"#52576e"],rescale:[s.Boolean,!1],sampling:[s.Number,.4],shadow:[s.Boolean,!0],slice_i:[s.Int,0],slice_j:[s.Int,0],slice_k:[s.Int,0],specular:[s.Number,.3],specular_power:[s.Number,8],controller_expanded:[s.Boolean,!0]})}}i.VTKVolumePlot=a,a.__name__="VTKVolumePlot",a.init_VTKVolumePlot()},n "3ae7537200": function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t("tslib").__importStar(t("@bokehjs/core/properties")),n=t("@bokehjs/model"),a=t("2f3fd5db07"),c=t("6c442cdcb4");class r extends n.Model{constructor(t){super(t)}static init_VTKAxes(){this.define({origin:[e.Array],xticker:[e.Instance],yticker:[e.Instance],zticker:[e.Instance],digits:[e.Number,1],show_grid:[e.Boolean,!0],grid_opacity:[e.Number,.1],axes_opacity:[e.Number,1],fontsize:[e.Number,12]})}get xticks(){return this.xticker.ticks}get yticks(){return this.yticker.ticks}get zticks(){return this.zticker.ticks}get xlabels(){return this.xticker.labels?this.xticker.labels:this.xticks.map(t=>t.toFixed(this.digits))}get ylabels(){return this.yticker.labels?this.yticker.labels:this.yticks.map(t=>t.toFixed(this.digits))}get zlabels(){return this.zticker.labels?this.zticker.labels:this.zticks.map(t=>t.toFixed(this.digits))}_make_grid_lines(t,s,i){const e=[];for(let n=0;n<t-1;n++)for(let t=0;t<s-1;t++){const a=n*s+t+i,c=[5,a,n*s+t+1+i,(n+1)*s+t+1+i,(n+1)*s+t+i,a];e.push(c)}return e}_create_grid_axes(){const t=[];t.push(c.cartesian_product(this.xticks,this.yticks,[this.origin[2]])),t.push(c.cartesian_product([this.origin[0]],this.yticks,this.zticks)),t.push(c.cartesian_product(this.xticks,[this.origin[1]],this.zticks));const s=[];let i=0;s.push(this._make_grid_lines(this.xticks.length,this.yticks.length,i)),i+=this.xticks.length*this.yticks.length,s.push(this._make_grid_lines(this.yticks.length,this.zticks.length,i)),i+=this.yticks.length*this.zticks.length,s.push(this._make_grid_lines(this.xticks.length,this.zticks.length,i));const e=c.vtk({vtkClass:"vtkPolyData",points:{vtkClass:"vtkPoints",dataType:"Float32Array",numberOfComponents:3,values:t.flat(2)},lines:{vtkClass:"vtkCellArray",dataType:"Uint32Array",values:s.flat(2)}}),n=c.vtkns.Mapper.newInstance(),a=c.vtkns.Actor.newInstance();return n.setInputData(e),a.setMapper(n),a.getProperty().setOpacity(this.grid_opacity),a.setVisibility(this.show_grid),a}create_axes(t){const s=[this.xticks,this.yticks,this.zticks].map((t,s)=>{let i=null;switch(s){case 0:i=c.cartesian_product(t,[this.origin[1]],[this.origin[2]]);break;case 1:i=c.cartesian_product([this.origin[0]],t,[this.origin[2]]);break;case 2:i=c.cartesian_product([this.origin[0]],[this.origin[1]],t)}return i}).flat(2),i=c.vtk({vtkClass:"vtkPolyData",points:{vtkClass:"vtkPoints",dataType:"Float32Array",numberOfComponents:3,values:s},lines:{vtkClass:"vtkCellArray",dataType:"Uint32Array",values:[2,0,this.xticks.length-1,2,this.xticks.length,this.xticks.length+this.yticks.length-1,2,this.xticks.length+this.yticks.length,this.xticks.length+this.yticks.length+this.zticks.length-1]}}),e=c.vtkns.PixelSpaceCallbackMapper.newInstance();e.setInputData(i),e.setUseZValues(!0),e.setCallback((s,i,n)=>{const c=t.getContext("2d");if(c){const r={height:t.clientHeight*window.devicePixelRatio,width:t.clientWidth*window.devicePixelRatio},h=e.getInputData().getPoints(),l=i.getViewMatrix();a.mat4.transpose(l,l);const o=i.getProjectionMatrix(n,-1,1);a.mat4.transpose(o,o),c.clearRect(0,0,r.width,r.height),s.forEach((t,s)=>{const i=h.getPoint(s),e=a.vec3.fromValues(i[0],i[1],i[2]);if(a.vec3.transformMat4(e,e,l),e[2]+=.05,a.vec3.transformMat4(e,e,o),e[2]-.001<t[3]){let i;c.font="30px serif",c.textAlign="center",c.textBaseline="alphabetic",c.fillText(".",t[0],r.height-t[1]+2),c.font=this.fontsize*window.devicePixelRatio+"px serif",c.textAlign="right",c.textBaseline="top",i=s<this.xticks.length?this.xlabels[s]:s>=this.xticks.length&&s<this.xticks.length+this.yticks.length?this.ylabels[s-this.xticks.length]:this.zlabels[s-(this.xticks.length+this.yticks.length)],c.fillText(""+i,t[0],r.height-t[1])}})}});const n=c.vtkns.Actor.newInstance();n.setMapper(e);const r=c.vtkns.Mapper.newInstance();r.setInputData(i);const h=c.vtkns.Actor.newInstance();h.setMapper(r),h.getProperty().setOpacity(this.axes_opacity);return{psActor:n,axesActor:h,gridActor:this._create_grid_axes()}}}i.VTKAxes=r,r.__name__="VTKAxes",r.__module__="panel.models.vtk",r.init_VTKAxes()},n "2f3fd5db07": function _(t,c,a){Object.defineProperty(a,"__esModule",{value:!0});const o=t("tslib"),r=o.__importStar(t("68ca94c15c"));a.glMatrix=r;const _=o.__importStar(t("7c0b8e6048"));a.mat2=_;const e=o.__importStar(t("dc03f0a621"));a.mat2d=e;const i=o.__importStar(t("0285c50a7e"));a.mat3=i;const m=o.__importStar(t("a427635f32"));a.mat4=m;const n=o.__importStar(t("eb06fc032a"));a.quat=n;const s=o.__importStar(t("277615c682"));a.quat2=s;const p=o.__importStar(t("c56d9ff837"));a.vec2=p;const S=o.__importStar(t("2c5eb22089"));a.vec3=S;const f=o.__importStar(t("c1aa33d719"));a.vec4=f},n "68ca94c15c": function _(t,a,r){Object.defineProperty(r,"__esModule",{value:!0}),r.EPSILON=1e-6,r.ARRAY_TYPE="undefined"!=typeof Float32Array?Float32Array:Array,r.RANDOM=Math.random,r.setMatrixArrayType=function(t){r.ARRAY_TYPE=t};var n=Math.PI/180;r.toRadian=function(t){return t*n},r.equals=function(t,a){return Math.abs(t-a)<=r.EPSILON*Math.max(1,Math.abs(t),Math.abs(a))},Math.hypot||(Math.hypot=function(){for(var t=0,a=arguments.length;a–;)t+=arguments[a]*arguments[a];return Math.sqrt(t)})},n "7c0b8e6048": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=r[0],i=r[1],f=r[2],s=r[3];return t[0]=a*c+e*i,t[1]=u*c+o*i,t[2]=a*f+e*s,t[3]=u*f+o*s,t}function e(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}r.create=function(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0),t[0]=1,t[3]=1,t},r.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},r.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t},r.fromValues=function(t,n,r,u){var e=new a.ARRAY_TYPE(4);return e[0]=t,e[1]=n,e[2]=r,e[3]=u,e},r.set=function(t,n,r,a,u){return t[0]=n,t[1]=r,t[2]=a,t[3]=u,t},r.transpose=function(t,n){if(t===n){var r=n[1];t[1]=n[2],t[2]=r}else t[0]=n[0],t[1]=n[2],t[2]=n[1],t[3]=n[3];return t},r.invert=function(t,n){var r=n[0],a=n[1],u=n[2],e=n[3],o=r*e-u*a;return o?(o=1/o,t[0]=e*o,t[1]=-a*o,t[2]=-u*o,t[3]=r*o,t):null},r.adjoint=function(t,n){var r=n[0];return t[0]=n[3],t[1]=-n[1],t[2]=-n[2],t[3]=r,t},r.determinant=function(t){return t[0]*t[3]-t[2]*t[1]},r.multiply=u,r.rotate=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=Math.sin(r),i=Math.cos(r);return t[0]=a*i+e*c,t[1]=u*i+o*c,t[2]=a*-c+e*i,t[3]=u*-c+o*i,t},r.scale=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=r[0],i=r[1];return t[0]=a*c,t[1]=u*c,t[2]=e*i,t[3]=o*i,t},r.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=-r,t[3]=a,t},r.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t},r.str=function(t){return"mat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},r.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3])},r.LDU=function(t,n,r,a){return t[2]=a[2]/a[0],r[0]=a[0],r[1]=a[1],r[3]=a[3]-t[2]*r[1],[t,n,r]},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},r.subtract=e,r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=t[3],c=n[0],i=n[1],f=n[2],s=n[3];return Math.abs(r-c)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(c))&&Math.abs(u-i)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(i))&&Math.abs(e-f)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(f))&&Math.abs(o-s)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(s))},r.multiplyScalar=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},r.multiplyScalarAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},r.mul=u,r.sub=e},n "dc03f0a621": function _(t,n,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function u(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1],h=a[2],M=a[3],b=a[4],l=a[5];return t[0]=r*s+e*f,t[1]=u*s+o*f,t[2]=r*h+e*M,t[3]=u*h+o*M,t[4]=r*b+e*l+c,t[5]=u*b+o*l+i,t}function e(t,n,a){return t[0]=n[0]-a[0],t[1]=n[1]-a[1],t[2]=n[2]-a[2],t[3]=n[3]-a[3],t[4]=n[4]-a[4],t[5]=n[5]-a[5],t}a.create=function(){var t=new r.ARRAY_TYPE(6);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[4]=0,t[5]=0),t[0]=1,t[3]=1,t},a.clone=function(t){var n=new r.ARRAY_TYPE(6);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n},a.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t},a.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t},a.fromValues=function(t,n,a,u,e,o){var c=new r.ARRAY_TYPE(6);return c[0]=t,c[1]=n,c[2]=a,c[3]=u,c[4]=e,c[5]=o,c},a.set=function(t,n,a,r,u,e,o){return t[0]=n,t[1]=a,t[2]=r,t[3]=u,t[4]=e,t[5]=o,t},a.invert=function(t,n){var a=n[0],r=n[1],u=n[2],e=n[3],o=n[4],c=n[5],i=a*e-r*u;return i?(i=1/i,t[0]=e*i,t[1]=-r*i,t[2]=-u*i,t[3]=a*i,t[4]=(u*c-e*o)*i,t[5]=(r*o-a*c)*i,t):null},a.determinant=function(t){return t[0]*t[3]-t[1]*t[2]},a.multiply=u,a.rotate=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=Math.sin(a),f=Math.cos(a);return t[0]=r*f+e*s,t[1]=u*f+o*s,t[2]=r*-s+e*f,t[3]=u*-s+o*f,t[4]=c,t[5]=i,t},a.scale=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1];return t[0]=r*s,t[1]=u*s,t[2]=e*f,t[3]=o*f,t[4]=c,t[5]=i,t},a.translate=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1];return t[0]=r,t[1]=u,t[2]=e,t[3]=o,t[4]=r*s+e*f+c,t[5]=u*s+o*f+i,t},a.fromRotation=function(t,n){var a=Math.sin(n),r=Math.cos(n);return t[0]=r,t[1]=a,t[2]=-a,t[3]=r,t[4]=0,t[5]=0,t},a.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t[4]=0,t[5]=0,t},a.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=n[0],t[5]=n[1],t},a.str=function(t){return"mat2d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+")"},a.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],1)},a.add=function(t,n,a){return t[0]=n[0]+a[0],t[1]=n[1]+a[1],t[2]=n[2]+a[2],t[3]=n[3]+a[3],t[4]=n[4]+a[4],t[5]=n[5]+a[5],t},a.subtract=e,a.multiplyScalar=function(t,n,a){return t[0]=n[0]*a,t[1]=n[1]*a,t[2]=n[2]*a,t[3]=n[3]*a,t[4]=n[4]*a,t[5]=n[5]*a,t},a.multiplyScalarAndAdd=function(t,n,a,r){return t[0]=n[0]+a[0]*r,t[1]=n[1]+a[1]*r,t[2]=n[2]+a[2]*r,t[3]=n[3]+a[3]*r,t[4]=n[4]+a[4]*r,t[5]=n[5]+a[5]*r,t},a.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]&&t[4]===n[4]&&t[5]===n[5]},a.equals=function(t,n){var a=t[0],u=t[1],e=t[2],o=t[3],c=t[4],i=t[5],s=n[0],f=n[1],h=n[2],M=n[3],b=n[4],l=n[5];return Math.abs(a-s)<=r.EPSILON*Math.max(1,Math.abs(a),Math.abs(s))&&Math.abs(u-f)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(f))&&Math.abs(e-h)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(h))&&Math.abs(o-M)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(M))&&Math.abs(c-b)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(b))&&Math.abs(i-l)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(l))},a.mul=u,a.sub=e},n "0285c50a7e": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function u(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=n[0],b=n[1],l=n[2],m=n[3],v=n[4],E=n[5],P=n[6],S=n[7],d=n[8];return t[0]=f*r+b*e+l*s,t[1]=f*u+b*i+l*M,t[2]=f*o+b*c+l*h,t[3]=m*r+v*e+E*s,t[4]=m*u+v*i+E*M,t[5]=m*o+v*c+E*h,t[6]=P*r+S*e+d*s,t[7]=P*u+S*i+d*M,t[8]=P*o+S*c+d*h,t}function o(t,a,n){return t[0]=a[0]-n[0],t[1]=a[1]-n[1],t[2]=a[2]-n[2],t[3]=a[3]-n[3],t[4]=a[4]-n[4],t[5]=a[5]-n[5],t[6]=a[6]-n[6],t[7]=a[7]-n[7],t[8]=a[8]-n[8],t}n.create=function(){var t=new r.ARRAY_TYPE(9);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t},n.fromMat4=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[4],t[4]=a[5],t[5]=a[6],t[6]=a[8],t[7]=a[9],t[8]=a[10],t},n.clone=function(t){var a=new r.ARRAY_TYPE(9);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a[8]=t[8],a},n.copy=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t},n.fromValues=function(t,a,n,u,o,e,i,c,s){var M=new r.ARRAY_TYPE(9);return M[0]=t,M[1]=a,M[2]=n,M[3]=u,M[4]=o,M[5]=e,M[6]=i,M[7]=c,M[8]=s,M},n.set=function(t,a,n,r,u,o,e,i,c,s){return t[0]=a,t[1]=n,t[2]=r,t[3]=u,t[4]=o,t[5]=e,t[6]=i,t[7]=c,t[8]=s,t},n.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.transpose=function(t,a){if(t===a){var n=a[1],r=a[2],u=a[5];t[1]=a[3],t[2]=a[6],t[3]=n,t[5]=a[7],t[6]=r,t[7]=u}else t[0]=a[0],t[1]=a[3],t[2]=a[6],t[3]=a[1],t[4]=a[4],t[5]=a[7],t[6]=a[2],t[7]=a[5],t[8]=a[8];return t},n.invert=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8],h=M*e-i*s,f=-M*o+i*c,b=s*o-e*c,l=n*h+r*f+u*b;return l?(l=1/l,t[0]=h*l,t[1]=(-M*r+u*s)*l,t[2]=(i*r-u*e)*l,t[3]=f*l,t[4]=(M*n-u*c)*l,t[5]=(-i*n+u*o)*l,t[6]=b*l,t[7]=(-s*n+r*c)*l,t[8]=(e*n-r*o)*l,t):null},n.adjoint=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8];return t[0]=e*M-i*s,t[1]=u*s-r*M,t[2]=r*i-u*e,t[3]=i*c-o*M,t[4]=n*M-u*c,t[5]=u*o-n*i,t[6]=o*s-e*c,t[7]=r*c-n*s,t[8]=n*e-r*o,t},n.determinant=function(t){var a=t[0],n=t[1],r=t[2],u=t[3],o=t[4],e=t[5],i=t[6],c=t[7],s=t[8];return a*(s*o-e*c)+n*(-s*u+e*i)+r*(c*u-o*i)},n.multiply=u,n.translate=function(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=n[0],b=n[1];return t[0]=r,t[1]=u,t[2]=o,t[3]=e,t[4]=i,t[5]=c,t[6]=f*r+b*e+s,t[7]=f*u+b*i+M,t[8]=f*o+b*c+h,t},n.rotate=function(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=Math.sin(n),b=Math.cos(n);return t[0]=b*r+f*e,t[1]=b*u+f*i,t[2]=b*o+f*c,t[3]=b*e-f*r,t[4]=b*i-f*u,t[5]=b*c-f*o,t[6]=s,t[7]=M,t[8]=h,t},n.scale=function(t,a,n){var r=n[0],u=n[1];return t[0]=r*a[0],t[1]=r*a[1],t[2]=r*a[2],t[3]=u*a[3],t[4]=u*a[4],t[5]=u*a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t},n.fromTranslation=function(t,a){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=a[0],t[7]=a[1],t[8]=1,t},n.fromRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=n,t[2]=0,t[3]=-n,t[4]=r,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromScaling=function(t,a){return t[0]=a[0],t[1]=0,t[2]=0,t[3]=0,t[4]=a[1],t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromMat2d=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=0,t[3]=a[2],t[4]=a[3],t[5]=0,t[6]=a[4],t[7]=a[5],t[8]=1,t},n.fromQuat=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=n+n,i=r+r,c=u+u,s=n*e,M=r*e,h=r*i,f=u*e,b=u*i,l=u*c,m=o*e,v=o*i,E=o*c;return t[0]=1-h-l,t[3]=M-E,t[6]=f+v,t[1]=M+E,t[4]=1-s-l,t[7]=b-m,t[2]=f-v,t[5]=b+m,t[8]=1-s-h,t},n.normalFromMat4=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8],h=a[9],f=a[10],b=a[11],l=a[12],m=a[13],v=a[14],E=a[15],P=n*i-r*e,S=n*c-u*e,d=n*s-o*e,A=r*c-u*i,x=r*s-o*i,O=u*s-o*c,p=M*m-h*l,I=M*v-f*l,L=M*E-b*l,N=h*v-f*m,R=h*E-b*m,_=f*E-b*v,y=P*_-S*R+d*N+A*L-x*I+O*p;return y?(y=1/y,t[0]=(i*_-c*R+s*N)*y,t[1]=(c*L-e*_-s*I)*y,t[2]=(e*R-i*L+s*p)*y,t[3]=(u*R-r*_-o*N)*y,t[4]=(n*_-u*L+o*I)*y,t[5]=(r*L-n*R-o*p)*y,t[6]=(m*O-v*x+E*A)*y,t[7]=(v*d-l*O-E*S)*y,t[8]=(l*x-m*d+E*P)*y,t):null},n.projection=function(t,a,n){return t[0]=2/a,t[1]=0,t[2]=0,t[3]=0,t[4]=-2/n,t[5]=0,t[6]=-1,t[7]=1,t[8]=1,t},n.str=function(t){return"mat3("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+")"},n.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8])},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t[8]=a[8]+n[8],t},n.subtract=o,n.multiplyScalar=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t[8]=a[8]*n,t},n.multiplyScalarAndAdd=function(t,a,n,r){return t[0]=a[0]+n[0]*r,t[1]=a[1]+n[1]*r,t[2]=a[2]+n[2]*r,t[3]=a[3]+n[3]*r,t[4]=a[4]+n[4]*r,t[5]=a[5]+n[5]*r,t[6]=a[6]+n[6]*r,t[7]=a[7]+n[7]*r,t[8]=a[8]+n[8]*r,t},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]&&t[8]===a[8]},n.equals=function(t,a){var n=t[0],u=t[1],o=t[2],e=t[3],i=t[4],c=t[5],s=t[6],M=t[7],h=t[8],f=a[0],b=a[1],l=a[2],m=a[3],v=a[4],E=a[5],P=a[6],S=a[7],d=a[8];return Math.abs(n-f)<=r.EPSILON*Math.max(1,Math.abs(n),Math.abs(f))&&Math.abs(u-b)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(b))&&Math.abs(o-l)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(l))&&Math.abs(e-m)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(m))&&Math.abs(i-v)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(v))&&Math.abs(c-E)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(E))&&Math.abs(s-P)<=r.EPSILON*Math.max(1,Math.abs(s),Math.abs(P))&&Math.abs(M-S)<=r.EPSILON*Math.max(1,Math.abs(M),Math.abs(S))&&Math.abs(h-d)<=r.EPSILON*Math.max(1,Math.abs(h),Math.abs(d))},n.mul=u,n.sub=o},n "a427635f32": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function h(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function o(t,a,n){var r=a[0],h=a[1],o=a[2],u=a[3],M=a[4],e=a[5],s=a[6],i=a[7],c=a[8],f=a[9],b=a[10],l=a[11],v=a[12],m=a[13],P=a[14],E=a[15],S=n[0],I=n[1],O=n[2],p=n[3];return t[0]=S*r+I*M+O*c+p*v,t[1]=S*h+I*e+O*f+p*m,t[2]=S*o+I*s+O*b+p*P,t[3]=S*u+I*i+O*l+p*E,S=n[4],I=n[5],O=n[6],p=n[7],t[4]=S*r+I*M+O*c+p*v,t[5]=S*h+I*e+O*f+p*m,t[6]=S*o+I*s+O*b+p*P,t[7]=S*u+I*i+O*l+p*E,S=n[8],I=n[9],O=n[10],p=n[11],t[8]=S*r+I*M+O*c+p*v,t[9]=S*h+I*e+O*f+p*m,t[10]=S*o+I*s+O*b+p*P,t[11]=S*u+I*i+O*l+p*E,S=n[12],I=n[13],O=n[14],p=n[15],t[12]=S*r+I*M+O*c+p*v,t[13]=S*h+I*e+O*f+p*m,t[14]=S*o+I*s+O*b+p*P,t[15]=S*u+I*i+O*l+p*E,t}function u(t,a,n){var r=a[0],h=a[1],o=a[2],u=a[3],M=r+r,e=h+h,s=o+o,i=r*M,c=r*e,f=r*s,b=h*e,l=h*s,v=o*s,m=u*M,P=u*e,E=u*s;return t[0]=1-(b+v),t[1]=c+E,t[2]=f-P,t[3]=0,t[4]=c-E,t[5]=1-(i+v),t[6]=l+m,t[7]=0,t[8]=f+P,t[9]=l-m,t[10]=1-(i+b),t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t}function M(t,a){var n=a[0],r=a[1],h=a[2],o=a[4],u=a[5],M=a[6],e=a[8],s=a[9],i=a[10];return t[0]=Math.hypot(n,r,h),t[1]=Math.hypot(o,u,M),t[2]=Math.hypot(e,s,i),t}function e(t,a,n){return t[0]=a[0]-n[0],t[1]=a[1]-n[1],t[2]=a[2]-n[2],t[3]=a[3]-n[3],t[4]=a[4]-n[4],t[5]=a[5]-n[5],t[6]=a[6]-n[6],t[7]=a[7]-n[7],t[8]=a[8]-n[8],t[9]=a[9]-n[9],t[10]=a[10]-n[10],t[11]=a[11]-n[11],t[12]=a[12]-n[12],t[13]=a[13]-n[13],t[14]=a[14]-n[14],t[15]=a[15]-n[15],t}n.create=function(){var t=new r.ARRAY_TYPE(16);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t},n.clone=function(t){var a=new r.ARRAY_TYPE(16);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a[8]=t[8],a[9]=t[9],a[10]=t[10],a[11]=t[11],a[12]=t[12],a[13]=t[13],a[14]=t[14],a[15]=t[15],a},n.copy=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t[9]=a[9],t[10]=a[10],t[11]=a[11],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15],t},n.fromValues=function(t,a,n,h,o,u,M,e,s,i,c,f,b,l,v,m){var P=new r.ARRAY_TYPE(16);return P[0]=t,P[1]=a,P[2]=n,P[3]=h,P[4]=o,P[5]=u,P[6]=M,P[7]=e,P[8]=s,P[9]=i,P[10]=c,P[11]=f,P[12]=b,P[13]=l,P[14]=v,P[15]=m,P},n.set=function(t,a,n,r,h,o,u,M,e,s,i,c,f,b,l,v,m){return t[0]=a,t[1]=n,t[2]=r,t[3]=h,t[4]=o,t[5]=u,t[6]=M,t[7]=e,t[8]=s,t[9]=i,t[10]=c,t[11]=f,t[12]=b,t[13]=l,t[14]=v,t[15]=m,t},n.identity=h,n.transpose=function(t,a){if(t===a){var n=a[1],r=a[2],h=a[3],o=a[6],u=a[7],M=a[11];t[1]=a[4],t[2]=a[8],t[3]=a[12],t[4]=n,t[6]=a[9],t[7]=a[13],t[8]=r,t[9]=o,t[11]=a[14],t[12]=h,t[13]=u,t[14]=M}else t[0]=a[0],t[1]=a[4],t[2]=a[8],t[3]=a[12],t[4]=a[1],t[5]=a[5],t[6]=a[9],t[7]=a[13],t[8]=a[2],t[9]=a[6],t[10]=a[10],t[11]=a[14],t[12]=a[3],t[13]=a[7],t[14]=a[11],t[15]=a[15];return t},n.invert=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=a[4],M=a[5],e=a[6],s=a[7],i=a[8],c=a[9],f=a[10],b=a[11],l=a[12],v=a[13],m=a[14],P=a[15],E=n*M-r*u,S=n*e-h*u,I=n*s-o*u,O=r*e-h*M,p=r*s-o*M,L=h*s-o*e,N=i*v-c*l,R=i*m-f*l,x=i*P-b*l,y=c*m-f*v,A=c*P-b*v,Y=f*P-b*m,d=E*Y-S*A+I*y+O*x-p*R+L*N;return d?(d=1/d,t[0]=(M*Y-e*A+s*y)*d,t[1]=(h*A-r*Y-o*y)*d,t[2]=(v*L-m*p+P*O)*d,t[3]=(f*p-c*L-b*O)*d,t[4]=(e*x-u*Y-s*R)*d,t[5]=(n*Y-h*x+o*R)*d,t[6]=(m*I-l*L-P*S)*d,t[7]=(i*L-f*I+b*S)*d,t[8]=(u*A-M*x+s*N)*d,t[9]=(r*x-n*A-o*N)*d,t[10]=(l*p-v*I+P*E)*d,t[11]=(c*I-i*p-b*E)*d,t[12]=(M*R-u*y-e*N)*d,t[13]=(n*y-r*R+h*N)*d,t[14]=(v*S-l*O-m*E)*d,t[15]=(i*O-c*S+f*E)*d,t):null},n.adjoint=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=a[4],M=a[5],e=a[6],s=a[7],i=a[8],c=a[9],f=a[10],b=a[11],l=a[12],v=a[13],m=a[14],P=a[15];return t[0]=M*(f*P-b*m)-c*(e*P-s*m)+v*(e*b-s*f),t[1]=-(r*(f*P-b*m)-c*(h*P-o*m)+v*(h*b-o*f)),t[2]=r*(e*P-s*m)-M*(h*P-o*m)+v*(h*s-o*e),t[3]=-(r*(e*b-s*f)-M*(h*b-o*f)+c*(h*s-o*e)),t[4]=-(u*(f*P-b*m)-i*(e*P-s*m)+l*(e*b-s*f)),t[5]=n*(f*P-b*m)-i*(h*P-o*m)+l*(h*b-o*f),t[6]=-(n*(e*P-s*m)-u*(h*P-o*m)+l*(h*s-o*e)),t[7]=n*(e*b-s*f)-u*(h*b-o*f)+i*(h*s-o*e),t[8]=u*(c*P-b*v)-i*(M*P-s*v)+l*(M*b-s*c),t[9]=-(n*(c*P-b*v)-i*(r*P-o*v)+l*(r*b-o*c)),t[10]=n*(M*P-s*v)-u*(r*P-o*v)+l*(r*s-o*M),t[11]=-(n*(M*b-s*c)-u*(r*b-o*c)+i*(r*s-o*M)),t[12]=-(u*(c*m-f*v)-i*(M*m-e*v)+l*(M*f-e*c)),t[13]=n*(c*m-f*v)-i*(r*m-h*v)+l*(r*f-h*c),t[14]=-(n*(M*m-e*v)-u*(r*m-h*v)+l*(r*e-h*M)),t[15]=n*(M*f-e*c)-u*(r*f-h*c)+i*(r*e-h*M),t},n.determinant=function(t){var a=t[0],n=t[1],r=t[2],h=t[3],o=t[4],u=t[5],M=t[6],e=t[7],s=t[8],i=t[9],c=t[10],f=t[11],b=t[12],l=t[13],v=t[14],m=t[15];return(a*u-n*o)*(c*m-f*v)-(a*M-r*o)*(i*m-f*l)+(a*e-h*o)*(i*v-c*l)+(n*M-r*u)*(s*m-f*b)-(n*e-h*u)*(s*v-c*b)+(r*e-h*M)*(s*l-i*b)},n.multiply=o,n.translate=function(t,a,n){var r,h,o,u,M,e,s,i,c,f,b,l,v=n[0],m=n[1],P=n[2];return a===t?(t[12]=a[0]*v+a[4]*m+a[8]*P+a[12],t[13]=a[1]*v+a[5]*m+a[9]*P+a[13],t[14]=a[2]*v+a[6]*m+a[10]*P+a[14],t[15]=a[3]*v+a[7]*m+a[11]*P+a[15]):(r=a[0],h=a[1],o=a[2],u=a[3],M=a[4],e=a[5],s=a[6],i=a[7],c=a[8],f=a[9],b=a[10],l=a[11],t[0]=r,t[1]=h,t[2]=o,t[3]=u,t[4]=M,t[5]=e,t[6]=s,t[7]=i,t[8]=c,t[9]=f,t[10]=b,t[11]=l,t[12]=r*v+M*m+c*P+a[12],t[13]=h*v+e*m+f*P+a[13],t[14]=o*v+s*m+b*P+a[14],t[15]=u*v+i*m+l*P+a[15]),t},n.scale=function(t,a,n){var r=n[0],h=n[1],o=n[2];return t[0]=a[0]*r,t[1]=a[1]*r,t[2]=a[2]*r,t[3]=a[3]*r,t[4]=a[4]*h,t[5]=a[5]*h,t[6]=a[6]*h,t[7]=a[7]*h,t[8]=a[8]*o,t[9]=a[9]*o,t[10]=a[10]*o,t[11]=a[11]*o,t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15],t},n.rotate=function(t,a,n,h){var o,u,M,e,s,i,c,f,b,l,v,m,P,E,S,I,O,p,L,N,R,x,y,A,Y=h[0],d=h[1],g=h[2],T=Math.hypot(Y,d,g);return T<r.EPSILON?null:(Y*=T=1/T,d*=T,g*=T,o=Math.sin(n),M=1-(u=Math.cos(n)),e=a[0],s=a[1],i=a[2],c=a[3],f=a[4],b=a[5],l=a[6],v=a[7],m=a[8],P=a[9],E=a[10],S=a[11],I=Y*Y*M+u,O=d*Y*M+g*o,p=g*Y*M-d*o,L=Y*d*M-g*o,N=d*d*M+u,R=g*d*M+Y*o,x=Y*g*M+d*o,y=d*g*M-Y*o,A=g*g*M+u,t[0]=e*I+f*O+m*p,t[1]=s*I+b*O+P*p,t[2]=i*I+l*O+E*p,t[3]=c*I+v*O+S*p,t[4]=e*L+f*N+m*R,t[5]=s*L+b*N+P*R,t[6]=i*L+l*N+E*R,t[7]=c*L+v*N+S*R,t[8]=e*x+f*y+m*A,t[9]=s*x+b*y+P*A,t[10]=i*x+l*y+E*A,t[11]=c*x+v*y+S*A,a!==t&&(t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t)},n.rotateX=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[4],u=a[5],M=a[6],e=a[7],s=a[8],i=a[9],c=a[10],f=a[11];return a!==t&&(t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[4]=o*h+s*r,t[5]=u*h+i*r,t[6]=M*h+c*r,t[7]=e*h+f*r,t[8]=s*h-o*r,t[9]=i*h-u*r,t[10]=c*h-M*r,t[11]=f*h-e*r,t},n.rotateY=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[0],u=a[1],M=a[2],e=a[3],s=a[8],i=a[9],c=a[10],f=a[11];return a!==t&&(t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[0]=o*h-s*r,t[1]=u*h-i*r,t[2]=M*h-c*r,t[3]=e*h-f*r,t[8]=o*r+s*h,t[9]=u*r+i*h,t[10]=M*r+c*h,t[11]=e*r+f*h,t},n.rotateZ=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[0],u=a[1],M=a[2],e=a[3],s=a[4],i=a[5],c=a[6],f=a[7];return a!==t&&(t[8]=a[8],t[9]=a[9],t[10]=a[10],t[11]=a[11],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[0]=o*h+s*r,t[1]=u*h+i*r,t[2]=M*h+c*r,t[3]=e*h+f*r,t[4]=s*h-o*r,t[5]=i*h-u*r,t[6]=c*h-M*r,t[7]=f*h-e*r,t},n.fromTranslation=function(t,a){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=a[0],t[13]=a[1],t[14]=a[2],t[15]=1,t},n.fromScaling=function(t,a){return t[0]=a[0],t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=a[1],t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=a[2],t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotation=function(t,a,n){var h,o,u,M=n[0],e=n[1],s=n[2],i=Math.hypot(M,e,s);return i<r.EPSILON?null:(M*=i=1/i,e*=i,s*=i,h=Math.sin(a),u=1-(o=Math.cos(a)),t[0]=M*M*u+o,t[1]=e*M*u+s*h,t[2]=s*M*u-e*h,t[3]=0,t[4]=M*e*u-s*h,t[5]=e*e*u+o,t[6]=s*e*u+M*h,t[7]=0,t[8]=M*s*u+e*h,t[9]=e*s*u-M*h,t[10]=s*s*u+o,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t)},n.fromXRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=r,t[6]=n,t[7]=0,t[8]=0,t[9]=-n,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromYRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=0,t[2]=-n,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=n,t[9]=0,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromZRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=n,t[2]=0,t[3]=0,t[4]=-n,t[5]=r,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotationTranslation=u,n.fromQuat2=function(t,a){var n=new r.ARRAY_TYPE(3),h=-a[0],o=-a[1],M=-a[2],e=a[3],s=a[4],i=a[5],c=a[6],f=a[7],b=h*h+o*o+M*M+e*e;return b>0?(n[0]=2*(s*e+f*h+i*M-c*o)/b,n[1]=2*(i*e+f*o+c*h-s*M)/b,n[2]=2*(c*e+f*M+s*o-i*h)/b):(n[0]=2*(s*e+f*h+i*M-c*o),n[1]=2*(i*e+f*o+c*h-s*M),n[2]=2*(c*e+f*M+s*o-i*h)),u(t,a,n),t},n.getTranslation=function(t,a){return t[0]=a[12],t[1]=a[13],t[2]=a[14],t},n.getScaling=M,n.getRotation=function(t,a){var n=new r.ARRAY_TYPE(3);M(n,a);var h=1/n[0],o=1/n[1],u=1/n[2],e=a[0]*h,s=a[1]*o,i=a[2]*u,c=a[4]*h,f=a[5]*o,b=a[6]*u,l=a[8]*h,v=a[9]*o,m=a[10]*u,P=e+f+m,E=0;return P>0?(E=2*Math.sqrt(P+1),t[3]=.25*E,t[0]=(b-v)/E,t[1]=(l-i)/E,t[2]=(s-c)/E):e>f&&e>m?(E=2*Math.sqrt(1+e-f-m),t[3]=(b-v)/E,t[0]=.25*E,t[1]=(s+c)/E,t[2]=(l+i)/E):f>m?(E=2*Math.sqrt(1+f-e-m),t[3]=(l-i)/E,t[0]=(s+c)/E,t[1]=.25*E,t[2]=(b+v)/E):(E=2*Math.sqrt(1+m-e-f),t[3]=(s-c)/E,t[0]=(l+i)/E,t[1]=(b+v)/E,t[2]=.25*E),t},n.fromRotationTranslationScale=function(t,a,n,r){var h=a[0],o=a[1],u=a[2],M=a[3],e=h+h,s=o+o,i=u+u,c=h*e,f=h*s,b=h*i,l=o*s,v=o*i,m=u*i,P=M*e,E=M*s,S=M*i,I=r[0],O=r[1],p=r[2];return t[0]=(1-(l+m))*I,t[1]=(f+S)*I,t[2]=(b-E)*I,t[3]=0,t[4]=(f-S)*O,t[5]=(1-(c+m))*O,t[6]=(v+P)*O,t[7]=0,t[8]=(b+E)*p,t[9]=(v-P)*p,t[10]=(1-(c+l))*p,t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t},n.fromRotationTranslationScaleOrigin=function(t,a,n,r,h){var o=a[0],u=a[1],M=a[2],e=a[3],s=o+o,i=u+u,c=M+M,f=o*s,b=o*i,l=o*c,v=u*i,m=u*c,P=M*c,E=e*s,S=e*i,I=e*c,O=r[0],p=r[1],L=r[2],N=h[0],R=h[1],x=h[2],y=(1-(v+P))*O,A=(b+I)*O,Y=(l-S)*O,d=(b-I)*p,g=(1-(f+P))*p,T=(m+E)*p,_=(l+S)*L,q=(m-E)*L,w=(1-(f+v))*L;return t[0]=y,t[1]=A,t[2]=Y,t[3]=0,t[4]=d,t[5]=g,t[6]=T,t[7]=0,t[8]=_,t[9]=q,t[10]=w,t[11]=0,t[12]=n[0]+N-(y*N+d*R+_*x),t[13]=n[1]+R-(A*N+g*R+q*x),t[14]=n[2]+x-(Y*N+T*R+w*x),t[15]=1,t},n.fromQuat=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=n+n,M=r+r,e=h+h,s=n*u,i=r*u,c=r*M,f=h*u,b=h*M,l=h*e,v=o*u,m=o*M,P=o*e;return t[0]=1-c-l,t[1]=i+P,t[2]=f-m,t[3]=0,t[4]=i-P,t[5]=1-s-l,t[6]=b+v,t[7]=0,t[8]=f+m,t[9]=b-v,t[10]=1-s-c,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.frustum=function(t,a,n,r,h,o,u){var M=1/(n-a),e=1/(h-r),s=1/(o-u);return t[0]=2*o*M,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=2*o*e,t[6]=0,t[7]=0,t[8]=(n+a)*M,t[9]=(h+r)*e,t[10]=(u+o)*s,t[11]=-1,t[12]=0,t[13]=0,t[14]=u*o*2*s,t[15]=0,t},n.perspective=function(t,a,n,r,h){var o,u=1/Math.tan(a/2);return t[0]=u/n,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=u,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=h&&h!==1/0?(o=1/(r-h),t[10]=(h+r)*o,t[14]=2*h*r*o):(t[10]=-1,t[14]=-2*r),t},n.perspectiveFromFieldOfView=function(t,a,n,r){var h=Math.tan(a.upDegrees*Math.PI/180),o=Math.tan(a.downDegrees*Math.PI/180),u=Math.tan(a.leftDegrees*Math.PI/180),M=Math.tan(a.rightDegrees*Math.PI/180),e=2/(u+M),s=2/(h+o);return t[0]=e,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=s,t[6]=0,t[7]=0,t[8]=-(u-M)*e*.5,t[9]=(h-o)*s*.5,t[10]=r/(n-r),t[11]=-1,t[12]=0,t[13]=0,t[14]=r*n/(n-r),t[15]=0,t},n.ortho=function(t,a,n,r,h,o,u){var M=1/(a-n),e=1/(r-h),s=1/(o-u);return t[0]=-2*M,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*e,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*s,t[11]=0,t[12]=(a+n)*M,t[13]=(h+r)*e,t[14]=(u+o)*s,t[15]=1,t},n.lookAt=function(t,a,n,o){var u,M,e,s,i,c,f,b,l,v,m=a[0],P=a[1],E=a[2],S=o[0],I=o[1],O=o[2],p=n[0],L=n[1],N=n[2];return Math.abs(m-p)<r.EPSILON&&Math.abs(P-L)<r.EPSILON&&Math.abs(E-N)<r.EPSILON?h(t):(f=m-p,b=P-L,l=E-N,u=I*(l*=v=1/Math.hypot(f,b,l))-O*(b*=v),M=O*(f*=v)-S*l,e=S*b-I*f,(v=Math.hypot(u,M,e))?(u*=v=1/v,M*=v,e*=v):(u=0,M=0,e=0),s=b*e-l*M,i=l*u-f*e,c=f*M-b*u,(v=Math.hypot(s,i,c))?(s*=v=1/v,i*=v,c*=v):(s=0,i=0,c=0),t[0]=u,t[1]=s,t[2]=f,t[3]=0,t[4]=M,t[5]=i,t[6]=b,t[7]=0,t[8]=e,t[9]=c,t[10]=l,t[11]=0,t[12]=-(u*m+M*P+e*E),t[13]=-(s*m+i*P+c*E),t[14]=-(f*m+b*P+l*E),t[15]=1,t)},n.targetTo=function(t,a,n,r){var h=a[0],o=a[1],u=a[2],M=r[0],e=r[1],s=r[2],i=h-n[0],c=o-n[1],f=u-n[2],b=i*i+c*c+f*f;b>0&&(i*=b=1/Math.sqrt(b),c*=b,f*=b);var l=e*f-s*c,v=s*i-M*f,m=M*c-e*i;return(b=l*l+v*v+m*m)>0&&(l*=b=1/Math.sqrt(b),v*=b,m*=b),t[0]=l,t[1]=v,t[2]=m,t[3]=0,t[4]=c*m-f*v,t[5]=f*l-i*m,t[6]=i*v-c*l,t[7]=0,t[8]=i,t[9]=c,t[10]=f,t[11]=0,t[12]=h,t[13]=o,t[14]=u,t[15]=1,t},n.str=function(t){return"mat4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+", "+t[9]+", "+t[10]+", "+t[11]+", "+t[12]+", "+t[13]+", "+t[14]+", "+t[15]+")"},n.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8],t[9],t[10],t[11],t[12],t[13],t[14],t[15])},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t[8]=a[8]+n[8],t[9]=a[9]+n[9],t[10]=a[10]+n[10],t[11]=a[11]+n[11],t[12]=a[12]+n[12],t[13]=a[13]+n[13],t[14]=a[14]+n[14],t[15]=a[15]+n[15],t},n.subtract=e,n.multiplyScalar=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t[8]=a[8]*n,t[9]=a[9]*n,t[10]=a[10]*n,t[11]=a[11]*n,t[12]=a[12]*n,t[13]=a[13]*n,t[14]=a[14]*n,t[15]=a[15]*n,t},n.multiplyScalarAndAdd=function(t,a,n,r){return t[0]=a[0]+n[0]*r,t[1]=a[1]+n[1]*r,t[2]=a[2]+n[2]*r,t[3]=a[3]+n[3]*r,t[4]=a[4]+n[4]*r,t[5]=a[5]+n[5]*r,t[6]=a[6]+n[6]*r,t[7]=a[7]+n[7]*r,t[8]=a[8]+n[8]*r,t[9]=a[9]+n[9]*r,t[10]=a[10]+n[10]*r,t[11]=a[11]+n[11]*r,t[12]=a[12]+n[12]*r,t[13]=a[13]+n[13]*r,t[14]=a[14]+n[14]*r,t[15]=a[15]+n[15]*r,t},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]&&t[8]===a[8]&&t[9]===a[9]&&t[10]===a[10]&&t[11]===a[11]&&t[12]===a[12]&&t[13]===a[13]&&t[14]===a[14]&&t[15]===a[15]},n.equals=function(t,a){var n=t[0],h=t[1],o=t[2],u=t[3],M=t[4],e=t[5],s=t[6],i=t[7],c=t[8],f=t[9],b=t[10],l=t[11],v=t[12],m=t[13],P=t[14],E=t[15],S=a[0],I=a[1],O=a[2],p=a[3],L=a[4],N=a[5],R=a[6],x=a[7],y=a[8],A=a[9],Y=a[10],d=a[11],g=a[12],T=a[13],_=a[14],q=a[15];return Math.abs(n-S)<=r.EPSILON*Math.max(1,Math.abs(n),Math.abs(S))&&Math.abs(h-I)<=r.EPSILON*Math.max(1,Math.abs(h),Math.abs(I))&&Math.abs(o-O)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(O))&&Math.abs(u-p)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(p))&&Math.abs(M-L)<=r.EPSILON*Math.max(1,Math.abs(M),Math.abs(L))&&Math.abs(e-N)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(N))&&Math.abs(s-R)<=r.EPSILON*Math.max(1,Math.abs(s),Math.abs(R))&&Math.abs(i-x)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(x))&&Math.abs(c-y)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(y))&&Math.abs(f-A)<=r.EPSILON*Math.max(1,Math.abs(f),Math.abs(A))&&Math.abs(b-Y)<=r.EPSILON*Math.max(1,Math.abs(b),Math.abs(Y))&&Math.abs(l-d)<=r.EPSILON*Math.max(1,Math.abs(l),Math.abs(d))&&Math.abs(v-g)<=r.EPSILON*Math.max(1,Math.abs(v),Math.abs(g))&&Math.abs(m-T)<=r.EPSILON*Math.max(1,Math.abs(m),Math.abs(T))&&Math.abs(P-_)<=r.EPSILON*Math.max(1,Math.abs(P),Math.abs(_))&&Math.abs(E-q)<=r.EPSILON*Math.max(1,Math.abs(E),Math.abs(q))},n.mul=o,n.sub=e},n "eb06fc032a": function _(t,r,a){Object.defineProperty(a,"__esModule",{value:!0});const n=t("tslib"),e=n.__importStar(t("68ca94c15c")),o=n.__importStar(t("0285c50a7e")),s=n.__importStar(t("2c5eb22089")),u=n.__importStar(t("c1aa33d719"));function c(){var t=new e.ARRAY_TYPE(4);return e.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t[3]=1,t}function i(t,r,a){a*=.5;var n=Math.sin(a);return t[0]=n*r[0],t[1]=n*r[1],t[2]=n*r[2],t[3]=Math.cos(a),t}function h(t,r,a){var n=r[0],e=r[1],o=r[2],s=r[3],u=a[0],c=a[1],i=a[2],h=a[3];return t[0]=n*h+s*u+e*i-o*c,t[1]=e*h+s*c+o*u-n*i,t[2]=o*h+s*i+n*c-e*u,t[3]=s*h-n*u-e*c-o*i,t}function M(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=Math.sqrt(a*a+n*n+e*e),u=Math.exp(o),c=s>0?u*Math.sin(s)/s:0;return t[0]=a*c,t[1]=n*c,t[2]=e*c,t[3]=u*Math.cos(s),t}function l(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=Math.sqrt(a*a+n*n+e*e),u=s>0?Math.atan2(s,o)/s:0;return t[0]=a*u,t[1]=n*u,t[2]=e*u,t[3]=.5*Math.log(a*a+n*n+e*e+o*o),t}function f(t,r,a,n){var o,s,u,c,i,h=r[0],M=r[1],l=r[2],f=r[3],v=a[0],m=a[1],q=a[2],d=a[3];return(s=h*v+M*m+l*q+f*d)<0&&(s=-s,v=-v,m=-m,q=-q,d=-d),1-s>e.EPSILON?(o=Math.acos(s),u=Math.sin(o),c=Math.sin((1-n)*o)/u,i=Math.sin(n*o)/u):(c=1-n,i=n),t[0]=c*h+i*v,t[1]=c*M+i*m,t[2]=c*l+i*q,t[3]=c*f+i*d,t}function v(t,r){var a,n=r[0]+r[4]+r[8];if(n>0)a=Math.sqrt(n+1),t[3]=.5*a,a=.5/a,t[0]=(r[5]-r[7])*a,t[1]=(r[6]-r[2])*a,t[2]=(r[1]-r[3])*a;else{var e=0;r[4]>r[0]&&(e=1),r[8]>r[3*e+e]&&(e=2);var o=(e+1)%3,s=(e+2)%3;a=Math.sqrt(r[3*e+e]-r[3*o+o]-r[3*s+s]+1),t[e]=.5*a,a=.5/a,t[3]=(r[3*o+s]-r[3*s+o])*a,t[o]=(r[3*o+e]+r[3*e+o])*a,t[s]=(r[3*s+e]+r[3*e+s])*a}return t}var m,q,d,p,A,g;a.create=c,a.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t},a.setAxisAngle=i,a.getAxisAngle=function(t,r){var a=2*Math.acos(r[3]),n=Math.sin(a/2);return n>e.EPSILON?(t[0]=r[0]/n,t[1]=r[1]/n,t[2]=r[2]/n):(t[0]=1,t[1]=0,t[2]=0),a},a.getAngle=function(t,r){var n=a.dot(t,r);return Math.acos(2*n*n-1)},a.multiply=h,a.rotateX=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c+s*u,t[1]=e*c+o*u,t[2]=o*c-e*u,t[3]=s*c-n*u,t},a.rotateY=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c-o*u,t[1]=e*c+s*u,t[2]=o*c+n*u,t[3]=s*c-e*u,t},a.rotateZ=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c+e*u,t[1]=e*c-n*u,t[2]=o*c+s*u,t[3]=s*c-o*u,t},a.calculateW=function(t,r){var a=r[0],n=r[1],e=r[2];return t[0]=a,t[1]=n,t[2]=e,t[3]=Math.sqrt(Math.abs(1-a*a-n*n-e*e)),t},a.exp=M,a.ln=l,a.pow=function(t,r,n){return l(t,r),a.scale(t,t,n),M(t,t),t},a.slerp=f,a.random=function(t){var r=e.RANDOM(),a=e.RANDOM(),n=e.RANDOM(),o=Math.sqrt(1-r),s=Math.sqrt(r);return t[0]=o*Math.sin(2*Math.PI*a),t[1]=o*Math.cos(2*Math.PI*a),t[2]=s*Math.sin(2*Math.PI*n),t[3]=s*Math.cos(2*Math.PI*n),t},a.invert=function(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=a*a+n*n+e*e+o*o,u=s?1/s:0;return t[0]=-a*u,t[1]=-n*u,t[2]=-e*u,t[3]=o*u,t},a.conjugate=function(t,r){return t[0]=-r[0],t[1]=-r[1],t[2]=-r[2],t[3]=r[3],t},a.fromMat3=v,a.fromEuler=function(t,r,a,n){var e=.5*Math.PI/180;r*=e,a*=e,n*=e;var o=Math.sin(r),s=Math.cos(r),u=Math.sin(a),c=Math.cos(a),i=Math.sin(n),h=Math.cos(n);return t[0]=o*c*h-s*u*i,t[1]=s*u*h+o*c*i,t[2]=s*c*i-o*u*h,t[3]=s*c*h+o*u*i,t},a.str=function(t){return"quat("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},a.clone=u.clone,a.fromValues=u.fromValues,a.copy=u.copy,a.set=u.set,a.add=u.add,a.mul=h,a.scale=u.scale,a.dot=u.dot,a.lerp=u.lerp,a.length=u.length,a.len=a.length,a.squaredLength=u.squaredLength,a.sqrLen=a.squaredLength,a.normalize=u.normalize,a.exactEquals=u.exactEquals,a.equals=u.equals,a.rotationTo=(m=s.create(),q=s.fromValues(1,0,0),d=s.fromValues(0,1,0),function(t,r,n){var e=s.dot(r,n);return e<-.999999?(s.cross(m,q,r),s.len(m)<1e-6&&s.cross(m,d,r),s.normalize(m,m),i(t,m,Math.PI),t):e>.999999?(t[0]=0,t[1]=0,t[2]=0,t[3]=1,t):(s.cross(m,r,n),t[0]=m[0],t[1]=m[1],t[2]=m[2],t[3]=1+e,a.normalize(t,t))}),a.sqlerp=(p=c(),A=c(),function(t,r,a,n,e,o){return f(p,r,e,o),f(A,a,n,o),f(t,p,A,2*o*(1-o)),t}),a.setAxes=(g=o.create(),function(t,r,n,e){return g[0]=n[0],g[3]=n[1],g[6]=n[2],g[1]=e[0],g[4]=e[1],g[7]=e[2],g[2]=-r[0],g[5]=-r[1],g[8]=-r[2],a.normalize(t,v(t,g))})},n "2c5eb22089": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(){var t=new a.ARRAY_TYPE(3);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t}function e(t){var n=t[0],r=t[1],a=t[2];return Math.hypot(n,r,a)}function o(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t}function i(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t}function c(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t}function h(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2];return Math.hypot(r,a,u)}function M(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2];return r*r+a*a+u*u}function s(t){var n=t[0],r=t[1],a=t[2];return n*n+r*r+a*a}function f(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}var l;r.create=u,r.clone=function(t){var n=new a.ARRAY_TYPE(3);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n},r.length=e,r.fromValues=function(t,n,r){var u=new a.ARRAY_TYPE(3);return u[0]=t,u[1]=n,u[2]=r,u},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t},r.set=function(t,n,r,a){return t[0]=n,t[1]=r,t[2]=a,t},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t},r.subtract=o,r.multiply=i,r.divide=c,r.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t},r.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t},r.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t},r.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t},r.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t},r.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t},r.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t},r.distance=h,r.squaredDistance=M,r.squaredLength=s,r.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t},r.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t},r.normalize=function(t,n){var r=n[0],a=n[1],u=n[2],e=r*r+a*a+u*u;return e>0&&(e=1/Math.sqrt(e)),t[0]=n[0]*e,t[1]=n[1]*e,t[2]=n[2]*e,t},r.dot=f,r.cross=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[0],i=r[1],c=r[2];return t[0]=u*c-e*i,t[1]=e*o-a*c,t[2]=a*i-u*o,t},r.lerp=function(t,n,r,a){var u=n[0],e=n[1],o=n[2];return t[0]=u+a*(r[0]-u),t[1]=e+a*(r[1]-e),t[2]=o+a*(r[2]-o),t},r.hermite=function(t,n,r,a,u,e){var o=e*e,i=o*(2*e-3)+1,c=o*(e-2)+e,h=o*(e-1),M=o*(3-2*e);return t[0]=n[0]*i+r[0]*c+a[0]*h+u[0]*M,t[1]=n[1]*i+r[1]*c+a[1]*h+u[1]*M,t[2]=n[2]*i+r[2]*c+a[2]*h+u[2]*M,t},r.bezier=function(t,n,r,a,u,e){var o=1-e,i=o*o,c=e*e,h=i*o,M=3*e*i,s=3*c*o,f=c*e;return t[0]=n[0]*h+r[0]*M+a[0]*s+u[0]*f,t[1]=n[1]*h+r[1]*M+a[1]*s+u[1]*f,t[2]=n[2]*h+r[2]*M+a[2]*s+u[2]*f,t},r.random=function(t,n){n=n||1;var r=2*a.RANDOM()*Math.PI,u=2*a.RANDOM()-1,e=Math.sqrt(1-u*u)*n;return t[0]=Math.cos(r)*e,t[1]=Math.sin(r)*e,t[2]=u*n,t},r.transformMat4=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[3]*a+r[7]*u+r[11]*e+r[15];return o=o||1,t[0]=(r[0]*a+r[4]*u+r[8]*e+r[12])/o,t[1]=(r[1]*a+r[5]*u+r[9]*e+r[13])/o,t[2]=(r[2]*a+r[6]*u+r[10]*e+r[14])/o,t},r.transformMat3=function(t,n,r){var a=n[0],u=n[1],e=n[2];return t[0]=a*r[0]+u*r[3]+e*r[6],t[1]=a*r[1]+u*r[4]+e*r[7],t[2]=a*r[2]+u*r[5]+e*r[8],t},r.transformQuat=function(t,n,r){var a=r[0],u=r[1],e=r[2],o=r[3],i=n[0],c=n[1],h=n[2],M=u*h-e*c,s=e*i-a*h,f=a*c-u*i,l=u*f-e*s,v=e*M-a*f,m=a*s-u*M,d=2*o;return M*=d,s*=d,f*=d,l*=2,v*=2,m*=2,t[0]=i+M+l,t[1]=c+s+v,t[2]=h+f+m,t},r.rotateX=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[0],e[1]=u[1]*Math.cos(a)-u[2]*Math.sin(a),e[2]=u[1]*Math.sin(a)+u[2]*Math.cos(a),t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.rotateY=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[2]*Math.sin(a)+u[0]*Math.cos(a),e[1]=u[1],e[2]=u[2]*Math.cos(a)-u[0]*Math.sin(a),t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.rotateZ=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[0]*Math.cos(a)-u[1]*Math.sin(a),e[1]=u[0]*Math.sin(a)+u[1]*Math.cos(a),e[2]=u[2],t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.angle=function(t,n){var r=t[0],a=t[1],u=t[2],e=n[0],o=n[1],i=n[2],c=Math.sqrt(r*r+a*a+u*u)*Math.sqrt(e*e+o*o+i*i),h=c&&f(t,n)/c;return Math.acos(Math.min(Math.max(h,-1),1))},r.zero=function(t){return t[0]=0,t[1]=0,t[2]=0,t},r.str=function(t){return"vec3("+t[0]+", "+t[1]+", "+t[2]+")"},r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=n[0],i=n[1],c=n[2];return Math.abs(r-o)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(u-i)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(i))&&Math.abs(e-c)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(c))},r.sub=o,r.mul=i,r.div=c,r.dist=h,r.sqrDist=M,r.len=e,r.sqrLen=s,r.forEach=(l=u(),function(t,n,r,a,u,e){var o,i;for(n||(n=3),r||(r=0),i=a?Math.min(a*n+r,t.length):t.length,o=r;o<i;o+=n)l[0]=t[o],l[1]=t[o+1],l[2]=t[o+2],u(l,l,e),t[o]=l[0],t[o+1]=l[1],t[o+2]=l[2];return t})},n "c1aa33d719": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0),t}function e(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}function o(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t[3]=n[3]*r[3],t}function i(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t[3]=n[3]/r[3],t}function c(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2],e=n[3]-t[3];return Math.hypot(r,a,u,e)}function h(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2],e=n[3]-t[3];return r*r+a*a+u*u+e*e}function M(t){var n=t[0],r=t[1],a=t[2],u=t[3];return Math.hypot(n,r,a,u)}function f(t){var n=t[0],r=t[1],a=t[2],u=t[3];return n*n+r*r+a*a+u*u}var s;r.create=u,r.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},r.fromValues=function(t,n,r,u){var e=new a.ARRAY_TYPE(4);return e[0]=t,e[1]=n,e[2]=r,e[3]=u,e},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},r.set=function(t,n,r,a,u){return t[0]=n,t[1]=r,t[2]=a,t[3]=u,t},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},r.subtract=e,r.multiply=o,r.divide=i,r.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t[3]=Math.ceil(n[3]),t},r.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t[3]=Math.floor(n[3]),t},r.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t[3]=Math.min(n[3],r[3]),t},r.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t[3]=Math.max(n[3],r[3]),t},r.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t[3]=Math.round(n[3]),t},r.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},r.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},r.distance=c,r.squaredDistance=h,r.length=M,r.squaredLength=f,r.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t[3]=-n[3],t},r.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t[3]=1/n[3],t},r.normalize=function(t,n){var r=n[0],a=n[1],u=n[2],e=n[3],o=r*r+a*a+u*u+e*e;return o>0&&(o=1/Math.sqrt(o)),t[0]=r*o,t[1]=a*o,t[2]=u*o,t[3]=e*o,t},r.dot=function(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]+t[3]*n[3]},r.cross=function(t,n,r,a){var u=r[0]*a[1]-r[1]*a[0],e=r[0]*a[2]-r[2]*a[0],o=r[0]*a[3]-r[3]*a[0],i=r[1]*a[2]-r[2]*a[1],c=r[1]*a[3]-r[3]*a[1],h=r[2]*a[3]-r[3]*a[2],M=n[0],f=n[1],s=n[2],l=n[3];return t[0]=f*h-s*c+l*i,t[1]=-M*h+s*o-l*e,t[2]=M*c-f*o+l*u,t[3]=-M*i+f*e-s*u,t},r.lerp=function(t,n,r,a){var u=n[0],e=n[1],o=n[2],i=n[3];return t[0]=u+a*(r[0]-u),t[1]=e+a*(r[1]-e),t[2]=o+a*(r[2]-o),t[3]=i+a*(r[3]-i),t},r.random=function(t,n){var r,u,e,o,i,c;n=n||1;do{i=(r=2*a.RANDOM()-1)*r+(u=2*a.RANDOM()-1)*u}while(i>=1);do{c=(e=2*a.RANDOM()-1)*e+(o=2*a.RANDOM()-1)*o}while(c>=1);var h=Math.sqrt((1-i)/c);return t[0]=n*r,t[1]=n*u,t[2]=n*e*h,t[3]=n*o*h,t},r.transformMat4=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3];return t[0]=r[0]*a+r[4]*u+r[8]*e+r[12]*o,t[1]=r[1]*a+r[5]*u+r[9]*e+r[13]*o,t[2]=r[2]*a+r[6]*u+r[10]*e+r[14]*o,t[3]=r[3]*a+r[7]*u+r[11]*e+r[15]*o,t},r.transformQuat=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[0],i=r[1],c=r[2],h=r[3],M=h*a+i*e-c*u,f=h*u+c*a-o*e,s=h*e+o*u-i*a,l=-o*a-i*u-c*e;return t[0]=M*h+l*-o+f*-c-s*-i,t[1]=f*h+l*-i+s*-o-M*-c,t[2]=s*h+l*-c+M*-i-f*-o,t[3]=n[3],t},r.zero=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t},r.str=function(t){return"vec4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=t[3],i=n[0],c=n[1],h=n[2],M=n[3];return Math.abs(r-i)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(i))&&Math.abs(u-c)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(c))&&Math.abs(e-h)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(h))&&Math.abs(o-M)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(M))},r.sub=e,r.mul=o,r.div=i,r.dist=c,r.sqrDist=h,r.len=M,r.sqrLen=f,r.forEach=(s=u(),function(t,n,r,a,u,e){var o,i;for(n||(n=4),r||(r=0),i=a?Math.min(a*n+r,t.length):t.length,o=r;o<i;o+=n)s[0]=t[o],s[1]=t[o+1],s[2]=t[o+2],s[3]=t[o+3],u(s,s,e),t[o]=s[0],t[o+1]=s[1],t[o+2]=s[2],t[o+3]=s[3];return t})},n "277615c682": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib"),e=r.__importStar(t("68ca94c15c")),u=r.__importStar(t("eb06fc032a")),o=r.__importStar(t("a427635f32"));function i(t,a,n){var r=.5*n[0],e=.5*n[1],u=.5*n[2],o=a[0],i=a[1],s=a[2],c=a[3];return t[0]=o,t[1]=i,t[2]=s,t[3]=c,t[4]=r*c+e*s-u*i,t[5]=e*c+u*o-r*s,t[6]=u*c+r*i-e*o,t[7]=-r*o-e*i-u*s,t}function s(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t}function c(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=n[4],s=n[5],c=n[6],h=n[7],f=a[4],M=a[5],l=a[6],b=a[7],v=n[0],m=n[1],R=n[2],P=n[3];return t[0]=r*P+o*v+e*R-u*m,t[1]=e*P+o*m+u*v-r*R,t[2]=u*P+o*R+r*m-e*v,t[3]=o*P-r*v-e*m-u*R,t[4]=r*h+o*i+e*c-u*s+f*P+b*v+M*R-l*m,t[5]=e*h+o*s+u*i-r*c+M*P+b*m+l*v-f*R,t[6]=u*h+o*c+r*s-e*i+l*P+b*R+f*m-M*v,t[7]=o*h-r*i-e*s-u*c+b*P-f*v-M*m-l*R,t}n.create=function(){var t=new e.ARRAY_TYPE(8);return e.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[4]=0,t[5]=0,t[6]=0,t[7]=0),t[3]=1,t},n.clone=function(t){var a=new e.ARRAY_TYPE(8);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a},n.fromValues=function(t,a,n,r,u,o,i,s){var c=new e.ARRAY_TYPE(8);return c[0]=t,c[1]=a,c[2]=n,c[3]=r,c[4]=u,c[5]=o,c[6]=i,c[7]=s,c},n.fromRotationTranslationValues=function(t,a,n,r,u,o,i){var s=new e.ARRAY_TYPE(8);s[0]=t,s[1]=a,s[2]=n,s[3]=r;var c=.5*u,h=.5*o,f=.5*i;return s[4]=c*r+h*n-f*a,s[5]=h*r+f*t-c*n,s[6]=f*r+c*a-h*t,s[7]=-c*t-h*a-f*n,s},n.fromRotationTranslation=i,n.fromTranslation=function(t,a){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=.5*a[0],t[5]=.5*a[1],t[6]=.5*a[2],t[7]=0,t},n.fromRotation=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.fromMat4=function(t,a){var n=u.create();o.getRotation(n,a);var r=new e.ARRAY_TYPE(3);return o.getTranslation(r,a),i(t,n,r),t},n.copy=s,n.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.set=function(t,a,n,r,e,u,o,i,s){return t[0]=a,t[1]=n,t[2]=r,t[3]=e,t[4]=u,t[5]=o,t[6]=i,t[7]=s,t},n.getReal=u.copy,n.getDual=function(t,a){return t[0]=a[4],t[1]=a[5],t[2]=a[6],t[3]=a[7],t},n.setReal=u.copy,n.setDual=function(t,a){return t[4]=a[0],t[5]=a[1],t[6]=a[2],t[7]=a[3],t},n.getTranslation=function(t,a){var n=a[4],r=a[5],e=a[6],u=a[7],o=-a[0],i=-a[1],s=-a[2],c=a[3];return t[0]=2*(n*c+u*o+r*s-e*i),t[1]=2*(r*c+u*i+e*o-n*s),t[2]=2*(e*c+u*s+n*i-r*o),t},n.translate=function(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=.5*n[0],s=.5*n[1],c=.5*n[2],h=a[4],f=a[5],M=a[6],l=a[7];return t[0]=r,t[1]=e,t[2]=u,t[3]=o,t[4]=o*i+e*c-u*s+h,t[5]=o*s+u*i-r*c+f,t[6]=o*c+r*s-e*i+M,t[7]=-r*i-e*s-u*c+l,t},n.rotateX=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateX(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateY=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateY(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateZ=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateZ(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateByQuatAppend=function(t,a,n){var r=n[0],e=n[1],u=n[2],o=n[3],i=a[0],s=a[1],c=a[2],h=a[3];return t[0]=i*o+h*r+s*u-c*e,t[1]=s*o+h*e+c*r-i*u,t[2]=c*o+h*u+i*e-s*r,t[3]=h*o-i*r-s*e-c*u,i=a[4],s=a[5],c=a[6],h=a[7],t[4]=i*o+h*r+s*u-c*e,t[5]=s*o+h*e+c*r-i*u,t[6]=c*o+h*u+i*e-s*r,t[7]=h*o-i*r-s*e-c*u,t},n.rotateByQuatPrepend=function(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=n[0],s=n[1],c=n[2],h=n[3];return t[0]=r*h+o*i+e*c-u*s,t[1]=e*h+o*s+u*i-r*c,t[2]=u*h+o*c+r*s-e*i,t[3]=o*h-r*i-e*s-u*c,i=n[4],s=n[5],c=n[6],h=n[7],t[4]=r*h+o*i+e*c-u*s,t[5]=e*h+o*s+u*i-r*c,t[6]=u*h+o*c+r*s-e*i,t[7]=o*h-r*i-e*s-u*c,t},n.rotateAroundAxis=function(t,a,n,r){if(Math.abs(r)<e.EPSILON)return s(t,a);var u=Math.hypot(n[0],n[1],n[2]);r*=.5;var o=Math.sin(r),i=o*n[0]/u,c=o*n[1]/u,h=o*n[2]/u,f=Math.cos(r),M=a[0],l=a[1],b=a[2],v=a[3];t[0]=M*f+v*i+l*h-b*c,t[1]=l*f+v*c+b*i-M*h,t[2]=b*f+v*h+M*c-l*i,t[3]=v*f-M*i-l*c-b*h;var m=a[4],R=a[5],P=a[6],d=a[7];return t[4]=m*f+d*i+R*h-P*c,t[5]=R*f+d*c+P*i-m*h,t[6]=P*f+d*h+m*c-R*i,t[7]=d*f-m*i-R*c-P*h,t},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t},n.multiply=c,n.mul=c,n.scale=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t},n.dot=u.dot,n.lerp=function(t,a,r,e){var u=1-e;return n.dot(a,r)<0&&(e=-e),t[0]=a[0]*u+r[0]*e,t[1]=a[1]*u+r[1]*e,t[2]=a[2]*u+r[2]*e,t[3]=a[3]*u+r[3]*e,t[4]=a[4]*u+r[4]*e,t[5]=a[5]*u+r[5]*e,t[6]=a[6]*u+r[6]*e,t[7]=a[7]*u+r[7]*e,t},n.invert=function(t,a){var r=n.squaredLength(a);return t[0]=-a[0]/r,t[1]=-a[1]/r,t[2]=-a[2]/r,t[3]=a[3]/r,t[4]=-a[4]/r,t[5]=-a[5]/r,t[6]=-a[6]/r,t[7]=a[7]/r,t},n.conjugate=function(t,a){return t[0]=-a[0],t[1]=-a[1],t[2]=-a[2],t[3]=a[3],t[4]=-a[4],t[5]=-a[5],t[6]=-a[6],t[7]=a[7],t},n.length=u.length,n.len=n.length,n.squaredLength=u.squaredLength,n.sqrLen=n.squaredLength,n.normalize=function(t,a){var r=n.squaredLength(a);if(r>0){r=Math.sqrt(r);var e=a[0]/r,u=a[1]/r,o=a[2]/r,i=a[3]/r,s=a[4],c=a[5],h=a[6],f=a[7],M=e*s+u*c+o*h+i*f;t[0]=e,t[1]=u,t[2]=o,t[3]=i,t[4]=(s-e*M)/r,t[5]=(c-u*M)/r,t[6]=(h-o*M)/r,t[7]=(f-i*M)/r}return t},n.str=function(t){return"quat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+")"},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]},n.equals=function(t,a){var n=t[0],r=t[1],u=t[2],o=t[3],i=t[4],s=t[5],c=t[6],h=t[7],f=a[0],M=a[1],l=a[2],b=a[3],v=a[4],m=a[5],R=a[6],P=a[7];return Math.abs(n-f)<=e.EPSILON*Math.max(1,Math.abs(n),Math.abs(f))&&Math.abs(r-M)<=e.EPSILON*Math.max(1,Math.abs(r),Math.abs(M))&&Math.abs(u-l)<=e.EPSILON*Math.max(1,Math.abs(u),Math.abs(l))&&Math.abs(o-b)<=e.EPSILON*Math.max(1,Math.abs(o),Math.abs(b))&&Math.abs(i-v)<=e.EPSILON*Math.max(1,Math.abs(i),Math.abs(v))&&Math.abs(s-m)<=e.EPSILON*Math.max(1,Math.abs(s),Math.abs(m))&&Math.abs(c-R)<=e.EPSILON*Math.max(1,Math.abs(c),Math.abs(R))&&Math.abs(h-P)<=e.EPSILON*Math.max(1,Math.abs(h),Math.abs(P))}},n "c56d9ff837": function _(n,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=n("tslib").__importStar(n("68ca94c15c"));function u(){var n=new a.ARRAY_TYPE(2);return a.ARRAY_TYPE!=Float32Array&&(n[0]=0,n[1]=0),n}function e(n,t,r){return n[0]=t[0]-r[0],n[1]=t[1]-r[1],n}function o(n,t,r){return n[0]=t[0]*r[0],n[1]=t[1]*r[1],n}function c(n,t,r){return n[0]=t[0]/r[0],n[1]=t[1]/r[1],n}function i(n,t){var r=t[0]-n[0],a=t[1]-n[1];return Math.hypot(r,a)}function f(n,t){var r=t[0]-n[0],a=t[1]-n[1];return r*r+a*a}function s(n){var t=n[0],r=n[1];return Math.hypot(t,r)}function h(n){var t=n[0],r=n[1];return t*t+r*r}var M;r.create=u,r.clone=function(n){var t=new a.ARRAY_TYPE(2);return t[0]=n[0],t[1]=n[1],t},r.fromValues=function(n,t){var r=new a.ARRAY_TYPE(2);return r[0]=n,r[1]=t,r},r.copy=function(n,t){return n[0]=t[0],n[1]=t[1],n},r.set=function(n,t,r){return n[0]=t,n[1]=r,n},r.add=function(n,t,r){return n[0]=t[0]+r[0],n[1]=t[1]+r[1],n},r.subtract=e,r.multiply=o,r.divide=c,r.ceil=function(n,t){return n[0]=Math.ceil(t[0]),n[1]=Math.ceil(t[1]),n},r.floor=function(n,t){return n[0]=Math.floor(t[0]),n[1]=Math.floor(t[1]),n},r.min=function(n,t,r){return n[0]=Math.min(t[0],r[0]),n[1]=Math.min(t[1],r[1]),n},r.max=function(n,t,r){return n[0]=Math.max(t[0],r[0]),n[1]=Math.max(t[1],r[1]),n},r.round=function(n,t){return n[0]=Math.round(t[0]),n[1]=Math.round(t[1]),n},r.scale=function(n,t,r){return n[0]=t[0]*r,n[1]=t[1]*r,n},r.scaleAndAdd=function(n,t,r,a){return n[0]=t[0]+r[0]*a,n[1]=t[1]+r[1]*a,n},r.distance=i,r.squaredDistance=f,r.length=s,r.squaredLength=h,r.negate=function(n,t){return n[0]=-t[0],n[1]=-t[1],n},r.inverse=function(n,t){return n[0]=1/t[0],n[1]=1/t[1],n},r.normalize=function(n,t){var r=t[0],a=t[1],u=r*r+a*a;return u>0&&(u=1/Math.sqrt(u)),n[0]=t[0]*u,n[1]=t[1]*u,n},r.dot=function(n,t){return n[0]*t[0]+n[1]*t[1]},r.cross=function(n,t,r){var a=t[0]*r[1]-t[1]*r[0];return n[0]=n[1]=0,n[2]=a,n},r.lerp=function(n,t,r,a){var u=t[0],e=t[1];return n[0]=u+a*(r[0]-u),n[1]=e+a*(r[1]-e),n},r.random=function(n,t){t=t||1;var r=2*a.RANDOM()*Math.PI;return n[0]=Math.cos(r)*t,n[1]=Math.sin(r)*t,n},r.transformMat2=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[2]*u,n[1]=r[1]*a+r[3]*u,n},r.transformMat2d=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[2]*u+r[4],n[1]=r[1]*a+r[3]*u+r[5],n},r.transformMat3=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[3]*u+r[6],n[1]=r[1]*a+r[4]*u+r[7],n},r.transformMat4=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[4]*u+r[12],n[1]=r[1]*a+r[5]*u+r[13],n},r.rotate=function(n,t,r,a){var u=t[0]-r[0],e=t[1]-r[1],o=Math.sin(a),c=Math.cos(a);return n[0]=u*c-e*o+r[0],n[1]=u*o+e*c+r[1],n},r.angle=function(n,t){var r=n[0],a=n[1],u=t[0],e=t[1],o=Math.sqrt(r*r+a*a)*Math.sqrt(u*u+e*e),c=o&&(r*u+a*e)/o;return Math.acos(Math.min(Math.max(c,-1),1))},r.zero=function(n){return n[0]=0,n[1]=0,n},r.str=function(n){return"vec2("+n[0]+", "+n[1]+")"},r.exactEquals=function(n,t){return n[0]===t[0]&&n[1]===t[1]},r.equals=function(n,t){var r=n[0],u=n[1],e=t[0],o=t[1];return Math.abs(r-e)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(e))&&Math.abs(u-o)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(o))},r.len=s,r.sub=e,r.mul=o,r.div=c,r.dist=i,r.sqrDist=f,r.sqrLen=h,r.forEach=(M=u(),function(n,t,r,a,u,e){var o,c;for(t||(t=2),r||(r=0),c=a?Math.min(a*t+r,n.length):n.length,o=r;o<c;o+=t)M[0]=n[o],M[1]=n[o+1],u(M,M,e),n[o]=M[0],n[o+1]=M[1];return n})},n "4baab0b7ce": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),r=e("@bokehjs/core/util/object"),i=e("021b2a3929"),o=e("6c442cdcb4"),_=e("11e0707a8f");class a extends i.AbstractVTKView{initialize(){super.initialize(),this._promises=[],this._renderable=!1,this._arrays={},this._decoded_arrays={},this._pending_arrays={},this.getArray=e=>this._arrays[e]?Promise.resolve(this._arrays[e]):new Promise((t,n)=>{this._pending_arrays[e]={resolve:t,reject:n}}),this.registerArray=(e,t)=>(this._arrays[e]=t,this._pending_arrays[e]&&this._pending_arrays[e].resolve(t),!0),this._synchronizer_context=o.vtkns.SynchronizableRenderWindow.getSynchronizerContext("panel")}connect_signals(){super.connect_signals(),this.connect(this.model.properties.arrays.change,()=>this._decode_arrays()),this.connect(this.model.properties.scene.change,()=>{if(this.model.rebuild)this._vtk_renwin=null,this.invalidate_render();else{const e=r.clone(this.model.scene);Promise.all(this._promises).then(()=>{this._sync_plot(e,()=>{this._on_scene_ready()})})}}),this.connect(this.model.properties.one_time_reset.change,()=>{this._vtk_renwin.getRenderWindow().clearOneTimeUpdaters()})}init_vtk_renwin(){this._vtk_renwin=_.FullScreenRenderWindowSynchronized.newInstance({rootContainer:this.el,container:this._vtk_container,synchronizerContext:this._synchronizer_context})}plot(){this._vtk_renwin.getRenderWindow().clearOneTimeUpdaters(),this._decode_arrays();const e=r.clone(this.model.scene);Promise.all(this._promises).then(()=>{this._sync_plot(e,()=>this._on_scene_ready()).then(()=>{this._set_camera_state(),this._get_camera_state()})})}_decode_arrays(){const e=new o.vtkns.ThirdParty.JSZip,t=this.model.arrays,n=this.registerArray,s=this.model.arrays_processed,r=this.model;Object.keys(t).forEach(i=>{this._decoded_arrays[i]||(this._decoded_arrays[i]=!0,this._promises.push(function(i){return e.loadAsync(atob(t[i])).then(e=>e.file("data/"+i)).then(e=>e.async("arraybuffer")).then(e=>n(i,e)).then(()=>{s.push(i),r.properties.arrays_processed.change.emit()})}(i)))})}_on_scene_ready(){this._promises.length>0||(this._renderable=!0,this._camera_callbacks.push(this._vtk_renwin.getRenderer().getActiveCamera().onModified(()=>this._vtk_render())),this._orientationWidget||this._create_orientation_widget(),this._axes||this._set_axes(),this._vtk_renwin.resize(),this._vtk_render())}_sync_plot(e,t){this._renderable=!1,this._promises=[],this._unsubscribe_camera_cb(),this._synchronizer_context.setFetchArrayFunction(e=>Promise.resolve(this._arrays[e]));const n=this._synchronizer_context.getInstance(this.model.scene.dependencies[0].id);return n&&!this._vtk_renwin.getRenderer()&&this._vtk_renwin.getRenderWindow().addRenderer(n),this._vtk_renwin.getRenderWindow().synchronize(e).then(t)}}n.VTKSynchronizedPlotView=a,a.__name__="VTKSynchronizedPlotView";class h extends i.AbstractVTKPlot{constructor(e){super(e),this.outline=o.vtkns.OutlineFilter.newInstance();const t=o.vtkns.Mapper.newInstance();t.setInputConnection(this.outline.getOutputPort()),this.outline_actor=o.vtkns.Actor.newInstance(),this.outline_actor.setMapper(t)}getActors(e){let t=this.renderer_el.getRenderer().getActors();if(e){const n=this.renderer_el.getSynchronizerContext("panel");t=t.filter(t=>{const s=n.getInstanceId(t);return!!s&&s.slice(-16)==e.slice(1,17)})}return t}static init_VTKSynchronizedPlot(){this.prototype.default_view=a,this.define({arrays:[s.Any,{}],arrays_processed:[s.Array,[]],enable_keybindings:[s.Boolean,!1],one_time_reset:[s.Boolean],rebuild:[s.Boolean,!1],scene:[s.Any,{}]}),this.override({height:300,width:300})}}n.VTKSynchronizedPlot=h,h.__name__="VTKSynchronizedPlot",h.__module__="panel.models.vtk",h.init_VTKSynchronizedPlot()},n "11e0707a8f": function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const t=e("6c442cdcb4");if(t.vtk){const e={containerStyle:null,controlPanelStyle:null,listenWindowResize:!0,resizeCallback:null,controllerVisibility:!0,synchronizerContextName:"default"},n={position:"absolute",left:"25px",top:"25px",backgroundColor:"white",borderRadius:"5px",listStyle:"none",padding:"5px 10px",margin:"0",display:"block",border:"solid 1px black",maxWidth:"calc(100vw - 70px)",maxHeight:"calc(100vh - 60px)",overflow:"auto"};o.FullScreenRenderWindowSynchronized={newInstance:t.vtk.macro.newInstance((o,r,i={})=>{Object.assign(r,e,i),t.vtk.macro.obj(o,r),t.vtk.macro.get(o,r,["renderWindow","openGLRenderWindow","interactor","rootContainer","container","controlContainer","synchronizerContext"]),function(e,o){o.renderWindow=t.vtkns.SynchronizableRenderWindow.newInstance({synchronizerContext:o.synchronizerContext}),o.openGLRenderWindow=t.vtkns.OpenGLRenderWindow.newInstance(),o.openGLRenderWindow.setContainer(o.container),o.renderWindow.addView(o.openGLRenderWindow),o.interactor=t.vtkns.RenderWindowInteractor.newInstance(),o.interactor.setInteractorStyle(t.vtkns.InteractorStyleTrackballCamera.newInstance()),o.interactor.setView(o.openGLRenderWindow),o.interactor.initialize(),o.interactor.bindEvents(o.container),e.getRenderer=()=>o.renderWindow.getRenderers()[0],e.removeController=()=>{const e=o.controlContainer;e&&e.parentNode.removeChild(e)},e.setControllerVisibility=e=>{o.controllerVisibility=e,o.controlContainer&&(o.controlContainer.style.display=e?"block":"none")},e.toggleControllerVisibility=()=>{e.setControllerVisibility(!o.controllerVisibility)},e.addController=r=>{o.controlContainer=document.createElement("div"),t.applyStyle(o.controlContainer,o.controlPanelStyle||n),o.rootContainer.appendChild(o.controlContainer),o.controlContainer.innerHTML=r,e.setControllerVisibility(o.controllerVisibility),o.rootContainer.addEventListener("keypress",n=>{"c"===String.fromCharCode(n.charCode)&&e.toggleControllerVisibility()})},e.delete=t.vtk.macro.chain(e.setContainer,o.openGLRenderWindow.delete,e.delete),e.resize=()=>{const e=o.container.getBoundingClientRect(),n=window.devicePixelRatio||1;o.openGLRenderWindow.setSize(Math.floor(e.width*n),Math.floor(e.height*n)),o.resizeCallback&&o.resizeCallback(e),o.renderWindow.render()},e.setResizeCallback=n=>{o.resizeCallback=n,e.resize()},o.listenWindowResize&&window.addEventListener("resize",e.resize),e.resize()}(o,r)})}}},n }, "4e90918c0a", {"index":"4e90918c0a","models/index":"c4b9651916","models/ace":"abb1112c2c","models/layout":"7116a7a602","models/audio":"66d52165db","models/card":"0106b0a1bf","models/comm_manager":"684c940c17","models/deckgl":"d0d2aafca0","models/tooltips":"064eac2866","models/echarts":"c6decbe3f5","models/html":"ed08037ce5","models/ipywidget":"cb7ac8d1fa","models/json":"284504a0cf","models/file_download":"7a99dba4eb","models/katex":"7b859fb3cf","models/location":"aded270681","models/mathjax":"0c21036737","models/player":"79c41bbf71","models/plotly":"47b5ae5c43","models/util":"990b5dd5c7","models/progress":"765e9cea08","models/singleselect":"ff9dd91f7b","models/state":"38b2bc9574","models/vega":"294adeb985","models/video":"b0c3e9e9c2","models/videostream":"3c7145a2fa","models/vtk/index":"c51f25e2a7","models/vtk/vtkjs":"6ed30646d7","models/vtk/vtklayout":"021b2a3929","models/vtk/util":"6c442cdcb4","models/vtk/vtkcolorbar":"c010237f8b","models/vtk/vtkvolume":"087f1e0be6","models/vtk/vtkaxes":"3ae7537200","models/vtk/vtksynchronized":"4baab0b7ce","models/vtk/panel_fullscreen_renwin_sync":"11e0707a8f"}, {});n })nnn /* END panel.min.js */n },n function(Bokeh) {} // ensure no trailing comma for IEn ];nn function run_inline_js() {n if ((root.Bokeh !== undefined) || (force === true)) {n for (var i = 0; i < inline_js.length; i++) {n inline_js[i].call(root, root.Bokeh);n }} else if (Date.now() < root._bokeh_timeout) {n setTimeout(run_inline_js, 100);n } else if (!root._bokeh_failed_load) {n console.log("Bokeh: BokehJS failed to load within specified timeout.");n root._bokeh_failed_load = true;n }n }nn if (root._bokeh_is_loading === 0) {n console.debug("Bokeh: BokehJS loaded, going straight to plotting");n run_inline_js();n } else {n load_libs(css_urls, js_urls, function() {n console.debug("Bokeh: BokehJS plotting callback run at", now());n run_inline_js();n });n }n}(window));”
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“n”, “if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {n”, ” window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}n”, “}n”, “n”, “n”, ” function JupyterCommManager() {n”, ” }n”, “n”, ” JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {n”, ” if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {n”, ” var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;n”, ” comm_manager.register_target(comm_id, function(comm) {n”, ” comm.on_msg(msg_handler);n”, ” });n”, ” } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {n”, ” window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {n”, ” comm.onMsg = msg_handler;n”, ” });n”, ” } else if (typeof google != ‘undefined’ && google.colab.kernel != null) {n”, ” google.colab.kernel.comms.registerTarget(comm_id, (comm) => {n”, ” var messages = comm.messages[Symbol.asyncIterator]();n”, ” function processIteratorResult(result) {n”, ” var message = result.value;n”, ” console.log(message)n”, ” var content = {data: message.data, comm_id};n”, ” var buffers = []n”, ” for (var buffer of message.buffers || []) {n”, ” buffers.push(new DataView(buffer))n”, ” }n”, ” var metadata = message.metadata || {};n”, ” var msg = {content, buffers, metadata}n”, ” msg_handler(msg);n”, ” return messages.next().then(processIteratorResult);n”, ” }n”, ” return messages.next().then(processIteratorResult);n”, ” })n”, ” }n”, ” }n”, “n”, ” JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {n”, ” if (comm_id in window.PyViz.comms) {n”, ” return window.PyViz.comms[comm_id];n”, ” } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {n”, ” var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;n”, ” var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);n”, ” if (msg_handler) {n”, ” comm.on_msg(msg_handler);n”, ” }n”, ” } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {n”, ” var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);n”, ” comm.open();n”, ” if (msg_handler) {n”, ” comm.onMsg = msg_handler;n”, ” }n”, ” } else if (typeof google != ‘undefined’ && google.colab.kernel != null) {n”, ” var comm_promise = google.colab.kernel.comms.open(comm_id)n”, ” comm_promise.then((comm) => {n”, ” window.PyViz.comms[comm_id] = comm;n”, ” if (msg_handler) {n”, ” var messages = comm.messages[Symbol.asyncIterator]();n”, ” function processIteratorResult(result) {n”, ” var message = result.value;n”, ” var content = {data: message.data};n”, ” var metadata = message.metadata || {comm_id};n”, ” var msg = {content, metadata}n”, ” msg_handler(msg);n”, ” return messages.next().then(processIteratorResult);n”, ” }n”, ” return messages.next().then(processIteratorResult);n”, ” }n”, ” }) n”, ” var sendClosure = (data, metadata, buffers, disposeOnDone) => {n”, ” return comm_promise.then((comm) => {n”, ” comm.send(data, metadata, buffers, disposeOnDone);n”, ” });n”, ” };n”, ” var comm = {n”, ” send: sendClosuren”, ” };n”, ” }n”, ” window.PyViz.comms[comm_id] = comm;n”, ” return comm;n”, ” }n”, ” window.PyViz.comm_manager = new JupyterCommManager();n”, ” n”, “n”, “n”, “var JS_MIME_TYPE = ‘application/javascript’;n”, “var HTML_MIME_TYPE = ‘text/html’;n”, “var EXEC_MIME_TYPE = ‘application/vnd.holoviews_exec.v0+json’;n”, “var CLASS_NAME = ‘output’;n”, “n”, “/n”, ” * Render data to the DOM noden”, ” */n”, “function render(props, node) {n”, ” var div = document.createElement("div");n”, ” var script = document.createElement("script");n”, ” node.appendChild(div);n”, ” node.appendChild(script);n”, “}n”, “n”, “/n”, ” * Handle when a new output is addedn”, ” /n”, “function handle_add_output(event, handle) {n”, ” var output_area = handle.output_area;n”, ” var output = handle.output;n”, ” if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {n”, ” returnn”, ” }n”, ” var id = output.metadata[EXEC_MIME_TYPE]["id"];n”, ” var toinsert = output_area.element.find("." + CLASS_NAME.split(’ ‘)[0]);n”, ” if (id !== undefined) {n”, ” var nchildren = toinsert.length;n”, ” var html_node = toinsert[nchildren-1].children[0];n”, ” html_node.innerHTML = output.data[HTML_MIME_TYPE];n”, ” var scripts = [];n”, ” var nodelist = html_node.querySelectorAll("script");n”, ” for (var i in nodelist) {n”, ” if (nodelist.hasOwnProperty(i)) {n”, ” scripts.push(nodelist[i])n”, ” }n”, ” }n”, “n”, ” scripts.forEach( function (oldScript) {n”, ” var newScript = document.createElement("script");n”, ” var attrs = [];n”, ” var nodemap = oldScript.attributes;n”, ” for (var j in nodemap) {n”, ” if (nodemap.hasOwnProperty(j)) {n”, ” attrs.push(nodemap[j])n”, ” }n”, ” }n”, ” attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });n”, ” newScript.appendChild(document.createTextNode(oldScript.innerHTML));n”, ” oldScript.parentNode.replaceChild(newScript, oldScript);n”, ” });n”, ” if (JS_MIME_TYPE in output.data) {n”, ” toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];n”, ” }n”, ” output_area._hv_plot_id = id;n”, ” if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {n”, ” window.PyViz.plot_index[id] = Bokeh.index[id];n”, ” } else {n”, ” window.PyViz.plot_index[id] = null;n”, ” }n”, ” } else if (output.metadata[EXEC_MIME_TYPE]["server_id"] !== undefined) {n”, ” var bk_div = document.createElement("div");n”, ” bk_div.innerHTML = output.data[HTML_MIME_TYPE];n”, ” var script_attrs = bk_div.children[0].attributes;n”, ” for (var i = 0; i < script_attrs.length; i++) {n”, ” toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);n”, ” }n”, ” // store reference to server id on output_arean”, ” output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE]["server_id"];n”, ” }n”, “}n”, “n”, “/*n”, ” * Handle when an output is cleared or removedn”, ” /n”, “function handle_clear_output(event, handle) {n”, ” var id = handle.cell.output_area._hv_plot_id;n”, ” var server_id = handle.cell.output_area._bokeh_server_id;n”, ” if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }n”, ” var comm = window.PyViz.comm_manager.get_client_comm("hv-extension-comm", "hv-extension-comm", function () {});n”, ” if (server_id !== null) {n”, ” comm.send({event_type: ‘server_delete’, ‘id’: server_id});n”, ” return;n”, ” } else if (comm !== null) {n”, ” comm.send({event_type: ‘delete’, ‘id’: id});n”, ” }n”, ” delete PyViz.plot_index[id];n”, ” if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {n”, ” var doc = window.Bokeh.index[id].model.documentn”, ” doc.clear();n”, ” const i = window.Bokeh.documents.indexOf(doc);n”, ” if (i > -1) {n”, ” window.Bokeh.documents.splice(i, 1);n”, ” }n”, ” }n”, “}n”, “n”, “/*n”, ” * Handle kernel restart eventn”, ” /n”, “function handle_kernel_cleanup(event, handle) {n”, ” delete PyViz.comms["hv-extension-comm"];n”, ” window.PyViz.plot_index = {}n”, “}n”, “n”, “/*n”, ” * Handle update_display_data messagesn”, ” */n”, “function handle_update_output(event, handle) {n”, ” handle_clear_output(event, {cell: {output_area: handle.output_area}})n”, ” handle_add_output(event, handle)n”, “}n”, “n”, “function register_renderer(events, OutputArea) {n”, ” function append_mime(data, metadata, element) {n”, ” // create a DOM node to render ton”, ” var toinsert = this.create_output_subarea(n”, ” metadata,n”, ” CLASS_NAME,n”, ” EXEC_MIME_TYPEn”, ” );n”, ” this.keyboard_manager.register_events(toinsert);n”, ” // Render to noden”, ” var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};n”, ” render(props, toinsert[0]);n”, ” element.append(toinsert);n”, ” return toinsertn”, ” }n”, “n”, ” events.on(‘output_added.OutputArea’, handle_add_output);n”, ” events.on(‘output_updated.OutputArea’, handle_update_output);n”, ” events.on(‘clear_output.CodeCell’, handle_clear_output);n”, ” events.on(‘delete.Cell’, handle_clear_output);n”, ” events.on(‘kernel_ready.Kernel’, handle_kernel_cleanup);n”, “n”, ” OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {n”, ” safe: true,n”, ” index: 0n”, ” });n”, “}n”, “n”, “if (window.Jupyter !== undefined) {n”, ” try {n”, ” var events = require(‘base/js/events’);n”, ” var OutputArea = require(‘notebook/js/outputarea’).OutputArea;n”, ” if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {n”, ” register_renderer(events, OutputArea);n”, ” }n”, ” } catch(err) {n”, ” }n”, “}n”
], “application/vnd.holoviews_load.v0+json”: “nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}n}nnn function JupyterCommManager() {n }nn JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;n comm_manager.register_target(comm_id, function(comm) {n comm.on_msg(msg_handler);n });n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {n comm.onMsg = msg_handler;n });n } else if (typeof google != ‘undefined’ && google.colab.kernel != null) {n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {n var messages = comm.messages[Symbol.asyncIterator]();n function processIteratorResult(result) {n var message = result.value;n console.log(message)n var content = {data: message.data, comm_id};n var buffers = []n for (var buffer of message.buffers || []) {n buffers.push(new DataView(buffer))n }n var metadata = message.metadata || {};n var msg = {content, buffers, metadata}n msg_handler(msg);n return messages.next().then(processIteratorResult);n }n return messages.next().then(processIteratorResult);n })n }n }nn JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {n if (comm_id in window.PyViz.comms) {n return window.PyViz.comms[comm_id];n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);n if (msg_handler) {n comm.on_msg(msg_handler);n }n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);n comm.open();n if (msg_handler) {n comm.onMsg = msg_handler;n }n } else if (typeof google != ‘undefined’ && google.colab.kernel != null) {n var comm_promise = google.colab.kernel.comms.open(comm_id)n comm_promise.then((comm) => {n window.PyViz.comms[comm_id] = comm;n if (msg_handler) {n var messages = comm.messages[Symbol.asyncIterator]();n function processIteratorResult(result) {n var message = result.value;n var content = {data: message.data};n var metadata = message.metadata || {comm_id};n var msg = {content, metadata}n msg_handler(msg);n return messages.next().then(processIteratorResult);n }n return messages.next().then(processIteratorResult);n }n }) n var sendClosure = (data, metadata, buffers, disposeOnDone) => {n return comm_promise.then((comm) => {n comm.send(data, metadata, buffers, disposeOnDone);n });n };n var comm = {n send: sendClosuren };n }n window.PyViz.comms[comm_id] = comm;n return comm;n }n window.PyViz.comm_manager = new JupyterCommManager();n nnnvar JS_MIME_TYPE = ‘application/javascript’;nvar HTML_MIME_TYPE = ‘text/html’;nvar EXEC_MIME_TYPE = ‘application/vnd.holoviews_exec.v0+json’;nvar CLASS_NAME = ‘output’;nn/n * Render data to the DOM noden */nfunction render(props, node) {n var div = document.createElement("div");n var script = document.createElement("script");n node.appendChild(div);n node.appendChild(script);n}nn/n * Handle when a new output is addedn /nfunction handle_add_output(event, handle) {n var output_area = handle.output_area;n var output = handle.output;n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {n returnn }n var id = output.metadata[EXEC_MIME_TYPE]["id"];n var toinsert = output_area.element.find("." + CLASS_NAME.split(’ ‘)[0]);n if (id !== undefined) {n var nchildren = toinsert.length;n var html_node = toinsert[nchildren-1].children[0];n html_node.innerHTML = output.data[HTML_MIME_TYPE];n var scripts = [];n var nodelist = html_node.querySelectorAll("script");n for (var i in nodelist) {n if (nodelist.hasOwnProperty(i)) {n scripts.push(nodelist[i])n }n }nn scripts.forEach( function (oldScript) {n var newScript = document.createElement("script");n var attrs = [];n var nodemap = oldScript.attributes;n for (var j in nodemap) {n if (nodemap.hasOwnProperty(j)) {n attrs.push(nodemap[j])n }n }n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });n newScript.appendChild(document.createTextNode(oldScript.innerHTML));n oldScript.parentNode.replaceChild(newScript, oldScript);n });n if (JS_MIME_TYPE in output.data) {n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];n }n output_area._hv_plot_id = id;n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {n window.PyViz.plot_index[id] = Bokeh.index[id];n } else {n window.PyViz.plot_index[id] = null;n }n } else if (output.metadata[EXEC_MIME_TYPE]["server_id"] !== undefined) {n var bk_div = document.createElement("div");n bk_div.innerHTML = output.data[HTML_MIME_TYPE];n var script_attrs = bk_div.children[0].attributes;n for (var i = 0; i < script_attrs.length; i++) {n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);n }n // store reference to server id on output_arean output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE]["server_id"];n }n}nn/*n * Handle when an output is cleared or removedn /nfunction handle_clear_output(event, handle) {n var id = handle.cell.output_area._hv_plot_id;n var server_id = handle.cell.output_area._bokeh_server_id;n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }n var comm = window.PyViz.comm_manager.get_client_comm("hv-extension-comm", "hv-extension-comm", function () {});n if (server_id !== null) {n comm.send({event_type: ‘server_delete’, ‘id’: server_id});n return;n } else if (comm !== null) {n comm.send({event_type: ‘delete’, ‘id’: id});n }n delete PyViz.plot_index[id];n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {n var doc = window.Bokeh.index[id].model.documentn doc.clear();n const i = window.Bokeh.documents.indexOf(doc);n if (i > -1) {n window.Bokeh.documents.splice(i, 1);n }n }n}nn/*n * Handle kernel restart eventn /nfunction handle_kernel_cleanup(event, handle) {n delete PyViz.comms["hv-extension-comm"];n window.PyViz.plot_index = {}n}nn/*n * Handle update_display_data messagesn */nfunction handle_update_output(event, handle) {n handle_clear_output(event, {cell: {output_area: handle.output_area}})n handle_add_output(event, handle)n}nnfunction register_renderer(events, OutputArea) {n function append_mime(data, metadata, element) {n // create a DOM node to render ton var toinsert = this.create_output_subarea(n metadata,n CLASS_NAME,n EXEC_MIME_TYPEn );n this.keyboard_manager.register_events(toinsert);n // Render to noden var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};n render(props, toinsert[0]);n element.append(toinsert);n return toinsertn }nn events.on(‘output_added.OutputArea’, handle_add_output);n events.on(‘output_updated.OutputArea’, handle_update_output);n events.on(‘clear_output.CodeCell’, handle_clear_output);n events.on(‘delete.Cell’, handle_clear_output);n events.on(‘kernel_ready.Kernel’, handle_kernel_cleanup);nn OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {n safe: true,n index: 0n });n}nnif (window.Jupyter !== undefined) {n try {n var events = require(‘base/js/events’);n var OutputArea = require(‘notebook/js/outputarea’).OutputArea;n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {n register_renderer(events, OutputArea);n }n } catch(err) {n }n}n”
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “text/html”: [
“n”, “<div class="logo-block">n”, “<img src=’data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzn”, “AAAB+wAAAfsBxc2miwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAA6zSURBn”, “VHic7ZtpeFRVmsf/5966taWqUlUJ2UioBBJiIBAwCZtog9IOgjqACsogKtqirT2ttt069nQ/zDztn”, “tI4+CrJIREFaFgWhBXpUNhHZQoKBkIUASchWla1S+3ar7r1nPkDaCAnZKoQP/D7mnPOe9/xy76n3n”, “nFSAW9ziFoPFNED2LLK5wcyBDObkb8ZkxuaoSYlI6ZcOKq1eWFdedqNzGHQBk9RMEwFAASkk0Xw3n”, “ETacDNi2vtvc7L0ROdw0AjoSotQVkKSvHQz/wRO1lScGModBFbDMaNRN1A4tUBCS3lk7BWhQkgpDn”, “lG4852/+7DWr1R3uHAZVQDsbh6ZPN7CyxUrCzJMRouusj0ipRwD2uKm0Zn5d2dFwzX1TCGhnmdGon”, “G62Nna+isiUqhkzuKrkQaJlPEv5mFl2fvGg2t/VnzkEV8F5ioioOEWkLG86fvbpthynjdhXYZziQn”, “x1hC9J2NFyi8vCTt91Fh04KGip0AaG9zuCk2wQCVyoNU3Hjezee9bq92duzzTmxsRJoy+jEZZZYon”, “GTKJ6SJngdJqAfRzpze0+jHreUtPc7gpBLQnIYK6BYp/uGhw9YK688eu7v95ysgshcg9qSLMo3JCn”, “4jqLKQFBgdKDPoQ+Pltb8dUyQLpeDjeVgI6EgLIQFT5tEl3rn2losHVsexbZ3EyT9wE1uGdkIPcyn”, “BGxn8QUq1QrA5nqW5i2tLqvrrM9NK6AdkVIvL9E9bZL/oyfMVd/jqvc8LylzRBKDJSzIExwhQzuLn”, “QYGQj4rHfFTc8mUdu3E7yoLtbTe9gI4EqVgVkug2i5+uXGo919ixbRog+3fTbQ8qJe4ZOYNfMoTIn”, “OoshUNosgO60AisX15aeI2PSIp5KiFLI9ubb1vV3Qb2ltwLakUCDAkWX7/nHKRmmGIl9VgYsUhJmn”, “2NXjKYADtM1ygne9QQDIXlk49FBstMKx66D1v4+XuQr7vqTe0VcBHQlRWiOCbmmSYe2SqtL6q5rJn”, “zsTb7lKx3FKOYC4DoqyS/B5bvLPxvD9Qtf6saxYLQGJErmDOdOMr/zo96km1nElr8bmPOBwI9COvn”, “HnFPRIwmkSOv9kcAS4heRsidOkpeWBgZM+UBrTFAXNYL5Vf2ii9c1trNzpYdaoVil3WIc+wdk+gQn”, “noie3ecCcxt9ITcLAPWt/laGEO/9U6PmzZkenTtsSMQ8uYywJVW+grCstAvCIaAdArAsIWkRDDs/n”, “KzLm2YcjY1Lv0UdW73HabE9n6V66cxSzfEmuJssTpKGVp+0vHq73FwL46eOjpMpbRAnNmJFrGJNun”, “Ukf9Yrz+3rghiumCKNXXWPhLYcjxGsIpoCMsIRoFITkW8AuyM8jC1+/QLx4bozCEJIq38+1rtpR6n”, “V/yzb8eBlRb3fo5l783N0CWolAzJHaVNzkrTzlEp2bQ2q3TC5gn6wpnoQAmwSiGh2GitnTmVMc5On”, “UyfKWUKCIsU7+fZDKwqdT6DDpvkzAX4/+AMFjk0tDp5GRXLpQ2MUmhgDp5gxQT8+Y7hyPsMi8uxFn”, “71H0oebujHALECjFKaW9Lm68n18wXp2kVzIcABytD5iXFzg+WVXkegpAsOOYziqo0OkK76GyquC3n”, “ltZAzMhhqlSNmmWTE5T6e3IN05ITFLM4GdN0vtZ3ob8Jh1NAKXFbm5PtLU/eqTSlGjkNAJjdgn/Nn”, “aedXa0tdi7+t9G0FIF49rtMSEgAs1kDLkTPO7ebm4IUWeyh1bKomXqlgMG6kJmHcSM0clYLJ8XtRn”, “1GTnbV3F6I5wCGikAb402npp1h1s7LQUZZSMIfALFOuL3UUrfnS8+rez7v9qcold5tilgHbO1fjKn”, “9ubb17u9oshxzMiUBKXWqJNxd+fqb0tLVs4lILFnK71H0Ind7uiPgACVcFJlrb0tV6DzxqqTIhUMn”, “CwDf1/rrVhTa33/3pGPxJYdQ2l2cbgVcQSosdx8uqnDtbGjh9SlDVSMNWhlnilfqZk42Th2ZpLpfn”, “xrHec5e815zrr0dfBZSwzkZfqsv+1FS1KUknUwPARVvItfKUY+cn57yP7qv07UE3p8B2uhUwLk09n”, “e0SCOrK+hbdYHYLjRIl71wWzv9jpEoeOHhGRrJAzyEyNiJuUqX0g2sBN5kGK6y2Blp5M3lsB9Qh4n”, “y2Ja6x6+i0ucmKgwMATwhSjdUu49tKrQ/pvN5d53ml2CGwCmJipmKjgmyuaXzNeL2a0AkQ01Th5jn”, “2DktO3Jyk8f9vcOBQHV94OK+fPumJmvQHxJoWkaKWq9Vs+yUsbq0zGT1I4RgeH2b5wef7+c7bl8Fn”, “eKgoHVVZa8ZPEORzR6sT1BzDUAD/d9F78e2Tzv99v8D+fLVTqAKAsbGamKey1Mt9Ann4eH3gTXTzn”, “idWtAJ8PQWOk7NzSeQn/OTHDuEikVF1R4z8BQCy+6D1aWRfY0tTGG2OM8rRoPaeIj5ZHzJxszElNn”, “VM8K8JS5WOfv8mzRnQAKoEhmt8gyPM4lU9SmBK1MCQBnW4KONT86v1hZ1PbwSXPw4JWussVjtH9Yn”, “NCoiL9UoH/6PSu8jFrfY2t36erQHXLIEakMi1SydmzB31h3GGXFDFNPaK8Rme9B79Ixrd0WN+1ijn”, “NRQ/doRmuFLBkHSTOm5GruG+pFjFdAmorG4IXH1Qua6ASniclfFtDYt+oUjKipPrCQB7QBQ2lrgPn”, “fFzm+9XWUtcqJ3/5vDLDpJ79XHZk3u8nGZ42qlj1+ydtbxysCezrydp6ugmipNJ7WBPB5tydY0jPn”, “HaVNzs3QzeE4ZpTbI+ZbnSFPbVOw9vsfnVvqWnirPyCNGD08IlqtYkh2hjZ5dErEQzoNm+6ykyOtn”, “Lt5/PQEuSRRKo22VkydK+vvS1XEKlhCJAnsqvcVvH7f/ZU2R67eXbMEGAMiIV5oWZWiWvz5Fv2xGn”, “sjqNJQRvn3Rs2lji/lNP19VjAQDgD7FHhujZB9OGqYxRkZxixgRDVlqS6uEOFaJUVu0rPFzctrnFn”, “JqijImVp8dEKVWyUXDk92zAuMZ6bFwpBU1HrOw6AdhQgUooChb0+ItMbWJitSo5Ws3IAOGEOtL53n”, “0vHZih9sC4vtofZ7Qu6523V/fmGcds1TY3V36pUsBwAbSlxnVh2xLfAD/IAIMDf7XYIkNmXfpp2ln”, “18rkAJAy9HKFaIr/qULkeQQKy9zf1JgDB2uaeFNGijo5QsUyacNUUTOnGO42xSnv4oOwpDi1zYkcn”, “efUc3I5Gk6PhyTuVKaOGyLUAYPGIoY9Pu/atL/L92+4q9wbflRJ2Trpm/jPjdBtfnqB/dIThcl8An”, “KG7hbRuKnb8qsQsVvVlTrwQAQMUlf3kwJI24Z4JhPMtcfng5GcH49GsrxJpGvvHIaeem2ma+KSjQn”, “lIwUdYyCY8j4dE1KzijNnIP2llF2wcXNnsoapw9XxsgYAl6k+KzUXbi2yP3KR2ecf6z3BFsBICdWn”, “nvnIaG3eHybqX7vbpEqUMT+9OL4Qpe8VON7dXuFd39v19FoAABRVePbGGuXTszO0P7tu6lghUonEn”, “llRdrhArLvmKdh9u29jcFiRRkfLUxBiFNiqSU9icoZQHo5mYBI1MBgBH6wMNb+U7Pnw337H4gi1Yn”, “ciWs+uks3Z9fztUvfzxTm9Ne8XXkvQLHNytOOZeiD4e0PgkAIAYCYknKUNUDSXEKzdWNpnil7r4pn”, “xqkjTarZMtk/K8TQ6Qve78qqvXurGwIJqcOUKfUWHsm8KGvxSP68YudXq4pcj39X49uOK2X142O0n”, “Tz5/u/7TVybqH0rSya6ZBwD21/gubbrgWdDgEOx9WUhfBaC2ibcEBYm7a7x+ukrBMNcEZggyR0TEn”, “T8zUPjikQ4VosQZbTpS4vqizBKvqmvjsqnpfzaZyx9JPiz1/bfGKdgD45XB1zoIMzYbfTdS/NClBn”, “Gct0USiY3YL/g0LHy/uq/Ef6uo5+n0R/vyhp17Klpge763f8rMu6YU/zrn2nml+2WtH+Z+5IAAFcn”, “2bUTdTDOSNa9+cQY7YLsOIXhevEkCvzph7a8laecz/Un/z4/Ae04XeL3UQb57IwU9ZDr9UuKVajvn”, “nxp1+1UVIo/LjztZkKH59fO3G/JemqCfmaCRqbqbd90ZZ8FfjtkfAyD0J/9+C2h1hDwsSxvGjNDcn”, “b4zk5NfrSwiQblLHzZhg+Jf4aPlUwpDqkQqa9nimbt1/TDH8OitGMaQnj+RJS6B1fbF7SY1TqO5vn”, “/v0WAADl1f7zokgS7s7VT2DZ7pegUjBM7mjtiDZbcN4j0YrHH0rXpCtY0qPX0cVL0rv5jv/ZXendn”, “0u/EESYBAFBU4T4Qa5TflZOhTe7pmKpaP8kCVUVw1+yhXfJWvn1P3hnXi33JsTN6PnP3hHZ8Z3/hn”, “aLHzmkNPuPj7Bc/F/Q38CwjTpSwQXgE4Vmwry9tpfq/ZFgqFMy4AVDtCvi8rvMvOmv0N4YwbVgEAn”, “sPM72/KVnzfspmH7HQGCRLG2yL1+z8XwvPcdCbsAANh+xPzstgMtxeGKt+6MK3/tacfvwhWvIwMin”, “oKEBtm0H7W+UVfkc/Y1V0BhoPlDr/w1w/eu1vjIgAgDg22OtX6/eYfnEz/focrZTHAFR+PSs56/7n”, “q32nwpjazxgwAQCwcU/T62t3WL7r6/jVRa6/byp1rei+Z98ZUAEAhEPHPc8fKnTU9nbgtnOe8h0ln”, “9hcGIqmODLQAHCy2Xti6v/XNRivf43f4fFvIteu854+VHnR7q9tfBlwAAGz+pnndB9vM26UebAe8n”, “SLHujPOTPVW+rwY+sxskAAC2HrA8t2Vvc7ffP1r9o+vwR2dcr92InIAbKKC1FZ5tB1tf+/G8p8svn”, “N/9Q5zd/XR34LYCwV5JdccMEAMDBk45DH243r/X4xGvqxFa/GNpS7n6rwOwNWwHVE26oAADYurf1n”, “zx/utOzt+DMKYM0p17YtZZ5VNzqfsB2HewG1WXE8PoZ7gOclbTIvynZf9JV+fqZtfgs/8F/Nu5rBn”, “EIBmJ+8QRMmpU7EzGRsf2FzuePqYRbzh/zE26EwdrT10f6r6o8HOYzCJB9Dpff8tbnGLG8L/A/WEn”, “roTBs2RqAAAAAElFTkSuQmCC’n”, ” style=’height:25px; border-radius:12px; display: inline-block; float: left; vertical-align: middle’></img>n”, “n”, “n”, ” <img src=’data:image/png;base64,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’n”, ” style=’height:15px; border-radius:12px; display: inline-block; float: left’></img>n”, ” n”, “n”, “n”, “n”, “n”, “</div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“n”, “(function(root) {n”, ” function now() {n”, ” return new Date();n”, ” }n”, “n”, ” var force = true;n”, “n”, ” if (typeof root._bokeh_onload_callbacks === "undefined" || force === true) {n”, ” root._bokeh_onload_callbacks = [];n”, ” root._bokeh_is_loading = undefined;n”, ” }n”, “n”, ” if (typeof (root._bokeh_timeout) === "undefined" || force === true) {n”, ” root._bokeh_timeout = Date.now() + 5000;n”, ” root._bokeh_failed_load = false;n”, ” }n”, “n”, ” function run_callbacks() {n”, ” try {n”, ” root._bokeh_onload_callbacks.forEach(function(callback) {n”, ” if (callback != null)n”, ” callback();n”, ” });n”, ” } finally {n”, ” delete root._bokeh_onload_callbacksn”, ” }n”, ” console.debug("Bokeh: all callbacks have finished");n”, ” }n”, “n”, ” function load_libs(css_urls, js_urls, callback) {n”, ” if (css_urls == null) css_urls = [];n”, ” if (js_urls == null) js_urls = [];n”, “n”, ” root._bokeh_onload_callbacks.push(callback);n”, ” if (root._bokeh_is_loading > 0) {n”, ” console.debug("Bokeh: BokehJS is being loaded, scheduling callback at", now());n”, ” return null;n”, ” }n”, ” if (js_urls == null || js_urls.length === 0) {n”, ” run_callbacks();n”, ” return null;n”, ” }n”, ” console.debug("Bokeh: BokehJS not loaded, scheduling load and callback at", now());n”, ” root._bokeh_is_loading = css_urls.length + js_urls.length;n”, “n”, ” function on_load() {n”, ” root._bokeh_is_loading–;n”, ” if (root._bokeh_is_loading === 0) {n”, ” console.debug("Bokeh: all BokehJS libraries/stylesheets loaded");n”, ” run_callbacks()n”, ” }n”, ” }n”, “n”, ” function on_error() {n”, ” console.error("failed to load " + url);n”, ” }n”, “n”, ” for (var i = 0; i < css_urls.length; i++) {n”, ” var url = css_urls[i];n”, ” const element = document.createElement("link");n”, ” element.onload = on_load;n”, ” element.onerror = on_error;n”, ” element.rel = "stylesheet";n”, ” element.type = "text/css";n”, ” element.href = url;n”, ” console.debug("Bokeh: injecting link tag for BokehJS stylesheet: ", url);n”, ” document.body.appendChild(element);n”, ” }n”, “n”, ” var skip = [];n”, ” if (window.requirejs) {n”, ” require([], function() {n”, ” })n”, ” }n”, ” for (var i = 0; i < js_urls.length; i++) {n”, ” var url = js_urls[i];n”, ” if (skip.indexOf(url) >= 0) { on_load(); continue; }n”, ” var element = document.createElement(‘script’);n”, ” element.onload = on_load;n”, ” element.onerror = on_error;n”, ” element.async = false;n”, ” element.src = url;n”, ” console.debug("Bokeh: injecting script tag for BokehJS library: ", url);n”, ” document.head.appendChild(element);n”, ” }n”, “tif (!js_urls.length) {n”, ” on_load()n”, ” }n”, ” };n”, “n”, ” function inject_raw_css(css) {n”, ” const element = document.createElement("style");n”, ” element.appendChild(document.createTextNode(css));n”, ” document.body.appendChild(element);n”, ” }n”, “n”, ” var js_urls = [];n”, ” var css_urls = [];n”, “n”, ” var inline_js = [n”, ” function(Bokeh) {n”, ” inject_raw_css(".bk.alert {\n padding: 0.75rem 1.25rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n /* Don’t set margin because that will not render correctly! /\n / margin-bottom: 1rem; /\n margin-top: 15px;\n margin-bottom: 15px;\n}\n.bk.alert a {\n color: rgb(11, 46, 19); / #002752; /\n font-weight: 700;\n text-decoration: rgb(11, 46, 19);\n text-decoration-color: rgb(11, 46, 19);\n text-decoration-line: none;\n text-decoration-style: solid;\n text-decoration-thickness: auto;\n }\n.bk.alert a:hover {\n color: rgb(11, 46, 19);\n font-weight: 700;\n text-decoration: underline;\n}\n\n.bk.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n.bk.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.bk.alert-secondary {\n color: #383d41;\n background-color: #e2e3e5;\n border-color: #d6d8db;\n }\n.bk.alert-secondary hr {\n border-top-color: #c8cbcf;\n}\n\n.bk.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n }\n\n.bk.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.bk.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n }\n.bk.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.bk.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n }\n\n.bk.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.bk.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n.bk.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.bk.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n }\n.bk.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.bk.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n }\n.bk.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n\n/ adjf\u00e6l /\n\n.bk.alert-primary a {\n color: #002752;\n}\n\n.bk.alert-secondary a {\n color: #202326;\n}\n\n\n.bk.alert-success a {\n color: #0b2e13;\n}\n\n\n.bk.alert-info a {\n color: #062c33;\n}\n\n\n.bk.alert-warning a {\n color: #533f03;\n}\n\n\n.bk.alert-danger a {\n color: #491217;\n}\n\n.bk.alert-light a {\n color: #686868;\n}\n\n.bk.alert-dark a {\n color: #040505;\n}");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css(".bk.card {\n border: 1px solid rgba(0,0,0,.125);\n border-radius: 0.25rem;\n}\n.bk.accordion {\n border: 1px solid rgba(0,0,0,.125);\n}\n.bk.card-header {\n align-items: center;\n background-color: rgba(0, 0, 0, 0.03);\n border-radius: 0.25rem;\n display: flex;\n justify-content: space-between;\n padding: 0 1.25rem 0 0;\n width: 100%;\n}\n.bk.accordion-header {\n align-items: center;\n background-color: rgba(0, 0, 0, 0.03);\n border-radius: 0;\n display: flex;\n justify-content: space-between;\n padding: 0 1.25rem 0 0;\n width: 100%;\n}\np.bk.card-button {\n background-color: transparent;\n font-size: 1.25rem;\n font-weight: 700;\n margin: 0;\n margin-left: -15px;\n}\n.bk.card-header-row {\n position: relative !important;\n}\n.bk.card-title {\n align-items: center;\n display: flex !important;\n font-size: 1.4em;\n font-weight: bold;\n padding: 0.25em;\n position: relative !important;\n}\n");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css(".bk.panel-widget-box {\n\tmin-height: 20px;\n\tbackground-color: #f5f5f5;\n\tborder: 1px solid #e3e3e3;\n\tborder-radius: 4px;\n\t-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\n\tbox-shadow: inset 0 1px 1px rgba(0,0,0,.05);\n\toverflow-x: hidden;\n\toverflow-y: hidden;\n}\n\n.scrollable {\n overflow: scroll;\n}\n\nprogress {\n\tappearance: none;\n\t-moz-appearance: none;\n\t-webkit-appearance: none;\n\n\tborder: none;\n\theight: 20px;\n\tbackground-color: whiteSmoke;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\n\tcolor: royalblue;\n\tposition: relative;\n\tmargin: 0 0 1.5em;\n}\n\nprogress[value]::-webkit-progress-bar {\n\tbackground-color: whiteSmoke;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\n}\n\nprogress[value]::-webkit-progress-value {\n\tposition: relative;\n\n\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\n\tborder-radius:3px;\n}\n\nprogress.active:not([value])::before {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress[value]::-moz-progress-bar {\n\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\n\tborder-radius:3px;\n}\n\nprogress:not([value])::-moz-progress-bar {\n\tborder-radius:3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n\n}\n\nprogress.active:not([value])::-moz-progress-bar {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress.active:not([value])::-webkit-progress-bar {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\nprogress.primary:not([value])::before { background-color: #007bff; }\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\n\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\nprogress.secondary:not([value])::before { background-color: #6c757d; }\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\n\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\nprogress.success:not([value])::before { background-color: #28a745; }\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\nprogress.success::-moz-progress-bar { background-color: #28a745; }\n\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\nprogress.danger:not([value])::before { background-color: #dc3545; }\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\n\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\nprogress.warning:not([value])::before { background-color: #ffc107; }\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\n\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\nprogress.info:not([value])::before { background-color: #17a2b8; }\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\n\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\nprogress.light:not([value])::before { background-color: #f8f9fa; }\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\n\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\nprogress.dark:not([value])::before { background-color: #343a40; }\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\n\nprogress:not([value])::-webkit-progress-bar {\n\tborder-radius: 3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n}\nprogress:not([value])::before {\n\tcontent:\" \";\n\tposition:absolute;\n\theight: 20px;\n\ttop:0;\n\tleft:0;\n\tright:0;\n\tbottom:0;\n\tborder-radius: 3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n}\n\n@keyframes stripes {\n from {background-position: 0%}\n to {background-position: 100%}\n}\n\n.bk.loader::after {\n content: \"\";\n border-radius: 50%;\n -webkit-mask-image: radial-gradient(transparent 50%, rgba(0, 0, 0, 1) 54%);\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n position: absolute;\n}\n\n.bk-root .bk.loader.dark::after {\n background: #0f0f0f;\n}\n\n.bk-root .bk.loader.light::after {\n background: #f0f0f0;\n}\n\n.bk-root .bk.loader.spin::after {\n animation: spin 2s linear infinite;\n}\n\n.bk-root div.bk.loader.spin.primary-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #007bff 50%);\n}\n\n.bk-root div.bk.loader.spin.secondary-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #6c757d 50%);\n}\n\n.bk-root div.bk.loader.spin.success-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #28a745 50%);\n}\n\n.bk-root div.bk.loader.spin.danger-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #dc3545 50%);\n}\n\n.bk-root div.bk.loader.spin.warning-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #ffc107 50%);\n}\n\n.bk-root div.bk.loader.spin.info-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #17a2b8 50%);\n}\n\n.bk-root div.bk.loader.spin.light-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #f8f9fa 50%);\n}\n\n.bk-root div.bk.loader.dark-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #343a40 50%);\n}\n\n.bk-root div.bk.loader.spin.primary-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #007bff 50%);\n}\n\n.bk-root div.bk.loader.spin.secondary-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #6c757d 50%);\n}\n\n.bk-root div.bk.loader.spin.success-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #28a745 50%);\n}\n\n.bk-root div.bk.loader.spin.danger-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #dc3545 50%)\n}\n\n.bk-root div.bk.loader.spin.warning-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #ffc107 50%);\n}\n\n.bk-root div.bk.loader.spin.info-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #17a2b8 50%);\n}\n\n.bk-root div.bk.loader.spin.light-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #f8f9fa 50%);\n}\n\n.bk-root div.bk.loader.spin.dark-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #343a40 50%);\n}\n\n/ Safari /\n@-webkit-keyframes spin {\n 0% { -webkit-transform: rotate(0deg); }\n 100% { -webkit-transform: rotate(360deg); }\n}\n\n@keyframes spin {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n}\n\n.dot div {\n height: 100%;\n width: 100%;\n border: 1px solid #000 !important;\n background-color: #fff;\n border-radius: 50%;\n display: inline-block;\n}\n\n.dot-filled div {\n height: 100%;\n width: 100%;\n border: 1px solid #000 !important;\n border-radius: 50%;\n display: inline-block;\n}\n\n.dot-filled.primary div {\n background-color: #007bff;\n}\n\n.dot-filled.secondary div {\n background-color: #6c757d;\n}\n\n.dot-filled.success div {\n background-color: #28a745;\n}\n\n.dot-filled.danger div {\n background-color: #dc3545;\n}\n\n.dot-filled.warning div {\n background-color: #ffc107;\n}\n\n.dot-filled.info div {\n background-color: #17a2b8;\n}\n\n.dot-filled.dark div {\n background-color: #343a40;\n}\n\n.dot-filled.light div {\n background-color: #f8f9fa;\n}");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css(".codehilite .hll { background-color: #ffffcc }\n.codehilite { background: #f8f8f8; }\n.codehilite .c { color: #408080; font-style: italic } / Comment /\n.codehilite .err { border: 1px solid #FF0000 } / Error /\n.codehilite .k { color: #008000; font-weight: bold } / Keyword /\n.codehilite .o { color: #666666 } / Operator /\n.codehilite .ch { color: #408080; font-style: italic } / Comment.Hashbang /\n.codehilite .cm { color: #408080; font-style: italic } / Comment.Multiline /\n.codehilite .cp { color: #BC7A00 } / Comment.Preproc /\n.codehilite .cpf { color: #408080; font-style: italic } / Comment.PreprocFile /\n.codehilite .c1 { color: #408080; font-style: italic } / Comment.Single /\n.codehilite .cs { color: #408080; font-style: italic } / Comment.Special /\n.codehilite .gd { color: #A00000 } / Generic.Deleted /\n.codehilite .ge { font-style: italic } / Generic.Emph /\n.codehilite .gr { color: #FF0000 } / Generic.Error /\n.codehilite .gh { color: #000080; font-weight: bold } / Generic.Heading /\n.codehilite .gi { color: #00A000 } / Generic.Inserted /\n.codehilite .go { color: #888888 } / Generic.Output /\n.codehilite .gp { color: #000080; font-weight: bold } / Generic.Prompt /\n.codehilite .gs { font-weight: bold } / Generic.Strong /\n.codehilite .gu { color: #800080; font-weight: bold } / Generic.Subheading /\n.codehilite .gt { color: #0044DD } / Generic.Traceback /\n.codehilite .kc { color: #008000; font-weight: bold } / Keyword.Constant /\n.codehilite .kd { color: #008000; font-weight: bold } / Keyword.Declaration /\n.codehilite .kn { color: #008000; font-weight: bold } / Keyword.Namespace /\n.codehilite .kp { color: #008000 } / Keyword.Pseudo /\n.codehilite .kr { color: #008000; font-weight: bold } / Keyword.Reserved /\n.codehilite .kt { color: #B00040 } / Keyword.Type /\n.codehilite .m { color: #666666 } / Literal.Number /\n.codehilite .s { color: #BA2121 } / Literal.String /\n.codehilite .na { color: #7D9029 } / Name.Attribute /\n.codehilite .nb { color: #008000 } / Name.Builtin /\n.codehilite .nc { color: #0000FF; font-weight: bold } / Name.Class /\n.codehilite .no { color: #880000 } / Name.Constant /\n.codehilite .nd { color: #AA22FF } / Name.Decorator /\n.codehilite .ni { color: #999999; font-weight: bold } / Name.Entity /\n.codehilite .ne { color: #D2413A; font-weight: bold } / Name.Exception /\n.codehilite .nf { color: #0000FF } / Name.Function /\n.codehilite .nl { color: #A0A000 } / Name.Label /\n.codehilite .nn { color: #0000FF; font-weight: bold } / Name.Namespace /\n.codehilite .nt { color: #008000; font-weight: bold } / Name.Tag /\n.codehilite .nv { color: #19177C } / Name.Variable /\n.codehilite .ow { color: #AA22FF; font-weight: bold } / Operator.Word /\n.codehilite .w { color: #bbbbbb } / Text.Whitespace /\n.codehilite .mb { color: #666666 } / Literal.Number.Bin /\n.codehilite .mf { color: #666666 } / Literal.Number.Float /\n.codehilite .mh { color: #666666 } / Literal.Number.Hex /\n.codehilite .mi { color: #666666 } / Literal.Number.Integer /\n.codehilite .mo { color: #666666 } / Literal.Number.Oct /\n.codehilite .sa { color: #BA2121 } / Literal.String.Affix /\n.codehilite .sb { color: #BA2121 } / Literal.String.Backtick /\n.codehilite .sc { color: #BA2121 } / Literal.String.Char /\n.codehilite .dl { color: #BA2121 } / Literal.String.Delimiter /\n.codehilite .sd { color: #BA2121; font-style: italic } / Literal.String.Doc /\n.codehilite .s2 { color: #BA2121 } / Literal.String.Double /\n.codehilite .se { color: #BB6622; font-weight: bold } / Literal.String.Escape /\n.codehilite .sh { color: #BA2121 } / Literal.String.Heredoc /\n.codehilite .si { color: #BB6688; font-weight: bold } / Literal.String.Interpol /\n.codehilite .sx { color: #008000 } / Literal.String.Other /\n.codehilite .sr { color: #BB6688 } / Literal.String.Regex /\n.codehilite .s1 { color: #BA2121 } / Literal.String.Single /\n.codehilite .ss { color: #19177C } / Literal.String.Symbol /\n.codehilite .bp { color: #008000 } / Name.Builtin.Pseudo /\n.codehilite .fm { color: #0000FF } / Name.Function.Magic /\n.codehilite .vc { color: #19177C } / Name.Variable.Class /\n.codehilite .vg { color: #19177C } / Name.Variable.Global /\n.codehilite .vi { color: #19177C } / Name.Variable.Instance /\n.codehilite .vm { color: #19177C } / Name.Variable.Magic /\n.codehilite .il { color: #666666 } / Literal.Number.Integer.Long /\n\n.markdown h1 { margin-block-start: 0.34em }\n.markdown h2 { margin-block-start: 0.42em }\n.markdown h3 { margin-block-start: 0.5em }\n.markdown h4 { margin-block-start: 0.67em }\n.markdown h5 { margin-block-start: 0.84em }\n.markdown h6 { margin-block-start: 1.17em }\n.markdown ul { padding-inline-start: 2em }\n.markdown ol { padding-inline-start: 2em }\n.markdown strong { font-weight: 600 }\n.markdown a { color: -webkit-link }\n.markdown a { color: -moz-hyperlinkText }\n");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css(".json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-row .json-formatter-string,\n.json-formatter-row .json-formatter-stringifiable {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string,\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n");n”, ” },n”, ” function(Bokeh) {n”, ” inject_raw_css("table.panel-df {\n margin-left: auto;\n margin-right: auto;\n border: none;\n border-collapse: collapse;\n border-spacing: 0;\n color: black;\n font-size: 12px;\n table-layout: fixed;\n width: 100%;\n}\n\n.panel-df tr, .panel-df th, .panel-df td {\n text-align: right;\n vertical-align: middle;\n padding: 0.5em 0.5em !important;\n line-height: normal;\n white-space: normal;\n max-width: none;\n border: none;\n}\n\n.panel-df tbody {\n display: table-row-group;\n vertical-align: middle;\n border-color: inherit;\n}\n\n.panel-df tbody tr:nth-child(odd) {\n background: #f5f5f5;\n}\n\n.panel-df thead {\n border-bottom: 1px solid black;\n vertical-align: bottom;\n}\n\n.panel-df tr:hover {\n background: lightblue !important;\n cursor: pointer;\n}\n");n”, ” },n”, ” function(Bokeh) {n”, ” / BEGIN bokeh.min.js /n”, ” /!n”, ” * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn”, ” * All rights reserved.n”, ” * n”, ” * Redistribution and use in source and binary forms, with or without modification,n”, ” * are permitted provided that the following conditions are met:n”, ” * n”, ” * Redistributions of source code must retain the above copyright notice,n”, ” * this list of conditions and the following disclaimer.n”, ” * n”, ” * Redistributions in binary form must reproduce the above copyright notice,n”, ” * this list of conditions and the following disclaimer in the documentationn”, ” * and/or other materials provided with the distribution.n”, ” * n”, ” * Neither the name of Anaconda nor the names of any contributorsn”, ” * may be used to endorse or promote products derived from this softwaren”, ” * without specific prior written permission.n”, ” * n”, ” * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n”, ” * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn”, ” * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn”, ” * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn”, ” * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn”, ” * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn”, ” * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn”, ” * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn”, ” * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n”, ” * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn”, ” * THE POSSIBILITY OF SUCH DAMAGE.n”, ” /n”, ” (function(root, factory) {n”, ” const bokeh = factory();n”, ” bokeh.__bokeh__ = true;n”, ” if (typeof root.Bokeh === "undefined" || typeof root.Bokeh.__bokeh__ === "undefined") {n”, ” root.Bokeh = bokeh;n”, ” }n”, ” const Bokeh = root.Bokeh;n”, ” Bokeh[bokeh.version] = bokeh;n”, ” })(this, function() {n”, ” var define;n”, ” var parent_require = typeof require === "function" && requiren”, ” return (function(modules, entry, aliases, externals) {n”, ” if (aliases === undefined) aliases = {};n”, ” if (externals === undefined) externals = {};n”, “n”, ” var cache = {};n”, “n”, ” var normalize = function(name) {n”, ” if (typeof name === "number")n”, ” return name;n”, “n”, ” if (name === "bokehjs")n”, ” return entry;n”, “n”, ” var prefix = "@bokehjs/"n”, ” if (name.slice(0, prefix.length) === prefix)n”, ” name = name.slice(prefix.length)n”, “n”, ” var alias = aliases[name]n”, ” if (alias != null)n”, ” return alias;n”, “n”, ” var trailing = name.length > 0 && name[name.lenght-1] === "/";n”, ” var index = aliases[name + (trailing ? "" : "/") + "index"];n”, ” if (index != null)n”, ” return index;n”, “n”, ” return name;n”, ” }n”, “n”, ” var require = function(name) {n”, ” var mod = cache[name];n”, ” if (!mod) {n”, ” var id = normalize(name);n”, “n”, ” mod = cache[id];n”, ” if (!mod) {n”, ” if (!modules[id]) {n”, ” if (externals[id] === false || (externals[id] == true && parent_require)) {n”, ” try {n”, ” mod = {exports: externals[id] ? parent_require(id) : {}};n”, ” cache[id] = cache[name] = mod;n”, ” return mod.exports;n”, ” } catch (e) {}n”, ” }n”, “n”, ” var err = new Error("Cannot find module ‘" + name + "’");n”, ” err.code = ‘MODULE_NOT_FOUND’;n”, ” throw err;n”, ” }n”, “n”, ” mod = {exports: {}};n”, ” cache[id] = cache[name] = mod;n”, ” modules[id].call(mod.exports, require, mod, mod.exports);n”, ” } elsen”, ” cache[name] = mod;n”, ” }n”, “n”, ” return mod.exports;n”, ” }n”, ” require.resolve = function(name) {n”, ” return ""n”, ” }n”, “n”, ” var main = require(entry);n”, ” main.require = require;n”, “n”, ” if (typeof Proxy !== "undefined") {n”, ” // allow Bokeh.loader["@bokehjs/module/name"] syntaxn”, ” main.loader = new Proxy({}, {n”, ” get: function(_obj, module) {n”, ” return require(module);n”, ” }n”, ” });n”, ” }n”, “n”, ” main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {n”, ” if (plugin_aliases === undefined) plugin_aliases = {};n”, ” if (plugin_externals === undefined) plugin_externals = {};n”, “n”, ” for (var name in plugin_modules) {n”, ” modules[name] = plugin_modules[name];n”, ” }n”, “n”, ” for (var name in plugin_aliases) {n”, ” aliases[name] = plugin_aliases[name];n”, ” }n”, “n”, ” for (var name in plugin_externals) {n”, ” externals[name] = plugin_externals[name];n”, ” }n”, “n”, ” var plugin = require(plugin_entry);n”, “n”, ” for (var name in plugin) {n”, ” main[name] = plugin[name];n”, ” }n”, “n”, ” return plugin;n”, ” }n”, “n”, ” return main;n”, ” })n”, ” ([n”, ” function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});e(1).__exportStar(e(2),_)},n”, ” function _(t,e,n){n”, ” /! *************************************************************************n”, ” Copyright (c) Microsoft Corporation.n”, ” n”, ” Permission to use, copy, modify, and/or distribute this software for anyn”, ” purpose with or without fee is hereby granted.n”, ” n”, ” THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITHn”, ” REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITYn”, ” AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,n”, ” INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROMn”, ” LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE ORn”, ” OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE ORn”, ” PERFORMANCE OF THIS SOFTWARE.n”, ” ************************************************************************* /n”, ” Object.defineProperty(n,"__esModule",{value:!0});var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function o(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function a(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,a=n.call(t),i=[];try{for(;(void 0===e||e– >0)&&!(r=a.next()).done;)i.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=a.return)&&n.call(a)}finally{if(o)throw o.error}}return i}function i(t){return this instanceof i?(this.v=t,this):new i(t)}n.__extends=function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},n.__assign=function(){return n.__assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t},n.__assign.apply(this,arguments)},n.__rest=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(t);o<r.length;o++)e.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(t,r[o])&&(n[r[o]]=t[r[o]])}return n},n.__decorate=function(t,e,n,r){var o,a=arguments.length,i=a<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(t,e,n,r);else for(var u=t.length-1;u>=0;u–)(o=t[u])&&(i=(a<3?o(i):a>3?o(e,n,i):o(e,n))||i);return a>3&&i&&Object.defineProperty(e,n,i),i},n.__param=function(t,e){return function(n,r){e(n,r,t)}},n.__metadata=function(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)},n.__awaiter=function(t,e,n,r){return new(n||(n=Promise))((function(o,a){function i(t){try{c(r.next(t))}catch(t){a(t)}}function u(t){try{c(r.throw(t))}catch(t){a(t)}}function c(t){var e;t.done?o(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,u)}c((r=r.apply(t,e||[])).next())}))},n.__generator=function(t,e){var n,r,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(a){return function(u){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1],o=a;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(a);break}o[2]&&i.ops.pop(),i.trys.pop();continue}a=e.call(t,i)}catch(t){a=[6,t],r=0}finally{n=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,u])}}},n.__createBinding=function(t,e,n,r){void 0===r&&(r=n),t[r]=e[n]},n.__exportStar=function(t,e){for(var n in t)"default"===n||e.hasOwnProperty(n)||(e[n]=t[n])},n.__values=o,n.__read=a,n.__spread=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(a(arguments[e]));return t},n.__spreadArrays=function(){for(var t=0,e=0,n=arguments.length;e<n;e++)t+=arguments[e].length;var r=Array(t),o=0;for(e=0;e<n;e++)for(var a=arguments[e],i=0,u=a.length;i<u;i++,o++)r[o]=a[i];return r},n.__await=i,n.__asyncGenerator=function(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,o=n.apply(t,e||[]),a=[];return r={},u("next"),u("throw"),u("return"),r[Symbol.asyncIterator]=function(){return this},r;function u(t){o[t]&&(r[t]=function(e){return new Promise((function(n,r){a.push([t,e,n,r])>1||c(t,e)}))})}function c(t,e){try{(n=o[t](e)).value instanceof i?Promise.resolve(n.value.v).then(f,l):s(a[0][2],n)}catch(t){s(a[0][3],t)}var n}function f(t){c("next",t)}function l(t){c("throw",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},n.__asyncDelegator=function(t){var e,n;return e={},r("next"),r("throw",(function(t){throw t})),r("return"),e[Symbol.iterator]=function(){return this},e;function r(r,o){e[r]=t[r]?function(e){return(n=!n)?{value:i(t[r](e)),done:"return"===r}:o?o(e):e}:o}},n.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=o(t),e={},r("next"),r("throw"),r("return"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,o){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,o,(e=t[n](e)).done,e.value)}))}}},n.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,"raw",{value:e}):t.raw=e,t},n.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e},n.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},n.__classPrivateFieldGet=function(t,e){if(!e.has(t))throw new TypeError("attempted to get private field on non-instance");return e.get(t)},n.__classPrivateFieldSet=function(t,e,n){if(!e.has(t))throw new TypeError("attempted to set private field on non-instance");return e.set(t,n),n}},n”, ” function _(e,r,t){var l=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var t in e)Object.hasOwnProperty.call(e,t)&&(r[t]=e[t]);return r.default=e,r};Object.defineProperty(t,"__esModule",{value:!0});var o=e(3);t.version=o.version;var s=e(4);t.index=s.index,t.embed=l(e(4)),t.protocol=l(e(390)),t._testing=l(e(391));var n=e(19);t.logger=n.logger,t.set_log_level=n.set_log_level;var a=e(27);t.settings=a.settings;var i=e(7);t.Models=i.Models;var v=e(5);t.documents=v.documents;var _=e(392);t.safely=_.safely},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0}),o.version="2.2.3"},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(5),s=e(19),r=e(29),d=e(13),_=e(8),c=e(16),i=e(381),a=e(383),u=e(382);var l=e(381);t.add_document_standalone=l.add_document_standalone,t.index=l.index;var m=e(383);t.add_document_from_session=m.add_document_from_session;var f=e(388);t.embed_items_notebook=f.embed_items_notebook,t.kernels=f.kernels;var g=e(382);async function O(e,o,t,c){_.isString(e)&&(e=JSON.parse(r.unescape(e)));const l={};for(const[o,t]of d.entries(e))l[o]=n.Document.from_json(t);const m=[];for(const e of o){const o=u._resolve_element(e),n=u._resolve_root_elements(e);if(null!=e.docid)m.push(await i.add_document_standalone(l[e.docid],o,n,e.use_for_title));else{if(null==e.token)throw new Error("Error rendering Bokeh items: either ‘docid’ or ‘token’ was expected.");{const r=a._get_ws_url(t,c);s.logger.debug("embed: computed ws url: "+r);try{m.push(await a.add_document_from_session(r,e.token,o,n,e.use_for_title)),console.log("Bokeh items were rendered successfully")}catch(e){console.log("Error rendering Bokeh items:",e)}}}}return m}t.BOKEH_ROOT=g.BOKEH_ROOT,t.embed_item=async function(e,o){const t={},n=r.uuid4();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(u.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n},[_]=await c.defer(()=>O(t,[d]));return _},t.embed_items=async function(e,o,t,n){return await c.defer(()=>O(e,o,t,n))}},n”, ” function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const o=e(1);o.__exportStar(e(6),_),o.__exportStar(e(121),_)},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),n=e(7),r=e(3),i=e(19),_=e(313),a=e(14),l=e(15),c=e(17),h=e(31),d=e(9),f=e(13),u=o.__importStar(e(120)),m=e(25),g=e(8),p=e(272),w=e(85),v=e(81),b=e(121);class y{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new b.MessageSentEvent(this.document,"bokeh_event",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=y,y.__name__="EventManager",s.documents=[],s.DEFAULT_TITLE="Bokeh Application";class j{constructor(){s.documents.push(this),this._init_timestamp=Date.now(),this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new y(this),this.idle=new l.Signal0(this,"idle"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter(e=>e instanceof p.LayoutDOM)}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(i.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new _.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new _.LODStart)),this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&this._interactive_plot.trigger_event(new _.LODEnd),this._interactive_plot=null,this._interactive_timestamp=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error("Attempted to overwrite a document with itself");e.clear();const t=d.copy(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error("Somehow we didn’t detach "+e);if(0!=this._all_models.size)throw new Error("this._all_models still had stuff in it: "+this._all_models);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){i.logger.debug("invalidating document models"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=u.union(e,t.references());const t=new Set(this._all_models.values()),s=u.difference(t,e),o=u.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(i.logger.debug("Adding root: "+e),!d.includes(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new b.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof v.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named ‘${e}’`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof b.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new b.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _references_json(e,t=!0){const s=[];for(const o of e){const e=o.struct();e.attributes=o.attributes_as_json(t),delete e.attributes.id,s.push(e)}return s}static _instantiate_object(e,t,s){const o=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(n.Models(t))(o)}static _instantiate_references_json(e,t){const s=new Map;for(const o of e){const e=o.id,n=o.type,r=o.attributes||{};let i=t.get(e);null==i&&(i=j._instantiate_object(e,n,r),null!=o.subtype&&i.set_subtype(o.subtype)),s.set(i.id,i)}return s}static _resolve_refs(e,t,s,o){function n(e){if(c.is_ref(e)){if(t.has(e.id))return t.get(e.id);if(s.has(e.id))return s.get(e.id);throw new Error(`reference ${JSON.stringify(e)} isn’t known (not in Document?)`)}return h.is_NDArray_ref(e)?h.decode_NDArray(e,o):g.isArray(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):g.isPlainObject(e)?function(e){const t={};for(const[s,o]of f.entries(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:r,attributes:i}of e){const e=!t.has(r),_=e?s.get(r):t.get(r),a=j._resolve_refs(i,t,s,o);_.setv(a,{silent:!0}),n.set(r,{instance:_,is_new:e})}const r=[],i=new Set;function _(e){if(e instanceof a.HasProps){if(n.has(e.id)&&!i.has(e.id)){i.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of f.values(o))_(e);s&&(t.finalize(),r.push(t))}}else if(g.isArray(e))for(const t of e)_(t);else if(g.isPlainObject(e))for(const t of f.values(e))_(t)}for(const e of n.values())_(e.instance);for(const e of r)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const r={kind:"ModelChanged",model:{id:e.id},attr:t,new:s};return a.HasProps._json_record_references(o,s,n,{recursive:!0}),r}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),r=Object.keys(t.attributes),_=d.difference(n,r),a=d.difference(r,n),l=d.intersection(n,r),c=[];for(const e of _)i.logger.warn(`Server sent key ${e} but we don’t seem to have it in our JSON`);for(const n of a){const r=t.attributes[n];c.push(j._event_for_attribute_change(e,n,r,s,o))}for(const n of l){const r=e.attributes[n],i=t.attributes[n];null==r&&null==i||(null==r||null==i?c.push(j._event_for_attribute_change(e,n,i,s,o)):m.isEqual(r,i)||c.push(j._event_for_attribute_change(e,n,i,s,o)))}return c.filter(e=>null!=e)}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),r=new Map,i=[];for(const t of e.roots.root_ids)r.set(t,n.get(t)),i.push(t);const _=o(s),a=new Map,l=[];for(const e of s.roots.root_ids)a.set(e,_.get(e)),l.push(e);if(i.sort(),l.sort(),d.difference(i,l).length>0||d.difference(l,i).length>0)throw new Error("Not implemented: computing add/remove of document roots");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=j._events_to_sync_objects(n.get(e),_.get(e),t,c);h=h.concat(s)}return{references:j._references_json(c,!1),events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=this._roots.map(e=>e.id),s=this._all_models.values();return{version:r.version,title:this._title,roots:{root_ids:t,references:j._references_json(s,e)}}}static from_json_string(e){const t=JSON.parse(e);return j.from_json(t)}static from_json(e){i.logger.debug("Creating Document from JSON");const t=e.version,s=-1!==t.indexOf("+")||-1!==t.indexOf("-"),o=`Library versions: JS (${r.version}) / Python (${t})`;s||r.version.replace(/-(dev|rc)\./,"$1")==t?i.logger.debug(o):(i.logger.warn("JS/Python version mismatch"),i.logger.warn(o));const n=e.roots,_=n.root_ids,a=n.references,l=j._instantiate_references_json(a,new Map);j._initialize_references_json(a,new Map,l,new Map);const c=new j;for(const e of _){const t=l.get(e);null!=t&&c.add_root(t)}return c.set_title(e.title),c}replace_with_json(e){j.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){const t=new Set,s=[];for(const o of e){if(o.document!==this)throw i.logger.warn("Cannot create a patch using events from a different document, event had ",o.document," we are ",this),new Error("Cannot create a patch using events from a different document");s.push(o.json(t))}return{events:s,references:j._references_json(t)}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,r=j._instantiate_references_json(o,this._all_models);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case"RootAdded":case"RootRemoved":case"ModelChanged":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)r.set(t,s);else if(!r.has(t))throw i.logger.warn(`Got an event for unknown model ${e.model}"`),new Error("event model wasn’t known");break}}const _=new Map,a=new Map;for(const[e,t]of r)this._all_models.has(e)?_.set(e,t):a.set(e,t);j._initialize_references_json(o,_,a,t);for(const e of n)switch(e.kind){case"MessageSent":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error("expected exactly one buffer");{const[[,e]]=t;n=e}}else n=j._resolve_refs(o,_,a,t);this._trigger_on_message(s,n);break}case"ModelChanged":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const r=e.attr,i=j._resolve_refs(e.new,_,a,t);n.setv({[r]:i},{setter_id:s});break}case"ColumnDataChanged":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const r=j._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in r||(r[e]=n.data[e]);n.setv({data:r},{setter_id:s,check_eq:!1});break}case"ColumnsStreamed":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error("Cannot stream to non-ColumnDataSource");const n=e.data,r=e.rollover;o.stream(n,r,s);break}case"ColumnsPatched":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error("Cannot patch non-ColumnDataSource");const n=e.patches;o.patch(n,s);break}case"RootAdded":{const t=e.model.id,o=r.get(t);this.add_root(o,s);break}case"RootRemoved":{const t=e.model.id,o=r.get(t);this.remove_root(o,s);break}case"TitleChanged":this.set_title(e.title,s);break;default:throw new Error("Unknown patch event "+JSON.stringify(e))}}}s.Document=j,j.__name__="Document"},n”, ” function _(e,r,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),t=e(8),d=e(13),i=e(14);s.overrides={};const l=new Map;s.Models=e=>{const r=s.overrides[e]||l.get(e);if(null==r)throw new Error(`Model ‘${e}’ does not exist. This could be due to a widget or a custom model not being registered before first usage.`);return r},s.Models.register=(e,r)=>{s.overrides[e]=r},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,r=!1,s)=>{var o;if(null!=e)for(const n of d.values(e))if(o=n,t.isObject(o)&&o.prototype instanceof i.HasProps){const e=n.__qualified__;r||!l.has(e)?l.set(e,n):null!=s?s(e):console.warn(`Model ‘${e}’ was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>Array.from(l.keys());const n=o.__importStar(e(34));s.register_models(n)},n”, ” function _(n,t,r){Object.defineProperty(r,"__esModule",{value:!0});n”, ” // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn”, ” // Underscore may be freely distributed under the MIT license.n”, ” const e=n(9),i=Object.prototype.toString;function o(n){return"[object Number]"===i.call(n)}function c(n){const t=typeof n;return"function"===t||"object"===t&&!!n}r.isBoolean=function(n){return!0===n||!1===n||"[object Boolean]"===i.call(n)},r.isNumber=o,r.isInteger=function(n){return o(n)&&Number.isInteger(n)},r.isString=function(n){return"[object String]"===i.call(n)},r.isFunction=function(n){return"[object Function]"===i.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return e.every(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r<e;r++)if(!t(n[r]))return!1;return!0},r.isTypedArray=function(n){return ArrayBuffer.isView(n)&&!(n instanceof DataView)},r.isObject=c,r.isPlainObject=function(n){return c(n)&&(null==n.constructor||n.constructor===Object)},r.isIterable=function(n){return Symbol.iterator in Object(n)}},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});n”, ” // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn”, ” // Underscore may be freely distributed under the MIT license.n”, ” const r=n(10),o=n(11),i=n(12);e.map=i.map,e.reduce=i.reduce,e.min=i.min,e.min_by=i.min_by,e.max=i.max,e.max_by=i.max_by,e.sum=i.sum,e.cumsum=i.cumsum,e.every=i.every,e.some=i.some,e.find=i.find,e.find_last=i.find_last,e.find_index=i.find_index,e.find_last_index=i.find_last_index,e.sorted_index=i.sorted_index,e.is_empty=i.is_empty;const u=Array.prototype.slice;function c(n){return u.call(n)}function f(n){return[].concat(…n)}function s(n,t){return-1!==n.indexOf(t)}function a(n,t,e=1){o.assert(e>0,"’step’ must be a positive number"),null==t&&(t=n,n=0);const{max:r,ceil:i,abs:u}=Math,c=n<=t?e:-e,f=r(i(u(t-n)/e),0),s=new Array(f);for(let t=0;t<f;t++,n+=c)s[t]=n;return s}e.head=function(n){return n[0]},e.tail=function(n){return n[n.length-1]},e.last=function(n){return n[n.length-1]},e.copy=c,e.concat=f,e.includes=s,e.contains=s,e.nth=function(n,t){return n[t>=0?t:n.length+t]},e.zip=function(…n){if(0==n.length)return[];const t=i.min(n.map(n=>n.length)),e=n.length,r=new Array(t);for(let o=0;o<t;o++){r[o]=new Array(e);for(let t=0;t<e;t++)r[o][t]=n[t][o]}return r},e.unzip=function(n){const t=n.length,e=i.min(n.map(n=>n.length)),r=Array(e);for(let n=0;n<e;n++)r[n]=new Array(t);for(let o=0;o<t;o++)for(let t=0;t<e;t++)r[t][o]=n[o][t];return r},e.range=a,e.linspace=function(n,t,e=100){const r=(t-n)/(e-1),o=new Array(e);for(let t=0;t<e;t++)o[t]=n+r*t;return o},e.transpose=function(n){const t=n.length,e=n[0].length,r=[];for(let o=0;o<e;o++){r[o]=[];for(let e=0;e<t;e++)r[o][e]=n[e][o]}return r},e.argmin=function(n){return i.min_by(a(n.length),t=>n[t])},e.argmax=function(n){return i.max_by(a(n.length),t=>n[t])},e.sort_by=function(n,t){const e=n.map((n,e)=>({value:n,index:e,key:t(n)}));return e.sort((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(e<r||void 0===r)return-1}return n.index-t.index}),e.map(n=>n.value)},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[…t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);s(r,n)||(r.push(n),e.push(o))}return e},e.union=function(…n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[…t]},e.intersection=function(n,…t){const e=[];n:for(const r of n)if(!s(e,r)){for(const n of t)if(!s(n,r))continue n;e.push(r)}return e},e.difference=function(n,…t){const e=f(t);return n.filter(n=>!s(e,n))},e.remove_at=function(n,t){const e=c(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e<n.length;)t(n[e])?n.splice(e,1):e++},e.shuffle=function(n){const t=n.length,e=new Array(t);for(let o=0;o<t;o++){const t=r.randomIn(0,o);t!==o&&(e[o]=e[t]),e[t]=n[o]}return e},e.pairwise=function(n,t){const e=n.length,r=new Array(e-1);for(let o=0;o<e-1;o++)r[o]=t(n[o],n[o+1]);return r},e.reversed=function(n){const t=n.length,e=new Array(t);for(let r=0;r<t;r++)e[t-r-1]=n[r];return e},e.repeat=function(n,t){const e=new Array(t);for(let r=0;r<t;r++)e[r]=n;return e}},n”, ” function _(n,t,r){function e(n){if(0==n)return 0;for(;n<=0;)n+=2*Math.PI;for(;n>2*Math.PI;)n-=2*Math.PI;return n}function a(n,t){return e(n-t)}function o(){return Math.random()}Object.defineProperty(r,"__esModule",{value:!0}),r.angle_norm=e,r.angle_dist=a,r.angle_between=function(n,t,r,o){const u=a(t,r);if(0==u)return!1;if(u==2*Math.PI)return!0;const f=e(n),i=a(t,f)<=u&&a(f,r)<=u;return 0==o?i:!i},r.random=o,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(Math.PI/180)},r.degrees=function(n){return n/(Math.PI/180)},r.rnorm=function(n,t){let r,e;for(;r=o(),e=o(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let a=e/r;return a=n+t*a,a},r.clamp=function(n,t,r){return n<t?t:n>r?r:n}},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});class o extends Error{}n.AssertionError=o,o.__name__="AssertionError",n.assert=function(e,r){if(!(!0===e||!1!==e&&e()))throw new o(null!=r?r:"Assertion failed")},n.unreachable=function(){throw new Error("unreachable code")}},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=n(8),o=n(10);function i(n,t,e,…r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,u=new n.constructor(i);let l=0;for(;l<t;l++)u[l]=n[l];for(const n of r)u[l++]=n;for(let r=t+e;r<o;r++)u[l++]=n[r];return u}function u(n,t){return i(n,t,n.length-t)}function l(n,t){const e=n.length,r=new n.constructor(e);for(let o=0;o<e;o++)r[o]=t(n[o],o,n);return r}function c(n,t,e){const r=n.length;if(void 0===e&&0==r)throw new Error("can’t reduce an empty array without an initial value");let o,i;for(void 0===e?(o=n[0],i=1):(o=e,i=0);i<r;i++)o=t(o,n[i],i,n);return o}function f(n){return function(t,e){const r=t.length;let o=n>0?0:r-1;for(;o>=0&&o<r;o+=n)if(e(t[o]))return o;return-1}}function s(n,t){let e=0,r=n.length;for(;e<r;){const o=Math.floor((e+r)/2);n[o]<t?e=o+1:r=o}return e}function h(n,t,e,r,o){const i=(o-e)/(r-t);let u=i*(n-t)+e;return isFinite(u)||(u=i*(n-r)+o,isFinite(u)||e!=o||(u=e)),u}function a(n,t){if(n<t[0])return-1;if(n>t[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return r.isArray(n)?n.slice():new n.constructor(n)},e.splice=i,e.head=u,e.insert=function(n,t,e){return i(n,e,0,t)},e.append=function(n,t){return i(n,n.length,0,t)},e.prepend=function(n,t){return i(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;e<r;e++)if(n[e]===t)return e;return-1},e.subselect=function(n,t){const e=t.length,r=new n.constructor(e);for(let o=0;o<e;o++)r[o]=n[t[o]];return r},e.map=l,e.filter=function(n,t){const e=n.length,r=new n.constructor(e);let o=0;for(let i=0;i<e;i++){const e=n[i];t(e,i,n)&&(r[o++]=e)}return u(r,o)},e.reduce=c,e.min=function(n){let t,e=1/0;for(let r=0,o=n.length;r<o;r++)t=n[r],!isNaN(t)&&t<e&&(e=t);return e},e.max=function(n){let t,e=-1/0;for(let r=0,o=n.length;r<o;r++)t=n[r],!isNaN(t)&&t>e&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;o<i;o++)t=n[o],isNaN(t)||(t<e&&(e=t),t>r&&(r=t));return[e,r]},e.min_by=function(n,t){if(0==n.length)throw new Error("min_by() called with an empty array");let e=n[0],r=t(e);for(let o=1,i=n.length;o<i;o++){const i=n[o],u=t(i);u<r&&(e=i,r=u)}return e},e.max_by=function(n,t){if(0==n.length)throw new Error("max_by() called with an empty array");let e=n[0],r=t(e);for(let o=1,i=n.length;o<i;o++){const i=n[o],u=t(i);u>r&&(e=i,r=u)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;e<r;e++)t+=n[e];return t},e.cumsum=function(n){const t=new n.constructor(n.length);return c(n,(n,e,r)=>t[r]=n+e,0),t},e.every=function(n,t){for(let e=0,r=n.length;e<r;e++)if(!t(n[e]))return!1;return!0},e.some=function(n,t){for(let e=0,r=n.length;e<r;e++)if(t(n[e]))return!0;return!1},e.index_of=function(n,t){for(let e=0,r=n.length;e<r;e++)if(n[e]===t)return e;return-1},e.find_index=f(1),e.find_last_index=f(-1),e.find=function(n,t){const r=e.find_index(n,t);return-1==r?void 0:n[r]},e.find_last=function(n,t){const r=e.find_last_index(n,t);return-1==r?void 0:n[r]},e.sorted_index=s,e.bin_counts=function(n,t){const e=t.length-1,r=Array(e).fill(0);for(let i=0;i<n.length;i++){const u=s(t,n[i]);r[o.clamp(u-1,0,e-1)]+=1}return r},e.interpolate=function(n,t,e){const r=n.length,o=new Array(r);for(let i=0;i<r;i++){const r=n[i];if(isNaN(r)){o[i]=r;continue}const u=a(r,t);if(-1==u)o[i]=e[0];else if(u==t.length)o[i]=e[e.length-1];else if(u==t.length-1||t[u]==r)o[i]=e[u];else{const n=t[u],l=e[u],c=t[u+1],f=e[u+1];o[i]=h(r,n,l,c,f)}}return o},e.left_edge_index=a,e.norm=function(n,t,e){const r=e-t;return l(n,n=>(n-t)/r)}},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const c=e(9);function o(e){return Object.keys(e).length}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(e){return Object.assign({},e)},n.merge=function(e,t){const n=Object.create(Object.prototype),o=c.concat([Object.keys(e),Object.keys(t)]);for(const s of o){const o=e.hasOwnProperty(s)?e[s]:[],r=t.hasOwnProperty(s)?t[s]:[];n[s]=c.union(o,r)}return n},n.size=o,n.isEmpty=function(e){return 0==o(e)},n.to_object=function(e){const t={};for(const[n,c]of e)t[n]=c;return t}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const s=t(1),n=t(15),i=t(17),o=s.__importStar(t(18)),c=s.__importStar(t(21)),a=s.__importStar(t(28)),_=t(29),u=t(9),f=t(13),l=t(8),h=t(25),p=t(5),d=t(30),y=t(31),g=t(25),v=t(33),m=s.__importStar(t(21));class b extends(n.Signalable()){constructor(t={}){var e;super(),this._subtype=void 0,this.document=null,this.destroyed=new n.Signal0(this,"destroyed"),this.change=new n.Signal0(this,"change"),this.transformchange=new n.Signal0(this,"transformchange"),this.properties={},this._pending=!1,this._changing=!1;const r=t instanceof Map?t.get:e=>t[e];for(const[t,{type:e,default_value:s,options:n}]of f.entries(this._props)){let i;i=e instanceof c.Kind?new o.PrimitiveProperty(this,t,e,s,r(t),n):new e(this,t,c.Any,s,r(t),n),this.properties[t]=i}null!==(e=r("__deferred__"))&&void 0!==e&&e||(this.finalize(),this.connect_signals())}set type(t){console.warn("prototype.type = ‘ModelName’ is deprecated, use static __name__ instead"),this.constructor.__name__=t}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:t,__name__:e}=this;return null!=t?`${t}.${e}`:e}static get[Symbol.toStringTag](){return this.__name__}static init_HasProps(){this.prototype._props={},this.prototype._mixins=[],this.define({id:[o.String,()=>_.uniqueId()]})}static _fix_default(t,e){if(void 0!==t){if(l.isFunction(t))return t;if(l.isArray(t))return()=>u.copy(t);if(l.isPlainObject(t))return()=>f.clone(t);if(l.isObject(t))throw new Error(t+" must be explicitly wrapped in a function");return()=>t}}static define(t){for(const[e,r]of f.entries(l.isFunction(t)?t(m):t)){if(null!=this.prototype._props[e])throw new Error(`attempted to redefine property ‘${this.prototype.type}.${e}’`);if(null!=this.prototype[e])throw new Error(`attempted to redefine attribute ‘${this.prototype.type}.${e}’`);Object.defineProperty(this.prototype,e,{get(){return this.properties[e].get_value()},set(t){return this.setv({[e]:t}),this},configurable:!1,enumerable:!0});const[t,s,n]=r,i={type:t,default_value:this._fix_default(s,e),options:n},o=f.clone(this.prototype._props);o[e]=i,this.prototype._props=o}}static internal(t){const e={};for(const[r,s]of f.entries(t)){const[t,n,i={}]=s;e[r]=[t,n,Object.assign(Object.assign({},i),{internal:!0})]}this.define(e)}static mixins(t){function e(t){switch(t){case"line":return a.LineVector;case"fill":return a.FillVector;case"hatch":return a.HatchVector;case"text":return a.TextVector;default:throw new Error(`Unknown property mixin kind ‘${t}’`)}}function r(t,e){const r={};for(const[s,n]of f.entries(e))r[t+s]=n;return r}function s(t){const[e]=Object.keys(t),[r]=e.split("_",1);return r}l.isArray(t)||(t=[t]);const n={},i=[];for(const o of t)if(l.isString(o)){const[t,s=""]=o.split(":"),c=e(t);i.push(o),f.extend(n,r(s,c))}else if(l.isArray(o)){const[t,e]=o;i.push(`${s(e)}:${t}`),f.extend(n,r(t,e))}else{const t=o;i.push(s(t)),f.extend(n,t)}this.define(n),this.prototype._mixins=[…this.prototype._mixins,…i]}static override(t){for(const[e,r]of f.entries(t)){const t=this._fix_default(r,e),s=this.prototype._props[e];if(null==s)throw new Error(`attempted to override nonexistent ‘${this.prototype.type}.${e}’`);const n=f.clone(this.prototype._props);n[e]=Object.assign(Object.assign({},s),{default_value:t}),this.prototype._props=n}}toString(){return`${this.type}(${this.id})`}property(t){const e=this.properties[t];if(null!=e)return e;throw new Error(`unknown property ${this.type}.${t}`)}get attributes(){const t={};for(const e of this)t[e.attr]=e.get_value();return t}[g.equals](t,e){for(const r of this){const s=t.property(r.attr);if(e.eq(r.get_value(),s.get_value()))return!1}return!0}[v.pretty](t){const e=t.token,r=[];for(const s of this)if(s.dirty){const n=s.get_value();r.push(`${s.attr}${e(":")} ${t.to_string(n)}`)}return`${this.constructor.__qualified__}${e("(")}${e("{")}${r.join(e(",")+" ")}${e("}")}${e(")")}`}finalize(){for(const t of this)null!=t.spec.transform&&this.connect(t.spec.transform.change,()=>this.transformchange.emit());this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){n.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return new this.constructor(this.attributes)}_setv(t,e){const r=e.check_eq,s=[],n=this._changing;this._changing=!0;for(const[e,n]of t)!1!==r&&h.isEqual(e.get_value(),n)||(e.set_value(n),s.push(e));s.length>0&&(this._pending=!0);for(const t of s)t.change.emit();if(!n){if(!e.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(t,e={}){const r=f.entries(t);if(0==r.length)return;if(!0===e.silent){for(const[t,e]of r)this.properties[t].set_value(e);return}const s=new Map,n=new Map;for(const[t,e]of r){const r=this.properties[t];s.set(r,e),n.set(r,r.get_value())}this._setv(s,e);const{document:i}=this;if(null!=i){const t=[];for(const[e,r]of n)t.push([e,r,e.get_value()]);for(const[,e,r]of t)if(this._needs_invalidate(e,r)){i._invalidate_all_models();break}this._push_changes(t,e)}}getv(t){return this.property(t).get_value()}ref(){return{id:this.id}}struct(){const t={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(t.subtype=this._subtype),t}set_subtype(t){this._subtype=t}*[Symbol.iterator](){yield*f.values(this.properties)}*syncable_properties(){for(const t of this)t.syncable&&(yield t)}serializable_attributes(){const t={};for(const e of this.syncable_properties())t[e.attr]=e.get_value();return t}static _value_to_json(t){if(t instanceof b)return t.ref();if(d.is_NDArray(t))return y.encode_NDArray(t);if(l.isArray(t)||l.isTypedArray(t)){const e=t.length,r=new Array(e);for(let s=0;s<e;s++){const e=t[s];r[s]=b._value_to_json(e)}return r}if(l.isPlainObject(t)){const e={};for(const[r,s]of f.entries(t))e[r]=b._value_to_json(s);return e}return t}attributes_as_json(t=!0,e=b._value_to_json){const r={};for(const s of this)s.syncable&&(t||s.dirty)&&(r[s.attr]=e(s.get_value()));return r}static _json_record_references(t,e,r,s){const{recursive:n}=s;if(i.is_ref(e)){const s=t.get_model_by_id(e.id);null==s||r.has(s)||b._value_record_references(s,r,{recursive:n})}else if(l.isArray(e))for(const s of e)b._json_record_references(t,s,r,{recursive:n});else if(l.isPlainObject(e))for(const s of f.values(e))b._json_record_references(t,s,r,{recursive:n})}static _value_record_references(t,e,r){const{recursive:s}=r;if(t instanceof b){if(!e.has(t)&&(e.add(t),s)){const r=t._immediate_references();for(const t of r)b._value_record_references(t,e,{recursive:!0})}}else if(l.isArray(t))for(const r of t)b._value_record_references(r,e,{recursive:s});else if(l.isPlainObject(t))for(const r of f.values(t))b._value_record_references(r,e,{recursive:s})}_immediate_references(){const t=new Set;for(const e of this.syncable_properties()){const r=e.get_value();b._value_record_references(r,t,{recursive:!1})}return t}references(){const t=new Set;return b._value_record_references(this,t,{recursive:!0}),t}_doc_attached(){}_doc_detached(){}attach_document(t){if(null!=this.document&&this.document!=t)throw new Error("models must be owned by only a single document");this.document=t,this._doc_attached()}detach_document(){this._doc_detached(),this.document=null}_needs_invalidate(t,e){const r=new Set;b._value_record_references(e,r,{recursive:!1});const s=new Set;b._value_record_references(t,s,{recursive:!1});for(const t of r)if(!s.has(t))return!0;for(const t of s)if(!r.has(t))return!0;return!1}_push_changes(t,e={}){const{document:r}=this;if(null==r)return;const{setter_id:s}=e,n=[];for(const[e,i,o]of t)e.syncable&&n.push(new p.ModelChangedEvent(r,this,e.attr,i,o,s));if(0!=n.length){let t;1==n.length?[t]=n:t=new p.DocumentEventBatch(r,n,s),r._trigger_on_change(t)}}materialize_dataspecs(t){const e={};for(const r of this){if(!(r instanceof o.VectorSpec))continue;if(r.optional&&null==r.spec.value&&!r.dirty)continue;const s=r.attr,n=r.array(t);e["_"+s]=n,r instanceof o.DistanceSpec&&(e["max_"+s]=u.max(n))}return e}on_change(t,e){for(const r of l.isArray(t)?t:[t])this.connect(r.change,e)}}r.HasProps=b,b.init_HasProps()},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const l=n(16),s=n(9);class o{constructor(n,t){this.sender=n,this.name=t}connect(n,t=null){c.has(this.sender)||c.set(this.sender,[]);const e=c.get(this.sender);if(null!=u(e,this,n,t))return!1;const l=null!=t?t:n;r.has(l)||r.set(l,[]);const s=r.get(l),o={signal:this,slot:n,context:t};return e.push(o),s.push(o),!0}disconnect(n,t=null){const e=c.get(this.sender);if(null==e||0===e.length)return!1;const l=u(e,this,n,t);if(null==l)return!1;const s=null!=t?t:n,o=r.get(s);return l.signal=null,a(e),a(o),!0}emit(n){var t;const e=null!==(t=c.get(this.sender))&&void 0!==t?t:[];for(const{signal:t,slot:l,context:s}of e)t===this&&l.call(s,n,this.sender)}}e.Signal=o,o.__name__="Signal";class i extends o{emit(){super.emit(void 0)}}e.Signal0=i,i.__name__="Signal0",function(n){n.disconnectBetween=function(n,t){const e=c.get(n);if(null==e||0===e.length)return;const l=r.get(t);if(null!=l&&0!==l.length){for(const t of l){if(null==t.signal)return;t.signal.sender===n&&(t.signal=null)}a(e),a(l)}},n.disconnectSender=function(n){var t;const e=c.get(n);if(null!=e&&0!==e.length){for(const n of e){if(null==n.signal)return;const e=null!==(t=n.context)&&void 0!==t?t:n.slot;n.signal=null,a(r.get(e))}a(e)}},n.disconnectReceiver=function(n){const t=r.get(n);if(null!=t&&0!==t.length){for(const n of t){if(null==n.signal)return;const t=n.signal.sender;n.signal=null,a(c.get(t))}a(t)}},n.disconnectAll=function(n){const t=c.get(n);if(null!=t&&0!==t.length){for(const n of t)n.signal=null;a(t)}const e=r.get(n);if(null!=e&&0!==e.length){for(const n of e)n.signal=null;a(e)}}}(o||(e.Signal=o={})),e.Signalable=function(){return class{connect(n,t){return n.connect(t,this)}disconnect(n,t){return n.disconnect(t,this)}}};const c=new WeakMap,r=new WeakMap;function u(n,t,e,l){return s.find(n,n=>n.signal===t&&n.slot===e&&n.context===l)}const g=new Set;function a(n){0===g.size&&l.defer(f),g.add(n)}function f(){for(const n of g)s.remove_by(n,n=>null==n.signal);g.clear()}},n”, ” function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.delay=n”, ” // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn”, ” // Underscore may be freely distributed under the MIT license.n”, ” function(n,e){return setTimeout(n,e)};const u="function"==typeof requestAnimationFrame?requestAnimationFrame:setImmediate;t.defer=function(n){return new Promise(e=>{u(()=>e(n()))})},t.throttle=function(n,e,t={}){let u,o,i,r=null,l=0;const c=function(){l=!1===t.leading?0:Date.now(),r=null,i=n.apply(u,o),r||(u=o=null)};return function(){const a=Date.now();l||!1!==t.leading||(l=a);const f=e-(a-l);return u=this,o=arguments,f<=0||f>e?(r&&(clearTimeout(r),r=null),l=a,i=n.apply(u,o),r||(u=o=null)):r||!1===t.trailing||(r=setTimeout(c,f)),i}},t.once=function(n){let e,t=!1;return function(){return t||(t=!0,e=n()),e}}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(8),r=e(13);t.is_ref=function(e){if(i.isPlainObject(e)){const n=r.keys(e);return 1==n.length&&"id"==n[0]}return!1}},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const a=e(1),s=e(15),i=e(19),r=a.__importStar(e(20)),l=e(24),o=e(9),c=e(12),_=e(22),u=e(8),d=e(27);function p(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function S(e){return u.isPlainObject(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}n.isSpec=S;class m{constructor(e,t,n,a,i,r={}){var l,o;let c;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=a,this._dirty=!1,this.change=new s.Signal0(this.obj,"change"),this.internal=null!==(l=r.internal)&&void 0!==l&&l,this.optional=null!==(o=r.optional)&&void 0!==o&&o,void 0!==i)c=i,this._dirty=!0;else{const t=this._default_override();c=void 0!==t?t:void 0!==a?a(e):null}this._update(c)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){null!=e&&this.validate(e),this.spec={value:e}}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${p(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj.type}.${this.attr} given invalid value: ${p(e)}`)}valid(e){return this.kind.valid(e)}value(e=!0){if(!this.is_value)throw new Error("attempted to retrieve property value for property without value specification");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=m,m.__name__="Property";class h extends m{}n.PrimitiveProperty=h,h.__name__="PrimitiveProperty";class v extends m{}n.Any=v,v.__name__="Any";class g extends m{valid(e){return u.isArray(e)||e instanceof Float32Array||e instanceof Float64Array}}n.Array=g,g.__name__="Array";class x extends m{valid(e){return u.isBoolean(e)}}n.Boolean=x,x.__name__="Boolean";class y extends m{valid(e){return u.isString(e)&&_.is_color(e)}}n.Color=y,y.__name__="Color";class f extends m{}n.Instance=f,f.__name__="Instance";class A extends m{valid(e){return u.isNumber(e)}}n.Number=A,A.__name__="Number";class P extends A{valid(e){return u.isNumber(e)&&(0|e)==e}}n.Int=P,P.__name__="Int";class C extends A{}n.Angle=C,C.__name__="Angle";class b extends A{valid(e){return u.isNumber(e)&&0<=e&&e<=1}}n.Percent=b,b.__name__="Percent";class L extends m{valid(e){return u.isString(e)}}n.String=L,L.__name__="String";class N extends m{valid(e){return null===e||u.isString(e)}}n.NullString=N,N.__name__="NullString";class T extends L{}n.FontSize=T,T.__name__="FontSize";class q extends L{_default_override(){return d.settings.dev?"Bokeh":void 0}}n.Font=q,q.__name__="Font";class B extends m{valid(e){return u.isString(e)&&o.includes(this.enum_values,e)}}function M(e){return class extends B{get enum_values(){return[…e]}}}n.EnumProperty=B,B.__name__="EnumProperty",n.Enum=M;class w extends B{get enum_values(){return[…r.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;n<e.length;n++)switch(e[n]){case"clock":t[n]=0;break;case"anticlock":t[n]=1}return t}}n.Direction=w,w.__name__="Direction",n.Anchor=M(r.Anchor),n.AngleUnits=M(r.AngleUnits),n.BoxOrigin=M(r.BoxOrigin),n.ButtonType=M(r.ButtonType),n.CalendarPosition=M(r.CalendarPosition),n.Dimension=M(r.Dimension),n.Dimensions=M(r.Dimensions),n.Distribution=M(r.Distribution),n.FontStyle=M(r.FontStyle),n.HatchPatternType=M(r.HatchPatternType),n.HTTPMethod=M(r.HTTPMethod),n.HexTileOrientation=M(r.HexTileOrientation),n.HoverMode=M(r.HoverMode),n.LatLon=M(r.LatLon),n.LegendClickPolicy=M(r.LegendClickPolicy),n.LegendLocation=M(r.LegendLocation),n.LineCap=M(r.LineCap),n.LineJoin=M(r.LineJoin),n.LinePolicy=M(r.LinePolicy),n.Location=M(r.Location),n.Logo=M(r.Logo),n.MarkerType=M(r.MarkerType),n.MutedPolicy=M(r.MutedPolicy),n.Orientation=M(r.Orientation),n.OutputBackend=M(r.OutputBackend),n.PaddingUnits=M(r.PaddingUnits),n.Place=M(r.Place),n.PointPolicy=M(r.PointPolicy),n.RadiusDimension=M(r.RadiusDimension),n.RenderLevel=M(r.RenderLevel),n.RenderMode=M(r.RenderMode),n.ResetPolicy=M(r.ResetPolicy),n.RoundingFunction=M(r.RoundingFunction),n.Side=M(r.Side),n.SizingMode=M(r.SizingMode),n.Sort=M(r.Sort),n.SpatialUnits=M(r.SpatialUnits),n.StartEnd=M(r.StartEnd),n.StepMode=M(r.StepMode),n.TapBehavior=M(r.TapBehavior),n.TextAlign=M(r.TextAlign),n.TextBaseline=M(r.TextBaseline),n.TextureRepetition=M(r.TextureRepetition),n.TickLabelOrientation=M(r.TickLabelOrientation),n.TooltipAttachment=M(r.TooltipAttachment),n.UpdateMode=M(r.UpdateMode),n.VerticalAlign=M(r.VerticalAlign);class D extends m{get_value(){return null===this.spec.value?null:this.spec}_update(e){S(e)?this.spec=e:this.spec={value:e},null!=this.spec.value&&this.validate(this.spec.value)}}n.ScalarSpec=D,D.__name__="ScalarSpec";class k extends D{}n.AnyScalar=k,k.__name__="AnyScalar";class F extends D{}n.ColorScalar=F,F.__name__="ColorScalar";class U extends D{}n.NumberScalar=U,U.__name__="NumberScalar";class z extends D{}n.StringScalar=z,z.__name__="StringScalar";class O extends D{}n.NullStringScalar=O,O.__name__="NullStringScalar";class R extends D{}n.ArrayScalar=R,R.__name__="ArrayScalar";class $ extends D{}n.LineJoinScalar=$,$.__name__="LineJoinScalar";class E extends D{}n.LineCapScalar=E,E.__name__="LineCapScalar";class H extends D{}n.FontSizeScalar=H,H.__name__="FontSizeScalar";class j extends D{}n.FontStyleScalar=j,j.__name__="FontStyleScalar";class X extends D{}n.TextAlignScalar=X,X.__name__="TextAlignScalar";class Y extends D{}n.TextBaselineScalar=Y,Y.__name__="TextBaselineScalar";class I extends m{get_value(){return null===this.spec.value?null:this.spec}_update(e){S(e)?this.spec=e:this.spec={value:e},null!=this.spec.value&&this.validate(this.spec.value)}array(e){var t;let n;const a=null!==(t=e.get_length())&&void 0!==t?t:1;if(null!=this.spec.field){const t=e.get_column(this.spec.field);if(null!=t)n=this.normalize(t);else{i.logger.warn(`attempted to retrieve property array for nonexistent field ‘${this.spec.field}’`);const e=new l.NumberArray(a);e.fill(NaN),n=e}}else if(null!=this.spec.expr)n=this.normalize(this.spec.expr.v_compute(e));else{const e=this.value(!1);if(u.isNumber(e)){const t=new l.NumberArray(a);t.fill(e),n=t}else n=o.repeat(e,a)}return null!=this.spec.transform&&(n=this.spec.transform.v_compute(n)),n}}n.VectorSpec=I,I.__name__="VectorSpec";class J extends I{}n.DataSpec=J,J.__name__="DataSpec";class V extends I{_update(e){super._update(e),null==this.spec.units&&(this.spec.units=this.default_units);const t=this.spec.units;if(!o.includes(this.valid_units,t))throw new Error(`units must be one of ${this.valid_units.join(", ")}; got: ${t}`)}get units(){return this.spec.units}set units(e){this.spec.units=e}}n.UnitsSpec=V,V.__name__="UnitsSpec";class G extends V{array(e){return new l.NumberArray(super.array(e))}}n.NumberUnitsSpec=G,G.__name__="NumberUnitsSpec";class K extends J{}n.BaseCoordinateSpec=K,K.__name__="BaseCoordinateSpec";class Q extends K{}n.CoordinateSpec=Q,Q.__name__="CoordinateSpec";class W extends K{}n.CoordinateSeqSpec=W,W.__name__="CoordinateSeqSpec";class Z extends K{}n.CoordinateSeqSeqSeqSpec=Z,Z.__name__="CoordinateSeqSeqSeqSpec";class ee extends Q{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSpec=ee,ee.__name__="XCoordinateSpec";class te extends Q{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSpec=te,te.__name__="YCoordinateSpec";class ne extends W{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSeqSpec=ne,ne.__name__="XCoordinateSeqSpec";class ae extends W{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSeqSpec=ae,ae.__name__="YCoordinateSeqSpec";class se extends Z{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSeqSeqSeqSpec=se,se.__name__="XCoordinateSeqSeqSeqSpec";class ie extends Z{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSeqSeqSeqSpec=ie,ie.__name__="YCoordinateSeqSeqSeqSpec";class re extends G{get default_units(){return"rad"}get valid_units(){return[…r.AngleUnits]}normalize(e){return"deg"==this.spec.units&&(e=c.map(e,e=>e*Math.PI/180)),e=c.map(e,e=>-e),super.normalize(e)}}n.AngleSpec=re,re.__name__="AngleSpec";class le extends G{get default_units(){return"data"}get valid_units(){return[…r.SpatialUnits]}}n.DistanceSpec=le,le.__name__="DistanceSpec";class oe extends J{array(e){return new Uint8Array(super.array(e))}}n.BooleanSpec=oe,oe.__name__="BooleanSpec";class ce extends J{array(e){return new l.NumberArray(super.array(e))}}n.NumberSpec=ce,ce.__name__="NumberSpec";class _e extends J{array(e){const t=super.array(e),n=t.length,a=new l.ColorArray(n);for(let e=0;e<n;e++){const n=t[e];if(u.isNumber(n))a[e]=n;else{const t=_.color2rgba(n);a[e]=_.encode_rgba(t)}}return a}}n.ColorSpec=_e,_e.__name__="ColorSpec";class ue extends J{}n.FontSizeSpec=ue,ue.__name__="FontSizeSpec";class de extends J{}n.MarkerSpec=de,de.__name__="MarkerSpec";class pe extends J{}n.StringSpec=pe,pe.__name__="StringSpec";class Se extends J{}n.NullStringSpec=Se,Se.__name__="NullStringSpec";class me extends J{}n.NDArraySpec=me,me.__name__="NDArraySpec"},n”, ” function _(e,l,o){Object.defineProperty(o,"__esModule",{value:!0});const n=e(8),t=e(13),s={};class g{constructor(e,l){this.name=e,this.level=l}}o.LogLevel=g,g.__name__="LogLevel";class r{constructor(e,l=r.INFO){this._name=e,this.set_level(l)}static get levels(){return Object.keys(r.log_levels)}static get(e,l=r.INFO){if(e.length>0){let o=s[e];return null==o&&(s[e]=o=new r(e,l)),o}throw new TypeError("Logger.get() expects a non-empty string name and an optional log-level")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof g)this._log_level=e;else{if(!n.isString(e)||null==r.log_levels[e])throw new Error("Logger.set_level() expects a log-level object or a string name of a log-level");this._log_level=r.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of t.entries(r.log_levels))o.level<this._log_level.level||this._log_level.level===r.OFF.level?this[e]=function(){}:this[e]=i(e,l)}trace(…e){}debug(…e){}info(…e){}warn(…e){}error(…e){}}function i(e,l){return null!=console[e]?console[e].bind(console,l):null!=console.log?console.log.bind(console,l):function(){}}function _(e){const l=o.logger.level;return n.isString(e)&&null==r.log_levels[e]?(console.log(`[bokeh] unrecognized logging level ‘${e}’ passed to Bokeh.set_log_level(), ignoring`),console.log("[bokeh] valid log levels are: "+r.levels.join(", "))):(console.log(`[bokeh] setting log level to: ‘${n.isString(e)?e:e.level}’`),o.logger.set_level(e)),l}o.Logger=r,r.__name__="Logger",r.TRACE=new g("trace",0),r.DEBUG=new g("debug",1),r.INFO=new g("info",2),r.WARN=new g("warn",6),r.ERROR=new g("error",7),r.FATAL=new g("fatal",8),r.OFF=new g("off",9),r.log_levels={trace:r.TRACE,debug:r.DEBUG,info:r.INFO,warn:r.WARN,error:r.ERROR,fatal:r.FATAL,off:r.OFF},o.logger=r.get("bokeh"),o.set_log_level=_,o.with_log_level=function(e,l){const o=_(e);try{l()}finally{_(o)}}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(21);t.Align=o.Enum("start","center","end"),t.Anchor=o.Enum("top_left","top_center","top_right","center_left","center","center_right","bottom_left","bottom_center","bottom_right"),t.AngleUnits=o.Enum("deg","rad"),t.BoxOrigin=o.Enum("corner","center"),t.ButtonType=o.Enum("default","primary","success","warning","danger"),t.CalendarPosition=o.Enum("auto","above","below"),t.Dimension=o.Enum("width","height"),t.Dimensions=o.Enum("width","height","both"),t.Direction=o.Enum("clock","anticlock"),t.Distribution=o.Enum("uniform","normal"),t.FontStyle=o.Enum("normal","italic","bold","bold italic"),t.HatchPatternType=o.Enum("blank","dot","ring","horizontal_line","vertical_line","cross","horizontal_dash","vertical_dash","spiral","right_diagonal_line","left_diagonal_line","diagonal_cross","right_diagonal_dash","left_diagonal_dash","horizontal_wave","vertical_wave","criss_cross"," ",".","o","-","|","+",’"’,":","@","/","\\","x",",","`","v",">",""),t.HTTPMethod=o.Enum("POST","GET"),t.HexTileOrientation=o.Enum("pointytop","flattop"),t.HoverMode=o.Enum("mouse","hline","vline"),t.LatLon=o.Enum("lat","lon"),t.LegendClickPolicy=o.Enum("none","hide","mute"),t.LegendLocation=t.Anchor,t.LineCap=o.Enum("butt","round","square"),t.LineJoin=o.Enum("miter","round","bevel"),t.LinePolicy=o.Enum("prev","next","nearest","interp","none"),t.Location=o.Enum("above","below","left","right"),t.Logo=o.Enum("normal","grey"),t.MarkerType=o.Enum("asterisk","circle","circle_cross","circle_dot","circle_x","circle_y","cross","dash","diamond","diamond_cross","diamond_dot","dot","hex","hex_dot","inverted_triangle","plus","square","square_cross","square_dot","square_pin","square_x","triangle","triangle_dot","triangle_pin","x","y"),t.MutedPolicy=o.Enum("show","ignore"),t.Orientation=o.Enum("vertical","horizontal"),t.OutputBackend=o.Enum("canvas","svg","webgl"),t.PaddingUnits=o.Enum("percent","absolute"),t.Place=o.Enum("above","below","left","right","center"),t.PointPolicy=o.Enum("snap_to_data","follow_mouse","none"),t.RadiusDimension=o.Enum("x","y","max","min"),t.RenderLevel=o.Enum("image","underlay","glyph","guide","annotation","overlay"),t.RenderMode=o.Enum("canvas","css"),t.ResetPolicy=o.Enum("standard","event_only"),t.RoundingFunction=o.Enum("round","nearest","floor","rounddown","ceil","roundup"),t.SelectionMode=o.Enum("replace","append","intersect","subtract"),t.Side=o.Enum("above","below","left","right"),t.SizingMode=o.Enum("stretch_width","stretch_height","stretch_both","scale_width","scale_height","scale_both","fixed"),t.Sort=o.Enum("ascending","descending"),t.SpatialUnits=o.Enum("screen","data"),t.StartEnd=o.Enum("start","end"),t.StepMode=o.Enum("after","before","center"),t.TapBehavior=o.Enum("select","inspect"),t.TextAlign=o.Enum("left","right","center"),t.TextBaseline=o.Enum("top","middle","bottom","alphabetic","hanging","ideographic"),t.TextureRepetition=o.Enum("repeat","repeat_x","repeat_y","no_repeat"),t.TickLabelOrientation=o.Enum("vertical","horizontal","parallel","normal"),t.TooltipAttachment=o.Enum("horizontal","vertical","left","right","above","below"),t.UpdateMode=o.Enum("replace","append"),t.VerticalAlign=o.Enum("top","middle","bottom")},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1).__importStar(e(8)),r=e(22);class i{}t.Kind=i,i.__name__="Kind",function(e){class n extends i{valid(e){return!0}}n.__name__="Any",e.Any=n;class t extends i{valid(e){return!0}}t.__name__="Unknown",e.Unknown=t;class l extends i{valid(e){return s.isBoolean(e)}}l.__name__="Boolean",e.Boolean=l;class a extends i{constructor(e){super(),this.obj_type=e}valid(e){return!0}}a.__name__="Ref",e.Ref=a;class _ extends i{valid(e){return s.isNumber(e)}}_.__name__="Number",e.Number=_;class u extends _{valid(e){return super.valid(e)&&s.isInteger(e)}}u.__name__="Int",e.Int=u;class d extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some(n=>n.valid(e))}}d.__name__="Or",e.Or=d;class o extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!s.isArray(e))return!1;for(let n=0;n<this.types.length;n++){const t=this.types[n],s=e[n];if(!t.valid(s))return!1}return!0}}o.__name__="Tuple",e.Tuple=o;class c extends i{constructor(e){super(),this.item_type=e}valid(e){return s.isArray(e)&&e.every(e=>this.item_type.valid(e))}}c.__name__="Array",e.Array=c;class m extends i{valid(e){return null===e}}m.__name__="Null",e.Null=m;class p extends i{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}p.__name__="Nullable",e.Nullable=p;class y extends i{valid(e){return s.isString(e)}}y.__name__="String",e.String=y;class v extends i{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}v.__name__="Enum",e.Enum=v;class h extends i{constructor(e){super(),this.item_type=e}valid(e){if(!s.isPlainObject(e))return!1;for(const n in e)if(e.hasOwnProperty(n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}h.__name__="Struct",e.Struct=h;class w extends i{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof Map))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}w.__name__="Dict",e.Dict=w;class K extends i{valid(e){return s.isString(e)&&r.is_color(e)}}K.__name__="Color",e.Color=K;class f extends _{valid(e){return super.valid(e)&&0<=e&&e<=1}}f.__name__="Percent",e.Percent=f}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null,t.Nullable=e=>new t.Kinds.Nullable(e),t.Or=(…e)=>new t.Kinds.Or(e),t.Tuple=(…e)=>new t.Kinds.Tuple(e),t.Array=e=>new t.Kinds.Array(e),t.Struct=e=>new t.Kinds.Struct(e),t.Dict=(e,n)=>new t.Kinds.Dict(e,n),t.Enum=(…e)=>new t.Kinds.Enum(e),t.Ref=e=>new t.Kinds.Ref(e),t.Percent=new t.Kinds.Percent,t.Color=new t.Kinds.Color,t.Auto=t.Enum("auto"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(23),l=e(9);function a(e){const r=Number(e).toString(16);return 1==r.length?"0"+r:r}function o(e){if(0==(e+="").indexOf("#"))return e;if(n.is_svg_color(e))return n.svg_colors[e];if(0==e.indexOf("rgb")){const r=e.replace(/^rgba?\(|\\s+|\)$/g,"").split(",");let t=r.slice(0,3).map(a).join("");return 4==r.length&&(t+=a(Math.floor(255*parseFloat(r[3])))),"#"+t.slice(0,8)}return e}function s(e){let r;switch(e.substring(0,4)){case"rgba":r={start:"rgba(",len:4,alpha:!0};break;case"rgb(":r={start:"rgb(",len:3,alpha:!1};break;default:return!1}if(new RegExp(".*?(\\.).*(,)").test(e))return!1;const t=e.replace(r.start,"").replace(")","").split(",").map(parseFloat);return t.length==r.len&&((!r.alpha||0<=t[3]&&t[3]<=1)&&!l.includes(t.slice(0,3).map(e=>0<=e&&e<=255),!1))}t.is_color=function(e){return n.is_svg_color(e.toLowerCase())||"#"==e.substring(0,1)||s(e)},t.rgb2hex=function(e,r,t){return`#${a(255&e)}${a(255&r)}${a(255&t)}`},t.color2hex=o,t.encode_rgba=function([e,r,t,n]){return(255*e|0)<<24|(255*r|0)<<16|(255*t|0)<<8|255*n|0},t.decode_rgba=function(e){return[(e>>24&255)/255,(e>>16&255)/255,(e>>8&255)/255,(e>>0&255)/255]},t.color2rgba=function(e,r=1){if(!e)return[0,0,0,0];let t=o(e);t=t.replace(/ |#/g,\"\"),t.length<=4&&(t=t.replace(/(.)/g,\"$1$1\"));const n=t.match(/../g).map(e=>parseInt(e,16)/255);for(;n.length<3;)n.push(0);return n.length<4&&n.push(r),n.slice(0,4)},t.valid_rgb=s},\n", " function _(e,F,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.svg_colors={indianred:\"#CD5C5C\",lightcoral:\"#F08080\",salmon:\"#FA8072\",darksalmon:\"#E9967A\",lightsalmon:\"#FFA07A\",crimson:\"#DC143C\",red:\"#FF0000\",firebrick:\"#B22222\",darkred:\"#8B0000\",pink:\"#FFC0CB\",lightpink:\"#FFB6C1\",hotpink:\"#FF69B4\",deeppink:\"#FF1493\",mediumvioletred:\"#C71585\",palevioletred:\"#DB7093\",coral:\"#FF7F50\",tomato:\"#FF6347\",orangered:\"#FF4500\",darkorange:\"#FF8C00\",orange:\"#FFA500\",gold:\"#FFD700\",yellow:\"#FFFF00\",lightyellow:\"#FFFFE0\",lemonchiffon:\"#FFFACD\",lightgoldenrodyellow:\"#FAFAD2\",papayawhip:\"#FFEFD5\",moccasin:\"#FFE4B5\",peachpuff:\"#FFDAB9\",palegoldenrod:\"#EEE8AA\",khaki:\"#F0E68C\",darkkhaki:\"#BDB76B\",lavender:\"#E6E6FA\",thistle:\"#D8BFD8\",plum:\"#DDA0DD\",violet:\"#EE82EE\",orchid:\"#DA70D6\",fuchsia:\"#FF00FF\",magenta:\"#FF00FF\",mediumorchid:\"#BA55D3\",mediumpurple:\"#9370DB\",blueviolet:\"#8A2BE2\",darkviolet:\"#9400D3\",darkorchid:\"#9932CC\",darkmagenta:\"#8B008B\",purple:\"#800080\",indigo:\"#4B0082\",slateblue:\"#6A5ACD\",darkslateblue:\"#483D8B\",mediumslateblue:\"#7B68EE\",greenyellow:\"#ADFF2F\",chartreuse:\"#7FFF00\",lawngreen:\"#7CFC00\",lime:\"#00FF00\",limegreen:\"#32CD32\",palegreen:\"#98FB98\",lightgreen:\"#90EE90\",mediumspringgreen:\"#00FA9A\",springgreen:\"#00FF7F\",mediumseagreen:\"#3CB371\",seagreen:\"#2E8B57\",forestgreen:\"#228B22\",green:\"#008000\",darkgreen:\"#006400\",yellowgreen:\"#9ACD32\",olivedrab:\"#6B8E23\",olive:\"#808000\",darkolivegreen:\"#556B2F\",mediumaquamarine:\"#66CDAA\",darkseagreen:\"#8FBC8F\",lightseagreen:\"#20B2AA\",darkcyan:\"#008B8B\",teal:\"#008080\",aqua:\"#00FFFF\",cyan:\"#00FFFF\",lightcyan:\"#E0FFFF\",paleturquoise:\"#AFEEEE\",aquamarine:\"#7FFFD4\",turquoise:\"#40E0D0\",mediumturquoise:\"#48D1CC\",darkturquoise:\"#00CED1\",cadetblue:\"#5F9EA0\",steelblue:\"#4682B4\",lightsteelblue:\"#B0C4DE\",powderblue:\"#B0E0E6\",lightblue:\"#ADD8E6\",skyblue:\"#87CEEB\",lightskyblue:\"#87CEFA\",deepskyblue:\"#00BFFF\",dodgerblue:\"#1E90FF\",cornflowerblue:\"#6495ED\",royalblue:\"#4169E1\",blue:\"#0000FF\",mediumblue:\"#0000CD\",darkblue:\"#00008B\",navy:\"#000080\",midnightblue:\"#191970\",cornsilk:\"#FFF8DC\",blanchedalmond:\"#FFEBCD\",bisque:\"#FFE4C4\",navajowhite:\"#FFDEAD\",wheat:\"#F5DEB3\",burlywood:\"#DEB887\",tan:\"#D2B48C\",rosybrown:\"#BC8F8F\",sandybrown:\"#F4A460\",goldenrod:\"#DAA520\",darkgoldenrod:\"#B8860B\",peru:\"#CD853F\",chocolate:\"#D2691E\",saddlebrown:\"#8B4513\",sienna:\"#A0522D\",brown:\"#A52A2A\",maroon:\"#800000\",white:\"#FFFFFF\",snow:\"#FFFAFA\",honeydew:\"#F0FFF0\",mintcream:\"#F5FFFA\",azure:\"#F0FFFF\",aliceblue:\"#F0F8FF\",ghostwhite:\"#F8F8FF\",whitesmoke:\"#F5F5F5\",seashell:\"#FFF5EE\",beige:\"#F5F5DC\",oldlace:\"#FDF5E6\",floralwhite:\"#FFFAF0\",ivory:\"#FFFFF0\",antiquewhite:\"#FAEBD7\",linen:\"#FAF0E6\",lavenderblush:\"#FFF0F5\",mistyrose:\"#FFE4E1\",gainsboro:\"#DCDCDC\",lightgray:\"#D3D3D3\",lightgrey:\"#D3D3D3\",silver:\"#C0C0C0\",darkgray:\"#A9A9A9\",darkgrey:\"#A9A9A9\",gray:\"#808080\",grey:\"#808080\",dimgray:\"#696969\",dimgrey:\"#696969\",lightslategray:\"#778899\",lightslategrey:\"#778899\",slategray:\"#708090\",slategrey:\"#708090\",darkslategray:\"#2F4F4F\",darkslategrey:\"#2F4F4F\",black:\"#000000\"},r.is_svg_color=function(e){return e in r.svg_colors}},\n", " function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.NumberArray=Float32Array,e.ColorArray=Uint32Array;const s=r(25);class a{constructor(r,t){this.offsets=r,this.array=t}[s.equals](r,t){return t.arrays(this.offsets,r.offsets)&&t.arrays(this.array,r.array)}get length(){return this.offsets.length}clone(){return new a(new Uint32Array(this.offsets),new e.NumberArray(this.array))}static from(r){const t=r.length,s=new Uint32Array(t);let n=0;for(let e=0;e<t;e++){const t=r[e].length;s[e]=n,n+=t}const o=new e.NumberArray(n);for(let e=0;e<t;e++)o.set(r[e],s[e]);return new a(s,o)}*[Symbol.iterator](){const{offsets:r,length:t}=this;for(let e=0;e<t;e++)yield this.array.subarray(r[e],r[e+1])}get(r){const{offsets:t}=this;return this.array.subarray(t[r],t[r+1])}set(r,t){this.array.set(t,this.offsets[r])}}e.RaggedArray=a,a.__name__=\"RaggedArray\",a[Symbol.toStringTag]=\"RaggedArray\";var n=r(26);e.Indices=n.BitSet},\n", " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.equals=Symbol(\"equals\"),r.wildcard=Symbol(\"wildcard\");const n=Object.prototype.toString;class s{constructor(){this.a_stack=[],this.b_stack=[]}eq(t,e){if(Object.is(t,e))return!0;if(t===r.wildcard||e===r.wildcard)return!0;if(null==t||null==e)return t===e;const s=n.call(t);if(s!=n.call(e))return!1;switch(s){case\"[object Number]\":return this.numbers(t,e);case\"[object RegExp]\":case\"[object String]\":return\"\"+t==\"\"+e;case\"[object Date]\":case\"[object Boolean]\":return+t==+e}const{a_stack:o,b_stack:c}=this;let a=o.length;for(;a--;)if(o[a]===t)return c[a]===e;o.push(t),c.push(e);const i=(()=>{if(null!=t[r.equals]&&null!=e[r.equals])return t[r.equals](e,this);switch(s){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(\"\"+t,\"\"+e)}if(t instanceof Node)return this.nodes(t,e);throw Error(\"can't compare objects of type \"+s)})();return o.pop(),c.pop(),i}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n<r;n++)if(!this.eq(t[n],e[n]))return!1;return!0}iterables(t,e){const r=t[Symbol.iterator](),n=e[Symbol.iterator]();for(;;){const t=r.next(),e=n.next();if(t.done&&e.done)return!0;if(t.done||e.done)return!1;if(!this.eq(t.value,e.value))return!1}}maps(t,e){if(t.size!=e.size)return!1;for(const[r,n]of t)if(!e.has(r)||!this.eq(n,e.get(r)))return!1;return!0}sets(t,e){if(t.size!=e.size)return!1;for(const r of t)if(!e.has(r))return!1;return!0}objects(t,e){const r=Object.keys(t);if(r.length!=Object.keys(e).length)return!1;for(const n of r)if(!e.hasOwnProperty(n)||!this.eq(t[n],e[n]))return!1;return!0}nodes(t,e){return t.nodeType==e.nodeType&&(t.textContent==e.textContent&&!!this.iterables(t.childNodes,e.childNodes))}}r.Comparator=s,s.__name__="Comparator";const{abs:o}=Math;class c extends s{constructor(t=1e-4){super(),this.tolerance=t}numbers(t,e){return super.numbers(t,e)||o(t-e)<this.tolerance}}function a(t,e){return(new s).eq(t,e)}r.SimilarComparator=c,c.__name__="SimilarComparator",r.is_equal=a,r.is_similar=function(t,e,r){return new c(r).eq(t,e)},r.isEqual=a},n”, ” function _(t,s,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(11),i=t(9),n=t(25);class o{constructor(t,s=0){this.size=t,this[Symbol.toStringTag]="BitSet",this._count=null,this._nwords=Math.ceil(t/32),0==s||1==s?(this._array=new Uint32Array(this._nwords),1==s&&this._array.fill(4294967295)):(e.assert(s.length==this._nwords,"Initializer size mismatch"),this._array=s)}clone(){return new o(this.size,new Uint32Array(this._array))}[n.equals](t,s){if(!s.eq(this.size,t.size))return!1;const{_nwords:r}=this,e=this.size%r,i=0==e?r:r-1;for(let s=0;s<i;s++)if(this._array[s]!=t._array[s])return!1;if(0==e)return!0;{const s=1<<e-1,r=s-1^s;return(this._array[i]&r)==(t._array[i]&r)}}static all_set(t){return new o(t,1)}static all_unset(t){return new o(t,0)}static from_indices(t,s){const r=new o(t);for(const t of s)r.set(t);return r}static from_booleans(t,s){const r=new o(t),e=Math.min(t,s.length);for(let t=0;t<e;t++)s[t]&&r.set(t);return r}_check_bounds(t){e.assert(0<=t&&t<this.size,"Out of bounds")}get(t){this._check_bounds(t);const s=t>>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<<e:this._array[r]&=~(1<<e)}unset(t){this.set(t,!1)}*[Symbol.iterator](){yield*this.ones()}get count(){let t=this._count;return null==t&&(this._count=t=this._get_count()),t}_get_count(){const{_array:t,_nwords:s,size:r}=this;let e=0;for(let i=0,n=0;n<s;n++){const s=t[n];if(0==s)i+=32;else for(let t=0;t<32&&i<r;t++,i++)s>>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i<s;i++){const s=t[i];if(0!=s)for(let t=0;t<32&&e<r;t++,e++)s>>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i<s;i++){const s=t[i];if(4294967295!=s)for(let t=0;t<32&&e<r;t++,e++)s>>>t&1||(yield e);else e+=32}}_check_size(t){e.assert(this.size==t.size,"Size mismatch")}add(t){this._check_size(t);for(let s=0;s<this._nwords;s++)this._array[s]|=t._array[s]}intersect(t){this._check_size(t);for(let s=0;s<this._nwords;s++)this._array[s]&=t._array[s]}subtract(t){this._check_size(t);for(let s=0;s<this._nwords;s++){const r=this._array[s],e=t._array[s];this._array[s]=(r^e)&r}}union(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++)s._array[r]|=t._array[r];return s}intersection(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++)s._array[r]&=t._array[r];return s}difference(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++){const e=this._array[r],i=t._array[r];s._array[r]=(e^i)&e}return s}select(t){const s=this.count,r=new t.constructor(s);let e=0;for(const s of this)r[e++]=t[s];return r}}r.BitSet=o,o.__name__="BitSet";class a{constructor(t,s,r){this.nrows=t,this.ncols=s,this._matrix=new Array(t);for(let e=0;e<t;e++){this._matrix[e]=new Array(s);for(let t=0;t<s;t++)this._matrix[e][t]=r(e,t)}}at(t,s){return this._matrix[t][s]}*[Symbol.iterator](){for(let t=0;t<this.nrows;t++)for(let s=0;s<this.ncols;s++){const r=this._matrix[t][s];yield[r,t,s]}}*values(){for(const[t]of this)yield t}map(t){return new a(this.nrows,this.ncols,(s,r)=>t(this.at(s,r),s,r))}apply(t){const s=a.from(t),{nrows:r,ncols:e}=this;if(r==s.nrows&&e==s.ncols)return new a(r,e,(t,r)=>s.at(t,r)(this.at(t,r),t,r));throw new Error("dimensions don’t match")}to_sparse(){return[…this]}static from(t,s){if(t instanceof a)return t;if(null!=s){const r=t,e=Math.floor(r.length/s);return new a(e,s,(t,e)=>r[t*s+e])}{const s=t,r=t.length,e=i.min(s.map(t=>t.length));return new a(r,e,(t,r)=>s[t][r])}}}r.Matrix=a,a.__name__="Matrix"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class n{constructor(){this._dev=!1}set dev(e){this._dev=e}get dev(){return this._dev}}s.Settings=n,n.__name__="Settings",s.settings=new n},n”, ” function _(e,l,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(1).__importStar(e(18));t.Line={line_color:[a.Color,"black"],line_alpha:[a.Number,1],line_width:[a.Number,1],line_join:[a.LineJoin,"bevel"],line_cap:[a.LineCap,"butt"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.Fill={fill_color:[a.Color,"gray"],fill_alpha:[a.Number,1]},t.Hatch={hatch_color:[a.Color,"black"],hatch_alpha:[a.Number,1],hatch_scale:[a.Number,12],hatch_pattern:[a.NullString,null],hatch_weight:[a.Number,1],hatch_extra:[a.Any,{}]},t.Text={text_color:[a.Color,"#444444"],text_alpha:[a.Number,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSize,"16px"],text_font_style:[a.FontStyle,"normal"],text_align:[a.TextAlign,"left"],text_baseline:[a.TextBaseline,"bottom"],text_line_height:[a.Number,1.2]},t.LineScalar={line_color:[a.ColorScalar,"black"],line_alpha:[a.NumberScalar,1],line_width:[a.NumberScalar,1],line_join:[a.LineJoinScalar,"bevel"],line_cap:[a.LineCapScalar,"butt"],line_dash:[a.ArrayScalar,[]],line_dash_offset:[a.NumberScalar,0]},t.FillScalar={fill_color:[a.ColorScalar,"gray"],fill_alpha:[a.NumberScalar,1]},t.HatchScalar={hatch_color:[a.ColorScalar,"black"],hatch_alpha:[a.NumberScalar,1],hatch_scale:[a.NumberScalar,12],hatch_pattern:[a.NullStringScalar,null],hatch_weight:[a.NumberScalar,1],hatch_extra:[a.AnyScalar,{}]},t.TextScalar={text_color:[a.ColorScalar,"#444444"],text_alpha:[a.NumberScalar,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSizeScalar,"16px"],text_font_style:[a.FontStyleScalar,"normal"],text_align:[a.TextAlignScalar,"left"],text_baseline:[a.TextBaselineScalar,"bottom"],text_line_height:[a.NumberScalar,1.2]},t.LineVector={line_color:[a.ColorSpec,"black"],line_alpha:[a.NumberSpec,1],line_width:[a.NumberSpec,1],line_join:[a.LineJoin,"bevel"],line_cap:[a.LineCap,"butt"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.FillVector={fill_color:[a.ColorSpec,"gray"],fill_alpha:[a.NumberSpec,1]},t.HatchVector={hatch_color:[a.ColorSpec,"black"],hatch_alpha:[a.NumberSpec,1],hatch_scale:[a.NumberSpec,12],hatch_pattern:[a.NullStringSpec,null],hatch_weight:[a.NumberSpec,1],hatch_extra:[a.Any,{}]},t.TextVector={text_color:[a.ColorSpec,"#444444"],text_alpha:[a.NumberSpec,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSizeSpec,"16px"],text_font_style:[a.FontStyle,"normal"],text_align:[a.TextAlign,"left"],text_baseline:[a.TextBaseline,"bottom"],text_line_height:[a.Number,1.2]}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(27);function u(){const t=new Array(32);for(let e=0;e<32;e++)t[e]="0123456789ABCDEF".substr(Math.floor(16*Math.random()),1);return t[12]="4",t[16]="0123456789ABCDEF".substr(3&t[16].charCodeAt(0)|8,1),t.join("")}r.startsWith=function(t,e,r=0){return t.substr(r,e.length)==e},r.uuid4=u;let s=1e3;r.uniqueId=function(t){const e=n.settings.dev?"j"+s++:u();return null!=t?`${t}-${e}`:e},r.escape=function(t){return t.replace(/(?:[&<>"’])/g,t=>{switch(t){case"&":return"&";case"<":return"<";case">":return">";case’"’:return""";case"’":return"'";case"":return"`";default:return t}})},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,(t,e)=>{switch(e){case"amp":return"&";case"lt":return"<";case"gt":return">";case"quot":return’"’;case"#x27":return"’";case"#x60":return"";default:return e}})},r.use_strict=function(t){return"’use strict’;\n"+t}},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(8),a=t(11),n=t(25),i=Symbol("__ndarray__");class h extends Uint8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint8",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint8NDArray=h,h.__name__="Uint8NDArray";class _ extends Int8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int8",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int8NDArray=_,_.__name__="Int8NDArray";class u extends Uint16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint16",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint16NDArray=u,u.__name__="Uint16NDArray";class l extends Int16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int16",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int16NDArray=l,l.__name__="Int16NDArray";class y extends Uint32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint32NDArray=y,y.__name__="Uint32NDArray";class c extends Int32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int32NDArray=c,c.__name__="Int32NDArray";class p extends Float32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="float32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Float32NDArray=p,p.__name__="Float32NDArray";class o extends Float64Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="float64",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}function d(t){return r.isObject(t)&&t.__ndarray__==i}e.Float64NDArray=o,o.__name__="Float64NDArray",e.is_NDArray=d,e.ndarray=function(t,s={}){let{dtype:e}=s;null==e&&(e=t instanceof ArrayBuffer||r.isArray(t)?"float32":(()=>{switch(!0){case t instanceof Uint8Array:return"uint8";case t instanceof Int8Array:return"int8";case t instanceof Uint16Array:return"uint16";case t instanceof Int16Array:return"int16";case t instanceof Uint32Array:return"uint32";case t instanceof Int32Array:return"int32";case t instanceof Float32Array:return"float32";case t instanceof Float64Array:return"float64";default:a.unreachable()}})());const{shape:n}=s;switch(e){case"uint8":return new h(t,n);case"int8":return new _(t,n);case"uint16":return new u(t,n);case"int16":return new l(t,n);case"uint32":return new y(t,n);case"int32":return new c(t,n);case"float32":return new p(t,n);case"float64":return new o(t,n)}}},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),a=e(8),f=e(32),_=n.__importStar(e(30));function o(e){const r=new Uint8Array(e),t=Array.from(r).map(e=>String.fromCharCode(e));return btoa(t.join(""))}function s(e){const r=atob(e),t=r.length,n=new Uint8Array(t);for(let e=0,a=t;e<a;e++)n[e]=r.charCodeAt(e);return n.buffer}function i(e){const r=new Uint8Array(e.buffer,e.byteOffset,2*e.length);for(let e=0,t=r.length;e<t;e+=2){const t=r[e];r[e]=r[e+1],r[e+1]=t}}function u(e){const r=new Uint8Array(e.buffer,e.byteOffset,4*e.length);for(let e=0,t=r.length;e<t;e+=4){let t=r[e];r[e]=r[e+3],r[e+3]=t,t=r[e+1],r[e+1]=r[e+2],r[e+2]=t}}function c(e){const r=new Uint8Array(e.buffer,e.byteOffset,8*e.length);for(let e=0,t=r.length;e<t;e+=8){let t=r[e];r[e]=r[e+7],r[e+7]=t,t=r[e+1],r[e+1]=r[e+6],r[e+6]=t,t=r[e+2],r[e+2]=r[e+5],r[e+5]=t,t=r[e+3],r[e+3]=r[e+4],r[e+4]=t}}t.buffer_to_base64=o,t.base64_to_buffer=s,t.BYTE_ORDER=f.is_little_endian?"little":"big",t.swap16=i,t.swap32=u,t.swap64=c,t.is_NDArray_ref=function(e){return a.isPlainObject(e)&&("__buffer__"in e||"__ndarray__"in e)},t.decode_NDArray=function(e,r){const{shape:n,dtype:a,order:f}=e;let o;if("__buffer__"in e){const t=r.get(e.__buffer__);if(null==t)throw new Error(`buffer for ${e.__buffer__} not found);o=t}else o=s(e.__ndarray__);const l=(()=>{switch(a){case"uint8":return new _.Uint8NDArray(o,n);case"int8":return new _.Int8NDArray(o,n);case"uint16":return new _.Uint16NDArray(o,n);case"int16":return new _.Int16NDArray(o,n);case"uint32":return new _.Uint32NDArray(o,n);case"int32":return new _.Int32NDArray(o,n);case"float32":return new _.Float32NDArray(o,n);case"float64":return new _.Float64NDArray(o,n)}})();if(f!==t.BYTE_ORDER)switch(l.BYTES_PER_ELEMENT){case 2:i(l);break;case 4:u(l);break;case 8:c(l)}return l},t.encode_NDArray=function(e,r){const n={order:t.BYTE_ORDER,dtype:e.dtype,shape:e.shape};if(null!=r){const t=""+r.size;return r.set(t,e.buffer),Object.assign({__buffer__:t},n)}{const r=o(e.buffer);return Object.assign({__ndarray__:r},n)}}},n”, ” function _(e,n,i){Object.defineProperty(i,"__esModule",{value:!0}),i.is_ie=(()=>{const e="undefined"!=typeof navigator?navigator.userAgent:"";return e.indexOf("MSIE")>=0||e.indexOf("Trident")>0||e.indexOf("Edge")>0})(),i.is_mobile="undefined"!=typeof window&&("ontouchstart"in window||navigator.maxTouchPoints>0),i.is_little_endian=(()=>{const e=new ArrayBuffer(4),n=new Uint8Array(e);new Uint32Array(e)[1]=168496141;let i=!0;return 10==n[4]&&11==n[5]&&12==n[6]&&13==n[7]&&(i=!1),i})()},n”, ” function _(t,r,n){Object.defineProperty(n,"__esModule",{value:!0});const e=t(8),i=t(13);n.pretty=Symbol("pretty");class o{constructor(t){this.precision=null==t?void 0:t.precision}to_string(t){return function(t){return n.pretty in Object(t)}(t)?t[n.pretty](this):e.isBoolean(t)?this.boolean(t):e.isNumber(t)?this.number(t):e.isString(t)?this.string(t):e.isArray(t)?this.array(t):e.isIterable(t)?this.iterable(t):e.isPlainObject(t)?this.object(t):""+t}token(t){return t}boolean(t){return""+t}number(t){return null!=this.precision?t.toFixed(this.precision):""+t}string(t){return`"${t.replace(/’/g,"\\’")}"}array(t){const r=this.token,n=[];for(const r of t)n.push(this.to_string(r));return`${r("[")}${n.join(r(",")+" ")}${r("]")}}iterable(t){var r;const n=this.token,e=null!==(r=Object(t)[Symbol.toStringTag])&&void 0!==r?r:"Object",i=this.array(t);return`${e}${n("(")}${i}${n(")")}`}object(t){const r=this.token,n=[];for(const[e,o]of i.entries(t))n.push(${e}${r(":")} ${this.to_string(o)});return`${r("{")}${n.join(r(",")+" ")}${r("}")}`}}n.Printer=o,o.__name__="Printer",n.to_string=function(t,r){return new o(r).to_string(t)}},n”, ” function _(t,_,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(1);e.__exportStar(t(35),r),e.__exportStar(t(176),r),e.__exportStar(t(203),r),e.__exportStar(t(207),r),e.__exportStar(t(218),r),e.__exportStar(t(222),r),e.__exportStar(t(228),r),e.__exportStar(t(232),r),e.__exportStar(t(265),r),e.__exportStar(t(268),r),e.__exportStar(t(270),r),e.__exportStar(t(132),r),e.__exportStar(t(148),r),e.__exportStar(t(287),r),e.__exportStar(t(291),r),e.__exportStar(t(320),r),e.__exportStar(t(321),r),e.__exportStar(t(322),r),e.__exportStar(t(323),r),e.__exportStar(t(324),r),e.__exportStar(t(329),r),e.__exportStar(t(331),r),e.__exportStar(t(342),r),e.__exportStar(t(346),r)},n”, ” function _(a,e,o){Object.defineProperty(o,"__esModule",{value:!0});var r=a(36);o.Annotation=r.Annotation;var n=a(83);o.Arrow=n.Arrow;var t=a(84);o.ArrowHead=t.ArrowHead;var v=a(84);o.OpenHead=v.OpenHead;var l=a(84);o.NormalHead=l.NormalHead;var d=a(84);o.TeeHead=d.TeeHead;var i=a(84);o.VeeHead=i.VeeHead;var A=a(122);o.Band=A.Band;var H=a(124);o.BoxAnnotation=H.BoxAnnotation;var T=a(125);o.ColorBar=T.ColorBar;var p=a(160);o.Label=p.Label;var L=a(162);o.LabelSet=L.LabelSet;var b=a(163);o.Legend=b.Legend;var B=a(164);o.LegendItem=B.LegendItem;var S=a(166);o.PolyAnnotation=S.PolyAnnotation;var P=a(167);o.Slope=P.Slope;var g=a(168);o.Span=g.Span;var m=a(161);o.TextAnnotation=m.TextAnnotation;var w=a(169);o.Title=w.Title;var x=a(170);o.ToolbarPanel=x.ToolbarPanel;var s=a(171);o.Tooltip=s.Tooltip;var u=a(175);o.Whisker=u.Whisker},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const s=t(1).__importStar(t(37)),i=t(13),o=t(70);class _ extends o.RendererView{get panel(){return this.layout}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.visible,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible){const{width:t,height:e}=this._get_size();return{width:Math.round(t),height:Math.round(e)}}return{width:0,height:0}}_get_size(){throw new Error("not implemented")}set_data(t){const e=this.model.materialize_dataspecs(t);if(i.extend(this,e),this.plot_model.use_map){const t=this;null!=t._x&&([t._x,t._y]=s.project_xy(t._x,t._y)),null!=t._xs&&([t._xs,t._ys]=s.project_xsys(t._xs,t._ys))}}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}n.AnnotationView=_,_.__name__="AnnotationView";class a extends o.Renderer{constructor(t){super(t)}static init_Annotation(){this.override({level:"annotation"})}}n.Annotation=a,a.__name__="Annotation",a.init_Annotation()},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=n(1),o=r.__importDefault(n(38)),l=r.__importDefault(n(39)),c=n(24),i=new l.default("GOOGLE"),u=new l.default("WGS84"),a=o.default(u,i);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?a.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?a.inverse([n,t]):[NaN,NaN]};const s={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},f={lon:[-180,180],lat:[-85.06,85.06]},{min:_,max:p}=Math;function m(n,t){const r=_(n.length,t.length),o=new c.NumberArray(r),l=new c.NumberArray(r);return e.inplace.project_xy(n,t,o,l),[o,l]}e.clip_mercator=function(n,t,e){const[r,o]=s[e];return[p(n,r),_(t,o)]},e.in_bounds=function(n,t){const[e,r]=f[t];return e<n&&n<r},function(n){function t(n,t,r,o){const l=_(n.length,t.length);r=null!=r?r:n,o=null!=o?o:t;for(let c=0;c<l;c++){const l=n[c],i=t[c],[u,a]=e.wgs84_mercator.compute(l,i);r[c]=u,o[c]=a}}n.project_xy=t,n.project_xsys=function(n,e,r,o){const l=_(n.length,e.length);r=null!=r?r:n,o=null!=o?o:e;for(let c=0;c<l;c++)t(n[c],e[c],r[c],o[c])}}(e.inplace||(e.inplace={})),e.project_xy=m,e.project_xsys=function(n,t){const e=_(n.length,t.length),r=new Array(e),o=new Array(e);for(let l=0;l<e;l++){const[e,c]=m(n[l],t[l]);r[l]=e,o[l]=c}return[r,o]}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(1),o=r.__importDefault(e(39)),a=r.__importDefault(e(64));var i=o.default("WGS84");function c(e,n,t){var r,o,i;return Array.isArray(t)?(r=a.default(e,n,t)||{x:NaN,y:NaN},t.length>2?void 0!==e.name&&"geocent"===e.name||void 0!==n.name&&"geocent"===n.name?"number"==typeof r.z?[r.x,r.y,r.z].concat(t.splice(3)):[r.x,r.y,t[2]].concat(t.splice(3)):[r.x,r.y].concat(t.splice(2)):[r.x,r.y]):(o=a.default(e,n,t),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&"geocent"===e.name||void 0!==n.name&&"geocent"===n.name){if("x"===r||"y"===r||"z"===r)return}else if("x"===r||"y"===r)return;o[r]=t[r]})),o)}function u(e){return e instanceof o.default?e:e.oProj?e.oProj:o.default(e)}t.default=function(e,n,t){e=u(e);var r,o=!1;return void 0===n?(n=e,e=i,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=i,o=!0),n=u(n),t?c(e,n,t):(r={forward:function(t){return c(e,n,t)},inverse:function(t){return c(n,e,t)}},o&&(r.oProj=n),r)}},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),i=s.__importDefault(e(40)),u=s.__importDefault(e(51)),l=s.__importDefault(e(52)),o=e(60),r=s.__importDefault(e(62)),f=s.__importDefault(e(63)),d=s.__importDefault(e(47));function p(e,t){if(!(this instanceof p))return new p(e);t=t||function(e){if(e)throw e};var a=i.default(e);if("object"==typeof a){var s=p.projections.get(a.projName);if(s){if(a.datumCode&&"none"!==a.datumCode){var l=d.default(r.default,a.datumCode);l&&(a.datum_params=l.towgs84?l.towgs84.split(","):null,a.ellps=l.ellipse,a.datumName=l.datumName?l.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||"enu",a.ellps=a.ellps||"wgs84";var m=o.sphere(a.a,a.b,a.rf,a.ellps,a.sphere),n=o.eccentricity(m.a,m.b,m.rf,a.R_A),h=a.datum||f.default(a.datumCode,a.datum_params,m.a,m.b,n.es,n.ep2);u.default(this,a),u.default(this,s),this.a=m.a,this.b=m.b,this.rf=m.rf,this.sphere=m.sphere,this.es=n.es,this.e=n.e,this.ep2=n.ep2,this.datum=h,this.init(),t(null,this)}else t(e)}else t(e)}p.projections=l.default,p.projections.start(),a.default=p},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const u=t(1),n=u.__importDefault(t(41)),f=u.__importDefault(t(48)),i=u.__importDefault(t(43)),a=u.__importDefault(t(47));var o=["PROJECTEDCRS","PROJCRS","GEOGCS","GEOCCS","PROJCS","LOCAL_CS","GEODCRS","GEODETICCRS","GEODETICDATUM","ENGCRS","ENGINEERINGCRS"];var l=["3857","900913","3785","102113"];r.default=function(t){if(!function(t){return"string"==typeof t}(t))return t;if(function(t){return t in n.default}(t))return n.default[t];if(function(t){return o.some((function(e){return t.indexOf(e)>-1}))}(t)){var e=f.default(t);if(function(t){var e=a.default(t,"authority");if(e){var r=a.default(e,"epsg");return r&&l.indexOf(r)>-1}}(e))return n.default["EPSG:3857"];var r=function(t){var e=a.default(t,"extension");if(e)return a.default(e,"proj4")}(e);return r?i.default(r):e}return function(t){return"+"===t[0]}(t)?i.default(t):void 0}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=t(1),n=i.__importDefault(t(42)),f=i.__importDefault(t(43)),a=i.__importDefault(t(48));function l(t){var e=this;if(2===arguments.length){var r=arguments[1];"string"==typeof r?"+"===r.charAt(0)?l[t]=f.default(arguments[1]):l[t]=a.default(arguments[1]):l[t]=r}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?l.apply(e,t):l(t)}));if("string"==typeof t){if(t in l)return l[t]}else"EPSG"in t?l["EPSG:"+t.EPSG]=t:"ESRI"in t?l["ESRI:"+t.ESRI]=t:"IAU2000"in t?l["IAU2000:"+t.IAU2000]=t:console.log(t);return}}n.default(l),r.default=l},n”, ” function _(e,t,l){Object.defineProperty(l,"__esModule",{value:!0}),l.default=function(e){e("EPSG:4326","+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees"),e("EPSG:4269","+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees"),e("EPSG:3857","+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs"),e.WGS84=e["EPSG:4326"],e["EPSG:3785"]=e["EPSG:3857"],e.GOOGLE=e["EPSG:3857"],e["EPSG:900913"]=e["EPSG:3857"],e["EPSG:102113"]=e["EPSG:3857"]}},n”, ” function _(t,n,o){Object.defineProperty(o,"__esModule",{value:!0});const e=t(1),a=t(44),u=e.__importDefault(t(45)),r=e.__importDefault(t(46)),i=e.__importDefault(t(47));o.default=function(t){var n,o,e,f={},l=t.split("+").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split("=");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:"projName",datum:"datumCode",rf:function(t){f.rf=parseFloat(t)},lat_0:function(t){f.lat0=t*a.D2R},lat_1:function(t){f.lat1=t*a.D2R},lat_2:function(t){f.lat2=t*a.D2R},lat_ts:function(t){f.lat_ts=t*a.D2R},lon_0:function(t){f.long0=t*a.D2R},lon_1:function(t){f.long1=t*a.D2R},lon_2:function(t){f.long2=t*a.D2R},alpha:function(t){f.alpha=parseFloat(t)*a.D2R},lonc:function(t){f.longc=t*a.D2R},x_0:function(t){f.x0=parseFloat(t)},y_0:function(t){f.y0=parseFloat(t)},k_0:function(t){f.k0=parseFloat(t)},k:function(t){f.k0=parseFloat(t)},a:function(t){f.a=parseFloat(t)},b:function(t){f.b=parseFloat(t)},r_a:function(){f.R_A=!0},zone:function(t){f.zone=parseInt(t,10)},south:function(){f.utmSouth=!0},towgs84:function(t){f.datum_params=t.split(",").map((function(t){return parseFloat(t)}))},to_meter:function(t){f.to_meter=parseFloat(t)},units:function(t){f.units=t;var n=i.default(r.default,t);n&&(f.to_meter=n.to_meter)},from_greenwich:function(t){f.from_greenwich=t*a.D2R},pm:function(t){var n=i.default(u.default,t);f.from_greenwich=(n||parseFloat(t))*a.D2R},nadgrids:function(t){"@null"===t?f.datumCode="none":f.nadgrids=t},axis:function(t){3===t.length&&-1!=="ewnsud".indexOf(t.substr(0,1))&&-1!=="ewnsud".indexOf(t.substr(1,1))&&-1!=="ewnsud".indexOf(t.substr(2,1))&&(f.axis=t)}};for(n in l)o=l[n],n in c?"function"==typeof(e=c[n])?e(o):f[e]=o:f[n]=o;return"string"==typeof f.datumCode&&"WGS84"!==f.datumCode&&(f.datumCode=f.datumCode.toLowerCase()),f}},n”, ” function _(P,_,e){Object.defineProperty(e,"__esModule",{value:!0}),e.PJD_3PARAM=1,e.PJD_7PARAM=2,e.PJD_WGS84=4,e.PJD_NODATUM=5,e.SEC_TO_RAD=484813681109536e-20,e.HALF_PI=Math.PI/2,e.SIXTH=.16666666666666666,e.RA4=.04722222222222222,e.RA6=.022156084656084655,e.EPSLN=1e-10,e.D2R=.017453292519943295,e.R2D=57.29577951308232,e.FORTPI=Math.PI/4,e.TWO_PI=2*Math.PI,e.SPI=3.14159265359},n”, ” function _(e,o,r){Object.defineProperty(r,"__esModule",{value:!0});var a={};r.default=a,a.greenwich=0,a.lisbon=-9.131906111111,a.paris=2.337229166667,a.bogota=-74.080916666667,a.madrid=-3.687938888889,a.rome=12.452333333333,a.bern=7.439583333333,a.jakarta=106.807719444444,a.ferro=-17.666666666667,a.brussels=4.367975,a.stockholm=18.058277777778,a.athens=23.7163375,a.oslo=10.722916666667},n”, ” function _(e,t,f){Object.defineProperty(f,"__esModule",{value:!0}),f.default={ft:{to_meter:.3048},"us-ft":{to_meter:1200/3937}}},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});var o=/[\s_\-\/\(\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,""),f=-1;++f<a.length;)if((t=a[f]).toLowerCase().replace(o,"")===n)return e[t]}},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const o=e(1);const d=o.__importDefault(e(49)),r=e(50);function n(e){return.017453292519943295*e}a.default=function(e){var t=d.default(e),a=t.shift(),o=t.shift();t.unshift(["name",o]),t.unshift(["type",a]);var l={};return r.sExpr(t,l),function(e){if("GEOGCS"===e.type?e.projName="longlat":"LOCAL_CS"===e.type?(e.projName="identity",e.local=!0):"object"==typeof e.PROJECTION?e.projName=Object.keys(e.PROJECTION)[0]:e.projName=e.PROJECTION,e.AXIS){for(var t="",a=0,o=e.AXIS.length;a<o;++a){var d=e.AXIS[a][0].toLowerCase();-1!==d.indexOf("north")?t+="n":-1!==d.indexOf("south")?t+="s":-1!==d.indexOf("east")?t+="e":-1!==d.indexOf("west")&&(t+="w")}2===t.length&&(t+="u"),3===t.length&&(e.axis=t)}e.UNIT&&(e.units=e.UNIT.name.toLowerCase(),"metre"===e.units&&(e.units="meter"),e.UNIT.convert&&("GEOGCS"===e.type?e.DATUM&&e.DATUM.SPHEROID&&(e.to_meter=e.UNIT.convert*e.DATUM.SPHEROID.a):e.to_meter=e.UNIT.convert));var r=e.GEOGCS;function l(t){return t*(e.to_meter||1)}"GEOGCS"===e.type&&(r=e),r&&(r.DATUM?e.datumCode=r.DATUM.name.toLowerCase():e.datumCode=r.name.toLowerCase(),"d_"===e.datumCode.slice(0,2)&&(e.datumCode=e.datumCode.slice(2)),"new_zealand_geodetic_datum_1949"!==e.datumCode&&"new_zealand_1949"!==e.datumCode||(e.datumCode="nzgd49"),"wgs_1984"!==e.datumCode&&"world_geodetic_system_1984"!==e.datumCode||("Mercator_Auxiliary_Sphere"===e.PROJECTION&&(e.sphere=!0),e.datumCode="wgs84"),"_ferro"===e.datumCode.slice(-6)&&(e.datumCode=e.datumCode.slice(0,-6)),"_jakarta"===e.datumCode.slice(-8)&&(e.datumCode=e.datumCode.slice(0,-8)),~e.datumCode.indexOf("belge")&&(e.datumCode="rnb72"),r.DATUM&&r.DATUM.SPHEROID&&(e.ellps=r.DATUM.SPHEROID.name.replace("_19","").replace(/[Cc]larke\_18/,"clrk"),"international"===e.ellps.toLowerCase().slice(0,13)&&(e.ellps="intl"),e.a=r.DATUM.SPHEROID.a,e.rf=parseFloat(r.DATUM.SPHEROID.rf,10)),r.DATUM&&r.DATUM.TOWGS84&&(e.datum_params=r.DATUM.TOWGS84),~e.datumCode.indexOf("osgb_1936")&&(e.datumCode="osgb36"),~e.datumCode.indexOf("osni_1952")&&(e.datumCode="osni52"),(~e.datumCode.indexOf("tm65")||~e.datumCode.indexOf("geodetic_datum_of_1965"))&&(e.datumCode="ire65"),"ch1903+"===e.datumCode&&(e.datumCode="ch1903"),~e.datumCode.indexOf("israel")&&(e.datumCode="isr93")),e.b&&!isFinite(e.b)&&(e.b=e.a),[["standard_parallel_1","Standard_Parallel_1"],["standard_parallel_2","Standard_Parallel_2"],["false_easting","False_Easting"],["false_northing","False_Northing"],["central_meridian","Central_Meridian"],["latitude_of_origin","Latitude_Of_Origin"],["latitude_of_origin","Central_Parallel"],["scale_factor","Scale_Factor"],["k0","scale_factor"],["latitude_of_center","Latitude_Of_Center"],["latitude_of_center","Latitude_of_center"],["lat0","latitude_of_center",n],["longitude_of_center","Longitude_Of_Center"],["longitude_of_center","Longitude_of_center"],["longc","longitude_of_center",n],["x0","false_easting",l],["y0","false_northing",l],["long0","central_meridian",n],["lat0","latitude_of_origin",n],["lat0","standard_parallel_1",n],["lat1","standard_parallel_1",n],["lat2","standard_parallel_2",n],["azimuth","Azimuth"],["alpha","azimuth",n],["srsCode","name"]].forEach((function(t){return a=e,d=(o=t)[0],r=o[1],void(!(d in a)&&r in a&&(a[d]=a[r],3===o.length&&(a[d]=o[2](a[d]))));var a,o,d,r})),e.long0||!e.longc||"Albers_Conic_Equal_Area"!==e.projName&&"Lambert_Azimuthal_Equal_Area"!==e.projName||(e.long0=e.longc),e.lat_ts||!e.lat1||"Stereographic_South_Pole"!==e.projName&&"Polar Stereographic (variant B)"!==e.projName||(e.lat0=n(e.lat1>0?90:-90),e.lat_ts=e.lat1)}(l),l}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(t){return new a(t).output()};var i=/\s/,s=/[A-Za-z]/,h=/[A-Za-z84]/,o=/[,\]]/,n=/[\d\.E\-\+]/;function a(t){if("string"!=typeof t)throw new Error("not a string");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}a.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;i.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},a.prototype.afterquote=function(t){if(’"’===t)return this.word+=’"’,void(this.state=4);if(o.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error("havn’t handled \""+t+’" in afterquote yet, index ‘+this.place)},a.prototype.afterItem=function(t){return","===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):"]"===t?(this.level–,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},a.prototype.number=function(t){if(!n.test(t)){if(o.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error("havn’t handled \""+t+’" in number yet, index ‘+this.place)}this.word+=t},a.prototype.quoted=function(t){’"’!==t?this.word+=t:this.state=5},a.prototype.keyword=function(t){if(h.test(t))this.word+=t;else{if("["===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!o.test(t))throw new Error("havn’t handled \""+t+’" in keyword yet, index ‘+this.place);this.afterItem(t)}},a.prototype.neutral=function(t){if(s.test(t))return this.word=t,void(this.state=2);if(’"’===t)return this.word="",void(this.state=4);if(n.test(t))return this.word=t,void(this.state=3);if(!o.test(t))throw new Error("havn’t handled \""+t+’" in neutral yet, index ‘+this.place);this.afterItem(t)},a.prototype.output=function(){for(;this.place<this.text.length;)this.readCharicter();if(-1===this.state)return this.root;throw new Error(‘unable to parse string "’+this.text+’". State is ‘+this.state)}},n”, ” function _(e,r,a){function s(e,r,a){Array.isArray(r)&&(a.unshift(r),r=null);var s=r?{}:e,n=a.reduce((function(e,r){return c(r,e),e}),s);r&&(e[r]=n)}function c(e,r){if(Array.isArray(e)){var a=e.shift();if("PARAMETER"===a&&(a=e.shift()),1===e.length)return Array.isArray(e[0])?(r[a]={},void c(e[0],r[a])):void(r[a]=e[0]);if(e.length)if("TOWGS84"!==a){if("AXIS"===a)return a in r||(r[a]=[]),void r[a].push(e);var n;switch(Array.isArray(a)||(r[a]={}),a){case"UNIT":case"PRIMEM":case"VERT_DATUM":return r[a]={name:e[0].toLowerCase(),convert:e[1]},void(3===e.length&&c(e[2],r[a]));case"SPHEROID":case"ELLIPSOID":return r[a]={name:e[0],a:e[1],rf:e[2]},void(4===e.length&&c(e[3],r[a]));case"PROJECTEDCRS":case"PROJCRS":case"GEOGCS":case"GEOCCS":case"PROJCS":case"LOCAL_CS":case"GEODCRS":case"GEODETICCRS":case"GEODETICDATUM":case"EDATUM":case"ENGINEERINGDATUM":case"VERT_CS":case"VERTCRS":case"VERTICALCRS":case"COMPD_CS":case"COMPOUNDCRS":case"ENGINEERINGCRS":case"ENGCRS":case"FITTED_CS":case"LOCAL_DATUM":case"DATUM":return e[0]=["name",e[0]],void s(r,a,e);default:for(n=-1;++n<e.length;)if(!Array.isArray(e[n]))return c(e,r[a]);return s(r,a,e)}}else r[a]=e;else r[a]=!0}else r[e]=!0}Object.defineProperty(a,"__esModule",{value:!0}),a.sExpr=c},n”, ” function _(e,n,r){Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,n){var r,t;if(e=e||{},!n)return e;for(t in n)void 0!==(r=n[t])&&(e[t]=r);return e}},n”, ” function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const a=t(1),n=a.__importDefault(t(53)),r=a.__importDefault(t(59));var u=[n.default,r.default],f={},i=[];function d(t,e){var o=i.length;return t.names?(i[o]=t,t.names.forEach((function(t){f[t.toLowerCase()]=o})),this):(console.log(e),!0)}function c(t){if(!t)return!1;var e=t.toLowerCase();return void 0!==f[e]&&i[f[e]]?i[f[e]]:void 0}function l(){u.forEach(d)}o.add=d,o.get=c,o.start=l,o.default={start:l,add:d,get:c}},n”, ” function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const h=t(1),a=h.__importDefault(t(54)),e=h.__importDefault(t(55)),r=h.__importDefault(t(57)),n=h.__importDefault(t(58)),l=t(44);function u(){var t=this.b/this.a;this.es=1-t*t,"x0"in this||(this.x0=0),"y0"in this||(this.y0=0),this.e=Math.sqrt(this.es),this.lat_ts?this.sphere?this.k0=Math.cos(this.lat_ts):this.k0=a.default(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts)):this.k0||(this.k?this.k0=this.k:this.k0=1)}function o(t){var i,s,h=t.x,a=t.y;if(a*l.R2D>90&&a*l.R2D<-90&&h*l.R2D>180&&h*l.R2D<-180)return null;if(Math.abs(Math.abs(a)-l.HALF_PI)<=l.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(l.FORTPI+.5*a));else{var n=Math.sin(a),u=r.default(this.e,a,n);i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0-this.a*this.k0*Math.log(u)}return t.x=i,t.y=s,t}function f(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=l.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var r=Math.exp(-a/(this.a*this.k0));if(-9999===(s=n.default(this.e,r)))return null}return i=e.default(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=u,s.forward=o,s.inverse=f,s.names=["Mercator","Popular Visualisation Pseudo Mercator","Mercator_1SP","Mercator_Auxiliary_Sphere","merc"],s.default={init:u,forward:o,inverse:f,names:s.names}},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.default=function(e,t,n){var r=e*t;return n/Math.sqrt(1-r*r)}},n”, ” function _(e,t,u){Object.defineProperty(u,"__esModule",{value:!0});const n=e(1),a=e(44),f=n.__importDefault(e(56));u.default=function(e){return Math.abs(e)<=a.SPI?e:e-f.default(e)*a.TWO_PI}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return e<0?-1:1}},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const a=t(44);n.default=function(t,e,n){var o=t*n,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(a.HALF_PI-e))/o}},n”, ” function _(t,a,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(44);e.default=function(t,a){for(var e,r,o=.5*t,u=n.HALF_PI-2*Math.atan(a),f=0;f<=15;f++)if(e=t*Math.sin(u),u+=r=n.HALF_PI-2*Math.atan(a*Math.pow((1-e)/(1+e),o))-u,Math.abs(r)<=1e-10)return u;return-9999}},n”, ” function _(e,n,i){function t(){}function r(e){return e}Object.defineProperty(i,"__esModule",{value:!0}),i.init=t,i.forward=r,i.inverse=r,i.names=["longlat","identity"],i.default={init:t,forward:r,inverse:r,names:i.names}},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=e(1),n=e(44),f=a.__importStar(e(61)),u=a.__importDefault(e(47));r.eccentricity=function(e,t,r,a){var f=e*e,u=t*t,i=(f-u)/f,c=0;return a?(f=(e*=1-i*(n.SIXTH+i*(n.RA4+i*n.RA6)))*e,i=0):c=Math.sqrt(i),{es:i,e:c,ep2:(f-u)/u}},r.sphere=function(e,t,r,a,i){if(!e){var c=u.default(f.default,a);c||(c=f.WGS84),e=c.a,t=c.b,r=c.rf}return r&&!t&&(t=(1-1/r)*e),(0===r||Math.abs(e-t)<n.EPSLN)&&(i=!0,t=e),{a:e,b:t,rf:r,sphere:i}}},n”, ” function _(e,a,l){Object.defineProperty(l,"__esModule",{value:!0});var s={};l.default=s,s.MERIT={a:6378137,rf:298.257,ellipseName:"MERIT 1983"},s.SGS85={a:6378136,rf:298.257,ellipseName:"Soviet Geodetic System 85"},s.GRS80={a:6378137,rf:298.257222101,ellipseName:"GRS 1980(IUGG, 1980)"},s.IAU76={a:6378140,rf:298.257,ellipseName:"IAU 1976"},s.airy={a:6377563.396,b:6356256.91,ellipseName:"Airy 1830"},s.APL4={a:6378137,rf:298.25,ellipseName:"Appl. Physics. 1965"},s.NWL9D={a:6378145,rf:298.25,ellipseName:"Naval Weapons Lab., 1965"},s.mod_airy={a:6377340.189,b:6356034.446,ellipseName:"Modified Airy"},s.andrae={a:6377104.43,rf:300,ellipseName:"Andrae 1876 (Den., Iclnd.)"},s.aust_SA={a:6378160,rf:298.25,ellipseName:"Australian Natl & S. Amer. 1969"},s.GRS67={a:6378160,rf:298.247167427,ellipseName:"GRS 67(IUGG 1967)"},s.bessel={a:6377397.155,rf:299.1528128,ellipseName:"Bessel 1841"},s.bess_nam={a:6377483.865,rf:299.1528128,ellipseName:"Bessel 1841 (Namibia)"},s.clrk66={a:6378206.4,b:6356583.8,ellipseName:"Clarke 1866"},s.clrk80={a:6378249.145,rf:293.4663,ellipseName:"Clarke 1880 mod."},s.clrk58={a:6378293.645208759,rf:294.2606763692654,ellipseName:"Clarke 1858"},s.CPM={a:6375738.7,rf:334.29,ellipseName:"Comm. des Poids et Mesures 1799"},s.delmbr={a:6376428,rf:311.5,ellipseName:"Delambre 1810 (Belgium)"},s.engelis={a:6378136.05,rf:298.2566,ellipseName:"Engelis 1985"},s.evrst30={a:6377276.345,rf:300.8017,ellipseName:"Everest 1830"},s.evrst48={a:6377304.063,rf:300.8017,ellipseName:"Everest 1948"},s.evrst56={a:6377301.243,rf:300.8017,ellipseName:"Everest 1956"},s.evrst69={a:6377295.664,rf:300.8017,ellipseName:"Everest 1969"},s.evrstSS={a:6377298.556,rf:300.8017,ellipseName:"Everest (Sabah & Sarawak)"},s.fschr60={a:6378166,rf:298.3,ellipseName:"Fischer (Mercury Datum) 1960"},s.fschr60m={a:6378155,rf:298.3,ellipseName:"Fischer 1960"},s.fschr68={a:6378150,rf:298.3,ellipseName:"Fischer 1968"},s.helmert={a:6378200,rf:298.3,ellipseName:"Helmert 1906"},s.hough={a:6378270,rf:297,ellipseName:"Hough"},s.intl={a:6378388,rf:297,ellipseName:"International 1909 (Hayford)"},s.kaula={a:6378163,rf:298.24,ellipseName:"Kaula 1961"},s.lerch={a:6378139,rf:298.257,ellipseName:"Lerch 1979"},s.mprts={a:6397300,rf:191,ellipseName:"Maupertius 1738"},s.new_intl={a:6378157.5,b:6356772.2,ellipseName:"New International 1967"},s.plessis={a:6376523,rf:6355863,ellipseName:"Plessis 1817 (France)"},s.krass={a:6378245,rf:298.3,ellipseName:"Krassovsky, 1942"},s.SEasia={a:6378155,b:6356773.3205,ellipseName:"Southeast Asia"},s.walbeck={a:6376896,b:6355834.8467,ellipseName:"Walbeck"},s.WGS60={a:6378165,rf:298.3,ellipseName:"WGS 60"},s.WGS66={a:6378145,rf:298.25,ellipseName:"WGS 66"},s.WGS7={a:6378135,rf:298.26,ellipseName:"WGS 72"},l.WGS84=s.WGS84={a:6378137,rf:298.257223563,ellipseName:"WGS 84"},s.sphere={a:6370997,b:6370997,ellipseName:"Normal Sphere (r=6370997)"}},n”, ” function _(e,a,s){Object.defineProperty(s,"__esModule",{value:!0});var t={};s.default=t,t.wgs84={towgs84:"0,0,0",ellipse:"WGS84",datumName:"WGS84"},t.ch1903={towgs84:"674.374,15.056,405.346",ellipse:"bessel",datumName:"swiss"},t.ggrs87={towgs84:"-199.87,74.79,246.62",ellipse:"GRS80",datumName:"Greek_Geodetic_Reference_System_1987"},t.nad83={towgs84:"0,0,0",ellipse:"GRS80",datumName:"North_American_Datum_1983"},t.nad27={nadgrids:"@conus,@alaska,@ntv2_0.gsb,@ntv1_can.dat",ellipse:"clrk66",datumName:"North_American_Datum_1927"},t.potsdam={towgs84:"606.0,23.0,413.0",ellipse:"bessel",datumName:"Potsdam Rauenberg 1950 DHDN"},t.carthage={towgs84:"-263.0,6.0,431.0",ellipse:"clark80",datumName:"Carthage 1934 Tunisia"},t.hermannskogel={towgs84:"653.0,-212.0,449.0",ellipse:"bessel",datumName:"Hermannskogel"},t.osni52={towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"airy",datumName:"Irish National"},t.ire65={towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"mod_airy",datumName:"Ireland 1965"},t.rassadiran={towgs84:"-133.63,-157.5,-158.62",ellipse:"intl",datumName:"Rassadiran"},t.nzgd49={towgs84:"59.47,-5.04,187.44,0.47,-0.1,1.024,-4.5993",ellipse:"intl",datumName:"New Zealand Geodetic Datum 1949"},t.osgb36={towgs84:"446.448,-125.157,542.060,0.1502,0.2470,0.8421,-20.4894",ellipse:"airy",datumName:"Airy 1830"},t.s_jtsk={towgs84:"589,76,480",ellipse:"bessel",datumName:"S-JTSK (Ferro)"},t.beduaram={towgs84:"-106,-87,188",ellipse:"clrk80",datumName:"Beduaram"},t.gunung_segara={towgs84:"-403,684,41",ellipse:"bessel",datumName:"Gunung Segara Jakarta"},t.rnb72={towgs84:"106.869,-52.2978,103.724,-0.33657,0.456955,-1.84218,1",ellipse:"intl",datumName:"Reseau National Belge 1972"}},n”, ” function _(a,m,_){Object.defineProperty(_,"__esModule",{value:!0});const t=a(44);_.default=function(a,m,_,u,d,p){var r={};return r.datum_type=void 0===a||"none"===a?t.PJD_NODATUM:t.PJD_WGS84,m&&(r.datum_params=m.map(parseFloat),0===r.datum_params[0]&&0===r.datum_params[1]&&0===r.datum_params[2]||(r.datum_type=t.PJD_3PARAM),r.datum_params.length>3&&(0===r.datum_params[3]&&0===r.datum_params[4]&&0===r.datum_params[5]&&0===r.datum_params[6]||(r.datum_type=t.PJD_7PARAM,r.datum_params[3]*=t.SEC_TO_RAD,r.datum_params[4]*=t.SEC_TO_RAD,r.datum_params[5]*=t.SEC_TO_RAD,r.datum_params[6]=r.datum_params[6]/1e6+1))),r.a=_,r.b=u,r.es=d,r.ep2=p,r}},n”, ” function _(t,e,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t(1),u=t(44),m=r.__importDefault(t(65)),_=r.__importDefault(t(67)),o=r.__importDefault(t(39)),d=r.__importDefault(t(68)),f=r.__importDefault(t(69));a.default=function t(e,a,r){var n;if(Array.isArray(r)&&(r=d.default(r)),f.default(r),e.datum&&a.datum&&function(t,e){return(t.datum.datum_type===u.PJD_3PARAM||t.datum.datum_type===u.PJD_7PARAM)&&"WGS84"!==e.datumCode||(e.datum.datum_type===u.PJD_3PARAM||e.datum.datum_type===u.PJD_7PARAM)&&"WGS84"!==t.datumCode}(e,a)&&(r=t(e,n=new o.default("WGS84"),r),e=n),"enu"!==e.axis&&(r=_.default(e,!1,r)),"longlat"===e.projName)r={x:r.x*u.D2R,y:r.y*u.D2R,z:r.z||0};else if(e.to_meter&&(r={x:r.x*e.to_meter,y:r.y*e.to_meter,z:r.z||0}),!(r=e.inverse(r)))return;return e.from_greenwich&&(r.x+=e.from_greenwich),r=m.default(e.datum,a.datum,r),a.from_greenwich&&(r={x:r.x-a.from_greenwich,y:r.y,z:r.z||0}),"longlat"===a.projName?r={x:r.x*u.R2D,y:r.y*u.R2D,z:r.z||0}:(r=a.forward(r),a.to_meter&&(r={x:r.x/a.to_meter,y:r.y/a.to_meter,z:r.z||0})),"enu"!==a.axis?_.default(a,!0,r):r}},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const u=e(44),o=e(66);function _(e){return e===u.PJD_3PARAM||e===u.PJD_7PARAM}a.default=function(e,t,a){return o.compareDatums(e,t)||e.datum_type===u.PJD_NODATUM||t.datum_type===u.PJD_NODATUM?a:e.es!==t.es||e.a!==t.a||_(e.datum_type)||_(t.datum_type)?(a=o.geodeticToGeocentric(a,e.es,e.a),_(e.datum_type)&&(a=o.geocentricToWgs84(a,e.datum_type,e.datum_params)),_(t.datum_type)&&(a=o.geocentricFromWgs84(a,t.datum_type,t.datum_params)),o.geocentricToGeodetic(a,t.es,t.a,t.b)):a}},n”, ” function _(a,t,r){Object.defineProperty(r,"__esModule",{value:!0});const e=a(44);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===e.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==e.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,u,s,_,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-e.HALF_PI&&d>-1.001*e.HALF_PI)d=-e.HALF_PI;else if(d>e.HALF_PI&&d<1.001*e.HALF_PI)d=e.HALF_PI;else{if(d<-e.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>e.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),u=Math.sin(d),_=Math.cos(d),s=u*u,{x:((m=r/Math.sqrt(1-t*s))+i)*_*Math.cos(n),y:(m+i)*_*Math.sin(n),z:(m*(1-t)+i)*u}},r.geocentricToGeodetic=function(a,t,r,m){var u,s,_,n,d,i,p,P,o,y,M,z,c,A,x,f=a.x,h=a.y,I=a.z?a.z:0;if(u=Math.sqrt(f*f+h*h),s=Math.sqrt(f*f+h*h+I*I),u/r<1e-12){if(A=0,s/r<1e-12)return e.HALF_PI,x=-m,{x:a.x,y:a.y,z:a.z}}else A=Math.atan2(h,f);_=I/s,P=(n=u/s)*(1-t)*(d=1/Math.sqrt(1-t*(2-t)*n*n)),o=_*d,c=0;do{c++,i=t*(p=r/Math.sqrt(1-t*o*o))/(p+(x=u*P+I*o-p*(1-t*o*o))),z=(M=_*(d=1/Math.sqrt(1-i*(2-i)*n*n)))*P-(y=n*(1-i)*d)*o,P=y,o=M}while(z*z>1e-24&&c<30);return{x:A,y:Math.atan(M/Math.abs(y)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-_*a.z)+u,z:i*(-n*a.x+_*a.y+a.z)+s}}},r.geocentricFromWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-u)/i,o=(a.z-s)/i;return{x:p+d*P-n*o,y:-d*p+P+_*o,z:n*p-_*P+o}}}},n”, ” function _(e,a,i){Object.defineProperty(i,"__esModule",{value:!0}),i.default=function(e,a,i){var s,n,r,c=i.x,d=i.y,u=i.z||0,f={};for(r=0;r<3;r++)if(!a||2!==r||void 0!==i.z)switch(0===r?(s=c,n=-1!=="ew".indexOf(e.axis[r])?"x":"y"):1===r?(s=d,n=-1!=="ns".indexOf(e.axis[r])?"y":"x"):(s=u,n="z"),e.axis[r]){case"e":case"w":case"n":case"s":f[n]=s;break;case"u":void 0!==i[n]&&(f.z=s);break;case"d":void 0!==i[n]&&(f.z=-s);break;default:return null}return f}},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var n={x:e[0],y:e[1]};return e.length>2&&(n.z=e[2]),e.length>3&&(n.m=e[3]),n}},n”, ” function _(e,i,n){function t(e){if("function"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError("coordinates must be finite numbers")}if("number"!=typeof e||e!=e||!isFinite(e))throw new TypeError("coordinates must be finite numbers")}Object.defineProperty(n,"__esModule",{value:!0}),n.default=function(e){t(e.x),t(e.y)}},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),r=e(71),s=n.__importStar(e(74)),_=n.__importStar(e(18)),a=e(81),o=e(82);class l extends r.View{get coordinates(){return this._coordinates}initialize(){super.initialize(),this.visuals=new s.Visuals(this.model),this.needs_webgl_blit=!1,this._initialize_coordinates()}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],()=>this._initialize_coordinates())}_initialize_coordinates(){const{x_range_name:e,y_range_name:i}=this.model,{frame:t}=this.plot_view,n=t.x_scales.get(e),r=t.y_scales.get(i);this._coordinates=new o.CoordinateTransform(n,r)}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.plot_view.canvas_view;return"overlay"==this.model.level?e:i}request_render(){this.plot_view.request_render()}notify_finished(){this.plot_view.notify_finished()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}}t.RendererView=l,l.__name__="RendererView";class d extends a.Model{constructor(e){super(e)}static init_Renderer(){this.define({level:[_.RenderLevel],visible:[_.Boolean,!0],x_range_name:[_.String,"default"],y_range_name:[_.String,"default"]})}}t.Renderer=d,d.__name__="Renderer",d.init_Renderer()},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),r=t(15),n=t(72),o=t(8),h=i.__importDefault(t(73));class a{constructor(t){if(this.removed=new r.Signal0(this,"removed"),this._ready=Promise.resolve(void 0),null==t.model)throw new Error("model of a view wasn’t configured");this.model=t.model,this._parent=t.parent}get ready(){return this._ready}connect(t,e){return t.connect((t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then(()=>i)},this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=n.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this._parent=void 0,this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get parent(){if(void 0!==this._parent)return this._parent;throw new Error("parent of a view wasn’t configured")}get is_root(){return null===this.parent}get root(){return this.is_root?this:this.parent.root}assert_root(){if(!this.is_root)throw new Error(this.toString()+" is not a root layout")}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){r.Signal.disconnectReceiver(this)}on_change(t,e){for(const s of o.isArray(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[h.default]}}s.View=a,a.__name__="View"},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(8),o=t(13),s=t=>(e={},…n)=>{const s=document.createElement(t);s.classList.add("bk");for(let[t,n]of o.entries(e))if(null!=n&&(!i.isBoolean(n)||n))if("class"===t&&(i.isString(n)&&(n=n.split(/\s+/)),i.isArray(n)))for(const t of n)null!=t&&s.classList.add(t);else if("style"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.style[t]=e;else if("data"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.dataset[t]=e;else s.setAttribute(t,n);function l(t){if(i.isString(t))s.appendChild(document.createTextNode(t));else if(t instanceof Node)s.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)s.appendChild(e);else if(null!=t&&!1!==t)throw new Error("expected a DOM element, string, false or null, got "+JSON.stringify(t))}for(const t of n)if(i.isArray(t))for(const e of t)l(e);else l(t);return s};function l(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function r(t,…e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function a(t,e){const n=Element.prototype;return(n.matches||n.webkitMatchesSelector||n.mozMatchesSelector||n.msMatchesSelector).call(t,e)}function c(t){return parseFloat(t)||0}function h(t){const e=getComputedStyle(t);return{border:{top:c(e.borderTopWidth),bottom:c(e.borderBottomWidth),left:c(e.borderLeftWidth),right:c(e.borderRightWidth)},margin:{top:c(e.marginTop),bottom:c(e.marginBottom),left:c(e.marginLeft),right:c(e.marginRight)},padding:{top:c(e.paddingTop),bottom:c(e.paddingBottom),left:c(e.paddingLeft),right:c(e.paddingRight)}}}function d(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,…n){return s(t)(e,…n)},n.div=s("div"),n.span=s("span"),n.canvas=s("canvas"),n.link=s("link"),n.style=s("style"),n.a=s("a"),n.p=s("p"),n.i=s("i"),n.pre=s("pre"),n.button=s("button"),n.label=s("label"),n.input=s("input"),n.select=s("select"),n.option=s("option"),n.optgroup=s("optgroup"),n.textarea=s("textarea"),n.nbsp=function(){return document.createTextNode(" ")},n.append=function(t,…e){for(const n of e)t.appendChild(n)},n.remove=l,n.removeElement=l,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=r,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=""},n.undisplay=function(t){t.style.display="none"},n.show=function(t){t.style.visibility=""},n.hide=function(t){t.style.visibility="hidden"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=a,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(a(n,e))return n;return null},n.extents=h,n.size=d,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=h(t),{width:s,height:l}=d(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=h(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=e.x+"px",i.top=e.y+"px",i.width=e.width+"px",i.height=e.height+"px",null==n)i.margin="";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class f{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e<this.classList.length;e++){const n=this.classList.item(e);null!=n&&t.push(n)}return t}has(t){return this.classList.contains(t)}add(…t){for(const e of t)this.classList.add(e);return this}remove(…t){for(const e of t)this.classList.remove(e);return this}clear(){for(const t of this.values)"bk"!=t&&this.classList.remove(t);return this}toggle(t,e){return(null!=e?e:!this.has(t))?this.add(t):this.remove(t),this}}var u;function p(t,e,n){const{width:i,height:o,position:s,display:l}=t.style;t.style.position="absolute",t.style.display="",t.style.width=null!=e.width&&e.width!=1/0?e.width+"px":"auto",t.style.height=null!=e.height&&e.height!=1/0?e.height+"px":"auto";try{return n()}finally{t.style.position=s,t.style.display=l,t.style.width=i,t.style.height=o}}n.ClassList=f,f.__name__="ClassList",n.classes=function(t){return new f(t)},n.toggle_attribute=function(t,e,n){null==n&&(n=!t.hasAttribute(e)),n?t.setAttribute(e,"true"):t.removeAttribute(e)},(u=n.Keys||(n.Keys={}))[u.Backspace=8]="Backspace",u[u.Tab=9]="Tab",u[u.Enter=13]="Enter",u[u.Esc=27]="Esc",u[u.PageUp=33]="PageUp",u[u.PageDown=34]="PageDown",u[u.Left=37]="Left",u[u.Up=38]="Up",u[u.Right=39]="Right",u[u.Down=40]="Down",u[u.Delete=46]="Delete",n.undisplayed=function(t,e){const{display:n}=t.style;t.style.display="none";try{return e()}finally{t.style.display=n}},n.unsized=function(t,e){return p(t,{},e)},n.sized=p;class g{constructor(t){this.root=t,this.known=new Set,this.style=n.style({type:"text/css"}),r(t,this.style)}append(t){this.known.has(t)||(this.style.appendChild(document.createTextNode(t)),this.known.add(t))}}n.StyleSheet=g,g.__name__="StyleSheet",n.stylesheet=new g(document.head)},n”, ” function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default="\n.bk-root {\n position: relative;\n width: auto;\n height: auto;\n z-index: 0;\n box-sizing: border-box;\n font-family: Helvetica, Arial, sans-serif;\n font-size: 13px;\n}\n.bk-root .bk,\n.bk-root .bk:before,\n.bk-root .bk:after {\n box-sizing: inherit;\n margin: 0;\n border: 0;\n padding: 0;\n background-image: none;\n font-family: inherit;\n font-size: 100%;\n line-height: 1.42857143;\n}\n.bk-root pre.bk {\n font-family: Courier, monospace;\n}\n"},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),l=s.__importStar(e(28)),c=s.__importStar(e(18)),i=e(22),o=e(8),r=e(75),h=e(77);function n(e,t){const[a,s,l,c]=o.isString(e)?i.color2rgba(e):i.decode_rgba(e);return`rgba(${255*a}, ${255*s}, ${255*l}, ${1==c?t:c})`}function _(e,t,a){e.moveTo(0,a+.5),e.lineTo(t,a+.5),e.stroke()}function u(e,t,a){e.moveTo(a+.5,0),e.lineTo(a+.5,t),e.stroke()}function v(e,t){e.moveTo(0,t),e.lineTo(t,0),e.stroke(),e.moveTo(0,0),e.lineTo(t,t),e.stroke()}a.hatch_aliases={" ":"blank",".":"dot",o:"ring","-":"horizontal_line","|\":\"vertical_line\",\"+\":\"cross\",'\"':\"horizontal_dash\",\":\":\"vertical_dash\",\"@\":\"spiral\",\"/\":\"right_diagonal_line\",\"\\\\\":\"left_diagonal_line\",x:\"diagonal_cross\",\",\":\"right_diagonal_dash\",\"`\":\"left_diagonal_dash\",v:\"horizontal_wave\",\">\":\"vertical_wave\",\"*\":\"criss_cross\"};class p{constructor(e,t=\"\"){this.obj=e,this.prefix=t,this.cache={};for(const a of this.attrs)this[a]=e.properties[t+a]}warm_cache(e,t){for(const a of this.attrs){const s=this.obj.properties[this.prefix+a];if(void 0!==s.spec.value)this.cache[a]=s.spec.value;else{if(!(null!=e&&s instanceof c.VectorSpec))throw new Error(\"source is required with a vectorized visual property\");{const l=s.array(e),c=null!=t?t.select(l):l;this.cache[a+\"_array\"]=c}}}}cache_select(e,t){const a=this.obj.properties[this.prefix+e];let s;return void 0!==a.spec.value?this.cache[e]=s=a.spec.value:this.cache[e]=s=this.cache[e+\"_array\"][t],s}get_array(e){return this.cache[e+\"_array\"]}set_vectorize(e,t){this._set_vectorize(e,t)}}a.ContextProperties=p,p.__name__=\"ContextProperties\";class f extends p{set_value(e){const t=this.line_color.value(),a=this.line_alpha.value();e.strokeStyle=n(t,a),e.lineWidth=this.line_width.value(),e.lineJoin=this.line_join.value(),e.lineCap=this.line_cap.value(),e.lineDash=this.line_dash.value(),e.lineDashOffset=this.line_dash_offset.value()}get doit(){return!(null===this.line_color.spec.value||0==this.line_alpha.spec.value||0==this.line_width.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"line_color\",t),s=this.cache_select(\"line_alpha\",t),l=this.cache_select(\"line_width\",t),c=this.cache_select(\"line_join\",t),i=this.cache_select(\"line_cap\",t),o=this.cache_select(\"line_dash\",t),r=this.cache_select(\"line_dash_offset\",t);e.strokeStyle=n(a,s),e.lineWidth=l,e.lineJoin=c,e.lineCap=i,e.lineDash=o,e.lineDashOffset=r}color_value(){return n(this.line_color.value(),this.line_alpha.value())}}a.Line=f,f.__name__=\"Line\",f.prototype.attrs=Object.keys(l.LineVector);class d extends p{set_value(e){const t=this.fill_color.value(),a=this.fill_alpha.value();e.fillStyle=n(t,a)}get doit(){return!(null===this.fill_color.spec.value||0==this.fill_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"fill_color\",t),s=this.cache_select(\"fill_alpha\",t);e.fillStyle=n(a,s)}color_value(){return n(this.fill_color.value(),this.fill_alpha.value())}}a.Fill=d,d.__name__=\"Fill\",d.prototype.attrs=Object.keys(l.FillVector);class k extends p{cache_select(e,t){let s;if(\"pattern\"==e){const e=this.cache_select(\"hatch_color\",t),s=this.cache_select(\"hatch_alpha\",t),l=this.cache_select(\"hatch_scale\",t),c=this.cache_select(\"hatch_pattern\",t),i=this.cache_select(\"hatch_weight\",t),{hatch_extra:o}=this.cache;if(null!=o&&o.hasOwnProperty(c)){const t=o[c];this.cache.pattern=t.get_pattern(e,s,l,i)}else this.cache.pattern=t=>{const o=t instanceof r.SVGRenderingContext2D?\"svg\":\"canvas\",p=new h.CanvasLayer(o,!0);return p.resize(l,l),p.prepare(),function(e,t,s,l,c,i){var o;const r=c,h=r/2,p=h/2;switch(e.strokeStyle=n(s,l),e.lineCap=\"square\",e.fillStyle=s,e.lineWidth=i,null!==(o=a.hatch_aliases[t])&&void 0!==o?o:t){case\"blank\":break;case\"dot\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":_(e,r,h);break;case\"vertical_line\":u(e,r,h);break;case\"cross\":_(e,r,h),u(e,r,h);break;case\"horizontal_dash\":_(e,h,h);break;case\"vertical_dash\":u(e,h,h);break;case\"spiral\":{const t=r/30;e.moveTo(h,h);for(let a=0;a<360;a++){const s=.1*a,l=h+t*s*Math.cos(s),c=h+t*s*Math.sin(s);e.lineTo(l,c)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-p,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(5*p+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(p+.5,r),e.lineTo(.5-p,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(5*p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":v(e,r);break;case\"right_diagonal_dash\":e.moveTo(p+.5,3*p+.5),e.lineTo(3*p+.5,p+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(p+.5,p+.5),e.lineTo(3*p+.5,3*p+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,p),e.lineTo(h,3*p),e.lineTo(r,p),e.stroke();break;case\"vertical_wave\":e.moveTo(p,0),e.lineTo(3*p,h),e.lineTo(p,r),e.stroke();break;case\"criss_cross\":v(e,r),_(e,r,h),u(e,r,h)}}(p.ctx,c,e,s,l,i),t.createPattern(p.canvas,\"repeat\")}}else s=super.cache_select(e,t);return s}_try_defer(e){const{hatch_pattern:t,hatch_extra:a}=this.cache;if(null!=a&&a.hasOwnProperty(t)){a[t].onload(e)}}get doit(){return!(null===this.hatch_color.spec.value||0==this.hatch_alpha.spec.value||" "==this.hatch_pattern.spec.value||"blank"==this.hatch_pattern.spec.value||null===this.hatch_pattern.spec.value)}doit2(e,t,a,s){if(!this.doit)return;this.cache_select("pattern",t);null==this.cache.pattern(e)?this._try_defer(s):(this.set_vectorize(e,t),a())}_set_vectorize(e,t){this.cache_select("pattern",t),e.fillStyle=this.cache.pattern(e)}color_value(){return n(this.hatch_color.value(),this.hatch_alpha.value())}}a.Hatch=k,k.__name__="Hatch",k.prototype.attrs=Object.keys(l.HatchVector);class x extends p{color_value(){return n(this.text_color.value(),this.text_alpha.value())}font_value(){const e=this.text_font.value(),t=this.text_font_size.value();return`${this.text_font_style.value()} ${t} ${e}`}v_font_value(e){super.cache_select("text_font_style",e),super.cache_select("text_font_size",e),super.cache_select("text_font",e);const{text_font_style:t,text_font_size:a,text_font:s}=this.cache;return`${t} ${a} ${s}`}cache_select(e,t){let a;return"font"==e?this.cache.font=a=this.v_font_value(t):a=super.cache_select(e,t),a}set_value(e){const t=this.text_color.value(),a=this.text_alpha.value();e.fillStyle=n(t,a),e.font=this.font_value(),e.textAlign=this.text_align.value(),e.textBaseline=this.text_baseline.value()}get doit(){return!(null===this.text_color.spec.value||0==this.text_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select("text_color",t),s=this.cache_select("text_alpha",t),l=this.cache_select("font",t),c=this.cache_select("text_align",t),i=this.cache_select("text_baseline",t);e.fillStyle=n(a,s),e.font=l,e.textAlign=c,e.textBaseline=i}}a.Text=x,x.__name__="Text",x.prototype.attrs=Object.keys(l.TextVector);class b{constructor(e){for(const t of e._mixins){const[a,s=""]=t.split(":");let l;switch(a){case"line":l=f;break;case"fill":l=d;break;case"hatch":l=k;break;case"text":l=x;break;default:throw new Error("unknown visual: "+a)}this[s+a]=new l(e,s)}}warm_cache(e,t){for(const a in this)if(this.hasOwnProperty(a)){const s=this[a];s instanceof p&&s.warm_cache(e,t)}}}a.Visuals=b,b.__name__="Visuals"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(76),n=t(8),r=t(72);function a(t){if(!t)throw new Error("cannot create a random attribute name for an undefined object");const e="ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";let i="";do{i="";for(let t=0;t<12;t++)i+=e[Math.floor(Math.random()*e.length)]}while(t[i]);return i}function o(t){const e={left:"start",right:"end",center:"middle",start:"start",end:"end"};return e[t]||e.start}function l(t){const e={alphabetic:"alphabetic",hanging:"hanging",top:"text-before-edge",bottom:"text-after-edge",middle:"central"};return e[t]||e.alphabetic}const h=function(t,e){const i=new Map,s=t.split(",");e=e||10;for(let t=0;t<s.length;t+=2){const n="&"+s[t+1]+";",r=parseInt(s[t],e);i.set(n,"&#"+r+";")}return i.set("\\xa0"," "),i}("50,nbsp,51,iexcl,52,cent,53,pound,54,curren,55,yen,56,brvbar,57,sect,58,uml,59,copy,5a,ordf,5b,laquo,5c,not,5d,shy,5e,reg,5f,macr,5g,deg,5h,plusmn,5i,sup2,5j,sup3,5k,acute,5l,micro,5m,para,5n,middot,5o,cedil,5p,sup1,5q,ordm,5r,raquo,5s,frac14,5t,frac12,5u,frac34,5v,iquest,60,Agrave,61,Aacute,62,Acirc,63,Atilde,64,Auml,65,Aring,66,AElig,67,Ccedil,68,Egrave,69,Eacute,6a,Ecirc,6b,Euml,6c,Igrave,6d,Iacute,6e,Icirc,6f,Iuml,6g,ETH,6h,Ntilde,6i,Ograve,6j,Oacute,6k,Ocirc,6l,Otilde,6m,Ouml,6n,times,6o,Oslash,6p,Ugrave,6q,Uacute,6r,Ucirc,6s,Uuml,6t,Yacute,6u,THORN,6v,szlig,70,agrave,71,aacute,72,acirc,73,atilde,74,auml,75,aring,76,aelig,77,ccedil,78,egrave,79,eacute,7a,ecirc,7b,euml,7c,igrave,7d,iacute,7e,icirc,7f,iuml,7g,eth,7h,ntilde,7i,ograve,7j,oacute,7k,ocirc,7l,otilde,7m,ouml,7n,divide,7o,oslash,7p,ugrave,7q,uacute,7r,ucirc,7s,uuml,7t,yacute,7u,thorn,7v,yuml,ci,fnof,sh,Alpha,si,Beta,sj,Gamma,sk,Delta,sl,Epsilon,sm,Zeta,sn,Eta,so,Theta,sp,Iota,sq,Kappa,sr,Lambda,ss,Mu,st,Nu,su,Xi,sv,Omicron,t0,Pi,t1,Rho,t3,Sigma,t4,Tau,t5,Upsilon,t6,Phi,t7,Chi,t8,Psi,t9,Omega,th,alpha,ti,beta,tj,gamma,tk,delta,tl,epsilon,tm,zeta,tn,eta,to,theta,tp,iota,tq,kappa,tr,lambda,ts,mu,tt,nu,tu,xi,tv,omicron,u0,pi,u1,rho,u2,sigmaf,u3,sigma,u4,tau,u5,upsilon,u6,phi,u7,chi,u8,psi,u9,omega,uh,thetasym,ui,upsih,um,piv,812,bull,816,hellip,81i,prime,81j,Prime,81u,oline,824,frasl,88o,weierp,88h,image,88s,real,892,trade,89l,alefsym,8cg,larr,8ch,uarr,8ci,rarr,8cj,darr,8ck,harr,8dl,crarr,8eg,lArr,8eh,uArr,8ei,rArr,8ej,dArr,8ek,hArr,8g0,forall,8g2,part,8g3,exist,8g5,empty,8g7,nabla,8g8,isin,8g9,notin,8gb,ni,8gf,prod,8gh,sum,8gi,minus,8gn,lowast,8gq,radic,8gt,prop,8gu,infin,8h0,ang,8h7,and,8h8,or,8h9,cap,8ha,cup,8hb,int,8hk,there4,8hs,sim,8i5,cong,8i8,asymp,8j0,ne,8j1,equiv,8j4,le,8j5,ge,8k2,sub,8k3,sup,8k4,nsub,8k6,sube,8k7,supe,8kl,oplus,8kn,otimes,8l5,perp,8m5,sdot,8o8,lceil,8o9,rceil,8oa,lfloor,8ob,rfloor,8p9,lang,8pa,rang,9ea,loz,9j0,spades,9j3,clubs,9j5,hearts,9j6,diams,ai,OElig,aj,oelig,b0,Scaron,b1,scaron,bo,Yuml,m6,circ,ms,tilde,802,ensp,803,emsp,809,thinsp,80c,zwnj,80d,zwj,80e,lrm,80f,rlm,80j,ndash,80k,mdash,80o,lsquo,80p,rsquo,80q,sbquo,80s,ldquo,80t,rdquo,80u,bdquo,810,dagger,811,Dagger,81g,permil,81p,lsaquo,81q,rsaquo,85c,euro",32),c={strokeStyle:{svgAttr:"stroke",canvas:"#000000",svg:"none",apply:"stroke"},fillStyle:{svgAttr:"fill",canvas:"#000000",svg:null,apply:"fill"},lineCap:{svgAttr:"stroke-linecap",canvas:"butt",svg:"butt",apply:"stroke"},lineJoin:{svgAttr:"stroke-linejoin",canvas:"miter",svg:"miter",apply:"stroke"},miterLimit:{svgAttr:"stroke-miterlimit",canvas:10,svg:4,apply:"stroke"},lineWidth:{svgAttr:"stroke-width",canvas:1,svg:1,apply:"stroke"},globalAlpha:{svgAttr:"opacity",canvas:1,svg:1,apply:"fill stroke"},font:{canvas:"10px sans-serif"},shadowColor:{canvas:"#000000"},shadowOffsetX:{canvas:0},shadowOffsetY:{canvas:0},shadowBlur:{canvas:0},textAlign:{canvas:"start"},textBaseline:{canvas:"alphabetic"},lineDash:{svgAttr:"stroke-dasharray",canvas:[],svg:null,apply:"stroke"}};class _{constructor(t,e){this.__root=t,this.__ctx=e}addColorStop(t,e){const i=this.__ctx.__createElement("stop");if(i.setAttribute("offset",""+t),-1!==e.indexOf("rgba")){const t=/rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?\.?\d*)\s*\)/gi.exec(e),[,s,n,r,a]=t;i.setAttribute("stop-color",`rgb(${s},${n},${r})`),i.setAttribute("stop-opacity",a)}else i.setAttribute("stop-color",e);this.__root.appendChild(i)}}_.__name__="CanvasGradient";class u{constructor(t,e){this.__root=t,this.__ctx=e}}u.__name__="CanvasPattern";class p{constructor(t){var e,i,n;this.__currentPosition=null,this.__currentElementsToStyle=null,this._transform=new s.AffineTransform,this._clip_path=null,this.__document=null!==(e=null==t?void 0:t.document)&&void 0!==e?e:document,(null==t?void 0:t.ctx)?this.__ctx=t.ctx:(this.__canvas=this.__document.createElement("canvas"),this.__ctx=this.__canvas.getContext("2d")),this.__setDefaultStyles(),this.__stack=[],this.__root=this.__document.createElementNS("http://www.w3.org/2000/svg","svg"),this.__root.setAttribute("version","1.1"),this.__root.setAttribute("xmlns","http://www.w3.org/2000/svg"),this.__root.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:xlink","http://www.w3.org/1999/xlink"),this.width=null!==(i=null==t?void 0:t.width)&&void 0!==i?i:500,this.height=null!==(n=null==t?void 0:t.height)&&void 0!==n?n:500,this.__ids={},this.__defs=this.__document.createElementNS("http://www.w3.org/2000/svg","defs"),this.__root.appendChild(this.__defs)}get canvas(){return this}get width(){return this._width}set width(t){this._width=t,this.__root.setAttribute("width",""+t)}get height(){return this._height}set height(t){this._height=t,this.__root.setAttribute("height",""+t)}__createElement(t,e={},i=!1){const s=this.__document.createElementNS("http://www.w3.org/2000/svg",t);i&&(s.setAttribute("fill","none"),s.setAttribute("stroke","none"));const n=Object.keys(e);for(const t of n)s.setAttribute(t,""+e[t]);return s}__setDefaultStyles(){const t=Object.keys(c),e=this;for(let i=0;i<t.length;i++){const s=t[i];e[s]=c[s].canvas}}__applyStyleState(t){const e=Object.keys(t),i=this;for(let s=0;s<e.length;s++){const n=e[s];i[n]=t[n]}}__getStyleState(){const t=Object.keys(c),e={};for(let i=0;i<t.length;i++){const s=t[i];e[s]=this[s]}return e}__applyStyleToCurrentElement(t){let e=this.__currentElement;const i=this.__currentElementsToStyle;if(null!=i){e.setAttribute(t,""),e=i.element;for(const e of i.children)e.setAttribute(t,"")}const s=Object.keys(c);for(let i=0;i<s.length;i++){const r=c[s[i]],a=this[s[i]];if(r.apply)if(a instanceof u){for(const t of[…a.__ctx.__defs.childNodes])if(t instanceof Element){const e=t.getAttribute("id");this.__ids[e]=e,this.__defs.appendChild(t)}const t=a.__root.getAttribute("id");e.setAttribute(r.apply,`url(#${t})`)}else if(a instanceof _){const t=a.__root.getAttribute("id");e.setAttribute(r.apply,`url(#${t})`)}else if(-1!==r.apply.indexOf(t)&&r.svg!==a)if("stroke"!==r.svgAttr&&"fill"!==r.svgAttr||!n.isString(a)||-1===a.indexOf("rgba")){let n=r.svgAttr;if("globalAlpha"===s[i]&&(n=t+"-"+r.svgAttr,e.getAttribute(n)))continue;e.setAttribute(n,""+a)}else{const t=/rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?\.?\d*)\s*\)/gi.exec(a),[,i,s,n,o]=t;e.setAttribute(r.svgAttr,`rgb(${i},${s},${n})`);let l=parseFloat(o);const h=this.globalAlpha;null!=h&&(l*=h),e.setAttribute(r.svgAttr+"-opacity",""+l)}}}get_serialized_svg(t=!1){let e=(new XMLSerializer).serializeToString(this.__root);if(/xmlns="http:\/\/www\.w3\.org\/2000\/svg".+xmlns="http:\/\/www\.w3\.org\/2000\/svg/gi.test(e)&&(e=e.replace(‘xmlns="http://www.w3.org/2000/svg’,’xmlns:xlink="http://www.w3.org/1999/xlink’)),t)for(const[t,i]of h){const s=new RegExp(t,"gi");s.test(e)&&(e=e.replace(s,i))}return e}get_svg(){return this.__root}save(){this.__stack.push({transform:this._transform,clip_path:this._clip_path,attributes:this.__getStyleState()}),this._transform=this._transform.clone()}restore(){if(0==this.__stack.length)return;const{transform:t,clip_path:e,attributes:i}=this.__stack.pop();this._transform=t,this._clip_path=e,this.__applyStyleState(i)}_apply_transform(t,e=this._transform){e.is_identity||t.setAttribute("transform",e.toString())}scale(t,e){isFinite(t)&&(null==e||isFinite(e))&&this._transform.scale(t,null!=e?e:t)}rotate(t){isFinite(t)&&this._transform.rotate(t)}translate(t,e){isFinite(t+e)&&this._transform.translate(t,e)}transform(t,e,i,s,n,r){isFinite(t+e+i+s+n+r)&&this._transform.transform(t,e,i,s,n,r)}beginPath(){this.__currentDefaultPath="",this.__currentPosition=null;const t=this.__createElement("path",{},!0);this.__root.appendChild(t),this.__currentElement=t}__applyCurrentDefaultPath(){const t=this.__currentElement;"path"===t.nodeName?t.setAttribute("d",this.__currentDefaultPath):console.error("Attempted to apply path command to node",t.nodeName)}__addPathCommand(t,e,i){const s=this.__currentDefaultPath?" ":"";this.__currentDefaultPath+=s+i,this.__currentPosition={x:t,y:e}}get _hasCurrentDefaultPath(){return!!this.__currentDefaultPath}moveTo(t,e){if(!isFinite(t+e))return;"path"!==this.__currentElement.nodeName&&this.beginPath();const[i,s]=this._transform.apply(t,e);this.__addPathCommand(i,s,`M ${i} ${s}`)}closePath(){this._hasCurrentDefaultPath&&this.__addPathCommand(NaN,NaN,"Z")}lineTo(t,e){if(isFinite(t+e))if(this._hasCurrentDefaultPath){const[i,s]=this._transform.apply(t,e);this.__addPathCommand(i,s,`L ${i} ${s}`)}else this.moveTo(t,e)}bezierCurveTo(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))return;const[a,o]=this._transform.apply(n,r),[l,h]=this._transform.apply(t,e),[c,_]=this._transform.apply(i,s);this.__addPathCommand(a,o,`C ${l} ${h} ${c} ${_} ${a} ${o}`)}quadraticCurveTo(t,e,i,s){if(!isFinite(t+e+i+s))return;const[n,r]=this._transform.apply(i,s),[a,o]=this._transform.apply(t,e);this.__addPathCommand(n,r,`Q ${a} ${o} ${n} ${r}`)}arcTo(t,e,i,s,n){if(!isFinite(t+e+i+s+n))return;if(null==this.__currentPosition)return;const r=this.__currentPosition.x,a=this.__currentPosition.y;if(n<0)throw new Error("IndexSizeError: The radius provided ("+n+") is negative.");if(r===t&&a===e||t===i&&e===s||0===n)return void this.lineTo(t,e);function o([t,e]){const i=Math.sqrt(t**2+e**2);return[t/i,e/i]}const l=o([r-t,a-e]),h=o([i-t,s-e]);if(l[0]*h[1]==l[1]*h[0])return void this.lineTo(t,e);const c=l[0]*h[0]+l[1]*h[1],_=Math.acos(Math.abs(c)),u=o([l[0]+h[0],l[1]+h[1]]),p=n/Math.sin(_/2),d=t+p*u[0],m=e+p*u[1],f=[-l[1],l[0]],g=[h[1],-h[0]];function w(t){const e=t[0];return t[1]>=0?Math.acos(e):-Math.acos(e)}const b=w(f),v=w(g);this.lineTo(d+f[0]*n,m+f[1]*n),this.arc(d,m,n,b,v)}stroke(){"path"===this.__currentElement.nodeName&&this.__currentElement.setAttribute("paint-order","fill"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement("stroke"),null!=this._clip_path&&this.__currentElement.setAttribute("clip-path",this._clip_path)}fill(){"path"===this.__currentElement.nodeName&&this.__currentElement.setAttribute("paint-order","stroke"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement("fill"),null!=this._clip_path&&this.__currentElement.setAttribute("clip-path",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&("path"!==this.__currentElement.nodeName&&this.beginPath(),this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){r.empty(this.__defs),r.empty(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const n=this.__createElement("rect",{x:t,y:e,width:i,height:s,fill:"#FFFFFF"},!0);this._apply_transform(n),this.__root.appendChild(n)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error("The provided double value is non-finite");const[n,r]=this._transform.apply(t,e),[o,l]=this._transform.apply(i,s),h=this.__createElement("linearGradient",{id:a(this.__ids),x1:n+"px",x2:o+"px",y1:r+"px",y2:l+"px",gradientUnits:"userSpaceOnUse"},!1);return this.__defs.appendChild(h),new _(h,this)}createRadialGradient(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))throw new Error("The provided double value is non-finite");const[o,l]=this._transform.apply(t,e),[h,c]=this._transform.apply(s,n),u=this.__createElement("radialGradient",{id:a(this.__ids),cx:h+"px",cy:c+"px",r:r+"px",fx:o+"px",fy:l+"px",gradientUnits:"userSpaceOnUse"},!1);return this.__defs.appendChild(u),new _(u,this)}__parseFont(){const t=/^\s*(?=(?:(?:[-a-z]+\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\1|\2|\3)\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\d]+(?:\%|in|[cem]m|ex|p[ctx]))(?:\s*\/\s*(normal|[.\d]+(?:\%|in|[cem]m|ex|p[ctx])))?\s*([-,\’\"\sa-z0-9]+?)\s*$/i.exec(this.font),e={style:t[1]||"normal",size:t[4]||"10px",family:t[6]||"sans-serif",weight:t[3]||"normal",decoration:t[2]||"normal"};return"underline"===this.__fontUnderline&&(e.decoration="underline"),null!=this.__fontHref&&(e.href=this.__fontHref),e}__wrapTextLink(t,e){if(t.href){const i=this.__createElement("a");return i.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",t.href),i.appendChild(e),i}return e}__applyText(t,e,i,s){const n=this.__parseFont(),r=this.__createElement("text",{"font-family":n.family,"font-size":n.size,"font-style":n.style,"font-weight":n.weight,"text-decoration":n.decoration,x:e,y:i,"text-anchor":o(this.textAlign),"dominant-baseline":l(this.textBaseline)},!0);r.appendChild(this.__document.createTextNode(t)),this._apply_transform(r),this.__currentElement=r,this.__applyStyleToCurrentElement(s),this.__root.appendChild(this.__wrapTextLink(n,r))}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,"fill")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,"stroke")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,n,r=!1){if(!isFinite(t+e+i+s+n))return;if(s===n)return;(s%=2*Math.PI)===(n%=2*Math.PI)&&(n=(n+2*Math.PI-.001*(r?-1:1))%(2*Math.PI));const a=t+i*Math.cos(n),o=e+i*Math.sin(n),l=t+i*Math.cos(s),h=e+i*Math.sin(s),c=r?0:1;let _=0,u=n-s;u<0&&(u+=2*Math.PI),_=r?u>Math.PI?0:1:u>Math.PI?1:0,this.lineTo(l,h);const p=i,d=i,[m,f]=this._transform.apply(a,o);this.__addPathCommand(m,f,`A ${p} ${d} 0 ${_} ${c} ${m} ${f}`)}clip(){const t=this.__createElement("clipPath"),e=a(this.__ids);this.__applyCurrentDefaultPath(),t.setAttribute("id",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,…e){let i,s,n,r,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,n=l,r=h}else if(4==e.length){if([i,s,n,r]=e,!isFinite(i+s+n+r))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error("Inavlid number of arguments passed to drawImage: "+arguments.length);if([a,o,l,h,i,s,n,r]=e,!isFinite(a+o+l+h+i+s+n+r))return}const c=this.__root,_="translate("+i+", "+s+")",u=this._transform.clone().translate(i,s);if(t instanceof p||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;u.is_identity?i=c:(i=this.__createElement("g"),this._apply_transform(i,u),c.appendChild(i));for(const t of[…e.childNodes])if(t instanceof SVGDefsElement){for(const e of[…t.childNodes])if(e instanceof Element){const t=e.getAttribute("id");this.__ids[t]=t,this.__defs.appendChild(e)}}else i.appendChild(t)}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement("image");if(e.setAttribute("width",""+n),e.setAttribute("height",""+r),e.setAttribute("preserveAspectRatio","none"),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement("canvas");e.width=n,e.height=r;e.getContext("2d").drawImage(t,a,o,l,h,0,0,n,r),t=e}e.setAttribute("transform",_);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute("src");e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",i),c.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement("image");e.setAttribute("width",""+n),e.setAttribute("height",""+r),e.setAttribute("preserveAspectRatio","none");const i=this.__document.createElement("canvas");i.width=n,i.height=r;const s=i.getContext("2d");s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,n,r),t=i,e.setAttribute("transform",_),e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",t.toDataURL()),c.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS("http://www.w3.org/2000/svg","pattern"),s=a(this.__ids);if(i.setAttribute("id",s),i.setAttribute("width",""+this._to_number(t.width)),i.setAttribute("height",""+this._to_number(t.height)),i.setAttribute("patternUnits","userSpaceOnUse"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS("http://www.w3.org/2000/svg","image"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute("src");e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof p){for(const e of[…t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error("unsupported");for(const e of[…t.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}return new u(i,this)}setLineDash(t){t&&t.length>0?this.lineDash=t.join(","):this.lineDash=null}_to_number(t){return n.isNumber(t)?t:t.baseVal.value}}i.SVGRenderingContext2D=p,p.__name__="SVGRenderingContext2D"},n”, ” function _(t,s,r){Object.defineProperty(r,"__esModule",{value:!0});const{sin:e,cos:n}=Math;class i{constructor(t=1,s=0,r=0,e=1,n=0,i=0){this.a=t,this.b=s,this.c=r,this.d=e,this.e=n,this.f=i}toString(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return`matrix(${t}, ${s}, ${r}, ${e}, ${n}, ${i})`}clone(){const{a:t,b:s,c:r,d:e,e:n,f:a}=this;return new i(t,s,r,e,n,a)}get is_identity(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return 1==t&&0==s&&0==r&&1==e&&0==n&&0==i}apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this;return[r*t+n*s+a,e*t+i*s+h]}iv_apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this,c=t.length;for(let o=0;o<c;o++){const c=t[o],f=s[o];t[o]=r*c+n*f+a,s[o]=e*c+i*f+h}}transform(t,s,r,e,n,i){const{a,b:h,c,d:o,e:f,f:l}=this;return this.a=a*t+c*s,this.c=a*r+c*e,this.e=a*n+c*i+f,this.b=h*t+o*s,this.d=h*r+o*e,this.f=h*n+o*i+l,this}translate(t,s){return this.transform(1,0,0,1,t,s)}scale(t,s){return this.transform(t,0,0,s,0,0)}skew(t,s){return this.transform(1,s,t,1,0,0)}rotate(t){const s=e(t),r=n(t);return this.transform(r,s,-s,r,0,0)}rotate_ccw(t){return this.rotate(-t)}translate_x(t){return this.translate(t,0)}translate_y(t){return this.translate(0,t)}flip(){return this.scale(-1,-1)}flip_x(){return this.scale(1,-1)}flip_y(){return this.scale(-1,1)}}r.AffineTransform=i,i.__name__="AffineTransform"},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),a=e(14),n=e(78),l=e(19),o=s.__importStar(e(18)),r=e(72),h=e(13),c=e(79),_=e(80),d=e(75),p=(()=>{const e=document.createElement("canvas"),t=e.getContext("webgl",{premultipliedAlpha:!0});return null!=t?{canvas:e,gl:t}:void l.logger.trace("WebGL is not supported")})(),v={position:"absolute",top:"0",left:"0",width:"100%",height:"100%"};class b{constructor(e,t){switch(this.backend=e,this.hidpi=t,this.pixel_ratio=1,this.bbox=new c.BBox,e){case"webgl":case"canvas":{this._el=this._canvas=r.canvas({style:v});const e=this.canvas.getContext("2d");if(null==e)throw new Error("unable to obtain 2D rendering context");this._ctx=e,t&&(this.pixel_ratio=devicePixelRatio);break}case"svg":{const e=new d.SVGRenderingContext2D;this._ctx=e,this._canvas=e.get_svg(),this._el=r.div({style:v},this._canvas);break}}_.fixup_ctx(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t});const i=this._ctx instanceof d.SVGRenderingContext2D?this._ctx:this.canvas;i.width=e*this.pixel_ratio,i.height=t*this.pixel_ratio}prepare(){const{ctx:e,hidpi:t,pixel_ratio:i}=this;e.save(),t&&(e.scale(i,i),e.translate(.5,.5)),this.clear()}clear(){const{x:e,y:t,width:i,height:s}=this.bbox;this.ctx.clearRect(e,t,i,s)}finish(){this.ctx.restore()}to_blob(){const{_canvas:e}=this;if(e instanceof HTMLCanvasElement)return null!=e.msToBlob?Promise.resolve(e.msToBlob()):new Promise((t,i)=>{e.toBlob(e=>null!=e?t(e):i(),"image/png")});{const e=this._ctx.get_serialized_svg(!0),t=new Blob([e],{type:"image/svg+xml"});return Promise.resolve(t)}}}i.CanvasLayer=b,b.__name__="CanvasLayer";class g extends n.DOMView{constructor(){super(…arguments),this.bbox=new c.BBox}initialize(){super.initialize();const{output_backend:e,hidpi:t}=this.model;"webgl"==e&&(this.webgl=p),this.underlays_el=r.div({style:v}),this.primary=new b(e,t),this.overlays=new b(e,t),this.overlays_el=r.div({style:v}),this.events_el=r.div({class:"bk-canvas-events",style:v});const i=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];h.extend(this.el.style,v),r.append(this.el,…i),l.logger.debug("CanvasView initialized")}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const{gl:a}=t;a.enable(a.SCISSOR_TEST);const[n,l,o,r]=e,{xview:h,yview:c}=this.bbox,_=h.compute(n),d=c.compute(l+r),p=this.pixel_ratio;a.scissor(p*_,p*d,p*o,p*r),a.enable(a.BLEND),a.blendFuncSeparate(a.SRC_ALPHA,a.ONE_MINUS_SRC_ALPHA,a.ONE_MINUS_DST_ALPHA,a.ONE)}}clear_webgl(){const{webgl:e}=this;if(null!=e){const{gl:t,canvas:i}=e;t.viewport(0,0,i.width,i.height),t.clearColor(0,0,0,0),t.clear(t.COLOR_BUFFER_BIT||t.DEPTH_BUFFER_BIT)}}blit_webgl(e){const{webgl:t}=this;if(null!=t&&(l.logger.debug("Blitting WebGL canvas"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi)){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}}compose(){const{output_backend:e,hidpi:t}=this.model,{width:i,height:s}=this.bbox,a=new b(e,t);return a.resize(i,s),a.ctx.drawImage(this.primary.canvas,0,0),a.ctx.drawImage(this.overlays.canvas,0,0),a}to_blob(){return this.compose().to_blob()}}i.CanvasView=g,g.__name__="CanvasView";class x extends a.HasProps{constructor(e){super(e)}static init_Canvas(){this.prototype.default_view=g,this.internal({hidpi:[o.Boolean,!0],output_backend:[o.OutputBackend,"canvas"]})}}i.Canvas=x,x.__name__="Canvas",x.init_Canvas()},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(71),r=e(72);class n extends i.View{initialize(){super.initialize(),this.el=this._createElement()}remove(){r.remove(this.el),super.remove()}css_classes(){return[]}render(){}renderTo(e){e.appendChild(this.el),this.render()}_createElement(){return r.createElement(this.tagName,{class:this.css_classes()})}}t.DOMView=n,n.__name__="DOMView",n.prototype.tagName="div"},n”, ” function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const h=t(24),{min:r,max:s}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:r(t.x0,i.x0),x1:s(t.x1,i.x1),y0:r(t.y0,i.y0),y1:s(t.y1,i.y1)}};class n{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if("x0"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}});this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if("x"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}});this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if("width"in t)if("left"in t)i=t.left,e=i+t.width;else if("right"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if("height"in t)if("top"in t)h=t.top,r=h+t.height;else if("bottom"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}});this.x0=i,this.y0=h,this.x1=e,this.y1=r}}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get rect(){return{x0:this.x0,y0:this.y0,x1:this.x1,y1:this.y1}}get box(){return{x:this.x,y:this.y,width:this.width,height:this.height}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}relativize(){const{width:t,height:i}=this;return new n({x:0,y:0,width:t,height:i})}contains(t,i){return t>=this.x0&&t<=this.x1&&i>=this.y0&&i<=this.y1}clip(t,i){return t<this.x0?t=this.x0:t>this.x1&&(t=this.x1),i<this.y0?i=this.y0:i>this.y1&&(i=this.y1),[t,i]}union(t){return new n({x0:r(this.x0,t.x0),y0:r(this.y0,t.y0),x1:s(this.x1,t.x1),y1:s(this.y1,t.y1)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.left;for(let h=0;h<t.length;h++)i[h]=e+t[h];return i}}}get yview(){return{compute:t=>this.bottom-t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.bottom;for(let h=0;h<t.length;h++)i[h]=e-t[h];return i}}}}e.BBox=n,n.__name__="BBox"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.fixup_ctx=function(e){!function(e){void 0===e.lineDash&&Object.defineProperty(e,"lineDash",{get:()=>e.getLineDash(),set:t=>e.setLineDash(t)})}(e),function(e){e.setImageSmoothingEnabled=t=>{e.imageSmoothingEnabled=t,e.mozImageSmoothingEnabled=t,e.oImageSmoothingEnabled=t,e.webkitImageSmoothingEnabled=t,e.msImageSmoothingEnabled=t},e.getImageSmoothingEnabled=()=>{const t=e.imageSmoothingEnabled;return null==t||t}}(e),function(e){e.measureText&&null==e.html5MeasureText&&(e.html5MeasureText=e.measureText,e.measureText=t=>{const n=e.html5MeasureText(t);return n.ascent=1.6*e.html5MeasureText("m").width,n})}(e),function(e){e.ellipse||(e.ellipse=function(t,n,o,a,i,l,m,r=!1){const u=.551784;e.translate(t,n),e.rotate(i);let s=o,g=a;r&&(s=-o,g=-a),e.moveTo(-s,0),e.bezierCurveTo(-s,g*u,-s*u,g,0,g),e.bezierCurveTo(s*u,g,s,g*u,s,0),e.bezierCurveTo(s,-g*u,s*u,-g,0,-g),e.bezierCurveTo(-s*u,-g,-s,-g*u,-s,0),e.rotate(-i),e.translate(-t,-n)})}(e)}},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(1),c=e(14),i=n.__importStar(e(18)),a=e(8),r=e(13),o=e(19);class l extends c.HasProps{constructor(e){super(e)}static init_Model(){this.define({tags:[i.Array,[]],name:[i.String],js_property_callbacks:[i.Any,{}],js_event_callbacks:[i.Any,{}],subscribed_events:[i.Array,[]]})}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,()=>this._update_property_callbacks()),this.connect(this.properties.js_event_callbacks.change,()=>this._update_event_callbacks()),this.connect(this.properties.subscribed_events.change,()=>this._update_event_callbacks())}_process_event(e){for(const t of this.js_event_callbacks[e.event_name]||[])t.execute(e);null!=this.document&&this.subscribed_events.some(t=>t==e.event_name)&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):o.logger.warn("WARNING: Document not defined for updating event callbacks")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(":");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of r.entries(this.js_property_callbacks)){const n=s.map(e=>()=>e.execute(this));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){r.isEmpty(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if(a.isString(e))return[…this.references()].filter(t=>t instanceof l&&t.name===e);if(e.prototype instanceof c.HasProps)return[…this.references()].filter(t=>t instanceof e);throw new Error("invalid selector")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error("found more than one object matching given selector")}}}s.Model=l,l.__name__="Model",l.init_Model()},n”, ” function _(e,s,_){Object.defineProperty(_,"__esModule",{value:!0});class t{constructor(e,s){this.x_scale=e,this.y_scale=s,this.x_range=this.x_scale.source_range,this.y_range=this.y_scale.source_range,this.ranges=[this.x_range,this.y_range],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,s){return[this.x_scale.v_compute(e),this.y_scale.v_compute(s)]}map_from_screen(e,s){return[this.x_scale.v_invert(e),this.y_scale.v_invert(s)]}}_.CoordinateTransform=t,t.__name__="CoordinateTransform"},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),a=t(36),o=t(84),r=t(85),n=t(28),_=i.__importStar(t(18)),h=t(10);class c extends a.AnnotationView{initialize(){super.initialize(),null==this.model.source&&(this.model.source=new r.ColumnDataSource),this.set_data(this.model.source)}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.set_data(this.model.source)),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}set_data(t){super.set_data(t),this.visuals.warm_cache(t),this.plot_view.request_render()}_map_data(){const{frame:t}=this.plot_view;let e,s,i,a;return"data"==this.model.start_units?(e=this.coordinates.x_scale.v_compute(this._x_start),s=this.coordinates.y_scale.v_compute(this._y_start)):(e=t.xview.v_compute(this._x_start),s=t.yview.v_compute(this._y_start)),"data"==this.model.end_units?(i=this.coordinates.x_scale.v_compute(this._x_end),a=this.coordinates.y_scale.v_compute(this._y_end)):(i=t.xview.v_compute(this._x_end),a=t.yview.v_compute(this._y_end)),[[e,s],[i,a]]}_render(){const{ctx:t}=this.layer;t.save();const[e,s]=this._map_data();null!=this.model.end&&this._arrow_head(t,"render",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,"render",this.model.start,s,e),t.beginPath();const{x:i,y:a,width:o,height:r}=this.plot_view.frame.bbox;t.rect(i,a,o,r),null!=this.model.end&&this._arrow_head(t,"clip",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,"clip",this.model.start,s,e),t.closePath(),t.clip(),this._arrow_body(t,e,s),t.restore()}_arrow_head(t,e,s,i,a){for(let o=0,r=this._x_start.length;o<r;o++){const r=Math.PI/2+h.atan2([i[0][o],i[1][o]],[a[0][o],a[1][o]]);t.save(),t.translate(a[0][o],a[1][o]),t.rotate(r),"render"==e?s.render(t,o):"clip"==e&&s.clip(t,o),t.restore()}}_arrow_body(t,e,s){if(this.visuals.line.doit)for(let i=0,a=this._x_start.length;i<a;i++)this.visuals.line.set_vectorize(t,i),t.beginPath(),t.moveTo(e[0][i],e[1][i]),t.lineTo(s[0][i],s[1][i]),t.stroke()}}s.ArrowView=c,c.__name__="ArrowView";class d extends a.Annotation{constructor(t){super(t)}static init_Arrow(){this.prototype.default_view=c,this.mixins(n.LineVector),this.define({x_start:[_.NumberSpec],y_start:[_.NumberSpec],start_units:[_.SpatialUnits,"data"],start:[_.Instance,null],x_end:[_.NumberSpec],y_end:[_.NumberSpec],end_units:[_.SpatialUnits,"data"],end:[_.Instance,()=>new o.OpenHead({})],source:[_.Instance]})}}s.Arrow=d,d.__name__="Arrow",d.init_Arrow()},n”, ” function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),o=i(36),l=i(74),n=i(28),h=t.__importStar(i(18));class a extends o.Annotation{constructor(i){super(i)}static init_ArrowHead(){this.define({size:[h.Number,25]})}initialize(){super.initialize(),this.visuals=new l.Visuals(this)}}s.ArrowHead=a,a.__name__="ArrowHead",a.init_ArrowHead();class r extends a{constructor(i){super(i)}static init_OpenHead(){this.mixins(n.LineVector)}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,0),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.stroke())}}s.OpenHead=r,r.__name__="OpenHead",r.init_OpenHead();class z extends a{constructor(i){super(i)}static init_NormalHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:"black"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._normal(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._normal(i,e),i.stroke())}_normal(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.closePath()}}s.NormalHead=z,z.__name__="NormalHead",z.init_NormalHead();class _ extends a{constructor(i){super(i)}static init_VeeHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:"black"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._vee(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._vee(i,e),i.stroke())}_vee(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.closePath()}}s.VeeHead=_,_.__name__="VeeHead",_.init_VeeHead();class c extends a{constructor(i){super(i)}static init_TeeHead(){this.mixins(n.LineVector)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,0),i.lineTo(-.5*this.size,0),i.stroke())}clip(i,e){}}s.TeeHead=c,c.__name__="TeeHead",c.init_TeeHead()},n”, ” function _(t,n,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t(1),o=t(86),r=s.__importStar(t(18)),i=t(8),l=t(13),a=s.__importStar(t(119)),c=t(120),u=t(121);function h(t,n,e){if(i.isArray(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if(i.isTypedArray(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let i;t.length<e?(i=new t.constructor(e),i.set(t,0)):i=t;for(let t=o,n=r;t<n;t++)i[t-o]=i[t];for(let t=0,e=n.length;t<e;t++)i[t+(r-o)]=n[t];return i}{const e=new t.constructor(n);return a.concat(t,e)}}throw new Error("unsupported array types")}function d(t,n){let e,s,o;return i.isNumber(t)?(e=t,o=t+1,s=1):(e=null!=t.start?t.start:0,o=null!=t.stop?t.stop:n,s=null!=t.step?t.step:1),[e,o,s]}function f(t,n){const e=new Set;let s=!1;for(const[o,r]of n){let n,l,a,c;if(i.isArray(o)){const[s]=o;e.add(s),n=t[s].shape,l=t[s],c=r,2===o.length?(n=[1,n[0]],a=[o[0],0,o[1]]):a=o}else i.isNumber(o)?(c=[r],e.add(o)):(c=r,s=!0),a=[0,0,o],n=[1,t.length],l=t;let u=0;const[h,f,m]=d(a[1],n[0]),[_,p,g]=d(a[2],n[1]);for(let t=h;t<f;t+=m)for(let o=_;o<p;o+=g)s&&e.add(o),l[t*n[1]+o]=c[u],u++}return e}e.stream_to_column=h,e.slice=d,e.patch_to_column=f;class m extends o.ColumnarDataSource{constructor(t){super(t)}static init_ColumnDataSource(){this.define({data:[r.Any,{}]})}stream(t,n,e){const{data:s}=this;for(const[e,o]of l.entries(t))s[e]=h(s[e],o,n);if(this.setv({data:s},{silent:!0}),this.streaming.emit(),null!=this.document){const s=new u.ColumnsStreamedEvent(this.document,this.ref(),t,n);this.document._notify_change(this,"data",null,null,{setter_id:e,hint:s})}}patch(t,n){const{data:e}=this;let s=new Set;for(const[n,o]of l.entries(t))s=c.union(s,f(e[n],o));if(this.setv({data:e},{silent:!0}),this.patching.emit([…s]),null!=this.document){const e=new u.ColumnsPatchedEvent(this.document,this.ref(),t);this.document._notify_change(this,"data",null,null,{setter_id:n,hint:e})}}}e.ColumnDataSource=m,m.__name__="ColumnDataSource",m.init_ColumnDataSource()},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const a=t(1),s=t(87),i=t(15),r=t(19),l=t(89),c=a.__importStar(t(18)),o=t(8),u=t(9),h=t(13),g=t(88),_=t(118);class d extends s.DataSource{constructor(t){super(t)}get_array(t){let e=this.data[t];return null==e?this.data[t]=e=[]:o.isArray(e)||(this.data[t]=e=Array.from(e)),e}static init_ColumnarDataSource(){this.define({selection_policy:[c.Instance,()=>new _.UnionRenderers]}),this.internal({selection_manager:[c.Instance,t=>new l.SelectionManager({source:t})],inspected:[c.Instance,()=>new g.Selection]})}initialize(){super.initialize(),this._select=new i.Signal0(this,"select"),this.inspect=new i.Signal(this,"inspect"),this.streaming=new i.Signal0(this,"streaming"),this.patching=new i.Signal(this,"patching")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return h.keys(this.data)}get_length(t=!0){const e=u.uniq(h.values(this.data).map(t=>t.length));switch(e.length){case 0:return null;case 1:return e[0];default:{const n="data source has columns of inconsistent lengths";if(t)return r.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=d,d.__name__="ColumnarDataSource",d.init_ColumnarDataSource()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const c=e(1),n=e(81),o=e(88),i=c.__importStar(e(18));class r extends n.Model{constructor(e){super(e)}static init_DataSource(){this.define({selected:[i.Instance,()=>new o.Selection]})}}a.DataSource=r,r.__name__="DataSource",r.init_DataSource()},n”, ” function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),n=i(81),l=t.__importStar(i(18)),c=i(9),h=i(13);class d extends n.Model{constructor(i){super(i)}get_view(){return this.view}static init_Selection(){this.define({indices:[l.Array,[]],line_indices:[l.Array,[]],multiline_indices:[l.Any,{}]}),this.internal({selected_glyphs:[l.Array,[]],view:[l.Any],image_indices:[l.Array,[]]})}initialize(){super.initialize()}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s="replace"){switch(s){case"replace":this.indices=i.indices,this.line_indices=i.line_indices,this.selected_glyphs=i.selected_glyphs,this.view=i.view,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices;break;case"append":this.update_through_union(i);break;case"intersect":this.update_through_intersection(i);break;case"subtract":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.view=null,this.selected_glyphs=[]}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=c.union(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=c.intersection(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=c.difference(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}}s.Selection=d,d.__name__="Selection",d.init_Selection()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(14),o=e(88),c=e(90),r=e(116),l=i.__importStar(e(18));class p extends n.HasProps{constructor(e){super(e),this.inspectors=new Map}static init_SelectionManager(){this.internal({source:[l.Any]})}select(e,t,s,i="replace"){const n=[],o=[];for(const t of e)t instanceof c.GlyphRendererView?n.push(t):t instanceof r.GraphRendererView&&o.push(t);let l=!1;for(const e of o){const n=e.model.selection_policy.hit_test(t,e);l=l||e.model.selection_policy.do_selection(n,e.model,s,i)}if(n.length>0){const e=this.source.selection_policy.hit_test(t,n);l=l||this.source.selection_policy.do_selection(e,this.source,s,i)}return l}inspect(e,t){let s=!1;if(e instanceof c.GlyphRendererView){const i=e.hit_test(t);if(null!=i){s=!i.is_empty();const n=this.get_or_create_inspector(e.model);n.update(i,!0,"replace"),this.source.setv({inspected:n},{silent:!0}),this.source.inspect.emit([e,{geometry:t}])}}else if(e instanceof r.GraphRendererView){const i=e.model.inspection_policy.hit_test(t,e);s=s||e.model.inspection_policy.do_inspection(i,t,e,!1,"replace")}return s}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new o.Selection,this.inspectors.set(e,t)),t}}s.SelectionManager=p,p.__name__="SelectionManager",p.init_SelectionManager()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),l=e(91),n=e(92),h=e(110),o=e(111),a=e(113),c=e(114),_=e(24),d=s.__importStar(e(18)),r=e(12),p=e(9),g=e(13),u=e(115),y=e(98),m={fill:{},line:{}},v={fill:{fill_alpha:.3,fill_color:"grey"},line:{line_alpha:.3,line_color:"grey"}},f={fill:{fill_alpha:.2},line:{}};class w extends l.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model.glyph,t=p.includes(e._mixins,"fill"),i=p.includes(e._mixins,"line"),s=g.clone(e.attributes);function l(l){const n=g.clone(s);return t&&g.extend(n,l.fill),i&&g.extend(n,l.line),new e.constructor(n)}delete s.id,this.glyph=await this.build_glyph_view(e);let{selection_glyph:n}=this.model;null==n?n=l({fill:{},line:{}}):"auto"===n&&(n=l(m)),this.selection_glyph=await this.build_glyph_view(n);let{nonselection_glyph:h}=this.model;null==h?h=l({fill:{},line:{}}):"auto"===h&&(h=l(f)),this.nonselection_glyph=await this.build_glyph_view(h);const{hover_glyph:o}=this.model;null!=o&&(this.hover_glyph=await this.build_glyph_view(o));const{muted_glyph:a}=this.model;null!=a&&(this.muted_glyph=await this.build_glyph_view(a));const c=l(v);this.decimated_glyph=await this.build_glyph_view(c),this.set_data(!1)}async build_glyph_view(e){return u.build_view(e,{parent:this})}remove(){var e,t;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),null===(t=this.muted_glyph)||void 0===t||t.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.glyph.change,()=>this.set_data()),this.connect(this.model.data_source.change,()=>this.set_data()),this.connect(this.model.data_source.streaming,()=>this.set_data()),this.connect(this.model.data_source.patching,e=>this.set_data(!0,e)),this.connect(this.model.data_source.selected.change,()=>this.request_render()),this.connect(this.model.data_source._select,()=>this.request_render()),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,()=>this.request_render()),this.connect(this.model.properties.view.change,()=>this.set_data()),this.connect(this.model.view.properties.indices.change,()=>this.set_data()),this.connect(this.model.view.properties.masked.change,()=>this.set_visuals()),this.connect(this.model.properties.visible.change,()=>this.plot_view.update_dataranges());const{x_ranges:e,y_ranges:t}=this.plot_view.frame;for(const[,t]of e)t instanceof y.FactorRange&&this.connect(t.change,()=>this.set_data());for(const[,e]of t)e instanceof y.FactorRange&&this.connect(e.change,()=>this.set_data());this.connect(this.model.glyph.transformchange,()=>this.set_data())}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}set_data(e=!0,t=null){const i=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:s}=this;this.glyph.set_data(i,s,t),this.set_visuals(),this._update_masked_indices();const{lod_factor:l}=this.plot_model,n=this.all_indices.count;this.decimated=new _.Indices(n);for(let e=0;e<n;e+=l)this.decimated.set(e);this.set_data_timestamp=Date.now(),e&&this.request_render()}set_visuals(){var e,t,i,s;const l=this.model.data_source,{all_indices:n}=this;this.glyph.set_visuals(l,n),this.decimated_glyph.set_visuals(l,n),null===(e=this.selection_glyph)||void 0===e||e.set_visuals(l,n),null===(t=this.nonselection_glyph)||void 0===t||t.set_visuals(l,n),null===(i=this.hover_glyph)||void 0===i||i.set_visuals(l,n),null===(s=this.muted_glyph)||void 0===s||s.set_visuals(l,n)}get has_webgl(){return this.glyph.has_webgl}_render(){const e=this.has_webgl;this.glyph.map_data();const t=[…this.all_indices];let i=[…this._update_masked_indices()];const{ctx:s}=this.layer;s.save();const{selected:l}=this.model.data_source;let c;c=!l||l.is_empty()?[]:this.glyph instanceof n.LineView&&l.selected_glyph===this.glyph.model?this.model.view.convert_indices_from_subset(i):l.indices;const{inspected:_}=this.model.data_source,d=new Set((()=>!_||_.is_empty()?[]:_.selected_glyph?this.model.view.convert_indices_from_subset(i):_.indices.length>0?_.indices:Object.keys(_.multiline_indices).map(e=>parseInt(e)))()),g=r.filter(i,e=>d.has(t[e])),{lod_threshold:u}=this.plot_model;let y,m,v;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=u&&t.length>u?(i=[…this.decimated],y=this.decimated_glyph,m=this.decimated_glyph,v=this.selection_glyph):(y=this.model.muted&&null!=this.muted_glyph?this.muted_glyph:this.glyph,m=this.nonselection_glyph,v=this.selection_glyph),null!=this.hover_glyph&&g.length&&(i=p.difference(i,g)),c.length){const e={};for(const t of c)e[t]=!0;const l=new Array,h=new Array;if(this.glyph instanceof n.LineView)for(const i of t)null!=e[i]?l.push(i):h.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):h.push(s);m.render(s,h,this.glyph),v.render(s,l,this.glyph),null!=this.hover_glyph&&(this.glyph instanceof n.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):this.hover_glyph.render(s,g,this.glyph))}else if(this.glyph instanceof n.LineView)this.hover_glyph&&g.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):y.render(s,t,this.glyph);else if(this.glyph instanceof h.PatchView||this.glyph instanceof o.HAreaView||this.glyph instanceof a.VAreaView)if(0==_.selected_glyphs.length||null==this.hover_glyph)y.render(s,t,this.glyph);else for(const e of _.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t,this.glyph);else y.render(s,i,this.glyph),this.hover_glyph&&g.length&&this.hover_glyph.render(s,g,this.glyph);s.restore()}draw_legend(e,t,i,s,l,n,h,o){null==o&&(o=this.model.get_reference_point(n,h)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o)}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=w,w.__name__="GlyphRendererView";class b extends l.DataRenderer{constructor(e){super(e)}static init_GlyphRenderer(){this.prototype.default_view=w,this.define({data_source:[d.Instance],view:[d.Instance,()=>new c.CDSView],glyph:[d.Instance],hover_glyph:[d.Instance],nonselection_glyph:[d.Any,"auto"],selection_glyph:[d.Any,"auto"],muted_glyph:[d.Instance],muted:[d.Boolean,!1]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){let i=0;if(null!=e){const s=this.data_source.get_column(e);if(null!=s){const e=r.indexOf(s,t);-1!=e&&(i=e)}}return i}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=b,b.__name__="GlyphRenderer",b.init_GlyphRenderer()},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(70);class n extends a.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=n,n.__name__="DataRendererView";class s extends a.Renderer{constructor(e){super(e)}static init_DataRenderer(){this.override({level:"glyph"})}}t.DataRenderer=s,s.__name__="DataRenderer",s.init_DataRenderer()},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),n=e(93),l=e(100),_=e(102),r=s.__importStar(e(28)),o=s.__importStar(e(101)),h=e(88);class a extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&(this.glglyph=new _.LineGL(e.gl,this))}_render(e,i,{sx:t,sy:s}){let n=!1,l=null;this.visuals.line.set_value(e);for(const _ of i){if(n){if(!isFinite(t[_]+s[_])){e.stroke(),e.beginPath(),n=!1,l=_;continue}null!=l&&_-l>1&&(e.stroke(),n=!1)}n?e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]),n=!0),l=_}n&&e.stroke()}_hit_point(e){const i=new h.Selection,t={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.visuals.line.line_width.value()/2);for(let e=0,l=this.sx.length-1;e<l;e++){const l={x:this.sx[e],y:this.sy[e]},_={x:this.sx[e+1],y:this.sy[e+1]},r=o.dist_to_segment(t,l,_);r<n&&r<s&&(s=r,i.add_to_selected_glyphs(this.model),i.view=this,i.line_indices=[e])}return i}_hit_span(e){const{sx:i,sy:t}=e,s=new h.Selection;let n,l;"v"==e.direction?(n=this.renderer.yscale.invert(t),l=this._y):(n=this.renderer.xscale.invert(i),l=this._x);for(let e=0,i=l.length-1;e<i;e++)(l[e]<=n&&n<=l[e+1]||l[e+1]<=n&&n<=l[e])&&(s.add_to_selected_glyphs(this.model),s.view=this,s.line_indices.push(e));return s}get_interpolation_hit(e,i){const[t,s,n,_]=[this._x[e],this._y[e],this._x[e+1],this._y[e+1]];return l.line_interpolation(this.renderer,i,t,s,n,_)}draw_legend_for_index(e,i,t){l.generic_line_legend(this.visuals,e,i,t)}}t.LineView=a,a.__name__="LineView";class c extends n.XYGlyph{constructor(e){super(e)}static init_Line(){this.prototype.default_view=a,this.mixins(r.Line)}}t.Line=c,c.__name__="Line",c.init_Line()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),_=e(37),n=s.__importStar(e(18)),a=e(94);class d extends a.GlyphView{_project_data(){_.inplace.project_xy(this._x,this._y)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++){const t=this._x[i],s=this._y[i];isNaN(t+s)||!isFinite(t+s)?e.add_empty():e.add(t,s,t,s)}}scenterxy(e){return[this.sx[e],this.sy[e]]}}i.XYGlyphView=d,d.__name__="XYGlyphView";class p extends a.Glyph{constructor(e){super(e)}static init_XYGlyph(){this.define({x:[n.XCoordinateSpec,{field:"x"}],y:[n.YCoordinateSpec,{field:"y"}]})}}i.XYGlyph=p,p.__name__="XYGlyph",p.init_XYGlyph()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),n=s.__importStar(t(18)),a=s.__importStar(t(79)),r=s.__importStar(t(74)),_=t(71),l=t(81),o=t(19),h=t(24),d=t(12),c=t(95),u=t(98),p=t(88);class y extends _.View{constructor(){super(…arguments),this._index=null,this._data_size=null,this._nohit_warned=new Set}get renderer(){return this.parent}get has_webgl(){return null!=this.glglyph}get index(){const{_index:t}=this;if(null!=t)return t;throw new Error(this+".index_data() wasn’t called")}get data_size(){const{_data_size:t}=this;if(null!=t)return t;throw new Error(this+".set_data() wasn’t called")}initialize(){super.initialize(),this.visuals=new r.Visuals(this.model)}set_visuals(t,e){this.visuals.warm_cache(t,e),null!=this.glglyph&&this.glglyph.set_visuals_changed()}render(t,e,i){t.beginPath(),null!=this.glglyph&&(this.renderer.needs_webgl_blit=this.glglyph.render(t,e,i),this.renderer.needs_webgl_blit)||this._render(t,e,i)}has_finished(){return!0}notify_finished(){this.renderer.notify_finished()}_bounds(t){return t}bounds(){return this._bounds(this.index.bbox)}log_bounds(){const{x0:t,x1:e}=this.index.bounds(a.positive_x()),{y0:i,y1:s}=this.index.bounds(a.positive_y());return this._bounds({x0:t,y0:i,x1:e,y1:s})}get_anchor_point(t,e,[i,s]){switch(t){case"center":{const[t,n]=this.scenterxy(e,i,s);return{x:t,y:n}}default:return null}}scenterx(t,e,i){return this.scenterxy(t,e,i)[0]}scentery(t,e,i){return this.scenterxy(t,e,i)[1]}sdist(t,e,i,s="edge",n=!1){let a,r;const _=e.length;if("center"==s){const t=d.map(i,t=>t/2);a=new Float64Array(_);for(let i=0;i<_;i++)a[i]=e[i]-t[i];r=new Float64Array(_);for(let i=0;i<_;i++)r[i]=e[i]+t[i]}else{a=e,r=new Float64Array(_);for(let t=0;t<_;t++)r[t]=a[t]+i[t]}const l=t.v_compute(a),o=t.v_compute(r);return n?d.map(l,(t,e)=>Math.ceil(Math.abs(o[e]-l[e]))):d.map(l,(t,e)=>Math.abs(o[e]-l[e]))}draw_legend_for_index(t,e,i){}hit_test(t){switch(t.type){case"point":if(null!=this._hit_point)return this._hit_point(t);break;case"span":if(null!=this._hit_span)return this._hit_span(t);break;case"rect":if(null!=this._hit_rect)return this._hit_rect(t);break;case"poly":if(null!=this._hit_poly)return this._hit_poly(t)}return this._nohit_warned.has(t.type)||(o.logger.debug(‘${t.type}’ selection not available for ${this.model.type}),this._nohit_warned.add(t.type)),null}_hit_rect_against_index(t){const{sx0:e,sx1:i,sy0:s,sy1:n}=t,[a,r]=this.renderer.coordinates.x_scale.r_invert(e,i),[_,l]=this.renderer.coordinates.y_scale.r_invert(s,n),o=[…this.index.indices({x0:a,x1:r,y0:_,y1:l})];return new p.Selection({indices:o})}_project_data(){}set_data(t,e,i){var s,a;const{x_range:r,y_range:_}=this.renderer.coordinates;this._data_size=null!==(s=t.get_length())&&void 0!==s?s:1;for(const i of this.model){if(!(i instanceof n.VectorSpec))continue;if(i.optional&&null==i.spec.value&&!i.dirty)continue;const s=i.attr,a=i.array(t);let l=e.select(a);if(i instanceof n.BaseCoordinateSpec){const t="x"==i.dimension?r:_;if(t instanceof u.FactorRange)if(i instanceof n.CoordinateSpec)l=t.v_synthetic(l);else if(i instanceof n.CoordinateSeqSpec)for(let e=0;e<l.length;e++)l[e]=t.v_synthetic(l[e]);i instanceof n.CoordinateSeqSpec&&(l=h.RaggedArray.from(l))}else i instanceof n.DistanceSpec&&(this["max_"+s]=d.max(l));this["_"+s]=l}this.renderer.plot_view.model.use_map&&this._project_data(),this._set_data(i),null===(a=this.glglyph)||void 0===a||a.set_data_changed(),this.index_data()}_set_data(t){}get _index_size(){return this.data_size}index_data(){const t=new c.SpatialIndex(this._index_size);this._index_data(t),t.finish(),this._index=t}mask_data(){return null!=this.glglyph||null==this._mask_data?h.Indices.all_set(this.data_size):this._mask_data()}map_data(){var t;const e=this,{x_scale:i,y_scale:s}=this.renderer.coordinates;for(const t of this.model)if(t instanceof n.BaseCoordinateSpec){const n="x"==t.dimension?i:s;let a=e["_"+t.attr];if(a instanceof h.RaggedArray){const t=n.v_compute(a.array);a=new h.RaggedArray(a.offsets,t)}else a=n.v_compute(a);this["s"+t.attr]=a}this._map_data(),null===(t=this.glglyph)||void 0===t||t.set_data_changed()}_map_data(){}}i.GlyphView=y,y.__name__="GlyphView";class g extends l.Model{constructor(t){super(t)}static init_Glyph(){}}i.Glyph=g,g.__name__="Glyph",g.init_Glyph()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1).__importDefault(e(96)),s=e(24),o=e(79);function d(e,n){let t=0,i=n.length-1;for(;t<i;){const s=t+i>>1;n[s]>e?i=s:t=s+1}return n[t]}class x extends i.default{search_indices(e,n,t,i){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let o=this._boxes.length-4;const x=[],h=new s.Indices(this.numItems);for(;void 0!==o;){const s=Math.min(o+4*this.nodeSize,d(o,this._levelBounds));for(let d=o;d<s;d+=4){const s=0|this._indices[d>>2];t<this._boxes[d+0]||(i<this._boxes[d+1]||e>this._boxes[d+2]||n>this._boxes[d+3]||(o<4*this.numItems?h.set(s):x.push(s)))}o=x.pop()}return h}}x.__name__="_FlatBush";class h{constructor(e){this.index=null,e>0&&(this.index=new x(e))}add(e,n,t,i){var s;null===(s=this.index)||void 0===s||s.add(e,n,t,i)}add_empty(){var e;null===(e=this.index)||void 0===e||e.add(1/0,1/0,-1/0,-1/0)}finish(){var e;null===(e=this.index)||void 0===e||e.finish()}_normalize(e){let{x0:n,y0:t,x1:i,y1:s}=e;return n>i&&([n,i]=[i,n]),t>s&&([t,s]=[s,t]),{x0:n,y0:t,x1:i,y1:s}}get bbox(){if(null==this.index)return o.empty();{const{minX:e,minY:n,maxX:t,maxY:i}=this.index;return{x0:e,y0:n,x1:t,y1:i}}}indices(e){if(null==this.index)return new s.Indices(0);{const{x0:n,y0:t,x1:i,y1:s}=this._normalize(e);return this.index.search_indices(n,t,i,s)}}bounds(e){const n=o.empty();for(const t of this.indices(e)){const e=this.index._boxes,i=e[4*t+0],s=e[4*t+1],o=e[4*t+2],d=e[4*t+3];o<n.x0&&(n.x0=o),i>n.x1&&(n.x1=i),d<n.y0&&(n.y0=d),s>n.y1&&(n.y1=s)}return n}}t.SpatialIndex=h,h.__name__="SpatialIndex"},n”, ” function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1).__importDefault(t(97)),h=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class n{static from(t){if(!(t instanceof ArrayBuffer))throw new Error("Data must be an instance of ArrayBuffer.");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error("Data does not appear to be in a Flatbush format.");if(i>>4!=3)throw new Error(Got v${i>>4} data when expected v3.);const[e]=new Uint16Array(t,2,1),[o]=new Uint32Array(t,4,1);return new n(o,e,h[15&i],t)}constructor(t,s=16,i=Float64Array,n){if(void 0===t)throw new Error("Missing required argument: numItems.");if(isNaN(t)||t<=0)throw new Error(Unpexpected numItems value: ${t}.);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let o=t,r=o;this._levelBounds=[4*o];do{o=Math.ceil(o/this.nodeSize),r+=o,this._levelBounds.push(4*r)}while(1!==o);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=h.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(Unexpected typed array class: ${i}.);n&&n instanceof ArrayBuffer?(this.data=n,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new e.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,t<this.minX&&(this.minX=t),s<this.minY&&(this.minY=s),i>this.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(Added ${this._pos>>2} items when expected ${this.numItems}.);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e<this.numItems;e++){let h=4*e;const n=this._boxes[h++],o=this._boxes[h++],r=this._boxes[h++],a=this._boxes[h++],d=Math.floor(65535*((n+r)/2-this.minX)/t),x=Math.floor(65535*((o+a)/2-this.minY)/s);i[e]=_(d,x)}!function t(s,i,e,h,n,o){if(Math.floor(h/o)>=Math.floor(n/o))return;const r=s[h+n>>1];let _=h-1,d=n+1;for(;;){do{_++}while(s[_]<r);do{d–}while(s[d]>r);if(_>=d)break;a(s,i,e,_,d)}t(s,i,e,h,d,o),t(s,i,e,d+1,n,o)}(i,this._boxes,this._indices,0,this.numItems-1,this.nodeSize);for(let t=0,s=0;t<this._levelBounds.length-1;t++){const i=this._levelBounds[t];for(;s<i;){const t=s;let e=1/0,h=1/0,n=-1/0,o=-1/0;for(let t=0;t<this.nodeSize&&s<i;t++)e=Math.min(e,this._boxes[s++]),h=Math.min(h,this._boxes[s++]),n=Math.max(n,this._boxes[s++]),o=Math.max(o,this._boxes[s++]);this._indices[this._pos>>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let n=this._boxes.length-4;const o=[],a=[];for(;void 0!==n;){const _=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let r=n;r<_;r+=4){const _=0|this._indices[r>>2];i<this._boxes[r]||(e<this._boxes[r+1]||t>this._boxes[r+2]||s>this._boxes[r+3]||(n<4*this.numItems?(void 0===h||h(_))&&a.push(_):o.push(_)))}n=o.pop()}return a}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let n=this._boxes.length-4;const a=this._queue,_=[],d=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let i=n;i<e;i+=4){const e=0|this._indices[i>>2],r=o(t,this._boxes[i],this._boxes[i+2]),_=o(s,this._boxes[i+1],this._boxes[i+3]),d=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&a.push(-e-1,d):a.push(e,d)}for(;a.length&&a.peek()<0;){if(a.peekValue()>d)return a.clear(),_;if(_.push(-a.pop()-1),_.length===i)return a.clear(),_}n=a.pop()}return a.clear(),_}}function o(t,s,i){return t<s?s-t:t<=i?0:t-i}function r(t,s){let i=0,e=s.length-1;for(;i<e;){const h=i+e>>1;s[h]>t?e=h:i=h+1}return s[i]}function a(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],d=s[o+2],x=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=d,s[r+3]=x;const l=i[e];i[e]=i[h],i[h]=l}function _(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let d=t^s,x=e|65535^(d|i);return d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),(x<<1|d)>>>0}i.default=n},n”, ” function _(s,t,i){Object.defineProperty(i,"__esModule",{value:!0});i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length–,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h<i;){let s=1+(h<<1);const i=s+1;let e=this.ids[s],l=this.values[s];const n=this.values[i];if(i<this.length&&n<l&&(s=i,e=this.ids[i],l=n),l>=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const s=t(1),i=t(99),r=s.__importStar(t(18)),a=t(24),o=t(9),p=t(8),g=t(11);function c(t,e,n=0){const s=new Map;for(let i=0;i<t.length;i++){const r=t[i];if(s.has(r))throw new Error("duplicate factor or subfactor: "+r);s.set(r,{value:.5+i*(1+e)+n})}return[s,(t.length-1)*e]}function l(t,e,n,s=0){var i;const r=new Map,a=new Map;for(const[e,n]of t){const t=null!==(i=a.get(e))&&void 0!==i?i:[];a.set(e,[…t,n])}let p=s,g=0;for(const[t,s]of a){const i=s.length,[a,l]=c(s,n,p);g+=l;const u=o.sum(s.map(t=>a.get(t).value));r.set(t,{value:u/i,mapping:a}),p+=i+e+l}return[r,(a.size-1)*e+g]}function u(t,e,n,s,i=0){var r;const a=new Map,p=new Map;for(const[e,n,s]of t){const t=null!==(r=p.get(e))&&void 0!==r?r:[];p.set(e,[…t,[n,s]])}let g=i,c=0;for(const[t,i]of p){const r=i.length,[p,u]=l(i,n,s,g);c+=u;const h=o.sum(i.map(([t])=>p.get(t).value));a.set(t,{value:h/r,mapping:p}),g+=r+e+u}return[a,(p.size-1)*e+c]}n.map_one_level=c,n.map_two_levels=l,n.map_three_levels=u;class h extends i.Range{constructor(t){super(t)}static init_FactorRange(){this.define({factors:[r.Array,[]],factor_padding:[r.Number,0],subgroup_padding:[r.Number,.8],group_padding:[r.Number,1.4],range_padding:[r.Number,0],range_padding_units:[r.PaddingUnits,"percent"],start:[r.Number],end:[r.Number]}),this.internal({levels:[r.Number],mids:[r.Array,null],tops:[r.Array,null]})}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,()=>this.reset()),this.connect(this.properties.factor_padding.change,()=>this.reset()),this.connect(this.properties.group_padding.change,()=>this.reset()),this.connect(this.properties.subgroup_padding.change,()=>this.reset()),this.connect(this.properties.range_padding.change,()=>this.reset()),this.connect(this.properties.range_padding_units.change,()=>this.reset())}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[e]=t,n=this._mapping.get(e);return null!=n?n.value:NaN}case 2:{const[e,n]=t,s=this._mapping.get(e);if(null!=s){const t=s.mapping.get(n);if(null!=t)return t.value}return NaN}case 3:{const[e,n,s]=t,i=this._mapping.get(e);if(null!=i){const t=i.mapping.get(n);if(null!=t){const e=t.mapping.get(s);if(null!=e)return e.value}}return NaN}default:g.unreachable()}}synthetic(t){if(p.isNumber(t))return t;if(p.isString(t))return this._lookup([t]);let e=0;const n=t[t.length-1];return p.isNumber(n)&&(e=n,t=t.slice(0,-1)),this._lookup(t)+e}v_synthetic(t){const e=t.length,n=new a.NumberArray(e);for(let s=0;s<e;s++)n[s]=this.synthetic(t[s]);return n}_init(t){const{levels:e,mapping:n,tops:s,mids:i,inside_padding:r}=(()=>{if(o.every(this.factors,p.isString)){const t=this.factors,[e,n]=c(t,this.factor_padding);return{levels:1,mapping:e,tops:null,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&2==t.length&&p.isString(t[0])&&p.isString(t[1]))){const t=this.factors,[e,n]=l(t,this.group_padding,this.factor_padding),s=[…e.keys()];return{levels:2,mapping:e,tops:s,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&3==t.length&&p.isString(t[0])&&p.isString(t[1])&&p.isString(t[2]))){const t=this.factors,[e,n]=u(t,this.group_padding,this.subgroup_padding,this.factor_padding),s=[…e.keys()],i=[];for(const[t,n]of e)for(const e of n.mapping.keys())i.push([t,e]);return{levels:3,mapping:e,tops:s,mids:i,inside_padding:n}}g.unreachable()})();this._mapping=n,this.tops=s,this.mids=i;let a=0,h=this.factors.length+r;if("percent"==this.range_padding_units){const t=(h-a)*this.range_padding/2;a-=t,h+=t}else a-=this.range_padding,h+=this.range_padding;this.setv({start:a,end:h,levels:e},{silent:t}),"auto"==this.bounds&&this.setv({bounds:[a,h]},{silent:!0})}}n.FactorRange=h,h.__name__="FactorRange",h.init_FactorRange()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(81),a=n.__importStar(e(18));class r extends s.Model{constructor(e){super(e),this.have_updated_interactively=!1}static init_Range(){this.define({bounds:[a.Any],min_interval:[a.Any],max_interval:[a.Any]}),this.internal({plots:[a.Array,[]]})}get is_reversed(){return this.start>this.end}get is_valid(){return!isNaN(this.min)&&!isNaN(this.max)}}i.Range=r,r.__name__="Range",r.init_Range()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1).__importStar(e(101));i.generic_line_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){t.save(),t.beginPath(),t.moveTo(i,(c+o)/2),t.lineTo(n,(c+o)/2),e.line.doit&&(e.line.set_vectorize(t,r),t.stroke()),t.restore()},i.generic_area_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){const l=.1*Math.abs(n-i),a=.1*Math.abs(o-c),s=i+l,_=n-l,h=c+a,v=o-a;e.fill.doit&&(e.fill.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),null!=e.hatch&&e.hatch.doit&&(e.hatch.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),e.line&&e.line.doit&&(t.beginPath(),t.rect(s,h,_-s,v-h),e.line.set_vectorize(t,r),t.stroke())},i.line_interpolation=function(e,t,i,c,o,r){const{sx:l,sy:a}=t;let s,_,h,v;"point"==t.type?([h,v]=e.yscale.r_invert(a-1,a+1),[s,_]=e.xscale.r_invert(l-1,l+1)):"v"==t.direction?([h,v]=e.yscale.r_invert(a,a),[s,_]=[Math.min(i-1,o-1),Math.max(i+1,o+1)]):([s,_]=e.xscale.r_invert(l,l),[h,v]=[Math.min(c-1,r-1),Math.max(c+1,r+1)]);const{x,y}=n.check_2_segments_intersect(s,h,_,v,i,c,o,r);return[x,y]}},n”, ” function _(t,n,e){function i(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function r(t,n,e){const r=i(n,e);if(0==r)return i(t,n);const s=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/r;if(s<0)return i(t,n);if(s>1)return i(t,e);return i(t,{x:n.x+s*(e.x-n.x),y:n.y+s*(e.y-n.y)})}Object.defineProperty(e,"__esModule",{value:!0}),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u<e.length;u++){const c=e[u],_=i[u];o<n!=_<n&&s+(n-o)/(_-o)*(c-s)<t&&(r=!r),s=c,o=_}return r},e.point_in_ellipse=function(t,n,e,i,r,s,o){return((Math.cos(e)/r)**2+(Math.sin(e)/i)**2)*(t-s)**2+2*Math.cos(e)*Math.sin(e)*((1/r)**2-(1/i)**2)*(t-s)*(n-o)+((Math.cos(e)/i)**2+(Math.sin(e)/r)**2)*(n-o)**2<=1},e.dist_2_pts=i,e.dist_to_segment_squared=r,e.dist_to_segment=function(t,n,e){return Math.sqrt(r(t,n,e))},e.check_2_segments_intersect=function(t,n,e,i,r,s,o,u){const c=(u-s)*(e-t)-(o-r)*(i-n);if(0==c)return{hit:!1,x:null,y:null};{let _=n-s,l=t-r;const y=(e-t)*_-(i-n)*l;_=((o-r)*_-(u-s)*l)/c,l=y/c;return{hit:_>0&&_<1&&l>0&&l<1,x:t+_*(e-t),y:n+_*(i-n)}}}},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(103),a=t(107),n=t(108),o=t(109),_=t(22);class h{constructor(t){this._atlas=new Map,this._width=256,this._height=256,this.tex=new i.Texture2d(t),this.tex.set_wrapping(t.REPEAT,t.REPEAT),this.tex.set_interpolation(t.NEAREST,t.NEAREST),this.tex.set_size([this._width,this._height],t.RGBA),this.tex.set_data([0,0],[this._width,this._height],new Uint8Array(4*this._width*this._height)),this.get_atlas_data([1])}get_atlas_data(t){const e=t.join("-");let s=this._atlas.get(e);if(null==s){const[i,a]=this.make_pattern(t),n=this._atlas.size;this.tex.set_data([0,n],[this._width,1],new Uint8Array(i.map(t=>t+10))),s=[n/this._height,a],this._atlas.set(e,s)}return s}make_pattern(t){t.length>1&&t.length%2&&(t=t.concat(t));let e=0;for(const s of t)e+=s;const s=[];let i=0;for(let e=0,a=t.length+2;e<a;e+=2){const a=Math.max(1e-4,t[e%t.length]),n=Math.max(1e-4,t[(e+1)%t.length]);s.push(i,i+a),i+=a+n}const a=this._width,n=new Float32Array(4*a);for(let t=0,i=a;t<i;t++){let i,o,_;const h=e*t/(a-1);let r=0,l=1e16;for(let t=0,e=s.length;t<e;t++){const e=Math.abs(s[t]-h);e<l&&(r=t,l=e)}r%2==0?(_=h<=s[r]?1:0,o=s[r],i=s[r+1]):(_=h>s[r]?-1:0,o=s[r-1],i=s[r]),n[4*t+0]=s[r],n[4*t+1]=_,n[4*t+2]=o,n[4*t+3]=i}return[n,e]}}h.__name__="DashAtlas";const r={miter:0,round:1,bevel:2},l={"":0,none:0,".":0,round:1,")":1,"(":1,o:1,"triangle in":2,"<":2,"triangle out":3,">":3,square:4,"[":4,"]":4,"=":4,butt:5,"|\":5};class g extends a.BaseGLGlyph{init(){const{gl:t}=this;this._scale_aspect=0;const e=n.vertex_shader,s=o.fragment_shader;this.prog=new i.Program(t),this.prog.set_shaders(e,s),this.index_buffer=new i.IndexBuffer(t),this.vbo_position=new i.VertexBuffer(t),this.vbo_tangents=new i.VertexBuffer(t),this.vbo_segment=new i.VertexBuffer(t),this.vbo_angles=new i.VertexBuffer(t),this.vbo_texcoord=new i.VertexBuffer(t),this.dash_atlas=new h(t)}draw(t,e,s){const i=e.glglyph;if(i.data_changed&&(i._set_data(),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(),this.visuals_changed=!1),i._update_scale(1,1),this._scale_aspect=1,this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord),this.prog.set_uniform(\"u_length\",\"float\",[i.cumsum]),this.prog.set_texture(\"u_dash_atlas\",this.dash_atlas.tex),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_uniform(\"u_scale_aspect\",\"vec2\",[1,1]),this.prog.set_uniform(\"u_scale_length\",\"float\",[Math.sqrt(2)]),this.I_triangles=i.I_triangles,this.I_triangles.length<65535)this.index_buffer.set_size(2*this.I_triangles.length),this.index_buffer.set_data(0,new Uint16Array(this.I_triangles)),this.prog.draw(this.gl.TRIANGLES,this.index_buffer);else{t=Array.from(this.I_triangles);const e=this.I_triangles.length,s=64008,a=[];for(let t=0,i=Math.ceil(e/s);t<i;t++)a.push([]);for(let e=0,i=t.length;e<i;e++){const i=t[e]%s;a[Math.floor(t[e]/s)].push(i)}for(let t=0,e=a.length;t<e;t++){const e=new Uint16Array(a[t]),n=t*s*4;0!==e.length&&(this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position,0,2*n),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents,0,4*n),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment,0,2*n),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles,0,2*n),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord,0,2*n),this.index_buffer.set_size(2*e.length),this.index_buffer.set_data(0,e),this.prog.draw(this.gl.TRIANGLES,this.index_buffer))}}}_set_data(){this._bake(),this.vbo_position.set_size(4*this.V_position.length),this.vbo_position.set_data(0,this.V_position),this.vbo_tangents.set_size(4*this.V_tangents.length),this.vbo_tangents.set_data(0,this.V_tangents),this.vbo_angles.set_size(4*this.V_angles.length),this.vbo_angles.set_data(0,this.V_angles),this.vbo_texcoord.set_size(4*this.V_texcoord.length),this.vbo_texcoord.set_data(0,this.V_texcoord)}_set_visuals(){const t=_.color2rgba(this.glyph.visuals.line.line_color.value(),this.glyph.visuals.line.line_alpha.value()),e=l[this.glyph.visuals.line.line_cap.value()],s=r[this.glyph.visuals.line.line_join.value()];this.prog.set_uniform(\"u_color\",\"vec4\",t),this.prog.set_uniform(\"u_linewidth\",\"float\",[this.glyph.visuals.line.line_width.value()]),this.prog.set_uniform(\"u_antialias\",\"float\",[.9]),this.prog.set_uniform(\"u_linecaps\",\"vec2\",[e,e]),this.prog.set_uniform(\"u_linejoin\",\"float\",[s]),this.prog.set_uniform(\"u_miter_limit\",\"float\",[10]);const i=this.glyph.visuals.line.line_dash.value();let a=0,n=1;i.length&&([a,n]=this.dash_atlas.get_atlas_data(i)),this.prog.set_uniform(\"u_dash_index\",\"float\",[a]),this.prog.set_uniform(\"u_dash_phase\",\"float\",[this.glyph.visuals.line.line_dash_offset.value()]),this.prog.set_uniform(\"u_dash_period\",\"float\",[n]),this.prog.set_uniform(\"u_dash_caps\",\"vec2\",[e,e]),this.prog.set_uniform(\"u_closed\",\"float\",[0])}_bake(){let t,e,s,i,a,n,o,_;const h=this.nvertices,r=this.glyph.sx,l=this.glyph.sy,g=o=new Float32Array(2*h),u=new Float32Array(2*h),f=_=new Float32Array(4*h);for(let t=0,e=h;t<e;t++)g[2*t+0]=r[t],g[2*t+1]=l[t];this.tangents=e=new Float32Array(2*h-2);for(let t=0,s=h-1;t<s;t++)e[2*t+0]=o[2*(t+1)+0]-o[2*t+0],e[2*t+1]=o[2*(t+1)+1]-o[2*t+1];for(let t=0,s=h-1;t<s;t++)f[4*(t+1)+0]=e[2*t+0],f[4*(t+1)+1]=e[2*t+1],f[4*t+2]=e[2*t+0],f[4*t+3]=e[2*t+1];f[0]=e[0],f[1]=e[1],f[4*(h-1)+2]=e[2*(h-2)+0],f[4*(h-1)+3]=e[2*(h-2)+1];const c=new Float32Array(h);for(let t=0,e=h;t<e;t++)c[t]=Math.atan2(_[4*t+0]*_[4*t+3]-_[4*t+1]*_[4*t+2],_[4*t+0]*_[4*t+2]+_[4*t+1]*_[4*t+3]);for(let t=0,e=h-1;t<e;t++)u[2*t+0]=c[t],u[2*t+1]=c[t+1];const p=4*h-4;this.V_position=i=new Float32Array(2*p),this.V_angles=s=new Float32Array(2*p),this.V_tangents=a=new Float32Array(4*p),this.V_texcoord=n=new Float32Array(2*p);for(let t=0,e=h;t<e;t++)for(let e=0;e<4;e++){for(let a=0;a<2;a++)i[2*(4*t+e-2)+a]=g[2*t+a],s[2*(4*t+e)+a]=u[2*t+a];for(let s=0;s<4;s++)a[4*(4*t+e-2)+s]=f[4*t+s]}for(let t=0,e=h;t<e;t++)n[2*(4*t+0)+0]=-1,n[2*(4*t+1)+0]=-1,n[2*(4*t+2)+0]=1,n[2*(4*t+3)+0]=1,n[2*(4*t+0)+1]=-1,n[2*(4*t+1)+1]=1,n[2*(4*t+2)+1]=-1,n[2*(4*t+3)+1]=1;const d=6*(h-1);this.I_triangles=t=new Uint32Array(d);for(let e=0,s=h;e<s;e++)t[6*e+0]=0+4*e,t[6*e+1]=1+4*e,t[6*e+2]=3+4*e,t[6*e+3]=2+4*e,t[6*e+4]=0+4*e,t[6*e+5]=3+4*e}_update_scale(t,e){let s;const i=this.nvertices,a=4*i-4,n=this.tangents,o=new Float32Array(i-1),_=new Float32Array(2*i);this.V_segment=s=new Float32Array(2*a);for(let s=0,a=i-1;s<a;s++)o[s]=Math.sqrt((n[2*s+0]*t)**2+(n[2*s+1]*e)**2);let h=0;for(let t=0,e=i-1;t<e;t++)h+=o[t],_[2*(t+1)+0]=h,_[2*t+1]=h;for(let t=0,e=i;t<e;t++)for(let e=0;e<4;e++)for(let i=0;i<2;i++)s[2*(4*t+e)+i]=_[2*t+i];this.cumsum=h,this.vbo_segment.set_size(4*this.V_segment.length),this.vbo_segment.set_data(0,this.V_segment)}}s.LineGL=g,g.__name__=\"LineGL\"},\n", " function _(e,r,f){Object.defineProperty(f,\"__esModule\",{value:!0});var u=e(104);f.Program=u.Program;var t=e(106);f.Texture2d=t.Texture2d;var a=e(105);f.IndexBuffer=a.IndexBuffer,f.VertexBuffer=a.VertexBuffer},\n", " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(105);class a{constructor(t){this.gl=t,this.UTYPEMAP={float:\"uniform1fv\",vec2:\"uniform2fv\",vec3:\"uniform3fv\",vec4:\"uniform4fv\",int:\"uniform1iv\",ivec2:\"uniform2iv\",ivec3:\"uniform3iv\",ivec4:\"uniform4iv\",bool:\"uniform1iv\",bvec2:\"uniform2iv\",bvec3:\"uniform3iv\",bvec4:\"uniform4iv\",mat2:\"uniformMatrix2fv\",mat3:\"uniformMatrix3fv\",mat4:\"uniformMatrix4fv\",sampler1D:\"uniform1i\",sampler2D:\"uniform1i\",sampler3D:\"uniform1i\"},this.ATYPEMAP={float:\"vertexAttrib1f\",vec2:\"vertexAttrib2f\",vec3:\"vertexAttrib3f\",vec4:\"vertexAttrib4f\"},this.ATYPEINFO={float:[1,5126],vec2:[2,5126],vec3:[3,5126],vec4:[4,5126]},this._linked=!1,this._validated=!1,this._unset_variables=new Set,this._known_invalid=new Set,this._locations=new Map,this._samplers=new Map,this._attributes=new Map,this.handle=this.gl.createProgram()}delete(){this.gl.deleteProgram(this.handle)}activate(){this.gl.useProgram(this.handle)}deactivate(){this.gl.useProgram(0)}set_shaders(t,e){const i=this.gl;this._linked=!1;const s=i.createShader(i.VERTEX_SHADER),a=i.createShader(i.FRAGMENT_SHADER),r=[[t,s,\"vertex\"],[e,a,\"fragment\"]];for(const[t,e,s]of r){i.shaderSource(e,t),i.compileShader(e);if(!i.getShaderParameter(e,i.COMPILE_STATUS)){const t=i.getShaderInfoLog(e);throw new Error(`errors in ${s} shader:\\n${t}`)}}if(i.attachShader(this.handle,s),i.attachShader(this.handle,a),i.linkProgram(this.handle),!i.getProgramParameter(this.handle,i.LINK_STATUS)){const t=i.getProgramInfoLog(this.handle);throw new Error(\"Program link error:\\n\"+t)}this._unset_variables=this._get_active_attributes_and_uniforms(),i.detachShader(this.handle,s),i.detachShader(this.handle,a),i.deleteShader(s),i.deleteShader(a),this._known_invalid.clear(),this._linked=!0}_get_active_attributes_and_uniforms(){const t=this.gl;this._locations.clear();const e=new RegExp(\"(\\\\w+)\\\\s*(\\\\[(\\\\d+)\\\\])\\\\s*\"),i=t.getProgramParameter(this.handle,t.ACTIVE_UNIFORMS),s=[],a=[],r=[[s,t.getProgramParameter(this.handle,t.ACTIVE_ATTRIBUTES),t.getActiveAttrib,t.getAttribLocation],[a,i,t.getActiveUniform,t.getUniformLocation]];for(const[i,s,a,n]of r)for(let r=0;r<s;r+=1){const s=a.call(t,this.handle,r),o=s.name,h=o.match(e);if(null!=h){const t=h[1];for(let e=0;e<s.size;e+=1)i.push([`${t}[${e}]`,s.type])}else i.push([o,s.type]);this._locations.set(o,n.call(t,this.handle,o))}const n=new Set;for(const[t]of s)n.add(t);for(const[t]of a)n.add(t);return n}set_texture(t,e){var i;if(!this._linked)throw new Error(\"Cannot set uniform when program has no code\");const s=null!==(i=this._locations.get(t))&&void 0!==i?i:-1;if(s<0)this._known_invalid.has(t)||(this._known_invalid.add(t),console.log(`\"Variable ${t} is not an active texture`));else{this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate();{let i=this._samplers.size;this._samplers.has(t)&&(i=this._samplers.get(t)[2]),this._samplers.set(t,[e._target,e.handle,i]),this.gl.uniform1i(s,i)}}}set_uniform(t,e,i){var s;if(!this._linked)throw new Error(\"Cannot set uniform when program has no code\");const a=null!==(s=this._locations.get(t))&&void 0!==s?s:-1;if(a<0)return void(this._known_invalid.has(t)||(this._known_invalid.add(t),console.log(`Variable ${t} is not an active uniform`)));this._unset_variables.has(t)&&this._unset_variables.delete(t);let r=1;if(!e.startsWith(\"mat\")){const t=\"int\"==e||"bool"==e?"float":e.replace(/^ib/,"");r=Math.floor(i.length/this.ATYPEINFO[t][0])}if(r>1)for(let e=0;e<r;e+=1)if(this._unset_variables.has(${t}[${e}])){const i=`${t}[${e}]`;this._unset_variables.has(i)&&this._unset_variables.delete(i)}const n=this.UTYPEMAP[e];this.activate(),e.startsWith("mat")?this.gl[n](a,!1,i):this.gl[n](a,i)}set_attribute(t,e,i,a=0,r=0){var n;if(!this._linked)throw new Error("Cannot set attribute when program has no code");const o=null!==(n=this._locations.get(t))&&void 0!==n?n:-1;if(o<0)this._known_invalid.has(t)||(this._known_invalid.add(t),i instanceof s.VertexBuffer&&r>0||console.log(Variable ${t} is not an active attribute));else if(this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate(),i instanceof s.VertexBuffer){const[s,n]=this.ATYPEINFO[e],h="vertexAttribPointer",l=[s,n,!1,a,r];this._attributes.set(t,[i.handle,o,h,l])}else{const s=this.ATYPEMAP[e];this._attributes.set(t,[null,o,s,i])}}_pre_draw(){this.activate();for(const[t,e,i]of this._samplers.values())this.gl.activeTexture(this.gl.TEXTURE0+i),this.gl.bindTexture(t,e);for(const[t,e,i,s]of this._attributes.values())null!=t?(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,t),this.gl.enableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,…s])):(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,…s]));this._validated||(this._validated=!0,this._validate())}_validate(){if(this._unset_variables.size&&console.log("Program has unset variables: "+this._unset_variables),this.gl.validateProgram(this.handle),!this.gl.getProgramParameter(this.handle,this.gl.VALIDATE_STATUS))throw console.log(this.gl.getProgramInfoLog(this.handle)),new Error("Program validation error")}draw(t,e){if(!this._linked)throw new Error("Cannot draw program if code has not been set");if(e instanceof s.IndexBuffer){this._pre_draw(),e.activate();const i=e.buffer_size/2,s=this.gl.UNSIGNED_SHORT;this.gl.drawElements(t,i,s,0),e.deactivate()}else{const[i,s]=e;0!=s&&(this._pre_draw(),this.gl.drawArrays(t,i,s))}}}i.Program=a,a.__name__="Program"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class i{constructor(e){this.gl=e,this._usage=35048,this.buffer_size=0,this.handle=this.gl.createBuffer()}delete(){this.gl.deleteBuffer(this.handle)}activate(){this.gl.bindBuffer(this._target,this.handle)}deactivate(){this.gl.bindBuffer(this._target,null)}set_size(e){e!=this.buffer_size&&(this.activate(),this.gl.bufferData(this._target,e,this._usage),this.buffer_size=e)}set_data(e,t){this.activate(),this.gl.bufferSubData(this._target,e,t)}}s.Buffer=i,i.__name__="Buffer";class r extends i{constructor(){super(…arguments),this._target=34962}}s.VertexBuffer=r,r.__name__="VertexBuffer";class a extends i{constructor(){super(…arguments),this._target=34963}}s.IndexBuffer=a,a.__name__="IndexBuffer"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const a=t(11);class r{constructor(t){this.gl=t,this._target=3553,this._types={Int8Array:5120,Uint8Array:5121,Int16Array:5122,Uint16Array:5123,Int32Array:5124,Uint32Array:5125,Float32Array:5126},this.handle=this.gl.createTexture()}delete(){this.gl.deleteTexture(this.handle)}activate(){this.gl.bindTexture(this._target,this.handle)}deactivate(){this.gl.bindTexture(this._target,0)}_get_alignment(t){const e=[4,8,2,1];for(const i of e)if(t%i==0)return i;a.unreachable()}set_wrapping(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_S,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_T,e)}set_interpolation(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_MIN_FILTER,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_MAG_FILTER,e)}set_size([t,e],i){var a,r,s;t==(null===(a=this._shape_format)||void 0===a?void 0:a.width)&&e==(null===(r=this._shape_format)||void 0===r?void 0:r.height)&&i==(null===(s=this._shape_format)||void 0===s?void 0:s.format)||(this._shape_format={width:t,height:e,format:i},this.activate(),this.gl.texImage2D(this._target,0,i,t,e,0,i,this.gl.UNSIGNED_BYTE,null))}set_data(t,[e,i],a){this.activate();const{format:r}=this._shape_format,[s,h]=t,l=this._types[a.constructor.name];if(null==l)throw new Error(Type ${a.constructor.name} not allowed for texture);const _=this._get_alignment(e);4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,_),this.gl.texSubImage2D(this._target,0,s,h,e,i,r,l,a),4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,4)}}i.Texture2d=r,r.__name__="Texture2d"},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});class s{constructor(e,t){this.gl=e,this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.init()}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,i){if(0==t.length)return!0;const{width:s,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:s,height:h};return this.draw(t,i,a),!0}}i.BaseGLGlyph=s,s.__name__="BaseGLGlyph"},n”, ” function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.vertex_shader="\nprecision mediump float;\n\nconst float PI = 3.14159265358979323846264;\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\n\nuniform float u_pixel_ratio;\nuniform vec2 u_canvas_size, u_offset;\nuniform vec2 u_scale_aspect;\nuniform float u_scale_length;\n\nuniform vec4 u_color;\nuniform float u_antialias;\nuniform float u_length;\nuniform float u_linewidth;\nuniform float u_dash_index;\nuniform float u_closed;\n\nattribute vec2 a_position;\nattribute vec4 a_tangents;\nattribute vec2 a_segment;\nattribute vec2 a_angles;\nattribute vec2 a_texcoord;\n\nvarying vec4 v_color;\nvarying vec2 v_segment;\nvarying vec2 v_angles;\nvarying vec2 v_texcoord;\nvarying vec2 v_miter;\nvarying float v_length;\nvarying float v_linewidth;\n\nfloat cross(in vec2 v1, in vec2 v2)\n{\n return v1.x*v2.y - v1.y*v2.x;\n}\n\nfloat signed_distance(in vec2 v1, in vec2 v2, in vec2 v3)\n{\n return cross(v2-v1,v1-v3) / length(v2-v1);\n}\n\nvoid rotate( in vec2 v, in float alpha, out vec2 result )\n{\n float c = cos(alpha);\n float s = sin(alpha);\n result = vec2( c*v.x - s*v.y,\n s*v.x + c*v.y );\n}\n\nvoid main()\n{\n bool closed = (u_closed > 0.0);\n\n // Attributes and uniforms to varyings\n v_color = u_color;\n v_linewidth = u_linewidth;\n v_segment = a_segment * u_scale_length;\n v_length = u_length * u_scale_length;\n\n // Scale to map to pixel coordinates. The original algorithm from the paper\n // assumed isotropic scale. We obviously do not have this.\n vec2 abs_scale_aspect = abs(u_scale_aspect);\n vec2 abs_scale = u_scale_length * abs_scale_aspect;\n\n // Correct angles for aspect ratio\n vec2 av;\n av = vec2(1.0, tan(a_angles.x)) / abs_scale_aspect;\n v_angles.x = atan(av.y, av.x);\n av = vec2(1.0, tan(a_angles.y)) / abs_scale_aspect;\n v_angles.y = atan(av.y, av.x);\n\n // Thickness below 1 pixel are represented using a 1 pixel thickness\n // and a modified alpha\n v_color.a = min(v_linewidth, v_color.a);\n v_linewidth = max(v_linewidth, 1.0);\n\n // If color is fully transparent we just will discard the fragment anyway\n if( v_color.a <= 0.0 ) {\n gl_Position = vec4(0.0,0.0,0.0,1.0);\n return;\n }\n\n // This is the actual half width of the line\n float w = ceil(u_antialias+v_linewidth)/2.0;\n\n vec2 position = a_position;\n\n vec2 t1 = normalize(a_tangents.xy * abs_scale_aspect); // note the scaling for aspect ratio here\n vec2 t2 = normalize(a_tangents.zw * abs_scale_aspect);\n float u = a_texcoord.x;\n float v = a_texcoord.y;\n vec2 o1 = vec2( +t1.y, -t1.x);\n vec2 o2 = vec2( +t2.y, -t2.x);\n\n // This is a join\n // —————————————————————-\n if( t1 != t2 ) {\n float angle = atan (t1.x*t2.y-t1.y*t2.x, t1.x*t2.x+t1.y*t2.y); // Angle needs recalculation for some reason\n vec2 t = normalize(t1+t2);\n vec2 o = vec2( + t.y, - t.x);\n\n if ( u_dash_index > 0.0 )\n {\n // Broken angle\n // —————————————————————-\n if( (abs(angle) > THETA) ) {\n position += v * w * o / cos(angle/2.0);\n float s = sign(angle);\n if( angle < 0.0 ) {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n if( v == 1.0 ) {\n position -= 2.0 * w * t1 / sin(angle);\n u -= 2.0 * w / sin(angle);\n }\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n if( v == 1.0 ) {\n position += 2.0 * w * t2 / sin(angle);\n u += 2.0*w / sin(angle);\n }\n }\n } else {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n if( v == -1.0 ) {\n position += 2.0 * w * t1 / sin(angle);\n u += 2.0 * w / sin(angle);\n }\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n if( v == -1.0 ) {\n position -= 2.0 * w * t2 / sin(angle);\n u -= 2.0*w / sin(angle);\n }\n }\n }\n // Continuous angle\n // ————————————————————\n } else {\n position += v * w * o / cos(angle/2.0);\n if( u == +1.0 ) u = v_segment.y;\n else u = v_segment.x;\n }\n }\n\n // Solid line\n // ——————————————————————–\n else\n {\n position.xy += v * w * o / cos(angle/2.0);\n if( angle < 0.0 ) {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n }\n } else {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n }\n }\n }\n\n // This is a line start or end (t1 == t2)\n // ————————————————————————\n } else {\n position += v * w * o1;\n if( u == -1.0 ) {\n u = v_segment.x - w;\n position -= w * t1;\n } else {\n u = v_segment.y + w;\n position += w * t2;\n }\n }\n\n // Miter distance\n // ————————————————————————\n vec2 t;\n vec2 curr = a_position * abs_scale;\n if( a_texcoord.x < 0.0 ) {\n vec2 next = curr + t2*(v_segment.y-v_segment.x);\n\n rotate( t1, +v_angles.x/2.0, t);\n v_miter.x = signed_distance(curr, curr+t, position);\n\n rotate( t2, +v_angles.y/2.0, t);\n v_miter.y = signed_distance(next, next+t, position);\n } else {\n vec2 prev = curr - t1*(v_segment.y-v_segment.x);\n\n rotate( t1, -v_angles.x/2.0,t);\n v_miter.x = signed_distance(prev, prev+t, position);\n\n rotate( t2, -v_angles.y/2.0,t);\n v_miter.y = signed_distance(curr, curr+t, position);\n }\n\n if (!closed && v_segment.x <= 0.0) {\n v_miter.x = 1e10;\n }\n if (!closed && v_segment.y >= v_length)\n {\n v_miter.y = 1e10;\n }\n\n v_texcoord = vec2( u, v*w );\n\n // Calculate position in device coordinates. Note that we\n // already scaled with abs scale above.\n vec2 normpos = position * sign(u_scale_aspect);\n normpos += 0.5; // make up for Bokeh’s offset\n normpos /= u_canvas_size / u_pixel_ratio; // in 0..1\n gl_Position = vec4(normpos*2.0-1.0, 0.0, 1.0);\n gl_Position.y = -1.0;\n}\n"},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.fragment_shader="\nprecision mediump float;\n\nconst float PI = 3.14159265358979323846264;\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\n\nuniform sampler2D u_dash_atlas;\n\nuniform vec2 u_linecaps;\nuniform float u_miter_limit;\nuniform float u_linejoin;\nuniform float u_antialias;\nuniform float u_dash_phase;\nuniform float u_dash_period;\nuniform float u_dash_index;\nuniform vec2 u_dash_caps;\nuniform float u_closed;\n\nvarying vec4 v_color;\nvarying vec2 v_segment;\nvarying vec2 v_angles;\nvarying vec2 v_texcoord;\nvarying vec2 v_miter;\nvarying float v_length;\nvarying float v_linewidth;\n\n// Compute distance to cap —————————————————-\nfloat cap( int type, float dx, float dy, float t, float linewidth )\n{\n float d = 0.0;\n dx = abs(dx);\n dy = abs(dy);\n if (type == 0) discard; // None\n else if (type == 1) d = sqrt(dx*dx+dy*dy); // Round\n else if (type == 3) d = (dx+abs(dy)); // Triangle in\n else if (type == 2) d = max(abs(dy),(t+dx-abs(dy))); // Triangle out\n else if (type == 4) d = max(dx,dy); // Square\n else if (type == 5) d = max(dx+t,dy); // Butt\n return d;\n}\n\n// Compute distance to join ————————————————-\nfloat join( in int type, in float d, in vec2 segment, in vec2 texcoord, in vec2 miter,\n in float linewidth )\n{\n // texcoord.x is distance from start\n // texcoord.y is distance from centerline\n // segment.x and y indicate the limits (as for texcoord.x) for this segment\n\n float dx = texcoord.x;\n\n // Round join\n if( type == 1 ) {\n if (dx < segment.x) {\n d = max(d,length( texcoord - vec2(segment.x,0.0)));\n //d = length( texcoord - vec2(segment.x,0.0));\n } else if (dx > segment.y) {\n d = max(d,length( texcoord - vec2(segment.y,0.0)));\n //d = length( texcoord - vec2(segment.y,0.0));\n }\n }\n // Bevel join\n else if ( type == 2 ) {\n if (dx < segment.x) {\n vec2 x = texcoord - vec2(segment.x,0.0);\n d = max(d, max(abs(x.x), abs(x.y)));\n\n } else if (dx > segment.y) {\n vec2 x = texcoord - vec2(segment.y,0.0);\n d = max(d, max(abs(x.x), abs(x.y)));\n }\n / Original code for bevel which does not work for us\n if( (dx < segment.x) || (dx > segment.y) )\n d = max(d, min(abs(x.x),abs(x.y)));\n /\n }\n\n return d;\n}\n\nvoid main()\n{\n // If color is fully transparent we just discard the fragment\n if( v_color.a <= 0.0 ) {\n discard;\n }\n\n // Test if dash pattern is the solid one (0)\n bool solid = (u_dash_index == 0.0);\n\n // Test if path is closed\n bool closed = (u_closed > 0.0);\n\n vec4 color = v_color;\n float dx = v_texcoord.x;\n float dy = v_texcoord.y;\n float t = v_linewidth/2.0-u_antialias;\n float width = 1.0; //v_linewidth; original code had dashes scale with line width, we do not\n float d = 0.0;\n\n vec2 linecaps = u_linecaps;\n vec2 dash_caps = u_dash_caps;\n float line_start = 0.0;\n float line_stop = v_length;\n\n // Apply miter limit; fragments too far into the miter are simply discarded\n if( (dx < v_segment.x) || (dx > v_segment.y) ) {\n float into_miter = max(v_segment.x - dx, dx - v_segment.y);\n if (into_miter > u_miter_limit*v_linewidth/2.0)\n discard;\n }\n\n // Solid line ————————————————————–\n if( solid ) {\n d = abs(dy);\n if( (!closed) && (dx < line_start) ) {\n d = cap( int(u_linecaps.x), abs(dx), abs(dy), t, v_linewidth );\n }\n else if( (!closed) && (dx > line_stop) ) {\n d = cap( int(u_linecaps.y), abs(dx)-line_stop, abs(dy), t, v_linewidth );\n }\n else {\n d = join( int(u_linejoin), abs(dy), v_segment, v_texcoord, v_miter, v_linewidth );\n }\n\n // Dash line ————————————————————–\n } else {\n float segment_start = v_segment.x;\n float segment_stop = v_segment.y;\n float segment_center= (segment_start+segment_stop)/2.0;\n float freq = u_dash_period*width;\n float u = mod( dx + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n float dash_center= tex.x * width;\n float dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n float dash_start = dx - u + _start;\n float dash_stop = dx - u + _stop;\n\n // Compute extents of the first dash (the one relative to v_segment.x)\n // Note: this could be computed in the vertex shader\n if( (dash_stop < segment_start) && (dash_caps.x != 5.0) ) {\n float u = mod(segment_start + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n dash_center= tex.x * width;\n //dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n dash_start = segment_start - u + _start;\n dash_stop = segment_start - u + _stop;\n }\n\n // Compute extents of the last dash (the one relatives to v_segment.y)\n // Note: This could be computed in the vertex shader\n else if( (dash_start > segment_stop) && (dash_caps.y != 5.0) ) {\n float u = mod(segment_stop + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n dash_center= tex.x * width;\n //dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n dash_start = segment_stop - u + _start;\n dash_stop = segment_stop - u + _stop;\n }\n\n // This test if the we are dealing with a discontinuous angle\n bool discontinuous = ((dx < segment_center) && abs(v_angles.x) > THETA) ||\n ((dx >= segment_center) && abs(v_angles.y) > THETA);\n //if( dx < line_start) discontinuous = false;\n //if( dx > line_stop) discontinuous = false;\n\n float d_join = join( int(u_linejoin), abs(dy),\n v_segment, v_texcoord, v_miter, v_linewidth );\n\n // When path is closed, we do not have room for linecaps, so we make room\n // by shortening the total length\n if (closed) {\n line_start += v_linewidth/2.0;\n line_stop -= v_linewidth/2.0;\n }\n\n // We also need to take antialias area into account\n //line_start += u_antialias;\n //line_stop -= u_antialias;\n\n // Check is dash stop is before line start\n if( dash_stop <= line_start ) {\n discard;\n }\n // Check is dash start is beyond line stop\n if( dash_start >= line_stop ) {\n discard;\n }\n\n // Check if current dash start is beyond segment stop\n if( discontinuous ) {\n // Dash start is beyond segment, we discard\n if( (dash_start > segment_stop) ) {\n discard;\n //gl_FragColor = vec4(1.0,0.0,0.0,.25); return;\n }\n\n // Dash stop is before segment, we discard\n if( (dash_stop < segment_start) ) {\n discard; //gl_FragColor = vec4(0.0,1.0,0.0,.25); return;\n }\n\n // Special case for round caps (nicer with this)\n if( dash_caps.x == 1.0 ) {\n if( (u > _stop) && (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0)) {\n discard;\n }\n }\n\n // Special case for round caps (nicer with this)\n if( dash_caps.y == 1.0 ) {\n if( (u < _start) && (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0)) {\n discard;\n }\n }\n\n // Special case for triangle caps (in & out) and square\n // We make sure the cap stop at crossing frontier\n if( (dash_caps.x != 1.0) && (dash_caps.x != 5.0) ) {\n if( (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0) ) {\n float a = v_angles.x/2.0;\n float x = (segment_start-dx)*cos(a) - dy*sin(a);\n float y = (segment_start-dx)*sin(a) + dy*cos(a);\n if( x > 0.0 ) discard;\n // We transform the cap into square to avoid holes\n dash_caps.x = 4.0;\n }\n }\n\n // Special case for triangle caps (in & out) and square\n // We make sure the cap stop at crossing frontier\n if( (dash_caps.y != 1.0) && (dash_caps.y != 5.0) ) {\n if( (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0) ) {\n float a = v_angles.y/2.0;\n float x = (dx-segment_stop)*cos(a) - dy*sin(a);\n float y = (dx-segment_stop)*sin(a) + dy*cos(a);\n if( x > 0.0 ) discard;\n // We transform the caps into square to avoid holes\n dash_caps.y = 4.0;\n }\n }\n }\n\n // Line cap at start\n if( (dx < line_start) && (dash_start < line_start) && (dash_stop > line_start) ) {\n d = cap( int(linecaps.x), dx-line_start, dy, t, v_linewidth);\n }\n // Line cap at stop\n else if( (dx > line_stop) && (dash_stop > line_stop) && (dash_start < line_stop) ) {\n d = cap( int(linecaps.y), dx-line_stop, dy, t, v_linewidth);\n }\n // Dash cap left - dash_type = -1, 0 or 1, but there may be roundoff errors\n else if( dash_type < -0.5 ) {\n d = cap( int(dash_caps.y), abs(u-dash_center), dy, t, v_linewidth);\n if( (dx > line_start) && (dx < line_stop) )\n d = max(d,d_join);\n }\n // Dash cap right\n else if( dash_type > 0.5 ) {\n d = cap( int(dash_caps.x), abs(dash_center-u), dy, t, v_linewidth);\n if( (dx > line_start) && (dx < line_stop) )\n d = max(d,d_join);\n }\n // Dash body (plain)\n else {// if( dash_type > -0.5 && dash_type < 0.5) {\n d = abs(dy);\n }\n\n // Line join\n if( (dx > line_start) && (dx < line_stop)) {\n if( (dx <= segment_start) && (dash_start <= segment_start)\n && (dash_stop >= segment_start) ) {\n d = d_join;\n // Antialias at outer border\n float angle = PI/2.+v_angles.x;\n float f = abs( (segment_start - dx)*cos(angle) - dy*sin(angle));\n d = max(f,d);\n }\n else if( (dx > segment_stop) && (dash_start <= segment_stop)\n && (dash_stop >= segment_stop) ) {\n d = d_join;\n // Antialias at outer border\n float angle = PI/2.+v_angles.y;\n float f = abs((dx - segment_stop)*cos(angle) - dy*sin(angle));\n d = max(f,d);\n }\n else if( dx < (segment_start - v_linewidth/2.)) {\n discard;\n }\n else if( dx > (segment_stop + v_linewidth/2.)) {\n discard;\n }\n }\n else if( dx < (segment_start - v_linewidth/2.)) {\n discard;\n }\n else if( dx > (segment_stop + v_linewidth/2.)) {\n discard;\n }\n }\n\n // Distance to border ——————————————————\n d = d - t;\n if( d < 0.0 ) {\n gl_FragColor = color;\n } else {\n d /= u_antialias;\n gl_FragColor = vec4(color.rgb, exp(-d*d)*color.a);\n }\n}\n"},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),l=e(93),_=e(100),n=s.__importStar(e(101)),o=s.__importStar(e(28)),a=e(88);class h extends l.XYGlyphView{_inner_loop(e,i,t,s,l){for(const _ of i)0!=_?isNaN(t[_]+s[_])?(e.closePath(),l.apply(e),e.beginPath()):e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]));e.closePath(),l.call(e)}_render(e,i,{sx:t,sy:s}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner_loop(e,i,t,s,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner_loop(e,i,t,s,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_value(e),this._inner_loop(e,i,t,s,e.stroke))}draw_legend_for_index(e,i,t){_.generic_area_legend(this.visuals,e,i,t)}_hit_point(e){const i=new a.Selection;return n.point_in_poly(e.sx,e.sy,this.sx,this.sy)&&(i.add_to_selected_glyphs(this.model),i.view=this),i}}t.PatchView=h,h.__name__="PatchView";class r extends l.XYGlyph{constructor(e){super(e)}static init_Patch(){this.prototype.default_view=h,this.mixins([o.Line,o.Fill,o.Hatch])}}t.Patch=r,r.__name__="Patch",r.init_Patch()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x1[r],n=this._x2[r],a=this._y[r];isNaN(i+n+a)||!isFinite(i+n+a)?e.add_empty():e.add(t(i,n),a,s(i,n),a)}}_inner(e,t,s,i,r){e.beginPath();for(let s=0,r=t.length;s<r;s++)e.lineTo(t[s],i[s]);for(let t=s.length-1;t>=0;t–)e.lineTo(s[t],i[t]);e.closePath(),r.call(e)}_render(e,t,{sx1:s,sx2:i,sy:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}_hit_point(e){const t=this.sy.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e<r;e++)s[e]=this.sx1[e],i[e]=this.sy[e],s[t+e]=this.sx2[t-e-1],i[t+e]=this.sy[t-e-1];const n=new h.Selection;return a.point_in_poly(e.sx,e.sy,s,i)&&(n.add_to_selected_glyphs(this.model),n.view=this),n}scenterxy(e){return[(this.sx1[e]+this.sx2[e])/2,this.sy[e]]}_map_data(){this.sx1=this.renderer.xscale.v_compute(this._x1),this.sx2=this.renderer.xscale.v_compute(this._x2),this.sy=this.renderer.yscale.v_compute(this._y)}}s.HAreaView=l,l.__name__="HAreaView";class o extends n.Area{constructor(e){super(e)}static init_HArea(){this.prototype.default_view=l,this.define({x1:[_.XCoordinateSpec,{field:"x1"}],x2:[_.XCoordinateSpec,{field:"x2"}],y:[_.YCoordinateSpec,{field:"y"}]})}}s.HArea=o,o.__name__="HArea",o.init_HArea()},n”, ” function _(e,_,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e(1),r=e(94),t=e(100),n=a.__importStar(e(28));class s extends r.GlyphView{draw_legend_for_index(e,_,i){t.generic_area_legend(this.visuals,e,_,i)}}i.AreaView=s,s.__name__="AreaView";class c extends r.Glyph{constructor(e){super(e)}static init_Area(){this.mixins([n.Fill,n.HatchVector])}}i.Area=c,c.__name__="Area",c.init_Area()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x[r],n=this._y1[r],a=this._y2[r];isNaN(i+n+a)||!isFinite(i+n+a)?e.add_empty():e.add(i,t(n,a),i,s(n,a))}}_inner(e,t,s,i,r){e.beginPath();for(let i=0,r=s.length;i<r;i++)e.lineTo(t[i],s[i]);for(let s=i.length-1;s>=0;s–)e.lineTo(t[s],i[s]);e.closePath(),r.call(e)}_render(e,t,{sx:s,sy1:i,sy2:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}scenterxy(e){return[this.sx[e],(this.sy1[e]+this.sy2[e])/2]}_hit_point(e){const t=this.sx.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e<r;e++)s[e]=this.sx[e],i[e]=this.sy1[e],s[t+e]=this.sx[t-e-1],i[t+e]=this.sy2[t-e-1];const n=new h.Selection;return a.point_in_poly(e.sx,e.sy,s,i)&&(n.add_to_selected_glyphs(this.model),n.view=this),n}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sy1=this.renderer.yscale.v_compute(this._y1),this.sy2=this.renderer.yscale.v_compute(this._y2)}}s.VAreaView=l,l.__name__="VAreaView";class o extends n.Area{constructor(e){super(e)}static init_VArea(){this.prototype.default_view=l,this.define({x:[_.XCoordinateSpec,{field:"x"}],y1:[_.YCoordinateSpec,{field:"y1"}],y2:[_.YCoordinateSpec,{field:"y2"}]})}}s.VArea=o,o.__name__="VArea",o.init_VArea()},n”, ” function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),n=i(81),c=t.__importStar(i(18)),o=i(88),r=i(24),_=i(86);class a extends n.Model{constructor(i){super(i)}static init_CDSView(){this.define({filters:[c.Array,[]],source:[c.Instance]}),this.internal({indices:[c.Any],indices_map:[c.Any,{}],masked:[c.Any,null]})}initialize(){super.initialize(),this.compute_indices()}connect_signals(){super.connect_signals(),this.connect(this.properties.filters.change,()=>this.compute_indices());const i=()=>{const i=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,i),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,i),this.connect(this.source.patching,i)))};let e=null!=this.source;e?i():this.connect(this.properties.source.change,()=>{e||(i(),e=!0)})}compute_indices(){var i;const{source:e}=this;if(null==e)return;const s=null!==(i=e.get_length())&&void 0!==i?i:1,t=r.Indices.all_set(s);for(const i of this.filters)t.intersect(i.compute_indices(e));this.indices=t,this._indices=[…t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let i=0;i<this._indices.length;i++)this.indices_map[this._indices[i]]=i}convert_selection_from_subset(i){const e=i.indices.map(i=>this._indices[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_selection_to_subset(i){const e=i.indices.map(i=>this.indices_map[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_indices_from_subset(i){return i.map(i=>this._indices[i])}}s.CDSView=a,a.__name__="CDSView",a.init_CDSView()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(9);async function i(e,n,t){const o=new e(Object.assign(Object.assign({},t),{model:n}));return o.initialize(),await o.lazy_initialize(),o}t.build_view=async function(e,n={parent:null},t=(e=>e.default_view)){const o=await i(t(e),e,n);return o.connect_signals(),o},t.build_views=async function(e,n,t={parent:null},s=(e=>e.default_view)){const c=o.difference([…e.keys()],n);for(const n of c)e.get(n).remove(),e.delete(n);const a=[],f=n.filter(n=>!e.has(n));for(const n of f){const o=await i(s(n),n,t);e.set(n,o),a.push(o)}for(const e of a)e.connect_signals();return a},t.remove_views=function(e){for(const[n,t]of e)t.remove(),e.delete(n)}},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),i=e(91),s=e(117),a=t.__importStar(e(18)),o=e(115),_=e(11);class l extends i.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model;let r=null,n=null;const t={v_compute(n){_.assert(null==r);const[t]=r=e.layout_provider.get_edge_coordinates(n);return t}},i={v_compute(e){_.assert(null!=r);const[,n]=r;return r=null,n}},s={v_compute(r){_.assert(null==n);const[t]=n=e.layout_provider.get_node_coordinates(r);return t}},a={v_compute(e){_.assert(null!=n);const[,r]=n;return n=null,r}},{edge_renderer:l,node_renderer:d}=this.model;l.glyph.properties.xs.internal=!0,l.glyph.properties.ys.internal=!0,d.glyph.properties.x.internal=!0,d.glyph.properties.y.internal=!0,l.glyph.xs={expr:t},l.glyph.ys={expr:i},d.glyph.x={expr:s},d.glyph.y={expr:a};const{parent:p}=this;this.edge_view=await o.build_view(l,{parent:p}),this.node_view=await o.build_view(d,{parent:p})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,()=>{this.edge_view.set_data(!1),this.node_view.set_data(!1),this.request_render()})}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}}n.GraphRendererView=l,l.__name__="GraphRendererView";class d extends i.DataRenderer{constructor(e){super(e)}static init_GraphRenderer(){this.prototype.default_view=l,this.define({layout_provider:[a.Instance],node_renderer:[a.Instance],edge_renderer:[a.Instance],selection_policy:[a.Instance,()=>new s.NodesOnly],inspection_policy:[a.Instance,()=>new s.NodesOnly]})}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}n.GraphRenderer=d,d.__name__="GraphRenderer",d.init_GraphRenderer()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const d=e(81),s=e(12),o=e(9),_=e(88);class i extends d.Model{constructor(e){super(e)}_hit_test_nodes(e,t){if(!t.model.visible)return null;const n=t.node_view.glyph.hit_test(e);return null==n?null:t.node_view.model.view.convert_selection_from_subset(n)}_hit_test_edges(e,t){if(!t.model.visible)return null;const n=t.edge_view.glyph.hit_test(e);return null==n?null:t.edge_view.model.view.convert_selection_from_subset(n)}}n.GraphHitTestPolicy=i,i.__name__="GraphHitTestPolicy";class r extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.model.get_selection_manager().get_or_create_inspector(n.node_view.model);return o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesOnly=r,r.__name__="NodesOnly";class c extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}get_linked_edges(e,t,n){let d=[];"selection"==n?d=e.selected.indices.map(t=>e.data.index[t]):"inspection"==n&&(d=e.inspected.indices.map(t=>e.data.index[t]));const s=[];for(let e=0;e<t.data.start.length;e++)(o.contains(d,t.data.start[e])||o.contains(d,t.data.end[e]))&&s.push(e);const i=new _.Selection;for(const e of s)i.multiline_indices[e]=[0];return i.indices=s,i}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;s.update(e,n,d);const o=t.edge_renderer.data_source.selected,_=this.get_linked_edges(t.node_renderer.data_source,t.edge_renderer.data_source,"selection");return o.update(_,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model);o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model),i=this.get_linked_edges(n.node_view.model.data_source,n.edge_view.model.data_source,"inspection");return _.update(i,d,s),n.edge_view.model.data_source.setv({inspected:_},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesAndLinkedEdges=c,c.__name__="NodesAndLinkedEdges";class a extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_edges(e,t)}get_linked_nodes(e,t,n){let d=[];"selection"==n?d=t.selected.indices:"inspection"==n&&(d=t.inspected.indices);const i=[];for(const e of d)i.push(t.data.start[e]),i.push(t.data.end[e]);const r=o.uniq(i).map(t=>s.indexOf(e.data.index,t));return new _.Selection({indices:r})}do_selection(e,t,n,d){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,n,d);const o=t.node_renderer.data_source.selected,_=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,"selection");return o.update(_,n,d),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model);o.update(e,d,s),n.edge_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model),i=this.get_linked_nodes(n.node_view.model.data_source,n.edge_view.model.data_source,"inspection");return _.update(i,d,s),n.node_view.model.data_source.setv({inspected:_},{silent:!0}),n.edge_view.model.data_source.inspect.emit([n.edge_view,{geometry:t}]),!o.is_empty()}}n.EdgesAndLinkedNodes=a,a.__name__="EdgesAndLinkedNodes"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e(81);class o extends s.Model{do_selection(e,t,n,s){return null!==e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=o,o.__name__="SelectionPolicy";class r extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=r,r.__name__="IntersectRenderers";class c extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=c,c.__name__="UnionRenderers"},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.concat=function(t,…e){let n=t.length;for(const t of e)n+=t.length;const o=new t.constructor(n);o.set(t,0);let c=t.length;for(const t of e)o.set(t,c),c+=t.length;return o}},n”, ” function _(n,o,e){function t(…n){const o=new Set;for(const e of n)for(const n of e)o.add(n);return o}Object.defineProperty(e,"__esModule",{value:!0}),e.union=t,e.intersection=function(n,…o){const e=new Set;n:for(const t of n){for(const n of o)if(!n.has(t))continue n;e.add(t)}return e},e.difference=function(n,…o){const e=new Set(n);for(const n of t(…o))e.delete(n);return e}},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(14);class o{constructor(e){this.document=e}}s.DocumentEvent=o,o.__name__="DocumentEvent";class r extends o{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=r,r.__name__="DocumentEventBatch";class d extends o{}s.DocumentChangedEvent=d,d.__name__="DocumentChangedEvent";class _ extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}json(e){const t=this.msg_data,s=n.HasProps._value_to_json(t),o=new Set;return n.HasProps._value_record_references(t,o,{recursive:!0}),{kind:"MessageSent",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=_,_.__name__="MessageSentEvent";class i extends d{constructor(e,t,s,n,o,r,d){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=r,this.hint=d}json(e){if("id"===this.attr)throw new Error("’id’ field should never change, whatever code just set it is wrong");if(null!=this.hint)return this.hint.json(e);const t=this.new_,s=n.HasProps._value_to_json(t),o=new Set;n.HasProps._value_record_references(t,o,{recursive:!0}),o.has(this.model)&&this.model!==t&&o.delete(this.model);for(const t of o)e.add(t);return{kind:"ModelChanged",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=i,i.__name__="ModelChangedEvent";class a extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}json(e){return{kind:"ColumnsPatched",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=a,a.__name__="ColumnsPatchedEvent";class c extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}json(e){return{kind:"ColumnsStreamed",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=c,c.__name__="ColumnsStreamedEvent";class h extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}json(e){return{kind:"TitleChanged",title:this.title}}}s.TitleChangedEvent=h,h.__name__="TitleChangedEvent";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return n.HasProps._value_record_references(this.model,e,{recursive:!0}),{kind:"RootAdded",model:this.model.ref()}}}s.RootAddedEvent=u,u.__name__="RootAddedEvent";class l extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return{kind:"RootRemoved",model:this.model.ref()}}}s.RootRemovedEvent=l,l.__name__="RootRemovedEvent"},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),l=e(123),_=i.__importStar(e(28));class o extends l.UpperLowerView{connect_signals(){super.connect_signals();const e=()=>this.set_data(this.model.source);this.connect(this.model.change,e),this.connect(this.model.source.streaming,e),this.connect(this.model.source.patching,e),this.connect(this.model.source.change,e)}_render(){this._map_data();const{ctx:e}=this.layer;e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s<t;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);for(let s=this._upper_sx.length-1;s>=0;s–)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_value(e),e.fill()),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s<t;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);this.visuals.line.doit&&(this.visuals.line.set_value(e),e.stroke()),e.beginPath(),e.moveTo(this._upper_sx[0],this._upper_sy[0]);for(let s=0,t=this._upper_sx.length;s<t;s++)e.lineTo(this._upper_sx[s],this._upper_sy[s]);this.visuals.line.doit&&(this.visuals.line.set_value(e),e.stroke())}}t.BandView=o,o.__name__="BandView";class n extends l.UpperLower{constructor(e){super(e)}static init_Band(){this.prototype.default_view=o,this.mixins([_.Line,_.Fill]),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}}t.Band=n,n.__name__="Band",n.init_Band()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),o=e(36),r=e(85),p=s.__importStar(e(18));class _ extends o.AnnotationView{initialize(){super.initialize(),this.set_data(this.model.source)}set_data(e){super.set_data(e),this.visuals.warm_cache(e),this.plot_view.request_render()}_map_data(){const{frame:e}=this.plot_view,t=this.model.dimension,i=this.coordinates.x_scale,s=this.coordinates.y_scale,o="height"==t?s:i,r="height"==t?i:s,p="height"==t?e.yview:e.xview,_="height"==t?e.xview:e.yview;let a,n,h;a="data"==this.model.properties.lower.units?o.v_compute(this._lower):p.v_compute(this._lower),n="data"==this.model.properties.upper.units?o.v_compute(this._upper):p.v_compute(this._upper),h="data"==this.model.properties.base.units?r.v_compute(this._base):_.v_compute(this._base);const[c,u]="height"==t?[1,0]:[0,1],l=[a,h],w=[n,h];this._lower_sx=l[c],this._lower_sy=l[u],this._upper_sx=w[c],this._upper_sy=w[u]}}i.UpperLowerView=_,_.__name__="UpperLowerView";class a extends o.Annotation{constructor(e){super(e)}static init_UpperLower(){this.define({lower:[p.DistanceSpec],upper:[p.DistanceSpec],base:[p.DistanceSpec],dimension:[p.Dimension,"height"],source:[p.Instance,()=>new r.ColumnDataSource]})}}i.UpperLower=a,a.__name__="UpperLower",a.init_UpperLower()},n”, ” function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const e=t(1),o=t(36),n=t(15),l=e.__importStar(t(28)),a=e.__importStar(t(18)),h=t(79);s.EDGE_TOLERANCE=2.5;class r extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this)),this.connect(this.model.data_update,()=>this.plot_view.request_paint(this))}_render(){if(null==this.model.left&&null==this.model.right&&null==this.model.top&&null==this.model.bottom)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,s=this.coordinates.y_scale,e=(t,i,s,e,o)=>{let n;return n=null!=t?this.model.screen?t:"data"==i?s.compute(t):e.compute(t):o,n};this.sleft=e(this.model.left,this.model.left_units,i,t.xview,t.bbox.left),this.sright=e(this.model.right,this.model.right_units,i,t.xview,t.bbox.right),this.stop=e(this.model.top,this.model.top_units,s,t.yview,t.bbox.top),this.sbottom=e(this.model.bottom,this.model.bottom_units,s,t.yview,t.bbox.bottom),this._paint_box(this.sleft,this.sright,this.sbottom,this.stop)}_paint_box(t,i,s,e){const{ctx:o}=this.layer;o.save(),o.beginPath(),o.rect(t,e,i-t,s-e),this.visuals.fill.doit&&(this.visuals.fill.set_value(o),o.fill()),this.visuals.line.doit&&(this.visuals.line.set_value(o),o.stroke()),o.restore()}interactive_bbox(){const t=this.model.properties.line_width.value()+s.EDGE_TOLERANCE;return new h.BBox({x0:this.sleft-t,y0:this.stop-t,x1:this.sright+t,y1:this.sbottom+t})}interactive_hit(t,i){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,i)}cursor(t,i){return Math.abs(t-this.sleft)<3||Math.abs(t-this.sright)<3?this.model.ew_cursor:Math.abs(i-this.sbottom)<3||Math.abs(i-this.stop)<3?this.model.ns_cursor:t>this.sleft&&t<this.sright&&i>this.stop&&i<this.sbottom?this.model.in_cursor:null}}s.BoxAnnotationView=r,r.__name__="BoxAnnotationView";class u extends o.Annotation{constructor(t){super(t)}static init_BoxAnnotation(){this.prototype.default_view=r,this.mixins([l.Line,l.Fill]),this.define({render_mode:[a.RenderMode,"canvas"],top:[a.Number,null],top_units:[a.SpatialUnits,"data"],bottom:[a.Number,null],bottom_units:[a.SpatialUnits,"data"],left:[a.Number,null],left_units:[a.SpatialUnits,"data"],right:[a.Number,null],right_units:[a.SpatialUnits,"data"]}),this.internal({screen:[a.Boolean,!1],ew_cursor:[a.String,null],ns_cursor:[a.String,null],in_cursor:[a.String,null]}),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}initialize(){super.initialize(),this.data_update=new n.Signal0(this,"data_update")}update({left:t,right:i,top:s,bottom:e}){this.setv({left:t,right:i,top:s,bottom:e,screen:!0},{silent:!0}),this.data_update.emit()}}s.BoxAnnotation=u,u.__name__="BoxAnnotation",u.init_BoxAnnotation()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),a=t(36),s=t(126),r=t(130),n=t(132),l=t(145),_=t(156),h=t(157),m=t(158),d=o.__importStar(t(28)),c=o.__importStar(t(18)),u=o.__importStar(t(159)),g=t(9),p=t(12),f=t(8),b=t(11);class v extends a.AnnotationView{initialize(){super.initialize(),this._set_canvas_image()}connect_signals(){super.connect_signals(),this.connect(this.model.ticker.change,()=>this.plot_view.request_render()),this.connect(this.model.formatter.change,()=>this.plot_view.request_render()),null!=this.model.color_mapper&&this.connect(this.model.color_mapper.change,()=>{this._set_canvas_image(),this.plot_view.request_render()})}_get_size(){if(null==this.model.color_mapper)return{width:0,height:0};{const{width:t,height:e}=this.compute_legend_dimensions();return{width:t,height:e}}}_set_canvas_image(){if(null==this.model.color_mapper)return;let t,e,{palette:i}=this.model.color_mapper;switch("vertical"==this.model.orientation&&(i=g.reversed(i)),this.model.orientation){case"vertical":[t,e]=[1,i.length];break;case"horizontal":[t,e]=[i.length,1]}const o=document.createElement("canvas");o.width=t,o.height=e;const a=o.getContext("2d"),s=a.getImageData(0,0,t,e),r=new n.LinearColorMapper({palette:i}).rgba_mapper.v_compute(g.range(0,i.length));s.data.set(r),a.putImageData(s,0,0),this.image=o}compute_legend_dimensions(){const t=this._computed_image_dimensions(),[e,i]=[t.height,t.width],o=this._get_label_extent(),a=this._title_extent(),s=this._tick_extent(),{padding:r}=this.model;let n,l;switch(this.model.orientation){case"vertical":n=e+a+2*r,l=i+s+o+2*r;break;case"horizontal":n=e+a+s+o+2*r,l=i+2*r}return{width:l,height:n}}compute_legend_location(){const t=this.compute_legend_dimensions(),[e,i]=[t.height,t.width],o=this.model.margin,a=null!=this.panel?this.panel:this.plot_view.frame,[s,r]=a.bbox.ranges,{location:n}=this.model;let l,_;if(f.isString(n))switch(n){case"top_left":l=s.start+o,_=r.start+o;break;case"top_center":l=(s.end+s.start)/2-i/2,_=r.start+o;break;case"top_right":l=s.end-o-i,_=r.start+o;break;case"bottom_right":l=s.end-o-i,_=r.end-o-e;break;case"bottom_center":l=(s.end+s.start)/2-i/2,_=r.end-o-e;break;case"bottom_left":l=s.start+o,_=r.end-o-e;break;case"center_left":l=s.start+o,_=(r.end+r.start)/2-e/2;break;case"center":l=(s.end+s.start)/2-i/2,_=(r.end+r.start)/2-e/2;break;case"center_right":l=s.end-o-i,_=(r.end+r.start)/2-e/2}else if(f.isArray(n)&&2==n.length){const[t,i]=n;l=a.xview.compute(t),_=a.yview.compute(i)-e}else b.unreachable();return{sx:l,sy:_}}_render(){if(null==this.model.color_mapper)return;const{ctx:t}=this.layer;t.save();const{sx:e,sy:i}=this.compute_legend_location();t.translate(e,i),this._draw_bbox(t);const o=this._get_image_offset();t.translate(o.x,o.y),this._draw_image(t);const a=this.tick_info();this._draw_major_ticks(t,a),this._draw_minor_ticks(t,a),this._draw_major_labels(t,a),this.model.title&&this._draw_title(t),t.restore()}_draw_bbox(t){const e=this.compute_legend_dimensions();t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(0,0,e.width,e.height)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_image(t){const e=this._computed_image_dimensions();t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this.image,0,0,e.width,e.height),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_major_ticks(t,e){if(!this.visuals.major_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.major,_=this.model.major_tick_in,h=this.model.major_tick_out;t.save(),t.translate(s,r),this.visuals.major_tick_line.set_value(t);for(let e=0,a=n.length;e<a;e++)t.beginPath(),t.moveTo(Math.round(n[e]+i*h),Math.round(l[e]+o*h)),t.lineTo(Math.round(n[e]-i*_),Math.round(l[e]-o*_)),t.stroke();t.restore()}_draw_minor_ticks(t,e){if(!this.visuals.minor_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.minor,_=this.model.minor_tick_in,h=this.model.minor_tick_out;t.save(),t.translate(s,r),this.visuals.minor_tick_line.set_value(t);for(let e=0,a=n.length;e<a;e++)t.beginPath(),t.moveTo(Math.round(n[e]+i*h),Math.round(l[e]+o*h)),t.lineTo(Math.round(n[e]-i*_),Math.round(l[e]-o*_)),t.stroke();t.restore()}_draw_major_labels(t,e){if(!this.visuals.major_label_text.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],n=this.model.label_standoff+this._tick_extent(),[l,_]=[n*i,n*o],[h,m]=e.coords.major,d=e.labels.major;this.visuals.major_label_text.set_value(t),t.save(),t.translate(s+l,r+_);for(let e=0,a=h.length;e<a;e++)t.fillText(d[e],Math.round(h[e]+i*this.model.label_standoff),Math.round(m[e]+o*this.model.label_standoff));t.restore()}_draw_title(t){this.visuals.title_text.doit&&(t.save(),this.visuals.title_text.set_value(t),t.fillText(this.model.title,0,-this.model.title_standoff),t.restore())}_get_label_extent(){const t=this.tick_info().labels.major;let e;if(g.is_empty(t))e=0;else{const{ctx:i}=this.layer;switch(i.save(),this.visuals.major_label_text.set_value(i),this.model.orientation){case"vertical":e=g.max(t.map(t=>i.measureText(t.toString()).width));break;case"horizontal":e=u.measure_font(this.visuals.major_label_text.font_value()).height}e+=this.model.label_standoff,i.restore()}return e}_get_image_offset(){return{x:this.model.padding,y:this.model.padding+this._title_extent()}}_normals(){return"vertical"==this.model.orientation?[1,0]:[0,1]}_title_extent(){const t=this.model.title_text_font+" "+this.model.title_text_font_size+" "+this.model.title_text_font_style;return this.model.title?u.measure_font(t).height+this.model.title_standoff:0}_tick_extent(){return g.max([this.model.major_tick_out,this.model.minor_tick_out])}_computed_image_dimensions(){const t=this.plot_view.frame.bbox.height,e=this.plot_view.frame.bbox.width,i=this._title_extent();let o,a;switch(this.model.orientation){case"vertical":"auto"==this.model.height?null!=this.panel?o=t-2*this.model.padding-i:(o=g.max([25*this.model.color_mapper.palette.length,.3*t]),o=g.min([o,.8*t-2*this.model.padding-i])):o=this.model.height,a="auto"==this.model.width?25:this.model.width;break;case"horizontal":o="auto"==this.model.height?25:this.model.height,"auto"==this.model.width?null!=this.panel?a=e-2*this.model.padding:(a=g.max([25*this.model.color_mapper.palette.length,.3*e]),a=g.min([a,.8*e-2*this.model.padding])):a=this.model.width}return{width:a,height:o}}_tick_coordinate_scale(t){const e={source_range:new m.Range1d({start:this.model.color_mapper.metrics.min,end:this.model.color_mapper.metrics.max}),target_range:new m.Range1d({start:0,end:t})},{color_mapper:i}=this.model;if(i instanceof n.LinearColorMapper)return new l.LinearScale(e);if(i instanceof n.LogColorMapper)return new h.LogScale(e);if(i instanceof n.ScanningColorMapper){const{binning:t}=i.metrics;return new _.LinearInterpolationScale(Object.assign(Object.assign({},e),{binning:t}))}b.unreachable()}_format_major_labels(t,e){const i=this.model.formatter.doFormat(t,null);for(let t=0,o=e.length;t<o;t++)e[t]in this.model.major_label_overrides&&(i[t]=this.model.major_label_overrides[e[t]]);return i}tick_info(){const t=this._computed_image_dimensions();let e;switch(this.model.orientation){case"vertical":e=t.height;break;case"horizontal":e=t.width}const i=this._tick_coordinate_scale(e),[o,a]=this._normals(),[s,r]=[this.model.color_mapper.metrics.min,this.model.color_mapper.metrics.max],n=this.model.ticker.get_ticks(s,r,null,null,this.model.ticker.desired_num_ticks),l=n.major,_=n.minor,h=[[],[]],m=[[],[]];for(let t=0,e=l.length;t<e;t++)l[t]<s||l[t]>r||(h[o].push(l[t]),h[a].push(0));for(let t=0,e=_.length;t<e;t++)_[t]<s||_[t]>r||(m[o].push(_[t]),m[a].push(0));const d={major:this._format_major_labels(h[o],l)},c={major:[[],[]],minor:[[],[]]};return c.major[o]=i.v_compute(h[o]),c.minor[o]=i.v_compute(m[o]),c.major[a]=h[a],c.minor[a]=m[a],"vertical"==this.model.orientation&&(c.major[o]=p.map(c.major[o],t=>e-t),c.minor[o]=p.map(c.minor[o],t=>e-t)),{coords:c,labels:d}}}i.ColorBarView=v,v.__name__="ColorBarView";class w extends a.Annotation{constructor(t){super(t)}static init_ColorBar(){this.prototype.default_view=v,this.mixins([["major_label_",d.Text],["title_",d.Text],["major_tick_",d.Line],["minor_tick_",d.Line],["border_",d.Line],["bar_",d.Line],["background_",d.Fill]]),this.define({location:[c.Any,"top_right"],orientation:[c.Orientation,"vertical"],title:[c.String],title_standoff:[c.Number,2],width:[c.Any,"auto"],height:[c.Any,"auto"],scale_alpha:[c.Number,1],ticker:[c.Instance,()=>new s.BasicTicker],formatter:[c.Instance,()=>new r.BasicTickFormatter],major_label_overrides:[c.Any,{}],color_mapper:[c.Instance],label_standoff:[c.Number,5],margin:[c.Number,30],padding:[c.Number,10],major_tick_in:[c.Number,5],major_tick_out:[c.Number,0],minor_tick_in:[c.Number,0],minor_tick_out:[c.Number,0]}),this.override({background_fill_color:"#ffffff",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_align:"center",major_label_text_baseline:"middle",major_label_text_font_size:"11px",major_tick_line_color:"#ffffff",minor_tick_line_color:null,title_text_font_size:"13px",title_text_font_style:"italic"})}}i.ColorBar=w,w.__name__="ColorBar",w.init_ColorBar()},n”, ” function _(e,c,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(127);class r extends i.AdaptiveTicker{constructor(e){super(e)}}s.BasicTicker=r,r.__name__="BasicTicker"},n”, ” function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const a=t(1),s=t(128),n=t(9),r=a.__importStar(t(18));class _ extends s.ContinuousTicker{constructor(t){super(t)}static init_AdaptiveTicker(){this.define({base:[r.Number,10],mantissas:[r.Array,[1,2,5]],min_interval:[r.Number,0],max_interval:[r.Number]})}initialize(){super.initialize();const t=n.nth(this.mantissas,-1)/this.base,i=n.nth(this.mantissas,0)*this.base;this.extended_mantissas=[t,…this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,e){const a=i-t,s=this.get_ideal_interval(t,i,e),r=Math.floor(function(t,i=Math.E){return Math.log(t)/Math.log(i)}(s/this.base_factor,this.base)),_=this.base**r*this.base_factor,h=this.extended_mantissas,m=h.map(t=>Math.abs(e-a/(t*_))),o=h[n.argmin(m)];return c=o*_,l=this.get_min_interval(),u=this.get_max_interval(),Math.max(l,Math.min(u,c));var c,l,u}}e.AdaptiveTicker=_,_.__name__="AdaptiveTicker",_.init_AdaptiveTicker()},n”, ” function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(1),r=t(129),s=n.__importStar(t(18)),o=t(9);class _ extends r.Ticker{constructor(t){super(t)}static init_ContinuousTicker(){this.define({num_minor_ticks:[s.Number,5],desired_num_ticks:[s.Number,6]})}get_ticks(t,i,e,n,r){return this.get_ticks_no_defaults(t,i,n,this.desired_num_ticks)}get_ticks_no_defaults(t,i,e,n){const r=this.get_interval(t,i,n),s=Math.floor(t/r),_=Math.ceil(i/r);let c;c=isFinite(s)&&isFinite(_)?o.range(s,_+1):[];const u=c.map(t=>t*r).filter(e=>t<=e&&e<=i),a=this.num_minor_ticks,l=[];if(a>0&&u.length>0){const e=r/a,n=o.range(0,a).map(t=>t*e);for(const e of n.slice(1)){const n=u[0]-e;t<=n&&n<=i&&l.push(n)}for(const e of u)for(const r of n){const n=e+r;t<=n&&n<=i&&l.push(n)}}return{major:u,minor:l}}get_min_interval(){return this.min_interval}get_max_interval(){return null!=this.max_interval?this.max_interval:1/0}get_ideal_interval(t,i,e){return(i-t)/e}}e.ContinuousTicker=_,_.__name__="ContinuousTicker",_.init_ContinuousTicker()},n”, ” function _(e,c,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Ticker=r,r.__name__="Ticker"},n”, ” function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=i(1),s=i(131),n=r.__importStar(i(18));class o extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}static init_BasicTickFormatter(){this.define({precision:[n.Any,"auto"],use_scientific:[n.Boolean,!0],power_limit_high:[n.Number,5],power_limit_low:[n.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,r=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const s of i){const i=Math.abs(s);if(!(i<=r)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){const r=new Array(i.length);if(t)for(let t=0,s=i.length;t<s;t++)r[t]=i[t].toExponential(e);else for(let t=0,s=i.length;t<s;t++)r[t]=i[t].toFixed(e).replace(/(\.[0-9]?)0+$/,"$1").replace(/\.$/,"");return r}_auto_precision(i,t){const e=new Array(i.length),r=this.last_precision<=15;i:for(let s=this.last_precision;r?s<=15:s>=1;r?s++:s–){if(t){e[0]=i[0].toExponential(s);for(let t=1;t<i.length;t++)if(e[t]==e[t-1])continue i;this.last_precision=s;break}e[0]=i[0].toFixed(s).replace(/(\.[0-9]*?)0+$/,"$1").replace(/\.$/,"");for(let t=1;t<i.length;t++)if(e[t]=i[t].toFixed(s).replace(/(\.[0-9]*?)0+$/,"$1").replace(/\.$/,""),e[t]==e[t-1])continue i;this.last_precision=s;break}return this.last_precision}doFormat(i,t){if(0==i.length)return[];const e=this._need_sci(i),r="auto"==this.precision?this._auto_precision(i,e):this.precision;return this._format_with_precision(i,e,r)}}e.BasicTickFormatter=o,o.__name__="BasicTickFormatter",o.init_BasicTickFormatter()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(81);class c extends r.Model{constructor(e){super(e)}}o.TickFormatter=c,c.__name__="TickFormatter"},n”, ” function _(r,a,o){Object.defineProperty(o,"__esModule",{value:!0});var e=r(133);o.CategoricalColorMapper=e.CategoricalColorMapper;var p=r(138);o.CategoricalMarkerMapper=p.CategoricalMarkerMapper;var l=r(139);o.CategoricalPatternMapper=l.CategoricalPatternMapper;var C=r(140);o.ContinuousColorMapper=C.ContinuousColorMapper;var M=r(135);o.ColorMapper=M.ColorMapper;var n=r(141);o.LinearColorMapper=n.LinearColorMapper;var t=r(142);o.LogColorMapper=t.LogColorMapper;var i=r(143);o.ScanningColorMapper=i.ScanningColorMapper;var c=r(144);o.EqHistColorMapper=c.EqHistColorMapper},n”, ” function _(r,t,e){Object.defineProperty(e,"__esModule",{value:!0});const o=r(1),a=r(134),c=r(135),i=o.__importStar(r(18));class s extends c.ColorMapper{constructor(r){super(r)}static init_CategoricalColorMapper(){this.define({factors:[i.Array],start:[i.Number,0],end:[i.Number]})}_v_compute(r,t,e,{nan_color:o}){a.cat_v_compute(r,this.factors,e,t,this.start,this.end,o)}}e.CategoricalColorMapper=s,s.__name__="CategoricalColorMapper",s.init_CategoricalColorMapper()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const l=e(12),i=e(8);function u(e,n){if(e.length!=n.length)return!1;for(let t=0,l=e.length;t<l;t++)if(e[t]!==n[t])return!1;return!0}t._cat_equals=u,t.cat_v_compute=function(e,n,t,c,f,o,r){for(let _=0,g=e.length;_<g;_++){let g,s,d=e[_];i.isString(d)?g=l.index_of(n,d):(null!=f?d=null!=o?d.slice(f,o):d.slice(f):null!=o&&(d=d.slice(0,o)),g=1==d.length?l.index_of(n,d[0]):l.find_index(n,e=>u(e,d))),s=g<0||g>=t.length?r:t[g],c[_]=s}}},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),o=t(136),_=n.__importStar(t(18)),i=t(8),l=t(22),c=t(32);function a(t){return i.isNumber(t)?t:("#"!=t[0]&&(t=l.color2hex(t)),9!=t.length&&(t+="ff"),parseInt(t.slice(1),16))}function s(t){const e=new Uint32Array(t.length);for(let r=0,n=t.length;r<n;r++)e[r]=a(t[r]);return e}function p(t){if(c.is_little_endian){const e=new DataView(t.buffer);for(let r=0,n=t.length;r<n;r++)e.setUint32(4*r,t[r])}return new Uint8Array(t.buffer)}r._convert_color=a,r._convert_palette=s,r._uint32_to_rgba=p;class u extends o.Mapper{constructor(t){super(t)}static init_ColorMapper(){this.define({palette:[_.Any],nan_color:[_.Color,"gray"]})}v_compute(t){const e=new Array(t.length);return this._v_compute(t,e,this.palette,this._colors(t=>t)),e}get rgba_mapper(){const t=this,e=s(this.palette),r=this._colors(a);return{v_compute(n){const o=new Uint32Array(n.length);return t._v_compute(n,o,e,r),p(o)}}}_colors(t){return{nan_color:t(this.nan_color)}}}r.ColorMapper=u,u.__name__="ColorMapper",u.init_ColorMapper()},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(137);class s extends o.Transform{constructor(e){super(e)}compute(e){throw new Error("mapping single values is not supported")}}n.Mapper=s,s.__name__="Mapper"},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(81);class s extends r.Model{constructor(e){super(e)}}o.Transform=s,s.__name__="Transform"},n”, ” function _(r,e,a){Object.defineProperty(a,"__esModule",{value:!0});const t=r(1),s=r(134),i=r(136),c=t.__importStar(r(18));class n extends i.Mapper{constructor(r){super(r)}static init_CategoricalMarkerMapper(){this.define({factors:[c.Array],markers:[c.Array],start:[c.Number,0],end:[c.Number],default_value:[c.MarkerType,"circle"]})}v_compute(r){const e=new Array(r.length);return s.cat_v_compute(r,this.factors,this.markers,e,this.start,this.end,this.default_value),e}}a.CategoricalMarkerMapper=n,n.__name__="CategoricalMarkerMapper",n.init_CategoricalMarkerMapper()},n”, ” function _(t,e,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t(1),n=t(134),s=t(136),i=r.__importStar(t(18));class c extends s.Mapper{constructor(t){super(t)}static init_CategoricalPatternMapper(){this.define({factors:[i.Array],patterns:[i.Array],start:[i.Number,0],end:[i.Number],default_value:[i.HatchPatternType," "]})}v_compute(t){const e=new Array(t.length);return n.cat_v_compute(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=c,c.__name__="CategoricalPatternMapper",c.init_CategoricalPatternMapper()},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(135),s=t(90),l=t(9),i=t(8);class c extends n.ColorMapper{constructor(t){super(t),this._scan_data=null}static init_ContinuousColorMapper(){this.define(({Number:t,String:o,Null:e,Ref:n,Color:l,Or:i,Tuple:c,Array:a})=>({high:[i(t,e),null],low:[i(t,e),null],high_color:[i(l,e),null],low_color:[i(l,e),null],domain:[a(c(n(s.GlyphRenderer),i(o,a(o)))),[]]}))}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,()=>this.update_data()),this.connect(t.data_source.selected.change,()=>this.update_data())};this.connect(this.properties.domain.change,()=>t()),t()}update_data(){const{domain:t,palette:o}=this,e=[…this._collect(t)];this._scan_data=this.scan(e,o.length),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[o,e]of t)for(const t of i.isArray(e)?e:[e]){let e=o.data_source.get_column(t);e=o.view.indices.select(e);const n=o.view.masked,s=o.data_source.selected.indices;let c;if(null!=n&&s.length>0?c=l.intersection([…n],s):null!=n?c=[…n]:s.length>0&&(c=s),null!=c&&(e=l.map(c,t=>e[t])),e.length>0&&!i.isNumber(e[0]))for(const t of e)yield*t;else yield*e}}_v_compute(t,o,e,n){const{nan_color:s}=n;let{low_color:i,high_color:c}=n;null==i&&(i=e[0]),null==c&&(c=e[e.length-1]);const{domain:a}=this,r=l.is_empty(a)?t:[…this._collect(a)];this._scan_data=this.scan(r,e.length);for(let n=0,l=t.length;n<l;n++){const l=t[n];isNaN(l)?o[n]=s:o[n]=this.cmap(l,e,i,c,this._scan_data)}}_colors(t){return Object.assign(Object.assign({},super._colors(t)),{low_color:null!=this.low_color?t(this.low_color):void 0,high_color:null!=this.high_color?t(this.high_color):void 0})}}e.ContinuousColorMapper=c,c.__name__="ContinuousColorMapper",c.init_ContinuousColorMapper()},n”, ” function _(n,r,o){Object.defineProperty(o,"__esModule",{value:!0});const e=n(140),t=n(12);class a extends e.ContinuousColorMapper{constructor(n){super(n)}scan(n,r){const o=null!=this.low?this.low:t.min(n),e=null!=this.high?this.high:t.max(n);return{max:e,min:o,norm_factor:1/(e-o),normed_interval:1/r}}cmap(n,r,o,e,t){const a=r.length-1;if(n==t.max)return r[a];const i=(n-t.min)*t.norm_factor,l=Math.floor(i/t.normed_interval);return l<0?o:l>a?e:r[l]}}o.LinearColorMapper=a,a.__name__="LinearColorMapper"},n”, ” function _(o,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=o(140),r=o(12);class l extends e.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:r.min(o),e=null!=this.high?this.high:r.max(o);return{max:e,min:n,scale:t/(Math.log(e)-Math.log(n))}}cmap(o,t,n,e,r){const l=t.length-1;if(o>r.max)return e;if(o==r.max)return t[l];if(o<r.min)return n;const a=Math.log(o)-Math.log(r.min);let s=Math.floor(a*r.scale);return s>l&&(s=l),t[s]}}n.LogColorMapper=l,l.__name__="LogColorMapper"},n”, ” function _(n,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=n(140),o=n(12);class t extends i.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,r,i,t){if(n<t.binning[0])return r;if(n>t.binning[t.binning.length-1])return i;return e[o.left_edge_index(n,t.binning)]}}r.ScanningColorMapper=t,t.__name__="ScanningColorMapper"},n”, ” function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const i=n(1),o=n(143),r=n(12),s=n(9),a=i.__importStar(n(18)),l=n(19);class p extends o.ScanningColorMapper{constructor(n){super(n)}static init_EqHistColorMapper(){this.define({bins:[a.Int,65536]})}scan(n,t){const e=null!=this.low?this.low:r.min(n),i=null!=this.high?this.high:r.max(n),o=this.bins,a=s.linspace(e,i,o+1),p=r.bin_counts(n,a),c=new Array(o);for(let n=0,t=a.length;n<t-1;n++){const t=a[n],e=a[n+1];c[n]=(t+e)/2}const h=s.cumsum(p),u=h[h.length-1],g=r.map(h,n=>n/u);let m=t-1,_=[],M=0,f=2*t;for(;m!=t&&M<4&&0!=m;){const n=f/m;if(n>1e3)break;f=Math.round(Math.max(t*n,t));const e=s.range(0,f),i=r.map(g,n=>n*(f-1));_=r.interpolate(e,i,c);m=s.uniq(_).length-1,M++}if(0==m){_=[e,i];for(let n=0;n<t-1;n++)_.push(i)}else _=_.slice(_.length-t-1),m!=t&&l.logger.warn("EqHistColorMapper warning: Histogram equalization did not converge.");return{min:e,max:i,binning:_}}}e.EqHistColorMapper=p,p.__name__="EqHistColorMapper",p.init_EqHistColorMapper()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),i=e(146),_=r.__importStar(e(18));class a extends i.ContinuousScale{constructor(e){super(e)}static init_LinearScale(){this.internal({scan_result:[_.Any]})}compute(e){return this._linear_compute(e)}v_compute(e){return this._linear_v_compute(e)}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}n.LinearScale=a,a.__name__="LinearScale",a.init_LinearScale()},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const c=e(147);class s extends c.Scale{constructor(e){super(e)}}o.ContinuousScale=s,s.__name__="ContinuousScale"},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),_=t(148),s=t(24),i=n.__importStar(t(18));class a extends _.Transform{constructor(t){super(t)}static init_Scale(){this.internal({source_range:[i.Any],target_range:[i.Any]})}r_compute(t,e){return this.target_range.is_reversed?[this.compute(e),this.compute(t)]:[this.compute(t),this.compute(e)]}r_invert(t,e){return this.target_range.is_reversed?[this.invert(e),this.invert(t)]:[this.invert(t),this.invert(e)]}_linear_compute(t){const[e,r]=this._linear_compute_state();return e*t+r}_linear_v_compute(t){const[e,r]=this._linear_compute_state(),n=new s.NumberArray(t.length);for(let _=0;_<t.length;_++)n[_]=e*t[_]+r;return n}_linear_invert(t){const[e,r]=this._linear_compute_state();return(t-r)/e}_linear_v_invert(t){const[e,r]=this._linear_compute_state(),n=new s.NumberArray(t.length);for(let _=0;_<t.length;_++)n[_]=(t[_]-r)/e;return n}_linear_compute_state(){const t=this.source_range.start,e=this.source_range.end,r=this.target_range.start,n=(this.target_range.end-r)/(e-t);return[n,-n*t+r]}}r.Scale=a,a.__name__="Scale",a.init_Scale()},n”, ” function _(r,o,t){Object.defineProperty(t,"__esModule",{value:!0});var e=r(149);t.CustomJSTransform=e.CustomJSTransform;var a=r(150);t.Dodge=a.Dodge;var n=r(152);t.Interpolator=n.Interpolator;var p=r(153);t.Jitter=p.Jitter;var l=r(154);t.LinearInterpolator=l.LinearInterpolator;var v=r(155);t.StepInterpolator=v.StepInterpolator;var s=r(137);t.Transform=s.Transform},n”, ” function _(t,r,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),e=t(137),a=n.__importStar(t(18)),o=t(13),u=t(29);class i extends e.Transform{constructor(t){super(t)}static init_CustomJSTransform(){this.define({args:[a.Any,{}],func:[a.String,""],v_func:[a.String,""]})}get names(){return o.keys(this.args)}get values(){return o.values(this.args)}_make_transform(t,r){return new Function(…this.names,t,u.use_strict(r))}get scalar_transform(){return this._make_transform("x",this.func)}get vector_transform(){return this._make_transform("xs",this.v_func)}compute(t){return this.scalar_transform(…this.values,t)}v_compute(t){return this.vector_transform(…this.values,t)}}s.CustomJSTransform=i,i.__name__="CustomJSTransform",i.init_CustomJSTransform()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(1),r=e(151),_=o.__importStar(e(18));class i extends r.RangeTransform{constructor(e){super(e)}static init_Dodge(){this.define({value:[_.Number,0]})}_compute(e){return e+this.value}}n.Dodge=i,i.__name__="Dodge",i.init_Dodge()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),s=e(137),a=e(98),i=r.__importStar(e(18)),o=e(24),c=e(8);class u extends s.Transform{constructor(e){super(e)}static init_RangeTransform(){this.define({range:[i.Instance]})}v_compute(e){let t;if(this.range instanceof a.FactorRange)t=this.range.v_synthetic(e);else{if(!c.isArrayableOf(e,c.isNumber))throw new Error("unexpected");t=e}const n=new o.NumberArray(t.length);for(let e=0;e<t.length;e++){const r=t[e];n[e]=this._compute(r)}return n}compute(e){if(this.range instanceof a.FactorRange)return this._compute(this.range.synthetic(e));if(c.isNumber(e))return this._compute(e);throw new Error("unexpected")}}n.RangeTransform=u,u.__name__="RangeTransform",u.init_RangeTransform()},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),o=t(137),s=n.__importStar(t(18)),i=t(24),a=t(9),h=t(8);class d extends o.Transform{constructor(t){super(t),this._sorted_dirty=!0}static init_Interpolator(){this.define({x:[s.Any],y:[s.Any],data:[s.Any],clip:[s.Boolean,!0]})}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._sorted_dirty=!0)}v_compute(t){const e=new i.NumberArray(t.length);for(let r=0;r<t.length;r++){const n=t[r];e[r]=this.compute(n)}return e}sort(t=!1){if(!this._sorted_dirty)return;let e,r;if(h.isString(this.x)&&h.isString(this.y)&&null!=this.data){const t=this.data.columns();if(!a.includes(t,this.x))throw new Error("The x parameter does not correspond to a valid column name defined in the data parameter");if(!a.includes(t,this.y))throw new Error("The y parameter does not correspond to a valid column name defined in the data parameter");e=this.data.get_column(this.x),r=this.data.get_column(this.y)}else{if(!h.isArray(this.x)||!h.isArray(this.y))throw new Error("parameters ‘x’ and ‘y’ must be both either string fields or arrays");e=this.x,r=this.y}if(e.length!==r.length)throw new Error("The length for x and y do not match");if(e.length<2)throw new Error("x and y must have at least two elements to support interpolation");const n=e.length,o=new Uint32Array(n);for(let t=0;t<n;t++)o[t]=t;const s=t?-1:1;o.sort((t,r)=>s*(e[t]-e[r])),this._x_sorted=new i.NumberArray(n),this._y_sorted=new i.NumberArray(n);for(let t=0;t<n;t++)this._x_sorted[t]=e[o[t]],this._y_sorted[t]=r[o[t]];this._sorted_dirty=!1}}r.Interpolator=d,d.__name__="Interpolator",d.init_Interpolator()},n”, ” function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),s=t(151),n=r.__importStar(t(18)),u=r.__importStar(t(10));class o extends s.RangeTransform{constructor(t){super(t)}static init_Jitter(){this.define({mean:[n.Number,0],width:[n.Number,1],distribution:[n.Distribution,"uniform"]})}v_compute(t){return null!=this.previous_values&&this.previous_values.length==t.length||(this.previous_values=super.v_compute(t)),this.previous_values}_compute(t){switch(this.distribution){case"uniform":return t+this.mean+(u.random()-.5)*this.width;case"normal":return t+u.rnorm(this.mean,this.width)}}}e.Jitter=o,o.__name__="Jitter",o.init_Jitter()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const _=t(9),r=t(152);class o extends r.Interpolator{constructor(t){super(t)}compute(t){if(this.sort(!1),this.clip){if(t<this._x_sorted[0]||t>this._x_sorted[this._x_sorted.length-1])return NaN}else{if(t<this._x_sorted[0])return this._y_sorted[0];if(t>this._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=_.find_last_index(this._x_sorted,s=>s<t),e=this._x_sorted[s],r=this._x_sorted[s+1],o=this._y_sorted[s],i=this._y_sorted[s+1];return o+(t-e)/(r-e)*(i-o)}}e.LinearInterpolator=o,o.__name__="LinearInterpolator"},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const s=t(1),o=t(152),_=s.__importStar(t(18)),i=t(9);class n extends o.Interpolator{constructor(t){super(t)}static init_StepInterpolator(){this.define({mode:[_.StepMode,"after"]})}compute(t){if(this.sort(!1),this.clip){if(t<this._x_sorted[0]||t>this._x_sorted[this._x_sorted.length-1])return NaN}else{if(t<this._x_sorted[0])return this._y_sorted[0];if(t>this._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case"after":e=i.find_last_index(this._x_sorted,e=>t>=e);break;case"before":e=i.find_index(this._x_sorted,e=>t<=e);break;case"center":{const r=this._x_sorted.map(e=>Math.abs(e-t)),s=i.min(r);e=i.find_index(r,t=>s===t);break}default:throw new Error("unknown mode: "+this.mode)}return-1!=e?this._y_sorted[e]:NaN}}r.StepInterpolator=n,n.__name__="StepInterpolator",n.init_StepInterpolator()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),a=e(147),i=e(24),s=e(9),o=e(12),c=r.__importStar(e(18));class _ extends a.Scale{constructor(e){super(e)}static init_LinearInterpolationScale(){this.internal({binning:[c.Array]})}compute(e){return e}v_compute(e){const t=o.norm(e,this.source_range.start,this.source_range.end),n=s.linspace(0,1,this.binning.length),r=o.interpolate(t,n,this.binning),a=o.norm(r,this.source_range.start,this.source_range.end),c=this.target_range.end-this.target_range.start,_=o.map(a,e=>this.target_range.start+e*c);return new i.NumberArray(_)}invert(e){return e}v_invert(e){return new i.NumberArray(e)}}n.LinearInterpolationScale=_,_.__name__="LinearInterpolationScale",_.init_LinearInterpolationScale()},n”, ” function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const a=t(146),r=t(24);class s extends a.ContinuousScale{constructor(t){super(t)}compute(t){const[e,o,a,r]=this._compute_state();let s;if(0==a)s=0;else{const n=(Math.log(t)-r)/a;s=isFinite(n)?n*e+o:NaN}return s}v_compute(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);if(0==a)for(let e=0;e<t.length;e++)n[e]=0;else for(let r=0;r<t.length;r++){const l=(Math.log(t[r])-s)/a;let c;c=isFinite(l)?l*e+o:NaN,n[r]=c}return n}invert(t){const[e,o,a,r]=this._compute_state(),s=(t-o)/e;return Math.exp(a*s+r)}v_invert(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);for(let r=0;r<t.length;r++){const l=(t[r]-o)/e;n[r]=Math.exp(a*l+s)}return n}_get_safe_factor(t,e){let o=t<0?0:t,a=e<0?0:e;if(o==a)if(0==o)[o,a]=[1,10];else{const t=Math.log(o)/Math.log(10);o=10**Math.floor(t),a=Math.ceil(t)!=Math.floor(t)?10**Math.ceil(t):10**(Math.ceil(t)+1)}return[o,a]}_compute_state(){const t=this.source_range.start,e=this.source_range.end,o=this.target_range.start,a=this.target_range.end-o,[r,s]=this._get_safe_factor(t,e);let n,l;0==r?(n=Math.log(s),l=0):(n=Math.log(s)-Math.log(r),l=Math.log(r));return[a,o,n,l]}}o.LogScale=s,s.__name__="LogScale"},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),n=t(99),r=i.__importStar(t(18));class a extends n.Range{constructor(t){super(t)}static init_Range1d(){this.define({start:[r.Number,0],end:[r.Number,1],reset_start:[r.Number],reset_end:[r.Number]})}_set_auto_bounds(){if("auto"==this.bounds){const t=Math.min(this.reset_start,this.reset_end),e=Math.max(this.reset_start,this.reset_end);this.setv({bounds:[t,e]},{silent:!0})}}initialize(){super.initialize(),null==this.reset_start&&(this.reset_start=this.start),null==this.reset_end&&(this.reset_end=this.end),this._set_auto_bounds()}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}reset(){this._set_auto_bounds(),this.start!=this.reset_start||this.end!=this.reset_end?this.setv({start:this.reset_start,end:this.reset_end}):this.change.emit()}}s.Range1d=a,a.__name__="Range1d",a.init_Range1d()},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=t(72),i=new Map;n.measure_font=function(t){const e=i.get(t);if(null!=e)return e;const n=o.span({style:{font:t}},"Hg"),l=o.div({style:{display:"inline-block",width:"1px",height:"0px"}}),s=o.div({},n,l);document.body.appendChild(s);try{l.style.verticalAlign="baseline";const e=o.offset(l).top-o.offset(n).top;l.style.verticalAlign="bottom";const d=o.offset(l).top-o.offset(n).top,c={height:d,ascent:e,descent:d-e};return i.set(t,c),c}finally{document.body.removeChild(s)}};const l=new Map;n.measure_text=function(t,e){let n=l.get(e);if(null!=n){const e=n.get(t);if(null!=e)return e}else n=new Map,l.set(e,n);const i=o.div({style:{display:"inline-block","white-space":"nowrap",font:e}},t);document.body.appendChild(i);try{const{width:e,height:o}=i.getBoundingClientRect();return n.set(t,{width:e,height:o}),{width:e,height:o}}finally{document.body.removeChild(i)}}},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(161),l=s.__importStar(t(28)),n=s.__importStar(t(18));class o extends a.TextAnnotationView{initialize(){super.initialize(),this.visuals.warm_cache()}_get_size(){const{ctx:t}=this.layer;this.visuals.text.set_value(t);const{width:e,ascent:i}=t.measureText(this.model.text);return{width:e,height:i}}_render(){let t;switch(this.model.angle_units){case"rad":t=-this.model.angle;break;case"deg":t=-this.model.angle*Math.PI/180}const e=null!=this.panel?this.panel:this.plot_view.frame,i=this.coordinates.x_scale,s=this.coordinates.y_scale;let a="data"==this.model.x_units?i.compute(this.model.x):e.xview.compute(this.model.x),l="data"==this.model.y_units?s.compute(this.model.y):e.yview.compute(this.model.y);a+=this.model.x_offset,l-=this.model.y_offset;("canvas"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,this.model.text,a,l,t)}}i.LabelView=o,o.__name__="LabelView";class _ extends a.TextAnnotation{constructor(t){super(t)}static init_Label(){this.prototype.default_view=o,this.mixins([l.Text,["border_",l.Line],["background_",l.Fill]]),this.define({x:[n.Number],x_units:[n.SpatialUnits,"data"],y:[n.Number],y_units:[n.SpatialUnits,"data"],text:[n.String],angle:[n.Angle,0],angle_units:[n.AngleUnits,"rad"],x_offset:[n.Number,0],y_offset:[n.Number,0]}),this.override({background_fill_color:null,border_line_color:null})}}i.Label=_,_.__name__="Label",_.init_Label()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),l=e(36),a=e(72),n=i.__importStar(e(18)),o=e(159),r=e(11);class _ extends l.AnnotationView{constructor(){super(…arguments),this.rotate=!0}initialize(){super.initialize(),"css"==this.model.render_mode&&(this.el=a.div(),this.plot_view.canvas_view.add_overlay(this.el))}remove(){null!=this.el&&a.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),"css"==this.model.render_mode?this.connect(this.model.change,()=>this.render()):this.connect(this.model.change,()=>this.plot_view.request_render())}render(){this.model.visible||"css"!=this.model.render_mode||a.undisplay(this.el),super.render()}_calculate_text_dimensions(e,t){const{width:s}=e.measureText(t),{height:i}=o.measure_font(this.visuals.text.font_value());return[s,i]}_calculate_bounding_box_dimensions(e,t){const[s,i]=this._calculate_text_dimensions(e,t);let l,a;switch(e.textAlign){case"left":l=0;break;case"center":l=-s/2;break;case"right":l=-s;break;default:r.unreachable()}switch(e.textBaseline){case"top":a=0;break;case"middle":a=-.5*i;break;case"bottom":a=-1*i;break;case"alphabetic":a=-.8*i;break;case"hanging":a=-.17*i;break;case"ideographic":a=-.83*i;break;default:r.unreachable()}return[l,a,s,i]}_canvas_text(e,t,s,i,l){this.visuals.text.set_value(e);const a=this._calculate_bounding_box_dimensions(e,t);e.save(),e.beginPath(),e.translate(s,i),l&&e.rotate(l),e.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),e.stroke()),this.visuals.text.doit&&(this.visuals.text.set_value(e),e.fillText(t,0,0)),e.restore()}_css_text(e,t,s,i,l){const{el:n}=this;r.assert(null!=n),a.undisplay(n),this.visuals.text.set_value(e);const o=this._calculate_bounding_box_dimensions(e,t),_=this.visuals.border_line.line_dash.value().length<2?"solid":"dashed";this.visuals.border_line.set_value(e),this.visuals.background_fill.set_value(e),n.style.position="absolute",n.style.left=s+o[0]+"px",n.style.top=i+o[1]+"px",n.style.color=""+this.visuals.text.text_color.value(),n.style.opacity=""+this.visuals.text.text_alpha.value(),n.style.font=""+this.visuals.text.font_value(),n.style.lineHeight="normal",l&&(n.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(n.style.backgroundColor=""+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(n.style.borderStyle=""+_,n.style.borderWidth=this.visuals.border_line.line_width.value()+"px",n.style.borderColor=""+this.visuals.border_line.color_value()),n.textContent=t,a.display(n)}}s.TextAnnotationView=_,_.__name__="TextAnnotationView";class u extends l.Annotation{constructor(e){super(e)}static init_TextAnnotation(){this.define({render_mode:[n.RenderMode,"canvas"]})}}s.TextAnnotation=u,u.__name__="TextAnnotation",u.init_TextAnnotation()},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),o=t(161),l=t(85),a=i.__importStar(t(28)),n=t(72),r=i.__importStar(t(18));class _ extends o.TextAnnotationView{initialize(){if(super.initialize(),this.set_data(this.model.source),"css"==this.model.render_mode)for(let t=0,e=this._text.length;t<e;t++){const t=n.div({style:{display:"none"}});this.el.appendChild(t)}}connect_signals(){super.connect_signals(),"css"==this.model.render_mode?(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.render()})):(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}))}set_data(t){super.set_data(t),this.visuals.warm_cache(t)}_map_data(){const t=this.coordinates.x_scale,e=this.coordinates.y_scale,s=null!=this.panel?this.panel:this.plot_view.frame;return["data"==this.model.x_units?t.v_compute(this._x):s.xview.v_compute(this._x),"data"==this.model.y_units?e.v_compute(this._y):s.yview.v_compute(this._y)]}_render(){const t="canvas"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer,[s,i]=this._map_data();for(let o=0,l=this._text.length;o<l;o++)t(e,o,this._text[o],s[o]+this._x_offset[o],i[o]-this._y_offset[o],this._angle[o])}_get_size(){const{ctx:t}=this.layer;this.visuals.text.set_value(t);const{width:e,ascent:s}=t.measureText(this._text[0]);return{width:e,height:s}}_v_canvas_text(t,e,s,i,o,l){this.visuals.text.set_vectorize(t,e);const a=this._calculate_bounding_box_dimensions(t,s);t.save(),t.beginPath(),t.translate(i,o),t.rotate(l),t.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_vectorize(t,e),t.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_vectorize(t,e),t.stroke()),this.visuals.text.doit&&(this.visuals.text.set_vectorize(t,e),t.fillText(s,0,0)),t.restore()}_v_css_text(t,e,s,i,o,l){const a=this.el.children[e];a.textContent=s,this.visuals.text.set_vectorize(t,e);const r=this._calculate_bounding_box_dimensions(t,s),_=this.visuals.border_line.line_dash.value().length<2?"solid":"dashed";this.visuals.border_line.set_vectorize(t,e),this.visuals.background_fill.set_vectorize(t,e),a.style.position="absolute",a.style.left=i+r[0]+"px",a.style.top=o+r[1]+"px",a.style.color=""+this.visuals.text.text_color.value(),a.style.opacity=""+this.visuals.text.text_alpha.value(),a.style.font=""+this.visuals.text.font_value(),a.style.lineHeight="normal",l&&(a.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(a.style.backgroundColor=""+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(a.style.borderStyle=""+_,a.style.borderWidth=this.visuals.border_line.line_width.value()+"px",a.style.borderColor=""+this.visuals.border_line.color_value()),n.display(a)}}s.LabelSetView=_,_.__name__="LabelSetView";class h extends o.TextAnnotation{constructor(t){super(t)}static init_LabelSet(){this.prototype.default_view=_,this.mixins([a.TextVector,["border_",a.LineVector],["background_",a.FillVector]]),this.define({x:[r.NumberSpec],y:[r.NumberSpec],x_units:[r.SpatialUnits,"data"],y_units:[r.SpatialUnits,"data"],text:[r.StringSpec,{field:"text"}],angle:[r.AngleSpec,0],x_offset:[r.NumberSpec,{value:0}],y_offset:[r.NumberSpec,{value:0}],source:[r.Instance,()=>new l.ColumnDataSource]}),this.override({background_fill_color:null,border_line_color:null})}}s.LabelSet=h,h.__name__="LabelSet",h.init_LabelSet()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=t(36),n=s.__importStar(t(28)),h=s.__importStar(t(18)),a=t(15),_=t(159),o=t(79),r=t(9),d=t(8),c=t(11);class g extends l.AnnotationView{cursor(t,e){return"none"==this.model.click_policy?null:"pointer"}get legend_padding(){return null!=this.visuals.border_line.line_color.value()?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.item_change,()=>this.plot_view.request_render())}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:s,label_width:l}=this.model;this.max_label_height=r.max([_.measure_font(this.visuals.label_text.font_value()).height,s,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,r.max([n.measureText(e).width,l]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?_.measure_font(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const h=Math.max(r.max([…this.text_widths.values()]),0),a=this.model.margin,{legend_padding:g}=this,m=this.model.spacing,{label_standoff:b}=this.model;let u,f;if("vertical"==this.model.orientation)u=t.length*this.max_label_height+Math.max(t.length-1,0)*m+2*g+this.title_height,f=r.max([h+i+b+2*g,this.title_width+2*g]);else{let e=2*g+Math.max(t.length-1,0)*m;for(const[,t]of this.text_widths)e+=r.max([t,l])+i+b;f=r.max([this.title_width+2*g,e]),u=this.max_label_height+this.title_height+2*g}const x=null!=this.panel?this.panel:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if(d.isString(v))switch(v){case"top_left":y=p.start+a,k=w.start+a;break;case"top_center":y=(p.end+p.start)/2-f/2,k=w.start+a;break;case"top_right":y=p.end-a-f,k=w.start+a;break;case"bottom_right":y=p.end-a-f,k=w.end-a-u;break;case"bottom_center":y=(p.end+p.start)/2-f/2,k=w.end-a-u;break;case"bottom_left":y=p.start+a,k=w.end-a-u;break;case"center_left":y=p.start+a,k=(w.end+w.start)/2-u/2;break;case"center":y=(p.end+p.start)/2-f/2,k=(w.end+w.start)/2-u/2;break;case"center_right":y=p.end-a-f,k=(w.end+w.start)/2-u/2}else if(d.isArray(v)&&2==v.length){const[t,e]=v;y=x.xview.compute(t),k=x.yview.compute(e)-u}else c.unreachable();return new o.BBox({left:y,top:k,width:f,height:u})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=i=l;const _=this.compute_legend_bbox(),r="vertical"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop();for(const g of c){const c=_.x+a,m=_.y+i+this.title_height;let b,u;[b,u]=r?[_.width-2*l,this.max_label_height]:[this.text_widths.get(g)+s+h,this.max_label_height];if(new o.BBox({left:c,top:m,width:b,height:u}).contains(t,e)){switch(this.model.click_policy){case"hide":for(const t of d.renderers)t.visible=!t.visible;break;case"mute":for(const t of d.renderers)t.muted=!t.muted}return!0}r?i+=this.max_label_height+n:a+=this.text_widths.get(g)+s+h+n}}return!1}_render(){if(0==this.model.items.length)return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this.model.title&&this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.set_value(t),t.fill(),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.stroke())}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=l,_=l;const o="vertical"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop(),g=d.get_field_from_label_prop();if(0==c.length)continue;const m=(()=>{switch(this.model.click_policy){case"none":return!0;case"hide":return r.every(d.renderers,t=>t.visible);case"mute":return r.every(d.renderers,t=>!t.muted)}})();for(const r of c){const c=e.x+a,b=e.y+_+this.title_height,u=c+i,f=b+s;o?_+=this.max_label_height+n:a+=this.text_widths.get(r)+i+h+n,this.visuals.label_text.set_value(t),t.fillText(r,u+h,b+this.max_label_height/2);for(const e of d.renderers){this.plot_view.renderer_views.get(e).draw_legend(t,c,u,b,f,g,r,d.index)}if(!m){let s,n;[s,n]=o?[e.width-2*l,this.max_label_height]:[this.text_widths.get(r)+i+h,this.max_label_height],t.beginPath(),t.rect(c,b,s,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(this.model.title,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=g,g.__name__="LegendView";class m extends l.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new a.Signal0(this,"item_change")}static init_Legend(){this.prototype.default_view=g,this.mixins([["label_",n.Text],["title_",n.Text],["inactive_",n.Fill],["border_",n.Line],["background_",n.Fill]]),this.define({orientation:[h.Orientation,"vertical"],location:[h.Any,"top_right"],title:[h.String],title_standoff:[h.Number,5],label_standoff:[h.Number,5],glyph_height:[h.Number,20],glyph_width:[h.Number,20],label_height:[h.Number,20],label_width:[h.Number,20],margin:[h.Number,10],padding:[h.Number,10],spacing:[h.Number,3],items:[h.Array,[]],click_policy:[h.Any,"none"]}),this.override({border_line_color:"#e5e5e5",border_line_alpha:.5,border_line_width:1,background_fill_color:"#ffffff",background_fill_alpha:.95,inactive_fill_color:"white",inactive_fill_alpha:.7,label_text_font_size:"13px",label_text_baseline:"middle",title_text_font_size:"13px",title_text_font_style:"italic"})}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(…i)}return t}}i.Legend=m,m.__name__="Legend",m.init_Legend()},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),l=e(81),i=e(86),s=e(165),o=t.__importStar(e(18)),_=e(19),a=e(9);class u extends l.Model{constructor(e){super(e)}static init_LegendItem(){this.define({label:[o.StringSpec,null],renderers:[o.Array,[]],index:[o.Number,null]})}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!a.includes(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()});this._check_data_sources_on_renderers()||_.logger.error("Non matching data sources on legend item renderers");this._check_field_label_on_data_source()||_.logger.error("Bad column name on label: "+this.label)}get_field_from_label_prop(){const{label:e}=this;return s.isField(e)?e.field:null}get_labels_list_from_label_prop(){if(s.isValue(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return["No source found"];if(r=this.renderers[0].data_source,r instanceof i.ColumnarDataSource){const n=r.get_column(e);return null!=n?a.uniq(Array.from(n)):["Invalid field"]}}return[]}}n.LegendItem=u,u.__name__="LegendItem",u.init_LegendItem()},n”, ” function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(8);n.isValue=function(e){return t.isPlainObject(e)&&"value"in e},n.isField=function(e){return t.isPlainObject(e)&&"field"in e}},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(36),o=n.__importStar(t(28)),l=t(15),a=n.__importStar(t(18));class r extends s.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.data_update,()=>this.plot_view.request_render())}_render(){const{xs:t,ys:e}=this.model;if(t.length!=e.length)return;if(t.length<3||e.length<3)return;const{frame:i}=this.plot_view,{ctx:n}=this.layer;for(let s=0,o=t.length;s<o;s++){let o,l;if("screen"!=this.model.xs_units)throw new Error("not implemented");if(o=this.model.screen?t[s]:i.xview.compute(t[s]),"screen"!=this.model.ys_units)throw new Error("not implemented");l=this.model.screen?e[s]:i.yview.compute(e[s]),0==s?(n.beginPath(),n.moveTo(o,l)):n.lineTo(o,l)}n.closePath(),this.visuals.line.doit&&(this.visuals.line.set_value(n),n.stroke()),this.visuals.fill.doit&&(this.visuals.fill.set_value(n),n.fill())}}i.PolyAnnotationView=r,r.__name__="PolyAnnotationView";class _ extends s.Annotation{constructor(t){super(t)}static init_PolyAnnotation(){this.prototype.default_view=r,this.mixins([o.Line,o.Fill]),this.define({xs:[a.Array,[]],xs_units:[a.SpatialUnits,"data"],ys:[a.Array,[]],ys_units:[a.SpatialUnits,"data"]}),this.internal({screen:[a.Boolean,!1]}),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}initialize(){super.initialize(),this.data_update=new l.Signal0(this,"data_update")}update({xs:t,ys:e}){this.setv({xs:t,ys:e,screen:!0},{silent:!0}),this.data_update.emit()}}i.PolyAnnotation=_,_.__name__="PolyAnnotation",_.init_PolyAnnotation()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),l=n.__importStar(e(18));class r extends o.AnnotationView{initialize(){super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render())}_render(){const e=this.model.gradient,t=this.model.y_intercept;if(null==e||null==t)return;const{frame:i}=this.plot_view,n=this.coordinates.x_scale,o=this.coordinates.y_scale,s=i.bbox.top,l=s+i.bbox.height,r=(o.invert(s)-t)/e,_=(o.invert(l)-t)/e,a=n.compute(r),c=n.compute(_),{ctx:p}=this.layer;p.save(),p.beginPath(),this.visuals.line.set_value(p),p.moveTo(a,s),p.lineTo(c,l),p.stroke(),p.restore()}}i.SlopeView=r,r.__name__="SlopeView";class _ extends o.Annotation{constructor(e){super(e)}static init_Slope(){this.prototype.default_view=r,this.mixins(s.Line),this.define({gradient:[l.Number,null],y_intercept:[l.Number,null]}),this.override({line_color:"black"})}}i.Slope=_,_.__name__="Slope",_.init_Slope()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),a=n.__importStar(e(18));class l extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,n=this.coordinates.y_scale,o=(t,i)=>"data"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,a,l,r;"width"==this.model.dimension?(l=o(n,t.yview),a=t.bbox.left,r=t.bbox.width,s=this.model.properties.line_width.value()):(l=t.bbox.top,a=o(i,t.xview),r=this.model.properties.line_width.value(),s=t.bbox.height);const{ctx:_}=this.layer;_.save(),_.beginPath(),this.visuals.line.set_value(_),_.moveTo(a,l),"width"==this.model.dimension?_.lineTo(a+r,l):_.lineTo(a,l+s),_.stroke(),_.restore()}}i.SpanView=l,l.__name__="SpanView";class r extends o.Annotation{constructor(e){super(e)}static init_Span(){this.prototype.default_view=l,this.mixins(s.Line),this.define({render_mode:[a.RenderMode,"canvas"],location:[a.Number,null],location_units:[a.SpatialUnits,"data"],dimension:[a.Dimension,"width"]}),this.override({line_color:"black"}),this.internal({for_hover:[a.Boolean,!1]})}}i.Span=r,r.__name__="Span",r.init_Span()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const l=t(1),s=t(161),a=t(74),n=l.__importStar(t(28)),o=l.__importStar(t(18));class r extends s.TextAnnotationView{initialize(){super.initialize(),this.visuals.text=new a.Text(this.model)}_get_location(){const t=this.panel,e=this.model.offset;let i,l;const{bbox:s}=t;switch(t.side){case"above":case"below":switch(this.model.vertical_align){case"top":l=s.top+5;break;case"middle":l=s.vcenter;break;case"bottom":l=s.bottom-5}switch(this.model.align){case"left":i=s.left+e;break;case"center":i=s.hcenter;break;case"right":i=s.right-e}break;case"left":switch(this.model.vertical_align){case"top":i=s.left-5;break;case"middle":i=s.hcenter;break;case"bottom":i=s.right+5}switch(this.model.align){case"left":l=s.bottom-e;break;case"center":l=s.vcenter;break;case"right":l=s.top+e}break;case"right":switch(this.model.vertical_align){case"top":i=s.right-5;break;case"middle":i=s.hcenter;break;case"bottom":i=s.left+5}switch(this.model.align){case"left":l=s.top+e;break;case"center":l=s.vcenter;break;case"right":l=s.bottom-e}}return[i,l]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),l=this.panel.get_label_angle_heuristic("parallel");("canvas"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,l)}_get_size(){const{text:t}=this.model;if(null==t||0==t.length)return{width:0,height:0};{this.visuals.text.set_value(this.layer.ctx);const{width:e,ascent:i}=this.layer.ctx.measureText(t);return{width:e,height:i*this.visuals.text.text_line_height.value()+10}}}}i.TitleView=r,r.__name__="TitleView";class c extends s.TextAnnotation{constructor(t){super(t)}static init_Title(){this.prototype.default_view=r,this.mixins([["border_",n.Line],["background_",n.Fill]]),this.define({text:[o.String],text_font:[o.Font,"helvetica"],text_font_size:[o.StringSpec,"13px"],text_font_style:[o.FontStyle,"bold"],text_color:[o.ColorSpec,"#444444"],text_alpha:[o.NumberSpec,1],text_line_height:[o.Number,1],vertical_align:[o.VerticalAlign,"bottom"],align:[o.TextAlign,"left"],offset:[o.Number,0]}),this.override({background_fill_color:null,border_line_color:null}),this.internal({text_align:[o.TextAlign,"left"],text_baseline:[o.TextBaseline,"bottom"]})}}i.Title=c,c.__name__="Title",c.init_Title()},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),l=e(36),s=e(115),a=e(72),n=e(79),r=o.__importStar(e(18));class _ extends l.AnnotationView{constructor(){super(…arguments),this.rotate=!0,this._invalidate_toolbar=!0,this._previous_bbox=new n.BBox}initialize(){super.initialize(),this.el=a.div(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){this._toolbar_view=await s.build_view(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push(e=>this._toolbar_view.set_visibility(e))}remove(){this._toolbar_view.remove(),a.remove(this.el),super.remove()}render(){this.model.visible||a.undisplay(this.el),super.render()}_render(){const{bbox:e}=this.panel;this._previous_bbox.equals(e)||(a.position(this.el,e),this._previous_bbox=e),this._invalidate_toolbar&&(this.el.style.position="absolute",this.el.style.overflow="hidden",this._toolbar_view.render(),a.empty(this.el),this.el.appendChild(this._toolbar_view.el),this._invalidate_toolbar=!1),a.display(this.el)}_get_size(){const{tools:e,logo:i}=this.model.toolbar;return{width:30*e.length+(null!=i?25:0),height:30}}}t.ToolbarPanelView=_,_.__name__="ToolbarPanelView";class h extends l.Annotation{constructor(e){super(e)}static init_ToolbarPanel(){this.prototype.default_view=_,this.define({toolbar:[r.Instance]})}}t.ToolbarPanel=h,h.__name__="ToolbarPanel",h.init_ToolbarPanel()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=t(36),o=t(72),n=s.__importStar(t(18)),a=t(172),h=t(173),r=s.__importDefault(t(174));class c extends l.AnnotationView{initialize(){super.initialize(),this.el=o.div({class:a.bk_tooltip}),o.undisplay(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){o.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,()=>this.render()),this.connect(this.model.properties.position.change,()=>this._reposition())}styles(){return[…super.styles(),r.default]}render(){this.model.visible||o.undisplay(this.el),super.render()}_render(){const{content:t}=this.model;null!=t?(o.empty(this.el),o.classes(this.el).toggle(a.bk_tooltip_custom,this.model.custom),this.el.appendChild(t),this.model.show_arrow&&this.el.classList.add(a.bk_tooltip_arrow)):o.undisplay(this.el)}_reposition(){const{position:t}=this.model;if(null==t)return void o.undisplay(this.el);const[e,i]=t,s=(()=>{const t=this.parent.layout.bbox.relativize(),{attachment:s}=this.model;switch(s){case"horizontal":return e<t.hcenter?"right":"left";case"vertical":return i<t.vcenter?"below":"above";default:return s}})();let l;this.el.classList.remove(h.bk_right),this.el.classList.remove(h.bk_left),this.el.classList.remove(h.bk_above),this.el.classList.remove(h.bk_below),o.display(this.el);let n=null,a=null;switch(s){case"right":this.el.classList.add(h.bk_left),n=e+(this.el.offsetWidth-this.el.clientWidth)+10,l=i-this.el.offsetHeight/2;break;case"left":this.el.classList.add(h.bk_right),a=this.plot_view.layout.bbox.width-e+10,l=i-this.el.offsetHeight/2;break;case"below":this.el.classList.add(h.bk_above),l=i+(this.el.offsetHeight-this.el.clientHeight)+10,n=Math.round(e-this.el.offsetWidth/2);break;case"above":this.el.classList.add(h.bk_below),l=i-this.el.offsetHeight-10,n=Math.round(e-this.el.offsetWidth/2)}this.el.style.top=l+"px",this.el.style.left=null!=n?n+"px":"auto",this.el.style.right=null!=a?a+"px":"auto"}}i.TooltipView=c,c.__name__="TooltipView";class d extends l.Annotation{constructor(t){super(t)}static init_Tooltip(){this.prototype.default_view=c,this.define({attachment:[n.TooltipAttachment,"horizontal"],inner_only:[n.Boolean,!0],show_arrow:[n.Boolean,!0]}),this.override({level:"overlay"}),this.internal({position:[n.Any,null],content:[n.Any,()=>o.div()],custom:[n.Any]})}clear(){this.position=null}}i.Tooltip=d,d.__name__="Tooltip",d.init_Tooltip()},n”, ” function _(o,t,l){Object.defineProperty(l,"__esModule",{value:!0}),l.bk_tooltip="bk-tooltip",l.bk_tooltip_arrow="bk-tooltip-arrow",l.bk_tooltip_custom="bk-tooltip-custom",l.bk_tooltip_row_label="bk-tooltip-row-label",l.bk_tooltip_row_value="bk-tooltip-row-value",l.bk_tooltip_color_block="bk-tooltip-color-block"},n”, ” function _(e,b,k){Object.defineProperty(k,"__esModule",{value:!0}),k.bk_active="bk-active",k.bk_inline="bk-inline",k.bk_left="bk-left",k.bk_right="bk-right",k.bk_above="bk-above",k.bk_below="bk-below",k.bk_up="bk-up",k.bk_down="bk-down",k.bk_side=function(e){switch(e){case"above":return k.bk_above;case"below":return k.bk_below;case"left":return k.bk_left;case"right":return k.bk_right}}},n”, ” function _(o,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root {\n /* Same border color used everywhere /\n / Gray of icons /\n}\n.bk-root .bk-tooltip {\n font-weight: 300;\n font-size: 12px;\n position: absolute;\n padding: 5px;\n border: 1px solid #e5e5e5;\n color: #2f2f2f;\n background-color: white;\n pointer-events: none;\n opacity: 0.95;\n z-index: 100;\n}\n.bk-root .bk-tooltip > div:not(:first-child) {\n / gives space when multiple elements are being hovered over /\n margin-top: 5px;\n border-top: #e5e5e5 1px dashed;\n}\n.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before {\n position: absolute;\n margin: -7px 0 0 0;\n top: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 7px 0 7px 0;\n border-color: transparent;\n content: " ";\n display: block;\n left: -10px;\n border-right-width: 10px;\n border-right-color: #909599;\n}\n.bk-root .bk-tooltip.bk-left::before {\n left: -10px;\n border-right-width: 10px;\n border-right-color: #909599;\n}\n.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after {\n position: absolute;\n margin: -7px 0 0 0;\n top: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 7px 0 7px 0;\n border-color: transparent;\n content: " ";\n display: block;\n right: -10px;\n border-left-width: 10px;\n border-left-color: #909599;\n}\n.bk-root .bk-tooltip.bk-right::after {\n right: -10px;\n border-left-width: 10px;\n border-left-color: #909599;\n}\n.bk-root .bk-tooltip.bk-above::before {\n position: absolute;\n margin: 0 0 0 -7px;\n left: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 7px 0 7px;\n border-color: transparent;\n content: " ";\n display: block;\n top: -10px;\n border-bottom-width: 10px;\n border-bottom-color: #909599;\n}\n.bk-root .bk-tooltip.bk-below::after {\n position: absolute;\n margin: 0 0 0 -7px;\n left: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 7px 0 7px;\n border-color: transparent;\n content: " ";\n display: block;\n bottom: -10px;\n border-top-width: 10px;\n border-top-color: #909599;\n}\n.bk-root .bk-tooltip-row-label {\n text-align: right;\n color: #26aae1;\n / blue from toolbar highlighting /\n}\n.bk-root .bk-tooltip-row-value {\n color: default;\n / seems to be necessary for notebook /\n}\n.bk-root .bk-tooltip-color-block {\n width: 12px;\n height: 12px;\n margin-left: 5px;\n margin-right: 5px;\n outline: #dddddd solid 1px;\n display: inline-block;\n}\n’},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),r=e(123),o=e(84),h=e(28),n=i.__importStar(e(18));class l extends r.UpperLowerView{connect_signals(){super.connect_signals(),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}_render(){this._map_data();const{ctx:e}=this.layer;if(this.visuals.line.doit)for(let s=0,t=this._lower_sx.length;s<t;s++)this.visuals.line.set_vectorize(e,s),e.beginPath(),e.moveTo(this._lower_sx[s],this._lower_sy[s]),e.lineTo(this._upper_sx[s],this._upper_sy[s]),e.stroke();const s="height"==this.model.dimension?0:Math.PI/2;if(null!=this.model.lower_head)for(let t=0,i=this._lower_sx.length;t<i;t++)e.save(),e.translate(this._lower_sx[t],this._lower_sy[t]),e.rotate(s+Math.PI),this.model.lower_head.render(e,t),e.restore();if(null!=this.model.upper_head)for(let t=0,i=this._upper_sx.length;t<i;t++)e.save(),e.translate(this._upper_sx[t],this._upper_sy[t]),e.rotate(s),this.model.upper_head.render(e,t),e.restore()}}t.WhiskerView=l,l.__name__="WhiskerView";class _ extends r.UpperLower{constructor(e){super(e)}static init_Whisker(){this.prototype.default_view=l,this.mixins(h.LineVector),this.define({lower_head:[n.Instance,()=>new o.TeeHead({level:"underlay",size:10})],upper_head:[n.Instance,()=>new o.TeeHead({level:"underlay",size:10})]}),this.override({level:"underlay"})}}t.Whisker=_,_.__name__="Whisker",_.init_Whisker()},n”, ” function _(i,a,e){Object.defineProperty(e,"__esModule",{value:!0});var r=i(177);e.Axis=r.Axis;var s=i(179);e.CategoricalAxis=s.CategoricalAxis;var x=i(182);e.ContinuousAxis=x.ContinuousAxis;var A=i(183);e.DatetimeAxis=A.DatetimeAxis;var o=i(184);e.LinearAxis=o.LinearAxis;var t=i(197);e.LogAxis=t.LogAxis;var n=i(200);e.MercatorAxis=n.MercatorAxis},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(178),l=s.__importStar(t(28)),n=s.__importStar(t(18)),o=t(9),r=t(8),_=t(98),{abs:h,min:c,max:d}=Math;class m extends a.GuideRendererView{constructor(){super(…arguments),this.rotate=!0}get panel(){return this.layout}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const e={tick:this._tick_extent(),tick_label:this._tick_label_extents(),axis_label:this._axis_label_extent()},{tick_coords:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,e),this._draw_major_ticks(s,e,i),this._draw_minor_ticks(s,e,i),this._draw_major_labels(s,e,i),this._draw_axis_label(s,e,i),null===(t=this._paint)||void 0===t||t.call(this,s,e,i),s.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible&&null==this.model.fixed_location&&this.is_renderable){const t=this._get_size();return{width:0,height:Math.round(t)}}return{width:0,height:0}}_get_size(){return this._tick_extent()+this._tick_label_extent()+this._axis_label_extent()}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,l]=this.coordinates.map_to_screen(i,s),[n,o]=this.normals,[r,_]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath(),t.moveTo(Math.round(a[0]+n*r),Math.round(l[0]+o*_));for(let e=1;e<a.length;e++){const i=Math.round(a[e]+n*r),s=Math.round(l[e]+o*_);t.lineTo(i,s)}t.stroke()}_draw_major_ticks(t,e,i){const s=this.model.major_tick_in,a=this.model.major_tick_out,l=this.visuals.major_tick_line;this._draw_ticks(t,i.major,s,a,l)}_draw_minor_ticks(t,e,i){const s=this.model.minor_tick_in,a=this.model.minor_tick_out,l=this.visuals.minor_tick_line;this._draw_ticks(t,i.minor,s,a,l)}_draw_major_labels(t,e,i){const s=i.major,a=this.compute_labels(s[this.dimension]),l=this.model.major_label_orientation,n=e.tick+this.model.major_label_standoff,o=this.visuals.major_label_text;this._draw_oriented_labels(t,a,s,l,this.panel.side,n,o)}_draw_axis_label(t,e,i){if(null==this.model.axis_label||0==this.model.axis_label.length||null!=this.model.fixed_location)return;let s,a;const{bbox:l}=this.panel;switch(this.panel.side){case"above":s=l.hcenter,a=l.bottom;break;case"below":s=l.hcenter,a=l.top;break;case"left":s=l.right,a=l.vcenter;break;case"right":s=l.left,a=l.vcenter;break;default:throw new Error("unknown side: "+this.panel.side)}const n=[[s],[a]],r=e.tick+o.sum(e.tick_label)+this.model.axis_label_standoff,_=this.visuals.axis_label_text;this._draw_oriented_labels(t,[this.model.axis_label],n,"parallel",this.panel.side,r,_,"screen")}_draw_ticks(t,e,i,s,a){if(!a.doit)return;const[l,n]=e,[o,r]=this.coordinates.map_to_screen(l,n),[_,h]=this.normals,[c,d]=this.offsets,[m,b]=[_*(c-i),h*(d-i)],[u,x]=[_*(c+s),h*(d+s)];a.set_value(t),t.beginPath();for(let e=0;e<o.length;e++){const i=Math.round(o[e]+u),s=Math.round(r[e]+x),a=Math.round(o[e]+m),l=Math.round(r[e]+b);t.moveTo(i,s),t.lineTo(a,l)}t.stroke()}_draw_oriented_labels(t,e,i,s,a,l,n,o="data"){if(!n.doit||0==e.length)return;let _,h,c,d;if("screen"==o)[_,h]=i,[c,d]=[0,0];else{const[t,e]=i;[_,h]=this.coordinates.map_to_screen(t,e),[c,d]=this.offsets}const[m,b]=this.normals,u=m*(c+l),x=b*(d+l);let f;n.set_value(t),this.panel.apply_label_text_heuristics(t,s),f=r.isString(s)?this.panel.get_label_angle_heuristic(s):-s;for(let i=0;i<_.length;i++){const s=Math.round(_[i]+u),a=Math.round(h[i]+x);t.translate(s,a),t.rotate(f),t.fillText(e[i],0,0),t.rotate(-f),t.translate(-s,-a)}}_axis_label_extent(){if(null==this.model.axis_label||""==this.model.axis_label)return 0;const t=this.model.axis_label_standoff,e=this.visuals.axis_label_text;return this._oriented_labels_extent([this.model.axis_label],"parallel",this.panel.side,t,e)}_tick_extent(){return this.model.major_tick_out}_tick_label_extent(){return o.sum(this._tick_label_extents())}_tick_label_extents(){const t=this.tick_coords.major,e=this.compute_labels(t[this.dimension]),i=this.model.major_label_orientation,s=this.model.major_label_standoff,a=this.visuals.major_label_text;return[this._oriented_labels_extent(e,i,this.panel.side,s,a)]}_oriented_labels_extent(t,e,i,s,a){if(0==t.length)return 0;const l=this.layer.ctx;let n,o;a.set_value(l),r.isString(e)?(n=1,o=this.panel.get_label_angle_heuristic(e)):(n=2,o=-e),o=Math.abs(o);const _=Math.cos(o),h=Math.sin(o);let c=0;for(let e=0;e<t.length;e++){const s=1.1*l.measureText(t[e]).width,a=.9*l.measureText(t[e]).ascent;let o;o="above"==i||"below"==i?s*h+a/n*_:s*_+a/n*h,o>c&&(c=o)}return c>0&&(c+=s),c}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.doFormat(t,this);for(let i=0;i<t.length;i++)t[i]in this.model.major_label_overrides&&(e[i]=this.model.major_label_overrides[t[i]]);return e}get offsets(){if(null!=this.model.fixed_location)return[0,0];const{frame:t}=this.plot_view;let[e,i]=[0,0];switch(this.panel.side){case"below":i=h(this.panel.bbox.top-t.bbox.bottom);break;case"above":i=h(this.panel.bbox.bottom-t.bbox.top);break;case"right":e=h(this.panel.bbox.left-t.bbox.right);break;case"left":e=h(this.panel.bbox.right-t.bbox.left)}return[e,i]}get ranges(){const t=this.dimension,e=(t+1)%2,{ranges:i}=this.coordinates;return[i[t],i[e]]}get computed_bounds(){const[t]=this.ranges,e=this.model.bounds,i=[t.min,t.max];if("auto"==e)return[t.min,t.max];{let t,s;const[a,l]=e,[n,o]=i;return h(a-l)>h(n-o)?(t=d(c(a,l),n),s=c(d(a,l),o)):(t=c(a,l),s=d(a,l)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=[new Array(2),new Array(2)];return l[t][0]=Math.max(s,i.min),l[t][1]=Math.min(a,i.max),l[t][0]>l[t][1]&&(l[t][0]=l[t][1]=NaN),l[e][0]=this.loc,l[e][1]=this.loc,l}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=this.model.ticker.get_ticks(s,a,i,this.loc,{}),n=l.major,o=l.minor,r=[[],[]],_=[[],[]],[h,c]=[i.min,i.max];for(let i=0;i<n.length;i++)n[i]<h||n[i]>c||(r[t].push(n[i]),r[e].push(this.loc));for(let i=0;i<o.length;i++)o[i]<h||o[i]>c||(_[t].push(o[i]),_[e].push(this.loc));return{major:r,minor:_}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if(r.isNumber(t))return t;const[,e]=this.ranges;if(e instanceof _.FactorRange)return e.synthetic(t);throw new Error("unexpected")}const[,e]=this.ranges;switch(this.panel.side){case"left":case"below":return e.start;case"right":case"above":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}}i.AxisView=m,m.__name__="AxisView";class b extends a.GuideRenderer{constructor(t){super(t)}static init_Axis(){this.prototype.default_view=m,this.mixins([["axis_",l.Line],["major_tick_",l.Line],["minor_tick_",l.Line],["major_label_",l.Text],["axis_label_",l.Text]]),this.define({bounds:[n.Any,"auto"],ticker:[n.Instance],formatter:[n.Instance],axis_label:[n.String,""],axis_label_standoff:[n.Int,5],major_label_standoff:[n.Int,5],major_label_orientation:[n.Any,"horizontal"],major_label_overrides:[n.Any,{}],major_tick_in:[n.Number,2],major_tick_out:[n.Number,6],minor_tick_in:[n.Number,0],minor_tick_out:[n.Number,4],fixed_location:[n.Any,null]}),this.override({axis_line_color:"black",major_tick_line_color:"black",minor_tick_line_color:"black",major_label_text_font_size:"11px",major_label_text_align:"center",major_label_text_baseline:"alphabetic",axis_label_text_font_size:"13px",axis_label_text_font_style:"italic"})}}i.Axis=b,b.__name__="Axis",b.init_Axis()},n”, ” function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});const i=e(70);class n extends i.RendererView{}d.GuideRendererView=n,n.__name__="GuideRendererView";class t extends i.Renderer{constructor(e){super(e)}static init_GuideRenderer(){this.override({level:"guide"})}}d.GuideRenderer=t,t.__name__="GuideRenderer",t.init_GuideRenderer()},n”, ” function _(t,s,o){Object.defineProperty(o,"__esModule",{value:!0});const e=t(1),i=t(177),r=t(180),a=t(181),l=e.__importStar(t(28)),_=e.__importStar(t(18));class n extends i.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;t<e.tops.length-1;t++){let s,o;for(let i=n;i<e.factors.length;i++)if(e.factors[i][0]==e.tops[t+1]){[s,o]=[e.factors[i-1],e.factors[i]],n=i;break}const h=(e.synthetic(s)+e.synthetic(o))/2;h>i&&h<r&&(_[a].push(h),_[l].push(this.loc))}const h=this._tick_label_extent();this._draw_ticks(t,_,-3,h-6,this.visuals.separator_line)}_draw_major_labels(t,s,o){const e=this._get_factor_info();let i=s.tick+this.model.major_label_standoff;for(let o=0;o<e.length;o++){const[r,a,l,_]=e[o];this._draw_oriented_labels(t,r,a,l,this.panel.side,i,_),i+=s.tick_label[o]}}_tick_label_extents(){const t=this._get_factor_info(),s=[];for(const[o,,e,i]of t){const t=this._oriented_labels_extent(o,e,this.panel.side,this.model.major_label_standoff,i);s.push(t)}return s}_get_factor_info(){const[t]=this.ranges,[s,o]=this.computed_bounds,e=this.loc,i=this.model.ticker.get_ticks(s,o,t,e,{}),r=this.tick_coords,a=[];if(1==t.levels){const t=i.major,s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text])}else if(2==t.levels){const t=i.major.map(t=>t[1]),s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=i.major.map(t=>t[2]),s=this.model.formatter.doFormat(t,this),o=i.mids.map(t=>t[1]);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([o,r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc,{}),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map(t=>this.loc),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map(t=>this.loc)),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map(t=>this.loc)),a}}o.CategoricalAxisView=n,n.__name__="CategoricalAxisView";class h extends i.Axis{constructor(t){super(t)}static init_CategoricalAxis(){this.prototype.default_view=n,this.mixins([["separator_",l.Line],["group_",l.Text],["subgroup_",l.Text]]),this.define({group_label_orientation:[_.Any,"parallel"],subgroup_label_orientation:[_.Any,"parallel"]}),this.override({ticker:()=>new r.CategoricalTicker,formatter:()=>new a.CategoricalTickFormatter,separator_line_color:"lightgrey",separator_line_width:2,group_text_font_style:"bold",group_text_font_size:"11px",group_text_color:"grey",subgroup_text_font_style:"bold",subgroup_text_font_size:"11px"})}}o.CategoricalAxis=h,h.__name__="CategoricalAxis",h.init_CategoricalAxis()},n”, ” function _(t,c,e){Object.defineProperty(e,"__esModule",{value:!0});const o=t(129);class s extends o.Ticker{constructor(t){super(t)}get_ticks(t,c,e,o,s){return{major:this._collect(e.factors,e,t,c),minor:[],tops:this._collect(e.tops||[],e,t,c),mids:this._collect(e.mids||[],e,t,c)}}_collect(t,c,e,o){const s=[];for(const r of t){const t=c.synthetic(r);t>e&&t<o&&s.push(r)}return s}}e.CategoricalTicker=s,s.__name__="CategoricalTicker"},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(131),c=e(9);class a extends o.TickFormatter{constructor(e){super(e)}doFormat(e,t){return c.copy(e)}}r.CategoricalTickFormatter=a,a.__name__="CategoricalTickFormatter"},n”, ” function _(s,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=s(177);class t extends o.Axis{constructor(s){super(s)}}n.ContinuousAxis=t,t.__name__="ContinuousAxis"},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(184),a=e(185),r=e(190);class n extends s.LinearAxisView{}i.DatetimeAxisView=n,n.__name__="DatetimeAxisView";class _ extends s.LinearAxis{constructor(e){super(e)}static init_DatetimeAxis(){this.prototype.default_view=n,this.override({ticker:()=>new r.DatetimeTicker,formatter:()=>new a.DatetimeTickFormatter})}}i.DatetimeAxis=_,_.__name__="DatetimeAxis",_.init_DatetimeAxis()},n”, ” function _(e,i,s){Object.defineProperty(s,"__esModule",{value:!0});const t=e(177),n=e(182),r=e(130),a=e(126);class _ extends t.AxisView{}s.LinearAxisView=_,_.__name__="LinearAxisView";class c extends n.ContinuousAxis{constructor(e){super(e)}static init_LinearAxis(){this.prototype.default_view=_,this.override({ticker:()=>new a.BasicTicker,formatter:()=>new r.BasicTickFormatter})}}s.LinearAxis=c,c.__name__="LinearAxis",c.init_LinearAxis()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),i=r.__importDefault(t(186)),n=t(131),o=t(19),a=r.__importStar(t(18)),c=t(187),m=t(9),u=t(8);function h(t){return i.default(t,"%Y %m %d %H %M %S").split(/\s+/).map(t=>parseInt(t,10))}function d(t,s){if(u.isFunction(s))return s(t);{const e=c.sprintf("$1%06d",function(t){return Math.round(t/1e3%1*1e6)}(t));return-1==(s=s.replace(/((^|[^%])(%%))%f/,e)).indexOf("%")?s:i.default(t,s)}}const l=["microseconds","milliseconds","seconds","minsec","minutes","hourmin","hours","days","months","years"];class _ extends n.TickFormatter{constructor(t){super(t),this.strip_leading_zeros=!0}static init_DatetimeTickFormatter(){this.define({microseconds:[a.Array,["%fus"]],milliseconds:[a.Array,["%3Nms","%S.%3Ns"]],seconds:[a.Array,["%Ss"]],minsec:[a.Array,[":%M:%S"]],minutes:[a.Array,[":%M","%Mm"]],hourmin:[a.Array,["%H:%M"]],hours:[a.Array,["%Hh","%H:%M"]],days:[a.Array,["%m/%d","%a%d"]],months:[a.Array,["%m/%Y","%b %Y"]],years:[a.Array,["%Y"]]})}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const t=+i.default(new Date),s=function(s){const e=s.map(s=>d(t,s).length),r=m.sort_by(m.zip(e,s),([t])=>t);return m.unzip(r)};this._width_formats={microseconds:s(this.microseconds),milliseconds:s(this.milliseconds),seconds:s(this.seconds),minsec:s(this.minsec),minutes:s(this.minutes),hourmin:s(this.hourmin),hours:s(this.hours),days:s(this.days),months:s(this.months),years:s(this.years)}}_get_resolution_str(t,s){const e=1.1*t;switch(!1){case!(e<.001):return"microseconds";case!(e<1):return"milliseconds";case!(e<60):return s>=60?"minsec":"seconds";case!(e<3600):return s>=3600?"hourmin":"minutes";case!(e<86400):return"hours";case!(e<2678400):return"days";case!(e<31536e3):return"months";default:return"years"}}doFormat(t,s){if(0==t.length)return[];const e=Math.abs(t[t.length-1]-t[0])/1e3,r=e/(t.length-1),i=this._get_resolution_str(r,e),[,[n]]=this._width_formats[i],a=[],c=l.indexOf(i),m={};for(const t of l)m[t]=0;m.seconds=5,m.minsec=4,m.minutes=4,m.hourmin=3,m.hours=3;for(const s of t){let t,e;try{e=h(s),t=d(s,n)}catch(t){o.logger.warn("unable to format tick for timestamp value "+s),o.logger.warn(" - "+t),a.push("ERR");continue}let r=!1,u=c;for(;0==e[m[l[u]]];){let n;if(u+=1,u==l.length)break;if(("minsec"==i||"hourmin"==i)&&!r){if("minsec"==i&&0==e[4]&&0!=e[5]||"hourmin"==i&&0==e[3]&&0!=e[4]){n=this._width_formats[l[c-1]][1][0],t=d(s,n);break}r=!0}n=this._width_formats[l[u]][1][0],t=d(s,n)}if(this.strip_leading_zeros){let s=t.replace(/^0+/g,"");s!=t&&isNaN(parseInt(s))&&(s="0"+s),a.push(s)}else a.push(t)}return a}}e.DatetimeTickFormatter=_,_.__name__="DatetimeTickFormatter",_.init_DatetimeTickFormatter()},n”, ” function _(e,t,n){!function(e){"object"==typeof t&&t.exports?t.exports=e():"function"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o<a&&!(f[o][n]<=r);o++);if((u=f[o]).rules){for(s=t[u.rules],c=T+1;c>=T-g;–c)for(o=0,a=s.length;o<a;o++)s[o].from<=c&&c<=s[o].to?h.push(e(u,s[o],c)):s[o].to<c&&1==g&&(g=c-s[o].to);for(h.sort((function(e,t){return e.sort-t.sort})),o=0,a=h.length;o<a;o++)r>=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return"UTC"==e.zone?n:(e.entry=t(e,"posix",n),n+e.entry.offset+e.entry.save)}function r(e,n){return"UTC"==e.zone?n:(e.entry=r=t(e,"wallclock",n),0<(o=n-r.wallclock)&&o<r.save?null:n-r.offset-r.save);var r,o}function o(e,t,o){var a,i=+(o[1]+1),s=o[2]*i,c=u.indexOf(o[3].toLowerCase());if(c>9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:"UTC",entry:{abbrev:"UTC",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push(("0"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return"^"!=n||u?("^"==n&&(r=3),3==r?(a=(a=l.join(":")).replace(/:00$/,""),"^"!=n&&(a=a.replace(/:00$/,""))):r?(a=l.slice(0,r+1).join(":"),"^"==n&&(a=a.replace(/:00$/,""))):a=l.slice(0,2).join(""),a=(a=(u<0?"-":"+")+a).replace(/([-+])(0)/,{_:" $1","-":"$1"}[n]||"$1$2")):"Z"},"%":function(e){return"%"},n:function(e){return"\n"},t:function(e){return"\t"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,"%H:%M"])},T:function(e,t){return this.convert([t,"%H:%M:%S"])},D:function(e,t){return this.convert([t,"%m/%d/%y"])},F:function(e,t){return this.convert([t,"%Y-%m-%d"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||"%I:%M:%S"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return"1.0.23";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t<e.length;t++)if(l=e[t],Array.isArray(l))t||isNaN(l[1])?l.splice.apply(e,[t–,1].concat(l)):s=l;else if(isNaN(l)){if("string"==(u=typeof l))~l.indexOf("%")?c.format=l:t||""!=l?!t&&(u=/^(\d{4})-(\d{2})-(\d{2})(?:[T\s](\d{2}):(\d{2})(?::(\d{2})(?:\.(\d+))?)?(Z|(([+-])(\d{2}(:\d{2}){0,2})))?)?$/.exec(l))?((s=[]).push.apply(s,u.slice(1,8)),u[9]?(s.push(u[10]+1),s.push.apply(s,u[11].split(/:/))):u[8]&&s.push(1)):/^\w{2,3}_\w{2}$/.test(l)?c.locale=l:(u=i.exec(l))?f.push(u):c.zone=l:s=l;else if("function"==u){if(u=l.call(c))return u}else if(/^\w{2,3}_\w{2}$/.test(l.name))c[l.name]=l;else if(l.zones){for(u in l.zones)c[u]=l.zones[u];for(u in l.rules)c[u]=l.rules[u]}}else t||(s=l);if(c[c.locale]||delete c.locale,c[c.zone]||delete c.zone,null!=s){if(""==s)s=c.clock();else if(Array.isArray(s)){for(u=[],a=!s[7],t=0;t<11;t++)u[t]=+(s[t]||0);–u[1],s=Date.UTC.apply(Date.UTC,u)+-u[7]*(36e5*u[8]+6e4*u[9]+1e3*u[10])}else s=Math.floor(s);if(!isNaN(s)){if(a&&(s=r(c,s)),null==s)return s;for(t=0,a=f.length;t<a;t++)s=o(c,s,f[t]);return c.format?(u=new Date(n(c,s)),c.format.replace(/%([-0_^]?)(:{0,3})(\d*)(.)/g,(function(e,t,n,r,o){var a,i,l="0";if(a=c[o]){for(e=String(a.call(c,u,s,t,n.length)),"_"==(t||a.style)&&(l=" "),i="-"==t?0:a.pad||0;e.length<i;)e=l+e;for(i="-"==t?0:r||a.pad;e.length<i;)e=l+e;"N"==o&&i<e.length&&(e=e.slice(0,i)),"^"==t&&(e=e.toUpperCase())}return e}))):s}}return function(){return c.convert(arguments)}},locale:"en_US",en_US:{date:"%m/%d/%Y",time24:"%I:%M:%S %p",time12:"%I:%M:%S %p",dateTime:"%a %d %b %Y %I:%M:%S %p %Z",meridiem:["AM","PM"],month:{abbrev:"Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec".split("|\"),full:\"January|February|March|April|May|June|July|August|September|October|November|December\".split(\"|")},day:{abbrev:"Sun|Mon|Tue|Wed|Thu|Fri|Sat".split("|\"),full:\"Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday\".split(\"|")}}},u="Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|year|month|day|hour|minute|second|millisecond",i=new RegExp("^\\s*([+-])(\\d+)\\s+("+u+")s?\\s*$","i"),l=[36e5,6e4,1e3,1];function s(e,t){var n,r,o;return r=new Date(Date.UTC(e.getUTCFullYear(),0)),n=Math.floor((e.getTime()-r.getTime())/864e5),r.getUTCDay()==t?o=0:8==(o=7-r.getUTCDay()+t)&&(o=1),n>=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split("|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n", " function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=r(1),i=n.__importStar(r(188)),u=r(189),a=n.__importDefault(r(186)),f=r(29),o=r(8);function l(r,...e){return u.sprintf(r,...e)}function s(r,e,t){if(o.isNumber(r)){return l((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return\"\"+r}function c(r,e,n){if(null==e)return s;if(null!=n&&r in n){const e=n[r];if(o.isString(e)){if(e in t.DEFAULT_FORMATTERS)return t.DEFAULT_FORMATTERS[e];throw new Error(`Unknown tooltip field formatter type '${e}'`)}return function(r,t,n){return e.format(r,t,n)}}return t.DEFAULT_FORMATTERS.numeral}function m(r,e,t,n){if(\"$\"==r[0]){return function(r,e){if(r in e)return e[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),n)}return function(r,e,t){const n=e.get_column(r);if(null==n)return null;if(o.isNumber(t))return n[t];const i=n[t.index];if(o.isTypedArray(i)||o.isArray(i)){if(o.isArray(i[0])){return i[t.dim2][t.dim1]}return i[t.flat_index]}return i}(r.substring(1).replace(/[{}]/g,\"\"),e,t)}t.DEFAULT_FORMATTERS={numeral:(r,e,t)=>i.format(r,e),datetime:(r,e,t)=>a.default(r,e),printf:(r,e,t)=>l(e,r)},t.sprintf=l,t.basic_formatter=s,t.get_formatter=c,t.get_value=m,t.replace_placeholders=function(r,e,t,n,i={}){let u,a;if(o.isString(r)?(u=r,a=!1):(u=r.html,a=!0),u=u.replace(/@\\$name/g,r=>`@{${i.name}}`),u=u.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,(r,u,o)=>{const l=m(u,e,t,i);if(null==l)return\"\"+f.escape(\"???\");if(\"safe\"==o)return a=!0,\"\"+l;const s=c(u,o,n);return\"\"+f.escape(s(l,o,i))}),a){return[...(new DOMParser).parseFromString(u,\"text/html\").body.childNodes]}return u}},\n", " function _(e,n,t){\n", " /*!\n", " * numbro.js\n", " * version : 1.6.2\n", " * author : Företagsplatsen AB\n", " * license : MIT\n", " * http://www.foretagsplatsen.se\n", " */\n", " var r,i={},a=i,o=\"en-US\",l=null,u=\"0,0\";void 0!==n&&n.exports;function c(e){this._value=e}function s(e){var n,t=\"\";for(n=0;n<e;n++)t+=\"0\";return t}function f(e,n,t,r){var i,a,o=Math.pow(10,n);return a=e.toFixed(0).search(\"e\")>-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||"")+s(i-r.length),n>0&&(a+="."+s(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp("0{1,"+r+"}$"),a=a.replace(i,"")),a}function d(e,n,t){return n.indexOf("$")>-1?function(e,n,t){var r,a,l=n,u=l.indexOf("$"),c=l.indexOf("("),s=l.indexOf("+"),f=l.indexOf("-"),d="",p="";-1===l.indexOf("$")?"infix"===i[o].currency.position?(p=i[o].currency.symbol,i[o].currency.spaceSeparated&&(p=" "+p+" ")):i[o].currency.spaceSeparated&&(d=" "):l.indexOf(" $")>-1?(d=" ",l=l.replace(" $","")):l.indexOf("$ ")>-1?(d=" ",l=l.replace("$ ","")):l=l.replace("$","");if(a=h(e,l,t,p),-1===n.indexOf("$"))switch(i[o].currency.position){case"postfix":a.indexOf(")")>-1?((a=a.split("")).splice(-1,0,d+i[o].currency.symbol),a=a.join("")):a=a+d+i[o].currency.symbol;break;case"infix":break;case"prefix":a.indexOf("(")>-1||a.indexOf("-")>-1?(a=a.split(""),r=Math.max(c,f)+1,a.splice(r,0,i[o].currency.symbol+d),a=a.join("")):a=i[o].currency.symbol+d+a;break;default:throw Error(‘Currency position should be among ["prefix", "infix", "postfix"]’)}else u<=1?a.indexOf("(")>-1||a.indexOf("+")>-1||a.indexOf("-")>-1?(a=a.split(""),r=1,(u<c||u<s||u<f)&&(r=0),a.splice(r,0,i[o].currency.symbol+d),a=a.join("")):a=i[o].currency.symbol+d+a:a.indexOf(")")>-1?((a=a.split("")).splice(-1,0,d+i[o].currency.symbol),a=a.join("")):a=a+d+i[o].currency.symbol;return a}(e,n,t):n.indexOf("%")>-1?function(e,n,t){var r,i="";e*=100,n.indexOf(" %")>-1?(i=" ",n=n.replace(" %","")):n=n.replace("%","");(r=h(e,n,t)).indexOf(")")>-1?((r=r.split("")).splice(-1,0,i+"%"),r=r.join("")):r=r+i+"%";return r}(e,n,t):n.indexOf(":")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+":"+(t<10?"0"+t:t)+":"+(r<10?"0"+r:r)}(e):h(e,n,t)}function h(e,n,t,r){var a,u,c,s,d,h,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k="",U=!1,N=!1,S=!1,j=!1,D=!1,C="",L="",T=Math.abs(e),K=["B","KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"],G=["B","KB","MB","GB","TB","PB","EB","ZB","YB"],I="",P=!1,R=!1;if(0===e&&null!==l)return l;if(!isFinite(e))return""+e;if(0===n.indexOf("{")){var W=n.indexOf("}");if(-1===W)throw Error(‘Format should also contain a "}"’);b=n.slice(1,W),n=n.slice(W+1)}else b="";if(n.indexOf("}")===n.length-1){var Y=n.indexOf("{");if(-1===Y)throw Error(‘Format should also contain a "{"’);w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w="";if(v=null===($=-1===n.indexOf(".")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\..*/))?-1:$[1].length,-1!==n.indexOf("-")&&(P=!0),n.indexOf("(")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf("+")>-1&&(E=!0,n=n.replace(/\+/g,"")),n.indexOf("a")>-1){if(g=n.split(".")[0].match(/[0-9]+/g)||["0"],g=parseInt(g[0],10),U=n.indexOf("aK")>=0,N=n.indexOf("aM")>=0,S=n.indexOf("aB")>=0,j=n.indexOf("aT")>=0,D=U||N||S||j,n.indexOf(" a")>-1?(k=" ",n=n.replace(" a","")):n=n.replace("a",""),p=0===(p=(d=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(h=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,d)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(".")&&g>3))for(n+="[.]",M=(M=0===h?0:3*~~(h/3)-h)<0?M+3:M,a=0;a<M;a++)n+="0";Math.floor(Math.log(Math.abs(e))/Math.LN10)+1!==g&&(T>=Math.pow(10,12)&&!D||j?(k+=i[o].abbreviations.trillion,e/=Math.pow(10,12)):T<Math.pow(10,12)&&T>=Math.pow(10,9)&&!D||S?(k+=i[o].abbreviations.billion,e/=Math.pow(10,9)):T<Math.pow(10,9)&&T>=Math.pow(10,6)&&!D||N?(k+=i[o].abbreviations.million,e/=Math.pow(10,6)):(T<Math.pow(10,6)&&T>=Math.pow(10,3)&&!D||U)&&(k+=i[o].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf("b")>-1)for(n.indexOf(" b")>-1?(C=" ",n=n.replace(" b","")):n=n.replace("b",""),s=0;s<=K.length;s++)if(u=Math.pow(1024,s),c=Math.pow(1024,s+1),e>=u&&e<c){C+=K[s],u>0&&(e/=u);break}if(n.indexOf("d")>-1)for(n.indexOf(" d")>-1?(C=" ",n=n.replace(" d","")):n=n.replace("d",""),s=0;s<=G.length;s++)if(u=Math.pow(1e3,s),c=Math.pow(1e3,s+1),e>=u&&e<c){C+=G[s],u>0&&(e/=u);break}if(n.indexOf("o")>-1&&(n.indexOf(" o")>-1?(L=" ",n=n.replace(" o","")):n=n.replace("o",""),i[o].ordinal&&(L+=i[o].ordinal(e))),n.indexOf("[.]")>-1&&(F=!0,n=n.replace("[.]",".")),x=e.toString().split(".")[0],O=n.split(".")[1],y=n.indexOf(","),O){if(x=(I=-1!==O.indexOf("")?f(e,e.toString().split(".")[1].length,t):O.indexOf("[")>-1?f(e,(O=(O=O.replace("]","")).split("["))[0].length+O[1].length,t,O[1].length):f(e,O.length,t)).split(".")[0],I.split(".")[1].length)I=(r?k+r:i[o].delimiters.decimal)+I.split(".")[1];else I="";F&&0===Number(I.slice(1))&&(I="")}else x=f(e,null,t);return x.indexOf("-")>-1&&(x=x.slice(1),R=!0),x.length<v&&(x=new Array(v-x.length+1).join("0")+x),y>-1&&(x=x.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1"+i[o].delimiters.thousands)),0===n.indexOf(".")&&(x=""),b+(n.indexOf("(")<n.indexOf("-")?(B&&R?"(":"")+(P&&R||!B&&R?"-":""):(P&&R||!B&&R?"-":"")+(B&&R?"(":""))+(!R&&E&&0!==e?"+":"")+x+I+(L||"")+(k&&!r?k:"")+(C||"")+(B&&R?")":"")+w}function p(e,n){i[e]=n}function m(e){o=e;var n=i[e].defaults;n&&n.format&&r.defaultFormat(n.format),n&&n.currencyFormat&&r.defaultCurrencyFormat(n.currencyFormat)}(r=function(e){return r.isNumbro(e)?e=e.value():0===e||void 0===e?e=0:Number(e)||(e=r.fn.unformat(e)),new c(Number(e))}).version="1.6.2",r.isNumbro=function(e){return e instanceof c},r.setLanguage=function(e,n){console.warn("`setLanguage` is deprecated since version 1.6.0. Use `setCulture` instead");var t=e,r=e.split("-")[0],i=null;a[t]||(Object.keys(a).forEach((function(e){i||e.split("-")[0]!==r||(i=e)})),t=i||n||"en-US"),m(t)},r.setCulture=function(e,n){var t=e,r=e.split("-")[1],a=null;i[t]||(r&&Object.keys(i).forEach((function(e){a||e.split("-")[1]!==r||(a=e)})),t=a||n||"en-US"),m(t)},r.language=function(e,n){if(console.warn("`language` is deprecated since version 1.6.0. Use `culture` instead"),!e)return o;if(e&&!n){if(!a[e])throw new Error("Unknown language : "+e);m(e)}return!n&&a[e]||p(e,n),r},r.culture=function(e,n){if(!e)return o;if(e&&!n){if(!i[e])throw new Error("Unknown culture : "+e);m(e)}return!n&&i[e]||p(e,n),r},r.languageData=function(e){if(console.warn("`languageData` is deprecated since version 1.6.0. Use `cultureData` instead"),!e)return a[o];if(!a[e])throw new Error("Unknown language : "+e);return a[e]},r.cultureData=function(e){if(!e)return i[o];if(!i[e])throw new Error("Unknown culture : "+e);return i[e]},r.culture("en-US",{delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(e){var n=e%10;return 1==~~(e%100/10)?"th":1===n?"st":2===n?"nd":3===n?"rd":"th"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",0000 a"},formats:{fourDigits:"0000 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00"}}),r.languages=function(){return console.warn("`languages` is deprecated since version 1.6.0. Use `cultures` instead"),a},r.cultures=function(){return i},r.zeroFormat=function(e){l="string"==typeof e?e:null},r.defaultFormat=function(e){u="string"==typeof e?e:"0.0"},r.defaultCurrencyFormat=function(e){"string"==typeof e?e:"0$"},r.validate=function(e,n){var t,i,a,o,l,u,c,s;if("string"!=typeof e&&(e+="",console.warn&&console.warn("Numbro.js: Value is not string. It has been co-erced to: ",e)),(e=e.trim()).match(/^\d+$/))return!0;if(""===e)return!1;try{c=r.cultureData(n)}catch(e){c=r.cultureData(r.culture())}return a=c.currency.symbol,l=c.abbreviations,t=c.delimiters.decimal,i="."===c.delimiters.thousands?"\\.":c.delimiters.thousands,(null===(s=e.match(/^[^\d]+/))||(e=e.substr(1),s[0]===a))&&((null===(s=e.match(/[^\d]+$/))||(e=e.slice(0,-1),s[0]===l.thousand||s[0]===l.million||s[0]===l.billion||s[0]===l.trillion))&&(u=new RegExp(i+"{2}"),!e.match(/[^\d.,]/g)&&(!((o=e.split(t)).length>2)&&(o.length<2?!!o[0].match(/^\d+.\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\d+$/):!!o[0].match(/^\d+.*\d$/)&&!o[0].match(u)&&!!o[1].match(/^\d+$/)))))},n.exports={format:function(e,n,t,i){return null!=t&&t!==r.culture()&&r.setCulture(t),d(Number(e),null!=n?n:u,null==i?Math.round:i)}}},n”, ” function _(e,n,t){!function(){"use strict";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|’[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y="";for(s=0;s<g;s++)if("string"==typeof t[s])y+=t[s];else if("object"==typeof t[s]){if((o=t[s]).keys)for(i=r[d],a=0;a<o.keys.length;a++){if(null==i)throw new Error(n(‘[sprintf] Cannot access property "%s" of undefined value "%s"’,o.keys[a],o.keys[a-1]));i=i[o.keys[a]]}else i=o.param_no?r[o.param_no]:r[d++];if(e.not_type.test(o.type)&&e.not_primitive.test(o.type)&&i instanceof Function&&(i=i()),e.numeric_arg.test(o.type)&&"number"!=typeof i&&isNaN(i))throw new TypeError(n("[sprintf] expecting number but found %T",i));switch(e.number.test(o.type)&&(u=i>=0),o.type){case"b":i=parseInt(i,10).toString(2);break;case"c":i=String.fromCharCode(parseInt(i,10));break;case"d":case"i":i=parseInt(i,10);break;case"j":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case"e":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case"f":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case"g":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case"o":i=(parseInt(i,10)>>>0).toString(8);break;case"s":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case"t":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case"T":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case"u":i=parseInt(i,10)>>>0;break;case"v":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case"x":i=(parseInt(i,10)>>>0).toString(16);break;case"X":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f="":(f=u?"+":"-",i=i.toString().replace(e.sign,"")),c=o.pad_char?"0"===o.pad_char?"0":o.pad_char.charAt(1):" ",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):"",y+=o.align?f+i+p:"0"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push("%");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(o.push(c[1]);""!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError("[sprintf] failed to parse named argument key");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),"undefined"!=typeof window&&(window.sprintf=n,window.vsprintf=r,"function"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},n”, ” function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(9),a=e(127),s=e(191),r=e(192),c=e(195),_=e(196),m=e(194);class k extends s.CompositeTicker{constructor(e){super(e)}static init_DatetimeTicker(){this.override({num_minor_ticks:0,tickers:()=>[new a.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*m.ONE_MILLI,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:m.ONE_SECOND,max_interval:30*m.ONE_MINUTE,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:m.ONE_HOUR,max_interval:12*m.ONE_HOUR,num_minor_ticks:0}),new r.DaysTicker({days:t.range(1,32)}),new r.DaysTicker({days:t.range(1,31,3)}),new r.DaysTicker({days:[1,8,15,22]}),new r.DaysTicker({days:[1,15]}),new c.MonthsTicker({months:t.range(0,12,1)}),new c.MonthsTicker({months:t.range(0,12,2)}),new c.MonthsTicker({months:t.range(0,12,4)}),new c.MonthsTicker({months:t.range(0,12,6)}),new _.YearsTicker({})]})}}n.DatetimeTicker=k,k.__name__="DatetimeTicker",k.init_DatetimeTicker()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const r=t(1),s=t(128),n=r.__importStar(t(18)),_=t(9);class a extends s.ContinuousTicker{constructor(t){super(t)}static init_CompositeTicker(){this.define({tickers:[n.Array,[]]})}get min_intervals(){return this.tickers.map(t=>t.get_min_interval())}get max_intervals(){return this.tickers.map(t=>t.get_max_interval())}get min_interval(){return this.min_intervals[0]}get max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[_.sorted_index(this.min_intervals,s)-1,_.sorted_index(this.max_intervals,s)],a=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map(t=>Math.abs(i-r/t));let c;if(_.is_empty(a.filter(t=>!isNaN(t))))c=this.tickers[0];else{const t=n[_.argmin(a)];c=this.tickers[t]}return c}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=a,a.__name__="CompositeTicker",a.init_CompositeTicker()},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(1),s=t(193),a=t(194),o=i.__importStar(t(18)),r=t(9);class _ extends s.SingleIntervalTicker{constructor(t){super(t)}static init_DaysTicker(){this.define({days:[o.Array,[]]}),this.override({num_minor_ticks:0})}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*a.ONE_DAY:this.interval=31*a.ONE_DAY}get_ticks_no_defaults(t,e,n,i){const s=function(t,e){const n=a.last_month_no_later_than(new Date(t)),i=a.last_month_no_later_than(new Date(e));i.setUTCMonth(i.getUTCMonth()+1);const s=[],o=n;for(;s.push(a.copy_date(o)),o.setUTCMonth(o.getUTCMonth()+1),!(o>i););return s}(t,e),o=this.days,_=this.interval;return{major:r.concat(s.map(t=>((t,e)=>{const n=t.getUTCMonth(),i=[];for(const s of o){const o=a.copy_date(t);o.setUTCDate(s);new Date(o.getTime()+e/2).getUTCMonth()==n&&i.push(o)}return i})(t,_))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.DaysTicker=_,_.__name__="DaysTicker",_.init_DaysTicker()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),r=e(128),l=n.__importStar(e(18));class a extends r.ContinuousTicker{constructor(e){super(e)}static init_SingleIntervalTicker(){this.define({interval:[l.Number]})}get_interval(e,t,i){return this.interval}get min_interval(){return this.interval}get max_interval(){return this.interval}}i.SingleIntervalTicker=a,a.__name__="SingleIntervalTicker",a.init_SingleIntervalTicker()},n”, ” function _(t,e,n){function _(t){return new Date(t.getTime())}function O(t){const e=_(t);return e.setUTCDate(1),e.setUTCHours(0),e.setUTCMinutes(0),e.setUTCSeconds(0),e.setUTCMilliseconds(0),e}Object.defineProperty(n,"__esModule",{value:!0}),n.ONE_MILLI=1,n.ONE_SECOND=1e3,n.ONE_MINUTE=60*n.ONE_SECOND,n.ONE_HOUR=60*n.ONE_MINUTE,n.ONE_DAY=24*n.ONE_HOUR,n.ONE_MONTH=30*n.ONE_DAY,n.ONE_YEAR=365*n.ONE_DAY,n.copy_date=_,n.last_month_no_later_than=O,n.last_year_no_later_than=function(t){const e=O(t);return e.setUTCMonth(0),e}},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),i=t(193),s=t(194),a=r.__importStar(t(18)),o=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}static init_MonthsTicker(){this.define({months:[a.Array,[]]})}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*s.ONE_MONTH:this.interval=12*s.ONE_MONTH}get_ticks_no_defaults(t,e,n,r){const i=function(t,e){const n=s.last_year_no_later_than(new Date(t)),r=s.last_year_no_later_than(new Date(e));r.setUTCFullYear(r.getUTCFullYear()+1);const i=[],a=n;for(;i.push(s.copy_date(a)),a.setUTCFullYear(a.getUTCFullYear()+1),!(a>r););return i}(t,e),a=this.months;return{major:o.concat(i.map(t=>a.map(e=>{const n=s.copy_date(t);return n.setUTCMonth(e),n}))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.MonthsTicker=_,_.__name__="MonthsTicker",_.init_MonthsTicker()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(126),r=e(193),n=e(194);class _ extends r.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=n.ONE_YEAR,this.basic_ticker=new i.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=n.last_year_no_later_than(new Date(e)).getUTCFullYear(),_=n.last_year_no_later_than(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,_,a,i).major.map(e=>Date.UTC(e,0,1)).filter(a=>e<=a&&a<=t),minor:[]}}}a.YearsTicker=_,_.__name__="YearsTicker"},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(177),o=e(182),n=e(198),r=e(199);class _ extends s.AxisView{}t.LogAxisView=_,_.__name__="LogAxisView";class c extends o.ContinuousAxis{constructor(e){super(e)}static init_LogAxis(){this.prototype.default_view=_,this.override({ticker:()=>new r.LogTicker,formatter:()=>new n.LogTickFormatter})}}t.LogAxis=c,c.__name__="LogAxis",c.init_LogAxis()},n”, ” function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=t(1),o=t(131),a=t(130),n=i.__importStar(t(18));class c extends o.TickFormatter{constructor(t){super(t)}static init_LogTickFormatter(){this.define({ticker:[n.Instance,null]})}initialize(){super.initialize(),this.basic_formatter=new a.BasicTickFormatter}doFormat(t,e){if(0==t.length)return[];const r=null!=this.ticker?this.ticker.base:10;let i=!1;const o=new Array(t.length);for(let e=0,a=t.length;e<a;e++)if(o[e]=`${r}^${Math.round(Math.log(t[e])/Math.log(r))}`,e>0&&o[e]==o[e-1]){i=!0;break}return i?this.basic_formatter.doFormat(t,e):o}}r.LogTickFormatter=c,c.__name__="LogTickFormatter",c.init_LogTickFormatter()},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(127),s=t(9);class n extends i.AdaptiveTicker{constructor(t){super(t)}static init_LogTicker(){this.override({mantissas:[1,5]})}get_ticks_no_defaults(t,o,e,i){const n=this.num_minor_ticks,r=[],c=this.base,a=Math.log(t)/Math.log(c),f=Math.log(o)/Math.log(c),l=f-a;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,i),c=Math.floor(t/e),a=Math.ceil(o/e);if(h=s.range(c,a+1).filter(t=>0!=t).map(t=>t*e).filter(e=>t<=e&&e<=o),n>0&&h.length>0){const t=e/n,o=s.range(0,n).map(o=>o*t);for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*a),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=s.range(t-1,o+1,e).map(t=>c**t),n>0&&h.length>0){const t=c**e/n,o=s.range(1,n+1).map(o=>o*t);for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter(e=>t<=e&&e<=o),minor:r.filter(e=>t<=e&&e<=o)}}}e.LogTicker=n,n.__name__="LogTicker",n.init_LogTicker()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(177),s=e(184),o=e(201),a=e(202);class c extends i.AxisView{}r.MercatorAxisView=c,c.__name__="MercatorAxisView";class n extends s.LinearAxis{constructor(e){super(e)}static init_MercatorAxis(){this.prototype.default_view=c,this.override({ticker:()=>new a.MercatorTicker({dimension:"lat"}),formatter:()=>new o.MercatorTickFormatter({dimension:"lat"})})}}r.MercatorAxis=n,n.__name__="MercatorAxis",n.init_MercatorAxis()},n”, ” function _(r,t,e){Object.defineProperty(e,"__esModule",{value:!0});const o=r(1),n=r(130),i=o.__importStar(r(18)),c=r(37);class a extends n.BasicTickFormatter{constructor(r){super(r)}static init_MercatorTickFormatter(){this.define({dimension:[i.LatLon]})}doFormat(r,t){if(null==this.dimension)throw new Error("MercatorTickFormatter.dimension not configured");if(0==r.length)return[];const e=r.length,o=new Array(e);if("lon"==this.dimension)for(let n=0;n<e;n++){const[e]=c.wgs84_mercator.invert(r[n],t.loc);o[n]=e}else for(let n=0;n<e;n++){const[,e]=c.wgs84_mercator.invert(t.loc,r[n]);o[n]=e}return super.doFormat(o,t)}}e.MercatorTickFormatter=a,a.__name__="MercatorTickFormatter",a.init_MercatorTickFormatter()},n”, ” function _(t,o,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),s=t(126),e=n.__importStar(t(18)),i=t(37);class c extends s.BasicTicker{constructor(t){super(t)}static init_MercatorTicker(){this.define({dimension:[e.LatLon]})}get_ticks_no_defaults(t,o,r,n){if(null==this.dimension)throw new Error(this+".dimension wasn’t configured");return[t,o]=i.clip_mercator(t,o,this.dimension),"lon"==this.dimension?this._get_ticks_lon(t,o,r,n):this._get_ticks_lat(t,o,r,n)}_get_ticks_lon(t,o,r,n){const[s]=i.wgs84_mercator.invert(t,r),[e,c]=i.wgs84_mercator.invert(o,r),_=super.get_ticks_no_defaults(s,e,r,n),a=[];for(const t of _.major)if(i.in_bounds(t,"lon")){const[o]=i.wgs84_mercator.compute(t,c);a.push(o)}const m=[];for(const t of _.minor)if(i.in_bounds(t,"lon")){const[o]=i.wgs84_mercator.compute(t,c);m.push(o)}return{major:a,minor:m}}_get_ticks_lat(t,o,r,n){const[,s]=i.wgs84_mercator.invert(r,t),[e,c]=i.wgs84_mercator.invert(r,o),_=super.get_ticks_no_defaults(s,c,r,n),a=[];for(const t of _.major)if(i.in_bounds(t,"lat")){const[,o]=i.wgs84_mercator.compute(e,t);a.push(o)}const m=[];for(const t of _.minor)if(i.in_bounds(t,"lat")){const[,o]=i.wgs84_mercator.compute(e,t);m.push(o)}return{major:a,minor:m}}}r.MercatorTicker=c,c.__name__="MercatorTicker",c.init_MercatorTicker()},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});var t=e(204);o.CustomJS=t.CustomJS;var u=e(206);o.OpenURL=u.OpenURL},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),u=t(205),c=n.__importStar(t(18)),r=t(13),a=t(29);class i extends u.Callback{constructor(t){super(t)}static init_CustomJS(){this.define({args:[c.Any,{}],code:[c.String,""]})}get names(){return r.keys(this.args)}get values(){return r.values(this.args)}get func(){const t=a.use_strict(this.code);return new Function(…this.names,"cb_obj","cb_data",t)}execute(t,e={}){return this.func.apply(t,this.values.concat(t,e))}}s.CustomJS=i,i.__name__="CustomJS",i.init_CustomJS()},n”, ” function _(e,c,l){Object.defineProperty(l,"__esModule",{value:!0});const a=e(81);class n extends a.Model{constructor(e){super(e)}}l.Callback=n,n.__name__="Callback"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(1),i=e(205),s=e(187),r=e(8),c=o.__importStar(e(18));class a extends i.Callback{constructor(e){super(e)}static init_OpenURL(){this.define({url:[c.String,"http://"],same_tab:[c.Boolean,!1]})}execute(e,{source:t}){const n=e=>{const n=s.replace_placeholders(this.url,t,e);if(!r.isString(n))throw new Error("HTML output is not supported in this context");this.same_tab?window.location.href=n:window.open(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=a,a.__name__="OpenURL",a.init_OpenURL()},n”, ” function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var n=a(77);r.Canvas=n.Canvas;var s=a(208);r.CartesianFrame=s.CartesianFrame},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const a=e(209),_=e(146),n=e(157),r=e(158),i=e(210),g=e(98),c=e(212),o=e(13),l=e(11);class h extends c.LayoutItem{constructor(e,t,s,a,_={},n={}){super(),this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=n,l.assert(null==e.source_range&&null==e.target_range),l.assert(null==t.source_range&&null==t.target_range),this._configure_scales()}_get_ranges(e,t){return new Map(o.entries(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s){const c=new Map;for(const[o,l]of t){if((l instanceof i.DataRange1d||l instanceof r.Range1d)&&!(e instanceof _.ContinuousScale))throw new Error(Range ${l.type} is incompatible is Scale ${e.type});if(l instanceof g.FactorRange&&!(e instanceof a.CategoricalScale))throw new Error(Range ${l.type} is incompatible is Scale ${e.type});e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint="log");const t=e.clone();t.setv({source_range:l,target_range:s}),c.set(o,t)}return c}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new r.Range1d({start:e.left,end:e.right}),this._y_target=new r.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}_set_geometry(e,t){super._set_geometry(e,t),this._update_scales()}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get("default")}get y_scale(){return this._y_scales.get("default")}get xscales(){return o.to_object(this.x_scales)}get yscales(){return o.to_object(this.y_scales)}}s.CartesianFrame=h,h.__name__="CartesianFrame"},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(147);class _ extends n.Scale{constructor(e){super(e)}compute(e){return super._linear_compute(this.source_range.synthetic(e))}v_compute(e){return super._linear_v_compute(this.source_range.v_synthetic(e))}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}t.CategoricalScale=_,_.__name__="CategoricalScale"},n”, ” function _(t,i,n){Object.defineProperty(n,"__esModule",{value:!0});const e=t(1),a=t(211),s=t(90),l=t(19),_=e.__importStar(t(18)),o=e.__importStar(t(79)),r=t(9);class h extends a.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}static init_DataRange1d(){this.define({start:[_.Number],end:[_.Number],range_padding:[_.Number,.1],range_padding_units:[_.PaddingUnits,"percent"],flipped:[_.Boolean,!1],follow:[_.StartEnd],follow_interval:[_.Number],default_span:[_.Number,2],only_visible:[_.Boolean,!1]}),this.internal({scale_hint:[_.String,"auto"]})}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const t=this.names;let i=this.renderers;if(0==i.length)for(const t of this.plots){const n=t.renderers.filter(t=>t instanceof s.GlyphRenderer);i=i.concat(n)}t.length>0&&(i=i.filter(i=>r.includes(t,i.name))),l.logger.debug(computed ${i.length} renderers for ${this});for(const t of i)l.logger.trace(" - "+t);return i}_compute_plot_bounds(t,i){let n=o.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=o.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=o.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return e<i*a?e=i*a:a=e/i,n.x1=s+.5*e,n.x0=s-.5*e,n.y1=l+.5*a,n.y0=l-.5*a,n}_compute_min_max(t,i){let n,e,a=o.empty();for(const i of t)a=o.union(a,i);return[n,e]=0==i?[a.x0,a.x1]:[a.y0,a.y1],[n,e]}_compute_range(t,i){const n=this.range_padding;let e,a;if(null!=this._initial_start&&(t=this._initial_start),null!=this._initial_end&&(i=this._initial_end),"log"==this.scale_hint){let s,_;if((isNaN(t)||!isFinite(t)||t<=0)&&(t=isNaN(i)||!isFinite(i)||i<=0?.1:i/100,l.logger.warn("could not determine minimum data value for log axis, DataRange1d using value "+t)),(isNaN(i)||!isFinite(i)||i<=0)&&(i=isNaN(t)||!isFinite(t)||t<=0?10:100*t,l.logger.warn("could not determine maximum data value for log axis, DataRange1d using value "+i)),i==t)_=this.default_span+.001,s=Math.log(t)/Math.log(10);else{let e,a;"percent"==this.range_padding_units?(e=Math.log(t)/Math.log(10),a=Math.log(i)/Math.log(10),_=(a-e)*(1+n)):(e=Math.log(t-n)/Math.log(10),a=Math.log(i+n)/Math.log(10),_=a-e),s=(e+a)/2}e=10**(s-_/2),a=10**(s+_/2)}else{let s;s=i==t?this.default_span:"percent"==this.range_padding_units?(i-t)*(1+n):i-t+2*n;const l=(i+t)/2;e=l-s/2,a=l+s/2}let s=1;this.flipped&&([e,a]=[a,e],s=-1);const _=this.follow_interval;return null!=_&&Math.abs(e-a)>_&&("start"==this.follow?a=e+s*_:"end"==this.follow&&(e=a-s*_)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.values(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&("log"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&("log"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);const[h,d]=[this.start,this.end];if(o!=h||r!=d){const t={};o!=h&&(t.start=o),r!=d&&(t.end=r),this.setv(t)}"auto"==this.bounds&&this.setv({bounds:[o,r]},{silent:!0}),this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=h,h.__name__="DataRange1d",h.init_DataRange1d()},n”, ” function _(e,a,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),r=e(99),s=n.__importStar(e(18));class _ extends r.Range{constructor(e){super(e)}static init_DataRange(){this.define({names:[s.Array,[]],renderers:[s.Array,[]]})}}t.DataRange=_,_.__name__="DataRange",_.init_DataRange()},n”, ” function _(a,o,t){Object.defineProperty(t,"__esModule",{value:!0});var e=a(213);t.Sizeable=e.Sizeable,t.SizingPolicy=e.SizingPolicy;var i=a(214);t.Layoutable=i.Layoutable,t.LayoutItem=i.LayoutItem;var n=a(215);t.HStack=n.HStack,t.VStack=n.VStack,t.AnchorLayout=n.AnchorLayout;var r=a(216);t.Grid=r.Grid,t.Row=r.Row,t.Column=r.Column;var c=a(217);t.ContentBox=c.ContentBox,t.VariadicBox=c.VariadicBox},n”, ” function _(t,h,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(21),{min:d,max:n}=Math;class w{constructor(t={}){this.width=null!=t.width?t.width:0,this.height=null!=t.height?t.height:0}bounded_to({width:t,height:h}){return new w({width:this.width==1/0&&null!=t?t:this.width,height:this.height==1/0&&null!=h?h:this.height})}expanded_to({width:t,height:h}){return new w({width:t!=1/0?n(this.width,t):this.width,height:h!=1/0?n(this.height,h):this.height})}expand_to({width:t,height:h}){this.width=n(this.width,t),this.height=n(this.height,h)}narrowed_to({width:t,height:h}){return new w({width:d(this.width,t),height:d(this.height,h)})}narrow_to({width:t,height:h}){this.width=d(this.width,t),this.height=d(this.height,h)}grow_by({left:t,right:h,top:i,bottom:e}){const d=this.width+t+h,n=this.height+i+e;return new w({width:d,height:n})}shrink_by({left:t,right:h,top:i,bottom:e}){const d=n(this.width-t-h,0),s=n(this.height-i-e,0);return new w({width:d,height:s})}map(t,h){return new w({width:t(this.width),height:(null!=h?h:t)(this.height)})}}i.Sizeable=w,w.__name__="Sizeable",i.SizingPolicy=e.Enum("fixed","fit","min","max")},n”, ” function _(i,t,h){Object.defineProperty(h,"__esModule",{value:!0});const e=i(213),s=i(79),{min:n,max:g,round:a}=Math;class l{constructor(){this._bbox=new s.BBox,this._inner_bbox=new s.BBox}get bbox(){return this._bbox}get inner_bbox(){return this._inner_bbox}get sizing(){return this._sizing}set_sizing(i){const t=i.width_policy||"fit",h=i.width,e=null!=i.min_width?i.min_width:0,s=null!=i.max_width?i.max_width:1/0,n=i.height_policy||"fit",g=i.height,a=null!=i.min_height?i.min_height:0,l=null!=i.max_height?i.max_height:1/0,_=i.aspect,d=i.margin||{top:0,right:0,bottom:0,left:0},r=!1!==i.visible,w=i.halign||"start",o=i.valign||"start";this._sizing={width_policy:t,min_width:e,width:h,max_width:s,height_policy:n,min_height:a,height:g,max_height:l,aspect:_,margin:d,visible:r,halign:w,valign:o,size:{width:h,height:g},min_size:{width:e,height:a},max_size:{width:s,height:l}},this._init()}_init(){}_set_geometry(i,t){this._bbox=i,this._inner_bbox=t}set_geometry(i,t){this._set_geometry(i,t||i)}is_width_expanding(){return"max"==this.sizing.width_policy}is_height_expanding(){return"max"==this.sizing.height_policy}apply_aspect(i,{width:t,height:h}){const{aspect:e}=this.sizing;if(null!=e){const{width_policy:s,height_policy:n}=this.sizing,g=(i,t)=>{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if("fixed"!=s&&"fixed"!=n)if(s==n){const s=t,n=a(t/e),g=a(h*e),l=h;Math.abs(i.width-s)+Math.abs(i.height-n)<=Math.abs(i.width-g)+Math.abs(i.height-l)?(t=s,h=n):(t=g,h=l)}else g(s,n)?h=a(t/e):t=a(h*e);else"fixed"==s?h=a(t/e):"fixed"==n&&(t=a(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>"fixed"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>"fixed"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,s=new e.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(s),g=this.clip_size(n),a=t(g.width),l=h(g.height),_=this.apply_aspect(s,{width:a,height:l});return Object.assign(Object.assign({},n),_)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new s.BBox({left:0,top:0,width:h,height:e});let g=void 0;if(null!=t.inner){const{left:i,top:n,right:a,bottom:l}=t.inner;g=new s.BBox({left:i,top:n,right:h-a,bottom:e-l})}this.set_geometry(n,g)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_width(i){return g(this.sizing.min_width,n(i,this.sizing.max_width))}clip_height(i){return g(this.sizing.min_height,n(i,this.sizing.max_height))}clip_size({width:i,height:t}){return{width:this.clip_width(i),height:this.clip_height(t)}}}h.Layoutable=l,l.__name__="Layoutable";class _ extends l{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;let e,s;if(i.width==1/0)e=null!=this.sizing.width?this.sizing.width:0;else switch(t){case"fixed":e=null!=this.sizing.width?this.sizing.width:0;break;case"min":e=null!=this.sizing.width?n(i.width,this.sizing.width):0;break;case"fit":e=null!=this.sizing.width?n(i.width,this.sizing.width):i.width;break;case"max":e=null!=this.sizing.width?g(i.width,this.sizing.width):i.width}if(i.height==1/0)s=null!=this.sizing.height?this.sizing.height:0;else switch(h){case"fixed":s=null!=this.sizing.height?this.sizing.height:0;break;case"min":s=null!=this.sizing.height?n(i.height,this.sizing.height):0;break;case"fit":s=null!=this.sizing.height?n(i.height,this.sizing.height):i.height;break;case"max":s=null!=this.sizing.height?g(i.height,this.sizing.height):i.height}return{width:e,height:s}}}h.LayoutItem=_,_.__name__="LayoutItem";class d extends l{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case"fixed":return null!=this.sizing.width?this.sizing.width:t.width;case"min":return t.width;case"fit":return h.width;case"max":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case"fixed":return null!=this.sizing.height?this.sizing.height:t.height;case"min":return t.height;case"fit":return h.height;case"max":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=d,d.__name__="ContentLayoutable"},n”, ” function _(t,e,h){Object.defineProperty(h,"__esModule",{value:!0});const o=t(214),r=t(79);class i extends o.Layoutable{constructor(){super(…arguments),this.children=[]}}h.Stack=i,i.__name__="Stack";class s extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e+=o.width,h=Math.max(h,o.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{top:h,bottom:o}=t;let{left:i}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({left:i,width:e,top:h,bottom:o})),i+=e}}}h.HStack=s,s.__name__="HStack";class n extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e=Math.max(e,o.width),h+=o.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{left:h,right:o}=t;let{top:i}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({top:i,height:e,left:h,right:o})),i+=e}}}h.VStack=n,n.__name__="VStack";class c extends o.Layoutable{constructor(){super(…arguments),this.children=[]}_measure(t){let e=0,h=0;for(const{layout:o}of this.children){const r=o.measure(t);e=Math.max(e,r.width),h=Math.max(h,r.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);for(const{layout:e,anchor:h,margin:o}of this.children){const{left:i,right:s,top:n,bottom:c,hcenter:a,vcenter:_}=t,{width:g,height:d}=e.measure(t);let m;switch(h){case"top_left":m=new r.BBox({left:i+o,top:n+o,width:g,height:d});break;case"top_center":m=new r.BBox({hcenter:a,top:n+o,width:g,height:d});break;case"top_right":m=new r.BBox({right:s-o,top:n+o,width:g,height:d});break;case"bottom_right":m=new r.BBox({right:s-o,bottom:c-o,width:g,height:d});break;case"bottom_center":m=new r.BBox({hcenter:a,bottom:c-o,width:g,height:d});break;case"bottom_left":m=new r.BBox({left:i+o,bottom:c-o,width:g,height:d});break;case"center_left":m=new r.BBox({left:i+o,vcenter:_,width:g,height:d});break;case"center":m=new r.BBox({hcenter:a,vcenter:_,width:g,height:d});break;case"center_right":m=new r.BBox({right:s-o,vcenter:_,width:g,height:d})}e.set_geometry(m)}}}h.AnchorLayout=c,c.__name__="AnchorLayout"},n”, ” function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const e=t(213),o=t(214),n=t(8),r=t(79),h=t(9),{max:l,round:c}=Math;class a{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}a.__name__="DefaultMap";class g{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=l(this._nrows,s+1),this._ncols=l(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter(({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1).map(({data:t})=>t)}row(t){return this._items.filter(({span:i})=>i.r0<=t&&t<=i.r1).map(({data:t})=>t)}col(t){return this._items.filter(({span:i})=>i.c0<=t&&t<=i.c1).map(({data:t})=>t)}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new g;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}g.__name__="Container";class p extends o.Layoutable{constructor(t=[]){super(),this.items=t,this.rows="auto",this.cols="auto",this.spacing=0,this.absolute=!1}is_width_expanding(){if(super.is_width_expanding())return!0;if("fixed"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return h.some(t,t=>"max"==t.policy)}is_height_expanding(){if(super.is_height_expanding())return!0;if("fixed"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return h.some(t,t=>"max"==t.policy)}_init(){super._init();const t=new g;for(const{layout:i,row:s,col:e,row_span:o,col_span:n}of this.items)if(i.sizing.visible){const r=s,h=e,l=s+(null!=o?o:1)-1,c=e+(null!=n?n:1)-1;t.add({r0:r,c0:h,r1:l,c1:c},i)}const{nrows:i,ncols:s}=t,e=new Array(i);for(let s=0;s<i;s++){const i=(()=>{const t=n.isPlainObject(this.rows)?this.rows[s]||this.rows[""]:this.rows;return null==t?{policy:"auto"}:n.isNumber(t)?{policy:"fixed",height:t}:n.isString(t)?{policy:t}:t})(),o=i.align||"auto";if("fixed"==i.policy)e[s]={policy:"fixed",height:i.height,align:o};else if("min"==i.policy)e[s]={policy:"min",align:o};else if("fit"==i.policy||"max"==i.policy)e[s]={policy:i.policy,flex:i.flex||1,align:o};else{if("auto"!=i.policy)throw new Error("unrechable");h.some(t.row(s),t=>t.is_height_expanding())?e[s]={policy:"max",flex:1,align:o}:e[s]={policy:"min",align:o}}}const o=new Array(s);for(let i=0;i<s;i++){const s=(()=>{const t=n.isPlainObject(this.cols)?this.cols[i]||this.cols[""]:this.cols;return null==t?{policy:"auto"}:n.isNumber(t)?{policy:"fixed",width:t}:n.isString(t)?{policy:t}:t})(),e=s.align||"auto";if("fixed"==s.policy)o[i]={policy:"fixed",width:s.width,align:e};else if("min"==s.policy)o[i]={policy:"min",align:e};else if("fit"==s.policy||"max"==s.policy)o[i]={policy:s.policy,flex:s.flex||1,align:e};else{if("auto"!=s.policy)throw new Error("unrechable");h.some(t.col(i),t=>t.is_width_expanding())?o[i]={policy:"max",flex:1,align:e}:o[i]={policy:"min",align:e}}}const[r,l]=n.isNumber(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:t,nrows:i,ncols:s,rows:e,cols:o,rspacing:r,cspacing:l}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:h.sum(t)+(s-1)*o,width:h.sum(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:o,rows:n,cols:r,rspacing:h,cspacing:a}=this._state,p=new Array(s);for(let t=0;t<s;t++){const i=n[t];p[t]="fixed"==i.policy?i.height:0}const _=new Array(o);for(let t=0;t<o;t++){const i=r[t];_[t]="fixed"==i.policy?i.width:0}const f=new g;i.foreach((i,s)=>{const{r0:o,c0:g,r1:d,c1:w}=i,u=(d-o)*h,m=(w-g)*a;let y=0;for(let i=o;i<=d;i++)y+=t(i,g).height;y+=u;let x=0;for(let i=g;i<=w;i++)x+=t(o,i).width;x+=m;const b=s.measure({width:x,height:y});f.add(i,{layout:s,size_hint:b});const z=new e.Sizeable(b).grow_by(s.sizing.margin);z.height-=u,z.width-=m;const j=[];for(let t=o;t<=d;t++){const i=n[t];"fixed"==i.policy?z.height-=i.height:j.push(t)}if(z.height>0){const t=c(z.height/j.length);for(const i of j)p[i]=l(p[i],t)}const O=[];for(let t=g;t<=w;t++){const i=r[t];"fixed"==i.policy?z.width-=i.width:O.push(t)}if(z.width>0){const t=c(z.width/O.length);for(const i of O)_[i]=l(_[i],t)}});return{size:this._measure_totals(p,_),row_heights:p,col_widths:_,size_hints:f}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:r}=this._state,h=this._measure_cells((t,i)=>{const s=e[t],n=o[i];return{width:"fixed"==n.policy?n.width:1/0,height:"fixed"==s.policy?s.height:1/0}});let a;a="fixed"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:h.size.height;let g,p=0;for(let t=0;t<i;t++){const i=e[t];"fit"==i.policy||"max"==i.policy?p+=i.flex:a-=h.row_heights[t]}if(a-=(i-1)*n,0!=p&&a>0)for(let t=0;t<i;t++){const i=e[t];if("fit"==i.policy||"max"==i.policy){const s=c(a*(i.flex/p));a-=s,h.row_heights[t]=s,p-=i.flex}}else if(a<0){let t=0;for(let s=0;s<i;s++){"fixed"!=e[s].policy&&t++}let s=-a;for(let o=0;o<i;o++){if("fixed"!=e[o].policy){const i=h.row_heights[o],e=c(s/t);h.row_heights[o]=l(i-e,0),s-=e>i?i:e,t–}}}g="fixed"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:h.size.width;let _=0;for(let t=0;t<s;t++){const i=o[t];"fit"==i.policy||"max"==i.policy?_+=i.flex:g-=h.col_widths[t]}if(g-=(s-1)*r,0!=_&&g>0)for(let t=0;t<s;t++){const i=o[t];if("fit"==i.policy||"max"==i.policy){const s=c(g*(i.flex/_));g-=s,h.col_widths[t]=s,_-=i.flex}}else if(g<0){let t=0;for(let i=0;i<s;i++){"fixed"!=o[i].policy&&t++}let i=-g;for(let e=0;e<s;e++){if("fixed"!=o[e].policy){const s=h.col_widths[e],o=c(i/t);h.col_widths[e]=l(s-o,0),i-=o>s?s:o,t–}}}const{row_heights:f,col_widths:d,size_hints:w}=this._measure_cells((t,i)=>({width:h.col_widths[i],height:h.row_heights[t]}));return{size:this._measure_totals(f,d),row_heights:f,col_widths:d,size_hints:w}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:h,col_widths:g,size_hints:p}=this._measure_grid(t),_=this._state.rows.map((t,i)=>Object.assign(Object.assign({},t),{top:0,height:h[i],get bottom(){return this.top+this.height}})),f=this._state.cols.map((t,i)=>Object.assign(Object.assign({},t),{left:0,width:g[i],get right(){return this.left+this.width}})),d=p.map((t,i)=>Object.assign(Object.assign({},i),{outer:new r.BBox,inner:new r.BBox}));for(let i=0,e=this.absolute?t.top:0;i<s;i++){const t=_[i];t.top=e,e+=t.height+o}for(let i=0,s=this.absolute?t.left:0;i<e;i++){const t=f[i];t.left=s,s+=t.width+n}d.foreach(({r0:t,c0:i,r1:s,c1:e},h)=>{const{layout:l,size_hint:a}=h,{sizing:g}=l,{width:p,height:d}=a,w=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=f[e].width;return s}(i,e),u=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=_[e].height;return s}(t,s),m=i==e&&"auto"!=f[i].align?f[i].align:g.halign,y=t==s&&"auto"!=_[t].align?_[t].align:g.valign;let x=f[i].left;"start"==m?x+=g.margin.left:"center"==m?x+=c((w-p)/2):"end"==m&&(x+=w-g.margin.right-p);let b=_[t].top;"start"==y?b+=g.margin.top:"center"==y?b+=c((u-d)/2):"end"==y&&(b+=u-g.margin.bottom-d),h.outer=new r.BBox({left:x,top:b,width:p,height:d})});const w=_.map(()=>({start:new a(()=>0),end:new a(()=>0)})),u=f.map(()=>({start:new a(()=>0),end:new a(()=>0)}));d.foreach(({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:r}=o;null!=r&&(w[t].start.apply(n.top,t=>l(t,r.top)),w[s].end.apply(_[s].bottom-n.bottom,t=>l(t,r.bottom)),u[i].start.apply(n.left,t=>l(t,r.left)),u[e].end.apply(f[e].right-n.right,t=>l(t,r.right)))}),d.foreach(({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:h}=o;function l({left:t,right:i,top:s,bottom:e}){const o=h.width-t-i,n=h.height-s-e;return new r.BBox({left:t,top:s,width:o,height:n})}if(null!=n.inner){let r=l(n.inner);if(!1!==n.align){const o=w[t].start.get(h.top),n=w[s].end.get(_[s].bottom-h.bottom),c=u[i].start.get(h.left),a=u[e].end.get(f[e].right-h.right);try{r=l({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=r}else o.inner=h}),d.foreach((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)})}}s.Grid=p,p.__name__="Grid";class _ extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:0,col:i})),this.rows="fit"}}s.Row=_,_.__name__="Row";class f extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:i,col:0})),this.cols="fit"}}s.Column=f,f.__name__="Column"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(214),i=e(213),a=e(72);class c extends n.ContentLayoutable{constructor(e){super(),this.content_size=a.unsized(e,()=>new i.Sizeable(a.size(e)))}_content_size(){return this.content_size}}s.ContentBox=c,c.__name__="ContentBox";class o extends n.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new i.Sizeable(e).bounded_to(this.sizing.size);return a.sized(this.el,t,()=>{const e=new i.Sizeable(a.content_size(this.el)),{border:t,padding:s}=a.extents(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)})}}s.VariadicBox=o,o.__name__="VariadicBox";class r extends o{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=r,r.__name__="CachedVariadicBox"},n”, ” function _(e,r,u){Object.defineProperty(u,"__esModule",{value:!0});var a=e(219);u.Expression=a.Expression;var n=e(220);u.Stack=n.Stack;var o=e(221);u.CumSum=o.CumSum},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(81);class i extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._connected=new Set,this._result=new Map}v_compute(e){this._connected.has(e)||(this.connect(e.change,()=>this._result.delete(e)),this.connect(e.patching,()=>this._result.delete(e)),this.connect(e.streaming,()=>this._result.delete(e)),this._connected.add(e));let t=this._result.get(e);return null==t&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=i,i.__name__="Expression"},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),i=t(219),s=t(24),o=r.__importStar(t(18));class a extends i.Expression{constructor(t){super(t)}static init_Stack(){this.define({fields:[o.Array,[]]})}_v_compute(t){var e;const n=null!==(e=t.get_length())&&void 0!==e?e:0,r=new s.NumberArray(n);for(const e of this.fields){const i=t.data[e];if(null!=i)for(let t=0,e=Math.min(n,i.length);t<e;t++)r[t]+=i[t]}return r}}n.Stack=a,a.__name__="Stack",a.init_Stack()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e(1),u=e(219),r=e(24),_=i.__importStar(e(18));class o extends u.Expression{constructor(e){super(e)}static init_CumSum(){this.define({field:[_.String],include_zero:[_.Boolean,!1]})}_v_compute(e){const t=new r.NumberArray(e.get_length()||0),n=e.data[this.field],i=this.include_zero?1:0;t[0]=this.include_zero?0:n[0];for(let e=1;e<t.length;e++)t[e]=t[e-1]+n[e-i];return t}}n.CumSum=o,o.__name__="CumSum",o.init_CumSum()},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});var l=e(223);t.BooleanFilter=l.BooleanFilter;var i=e(225);t.CustomJSFilter=i.CustomJSFilter;var o=e(224);t.Filter=o.Filter;var F=e(226);t.GroupFilter=F.GroupFilter;var a=e(227);t.IndexFilter=a.IndexFilter},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),l=e(224),i=o.__importStar(e(18)),s=e(24);class r extends l.Filter{constructor(e){super(e)}static init_BooleanFilter(){this.define({booleans:[i.Array,null]})}compute_indices(e){const n=e.length,{booleans:t}=this;return null==t?s.Indices.all_set(n):s.Indices.from_booleans(n,t)}}t.BooleanFilter=r,r.__name__="BooleanFilter",r.init_BooleanFilter()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Filter=r,r.__name__="Filter"},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e(1),n=e(224),i=s.__importStar(e(18)),o=e(24),u=e(13),c=e(8),a=e(29);class l extends n.Filter{constructor(e){super(e)}static init_CustomJSFilter(){this.define({args:[i.Any,{}],code:[i.String,""]})}get names(){return u.keys(this.args)}get values(){return u.values(this.args)}get func(){const e=a.use_strict(this.code);return new Function(…this.names,"source",e)}compute_indices(e){const t=e.length,r=this.func(…this.values,e);if(null==r)return o.Indices.all_set(t);if(c.isArrayOf(r,c.isInteger))return o.Indices.from_indices(t,r);if(c.isArrayOf(r,c.isBoolean))return o.Indices.from_booleans(t,r);throw new Error("expect an array of integers or booleans, or null, got "+r)}}r.CustomJSFilter=l,l.__name__="CustomJSFilter",l.init_CustomJSFilter()},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),i=e(224),o=r.__importStar(e(18)),u=e(24),s=e(19);class c extends i.Filter{constructor(e){super(e)}static init_GroupFilter(){this.define({column_name:[o.String],group:[o.String]})}compute_indices(e){const t=e.get_column(this.column_name);if(null==t)return s.logger.warn(${this}: groupby column ‘${this.column_name}’ not found in the data source),new u.Indices(e.length,1);{const n=new u.Indices(e.length);for(let e=0;e<n.size;e++)t[e]===this.group&&n.set(e);return n}}}n.GroupFilter=c,c.__name__="GroupFilter",c.init_GroupFilter()},n”, ” function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),s=e(224),r=t.__importStar(e(18)),c=e(24);class l extends s.Filter{constructor(e){super(e)}static init_IndexFilter(){this.define({indices:[r.Array,null]})}compute_indices(e){const i=e.length,{indices:n}=this;return null==n?c.Indices.all_set(i):c.Indices.from_indices(i,n)}}n.IndexFilter=l,l.__name__="IndexFilter",l.init_IndexFilter()},n”, ” function _(r,t,a){Object.defineProperty(a,"__esModule",{value:!0});var e=r(130);a.BasicTickFormatter=e.BasicTickFormatter;var c=r(181);a.CategoricalTickFormatter=c.CategoricalTickFormatter;var i=r(185);a.DatetimeTickFormatter=i.DatetimeTickFormatter;var o=r(229);a.FuncTickFormatter=o.FuncTickFormatter;var m=r(198);a.LogTickFormatter=m.LogTickFormatter;var F=r(201);a.MercatorTickFormatter=F.MercatorTickFormatter;var k=r(230);a.NumeralTickFormatter=k.NumeralTickFormatter;var T=r(231);a.PrintfTickFormatter=T.PrintfTickFormatter;var v=r(131);a.TickFormatter=v.TickFormatter},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),s=t(131),i=r.__importStar(t(18)),c=t(13),a=t(29);class u extends s.TickFormatter{constructor(t){super(t)}static init_FuncTickFormatter(){this.define({args:[i.Any,{}],code:[i.String,""]})}get names(){return c.keys(this.args)}get values(){return c.values(this.args)}_make_func(){const t=a.use_strict(this.code);return new Function("tick","index","ticks",…this.names,t)}doFormat(t,e){const n=this._make_func().bind({});return t.map((t,e,r)=>n(t,e,r,…this.values))}}n.FuncTickFormatter=u,u.__name__="FuncTickFormatter",u.init_FuncTickFormatter()},n”, ” function _(r,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=r(1),o=e.__importStar(r(188)),a=r(131),i=e.__importStar(r(18));class u extends a.TickFormatter{constructor(r){super(r)}static init_NumeralTickFormatter(){this.define({format:[i.String,"0,0"],language:[i.String,"en"],rounding:[i.RoundingFunction,"round"]})}get _rounding_fn(){switch(this.rounding){case"round":case"nearest":return Math.round;case"floor":case"rounddown":return Math.floor;case"ceil":case"roundup":return Math.ceil}}doFormat(r,t){const{format:n,language:e,_rounding_fn:a}=this;return r.map(r=>o.format(r,n,e,a))}}n.NumeralTickFormatter=u,u.__name__="NumeralTickFormatter",u.init_NumeralTickFormatter()},n”, ” function _(t,r,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1),n=t(131),o=t(187),a=e.__importStar(t(18));class c extends n.TickFormatter{constructor(t){super(t)}static init_PrintfTickFormatter(){this.define({format:[a.String,"%s"]})}doFormat(t,r){return t.map(t=>o.sprintf(this.format,t))}}i.PrintfTickFormatter=c,c.__name__="PrintfTickFormatter",c.init_PrintfTickFormatter()},n”, ” function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var v=a(233);r.AnnularWedge=v.AnnularWedge;var l=a(234);r.Annulus=l.Annulus;var t=a(235);r.Arc=t.Arc;var i=a(236);r.Bezier=i.Bezier;var n=a(237);r.Circle=n.Circle;var u=a(241);r.CenterRotatable=u.CenterRotatable;var c=a(242);r.Ellipse=c.Ellipse;var g=a(243);r.EllipseOval=g.EllipseOval;var A=a(94);r.Glyph=A.Glyph;var p=a(111);r.HArea=p.HArea;var s=a(244);r.HBar=s.HBar;var d=a(246);r.HexTile=d.HexTile;var R=a(247);r.Image=R.Image;var o=a(249);r.ImageRGBA=o.ImageRGBA;var y=a(250);r.ImageURL=y.ImageURL;var h=a(92);r.Line=h.Line;var m=a(252);r.MultiLine=m.MultiLine;var B=a(253);r.MultiPolygons=B.MultiPolygons;var P=a(254);r.Oval=P.Oval;var G=a(110);r.Patch=G.Patch;var H=a(255);r.Patches=H.Patches;var I=a(256);r.Quad=I.Quad;var L=a(257);r.Quadratic=L.Quadratic;var M=a(258);r.Ray=M.Ray;var O=a(259);r.Rect=O.Rect;var x=a(260);r.Segment=x.Segment;var C=a(261);r.Step=C.Step;var E=a(262);r.Text=E.Text;var Q=a(113);r.VArea=Q.VArea;var S=a(263);r.VBar=S.VBar;var T=a(264);r.Wedge=T.Wedge;var V=a(93);r.XYGlyph=V.XYGlyph},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),_=e(24),o=i.__importStar(e(18)),d=e(10),h=e(88);class u extends r.XYGlyphView{_map_data(){"data"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,"data"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius,this._angle=new _.NumberArray(this._start_angle.length);for(let e=0,t=this._start_angle.length;e<t;e++)this._angle[e]=this._end_angle[e]-this._start_angle[e]}_render(e,t,{sx:s,sy:i,_start_angle:r,_angle:n,sinner_radius:a,souter_radius:_}){const o=this.model.properties.direction.value();for(const d of t)isNaN(s[d]+i[d]+a[d]+_[d]+r[d]+n[d])||(e.translate(s[d],i[d]),e.rotate(r[d]),e.beginPath(),e.moveTo(_[d],0),e.arc(0,0,_[d],0,n[d],o),e.rotate(n[d]),e.lineTo(a[d],0),e.arc(0,0,a[d],0,-n[d],!o),e.closePath(),e.rotate(-n[d]-r[d]),e.translate(-s[d],-i[d]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,d),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,d),e.stroke()))}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),r=this.renderer.yscale.invert(s);let n,a,_,o;if("data"==this.model.properties.outer_radius.units)n=i-this.max_outer_radius,_=i+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const e=t-this.max_outer_radius,i=t+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(e,i);const r=s-this.max_outer_radius,d=s+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,d)}const u=[];for(const e of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const t=this.souter_radius[e]**2,s=this.sinner_radius[e]**2,[n,a]=this.renderer.xscale.r_compute(i,this._x[e]),[_,o]=this.renderer.yscale.r_compute(r,this._y[e]),d=(n-a)**2+(_-o)**2;d<=t&&d>=s&&u.push(e)}const l=this.model.properties.direction.value(),c=[];for(const e of u){const i=Math.atan2(s-this.sy[e],t-this.sx[e]);d.angle_between(-i,-this._start_angle[e],-this._end_angle[e],l)&&c.push(e)}return new h.Selection({indices:c})}draw_legend_for_index(e,t,s){n.generic_area_legend(this.visuals,e,t,s)}scenterxy(e){const t=(this.sinner_radius[e]+this.souter_radius[e])/2,s=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+t*Math.cos(s),this.sy[e]+t*Math.sin(s)]}}s.AnnularWedgeView=u,u.__name__="AnnularWedgeView";class l extends r.XYGlyph{constructor(e){super(e)}static init_AnnularWedge(){this.prototype.default_view=u,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[o.Direction,"anticlock"],inner_radius:[o.DistanceSpec],outer_radius:[o.DistanceSpec],start_angle:[o.AngleSpec],end_angle:[o.AngleSpec]})}}s.AnnularWedge=l,l.__name__="AnnularWedge",l.init_AnnularWedge()},n”, ” function _(s,i,e){Object.defineProperty(e,"__esModule",{value:!0});const t=s(1),r=s(93),n=s(28),a=t.__importStar(s(18)),_=s(32),u=s(88);class o extends r.XYGlyphView{_map_data(){"data"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,"data"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius}_render(s,i,{sx:e,sy:t,sinner_radius:r,souter_radius:n}){for(const a of i)if(!isNaN(e[a]+t[a]+r[a]+n[a])){if(this.visuals.fill.doit){if(this.visuals.fill.set_vectorize(s,a),s.beginPath(),_.is_ie)for(const i of[!1,!0])s.arc(e[a],t[a],r[a],0,Math.PI,i),s.arc(e[a],t[a],n[a],Math.PI,0,!i);else s.arc(e[a],t[a],r[a],0,2*Math.PI,!0),s.arc(e[a],t[a],n[a],2*Math.PI,0,!1);s.fill()}this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI),s.moveTo(e[a]+n[a],t[a]),s.arc(e[a],t[a],n[a],0,2*Math.PI),s.stroke())}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let n,a,_,o;if("data"==this.model.properties.outer_radius.units)n=t-this.max_outer_radius,_=t+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const s=i-this.max_outer_radius,t=i+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_outer_radius,u=e+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,u)}const d=[];for(const s of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const i=this.souter_radius[s]**2,e=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(t,this._x[s]),[_,u]=this.renderer.yscale.r_compute(r,this._y[s]),o=(n-a)**2+(_-u)**2;o<=i&&o>=e&&d.push(s)}return new u.Selection({indices:d})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},n){const a=n+1,_=new Array(a);_[n]=(i+t)/2;const u=new Array(a);u[n]=(e+r)/2;const o=.5*Math.min(Math.abs(t-i),Math.abs(r-e)),d=new Array(a);d[n]=.4*o;const h=new Array(a);h[n]=.8*o,this._render(s,[n],{sx:_,sy:u,sinner_radius:d,souter_radius:h})}}e.AnnulusView=o,o.__name__="AnnulusView";class d extends r.XYGlyph{constructor(s){super(s)}static init_Annulus(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({inner_radius:[a.DistanceSpec],outer_radius:[a.DistanceSpec]})}}e.Annulus=d,d.__name__="Annulus",d.init_Annulus()},n”, ” function _(e,i,s){Object.defineProperty(s,"__esModule",{value:!0});const t=e(1),r=e(93),n=e(100),a=e(28),_=t.__importStar(e(18));class c extends r.XYGlyphView{_map_data(){"data"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,i,{sx:s,sy:t,sradius:r,_start_angle:n,_end_angle:a}){if(this.visuals.line.doit){const _=this.model.properties.direction.value();for(const c of i)isNaN(s[c]+t[c]+r[c]+n[c]+a[c])||(e.beginPath(),e.arc(s[c],t[c],r[c],n[c],a[c],_),this.visuals.line.set_vectorize(e,c),e.stroke())}}draw_legend_for_index(e,i,s){n.generic_line_legend(this.visuals,e,i,s)}}s.ArcView=c,c.__name__="ArcView";class d extends r.XYGlyph{constructor(e){super(e)}static init_Arc(){this.prototype.default_view=c,this.mixins(a.LineVector),this.define({direction:[_.Direction,"anticlock"],radius:[_.DistanceSpec],start_angle:[_.AngleSpec],end_angle:[_.AngleSpec]})}}s.Arc=d,d.__name__="Arc",d.init_Arc()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(28),c=e(94),o=e(100),_=e(37),r=s.__importStar(e(18));function a(e,t,i,s,n,c,o,_){const r=[],a=[[],[]];for(let a=0;a<=2;a++){let h,d,x;if(0===a?(d=6*e-12*i+6*n,h=-3*e+9*i-9*n+3*o,x=3*i-3*e):(d=6*t-12*s+6*c,h=-3*t+9*s-9*c+3*_,x=3*s-3*t),Math.abs(h)<1e-12){if(Math.abs(d)<1e-12)continue;const e=-x/d;0<e&&e<1&&r.push(e);continue}const l=d*d-4*x*h,y=Math.sqrt(l);if(l<0)continue;const p=(-d+y)/(2*h);0<p&&p<1&&r.push(p);const f=(-d-y)/(2*h);0<f&&f<1&&r.push(f)}let h=r.length;const d=h;for(;h–;){const d=r[h],x=1-d,l=x*x*x*e+3*x*x*d*i+3*x*d*d*n+d*d*d*o;a[0][h]=l;const y=x*x*x*t+3*x*x*d*s+3*x*d*d*c+d*d*d*_;a[1][h]=y}return a[0][d]=e,a[1][d]=t,a[0][d+1]=o,a[1][d+1]=_,[Math.min(…a[0]),Math.max(…a[1]),Math.max(…a[0]),Math.min(…a[1])]}class h extends c.GlyphView{_project_data(){_.inplace.project_xy(this._x0,this._y0),_.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++)if(isNaN(this._x0[i]+this._x1[i]+this._y0[i]+this._y1[i]+this._cx0[i]+this._cy0[i]+this._cx1[i]+this._cy1[i]))e.add_empty();else{const[t,s,n,c]=a(this._x0[i],this._y0[i],this._x1[i],this._y1[i],this._cx0[i],this._cy0[i],this._cx1[i],this._cy1[i]);e.add(t,s,n,c)}}_render(e,t,{sx0:i,sy0:s,sx1:n,sy1:c,scx0:o,scy0:_,scx1:r,scy1:a}){if(this.visuals.line.doit)for(const h of t)isNaN(i[h]+s[h]+n[h]+c[h]+o[h]+_[h]+r[h]+a[h])||(e.beginPath(),e.moveTo(i[h],s[h]),e.bezierCurveTo(o[h],_[h],r[h],a[h],n[h],c[h]),this.visuals.line.set_vectorize(e,h),e.stroke())}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}i.BezierView=h,h.__name__="BezierView";class d extends c.Glyph{constructor(e){super(e)}static init_Bezier(){this.prototype.default_view=h,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}],cx0:[r.XCoordinateSpec,{field:"cx0"}],cy0:[r.YCoordinateSpec,{field:"cy0"}],cx1:[r.XCoordinateSpec,{field:"cx1"}],cy1:[r.YCoordinateSpec,{field:"cy1"}]}),this.mixins(n.LineVector)}}i.Bezier=d,d.__name__="Bezier",d.init_Bezier()},n”, ” function _(s,i,e){Object.defineProperty(e,"__esModule",{value:!0});const t=s(1),r=s(93),a=s(238),n=s(28),h=t.__importStar(s(101)),d=t.__importStar(s(18)),l=s(9),_=s(12),c=s(88);class o extends r.XYGlyphView{initialize(){super.initialize();const{webgl:s}=this.renderer.plot_view.canvas_view;null!=s&&(this.glglyph=new a.CircleGL(s.gl,this))}_map_data(){if(null!=this._radius)if("data"==this.model.properties.radius.units)switch(this.model.radius_dimension){case"x":this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius);break;case"y":this.sradius=this.sdist(this.renderer.yscale,this._y,this._radius);break;case"max":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.max(s,i[e]));break}case"min":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.min(s,i[e]));break}}else this.sradius=this._radius,this.max_size=2*this.max_radius;else this.sradius=_.map(this._size,s=>s/2)}_mask_data(){const[s,i]=this.renderer.plot_view.frame.bbox.ranges;let e,t,r,a;if(null!=this._radius&&"data"==this.model.properties.radius.units){const n=s.start,h=s.end;[e,r]=this.renderer.xscale.r_invert(n,h),e-=this.max_radius,r+=this.max_radius;const d=i.start,l=i.end;[t,a]=this.renderer.yscale.r_invert(d,l),t-=this.max_radius,a+=this.max_radius}else{const n=s.start-this.max_size,h=s.end+this.max_size;[e,r]=this.renderer.xscale.r_invert(n,h);const d=i.start-this.max_size,l=i.end+this.max_size;[t,a]=this.renderer.yscale.r_invert(d,l)}return this.index.indices({x0:e,x1:r,y0:t,y1:a})}_render(s,i,{sx:e,sy:t,sradius:r}){for(const a of i)isNaN(e[a]+t[a]+r[a])||(s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI,!1),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(s,a),s.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.stroke()))}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let a,n,h,d;if(null!=this._radius&&"data"==this.model.properties.radius.units)a=t-this.max_radius,n=t+this.max_radius,h=r-this.max_radius,d=r+this.max_radius;else{const s=i-this.max_size,t=i+this.max_size;[a,n]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size,l=e+this.max_size;[h,d]=this.renderer.yscale.r_invert(r,l)}const l=this.index.indices({x0:a,x1:n,y0:h,y1:d}),_=[];if(null!=this._radius&&"data"==this.model.properties.radius.units)for(const s of l){const i=this.sradius[s]**2,[e,a]=this.renderer.xscale.r_compute(t,this._x[s]),[n,h]=this.renderer.yscale.r_compute(r,this._y[s]);(e-a)**2+(n-h)**2<=i&&_.push(s)}else for(const s of l){const t=this.sradius[s]**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&_.push(s)}return new c.Selection({indices:_})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if("h"==s.direction){let s,e;if(n=t.y0,h=t.y1,null!=this._radius&&"data"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,null!=this._radius&&"data"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[…this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new c.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[…this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new c.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=l.range(0,this.sx.length),r=[];for(let s=0,a=t.length;s<a;s++){const a=t[s];h.point_in_poly(this.sx[s],this.sy[s],i,e)&&r.push(a)}return new c.Selection({indices:r})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},a){const n=a+1,h=new Array(n);h[a]=(i+t)/2;const d=new Array(n);d[a]=(e+r)/2;const l=new Array(n);l[a]=.2*Math.min(Math.abs(t-i),Math.abs(r-e)),this._render(s,[a],{sx:h,sy:d,sradius:l})}}e.CircleView=o,o.__name__="CircleView";class u extends r.XYGlyph{constructor(s){super(s)}static init_Circle(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({angle:[d.AngleSpec,0],size:[d.DistanceSpec,{units:"screen",value:4}],radius:[d.DistanceSpec,void 0,{optional:!0}],radius_dimension:[d.RadiusDimension,"x"]})}}e.Circle=u,u.__name__="Circle",u.init_Circle()},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),a=t(103),r=t(107),o=t(239),_=t(240),l=t(237),h=t(12),n=t(19),g=t(22);function u(t,e,s,i,a,r){if(a.doit)if(a[r].is_value)e.used=!1,t.set_attribute(s,"float",[a[r].value()]);else{e.used=!0;const o=new Float32Array(a.get_array(r));e.set_size(4*i),e.set_data(0,o),t.set_attribute(s,"float",e)}else e.used=!1,t.set_attribute(s,"float",[0])}function f(t,e,s,i,a,r){const o=r+"_color",_=r+"_alpha";if(a.doit){let r,l;if(e.used=!0,a[o].is_value){const t=g.encode_rgba(g.color2rgba(a[o].value())),e=new Uint32Array(i);e.fill(t),r=e}else r=a.get_array(o);if(a[_].is_value){const t=a[_].value(),e=new Float32Array(i);e.fill(t),l=e}else l=a.get_array(_);const h=new Float32Array(4*i);for(let t=0,e=i;t<e;t++){const e=g.decode_rgba(r[t]);1==e[3]&&(e[3]=l[t]),h.set(e,4*t)}e.set_size(4*i*4),e.set_data(0,h),t.set_attribute(s,"vec4",e)}else e.used=!1,t.set_attribute(s,"vec4",[0,0,0,0])}s.attach_float=u,s.attach_color=f;class d extends r.BaseGLGlyph{init(){const{gl:t}=this,e=o.vertex_shader,s=_.fragment_shader(this._marker_code);this.prog=new a.Program(t),this.prog.set_shaders(e,s),this.vbo_sx=new a.VertexBuffer(t),this.prog.set_attribute("a_sx","float",this.vbo_sx),this.vbo_sy=new a.VertexBuffer(t),this.prog.set_attribute("a_sy","float",this.vbo_sy),this.vbo_s=new a.VertexBuffer(t),this.prog.set_attribute("a_size","float",this.vbo_s),this.vbo_a=new a.VertexBuffer(t),this.prog.set_attribute("a_angle","float",this.vbo_a),this.vbo_linewidth=new a.VertexBuffer(t),this.vbo_fg_color=new a.VertexBuffer(t),this.vbo_bg_color=new a.VertexBuffer(t),this.index_buffer=new a.IndexBuffer(t)}draw(t,e,s){const i=e.glglyph,{nvertices:a}=i;if(i.data_changed&&(i._set_data(a),this.glyph instanceof l.CircleView&&null!=this.glyph._radius&&this.vbo_s.set_data(0,h.map(this.glyph.sradius,t=>2*t)),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(a),this.visuals_changed=!1),this.prog.set_uniform("u_pixel_ratio","float",[s.pixel_ratio]),this.prog.set_uniform("u_canvas_size","vec2",[s.width,s.height]),this.prog.set_attribute("a_sx","float",i.vbo_sx),this.prog.set_attribute("a_sy","float",i.vbo_sy),this.prog.set_attribute("a_size","float",i.vbo_s),this.prog.set_attribute("a_angle","float",i.vbo_a),0!=t.length)if(t.length===a)this.prog.draw(this.gl.POINTS,[0,a]);else if(a<65535){const e=window.navigator.userAgent;e.indexOf("MSIE ")+e.indexOf("Trident/")+e.indexOf("Edge/")>0&&n.logger.warn("WebGL warning: IE is known to produce 1px sprites whith selections."),this.index_buffer.set_size(2*t.length),this.index_buffer.set_data(0,new Uint16Array(t)),this.prog.draw(this.gl.POINTS,this.index_buffer)}else{const e=64e3,s=[];for(let t=0,i=Math.ceil(a/e);t<i;t++)s.push([]);for(let i=0,a=t.length;i<a;i++){const a=t[i]%e;s[Math.floor(t[i]/e)].push(a)}for(let t=0,a=s.length;t<a;t++){const a=new Uint16Array(s[t]),r=t*e*4;0!==a.length&&(this.prog.set_attribute("a_sx","float",i.vbo_sx,0,r),this.prog.set_attribute("a_sy","float",i.vbo_sy,0,r),this.prog.set_attribute("a_size","float",i.vbo_s,0,r),this.prog.set_attribute("a_angle","float",i.vbo_a,0,r),this.vbo_linewidth.used&&this.prog.set_attribute("a_linewidth","float",this.vbo_linewidth,0,r),this.vbo_fg_color.used&&this.prog.set_attribute("a_fg_color","vec4",this.vbo_fg_color,0,4*r),this.vbo_bg_color.used&&this.prog.set_attribute("a_bg_color","vec4",this.vbo_bg_color,0,4*r),this.index_buffer.set_size(2*a.length),this.index_buffer.set_data(0,a),this.prog.draw(this.gl.POINTS,this.index_buffer))}}}_set_data(t){const e=4*t;this.vbo_sx.set_size(e),this.vbo_sy.set_size(e),this.vbo_a.set_size(e),this.vbo_s.set_size(e),this.vbo_sx.set_data(0,this.glyph.sx),this.vbo_sy.set_data(0,this.glyph.sy),null!=this.glyph._angle&&this.vbo_a.set_data(0,new Float32Array(this.glyph._angle)),this.glyph instanceof l.CircleView&&null!=this.glyph._radius?this.vbo_s.set_data(0,h.map(this.glyph.sradius,t=>2*t)):this.vbo_s.set_data(0,new Float32Array(this.glyph._size))}_set_visuals(t){u(this.prog,this.vbo_linewidth,"a_linewidth",t,this.glyph.visuals.line,"line_width"),f(this.prog,this.vbo_fg_color,"a_fg_color",t,this.glyph.visuals.line,"line"),f(this.prog,this.vbo_bg_color,"a_bg_color",t,this.glyph.visuals.fill,"fill"),this.prog.set_uniform("u_antialias","float",[.8])}}function b(t){return class extends d{get _marker_code(){return t}}}s.MarkerGL=d,d.__name__="MarkerGL";const c=i.__importStar(t(240));s.AsteriskGL=b(c.asterisk),s.CircleGL=b(c.circle),s.CircleCrossGL=b(c.circlecross),s.CircleXGL=b(c.circlex),s.CrossGL=b(c.cross),s.DiamondGL=b(c.diamond),s.DiamondCrossGL=b(c.diamondcross),s.HexGL=b(c.hex),s.InvertedTriangleGL=b(c.invertedtriangle),s.SquareGL=b(c.square),s.SquareCrossGL=b(c.squarecross),s.SquareXGL=b(c.squarex),s.TriangleGL=b(c.triangle),s.XGL=b(c.x)},n”, ” function _(n,i,a){Object.defineProperty(a,"__esModule",{value:!0}),a.vertex_shader="\nprecision mediump float;\nconst float SQRT_2 = 1.4142135623730951;\n//\nuniform float u_pixel_ratio;\nuniform vec2 u_canvas_size;\nuniform vec2 u_offset;\nuniform vec2 u_scale;\nuniform float u_antialias;\n//\nattribute float a_sx;\nattribute float a_sy;\nattribute float a_size;\nattribute float a_angle; // in radians\nattribute float a_linewidth;\nattribute vec4 a_fg_color;\nattribute vec4 a_bg_color;\n//\nvarying float v_linewidth;\nvarying float v_size;\nvarying vec4 v_fg_color;\nvarying vec4 v_bg_color;\nvarying vec2 v_rotation;\n\nvoid main (void)\n{\n v_size = a_size * u_pixel_ratio;\n v_linewidth = a_linewidth * u_pixel_ratio;\n v_fg_color = a_fg_color;\n v_bg_color = a_bg_color;\n v_rotation = vec2(cos(-a_angle), sin(-a_angle));\n vec2 pos = vec2(a_sx, a_sy); // in pixels\n pos += 0.5; // make up for Bokeh’s offset\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\n gl_Position = vec4(pos*2.0-1.0, 0.0, 1.0);\n gl_Position.y = -1.0;\n gl_PointSize = SQRT_2 * v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\n}\n"},n”, ” function _(a,n,s){Object.defineProperty(s,"__esModule",{value:!0}),s.fragment_shader=a=>`\nprecision mediump float;\nconst float SQRT_2 = 1.4142135623730951;\nconst float PI = 3.14159265358979323846264;\n//\nuniform float u_antialias;\n//\nvarying vec4 v_fg_color;\nvarying vec4 v_bg_color;\nvarying float v_linewidth;\nvarying float v_size;\nvarying vec2 v_rotation;\n\n${a}\n\nvec4 outline(float distance, float linewidth, float antialias, vec4 fg_color, vec4 bg_color)\n{\n vec4 frag_color;\n float t = linewidth/2.0 - antialias;\n float signed_distance = distance;\n float border_distance = abs(signed_distance) - t;\n float alpha = border_distance/antialias;\n alpha = exp(-alpha*alpha);\n\n // If fg alpha is zero, it probably means no outline. To avoid a dark outline\n // shining through due to aa, we set the fg color to the bg color. Avoid if (i.e. branching).\n float select = float(bool(fg_color.a));\n fg_color.rgb = select * fg_color.rgb + (1.0 - select) * bg_color.rgb;\n // Similarly, if we want a transparent bg\n select = float(bool(bg_color.a));\n bg_color.rgb = select * bg_color.rgb + (1.0 - select) * fg_color.rgb;\n\n if( border_distance < 0.0)\n frag_color = fg_color;\n else if( signed_distance < 0.0 ) {\n frag_color = mix(bg_color, fg_color, sqrt(alpha));\n } else {\n if( abs(signed_distance) < (linewidth/2.0 + antialias) ) {\n frag_color = vec4(fg_color.rgb, fg_color.a * alpha);\n } else {\n discard;\n }\n }\n return frag_color;\n}\n\nvoid main()\n{\n vec2 P = gl_PointCoord.xy - vec2(0.5, 0.5);\n P = vec2(v_rotation.x*P.x - v_rotation.y*P.y,\n v_rotation.y*P.x + v_rotation.x*P.y);\n float point_size = SQRT_2*v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\n float distance = marker(P*point_size, v_size);\n gl_FragColor = outline(distance, v_linewidth, u_antialias, v_fg_color, v_bg_color);\n}\n`,s.circle="\nfloat marker(vec2 P, float size)\n{\n return length(P) - size/2.0;\n}\n",s.square="\nfloat marker(vec2 P, float size)\n{\n return max(abs(P.x), abs(P.y)) - size/2.0;\n}\n",s.diamond="\nfloat marker(vec2 P, float size)\n{\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\n float r1 = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\n return r1 / SQRT_2;\n}\n",s.hex="\nfloat marker(vec2 P, float size)\n{\n vec2 q = abs(P);\n return max(q.y * 0.57735 + q.x - 1.0 * size/2.0, q.y - 0.866 * size/2.0);\n}\n",s.triangle="\nfloat marker(vec2 P, float size)\n{\n P.y -= size * 0.3;\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\n float r1 = max(abs(x), abs(y)) - size / 1.6;\n float r2 = P.y;\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\n}\n",s.invertedtriangle="\nfloat marker(vec2 P, float size)\n{\n P.y += size * 0.3;\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\n float r1 = max(abs(x), abs(y)) - size / 1.6;\n float r2 = - P.y;\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\n}\n",s.cross=’\nfloat marker(vec2 P, float size)\n{\n float square = max(abs(P.x), abs(P.y)) - size / 2.5; // 2.5 is a tweak\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of "width" for aa\n return max(square, cross);\n}\n’,s.circlecross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float circle = length(P) - size/2.0;\n float c1 = max(circle, s1);\n float c2 = max(circle, s2);\n float c3 = max(circle, s3);\n float c4 = max(circle, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.squarecross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\n float c1 = max(square, s1);\n float c2 = max(square, s2);\n float c3 = max(square, s3);\n float c4 = max(square, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.diamondcross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\n float diamond = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\n diamond /= SQRT_2;\n float c1 = max(diamond, s1);\n float c2 = max(diamond, s2);\n float c3 = max(diamond, s3);\n float c4 = max(diamond, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.x=’\nfloat marker(vec2 P, float size)\n{\n float circle = length(P) - size / 1.6;\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n return max(circle, X);\n}\n’,s.circlex=’\nfloat marker(vec2 P, float size)\n{\n float x = P.x - P.y;\n float y = P.x + P.y;\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float circle = length(P) - size/2.0;\n float c1 = max(circle, s1);\n float c2 = max(circle, s2);\n float c3 = max(circle, s3);\n float c4 = max(circle, s4);\n // Union\n float almost = min(min(min(c1, c2), c3), c4);\n // In this case, the X is also outside of the main shape\n float Xmask = length(P) - size / 1.6; // a circle\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n return min(max(X, Xmask), almost);\n}\n’,s.squarex="\nfloat marker(vec2 P, float size)\n{\n float x = P.x - P.y;\n float y = P.x + P.y;\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\n float c1 = max(square, s1);\n float c2 = max(square, s2);\n float c3 = max(square, s3);\n float c4 = max(square, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.asterisk=’\nfloat marker(vec2 P, float size)\n{\n // Masks\n float diamond = max(abs(SQRT_2 / 2.0 * (P.x - P.y)), abs(SQRT_2 / 2.0 * (P.x + P.y))) - size / (2.0 * SQRT_2);\n float square = max(abs(P.x), abs(P.y)) - size / (2.0 * SQRT_2);\n // Shapes\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of "width" for aa\n // Result is union of masked shapes\n return min(max(X, diamond), max(cross, square));\n}\n’},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const a=e(1),i=e(93),l=e(28),s=a.__importStar(e(18));class c extends i.XYGlyphView{}n.CenterRotatableView=c,c.__name__="CenterRotatableView";class o extends i.XYGlyph{constructor(e){super(e)}static init_CenterRotatable(){this.mixins([l.LineVector,l.FillVector]),this.define({angle:[s.AngleSpec,0],width:[s.DistanceSpec],height:[s.DistanceSpec]})}}n.CenterRotatable=o,o.__name__="CenterRotatable",o.init_CenterRotatable()},n”, ” function _(e,l,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(243);class t extends s.EllipseOvalView{}i.EllipseView=t,t.__name__="EllipseView";class _ extends s.EllipseOval{constructor(e){super(e)}static init_Ellipse(){this.prototype.default_view=t}}i.Ellipse=_,_.__name__="Ellipse",_.init_Ellipse()},n”, ” function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1),h=t(241),a=e.__importStar(t(101)),r=t(88);class n extends h.CenterRotatableView{_set_data(){this.max_w2=0,"data"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,"data"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){"data"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this._width,"center"):this.sw=this._width,"data"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this._height,"center"):this.sh=this._height}_render(t,s,{sx:i,sy:e,sw:h,sh:a,_angle:r}){for(const n of s)isNaN(i[n]+e[n]+h[n]+a[n]+r[n])||(t.beginPath(),t.ellipse(i[n],e[n],h[n]/2,a[n]/2,r[n],0,2*Math.PI),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,n),t.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,n),t.stroke()))}_hit_point(t){let s,i,e,h,n,_,l,d,o;const{sx:x,sy:m}=t,w=this.renderer.xscale.invert(x),c=this.renderer.yscale.invert(m);"data"==this.model.properties.width.units?(s=w-this.max_width,i=w+this.max_width):(_=x-this.max_width,l=x+this.max_width,[s,i]=this.renderer.xscale.r_invert(_,l)),"data"==this.model.properties.height.units?(e=c-this.max_height,h=c+this.max_height):(d=m-this.max_height,o=m+this.max_height,[e,h]=this.renderer.yscale.r_invert(d,o));const p=this.index.indices({x0:s,x1:i,y0:e,y1:h}),y=[];for(const t of p)n=a.point_in_ellipse(x,m,this._angle[t],this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new r.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:i,x1:e,y1:h},a){const r=a+1,n=new Array(r);n[a]=(s+e)/2;const _=new Array(r);_[a]=(i+h)/2;const l=this.sw[a]/this.sh[a],d=.8*Math.min(Math.abs(e-s),Math.abs(h-i)),o=new Array(r),x=new Array(r);l>1?(o[a]=d,x[a]=d/l):(o[a]=d*l,x[a]=d),this._render(t,[a],{sx:n,sy:_,sw:o,sh:x,_angle:[0]})}_bounds({x0:t,x1:s,y0:i,y1:e}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:i-this.max_h2,y1:e+this.max_h2}}}i.EllipseOvalView=n,n.__name__="EllipseOvalView";class _ extends h.CenterRotatable{constructor(t){super(t)}}i.EllipseOval=_,_.__name__="EllipseOval"},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),h=t(245),r=t(24),_=i.__importStar(t(18));class a extends h.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){return[Math.min(this._left[t],this._right[t]),Math.max(this._left[t],this._right[t]),this._y[t]+.5*this._height[t],this._y[t]-.5*this._height[t]]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this._height,"center"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new r.NumberArray(t),this.sbottom=new r.NumberArray(t);for(let e=0;e<t;e++)this.stop[e]=this.sy[e]-this.sh[e]/2,this.sbottom[e]=this.sy[e]+this.sh[e]/2;this._clamp_viewport()}}s.HBarView=a,a.__name__="HBarView";class o extends h.Box{constructor(t){super(t)}static init_HBar(){this.prototype.default_view=a,this.define({left:[_.XCoordinateSpec,{value:0}],y:[_.YCoordinateSpec,{field:"y"}],height:[_.NumberSpec,{value:1}],right:[_.XCoordinateSpec,{field:"right"}]})}}s.HBar=o,o.__name__="HBar",o.init_HBar()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(28),r=t(94),n=t(100),a=t(88);class h extends r.GlyphView{get_anchor_point(t,e,i){const s=Math.min(this.sleft[e],this.sright[e]),r=Math.max(this.sright[e],this.sleft[e]),n=Math.min(this.stop[e],this.sbottom[e]),a=Math.max(this.sbottom[e],this.stop[e]);switch(t){case"top_left":return{x:s,y:n};case"top_center":return{x:(s+r)/2,y:n};case"top_right":return{x:r,y:n};case"bottom_left":return{x:s,y:a};case"bottom_center":return{x:(s+r)/2,y:a};case"bottom_right":return{x:r,y:a};case"center_left":return{x:s,y:(n+a)/2};case"center":return{x:(s+r)/2,y:(n+a)/2};case"center_right":return{x:r,y:(n+a)/2};default:return null}}_index_data(t){const{min:e,max:i}=Math,{data_size:s}=this;for(let r=0;r<s;r++){const[s,n,a,h]=this._lrtb(r);isNaN(s+n+a+h)||!isFinite(s+n+a+h)?t.add_empty():t.add(e(s,n),e(a,h),i(n,s),i(a,h))}}_render(t,e,{sleft:i,sright:s,stop:r,sbottom:n}){for(const a of e)isNaN(i[a]+r[a]+s[a]+n[a])||(t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()),this.visuals.hatch.doit2(t,a,()=>{t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.stroke()))}_clamp_viewport(){const t=this.renderer.plot_view.frame.bbox.h_range,e=this.renderer.plot_view.frame.bbox.v_range,i=this.stop.length;for(let s=0;s<i;s++)this.stop[s]=Math.max(this.stop[s],e.start),this.sbottom[s]=Math.min(this.sbottom[s],e.end),this.sleft[s]=Math.max(this.sleft[s],t.start),this.sright[s]=Math.min(this.sright[s],t.end)}_hit_rect(t){return this._hit_rect_against_index(t)}_hit_point(t){const{sx:e,sy:i}=t,s=this.renderer.xscale.invert(e),r=this.renderer.yscale.invert(i),n=[…this.index.indices({x0:s,y0:r,x1:s,y1:r})];return new a.Selection({indices:n})}_hit_span(t){const{sx:e,sy:i}=t;let s;if("v"==t.direction){const t=this.renderer.yscale.invert(i),e=this.renderer.plot_view.frame.bbox.h_range,[r,n]=this.renderer.xscale.r_invert(e.start,e.end);s=[…this.index.indices({x0:r,y0:t,x1:n,y1:t})]}else{const t=this.renderer.xscale.invert(e),i=this.renderer.plot_view.frame.bbox.v_range,[r,n]=this.renderer.yscale.r_invert(i.start,i.end);s=[…this.index.indices({x0:t,y0:r,x1:t,y1:n})]}return new a.Selection({indices:s})}draw_legend_for_index(t,e,i){n.generic_area_legend(this.visuals,t,e,i)}}i.BoxView=h,h.__name__="BoxView";class o extends r.Glyph{constructor(t){super(t)}static init_Box(){this.mixins([s.LineVector,s.FillVector,s.HatchVector])}}i.Box=o,o.__name__="Box",o.init_Box()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(94),n=i.__importStar(e(101)),a=i.__importStar(e(18)),o=e(28),c=e(24),_=e(37),h=e(100),l=e(88);class d extends r.GlyphView{scenterxy(e){return[this.sx[e],this.sy[e]]}_set_data(){const e=this._q.length,{orientation:t,size:s,aspect_scale:i}=this.model;this._x=new c.NumberArray(e),this._y=new c.NumberArray(e);const r=Math.sqrt(3);if("pointytop"==t)for(let t=0;t<e;t++)this._x[t]=s*r*(this._q[t]+this._r[t]/2)/i,this._y[t]=3-s/2*this._r[t];else for(let t=0;t<e;t++)this._x[t]=3*s/2*this._q[t],this._y[t]=-s*r*(this._r[t]+this._q[t]/2)*i}_project_data(){_.inplace.project_xy(this._x,this._y)}_index_data(e){let t=this.model.size,s=Math.sqrt(3)*t/2;"flattop"==this.model.orientation?([s,t]=[t,s],t*=this.model.aspect_scale):s/=this.model.aspect_scale;const{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x[r],n=this._y[r];isNaN(i+n)||!isFinite(i+n)?e.add_empty():e.add(i-s,n-t,i+s,n+t)}}map_data(){[this.sx,this.sy]=this.renderer.coordinates.map_to_screen(this._x,this._y),[this.svx,this.svy]=this._get_unscaled_vertices()}_get_unscaled_vertices(){const e=this.model.size,t=this.model.aspect_scale;if("pointytop"==this.model.orientation){const s=this.renderer.yscale,i=this.renderer.xscale,r=Math.abs(s.compute(0)-s.compute(e)),n=Math.sqrt(3)/2*Math.abs(i.compute(0)-i.compute(e))/t,a=r/2;return[[0,-n,-n,0,n,n],[r,a,-a,-r,-a,a]]}{const s=this.renderer.xscale,i=this.renderer.yscale,r=Math.abs(s.compute(0)-s.compute(e)),n=Math.sqrt(3)/2*Math.abs(i.compute(0)-i.compute(e))*t,a=r/2;return[[r,a,-a,-r,-a,a],[0,-n,-n,0,n,n]]}}_render(e,t,{sx:s,sy:i,svx:r,svy:n,_scale:a}){for(const o of t)if(!isNaN(s[o]+i[o]+a[o])){e.translate(s[o],i[o]),e.beginPath();for(let t=0;t<6;t++)e.lineTo(r[t]*a[o],n[t]*a[o]);e.closePath(),e.translate(-s[o],-i[o]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,o),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,o),e.stroke())}}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),r=this.renderer.yscale.invert(s),a=this.index.indices({x0:i,y0:r,x1:i,y1:r}),o=[];for(const e of a)n.point_in_poly(t-this.sx[e],s-this.sy[e],this.svx,this.svy)&&o.push(e);return new l.Selection({indices:o})}_hit_span(e){const{sx:t,sy:s}=e;let i;if("v"==e.direction){const e=this.renderer.yscale.invert(s),t=this.renderer.plot_view.frame.bbox.h_range,[r,n]=this.renderer.xscale.r_invert(t.start,t.end);i=[…this.index.indices({x0:r,y0:e,x1:n,y1:e})]}else{const e=this.renderer.xscale.invert(t),s=this.renderer.plot_view.frame.bbox.v_range,[r,n]=this.renderer.yscale.r_invert(s.start,s.end);i=[…this.index.indices({x0:e,y0:r,x1:e,y1:n})]}return new l.Selection({indices:i})}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:r}=e,[n,a]=this.renderer.xscale.r_invert(t,s),[o,c]=this.renderer.yscale.r_invert(i,r),_=[…this.index.indices({x0:n,x1:a,y0:o,y1:c})];return new l.Selection({indices:_})}draw_legend_for_index(e,t,s){h.generic_area_legend(this.visuals,e,t,s)}}s.HexTileView=d,d.__name__="HexTileView";class x extends r.Glyph{constructor(e){super(e)}static init_HexTile(){this.prototype.default_view=d,this.mixins([o.LineVector,o.FillVector]),this.define({r:[a.NumberSpec],q:[a.NumberSpec],size:[a.Number,1],aspect_scale:[a.Number,1],scale:[a.NumberSpec,1],orientation:[a.HexTileOrientation,"pointytop"]}),this.override({line_color:null})}}s.HexTile=x,x.__name__="HexTile",x.init_HexTile()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const _=e(1),i=e(248),n=e(141),s=_.__importStar(e(18));class r extends i.ImageBaseView{connect_signals(){super.connect_signals(),this.connect(this.model.color_mapper.change,()=>this._update_image())}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.plot_view.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}a.ImageView=r,r.__name__="ImageView";class o extends i.ImageBase{constructor(e){super(e)}static init_Image(){this.prototype.default_view=r,this.define({color_mapper:[s.Instance,()=>new n.LinearColorMapper({palette:["#000000","#252525","#525252","#737373","#969696","#bdbdbd","#d9d9d9","#f0f0f0","#ffffff"]})]})}}a.Image=o,o.__name__="Image",o.init_Image()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(93),h=e(24),_=i.__importStar(e(18)),n=e(88),r=e(9),d=e(30),l=e(11);class g extends a.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_render(e,t,{image_data:s,sx:i,sy:a,sw:h,sh:_}){const n=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1),e.globalAlpha=this.model.global_alpha;for(const n of t){if(null==s[n]||isNaN(i[n]+a[n]+h[n]+_[n]))continue;const t=a[n];e.translate(0,t),e.scale(1,-1),e.translate(0,-t),e.drawImage(s[n],0|i[n],0|a[n],h[n],_[n]),e.translate(0,t),e.scale(1,-1),e.translate(0,-t)}e.setImageSmoothingEnabled(n)}_set_data(e){this._set_width_heigh_data();for(let t=0,s=this._image.length;t<s;t++){if(null!=e&&e.indexOf(t)<0)continue;const s=this._image[t];let i;d.is_NDArray(s)?(l.assert(2==s.dimension,"expected a 2D array"),i=s,this._height[t]=s.shape[0],this._width[t]=s.shape[1]):(i=r.concat(s),this._height[t]=s.length,this._width[t]=s[0].length);const a=this._flat_img_to_buf8(i);this._set_image_data_from_buffer(t,a)}}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++){const[t,i,a,h]=this._lrtb(s);isNaN(t+i+a+h)||!isFinite(t+i+a+h)?e.add_empty():e.add(t,h,i,a)}}_lrtb(e){const t=this.renderer.xscale.source_range,s=this._x[e],i=t.is_reversed?s-this._dw[e]:s+this._dw[e],a=this.renderer.yscale.source_range,h=this._y[e],_=a.is_reversed?h-this._dh[e]:h+this._dh[e],[n,r]=s<i?[s,i]:[i,s],[d,l]=h<_?[h,_]:[_,h];return[n,r,l,d]}_set_width_heigh_data(){null!=this.image_data&&this.image_data.length==this._image.length||(this.image_data=new Array(this._image.length)),null!=this._width&&this._width.length==this._image.length||(this._width=new h.NumberArray(this._image.length)),null!=this._height&&this._height.length==this._image.length||(this._height=new h.NumberArray(this._image.length))}_get_or_create_canvas(e){const t=this.image_data[e];if(null!=t&&t.width==this._width[e]&&t.height==this._height[e])return t;{const t=document.createElement("canvas");return t.width=this._width[e],t.height=this._height[e],t}}_set_image_data_from_buffer(e,t){const s=this._get_or_create_canvas(e),i=s.getContext("2d"),a=i.getImageData(0,0,this._width[e],this._height[e]);a.data.set(t),i.putImageData(a,0,0),this.image_data[e]=s}_map_data(){switch(this.model.properties.dw.units){case"data":this.sw=this.sdist(this.renderer.xscale,this._x,this._dw,"edge",this.model.dilate);break;case"screen":this.sw=this._dw}switch(this.model.properties.dh.units){case"data":this.sh=this.sdist(this.renderer.yscale,this._y,this._dh,"edge",this.model.dilate);break;case"screen":this.sh=this._dh}}_image_index(e,t,s){const[i,a,h,_]=this._lrtb(e),n=this._width[e],r=this._height[e],d=(a-i)/n,l=(h-_)/r;let g=Math.floor((t-i)/d),o=Math.floor((s-_)/l);return this.renderer.xscale.source_range.is_reversed&&(g=n-g-1),this.renderer.yscale.source_range.is_reversed&&(o=r-o-1),{index:e,dim1:g,dim2:o,flat_index:o*n+g}}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),a=this.renderer.yscale.invert(s),h=this.index.indices({x0:i,x1:i,y0:a,y1:a}),_=new n.Selection;for(const e of h)t!=1/0&&s!=1/0&&_.image_indices.push(this._image_index(e,i,a));return _}}s.ImageBaseView=g,g.__name__="ImageBaseView";class o extends a.XYGlyph{constructor(e){super(e)}static init_ImageBase(){this.define({image:[_.NDArraySpec],dw:[_.DistanceSpec],dh:[_.DistanceSpec],dilate:[_.Boolean,!1],global_alpha:[_.Number,1]})}}s.ImageBase=o,o.__name__="ImageBase",o.init_ImageBase()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const _=e(248),i=e(8);class n extends _.ImageBaseView{_flat_img_to_buf8(e){let t;return t=i.isArray(e)?new Uint32Array(e):e,new Uint8Array(t.buffer)}}a.ImageRGBAView=n,n.__name__="ImageRGBAView";class r extends _.ImageBase{constructor(e){super(e)}static init_ImageRGBA(){this.prototype.default_view=n}}a.ImageRGBA=r,r.__name__="ImageRGBA",r.init_ImageRGBA()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(1),i=e(93),a=e(24),n=r.__importStar(e(18)),h=e(12),o=e(251);class _ extends i.XYGlyphView{constructor(){super(…arguments),this._images_rendered=!1}initialize(){super.initialize(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++)e.add_empty()}_set_data(){null!=this.image&&this.image.length==this._url.length||(this.image=h.map(this._url,()=>null));const{retry_attempts:e,retry_timeout:t}=this.model;for(let s=0,r=this._url.length;s<r;s++){const r=this._url[s];null!=r&&""!=r&&new o.ImageLoader(r,{loaded:e=>{this.image[s]=e,this.renderer.request_render()},attempts:e+1,timeout:t})}const s="data"==this.model.properties.w.units,r="data"==this.model.properties.h.units,i=this._x.length,n=new a.NumberArray(s?2*i:i),_=new a.NumberArray(r?2*i:i),{anchor:c}=this.model;function l(e,t){switch(c){case"top_left":case"bottom_left":case"center_left":return[e,e+t];case"top_center":case"bottom_center":case"center":return[e-t/2,e+t/2];case"top_right":case"bottom_right":case"center_right":return[e-t,e]}}function d(e,t){switch(c){case"top_left":case"top_center":case"top_right":return[e,e-t];case"bottom_left":case"bottom_center":case"bottom_right":return[e+t,e];case"center_left":case"center":case"center_right":return[e+t/2,e-t/2]}}if(s)for(let e=0;e<i;e++)[n[e],n[i+e]]=l(this._x[e],this._w[e]);else n.set(this._x,0);if(r)for(let e=0;e<i;e++)[_[e],_[i+e]]=d(this._y[e],this._h[e]);else _.set(this._y,0);const[m,u]=h.minmax(n),[p,g]=h.minmax(_);this._bounds_rect={x0:m,x1:u,y0:p,y1:g}}has_finished(){return super.has_finished()&&1==this._images_rendered}_map_data(){const e=null!=this.model.w?this._w:h.map(this._x,()=>NaN),t=null!=this.model.h?this._h:h.map(this._x,()=>NaN);switch(this.model.properties.w.units){case"data":this.sw=this.sdist(this.renderer.xscale,this._x,e,"edge",this.model.dilate);break;case"screen":this.sw=e}switch(this.model.properties.h.units){case"data":this.sh=this.sdist(this.renderer.yscale,this._y,t,"edge",this.model.dilate);break;case"screen":this.sh=t}}_render(e,t,{image:s,sx:r,sy:i,sw:a,sh:n,_angle:h}){const{frame:o}=this.renderer.plot_view;e.rect(o.bbox.left+1,o.bbox.top+1,o.bbox.width-2,o.bbox.height-2),e.clip();let _=!0;for(const o of t){if(isNaN(r[o]+i[o]+h[o]))continue;const t=s[o];null!=t?this._render_image(e,o,t,r,i,a,n,h):_=!1}_&&!this._images_rendered&&(this._images_rendered=!0,this.notify_finished())}_final_sx_sy(e,t,s,r,i){switch(e){case"top_left":return[t,s];case"top_center":return[t-r/2,s];case"top_right":return[t-r,s];case"center_right":return[t-r,s-i/2];case"bottom_right":return[t-r,s-i];case"bottom_center":return[t-r/2,s-i];case"bottom_left":return[t,s-i];case"center_left":return[t,s-i/2];case"center":return[t-r/2,s-i/2]}}_render_image(e,t,s,r,i,a,n,h){isNaN(a[t])&&(a[t]=s.width),isNaN(n[t])&&(n[t]=s.height);const{anchor:o}=this.model,[_,c]=this._final_sx_sy(o,r[t],i[t],a[t],n[t]);e.save(),e.globalAlpha=this.model.global_alpha;const l=a[t]/2,d=n[t]/2;h[t]?(e.translate(_,c),e.translate(l,d),e.rotate(h[t]),e.translate(-l,-d),e.drawImage(s,0,0,a[t],n[t]),e.translate(l,d),e.rotate(-h[t]),e.translate(-l,-d),e.translate(-_,-c)):e.drawImage(s,_,c,a[t],n[t]),e.restore()}bounds(){return this._bounds_rect}}s.ImageURLView=_,_.__name__="ImageURLView";class c extends i.XYGlyph{constructor(e){super(e)}static init_ImageURL(){this.prototype.default_view=_,this.define({url:[n.StringSpec],anchor:[n.Anchor,"top_left"],global_alpha:[n.Number,1],angle:[n.AngleSpec,0],w:[n.DistanceSpec],h:[n.DistanceSpec],dilate:[n.Boolean,!1],retry_attempts:[n.Number,0],retry_timeout:[n.Number,0]})}}s.ImageURL=c,c.__name__="ImageURL",c.init_ImageURL()},n”, ” function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(19);class a{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:a=1}=e;this.promise=new Promise((o,n)=>{this._image.crossOrigin="anonymous";let r=0;this._image.onerror=()=>{if(++r==t){const a=`unable to load ${i} image after ${t} attempts`;if(s.logger.warn(a),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());s.logger.warn(attempting to load ${i} without a cross origin policy),this._image.crossOrigin=null,r=0}setTimeout(()=>this._image.src=i,a)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i})}get finished(){return this._finished}get image(){return this._image}}t.ImageLoader=a,a.__name__="ImageLoader"},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(37),o=e(28),l=s.__importStar(e(101)),r=s.__importStar(e(18)),_=e(12),c=e(13),a=e(94),h=e(100),d=e(88);class y extends a.GlyphView{_project_data(){n.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++){const t=this._xs.get(i);if(0==t.length){e.add_empty();continue}const s=this._ys.get(i);if(0==s.length){e.add_empty();continue}const[n,o]=_.minmax(t),[l,r]=_.minmax(s);e.add(n,l,o,r)}}_render(e,t,{sxs:i,sys:s}){for(const n of t){const t=i.get(n),o=s.get(n);this.visuals.line.set_vectorize(e,n);for(let i=0,s=t.length;i<s;i++)0!=i?isNaN(t[i])||isNaN(o[i])?(e.stroke(),e.beginPath()):e.lineTo(t[i],o[i]):(e.beginPath(),e.moveTo(t[i],o[i]));e.stroke()}}_hit_point(e){const t={x:e.sx,y:e.sy};let i=9999;const s=new Map;for(let e=0,n=this.sxs.length;e<n;e++){const n=Math.max(2,this.visuals.line.cache_select("line_width",e)/2),o=this.sxs.get(e),r=this.sys.get(e);let _=null;for(let e=0,s=o.length-1;e<s;e++){const s={x:o[e],y:r[e]},c={x:o[e+1],y:r[e+1]},a=l.dist_to_segment(t,s,c);a<n&&a<i&&(i=a,_=[e])}null!=_&&s.set(e,_)}return new d.Selection({indices:[…s.keys()],multiline_indices:c.to_object(s)})}_hit_span(e){const{sx:t,sy:i}=e;let s,n;"v"==e.direction?(s=this.renderer.yscale.invert(i),n=this._ys):(s=this.renderer.xscale.invert(t),n=this._xs);const o=new Map;for(let e=0,t=n.length;e<t;e++){const t=n.get(e),i=[];for(let e=0,n=t.length-1;e<n;e++)t[e]<=s&&s<=t[e+1]&&i.push(e);i.length>0&&o.set(e,i)}return new d.Selection({indices:[…o.keys()],multiline_indices:c.to_object(o)})}get_interpolation_hit(e,t,i){const s=this._xs.get(e),n=this._ys.get(e),o=s[t],l=n[t],r=s[t+1],_=n[t+1];return h.line_interpolation(this.renderer,i,o,l,r,_)}draw_legend_for_index(e,t,i){h.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}i.MultiLineView=y,y.__name__="MultiLineView";class x extends a.Glyph{constructor(e){super(e)}static init_MultiLine(){this.prototype.default_view=y,this.define({xs:[r.XCoordinateSeqSpec,{field:"xs"}],ys:[r.YCoordinateSeqSpec,{field:"ys"}]}),this.mixins(o.LineVector)}}i.MultiLine=x,x.__name__="MultiLine",x.init_MultiLine()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(95),o=e(94),r=e(100),l=e(12),h=e(12),_=e(28),a=i.__importStar(e(101)),d=i.__importStar(e(18)),c=e(88),x=e(11);class y extends o.GlyphView{_project_data(){}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n<i;n++){const i=this._xs[n],o=this._ys[n];if(0==i.length||0==o.length){e.add_empty();continue}let r=1/0,h=-1/0,_=1/0,a=-1/0;for(let e=0,n=i.length;e<n;e++){const n=i[e][0],d=o[e][0];if(0!=n.length&&0!=d.length){const[e,i]=l.minmax(n),[o,c]=l.minmax(d);r=t(r,e),h=s(h,i),_=t(_,o),a=s(a,c)}}isFinite(r+h+_+a)?e.add(r,_,h,a):e.add_empty()}this._hole_index=this._index_hole_data()}_index_hole_data(){const{min:e,max:t}=Math,{data_size:s}=this,i=new n.SpatialIndex(s);for(let n=0;n<s;n++){const s=this._xs[n],o=this._ys[n];if(0==s.length||0==o.length){i.add_empty();continue}let r=1/0,h=-1/0,_=1/0,a=-1/0;for(let i=0,n=s.length;i<n;i++){const n=s[i],d=o[i];if(n.length>1&&d.length>1)for(let s=1,i=n.length;s<i;s++){const[i,o]=l.minmax(n[s]),[c,x]=l.minmax(d[s]);r=e(r,i),h=t(h,o),_=e(_,c),a=t(a,x)}}isFinite(r+h+_+a)?i.add(r,_,h,a):i.add_empty()}return i.finish(),i}_mask_data(){const e=this.renderer.plot_view.frame.x_range,[t,s]=[e.min,e.max],i=this.renderer.plot_view.frame.y_range,[n,o]=[i.min,i.max];return this.index.indices({x0:t,x1:s,y0:n,y1:o})}_inner_loop(e,t,s){e.beginPath();for(let i=0,n=t.length;i<n;i++)for(let n=0,o=t[i].length;n<o;n++){const o=t[i][n],r=s[i][n];for(let t=0,s=o.length;t<s;t++)0!=t?e.lineTo(o[t],r[t]):e.moveTo(o[t],r[t]);e.closePath()}}_render(e,t,{sxs:s,sys:i}){if(this.visuals.fill.doit||this.visuals.line.doit)for(const n of t){const[t,o]=[s[n],i[n]];this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,n),this._inner_loop(e,t,o),e.fill("evenodd")),this.visuals.hatch.doit2(e,n,()=>{this._inner_loop(e,t,o),e.fill("evenodd")},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,o),e.stroke())}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,o=[t,s,s,t],r=[i,i,n,n],[l,h]=this.renderer.xscale.r_invert(t,s),[_,d]=this.renderer.yscale.r_invert(i,n),x=this.index.indices({x0:l,x1:h,y0:_,y1:d}),y=[];for(const e of x){const t=this.sxs[e],s=this.sys[e];let i=!0;for(let e=0,n=t.length;e<n;e++){for(let n=0,l=t[e][0].length;n<l;n++){const l=t[e][0][n],h=s[e][0][n];if(!a.point_in_poly(l,h,o,r)){i=!1;break}}if(!i)break}i&&y.push(e)}return new c.Selection({indices:y})}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),n=this.renderer.yscale.invert(s),o=this.index.indices({x0:i,y0:n,x1:i,y1:n}),r=this._hole_index.indices({x0:i,y0:n,x1:i,y1:n}),l=[];for(const e of o){const i=this.sxs[e],n=this.sys[e];for(let o=0,h=i.length;o<h;o++){const h=i[o].length;if(a.point_in_poly(t,s,i[o][0],n[o][0]))if(1==h)l.push(e);else if(r.get(e)){if(h>1){let r=!1;for(let e=1;e<h;e++){const l=i[o][e],h=n[o][e];if(a.point_in_poly(t,s,l,h)){r=!0;break}}r||l.push(e)}}else l.push(e)}}return new c.Selection({indices:l})}_get_snap_coord(e){return h.sum(e)/e.length}scenterxy(e,t,s){if(1==this.sxs[e].length){return[this._get_snap_coord(this.sxs[e][0][0]),this._get_snap_coord(this.sys[e][0][0])]}{const i=this.sxs[e],n=this.sys[e];for(let e=0,o=i.length;e<o;e++)if(a.point_in_poly(t,s,i[e][0],n[e][0])){return[this._get_snap_coord(i[e][0]),this._get_snap_coord(n[e][0])]}}x.unreachable()}map_data(){const e=this._xs.length;this.sxs=new Array(e),this.sys=new Array(e);for(let t=0;t<e;t++){const e=this._xs[t].length;this.sxs[t]=new Array(e),this.sys[t]=new Array(e);for(let s=0;s<e;s++){const e=this._xs[t][s].length;this.sxs[t][s]=new Array(e),this.sys[t][s]=new Array(e);for(let i=0;i<e;i++){const[e,n]=this.renderer.coordinates.map_to_screen(this._xs[t][s][i],this._ys[t][s][i]);this.sxs[t][s][i]=e,this.sys[t][s][i]=n}}}}draw_legend_for_index(e,t,s){r.generic_area_legend(this.visuals,e,t,s)}}s.MultiPolygonsView=y,y.__name__="MultiPolygonsView";class f extends o.Glyph{constructor(e){super(e)}static init_MultiPolygons(){this.prototype.default_view=y,this.define({xs:[d.XCoordinateSeqSeqSeqSpec,{field:"xs"}],ys:[d.YCoordinateSeqSeqSeqSpec,{field:"ys"}]}),this.mixins([_.LineVector,_.FillVector,_.HatchVector])}}s.MultiPolygons=f,f.__name__="MultiPolygons",f.init_MultiPolygons()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const l=e(243);class s extends l.EllipseOvalView{_map_data(){super._map_data();const{sw:e}=this,t=e.length;for(let a=0;a<t;a++)e[a]*=.75}}a.OvalView=s,s.__name__="OvalView";class _ extends l.EllipseOval{constructor(e){super(e)}static init_Oval(){this.prototype.default_view=s}}a.Oval=_,_.__name__="Oval",_.init_Oval()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(94),r=e(100),o=e(12),a=e(28),_=i.__importStar(e(101)),c=i.__importStar(e(18)),l=e(88),h=e(11),d=e(37);class y extends n.GlyphView{_project_data(){d.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++){const t=this._xs.get(s),i=this._ys.get(s);if(0==t.length)e.add_empty();else{const[s,n]=o.minmax(t),[r,a]=o.minmax(i);e.add(s,r,n,a)}}}_mask_data(){const e=this.renderer.plot_view.frame.x_range,[t,s]=[e.min,e.max],i=this.renderer.plot_view.frame.y_range,[n,r]=[i.min,i.max];return this.index.indices({x0:t,x1:s,y0:n,y1:r})}_inner_loop(e,t,s,i){for(let n=0,r=t.length;n<r;n++)0!=n?isNaN(t[n]+s[n])?(e.closePath(),i.apply(e),e.beginPath()):e.lineTo(t[n],s[n]):(e.beginPath(),e.moveTo(t[n],s[n]));e.closePath(),i.call(e)}_render(e,t,{sxs:s,sys:i}){for(const n of t){const t=s.get(n),r=i.get(n);this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,n),this._inner_loop(e,t,r,e.fill)),this.visuals.hatch.doit2(e,n,()=>this._inner_loop(e,t,r,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,r,e.stroke))}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,r=[t,s,s,t],o=[i,i,n,n],[a,c]=this.renderer.xscale.r_invert(t,s),[h,d]=this.renderer.yscale.r_invert(i,n),y=this.index.indices({x0:a,x1:c,y0:h,y1:d}),p=[];for(const e of y){const t=this.sxs.get(e),s=this.sys.get(e);let i=!0;for(let e=0,n=t.length;e<n;e++){const n=t[e],a=s[e];if(!_.point_in_poly(n,a,r,o)){i=!1;break}}i&&p.push(e)}return new l.Selection({indices:p})}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),n=this.renderer.yscale.invert(s),r=this.index.indices({x0:i,y0:n,x1:i,y1:n}),o=[];for(const e of r){const i=this.sxs.get(e),n=this.sys.get(e),r=i.length;for(let a=0,c=0;;c++){if(isNaN(i[c])||c==r){const r=i.subarray(a,c),l=n.subarray(a,c);if(_.point_in_poly(t,s,r,l)){o.push(e);break}a=c+1}if(c==r)break}}return new l.Selection({indices:o})}_get_snap_coord(e){return o.sum(e)/e.length}scenterxy(e,t,s){const i=this.sxs.get(e),n=this.sys.get(e),r=i.length;let o=!1;for(let e=0,a=0;;a++){const c=isNaN(i[a]);if(o=o||c,a==r&&!o){return[this._get_snap_coord(i),this._get_snap_coord(n)]}if(c||a==r){const r=i.subarray(e,a),o=n.subarray(e,a);if(_.point_in_poly(t,s,r,o)){return[this._get_snap_coord(r),this._get_snap_coord(o)]}e=a+1}if(a==r)break}h.unreachable()}draw_legend_for_index(e,t,s){r.generic_area_legend(this.visuals,e,t,s)}}s.PatchesView=y,y.__name__="PatchesView";class p extends n.Glyph{constructor(e){super(e)}static init_Patches(){this.prototype.default_view=y,this.define({xs:[c.XCoordinateSeqSpec,{field:"xs"}],ys:[c.YCoordinateSeqSpec,{field:"ys"}]}),this.mixins([a.LineVector,a.FillVector,a.HatchVector])}}s.Patches=p,p.__name__="Patches",p.init_Patches()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),s=t(245),r=o.__importStar(t(18));class _ extends s.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){return[this._left[t],this._right[t],this._top[t],this._bottom[t]]}}i.QuadView=_,_.__name__="QuadView";class d extends s.Box{constructor(t){super(t)}static init_Quad(){this.prototype.default_view=_,this.define({right:[r.XCoordinateSpec,{field:"right"}],bottom:[r.YCoordinateSpec,{field:"bottom"}],left:[r.XCoordinateSpec,{field:"left"}],top:[r.YCoordinateSpec,{field:"top"}]})}}i.Quad=d,d.__name__="Quad",d.init_Quad()},n”, ” function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(1),a=i(28),_=i(37),c=i(94),n=i(100),r=s.__importStar(i(18));function o(i,e,t){if(e==(i+t)/2)return[i,t];{const s=(i-e)/(i-2*e+t),a=i*(1-s)**2+2*e*(1-s)*s+t*s**2;return[Math.min(i,t,a),Math.max(i,t,a)]}}class d extends c.GlyphView{_project_data(){_.inplace.project_xy(this._x0,this._y0),_.inplace.project_xy(this._x1,this._y1)}_index_data(i){const{data_size:e}=this;for(let t=0;t<e;t++)if(isNaN(this._x0[t]+this._x1[t]+this._y0[t]+this._y1[t]+this._cx[t]+this._cy[t]))i.add_empty();else{const[e,s]=o(this._x0[t],this._cx[t],this._x1[t]),[a,_]=o(this._y0[t],this._cy[t],this._y1[t]);i.add(e,a,s,_)}}_render(i,e,{sx0:t,sy0:s,sx1:a,sy1:_,scx:c,scy:n}){if(this.visuals.line.doit)for(const r of e)isNaN(t[r]+s[r]+a[r]+_[r]+c[r]+n[r])||(i.beginPath(),i.moveTo(t[r],s[r]),i.quadraticCurveTo(c[r],n[r],a[r],_[r]),this.visuals.line.set_vectorize(i,r),i.stroke())}draw_legend_for_index(i,e,t){n.generic_line_legend(this.visuals,i,e,t)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}t.QuadraticView=d,d.__name__="QuadraticView";class h extends c.Glyph{constructor(i){super(i)}static init_Quadratic(){this.prototype.default_view=d,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}],cx:[r.XCoordinateSpec,{field:"cx"}],cy:[r.YCoordinateSpec,{field:"cy"}]}),this.mixins(a.LineVector)}}t.Quadratic=h,h.__name__="Quadratic",h.init_Quadratic()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(93),a=e(100),r=e(28),l=s.__importStar(e(18));class _ extends n.XYGlyphView{_map_data(){"data"==this.model.properties.length.units?this.slength=this.sdist(this.renderer.xscale,this._x,this._length):this.slength=this._length}_render(e,t,{sx:i,sy:s,slength:n,_angle:a}){if(this.visuals.line.doit){const r=2*(this.renderer.plot_view.frame.bbox.width+this.renderer.plot_view.frame.bbox.height);for(let e=0,t=n.length;e<t;e++)0==n[e]&&(n[e]=r);for(const r of t)isNaN(i[r]+s[r]+a[r]+n[r])||(e.translate(i[r],s[r]),e.rotate(a[r]),e.beginPath(),e.moveTo(0,0),e.lineTo(n[r],0),this.visuals.line.set_vectorize(e,r),e.stroke(),e.rotate(-a[r]),e.translate(-i[r],-s[r]))}}draw_legend_for_index(e,t,i){a.generic_line_legend(this.visuals,e,t,i)}}i.RayView=_,_.__name__="RayView";class h extends n.XYGlyph{constructor(e){super(e)}static init_Ray(){this.prototype.default_view=_,this.mixins(r.LineVector),this.define({length:[l.DistanceSpec],angle:[l.AngleSpec]})}}i.Ray=h,h.__name__="Ray",h.init_Ray()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),h=t(241),r=t(100),a=t(24),n=i.__importStar(t(18)),_=t(12),o=t(88);class l extends h.CenterRotatableView{_set_data(){this.max_w2=0,"data"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,"data"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){if("data"==this.model.properties.width.units)[this.sw,this.sx0]=this._map_dist_corner_for_data_side_length(this._x,this._width,this.renderer.xscale);else{this.sw=this._width;const t=this.sx.length;this.sx0=new a.NumberArray(t);for(let s=0;s<t;s++)this.sx0[s]=this.sx[s]-this.sw[s]/2}if("data"==this.model.properties.height.units)[this.sh,this.sy1]=this._map_dist_corner_for_data_side_length(this._y,this._height,this.renderer.yscale);else{this.sh=this._height;const t=this.sy.length;this.sy1=new a.NumberArray(t);for(let s=0;s<t;s++)this.sy1[s]=this.sy[s]-this.sh[s]/2}const t=this.sw.length;this.ssemi_diag=new a.NumberArray(t);for(let s=0;s<t;s++)this.ssemi_diag[s]=Math.sqrt(this.sw[s]/2*this.sw[s]/2+this.sh[s]/2*this.sh[s]/2)}_render(t,s,{sx:e,sy:i,sx0:h,sy1:r,sw:a,sh:n,_angle:_}){if(this.visuals.fill.doit)for(const o of s)isNaN(e[o]+i[o]+h[o]+r[o]+a[o]+n[o]+_[o])||(this.visuals.fill.set_vectorize(t,o),_[o]?(t.translate(e[o],i[o]),t.rotate(_[o]),t.fillRect(-a[o]/2,-n[o]/2,a[o],n[o]),t.rotate(-_[o]),t.translate(-e[o],-i[o])):t.fillRect(h[o],r[o],a[o],n[o]));if(this.visuals.line.doit){t.beginPath();for(const o of s)isNaN(e[o]+i[o]+h[o]+r[o]+a[o]+n[o]+_[o])||0!=a[o]&&0!=n[o]&&(_[o]?(t.translate(e[o],i[o]),t.rotate(_[o]),t.rect(-a[o]/2,-n[o]/2,a[o],n[o]),t.rotate(-_[o]),t.translate(-e[o],-i[o])):t.rect(h[o],r[o],a[o],n[o]),this.visuals.line.set_vectorize(t,o),t.stroke(),t.beginPath());t.stroke()}}_hit_rect(t){return this._hit_rect_against_index(t)}_hit_point(t){let{sx:s,sy:e}=t;const i=this.renderer.xscale.invert(s),h=this.renderer.yscale.invert(e),r=this.sx0.length,n=new a.NumberArray(r);for(let t=0;t<r;t++)n[t]=this.sx0[t]+this.sw[t]/2;const l=new a.NumberArray(r);for(let t=0;t<r;t++)l[t]=this.sy1[t]+this.sh[t]/2;const d=_.max(this._ddist(0,n,this.ssemi_diag)),c=_.max(this._ddist(1,l,this.ssemi_diag)),x=i-d,m=i+d,y=h-c,w=h+c;let f,u;const g=[];for(const t of this.index.indices({x0:x,x1:m,y0:y,y1:w})){if(this._angle[t]){const i=Math.sin(-this._angle[t]),h=Math.cos(-this._angle[t]),r=h*(s-this.sx[t])-i*(e-this.sy[t])+this.sx[t],a=i*(s-this.sx[t])+h*(e-this.sy[t])+this.sy[t];s=r,e=a,f=Math.abs(this.sx[t]-s)<=this.sw[t]/2,u=Math.abs(this.sy[t]-e)<=this.sh[t]/2}else{const i=s-this.sx0[t],h=e-this.sy1[t];f=0<=i&&i<=this.sw[t],u=0<=h&&h<=this.sh[t]}f&&u&&g.push(t)}return new o.Selection({indices:g})}_map_dist_corner_for_data_side_length(t,s,e){const i=t.length,h=new Float64Array(i),r=new Float64Array(i);for(let e=0;e<i;e++)h[e]=t[e]-s[e]/2,r[e]=t[e]+s[e]/2;const a=e.v_compute(h),n=e.v_compute(r),_=this.sdist(e,h,s,"edge",this.model.dilate);let o=a;for(let t=0;t<i;t++){const s=a[t],e=n[t];if(!isNaN(s+e)&&s!=e){o=s<e?a:n;break}}return[_,o]}_ddist(t,s,e){const i=0==t?this.renderer.xscale:this.renderer.yscale,h=s,r=h.length,n=new a.NumberArray(r);for(let t=0;t<r;t++)n[t]=h[t]+e[t];const _=i.v_invert(h),o=i.v_invert(n),l=_.length,d=new a.NumberArray(l);for(let t=0;t<l;t++)d[t]=Math.abs(o[t]-_[t]);return d}draw_legend_for_index(t,s,e){r.generic_area_legend(this.visuals,t,s,e)}_bounds({x0:t,x1:s,y0:e,y1:i}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:e-this.max_h2,y1:i+this.max_h2}}}e.RectView=l,l.__name__="RectView";class d extends h.CenterRotatable{constructor(t){super(t)}static init_Rect(){this.prototype.default_view=l,this.define({dilate:[n.Boolean,!1]})}}e.Rect=d,d.__name__="Rect",d.init_Rect()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=i.__importStar(e(101)),r=i.__importStar(e(18)),_=e(28),h=e(37),a=e(94),o=e(100),c=e(88);class d extends a.GlyphView{_project_data(){h.inplace.project_xy(this._x0,this._y0),h.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n<i;n++){const i=this._x0[n],r=this._x1[n],_=this._y0[n],h=this._y1[n];isNaN(i+r+_+h)?e.add_empty():e.add(t(i,r),t(_,h),s(i,r),s(_,h))}}_render(e,t,{sx0:s,sy0:i,sx1:n,sy1:r}){if(this.visuals.line.doit)for(const _ of t)isNaN(s[_]+i[_]+n[_]+r[_])||(e.beginPath(),e.moveTo(s[_],i[_]),e.lineTo(n[_],r[_]),this.visuals.line.set_vectorize(e,_),e.stroke())}_hit_point(e){const{sx:t,sy:s}=e,i={x:t,y:s},[r,_]=this.renderer.xscale.r_invert(t-2,t+2),[h,a]=this.renderer.yscale.r_invert(s-2,s+2),o=this.index.indices({x0:r,y0:h,x1:_,y1:a}),d=[];for(const e of o){const t=Math.max(2,this.visuals.line.cache_select("line_width",e)/2)**2,s={x:this.sx0[e],y:this.sy0[e]},r={x:this.sx1[e],y:this.sy1[e]};n.dist_to_segment_squared(i,s,r)<t&&d.push(e)}return new c.Selection({indices:d})}_hit_span(e){const[t,s]=this.renderer.plot_view.frame.bbox.ranges,{sx:i,sy:n}=e;let r,_,h;"v"==e.direction?(h=this.renderer.yscale.invert(n),[r,_]=[this._y0,this._y1]):(h=this.renderer.xscale.invert(i),[r,_]=[this._x0,this._x1]);const a=[],[o,d]=this.renderer.xscale.r_invert(t.start,t.end),[x,l]=this.renderer.yscale.r_invert(s.start,s.end),y=this.index.indices({x0:o,y0:x,x1:d,y1:l});for(const t of y){(r[t]<=h&&h<=_[t]||_[t]<=h&&h<=r[t])&&a.push(t);const s=1.5+this.visuals.line.cache_select("line_width",t)/2;r[t]==_[t]&&("h"==e.direction?Math.abs(this.sx0[t]-i)<=s&&a.push(t):Math.abs(this.sy0[t]-n)<=s&&a.push(t))}return new c.Selection({indices:a})}scenterxy(e){return[(this.sx0[e]+this.sx1[e])/2,(this.sy0[e]+this.sy1[e])/2]}draw_legend_for_index(e,t,s){o.generic_line_legend(this.visuals,e,t,s)}}s.SegmentView=d,d.__name__="SegmentView";class x extends a.Glyph{constructor(e){super(e)}static init_Segment(){this.prototype.default_view=d,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}]}),this.mixins(_.LineVector)}}s.Segment=x,x.__name__="Segment",x.init_Segment()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(93),o=e(100),r=e(28),l=n.__importStar(e(18));class a extends s.XYGlyphView{_render(e,t,{sx:i,sy:n}){let s=!1,o=null;this.visuals.line.set_value(e);const r=t.length;if(!(r<2)){e.beginPath(),e.moveTo(i[0],n[0]);for(const r of t){let t,l,a,_;switch(this.model.mode){case"before":[t,a]=[i[r-1],n[r]],[l,_]=[i[r],n[r]];break;case"after":[t,a]=[i[r],n[r-1]],[l,_]=[i[r],n[r]];break;case"center":{const e=(i[r-1]+i[r])/2;[t,a]=[e,n[r-1]],[l,_]=[e,n[r]];break}default:throw new Error("unexpected")}if(s){if(!isFinite(i[r]+n[r])){e.stroke(),e.beginPath(),s=!1,o=r;continue}null!=o&&r-o>1&&(e.stroke(),s=!1)}s?(e.lineTo(t,a),e.lineTo(l,_)):(e.beginPath(),e.moveTo(i[r],n[r]),s=!0),o=r}e.lineTo(i[r-1],n[r-1]),e.stroke()}}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}}i.StepView=a,a.__name__="StepView";class _ extends s.XYGlyph{constructor(e){super(e)}static init_Step(){this.prototype.default_view=a,this.mixins(r.LineVector),this.define({mode:[l.StepMode,"before"]})}}i.Step=_,_.__name__="Step",_.init_Step()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),n=t(93),_=t(28),o=i.__importStar(t(101)),h=i.__importStar(t(18)),l=t(159),a=t(11),r=t(88);class c extends n.XYGlyphView{_rotate_point(t,s,e,i,n){return[(t-e)*Math.cos(n)-(s-i)*Math.sin(n)+e,(t-e)*Math.sin(n)+(s-i)*Math.cos(n)+i]}_text_bounds(t,s,e,i){return[[t,t+e,t+e,t,t],[s,s,s-i,s-i,s]]}_render(t,s,{sx:e,sy:i,_x_offset:n,_y_offset:_,_angle:o,_text:h}){this._sys=[],this._sxs=[];for(const a of s)if(this._sxs[a]=[],this._sys[a]=[],!isNaN(e[a]+i[a]+n[a]+_[a]+o[a])&&null!=h[a]&&this.visuals.text.doit){const s=""+h[a];t.save(),t.translate(e[a]+n[a],i[a]+_[a]),t.rotate(o[a]),this.visuals.text.set_vectorize(t,a);const r=this.visuals.text.cache_select("font",a),{height:c}=l.measure_font(r),x=this.visuals.text.text_line_height.value()*c;if(-1==s.indexOf("\n")){t.fillText(s,0,0);const o=e[a]+n[a],h=i[a]+_[a],l=t.measureText(s).width,[r,c]=this._text_bounds(o,h,l,x);this._sxs[a].push(r),this._sys[a].push(c)}else{const o=s.split("\n"),h=x*o.length,l=this.visuals.text.cache_select("text_baseline",a);let r;switch(l){case"top":r=0;break;case"middle":r=-h/2+x/2;break;case"bottom":r=-h+x;break;default:r=0,console.warn(‘${l}’ baseline not supported with multi line text)}for(const s of o){t.fillText(s,0,r);const o=e[a]+n[a],h=r+i[a]+_[a],l=t.measureText(s).width,[c,u]=this._text_bounds(o,h,l,x);this._sxs[a].push(c),this._sys[a].push(u),r+=x}}t.restore()}}_hit_point(t){const{sx:s,sy:e}=t,i=[];for(let t=0;t<this._sxs.length;t++){const n=this._sxs[t],_=this._sys[t],h=n.length;for(let l=0,a=h;l<a;l++){const[a,r]=this._rotate_point(s,e,n[h-1][0],_[h-1][0],-this._angle[t]);o.point_in_poly(a,r,n[l],_[l])&&i.push(t)}}return new r.Selection({indices:i})}scenterxy(t){const s=this._sxs[t],e=this._sys[t];a.assert(0!=s.length&&0!=e.length);const i=s[0][0],n=e[0][0],_=(s[0][2]+i)/2,o=(e[0][2]+n)/2,[h,l]=this._rotate_point(_,o,i,n,this._angle[t]);return[h,l]}}e.TextView=c,c.__name__="TextView";class x extends n.XYGlyph{constructor(t){super(t)}static init_Text(){this.prototype.default_view=c,this.mixins(_.TextVector),this.define({text:[h.NullStringSpec,{field:"text"}],angle:[h.AngleSpec,0],x_offset:[h.NumberSpec,0],y_offset:[h.NumberSpec,0]})}}e.Text=x,x.__name__="Text",x.init_Text()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),r=t(245),h=t(24),o=i.__importStar(t(18));class _ extends r.BoxView{scenterxy(t){return[this.sx[t],(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){return[this._x[t]-this._width[t]/2,this._x[t]+this._width[t]/2,Math.max(this._top[t],this._bottom[t]),Math.min(this._top[t],this._bottom[t])]}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sw=this.sdist(this.renderer.xscale,this._x,this._width,"center"),this.stop=this.renderer.yscale.v_compute(this._top),this.sbottom=this.renderer.yscale.v_compute(this._bottom);const t=this.sx.length;this.sleft=new h.NumberArray(t),this.sright=new h.NumberArray(t);for(let s=0;s<t;s++)this.sleft[s]=this.sx[s]-this.sw[s]/2,this.sright[s]=this.sx[s]+this.sw[s]/2;this._clamp_viewport()}}e.VBarView=_,_.__name__="VBarView";class a extends r.Box{constructor(t){super(t)}static init_VBar(){this.prototype.default_view=_,this.define({x:[o.XCoordinateSpec,{field:"x"}],bottom:[o.YCoordinateSpec,{value:0}],width:[o.NumberSpec,{value:1}],top:[o.YCoordinateSpec,{field:"top"}]})}}e.VBar=a,a.__name__="VBar",a.init_VBar()},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),d=i.__importStar(e(18)),l=e(10),o=e(88);class _ extends r.XYGlyphView{_map_data(){"data"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,s,{sx:t,sy:i,sradius:r,_start_angle:n,_end_angle:a}){const d=this.model.properties.direction.value();for(const l of s)isNaN(t[l]+i[l]+r[l]+n[l]+a[l])||(e.beginPath(),e.arc(t[l],i[l],r[l],n[l],a[l],d),e.lineTo(t[l],i[l]),e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,l),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,l),e.stroke()))}_hit_point(e){let s,t,i,r,n,a,d,_,c;const{sx:h,sy:u}=e,p=this.renderer.xscale.invert(h),g=this.renderer.yscale.invert(u),x=2*this.max_radius;"data"===this.model.properties.radius.units?(a=p-x,d=p+x,_=g-x,c=g+x):(t=h-x,i=h+x,[a,d]=this.renderer.xscale.r_invert(t,i),r=u-x,n=u+x,[_,c]=this.renderer.yscale.r_invert(r,n));const v=[];for(const e of this.index.indices({x0:a,x1:d,y0:_,y1:c})){const a=this.sradius[e]**2;[t,i]=this.renderer.xscale.r_compute(p,this._x[e]),[r,n]=this.renderer.yscale.r_compute(g,this._y[e]),s=(t-i)**2+(r-n)**2,s<=a&&v.push(e)}const y=this.model.properties.direction.value(),f=[];for(const e of v){const s=Math.atan2(u-this.sy[e],h-this.sx[e]);l.angle_between(-s,-this._start_angle[e],-this._end_angle[e],y)&&f.push(e)}return new o.Selection({indices:f})}draw_legend_for_index(e,s,t){n.generic_area_legend(this.visuals,e,s,t)}scenterxy(e){const s=this.sradius[e]/2,t=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+s*Math.cos(t),this.sy[e]+s*Math.sin(t)]}}t.WedgeView=_,_.__name__="WedgeView";class c extends r.XYGlyph{constructor(e){super(e)}static init_Wedge(){this.prototype.default_view=_,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[d.Direction,"anticlock"],radius:[d.DistanceSpec],start_angle:[d.AngleSpec],end_angle:[d.AngleSpec]})}}t.Wedge=c,c.__name__="Wedge",c.init_Wedge()},n”, ” function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const r=e(1);r.__exportStar(e(117),_),r.__exportStar(e(266),_),r.__exportStar(e(267),_)},n”, ” function _(e,o,r){Object.defineProperty(r,"__esModule",{value:!0});const t=e(81);class n extends t.Model{constructor(e){super(e)}}r.LayoutProvider=n,n.__name__="LayoutProvider"},n”, ” function _(t,a,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),o=t(266),n=t(24),s=r.__importStar(t(18));class u extends o.LayoutProvider{constructor(t){super(t)}static init_StaticLayoutProvider(){this.define({graph_layout:[s.Any,{}]})}get_node_coordinates(t){const a=t.data.index,e=a.length,r=new n.NumberArray(e),o=new n.NumberArray(e);for(let t=0;t<e;t++){const e=this.graph_layout[a[t]],[n,s]=null!=e?e:[NaN,NaN];r[t]=n,o[t]=s}return[r,o]}get_edge_coordinates(t){const a=t.data.start,e=t.data.end,r=a.length,o=[],n=[],s=null!=t.data.xs&&null!=t.data.ys;for(let u=0;u<r;u++){const r=null!=this.graph_layout[a[u]]&&null!=this.graph_layout[e[u]];if(s&&r)o.push(t.data.xs[u]),n.push(t.data.ys[u]);else{let t,s;r?(t=this.graph_layout[a[u]],s=this.graph_layout[e[u]]):(t=[NaN,NaN],s=[NaN,NaN]),o.push([t[0],s[0]]),n.push([t[1],s[1]])}}return[o,n]}}e.StaticLayoutProvider=u,u.__name__="StaticLayoutProvider",u.init_StaticLayoutProvider()},n”, ” function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});var i=e(269);d.Grid=i.Grid},n”, ” function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(1),n=i(178),r=s.__importStar(i(28)),o=s.__importStar(i(18)),d=i(8);class _ extends n.GuideRendererView{_render(){const i=this.layer.ctx;i.save(),this._draw_regions(i),this._draw_minor_grids(i),this._draw_grids(i),i.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render())}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;this.visuals.band_fill.set_value(i);const[e,t]=this.grid_coords("major",!1);for(let s=0;s<e.length-1;s++){if(s%2!=1)continue;const[n,r]=this.coordinates.map_to_screen(e[s],t[s]),[o,d]=this.coordinates.map_to_screen(e[s+1],t[s+1]);this.visuals.band_fill.doit&&i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0]),this.visuals.band_hatch.doit2(i,s,()=>{i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0])},()=>this.request_render())}}_draw_grids(i){if(!this.visuals.grid_line.doit)return;const[e,t]=this.grid_coords("major");this._draw_grid_helper(i,this.visuals.grid_line,e,t)}_draw_minor_grids(i){if(!this.visuals.minor_grid_line.doit)return;const[e,t]=this.grid_coords("minor");this._draw_grid_helper(i,this.visuals.minor_grid_line,e,t)}_draw_grid_helper(i,e,t,s){e.set_value(i),i.beginPath();for(let e=0;e<t.length;e++){const[n,r]=this.coordinates.map_to_screen(t[e],s[e]);i.moveTo(Math.round(n[0]),Math.round(r[0]));for(let e=1;e<n.length;e++)i.lineTo(Math.round(n[e]),Math.round(r[e]))}i.stroke()}ranges(){const i=this.model.dimension,e=(i+1)%2,{ranges:t}=this.coordinates;return[t[i],t[e]]}computed_bounds(){const[i]=this.ranges(),e=this.model.bounds,t=[i.min,i.max];let s,n;if(d.isArray(e))s=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]),s<t[0]&&(s=t[0]),n>t[1]&&(n=t[1]);else{[s,n]=t;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,n]=i.computed_bounds)}return[s,n]}grid_coords(i,e=!0){const t=this.model.dimension,s=(t+1)%2,[n,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,n,r.min,{})[i],h=n.min,c=n.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;i<l.length;i++){if((l[i]==h||l[i]==c)&&e)continue;const n=[],r=[],o=2;for(let e=0;e<o;e++){const t=u+(m-u)/(o-1)*e;n.push(l[i]),r.push(t)}_[t].push(n),_[s].push(r)}return _}}t.GridView=_,_.__name__="GridView";class a extends n.GuideRenderer{constructor(i){super(i)}static init_Grid(){this.prototype.default_view=_,this.mixins([["grid_",r.Line],["minor_grid_",r.Line],["band_",r.Fill],["band_",r.Hatch]]),this.define({bounds:[o.Any,"auto"],dimension:[o.Any,0],axis:[o.Instance],ticker:[o.Instance]}),this.override({level:"underlay",band_fill_color:null,band_fill_alpha:0,grid_line_color:"#e5e5e5",minor_grid_line_color:null})}get_ticker(){return null!=this.ticker?this.ticker:null!=this.axis?this.axis.ticker:null}}t.Grid=a,a.__name__="Grid",a.init_Grid()},n”, ” function _(a,o,r){Object.defineProperty(r,"__esModule",{value:!0});var e=a(271);r.Box=e.Box;var v=a(274);r.Column=v.Column;var x=a(275);r.GridBox=x.GridBox;var B=a(276);r.HTMLBox=B.HTMLBox;var n=a(272);r.LayoutDOM=n.LayoutDOM;var t=a(277);r.Row=t.Row;var u=a(278);r.Spacer=u.Spacer;var d=a(279);r.Panel=d.Panel,r.Tabs=d.Tabs;var i=a(286);r.WidgetBox=i.WidgetBox},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(272),o=n.__importStar(e(18));class c extends s.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children}}i.BoxView=c,c.__name__="BoxView";class r extends s.LayoutDOM{constructor(e){super(e)}static init_Box(){this.define({children:[o.Array,[]],spacing:[o.Number,0]})}}i.Box=r,r.__name__="Box",r.init_Box()},n”, ” function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const s=i(81),o=i(20),l=i(72),n=i(19),h=i(8),a=i(115),r=i(78),_=i(212),d=i(273),c=i(77);class u extends r.DOMView{constructor(){super(…arguments),this._idle_notified=!1,this._offset_parent=null,this._viewport={}}initialize(){super.initialize(),this.el.style.position=this.is_root?"relative":"absolute",this._child_views=new Map}async lazy_initialize(){await this.build_child_views()}remove(){for(const i of this.child_views)i.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener("resize",this._on_resize),this._parent_observer=setInterval(()=>{const i=this.el.offsetParent;this._offset_parent!=i&&(this._offset_parent=i,null!=i&&(this.compute_viewport(),this.invalidate_layout()))},250));const i=this.model.properties;this.on_change([i.width,i.height,i.min_width,i.min_height,i.max_width,i.max_height,i.margin,i.width_policy,i.height_policy,i.sizing_mode,i.aspect_ratio,i.visible],()=>this.invalidate_layout()),this.on_change([i.background,i.css_classes],()=>this.invalidate_render())}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener("resize",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map(i=>this._child_views.get(i))}async build_child_views(){await a.build_views(this._child_views,this.child_models,{parent:this})}render(){super.render(),l.empty(this.el);const{background:i}=this.model;this.el.style.backgroundColor=null!=i?i:"",l.classes(this.el).clear().add(…this.css_classes());for(const i of this.child_views)this.el.appendChild(i.el),i.render()}update_layout(){for(const i of this.child_views)i.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?"block":"none";const i=this.is_root?this.layout.sizing.margin:void 0;l.position(this.el,this.layout.bbox,i);for(const i of this.child_views)i.update_position()}after_layout(){for(const i of this.child_views)i.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(i){i.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build()}build(){return this.assert_root(),this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const i=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),n.logger.debug(layout computed in ${Date.now()-i} ms),this.notify_finished()}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const i of this.child_views)if(!i.has_finished())return!1;return!0}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}_width_policy(){return null!=this.model.width?"fixed":"fit"}_height_policy(){return null!=this.model.height?"fixed":"fit"}box_sizing(){let{width_policy:i,height_policy:t,aspect_ratio:e}=this.model;"auto"==i&&(i=this._width_policy()),"auto"==t&&(t=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if("fixed"==s)i=t="fixed";else if("stretch_both"==s)i=t="max";else if("stretch_width"==s)i="max";else if("stretch_height"==s)t="max";else switch(null==e&&(e="auto"),s){case"scale_width":i="max",t="min";break;case"scale_height":i="min",t="max";break;case"scale_both":i="max",t="max"}const o={width_policy:i,height_policy:t},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:a,height:r}=this.model;null!=a&&(o.width=a),null!=r&&(o.height=r);const{max_width:_,max_height:d}=this.model;null!=_&&(o.max_width=_),null!=d&&(o.max_height=d),"auto"==e&&null!=a&&null!=r?o.aspect=a/r:h.isNumber(e)&&(o.aspect=e);const{margin:c}=this.model;if(null!=c)if(h.isNumber(c))o.margin={top:c,right:c,bottom:c,left:c};else if(2==c.length){const[i,t]=c;o.margin={top:i,right:t,bottom:i,left:t}}else{const[i,t,e,s]=c;o.margin={top:i,right:t,bottom:e,left:s}}o.visible=this.model.visible;const{align:u}=this.model;return h.isArray(u)?[o.halign,o.valign]=u:o.halign=o.valign=u,o}_viewport_size(){return l.undisplayed(this.el,()=>{let i=this.el;for(;i=i.parentElement;){if(i.classList.contains(d.bk_root))continue;if(i==document.body){const{margin:{left:i,right:t,top:e,bottom:s}}=l.extents(document.body);return{width:Math.ceil(document.documentElement.clientWidth-i-t),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:t,right:e,top:s,bottom:o}}=l.extents(i),{width:n,height:h}=i.getBoundingClientRect(),a=Math.ceil(n-t-e),r=Math.ceil(h-s-o);if(a>0||r>0)return{width:a>0?a:void 0,height:r>0?r:void 0}}return{}})}export(i,t=!0){const e="png"==i?"canvas":"svg",s=new c.CanvasLayer(e,t),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(i,t),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map(i=>i.serializable_state())})}}e.LayoutDOMView=u,u.__name__="LayoutDOMView";class m extends s.Model{constructor(i){super(i)}static init_LayoutDOM(){this.define(i=>{const{Boolean:t,Number:e,String:s,Null:l,Auto:n,Color:h,Array:a,Tuple:r,Or:d}=i,c=r(e,e),u=r(e,e,e,e);return{width:[d(e,l),null],height:[d(e,l),null],min_width:[d(e,l),null],min_height:[d(e,l),null],max_width:[d(e,l),null],max_height:[d(e,l),null],margin:[d(e,c,u),[0,0,0,0]],width_policy:[d(_.SizingPolicy,n),"auto"],height_policy:[d(_.SizingPolicy,n),"auto"],aspect_ratio:[d(e,n,l),null],sizing_mode:[d(o.SizingMode,l),null],visible:[t,!0],disabled:[t,!1],align:[d(o.Align,r(o.Align,o.Align)),"start"],background:[d(h,l),null],css_classes:[a(s),[]]}})}}e.LayoutDOM=m,m.__name__="LayoutDOM",m.init_LayoutDOM()},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_root="bk-root"},n”, ” function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),e=t(271),n=t(216),l=s.__importStar(t(18));class u extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new n.Column(t),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}i.ColumnView=u,u.__name__="ColumnView";class _ extends e.Box{constructor(t){super(t)}static init_Column(){this.prototype.default_view=u,this.define({rows:[l.Any,"auto"]})}}i.Column=_,_.__name__="Column",_.init_Column()},n”, ” function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t(1),e=t(272),n=t(216),l=o.__importStar(t(18));class r extends e.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children.map(([t])=>t)}_update_layout(){this.layout=new n.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[t,i,s,o,e]of this.model.children){const n=this._child_views.get(t);this.layout.items.push({layout:n.layout,row:i,col:s,row_span:o,col_span:e})}this.layout.set_sizing(this.box_sizing())}}s.GridBoxView=r,r.__name__="GridBoxView";class a extends e.LayoutDOM{constructor(t){super(t)}static init_GridBox(){this.prototype.default_view=r,this.define({children:[l.Array,[]],rows:[l.Any,"auto"],cols:[l.Any,"auto"],spacing:[l.Any,0]})}}s.GridBox=a,a.__name__="GridBox",a.init_GridBox()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(272),_=e(212);class n extends s.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new _.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=n,n.__name__="HTMLBoxView";class i extends s.LayoutDOM{constructor(e){super(e)}}o.HTMLBox=i,i.__name__="HTMLBox"},n”, ” function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),e=t(271),_=t(216),a=s.__importStar(t(18));class n extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new _.Row(t),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}i.RowView=n,n.__name__="RowView";class l extends e.Box{constructor(t){super(t)}static init_Row(){this.prototype.default_view=n,this.define({cols:[a.Any,"auto"]})}}i.Row=l,l.__name__="Row",l.init_Row()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(272),s=e(212);class _ extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new s.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=_,_.__name__="SpacerView";class o extends i.LayoutDOM{constructor(e){super(e)}static init_Spacer(){this.prototype.default_view=_}}a.Spacer=o,o.__name__="Spacer",o.init_Spacer()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(212),l=e(72),h=e(9),o=i.__importStar(e(18)),c=e(272),d=e(81),r=e(173),n=e(280),_=e(281),b=e(282),p=i.__importDefault(e(283)),u=i.__importDefault(e(284)),m=i.__importDefault(e(285));class v extends c.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,()=>this.rebuild()),this.connect(this.model.properties.active.change,()=>this.on_active_change())}styles(){return[…super.styles(),p.default,u.default,m.default]}get child_models(){return this.model.tabs.map(e=>e.child)}_update_layout(){const e=this.model.tabs_location,t="above"==e||"below"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends a.ContentBox{_measure(e){const a=l.size(s),o=l.children(i).slice(0,3).map(e=>l.size(e)),{width:c,height:d}=super._measure(e);if(t){const t=a.width+h.sum(o.map(e=>e.width));return{width:e.width!=1/0?e.width:t,height:d}}{const t=a.height+h.sum(o.map(e=>e.height));return{width:c,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:"fit",height_policy:"fixed"}):this.header.set_sizing({width_policy:"fixed",height_policy:"fit"});let o=1,c=1;switch(e){case"above":o-=1;break;case"below":o+=1;break;case"left":c-=1;break;case"right":c+=1}const d={layout:this.header,row:o,col:c},r=this.child_views.map(e=>({layout:e.layout,row:1,col:1}));this.layout=new a.Grid([d,…r]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position="absolute",l.position(this.header_el,this.header.bbox);const e=this.model.tabs_location,t="above"==e||"below"==e,s=l.size(this.scroll_el),i=l.scroll_size(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+"px",l.display(this.scroll_el)):(this.wrapper_el.style.maxWidth="",l.undisplay(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+"px",l.display(this.scroll_el)):(this.wrapper_el.style.maxHeight="",l.undisplay(this.scroll_el))}const{child_views:a}=this;for(const e of a)l.hide(e.el);const h=a[this.model.active];null!=h&&l.show(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs_location,s="above"==t||"below"==t,i=this.model.tabs.map((t,s)=>{const i=l.div({class:[n.bk_tab,s==e?r.bk_active:null]},t.title);if(i.addEventListener("click",e=>{e.target==e.currentTarget&&this.change_active(s)}),t.closable){const e=l.div({class:n.bk_close});e.addEventListener("click",e=>{if(e.target==e.currentTarget){this.model.tabs=h.remove_at(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}}),i.appendChild(e)}return i});this.headers_el=l.div({class:[n.bk_headers]},i),this.wrapper_el=l.div({class:n.bk_headers_wrapper},this.headers_el);const a=l.div({class:[_.bk_btn,_.bk_btn_default],disabled:""},l.div({class:[b.bk_caret,r.bk_left]})),o=l.div({class:[_.bk_btn,_.bk_btn_default]},l.div({class:[b.bk_caret,r.bk_right]}));let c=0;const d=e=>()=>{const t=this.model.tabs.length;c="left"==e?Math.max(c-1,0):Math.min(c+1,t-1),0==c?a.setAttribute("disabled",""):a.removeAttribute("disabled"),c==t-1?o.setAttribute("disabled",""):o.removeAttribute("disabled");const i=l.children(this.headers_el).slice(0,c).map(e=>e.getBoundingClientRect());if(s){const e=-h.sum(i.map(e=>e.width));this.headers_el.style.left=e+"px"}else{const e=-h.sum(i.map(e=>e.height));this.headers_el.style.top=e+"px"}};a.addEventListener("click",d("left")),o.addEventListener("click",d("right")),this.scroll_el=l.div({class:_.bk_btn_group},a,o),this.header_el=l.div({class:[n.bk_tabs_header,r.bk_side(t)]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=l.children(this.headers_el);for(const e of t)e.classList.remove(r.bk_active);t[e].classList.add(r.bk_active);const{child_views:s}=this;for(const e of s)l.hide(e.el);l.show(s[e].el)}}s.TabsView=v,v.__name__="TabsView";class g extends c.LayoutDOM{constructor(e){super(e)}static init_Tabs(){this.prototype.default_view=v,this.define({tabs:[o.Array,[]],tabs_location:[o.Location,"above"],active:[o.Number,0]})}}s.Tabs=g,g.__name__="Tabs",g.init_Tabs();class w extends d.Model{constructor(e){super(e)}static init_Panel(){this.define({title:[o.String,""],child:[o.Instance],closable:[o.Boolean,!1]})}}s.Panel=w,w.__name__="Panel",w.init_Panel()},n”, ” function _(e,b,a){Object.defineProperty(a,"__esModule",{value:!0}),a.bk_tabs_header="bk-tabs-header",a.bk_headers_wrapper="bk-headers-wrapper",a.bk_headers="bk-headers",a.bk_tab="bk-tab",a.bk_close="bk-close"},n”, ” function _(n,b,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_btn="bk-btn",t.bk_btn_group="bk-btn-group",t.bk_btn_default="bk-btn-default",t.bk_btn_primary="bk-btn-primary",t.bk_btn_success="bk-btn-success",t.bk_btn_warning="bk-btn-warning",t.bk_btn_danger="bk-btn-danger",t.bk_btn_type=function(n){switch(n){case"default":return t.bk_btn_default;case"primary":return t.bk_btn_primary;case"success":return t.bk_btn_success;case"warning":return t.bk_btn_warning;case"danger":return t.bk_btn_danger}},t.bk_dropdown_toggle="bk-dropdown-toggle"},n”, ” function _(e,b,d){Object.defineProperty(d,"__esModule",{value:!0}),d.bk_menu="bk-menu",d.bk_caret="bk-caret",d.bk_divider="bk-divider"},n”, ” function _(n,o,b){Object.defineProperty(b,"__esModule",{value:!0});b.default="\n.bk-root .bk-btn {\n height: 100%;\n display: inline-block;\n text-align: center;\n vertical-align: middle;\n white-space: nowrap;\n cursor: pointer;\n padding: 6px 12px;\n font-size: 12px;\n border: 1px solid transparent;\n border-radius: 4px;\n outline: 0;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-btn:hover,\n.bk-root .bk-btn:focus {\n text-decoration: none;\n}\n.bk-root .bk-btn:active,\n.bk-root .bk-btn.bk-active {\n background-image: none;\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.bk-root .bk-btn[disabled] {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n box-shadow: none;\n}\n.bk-root .bk-btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.bk-root .bk-btn-default:hover {\n background-color: #f5f5f5;\n border-color: #b8b8b8;\n}\n.bk-root .bk-btn-default.bk-active {\n background-color: #ebebeb;\n border-color: #adadad;\n}\n.bk-root .bk-btn-default[disabled],\n.bk-root .bk-btn-default[disabled]:hover,\n.bk-root .bk-btn-default[disabled]:focus,\n.bk-root .bk-btn-default[disabled]:active,\n.bk-root .bk-btn-default[disabled].bk-active {\n background-color: #e6e6e6;\n border-color: #ccc;\n}\n.bk-root .bk-btn-primary {\n color: #fff;\n background-color: #428bca;\n border-color: #357ebd;\n}\n.bk-root .bk-btn-primary:hover {\n background-color: #3681c1;\n border-color: #2c699e;\n}\n.bk-root .bk-btn-primary.bk-active {\n background-color: #3276b1;\n border-color: #285e8e;\n}\n.bk-root .bk-btn-primary[disabled],\n.bk-root .bk-btn-primary[disabled]:hover,\n.bk-root .bk-btn-primary[disabled]:focus,\n.bk-root .bk-btn-primary[disabled]:active,\n.bk-root .bk-btn-primary[disabled].bk-active {\n background-color: #506f89;\n border-color: #357ebd;\n}\n.bk-root .bk-btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.bk-root .bk-btn-success:hover {\n background-color: #4eb24e;\n border-color: #409240;\n}\n.bk-root .bk-btn-success.bk-active {\n background-color: #47a447;\n border-color: #398439;\n}\n.bk-root .bk-btn-success[disabled],\n.bk-root .bk-btn-success[disabled]:hover,\n.bk-root .bk-btn-success[disabled]:focus,\n.bk-root .bk-btn-success[disabled]:active,\n.bk-root .bk-btn-success[disabled].bk-active {\n background-color: #667b66;\n border-color: #4cae4c;\n}\n.bk-root .bk-btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.bk-root .bk-btn-warning:hover {\n background-color: #eea43b;\n border-color: #e89014;\n}\n.bk-root .bk-btn-warning.bk-active {\n background-color: #ed9c28;\n border-color: #d58512;\n}\n.bk-root .bk-btn-warning[disabled],\n.bk-root .bk-btn-warning[disabled]:hover,\n.bk-root .bk-btn-warning[disabled]:focus,\n.bk-root .bk-btn-warning[disabled]:active,\n.bk-root .bk-btn-warning[disabled].bk-active {\n background-color: #c89143;\n border-color: #eea236;\n}\n.bk-root .bk-btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.bk-root .bk-btn-danger:hover {\n background-color: #d5433e;\n border-color: #bd2d29;\n}\n.bk-root .bk-btn-danger.bk-active {\n background-color: #d2322d;\n border-color: #ac2925;\n}\n.bk-root .bk-btn-danger[disabled],\n.bk-root .bk-btn-danger[disabled]:hover,\n.bk-root .bk-btn-danger[disabled]:focus,\n.bk-root .bk-btn-danger[disabled]:active,\n.bk-root .bk-btn-danger[disabled].bk-active {\n background-color: #a55350;\n border-color: #d43f3a;\n}\n.bk-root .bk-btn-group {\n height: 100%;\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-btn-group > .bk-btn {\n flex-grow: 1;\n -webkit-flex-grow: 1;\n}\n.bk-root .bk-btn-group > .bk-btn + .bk-btn {\n margin-left: -1px;\n}\n.bk-root .bk-btn-group > .bk-btn:first-child:not(:last-child) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):last-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.bk-root .bk-btn-group .bk-dropdown-toggle {\n flex: 0 0 0;\n -webkit-flex: 0 0 0;\n padding: 6px 6px;\n}\n"},n”, ” function _(n,o,r){Object.defineProperty(r,"__esModule",{value:!0});r.default="\n.bk-root .bk-menu-icon {\n width: 28px;\n height: 28px;\n background-size: 60%;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .bk-context-menu {\n position: absolute;\n display: inline-flex;\n display: -webkit-inline-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n width: auto;\n height: auto;\n z-index: 100;\n cursor: pointer;\n font-size: 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.bk-root .bk-context-menu.bk-horizontal {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-context-menu.bk-vertical {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-context-menu > .bk-divider {\n cursor: default;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.bk-root .bk-context-menu.bk-horizontal > .bk-divider {\n width: 1px;\n margin: 5px 0;\n}\n.bk-root .bk-context-menu.bk-vertical > .bk-divider {\n height: 1px;\n margin: 0 5px;\n}\n.bk-root .bk-context-menu > :not(.bk-divider) {\n border: 1px solid transparent;\n}\n.bk-root .bk-context-menu > :not(.bk-divider).bk-active {\n border-color: #26aae1;\n}\n.bk-root .bk-context-menu > :not(.bk-divider):hover {\n background-color: #f9f9f9;\n}\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child {\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.bk-root .bk-menu {\n position: absolute;\n left: 0;\n width: 100%;\n z-index: 100;\n cursor: pointer;\n font-size: 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.bk-root .bk-menu.bk-above {\n bottom: 100%;\n}\n.bk-root .bk-menu.bk-below {\n top: 100%;\n}\n.bk-root .bk-menu > .bk-divider {\n height: 1px;\n margin: 7.5px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.bk-root .bk-menu > :not(.bk-divider) {\n padding: 6px 12px;\n}\n.bk-root .bk-menu > :not(.bk-divider):hover,\n.bk-root .bk-menu > :not(.bk-divider).bk-active {\n background-color: #e6e6e6;\n}\n.bk-root .bk-caret {\n display: inline-block;\n vertical-align: middle;\n width: 0;\n height: 0;\n margin: 0 5px;\n}\n.bk-root .bk-caret.bk-down {\n border-top: 4px solid;\n}\n.bk-root .bk-caret.bk-up {\n border-bottom: 4px solid;\n}\n.bk-root .bk-caret.bk-down,\n.bk-root .bk-caret.bk-up {\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.bk-root .bk-caret.bk-left {\n border-right: 4px solid;\n}\n.bk-root .bk-caret.bk-right {\n border-left: 4px solid;\n}\n.bk-root .bk-caret.bk-left,\n.bk-root .bk-caret.bk-right {\n border-top: 4px solid transparent;\n border-bottom: 4px solid transparent;\n}\n"},n”, ” function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});n.default=’\n.bk-root .bk-tabs-header {\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n overflow: hidden;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-tabs-header .bk-btn-group {\n height: auto;\n margin-right: 5px;\n}\n.bk-root .bk-tabs-header .bk-btn-group > .bk-btn {\n flex-grow: 0;\n -webkit-flex-grow: 0;\n height: auto;\n padding: 4px 4px;\n}\n.bk-root .bk-tabs-header .bk-headers-wrapper {\n flex-grow: 1;\n -webkit-flex-grow: 1;\n overflow: hidden;\n color: #666666;\n}\n.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper {\n border-bottom: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper {\n border-left: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper {\n border-top: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper {\n border-right: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-above,\n.bk-root .bk-tabs-header.bk-below {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-tabs-header.bk-above .bk-headers,\n.bk-root .bk-tabs-header.bk-below .bk-headers {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-tabs-header.bk-left,\n.bk-root .bk-tabs-header.bk-right {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-tabs-header.bk-left .bk-headers,\n.bk-root .bk-tabs-header.bk-right .bk-headers {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-tabs-header .bk-headers {\n position: relative;\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n}\n.bk-root .bk-tabs-header .bk-tab {\n padding: 4px 8px;\n border: solid transparent;\n white-space: nowrap;\n cursor: pointer;\n}\n.bk-root .bk-tabs-header .bk-tab:hover {\n background-color: #f2f2f2;\n}\n.bk-root .bk-tabs-header .bk-tab.bk-active {\n color: #4d4d4d;\n background-color: white;\n border-color: #e6e6e6;\n}\n.bk-root .bk-tabs-header .bk-tab .bk-close {\n margin-left: 10px;\n}\n.bk-root .bk-tabs-header.bk-above .bk-tab {\n border-width: 3px 1px 0px 1px;\n border-radius: 4px 4px 0 0;\n}\n.bk-root .bk-tabs-header.bk-right .bk-tab {\n border-width: 1px 3px 1px 0px;\n border-radius: 0 4px 4px 0;\n}\n.bk-root .bk-tabs-header.bk-below .bk-tab {\n border-width: 0px 1px 3px 1px;\n border-radius: 0 0 4px 4px;\n}\n.bk-root .bk-tabs-header.bk-left .bk-tab {\n border-width: 1px 0px 1px 3px;\n border-radius: 4px 0 0 4px;\n}\n.bk-root .bk-close {\n display: inline-block;\n width: 10px;\n height: 10px;\n vertical-align: middle;\n background-image: url(\’data:image/svg+xml;utf8, <svg viewPort="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg"> <line x1="1" y1="9" x2="9" y2="1" stroke="gray" stroke-width="2"/> <line x1="1" y1="1" x2="9" y2="9" stroke="gray" stroke-width="2"/> </svg>\’);\n}\n.bk-root .bk-close:hover {\n background-image: url(\’data:image/svg+xml;utf8, <svg viewPort="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg"> <line x1="1" y1="9" x2="9" y2="1" stroke="red" stroke-width="2"/> <line x1="1" y1="1" x2="9" y2="9" stroke="red" stroke-width="2"/> </svg>\’);\n}\n’},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e(274);class _ extends o.ColumnView{}i.WidgetBoxView=_,_.__name__="WidgetBoxView";class n extends o.Column{constructor(e){super(e)}static init_WidgetBox(){this.prototype.default_view=_}}i.WidgetBox=n,n.__name__="WidgetBox",n.init_WidgetBox()},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});e(1).__exportStar(e(288),t);var a=e(289);t.Marker=a.Marker;var _=e(290);t.Scatter=_.Scatter},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const i=e(1),r=e(289),n=i.__importStar(e(238)),s=Math.sqrt(3);function c(e,t){e.rotate(Math.PI/4),a(e,t),e.rotate(-Math.PI/4)}function l(e,t){const o=t*s,i=o/3;e.moveTo(-o/2,-i),e.lineTo(0,0),e.lineTo(o/2,-i),e.lineTo(0,0),e.lineTo(0,t)}function a(e,t){e.moveTo(0,t),e.lineTo(0,-t),e.moveTo(-t,0),e.lineTo(t,0)}function u(e,t){e.moveTo(0,t),e.lineTo(t/1.5,0),e.lineTo(0,-t),e.lineTo(-t/1.5,0),e.closePath()}function d(e,t){const o=t*s,i=o/3;e.moveTo(-t,i),e.lineTo(t,i),e.lineTo(0,i-o),e.closePath()}function v(e,t,o,i,r){a(e,o),c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function _(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function f(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function T(e,t,o,i,r){_(e,t,o,i,r),P(e,t,o,i,r)}function z(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),l(e,o),e.stroke())}function C(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),c(e,o),e.stroke())}function k(e,t,o,i,r){a(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function m(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function h(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(0,o),e.lineTo(0,-o),e.moveTo(-o/1.5,0),e.lineTo(o/1.5,0),e.stroke())}function q(e,t,o,i,r){m(e,t,o,i,r),P(e,t,o,i,r)}function P(e,t,o,i,r){!function(e,t){e.beginPath(),e.arc(0,0,t/4,0,2*Math.PI,!1),e.closePath()}(e,o),i.set_vectorize(e,t),e.fillStyle=e.strokeStyle,e.fill()}function D(e,t,o,i,r){!function(e,t){const o=t/2,i=s*o;e.moveTo(t,0),e.lineTo(o,-i),e.lineTo(-o,-i),e.lineTo(-t,0),e.lineTo(-o,i),e.lineTo(o,i),e.closePath()}(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function g(e,t,o,i,r){D(e,t,o,i,r),P(e,t,o,i)}function S(e,t,o,i,r){e.rotate(Math.PI),d(e,o),e.rotate(-Math.PI),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function G(e,t,o,i,r){const n=3*o/8,s=[n,n,o,o,n,n,-n,-n,-o,-o,-n,-n],c=[o,n,n,-n,-n,-o,-o,-n,-n,n,n,o];for(e.moveTo(s[0],c[0]),t=1;t<12;t++)e.lineTo(s[t],c[t]);e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function L(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function M(e,t,o,i,r){const n=3*o/8;e.moveTo(-o,-o),e.quadraticCurveTo(0,-n,o,-o),e.quadraticCurveTo(n,0,o,o),e.quadraticCurveTo(0,n,-o,o),e.quadraticCurveTo(-n,0,-o,-o),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function p(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function x(e,t,o,i,r){L(e,t,o,i,r),P(e,t,o,i)}function I(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(-o,o),e.lineTo(o,-o),e.moveTo(-o,-o),e.lineTo(o,o),e.stroke())}function y(e,t,o,i,r){d(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function X(e,t,o,i,r){y(e,t,o,i,r),P(e,t,o,i)}function H(e,t,o,i,r){const n=o*s,c=n/3,l=3*c/8;e.moveTo(-o,c),e.quadraticCurveTo(0,l,o,c),e.quadraticCurveTo(s*l/2,l/2,0,c-n),e.quadraticCurveTo(-s*l/2,l/2,-o,c),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function Y(e,t,o,i,r){!function(e,t){e.moveTo(-t,0),e.lineTo(t,0)}(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function A(e,t,o,i,r){c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function b(e,t,o,i,r){l(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function w(e,t,o){var i;const n=class extends r.MarkerView{static initClass(){this.prototype._render_one=t,this.prototype.glglyph_cls=o}};n.initClass();const s=((i=class extends r.Marker{static initClass(){this.prototype.default_view=n}}).__name__=e,i);return s.initClass(),s}o.Asterisk=w("Asterisk",v,n.AsteriskGL),o.CircleCross=w("CircleCross",f,n.CircleCrossGL),o.CircleDot=w("CircleDot",T),o.CircleY=w("CircleY",z),o.CircleX=w("CircleX",C,n.CircleXGL),o.Cross=w("Cross",k,n.CrossGL),o.Dash=w("Dash",Y),o.Diamond=w("Diamond",m,n.DiamondGL),o.DiamondCross=w("DiamondCross",h,n.DiamondCrossGL),o.DiamondDot=w("DiamondDot",q),o.Dot=w("Dot",P),o.Hex=w("Hex",D,n.HexGL),o.HexDot=w("HexDot",g),o.InvertedTriangle=w("InvertedTriangle",S,n.InvertedTriangleGL),o.Plus=w("Plus",G),o.Square=w("Square",L,n.SquareGL),o.SquareCross=w("SquareCross",p,n.SquareCrossGL),o.SquareDot=w("SquareDot",x),o.SquarePin=w("SquarePin",M),o.SquareX=w("SquareX",I,n.SquareXGL),o.Triangle=w("Triangle",y,n.TriangleGL),o.TriangleDot=w("TriangleDot",X),o.TrianglePin=w("TrianglePin",H),o.X=w("X",A,n.XGL),o.Y=w("Y",b),o.marker_funcs={asterisk:v,circle:_,circle_cross:f,circle_dot:T,circle_y:z,circle_x:C,cross:k,diamond:m,diamond_dot:q,diamond_cross:h,dot:P,hex:D,hex_dot:g,inverted_triangle:S,plus:G,square:L,square_cross:p,square_dot:x,square_pin:M,square_x:I,triangle:y,triangle_dot:X,triangle_pin:H,dash:Y,x:A,y:b}},n”, ” function _(e,s,i){Object.defineProperty(i,"__esModule",{value:!0});const t=e(1),n=e(93),r=e(28),a=t.__importStar(e(101)),_=t.__importStar(e(18)),h=e(9),l=e(88);class c extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&null!=this.glglyph_cls&&(this.glglyph=new this.glglyph_cls(e.gl,this))}_render(e,s,{sx:i,sy:t,_size:n,_angle:r}){for(const a of s){if(isNaN(i[a]+t[a]+n[a]+r[a]))continue;const s=n[a]/2;e.beginPath(),e.translate(i[a],t[a]),r[a]&&e.rotate(r[a]),this._render_one(e,a,s,this.visuals.line,this.visuals.fill),r[a]&&e.rotate(-r[a]),e.translate(-i[a],-t[a])}}_mask_data(){const e=this.renderer.plot_view.frame.bbox.h_range,s=e.start-this.max_size,i=e.end+this.max_size,[t,n]=this.renderer.xscale.r_invert(s,i),r=this.renderer.plot_view.frame.bbox.v_range,a=r.start-this.max_size,_=r.end+this.max_size,[h,l]=this.renderer.yscale.r_invert(a,_);return this.index.indices({x0:t,x1:n,y0:h,y1:l})}_hit_point(e){const{sx:s,sy:i}=e,t=s-this.max_size,n=s+this.max_size,[r,a]=this.renderer.xscale.r_invert(t,n),_=i-this.max_size,h=i+this.max_size,[c,o]=this.renderer.yscale.r_invert(_,h),x=this.index.indices({x0:r,x1:a,y0:c,y1:o}),d=[];for(const e of x){const t=this._size[e]/2;Math.abs(this.sx[e]-s)<=t&&Math.abs(this.sy[e]-i)<=t&&d.push(e)}return new l.Selection({indices:d})}_hit_span(e){const{sx:s,sy:i}=e,t=this.bounds(),n=this.max_size/2;let r,a,_,h;if("h"==e.direction){_=t.y0,h=t.y1;const e=s-n,i=s+n;[r,a]=this.renderer.xscale.r_invert(e,i)}else{r=t.x0,a=t.x1;const e=i-n,s=i+n;[_,h]=this.renderer.yscale.r_invert(e,s)}const c=[…this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_rect(e){const{sx0:s,sx1:i,sy0:t,sy1:n}=e,[r,a]=this.renderer.xscale.r_invert(s,i),[_,h]=this.renderer.yscale.r_invert(t,n),c=[…this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_poly(e){const{sx:s,sy:i}=e,t=h.range(0,this.sx.length),n=[];for(let e=0,r=t.length;e<r;e++){const r=t[e];a.point_in_poly(this.sx[e],this.sy[e],s,i)&&n.push(r)}return new l.Selection({indices:n})}_get_legend_args({x0:e,x1:s,y0:i,y1:t},n){const r=n+1,a=new Array(r);a[n]=(e+s)/2;const _=new Array(r);_[n]=(i+t)/2;const h=new Array(r);h[n]=.4*Math.min(Math.abs(s-e),Math.abs(t-i));const l=new Array(r);return l[n]=0,{sx:a,sy:_,_size:h,_angle:l}}draw_legend_for_index(e,{x0:s,x1:i,y0:t,y1:n},r){const a=this._get_legend_args({x0:s,x1:i,y0:t,y1:n},r);this._render(e,[r],a)}}i.MarkerView=c,c.__name__="MarkerView";class o extends n.XYGlyph{constructor(e){super(e)}static init_Marker(){this.mixins([r.LineVector,r.FillVector]),this.define({size:[_.DistanceSpec,{units:"screen",value:4}],angle:[_.AngleSpec,0]})}}i.Marker=o,o.__name__="Marker",o.init_Marker()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=e(1),s=e(289),i=e(288),n=a.__importStar(e(18));class _ extends s.MarkerView{_render(e,t,{sx:r,sy:a,_size:s,_angle:n,_marker:_}){for(const c of t){if(isNaN(r[c]+a[c]+s[c]+n[c])||null==_[c])continue;const t=s[c]/2;e.beginPath(),e.translate(r[c],a[c]),n[c]&&e.rotate(n[c]),i.marker_funcs[_[c]](e,c,t,this.visuals.line,this.visuals.fill),n[c]&&e.rotate(-n[c]),e.translate(-r[c],-a[c])}}draw_legend_for_index(e,{x0:t,x1:r,y0:a,y1:s},i){const n=this._get_legend_args({x0:t,x1:r,y0:a,y1:s},i),_=new Array(i+1);_[i]=this._marker[i],n._marker=_,this._render(e,[i],n)}}r.ScatterView=_,_.__name__="ScatterView";class c extends s.Marker{constructor(e){super(e)}static init_Scatter(){this.prototype.default_view=_,this.define({marker:[n.MarkerSpec,{value:"circle"}]})}}r.Scatter=c,c.__name__="Scatter",c.init_Scatter()},n”, ” function _(a,o,p){Object.defineProperty(p,"__esModule",{value:!0});var t=a(292);p.MapOptions=t.MapOptions;var e=a(292);p.GMapOptions=e.GMapOptions;var n=a(292);p.GMapPlot=n.GMapPlot;var M=a(293);p.Plot=M.Plot},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),n=t(19),a=t(293),s=o.__importStar(t(18)),p=t(81),r=t(158),_=t(319);i.GMapPlotView=_.GMapPlotView;class l extends p.Model{constructor(t){super(t)}static init_MapOptions(){this.define({lat:[s.Number],lng:[s.Number],zoom:[s.Number,12]})}}i.MapOptions=l,l.__name__="MapOptions",l.init_MapOptions();class c extends l{constructor(t){super(t)}static init_GMapOptions(){this.define({map_type:[s.String,"roadmap"],scale_control:[s.Boolean,!1],styles:[s.String],tilt:[s.Int,45]})}}i.GMapOptions=c,c.__name__="GMapOptions",c.init_GMapOptions();class u extends a.Plot{constructor(t){super(t)}static init_GMapPlot(){this.prototype.default_view=_.GMapPlotView,this.define({map_options:[s.Instance],api_key:[s.String]}),this.override({x_range:()=>new r.Range1d,y_range:()=>new r.Range1d})}initialize(){super.initialize(),this.use_map=!0,this.api_key||n.logger.error("api_key is required. See https://developers.google.com/maps/documentation/javascript/get-api-key for more information on how to obtain your own.")}}i.GMapPlot=u,u.__name__="GMapPlot",u.init_GMapPlot()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1),o=i.__importStar(e(28)),n=i.__importStar(e(18)),s=e(15),a=e(9),l=e(13),_=e(8),h=e(272),c=e(169),u=e(145),d=e(294),b=e(85),g=e(90),p=e(210),m=e(312);r.PlotView=m.PlotView;class f extends h.LayoutDOM{constructor(e){super(e)}static init_Plot(){this.prototype.default_view=m.PlotView,this.mixins([["outline_",o.Line],["background_",o.Fill],["border_",o.Fill]]),this.define({toolbar:[n.Instance,()=>new d.Toolbar],toolbar_location:[n.Location,"right"],toolbar_sticky:[n.Boolean,!0],plot_width:[n.Number,600],plot_height:[n.Number,600],frame_width:[n.Number,null],frame_height:[n.Number,null],title:[n.Any,()=>new c.Title({text:""})],title_location:[n.Location,"above"],above:[n.Array,[]],below:[n.Array,[]],left:[n.Array,[]],right:[n.Array,[]],center:[n.Array,[]],renderers:[n.Array,[]],x_range:[n.Instance,()=>new p.DataRange1d],extra_x_ranges:[n.Any,{}],y_range:[n.Instance,()=>new p.DataRange1d],extra_y_ranges:[n.Any,{}],x_scale:[n.Instance,()=>new u.LinearScale],y_scale:[n.Instance,()=>new u.LinearScale],lod_factor:[n.Number,10],lod_interval:[n.Number,300],lod_threshold:[n.Number,2e3],lod_timeout:[n.Number,500],hidpi:[n.Boolean,!0],output_backend:[n.OutputBackend,"canvas"],min_border:[n.Number,5],min_border_top:[n.Number,null],min_border_left:[n.Number,null],min_border_bottom:[n.Number,null],min_border_right:[n.Number,null],inner_width:[n.Number],inner_height:[n.Number],outer_width:[n.Number],outer_height:[n.Number],match_aspect:[n.Boolean,!1],aspect_scale:[n.Number,1],reset_policy:[n.ResetPolicy,"standard"]}),this.override({outline_line_color:"#e5e5e5",border_fill_color:"#ffffff",background_fill_color:"#ffffff"})}get width(){const e=this.properties.width.get_value();return null!=e?e:this.plot_width}set width(e){this.setv({width:e,plot_width:e})}get height(){const e=this.properties.height.get_value();return null!=e?e:this.plot_height}set height(e){this.setv({height:e,plot_height:e})}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new s.Signal0(this,"reset");for(const e of l.values(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of l.values(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t="center"){const r=this.properties[t].get_value();this.setv({[t]:[…r,e]})}remove_layout(e){const t=t=>{a.remove_by(t,t=>t==e)};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}add_renderers(…e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new b.ColumnDataSource,r={}){const i=Object.assign(Object.assign({},r),{data_source:t,glyph:e}),o=new g.GlyphRenderer(i);return this.add_renderers(o),o}add_tools(…e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[…this.side_panels,…this.center]}get side_panels(){const{above:e,below:t,left:r,right:i}=this;return a.concat([e,t,r,i])}}r.Plot=f,f.__name__="Plot",f.init_Plot()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1).__importStar(t(18)),c=t(8),o=t(9),n=t(13),a=t(295),l=t(305),r=t=>{switch(t){case"tap":return"active_tap";case"pan":return"active_drag";case"pinch":case"scroll":return"active_scroll";case"multi":return"active_multi"}return null},_=t=>"tap"==t||"pan"==t;class h extends l.ToolbarBase{constructor(t){super(t)}static init_Toolbar(){this.prototype.default_view=l.ToolbarBaseView,this.define({active_drag:[s.Any,"auto"],active_inspect:[s.Any,"auto"],active_scroll:[s.Any,"auto"],active_tap:[s.Any,"auto"],active_multi:[s.Any,null]})}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:i,active_scroll:s,active_tap:c,active_multi:o}=this.properties;this.on_change([t,e,i,s,c,o],()=>this._init_tools())}_init_tools(){if(super._init_tools(),"auto"==this.active_inspect);else if(this.active_inspect instanceof a.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if(c.isArray(this.active_inspect)){const t=o.intersection(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)o.includes(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of n.values(this.gestures)){t.tools=o.sort_by(t.tools,t=>t.default_order);for(const e of t.tools)this.connect(e.properties.active.change,()=>this._active_change(e))}for(const[e,i]of n.entries(this.gestures)){const s=r(e);if(s){const c=this[s];"auto"==c?0!=i.tools.length&&_(e)&&t(i.tools[0]):null!=c&&(o.includes(this.tools,c)?t(c):this[s]=null)}}}}i.Toolbar=h,h.__name__="Toolbar",h.init_Toolbar()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const n=e(1),s=e(296),i=e(304),_=n.__importStar(e(18));class c extends s.ButtonToolView{}o.InspectToolView=c,c.__name__="InspectToolView";class l extends s.ButtonTool{constructor(e){super(e),this.event_type="move"}static init_InspectTool(){this.prototype.button_view=i.OnOffButtonView,this.define({toggleable:[_.Boolean,!0]}),this.override({active:!0})}}o.InspectTool=l,l.__name__="InspectTool",l.init_InspectTool()},n”, ” function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const i=t(1),s=i.__importDefault(t(297)),n=t(78),l=t(298),r=t(72),a=i.__importStar(t(18)),u=t(29),_=t(8),h=t(9),c=t(299),m=i.__importDefault(t(300)),d=i.__importDefault(t(301)),p=i.__importDefault(t(284)),f=t(302);class g extends n.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o="left"==e||"above"==e,i=this.parent.model.horizontal?"vertical":"horizontal";this._menu=new f.ContextMenu(o?h.reversed(t):t,{orientation:i,prevent_hide:t=>t.target==this.el})}this._hammer=new s.default(this.el,{touchAction:"auto",inputClass:s.default.TouchMouseInput}),this.connect(this.model.change,()=>this.render()),this._hammer.on("tap",t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()}),this._hammer.on("press",()=>this._pressed())}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[…super.styles(),m.default,d.default,p.default]}css_classes(){return super.css_classes().concat(c.bk_toolbar_button)}render(){r.empty(this.el);const t=this.model.computed_icon;_.isString(t)&&(u.startsWith(t,"data:image")?this.el.style.backgroundImage="url(’"+t+"’)":this.el.classList.add(t)),this.el.title=this.model.tooltip,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const{left:e,top:o,right:i,bottom:s}=this.el.getBoundingClientRect(),n=(()=>{switch(this.parent.model.toolbar_location){case"right":return{right:e,top:o};case"left":return{left:i,top:o};case"above":return{left:e,top:s};case"below":return{left:e,bottom:o}}})();null===(t=this._menu)||void 0===t||t.toggle(n)}}o.ButtonToolButtonView=g,g.__name__="ButtonToolButtonView";class v extends l.ToolView{}o.ButtonToolView=v,v.__name__="ButtonToolView";class b extends l.Tool{constructor(t){super(t)}static init_ButtonTool(){this.internal({disabled:[a.Boolean,!1]})}get tooltip(){return this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=b,b.__name__="ButtonTool",b.init_ButtonTool()},n”, ” function _(t,e,n){n”, ” /! Hammer.JS - v2.0.7 - 2016-04-22n”, ” * http://hammerjs.github.io/n”, ” *n”, ” * Copyright (c) 2016 Jorik Tangelder;n”, ” * Licensed under the MIT license */n”, ” !function(t,n,i,r){"use strict";var s,o=["","webkit","Moz","MS","ms","o"],a=n.createElement("div"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,n){return setTimeout(y(t,n),e)}function p(t,e,n){return!!Array.isArray(t)&&(f(t,n[e],n),!0)}function f(t,e,n){var i;if(t)if(t.forEach)t.forEach(e,n);else if(void 0!==t.length)for(i=0;i<t.length;)e.call(n,t[i],i,t),i++;else for(i in t)t.hasOwnProperty(i)&&e.call(n,t[i],i,t)}function v(e,n,i){var r="DEPRECATED METHOD: "+n+"\n"+i+" AT \n";return function(){var n=new Error("get-stack-trace"),i=n&&n.stack?n.stack.replace(/^[^\(]+?[\n$]/gm,"").replace(/^\s+at\s+/gm,"").replace(/^Object.<anonymous>\s\(/gm,"{anonymous}()@"):"Unknown Stack Trace",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,i),e.apply(this,arguments)}}s="function"!=typeof Object.assign?function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),n=1;n<arguments.length;n++){var i=arguments[n];if(null!=i)for(var r in i)i.hasOwnProperty(r)&&(e[r]=i[r])}return e}:Object.assign;var d=v((function(t,e,n){for(var i=Object.keys(e),r=0;r<i.length;)(!n||n&&void 0===t[i[r]])&&(t[i[r]]=e[i[r]]),r++;return t}),"extend","Use assign."),m=v((function(t,e){return d(t,e,!0)}),"merge","Use assign.");function g(t,e,n){var i,r=e.prototype;(i=t.prototype=Object.create(r)).constructor=t,i._super=r,n&&s(i,n)}function y(t,e){return function(){return t.apply(e,arguments)}}function T(t,e){return"function"==typeof t?t.apply(e&&e[0]||void 0,e):t}function E(t,e){return void 0===t?e:t}function I(t,e,n){f(S(e),(function(e){t.addEventListener(e,n,!1)}))}function A(t,e,n){f(S(e),(function(e){t.removeEventListener(e,n,!1)}))}function _(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1}function C(t,e){return t.indexOf(e)>-1}function S(t){return t.trim().split(/\s+/g)}function b(t,e,n){if(t.indexOf&&!n)return t.indexOf(e);for(var i=0;i<t.length;){if(n&&t[i][n]==e||!n&&t[i]===e)return i;i++}return-1}function x(t){return Array.prototype.slice.call(t,0)}function P(t,e,n){for(var i=[],r=[],s=0;s<t.length;){var o=e?t[s][e]:t[s];b(r,o)<0&&i.push(t[s]),r[s]=o,s++}return n&&(i=e?i.sort((function(t,n){return t[e]>n[e]})):i.sort()),i}function D(t,e){for(var n,i,r=e[0].toUpperCase()+e.slice(1),s=0;s<o.length;){if((i=(n=o[s])?n+r:e)in t)return i;s++}}var w=1;function O(e){var n=e.ownerDocument||e;return n.defaultView||n.parentWindow||t}var R="ontouchstart"in t,M=void 0!==D(t,"PointerEvent"),z=R&&/mobile|tablet|ip(ad|hone|od)|android/i.test(navigator.userAgent),N=["x","y"],X=["clientX","clientY"];function Y(t,e){var n=this;this.manager=t,this.callback=e,this.element=t.element,this.target=t.options.inputTarget,this.domHandler=function(e){T(t.options.enable,[t])&&n.handler(e)},this.init()}function F(t,e,n){var i=n.pointers.length,r=n.changedPointers.length,s=1&e&&i-r==0,o=12&e&&i-r==0;n.isFirst=!!s,n.isFinal=!!o,s&&(t.session={}),n.eventType=e,function(t,e){var n=t.session,i=e.pointers,r=i.length;n.firstInput||(n.firstInput=W(e));r>1&&!n.firstMultiple?n.firstMultiple=W(e):1===r&&(n.firstMultiple=!1);var s=n.firstInput,o=n.firstMultiple,a=o?o.center:s.center,h=e.center=q(i);e.timeStamp=c(),e.deltaTime=e.timeStamp-s.timeStamp,e.angle=U(a,h),e.distance=L(a,h),function(t,e){var n=e.center,i=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},i=t.offsetDelta={x:n.x,y:n.y});e.deltaX=r.x+(n.x-i.x),e.deltaY=r.y+(n.y-i.y)}(n,e),e.offsetDirection=H(e.deltaX,e.deltaY);var l=k(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=l.x,e.overallVelocityY=l.y,e.overallVelocity=u(l.x)>u(l.y)?l.x:l.y,e.scale=o?(p=o.pointers,f=i,L(f[0],f[1],X)/L(p[0],p[1],X)):1,e.rotation=o?function(t,e){return U(e[1],e[0],X)+U(t[1],t[0],X)}(o.pointers,i):0,e.maxPointers=n.prevInput?e.pointers.length>n.prevInput.maxPointers?e.pointers.length:n.prevInput.maxPointers:e.pointers.length,function(t,e){var n,i,r,s,o=t.lastInterval||e,a=e.timeStamp-o.timeStamp;if(8!=e.eventType&&(a>25||void 0===o.velocity)){var h=e.deltaX-o.deltaX,c=e.deltaY-o.deltaY,l=k(a,h,c);i=l.x,r=l.y,n=u(l.x)>u(l.y)?l.x:l.y,s=H(h,c),t.lastInterval=e}else n=o.velocity,i=o.velocityX,r=o.velocityY,s=o.direction;e.velocity=n,e.velocityX=i,e.velocityY=r,e.direction=s}(n,e);var p,f;var v=t.element;_(e.srcEvent.target,v)&&(v=e.srcEvent.target);e.target=v}(t,n),t.emit("hammer.input",n),t.recognize(n),t.session.prevInput=n}function W(t){for(var e=[],n=0;n<t.pointers.length;)e[n]={clientX:h(t.pointers[n].clientX),clientY:h(t.pointers[n].clientY)},n++;return{timeStamp:c(),pointers:e,center:q(e),deltaX:t.deltaX,deltaY:t.deltaY}}function q(t){var e=t.length;if(1===e)return{x:h(t[0].clientX),y:h(t[0].clientY)};for(var n=0,i=0,r=0;r<e;)n+=t[r].clientX,i+=t[r].clientY,r++;return{x:h(n/e),y:h(i/e)}}function k(t,e,n){return{x:e/t||0,y:n/t||0}}function H(t,e){return t===e?1:u(t)>=u(e)?t<0?2:4:e<0?8:16}function L(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return Math.sqrt(i*i+r*r)}function U(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return 180*Math.atan2(r,i)/Math.PI}Y.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var V={mousedown:1,mousemove:2,mouseup:4};function j(){this.evEl="mousedown",this.evWin="mousemove mouseup",this.pressed=!1,Y.apply(this,arguments)}g(j,Y,{handler:function(t){var e=V[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:"mouse",srcEvent:t}))}});var G={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Z={2:"touch",3:"pen",4:"mouse",5:"kinect"},B="pointerdown",$="pointermove pointerup pointercancel";function J(){this.evEl=B,this.evWin=$,Y.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(B="MSPointerDown",$="MSPointerMove MSPointerUp MSPointerCancel"),g(J,Y,{handler:function(t){var e=this.store,n=!1,i=t.type.toLowerCase().replace("ms",""),r=G[i],s=Z[t.pointerType]||t.pointerType,o="touch"==s,a=b(e,t.pointerId,"pointerId");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(n=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),n&&e.splice(a,1))}});var K={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function Q(){this.evTarget="touchstart",this.evWin="touchstart touchmove touchend touchcancel",this.started=!1,Y.apply(this,arguments)}function tt(t,e){var n=x(t.touches),i=x(t.changedTouches);return 12&e&&(n=P(n.concat(i),"identifier",!0)),[n,i]}g(Q,Y,{handler:function(t){var e=K[t.type];if(1===e&&(this.started=!0),this.started){var n=tt.call(this,t,e);12&e&&n[0].length-n[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}}});var et={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function nt(){this.evTarget="touchstart touchmove touchend touchcancel",this.targetIds={},Y.apply(this,arguments)}function it(t,e){var n=x(t.touches),i=this.targetIds;if(3&e&&1===n.length)return i[n[0].identifier]=!0,[n,n];var r,s,o=x(t.changedTouches),a=[],h=this.target;if(s=n.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r<s.length;)i[s[r].identifier]=!0,r++;for(r=0;r<o.length;)i[o[r].identifier]&&a.push(o[r]),12&e&&delete i[o[r].identifier],r++;return a.length?[P(s.concat(a),"identifier",!0),a]:void 0}g(nt,Y,{handler:function(t){var e=et[t.type],n=it.call(this,t,e);n&&this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}});function rt(){Y.apply(this,arguments);var t=y(this.handler,this);this.touch=new nt(this.manager,t),this.mouse=new j(this.manager,t),this.primaryTouch=null,this.lastTouches=[]}function st(t,e){1&t?(this.primaryTouch=e.changedPointers[0].identifier,ot.call(this,e)):12&t&&ot.call(this,e)}function ot(t){var e=t.changedPointers[0];if(e.identifier===this.primaryTouch){var n={x:e.clientX,y:e.clientY};this.lastTouches.push(n);var i=this.lastTouches;setTimeout((function(){var t=i.indexOf(n);t>-1&&i.splice(t,1)}),2500)}}function at(t){for(var e=t.srcEvent.clientX,n=t.srcEvent.clientY,i=0;i<this.lastTouches.length;i++){var r=this.lastTouches[i],s=Math.abs(e-r.x),o=Math.abs(n-r.y);if(s<=25&&o<=25)return!0}return!1}g(rt,Y,{handler:function(t,e,n){var i="touch"==n.pointerType,r="mouse"==n.pointerType;if(!(r&&n.sourceCapabilities&&n.sourceCapabilities.firesTouchEvents)){if(i)st.call(this,e,n);else if(r&&at.call(this,n))return;this.callback(t,e,n)}},destroy:function(){this.touch.destroy(),this.mouse.destroy()}});var ht=D(a.style,"touchAction"),ut=void 0!==ht,ct=function(){if(!ut)return!1;var e={},n=t.CSS&&t.CSS.supports;return["auto","manipulation","pan-y","pan-x","pan-x pan-y","none"].forEach((function(i){e[i]=!n||t.CSS.supports("touch-action",i)})),e}();function lt(t,e){this.manager=t,this.set(e)}lt.prototype={set:function(t){"compute"==t&&(t=this.compute()),ut&&this.manager.element.style&&ct[t]&&(this.manager.element.style[ht]=t),this.actions=t.toLowerCase().trim()},update:function(){this.set(this.manager.options.touchAction)},compute:function(){var t=[];return f(this.manager.recognizers,(function(e){T(e.options.enable,[e])&&(t=t.concat(e.getTouchAction()))})),function(t){if(C(t,"none"))return"none";var e=C(t,"pan-x"),n=C(t,"pan-y");if(e&&n)return"none";if(e||n)return e?"pan-x":"pan-y";if(C(t,"manipulation"))return"manipulation";return"auto"}(t.join(" "))},preventDefaults:function(t){var e=t.srcEvent,n=t.offsetDirection;if(this.manager.session.prevented)e.preventDefault();else{var i=this.actions,r=C(i,"none")&&!ct.none,s=C(i,"pan-y")&&!ct["pan-y"],o=C(i,"pan-x")&&!ct["pan-x"];if(r){var a=1===t.pointers.length,h=t.distance<2,u=t.deltaTime<250;if(a&&h&&u)return}if(!o||!s)return r||s&&6&n||o&&24&n?this.preventSrc(e):void 0}},preventSrc:function(t){this.manager.session.prevented=!0,t.preventDefault()}};function pt(t){this.options=s({},this.defaults,t||{}),this.id=w++,this.manager=null,this.options.enable=E(this.options.enable,!0),this.state=1,this.simultaneous={},this.requireFail=[]}function ft(t){return 16&t?"cancel":8&t?"end":4&t?"move":2&t?"start":""}function vt(t){return 16==t?"down":8==t?"up":2==t?"left":4==t?"right":""}function dt(t,e){var n=e.manager;return n?n.get(t):t}function mt(){pt.apply(this,arguments)}function gt(){mt.apply(this,arguments),this.pX=null,this.pY=null}function yt(){mt.apply(this,arguments)}function Tt(){pt.apply(this,arguments),this._timer=null,this._input=null}function Et(){mt.apply(this,arguments)}function It(){mt.apply(this,arguments)}function At(){pt.apply(this,arguments),this.pTime=!1,this.pCenter=!1,this._timer=null,this._input=null,this.count=0}function _t(t,e){return(e=e||{}).recognizers=E(e.recognizers,_t.defaults.preset),new Ct(t,e)}pt.prototype={defaults:{},set:function(t){return s(this.options,t),this.manager&&this.manager.touchAction.update(),this},recognizeWith:function(t){if(p(t,"recognizeWith",this))return this;var e=this.simultaneous;return e[(t=dt(t,this)).id]||(e[t.id]=t,t.recognizeWith(this)),this},dropRecognizeWith:function(t){return p(t,"dropRecognizeWith",this)||(t=dt(t,this),delete this.simultaneous[t.id]),this},requireFailure:function(t){if(p(t,"requireFailure",this))return this;var e=this.requireFail;return-1===b(e,t=dt(t,this))&&(e.push(t),t.requireFailure(this)),this},dropRequireFailure:function(t){if(p(t,"dropRequireFailure",this))return this;t=dt(t,this);var e=b(this.requireFail,t);return e>-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,n=this.state;function i(n){e.manager.emit(n,t)}n<8&&i(e.options.event+ft(n)),i(e.options.event),t.additionalEvent&&i(t.additionalEvent),n>=8&&i(e.options.event+ft(n))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=32},canEmit:function(){for(var t=0;t<this.requireFail.length;){if(!(33&this.requireFail[t].state))return!1;t++}return!0},recognize:function(t){var e=s({},t);if(!T(this.options.enable,[this,e]))return this.reset(),void(this.state=32);56&this.state&&(this.state=1),this.state=this.process(e),30&this.state&&this.tryEmit(e)},process:function(t){},getTouchAction:function(){},reset:function(){}},g(mt,pt,{defaults:{pointers:1},attrTest:function(t){var e=this.options.pointers;return 0===e||t.pointers.length===e},process:function(t){var e=this.state,n=t.eventType,i=6&e,r=this.attrTest(t);return i&&(8&n||!r)?16|e:i||r?4&n?8|e:2&e?4|e:2:32}}),g(gt,mt,{defaults:{event:"pan",threshold:10,pointers:1,direction:30},getTouchAction:function(){var t=this.options.direction,e=[];return 6&t&&e.push("pan-y"),24&t&&e.push("pan-x"),e},directionTest:function(t){var e=this.options,n=!0,i=t.distance,r=t.direction,s=t.deltaX,o=t.deltaY;return r&e.direction||(6&e.direction?(r=0===s?1:s<0?2:4,n=s!=this.pX,i=Math.abs(t.deltaX)):(r=0===o?1:o<0?8:16,n=o!=this.pY,i=Math.abs(t.deltaY))),t.direction=r,n&&i>e.threshold&&r&e.direction},attrTest:function(t){return mt.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=vt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(yt,mt,{defaults:{event:"pinch",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?"in":"out";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(Tt,pt,{defaults:{event:"press",pointers:1,time:251,threshold:9},getTouchAction:function(){return["auto"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance<e.threshold,r=t.deltaTime>e.time;if(this._input=t,!i||!n||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return 32},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+"up",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Et,mt,{defaults:{event:"rotate",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(It,mt,{defaults:{event:"swipe",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return gt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,n=this.options.direction;return 30&n?e=t.overallVelocity:6&n?e=t.overallVelocityX:24&n&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&n&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=vt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(At,pt,{defaults:{event:"tap",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return["manipulation"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance<e.threshold,r=t.deltaTime<e.time;if(this.reset(),1&t.eventType&&0===this.count)return this.failTimeout();if(i&&r&&n){if(4!=t.eventType)return this.failTimeout();var s=!this.pTime||t.timeStamp-this.pTime<e.interval,o=!this.pCenter||L(this.pCenter,t.center)<e.posThreshold;if(this.pTime=t.timeStamp,this.pCenter=t.center,o&&s?this.count+=1:this.count=1,this._input=t,0===this.count%e.taps)return this.hasRequireFailures()?(this._timer=l((function(){this.state=8,this.tryEmit()}),e.interval,this),2):8}return 32},failTimeout:function(){return this._timer=l((function(){this.state=32}),this.options.interval,this),32},reset:function(){clearTimeout(this._timer)},emit:function(){8==this.state&&(this._input.tapCount=this.count,this.manager.emit(this.options.event,this._input))}}),_t.VERSION="2.0.7",_t.defaults={domEvents:!1,touchAction:"compute",enable:!0,inputTarget:null,inputClass:null,preset:[[Et,{enable:!1}],[yt,{enable:!1},["rotate"]],[It,{direction:6}],[gt,{direction:6},["swipe"]],[At],[At,{event:"doubletap",taps:2},["tap"]],[Tt]],cssProps:{userSelect:"none",touchSelect:"none",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}};function Ct(t,e){var n;this.options=s({},_t.defaults,e||{}),this.options.inputTarget=this.options.inputTarget||t,this.handlers={},this.session={},this.recognizers=[],this.oldCssProps={},this.element=t,this.input=new((n=this).options.inputClass||(M?J:z?nt:R?rt:j))(n,F),this.touchAction=new lt(this,this.options.touchAction),St(this,!0),f(this.options.recognizers,(function(t){var e=this.add(new t[0](t[1]));t[2]&&e.recognizeWith(t[2]),t[3]&&e.requireFailure(t[3])}),this)}function St(t,e){var n,i=t.element;i.style&&(f(t.options.cssProps,(function(r,s){n=D(i.style,s),e?(t.oldCssProps[n]=i.style[n],i.style[n]=r):i.style[n]=t.oldCssProps[n]||""})),e||(t.oldCssProps={}))}Ct.prototype={set:function(t){return s(this.options,t),t.touchAction&&this.touchAction.update(),t.inputTarget&&(this.input.destroy(),this.input.target=t.inputTarget,this.input.init()),this},stop:function(t){this.session.stopped=t?2:1},recognize:function(t){var e=this.session;if(!e.stopped){var n;this.touchAction.preventDefaults(t);var i=this.recognizers,r=e.curRecognizer;(!r||r&&8&r.state)&&(r=e.curRecognizer=null);for(var s=0;s<i.length;)n=i[s],2===e.stopped||r&&n!=r&&!n.canRecognizeWith(r)?n.reset():n.recognize(t),!r&&14&n.state&&(r=e.curRecognizer=n),s++}},get:function(t){if(t instanceof pt)return t;for(var e=this.recognizers,n=0;n<e.length;n++)if(e[n].options.event==t)return e[n];return null},add:function(t){if(p(t,"add",this))return this;var e=this.get(t.options.event);return e&&this.remove(e),this.recognizers.push(t),t.manager=this,this.touchAction.update(),t},remove:function(t){if(p(t,"remove",this))return this;if(t=this.get(t)){var e=this.recognizers,n=b(e,t);-1!==n&&(e.splice(n,1),this.touchAction.update())}return this},on:function(t,e){if(void 0!==t&&void 0!==e){var n=this.handlers;return f(S(t),(function(t){n[t]=n[t]||[],n[t].push(e)})),this}},off:function(t,e){if(void 0!==t){var n=this.handlers;return f(S(t),(function(t){e?n[t]&&n[t].splice(b(n[t],e),1):delete n[t]})),this}},emit:function(t,e){this.options.domEvents&&function(t,e){var i=n.createEvent("Event");i.initEvent(t,!0,!0),i.gesture=e,e.target.dispatchEvent(i)}(t,e);var i=this.handlers[t]&&this.handlers[t].slice();if(i&&i.length){e.type=t,e.preventDefault=function(){e.srcEvent.preventDefault()};for(var r=0;r<i.length;)i[r](e),r++}},destroy:function(){this.element&&St(this,!1),this.handlers={},this.session={},this.input.destroy(),this.element=null}},s(_t,{INPUT_START:1,INPUT_MOVE:2,INPUT_END:4,INPUT_CANCEL:8,STATE_POSSIBLE:1,STATE_BEGAN:2,STATE_CHANGED:4,STATE_ENDED:8,STATE_RECOGNIZED:8,STATE_CANCELLED:16,STATE_FAILED:32,DIRECTION_NONE:1,DIRECTION_LEFT:2,DIRECTION_RIGHT:4,DIRECTION_UP:8,DIRECTION_DOWN:16,DIRECTION_HORIZONTAL:6,DIRECTION_VERTICAL:24,DIRECTION_ALL:30,Manager:Ct,Input:Y,TouchAction:lt,TouchInput:nt,MouseInput:j,PointerEventInput:J,TouchMouseInput:rt,SingleTouchInput:Q,Recognizer:pt,AttrRecognizer:mt,Tap:At,Pan:gt,Swipe:It,Pinch:yt,Rotate:Et,Press:Tt,on:I,off:A,each:f,merge:m,extend:d,assign:s,inherit:g,bindFn:y,prefixed:D}),(void 0!==t?t:"undefined"!=typeof self?self:{}).Hammer=_t,"function"==typeof define&&define.amd?define((function(){return _t})):void 0!==e&&e.exports?e.exports=_t:t.Hammer=_t}(window,document)},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1).__importStar(t(18)),o=t(71),s=t(9),a=t(81);class r extends o.View{get plot_view(){return this.parent}get plot_model(){return this.parent.model}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>{this.model.active?this.activate():this.deactivate()})}activate(){}deactivate(){}}i.ToolView=r,r.__name__="ToolView";class _ extends a.Model{constructor(t){super(t)}static init_Tool(){this.prototype._known_aliases=new Map,this.internal({active:[n.Boolean,!1]})}get synthetic_renderers(){return[]}_get_dim_tooltip(t,e){switch(e){case"width":return t+" (x-axis)";case"height":return t+" (y-axis)";case"both":return t}}_get_dim_limits([t,e],[i,n],o,a){const r=o.bbox.h_range;let _;"width"==a||"both"==a?(_=[s.min([t,i]),s.max([t,i])],_=[s.max([_[0],r.start]),s.min([_[1],r.end])]):_=[r.start,r.end];const l=o.bbox.v_range;let c;return"height"==a||"both"==a?(c=[s.min([e,n]),s.max([e,n])],c=[s.max([c[0],l.start]),s.min([c[1],l.end])]):c=[l.start,l.end],[_,c]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[…this.prototype._known_aliases.keys()];throw new Error(unexpected tool name ‘${t}’, possible tools are ${e.join(", ")})}}}i.Tool=_,_.__name__="Tool",_.init_Tool()},n”, ” function _(o,b,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_toolbar="bk-toolbar",t.bk_toolbar_hidden="bk-toolbar-hidden",t.bk_toolbar_button="bk-toolbar-button",t.bk_button_bar="bk-button-bar",t.bk_toolbar_button_custom_action="bk-toolbar-button-custom-action"},n”, ” function _(o,b,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-toolbar-hidden {\n visibility: hidden;\n opacity: 0;\n transition: visibility 0.3s linear, opacity 0.3s linear;\n}\n.bk-root .bk-toolbar,\n.bk-root .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-toolbar .bk-logo {\n flex-shrink: 0;\n -webkit-flex-shrink: 0;\n}\n.bk-root .bk-toolbar.bk-above,\n.bk-root .bk-toolbar.bk-below {\n flex-direction: row;\n -webkit-flex-direction: row;\n justify-content: flex-end;\n -webkit-justify-content: flex-end;\n}\n.bk-root .bk-toolbar.bk-above .bk-button-bar,\n.bk-root .bk-toolbar.bk-below .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-toolbar.bk-above .bk-logo,\n.bk-root .bk-toolbar.bk-below .bk-logo {\n order: 1;\n -webkit-order: 1;\n margin-left: 5px;\n margin-right: 0px;\n}\n.bk-root .bk-toolbar.bk-left,\n.bk-root .bk-toolbar.bk-right {\n flex-direction: column;\n -webkit-flex-direction: column;\n justify-content: flex-start;\n -webkit-justify-content: flex-start;\n}\n.bk-root .bk-toolbar.bk-left .bk-button-bar,\n.bk-root .bk-toolbar.bk-right .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-toolbar.bk-left .bk-logo,\n.bk-root .bk-toolbar.bk-right .bk-logo {\n order: 0;\n -webkit-order: 0;\n margin-bottom: 5px;\n margin-top: 0px;\n}\n.bk-root .bk-toolbar-button {\n width: 30px;\n height: 30px;\n cursor: pointer;\n background-size: 60% 60%;\n background-origin: border-box;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .bk-toolbar-button:hover {\n background-color: rgba(192, 192, 192, 0.15);\n}\n.bk-root .bk-toolbar-button:focus {\n outline: none;\n}\n.bk-root .bk-toolbar-button::-moz-focus-inner {\n border: 0;\n}\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button {\n border-bottom: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button.bk-active {\n border-bottom-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button {\n border-top: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button.bk-active {\n border-top-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button {\n border-left: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button.bk-active {\n border-left-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button {\n border-right: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button.bk-active {\n border-right-color: #26aae1;\n}\n.bk-root .bk-button-bar + .bk-button-bar:before {\n content: " ";\n display: inline-block;\n background-color: lightgray;\n}\n.bk-root .bk-toolbar.bk-above .bk-button-bar + .bk-button-bar:before,\n.bk-root .bk-toolbar.bk-below .bk-button-bar + .bk-button-bar:before {\n height: 10px;\n width: 1px;\n}\n.bk-root .bk-toolbar.bk-left .bk-button-bar + .bk-button-bar:before,\n.bk-root .bk-toolbar.bk-right .bk-button-bar + .bk-button-bar:before {\n height: 1px;\n width: 10px;\n}\n’},n”, ” function _(A,g,C){Object.defineProperty(C,"__esModule",{value:!0});C.default=’\n.bk-root .bk-tool-icon-copy-to-clipboard {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUSDBoBvcHQeQAAAG9JREFUWMNjXLhsJcNAAiaGAQYwB/xHwh/Q+ITEkfHQCwEWND4jmeb8H/JpgBwfI6cNBhLSEkqaGXRpgFRAcZoZsmlg1AGjDhh1wKgDRh0w6gCaVcf/R2wIkNqw+D9s0wADvUNiyIYA47BJAwPuAAAj/Cjd0TCN6wAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-replace-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxokK3gniQAAAHpJREFUWMNjXLhsJcNAAiaGAQajDhhwB7DgEP+PxmeksvjgDwFcLmYkUh2hkBj8IcBIZXsYh1w2/I8v3sgAOM0bLYhGc8GgrwuICgldfQO88pcvXvg/aOuCUQeM5oLRuoCFCJcTbOMh5XOiW0JDNhdQS3y0IBp1ABwAAF8KGrhC1Eg6AAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-append-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkZWD04WwAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAoUlEQVRYw+1WQQ6AIAwrhO8Y/bIXEz9jIMSDr8ETCUEPQzA4pMeFLKNbu4l5WR0CDOMEALBGIzMuQIBEZQjPgP9JLjwTfBjY9sO9lZsFA9IafZng3BlIyVefgd8XQFZBAWe8jfNxwsDhir6rzoCiPiy1K+J8/FRQemv2XfAdFcQ9znU4Viqg9ta1qYJ+D1BnAIBrkgGVOrXNqUA9rbyZm/AEzFh4jEeY/soAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-intersect-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkrkOpp2wAAAPhJREFUWMPtV1EKwjAMTUavI3oawR/vtn5srJdREfzwMvHHQlcT2mpdMzFfWxiP5r2+JMN+mAiCOB72CABgR1cln4oOGocJnuMTSxWk8jMm7OggYkYXA9gPE3uyd8NXHONJ+eYMdE/NqCJmEZ5ZqlJJ4sUksKN7cYSaPoCZFWR1QI+Xm1fBACU63Cw22x0AAJxudwrffVwvZ+JmQdAHZkw0d4EpAMCw8k87pMdbnwtizQumJYv3nwV6XOA1qbUT/oQLUJgFRbsiNwFVucBIlyR3p0tdMp+XmFjfLKi1LatyAXtCRjPWBdL3Ke3VuACJKFfDr/xFN2fgAR/Go0qaLlmEAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-subtract-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxgsF5XNOQAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAABFUlEQVRYw9VWUQqDMAxNpWfxQxD1MoP97G7zQ5mH2RTZYLtM9lWoMbXtxLXNX4OG9r28l4hrd0PQoqxqAACYpxH25C/nkwCHyCBwSPoS09k1T5Fo+4EiExcC4v584xGFmyIXHBLRISAVZyZufUPVa4rcrwmPDgr93ylo+2GliLRUYHK6th/o/6r7nfLpqaCsagEA8Hh9FmcNKeRmgeYDC+SCq0B6FFi8/BcV6BdR9cL3gCv3ijPKOacsn3rBEcjmaVxpfGcg4wHxzgJJnc6241Hn23DERFRAu1bNcWa3Q0uXi62XR6sCaWoSejbtdLYmU3kTEunNgj0bUbQqYG/IcMaqwPS9jftoVCAQ0ZVDJwf0zQdH4AsyW6fpQu4YegAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-clear-selection {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUGEhcuan3d3wAAAoRJREFUWMPtlzFP3EAQhd+b3TNSzg0N5TWXLkJQUUaKhIQ4fgP/g5ArrriE/I3opEgRrZtIVJR0FJQ010SioUmEZHtnUpwN9gWHGA5BJCy58MraffvmfZ41v3z9hqe8BE98vQh4cgG+Ydzmnrng8efvQJNi/uN7dznx/B3ggtfhf4ehNdUttRzBDIm/2VTiiWCG1HK0nc+3UWtq8BQIiEEakEQOADBIA4QCQmBqoHBhFNR27ikQSmGdYCdTqCpEHMDZmEKRWUBEv1gBDg5SzRJnpopILWICgWuRYflLamuzxB2BmtYqSRIka5VWU8QduXO+1hRc5YZu5GAwmP2ZJzND0IBu5HCV2+NQcAhAVRsnC2IbPzPdSjzd6to6VtfWkXi6YLaVWr7xoAwkfpb8MnC3SH7rKSMBe4M0jA/OTicFIbtCGRIyNbURhcf3ErCd6YwA1m0HgAxhw1NGQnlXBHG4kylVlSJuH0RfIP2CkL2I/qS1gIAAQiBl1QwFggIHtyxgrxK5PgyfC0JWKoT0HLh8LwoietB4TYKaIl7yeNURxB05UtMxDOcVQlZIrlRKdK6m47gjR/fuBRQihyLArtNeJD50Izcx2Eczu7iFkIug4VM3cpOr3MKDekFED0fWUHv9Zq0kpLnridjhY3XDg7NTN0jDrhO3X7O9Wg7wwyANu4mnayNg3gmbu0tCNoUyBNGv2l4rB9EXynA7082FOxAQLhU6rQVO9T2AvWowFToNCJcPORGxIRcnpjZSKATSU9NxvOQnAPArDSaQoUKnNI4iufkGtD4P3EHIcWZhz4HLceSOyrR3Izf5memPAL2cX3yhAkonysZVaWLBkd9dw1Ivv2a/AYPkK+ty1U1DAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-box-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg0kduFrowAAAIdJREFUWMPtVtEKwCAI9KL//4e9DPZ3+wP3KgOjNZouFYI4C8q7s7DtB1lGIeMoRMRinCLXg/ML3EcFqpjjloOyZxRntxpwQ8HsgHYARKFAtSFrCg3TCdMFCE1BuuALEXJLjC4qENsFVXCESZw38/kWLOkC/K4PcOc/Hj03WkoDT3EaWW9egQul6CUbq90JTwAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-box-zoom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg82t254aQAAAkBJREFUWMPN11+E1FEUB/DPTFn2qaeIpcSwr5NlUyJiKWVXWUqvlUh/iE3RY9mUekkPPURtLKNRrFJEeuphGfUUaVliiX1aVjGs6aG7+XX9ZnZ+d2fTl2vmnHvPPfeee/79Sk+may2/UQq/q7Qu+bAJoxjHIKqB/wlfUMcMVqI9bLZ+DGIKwzlzQ2GcxCx2xwvKOUKlaHTiX8bHNspjDONHkOmJBW5jIof/FvPh/06MZOb6cRc7cGn1AKUE5cdzlM/gAr5F/O24H3xkFRfxAbVygvK+cIsspjGWo1zgjeFpxL+BvnLw7laBA4xjIFJwrgu52DoVjKdY4HBEX8dSF3JLYe1fe6UcYCii3xWQjdfuSTnAtoheKCC7GNED5Zx4L4qt61jbTLHA94geKSC7P7ZeShQ0Inoi1IJuEOeORooFXkV0FZNdZs5qvFfKAeqYy7nZ6yg//HG0MBfffh71lFrQDCW2EvEP4mt4okZUDftz9rmGZkotmMxJRtlisy+MTniAWrty3AlXw0hFM2TD89l+oNsoOJXjbIs4EpqNtTCLXbiZ0g+M4mFObj8U3vsNjoZCVcmk60ZwthpepLZkB/AsivWfOJZxtpUQHfWib7KWDwzjeegBZJSdKFiE2qJTFFTwElsi/unQ/awXrU4WGMD7nOJxBY/1EO2iYConq93CHT1GOwucjdqnRyFz+VcHmMNefMY9nNkA3SWUOoXhQviSWQ4huLIRFlirFixnQq/XaKXUgg2xQNGv4V7x/RcW+AXPB3h7H1PaiQAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-zoom-in {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsUBmL8iQAAA2JJREFUWMO9l12IlFUYx3//MzPrLpSjkm5oN4FFIWVEl66IQlFYwtLOzozsjHdGRSCRF0sfBEXRVV0FQuQiLm5CZNBFgRRaRLVFhbJ2EdiN5gbK7toObTPn6eYdPTvNzPvOBz5Xh/ec5/n/n89zXtEHmZqeSXSuXBz/3zfdKvBWJHQrwZuRcP0El+QkbQXeBX6WZEgm6TtJk5lM5o4Lc+cV6qpf4Ga20Tm338zeATItVK9Ker6yvPzp4NDQ3+XieGsCU9MzTYumGbhz7m4ze9/MHgvBgItACrgfGAj2jgAvAYs3wlEujjc13kii8YyZrXXOfWhmo9GnFUlvOOemarVapVqtkslksmb2KjARqL62ecuWN9NxbRInzrldAXhV0uFSIfdew7G/gNLU9MwS8CwSmE3Oz88fcXG5blfpqVRq0Ix8VIAAX0XgrVL7HDCHGcCaWrV60LUBN8Dae58aQIxEqcA592I9M610JL0cpG/U9TIHJNKY3RV5z0R+7Nd4HZ0P1g/2RMBuegLAsRMnb4vT8d5vqKfMzOgtAlADrkmqGywmiMBTwfr3dC9j1Xv/r6Tvg/5/5ejxE6cO7M9faVbQZrYNOFSPmqQvVo9FKexvi5uWX58943aM7DwAfBDY+FbSCxP5sdkGx55GeguzrUEXPaSo2pFkAbiSZQCAzZJOmdkjwd6SpB/M7KykQTPbA2wDhoIzRzcNDx9MJwGNIXdJ0mEzmwbujL7dbma7gd03A7lKfnTOvf74nl0r6bonTUbujRSUCrm2d4L3/kvn3JPe+8+BDW2i9o+kT7z3kxP5sYsA6W47oE64TsR7P9tQL4vA2mh9WdIscKxUyJ0M7aR7acOGzikD65EQLEjaa2ZXzMwDFeB6qZBbbLTRE4EGeSaozNOZgYFf8qP7lmIvs354n0qlHpB0T7B9Ogl4IgJJrmjv/SiQjbrkD+BMUkfSbYATPdckrTOzkciWAXOlQu5cYgLdPEIapud9wMOR9zVJH3ViKx333mtHMJvNuoWFhZ3A+ojMcja77njXBEKwJJfTcqUyCIQ34Mf7nnh0paMnXacFuGoC1mr3AtuDfLzd8Zuyl+rfuGn4HLAD+Az4qZQf+61TAj0Noj8vX6oC35SL43u7teG6rf5+iXppwW7/JUL5D03qaFRvvUe+AAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-zoom-out {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsHgty9VwAAA0FJREFUWMO9l09oXFUUxn/fmXlpItppi22k7UJBRSlVkCytSAuKUloIdjKT0El3FXVXdVFKRVAQV7qQohsNwdA0UFvBhYtqUVyIVlRaogtFQVq7qSTVjA3z3nHzBq/jvPmTN/Ss7rv3nvN99/y794kByMzcfE/7picn/jenmwWeRUI3E7wdCRskuCSTdDfwBvCtJEdySV9KOhpF0e0/LF5SqKtBgbv7ZjObcvfXgShD9Zqk5+orKx8Oj4z8NT05kU1gZm6+bdK0Azezu9z9hLs/HoIBvwAF4H5gKFh7B3gBWFY3460kWve4+3oze9fdx9OpVUmvmNlMHMf1RqNBFEUldz8OHAxUX9q6bduryut+Sfvc/Wz62ZD0fK1afjND9y3gGSRwv1GMojstTxUUCoVhdyopEYDzKXjWwZ4FFnEHWBc3Goet00m7lZlZYQixKw0FZnakGZksHUnHgvCN5/KARBH37enpOVg58H13HV0Kxg/kIuD/ngSA2ZMLt3bTSZJkUzNk7k4+D0AM/CGpaXCyBw/sC8Y/qZd2GpZiuL9YLN4Sx/HpoP5/c/exQ1OVq+1yyt13SLoArEsJnMjlgfOffvK3u58Kprab2QezJxfG2iTzUzI70wRPG9jbmpmb95SNB9mpzp7/j2yVdNbdx4K565K+cvfPJQ27+x5gBzAS7Hlvy+jo4WIvoC3kWpcvS3rR3eeAO9K529x9N7C7zX6AC2b28hN7Hl1Vt44niVq13LUjmtlYkiQfA5s6eO+GpDNJkhw9NFX5ueNt2ARodyF1IHIN2JiOl4H16fiKpK+B2Vq1vBAqFAf4IJkGNiIhWJK0192vunsC1IE/a9XycquNXARa5OnApeeioaHvKuP7r3dTGsiLqFAo7JR0T7B8rhfwXARa2us4UEqr5Ffgs151i/08oTNKdIO770ptObBYq5Yv5ibQq/sl3Qc8lJ4+lnSqH1vFfp9koZRKJVtaWnqkWXqSVkqlDe+vmUDWpZMlK/X6MBDegKf3P/nYaj8ErN9fqZBYEsf3Ag8G8Xit33BaniTcvGX0IvAw8BHwTa1y4Md+CeRqRL9fudwAvpienNi7Vhu21uwflOT+L+i1X2TJP57iUvUFtHWsAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-help {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABltpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPHRpZmY6Q29tcHJlc3Npb24+NTwvdGlmZjpDb21wcmVzc2lvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzI8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMzIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDNDIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMTIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDMjIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPGRjOnN1YmplY3Q+CiAgICAgICAgICAgIDxyZGY6U2VxLz4KICAgICAgICAgPC9kYzpzdWJqZWN0PgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxNjoxMToyOCAxMToxMTo4MjwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+UGl4ZWxtYXRvciAzLjY8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cphjt2AAAAT7SURBVFgJxRdbaFxFdGb2bhui227BWrsVKYgf2kJUbP9EUPuzEB803WTXJjH61Q/7Ya1+CMYKEVTsh4J/EpvY7BoabUiNiA8s1p+4KIhpoUUEselHqyS76TbZ3HuP58ydc3d2u4+IkQxczpz3mZkzZ86VYpXjvenpjZsLhUcliE4AuUuASAgptmt1EFdwPiclzIIUUwubNn17OJlcXo1p2UpodHRiux9xB1Eug1+slbzhFxGOKc851tu7/0oznYYBDA8Pt0U2tL8KQryIq2tvZqQhD0QJHRz3yqWhgYGBpXpydQMwqz6NCnurleCSADkJEfgKfOePqL80R/wV1ZaQyr1LenKfkPCkEPKeaj0xg7vxVL3duCmA0Vyuw/fl52hgBxsBED+h4Cv9z3R/zbRm8MTJTx7HQN7GQB6w5C4L4SX7M5lfLBpurjXMyvNIShiyi0l1pL8n9b7EDGPR8fHxzSsQ6XDB3618/xqo6Pk25V5MpVJllgHM1BO58RdQ612kOYZ+GXdij70TYQB05mpj+1kU5G2fB+l3PZtOf8NGx6ambnMXb3yAxg8wjSEG6OKKR9oicBQD+ZvpH2Wzj0lQpxCPG9qMv1x6hHNCsSAlHM7ZOa682vlI9tRDbvHGbD3nZAPpDoD/3JIrLpAs26UFkC3EMUA99hpfGtEBfJjNJnS2Gwnadnvl+Xw+iuc3DAJuNyIaSCHpilVldyDjjUxj3WDZIAhxhHHyRcdNuA7AAfUaXzVKODpzFiZ4/uLvh5G+m2no+C/pyIf7MqlEJB7bpqR6nXkEUfbeawuLaZsW2ISfNQ2vtaktQlGFQyIVGT0o2+2EC4iQNGwjBIN9qdQ5Qg4mk4X4rW3vCClLtowE2FOFUxKDfNmiZci3ovKKRFPh4FK9q4Zbdr+lKKJiA13TcHR2dmLBgdmQ0GAS2MZaEowY+XbAk09IvgtYZGp16SyvFhaHcIUh645t8T9DBCcnz5zZ4hZLu3DzK2QlL1QQa0Y+pHiJKPSuOGj3PmZTheM5w2TwqBxnvBZOTk7G5gvXJ5Aelms8wnJURL+olSWcfEhf6gDoUXPMq6ZlqbzWU2pE+3hi4s6F68tfIj9cBMlikr7Z0/P0b/X0yIcUXsDCF1WhtL4OROHaXk+xlkbV0Cu732Nmhc4peaWSg73pA8dq5RkvO37ldUTfXCKZv2q45MkhvG87WQEzpCCUSvV1d9GONBy3lMvgKSwrZig8gjAietWY0QriylO2jIo4yVbOSb7KB/qmI9BPKjHpSSXYauRyn92Nq9/Kcrj13x3s3v8D481glQ/0raiNYgX9njPSBOImbrHZePl+tfFmc9sH+Xaoh8NjOKSVdDMhjjYzQLy+dFceH5+IJQf9VYXX4tROg4ZFU8m31M3mfPEqUoJqCGJfvWpo2xnNfdrhC28n06SCeSzNZxlvBINGRXCtKS7EY1uV6V7HWAm38y1cXaXsMcOCvr9ySPj+af7A1U2HJXHzVNvUXVLIGyPf+jV0pf8GHoN+TLAyPkidTCi2RpPApmnR0Bd1zGRaB/B8Oj2HSw7LLbVR1MmskW8RdEWVXSJf3JbpAMgRtc4IZoxTh9qotQjCasm46M0YX9pV1VmbpvRH5OwwgdRtSg2vKaAz/1dNKVtb17Y8DCL4HVufHxMOYl1/zTgIgiYvBnFKfaNp3YjTdPz3n9Na8//X7/k/O1tdwopcZlcAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-hover {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4oVHp0SwAAAQJJREFUWMPtlsENgzAMRb8RQ5VJItFDOgaZAMaAA0iZpN3KPZSoEEHSQBCViI/G8pfNt/KAFFcPshPdoAGgZkYVVYjQAFCyFLN8tlAbXRwAxp61nc9XCkGERpZCxRDvBl0zoxp7K98GAACxxH29srNNmPsK2l7zHoHHXZDr+/9vwDfB3kgeSB5IHkgeOH0DmesJjSXi6pUvkYt5u9teVy6aWREDM0D0BRvmGRV5N6DsQkMzI64FidtI5t3AOKWaFhuioY8dlYf9TO1PREUh/9HVeAqzIThHgWZ6MuNmC1jiL1mK4pAzlKUojEmNsxcmL0J60tazWjLZFpClPbd9BMJfL95145YajN5RHQAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-crosshair {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADEUlEQVRYR81XXVIaQRCeHqug8CXmBNETaE4gniDwIgpVspxAbxC9ATkBkCpQ8gKeQDiB5AQxNyAvUlrldr7eHxyGXZi1rMJ5opbp7m++7un+htSGF204vsoMoNXrlzSpfWa1oxQfhAegCZGaEtPorHo8znIoJwCt6+td8uk7ApUQCIHTF4BNAWzImq8ap6cP68CsBdDp9i9ZqXM7ML79g/EnCWD+jgMKENKqWT+tXK0CkQqgNRjs0OxpQIqKhoMxaG6/6JeRnK7T6yO2UvVqhYSlLX+ryORfgKn9ORDFIy7ky41yGcwsr0QAQfDH5zucOswx819fs4egI9OFCcD8DjBF7VNbEX0JzdWEt3NHSSASAcCxBDqMgt/623kvyTgNgNjJIfTjk4D4FqaJR1715MjmYAmA5Bx3AwUXQL+t105KaTlcBSC26XRvhjEIoLiq1yqXpr8FAGG16/ug4IT27fxBWu7EiQuAiImJpEMKE6nYM30uAIDDttSUOPfJP7JzbjPhAiBIh9QE67vIvoOi9WJfCwDavf40ulpjbCqmUf+W753ezURuh7Dg1SqflwAEHU6pgfyBq9Y4qx0LG++2fnZ/eUzcstmdM2AWH+jfc+liWdBJfSENf8Lifi3GVwC9mybOfi5dzatWVrbbLIHNva8p5h/16gkaFiLGGxbufkoE6XguwePiXLF3XmMfCUCUAqtKXU7sumd1CowOuJEi3Pg1FBpjitIGhyvVSfvmjci6ZR+rFQfDiPVE2jFYeICQ+PoewwjC5h7CZld6DBdyu6nDSKgzOyIMhmhK5TTqXYbRorZYM46TmpKAAOrGWwSJJekSB1yqJNOzp1Gs7YJ0EDeySDIMtJbQHh6Kf/uFfNFZkolJICRmz0P8DKWZuIG2g1hpok+Mk0Qphs0h9lzMtWRoNvYLuVImUWrmPJDlBKeRBDfATGOpHkhw670QSHWGLLckmF1PTsMlYqMJpyUbiO0weiMMceqLVTcotnMCYAYJJbcuQrVgZFP0NOOJYpr62pf3AmrHfWUG4O7abefGAfwH7EXSMJafOlYAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-lasso-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgwlGP1qdAAABMBJREFUWMO9V1uIVVUY/r61z57ZMx4DnbzgkbQXL5iCJphlWdpIGY4jpFBkEiU9ZNaDRRcITcIwMwgxoQtU2IMXdAZfMjFvpERXYiSbysyBEXFmyuHMnLP32uvrwT2xnY5nxvHQ93Jg7fWv71/r//7L4a59TRgqJk+Z6v3a+sv0OI5nk5wu6VaSVZImAThHsgjgrKTvM5nMUWvtmf5n8HodCIKgOgzDhc65pSTrJQWDsSNpJX1ljHnDOfdT37oZLLHv+8OMMasKhcIJ59xHAJYMlhwAJGUAzJfUTHLFuFzOG5QDU6dNMyQfs9Yedc5tBpAD4IYYNQGoBrDtQnt7/b0LFrJsCHzfn2itfQfAnZLiazytA3AaQAuAiwDaEgeNpGkkswAWSBqRONB38b88z5uTKePt6iiKXkk8jq+iJC5LOmiMaTLGHLPWhmWeHr7vV0dRtATAapAzIVmSo51zyzIlbm2stesFPA6pKk0r6Ryg93y/ek8YFvPOOTg3cDSiKCoC2OP7/rEoirYm4rUkF12lAWNM1lr7lqQn0+QA8gI2jBg5cj6Aj8OwmB+KAKIoukhyp6SRJAUgl0ndPLDWPi9pJQCbuviXvu+/GIZhW1dnJ24UJFuTjCCA2ADA8sYGWmsXS3qmL94kDYAtkh4Nw7ANlQJ5U6INT1KrAYC9zQdykl7nFSj5fXp5Y8NWVBhy7mUAjqShMYdMXV2dJ2klyRwAJ8lIeuGWCRMP7N7frEqSG2OmAFhKshNAp5wrmO7u7jEAngPQm1S2z2pqapr+OPt7XEly0oxwzq2RdFmSD2AMgKKJouhhAL4kA+Cs53l7e3t7uytJHgRBreTWkXwkKVJnJD0B4GAGwIJE9R6AFufc6UqSZ7PZbD6ff5dkA4CQZEHSqwAOISmXtwGIE+F1SeqqIP8d+Xz+C0mLJYWSAODteXffczjdDQNJ0BWMCoLg5gqIbRTJNwHsljQhUb0luWPM2LE7Thw/9m/5NCT/TByxAOYWi8X6/gdWV1dnfN8fNRBxJpMZTXKdc+6IpFVJWAEgkvSJpA0X2tvtVTaSjgOYBCAEEADYSHK87/sfhmEYA9gShuEDkgzJHyWtB/B1irQ2juP7ADxkrX0wOUOpzmdpzEY590HJ7Ni1r2kSyZOSiv2+hSRjSTXp/QAukzySNJOJkmalyNIl10hqMcasdc61XDNcQRD8BnITgNp+36r6kfcNFMMlLQGwTNLMEuQGQBfJl2bdPru+HDkAZAqFQux53jZHEsC6aw0eg2gylNRBcqcx5v04ji999+03AwsWAOI4Lsy9a94WkisAnE5a5WCJYwCfA1g7LJudI2lTHMeXBm1faiQzxkyRtF3S5CTupeAB+KG2tnZFT0/P30NO2VKLzrmfAbwGMipjG5Oc0dPTc0Md05SZ5U4Q2FxChErtEYD7jTGNQ3UgM8Asv90Yc9I5LSKRlXSI5CxJa0jWSALJjKRnAewfkniT+vwf7N7fXHK9rq7O7+jo+BTA/NRrdBpjnnLOnUrvXd7YMPQXSBunneno6IhIHgYwW1JtkgmBpBkATlVMAwOk3nFJ+VSoqgCMr6gIy2FcLtdKspAedyQN/98caDt/3kpyabUmf8WvG/8A1vODTBVE/0MAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-pan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4lKssI9gAAAOtJREFUWMPVll0KwyAMgNPgoc0JzDX2Mtgp3csKErSamGabIEUo/T6bHz0ezxdsjPJ5kvUDaROem7VJAp3gufkbtwtI+JYEOsHNEugIN0mgM1wtsVoF1MnyKtZHZBW4DVxoMh6jaAW0MTfnBAbALyUwCD6UwEB4VyJN4FXx4aqUAACgFLjzrsRP9AECAP4Cm88QtJeJrGivdeNdPpko+j1H7XzUB+6WYHmo4eDk4wj41XFMEfBZGXpK0F/eB+QhVcXslVo7i6eANjF5NYSojCN7wi05MJNgbfKiMaPZA75TBVKCrWWbnGrb3DPePZ9Bcbe/QecAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-xpan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4X4hxZdgAAAMpJREFUWMPtlsEKwjAMhr/pwOOedINJe/PobWXCfAIvgo/nA4heOiilZQqN2yE5lpD/I38SWt3uD9aMHSuHAiiAAmwaYCqoM/0KMABtQYDW11wEaHyiEei28bWb8LGOkk5C4iEEgE11YBQWDyHGuAMD0CeS30IQPfACbC3o+Vd2bOIOWMCtoO1mC+ap3CfmoCokFs/SZd6E0ILjnzrhvFbyEJ2FIZzXyB6iZ3AkjITn8WOdSbbAoaD4NSW+tIZdQYBOPyQKoAAKkIsPv0se4A/1UC0AAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-ypan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4anK0lywAAAMVJREFUWMPtlzEKwzAMRX/S7rlpIMXeOnaLaME36FLo8XqCdNFghGljyc4kgQi2Q/SUj0F/eL7eMMTKz6j9wNlYPGRrFcSoLH4XxQPvdQeYuPOlcLbw2dRTgqvoXEaolWM0aP4LYm0NkHYWzyFSSwlmzjw2sR6OvAXNwgEcwAEcwAEcwAEcoGYk20SiMCHlmVoCzACoojEqjHBmCeJOCOo1lgPA7Q8E8TvdjMmHuzsV3NFD4w+1t+Ai/gTx3qHuOFqdMQB8ASMwJX0IEHOeAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-range {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABCJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyI+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDx0aWZmOkNvbXByZXNzaW9uPjU8L3RpZmY6Q29tcHJlc3Npb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjMyPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT4xPC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zMjwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgICAgIDxkYzpzdWJqZWN0PgogICAgICAgICAgICA8cmRmOkJhZy8+CiAgICAgICAgIDwvZGM6c3ViamVjdD4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTgtMDQtMjhUMTQ6MDQ6NDk8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPlBpeGVsbWF0b3IgMy43PC94bXA6Q3JlYXRvclRvb2w+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgrsrWBhAAAD60lEQVRYCcVWv2scRxSemZ097SHbSeWkcYwwclDhzr1Q5T6QE1LghP6BGNIYJGRWNlaZItiFK1mr+JAu4HQu0kjpU8sgF3ITAsaFg0hOvt2Zyfvmdsa7a610Unx44Zgf773vvfneezPHNzrbhn3CT3xC3wPXYOC8LDzqdi8YY/gwh4BeknS/2th6dr2kf94AOp3OFyWgMyziOPbMDxV9FTtJnl1ut795Xd0/YQ0/vtYQwMT1KXWCfr2IjOWwtNehwN4xL9ykTrm6Pzl58yLn3J+mKh9mXbT3uRjGEDph+O8/TjfP5dBp7Ha7AX7O3o5nZeD/0E/OGyXntDgzA0X6qmCnrVutVlrUWV9f/3xo+pwhGDhvEPHOjoxnZjJggXmMHzBQ7NGNp9vxk61fr0HR7e/u7pZzCGHlc7qwBYYTT7tJYSx1AQzppyFPft5apta9w7SKcn0b7P7+/jCsDQ5mbc0dCmIJGDN0ehdcjsmkm6A6KUeKFOTE11PLxrC7Ukqh3ylL2fT0NAP9q6ur6rRCJJYsbKB0JsbCKMuy+xREePDyxQPCz+Crlw062QcA5wBOOt1l6vIl2WiI9F1fN6Q+BBqit6hEC4Hk08GQJMn4myjSP7RavVxgdaVUh/3U6HCMsPr9pYnJKRziHtWQ+un58+hGs6nsjQSjpuTyKGN3CX+FBwHXSiEVgjP+O8X6N12kIePES+GzTKAkGbNp8yJsGUMVzz8jPKReiyAQRimy5/cjye5RpF8utFp/+nwmT7d/NMzcFkS7yjJNGDaPURQxIQThEQy0SyF4l5WJYYhBa816vZ6dU7A6CAhbZVow/pDe0O9hVOoCi13r4BgBAvJHqMSQL2vE/iH6IAXEwgrRVUmBoRRwnwJQT98xEeVeSUyB4dJ5nwJBKdCFFGRmUCcu7rwIYypCTblaChuNBhWODrman5ub+4v0rMNBt8z6Ezh7GksJQpCbm79cMQE7QBFm/X6f0rjWnv8WRYg/QdbUpwDAEBy8vPyA8rNGzg3a8MiElwiM7dAtRqNoNptjGPM1laVxP9umWEMGLOKhKUOJDtBwDmzsw9fC/CzHr9SGuCTi2LbbKvVtmqXpCjMihBFa79Wrt5fGx9PDzc3fmu32Lf8qFliwU9emKhBSp+kRKn/hu9k1COEDbFdt/BoKWOAkuEbdVYyoIXv8+I/QK9dMHEb1Knb7MHOv8LFFOsjzCVHWOD7Ltn+MXCRF4729vWMDK+p8rLkvwjLg4N4v741m5YuwCI9CvHp1Ha8gFdBoPnQAkGsYYGxxcfEI7QQlFCTGUXwjAz4tWF+EpymOWu7fglE7qsOvrYE6g4+9/x/vhRbMdLOCFgAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-polygon-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjc1OfiVKAAAAe1JREFUWMPt1r9rU1EUB/DPK0XbqphFHETo4OCiFhwF0V1KHbRSROLqon+AUMVRRFBwEbRFMBiV+mMW/wIxi5OD1kERRVKRJHUwLvfBTZrU5OWBGXLgQu7Jfe98z/ec7z0vKa88b2q1BDtRHdAPBaylm1NzsxsOjPnPNt6WSWprbft+/c3I3zOAjhT1Y4+fvcjEQJIXnVECSa+AhqIHqlHH5lWCZoe+Gk4GRgDG86j9SAUdlDBSQaZhlOkuHyoVdJmsw98D1S5fM4NYM1LCpqM+Lwa240oLgmZzpVZvzKT75VLZcqksSZKWlQeAy/iORVwIvh31xvotvK7VG3Px4aWHj3Jl4C2uYSvq+Bn8v6LLbaVWb9zsBiKLCvbiNG7gLm7jAYqbPHMJMziZ9lsKoh8GtqCEVVzHftwJn+TFHp4/hg8BSCYVfMOZoPEv2NZGdy9WCGUr9toDR3E2/H4V6nwRe/BmgN65H1ZhvMuB3XiKIyFoGefwO6ysVkUlrNUNsyAK/jli533Q+Y8cJFvAeXyMS1CI/jiMr/gUtD2LQwMGr4R3p7bY3oQHQ5b38CT4D2AXXg6YcQXHpyYnlqKsi5iOAVSwL9zd7zJ09r+Cpwq72omFMazjT9Dnibym0dTkRDUKrrgwH7MwXVyYB38BstaGDfLUTsgAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-redo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4itK+dVQAAAaFJREFUWMPt1L1rFFEUBfDfJDaBBSslIFjbaSFp1FJQFMVCHkzhKIqdUYOCoBgErVz8rCwiTDMwBCIKipDWyip/gxAIWAmBgBC0eYFh2Gx2l9lFcA5M8e59782Zc84dWrT435Hs1siLchqn43MS0zgW22vYxjesYjVLw3YjBPKinMUTBOwf8J5fKLGYpWFjJAJ5Uc7gIW6jM6Kim3iNZ1katgYmEL/6I+YasvY7Lg6iRpIX5VF8wuEe/XV8wGf8jN6LWTiAc7iEQ7ucPZ+lYW0vAtfwvlbfwCKW9gpXDOv1mJvZHiSO91MiyYsyiQSuxtpXXM7SsDmM5nlRdrCMMz3sOJWl4Xevc/vwBzdwAl+yNNwZxfRI+GxelK9ikHcwh8d4NNR/YFRES1ZwoTYdR7I0rNf3TzVNIGbmSvR/Bx08mIgCFSVu4l2ltIWD9WxNGR+W8KOynqnZ0rwCeVG+wa0hjrxtWoF5dAfc28V8Mib/n+Nev5dnabg/zgw87aNEN/bHOwVRiRe4Wym9zNKwMKkpgIWKEt24njxiJlq0aPFv4i9ZWXMSPPhE/QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-reset {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4gWqH8eQAABLdJREFUWMPtlktsVGUUx3/nfvfOlLQaY2IiRRMQIRpI0PjamJhoVASDvNpCpYw1vJQYSVwZwIVQF6wwRHmkAUof9ElrI6VqDAXcID4TF0IiYQMkSlTokNCZ+b7jove2t+NMH7rQBWd3v+989/zP+Z8X3Jb/WGQySvUNTQBJESkNguAVYIWqzhaRhwBU9WcR+QXoymazn6jqzUQiMQSQzWZRVdal1vwzAI2tHQBPOuc2AbWTdOyQ53n7nHNfRwee51GzqoIQMCLDpr3x/tLQ0oZzrk5Vj0/BOEBt+KYuOlBVGlrahr0Wob27t3gEjnZ2AyQzmUwHsDgP6J/AYRE553neDwDOuUdU9QngNeCumK4TkRMhZUORcYC1qysLA6iuSQHIwkWLD6lqapQsuSmwTVV3h99I7EcAR462A2xR2Ilq6ehTaejvO1774kuLNALR33eclsaGsQDe3fYegHl43vyNwEeqGl1963mm2jl7YZRTQ82qlWP4HM6ZToC5ztkW4LHQoALru7s6Di5dvlIj/e6ujrEAWoZDn8hmMjXATMACGaAVuBjXTVVXFc/AxhaA+4zvn1DV+eHxVWPMAmvtb5GeMWZyZVhI2rt7qVy2pOh9U1snwIPW2vMi4oWJuBPYHkVAVScPoKmtkzVVK6cEMsyJraHhiCqJqJUwj/JRz7TW1iSSyR2rVyylqa0Ta+24Ic8vXaAEmDFc/l5Z2A/80OibuVyuz/f9ElUdHCmvw82t5HK5h6y1PYhsz2YyGw43t2KtBZHIGwB6+j4rCkBVUdV7gXrggnPuu8h4eP+xMeZS2D0rJYZ6AdAMzAt1b4nI26p6IFZOY8pugijcKSIHVLUK0LyST4vnrVfnWr3mjmP4QTATaERkXkypRFX3isjmuHdRJEK6Ckqquopp06bdKCkp2Sgi7XnGLcg7gzeutwNIiPYc8HixqIrIOlU9ONVIhHPEd851icgSVXUiskVV94gIqoonIt0i8gfQCfwae38e6BWRXuBZz5jZ8VbaOE4EIqlZVUEQBLlkMplS1QER2RwkEnsSyaREDUzyeNsvIhvCMqkH1kdIJ2o+k8iJB1LVVRfjZ6nqqlEAIbdVQGto8Lrv+/dbawcjAL7vc+6bs+zetetfLSHxniIFGofGGsU2oC7eOCbDfZ7nQawBOSAX74SF9oEPImOq+r7nmVmxb5raukZa8UReGmNmhbMkAwwBH467EYVZe49z7kdgenj8k7V2oTHm8kgdWcvrNdVFjR8cHkYzjDH9wLjDaEwEzpwa4MypgWvAjtjxfGNMj4jMiT+M+kFsZI/Q6Pv+HGNMT8w4wI7TAyevxXVPD5z8+zD64tRXAMHVK1eaVLUyVvuDqroV2BOnJF4ZIedviUidqt4Re9s+vbx8zZXLl7PR2+nl5Tz/zNOFp2FzxzGAklw22wUsLLaSKXwf8vhosZUM6PeDYEUum70VHfpBwKsVyyfeikOP6oBNwN1TrLbfgX3A1kKLzKeff8nLLzw38T5wZDgxn1LnNk5lLRfP26/OnR2hwfNYW2Atn9RCsrf+EECyrKysDFimqhXhyjY3VLkAXBKRDqA7nU6nS0tLhyIj6XSaN9bVclv+l/IXAmkwvZc+jNUAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-save {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4UexUIzAAAAIRJREFUWMNjXLhs5X+GAQRMDAMMWJDYjGhyf7CoIQf8x2H+f0KGM9M7BBio5FNcITo408CoA0YdQM1cwEhtB/ylgqMkCJmFLwrOQguj/xTg50hmkeyARAYGhlNUCIXjDAwM0eREwTUGBgbz0Ww46oBRB4w6YNQBow4YdcCIahP+H5EhAAAH2R8hH3Rg0QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-tap-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3NzIwRUFGMDYyMjE2ODExOTdBNUNBNjVEQTY5OTRDRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCOTJBQzE0RDQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCOTJBQzE0QzQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTQ0QzIwMUM1RjIxNjgxMUE3QkFFMzhGRjc2NTI3MjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NzcyMEVBRjA2MjIxNjgxMTk3QTVDQTY1REE2OTk0Q0UiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6eYZ88AAADLklEQVR42rSXf2TUYRzHv7tuGcfE6Vwb5zLSSjEj7Y9KWqfEmFZJP+yPMdKKmUrrn0iUfjhWlLFi6YfNrF+StBoTo39iYkTGco4xxxG59P7k/T2PT8/37nu3bx9ezvPj+zyf5/PreS78bGLS8SmrwE6yje3NHJsDBTALpknBz6JhH3NiYAB0gHqPOVv52wJ6QQ48BzdAttTioRJjdeA8mAHHS2xuk3p+M8M16ipVQE49Ds6CiFO9RLjGONf05QLx6wPQaBlbBlPgJVgkP0ETiIJ2sB/E1XfimjfgBOOlKDUqCGOcqBcQnw6BYW5YTo4wbvQhMmCfGRemC2rBiGXzWUb+kM/NRZ6CHWBM9ce5R61NgX6ayhSJ5EPlItlDRNkz4JbFHf06BkSzHjXxM+gDv1S/mPUo2AXWgt9UUHL/IVhS8yUV1/EbV3o4N+NaoE9Fu/i827K5pNYHnqAVJECShWmAaddpscYFFXwR7vnXBRGlnUN/L6kqKJlxnRUuDbaDBiL+vst5d4gpcpBrqk/2jIgCKVUolhntplzivHmwh4stGOPfwBWwl/2dpp8p7xjQZqFLiQJtauKkivYm+kzccpK57yXfOUe+P23JqAnVbhMFmlXntCWnxbT31am9ZJ4BJifsUmNTqt0cYhA5ypympPg7VkEKunPbVb8cIG+0kyHLJZNR7fUMooUKFHAPkfQo58VLK+RzwRDd4FdWG9mjpaAXzqkJa1R7kQttqEABWXMjOOxxVRfnhRm5URX1prk/0pQHwNcKlchZ+jdpC+hFdVqO0my9Hj5dkYgCn1Rfh/KdlNDHrJhPqlDih+IfBd6qwpOgEqYMsorJ2HtWxtagLJDn/W3KRfPOZhoeBJfZPgVeGKeKrkQBh5dLXl25Ny3pc4/1fkTdbvFqFQgbxWeYD0hXulhQ0pYiM1jG547fcbMQpVnHTZEn9W3ljsCzwHxCdVteNHIZvQa7/7cC7nV6zHIfyFP9EXjFa7YxKAVqPP4bxhhoLWW+z9JyCb6M/MREg59/RlmmXbmneIybB+YC/ay+yrffqEddDzwGvKxxDmzhc0tc80XVgblqFfgjwAAPubcGjAOl1wAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-undo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4em8Dh0gAAAatJREFUWMPt1rFrFFEQBvDfGhACASshkL/ALpWVrSAKEQV5sIULWlgZNSgIFkGIVQ412gkBt1lYLERREFJqJRaW1oHAoZUQsDqwecWy7N3tbe6C4H2wxc682Zn3zTfvLXPM8b8j6RqYF+UCzsfnHBawGt3fMcAX7GEvS8NgKgXkRbmMxwg41TLsN0psZmnodyogL8pFPMIdLHUk7hA7eJKl4U/rAuKu3+HslFr/FZezNPSTFslX8QErDe4DvMVH/Iq9F7VwGpdwZUjsPtaSFjv/1vCBPjaxO0xcNbHejLpZrrlvJCMCT+JzA+2fcC1Lw+GE4l3CG1yIptfjCtiKoqtiJ0vD3aM0Py/K57iIMxgkQxat4EdN7e9xdRzlk+LEEPvDWvIDXJ928sYxjL36icWK+VaWhlezOIqbGFirJd/H7szugrwoX+D2BDEvszSsT5OBdfRaru/F9dPXQF6U27g/KnmWhgctxqyzBrZGMNGL/rHI0nDkKXiKexXTsywNGx0OnFbFNk3BRoWJXnw//j+ivCi32/S8CxPVNiWOAdUiJtXITIqYY45/Cn8B2D97FYW2H+IAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-wheel-pan {\n background-image: url("data:image/png;base64,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");\n}\n.bk-root .bk-tool-icon-wheel-zoom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgskILvMJQAABTtJREFUWMPdl1+MXVUVxn/fPvf2zrSFmUKnoBCUdjRoVaIxEpO2JhilMYBCtBQS2hejpg1Uo2NUrIFAoyGmtiE+GHwQGtvQJhqDmKYRBv+URFsFDNCSptH60DJTO3dKnX/33rM/H7rvsDu9M20fDMaVnGTvtb69z7fWXmvtc/TEzqd4OyXwNsv/FwFJQVI/sA14SZKRLOlPkr5TrVYXHz70quYkEEK4TtI2YAgYkrQthHDdhV5uuw+43/ZrwCbgRttgY/tjtrc0m83X3/f+D6ydnJhYcB4BSZcBA7aP2d4ELAGW2N5k+xgwkDB0IH19CGGH7R8B1aQeAf4KvAw0ku4K2zu7uru3ApdPEyiKohd4TNKjtjt5h6RHgccSNrddbvuHtm9Jqoak7xVF8WFgdavV+pSk5cCObNmXgK++85prCj3z28HKqZMnH7D9YAY4BvwujT8BvCuL1INX9vVt+dfwcCvNb7f9q2RuSfrGvWu/sL2Nf3LX7pzvj4ENSGBPVarVd4fRkZFltjdmoMGiKO4IIWwIIWwoiuIOYDDzeOPoyMiyFLkum7WJCMDztrcrTTrIRuAQZ6NcK1utL4dWq/VZoC8BhqvV6l1lWb4YYxyLMY6VZflitVq9CxhOmL60hhCKeYiV7WMKIXw9jT1HpXw3c+bOAKzOjJubzebJrKQCQLPZPClpc7bP6rMYKtjXth2OMf7tIkr11Wz8oQDc1Fb09vY+kQw1YAuwJY2nbUluAnCWpKkaFl6IQIzxivaR2SYA89sJVK/Xp2x32R6w/a30DNjuqtfrU0ArYecDCEqgLqm94T0dEm9mBG7PxkdDlkBnkhebgIezNQ8nHcCZPL9ijE1Jf/bZZoPtzbavmqNZLbf9tSxq+yoduuJ+SZ+zXSZyBXCqU+d8fvC5yRUrV+0G2j3g2hDCLyXd/+Su3QdnvP/zCuH72LWsgf2k0oHlH2c2odlkxcpVEdgr6aDtjyb8x20/J+mA7T9I6rL9SWA5dne2/GdXLl58qNJh398An85yTMA+4DOz8Dgu6Zu2dwJXJ91ltm8Gbp7Fgb+EEB4aHhpq5CEtACqVyr3AC0AlPS8k3TSmQ2YPhhBuS/1/LpmS9JTtNTHGfwBU2uUALARotVqniqJYH2Pck85pfavVaufAwnQvnHc0McaDKVptebN94QAnJB0EdtjekydyZXqjs/0ZgLIs/w6sy8bnYGYJ63pgERKC05JutT1kOwITwL9tvzlzUQUYB+Zjs2DBgu6xsbGJZHstByZbezregcBXeCsEz1bnzXt5anLyzLq71zDLxTRdVgemdx0fv2e2w5thO5DbiqL4oKT3ZKpnpyYnz+SY2ZpTAPZmJfdIrVZbNBNUq9UW2X4kU+2dcf53Aj1pj2PA7y/6m1DS00A9za9uNBq7iqJYBuoGdRdFsazRaOzKSqye1rTbaa/tlbYrqXQP2X4FIA9/J1l39xrC0v7+w5IeB8XkwS1lWe6TGJAYKMty31tfO4qSHl/a3384I3CDpI+kzC4lnRfrue6GytEjR8oQwlY73gC0L4qlth/q0M1/LYWtR48cKQF6enrC6dOnVwGLEpnxnp7en4+O1i/tszzGOCTpPmB7ahb57QUwBWyXdF+McWg6MScmuoA8OX8xOlpvXGz422XYTsB/SnpA0h7bX5R0WzI9HUL4qe2XbI+dk3xl+V7gxoztD5jRI+YK/zkEEokx2/uB/RdzIfUtueqVN04cXwF8G3iHY3z9Urw/j8ClyhsnjrcS2Vv/J/8NLxT+/zqBTkcxU/cfEkyEAu3kmjAAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-box-edit {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4QfHjM1QAAAGRJREFUWMNjXLhsJcNAAiaGAQYsDAwM/+lsJ+OgCwGsLqMB+D8o08CoA0YdMOqAUQewDFQdMBoFIyoN/B/U7YFRB7DQIc7xyo9GwbBMA4xDqhxgISH1klXbDYk0QOseEeOgDgEAIS0JQleje6IAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-freehand-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADTElEQVRYCeWWTWwMYRjH/88721X1lZJIGxJxcEE4OOiBgzjXWh8TJKR76kWacOBGxdEJIdk4VChZI/phidRBHMRRIr7DSUiaSCRFRM3u88gz+o7Z6bBTdjmYZPf9eJ55fv/5zzvvDPC/H9QsA66Olo9Ga+/MdR+Ljm2/KQIULsz9FqItGdOfJKLhApLgVkiSCGODjWit7QpKWy+TNrFeXvzKVUT8NiTVaIgDcbiCFJ7GiT8WkARXAdYBK0Lbhi/CenArRNskuM7/tgNp4ArQ42dwjf3WY5gWTqC7O/NbNn2Xkfw/YwdSw/We14HP2IEZwX+y9cZ9SH0LmgFP7UCz4KkENBNeV0Cz4b8U8DfgKiDxMWwUXETqLvJpCQpXZfawbzS7t9v5pL19cHBwfja7YA0y/lyCM0+E5hv5+piZXwKYcF23as+37bTXsQVqgkL0p/34fHR7DcBtbetFsBmGDwMOJCggYG55yw7dMlk6DuC1Bdu2RsCU9TYWQq2IoGbsreZ5NzvEqfSBsIsIy8OTbcdgiRHeh4o8AFAEwDakbY2AaCCpH7V9aGhoUUUy3UyVbkPYFuYLDlUZH8XBpwxkK0Dbgxg5HcVi0ent7a0RULMIozaHBSMfF9b2SzdutFcFB2FkwMIJOG6qfteXOa1nHZ48tyefuwyfT9s6wtzZ3t7eZse2DR2I228TtHXzuWCx9g8MtK5cuHCZTH4tiHEOa4xFngvTyS8f35d6enomiCi4/foEXBkZaQuukChL4FYA2Whd7YcC4gEdW3CpdL3LtGAVCVYJywEyTpAuJKeMOKXZs/Bw947C50KhUFOG4cwz35cjWNBlHGeD53n3xsfHP/T19U1qciggar8Fa4I3PHobIotBWBtc2hSiChyZxVzM53Pv7FVH6Tp3uVy+g0r1ImD2GjIrQGYIxjnfuXTZGICS5k/bBwJoubwEFX4TLah9EXomJGMA3za+f9913Yl4TnzsDQ+vE6YTZOjHh4ngibstt1pzQwd04F0bPStEBpXqRoBeQ/AKghfBnOEKgS+Q7z91Xfdz/HGKg8Ox7z8iYD9z6wqTkZFgnvhMGP9VZ2or1XVkPM9z0mytSfVsHa1RLBZbLoyNzUnK+ydz3wC6I9x+lwbngwAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-poly-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjglo9eZgwAAAc5JREFUWMPt1zFrU1EUB/DfS4OmVTGDIChCP4BgnQXRxVHqIJUupp9AB8VBQcRBQUXIB9DWQoMRiXZzcnQSA34A7aAuHSJKkgo2LvfBrU3aJnlYkBy4vHcP557zP/9z3r33JdXa647N0kHSZd5Nn0rSxc8G3cXp85sMcnZZ8vge3osZ+l3vB8CWFA0iL14t79h210swAjACMAIwAjACkB90D/8/GchI9ve4nPwTBh5E9ws7OepzGWb9EddSn51Op9ZstadSg4VK1UKlKkmSDSMLALewiuNh/hVJq71Wxttmqz0dG88vPc+MgWP4grvYG3SLOBrZFFFrttqPe4HIDxh4GSei+98iSlusuYopXEAjBtEPA3tQwUpwluAbDm4TPJUz+BTW9l2Ce6G7L0X/Bw8D3T/7SKKIDzHg7QCcxjvcQAEtXAnrrg/RP0/DKPbqgcN4iVOR7gcO4dcQgRuoh7HSqwlP4n20m63jJu5n8MkWMYfP3UowhzdR8FU8w9iQwevBdyq3/27CMRzAE5yLuvsRLg+ZcR1nJ8YL81HWJUzGAPaFZwe/Q5MdyYDyNHgjzO90YyGHtVDncuiJchaHw8R4oREFV5qdiVmYLM3OgD9k5209/atmIAAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-point-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEiERGWPELgAAA4RJREFUWMO1lr1uG1cQhb9ztdRSP7AF1QxgwKlcuZSqRC9gWUUUINWqTh5AnaFOnVPEteQmRuhCURqWsSqqc9IolREXdEvQBElxtdw7KURSFEVKu4w8wAKLxdw9Z+bMnRmZGXfZ29//II8th4WwGVNyIoQLYB5vxA9Caq04iUd9A+7ZlsNC2I7TdSd2hZXMJKlnTqp9jtl/GBaqoyQ0noFKpUIzBicYYc+DEFpxkglc4oVJa5gvDn8v1xV2irG3FM4NSVwjUKlUaMcpJhCGmSEJQ6QGD8M5WnHCd8+f3QCXpPLx8WNwv0j6Bm9FMK7FJ3WBE+R/2t7c/GBmFvSBrzRTCsyTDjXrxUgEMtpxynJYmJoBJ4VAybwVARgvL7Oik0okCodnKpVKX7P0leiVMb0VvbJT+upznK4vh0GIeQwwQStJkHQD3MwsCALTJRG7Qrdrj5m/djgYaIa0hlkRdJk26XEgC9txurccBtVW3IudBImmZuACUP+ZlIDBt9FKcubYNTcAH/X0RYM1E7utJPlqe+uZzPxUcEkiSS4sTT95n15Mud0xWC0o2PAWOCdK3KYZlFxfM+tHOcnMzNr1es18ug+cgsVjP4yBU/Ppfrter1m/+l0+zYygML1xRVHU7TSb1cSzBzoBzszsH+AMdJJ49jrNZjWKou6wBnwOzcyndBpNbuueURR1Dw8Pq35p9cc5p/Dy9Dypt7jXrtdGwQECS9NPhr6Gq6txUzNigE6zydLK6lTw12/KT4FGFEUfJX2YJNONq5tVs4ODA7sD/DnwJ/BoADZuE3tHFs12dna6d4C/BI6AlbyzI8ii2TTw12/KK33gb2cdXsNZoAntbZC2SeO4c9592k/5eNQbiwvFd1kJuFGwLJr1wSPg/SwpvyFBHufOeXcFeAlE97U/uCxOY+P3b+Bn4B3Q+L8EdJfD4a+/AbC4UBzPxiPg3wlHZquB28Cn2IuR9x3gr3uV4DbwfvSDOvi4uFA8BDZmIRHkjHpS9Ht9iRqd8+5G3g05mAGcQbsdiX5QJ428G7Kygo8XYdb1/K4NWVmjzkNge2sz84bs+ELmpDDLtqWsNZBXgvmw8CTtpWVMT7x5YWBjLARnwZfKQNYN2U2LPvrh+5nBt7c2M2/It9bArCTKR8eZN+SJ13AScPnoODeRdqNenH+wul5w2gUr2WUjMFAt8bZ/0axX/wNnv4H8vTFb1QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-poly-edit {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gELFi46qJmxxAAABV9JREFUWMOdl19vFFUYxn9n9u9sCyylUIzWUoMQBAWCMdEEIt6xIRQSLIEKtvHe6AcA4yeQb7CAUNJy0daLeomJN8SEULAC2kBBapBKoLvbmdl/c14vdmY7u91tF95kknPOnHmf95znPc97Ro2OTeBbdjFDT3c32ZxVHUOE9kSMB0/m6ExuoJn1H+ur6Y+OTfD50SMN5168OgrAlyf7CfuD+z7+iDs3p8hkLUQ0iFQ/yFl5Nm/qonfHVva+s32Zw9GxCYILsZ08tpNfBhbs+1YN4OH9+7huGdECSBVfqUosbsllfmauBqiR+cCNwOr7AEo8pPHJnymXykhg5fUWjoQpl0vVvhZhbSzGoUOHqgBlt6B6uruj2Zy1E9jo0fhfeyL2x4Mnc8VErK0KUEOB64JSyptfG4RSytsJjUJVxw2lsFy3urL9nx1Qd25ObctkrVMi+jQivd7U2ZyV/3Hzpq7h3h1b/7p9Y0o8v8rwAbTWrGpSocN/FGDlbAI0Rl23PCBan0Ok158H9Ipwzi25A/Mzc9Gl/BYx/E4kYqC1NKRARNAaDCNUM27Z+Zr+ouXs0q4+LSLBHPYCFkTkC6uU39kwCdsS7WRKmaYUiAhdnZ3MPX2K4+QjQI+C94A93rMzm8ltMwyDeDzWjMZeEb2pYQDdW3vITU2jtUZ5QThOPgm8C7wP7J15OPsBsB3oWpGnVWisCeDS1VHj4vBI92+/3tgB7Ab2AruAXiDBK5oIOkhtkEYRNRuJhObrd8Dl9ewf4D5wG7hVLpen29vb5wzD+BrkbBMaL3d1dk5nsrnlFDTTFWAWmAZueWD3gCemGde2k2fw1Al1YXhEvjozoO49eczdqekrWmsc2zlrmvEKOGoW1GUjFLqSk2KpJrCLwyMCPAP+BO54QL8DM6YZX/ClsP9YnwKkXnIBP4jdIpJRpdJTCYdMwwi98KU0Hjc/dDILNyUcwTCWdOSMJ0TRmBktGRhLugu0xyLk7CIqVNm+0bGJptl1YXikD0grpY4Rjc4a8Fbgdab/6OGbAJeCUuyJnnHmZH9pbSyGuBXV8NUwlUpR1EWyixmSyTWEwqGlJ2Swbo2JXbAAfgDGgGQA9I1A9t1tlq0AxrXxn0ilUpw4fhQqYkH/sT41OTnJJwf2s6FjI5mshdYa7bqVR2uezr9MJmJt14FvGrh/O9D+e6UkM/xyCuCqEKCYnJyUTKFQrZDHjxzGshwWLQcRsOz8Hi85P23id0ug/XilAMLBmm4tPGdoaKjSH5+oAGrhwvBI9SjZTn4QSK9yenoD7dlrExPoJlXW8G8ytpNHxRKk02lGxsdRKFwXLNvx5yY94HQLGhGk4LFCYQSqaE0AwWM1eOoEbR0dKBSW7bC4mKuffxs4D/wCLKwQQPAUzIkslfp6cVomROWSolh0GjldAM4nzDi2k9/i5UAzC9aKfwNJ3zgJg9YEvN6+C7SHgKm69+sD7RfNnKTTaZRPQfAut4oFV//IS7gkcB34VlVo8kGzphlfB+DU+TfNGBpZtRastvrvARJmfMF28ge9sc2B9/PNnCilMIDwK6y8/ow/Ai4kvILTljAXvDvEvrqKSUs60KolzPjBxspavQD2tKqCAGF/Ba+xE/Wbilu54wZV8NEKF5fXzQHl/bh4hUsE0WAXSlDMYcQSrQXgCmsTseXHsJkNnjqBFGwKJaHsKlxtUHYVhbLCzr1kaOA4bcn1y1Swmb+iLpJKpVrfgdpfsiVVCYcgluwgnU7jEgJ4s5UkLFtWYyHyEg0/N1q1tmQH+YXnAMFr97Nmv3p+0QsHQRsF8qpBOE5+rb9Nkaj50tVQKjqh4OU3GNL/1/So3vuUgbAAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-line-edit {\n background-image: url("data:image/png;base64,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");\n}\n’},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(72),o=t(303),l=n.__importStar(t(282));class h{constructor(t,e={}){this.items=t,this.options=e,this.el=s.div(),this._open=!1,this._item_click=t=>{var e;null===(e=this.items[t])||void 0===e||e.handler(),this.hide()},this._on_mousedown=t=>{var e,i;const{target:n}=t;n instanceof Node&&this.el.contains(n)||(null===(i=(e=this.options).prevent_hide)||void 0===i?void 0:i.call(e,t))||this.hide()},this._on_keydown=t=>{t.keyCode==s.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},s.undisplay(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){s.remove(this.el),this._unlisten()}_listen(){document.addEventListener("mousedown",this._on_mousedown),document.addEventListener("keydown",this._on_keydown),window.addEventListener("blur",this._on_blur)}_unlisten(){document.removeEventListener("mousedown",this._on_mousedown),document.removeEventListener("keydown",this._on_keydown),window.removeEventListener("blur",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=e.getBoundingClientRect();this.el.style.left=null!=t.left?t.left-i.left+"px":"",this.el.style.top=null!=t.top?t.top-i.top+"px":"",this.el.style.right=null!=t.right?i.right-t.right+"px":"",this.el.style.bottom=null!=t.bottom?i.bottom-t.bottom+"px":""}}render(){var t,e;s.empty(this.el,!0);const i=null!==(t=this.options.orientation)&&void 0!==t?t:"vertical";s.classes(this.el).add("bk-context-menu","bk-"+i);for(const[t,i]of o.enumerate(this.items)){let n;if(null==t)n=s.div({class:l.bk_divider});else{if(null!=t.if&&!t.if())continue;{const i=null!=t.icon?s.div({class:["bk-menu-icon",t.icon]}):null;n=s.div({class:(null===(e=t.active)||void 0===e?void 0:e.call(t))?"bk-active":null,title:t.tooltip},i,t.label)}}n.addEventListener("click",()=>this._item_click(i)),this.el.appendChild(n)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),s.display(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),s.undisplay(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=h,h.__name__="ContextMenu"},n”, ” function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const t=e(9);function*r(e,n){const o=e.length;if(n>o)return;const r=t.range(n);for(yield r.map(n=>e[n]);;){let f;for(const e of t.reversed(t.range(n)))if(r[e]!=e+o-n){f=e;break}if(null==f)return;r[f]+=1;for(const e of t.range(f+1,n))r[e]=r[e-1]+1;yield r.map(n=>e[n])}}o.enumerate=function*(e){let n=0;for(const o of e)yield[o,n++]},o.combinations=r,o.subsets=function*(e){for(const n of t.range(e.length+1))yield*r(e,n)}},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(296),i=e(173),s=e(72);class c extends o.ButtonToolButtonView{render(){super.render(),s.classes(this.el).toggle(i.bk_active,this.model.active)}_clicked(){const{active:e}=this.model;this.model.active=!e}}n.OnOffButtonView=c,c.__name__="OnOffButtonView"},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),s=t(19),l=t(72),n=t(115),a=i.__importStar(t(18)),r=t(78),_=t(9),c=t(13),h=t(8),u=t(81),v=t(306),d=t(307),b=t(308),p=t(295),g=t(299),f=t(310),m=t(173),w=i.__importDefault(t(300)),y=i.__importDefault(t(311));class T extends u.Model{constructor(t){super(t)}static init_ToolbarViewModel(){this.define({_visible:[a.Any,null],autohide:[a.Boolean,!1]})}get visible(){return!this.autohide||null!=this._visible&&this._visible}}e.ToolbarViewModel=T,T.__name__="ToolbarViewModel",T.init_ToolbarViewModel();class k extends r.DOMView{initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new T({autohide:this.model.autohide})}async lazy_initialize(){await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,async()=>{await this._build_tool_button_views(),this.render()}),this.connect(this.model.properties.autohide.change,()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()}),this.connect(this._toolbar_view_model.properties._visible.change,()=>this._on_visible_change())}styles(){return[…super.styles(),w.default,y.default]}remove(){n.remove_views(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await n.build_views(this._tool_button_views,t,{parent:this},t=>t.button_view)}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const t=this._toolbar_view_model.visible,o=g.bk_toolbar_hidden;this.el.classList.contains(o)&&t?this.el.classList.remove(o):t||this.el.classList.add(o)}render(){if(l.empty(this.el),this.el.classList.add(g.bk_toolbar),this.el.classList.add(m.bk_side(this.model.toolbar_location)),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change(),null!=this.model.logo){const t="grey"===this.model.logo?f.bk_grey:null,o=l.a({href:"https://bokeh.org/",target:"_blank",class:[f.bk_logo,f.bk_logo_small,t]});this.el.appendChild(o)}for(const[,t]of this._tool_button_views)t.render();const t=[],o=t=>this._tool_button_views.get(t).el,{gestures:e}=this.model;for(const i of c.values(e))t.push(i.tools.map(o));t.push(this.model.actions.map(o)),t.push(this.model.inspectors.filter(t=>t.toggleable).map(o));for(const o of t)if(0!==o.length){const t=l.div({class:g.bk_button_bar},o);this.el.appendChild(t)}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}}function M(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=k,k.__name__="ToolbarBaseView";class B extends u.Model{constructor(t){super(t)}static init_ToolbarBase(){this.prototype.default_view=k,this.define({tools:[a.Array,[]],logo:[a.Logo,"normal"],autohide:[a.Boolean,!1]}),this.internal({gestures:[a.Any,M],actions:[a.Array,[]],inspectors:[a.Array,[]],help:[a.Array,[]],toolbar_location:[a.Location,"right"]})}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map(t=>t.id));return _.some(t,t=>!e.has(t.id))},o=this.tools.filter(t=>t instanceof p.InspectTool);t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter(t=>t instanceof b.HelpTool);t(this.help,e)&&(this.help=e);const i=this.tools.filter(t=>t instanceof d.ActionTool);t(this.actions,i)&&(this.actions=i);const l=(t,o)=>{t in this.gestures||s.logger.warn(Toolbar: unknown event type ‘${t}’ for tool: ${o})},n={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof v.GestureTool&&t.event_type)if(h.isString(t.event_type))n[t.event_type].tools.push(t),l(t.event_type,t);else{n.multi.tools.push(t);for(const o of t.event_type)l(o,t)}for(const o of Object.keys(n)){const e=this.gestures[o];t(e.tools,n[o].tools)&&(e.tools=n[o].tools),e.active&&_.every(e.tools,t=>t.id!=e.active.id)&&(e.active=null)}}get horizontal(){return"above"===this.toolbar_location||"below"===this.toolbar_location}get vertical(){return"left"===this.toolbar_location||"right"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=h.isString(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(s.logger.debug(Toolbar: deactivating tool: ${e} for event type ‘${o}’),e.active=!1),this.gestures[o].active=t,s.logger.debug(Toolbar: activating tool: ${t} for event type ‘${o}’)}else this.gestures[o].active=null}}e.ToolbarBase=B,B.__name__="ToolbarBase",B.init_ToolbarBase()},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(296),n=e(304);class u extends s.ButtonToolView{}t.GestureToolView=u,u.__name__="GestureToolView";class _ extends s.ButtonTool{constructor(e){super(e),this.button_view=n.OnOffButtonView}}t.GestureTool=_,_.__name__="GestureTool"},n”, ” function _(o,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=o(296),i=o(15);class s extends e.ButtonToolButtonView{_clicked(){this.model.do.emit(void 0)}}n.ActionToolButtonView=s,s.__name__="ActionToolButtonView";class c extends e.ButtonToolView{connect_signals(){super.connect_signals(),this.connect(this.model.do,o=>this.doit(o))}}n.ActionToolView=c,c.__name__="ActionToolView";class l extends e.ButtonTool{constructor(o){super(o),this.button_view=s,this.do=new i.Signal(this,"do")}}n.ActionTool=l,l.__name__="ActionTool"},n”, ” function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o(1),l=o(307),s=i.__importStar(o(18)),n=o(309);class _ extends l.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=_,_.__name__="HelpToolView";class r extends l.ActionTool{constructor(o){super(o),this.tool_name="Help",this.icon=n.bk_tool_icon_help}static init_HelpTool(){this.prototype.default_view=_,this.define({help_tooltip:[s.String,"Click the question mark to learn more about Bokeh plot tools."],redirect:[s.String,"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html"]}),this.register_alias("help",()=>new r)}get tooltip(){return this.help_tooltip}}t.HelpTool=r,r.__name__="HelpTool",r.init_HelpTool()},n”, ” function _(o,_,l){Object.defineProperty(l,"__esModule",{value:!0}),l.bk_tool_icon_box_select="bk-tool-icon-box-select",l.bk_tool_icon_box_zoom="bk-tool-icon-box-zoom",l.bk_tool_icon_zoom_in="bk-tool-icon-zoom-in",l.bk_tool_icon_zoom_out="bk-tool-icon-zoom-out",l.bk_tool_icon_help="bk-tool-icon-help",l.bk_tool_icon_hover="bk-tool-icon-hover",l.bk_tool_icon_crosshair="bk-tool-icon-crosshair",l.bk_tool_icon_lasso_select="bk-tool-icon-lasso-select",l.bk_tool_icon_pan="bk-tool-icon-pan",l.bk_tool_icon_xpan="bk-tool-icon-xpan",l.bk_tool_icon_ypan="bk-tool-icon-ypan",l.bk_tool_icon_range="bk-tool-icon-range",l.bk_tool_icon_polygon_select="bk-tool-icon-polygon-select",l.bk_tool_icon_redo="bk-tool-icon-redo",l.bk_tool_icon_reset="bk-tool-icon-reset",l.bk_tool_icon_save="bk-tool-icon-save",l.bk_tool_icon_tap_select="bk-tool-icon-tap-select",l.bk_tool_icon_undo="bk-tool-icon-undo",l.bk_tool_icon_wheel_pan="bk-tool-icon-wheel-pan",l.bk_tool_icon_wheel_zoom="bk-tool-icon-wheel-zoom",l.bk_tool_icon_box_edit="bk-tool-icon-box-edit",l.bk_tool_icon_freehand_draw="bk-tool-icon-freehand-draw",l.bk_tool_icon_poly_draw="bk-tool-icon-poly-draw",l.bk_tool_icon_point_draw="bk-tool-icon-point-draw",l.bk_tool_icon_poly_edit="bk-tool-icon-poly-edit",l.bk_tool_icon_line_edit="bk-tool-icon-line-edit"},n”, ” function _(o,l,b){Object.defineProperty(b,"__esModule",{value:!0}),b.bk_logo="bk-logo",b.bk_logo_notebook="bk-logo-notebook",b.bk_logo_small="bk-logo-small",b.bk_grey="bk-grey"},n”, ” function _(l,n,o){Object.defineProperty(o,"__esModule",{value:!0});o.default="\n.bk-root .bk-logo {\n margin: 5px;\n position: relative;\n display: block;\n background-repeat: no-repeat;\n}\n.bk-root .bk-logo.bk-grey {\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=’http://www.w3.org/2000/svg’><filter id=’grayscale’><feColorMatrix type=’matrix’ values=’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0’/></filter></svg>#grayscale\");\n /* Firefox 10+, Firefox on Android /\n filter: gray;\n / IE6-9 /\n -webkit-filter: grayscale(100%);\n / Chrome 19+, Safari 6+, Safari 6+ iOS /\n}\n.bk-root .bk-logo-small {\n width: 20px;\n height: 20px;\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);\n}\n.bk-root .bk-logo-notebook {\n display: inline-block;\n vertical-align: middle;\n margin-right: 5px;\n}\n"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});var s=this&&this.__rest||function(t,e){var i={};for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&e.indexOf(s)<0&&(i[s]=t[s]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(s=Object.getOwnPropertySymbols(t);n<s.length;n++)e.indexOf(s[n])<0&&Object.prototype.propertyIsEnumerable.call(t,s[n])&&(i[s[n]]=t[s[n]])}return i};const n=t(208),a=t(77),o=t(210),l=t(90),r=t(272),h=t(169),_=t(177),d=t(170),c=t(313),u=t(15),p=t(115),f=t(314),b=t(74),g=t(19),m=t(316),v=t(8),w=t(9),y=t(215),x=t(317),z=t(318),M=t(216),O=t(79);class k extends r.LayoutDOMView{constructor(){super(…arguments),this._outer_bbox=new O.BBox,this._inner_bbox=new O.BBox,this._needs_paint=!0,this._needs_layout=!1,this._invalidated_painters=new Set,this._invalidate_all=!0}get is_paused(){return null!=this._is_paused&&0!==this._is_paused}get child_models(){return[]}pause(){null==this._is_paused?this._is_paused=1:this._is_paused+=1}unpause(t=!1){if(null==this._is_paused)throw new Error("wasn’t paused");this._is_paused-=1,0!=this._is_paused||t||this.request_paint()}request_render(){this.request_paint()}request_paint(t){if(null!=t?this._invalidated_painters.add(t):this._invalidate_all=!0,!this.is_paused){const t=this.throttled_paint();this._ready=this._ready.then(()=>t)}}request_layout(){this._needs_layout=!0,this.request_paint()}reset(){"standard"==this.model.reset_policy&&(this.clear_state(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){this.ui_event_bus.destroy(),p.remove_views(this.renderer_views),p.remove_views(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.state_changed=new u.Signal0(this,"state_changed"),this.lod_started=!1,this.visuals=new b.Visuals(this.model),this._initial_state_info={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.state={history:[],index:-1};const{hidpi:t,output_backend:e}=this.model;this.canvas=new a.Canvas({hidpi:t,output_backend:e}),this.frame=new n.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges),this.throttled_paint=m.throttle(()=>this.repaint(),1e3/60);const{title_location:i,title:s}=this.model;null!=i&&null!=s&&(this._title=s instanceof h.Title?s:new h.Title({text:s}));const{toolbar_location:o,toolbar:l}=this.model;null!=o&&null!=l&&(this._toolbar=new d.ToolbarPanel({toolbar:l}),l.toolbar_location=o),this.renderer_views=new Map,this.tool_views=new Map}async lazy_initialize(){this.canvas_view=await p.build_view(this.canvas,{parent:this}),this.ui_event_bus=new f.UIEvents(this,this.model.toolbar,this.canvas_view.events_el),await this.build_renderer_views(),await this.build_tool_views(),this.update_dataranges(),this.unpause(!0),g.logger.debug("PlotView initialized")}_width_policy(){return null==this.model.frame_width?super._width_policy():"min"}_height_policy(){return null==this.model.frame_height?super._height_policy():"min"}_update_layout(){this.layout=new x.BorderLayout,this.layout.set_sizing(this.box_sizing());const{frame_width:t,frame_height:e}=this.model;this.layout.center_panel=this.frame,this.layout.center_panel.set_sizing(Object.assign(Object.assign({},null!=t?{width_policy:"fixed",width:t}:{width_policy:"fit"}),null!=e?{height_policy:"fixed",height:e}:{height_policy:"fit"}));const i=w.copy(this.model.above),s=w.copy(this.model.below),n=w.copy(this.model.left),a=w.copy(this.model.right),o=t=>{switch(t){case"above":return i;case"below":return s;case"left":return n;case"right":return a}},{title_location:l,title:r}=this.model;null!=l&&null!=r&&o(l).push(this._title);const{toolbar_location:_,toolbar:c}=this.model;if(null!=_&&null!=c){const t=o(_);let e=!0;if(this.model.toolbar_sticky)for(let i=0;i<t.length;i++){const s=t[i];if(s instanceof h.Title){t[i]="above"==_||"below"==_?[s,this._toolbar]:[this._toolbar,s],e=!1;break}}e&&t.push(this._toolbar)}const u=(t,e)=>{const i=this.renderer_views.get(e);return i.layout=new z.SidePanel(t,i)},p=(t,e)=>{const i="above"==t||"below"==t,s=[];for(const n of e)if(v.isArray(n)){const e=n.map(e=>{const s=u(t,e);if(e instanceof d.ToolbarPanel){const t=i?"width_policy":"height_policy";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[t]:"min"}))}return s});let a;i?(a=new M.Row(e),a.set_sizing({width_policy:"max",height_policy:"min"})):(a=new M.Column(e),a.set_sizing({width_policy:"min",height_policy:"max"})),a.absolute=!0,s.push(a)}else s.push(u(t,n));return s},f=null!=this.model.min_border?this.model.min_border:0;this.layout.min_border={left:null!=this.model.min_border_left?this.model.min_border_left:f,top:null!=this.model.min_border_top?this.model.min_border_top:f,right:null!=this.model.min_border_right?this.model.min_border_right:f,bottom:null!=this.model.min_border_bottom?this.model.min_border_bottom:f};const b=new y.VStack,g=new y.VStack,m=new y.HStack,O=new y.HStack;b.children=w.reversed(p("above",i)),g.children=p("below",s),m.children=w.reversed(p("left",n)),O.children=p("right",a),b.set_sizing({width_policy:"fit",height_policy:"min"}),g.set_sizing({width_policy:"fit",height_policy:"min"}),m.set_sizing({width_policy:"min",height_policy:"fit"}),O.set_sizing({width_policy:"min",height_policy:"fit"}),this.layout.top_panel=b,this.layout.bottom_panel=g,this.layout.left_panel=m,this.layout.right_panel=O}get axis_views(){const t=[];for(const[,e]of this.renderer_views)e instanceof _.AxisView&&t.push(e);return t}set_cursor(t="default"){this.canvas_view.el.style.cursor=t}set_toolbar_visibility(t){for(const e of this.visibility_callbacks)e(t)}update_dataranges(){const t=new Map,e=new Map;let i=!1;for(const[,t]of this.frame.x_ranges)t instanceof o.DataRange1d&&"log"==t.scale_hint&&(i=!0);for(const[,t]of this.frame.y_ranges)t instanceof o.DataRange1d&&"log"==t.scale_hint&&(i=!0);for(const[s,n]of this.renderer_views)if(n instanceof l.GlyphRendererView){const a=n.glyph.bounds();if(null!=a&&t.set(s,a),i){const t=n.glyph.log_bounds();null!=t&&e.set(s,t)}}let s=!1,n=!1;const{width:a,height:r}=this.frame.bbox;let h;!1!==this.model.match_aspect&&0!=a&&0!=r&&(h=1/this.model.aspect_scale*(a/r));for(const[,i]of this.frame.x_ranges){if(i instanceof o.DataRange1d){const n="log"==i.scale_hint?e:t;i.update(n,0,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}for(const[,i]of this.frame.y_ranges){if(i instanceof o.DataRange1d){const n="log"==i.scale_hint?e:t;i.update(n,1,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}if(s&&n){g.logger.warn("Follow enabled so bounds are unset.");for(const[,t]of this.frame.x_ranges)t.bounds=null;for(const[,t]of this.frame.y_ranges)t.bounds=null}this.range_update_timestamp=Date.now()}push_state(t,e){const{history:i,index:s}=this.state,n=null!=i[s]?i[s].info:{},a=Object.assign(Object.assign(Object.assign({},this._initial_state_info),n),e);this.state.history=this.state.history.slice(0,this.state.index+1),this.state.history.push({type:t,info:a}),this.state.index=this.state.history.length-1,this.state_changed.emit()}clear_state(){this.state={history:[],index:-1},this.state_changed.emit()}can_undo(){return this.state.index>=0}can_redo(){return this.state.index<this.state.history.length-1}undo(){this.can_undo()&&(this.state.index-=1,this._do_state_change(this.state.index),this.state_changed.emit())}redo(){this.can_redo()&&(this.state.index+=1,this._do_state_change(this.state.index),this.state_changed.emit())}_do_state_change(t){const e=null!=this.state.history[t]?this.state.history[t].info:this._initial_state_info;null!=e.range&&this.update_range(e.range),null!=e.selection&&this.update_selection(e.selection)}get_selection(){const t=new Map;for(const e of this.model.renderers)if(e instanceof l.GlyphRenderer){const{selected:i}=e.data_source;t.set(e,i)}return t}update_selection(t){for(const e of this.model.renderers){if(!(e instanceof l.GlyphRenderer))continue;const i=e.data_source;if(null!=t){const s=t.get(e);null!=s&&i.selected.update(s,!0)}else i.selection_manager.clear()}}reset_selection(){this.update_selection(null)}_update_ranges_together(t){let e=1;for(const[i,s]of t)e=Math.min(e,this._get_weight_to_constrain_interval(i,s));if(e<1)for(const[i,s]of t)s.start=e*s.start+(1-e)*i.start,s.end=e*s.end+(1-e)*i.end}_update_ranges_individually(t,e,i,s){let n=!1;for(const[s,a]of t){if(!i){const t=this._get_weight_to_constrain_interval(s,a);t<1&&(a.start=t*a.start+(1-t)*s.start,a.end=t*a.end+(1-t)*s.end)}if(null!=s.bounds&&"auto"!=s.bounds){const[t,o]=s.bounds,l=Math.abs(a.end-a.start);s.is_reversed?(null!=t&&t>=a.end&&(n=!0,a.end=t,(e||i)&&(a.start=t+l)),null!=o&&o<=a.start&&(n=!0,a.start=o,(e||i)&&(a.end=o-l))):(null!=t&&t>=a.start&&(n=!0,a.start=t,(e||i)&&(a.end=t+l)),null!=o&&o<=a.end&&(n=!0,a.end=o,(e||i)&&(a.start=o-l)))}}if(!(i&&n&&s))for(const[e,i]of t)e.have_updated_interactively=!0,e.start==i.start&&e.end==i.end||e.setv(i)}_get_weight_to_constrain_interval(t,e){const{min_interval:i}=t;let{max_interval:s}=t;if(null!=t.bounds&&"auto"!=t.bounds){const[e,i]=t.bounds;if(null!=e&&null!=i){const t=Math.abs(i-e);s=null!=s?Math.min(s,t):t}}let n=1;if(null!=i||null!=s){const a=Math.abs(t.end-t.start),o=Math.abs(e.end-e.start);i>0&&o<i&&(n=(a-i)/(a-o)),s>0&&o>s&&(n=(s-a)/(o-a)),n=Math.max(0,Math.min(1,n))}return n}update_range(t,e=!1,i=!1,s=!0){this.pause();const{x_ranges:n,y_ranges:a}=this.frame;if(null==t){for(const[,t]of n)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const o=[];for(const[e,i]of n)o.push([i,t.xrs.get(e)]);for(const[e,i]of a)o.push([i,t.yrs.get(e)]);i&&this._update_ranges_together(o),this._update_ranges_individually(o,e,i,s)}this.unpause()}reset_range(){this.update_range(null)}_invalidate_layout(){(()=>{for(const t of this.model.side_panels){if(this.renderer_views.get(t).layout.has_size_changed())return!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map(t=>this.renderer_views.get(t))}async build_renderer_views(){this.computed_renderers=[];const{above:t,below:e,left:i,right:s,center:n,renderers:a}=this.model;this.computed_renderers.push(…t,…e,…i,…s,…n,…a),null!=this._title&&this.computed_renderers.push(this._title),null!=this._toolbar&&this.computed_renderers.push(this._toolbar);for(const t of this.model.toolbar.tools)null!=t.overlay&&this.computed_renderers.push(t.overlay),this.computed_renderers.push(…t.synthetic_renderers);await p.build_views(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const t=this.model.toolbar.tools;(await p.build_views(this.tool_views,t,{parent:this})).map(t=>this.ui_event_bus.register_tool(t))}connect_signals(){super.connect_signals();const{x_ranges:t,y_ranges:e}=this.frame;for(const[,e]of t)this.connect(e.change,()=>{this._needs_layout=!0,this.request_paint()});for(const[,t]of e)this.connect(t.change,()=>{this._needs_layout=!0,this.request_paint()});const{plot_width:i,plot_height:s}=this.model.properties;this.on_change([i,s],()=>this.invalidate_layout());const{above:n,below:a,left:o,right:l,center:r,renderers:h}=this.model.properties;this.on_change([n,a,o,l,r,h],async()=>await this.build_renderer_views()),this.connect(this.model.toolbar.properties.tools.change,async()=>{await this.build_renderer_views(),await this.build_tool_views()}),this.connect(this.model.change,()=>this.request_paint()),this.connect(this.model.reset,()=>this.reset())}set_initial_range(){let t=!0;const{x_ranges:e,y_ranges:i}=this.frame,s=new Map,n=new Map;for(const[i,n]of e){const{start:e,end:a}=n;if(null==e||null==a||isNaN(e+a)){t=!1;break}s.set(i,{start:e,end:a})}if(t)for(const[e,s]of i){const{start:i,end:a}=s;if(null==i||null==a||isNaN(i+a)){t=!1;break}n.set(e,{start:i,end:a})}t?(this._initial_state_info.range={xrs:s,yrs:n},g.logger.debug("initial ranges set")):g.logger.warn("could not set initial ranges")}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,t]of this.renderer_views)if(!t.has_finished())return!1;return!0}after_layout(){if(super.after_layout(),this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:t,height:e}=this.layout.bbox;this.canvas_view.resize(t,e),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}this._inner_bbox.equals(this.frame.inner_bbox)||(this._inner_bbox=this.layout.inner_bbox,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){if(this.is_paused||!this.model.visible)return;g.logger.trace("PlotView.paint() for "+this.model.id);const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e<this.model.lod_interval?setTimeout(()=>{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint()},this.model.lod_timeout):t.interactive_stop()}for(const[,t]of this.renderer_views)if(null==this.range_update_timestamp||t instanceof l.GlyphRendererView&&t.set_data_timestamp>this.range_update_timestamp){this.update_dataranges();break}let e=!1,i=!1;if(this._invalidate_all)e=!0,i=!0;else for(const t of this._invalidated_painters){const{level:s}=t.model;if("overlay"!=s?e=!0:i=!0,e&&i)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const s=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:a}=this.canvas_view;e&&(n.prepare(),this.canvas_view.prepare_webgl(s),this.canvas_view.clear_webgl(),this._map_hook(n.ctx,s),this._paint_empty(n.ctx,s),this._paint_outline(n.ctx,s),this._paint_levels(n.ctx,"image",s,!0),this._paint_levels(n.ctx,"underlay",s,!0),this._paint_levels(n.ctx,"glyph",s,!0),this._paint_levels(n.ctx,"guide",s,!1),this._paint_levels(n.ctx,"annotation",s,!1),n.finish()),i&&(a.prepare(),this._paint_levels(a.ctx,"overlay",s,!1),a.finish()),null==this._initial_state_info.range&&this.set_initial_range(),this._needs_paint=!1}_paint_levels(t,e,i,s){for(const n of this.computed_renderers){if(n.level!=e)continue;const a=this.renderer_views.get(n);t.save(),(s||a.needs_clip)&&(t.beginPath(),t.rect(…i),t.clip()),a.render(),t.restore(),a.has_webgl&&a.needs_webgl_blit&&(this.canvas_view.blit_webgl(t),this.canvas_view.clear_webgl())}}_map_hook(t,e){}_paint_empty(t,e){const[i,s,n,a]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,h]=e;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(t),t.fillRect(i,s,n,a),t.clearRect(o,l,r,h)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(o,l,r,h))}_paint_outline(t,e){if(this.visuals.outline_line.doit){t.save(),this.visuals.outline_line.set_value(t);let[i,s,n,a]=e;i+n==this.layout.bbox.width&&(n-=1),s+a==this.layout.bbox.height&&(a-=1),t.strokeRect(i,s,n,a),t.restore()}}to_blob(){return this.canvas_view.to_blob()}export(t,e=!0){const i="png"==t?"canvas":"svg",s=new a.CanvasLayer(i,e),{width:n,height:o}=this.layout.bbox;s.resize(n,o);const{canvas:l}=this.canvas_view.compose();return s.ctx.drawImage(l,0,0),s}serializable_state(){const t=super.serializable_state(),{children:e}=t,i=s(t,["children"]),n=this.get_renderer_views().map(t=>t.serializable_state()).filter(t=>"bbox"in t);return Object.assign(Object.assign({},i),{children:[…e,…n]})}}i.PlotView=k,k.__name__="PlotView"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});var n=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r–)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function _(e){return function(t){t.prototype.event_name=e}}class a{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=a,a.__name__="BokehEvent";class o extends a{constructor(){super(…arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=o,o.__name__="ModelEvent";let r=class extends a{_to_json(){return{}}};s.DocumentReady=r,r.__name__="DocumentReady",s.DocumentReady=r=n([_("document_ready")],r);let c=class extends o{};s.ButtonClick=c,c.__name__="ButtonClick",s.ButtonClick=c=n([_("button_click")],c);let l=class extends o{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=l,l.__name__="MenuItemClick",s.MenuItemClick=l=n([_("menu_item_click")],l);class i extends o{}s.UIEvent=i,i.__name__="UIEvent";let u=class extends i{};s.LODStart=u,u.__name__="LODStart",s.LODStart=u=n([_("lodstart")],u);let d=class extends i{};s.LODEnd=d,d.__name__="LODEnd",s.LODEnd=d=n([_("lodend")],d);let h=class extends i{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=h,h.__name__="SelectionGeometry",s.SelectionGeometry=h=n([_("selectiongeometry")],h);let m=class extends i{};s.Reset=m,m.__name__="Reset",s.Reset=m=n([_("reset")],m);class x extends i{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=x,x.__name__="PointEvent";let p=class extends x{constructor(e,t,s,n,_,a){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=p,p.__name__="Pan",s.Pan=p=n([_("pan")],p);let j=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=j,j.__name__="Pinch",s.Pinch=j=n([_("pinch")],j);let y=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=y,y.__name__="Rotate",s.Rotate=y=n([_("rotate")],y);let P=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=P,P.__name__="MouseWheel",s.MouseWheel=P=n([_("wheel")],P);let v=class extends x{};s.MouseMove=v,v.__name__="MouseMove",s.MouseMove=v=n([_("mousemove")],v);let O=class extends x{};s.MouseEnter=O,O.__name__="MouseEnter",s.MouseEnter=O=n([_("mouseenter")],O);let b=class extends x{};s.MouseLeave=b,b.__name__="MouseLeave",s.MouseLeave=b=n([_("mouseleave")],b);let g=class extends x{};s.Tap=g,g.__name__="Tap",s.Tap=g=n([_("tap")],g);let E=class extends x{};s.DoubleTap=E,E.__name__="DoubleTap",s.DoubleTap=E=n([_("doubletap")],E);let M=class extends x{};s.Press=M,M.__name__="Press",s.Press=M=n([_("press")],M);let R=class extends x{};s.PressUp=R,R.__name__="PressUp",s.PressUp=R=n([_("pressup")],R);let f=class extends x{};s.PanStart=f,f.__name__="PanStart",s.PanStart=f=n([_("panstart")],f);let S=class extends x{};s.PanEnd=S,S.__name__="PanEnd",s.PanEnd=S=n([_("panend")],S);let D=class extends x{};s.PinchStart=D,D.__name__="PinchStart",s.PinchStart=D=n([_("pinchstart")],D);let k=class extends x{};s.PinchEnd=k,k.__name__="PinchEnd",s.PinchEnd=k=n([_("pinchend")],k);let L=class extends x{};s.RotateStart=L,L.__name__="RotateStart",s.RotateStart=L=n([_("rotatestart")],L);let C=class extends x{};s.RotateEnd=C,C.__name__="RotateEnd",s.RotateEnd=C=n([_("rotateend")],C)},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),i=n.__importDefault(t(297)),r=t(15),a=t(19),h=t(72),_=n.__importStar(t(313)),o=t(315),c=t(9),l=t(8),p=t(32),u=t(302);class d{constructor(t,e,s){this.plot_view=t,this.toolbar=e,this.hit_area=s,this.pan_start=new r.Signal(this,"pan:start"),this.pan=new r.Signal(this,"pan"),this.pan_end=new r.Signal(this,"pan:end"),this.pinch_start=new r.Signal(this,"pinch:start"),this.pinch=new r.Signal(this,"pinch"),this.pinch_end=new r.Signal(this,"pinch:end"),this.rotate_start=new r.Signal(this,"rotate:start"),this.rotate=new r.Signal(this,"rotate"),this.rotate_end=new r.Signal(this,"rotate:end"),this.tap=new r.Signal(this,"tap"),this.doubletap=new r.Signal(this,"doubletap"),this.press=new r.Signal(this,"press"),this.pressup=new r.Signal(this,"pressup"),this.move_enter=new r.Signal(this,"move:enter"),this.move=new r.Signal(this,"move"),this.move_exit=new r.Signal(this,"move:exit"),this.scroll=new r.Signal(this,"scroll"),this.keydown=new r.Signal(this,"keydown"),this.keyup=new r.Signal(this,"keyup"),this.hammer=new i.default(this.hit_area,{touchAction:"auto",inputClass:i.default.TouchMouseInput}),this._configure_hammerjs(),this.hit_area.addEventListener("mousemove",t=>this._mouse_move(t)),this.hit_area.addEventListener("mouseenter",t=>this._mouse_enter(t)),this.hit_area.addEventListener("mouseleave",t=>this._mouse_exit(t)),this.hit_area.addEventListener("contextmenu",t=>this._context_menu(t)),this.hit_area.addEventListener("wheel",t=>this._mouse_wheel(t)),document.addEventListener("keydown",this),document.addEventListener("keyup",this),this.menu=new u.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener("keydown",this),document.removeEventListener("keyup",this)}handleEvent(t){"keydown"==t.type?this._key_down(t):"keyup"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get("doubletap").recognizeWith("tap"),this.hammer.get("tap").requireFailure("doubletap"),this.hammer.get("doubletap").dropRequireFailure("tap"),this.hammer.on("doubletap",t=>this._doubletap(t)),this.hammer.on("tap",t=>this._tap(t)),this.hammer.on("press",t=>this._press(t)),this.hammer.on("pressup",t=>this._pressup(t)),this.hammer.get("pan").set({direction:i.default.DIRECTION_ALL}),this.hammer.on("panstart",t=>this._pan_start(t)),this.hammer.on("pan",t=>this._pan(t)),this.hammer.on("panend",t=>this._pan_end(t)),this.hammer.get("pinch").set({enable:!0}),this.hammer.on("pinchstart",t=>this._pinch_start(t)),this.hammer.on("pinch",t=>this._pinch(t)),this.hammer.on("pinchend",t=>this._pinch_end(t)),this.hammer.get("rotate").set({enable:!0}),this.hammer.on("rotatestart",t=>this._rotate_start(t)),this.hammer.on("rotate",t=>this._rotate(t)),this.hammer.on("rotateend",t=>this._rotate_end(t))}register_tool(t){const e=t.model.event_type;null!=e&&(l.isString(e)?this._register_tool(t,e):e.forEach((e,s)=>this._register_tool(t,e,s<1)))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},h=t=>e=>{t(e.e)};switch(e){case"pan":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case"pinch":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case"rotate":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case"move":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case"tap":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n)));break;case"press":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case"scroll":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error("unsupported event_type: "+e)}s&&(null!=n._doubletap&&n.connect(this.doubletap,h(n._doubletap.bind(n))),null!=n._keydown&&n.connect(this.keydown,h(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,h(n._keyup.bind(n))),p.is_mobile&&null!=n._scroll&&"pinch"==e&&(a.logger.debug("Registering scroll on touch screen"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e){const s=this.plot_view.get_renderer_views();for(const n of c.reversed(s)){const{level:s}=n.model;if(("annotation"==s||"overlay"==s)&&null!=n.interactive_hit&&n.interactive_hit(t,e))return n}return null}_hit_test_frame(t,e){return this.plot_view.frame.bbox.contains(t,e)}_hit_test_canvas(t,e){return this.plot_view.layout.bbox.contains(t,e)}_trigger(t,e,s){const n=this.toolbar.gestures,i=t.name.split(":")[0],r=this._hit_test_renderers(e.sx,e.sy),a=this._hit_test_canvas(e.sx,e.sy);switch(i){case"move":{const s=n[i].active;null!=s&&this.trigger(t,e,s.id);const h=this.toolbar.inspectors.filter(t=>t.active);let _="default";null!=r?(_=r.cursor(e.sx,e.sy)||_,c.is_empty(h)||(t=this.move_exit)):this._hit_test_frame(e.sx,e.sy)&&(c.is_empty(h)||(_="crosshair")),this.plot_view.set_cursor(_),this.plot_view.set_toolbar_visibility(a),h.map(s=>this.trigger(t,e,s.id));break}case"tap":{const{target:a}=s;if(null!=a&&a!=this.hit_area)return;null!=r&&null!=r.on_hit&&r.on_hit(e.sx,e.sy);const h=n[i].active;null!=h&&this.trigger(t,e,h.id);break}case"scroll":{const i=n[p.is_mobile?"pinch":"scroll"].active;null!=i&&(s.preventDefault(),s.stopPropagation(),this.trigger(t,e,i.id));break}case"pan":{const r=n[i].active;null!=r&&(s.preventDefault(),this.trigger(t,e,r.id));break}default:{const s=n[i].active;null!=s&&this.trigger(t,e,s.id)}}this._trigger_bokeh_event(e)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t){const e=(()=>{const{sx:e,sy:s}=t,n=this.plot_view.frame.x_scale.invert(e),i=this.plot_view.frame.y_scale.invert(s);switch(t.type){case"wheel":return new _.MouseWheel(e,s,n,i,t.delta);case"mousemove":return new _.MouseMove(e,s,n,i);case"mouseenter":return new _.MouseEnter(e,s,n,i);case"mouseleave":return new _.MouseLeave(e,s,n,i);case"tap":return new _.Tap(e,s,n,i);case"doubletap":return new _.DoubleTap(e,s,n,i);case"press":return new _.Press(e,s,n,i);case"pressup":return new _.PressUp(e,s,n,i);case"pan":return new _.Pan(e,s,n,i,t.deltaX,t.deltaY);case"panstart":return new _.PanStart(e,s,n,i);case"panend":return new _.PanEnd(e,s,n,i);case"pinch":return new _.Pinch(e,s,n,i,t.scale);case"pinchstart":return new _.PinchStart(e,s,n,i);case"pinchend":return new _.PinchEnd(e,s,n,i);case"rotate":return new _.Rotate(e,s,n,i,t.rotation);case"rotatestart":return new _.RotateStart(e,s,n,i);case"rotateend":return new _.RotateEnd(e,s,n,i);default:return}})();null!=e&&this.plot_view.model.trigger_event(e)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return"undefined"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=h.offset(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:o.getDeltaY(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){const e=this._tap_event(t);this._trigger_bokeh_event(e),this.trigger(this.doubletap,e)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEvents=d,d.__name__="UIEvents"},n”, ” function _(e,t,n){n”, ” /!n”, ” * jQuery Mousewheel 3.1.13n”, ” n”, ” * Copyright jQuery Foundation and other contributorsn”, ” * Released under the MIT licensen”, ” * http://jquery.org/licensen”, ” */n”, ” function r(e){const t=getComputedStyle(e).fontSize;return null!=t?parseInt(t,10):null}Object.defineProperty(n,"__esModule",{value:!0}),n.getDeltaY=function(e){let t=-e.deltaY;if(e.target instanceof HTMLElement)switch(e.deltaMode){case e.DOM_DELTA_LINE:t*=r((n=e.target).offsetParent||document.body)||r(n)||16;break;case e.DOM_DELTA_PAGE:t*=function(e){return e.clientHeight}(e.target)}var n;return t}},n”, ” function _(n,e,o){Object.defineProperty(o,"__esModule",{value:!0});const t=("undefined"!=typeof window?window.requestAnimationFrame:void 0)||("undefined"!=typeof window?window.webkitRequestAnimationFrame:void 0)||("undefined"!=typeof window?window.mozRequestAnimationFrame:void 0)||("undefined"!=typeof window?window.msRequestAnimationFrame:void 0)||function(n){return n(Date.now()),-1};o.throttle=function(n,e){let o=null,i=0,u=!1;return function(){return new Promise((d,w)=>{const r=function(){i=Date.now(),o=null,u=!1;try{n(),d()}catch(n){w(n)}},a=Date.now(),f=e-(a-i);f<=0&&!u?(null!=o&&clearTimeout(o),u=!0,t(r)):o||u?d():o=setTimeout(()=>t(r),f)})}}},n”, ” function _(t,e,h){Object.defineProperty(h,"__esModule",{value:!0});const i=t(213),o=t(214),r=t(79);class s extends o.Layoutable{constructor(){super(…arguments),this.min_border={left:0,top:0,right:0,bottom:0}}_measure(t){t=new i.Sizeable(t).bounded_to(this.sizing.size);const e=this.left_panel.measure({width:0,height:t.height}),h=Math.max(e.width,this.min_border.left),o=this.right_panel.measure({width:0,height:t.height}),r=Math.max(o.width,this.min_border.right),s=this.top_panel.measure({width:t.width,height:0}),n=Math.max(s.height,this.min_border.top),a=this.bottom_panel.measure({width:t.width,height:0}),g=Math.max(a.height,this.min_border.bottom),_=new i.Sizeable(t).shrink_by({left:h,right:r,top:n,bottom:g}),m=this.center_panel.measure(_);return{width:h+m.width+r,height:n+m.height+g,inner:{left:h,right:r,top:n,bottom:g},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return"fixed"!=t&&"fixed"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const h=this.left_panel.measure({width:0,height:t.height}),i=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:n,top:a,right:g,bottom:_}=e;this.top_panel.set_geometry(new r.BBox({left:n,right:g,bottom:a,height:o.height})),this.bottom_panel.set_geometry(new r.BBox({left:n,right:g,top:_,height:s.height})),this.left_panel.set_geometry(new r.BBox({top:a,bottom:_,right:n,width:h.width})),this.right_panel.set_geometry(new r.BBox({top:a,bottom:_,left:g,width:i.width}))}}h.BorderLayout=s,s.__name__="BorderLayout"},n”, ” function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const l=i(213),a=i(214),r=i(8),o=Math.PI/2,h="left",s="center",n={above:{parallel:0,normal:-o,horizontal:0,vertical:-o},below:{parallel:0,normal:o,horizontal:0,vertical:o},left:{parallel:-o,normal:0,horizontal:0,vertical:-o},right:{parallel:o,normal:0,horizontal:0,vertical:o}},d={above:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"alphabetic",vertical:"middle"},below:{justified:"bottom",parallel:"hanging",normal:"middle",horizontal:"hanging",vertical:"middle"},left:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"middle",vertical:"alphabetic"},right:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"middle",vertical:"alphabetic"}},_={above:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},below:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},left:{justified:s,parallel:s,normal:"right",horizontal:"right",vertical:s},right:{justified:s,parallel:s,normal:h,horizontal:h,vertical:s}},c={above:"right",below:h,left:"right",right:h},m={above:h,below:"right",left:"right",right:h};class g extends a.ContentLayoutable{constructor(i,t){switch(super(),this.side=i,this.obj=t,this.side){case"above":this._dim=0,this._normals=[0,-1];break;case"below":this._dim=0,this._normals=[0,1];break;case"left":this._dim=1,this._normals=[-1,0];break;case"right":this._dim=1,this._normals=[1,0]}this.is_horizontal?this.set_sizing({width_policy:"max",height_policy:"fixed"}):this.set_sizing({width_policy:"fixed",height_policy:"max"})}_content_size(){return new l.Sizeable(this.get_oriented_size())}get_oriented_size(){const{width:i,height:t}=this.obj.get_size();return!this.obj.rotate||this.is_horizontal?{width:i,height:t}:{width:t,height:i}}has_size_changed(){const{width:i,height:t}=this.get_oriented_size();return this.is_horizontal?this.bbox.height!=t:this.bbox.width!=i}get dimension(){return this._dim}get normals(){return this._normals}get is_horizontal(){return 0==this._dim}get is_vertical(){return 1==this._dim}apply_label_text_heuristics(i,t){const e=this.side;let l,a;r.isString(t)?(l=d[e][t],a=_[e][t]):t<0?(l="middle",a=c[e]):(l="middle",a=m[e]),i.textBaseline=l,i.textAlign=a}get_label_angle_heuristic(i){return n[this.side][i]}}e.SidePanel=g,g.__name__="SidePanel"},n”, ” function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(15),o=t(72),a=t(37),n=t(312),p=new i.Signal0({},"gmaps_ready");class l extends n.PlotView{initialize(){this.pause(),super.initialize(),this._tiles_loaded=!1,this.zoom_count=0;const{zoom:t,lat:e,lng:s}=this.model.map_options;if(this.initial_zoom=t,this.initial_lat=e,this.initial_lng=s,"undefined"==typeof google||null==google.maps){if(void 0===window._bokeh_gmaps_callback){!function(t){window._bokeh_gmaps_callback=()=>p.emit();const e=document.createElement("script");e.type="text/javascript",e.src=`https://maps.googleapis.com/maps/api/js?v=3.36&key=${t}&callback=_bokeh_gmaps_callback`,document.body.appendChild(e)}(atob(this.model.api_key))}p.connect(()=>this.request_render())}this.unpause()}remove(){o.remove(this.map_el),super.remove()}update_range(t){if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(t.sdx||0,t.sdy||0),super.update_range(t);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t);const e=t.factor<0?-1:1,s=this.map.getZoom(),i=s+e;if(i>=2){this.map.setZoom(i);const[t,e,,]=this._get_projected_bounds();e-t<0&&this.map.setZoom(s)}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=o.div({style:{position:"absolute"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,"idle",()=>this._set_bokeh_ranges()),t.event.addListener(this.map,"bounds_changed",()=>this._set_bokeh_ranges()),t.event.addListenerOnce(this.map,"tilesloaded",()=>this._render_finished()),this.connect(this.model.properties.map_options.change,()=>this._update_options()),this.connect(this.model.map_options.properties.styles.change,()=>this._update_styles()),this.connect(this.model.map_options.properties.lat.change,()=>this._update_center("lat")),this.connect(this.model.map_options.properties.lng.change,()=>this._update_center("lng")),this.connect(this.model.map_options.properties.zoom.change,()=>this._update_zoom()),this.connect(this.model.map_options.properties.map_type.change,()=>this._update_map_type()),this.connect(this.model.map_options.properties.scale_control.change,()=>this._update_scale_control()),this.connect(this.model.map_options.properties.tilt.change,()=>this._update_tilt())}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,i]=this._get_latlon_bounds(),[o,n]=a.wgs84_mercator.compute(t,s),[p,l]=a.wgs84_mercator.compute(e,i);return[o,p,n,l]}_set_bokeh_ranges(){const[t,e,s,i]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:i})}_update_center(t){const e=this.map.getCenter().toJSON();e[t]=this.model.map_options[t],this.map.setCenter(e),this._set_bokeh_ranges()}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center("lat"),this._update_center("lng"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&"undefined"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,i,o]=e;this.map_el.style.top=s+"px",this.map_el.style.left=t+"px",this.map_el.style.width=i+"px",this.map_el.style.height=o+"px"}}_paint_empty(t,e){const s=this.layout.bbox.width,i=this.layout.bbox.height,[o,a,n,p]=e;t.clearRect(0,0,s,i),t.beginPath(),t.moveTo(0,0),t.lineTo(0,i),t.lineTo(s,i),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(o,a),t.lineTo(o+n,a),t.lineTo(o+n,a+p),t.lineTo(o,a+p),t.lineTo(o,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=this.model.border_fill_color,t.fill())}}s.GMapPlotView=l,l.__name__="GMapPlotView"},n”, ” function _(a,e,n){Object.defineProperty(n,"__esModule",{value:!0});var g=a(211);n.DataRange=g.DataRange;var R=a(210);n.DataRange1d=R.DataRange1d;var r=a(98);n.FactorRange=r.FactorRange;var t=a(99);n.Range=t.Range;var d=a(158);n.Range1d=d.Range1d},n”, ” function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});var n=e(90);d.GlyphRenderer=n.GlyphRenderer;var R=e(116);d.GraphRenderer=R.GraphRenderer;var a=e(178);d.GuideRenderer=a.GuideRenderer;var G=e(70);d.Renderer=G.Renderer},n”, ” function _(a,e,l){Object.defineProperty(l,"__esModule",{value:!0});var c=a(209);l.CategoricalScale=c.CategoricalScale;var r=a(146);l.ContinuousScale=r.ContinuousScale;var n=a(145);l.LinearScale=n.LinearScale;var o=a(156);l.LinearInterpolationScale=o.LinearInterpolationScale;var i=a(157);l.LogScale=i.LogScale;var S=a(147);l.Scale=S.Scale},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});e(1).__exportStar(e(118),o);var n=e(88);o.Selection=n.Selection},n”, ” function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var o=a(325);r.ServerSentDataSource=o.ServerSentDataSource;var S=a(327);r.AjaxDataSource=S.AjaxDataSource;var u=a(85);r.ColumnDataSource=u.ColumnDataSource;var t=a(86);r.ColumnarDataSource=t.ColumnarDataSource;var c=a(114);r.CDSView=c.CDSView;var D=a(87);r.DataSource=D.DataSource;var v=a(328);r.GeoJSONDataSource=v.GeoJSONDataSource;var n=a(326);r.WebDataSource=n.WebDataSource},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e(326);class s extends a.WebDataSource{constructor(e){super(e),this.initialized=!1}destroy(){super.destroy()}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{this.load_data(JSON.parse(e.data),this.mode,this.max_size)}}}}i.ServerSentDataSource=s,s.__name__="ServerSentDataSource"},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const r=e(1),s=e(85),i=r.__importStar(e(18));class n extends s.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:r}=this;let s;switch(s=null!=r?r.execute(this,{response:e}):e,t){case"replace":this.data=s;break;case"append":{const e=this.data;for(const t of this.columns()){const r=Array.from(e[t]),i=Array.from(s[t]);s[t]=r.concat(i).slice(-a)}this.data=s;break}}}static init_WebDataSource(){this.define({mode:[i.UpdateMode,"replace"],max_size:[i.Number],adapter:[i.Any,null],data_url:[i.String]})}}a.WebDataSource=n,n.__name__="WebDataSource",n.init_WebDataSource()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(326),r=t(19),o=s.__importStar(t(18)),n=t(13);class d extends a.WebDataSource{constructor(t){super(t),this.initialized=!1}static init_AjaxDataSource(){this.define({polling_interval:[o.Number],content_type:[o.String,"application/json"],http_headers:[o.Any,{}],method:[o.HTTPMethod,"POST"],if_modified:[o.Boolean,!1]})}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=0,i=!1){const s=this.prepare_request();s.addEventListener("load",()=>this.do_load(s,t,e)),s.addEventListener("error",()=>this.do_error(s)),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader("Content-Type",this.content_type);const e=this.http_headers;for(const[i,s]of n.entries(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){r.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=d,d.__name__="AjaxDataSource",d.init_AjaxDataSource()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1),n=e(86),s=e(19),a=r.__importStar(e(18)),i=e(9),l=e(13);function c(e){return null!=e?e:NaN}class _ extends n.ColumnarDataSource{constructor(e){super(e)}static init_GeoJSONDataSource(){this.define({geojson:[a.Any]}),this.internal({data:[a.Any,{}]})}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,()=>this._update_data())}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return i.range(0,e).map(e=>[])}_get_new_nan_array(e){return i.range(0,e).map(e=>NaN)}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of l.entries(s))t.hasOwnProperty(e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=c(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case"Point":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=c(s);break}case"LineString":{const{coordinates:r}=e;for(let e=0;e<r.length;e++){const[n,s,a]=r[e];t.xs[o][e]=n,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"Polygon":{e.coordinates.length>1&&s.logger.warn("Bokeh does not support Polygons with holes in, only exterior ring used.");const r=e.coordinates[0];for(let e=0;e<r.length;e++){const[n,s,a]=r[e];t.xs[o][e]=n,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"MultiPoint":s.logger.warn("MultiPoint not supported in Bokeh");break;case"MultiLineString":{const n=e.coordinates.reduce(r);for(let e=0;e<n.length;e++){const[r,s,a]=n[e];t.xs[o][e]=r,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"MultiPolygon":{const n=[];for(const t of e.coordinates)t.length>1&&s.logger.warn("Bokeh does not support Polygons with holes in, only exterior ring used."),n.push(t[0]);const a=n.reduce(r);for(let e=0;e<a.length;e++){const[r,n,s]=a[e];t.xs[o][e]=r,t.ys[o][e]=n,t.zs[o][e]=c(s)}break}default:throw new Error("Invalid GeoJSON geometry type: "+e.type)}}geojson_to_column_data(){const e=JSON.parse(this.geojson);let t;switch(e.type){case"GeometryCollection":if(null==e.geometries)throw new Error("No geometries found in GeometryCollection");if(0===e.geometries.length)throw new Error("geojson.geometries must have one or more items");t=e.geometries;break;case"FeatureCollection":if(null==e.features)throw new Error("No features found in FeaturesCollection");if(0==e.features.length)throw new Error("geojson.features must have one or more items");t=e.features;break;default:throw new Error("Bokeh only supports type GeometryCollection and FeatureCollection at top level")}let o=0;for(const e of t){const t="Feature"===e.type?e.geometry:e;"GeometryCollection"==t.type?o+=t.geometries.length:o+=1}const r={x:this._get_new_nan_array(o),y:this._get_new_nan_array(o),z:this._get_new_nan_array(o),xs:this._get_new_list_array(o),ys:this._get_new_list_array(o),zs:this._get_new_list_array(o)};let n=0;for(const e of t){const t="Feature"==e.type?e.geometry:e;if("GeometryCollection"==t.type)for(const s of t.geometries)this._add_geometry(s,r,n),"Feature"===e.type&&this._add_properties(e,r,n,o),n+=1;else this._add_geometry(t,r,n),"Feature"===e.type&&this._add_properties(e,r,n,o),n+=1}return r}}o.GeoJSONDataSource=_,_.__name__="GeoJSONDataSource",_.init_GeoJSONDataSource()},n”, ” function _(e,r,i){Object.defineProperty(i,"__esModule",{value:!0});var c=e(127);i.AdaptiveTicker=c.AdaptiveTicker;var a=e(126);i.BasicTicker=a.BasicTicker;var k=e(180);i.CategoricalTicker=k.CategoricalTicker;var T=e(191);i.CompositeTicker=T.CompositeTicker;var t=e(128);i.ContinuousTicker=t.ContinuousTicker;var o=e(190);i.DatetimeTicker=o.DatetimeTicker;var v=e(192);i.DaysTicker=v.DaysTicker;var n=e(330);i.FixedTicker=n.FixedTicker;var s=e(199);i.LogTicker=s.LogTicker;var l=e(202);i.MercatorTicker=l.MercatorTicker;var u=e(195);i.MonthsTicker=u.MonthsTicker;var d=e(193);i.SingleIntervalTicker=d.SingleIntervalTicker;var g=e(129);i.Ticker=g.Ticker;var C=e(196);i.YearsTicker=C.YearsTicker},n”, ” function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=i(1),n=i(128),s=r.__importStar(i(18));class _ extends n.ContinuousTicker{constructor(i){super(i),this.min_interval=0,this.max_interval=0}static init_FixedTicker(){this.define({ticks:[s.Array,[]],minor_ticks:[s.Array,[]]})}get_ticks_no_defaults(i,t,e,r){return{major:this.ticks,minor:this.minor_ticks}}get_interval(i,t,e){return 0}}e.FixedTicker=_,_.__name__="FixedTicker",_.init_FixedTicker()},n”, ” function _(e,r,o){Object.defineProperty(o,"__esModule",{value:!0});var T=e(332);o.BBoxTileSource=T.BBoxTileSource;var c=e(333);o.MercatorTileSource=c.MercatorTileSource;var i=e(336);o.QUADKEYTileSource=i.QUADKEYTileSource;var l=e(337);o.TileRenderer=l.TileRenderer;var S=e(334);o.TileSource=S.TileSource;var u=e(341);o.TMSTileSource=u.TMSTileSource;var a=e(338);o.WMTSTileSource=a.WMTSTileSource},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(1),i=e(333),l=o.__importStar(e(18));class _ extends i.MercatorTileSource{constructor(e){super(e)}static init_BBoxTileSource(){this.define({use_latlon:[l.Boolean,!1]})}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars);let i,l,_,n;return this.use_latlon?[l,n,i,_]=this.get_tile_geographic_bounds(e,t,r):[l,n,i,_]=this.get_tile_meter_bounds(e,t,r),o.replace("{XMIN}",l.toString()).replace("{YMIN}",n.toString()).replace("{XMAX}",i.toString()).replace("{YMAX}",_.toString())}}r.BBoxTileSource=_,_.__name__="BBoxTileSource",_.init_BBoxTileSource()},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const _=t(1),s=t(334),r=_.__importStar(t(18)),o=t(9),n=t(335);class l extends s.TileSource{constructor(t){super(t)}static init_MercatorTileSource(){this.define({snap_to_zoom:[r.Boolean,!1],wrap_around:[r.Boolean,!0]}),this.override({x_origin_offset:20037508.34,y_origin_offset:20037508.34,initial_resolution:156543.03392804097})}initialize(){super.initialize(),this._resolutions=o.range(this.min_zoom,this.max_zoom+1).map(t=>this.get_resolution(t))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)<Math.abs(t-r)?e:t}));return this._resolutions.indexOf(o)}snap_to_zoom_level(t,e,i,_){const[s,r,o,n]=t,l=this._resolutions[_];let u=i*l,a=e*l;if(!this.snap_to_zoom){const t=(o-s)/u,e=(n-r)/a;t>e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<<i)-e]}meters_to_tile(t,e,i){const[_,s]=this.meters_to_pixels(t,e,i);return this.pixels_to_tile(_,s)}get_tile_meter_bounds(t,e,i){const[_,s]=this.pixels_to_meters(t*this.tile_size,e*this.tile_size,i),[r,o]=this.pixels_to_meters((t+1)*this.tile_size,(e+1)*this.tile_size,i);return[_,s,r,o]}get_tile_geographic_bounds(t,e,i){const _=this.get_tile_meter_bounds(t,e,i),[s,r,o,l]=n.meters_extent_to_geographic(_);return[s,r,o,l]}get_tiles_by_extent(t,e,i=1){const[_,s,r,o]=t;let[n,l]=this.meters_to_tile(_,s,e),[u,a]=this.meters_to_tile(r,o,e);n-=i,l-=i,u+=i,a+=i;const h=[];for(let t=a;t>=l;t–)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s–){const r=1<<s-1;switch(t.charAt(_-s)){case"0":continue;case"1":e|=r;break;case"2":i|=r;break;case"3":e|=r,i|=r;break;default:throw new TypeError("Invalid Quadkey: "+t)}}return[e,i,_]}tile_xyz_to_quadkey(t,e,i){let _="";for(let s=i;s>0;s–){const i=1<<s-1;let r=0;0!=(t&i)&&(r+=1),0!=(e&i)&&(r+=2),_+=r.toString()}return _}children_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=[];for(let t=0;t<=3;t++){const[e,i,r]=this.quadkey_to_tile_xyz(_+t.toString()),o=this.get_tile_meter_bounds(e,i,r);s.push([e,i,r,o])}return s}get_closest_parent_by_tile_xyz(t,e,i){const _=this.calculate_world_x_by_tile_xyz(t,e,i);[t,e,i]=this.normalize_xyz(t,e,i);let s=this.tile_xyz_to_quadkey(t,e,i);for(;s.length>0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=l,l.__name__="MercatorTileSource",l.init_MercatorTileSource()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1),n=e(81),s=e(13),l=i.__importStar(e(18));class a extends n.Model{constructor(e){super(e)}static init_TileSource(){this.define({url:[l.String,""],tile_size:[l.Number,256],max_zoom:[l.Number,30],min_zoom:[l.Number,0],extra_url_vars:[l.Any,{}],attribution:[l.String,""],x_origin_offset:[l.Number],y_origin_offset:[l.Number],initial_resolution:[l.Number]})}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._clear_cache())}string_lookup_replace(e,t){let r=e;for(const[e,i]of s.entries(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace("{x}","{X}").replace("{y}","{Y}").replace("{z}","{Z}").replace("{q}","{Q}").replace("{xmin}","{XMIN}").replace("{ymin}","{YMIN}").replace("{xmax}","{XMAX}").replace("{ymax}","{YMAX}");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(":").map(e=>parseInt(e));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,s]=t,l=(n-r)/2+r,a=(s-i)/2+i;e.sort((function(e,t){return Math.sqrt((l-e[0])**2+(a-e[1])**2)-Math.sqrt((l-t[0])**2+(a-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace("{X}",e.toString()).replace("{Y}",t.toString()).replace("{Z}",r.toString())}}r.TileSource=a,a.__name__="TileSource",a.init_TileSource()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const n=e(37);function o(e,t){return n.wgs84_mercator.compute(e,t)}function c(e,t){return n.wgs84_mercator.invert(e,t)}r.geographic_to_meters=o,r.meters_to_geographic=c,r.geographic_extent_to_meters=function(e){const[t,r,n,c]=e,[_,u]=o(t,r),[i,g]=o(n,c);return[_,u,i,g]},r.meters_extent_to_geographic=function(e){const[t,r,n,o]=e,[_,u]=c(t,r),[i,g]=c(n,o);return[_,u,i,g]}},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const _=e(333);class s extends _.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const _=this.string_lookup_replace(this.url,this.extra_url_vars),[s,o,u]=this.tms_to_wmts(e,t,r),c=this.tile_xyz_to_quadkey(s,o,u);return _.replace("{Q}",c)}}r.QUADKEYTileSource=s,s.__name__="QUADKEYTileSource"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),_=t(338),n=t(91),a=t(158),r=t(72),o=s.__importStar(t(18)),h=t(251),l=t(9),d=t(8),m=t(89),c=t(85),g=t(339),p=s.__importDefault(t(340));class u extends n.DataRendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.tile_source.change,()=>this.request_render())}styles(){return[…super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&r.removeElement(this.attribution_el);const{attribution:t}=this.model.tile_source;if(d.isString(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=r.div({class:g.bk_tile_attribution,style:{position:"absolute",right:s+"px",bottom:_+"px","max-width":n-4+"px",padding:"2px","background-color":"rgba(255,255,255,0.5)","font-size":"9px","line-height":"1.05","white-space":"nowrap",overflow:"hidden","text-overflow":"ellipsis"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\s\n\s*/g," ")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof a.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof a.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const[n,a,r]=this.model.tile_source.normalize_xyz(t,e,i),o={img:void 0,tile_coords:[t,e,i],normalized_coords:[n,a,r],quadkey:this.model.tile_source.tile_xyz_to_quadkey(t,e,i),cache_key:this.model.tile_source.tile_xyz_to_key(t,e,i),bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]},l=this.model.tile_source.get_image_url(n,a,r);new h.ImageLoader(l,{loaded:t=>{Object.assign(o,{img:t,loaded:!0}),_?(o.finished=!0,this.notify_finished()):this.request_render()},failed(){o.finished=!0}}),this.model.tile_source.tiles.set(o.cache_key,o),this._tiles.push(o)}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0===this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,r=t,o=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,r,o,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.properties.outline_line_width.value(),e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);e<i;e++){const[i,s,_]=n[e],a=this.model.tile_source.children_by_tile_xyz(i,s,_);for(const e of a){const[i,s,_,n]=e;t.tiles.has(t.tile_xyz_to_key(i,s,_))||this._create_tile(i,s,_,n,!0)}}}_fetch_tiles(t){for(const e of t){const[t,i,s,_]=e;this._create_tile(t,i,s,_)}}_update(){const{tile_source:t}=this.model,{min_zoom:e}=t,{max_zoom:i}=t;let s=this.get_extent();const _=this.extent[2]-this.extent[0]<s[2]-s[0],n=this.map_frame.bbox.height,a=this.map_frame.bbox.width;let r=t.get_level_by_extent(s,n,a),o=!1;r<e?(s=this.extent,r=e,o=!0):r>i&&(s=this.extent,r=i,o=!0),o&&(this.x_range.setv({x_range:{start:s[0],end:s[2]}}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,r),d=[],m=[],c=[],g=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),r=t.tiles.get(a);if(null!=r&&r.loaded)m.push(a);else if(this.model.render_parents){const[e,a,r]=t.get_closest_parent_by_tile_xyz(i,s,n),o=t.tile_xyz_to_key(e,a,r),h=t.tiles.get(o);if(null!=h&&h.loaded&&!l.includes(c,o)&&c.push(o),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&g.push(e)}}}null==r&&d.push(e)}this._render_tiles(c),this._render_tiles(g),this._render_tiles(m),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout(()=>this._fetch_tiles(d),65)}}i.TileRendererView=u,u.__name__="TileRendererView";class b extends n.DataRenderer{constructor(t){super(t),this._selection_manager=new m.SelectionManager({source:new c.ColumnDataSource})}static init_TileRenderer(){this.prototype.default_view=u,this.define({alpha:[o.Number,1],smoothing:[o.Boolean,!0],tile_source:[o.Instance,()=>new _.WMTSTileSource],render_parents:[o.Boolean,!0]})}get_selection_manager(){return this._selection_manager}}i.TileRenderer=b,b.__name__="TileRenderer",b.init_TileRenderer()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(333);class s extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,_]=this.tms_to_wmts(e,t,r);return o.replace("{X}",s.toString()).replace("{Y}",c.toString()).replace("{Z}",_.toString())}}r.WMTSTileSource=s,s.__name__="WMTSTileSource"},n”, ” function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0}),i.bk_tile_attribution="bk-tile-attribution"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});n.default="\n.bk-root .bk-tile-attribution a {\n color: black;\n}\n"},n”, ” function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(333);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace("{X}",e.toString()).replace("{Y}",r.toString()).replace("{Z}",t.toString())}}t.TMSTileSource=c,c.__name__="TMSTileSource"},n”, ” function _(e,r,a){Object.defineProperty(a,"__esModule",{value:!0});var t=e(343);a.CanvasTexture=t.CanvasTexture;var u=e(345);a.ImageURLTexture=u.ImageURLTexture;var v=e(344);a.Texture=v.Texture},n”, ” function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),c=t(344),s=r.__importStar(t(18)),i=t(29);class a extends c.Texture{constructor(t){super(t)}static init_CanvasTexture(){this.define({code:[s.String]})}get func(){const t=i.use_strict(this.code);return new Function("ctx","color","scale","weight",t)}get_pattern(t,e,n){return r=>{const c=document.createElement("canvas");c.width=e,c.height=e;const s=c.getContext("2d");return this.func.call(this,s,t,e,n),r.createPattern(c,this.repetition)}}}n.CanvasTexture=a,a.__name__="CanvasTexture",a.init_CanvasTexture()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),n=e(81),o=r.__importStar(e(18));class _ extends n.Model{constructor(e){super(e)}static init_Texture(){this.define({repetition:[o.TextureRepetition,"repeat"]})}onload(e){e()}}i.Texture=_,_.__name__="Texture",_.init_Texture()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),a=e(344),n=r.__importStar(e(18)),s=e(251);class o extends a.Texture{constructor(e){super(e)}static init_ImageURLTexture(){this.define({url:[n.String]})}initialize(){super.initialize(),this._loader=new s.ImageLoader(this.url)}get_pattern(e,t,i){return e=>this._loader.finished?e.createPattern(this._loader.image,this.repetition):null}onload(e){this._loader.promise.then(()=>e())}}i.ImageURLTexture=o,o.__name__="ImageURLTexture",o.init_ImageURLTexture()},n”, ” function _(o,l,T){Object.defineProperty(T,"__esModule",{value:!0});var a=o(307);T.ActionTool=a.ActionTool;var r=o(347);T.CustomAction=r.CustomAction;var e=o(308);T.HelpTool=e.HelpTool;var v=o(348);T.RedoTool=v.RedoTool;var t=o(349);T.ResetTool=t.ResetTool;var n=o(350);T.SaveTool=n.SaveTool;var s=o(351);T.UndoTool=s.UndoTool;var i=o(352);T.ZoomInTool=i.ZoomInTool;var P=o(355);T.ZoomOutTool=P.ZoomOutTool;var c=o(296);T.ButtonTool=c.ButtonTool;var d=o(356);T.EditTool=d.EditTool;var u=o(357);T.BoxEditTool=u.BoxEditTool;var y=o(358);T.FreehandDrawTool=y.FreehandDrawTool;var m=o(359);T.PointDrawTool=m.PointDrawTool;var x=o(360);T.PolyDrawTool=x.PolyDrawTool;var B=o(361);T.PolyTool=B.PolyTool;var S=o(362);T.PolyEditTool=S.PolyEditTool;var b=o(363);T.BoxSelectTool=b.BoxSelectTool;var h=o(366);T.BoxZoomTool=h.BoxZoomTool;var E=o(306);T.GestureTool=E.GestureTool;var Z=o(367);T.LassoSelectTool=Z.LassoSelectTool;var p=o(369);T.LineEditTool=p.LineEditTool;var w=o(371);T.PanTool=w.PanTool;var C=o(368);T.PolySelectTool=C.PolySelectTool;var D=o(372);T.RangeTool=D.RangeTool;var H=o(364);T.SelectTool=H.SelectTool;var R=o(373);T.TapTool=R.TapTool;var A=o(374);T.WheelPanTool=A.WheelPanTool;var I=o(375);T.WheelZoomTool=I.WheelZoomTool;var L=o(376);T.CrosshairTool=L.CrosshairTool;var W=o(377);T.CustomJSHover=W.CustomJSHover;var O=o(378);T.HoverTool=O.HoverTool;var _=o(295);T.InspectTool=_.InspectTool;var f=o(298);T.Tool=f.Tool;var g=o(379);T.ToolProxy=g.ToolProxy;var F=o(294);T.Toolbar=F.Toolbar;var G=o(305);T.ToolbarBase=G.ToolbarBase;var J=o(380);T.ProxyToolbar=J.ProxyToolbar;var U=o(380);T.ToolbarBox=U.ToolbarBox},n”, ” function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(307),e=n.__importStar(t(18)),c=t(299);class _ extends s.ActionToolButtonView{css_classes(){return super.css_classes().concat(c.bk_toolbar_button_custom_action)}}i.CustomActionButtonView=_,_.__name__="CustomActionButtonView";class l extends s.ActionToolView{doit(){null!=this.model.callback&&this.model.callback.execute(this.model)}}i.CustomActionView=l,l.__name__="CustomActionView";class u extends s.ActionTool{constructor(t){super(t),this.tool_name="Custom Action",this.button_view=_}static init_CustomAction(){this.prototype.default_view=l,this.define({action_tooltip:[e.String,"Perform a Custom Action"],callback:[e.Any],icon:[e.String]})}get tooltip(){return this.action_tooltip}}i.CustomAction=u,u.__name__="CustomAction",u.init_CustomAction()},n”, ” function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o(307),s=o(309);class n extends i.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_redo())}doit(){this.plot_view.redo()}}t.RedoToolView=n,n.__name__="RedoToolView";class _ extends i.ActionTool{constructor(o){super(o),this.tool_name="Redo",this.icon=s.bk_tool_icon_redo}static init_RedoTool(){this.prototype.default_view=n,this.override({disabled:!0}),this.register_alias("redo",()=>new _)}}t.RedoTool=_,_.__name__="RedoTool",_.init_RedoTool()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(307),i=e(309);class _ extends s.ActionToolView{doit(){this.plot_view.reset()}}o.ResetToolView=_,_.__name__="ResetToolView";class l extends s.ActionTool{constructor(e){super(e),this.tool_name="Reset",this.icon=i.bk_tool_icon_reset}static init_ResetTool(){this.prototype.default_view=_,this.register_alias("reset",()=>new l)}}o.ResetTool=l,l.__name__="ResetTool",l.init_ResetTool()},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(307),i=e(309);class n extends a.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:e});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement("a");t.href=URL.createObjectURL(o),t.download=e,t.target="_blank",t.dispatchEvent(new MouseEvent("click"))}doit(e="save"){switch(e){case"save":this.save("bokeh_plot");break;case"copy":this.copy()}}}t.SaveToolView=n,n.__name__="SaveToolView";class s extends a.ActionTool{constructor(e){super(e),this.tool_name="Save",this.icon=i.bk_tool_icon_save}static init_SaveTool(){this.prototype.default_view=n,this.register_alias("save",()=>new s)}get menu(){return[{icon:"bk-tool-icon-copy-to-clipboard",tooltip:"Copy image to clipboard",if:()=>"undefined"!=typeof ClipboardItem,handler:()=>{this.do.emit("copy")}}]}}t.SaveTool=s,s.__name__="SaveTool",s.init_SaveTool()},n”, ” function _(o,t,e){Object.defineProperty(e,"__esModule",{value:!0});const n=o(307),i=o(309);class s extends n.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_undo())}doit(){this.plot_view.undo()}}e.UndoToolView=s,s.__name__="UndoToolView";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name="Undo",this.icon=i.bk_tool_icon_undo}static init_UndoTool(){this.prototype.default_view=s,this.override({disabled:!0}),this.register_alias("undo",()=>new _)}}e.UndoTool=_,_.__name__="UndoTool",_.init_UndoTool()},n”, ” function _(o,i,e){Object.defineProperty(e,"__esModule",{value:!0});const n=o(353),s=o(309);class t extends n.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name="Zoom In",this.icon=s.bk_tool_icon_zoom_in}static init_ZoomInTool(){this.prototype.default_view=n.ZoomBaseToolView,this.register_alias("zoom_in",()=>new t({dimensions:"both"})),this.register_alias("xzoom_in",()=>new t({dimensions:"width"})),this.register_alias("yzoom_in",()=>new t({dimensions:"height"}))}}e.ZoomInTool=t,t.__name__="ZoomInTool",t.init_ZoomInTool()},n”, ” function _(o,t,e){Object.defineProperty(e,"__esModule",{value:!0});const i=o(1),s=o(307),n=o(354),_=i.__importStar(o(18));class l extends s.ActionToolView{doit(){const o=this.plot_view.frame,t=this.model.dimensions,e="width"==t||"both"==t,i="height"==t||"both"==t,s=n.scale_range(o,this.model.sign*this.model.factor,e,i);this.plot_view.push_state("zoom_out",{range:s}),this.plot_view.update_range(s,!1,!0),this.model.document&&this.model.document.interactive_start(this.plot_model)}}e.ZoomBaseToolView=l,l.__name__="ZoomBaseToolView";class a extends s.ActionTool{constructor(o){super(o)}static init_ZoomBaseTool(){this.prototype.default_view=l,this.define({factor:[_.Percent,.1],dimensions:[_.Dimensions,"both"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.ZoomBaseTool=a,a.__name__="ZoomBaseTool",a.init_ZoomBaseTool()},n”, ” function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=n(10);function r(n,e,t){const[o,r]=[n.start,n.end],s=null!=t?t:(r+o)/2;return[o-(o-s)*e,r-(r-s)*e]}function s(n,[e,t]){const o=new Map;for(const[r,s]of n){const[n,c]=s.r_invert(e,t);o.set(r,{start:n,end:c})}return o}t.scale_highlow=r,t.get_info=s,t.scale_range=function(n,e,t=!0,c=!0,l){e=o.clamp(e,-.9,.9);const a=t?e:0,[u,_]=r(n.bbox.h_range,a,null!=l?l.x:void 0),i=s(n.x_scales,[u,_]),f=c?e:0,[d,b]=r(n.bbox.v_range,f,null!=l?l.y:void 0);return{xrs:i,yrs:s(n.y_scales,[d,b]),factor:e}}},n”, ” function _(o,t,i){Object.defineProperty(i,"__esModule",{value:!0});const e=o(353),s=o(309);class n extends e.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name="Zoom Out",this.icon=s.bk_tool_icon_zoom_out}static init_ZoomOutTool(){this.prototype.default_view=e.ZoomBaseToolView,this.register_alias("zoom_out",()=>new n({dimensions:"both"})),this.register_alias("xzoom_out",()=>new n({dimensions:"width"})),this.register_alias("yzoom_out",()=>new n({dimensions:"height"}))}}i.ZoomOutTool=n,n.__name__="ZoomOutTool",n.init_ZoomOutTool()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1).__importStar(e(18)),i=e(9),n=e(8),r=e(11),_=e(306);class c extends _.GestureToolView{constructor(){super(…arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:o}=e;return t||o?t&&!o?"append":!t&&o?"intersect":t&&o?"subtract":void r.unreachable():"replace"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,o){if(!this.plot_view.frame.bbox.contains(e,t))return null;const s=this.plot_view.renderer_views.get(o);return[s.coordinates.x_scale.invert(e),s.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,o=t.selected.indices;o.sort();for(const e of t.columns()){const s=t.get_array(e);for(let e=0;e<o.length;e++){const t=o[e];s.splice(t-e,1)}}this._emit_cds_changes(t)}_pop_glyphs(e,t){const o=e.columns();if(t&&o.length)for(const s of o){let o=e.get_array(s);const i=o.length-t+1;i<1||(n.isArray(o)||(o=Array.from(o),e.data[s]=o),o.splice(0,i))}}_emit_cds_changes(e,t=!0,o=!0,s=!0){o&&e.selection_manager.clear(),t&&e.change.emit(),s&&(e.data=e.data,e.properties.data.change.emit())}_drag_points(e,t,o="both"){if(null==this._basepoint)return;const[s,i]=this._basepoint;for(const n of t){const t=this._map_drag(s,i,n),r=this._map_drag(e.sx,e.sy,n);if(null==r||null==t)continue;const[_,c]=r,[a,l]=t,[d,u]=[_-a,c-l],h=n.glyph,m=n.data_source,[p,f]=[h.x.field,h.y.field];for(const e of m.selected.indices)!p||"width"!=o&&"both"!=o||(m.data[p][e]+=d),!f||"height"!=o&&"both"!=o||(m.data[f][e]+=u);m.change.emit()}this._basepoint=[e.sx,e.sy]}_pad_empty_columns(e,t){for(const o of e.columns())i.includes(t,o)||e.get_array(o).push(this.model.empty_value)}_select_event(e,t,o){const s=this.plot_view.frame,{sx:i,sy:n}=e;if(!s.bbox.contains(i,n))return[];const r={type:"point",sx:i,sy:n},_=[];for(const e of o){const o=e.get_selection_manager(),s=e.data_source,i=[this.plot_view.renderer_views.get(e)];o.select(i,r,!0,t)&&_.push(e),s.properties.selected.change.emit()}return _}}o.EditToolView=c,c.__name__="EditToolView";class a extends _.GestureTool{constructor(e){super(e)}static init_EditTool(){this.define({custom_icon:[s.String],custom_tooltip:[s.String],empty_value:[s.Any],renderers:[s.Array,[]]})}get tooltip(){return this.custom_tooltip||this.tool_name}get computed_icon(){return this.custom_icon||this.icon}}o.EditTool=a,a.__name__="EditTool",a.init_EditTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),_=e(72),o=i.__importStar(e(18)),n=e(356),a=e(309);class d extends n.EditToolView{_tap(e){null==this._draw_basepoint&&null==this._basepoint&&this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)if(e.keyCode===_.Keys.Backspace)this._delete_selected(t);else if(e.keyCode==_.Keys.Esc){t.data_source.selection_manager.clear()}}_set_extent([e,t],[s,i],_,o=!1){const n=this.model.renderers[0],a=this.plot_view.renderer_views.get(n),d=n.glyph,l=n.data_source,[r,h]=a.coordinates.x_scale.r_invert(e,t),[p,u]=a.coordinates.y_scale.r_invert(s,i),[c,m]=[(r+h)/2,(p+u)/2],[f,b]=[h-r,u-p],[x,y]=[d.x.field,d.y.field],[w,v]=[d.width.field,d.height.field];if(_)this._pop_glyphs(l,this.model.num_objects),x&&l.get_array(x).push(c),y&&l.get_array(y).push(m),w&&l.get_array(w).push(f),v&&l.get_array(v).push(b),this._pad_empty_columns(l,[x,y,w,v]);else{const e=l.data[x].length-1;x&&(l.data[x][e]=c),y&&(l.data[y][e]=m),w&&(l.data[w][e]=f),v&&(l.data[v][e]=b)}this._emit_cds_changes(l,!0,!1,o)}_update_box(e,t=!1,s=!1){if(null==this._draw_basepoint)return;const i=[e.sx,e.sy],_=this.plot_view.frame,o=this.model.dimensions,n=this.model._get_dim_limits(this._draw_basepoint,i,_,o);if(null!=n){const[e,i]=n;this._set_extent(e,i,t,s)}}_doubletap(e){this.model.active&&(null!=this._draw_basepoint?(this._update_box(e,!1,!0),this._draw_basepoint=null):(this._draw_basepoint=[e.sx,e.sy],this._select_event(e,"append",this.model.renderers),this._update_box(e,!0,!1)))}_move(e){this._update_box(e,!1,!1)}_pan_start(e){if(e.shiftKey){if(null!=this._draw_basepoint)return;this._draw_basepoint=[e.sx,e.sy],this._update_box(e,!0,!1)}else{if(null!=this._basepoint)return;this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy]}}_pan(e,t=!1,s=!1){if(e.shiftKey){if(null==this._draw_basepoint)return;this._update_box(e,t,s)}else{if(null==this._basepoint)return;this._drag_points(e,this.model.renderers)}}_pan_end(e){if(this._pan(e,!1,!0),e.shiftKey)this._draw_basepoint=null;else{this._basepoint=null;for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0)}}}s.BoxEditToolView=d,d.__name__="BoxEditToolView";class l extends n.EditTool{constructor(e){super(e),this.tool_name="Box Edit Tool",this.icon=a.bk_tool_icon_box_edit,this.event_type=["tap","pan","move"],this.default_order=1}static init_BoxEditTool(){this.prototype.default_view=d,this.define({dimensions:[o.Dimensions,"both"],num_objects:[o.Int,0]})}}s.BoxEditTool=l,l.__name__="BoxEditTool",l.init_BoxEditTool()},n”, ” function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),r=e(72),_=s.__importStar(e(18)),o=e(8),i=e(356),d=e(309);class n extends i.EditToolView{_draw(e,t,a=!1){if(!this.model.active)return;const s=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,s);if(null==r)return;const[_,i]=r,d=s.data_source,n=s.glyph,[l,h]=[n.xs.field,n.ys.field];if("new"==t)this._pop_glyphs(d,this.model.num_objects),l&&d.get_array(l).push([_]),h&&d.get_array(h).push([i]),this._pad_empty_columns(d,[l,h]);else if("add"==t){if(l){const e=d.data[l].length-1;let t=d.get_array(l)[e];o.isArray(t)||(t=Array.from(t),d.data[l][e]=t),t.push(_)}if(h){const e=d.data[h].length-1;let t=d.get_array(h)[e];o.isArray(t)||(t=Array.from(t),d.data[h][e]=t),t.push(i)}}this._emit_cds_changes(d,!0,!0,a)}_pan_start(e){this._draw(e,"new")}_pan(e){this._draw(e,"add")}_pan_end(e){this._draw(e,"add",!0)}_tap(e){this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===r.Keys.Esc?t.data_source.selection_manager.clear():e.keyCode===r.Keys.Backspace&&this._delete_selected(t)}}a.FreehandDrawToolView=n,n.__name__="FreehandDrawToolView";class l extends i.EditTool{constructor(e){super(e),this.tool_name="Freehand Draw Tool",this.icon=d.bk_tool_icon_freehand_draw,this.event_type=["pan","tap"],this.default_order=3}static init_FreehandDrawTool(){this.prototype.default_view=n,this.define({num_objects:[_.Int,0]})}}a.FreehandDrawTool=l,l.__name__="FreehandDrawTool",l.init_FreehandDrawTool()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1),i=e(72),a=s.__importStar(e(18)),n=e(356),_=e(309);class r extends n.EditToolView{_tap(e){if(this._select_event(e,this._select_mode(e),this.model.renderers).length||!this.model.add)return;const t=this.model.renderers[0],o=this._map_drag(e.sx,e.sy,t);if(null==o)return;const s=t.glyph,i=t.data_source,[a,n]=[s.x.field,s.y.field],[_,r]=o;this._pop_glyphs(i,this.model.num_objects),a&&i.get_array(a).push(_),n&&i.get_array(n).push(r),this._pad_empty_columns(i,[a,n]),i.change.emit(),i.data=i.data,i.properties.data.change.emit()}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===i.Keys.Backspace?this._delete_selected(t):e.keyCode==i.Keys.Esc&&t.data_source.selection_manager.clear()}_pan_start(e){this.model.drag&&(this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){this.model.drag&&null!=this._basepoint&&this._drag_points(e,this.model.renderers)}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0);this._basepoint=null}}}o.PointDrawToolView=r,r.__name__="PointDrawToolView";class d extends n.EditTool{constructor(e){super(e),this.tool_name="Point Draw Tool",this.icon=_.bk_tool_icon_point_draw,this.event_type=["tap","pan","move"],this.default_order=2}static init_PointDrawTool(){this.prototype.default_view=r,this.define({add:[a.Boolean,!0],drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}o.PointDrawTool=d,d.__name__="PointDrawTool",d.init_PointDrawTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(72),a=i.__importStar(e(18)),o=e(8),n=e(361),_=e(309);class d extends n.PolyToolView{constructor(){super(…arguments),this._drawing=!1,this._initialized=!1}_tap(e){this._drawing?this._draw(e,"add",!0):this._select_event(e,this._select_mode(e),this.model.renderers)}_draw(e,t,s=!1){const i=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,i);if(this._initialized||this.activate(),null==r)return;const[a,n]=this._snap_to_vertex(e,…r),_=i.data_source,d=i.glyph,[l,h]=[d.xs.field,d.ys.field];if("new"==t)this._pop_glyphs(_,this.model.num_objects),l&&_.get_array(l).push([a,a]),h&&_.get_array(h).push([n,n]),this._pad_empty_columns(_,[l,h]);else if("edit"==t){if(l){const e=_.data[l][_.data[l].length-1];e[e.length-1]=a}if(h){const e=_.data[h][_.data[h].length-1];e[e.length-1]=n}}else if("add"==t){if(l){const e=_.data[l].length-1;let t=_.get_array(l)[e];const s=t[t.length-1];t[t.length-1]=a,o.isArray(t)||(t=Array.from(t),_.data[l][e]=t),t.push(s)}if(h){const e=_.data[h].length-1;let t=_.get_array(h)[e];const s=t[t.length-1];t[t.length-1]=n,o.isArray(t)||(t=Array.from(t),_.data[h][e]=t),t.push(s)}}this._emit_cds_changes(_,!0,!1,s)}_show_vertices(){if(!this.model.active)return;const e=[],t=[];for(let s=0;s<this.model.renderers.length;s++){const i=this.model.renderers[s],r=i.data_source,a=i.glyph,[o,n]=[a.xs.field,a.ys.field];if(o)for(const t of r.get_array(o))Array.prototype.push.apply(e,t);if(n)for(const e of r.get_array(n))Array.prototype.push.apply(t,e);this._drawing&&s==this.model.renderers.length-1&&(e.splice(e.length-1,1),t.splice(t.length-1,1))}this._set_vertices(e,t)}_doubletap(e){this.model.active&&(this._drawing?(this._drawing=!1,this._draw(e,"edit",!0)):(this._drawing=!0,this._draw(e,"new",!0)))}_move(e){this._drawing&&this._draw(e,"edit")}_remove(){const e=this.model.renderers[0],t=e.data_source,s=e.glyph,[i,r]=[s.xs.field,s.ys.field];if(i){const e=t.data[i].length-1,s=t.get_array(i)[e];s.splice(s.length-1,1)}if(r){const e=t.data[r].length-1,s=t.get_array(r)[e];s.splice(s.length-1,1)}this._emit_cds_changes(t)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===r.Keys.Backspace?this._delete_selected(t):e.keyCode==r.Keys.Esc&&(this._drawing&&(this._remove(),this._drawing=!1),t.data_source.selection_manager.clear())}_pan_start(e){this.model.drag&&(this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){if(null==this._basepoint||!this.model.drag)return;const[t,s]=this._basepoint;for(const i of this.model.renderers){const r=this._map_drag(t,s,i),a=this._map_drag(e.sx,e.sy,i);if(null==a||null==r)continue;const o=i.data_source,n=i.glyph,[_,d]=[n.xs.field,n.ys.field];if(!_&&!d)continue;const[l,h]=a,[c,g]=r,[p,f]=[l-c,h-g];for(const e of o.selected.indices){let t,s,i;_&&(s=o.data[_][e]),d?(i=o.data[d][e],t=i.length):t=s.length;for(let e=0;e<t;e++)s&&(s[e]+=p),i&&(i[e]+=f)}o.change.emit()}this._basepoint=[e.sx,e.sy]}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source);this._basepoint=null}}activate(){if(this.model.vertex_renderer&&this.model.active){if(this._show_vertices(),!this._initialized)for(const e of this.model.renderers){const t=e.data_source;t.connect(t.properties.data.change,()=>this._show_vertices())}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=d,d.__name__="PolyDrawToolView";class l extends n.PolyTool{constructor(e){super(e),this.tool_name="Polygon Draw Tool",this.icon=_.bk_tool_icon_poly_draw,this.event_type=["pan","tap","move"],this.default_order=3}static init_PolyDrawTool(){this.prototype.default_view=d,this.define({drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}s.PolyDrawTool=l,l.__name__="PolyDrawTool",l.init_PolyDrawTool()},n”, ” function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(1).__importStar(e(18)),i=e(8),s=e(356);class _ extends s.EditToolView{_set_vertices(e,t){const r=this.model.vertex_renderer.glyph,o=this.model.vertex_renderer.data_source,[s,_]=[r.x.field,r.y.field];s&&(i.isArray(e)?o.data[s]=e:r.x={value:e}),_&&(i.isArray(t)?o.data[_]=t:r.y={value:t}),this._emit_cds_changes(o,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,t,r){if(this.model.vertex_renderer){const o=this._select_event(e,"replace",[this.model.vertex_renderer]),i=this.model.vertex_renderer.data_source,s=this.model.vertex_renderer.glyph,[_,l]=[s.x.field,s.y.field];if(o.length){const e=i.selected.indices[0];_&&(t=i.data[_][e]),l&&(r=i.data[l][e]),i.selection_manager.clear()}}return[t,r]}}r.PolyToolView=_,_.__name__="PolyToolView";class l extends s.EditTool{constructor(e){super(e)}static init_PolyTool(){this.prototype.default_view=_,this.define({vertex_renderer:[o.Instance]})}}r.PolyTool=l,l.__name__="PolyTool",l.init_PolyTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(72),i=e(8),_=e(361),d=e(309);class n extends _.PolyToolView{constructor(){super(…arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,"replace",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this._select_event(e,"replace",this.model.renderers);if(!t.length)return this._set_vertices([],[]),this._selected_renderer=null,void(this._drawing=!1);const s=t[0],r=s.glyph,_=s.data_source,d=_.selected.indices[0],[n,l]=[r.xs.field,r.ys.field];let a,c;n?(a=_.data[n][d],i.isArray(a)||(_.data[n][d]=a=Array.from(a))):a=r.xs.value,l?(c=_.data[l][d],i.isArray(c)||(_.data[l][d]=c=Array.from(c))):c=r.ys.value,this._selected_renderer=s,this._set_vertices(a,c)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,"append",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===r.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==r.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=n,n.__name__="PolyEditToolView";class l extends _.PolyTool{constructor(e){super(e),this.tool_name="Poly Edit Tool",this.icon=d.bk_tool_icon_poly_edit,this.event_type=["tap","pan","move"],this.default_order=4}static init_PolyEditTool(){this.prototype.default_view=n}}s.PolyEditTool=l,l.__name__="PolyEditTool",l.init_PolyEditTool()},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1),i=e(364),l=e(124),_=s.__importStar(e(18)),n=e(309);class c extends i.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if("center"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.push_state("box_select",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l="replace"){const _={type:"rect",sx0:e,sx1:t,sy0:o,sy1:s};this._select(_,i,l)}}o.BoxSelectToolView=c,c.__name__="BoxSelectToolView";const r=()=>new l.BoxAnnotation({level:"overlay",top_units:"screen",left_units:"screen",bottom_units:"screen",right_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.SelectTool{constructor(e){super(e),this.tool_name="Box Select",this.icon=n.bk_tool_icon_box_select,this.event_type="pan",this.default_order=30}static init_BoxSelectTool(){this.prototype.default_view=c,this.define({dimensions:[_.Dimensions,"both"],select_every_mousemove:[_.Boolean,!1],overlay:[_.Instance,r],origin:[_.BoxOrigin,"corner"]}),this.register_alias("box_select",()=>new h),this.register_alias("xbox_select",()=>new h({dimensions:"width"})),this.register_alias("ybox_select",()=>new h({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}o.BoxSelectTool=h,h.__name__="BoxSelectTool",h.init_BoxSelectTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(1),o=e(306),r=e(90),c=e(116),i=e(365),l=n.__importStar(e(18)),a=e(72),_=e(313),d=e(15),h=e(11);class p extends o.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect(()=>this._clear())}get computed_renderers(){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;return i.compute_renderers(e,t,s)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof r.GlyphRenderer)n=s.data_source;else{if(!(s instanceof c.GraphRenderer))continue;n=s.node_renderer.data_source}const o=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[…o,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?"append":!t&&s?"intersect":t&&s?"subtract":void h.unreachable():this.model.mode}_keyup(e){e.keyCode==a.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();this.plot_view.request_render()}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,o]of n){const n=o[0].get_selection_manager(),r=[];for(const e of o){const t=this.plot_view.renderer_views.get(e);null!=t&&r.push(t)}n.select(r,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let o;switch(e.type){case"point":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case"span":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case"rect":{const{sx0:t,sx1:r,sy0:c,sy1:i}=e,[l,a]=s.r_invert(t,r),[_,d]=n.r_invert(c,i);o=Object.assign(Object.assign({},e),{x0:l,y0:_,x1:a,y1:d});break}case"poly":{const{sx:t,sy:r}=e,c=s.v_invert(t),i=n.v_invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new _.SelectionGeometry(o,t))}}s.SelectToolView=p,p.__name__="SelectToolView";class u extends o.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new d.Signal0(this,"clear")}static init_SelectTool(){this.define({renderers:[l.Any,"auto"],names:[l.Array,[]],mode:[l.Any,"replace"]})}get menu(){return[{icon:"bk-tool-icon-replace-mode",tooltip:"Replace the current selection",active:()=>"replace"==this.mode,handler:()=>{this.mode="replace",this.active=!0}},{icon:"bk-tool-icon-append-mode",tooltip:"Append to the current selection (Shift)",active:()=>"append"==this.mode,handler:()=>{this.mode="append",this.active=!0}},{icon:"bk-tool-icon-intersect-mode",tooltip:"Intersect with the current selection (Ctrl)",active:()=>"intersect"==this.mode,handler:()=>{this.mode="intersect",this.active=!0}},{icon:"bk-tool-icon-subtract-mode",tooltip:"Subtract from the current selection (Shift+Ctrl)",active:()=>"subtract"==this.mode,handler:()=>{this.mode="subtract",this.active=!0}},null,{icon:"bk-tool-icon-clear-selection",tooltip:"Clear the current selection (Esc)",handler:()=>{this.clear.emit()}}]}}s.SelectTool=u,u.__name__="SelectTool",u.init_SelectTool()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(9);t.compute_renderers=function(e,n,t){if(null==e)return[];let u="auto"==e?n:e;return t.length>0&&(u=u.filter(e=>r.includes(t,e.name))),u}},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t(1),i=t(306),n=t(124),_=s.__importStar(t(18)),a=t(309);class l extends i.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m<n&&(m=n)),l=Math.abs(p-m),t[1]<=o[1]?(b=t[1],d=t[1]+l/s,d>_&&(d=_)):(d=t[1],b=t[1]-l/s,b<a&&(b=a)),r=Math.abs(d-b),t[0]<=o[0]?p=t[0]+s*r:m=t[0]-s*r,[[m,p],[b,d]]}_compute_limits(t){const o=this.plot_view.frame,e=this.model.dimensions;let s,i,n=this._base_point;if("center"==this.model.origin){const[o,e]=n,[s,i]=t;n=[o-(s-o),e-(i-e)]}return this.model.match_aspect&&"both"==e?[s,i]=this._match_aspect(n,t,o):[s,i]=this.model._get_dim_limits(n,t,o,e),[s,i]}_pan_start(t){this._base_point=[t.sx,t.sy]}_pan(t){const o=[t.sx,t.sy],[e,s]=this._compute_limits(o);this.model.overlay.update({left:e[0],right:e[1],top:s[0],bottom:s[1]})}_pan_end(t){const o=[t.sx,t.sy],[e,s]=this._compute_limits(o);this._update(e,s),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null}_update([t,o],[e,s]){if(Math.abs(o-t)<=5||Math.abs(s-e)<=5)return;const{x_scales:i,y_scales:n}=this.plot_view.frame,_=new Map;for(const[e,s]of i){const[i,n]=s.r_invert(t,o);_.set(e,{start:i,end:n})}const a=new Map;for(const[t,o]of n){const[i,n]=o.r_invert(e,s);a.set(t,{start:i,end:n})}const l={xrs:_,yrs:a};this.plot_view.push_state("box_zoom",{range:l}),this.plot_view.update_range(l)}}e.BoxZoomToolView=l,l.__name__="BoxZoomToolView";const r=()=>new n.BoxAnnotation({level:"overlay",top_units:"screen",left_units:"screen",bottom_units:"screen",right_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.GestureTool{constructor(t){super(t),this.tool_name="Box Zoom",this.icon=a.bk_tool_icon_box_zoom,this.event_type="pan",this.default_order=20}static init_BoxZoomTool(){this.prototype.default_view=l,this.define({dimensions:[_.Dimensions,"both"],overlay:[_.Instance,r],match_aspect:[_.Boolean,!1],origin:[_.BoxOrigin,"corner"]}),this.register_alias("box_zoom",()=>new h({dimensions:"both"})),this.register_alias("xbox_zoom",()=>new h({dimensions:"width"})),this.register_alias("ybox_zoom",()=>new h({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.BoxZoomTool=h,h.__name__="BoxZoomTool",h.init_BoxZoomTool()},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),a=e(364),i=e(368),l=e(72),_=o.__importStar(e(18)),c=e(309);class n extends a.SelectToolView{initialize(){super.initialize(),this.data=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_overlay()}_keyup(e){e.keyCode==l.Keys.Enter&&this._clear_overlay()}_pan_start(e){const{sx:s,sy:t}=e;this.data={sx:[s],sy:[t]}}_pan(e){const{sx:s,sy:t}=e,[o,a]=this.plot_view.frame.bbox.clip(s,t);this.data.sx.push(o),this.data.sy.push(a);this.model.overlay.update({xs:this.data.sx,ys:this.data.sy}),this.model.select_every_mousemove&&this._do_select(this.data.sx,this.data.sy,!1,this._select_mode(e))}_pan_end(e){this._clear_overlay(),this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state("lasso_select",{selection:this.plot_view.get_selection()})}_clear_overlay(){this.model.overlay.update({xs:[],ys:[]})}_do_select(e,s,t,o){const a={type:"poly",sx:e,sy:s};this._select(a,t,o)}}t.LassoSelectToolView=n,n.__name__="LassoSelectToolView";class h extends a.SelectTool{constructor(e){super(e),this.tool_name="Lasso Select",this.icon=c.bk_tool_icon_lasso_select,this.event_type="pan",this.default_order=12}static init_LassoSelectTool(){this.prototype.default_view=n,this.define({select_every_mousemove:[_.Boolean,!0],overlay:[_.Instance,i.DEFAULT_POLY_OVERLAY]}),this.register_alias("lasso_select",()=>new h)}}t.LassoSelectTool=h,h.__name__="LassoSelectTool",h.init_LassoSelectTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const l=e(1),i=e(364),o=e(166),a=e(72),_=l.__importStar(e(18)),c=e(9),n=e(309);class h extends i.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==a.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state("poly_select",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:c.copy(this.data.sx),ys:c.copy(this.data.sy)}))}_do_select(e,t,s,l){const i={type:"poly",sx:e,sy:t};this._select(i,s,l)}}s.PolySelectToolView=h,h.__name__="PolySelectToolView",s.DEFAULT_POLY_OVERLAY=()=>new o.PolyAnnotation({level:"overlay",xs_units:"screen",ys_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class y extends i.SelectTool{constructor(e){super(e),this.tool_name="Poly Select",this.icon=n.bk_tool_icon_polygon_select,this.event_type="tap",this.default_order=11}static init_PolySelectTool(){this.prototype.default_view=h,this.define({overlay:[_.Instance,s.DEFAULT_POLY_OVERLAY]}),this.register_alias("poly_select",()=>new y)}}s.PolySelectTool=y,y.__name__="PolySelectTool",y.init_PolySelectTool()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(370),r=s.__importStar(e(18)),_=e(309);class d extends n.LineToolView{constructor(){super(…arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const i of t){1==this._select_event(e,"replace",[i]).length&&(this._selected_renderer=i)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[i,s]=[t.x.field,t.y.field],n=e.get_array(i),r=e.get_array(s);this._set_intersection(n,r)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const i=this._select_mode(e);if(0==this._select_event(e,i,[t]).length)return}const i=this._select_mode(e);this._select_event(e,i,[t]),this._select_event(e,i,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[i,s]=[e.x.field,e.y.field];if(i&&s){const e=t.data[i],n=t.data[s];this._selected_renderer.data_source.data[i]=e,this._selected_renderer.data_source.data[s]=n}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,"append",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}i.LineEditToolView=d,d.__name__="LineEditToolView";class o extends n.LineTool{constructor(e){super(e),this.tool_name="Line Edit Tool",this.icon=_.bk_tool_icon_line_edit,this.event_type=["tap","pan","move"],this.default_order=4}static init_LineEditTool(){this.prototype.default_view=d,this.define({dimensions:[r.Dimensions,"both"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}i.LineEditTool=o,o.__name__="LineEditTool",o.init_LineEditTool()},n”, ” function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1).__importStar(e(18)),o=e(8),s=e(356);class _ extends s.EditToolView{_set_intersection(e,i){const t=this.model.intersection_renderer.glyph,n=this.model.intersection_renderer.data_source,[s,_]=[t.x.field,t.y.field];s&&(o.isArray(e)?n.data[s]=e:t.x={value:e}),_&&(o.isArray(i)?n.data[_]=i:t.y={value:i}),this._emit_cds_changes(n,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}t.LineToolView=_,_.__name__="LineToolView";class r extends s.EditTool{constructor(e){super(e)}static init_LineTool(){this.prototype.default_view=_,this.define({intersection_renderer:[n.Instance]})}}t.LineTool=r,r.__name__="LineTool",r.init_LineTool()},n”, ” function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(1),i=t(306),o=n.__importStar(t(18)),a=t(309);function _(t,s,e){const n=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,e);n.set(i,{start:t,end:a})}return n}e.update_ranges=_;class h extends i.GestureToolView{_pan_start(t){this.last_dx=0,this.last_dy=0;const{sx:s,sy:e}=t,n=this.plot_view.frame.bbox;if(!n.contains(s,e)){const t=n.h_range,i=n.v_range;(s<t.start||s>t.end)&&(this.v_axis_only=!0),(e<i.start||e>i.end)&&(this.h_axis_only=!0)}null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan(t){this._update(t.deltaX,t.deltaY),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.push_state("pan",{range:this.pan_info})}_update(t,s){const e=this.plot_view.frame,n=t-this.last_dx,i=s-this.last_dy,o=e.bbox.h_range,a=o.start-n,h=o.end-n,l=e.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,x,y,g;"width"!=p&&"both"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=h,m=-n),"height"!=p&&"both"!=p||this.h_axis_only?(x=l.start,y=l.end,g=0):(x=r,y=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:b}=e,f=_(w,c,u),v=_(b,x,y);this.pan_info={xrs:f,yrs:v,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,!0)}}e.PanToolView=h,h.__name__="PanToolView";class l extends i.GestureTool{constructor(t){super(t),this.tool_name="Pan",this.event_type="pan",this.default_order=10}static init_PanTool(){this.prototype.default_view=h,this.define({dimensions:[o.Dimensions,"both"]}),this.register_alias("pan",()=>new l({dimensions:"both"})),this.register_alias("xpan",()=>new l({dimensions:"width"})),this.register_alias("ypan",()=>new l({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip("Pan",this.dimensions)}get icon(){switch(this.dimensions){case"both":return a.bk_tool_icon_pan;case"width":return a.bk_tool_icon_xpan;case"height":return a.bk_tool_icon_ypan}}}e.PanTool=l,l.__name__="PanTool",l.init_PanTool()},n”, ” function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(124),l=e(19),a=s.__importStar(e(18)),r=e(306),o=e(309);function _(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function h(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)<s}function d(e,t,i,s,n){let l=!0;if(null!=n.left&&null!=n.right){const t=i.invert(e);(t<n.left||t>n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(e<n.bottom||e>n.top)&&(l=!1)}return l}function u(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function c(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function g(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,_(i))}function y(e,t,i){return e<t.end?(t.start=e,i):(t.start=t.end,t.end=e,_(i))}function f(e,t,i,s){const[n,l]=t.r_compute(e.start,e.end),[a,r]=t.r_invert(n+i,l+i),o=u(e.start,e.end,s);u(a,r,s)>=o&&(e.start=a,e.end=r)}i.flip_side=_,i.is_near=h,i.is_inside=d,i.sides_inside=u,i.compute_value=c,i.update_range_end_side=g,i.update_range_start_side=y,i.update_range=f;class p extends r.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,()=>this.model.update_overlay_from_ranges()),null!=this.model.y_range&&this.connect(this.model.y_range.change,()=>this.model.update_overlay_from_ranges())}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,l=s.x_scale,a=s.y_scale,r=this.model.overlay,{left:o,right:_,top:u,bottom:c}=r,g=this.model.overlay.properties.line_width.value()+n.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(h(e.sx,o,l,g)?this.side=1:h(e.sx,_,l,g)?this.side=2:d(e.sx,e.sy,l,a,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&h(e.sy,c,a,g)&&(this.side=4),0==this.side&&h(e.sy,u,a,g)?this.side=5:d(e.sx,e.sy,l,a,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)f(n,a,i,t.x_range);else if(1==this.side){const e=c(n.start,a,i,t.x_range);this.side=y(e,n,this.side)}else if(2==this.side){const e=c(n.end,a,i,t.x_range);this.side=g(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)f(l,r,s,t.y_range);else if(4==this.side){const e=c(l.start,r,s,t.y_range);this.side=y(e,l,this.side)}else if(5==this.side){const e=c(l.end,r,s,t.y_range);this.side=g(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0}}i.RangeToolView=p,p.__name__="RangeToolView";const m=()=>new n.BoxAnnotation({level:"overlay",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:.5,line_dash:[2,2]});class v extends r.GestureTool{constructor(e){super(e),this.tool_name="Range Tool",this.icon=o.bk_tool_icon_range,this.event_type="pan",this.default_order=1}static init_RangeTool(){this.prototype.default_view=p,this.define({x_range:[a.Instance,null],x_interaction:[a.Boolean,!0],y_range:[a.Instance,null],y_interaction:[a.Boolean,!0],overlay:[a.Instance,m]})}initialize(){super.initialize(),this.overlay.in_cursor="grab",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?"ew-resize":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?"ns-resize":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,l.logger.warn("RangeTool not configured with any Ranges.")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=v,v.__name__="RangeTool",v.init_RangeTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),i=e(364),c=o.__importStar(e(18)),n=e(309);class a extends i.SelectToolView{_tap(e){const{sx:t,sy:s}=e,o={type:"point",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const o=this.model.callback;if("select"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,c]of i){const i=c[0].get_selection_manager(),n=c.map(e=>this.plot_view.renderer_views.get(e));if(i.select(n,e,t,s)&&null!=o){const t=n[0].coordinates.x_scale.invert(e.sx),s=n[0].coordinates.y_scale.invert(e.sy),c={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,c)}}this._emit_selection_event(e),this.plot_view.push_state("tap",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),c=s.coordinates.y_scale.invert(e.sy),n={geometries:Object.assign(Object.assign({},e),{x:t,y:c}),source:i.source};o.execute(this.model,n)}}}}s.TapToolView=a,a.__name__="TapToolView";class _ extends i.SelectTool{constructor(e){super(e),this.tool_name="Tap",this.icon=n.bk_tool_icon_tap_select,this.event_type="tap",this.default_order=10}static init_TapTool(){this.prototype.default_view=a,this.define({behavior:[c.TapBehavior,"select"],callback:[c.Any]}),this.register_alias("click",()=>new _({behavior:"inspect"})),this.register_alias("tap",()=>new _)}}s.TapTool=_,_.__name__="TapTool",_.init_TapTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),o=e(306),n=i.__importStar(e(18)),a=e(309),l=e(371);class _ extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,[o,n]=[s.start,s.end],[a,_]=[i.start,i.end];let h,r,d,p;switch(this.model.dimension){case"height":{const t=Math.abs(_-a);h=o,r=n,d=a-t*e,p=_-t*e;break}case"width":{const t=Math.abs(n-o);h=o-t*e,r=n-t*e,d=a,p=_;break}default:throw new Error("this shouldn’t have happened")}const{x_scales:c,y_scales:u}=t,m={xrs:l.update_ranges(c,h,r),yrs:l.update_ranges(u,d,p),factor:e};this.plot_view.push_state("wheel_pan",{range:m}),this.plot_view.update_range(m,!1,!0),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}s.WheelPanToolView=_,_.__name__="WheelPanToolView";class h extends o.GestureTool{constructor(e){super(e),this.tool_name="Wheel Pan",this.icon=a.bk_tool_icon_wheel_pan,this.event_type="scroll",this.default_order=12}static init_WheelPanTool(){this.prototype.default_view=_,this.define({dimension:[n.Dimension,"width"]}),this.internal({speed:[n.Number,.001]}),this.register_alias("xwheel_pan",()=>new h({dimension:"width"})),this.register_alias("ywheel_pan",()=>new h({dimension:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimension)}}s.WheelPanTool=h,h.__name__="WheelPanTool",h.init_WheelPanTool()},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),i=e(306),l=e(354),n=s.__importStar(e(18)),_=e(32),h=e(309);class a extends i.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:l}=e;let n;n=s>=1?20*(s-1):-20/s,this._scroll({type:"wheel",sx:o,sy:t,delta:n,ctrlKey:i,shiftKey:l})}_scroll(e){const{frame:o}=this.plot_view,t=o.bbox.h_range,s=o.bbox.v_range,{sx:i,sy:n}=e,_=this.model.dimensions,h=("width"==_||"both"==_)&&t.start<i&&i<t.end,a=("height"==_||"both"==_)&&s.start<n&&n<s.end;if(!(h&&a||this.model.zoom_on_axis))return;const m=this.model.speed*e.delta,r=l.scale_range(o,m,h,a,{x:i,y:n});this.plot_view.push_state("wheel_zoom",{range:r}),this.plot_view.update_range(r,!1,!0,this.model.maintain_focus),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}t.WheelZoomToolView=a,a.__name__="WheelZoomToolView";class m extends i.GestureTool{constructor(e){super(e),this.tool_name="Wheel Zoom",this.icon=h.bk_tool_icon_wheel_zoom,this.event_type=_.is_mobile?"pinch":"scroll",this.default_order=10}static init_WheelZoomTool(){this.prototype.default_view=a,this.define({dimensions:[n.Dimensions,"both"],maintain_focus:[n.Boolean,!0],zoom_on_axis:[n.Boolean,!0],speed:[n.Number,1/600]}),this.register_alias("wheel_zoom",()=>new m({dimensions:"both"})),this.register_alias("xwheel_zoom",()=>new m({dimensions:"width"})),this.register_alias("ywheel_zoom",()=>new m({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}t.WheelZoomTool=m,m.__name__="WheelZoomTool",m.init_WheelZoomTool()},n”, ” function _(i,s,e){Object.defineProperty(e,"__esModule",{value:!0});const t=i(1),o=i(295),n=i(168),l=t.__importStar(i(18)),h=i(13),a=i(309);class r extends o.InspectToolView{_move(i){if(!this.model.active)return;const{sx:s,sy:e}=i;this.plot_view.frame.bbox.contains(s,e)?this._update_spans(s,e):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,s){const e=this.model.dimensions;"width"!=e&&"both"!=e||(this.model.spans.width.location=s),"height"!=e&&"both"!=e||(this.model.spans.height.location=i)}}e.CrosshairToolView=r,r.__name__="CrosshairToolView";class _ extends o.InspectTool{constructor(i){super(i),this.tool_name="Crosshair",this.icon=a.bk_tool_icon_crosshair}static init_CrosshairTool(){this.prototype.default_view=r,this.define({dimensions:[l.Dimensions,"both"],line_color:[l.Color,"black"],line_width:[l.Number,1],line_alpha:[l.Number,1]}),this.internal({spans:[l.Any]}),this.register_alias("crosshair",()=>new _)}get tooltip(){return this._get_dim_tooltip("Crosshair",this.dimensions)}get synthetic_renderers(){return h.values(this.spans)}initialize(){super.initialize(),this.spans={width:new n.Span({for_hover:!0,dimension:"width",location_units:"screen",level:"overlay",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha}),height:new n.Span({for_hover:!0,dimension:"height",location_units:"screen",level:"overlay",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha})}}}e.CrosshairTool=_,_.__name__="CrosshairTool",_.init_CrosshairTool()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(1),o=e(81),i=r.__importStar(e(18)),a=e(13),n=e(29);class u extends o.Model{constructor(e){super(e)}static init_CustomJSHover(){this.define({args:[i.Any,{}],code:[i.String,""]})}get values(){return a.values(this.args)}_make_code(e,t,s,r){return new Function(…a.keys(this.args),e,t,s,n.use_strict(r))}format(e,t,s){return this._make_code("value","format","special_vars",this.code)(…this.values,e,t,s)}}s.CustomJSHover=u,u.__name__="CustomJSHover",u.init_CustomJSHover()},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),n=e(295),i=e(171),r=e(90),l=e(116),c=e(365),a=o.__importStar(e(101)),_=e(187),d=e(72),p=o.__importStar(e(18)),h=e(22),m=e(13),u=e(303),y=e(8),f=e(115),x=e(309),v=e(172);function w(e,t,s,o,n,i){const r={x:n[e],y:i[e]},l={x:n[e+1],y:i[e+1]};let c,_;if("span"==t.type)"h"==t.direction?(c=Math.abs(r.x-s),_=Math.abs(l.x-s)):(c=Math.abs(r.y-o),_=Math.abs(l.y-o));else{const e={x:s,y:o};c=a.dist_2_pts(r,e),_=a.dist_2_pts(l,e)}return c<_?[[r.x,r.y],e]:[[l.x,l.y],e+1]}function g(e,t,s){return[[e[s],t[s]],s]}s._nearest_line_hit=w,s._line_hit=g;class b extends n.InspectToolView{initialize(){super.initialize(),this._ttmodels=null,this._ttviews=new Map;const{tooltips:e}=this.model;y.isArray(e)&&(this._template_el=this._create_template(e))}remove(){f.remove_views(this._ttviews),super.remove()}connect_signals(){super.connect_signals();for(const e of this.computed_renderers)e instanceof r.GlyphRenderer?this.connect(e.data_source.inspect,this._update):e instanceof l.GraphRenderer&&(this.connect(e.node_renderer.data_source.inspect,this._update),this.connect(e.edge_renderer.data_source.inspect,this._update));this.connect(this.model.properties.renderers.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.names.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.tooltips.change,()=>this._ttmodels=null)}_compute_ttmodels(){const e=new Map,t=this.model.tooltips;if(null!=t)for(const s of this.computed_renderers){const o=new i.Tooltip({custom:y.isString(t)||y.isFunction(t),attachment:this.model.attachment,show_arrow:this.model.show_arrow});s instanceof r.GlyphRenderer?e.set(s,o):s instanceof l.GraphRenderer&&(e.set(s.node_renderer,o),e.set(s.edge_renderer,o))}return(async()=>{const t=await f.build_views(this._ttviews,[…e.values()],{parent:this.plot_view});for(const e of t)e.render()})(),e}get computed_renderers(){if(null==this._computed_renderers){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;this._computed_renderers=c.compute_renderers(e,t,s)}return this._computed_renderers}get ttmodels(){return null==this._ttmodels&&(this._ttmodels=this._compute_ttmodels()),this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)?this._inspect(t,s):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let s;if("mouse"==this.model.mode)s={type:"point",sx:e,sy:t};else{s={type:"span",direction:"vline"==this.model.mode?"h":"v",sx:e,sy:t}}for(const e of this.computed_renderers){e.get_selection_manager().inspect(this.plot_view.renderer_views.get(e),s)}null!=this.model.callback&&this._emit_callback(s)}_update([e,{geometry:t}]){if(!this.model.active)return;if(!(e instanceof r.GlyphRendererView))return;const{model:s}=e;if("ignore"==this.model.muted_policy&&s instanceof r.GlyphRenderer&&s.muted)return;const o=this.ttmodels.get(s);if(null==o)return;const n=s.get_selection_manager();let i=n.inspectors.get(s);if(s instanceof r.GlyphRenderer&&(i=s.view.convert_selection_to_subset(i)),i.is_empty())return void o.clear();const l=n.source,{sx:c,sy:a}=t,_=e.coordinates.x_scale,p=e.coordinates.y_scale,h=_.invert(c),u=p.invert(a),y=e.glyph,f=[];for(const s of i.line_indices){let o,n,r=y._x[s+1],d=y._y[s+1],m=s;switch(this.model.line_policy){case"interp":[r,d]=y.get_interpolation_hit(s,t),o=_.compute(r),n=p.compute(d);break;case"prev":[[o,n],m]=g(y.sx,y.sy,s);break;case"next":[[o,n],m]=g(y.sx,y.sy,s+1);break;case"nearest":[[o,n],m]=w(s,t,c,a,y.sx,y.sy),r=y._x[m],d=y._y[m];break;default:[o,n]=[c,a]}const x={index:m,x:h,y:u,sx:c,sy:a,data_x:r,data_y:d,rx:o,ry:n,indices:i.line_indices,name:e.model.name};f.push([o,n,this._render_tooltips(l,m,x)])}for(const t of i.image_indices){const s={index:t.index,x:h,y:u,sx:c,sy:a,name:e.model.name},o=this._render_tooltips(l,t,s);f.push([c,a,o])}for(const o of i.indices)if(m.isEmpty(i.multiline_indices)){const t=null!=y._x?y._x[o]:void 0,n=null!=y._y?y._y[o]:void 0;let _,d,p;if("snap_to_data"==this.model.point_policy){let e=y.get_anchor_point(this.model.anchor,o,[c,a]);null==e&&(e=y.get_anchor_point("center",o,[c,a])),_=e.x,d=e.y}else[_,d]=[c,a];p=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const m={index:p,x:h,y:u,sx:c,sy:a,data_x:t,data_y:n,indices:i.indices,name:e.model.name};f.push([_,d,this._render_tooltips(l,p,m)])}else for(const n of i.multiline_indices[o.toString()]){let d,m,x,v=y._xs[o][n],b=y._ys[o][n],k=n;switch(this.model.line_policy){case"interp":[v,b]=y.get_interpolation_hit(o,n,t),d=_.compute(v),m=p.compute(b);break;case"prev":[[d,m],k]=g(y.sxs[o],y.sys[o],n);break;case"next":[[d,m],k]=g(y.sxs[o],y.sys[o],n+1);break;case"nearest":[[d,m],k]=w(n,t,c,a,y.sxs[o],y.sys[o]),v=y._xs[o][k],b=y._ys[o][k];break;default:throw new Error("should’t have happened")}x=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const A={index:x,x:h,y:u,sx:c,sy:a,data_x:v,data_y:b,segment_index:k,indices:i.multiline_indices,name:e.model.name};f.push([d,m,this._render_tooltips(l,x,A)])}if(0==f.length)o.clear();else{const{content:e}=o;d.empty(o.content);for(const[,,t]of f)e.appendChild(t);const[t,s]=f[f.length-1];o.setv({position:[t,s]},{check_eq:!1})}}_emit_callback(e){for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),o=s.coordinates.x_scale.invert(e.sx),n=s.coordinates.y_scale.invert(e.sy),i=t.data_source.inspected,r=Object.assign({x:o,y:n},e);this.model.callback.execute(this.model,{index:i,geometry:r,renderer:t})}}_create_template(e){const t=d.div({style:{display:"table",borderSpacing:"2px"}});for(const[s]of e){const e=d.div({style:{display:"table-row"}});t.appendChild(e);const o=d.div({style:{display:"table-cell"},class:v.bk_tooltip_row_label},0!=s.length?s+": ":"");e.appendChild(o);const n=d.span();n.dataset.value="";const i=d.span({class:v.bk_tooltip_color_block}," ");i.dataset.swatch="",d.undisplay(i);const r=d.div({style:{display:"table-cell"},class:v.bk_tooltip_row_value},n,i);e.appendChild(r)}return t}_render_template(e,t,s,o,n){const i=e.cloneNode(!0),r=i.querySelectorAll("[data-value]"),l=i.querySelectorAll("[data-swatch]"),c=/\$color(\[.*\])?:(\w*)/;for(const[[,e],i]of u.enumerate(t)){const t=e.match(c);if(null!=t){const[,e="",n]=t,c=s.get_column(n);if(null==c){r[i].textContent=n+" unknown";continue}const a=e.indexOf("hex")>=0,_=e.indexOf("swatch")>=0;let p=y.isNumber(o)?c[o]:null;if(null==p){r[i].textContent="(null)";continue}a&&(p=h.color2hex(p)),r[i].textContent=p,_&&(l[i].style.backgroundColor=p,d.display(l[i]))}else{const t=_.replace_placeholders(e.replace("$~","$data_"),s,o,this.model.formatters,n);if(y.isString(t))r[i].textContent=t;else for(const e of t)r[i].appendChild(e)}}return i}_render_tooltips(e,t,s){const o=this.model.tooltips;if(y.isString(o)){const n=_.replace_placeholders({html:o},e,t,this.model.formatters,s);return d.div({},n)}return y.isFunction(o)?o(e,s):this._render_template(this._template_el,o,e,t,s)}}s.HoverToolView=b,b.__name__="HoverToolView";class k extends n.InspectTool{constructor(e){super(e),this.tool_name="Hover",this.icon=x.bk_tool_icon_hover}static init_HoverTool(){this.prototype.default_view=b,this.define({tooltips:[p.Any,[["index","$index"],["data (x, y)","($x, $y)"],["screen (x, y)","($sx, $sy)"]]],formatters:[p.Any,{}],renderers:[p.Any,"auto"],names:[p.Array,[]],mode:[p.HoverMode,"mouse"],muted_policy:[p.MutedPolicy,"show"],point_policy:[p.PointPolicy,"snap_to_data"],line_policy:[p.LinePolicy,"nearest"],show_arrow:[p.Boolean,!0],anchor:[p.Anchor,"center"],attachment:[p.TooltipAttachment,"horizontal"],callback:[p.Any]}),this.register_alias("hover",()=>new k)}}s.HoverTool=k,k.__name__="HoverTool",k.init_HoverTool()},n”, ” function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1).__importStar(t(18)),n=t(15),s=t(81),l=t(295),c=t(303);class r extends s.Model{constructor(t){super(t)}static init_ToolProxy(){this.define({tools:[i.Array,[]],active:[i.Boolean,!1],disabled:[i.Boolean,!1]})}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof l.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new n.Signal0(this,"do")}connect_signals(){super.connect_signals(),this.connect(this.do,()=>this.doit()),this.connect(this.properties.active.change,()=>this.set_active());for(const t of this.tools)this.connect(t.properties.active.change,()=>{this.active=t.active})}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,i]of c.enumerate(t))if(null==e)o.push(null);else{const t=()=>{var t,o;for(const e of this.tools)null===(o=null===(t=e.menu)||void 0===t?void 0:t[i])||void 0===o||o.handler()};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=r,r.__name__="ToolProxy",r.init_ToolProxy()},n”, ” function _(o,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=o(1).__importStar(o(18)),e=o(9),n=o(13),r=o(305),l=o(379),c=o(272),h=o(212);class a extends r.ToolbarBase{constructor(o){super(o)}static init_ProxyToolbar(){this.define({toolbars:[i.Array,[]]})}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},i=[],r=[];for(const o of this.help)e.includes(r,o.redirect)||(i.push(o),r.push(o.redirect));this._proxied_tools.push(…i),this.help=i;for(const[o,t]of n.entries(this.gestures)){o in s||(s[o]={});for(const i of t.tools)i.type in s[o]||(s[o][i.type]=[]),s[o][i.type].push(i)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const c=(o,t=!1)=>{const s=new l.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of n.keys(s)){const t=this.gestures[o];t.tools=[];for(const i of n.keys(s[o])){const e=s[o][i];if(e.length>0)if("multi"==o)for(const o of e){const s=c([o]);t.tools.push(s),this.connect(s.properties.active.change,()=>this._active_change(s))}else{const o=c(e);t.tools.push(o),this.connect(o.properties.active.change,()=>this._active_change(o))}}}this.actions=[];for(const[o,s]of n.entries(t))if("CustomAction"==o)for(const o of s)this.actions.push(c([o]));else s.length>0&&this.actions.push(c(s));this.inspectors=[];for(const t of n.values(o))t.length>0&&this.inspectors.push(c(t,!0));for(const[o,t]of n.entries(this.gestures))0!=t.tools.length&&(t.tools=e.sort_by(t.tools,o=>o.default_order),"pinch"!=o&&"scroll"!=o&&"multi"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=a,a.__name__="ProxyToolbar",a.init_ProxyToolbar();class _ extends c.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new h.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:"fit",min_width:100,height_policy:"fixed"}):this.layout.set_sizing({width_policy:"fixed",height_policy:"fit",min_height:100})}}s.ToolbarBoxView=_,_.__name__="ToolbarBoxView";class p extends c.LayoutDOM{constructor(o){super(o)}static init_ToolbarBox(){this.prototype.default_view=_,this.define({toolbar:[i.Instance],toolbar_location:[i.Location,"right"]})}}s.ToolbarBox=p,p.__name__="ToolbarBox",p.init_ToolbarBox()},n”, ” function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(5),i=e(78),d=e(115),c=e(72),l=e(382);t.index={},t.add_document_standalone=async function(e,n,s=[],a=!1){const u=new Map;async function r(o){let a;const r=e.roots().indexOf(o),f=s[r];null!=f?a=f:n.classList.contains(l.BOKEH_ROOT)?a=n:(a=c.div({class:l.BOKEH_ROOT}),n.appendChild(a));const v=await d.build_view(o,{parent:null});return v instanceof i.DOMView&&v.renderTo(a),u.set(o,v),t.index[o.id]=v,v}for(const n of e.roots())await r(n);return a&&(window.document.title=e.title()),e.on_change(e=>{e instanceof o.RootAddedEvent?r(e.model):e instanceof o.RootRemovedEvent?function(e){const n=u.get(e);null!=n&&(n.remove(),u.delete(e),delete t.index[e.id])}(e.model):a&&e instanceof o.TitleChangedEvent&&(window.document.title=e.title)}),[…u.values()]}},n”, ” function _(e,o,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(72),r=e(273);function l(e){let o=document.getElementById(e);if(null==o)throw new Error(Error rendering Bokeh model: could not find #${e} HTML tag);if(!document.body.contains(o))throw new Error(Error rendering Bokeh model: element #${e} must be under <body>);if("SCRIPT"==o.tagName){const e=t.div({class:n.BOKEH_ROOT});t.replaceWith(o,e),o=e}return o}n.BOKEH_ROOT=r.bk_root,n._resolve_element=function(e){const{elementid:o}=e;return null!=o?l(o):document.body},n._resolve_root_elements=function(e){const o=[];if(null!=e.root_ids&&null!=e.roots)for(const n of e.root_ids)o.push(l(e.roots[n]));return o}},n”, ” function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});const e=n(384),s=n(19),c=n(381);t._get_ws_url=function(n,o){let t,e="ws:";return"https:"==window.location.protocol&&(e="wss:"),null!=o?(t=document.createElement("a"),t.href=o):t=window.location,null!=n?"/"==n&&(n=""):n=t.pathname.replace(/\/+$/,""),e+"//"+t.host+n+"/ws"};const r={};t.add_document_from_session=async function(n,o,t,a=[],i=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=e.parse_token(o).session_id;n in r||(r[n]={});const c=r[n];return s in c||(c[s]=e.pull_session(n,o,t)),c[s]}(n,o,l)}catch(n){const t=e.parse_token(o).session_id;throw s.logger.error(Failed to load Bokeh session ${t}: ${n}),n}return c.add_document_standalone(d.document,t,a,i)}},n”, ” function _(e,s,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(19),o=e(5),r=e(385),i=e(386),c=e(387);n.DEFAULT_SERVER_WEBSOCKET_URL="ws://localhost:5006/ws",n.DEFAULT_TOKEN="eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ";let l=0;function _(e){let s=e.split(".")[0];const n=s.length%4;return 0!=n&&(s+="=".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,"/").replace(/-/g,"+")))}n.parse_token=_;class h{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,o=null){this.url=e,this.token=s,this.args_string=o,this._number=l++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new i.Receiver,this.id=_(s).session_id.split(".")[0],t.logger.debug(Creating websocket ${this._number} to ‘${this.url}’ session ‘${this.id}’)}async connect(){if(this.closed_permanently)throw new Error("Cannot connect() a closed ClientConnection");if(null!=this.socket)throw new Error("Already connected");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=""+this.url;return null!=this.args_string&&this.args_string.length>0&&(e+="?"+this.args_string),this.socket=new WebSocket(e,["bokeh",this.token]),new Promise((e,s)=>{this.socket.binaryType="arraybuffer",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)})}catch(e){throw t.logger.error("websocket creation failed to url: "+this.url),t.logger.error(" - "+e),e}}close(){this.closed_permanently||(t.logger.debug("Permanently closing websocket connection "+this._number),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,"close method called on ClientConnection "+this._number),this.session._connection_closed())}_schedule_reconnect(e){setTimeout(()=>{this.closed_permanently||t.logger.info(Websocket connection ${this._number} disconnected, will not attempt to reconnect)},e)}send(e){if(null==this.socket)throw new Error("not connected so cannot send "+e);e.send(this.socket)}async send_with_reply(e){const s=await new Promise((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)});if("ERROR"===s.msgtype())throw new Error("Error reply "+s.content.text);return s}async _pull_doc_json(){const e=r.Message.create("PULL-DOC-REQ",{}),s=await this.send_with_reply(e);if(!("doc"in s.content))throw new Error("No ‘doc’ field in PULL-DOC-REPLY");return s.content.doc}async _repull_session_doc(e,s){var n;t.logger.debug(this.session?"Repulling session":"Pulling session for first time");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)t.logger.debug("Got new document after connection was already closed"),s(new Error("The connection has been closed"));else{const s=o.Document.from_json(n),i=o.Document._compute_patch_since_json(n,s);if(i.events.length>0){t.logger.debug(Sending ${i.events.length} changes from model construction back to server);const e=r.Message.create("PATCH-DOC",{},i);this.send(e)}this.session=new c.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],t.logger.debug("Created a new session from new pulled doc"),e(this.session)}else this.session.document.replace_with_json(n),t.logger.debug("Updated existing session with new pulled doc")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),t.logger.error("Failed to repull session "+e),s(e)}}_on_open(e,s){t.logger.info(Websocket connection ${this._number} is now open),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&t.logger.error("Got a message with no current handler set");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(e.toString())}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){t.logger.info(Lost websocket ${this._number} connection, ${e.code} (${e.reason})),this.socket=null,this._pending_replies.forEach(e=>e.reject("Disconnected")),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(Lost websocket connection, ${e.code} (${e.reason})))}_on_error(e){t.logger.debug("Websocket error on socket "+this._number);const s="Could not open websocket";t.logger.error("Failed to connect to Bokeh server: "+s),e(new Error(s))}_close_bad_protocol(e){t.logger.error("Closing connection: "+e),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){"ACK"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol("First message was not an ACK")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):"PATCH-DOC"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=h,h.__name__="ClientConnection",n.pull_session=function(e,s,n){return new h(e,s,n).connect()}},n”, ” function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(29);class n{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),i=JSON.parse(s),a=JSON.parse(t);return new n(r,i,a)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error("too many buffers received, expecting "+t);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=n.create_header(e);return new n(r,s,t)}static create_header(e){return{msgid:r.uniqueId(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error("BokehJS only supports receiving buffers, not sending");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return"msgid"in this.header?"msgtype"in this.header?null:"No msgtype in header":"No msgid in header"}}t.Message=n,n.__name__="Message"},n”, ” function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const _=e(385),r=e(8);class i{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,r]=this._fragments.slice(0,3);this._partial=_.Message.assemble(t,s,r),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!r.isString(e))throw new Error("Expected text fragment but received binary fragment")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error("Expected binary fragment but received text fragment")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=i,i.__name__="Receiver"},n”, ” function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(5),s=e(385),c=e(19);class i{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();"PATCH-DOC"===t?this._handle_patch(e):"OK"===t?this._handle_ok(e):"ERROR"===t?this._handle_error(e):c.logger.debug("Doing nothing with message "+e.msgtype())}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=s.Message.create("SERVER-INFO-REQ",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof o.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),c=s.Message.create("PATCH-DOC",{},n);this._connection.send(c)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){c.logger.trace("Unhandled OK reply to "+e.reqid())}_handle_error(e){c.logger.error(Unhandled ERROR reply to ${e.reqid()}: ${e.content.text})}}n.ClientSession=i,i.__name__="ClientSession"},n”, ” function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1);var r=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var o,t=e[Symbol.asyncIterator];return t?t.call(e):(e="function"==typeof __values?__values(e):e[Symbol.iterator](),o={},n("next"),n("throw"),n("return"),o[Symbol.asyncIterator]=function(){return this},o);function n(t){o[t]=e[t]&&function(o){return new Promise((function(n,r){(function(e,o,t,n){Promise.resolve(n).then((function(o){e({value:o,done:t})}),o)})(n,r,(o=e[t](o)).done,o.value)}))}}};const s=e(5),i=e(386),l=e(19),a=e(72),c=e(13),u=e(381),f=e(382),g=n.__importDefault(e(73)),m=n.__importDefault(e(311)),d=n.__importDefault(e(389));function p(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function _(e,o){if("undefined"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){l.logger.info("Registering Jupyter comms for target "+e);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,t=>{l.logger.info("Registering Jupyter comms for target "+e);const n=new i.Receiver;t.on_msg(p.bind(o,n))})}catch(e){l.logger.warn(Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else if(o.roots()[0].id in t.kernels){l.logger.info("Registering JupyterLab comms for target "+e);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,t=>{l.logger.info("Registering JupyterLab comms for target "+e);const n=new i.Receiver;t.onMsg=p.bind(o,n)})}catch(e){l.logger.warn(Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else if("undefined"!=typeof google&&null!=google.colab.kernel){l.logger.info("Registering Google Colab comms for target "+e);const t=google.colab.kernel.comms;try{t.registerTarget(e,async t=>{var n,s,a;l.logger.info("Registering Google Colab comms for target "+e);const c=new i.Receiver;try{for(var u,f=r(t.messages);!(u=await f.next()).done;){const e=u.value,t={data:e.data},n=[];for(const o of null!==(a=e.buffers)&&void 0!==a?a:[])n.push(new DataView(o));const r={content:t,buffers:n};p.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{u&&!u.done&&(s=f.return)&&await s.call(f)}finally{if(n)throw n.error}}})}catch(e){l.logger.warn(Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else console.warn("Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.")}a.stylesheet.append(g.default),a.stylesheet.append(m.default),a.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=c.size(e))throw new Error("embed_items_notebook expects exactly one document in docs_json");const t=s.Document.from_json(c.values(e)[0]);for(const e of o){null!=e.notebook_comms_target&&_(e.notebook_comms_target,t);const o=f._resolve_element(e),n=f._resolve_root_elements(e);u.add_document_standalone(t,o,n)}}},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});o.default="\n/* notebook specific tweaks so no black outline and matching padding\n/* can’t be wrapped inside bk-root. here are the offending jupyter lines:\n/* https://github.com/jupyter/notebook/blob/master/notebook/static/notebook/less/renderedhtml.less#L59-L76 /\n.rendered_html .bk-root .bk-tooltip table,\n.rendered_html .bk-root .bk-tooltip tr,\n.rendered_html .bk-root .bk-tooltip th,\n.rendered_html .bk-root .bk-tooltip td {\n border: none;\n padding: 1px;\n}\n"},n”, ” function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const o=e(1);o.__exportStar(e(385),_),o.__exportStar(e(386),_)},n”, ” function _(e,t,n){function s(){const e=document.getElementsByTagName("body")[0],t=document.getElementsByClassName("bokeh-test-div");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement("div");n.classList.add("bokeh-test-div"),n.style.display="none",e.insertBefore(n,e.firstChild)}Object.defineProperty(n,"__esModule",{value:!0}),n.results={},n.init=function(){s()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,s()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,s()}},n”, ” function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0}),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement("div");t.style.backgroundColor="#f2dede",t.style.border="1px solid #a94442",t.style.borderRadius="4px",t.style.display="inline-block",t.style.fontFamily="sans-serif",t.style.marginTop="5px",t.style.minWidth="200px",t.style.padding="5px 5px 5px 10px",t.classList.add("bokeh-error-box-into-flames");const o=document.createElement("span");o.style.backgroundColor="#a94442",o.style.borderRadius="0px 4px 0px 0px",o.style.color="white",o.style.cursor="pointer",o.style.cssFloat="right",o.style.fontSize="0.8em",o.style.margin="-6px -6px 0px 0px",o.style.padding="2px 5px 4px 5px",o.title="close",o.setAttribute("aria-label","close"),o.appendChild(document.createTextNode("x")),o.addEventListener("click",()=>r.removeChild(t));const n=document.createElement("h3");n.style.color="#a94442",n.style.margin="8px 0px 0px 0px",n.style.padding="0px",n.appendChild(document.createTextNode("Bokeh Error"));const l=document.createElement("pre");l.style.whiteSpace="unset",l.style.overflowX="auto";const s=e instanceof Error?e.message:e;l.appendChild(document.createTextNode(s)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const r=document.getElementsByTagName("body")[0];r.insertBefore(t,r.firstChild)}(e),t)return;throw e}}},n”, ” ], 0, {"main":0,"tslib":1,"index":2,"version":3,"embed/index":4,"document/index":5,"document/document":6,"base":7,"core/util/types":8,"core/util/array":9,"core/util/math":10,"core/util/assert":11,"core/util/arrayable":12,"core/util/object":13,"core/has_props":14,"core/signaling":15,"core/util/callback":16,"core/util/refs":17,"core/properties":18,"core/logging":19,"core/enums":20,"core/kinds":21,"core/util/color":22,"core/util/svg_colors":23,"core/types":24,"core/util/eq":25,"core/util/data_structures":26,"core/settings":27,"core/property_mixins":28,"core/util/string":29,"core/util/ndarray":30,"core/util/serialization":31,"core/util/compat":32,"core/util/pretty":33,"models/index":34,"models/annotations/index":35,"models/annotations/annotation":36,"core/util/projections":37,"models/renderers/renderer":70,"core/view":71,"core/dom":72,"styles/root.css":73,"core/visuals":74,"core/util/svg":75,"core/util/affine":76,"models/canvas/canvas":77,"core/dom_view":78,"core/util/bbox":79,"core/util/canvas":80,"model":81,"models/canvas/coordinates":82,"models/annotations/arrow":83,"models/annotations/arrow_head":84,"models/sources/column_data_source":85,"models/sources/columnar_data_source":86,"models/sources/data_source":87,"models/selections/selection":88,"core/selection_manager":89,"models/renderers/glyph_renderer":90,"models/renderers/data_renderer":91,"models/glyphs/line":92,"models/glyphs/xy_glyph":93,"models/glyphs/glyph":94,"core/util/spatial":95,"models/ranges/factor_range":98,"models/ranges/range":99,"models/glyphs/utils":100,"core/hittest":101,"models/glyphs/webgl/line":102,"models/glyphs/webgl/utils/index":103,"models/glyphs/webgl/utils/program":104,"models/glyphs/webgl/utils/buffer":105,"models/glyphs/webgl/utils/texture":106,"models/glyphs/webgl/base":107,"models/glyphs/webgl/line.vert":108,"models/glyphs/webgl/line.frag":109,"models/glyphs/patch":110,"models/glyphs/harea":111,"models/glyphs/area":112,"models/glyphs/varea":113,"models/sources/cds_view":114,"core/build_views":115,"models/renderers/graph_renderer":116,"models/graphs/graph_hit_test_policy":117,"models/selections/interaction_policy":118,"core/util/typed_array":119,"core/util/set":120,"document/events":121,"models/annotations/band":122,"models/annotations/upper_lower":123,"models/annotations/box_annotation":124,"models/annotations/color_bar":125,"models/tickers/basic_ticker":126,"models/tickers/adaptive_ticker":127,"models/tickers/continuous_ticker":128,"models/tickers/ticker":129,"models/formatters/basic_tick_formatter":130,"models/formatters/tick_formatter":131,"models/mappers/index":132,"models/mappers/categorical_color_mapper":133,"models/mappers/categorical_mapper":134,"models/mappers/color_mapper":135,"models/mappers/mapper":136,"models/transforms/transform":137,"models/mappers/categorical_marker_mapper":138,"models/mappers/categorical_pattern_mapper":139,"models/mappers/continuous_color_mapper":140,"models/mappers/linear_color_mapper":141,"models/mappers/log_color_mapper":142,"models/mappers/scanning_color_mapper":143,"models/mappers/eqhist_color_mapper":144,"models/scales/linear_scale":145,"models/scales/continuous_scale":146,"models/scales/scale":147,"models/transforms/index":148,"models/transforms/customjs_transform":149,"models/transforms/dodge":150,"models/transforms/range_transform":151,"models/transforms/interpolator":152,"models/transforms/jitter":153,"models/transforms/linear_interpolator":154,"models/transforms/step_interpolator":155,"models/scales/linear_interpolation_scale":156,"models/scales/log_scale":157,"models/ranges/range1d":158,"core/util/text":159,"models/annotations/label":160,"models/annotations/text_annotation":161,"models/annotations/label_set":162,"models/annotations/legend":163,"models/annotations/legend_item":164,"core/vectorization":165,"models/annotations/poly_annotation":166,"models/annotations/slope":167,"models/annotations/span":168,"models/annotations/title":169,"models/annotations/toolbar_panel":170,"models/annotations/tooltip":171,"styles/tooltips":172,"styles/mixins":173,"styles/tooltips.css":174,"models/annotations/whisker":175,"models/axes/index":176,"models/axes/axis":177,"models/renderers/guide_renderer":178,"models/axes/categorical_axis":179,"models/tickers/categorical_ticker":180,"models/formatters/categorical_tick_formatter":181,"models/axes/continuous_axis":182,"models/axes/datetime_axis":183,"models/axes/linear_axis":184,"models/formatters/datetime_tick_formatter":185,"core/util/templating":187,"models/tickers/datetime_ticker":190,"models/tickers/composite_ticker":191,"models/tickers/days_ticker":192,"models/tickers/single_interval_ticker":193,"models/tickers/util":194,"models/tickers/months_ticker":195,"models/tickers/years_ticker":196,"models/axes/log_axis":197,"models/formatters/log_tick_formatter":198,"models/tickers/log_ticker":199,"models/axes/mercator_axis":200,"models/formatters/mercator_tick_formatter":201,"models/tickers/mercator_ticker":202,"models/callbacks/index":203,"models/callbacks/customjs":204,"models/callbacks/callback":205,"models/callbacks/open_url":206,"models/canvas/index":207,"models/canvas/cartesian_frame":208,"models/scales/categorical_scale":209,"models/ranges/data_range1d":210,"models/ranges/data_range":211,"core/layout/index":212,"core/layout/types":213,"core/layout/layoutable":214,"core/layout/alignments":215,"core/layout/grid":216,"core/layout/html":217,"models/expressions/index":218,"models/expressions/expression":219,"models/expressions/stack":220,"models/expressions/cumsum":221,"models/filters/index":222,"models/filters/boolean_filter":223,"models/filters/filter":224,"models/filters/customjs_filter":225,"models/filters/group_filter":226,"models/filters/index_filter":227,"models/formatters/index":228,"models/formatters/func_tick_formatter":229,"models/formatters/numeral_tick_formatter":230,"models/formatters/printf_tick_formatter":231,"models/glyphs/index":232,"models/glyphs/annular_wedge":233,"models/glyphs/annulus":234,"models/glyphs/arc":235,"models/glyphs/bezier":236,"models/glyphs/circle":237,"models/glyphs/webgl/markers":238,"models/glyphs/webgl/markers.vert":239,"models/glyphs/webgl/markers.frag":240,"models/glyphs/center_rotatable":241,"models/glyphs/ellipse":242,"models/glyphs/ellipse_oval":243,"models/glyphs/hbar":244,"models/glyphs/box":245,"models/glyphs/hex_tile":246,"models/glyphs/image":247,"models/glyphs/image_base":248,"models/glyphs/image_rgba":249,"models/glyphs/image_url":250,"core/util/image":251,"models/glyphs/multi_line":252,"models/glyphs/multi_polygons":253,"models/glyphs/oval":254,"models/glyphs/patches":255,"models/glyphs/quad":256,"models/glyphs/quadratic":257,"models/glyphs/ray":258,"models/glyphs/rect":259,"models/glyphs/segment":260,"models/glyphs/step":261,"models/glyphs/text":262,"models/glyphs/vbar":263,"models/glyphs/wedge":264,"models/graphs/index":265,"models/graphs/layout_provider":266,"models/graphs/static_layout_provider":267,"models/grids/index":268,"models/grids/grid":269,"models/layouts/index":270,"models/layouts/box":271,"models/layouts/layout_dom":272,"styles/root":273,"models/layouts/column":274,"models/layouts/grid_box":275,"models/layouts/html_box":276,"models/layouts/row":277,"models/layouts/spacer":278,"models/layouts/tabs":279,"styles/tabs":280,"styles/buttons":281,"styles/menus":282,"styles/buttons.css":283,"styles/menus.css":284,"styles/tabs.css":285,"models/layouts/widget_box":286,"models/markers/index":287,"models/markers/defs":288,"models/markers/marker":289,"models/markers/scatter":290,"models/plots/index":291,"models/plots/gmap_plot":292,"models/plots/plot":293,"models/tools/toolbar":294,"models/tools/inspectors/inspect_tool":295,"models/tools/button_tool":296,"models/tools/tool":298,"styles/toolbar":299,"styles/toolbar.css":300,"styles/icons.css":301,"core/util/menus":302,"core/util/iterator":303,"models/tools/on_off_button":304,"models/tools/toolbar_base":305,"models/tools/gestures/gesture_tool":306,"models/tools/actions/action_tool":307,"models/tools/actions/help_tool":308,"styles/icons":309,"styles/logo":310,"styles/logo.css":311,"models/plots/plot_canvas":312,"core/bokeh_events":313,"core/ui_events":314,"core/util/wheel":315,"core/util/throttle":316,"core/layout/border":317,"core/layout/side_panel":318,"models/plots/gmap_plot_canvas":319,"models/ranges/index":320,"models/renderers/index":321,"models/scales/index":322,"models/selections/index":323,"models/sources/index":324,"models/sources/server_sent_data_source":325,"models/sources/web_data_source":326,"models/sources/ajax_data_source":327,"models/sources/geojson_data_source":328,"models/tickers/index":329,"models/tickers/fixed_ticker":330,"models/tiles/index":331,"models/tiles/bbox_tile_source":332,"models/tiles/mercator_tile_source":333,"models/tiles/tile_source":334,"models/tiles/tile_utils":335,"models/tiles/quadkey_tile_source":336,"models/tiles/tile_renderer":337,"models/tiles/wmts_tile_source":338,"styles/tiles":339,"styles/tiles.css":340,"models/tiles/tms_tile_source":341,"models/textures/index":342,"models/textures/canvas_texture":343,"models/textures/texture":344,"models/textures/image_url_texture":345,"models/tools/index":346,"models/tools/actions/custom_action":347,"models/tools/actions/redo_tool":348,"models/tools/actions/reset_tool":349,"models/tools/actions/save_tool":350,"models/tools/actions/undo_tool":351,"models/tools/actions/zoom_in_tool":352,"models/tools/actions/zoom_base_tool":353,"core/util/zoom":354,"models/tools/actions/zoom_out_tool":355,"models/tools/edit/edit_tool":356,"models/tools/edit/box_edit_tool":357,"models/tools/edit/freehand_draw_tool":358,"models/tools/edit/point_draw_tool":359,"models/tools/edit/poly_draw_tool":360,"models/tools/edit/poly_tool":361,"models/tools/edit/poly_edit_tool":362,"models/tools/gestures/box_select_tool":363,"models/tools/gestures/select_tool":364,"models/tools/util":365,"models/tools/gestures/box_zoom_tool":366,"models/tools/gestures/lasso_select_tool":367,"models/tools/gestures/poly_select_tool":368,"models/tools/edit/line_edit_tool":369,"models/tools/edit/line_tool":370,"models/tools/gestures/pan_tool":371,"models/tools/gestures/range_tool":372,"models/tools/gestures/tap_tool":373,"models/tools/gestures/wheel_pan_tool":374,"models/tools/gestures/wheel_zoom_tool":375,"models/tools/inspectors/crosshair_tool":376,"models/tools/inspectors/customjs_hover":377,"models/tools/inspectors/hover_tool":378,"models/tools/tool_proxy":379,"models/tools/toolbar_box":380,"embed/standalone":381,"embed/dom":382,"embed/server":383,"client/connection":384,"protocol/message":385,"protocol/receiver":386,"client/session":387,"embed/notebook":388,"styles/notebook.css":389,"protocol/index":390,"testing":391,"safely":392}, {});n”, ” })n”, “n”, “n”, ” / END bokeh.min.js /n”, ” },n”, ” n”, ” function(Bokeh) {n”, ” / BEGIN bokeh-widgets.min.js /n”, ” /!n”, ” * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn”, ” * All rights reserved.n”, ” * n”, ” * Redistribution and use in source and binary forms, with or without modification,n”, ” * are permitted provided that the following conditions are met:n”, ” * n”, ” * Redistributions of source code must retain the above copyright notice,n”, ” * this list of conditions and the following disclaimer.n”, ” * n”, ” * Redistributions in binary form must reproduce the above copyright notice,n”, ” * this list of conditions and the following disclaimer in the documentationn”, ” * and/or other materials provided with the distribution.n”, ” * n”, ” * Neither the name of Anaconda nor the names of any contributorsn”, ” * may be used to endorse or promote products derived from this softwaren”, ” * without specific prior written permission.n”, ” * n”, ” * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n”, ” * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn”, ” * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn”, ” * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn”, ” * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn”, ” * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn”, ” * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn”, ” * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn”, ” * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n”, ” * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn”, ” * THE POSSIBILITY OF SUCH DAMAGE.n”, ” /n”, ” (function(root, factory) {n”, ” factory(root["Bokeh"], "2.2.3");n”, ” })(this, function(Bokeh, version) {n”, ” var define;n”, ” return (function(modules, entry, aliases, externals) {n”, ” const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n”, ” if (bokeh != null) {n”, ” return bokeh.register_plugin(modules, entry, aliases);n”, ” } else {n”, ” throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n”, ” }n”, ” })n”, ” ({n”, ” 402: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1).__importStar(e(403));o.Widgets=r;e(7).register_models(r)},n”, ” 403: function _(r,e,t){Object.defineProperty(t,"__esModule",{value:!0});var a=r(404);t.AbstractButton=a.AbstractButton;var o=r(407);t.AbstractIcon=o.AbstractIcon;var u=r(408);t.AutocompleteInput=u.AutocompleteInput;var n=r(413);t.Button=n.Button;var i=r(414);t.CheckboxButtonGroup=i.CheckboxButtonGroup;var v=r(416);t.CheckboxGroup=v.CheckboxGroup;var p=r(418);t.ColorPicker=p.ColorPicker;var c=r(419);t.DatePicker=c.DatePicker;var l=r(422);t.DateRangeSlider=l.DateRangeSlider;var d=r(428);t.DateSlider=d.DateSlider;var I=r(429);t.Div=I.Div;var g=r(433);t.Dropdown=g.Dropdown;var S=r(434);t.FileInput=S.FileInput;var P=r(410);t.InputWidget=P.InputWidget;var k=r(430);t.Markup=k.Markup;var x=r(435);t.MultiSelect=x.MultiSelect;var D=r(436);t.Paragraph=D.Paragraph;var b=r(437);t.PasswordInput=b.PasswordInput;var s=r(438);t.MultiChoice=s.MultiChoice;var h=r(441);t.NumericInput=h.NumericInput;var A=r(444);t.PreText=A.PreText;var B=r(445);t.RadioButtonGroup=B.RadioButtonGroup;var C=r(446);t.RadioGroup=C.RadioGroup;var G=r(447);t.RangeSlider=G.RangeSlider;var R=r(448);t.Select=R.Select;var T=r(449);t.Slider=T.Slider;var M=r(450);t.Spinner=M.Spinner;var m=r(409);t.TextInput=m.TextInput;var w=r(451);t.TextAreaInput=w.TextAreaInput;var W=r(452);t.Toggle=W.Toggle;var _=r(472);t.Widget=_.Widget},n”, ” 404: function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(1),s=i.__importStar(t(18)),o=t(72),l=t(115),r=t(405),_=t(281),c=i.__importDefault(t(283));class u extends r.ControlView{*controls(){yield this.button_el}async lazy_initialize(){await super.lazy_initialize();const{icon:t}=this.model;null!=t&&(this.icon_view=await l.build_view(t,{parent:this}))}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[…super.styles(),c.default]}_render_button(…t){return o.button({type:"button",disabled:this.model.disabled,class:[_.bk_btn,_.bk_btn_type(this.model.button_type)]},…t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener("click",()=>this.click()),null!=this.icon_view&&(o.prepend(this.button_el,this.icon_view.el,o.nbsp()),this.icon_view.render()),this.group_el=o.div({class:_.bk_btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=u,u.__name__="AbstractButtonView";class a extends r.Control{constructor(t){super(t)}static init_AbstractButton(){this.define({label:[s.String,"Button"],icon:[s.Instance],button_type:[s.ButtonType,"default"]})}}n.AbstractButton=a,a.__name__="AbstractButton",a.init_AbstractButton()},n”, ” 405: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(472),n=e(72);class i extends s.WidgetView{connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.controls())n.toggle_attribute(e,"disabled",this.model.disabled)})}}o.ControlView=i,i.__name__="ControlView";class l extends s.Widget{constructor(e){super(e)}}o.Control=l,l.__name__="Control"},n”, ” 472: function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return"horizontal"==this.model.orientation?super._width_policy():"fixed"}_height_policy(){return"horizontal"==this.model.orientation?"fixed":super._height_policy()}box_sizing(){const i=super.box_sizing();return"horizontal"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__="WidgetView";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,"horizontal"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__="Widget",s.init_Widget()},n”, ” 407: function _(e,t,c){Object.defineProperty(c,"__esModule",{value:!0});const s=e(81),n=e(78);class o extends n.DOMView{}c.AbstractIconView=o,o.__name__="AbstractIconView";class _ extends s.Model{constructor(e){super(e)}}c.AbstractIcon=_,_.__name__="AbstractIcon"},n”, ” 408: function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e(1),s=e(409),h=e(72),_=i.__importStar(e(18)),o=e(10),u=e(173),r=e(282),c=i.__importDefault(e(284));class l extends s.TextInputView{constructor(){super(…arguments),this._open=!1,this._last_value="",this._hover_index=0}styles(){return[…super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener("keydown",e=>this._keydown(e)),this.input_el.addEventListener("keyup",e=>this._keyup(e)),this.menu=h.div({class:[r.bk_menu,u.bk_below]}),this.menu.addEventListener("click",e=>this._menu_click(e)),this.menu.addEventListener("mouseover",e=>this._menu_hover(e)),this.el.appendChild(this.menu),h.undisplay(this.menu)}change_input(){this._open&&this.menu.children.length>0&&(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu())}_update_completions(e){h.empty(this.menu);for(const t of e){const e=h.div({},t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(u.bk_active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,h.display(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener("click",e),this._hide_menu())};document.addEventListener("click",e)}}_hide_menu(){this._open&&(this._open=!1,h.undisplay(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t<this.menu.children.length&&this.menu.children[t].textContent!=e.target.textContent;t++);this._bump_hover(t)}}_bump_hover(e){const t=this.menu.children.length;this._open&&t>0&&(this.menu.children[this._hover_index].classList.remove(u.bk_active),this._hover_index=o.clamp(e,0,t-1),this.menu.children[this._hover_index].classList.add(u.bk_active))}_keydown(e){}_keyup(e){switch(e.keyCode){case h.Keys.Enter:this.change_input();break;case h.Keys.Esc:this._hide_menu();break;case h.Keys.Up:this._bump_hover(this._hover_index-1);break;case h.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.length<this.model.min_characters)return void this._hide_menu();const t=[],{case_sensitive:n}=this.model;let i;i=n?e=>e:e=>e.toLowerCase();for(const n of this.model.completions)i(n).startsWith(i(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__="AutocompleteInputView";class a extends s.TextInput{constructor(e){super(e)}static init_AutocompleteInput(){this.prototype.default_view=l,this.define({completions:[_.Array,[]],min_characters:[_.Int,2],case_sensitive:[_.Boolean,!0]})}}n.AutocompleteInput=a,a.__name__="AutocompleteInput",a.init_AutocompleteInput()},n”, ” 409: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(410),l=e(72),p=n.__importStar(e(18)),u=e(412);class a extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.value_input.change,()=>this.input_el.value=this.model.value_input),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}render(){super.render(),this.input_el=l.input({type:"text",class:u.bk_input,name:this.model.name,value:this.model.value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.input_el.addEventListener("change",()=>this.change_input()),this.input_el.addEventListener("input",()=>this.change_input_oninput()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_oninput(){this.model.value_input=this.input_el.value,super.change_input()}}i.TextInputView=a,a.__name__="TextInputView";class h extends s.InputWidget{constructor(e){super(e)}static init_TextInput(){this.prototype.default_view=a,this.define({value:[p.String,""],value_input:[p.String,""],placeholder:[p.String,""]})}}i.TextInput=h,h.__name__="TextInput",h.init_TextInput()},n”, ” 410: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),l=t(405),s=t(72),_=n.__importStar(t(18)),o=n.__importDefault(t(411)),r=t(412);class p extends l.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,()=>{this.label_el.textContent=this.model.title})}styles(){return[…super.styles(),o.default]}render(){super.render();const{title:t}=this.model;this.label_el=s.label({style:{display:0==t.length?"none":""}},t),this.group_el=s.div({class:r.bk_input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}i.InputWidgetView=p,p.__name__="InputWidgetView";class u extends l.Control{constructor(t){super(t)}static init_InputWidget(){this.define({title:[_.String,""]})}}i.InputWidget=u,u.__name__="InputWidget",u.init_InputWidget()},n”, ” 411: function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-input {\n display: inline-block;\n width: 100%;\n flex-grow: 1;\n -webkit-flex-grow: 1;\n min-height: 31px;\n padding: 0 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n.bk-root .bk-input:focus {\n border-color: #66afe9;\n outline: 0;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.bk-root .bk-input::placeholder,\n.bk-root .bk-input:-ms-input-placeholder,\n.bk-root .bk-input::-moz-placeholder,\n.bk-root .bk-input::-webkit-input-placeholder {\n color: #999;\n opacity: 1;\n}\n.bk-root .bk-input[disabled] {\n cursor: not-allowed;\n background-color: #eee;\n opacity: 1;\n}\n.bk-root select:not([multiple]).bk-input,\n.bk-root select:not([size]).bk-input {\n height: auto;\n appearance: none;\n -webkit-appearance: none;\n background-image: url(\’data:image/svg+xml;utf8,<svg version="1.1" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"><path d="M 0,0 25,0 12.5,20 Z" fill="black" /></svg>\’);\n background-position: right 0.5em center;\n background-size: 8px 6px;\n background-repeat: no-repeat;\n}\n.bk-root select[multiple].bk-input,\n.bk-root select[size].bk-input,\n.bk-root textarea.bk-input {\n height: auto;\n}\n.bk-root .bk-input-group {\n width: 100%;\n height: 100%;\n display: inline-flex;\n display: -webkit-inline-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: start;\n -webkit-align-items: start;\n flex-direction: column;\n -webkit-flex-direction: column;\n white-space: nowrap;\n}\n.bk-root .bk-input-group.bk-inline {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-input-group.bk-inline > *:not(:first-child) {\n margin-left: 5px;\n}\n.bk-root .bk-input-group input[type="checkbox"] + span,\n.bk-root .bk-input-group input[type="radio"] + span {\n position: relative;\n top: -2px;\n margin-left: 3px;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper {\n display: inherit;\n width: inherit;\n height: inherit;\n position: relative;\n overflow: hidden;\n padding: 0;\n vertical-align: middle;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper input {\n padding-right: 20px;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn {\n position: absolute;\n display: block;\n height: 50%;\n min-height: 0;\n min-width: 0;\n width: 30px;\n padding: 0;\n margin: 0;\n right: 0;\n border: none;\n background: none;\n cursor: pointer;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before {\n content: "";\n display: inline-block;\n transform: translateY(-50%);\n border-left: 5px solid transparent;\n border-right: 5px solid transparent;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up {\n top: 0;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before {\n border-bottom: 5px solid black;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before {\n border-bottom-color: grey;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down {\n bottom: 0;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before {\n border-top: 5px solid black;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before {\n border-top-color: grey;\n}\n’},n”, ” 412: function _(u,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.bk_input="bk-input",n.bk_input_group="bk-input-group"},n”, ” 413: function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=t(404),i=t(313);class s extends o.AbstractButtonView{click(){this.model.trigger_event(new i.ButtonClick),super.click()}}n.ButtonView=s,s.__name__="ButtonView";class u extends o.AbstractButton{constructor(t){super(t)}static init_Button(){this.prototype.default_view=s,this.override({label:"Button"})}}n.Button=u,u.__name__="Button",u.init_Button()},n”, ” 414: function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const i=t(1),c=t(415),s=t(72),n=i.__importStar(t(18)),a=t(173);class u extends c.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[…e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach((e,o)=>{s.classes(e).toggle(a.bk_active,t.has(o))})}}o.CheckboxButtonGroupView=u,u.__name__="CheckboxButtonGroupView";class r extends c.ButtonGroup{constructor(t){super(t)}static init_CheckboxButtonGroup(){this.prototype.default_view=u,this.define({active:[n.Array,[]]})}}o.CheckboxButtonGroup=r,r.__name__="CheckboxButtonGroup",r.init_CheckboxButtonGroup()},n”, ” 415: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),o=t(405),i=t(72),r=n.__importStar(t(18)),_=t(281),u=n.__importDefault(t(283));class a extends o.ControlView{*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,()=>this.render()),this.on_change(t.labels,()=>this.render()),this.on_change(t.active,()=>this._update_active())}styles(){return[…super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map((t,e)=>{const s=i.div({class:[_.bk_btn,_.bk_btn_type(this.model.button_type)],disabled:this.model.disabled},t);return s.addEventListener("click",()=>this.change_active(e)),s}),this._update_active();const t=i.div({class:_.bk_btn_group},this._buttons);this.el.appendChild(t)}}s.ButtonGroupView=a,a.__name__="ButtonGroupView";class l extends o.Control{constructor(t){super(t)}static init_ButtonGroup(){this.define({labels:[r.Array,[]],button_type:[r.ButtonType,"default"]})}}s.ButtonGroup=l,l.__name__="ButtonGroup",l.init_ButtonGroup()},n”, ” 416: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(417),o=e(72),c=e(9),a=n.__importStar(e(18)),l=e(173),d=e(412);class r extends s.InputGroupView{render(){super.render();const e=o.div({class:[d.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const{active:t,labels:i}=this.model;this._inputs=[];for(let n=0;n<i.length;n++){const s=o.input({type:"checkbox",value:""+n});s.addEventListener("change",()=>this.change_active(n)),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),c.includes(t,n)&&(s.checked=!0);const a=o.label({},s,o.span({},i[n]));e.appendChild(a)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[…t].sort()}}i.CheckboxGroupView=r,r.__name__="CheckboxGroupView";class p extends s.InputGroup{constructor(e){super(e)}static init_CheckboxGroup(){this.prototype.default_view=r,this.define({active:[a.Array,[]],labels:[a.Array,[]],inline:[a.Boolean,!1]})}}i.CheckboxGroup=p,p.__name__="CheckboxGroup",p.init_CheckboxGroup()},n”, ” 417: function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e(1),o=e(405),r=s.__importDefault(e(411));class u extends o.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}styles(){return[…super.styles(),r.default]}}n.InputGroupView=u,u.__name__="InputGroupView";class _ extends o.Control{constructor(e){super(e)}}n.InputGroup=_,_.__name__="InputGroup"},n”, ” 418: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),o=e(410),s=e(72),l=n.__importStar(e(18)),r=e(412);class c extends o.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.color.change,()=>this.input_el.value=this.model.color),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled)}render(){super.render(),this.input_el=s.input({type:"color",class:r.bk_input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}t.ColorPickerView=c,c.__name__="ColorPickerView";class d extends o.InputWidget{constructor(e){super(e)}static init_ColorPicker(){this.prototype.default_view=c,this.define({color:[l.Color,"#000000"]})}}t.ColorPicker=d,d.__name__="ColorPicker",d.init_ColorPicker()},n”, ” 419: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=n.__importDefault(e(420)),a=e(410),l=e(72),o=n.__importStar(e(18)),r=e(8),d=e(412),c=n.__importDefault(e(421));function u(e){const t=[];for(const i of e)if(r.isString(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class _ extends a.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,()=>{var t;return null===(t=this._picker)||void 0===t?void 0:t.setDate(e.value())}),this.connect(t.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("minDate",t.value())}),this.connect(i.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("maxDate",i.value())}),this.connect(n.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("disable",n.value())}),this.connect(s.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("enable",s.value())}),this.connect(a.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("position",a.value())}),this.connect(l.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("inline",l.value())})}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[…super.styles(),c.default]}render(){null==this._picker&&(super.render(),this.input_el=l.input({type:"text",class:d.bk_input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=s.default(this.input_el,{defaultDate:this.model.value,minDate:this.model.min_date,maxDate:this.model.max_date,inline:this.model.inline,position:this.model.position,disable:u(this.model.disabled_dates),enable:u(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=_,_.__name__="DatePickerView";class h extends a.InputWidget{constructor(e){super(e)}static init_DatePicker(){this.prototype.default_view=_,this.define({value:[o.Any],min_date:[o.Any],max_date:[o.Any],disabled_dates:[o.Any,[]],enabled_dates:[o.Any,[]],position:[o.CalendarPosition,"auto"],inline:[o.Boolean,!1]})}}i.DatePicker=h,h.__name__="DatePicker",h.init_DatePicker()},n”, ” 420: function _(e,t,n){n”, ” / flatpickr v4.6.3, @license MIT /var a,i;a=this,i=function(){"use strict";n”, ” /! *************************************************************************n”, ” Copyright (c) Microsoft Corporation. All rights reserved.n”, ” Licensed under the Apache License, Version 2.0 (the "License"); you may not usen”, ” this file except in compliance with the License. You may obtain a copy of then”, ” License at http://www.apache.org/licenses/LICENSE-2.0n”, ” n”, ” THIS CODE IS PROVIDED ON AN AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANYn”, ” KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIEDn”, ” WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,n”, ” MERCHANTABLITY OR NON-INFRINGEMENT.n”, ” n”, ” See the Apache Version 2.0 License for specific language governing permissionsn”, ” and limitations under the License.n”, ” ************************************************************************* /var e=function(){return(e=Object.assign||function(e){for(var t,n=1,a=arguments.length;n<a;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)},t=["onChange","onClose","onDayCreate","onDestroy","onKeyDown","onMonthChange","onOpen","onParseConfig","onReady","onValueUpdate","onYearChange","onPreCalendarPosition"],n={_disable:[],_enable:[],allowInput:!1,altFormat:"F j, Y",altInput:!1,altInputClass:"form-control input",animate:"object"==typeof window&&-1===window.navigator.userAgent.indexOf("MSIE"),ariaDateFormat:"F j, Y",clickOpens:!0,closeOnSelect:!0,conjunction:", ",dateFormat:"Y-m-d",defaultHour:12,defaultMinute:0,defaultSeconds:0,disable:[],disableMobile:!1,enable:[],enableSeconds:!1,enableTime:!1,errorHandler:function(e){return"undefined"!=typeof console&&console.warn(e)},getWeek:function(e){var t=new Date(e.getTime());t.setHours(0,0,0,0),t.setDate(t.getDate()+3-(t.getDay()+6)%7);var n=new Date(t.getFullYear(),0,4);return 1+Math.round(((t.getTime()-n.getTime())/864e5-3+(n.getDay()+6)%7)/7)},hourIncrement:1,ignoredFocusElements:[],inline:!1,locale:"default",minuteIncrement:5,mode:"single",monthSelectorType:"dropdown",nextArrow:"<svg version=’1.1’ xmlns=’http://www.w3.org/2000/svg’ xmlns:xlink=’http://www.w3.org/1999/xlink’ viewBox=’0 0 17 17’><g></g><path d=’M13.207 8.472l-7.854 7.854-0.707-0.707 7.146-7.146-7.146-7.148 0.707-0.707 7.854 7.854z’ /></svg>",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"<svg version=’1.1’ xmlns=’http://www.w3.org/2000/svg’ xmlns:xlink=’http://www.w3.org/1999/xlink’ viewBox=’0 0 17 17’><g></g><path d=’M5.207 8.471l7.146 7.147-0.707 0.707-7.853-7.854 7.854-7.853 0.707 0.707-7.147 7.146z’ /></svg>",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},a={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var t=e%100;if(t>3&&t<21)return"th";switch(t%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},i=function(e){return("0"+e).slice(-2)},o=function(e){return!0===e?1:0};function r(e,t,n){var a;return void 0===n&&(n=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,n||e.apply(i,o)}),t),n&&!a&&e.apply(i,o)}}var l=function(e){return e instanceof Array?e:[e]};function c(e,t,n){if(!0===n)return e.classList.add(t);e.classList.remove(t)}function d(e,t,n){var a=window.document.createElement(e);return t=t||"",n=n||"",a.className=t,void 0!==n&&(a.textContent=n),a}function s(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function u(e,t){var n=d("div","numInputWrapper"),a=d("input","numInput "+e),i=d("span","arrowUp"),o=d("span","arrowDown");if(-1===navigator.userAgent.indexOf("MSIE 9.0")?a.type="number":(a.type="text",a.pattern="\\d"),void 0!==t)for(var r in t)a.setAttribute(r,t[r]);return n.appendChild(a),n.appendChild(i),n.appendChild(o),n}var f=function(){},m=function(e,t,n){return n.months[t?"shorthand":"longhand"][e]},g={D:f,F:function(e,t,n){e.setMonth(n.months.longhand.indexOf(t))},G:function(e,t){e.setHours(parseFloat(t))},H:function(e,t){e.setHours(parseFloat(t))},J:function(e,t){e.setDate(parseFloat(t))},K:function(e,t,n){e.setHours(e.getHours()%12+12*o(new RegExp(n.amPM[1],"i").test(t)))},M:function(e,t,n){e.setMonth(n.months.shorthand.indexOf(t))},S:function(e,t){e.setSeconds(parseFloat(t))},U:function(e,t){return new Date(1e3*parseFloat(t))},W:function(e,t,n){var a=parseInt(t),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+n.firstDayOfWeek),i},Y:function(e,t){e.setFullYear(parseFloat(t))},Z:function(e,t){return new Date(t)},d:function(e,t){e.setDate(parseFloat(t))},h:function(e,t){e.setHours(parseFloat(t))},i:function(e,t){e.setMinutes(parseFloat(t))},j:function(e,t){e.setDate(parseFloat(t))},l:f,m:function(e,t){e.setMonth(parseFloat(t)-1)},n:function(e,t){e.setMonth(parseFloat(t)-1)},s:function(e,t){e.setSeconds(parseFloat(t))},u:function(e,t){return new Date(parseFloat(t))},w:f,y:function(e,t){e.setFullYear(2e3+parseFloat(t))}},p={D:"(\\w+)",F:"(\\w+)",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"(\\w+)",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"(\\w+)",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},h={Z:function(e){return e.toISOString()},D:function(e,t,n){return t.weekdays.shorthand[h.w(e,t,n)]},F:function(e,t,n){return m(h.n(e,t,n)-1,!1,t)},G:function(e,t,n){return i(h.h(e,t,n))},H:function(e){return i(e.getHours())},J:function(e,t){return void 0!==t.ordinal?e.getDate()+t.ordinal(e.getDate()):e.getDate()},K:function(e,t){return t.amPM[o(e.getHours()>11)]},M:function(e,t){return m(e.getMonth(),!0,t)},S:function(e){return i(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,t,n){return n.getWeek(e)},Y:function(e){return e.getFullYear()},d:function(e){return i(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return i(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,t){return t.weekdays.longhand[e.getDay()]},m:function(e){return i(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},v=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,n){var a=n||r;return void 0!==i.formatDate?i.formatDate(e,t,a):t.split("").map((function(t,n,o){return h[t]&&"\\"!==o[n-1]?h[t](e,a,i):"\\"!==t?t:""})).join("")}},D=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,a,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if("string"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if("string"==typeof e){var s=t||(i||n).dateFormat,u=String(e).trim();if("today"===u)l=new Date,a=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(i&&i.parseDate)l=i.parseDate(e,s);else{l=i&&i.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],h=0,v=0,D="";h<s.length;h++){var w=s[h],b="\\"===w,C="\\"===s[h-1]||b;if(p[w]&&!C){D+=p[w];var M=new RegExp(D).exec(e);M&&(f=!0)&&m["Y"!==w?"push":"unshift"]({fn:g[w],val:M[++v]})}else b||(D+=".");m.forEach((function(e){var t=e.fn,n=e.val;return l=t(l,n,c)||l}))}l=f?l:void 0}}if(l instanceof Date&&!isNaN(l.getTime()))return!0===a&&l.setHours(0,0,0,0),l;i.errorHandler(new Error("Invalid date provided: "+d))}}};function w(e,t,n){return void 0===n&&(n=!0),!1!==n?new Date(e.getTime()).setHours(0,0,0,0)-new Date(t.getTime()).setHours(0,0,0,0):e.getTime()-t.getTime()}var b=864e5;function C(f,g){var h={config:e({},n,y.defaultConfig),l10n:a};function C(e){return e.bind(h)}function M(){var e=h.config;!1===e.weekNumbers&&1===e.showMonths||!0!==e.noCalendar&&window.requestAnimationFrame((function(){if(void 0!==h.calendarContainer&&(h.calendarContainer.style.visibility="hidden",h.calendarContainer.style.display="block"),void 0!==h.daysContainer){var t=(h.days.offsetWidth+1)*e.showMonths;h.daysContainer.style.width=t+"px",h.calendarContainer.style.width=t+(void 0!==h.weekWrapper?h.weekWrapper.offsetWidth:0)+"px",h.calendarContainer.style.removeProperty("visibility"),h.calendarContainer.style.removeProperty("display")}}))}function x(e){0===h.selectedDates.length&&ne(),void 0!==e&&"blur"!==e.type&&function(e){e.preventDefault();var t="keydown"===e.type,n=e.target;void 0!==h.amPM&&e.target===h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]);var a=parseFloat(n.getAttribute("min")),r=parseFloat(n.getAttribute("max")),l=parseFloat(n.getAttribute("step")),c=parseInt(n.value,10),d=e.delta||(t?38===e.which?1:-1:0),s=c+l*d;if(void 0!==n.value&&2===n.value.length){var u=n===h.hourElement,f=n===h.minuteElement;s<a?(s=r+s+o(!u)+(o(u)&&o(!h.amPM)),f&&Y(void 0,-1,h.hourElement)):s>r&&(s=n===h.hourElement?s-r-o(!h.amPM):a,f&&Y(void 0,1,h.hourElement)),h.amPM&&u&&(1===l?s+c===23:Math.abs(s-c)>l)&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]),n.value=i(s)}}(e);var t=h._input.value;E(),ve(),h._input.value!==t&&h._debouncedChange()}function E(){if(void 0!==h.hourElement&&void 0!==h.minuteElement){var e,t,n=(parseInt(h.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(h.minuteElement.value,10)||0)%60,i=void 0!==h.secondElement?(parseInt(h.secondElement.value,10)||0)%60:0;void 0!==h.amPM&&(e=n,t=h.amPM.textContent,n=e%12+12*o(t===h.l10n.amPM[1]));var r=void 0!==h.config.minTime||h.config.minDate&&h.minDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.minDate,!0);if(void 0!==h.config.maxTime||h.config.maxDate&&h.maxDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.maxDate,!0)){var l=void 0!==h.config.maxTime?h.config.maxTime:h.config.maxDate;(n=Math.min(n,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(r){var c=void 0!==h.config.minTime?h.config.minTime:h.config.minDate;(n=Math.max(n,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}I(n,a,i)}}function T(e){var t=e||h.latestSelectedDateObj;t&&I(t.getHours(),t.getMinutes(),t.getSeconds())}function k(){var e=h.config.defaultHour,t=h.config.defaultMinute,n=h.config.defaultSeconds;if(void 0!==h.config.minDate){var a=h.config.minDate.getHours(),i=h.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(t=Math.max(i,t)),e===a&&t===i&&(n=h.config.minDate.getSeconds())}if(void 0!==h.config.maxDate){var o=h.config.maxDate.getHours(),r=h.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(t=Math.min(r,t)),e===o&&t===r&&(n=h.config.maxDate.getSeconds())}I(e,t,n)}function I(e,t,n){void 0!==h.latestSelectedDateObj&&h.latestSelectedDateObj.setHours(e%24,t,n||0,0),h.hourElement&&h.minuteElement&&!h.isMobile&&(h.hourElement.value=i(h.config.time_24hr?e:(12+e)%12+12*o(e%12==0)),h.minuteElement.value=i(t),void 0!==h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(e>=12)]),void 0!==h.secondElement&&(h.secondElement.value=i(n)))}function S(e){var t=parseInt(e.target.value)+(e.delta||0);(t/1e3>1||"Enter"===e.key&&!/[^\d]/.test(t.toString()))&&V(t)}function O(e,t,n,a){return t instanceof Array?t.forEach((function(t){return O(e,t,n,a)})):e instanceof Array?e.forEach((function(e){return O(e,t,n,a)})):(e.addEventListener(t,n,a),void h._handlers.push({element:e,event:t,handler:n,options:a}))}function _(e){return function(t){1===t.which&&e(t)}}function F(){fe("onChange")}function N(e,t){var n=void 0!==e?h.parseDate(e):h.latestSelectedDateObj||(h.config.minDate&&h.config.minDate>h.now?h.config.minDate:h.config.maxDate&&h.config.maxDate<h.now?h.config.maxDate:h.now),a=h.currentYear,i=h.currentMonth;try{void 0!==n&&(h.currentYear=n.getFullYear(),h.currentMonth=n.getMonth())}catch(e){e.message="Invalid date supplied: "+n,h.config.errorHandler(e)}t&&h.currentYear!==a&&(fe("onYearChange"),B()),!t||h.currentYear===a&&h.currentMonth===i||fe("onMonthChange"),h.redraw()}function P(e){~e.target.className.indexOf("arrow")&&Y(e,e.target.classList.contains("arrowUp")?1:-1)}function Y(e,t,n){var a=e&&e.target,i=n||a&&a.parentNode&&a.parentNode.firstChild,o=me("increment");o.delta=t,i&&i.dispatchEvent(o)}function A(e,t,n,a){var i=Z(t,!0),o=d("span","flatpickr-day "+e,t.getDate().toString());return o.dateObj=t,o.$i=a,o.setAttribute("aria-label",h.formatDate(t,h.config.ariaDateFormat)),-1===e.indexOf("hidden")&&0===w(t,h.now)&&(h.todayDateElem=o,o.classList.add("today"),o.setAttribute("aria-current","date")),i?(o.tabIndex=-1,ge(t)&&(o.classList.add("selected"),h.selectedDateElem=o,"range"===h.config.mode&&(c(o,"startRange",h.selectedDates[0]&&0===w(t,h.selectedDates[0],!0)),c(o,"endRange",h.selectedDates[1]&&0===w(t,h.selectedDates[1],!0)),"nextMonthDay"===e&&o.classList.add("inRange")))):o.classList.add("flatpickr-disabled"),"range"===h.config.mode&&function(e){return!("range"!==h.config.mode||h.selectedDates.length<2)&&w(e,h.selectedDates[0])>=0&&w(e,h.selectedDates[1])<=0}(t)&&!ge(t)&&o.classList.add("inRange"),h.weekNumbers&&1===h.config.showMonths&&"prevMonthDay"!==e&&n%7==1&&h.weekNumbers.insertAdjacentHTML("beforeend","<span class=’flatpickr-day’>"+h.config.getWeek(t)+"</span>"),fe("onDayCreate",o),o}function j(e){e.focus(),"range"===h.config.mode&&ee(e)}function H(e){for(var t=e>0?0:h.config.showMonths-1,n=e>0?h.config.showMonths:-1,a=t;a!=n;a+=e)for(var i=h.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf("hidden")&&Z(c.dateObj))return c}}function L(e,t){var n=Q(document.activeElement||document.body),a=void 0!==e?e:n?document.activeElement:void 0!==h.selectedDateElem&&Q(h.selectedDateElem)?h.selectedDateElem:void 0!==h.todayDateElem&&Q(h.todayDateElem)?h.todayDateElem:H(t>0?1:-1);return void 0===a?h._input.focus():n?void function(e,t){for(var n=-1===e.className.indexOf("Month")?e.dateObj.getMonth():h.currentMonth,a=t>0?h.config.showMonths:-1,i=t>0?1:-1,o=n-h.currentMonth;o!=a;o+=i)for(var r=h.daysContainer.children[o],l=n-h.currentMonth===o?e.$i+t:t<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d<c&&d!=(t>0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf("hidden")&&Z(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(t))return j(s)}h.changeMonth(i),L(H(i),0)}(a,t):j(a)}function W(e,t){for(var n=(new Date(e,t,1).getDay()-h.l10n.firstDayOfWeek+7)%7,a=h.utils.getDaysInMonth((t-1+12)%12),i=h.utils.getDaysInMonth(t),o=window.document.createDocumentFragment(),r=h.config.showMonths>1,l=r?"prevMonthDay hidden":"prevMonthDay",c=r?"nextMonthDay hidden":"nextMonthDay",s=a+1-n,u=0;s<=a;s++,u++)o.appendChild(A(l,new Date(e,t-1,s),s,u));for(s=1;s<=i;s++,u++)o.appendChild(A("",new Date(e,t,s),s,u));for(var f=i+1;f<=42-n&&(1===h.config.showMonths||u%7!=0);f++,u++)o.appendChild(A(c,new Date(e,t+1,f%i),f,u));var m=d("div","dayContainer");return m.appendChild(o),m}function R(){if(void 0!==h.daysContainer){s(h.daysContainer),h.weekNumbers&&s(h.weekNumbers);for(var e=document.createDocumentFragment(),t=0;t<h.config.showMonths;t++){var n=new Date(h.currentYear,h.currentMonth,1);n.setMonth(h.currentMonth+t),e.appendChild(W(n.getFullYear(),n.getMonth()))}h.daysContainer.appendChild(e),h.days=h.daysContainer.firstChild,"range"===h.config.mode&&1===h.selectedDates.length&&ee()}}function B(){if(!(h.config.showMonths>1||"dropdown"!==h.config.monthSelectorType)){var e=function(e){return!(void 0!==h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&e<h.config.minDate.getMonth()||void 0!==h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()&&e>h.config.maxDate.getMonth())};h.monthsDropdownContainer.tabIndex=-1,h.monthsDropdownContainer.innerHTML="";for(var t=0;t<12;t++)if(e(t)){var n=d("option","flatpickr-monthDropdown-month");n.value=new Date(h.currentYear,t).getMonth().toString(),n.textContent=m(t,h.config.shorthandCurrentMonth,h.l10n),n.tabIndex=-1,h.currentMonth===t&&(n.selected=!0),h.monthsDropdownContainer.appendChild(n)}}}function J(){var e,t=d("div","flatpickr-month"),n=window.document.createDocumentFragment();h.config.showMonths>1||"static"===h.config.monthSelectorType?e=d("span","cur-month"):(h.monthsDropdownContainer=d("select","flatpickr-monthDropdown-months"),O(h.monthsDropdownContainer,"change",(function(e){var t=e.target,n=parseInt(t.value,10);h.changeMonth(n-h.currentMonth),fe("onMonthChange")})),B(),e=h.monthsDropdownContainer);var a=u("cur-year",{tabindex:"-1"}),i=a.getElementsByTagName("input")[0];i.setAttribute("aria-label",h.l10n.yearAriaLabel),h.config.minDate&&i.setAttribute("min",h.config.minDate.getFullYear().toString()),h.config.maxDate&&(i.setAttribute("max",h.config.maxDate.getFullYear().toString()),i.disabled=!!h.config.minDate&&h.config.minDate.getFullYear()===h.config.maxDate.getFullYear());var o=d("div","flatpickr-current-month");return o.appendChild(e),o.appendChild(a),n.appendChild(o),t.appendChild(n),{container:t,yearElement:i,monthElement:e}}function K(){s(h.monthNav),h.monthNav.appendChild(h.prevMonthNav),h.config.showMonths&&(h.yearElements=[],h.monthElements=[]);for(var e=h.config.showMonths;e–;){var t=J();h.yearElements.push(t.yearElement),h.monthElements.push(t.monthElement),h.monthNav.appendChild(t.container)}h.monthNav.appendChild(h.nextMonthNav)}function U(){h.weekdayContainer?s(h.weekdayContainer):h.weekdayContainer=d("div","flatpickr-weekdays");for(var e=h.config.showMonths;e–;){var t=d("div","flatpickr-weekdaycontainer");h.weekdayContainer.appendChild(t)}return q(),h.weekdayContainer}function q(){if(h.weekdayContainer){var e=h.l10n.firstDayOfWeek,t=h.l10n.weekdays.shorthand.slice();e>0&&e<t.length&&(t=t.splice(e,t.length).concat(t.splice(0,e)));for(var n=h.config.showMonths;n–;)h.weekdayContainer.children[n].innerHTML="\n <span class=’flatpickr-weekday’>\n "+t.join("</span><span class=’flatpickr-weekday’>")+"\n </span>\n "}}function $(e,t){void 0===t&&(t=!0);var n=t?e:e-h.currentMonth;n<0&&!0===h._hidePrevMonthArrow||n>0&&!0===h._hideNextMonthArrow||(h.currentMonth+=n,(h.currentMonth<0||h.currentMonth>11)&&(h.currentYear+=h.currentMonth>11?1:-1,h.currentMonth=(h.currentMonth+12)%12,fe("onYearChange"),B()),R(),fe("onMonthChange"),pe())}function z(e){return!(!h.config.appendTo||!h.config.appendTo.contains(e))||h.calendarContainer.contains(e)}function G(e){if(h.isOpen&&!h.config.inline){var t="function"==typeof(r=e).composedPath?r.composedPath()[0]:r.target,n=z(t),a=t===h.input||t===h.altInput||h.element.contains(t)||e.path&&e.path.indexOf&&(~e.path.indexOf(h.input)||~e.path.indexOf(h.altInput)),i="blur"===e.type?a&&e.relatedTarget&&!z(e.relatedTarget):!a&&!n&&!z(e.relatedTarget),o=!h.config.ignoredFocusElements.some((function(e){return e.contains(t)}));i&&o&&(void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&x(),h.close(),"range"===h.config.mode&&1===h.selectedDates.length&&(h.clear(!1),h.redraw()))}var r}function V(e){if(!(!e||h.config.minDate&&e<h.config.minDate.getFullYear()||h.config.maxDate&&e>h.config.maxDate.getFullYear())){var t=e,n=h.currentYear!==t;h.currentYear=t||h.currentYear,h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth=Math.min(h.config.maxDate.getMonth(),h.currentMonth):h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&(h.currentMonth=Math.max(h.config.minDate.getMonth(),h.currentMonth)),n&&(h.redraw(),fe("onYearChange"),B())}}function Z(e,t){void 0===t&&(t=!0);var n=h.parseDate(e,void 0,t);if(h.config.minDate&&n&&w(n,h.config.minDate,void 0!==t?t:!h.minDateHasTime)<0||h.config.maxDate&&n&&w(n,h.config.maxDate,void 0!==t?t:!h.maxDateHasTime)>0)return!1;if(0===h.config.enable.length&&0===h.config.disable.length)return!0;if(void 0===n)return!1;for(var a=h.config.enable.length>0,i=a?h.config.enable:h.config.disable,o=0,r=void 0;o<i.length;o++){if("function"==typeof(r=i[o])&&r(n))return a;if(r instanceof Date&&void 0!==n&&r.getTime()===n.getTime())return a;if("string"==typeof r&&void 0!==n){var l=h.parseDate(r,void 0,!0);return l&&l.getTime()===n.getTime()?a:!a}if("object"==typeof r&&void 0!==n&&r.from&&r.to&&n.getTime()>=r.from.getTime()&&n.getTime()<=r.to.getTime())return a}return!a}function Q(e){return void 0!==h.daysContainer&&-1===e.className.indexOf("hidden")&&h.daysContainer.contains(e)}function X(e){var t=e.target===h._input,n=h.config.allowInput,a=h.isOpen&&(!n||!t),i=h.config.inline&&t&&!n;if(13===e.keyCode&&t){if(n)return h.setDate(h._input.value,!0,e.target===h.altInput?h.config.altFormat:h.config.dateFormat),e.target.blur();h.open()}else if(z(e.target)||a||i){var o=!!h.timeContainer&&h.timeContainer.contains(e.target);switch(e.keyCode){case 13:o?(e.preventDefault(),x(),le()):ce(e);break;case 27:e.preventDefault(),le();break;case 8:case 46:t&&!h.config.allowInput&&(e.preventDefault(),h.clear());break;case 37:case 39:if(o||t)h.hourElement&&h.hourElement.focus();else if(e.preventDefault(),void 0!==h.daysContainer&&(!1===n||document.activeElement&&Q(document.activeElement))){var r=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),$(r),L(H(1),0)):L(void 0,r)}break;case 38:case 40:e.preventDefault();var l=40===e.keyCode?1:-1;h.daysContainer&&void 0!==e.target.$i||e.target===h.input||e.target===h.altInput?e.ctrlKey?(e.stopPropagation(),V(h.currentYear-l),L(H(1),0)):o||L(void 0,7*l):e.target===h.currentYearElement?V(h.currentYear-l):h.config.enableTime&&(!o&&h.hourElement&&h.hourElement.focus(),x(e),h._debouncedChange());break;case 9:if(o){var c=[h.hourElement,h.minuteElement,h.secondElement,h.amPM].concat(h.pluginElements).filter((function(e){return e})),d=c.indexOf(e.target);if(-1!==d){var s=c[d+(e.shiftKey?-1:1)];e.preventDefault(),(s||h._input).focus()}}else!h.config.noCalendar&&h.daysContainer&&h.daysContainer.contains(e.target)&&e.shiftKey&&(e.preventDefault(),h._input.focus())}}if(void 0!==h.amPM&&e.target===h.amPM)switch(e.key){case h.l10n.amPM[0].charAt(0):case h.l10n.amPM[0].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[0],E(),ve();break;case h.l10n.amPM[1].charAt(0):case h.l10n.amPM[1].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[1],E(),ve()}(t||z(e.target))&&fe("onKeyDown",e)}function ee(e){if(1===h.selectedDates.length&&(!e||e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled"))){for(var t=e?e.dateObj.getTime():h.days.firstElementChild.dateObj.getTime(),n=h.parseDate(h.selectedDates[0],void 0,!0).getTime(),a=Math.min(t,h.selectedDates[0].getTime()),i=Math.max(t,h.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;c<i;c+=b)Z(new Date(c),!0)||(o=o||c>a&&c<i,c<n&&(!r||c>r)?r=c:c>n&&(!l||c<l)&&(l=c));for(var d=0;d<h.config.showMonths;d++)for(var s=h.daysContainer.children[d],u=function(a,i){var c,d,u,f=s.children[a],m=f.dateObj.getTime(),g=r>0&&m<r||l>0&&m>l;return g?(f.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach((function(e){f.classList.remove(e)})),"continue"):o&&!g?"continue":(["startRange","inRange","endRange","notAllowed"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(t<=h.selectedDates[0].getTime()?"startRange":"endRange"),n<t&&m===n?f.classList.add("startRange"):n>t&&m===n&&f.classList.add("endRange"),m>=r&&(0===l||m<=l)&&(d=n,u=t,(c=m)>Math.min(d,u)&&c<Math.max(d,u))&&f.classList.add("inRange"))))},f=0,m=s.children.length;f<m;f++)u(f)}}function te(){!h.isOpen||h.config.static||h.config.inline||oe()}function ne(){h.setDate(void 0!==h.config.minDate?new Date(h.config.minDate.getTime()):new Date,!0),k(),ve()}function ae(e){return function(t){var n=h.config["_"+e+"Date"]=h.parseDate(t,h.config.dateFormat),a=h.config["_"+("min"===e?"max":"min")+"Date"];void 0!==n&&(h["min"===e?"minDateHasTime":"maxDateHasTime"]=n.getHours()>0||n.getMinutes()>0||n.getSeconds()>0),h.selectedDates&&(h.selectedDates=h.selectedDates.filter((function(e){return Z(e)})),h.selectedDates.length||"min"!==e||T(n),ve()),h.daysContainer&&(re(),void 0!==n?h.currentYearElement[e]=n.getFullYear().toString():h.currentYearElement.removeAttribute(e),h.currentYearElement.disabled=!!a&&void 0!==n&&a.getFullYear()===n.getFullYear())}}function ie(){"object"!=typeof h.config.locale&&void 0===y.l10ns[h.config.locale]&&h.config.errorHandler(new Error("flatpickr: invalid locale "+h.config.locale)),h.l10n=e({},y.l10ns.default,"object"==typeof h.config.locale?h.config.locale:"default"!==h.config.locale?y.l10ns[h.config.locale]:void 0),p.K="("+h.l10n.amPM[0]+"|\"+h.l10n.amPM[1]+\"|"+h.l10n.amPM[0].toLowerCase()+"|\"+h.l10n.amPM[1].toLowerCase()+\")\",void 0===e({},g,JSON.parse(JSON.stringify(f.dataset||{}))).time_24hr&&void 0===y.defaultConfig.time_24hr&&(h.config.time_24hr=h.l10n.time_24hr),h.formatDate=v(h),h.parseDate=D({config:h.config,l10n:h.l10n})}function oe(e){if(void 0!==h.calendarContainer){fe(\"onPreCalendarPosition\");var t=e||h._positionElement,n=Array.prototype.reduce.call(h.calendarContainer.children,(function(e,t){return e+t.offsetHeight}),0),a=h.calendarContainer.offsetWidth,i=h.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=t.getBoundingClientRect(),d=window.innerHeight-l.bottom,s=\"above\"===o||"below"!==o&&d<n&&l.top>n,u=window.pageYOffset+l.top+(s?-n-2:t.offsetHeight+2);if(c(h.calendarContainer,"arrowTop",!s),c(h.calendarContainer,"arrowBottom",s),!h.config.inline){var f=window.pageXOffset+l.left-(null!=r&&"center"===r?(a-l.width)/2:0),m=window.document.body.offsetWidth-(window.pageXOffset+l.right),g=f+a>window.document.body.offsetWidth,p=m+a>window.document.body.offsetWidth;if(c(h.calendarContainer,"rightMost",g),!h.config.static)if(h.calendarContainer.style.top=u+"px",g)if(p){var v=document.styleSheets[0];if(void 0===v)return;var D=window.document.body.offsetWidth,w=Math.max(0,D/2-a/2),b=v.cssRules.length,C="{left:"+l.left+"px;right:auto;}";c(h.calendarContainer,"rightMost",!1),c(h.calendarContainer,"centerMost",!0),v.insertRule(".flatpickr-calendar.centerMost:before,.flatpickr-calendar.centerMost:after"+C,b),h.calendarContainer.style.left=w+"px",h.calendarContainer.style.right="auto"}else h.calendarContainer.style.left="auto",h.calendarContainer.style.right=m+"px";else h.calendarContainer.style.left=f+"px",h.calendarContainer.style.right="auto"}}}function re(){h.config.noCalendar||h.isMobile||(pe(),R())}function le(){h._input.focus(),-1!==window.navigator.userAgent.indexOf("MSIE")||void 0!==navigator.msMaxTouchPoints?setTimeout(h.close,0):h.close()}function ce(e){e.preventDefault(),e.stopPropagation();var t=function e(t,n){return n(t)?t:t.parentNode?e(t.parentNode,n):void 0}(e.target,(function(e){return e.classList&&e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled")&&!e.classList.contains("notAllowed")}));if(void 0!==t){var n=t,a=h.latestSelectedDateObj=new Date(n.dateObj.getTime()),i=(a.getMonth()<h.currentMonth||a.getMonth()>h.currentMonth+h.config.showMonths-1)&&"range"!==h.config.mode;if(h.selectedDateElem=n,"single"===h.config.mode)h.selectedDates=[a];else if("multiple"===h.config.mode){var o=ge(a);o?h.selectedDates.splice(parseInt(o),1):h.selectedDates.push(a)}else"range"===h.config.mode&&(2===h.selectedDates.length&&h.clear(!1,!1),h.latestSelectedDateObj=a,h.selectedDates.push(a),0!==w(a,h.selectedDates[0],!0)&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()})));if(E(),i){var r=h.currentYear!==a.getFullYear();h.currentYear=a.getFullYear(),h.currentMonth=a.getMonth(),r&&(fe("onYearChange"),B()),fe("onMonthChange")}if(pe(),R(),ve(),h.config.enableTime&&setTimeout((function(){return h.showTimeInput=!0}),50),i||"range"===h.config.mode||1!==h.config.showMonths?void 0!==h.selectedDateElem&&void 0===h.hourElement&&h.selectedDateElem&&h.selectedDateElem.focus():j(n),void 0!==h.hourElement&&void 0!==h.hourElement&&h.hourElement.focus(),h.config.closeOnSelect){var l="single"===h.config.mode&&!h.config.enableTime,c="range"===h.config.mode&&2===h.selectedDates.length&&!h.config.enableTime;(l||c)&&le()}F()}}h.parseDate=D({config:h.config,l10n:h.l10n}),h._handlers=[],h.pluginElements=[],h.loadedPlugins=[],h._bind=O,h._setHoursFromDate=T,h._positionCalendar=oe,h.changeMonth=$,h.changeYear=V,h.clear=function(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0),h.input.value="",void 0!==h.altInput&&(h.altInput.value=""),void 0!==h.mobileInput&&(h.mobileInput.value=""),h.selectedDates=[],h.latestSelectedDateObj=void 0,!0===t&&(h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth()),h.showTimeInput=!1,!0===h.config.enableTime&&k(),h.redraw(),e&&fe("onChange")},h.close=function(){h.isOpen=!1,h.isMobile||(void 0!==h.calendarContainer&&h.calendarContainer.classList.remove("open"),void 0!==h._input&&h._input.classList.remove("active")),fe("onClose")},h._createElement=d,h.destroy=function(){void 0!==h.config&&fe("onDestroy");for(var e=h._handlers.length;e–;){var t=h._handlers[e];t.element.removeEventListener(t.event,t.handler,t.options)}if(h._handlers=[],h.mobileInput)h.mobileInput.parentNode&&h.mobileInput.parentNode.removeChild(h.mobileInput),h.mobileInput=void 0;else if(h.calendarContainer&&h.calendarContainer.parentNode)if(h.config.static&&h.calendarContainer.parentNode){var n=h.calendarContainer.parentNode;if(n.lastChild&&n.removeChild(n.lastChild),n.parentNode){for(;n.firstChild;)n.parentNode.insertBefore(n.firstChild,n);n.parentNode.removeChild(n)}}else h.calendarContainer.parentNode.removeChild(h.calendarContainer);h.altInput&&(h.input.type="text",h.altInput.parentNode&&h.altInput.parentNode.removeChild(h.altInput),delete h.altInput),h.input&&(h.input.type=h.input._type,h.input.classList.remove("flatpickr-input"),h.input.removeAttribute("readonly"),h.input.value=""),["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach((function(e){try{delete h[e]}catch(e){}}))},h.isEnabled=Z,h.jumpToDate=N,h.open=function(e,t){if(void 0===t&&(t=h._positionElement),!0===h.isMobile)return e&&(e.preventDefault(),e.target&&e.target.blur()),void 0!==h.mobileInput&&(h.mobileInput.focus(),h.mobileInput.click()),void fe("onOpen");if(!h._input.disabled&&!h.config.inline){var n=h.isOpen;h.isOpen=!0,n||(h.calendarContainer.classList.add("open"),h._input.classList.add("active"),fe("onOpen"),oe(t)),!0===h.config.enableTime&&!0===h.config.noCalendar&&(0===h.selectedDates.length&&ne(),!1!==h.config.allowInput||void 0!==e&&h.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return h.hourElement.select()}),50))}},h.redraw=re,h.set=function(e,n){if(null!==e&&"object"==typeof e)for(var a in Object.assign(h.config,e),e)void 0!==de[a]&&de[a].forEach((function(e){return e()}));else h.config[e]=n,void 0!==de[e]?de[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(h.config[e]=l(n));h.redraw(),ve(!1)},h.setDate=function(e,t,n){if(void 0===t&&(t=!1),void 0===n&&(n=h.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return h.clear(t);se(e,n),h.showTimeInput=h.selectedDates.length>0,h.latestSelectedDateObj=h.selectedDates[h.selectedDates.length-1],h.redraw(),N(),T(),0===h.selectedDates.length&&h.clear(!1),ve(t),t&&fe("onChange")},h.toggle=function(e){if(!0===h.isOpen)return h.close();h.open(e)};var de={locale:[ie,q],showMonths:[K,M,U],minDate:[N],maxDate:[N]};function se(e,t){var n=[];if(e instanceof Array)n=e.map((function(e){return h.parseDate(e,t)}));else if(e instanceof Date||"number"==typeof e)n=[h.parseDate(e,t)];else if("string"==typeof e)switch(h.config.mode){case"single":case"time":n=[h.parseDate(e,t)];break;case"multiple":n=e.split(h.config.conjunction).map((function(e){return h.parseDate(e,t)}));break;case"range":n=e.split(h.l10n.rangeSeparator).map((function(e){return h.parseDate(e,t)}))}else h.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(e)));h.selectedDates=n.filter((function(e){return e instanceof Date&&Z(e,!1)})),"range"===h.config.mode&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()}))}function ue(e){return e.slice().map((function(e){return"string"==typeof e||"number"==typeof e||e instanceof Date?h.parseDate(e,void 0,!0):e&&"object"==typeof e&&e.from&&e.to?{from:h.parseDate(e.from,void 0),to:h.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function fe(e,t){if(void 0!==h.config){var n=h.config[e];if(void 0!==n&&n.length>0)for(var a=0;n[a]&&a<n.length;a++)n[a](h.selectedDates,h.input.value,h,t);"onChange"===e&&(h.input.dispatchEvent(me("change")),h.input.dispatchEvent(me("input")))}}function me(e){var t=document.createEvent("Event");return t.initEvent(e,!0,!0),t}function ge(e){for(var t=0;t<h.selectedDates.length;t++)if(0===w(h.selectedDates[t],e))return""+t;return!1}function pe(){h.config.noCalendar||h.isMobile||!h.monthNav||(h.yearElements.forEach((function(e,t){var n=new Date(h.currentYear,h.currentMonth,1);n.setMonth(h.currentMonth+t),h.config.showMonths>1||"static"===h.config.monthSelectorType?h.monthElements[t].textContent=m(n.getMonth(),h.config.shorthandCurrentMonth,h.l10n)+" ":h.monthsDropdownContainer.value=n.getMonth().toString(),e.value=n.getFullYear().toString()})),h._hidePrevMonthArrow=void 0!==h.config.minDate&&(h.currentYear===h.config.minDate.getFullYear()?h.currentMonth<=h.config.minDate.getMonth():h.currentYear<h.config.minDate.getFullYear()),h._hideNextMonthArrow=void 0!==h.config.maxDate&&(h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth+1>h.config.maxDate.getMonth():h.currentYear>h.config.maxDate.getFullYear()))}function he(e){return h.selectedDates.map((function(t){return h.formatDate(t,e)})).filter((function(e,t,n){return"range"!==h.config.mode||h.config.enableTime||n.indexOf(e)===t})).join("range"!==h.config.mode?h.config.conjunction:h.l10n.rangeSeparator)}function ve(e){void 0===e&&(e=!0),void 0!==h.mobileInput&&h.mobileFormatStr&&(h.mobileInput.value=void 0!==h.latestSelectedDateObj?h.formatDate(h.latestSelectedDateObj,h.mobileFormatStr):""),h.input.value=he(h.config.dateFormat),void 0!==h.altInput&&(h.altInput.value=he(h.config.altFormat)),!1!==e&&fe("onValueUpdate")}function De(e){var t=h.prevMonthNav.contains(e.target),n=h.nextMonthNav.contains(e.target);t||n?$(t?-1:1):h.yearElements.indexOf(e.target)>=0?e.target.select():e.target.classList.contains("arrowUp")?h.changeYear(h.currentYear+1):e.target.classList.contains("arrowDown")&&h.changeYear(h.currentYear-1)}return function(){h.element=h.input=f,h.isOpen=!1,function(){var a=["wrap","weekNumbers","allowInput","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],i=e({},g,JSON.parse(JSON.stringify(f.dataset||{}))),o={};h.config.parseDate=i.parseDate,h.config.formatDate=i.formatDate,Object.defineProperty(h.config,"enable",{get:function(){return h.config._enable},set:function(e){h.config._enable=ue(e)}}),Object.defineProperty(h.config,"disable",{get:function(){return h.config._disable},set:function(e){h.config._disable=ue(e)}});var r="time"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var c=y.defaultConfig.dateFormat||n.dateFormat;o.dateFormat=i.noCalendar||r?"H:i"+(i.enableSeconds?":S":""):c+" H:i"+(i.enableSeconds?":S":"")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=y.defaultConfig.altFormat||n.altFormat;o.altFormat=i.noCalendar||r?"h:i"+(i.enableSeconds?":S K":" K"):d+" h:i"+(i.enableSeconds?":S":"")+" K"}i.altInputClass||(h.config.altInputClass=h.input.className+" "+h.config.altInputClass),Object.defineProperty(h.config,"minDate",{get:function(){return h.config._minDate},set:ae("min")}),Object.defineProperty(h.config,"maxDate",{get:function(){return h.config._maxDate},set:ae("max")});var s=function(e){return function(t){h.config["min"===e?"_minTime":"_maxTime"]=h.parseDate(t,"H:i:S")}};Object.defineProperty(h.config,"minTime",{get:function(){return h.config._minTime},set:s("min")}),Object.defineProperty(h.config,"maxTime",{get:function(){return h.config._maxTime},set:s("max")}),"time"===i.mode&&(h.config.noCalendar=!0,h.config.enableTime=!0),Object.assign(h.config,o,i);for(var u=0;u<a.length;u++)h.config[a[u]]=!0===h.config[a[u]]||"true"===h.config[a[u]];for(t.filter((function(e){return void 0!==h.config[e]})).forEach((function(e){h.config[e]=l(h.config[e]||[]).map(C)})),h.isMobile=!h.config.disableMobile&&!h.config.inline&&"single"===h.config.mode&&!h.config.disable.length&&!h.config.enable.length&&!h.config.weekNumbers&&/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),u=0;u<h.config.plugins.length;u++){var m=h.config.plugins[u](h)||{};for(var p in m)t.indexOf(p)>-1?h.config[p]=l(m[p]).map(C).concat(h.config[p]):void 0===i[p]&&(h.config[p]=m[p])}fe("onParseConfig")}(),ie(),h.input=h.config.wrap?f.querySelector("[data-input]"):f,h.input?(h.input._type=h.input.type,h.input.type="text",h.input.classList.add("flatpickr-input"),h._input=h.input,h.config.altInput&&(h.altInput=d(h.input.nodeName,h.config.altInputClass),h._input=h.altInput,h.altInput.placeholder=h.input.placeholder,h.altInput.disabled=h.input.disabled,h.altInput.required=h.input.required,h.altInput.tabIndex=h.input.tabIndex,h.altInput.type="text",h.input.setAttribute("type","hidden"),!h.config.static&&h.input.parentNode&&h.input.parentNode.insertBefore(h.altInput,h.input.nextSibling)),h.config.allowInput||h._input.setAttribute("readonly","readonly"),h._positionElement=h.config.positionElement||h._input):h.config.errorHandler(new Error("Invalid input element specified")),function(){h.selectedDates=[],h.now=h.parseDate(h.config.now)||new Date;var e=h.config.defaultDate||("INPUT"!==h.input.nodeName&&"TEXTAREA"!==h.input.nodeName||!h.input.placeholder||h.input.value!==h.input.placeholder?h.input.value:null);e&&se(e,h.config.dateFormat),h._initialDate=h.selectedDates.length>0?h.selectedDates[0]:h.config.minDate&&h.config.minDate.getTime()>h.now.getTime()?h.config.minDate:h.config.maxDate&&h.config.maxDate.getTime()<h.now.getTime()?h.config.maxDate:h.now,h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth(),h.selectedDates.length>0&&(h.latestSelectedDateObj=h.selectedDates[0]),void 0!==h.config.minTime&&(h.config.minTime=h.parseDate(h.config.minTime,"H:i")),void 0!==h.config.maxTime&&(h.config.maxTime=h.parseDate(h.config.maxTime,"H:i")),h.minDateHasTime=!!h.config.minDate&&(h.config.minDate.getHours()>0||h.config.minDate.getMinutes()>0||h.config.minDate.getSeconds()>0),h.maxDateHasTime=!!h.config.maxDate&&(h.config.maxDate.getHours()>0||h.config.maxDate.getMinutes()>0||h.config.maxDate.getSeconds()>0),Object.defineProperty(h,"showTimeInput",{get:function(){return h._showTimeInput},set:function(e){h._showTimeInput=e,h.calendarContainer&&c(h.calendarContainer,"showTimeInput",e),h.isOpen&&oe()}})}(),h.utils={getDaysInMonth:function(e,t){return void 0===e&&(e=h.currentMonth),void 0===t&&(t=h.currentYear),1===e&&(t%4==0&&t%100!=0||t%400==0)?29:h.l10n.daysInMonth[e]}},h.isMobile||function(){var e=window.document.createDocumentFragment();if(h.calendarContainer=d("div","flatpickr-calendar"),h.calendarContainer.tabIndex=-1,!h.config.noCalendar){if(e.appendChild((h.monthNav=d("div","flatpickr-months"),h.yearElements=[],h.monthElements=[],h.prevMonthNav=d("span","flatpickr-prev-month"),h.prevMonthNav.innerHTML=h.config.prevArrow,h.nextMonthNav=d("span","flatpickr-next-month"),h.nextMonthNav.innerHTML=h.config.nextArrow,K(),Object.defineProperty(h,"_hidePrevMonthArrow",{get:function(){return h.__hidePrevMonthArrow},set:function(e){h.__hidePrevMonthArrow!==e&&(c(h.prevMonthNav,"flatpickr-disabled",e),h.__hidePrevMonthArrow=e)}}),Object.defineProperty(h,"_hideNextMonthArrow",{get:function(){return h.__hideNextMonthArrow},set:function(e){h.__hideNextMonthArrow!==e&&(c(h.nextMonthNav,"flatpickr-disabled",e),h.__hideNextMonthArrow=e)}}),h.currentYearElement=h.yearElements[0],pe(),h.monthNav)),h.innerContainer=d("div","flatpickr-innerContainer"),h.config.weekNumbers){var t=function(){h.calendarContainer.classList.add("hasWeeks");var e=d("div","flatpickr-weekwrapper");e.appendChild(d("span","flatpickr-weekday",h.l10n.weekAbbreviation));var t=d("div","flatpickr-weeks");return e.appendChild(t),{weekWrapper:e,weekNumbers:t}}(),n=t.weekWrapper,a=t.weekNumbers;h.innerContainer.appendChild(n),h.weekNumbers=a,h.weekWrapper=n}h.rContainer=d("div","flatpickr-rContainer"),h.rContainer.appendChild(U()),h.daysContainer||(h.daysContainer=d("div","flatpickr-days"),h.daysContainer.tabIndex=-1),R(),h.rContainer.appendChild(h.daysContainer),h.innerContainer.appendChild(h.rContainer),e.appendChild(h.innerContainer)}h.config.enableTime&&e.appendChild(function(){h.calendarContainer.classList.add("hasTime"),h.config.noCalendar&&h.calendarContainer.classList.add("noCalendar"),h.timeContainer=d("div","flatpickr-time"),h.timeContainer.tabIndex=-1;var e=d("span","flatpickr-time-separator",":"),t=u("flatpickr-hour",{"aria-label":h.l10n.hourAriaLabel});h.hourElement=t.getElementsByTagName("input")[0];var n=u("flatpickr-minute",{"aria-label":h.l10n.minuteAriaLabel});if(h.minuteElement=n.getElementsByTagName("input")[0],h.hourElement.tabIndex=h.minuteElement.tabIndex=-1,h.hourElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getHours():h.config.time_24hr?h.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(h.config.defaultHour)),h.minuteElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getMinutes():h.config.defaultMinute),h.hourElement.setAttribute("step",h.config.hourIncrement.toString()),h.minuteElement.setAttribute("step",h.config.minuteIncrement.toString()),h.hourElement.setAttribute("min",h.config.time_24hr?"0":"1"),h.hourElement.setAttribute("max",h.config.time_24hr?"23":"12"),h.minuteElement.setAttribute("min","0"),h.minuteElement.setAttribute("max","59"),h.timeContainer.appendChild(t),h.timeContainer.appendChild(e),h.timeContainer.appendChild(n),h.config.time_24hr&&h.timeContainer.classList.add("time24hr"),h.config.enableSeconds){h.timeContainer.classList.add("hasSeconds");var a=u("flatpickr-second");h.secondElement=a.getElementsByTagName("input")[0],h.secondElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getSeconds():h.config.defaultSeconds),h.secondElement.setAttribute("step",h.minuteElement.getAttribute("step")),h.secondElement.setAttribute("min","0"),h.secondElement.setAttribute("max","59"),h.timeContainer.appendChild(d("span","flatpickr-time-separator",":")),h.timeContainer.appendChild(a)}return h.config.time_24hr||(h.amPM=d("span","flatpickr-am-pm",h.l10n.amPM[o((h.latestSelectedDateObj?h.hourElement.value:h.config.defaultHour)>11)]),h.amPM.title=h.l10n.toggleTitle,h.amPM.tabIndex=-1,h.timeContainer.appendChild(h.amPM)),h.timeContainer}()),c(h.calendarContainer,"rangeMode","range"===h.config.mode),c(h.calendarContainer,"animate",!0===h.config.animate),c(h.calendarContainer,"multiMonth",h.config.showMonths>1),h.calendarContainer.appendChild(e);var r=void 0!==h.config.appendTo&&void 0!==h.config.appendTo.nodeType;if((h.config.inline||h.config.static)&&(h.calendarContainer.classList.add(h.config.inline?"inline":"static"),h.config.inline&&(!r&&h.element.parentNode?h.element.parentNode.insertBefore(h.calendarContainer,h._input.nextSibling):void 0!==h.config.appendTo&&h.config.appendTo.appendChild(h.calendarContainer)),h.config.static)){var l=d("div","flatpickr-wrapper");h.element.parentNode&&h.element.parentNode.insertBefore(l,h.element),l.appendChild(h.element),h.altInput&&l.appendChild(h.altInput),l.appendChild(h.calendarContainer)}h.config.static||h.config.inline||(void 0!==h.config.appendTo?h.config.appendTo:window.document.body).appendChild(h.calendarContainer)}(),function(){if(h.config.wrap&&["open","close","toggle","clear"].forEach((function(e){Array.prototype.forEach.call(h.element.querySelectorAll("[data-"+e+"]"),(function(t){return O(t,"click",h[e])}))})),h.isMobile)!function(){var e=h.config.enableTime?h.config.noCalendar?"time":"datetime-local":"date";h.mobileInput=d("input",h.input.className+" flatpickr-mobile"),h.mobileInput.step=h.input.getAttribute("step")||"any",h.mobileInput.tabIndex=1,h.mobileInput.type=e,h.mobileInput.disabled=h.input.disabled,h.mobileInput.required=h.input.required,h.mobileInput.placeholder=h.input.placeholder,h.mobileFormatStr="datetime-local"===e?"Y-m-d\\TH:i:S":"date"===e?"Y-m-d":"H:i:S",h.selectedDates.length>0&&(h.mobileInput.defaultValue=h.mobileInput.value=h.formatDate(h.selectedDates[0],h.mobileFormatStr)),h.config.minDate&&(h.mobileInput.min=h.formatDate(h.config.minDate,"Y-m-d")),h.config.maxDate&&(h.mobileInput.max=h.formatDate(h.config.maxDate,"Y-m-d")),h.input.type="hidden",void 0!==h.altInput&&(h.altInput.type="hidden");try{h.input.parentNode&&h.input.parentNode.insertBefore(h.mobileInput,h.input.nextSibling)}catch(e){}O(h.mobileInput,"change",(function(e){h.setDate(e.target.value,!1,h.mobileFormatStr),fe("onChange"),fe("onClose")}))}();else{var e=r(te,50);h._debouncedChange=r(F,300),h.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&O(h.daysContainer,"mouseover",(function(e){"range"===h.config.mode&&ee(e.target)})),O(window.document.body,"keydown",X),h.config.inline||h.config.static||O(window,"resize",e),void 0!==window.ontouchstart?O(window.document,"touchstart",G):O(window.document,"mousedown",_(G)),O(window.document,"focus",G,{capture:!0}),!0===h.config.clickOpens&&(O(h._input,"focus",h.open),O(h._input,"mousedown",_(h.open))),void 0!==h.daysContainer&&(O(h.monthNav,"mousedown",_(De)),O(h.monthNav,["keyup","increment"],S),O(h.daysContainer,"mousedown",_(ce))),void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&(O(h.timeContainer,["increment"],x),O(h.timeContainer,"blur",x,{capture:!0}),O(h.timeContainer,"mousedown",_(P)),O([h.hourElement,h.minuteElement],["focus","click"],(function(e){return e.target.select()})),void 0!==h.secondElement&&O(h.secondElement,"focus",(function(){return h.secondElement&&h.secondElement.select()})),void 0!==h.amPM&&O(h.amPM,"mousedown",_((function(e){x(e),F()}))))}}(),(h.selectedDates.length||h.config.noCalendar)&&(h.config.enableTime&&T(h.config.noCalendar?h.latestSelectedDateObj||h.config.minDate:void 0),ve(!1)),M(),h.showTimeInput=h.selectedDates.length>0||h.config.noCalendar;var a=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!h.isMobile&&a&&oe(),fe("onReady")}(),h}function M(e,t){for(var n=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;i<n.length;i++){var o=n[i];try{if(null!==o.getAttribute("data-fp-omit"))continue;void 0!==o._flatpickr&&(o._flatpickr.destroy(),o._flatpickr=void 0),o._flatpickr=C(o,t||{}),a.push(o._flatpickr)}catch(e){console.error(e)}}return 1===a.length?a[0]:a}"function"!=typeof Object.assign&&(Object.assign=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];if(!e)throw TypeError("Cannot convert undefined or null to object");for(var a=function(t){t&&Object.keys(t).forEach((function(n){return e[n]=t[n]}))},i=0,o=t;i<o.length;i++){var r=o[i];a(r)}return e}),"undefined"!=typeof HTMLElement&&"undefined"!=typeof HTMLCollection&&"undefined"!=typeof NodeList&&(HTMLCollection.prototype.flatpickr=NodeList.prototype.flatpickr=function(e){return M(this,e)},HTMLElement.prototype.flatpickr=function(e){return M([this],e)});var y=function(e,t){return"string"==typeof e?M(window.document.querySelectorAll(e),t):e instanceof Node?M([e],t):M(e,t)};return y.defaultConfig={},y.l10ns={en:e({},a),default:e({},a)},y.localize=function(t){y.l10ns.default=e({},y.l10ns.default,t)},y.setDefaults=function(t){y.defaultConfig=e({},y.defaultConfig,t)},y.parseDate=D({}),y.formatDate=v({}),y.compareDates=w,"undefined"!=typeof jQuery&&void 0!==jQuery.fn&&(jQuery.fn.flatpickr=function(e){return M(this,e)}),Date.prototype.fp_incr=function(e){return new Date(this.getFullYear(),this.getMonth(),this.getDate()+("string"==typeof e?parseInt(e,10):e))},"undefined"!=typeof window&&(window.flatpickr=y),y},"object"==typeof n&&void 0!==t?t.exports=i():"function"==typeof define&&define.amd?define(i):(a=a||self).flatpickr=i()},n”, ” 421: function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});e.default=’\n.flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n background: #fff;\n -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);\n box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #e6e6e6;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: \’\’;\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.rightMost:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #e6e6e6;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #fff;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #e6e6e6;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #fff;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n background: transparent;\n color: rgba(0, 0, 0, 0.9);\n fill: rgba(0, 0, 0, 0.9);\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: rgba(0, 0, 0, 0.9);\n fill: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n /\n /*rtl:begin:ignore/\n /\n */\n left: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n /\n /*rtl:begin:ignore/\n /\n */\n right: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #959ea9;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(57, 57, 57, 0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0, 0, 0, 0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0, 0, 0, 0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: "";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(57, 57, 57, 0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(57, 57, 57, 0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(0, 0, 0, 0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(0, 0, 0, 0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: transparent;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: transparent;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: transparent;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: transparent;\n color: rgba(0, 0, 0, 0.54);\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #e6e6e6;\n box-shadow: -1px 0 0 #e6e6e6;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #393939;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e6e6e6;\n border-color: #e6e6e6;\n}\n.flatpickr-day.today {\n border-color: #959ea9;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #959ea9;\n background: #959ea9;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #569ff7;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #569ff7;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #569ff7;\n box-shadow: -10px 0 0 #569ff7;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(57, 57, 57, 0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(57, 57, 57, 0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;\n box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n -webkit-box-shadow: 1px 0 0 #e6e6e6;\n box-shadow: 1px 0 0 #e6e6e6;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(57, 57, 57, 0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-time:after {\n content: "";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #393939;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #393939;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #393939;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #393939;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eee;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n.flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);\n box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #eceef1;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-innerContainer {\n border-bottom: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n border: 1px solid #eceef1;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: \’\’;\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.rightMost:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n border-radius: 5px 5px 0 0;\n background: #eceef1;\n color: #5a6171;\n fill: #5a6171;\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: #5a6171;\n fill: #5a6171;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n /\n /*rtl:begin:ignore/\n /\n */\n left: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n /\n /*rtl:begin:ignore/\n /\n */\n right: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #bbb;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(72, 72, 72, 0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0, 0, 0, 0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0, 0, 0, 0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: "";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(72, 72, 72, 0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(72, 72, 72, 0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(90, 97, 113, 0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: #5a6171;\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: #5a6171;\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(90, 97, 113, 0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: #eceef1;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: #eceef1;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: #eceef1;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: #eceef1;\n color: #5a6171;\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n border-left: 1px solid #eceef1;\n border-right: 1px solid #eceef1;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #eceef1;\n box-shadow: -1px 0 0 #eceef1;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #484848;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e2e2e2;\n border-color: #e2e2e2;\n}\n.flatpickr-day.today {\n border-color: #bbb;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #bbb;\n background: #bbb;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #ff5a5f;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #ff5a5f;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #ff5a5f;\n box-shadow: -10px 0 0 #ff5a5f;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(72, 72, 72, 0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(72, 72, 72, 0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n border-left: 1px solid #eceef1;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(72, 72, 72, 0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n background: #fff;\n border-bottom: 1px solid #eceef1;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n background: #fff;\n border-radius: 0 0 5px 5px;\n}\n.flatpickr-time:after {\n content: "";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #484848;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #484848;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #484848;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #484848;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eaeaea;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\nspan.flatpickr-day.selected {\n font-weight: bold;\n}\n’},n”, ” 422: function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(1).__importDefault(e(186)),r=e(423);class n extends r.AbstractRangeSliderView{}a.DateRangeSliderView=n,n.__name__="DateRangeSliderView";class d extends r.AbstractSlider{constructor(e){super(e),this.behaviour="drag",this.connected=[!1,!0,!1]}static init_DateRangeSlider(){this.prototype.default_view=n,this.override({format:"%d %b %Y"})}_formatter(e,t){return i.default(e,t)}}a.DateRangeSlider=d,d.__name__="DateRangeSlider",d.init_DateRangeSlider()},n”, ” 423: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=s.__importStar(t(424)),r=t(72),o=t(9),n=t(405),a=t(131),d=t(425),_=t(412),h=s.__importDefault(t(426)),c=s.__importDefault(t(427));class u extends n.ControlView{controls(){yield this.slider_el}get noUiSlider(){return this.slider_el.noUiSlider}connect_signals(){super.connect_signals();const{direction:t,orientation:e,tooltips:i}=this.model.properties;this.on_change([t,e,i],()=>this.render());const{start:s,end:l,value:r,step:o,title:n}=this.model.properties;this.on_change([s,l,r,o],()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s})});const{bar_color:a}=this.model.properties;this.on_change(a,()=>{this._set_bar_color()});const{show_value:d}=this.model.properties;this.on_change([r,n,d],()=>this._update_title())}styles(){return[…super.styles(),h.default,c.default]}_update_title(){r.empty(this.title_el);const t=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=t?"none":"",!t&&(0!=this.model.title.length&&(this.title_el.textContent=this.model.title+": "),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map(t=>this.model.pretty(t)).join(" .. ");this.title_el.appendChild(r.span({class:d.bk_slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(".noUi-connect").style.backgroundColor=this.model.bar_color}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let n;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};n=o.repeat(t,i.length)}else n=!1;if(null==this.slider_el){this.slider_el=r.div(),l.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:n,orientation:this.model.orientation,direction:this.model.direction}),this.noUiSlider.on("slide",(t,e,i)=>this._slide(i)),this.noUiSlider.on("change",(t,e,i)=>this._change(i));const o=(t,e)=>{if(!n)return;this.slider_el.querySelectorAll(".noUi-handle")[t].querySelector(".noUi-tooltip").style.display=e?"block":""};this.noUiSlider.on("start",(t,e)=>o(e,!0)),this.noUiSlider.on("end",(t,e)=>o(e,!1))}else this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s});this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute("disabled","true"):this.slider_el.removeAttribute("disabled"),this.title_el=r.div({class:d.bk_slider_title}),this._update_title(),this.group_el=r.div({class:_.bk_input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){this.model.value=this._calc_from(t),this.model.value_throttled=this.model.value}}u.__name__="AbstractBaseSliderView";class m extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=m,m.__name__="AbstractSliderView";class p extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=p,p.__name__="AbstractRangeSliderView";class b extends n.Control{constructor(t){super(t),this.connected=!1}static init_AbstractSlider(){this.define(({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:r,Enum:o,Ref:n})=>({title:[s,""],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[r(s,n(a.TickFormatter))],direction:[o("ltr","rtl"),"ltr"],tooltips:[e,!0],bar_color:[l,"#e6e6e6"]}))}_formatter(t,e){return""+t}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=b,b.__name__="AbstractSlider",b.init_AbstractSlider()},n”, ” 424: function _(t,e,r){n”, ” /! nouislider - 14.6.0 - 6/27/2020 /n”, ” var n;n=function(){"use strict";var t="14.6.0";function e(t){t.parentElement.removeChild(t)}function r(t){return null!=t}function n(t){t.preventDefault()}function i(t){return"number"==typeof t&&!isNaN(t)&&isFinite(t)}function o(t,e,r){r>0&&(u(t,e),setTimeout((function(){c(t,e)}),r))}function s(t){return Math.max(Math.min(t,100),0)}function a(t){return Array.isArray(t)?t:[t]}function l(t){var e=(t=String(t)).split(".");return e.length>1?e[1].length:0}function u(t,e){t.classList&&!/\s/.test(e)?t.classList.add(e):t.className+=" "+e}function c(t,e){t.classList&&!/\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\b)"+e.split(" ").join("|")+"(\\b|$)","gi")," ")}function p(t){var e=void 0!==window.pageXOffset,r="CSS1Compat"===(t.compatMode||"");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function f(t,e){return 100/(e-t)}function d(t,e,r){return 100*e/(t[r+1]-t[r])}function h(t,e){for(var r=1;t>=e[r];)r+=1;return r}function m(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=h(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return d(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/f(s,a)}function g(t,e,r,n){if(100===n)return n;var i=h(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}function v(t,e,r){var n;if("number"==typeof e&&(e=[e]),!Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘range’ contains invalid value.");if(!i(n="min"===t?0:"max"===t?100:parseFloat(t))||!i(e[0]))throw new Error("noUiSlider (14.6.0): ‘range’ value isn’t numeric.");r.xPct.push(n),r.xVal.push(e[0]),n?r.xSteps.push(!isNaN(e[1])&&e[1]):isNaN(e[1])||(r.xSteps[0]=e[1]),r.xHighestCompleteStep.push(0)}function b(t,e,r){if(e)if(r.xVal[t]!==r.xVal[t+1]){r.xSteps[t]=d([r.xVal[t],r.xVal[t+1]],e,0)/f(r.xPct[t],r.xPct[t+1]);var n=(r.xVal[t+1]-r.xVal[t])/r.xNumSteps[t],i=Math.ceil(Number(n.toFixed(3))-1),o=r.xVal[t]+r.xNumSteps[t]*i;r.xHighestCompleteStep[t]=o}else r.xSteps[t]=r.xHighestCompleteStep[t]=r.xVal[t]}function x(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.xHighestCompleteStep=[],this.snap=e;var i=[];for(n in t)t.hasOwnProperty(n)&&i.push([t[n],n]);for(i.length&&"object"==typeof i[0][0]?i.sort((function(t,e){return t[0][0]-e[0][0]})):i.sort((function(t,e){return t[0]-e[0]})),n=0;n<i.length;n++)v(i[n][1],i[n][0],this);for(this.xNumSteps=this.xSteps.slice(0),n=0;n<this.xNumSteps.length;n++)b(n,this.xNumSteps[n],this)}x.prototype.getDistance=function(t){var e,r=[];for(e=0;e<this.xNumSteps.length-1;e++){var n=this.xNumSteps[e];if(n&&t/n%1!=0)throw new Error("noUiSlider (14.6.0): ‘limit’, ‘margin’ and ‘padding’ of "+this.xPct[e]+"% range must be divisible by step.");r[e]=d(this.xVal,t,e)}return r},x.prototype.getAbsoluteDistance=function(t,e,r){var n,i=0;if(t<this.xPct[this.xPct.length-1])for(;t>this.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++;var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c–):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},x.prototype.toStepping=function(t){return t=m(this.xVal,this.xPct,t)},x.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=h(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*f(s,e[n]))}(this.xVal,this.xPct,t)},x.prototype.getStep=function(t){return t=g(this.xPct,this.xSteps,this.snap,t)},x.prototype.getDefaultStep=function(t,e,r){var n=h(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},x.prototype.getNearbySteps=function(t){var e=h(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},x.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(l);return Math.max.apply(null,t)},x.prototype.convert=function(t){return this.getStep(this.toStepping(t))};var S={to:function(t){return void 0!==t&&t.toFixed(2)},from:Number},w={target:"target",base:"base",origin:"origin",handle:"handle",handleLower:"handle-lower",handleUpper:"handle-upper",touchArea:"touch-area",horizontal:"horizontal",vertical:"vertical",background:"background",connect:"connect",connects:"connects",ltr:"ltr",rtl:"rtl",textDirectionLtr:"txt-dir-ltr",textDirectionRtl:"txt-dir-rtl",draggable:"draggable",drag:"state-drag",tap:"state-tap",active:"active",tooltip:"tooltip",pips:"pips",pipsHorizontal:"pips-horizontal",pipsVertical:"pips-vertical",marker:"marker",markerHorizontal:"marker-horizontal",markerVertical:"marker-vertical",markerNormal:"marker-normal",markerLarge:"marker-large",markerSub:"marker-sub",value:"value",valueHorizontal:"value-horizontal",valueVertical:"value-vertical",valueNormal:"value-normal",valueLarge:"value-large",valueSub:"value-sub"};function y(t){if(function(t){return"object"==typeof t&&"function"==typeof t.to&&"function"==typeof t.from}(t))return!0;throw new Error("noUiSlider (14.6.0): ‘format’ requires ‘to’ and ‘from’ methods.")}function E(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘step’ is not numeric.");t.singleStep=e}function C(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘keyboardPageMultiplier’ is not numeric.");t.keyboardPageMultiplier=e}function P(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘keyboardDefaultStep’ is not numeric.");t.keyboardDefaultStep=e}function N(t,e){if("object"!=typeof e||Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘range’ is not an object.");if(void 0===e.min||void 0===e.max)throw new Error("noUiSlider (14.6.0): Missing ‘min’ or ‘max’ in ‘range’.");if(e.min===e.max)throw new Error("noUiSlider (14.6.0): ‘range’ ‘min’ and ‘max’ cannot be equal.");t.spectrum=new x(e,t.snap,t.singleStep)}function k(t,e){if(e=a(e),!Array.isArray(e)||!e.length)throw new Error("noUiSlider (14.6.0): ‘start’ option is incorrect.");t.handles=e.length,t.start=e}function U(t,e){if(t.snap=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘snap’ option must be a boolean.")}function A(t,e){if(t.animate=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘animate’ option must be a boolean.")}function V(t,e){if(t.animationDuration=e,"number"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘animationDuration’ option must be a number.")}function D(t,e){var r,n=[!1];if("lower"===e?e=[!0,!1]:"upper"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r<t.handles;r++)n.push(e);n.push(!1)}else{if(!Array.isArray(e)||!e.length||e.length!==t.handles+1)throw new Error("noUiSlider (14.6.0): ‘connect’ option doesn’t match handle count.");n=e}t.connect=n}function M(t,e){switch(e){case"horizontal":t.ort=0;break;case"vertical":t.ort=1;break;default:throw new Error("noUiSlider (14.6.0): ‘orientation’ option is invalid.")}}function O(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘margin’ option must be numeric.");0!==e&&(t.margin=t.spectrum.getDistance(e))}function L(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘limit’ option must be numeric.");if(t.limit=t.spectrum.getDistance(e),!t.limit||t.handles<2)throw new Error("noUiSlider (14.6.0): ‘limit’ option is only supported on linear sliders with 2 or more handles.")}function z(t,e){var r;if(!i(e)&&!Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘padding’ option must be numeric or array of exactly 2 numbers.");if(Array.isArray(e)&&2!==e.length&&!i(e[0])&&!i(e[1]))throw new Error("noUiSlider (14.6.0): ‘padding’ option must be numeric or array of exactly 2 numbers.");if(0!==e){for(Array.isArray(e)||(e=[e,e]),t.padding=[t.spectrum.getDistance(e[0]),t.spectrum.getDistance(e[1])],r=0;r<t.spectrum.xNumSteps.length-1;r++)if(t.padding[0][r]<0||t.padding[1][r]<0)throw new Error("noUiSlider (14.6.0): ‘padding’ option must be a positive number(s).");var n=e[0]+e[1],o=t.spectrum.xVal[0];if(n/(t.spectrum.xVal[t.spectrum.xVal.length-1]-o)>1)throw new Error("noUiSlider (14.6.0): ‘padding’ option must not exceed 100% of the range.")}}function H(t,e){switch(e){case"ltr":t.dir=0;break;case"rtl":t.dir=1;break;default:throw new Error("noUiSlider (14.6.0): ‘direction’ option was not recognized.")}}function j(t,e){if("string"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘behaviour’ must be a string containing options.");var r=e.indexOf("tap")>=0,n=e.indexOf("drag")>=0,i=e.indexOf("fixed")>=0,o=e.indexOf("snap")>=0,s=e.indexOf("hover")>=0,a=e.indexOf("unconstrained")>=0;if(i){if(2!==t.handles)throw new Error("noUiSlider (14.6.0): ‘fixed’ behaviour must be used with 2 handles");O(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error("noUiSlider (14.6.0): ‘unconstrained’ behaviour cannot be used with margin or limit");t.events={tap:r||o,drag:n,fixed:i,snap:o,hover:s,unconstrained:a}}function F(t,e){if(!1!==e)if(!0===e){t.tooltips=[];for(var r=0;r<t.handles;r++)t.tooltips.push(!0)}else{if(t.tooltips=a(e),t.tooltips.length!==t.handles)throw new Error("noUiSlider (14.6.0): must pass a formatter for all handles.");t.tooltips.forEach((function(t){if("boolean"!=typeof t&&("object"!=typeof t||"function"!=typeof t.to))throw new Error("noUiSlider (14.6.0): ‘tooltips’ must be passed a formatter or ‘false’.")}))}}function R(t,e){t.ariaFormat=e,y(e)}function T(t,e){t.format=e,y(e)}function B(t,e){if(t.keyboardSupport=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘keyboardSupport’ option must be a boolean.")}function q(t,e){t.documentElement=e}function X(t,e){if("string"!=typeof e&&!1!==e)throw new Error("noUiSlider (14.6.0): ‘cssPrefix’ must be a string or `false`.");t.cssPrefix=e}function _(t,e){if("object"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘cssClasses’ must be an object.");if("string"==typeof t.cssPrefix)for(var r in t.cssClasses={},e)e.hasOwnProperty(r)&&(t.cssClasses[r]=t.cssPrefix+e[r]);else t.cssClasses=e}function Y(t){var e={margin:0,limit:0,padding:0,animate:!0,animationDuration:300,ariaFormat:S,format:S},n={step:{r:!1,t:E},keyboardPageMultiplier:{r:!1,t:C},keyboardDefaultStep:{r:!1,t:P},start:{r:!0,t:k},connect:{r:!0,t:D},direction:{r:!0,t:H},snap:{r:!1,t:U},animate:{r:!1,t:A},animationDuration:{r:!1,t:V},range:{r:!0,t:N},orientation:{r:!1,t:M},margin:{r:!1,t:O},limit:{r:!1,t:L},padding:{r:!1,t:z},behaviour:{r:!0,t:j},ariaFormat:{r:!1,t:R},format:{r:!1,t:T},tooltips:{r:!1,t:F},keyboardSupport:{r:!0,t:B},documentElement:{r:!1,t:q},cssPrefix:{r:!0,t:X},cssClasses:{r:!0,t:_}},i={connect:!1,direction:"ltr",behaviour:"tap",orientation:"horizontal",keyboardSupport:!0,cssPrefix:"noUi-",cssClasses:w,keyboardPageMultiplier:5,keyboardDefaultStep:10};t.format&&!t.ariaFormat&&(t.ariaFormat=t.format),Object.keys(n).forEach((function(o){if(!r(t[o])&&void 0===i[o]){if(n[o].r)throw new Error("noUiSlider (14.6.0): ‘"+o+"’ is required.");return!0}n[o].t(e,r(t[o])?t[o]:i[o])})),e.pips=t.pips;var o=document.createElement("div"),s=void 0!==o.style.msTransform,a=void 0!==o.style.transform;return e.transformRule=a?"transform":s?"msTransform":"webkitTransform",e.style=[["left","top"],["right","bottom"]][e.dir][e.ort],e}function I(t,r,i){var l,f,d,h,m,g,v,b,x=window.navigator.pointerEnabled?{start:"pointerdown",move:"pointermove",end:"pointerup"}:window.navigator.msPointerEnabled?{start:"MSPointerDown",move:"MSPointerMove",end:"MSPointerUp"}:{start:"mousedown touchstart",move:"mousemove touchmove",end:"mouseup touchend"},S=window.CSS&&CSS.supports&&CSS.supports("touch-action","none")&&function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("test",null,e)}catch(t){}return t}(),w=t,y=r.spectrum,E=[],C=[],P=[],N=0,k={},U=t.ownerDocument,A=r.documentElement||U.documentElement,V=U.body,D="rtl"===U.dir||1===r.ort?0:100;function M(t,e){var r=U.createElement("div");return e&&u(r,e),t.appendChild(r),r}function O(t,e){var n=M(t,r.cssClasses.origin),i=M(n,r.cssClasses.handle);return M(i,r.cssClasses.touchArea),i.setAttribute("data-handle",e),r.keyboardSupport&&(i.setAttribute("tabindex","0"),i.addEventListener("keydown",(function(t){return function(t,e){if(H()||j(e))return!1;var n=["Left","Right"],i=["Down","Up"],o=["PageDown","PageUp"],s=["Home","End"];r.dir&&!r.ort?n.reverse():r.ort&&!r.dir&&(i.reverse(),o.reverse());var a,l=t.key.replace("Arrow",""),u=l===o[0],c=l===o[1],p=l===i[0]||l===n[0]||u,f=l===i[1]||l===n[1]||c,d=l===s[0],h=l===s[1];if(!(p||f||d||h))return!0;if(t.preventDefault(),f||p){var m=r.keyboardPageMultiplier,g=p?0:1,v=ft(e)[g];if(null===v)return!1;!1===v&&(v=y.getDefaultStep(C[e],p,r.keyboardDefaultStep)),(c||u)&&(v*=m),v=Math.max(v,1e-7),v*=p?-1:1,a=E[e]+v}else a=h?r.spectrum.xVal[r.spectrum.xVal.length-1]:r.spectrum.xVal[0];return at(e,y.toStepping(a),!0,!0),et("slide",e),et("update",e),et("change",e),et("set",e),!1}(t,e)}))),i.setAttribute("role","slider"),i.setAttribute("aria-orientation",r.ort?"vertical":"horizontal"),0===e?u(i,r.cssClasses.handleLower):e===r.handles-1&&u(i,r.cssClasses.handleUpper),n}function L(t,e){return!!e&&M(t,r.cssClasses.connect)}function z(t,e){return!!r.tooltips[e]&&M(t.firstChild,r.cssClasses.tooltip)}function H(){return w.hasAttribute("disabled")}function j(t){return f[t].hasAttribute("disabled")}function F(){m&&(tt("update.tooltips"),m.forEach((function(t){t&&e(t)})),m=null)}function R(){F(),m=f.map(z),Z("update.tooltips",(function(t,e,n){if(m[e]){var i=t[e];!0!==r.tooltips[e]&&(i=r.tooltips[e].to(n[e])),m[e].innerHTML=i}}))}function T(t,e,n){var i=U.createElement("div"),o=[];o[0]=r.cssClasses.valueNormal,o[1]=r.cssClasses.valueLarge,o[2]=r.cssClasses.valueSub;var s=[];s[0]=r.cssClasses.markerNormal,s[1]=r.cssClasses.markerLarge,s[2]=r.cssClasses.markerSub;var a=[r.cssClasses.valueHorizontal,r.cssClasses.valueVertical],l=[r.cssClasses.markerHorizontal,r.cssClasses.markerVertical];function c(t,e){var n=e===r.cssClasses.value,i=n?o:s;return e+" "+(n?a:l)[r.ort]+" "+i[t]}return u(i,r.cssClasses.pips),u(i,0===r.ort?r.cssClasses.pipsHorizontal:r.cssClasses.pipsVertical),Object.keys(t).forEach((function(o){!function(t,o,s){if(-1!==(s=e?e(o,s):s)){var a=M(i,!1);a.className=c(s,r.cssClasses.marker),a.style[r.style]=t+"%",s>0&&((a=M(i,!1)).className=c(s,r.cssClasses.value),a.setAttribute("data-value",o),a.style[r.style]=t+"%",a.innerHTML=n.to(o))}}(o,t[o][0],t[o][1])})),i}function B(){h&&(e(h),h=null)}function q(t){B();var e=t.mode,r=t.density||1,n=t.filter||!1,i=function(t,e,r){if("range"===t||"steps"===t)return y.xVal;if("count"===t){if(e<2)throw new Error("noUiSlider (14.6.0): ‘values’ (>= 2) required for mode ‘count’.");var n=e-1,i=100/n;for(e=[];n–;)e[n]=n*i;e.push(100),t="positions"}return"positions"===t?e.map((function(t){return y.fromStepping(r?y.getStep(t):t)})):"values"===t?r?e.map((function(t){return y.fromStepping(y.getStep(y.toStepping(t)))})):e:void 0}(e,t.values||!1,t.stepped||!1),o=function(t,e,r){var n,i={},o=y.xVal[0],s=y.xVal[y.xVal.length-1],a=!1,l=!1,u=0;return n=r.slice().sort((function(t,e){return t-e})),(r=n.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(r.unshift(o),a=!0),r[r.length-1]!==s&&(r.push(s),l=!0),r.forEach((function(n,o){var s,c,p,f,d,h,m,g,v,b,x=n,S=r[o+1],w="steps"===e;if(w&&(s=y.xNumSteps[o]),s||(s=S-x),!1!==x&&void 0!==S)for(s=Math.max(s,1e-7),c=x;c<=S;c=(c+s).toFixed(7)/1){for(g=(d=(f=y.toStepping(c))-u)/t,b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[y.fromStepping(h),0];m=r.indexOf(c)>-1?1:w?2:0,!o&&a&&c!==S&&(m=0),c===S&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}(r,e,i),s=t.format||{to:Math.round};return h=w.appendChild(T(o,n,s))}function X(){var t=l.getBoundingClientRect(),e="offset"+["Width","Height"][r.ort];return 0===r.ort?t.width||l[e]:t.height||l[e]}function _(t,e,n,i){var o=function(o){return!!(o=function(t,e,r){var n,i,o=0===t.type.indexOf("touch"),s=0===t.type.indexOf("mouse"),a=0===t.type.indexOf("pointer");if(0===t.type.indexOf("MSPointer")&&(a=!0),o){var l=function(t){return t.target===r||r.contains(t.target)||t.target.shadowRoot&&t.target.shadowRoot.contains(r)};if("touchstart"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;n=u[0].pageX,i=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;n=c.pageX,i=c.pageY}}return e=e||p(U),(s||a)&&(n=t.clientX+e.x,i=t.clientY+e.y),t.pageOffset=e,t.points=[n,i],t.cursor=s||a,t}(o,i.pageOffset,i.target||e))&&!(H()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp("\\b"+a+"\\b").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==o.buttons&&o.buttons>1)&&(!i.hover||!o.buttons)&&(S||o.preventDefault(),o.calcPoint=o.points[r.ort],void n(o,i)));var s,a},s=[];return t.split(" ").forEach((function(t){e.addEventListener(t,o,!!S&&{passive:!0}),s.push([t,o])})),s}function I(t){var e,n,i,o,a,u,c=100*(t-(e=l,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,a=o.documentElement,u=p(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(u.x=0),n?i.top+u.y-a.clientTop:i.left+u.x-a.clientLeft))/X();return c=s(c),r.dir?100-c:c}function W(t,e){"mouseout"===t.type&&"HTML"===t.target.nodeName&&null===t.relatedTarget&&G(t,e)}function $(t,e){if(-1===navigator.appVersion.indexOf("MSIE 9")&&0===t.buttons&&0!==e.buttonsProperty)return G(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);it(n>0,100*n/e.baseSize,e.locations,e.handleNumbers)}function G(t,e){e.handle&&(c(e.handle,r.cssClasses.active),N-=1),e.listeners.forEach((function(t){A.removeEventListener(t[0],t[1])})),0===N&&(c(w,r.cssClasses.drag),st(),t.cursor&&(V.style.cursor="",V.removeEventListener("selectstart",n))),e.handleNumbers.forEach((function(t){et("change",t),et("set",t),et("end",t)}))}function J(t,e){if(e.handleNumbers.some(j))return!1;var i;1===e.handleNumbers.length&&(i=f[e.handleNumbers[0]].children[0],N+=1,u(i,r.cssClasses.active)),t.stopPropagation();var o=[],s=_(x.move,A,$,{target:t.target,handle:i,listeners:o,startCalcPoint:t.calcPoint,baseSize:X(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:C.slice()}),a=_(x.end,A,G,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers}),l=_("mouseout",A,W,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers});o.push.apply(o,s.concat(a,l)),t.cursor&&(V.style.cursor=getComputedStyle(t.target).cursor,f.length>1&&u(w,r.cssClasses.drag),V.addEventListener("selectstart",n,!1)),e.handleNumbers.forEach((function(t){et("start",t)}))}function K(t){if(!t.buttons&&!t.touches)return!1;t.stopPropagation();var e=I(t.calcPoint),n=function(t){var e=100,r=!1;return f.forEach((function(n,i){if(!j(i)){var o=C[i],s=Math.abs(o-t);(s<e||s<=e&&t>o||100===s&&100===e)&&(r=i,e=s)}})),r}(e);if(!1===n)return!1;r.events.snap||o(w,r.cssClasses.tap,r.animationDuration),at(n,e,!0,!0),st(),et("slide",n,!0),et("update",n,!0),et("change",n,!0),et("set",n,!0),r.events.snap&&J(t,{handleNumbers:[n]})}function Q(t){var e=I(t.calcPoint),r=y.getStep(e),n=y.fromStepping(r);Object.keys(k).forEach((function(t){"hover"===t.split(".")[0]&&k[t].forEach((function(t){t.call(g,n)}))}))}function Z(t,e){k[t]=k[t]||[],k[t].push(e),"update"===t.split(".")[0]&&f.forEach((function(t,e){et("update",e)}))}function tt(t){var e=t&&t.split(".")[0],r=e&&t.substring(e.length);Object.keys(k).forEach((function(t){var n=t.split(".")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||delete k[t]}))}function et(t,e,n){Object.keys(k).forEach((function(i){var o=i.split(".")[0];t===o&&k[i].forEach((function(t){t.call(g,E.map(r.format.to),e,E.slice(),n||!1,C.slice(),g)}))}))}function rt(t,e,n,i,o,a){var l;return f.length>1&&!r.events.unconstrained&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.margin,0),n=Math.max(n,l)),o&&e<f.length-1&&(l=y.getAbsoluteDistance(t[e+1],r.margin,1),n=Math.min(n,l))),f.length>1&&r.limit&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.limit,0),n=Math.min(n,l)),o&&e<f.length-1&&(l=y.getAbsoluteDistance(t[e+1],r.limit,1),n=Math.max(n,l))),r.padding&&(0===e&&(l=y.getAbsoluteDistance(0,r.padding[0],0),n=Math.max(n,l)),e===f.length-1&&(l=y.getAbsoluteDistance(100,r.padding[1],1),n=Math.min(n,l))),!((n=s(n=y.getStep(n)))===t[e]&&!a)&&n}function nt(t,e){var n=r.ort;return(n?e:t)+", "+(n?t:e)}function it(t,e,r,n){var i=r.slice(),o=[!t,t],s=[t,!t];n=n.slice(),t&&n.reverse(),n.length>1?n.forEach((function(t,r){var n=rt(i,t,i[t]+e,o[r],s[r],!1);!1===n?e=0:(e=n-i[t],i[t]=n)})):o=s=[!0];var a=!1;n.forEach((function(t,n){a=at(t,r[t]+e,o[n],s[n])||a})),a&&n.forEach((function(t){et("update",t),et("slide",t)}))}function ot(t,e){return r.dir?100-t-e:t}function st(){P.forEach((function(t){var e=C[t]>50?-1:1,r=3+(f.length+e*t);f[t].style.zIndex=r}))}function at(t,e,n,i){return!1!==(e=rt(C,t,e,n,i,!1))&&(function(t,e){C[t]=e,E[t]=y.fromStepping(e);var n="translate("+nt(10*(ot(e,0)-D)+"%","0")+")";f[t].style[r.transformRule]=n,lt(t),lt(t+1)}(t,e),!0)}function lt(t){if(d[t]){var e=0,n=100;0!==t&&(e=C[t-1]),t!==d.length-1&&(n=C[t]);var i=n-e,o="translate("+nt(ot(e,i)+"%","0")+")",s="scale("+nt(i/100,"1")+")";d[t].style[r.transformRule]=o+" "+s}}function ut(t,e){return null===t||!1===t||void 0===t?C[e]:("number"==typeof t&&(t=String(t)),t=r.format.from(t),!1===(t=y.toStepping(t))||isNaN(t)?C[e]:t)}function ct(t,e){var n=a(t),i=void 0===C[0];e=void 0===e||!!e,r.animate&&!i&&o(w,r.cssClasses.tap,r.animationDuration),P.forEach((function(t){at(t,ut(n[t],t),!0,!1)}));for(var s=1===P.length?0:1;s<P.length;++s)P.forEach((function(t){at(t,C[t],!0,!0)}));st(),P.forEach((function(t){et("update",t),null!==n[t]&&e&&et("set",t)}))}function pt(){var t=E.map(r.format.to);return 1===t.length?t[0]:t}function ft(t){var e=C[t],n=y.getNearbySteps(e),i=E[t],o=n.thisStep.step,s=null;if(r.snap)return[i-n.stepBefore.startValue||null,n.stepAfter.startValue-i||null];!1!==o&&i+o>n.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=y.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}return u(v=w,r.cssClasses.target),0===r.dir?u(v,r.cssClasses.ltr):u(v,r.cssClasses.rtl),0===r.ort?u(v,r.cssClasses.horizontal):u(v,r.cssClasses.vertical),u(v,"rtl"===getComputedStyle(v).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),l=M(v,r.cssClasses.base),function(t,e){var n=M(e,r.cssClasses.connects);f=[],(d=[]).push(L(n,t[0]));for(var i=0;i<r.handles;i++)f.push(O(e,i)),P[i]=i,d.push(L(n,t[i+1]))}(r.connect,l),(b=r.events).fixed||f.forEach((function(t,e){_(x.start,t.children[0],J,{handleNumbers:[e]})})),b.tap&&_(x.start,l,K,{}),b.hover&&_(x.move,l,Q,{hover:!0}),b.drag&&d.forEach((function(t,e){if(!1!==t&&0!==e&&e!==d.length-1){var n=f[e-1],i=f[e],o=[t];u(t,r.cssClasses.draggable),b.fixed&&(o.push(n.children[0]),o.push(i.children[0])),o.forEach((function(t){_(x.start,t,J,{handles:[n,i],handleNumbers:[e-1,e]})}))}})),ct(r.start),r.pips&&q(r.pips),r.tooltips&&R(),Z("update",(function(t,e,n,i,o){P.forEach((function(t){var e=f[t],i=rt(C,t,0,!0,!0,!0),s=rt(C,t,100,!0,!0,!0),a=o[t],l=r.ariaFormat.to(n[t]);i=y.fromStepping(i).toFixed(1),s=y.fromStepping(s).toFixed(1),a=y.fromStepping(a).toFixed(1),e.children[0].setAttribute("aria-valuemin",i),e.children[0].setAttribute("aria-valuemax",s),e.children[0].setAttribute("aria-valuenow",a),e.children[0].setAttribute("aria-valuetext",l)}))})),g={destroy:function(){for(var t in r.cssClasses)r.cssClasses.hasOwnProperty(t)&&c(w,r.cssClasses[t]);for(;w.firstChild;)w.removeChild(w.firstChild);delete w.noUiSlider},steps:function(){return P.map(ft)},on:Z,off:tt,get:pt,set:ct,setHandle:function(t,e,r){if(!((t=Number(t))>=0&&t<P.length))throw new Error("noUiSlider (14.6.0): invalid handle number, got: "+t);at(t,ut(e,t),!0,!0),et("update",t),r&&et("set",t)},reset:function(t){ct(r.start,t)},__moveHandles:function(t,e,r){it(t,e,C,r)},options:i,updateOptions:function(t,e){var n=pt(),o=["margin","limit","padding","range","animate","snap","step","format","pips","tooltips"];o.forEach((function(e){void 0!==t[e]&&(i[e]=t[e])}));var s=Y(i);o.forEach((function(e){void 0!==t[e]&&(r[e]=s[e])})),y=s.spectrum,r.margin=s.margin,r.limit=s.limit,r.padding=s.padding,r.pips?q(r.pips):B(),r.tooltips?R():F(),C=[],ct(t.start||n,e)},target:w,removePips:B,removeTooltips:F,getTooltips:function(){return m},getOrigins:function(){return f},pips:q}}return{__spectrum:x,version:t,cssClasses:w,create:function(t,e){if(!t||!t.nodeName)throw new Error("noUiSlider (14.6.0): create requires a single element, got: "+t);if(t.noUiSlider)throw new Error("noUiSlider (14.6.0): Slider was already initialized.");var r=I(t,Y(e),e);return t.noUiSlider=r,r}}},"function"==typeof define&&define.amd?define([],n):"object"==typeof r?e.exports=n():window.noUiSlider=n()},n”, ” 425: function _(e,l,i){Object.defineProperty(i,"__esModule",{value:!0}),i.bk_slider_value="bk-slider-value",i.bk_slider_title="bk-slider-title"},n”, ” 426: function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});t.default="\n.bk-root {\n /! nouislider - 14.6.0 - 6/27/2020 /\n / Functional styling;\n * These styles are required for noUiSlider to function.\n * You don’t need to change these rules to apply your design.\n /\n / Wrapper for all connect elements.\n /\n / Offset direction\n /\n / Give origins 0 height/width so they don’t interfere with clicking the\n * connect elements.\n /\n / Slider size and handle placement;\n /\n / Styling;\n * Giving the connect element a border radius causes issues with using transform: scale\n /\n / Handles and cursors;\n /\n / Handle stripes;\n /\n / Disabled state;\n /\n / Base;\n \n */\n / Values;\n \n */\n / Markings;\n \n */\n / Horizontal layout;\n \n */\n / Vertical layout;\n \n */\n}\n.bk-root .noUi-target,\n.bk-root .noUi-target * {\n -webkit-touch-callout: none;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n -webkit-user-select: none;\n -ms-touch-action: none;\n touch-action: none;\n -ms-user-select: none;\n -moz-user-select: none;\n user-select: none;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.bk-root .noUi-target {\n position: relative;\n}\n.bk-root .noUi-base,\n.bk-root .noUi-connects {\n width: 100%;\n height: 100%;\n position: relative;\n z-index: 1;\n}\n.bk-root .noUi-connects {\n overflow: hidden;\n z-index: 0;\n}\n.bk-root .noUi-connect,\n.bk-root .noUi-origin {\n will-change: transform;\n position: absolute;\n z-index: 1;\n top: 0;\n right: 0;\n -ms-transform-origin: 0 0;\n -webkit-transform-origin: 0 0;\n -webkit-transform-style: preserve-3d;\n transform-origin: 0 0;\n transform-style: flat;\n}\n.bk-root .noUi-connect {\n height: 100%;\n width: 100%;\n}\n.bk-root .noUi-origin {\n height: 10%;\n width: 10%;\n}\n.bk-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {\n left: 0;\n right: auto;\n}\n.bk-root .noUi-vertical .noUi-origin {\n width: 0;\n}\n.bk-root .noUi-horizontal .noUi-origin {\n height: 0;\n}\n.bk-root .noUi-handle {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n position: absolute;\n}\n.bk-root .noUi-touch-area {\n height: 100%;\n width: 100%;\n}\n.bk-root .noUi-state-tap .noUi-connect,\n.bk-root .noUi-state-tap .noUi-origin {\n -webkit-transition: transform 0.3s;\n transition: transform 0.3s;\n}\n.bk-root .noUi-state-drag * {\n cursor: inherit !important;\n}\n.bk-root .noUi-horizontal {\n height: 18px;\n}\n.bk-root .noUi-horizontal .noUi-handle {\n width: 34px;\n height: 28px;\n right: -17px;\n top: -6px;\n}\n.bk-root .noUi-vertical {\n width: 18px;\n}\n.bk-root .noUi-vertical .noUi-handle {\n width: 28px;\n height: 34px;\n right: -6px;\n top: -17px;\n}\n.bk-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {\n left: -17px;\n right: auto;\n}\n.bk-root .noUi-target {\n background: #FAFAFA;\n border-radius: 4px;\n border: 1px solid #D3D3D3;\n box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;\n}\n.bk-root .noUi-connects {\n border-radius: 3px;\n}\n.bk-root .noUi-connect {\n background: #3FB8AF;\n}\n.bk-root .noUi-draggable {\n cursor: ew-resize;\n}\n.bk-root .noUi-vertical .noUi-draggable {\n cursor: ns-resize;\n}\n.bk-root .noUi-handle {\n border: 1px solid #D9D9D9;\n border-radius: 3px;\n background: #FFF;\n cursor: default;\n box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;\n}\n.bk-root .noUi-active {\n box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;\n}\n.bk-root .noUi-handle:before,\n.bk-root .noUi-handle:after {\n content: \"\";\n display: block;\n position: absolute;\n height: 14px;\n width: 1px;\n background: #E8E7E6;\n left: 14px;\n top: 6px;\n}\n.bk-root .noUi-handle:after {\n left: 17px;\n}\n.bk-root .noUi-vertical .noUi-handle:before,\n.bk-root .noUi-vertical .noUi-handle:after {\n width: 14px;\n height: 1px;\n left: 6px;\n top: 14px;\n}\n.bk-root .noUi-vertical .noUi-handle:after {\n top: 17px;\n}\n.bk-root [disabled] .noUi-connect {\n background: #B8B8B8;\n}\n.bk-root [disabled].noUi-target,\n.bk-root [disabled].noUi-handle,\n.bk-root [disabled] .noUi-handle {\n cursor: not-allowed;\n}\n.bk-root .noUi-pips,\n.bk-root .noUi-pips * {\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.bk-root .noUi-pips {\n position: absolute;\n color: #999;\n}\n.bk-root .noUi-value {\n position: absolute;\n white-space: nowrap;\n text-align: center;\n}\n.bk-root .noUi-value-sub {\n color: #ccc;\n font-size: 10px;\n}\n.bk-root .noUi-marker {\n position: absolute;\n background: #CCC;\n}\n.bk-root .noUi-marker-sub {\n background: #AAA;\n}\n.bk-root .noUi-marker-large {\n background: #AAA;\n}\n.bk-root .noUi-pips-horizontal {\n padding: 10px 0;\n height: 80px;\n top: 100%;\n left: 0;\n width: 100%;\n}\n.bk-root .noUi-value-horizontal {\n -webkit-transform: translate(-50%, 50%);\n transform: translate(-50%, 50%);\n}\n.bk-root .noUi-rtl .noUi-value-horizontal {\n -webkit-transform: translate(50%, 50%);\n transform: translate(50%, 50%);\n}\n.bk-root .noUi-marker-horizontal.noUi-marker {\n margin-left: -1px;\n width: 2px;\n height: 5px;\n}\n.bk-root .noUi-marker-horizontal.noUi-marker-sub {\n height: 10px;\n}\n.bk-root .noUi-marker-horizontal.noUi-marker-large {\n height: 15px;\n}\n.bk-root .noUi-pips-vertical {\n padding: 0 10px;\n height: 100%;\n top: 0;\n left: 100%;\n}\n.bk-root .noUi-value-vertical {\n -webkit-transform: translate(0, -50%);\n transform: translate(0, -50%);\n padding-left: 25px;\n}\n.bk-root .noUi-rtl .noUi-value-vertical {\n -webkit-transform: translate(0, 50%);\n transform: translate(0, 50%);\n}\n.bk-root .noUi-marker-vertical.noUi-marker {\n width: 5px;\n height: 2px;\n margin-top: -1px;\n}\n.bk-root .noUi-marker-vertical.noUi-marker-sub {\n width: 10px;\n}\n.bk-root .noUi-marker-vertical.noUi-marker-large {\n width: 15px;\n}\n.bk-root .noUi-tooltip {\n display: block;\n position: absolute;\n border: 1px solid #D9D9D9;\n border-radius: 3px;\n background: #fff;\n color: #000;\n padding: 5px;\n text-align: center;\n white-space: nowrap;\n}\n.bk-root .noUi-horizontal .noUi-tooltip {\n -webkit-transform: translate(-50%, 0);\n transform: translate(-50%, 0);\n left: 50%;\n bottom: 120%;\n}\n.bk-root .noUi-vertical .noUi-tooltip {\n -webkit-transform: translate(0, -50%);\n transform: translate(0, -50%);\n top: 50%;\n right: 120%;\n}\n.bk-root .noUi-horizontal .noUi-origin > .noUi-tooltip {\n -webkit-transform: translate(50%, 0);\n transform: translate(50%, 0);\n left: auto;\n bottom: 10px;\n}\n.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip {\n -webkit-transform: translate(0, -18px);\n transform: translate(0, -18px);\n top: auto;\n right: 28px;\n}\n.bk-root .noUi-handle {\n cursor: grab;\n cursor: -webkit-grab;\n}\n.bk-root .noUi-handle.noUi-active {\n cursor: grabbing;\n cursor: -webkit-grabbing;\n}\n.bk-root .noUi-handle:after,\n.bk-root .noUi-handle:before {\n display: none;\n}\n.bk-root .noUi-tooltip {\n display: none;\n white-space: nowrap;\n}\n.bk-root .noUi-handle:hover .noUi-tooltip {\n display: block;\n}\n.bk-root .noUi-horizontal {\n width: 100%;\n height: 10px;\n}\n.bk-root .noUi-vertical {\n width: 10px;\n height: 100%;\n}\n.bk-root .noUi-horizontal .noUi-handle {\n width: 14px;\n height: 18px;\n right: -7px;\n top: -5px;\n}\n.bk-root .noUi-vertical .noUi-handle {\n width: 18px;\n height: 14px;\n right: -5px;\n top: -7px;\n}\n.bk-root .noUi-target.noUi-horizontal {\n margin: 5px 0px;\n}\n.bk-root .noUi-target.noUi-vertical {\n margin: 0px 5px;\n}\n"},n”, ” 427: function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default="\n.bk-root .bk-slider-title {\n white-space: nowrap;\n}\n.bk-root .bk-slider-value {\n font-weight: 600;\n}\n"},n”, ” 428: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1).__importDefault(e(186)),a=e(423);class d extends a.AbstractSliderView{}i.DateSliderView=d,d.__name__="DateSliderView";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour="tap",this.connected=[!0,!1]}static init_DateSlider(){this.prototype.default_view=d,this.override({format:"%d %b %Y"})}_formatter(e,t){return r.default(e,t)}}i.DateSlider=s,s.__name__="DateSlider",s.init_DateSlider()},n”, ” 429: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),_=e(430),n=r.__importStar(e(18));class s extends _.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.model.text}}i.DivView=s,s.__name__="DivView";class a extends _.Markup{constructor(e){super(e)}static init_Div(){this.prototype.default_view=s,this.define({render_as_text:[n.Boolean,!1]})}}i.Div=a,a.__name__="Div",a.init_Div()},n”, ” 430: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(217),n=e(72),l=i.__importStar(e(18)),r=e(472),_=e(431),c=i.__importDefault(e(432));class u extends r.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>{this.layout.invalidate_cache(),this.render(),this.root.compute_layout()})}styles(){return[…super.styles(),c.default]}_update_layout(){this.layout=new a.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:"inline-block"});this.markup_el=n.div({class:_.bk_clearfix,style:e}),this.el.appendChild(this.markup_el)}}s.MarkupView=u,u.__name__="MarkupView";class o extends r.Widget{constructor(e){super(e)}static init_Markup(){this.define({text:[l.String,""],style:[l.Any,{}]})}}s.Markup=o,o.__name__="Markup",o.init_Markup()},n”, ” 431: function _(e,c,f){Object.defineProperty(f,"__esModule",{value:!0}),f.bk_clearfix="bk-clearfix"},n”, ” 432: function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-clearfix:before,\n.bk-root .bk-clearfix:after {\n content: "";\n display: table;\n}\n.bk-root .bk-clearfix:after {\n clear: both;\n}\n’},n”, ” 433: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(404),o=e(313),_=e(72),d=n.__importStar(e(18)),l=e(8),r=e(173),u=e(281),c=e(282),h=n.__importDefault(e(284));class p extends s.AbstractButtonView{constructor(){super(…arguments),this._open=!1}styles(){return[…super.styles(),h.default]}render(){super.render();const e=_.div({class:[c.bk_caret,r.bk_down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(u.bk_dropdown_toggle),t.addEventListener("click",()=>this._toggle_menu()),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map((e,t)=>{if(null==e)return _.div({class:c.bk_divider});{const i=l.isString(e)?e:e[0],n=_.div({},i);return n.addEventListener("click",()=>this._item_click(t)),n}});this.menu=_.div({class:[c.bk_menu,r.bk_below]},t),this.el.appendChild(this.menu),_.undisplay(this.menu)}_show_menu(){if(!this._open){this._open=!0,_.display(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener("click",e),this._hide_menu())};document.addEventListener("click",e)}}_hide_menu(){this._open&&(this._open=!1,_.undisplay(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new o.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=l.isString(t)?t:t[1];l.isString(i)?this.model.trigger_event(new o.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__="DropdownView";class m extends s.AbstractButton{constructor(e){super(e)}static init_Dropdown(){this.prototype.default_view=p,this.define({split:[d.Boolean,!1],menu:[d.Array,[]]}),this.override({label:"Dropdown"})}get is_split(){return this.split}}i.Dropdown=m,m.__name__="Dropdown",m.init_Dropdown()},n”, ” 434: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e(1).__importStar(e(18)),s=e(472);class n extends s.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.width.change,()=>this.render())}render(){null==this.dialogEl&&(this.dialogEl=document.createElement("input"),this.dialogEl.type="file",this.dialogEl.multiple=this.model.multiple,this.dialogEl.onchange=()=>{const{files:e}=this.dialogEl;null!=e&&this.load_files(e)},this.el.appendChild(this.dialogEl)),null!=this.model.accept&&""!=this.model.accept&&(this.dialogEl.accept=this.model.accept),this.dialogEl.style.width="{this.model.width}px",this.dialogEl.disabled=this.model.disabled}async load_files(e){const t=[],i=[],l=[];let s;for(s=0;s<e.length;s++){i.push(e[s].name);const n=await this.readfile(e[s]),[,o,,a]=n.split(/[:;,]/,4);t.push(a),l.push(o)}this.model.multiple?(this.model.filename=i,this.model.mime_type=l,this.model.value=t):(this.model.filename=i[0],this.model.mime_type=l[0],this.model.value=t[0])}readfile(e){return new Promise((t,i)=>{const l=new FileReader;l.onload=()=>{var s;const{result:n}=l;null!=n?t(n):i(null!==(s=l.error)&&void 0!==s?s:new Error(`unable to read ‘${e.name}’`))},l.readAsDataURL(e)})}}i.FileInputView=n,n.__name__="FileInputView";class o extends s.Widget{constructor(e){super(e)}static init_FileInput(){this.prototype.default_view=n,this.define({value:[l.Any,""],mime_type:[l.Any,""],filename:[l.Any,""],accept:[l.String,""],multiple:[l.Boolean,!1]})}}i.FileInput=o,o.__name__="FileInput",o.init_FileInput()},n”, ” 435: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(72),l=e(8),o=i.__importStar(e(18)),c=e(410),r=e(412);class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!0,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll("option"))t.selected=e.has(t.value);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector("select:focus"),t=[];for(const e of this.el.querySelectorAll("option"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.MultiSelectView=h,h.__name__="MultiSelectView";class d extends c.InputWidget{constructor(e){super(e)}static init_MultiSelect(){this.prototype.default_view=h,this.define({value:[o.Array,[]],options:[o.Array,[]],size:[o.Number,4]})}}s.MultiSelect=d,d.__name__="MultiSelect",d.init_MultiSelect()},n”, ” 436: function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});const t=a(430),p=a(72);class s extends t.MarkupView{render(){super.render();const a=p.p({style:{margin:0}},this.model.text);this.markup_el.appendChild(a)}}r.ParagraphView=s,s.__name__="ParagraphView";class i extends t.Markup{constructor(a){super(a)}static init_Paragraph(){this.prototype.default_view=s}}r.Paragraph=i,i.__name__="Paragraph",i.init_Paragraph()},n”, ” 437: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(409);class r extends n.TextInputView{render(){super.render(),this.input_el.type="password"}}s.PasswordInputView=r,r.__name__="PasswordInputView";class p extends n.TextInput{constructor(e){super(e)}static init_PasswordInput(){this.prototype.default_view=r}}s.PasswordInput=p,p.__name__="PasswordInput",p.init_PasswordInput()},n”, ” 438: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e(1),s=l.__importDefault(e(439)),o=e(72),n=e(8),h=e(217),a=l.__importStar(e(18)),c=e(412),u=l.__importDefault(e(440)),d=e(410);class _ extends d.InputWidgetView{constructor(){super(…arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,()=>this.set_disabled());const{value:e,max_items:t,option_limit:i,delete_button:l,placeholder:s,options:o,name:n,title:h}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h],()=>this.render())}styles(){return[…super.styles(),u.default]}_update_layout(){this.layout=new h.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.select_el=o.select({multiple:!0,class:c.bk_input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.select_el);const e=new Set(this.model.value),t=this.model.options.map(t=>{let i,l;return n.isString(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}}),i=this.model.solid?"solid":"light",l="choices__item "+i,h="choices__button "+i,a={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:h}};null!=this.model.placeholder&&(a.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(a.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(a.renderChoiceLimit=this.model.option_limit),this.choice_el=new s.default(this.select_el,a);const u=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=u()&&this.root.invalidate_layout(),this._last_height=u(),this.select_el.addEventListener("change",()=>this.change_input())}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector("select:focus"),t=[];for(const e of this.el.querySelectorAll("option"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}i.MultiChoiceView=_,_.__name__="MultiChoiceView";class r extends d.InputWidget{constructor(e){super(e)}static init_MultiChoice(){this.prototype.default_view=_,this.define({value:[a.Array,[]],options:[a.Array,[]],max_items:[a.Number,null],delete_button:[a.Boolean,!0],placeholder:[a.String,null],option_limit:[a.Number,null],solid:[a.Boolean,!0]})}}i.MultiChoice=r,r.__name__="MultiChoice",r.init_MultiChoice()},n”, ” 439: function _(e,t,i){n”, ” /! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme /n”, ” var n,s;n=window,s=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/public/assets/scripts/",i(i.s=4)}([function(e,t,i){"use strict";var n=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===s}(e)}(e)},s="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return"function"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){"use strict";(function(e,n){var s,r=i(3);s="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){n”, ” /!n”, ” * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)n”, ” n”, ” * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)n”, ” * All Rights Reserved. Apache Software License 2.0n”, ” *n”, ” * http://www.apache.org/licenses/LICENSE-2.0n”, ” */n”, ” e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var r=i(2),o=i(8),a=i(0),c=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.caseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_,y=i.id,E=void 0===y?null:y,I=i.keys,S=void 0===I?[]:I,w=i.shouldSort,O=void 0===w||w,C=i.getFn,A=void 0===C?o:C,L=i.sortFn,T=void 0===L?function(e,t){return e.score-t.score}:L,x=i.tokenize,k=void 0!==x&&x,P=i.matchAllTokens,D=void 0!==P&&P,M=i.includeMatches,N=void 0!==M&&M,F=i.includeScore,j=void 0!==F&&F,K=i.verbose,R=void 0!==K&&K;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b,id:E,keys:S,includeMatches:N,includeScore:j,shouldSort:O,getFn:A,sortFn:T,verbose:R,tokenize:k,matchAllTokens:D},this.setCollection(t)}var t,i;return t=e,(i=[{key:"setCollection",value:function(e){return this.list=e,e}},{key:"search",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log(’———\nSearch pattern: "’.concat(e,’"’));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&"number"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:"_prepareSearchers",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n<s;n+=1)t.push(new r(i[n],this.options));return{tokenSearchers:t,fullSearcher:new r(e,this.options)}}},{key:"_search",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if("string"==typeof i[0]){for(var r=0,o=i.length;r<o;r+=1)this._analyze({key:"",value:i[r],record:r,index:r},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t});return{weights:null,results:s}}for(var a={},c=0,l=i.length;c<l;c+=1)for(var h=i[c],u=0,d=this.options.keys.length;u<d;u+=1){var p=this.options.keys[u];if("string"!=typeof p){if(a[p.name]={weight:1-p.weight||1},p.weight<=0||p.weight>1)throw new Error("Key weight has to be > 0 and <= 1");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:"_analyze",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if("string"==typeof r){this._log("\nKey: ".concat(""===i?"-":i));var y=d.search(r);if(this._log(‘Full text: "’.concat(r,’", score: ‘).concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S<h.length;S+=1){var w=h[S];this._log(’\nPattern: "’.concat(w.pattern,’"’));for(var O=!1,C=0;C<E.length;C+=1){var A=E[C],L=w.search(A),T={};L.isMatch?(T[A]=L.score,g=!0,O=!0,I.push(L.score)):(T[A]=1,this.options.matchAllTokens||I.push(1)),this._log(‘Token: "’.concat(A,’", score: ‘).concat(T[A]))}O&&(b+=1)}_=I[0];for(var x=I.length,k=1;k<x;k+=1)_+=I[k];_/=x,this._log("Token score average:",_)}var P=y.score;_>-1&&(P=(P+_)/2),this._log("Score average:",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log("\nCheck Matches: ".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N<F;N+=1)this._analyze({key:i,arrayIndex:N,value:r[N],record:o,index:c},{resultMap:m,results:v,tokenSearchers:h,fullSearcher:d})}}},{key:"_computeScore",value:function(e,t){this._log("\n\nComputing score:\n");for(var i=0,n=t.length;i<n;i+=1){for(var s=t[i].output,r=s.length,o=1,a=1,c=0;c<r;c+=1){var l=e?e[s[c].key].weight:1,h=(1===l?s[c].score:s[c].score||.001)*l;1!==l?a=Math.min(a,h):(s[c].nScore=h,o*=h)}t[i].score=1===a?o:a,this._log(t[i])}}},{key:"_sort",value:function(e){this._log("\n\nSorting…."),e.sort(this.options.sortFn)}},{key:"_format",value:function(e){var t=[];if(this.options.verbose){var i=[];this._log("\n\nOutput:\n\n",JSON.stringify(e,(function(e,t){if("object"===n(t)&&null!==t){if(-1!==i.indexOf(t))return;i.push(t)}return t}))),i=null}var s=[];this.options.includeMatches&&s.push((function(e,t){var i=e.output;t.matches=[];for(var n=0,s=i.length;n<s;n+=1){var r=i[n];if(0!==r.matchedIndices.length){var o={indices:r.matchedIndices,value:r.value};r.key&&(o.key=r.key),r.hasOwnProperty("arrayIndex")&&r.arrayIndex>-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;r<o;r+=1){var a=e[r];if(this.options.id&&(a.item=this.options.getFn(a.item,this.options.id)[0]),s.length){for(var c={item:a.item},l=0,h=s.length;l<h;l+=1)s[l](a,c);t.push(c)}else t.push(a.item)}return t}},{key:"_log",value:function(){var e;this.options.verbose&&(e=console).log.apply(e,arguments)}}])&&s(t.prototype,i),e}();e.exports=c},function(e,t,i){function n(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var s=i(3),r=i(4),o=i(7),a=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.isCaseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b},this.pattern=this.options.isCaseSensitive?t:t.toLowerCase(),this.pattern.length<=u&&(this.patternAlphabet=o(this.pattern))}var t,i;return t=e,(i=[{key:"search",value:function(e){if(this.options.isCaseSensitive||(e=e.toLowerCase()),this.pattern===e)return{isMatch:!0,score:0,matchedIndices:[[0,e.length-1]]};var t=this.options,i=t.maxPatternLength,n=t.tokenSeparator;if(this.pattern.length>i)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),e}();e.exports=a},function(e,t){var i=/[\-\[\]\/\{\}\(\)\\+\?\.\\\^\$\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,"\\$&").replace(n,"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c<l;c+=1){var h=r[c];a.push([e.indexOf(h),h.length-1])}return{score:o?.5:1,isMatch:o,matchedIndices:a}}},function(e,t,i){var n=i(5),s=i(6);e.exports=function(e,t,i,r){for(var o=r.location,a=void 0===o?0:o,c=r.distance,l=void 0===c?100:c,h=r.threshold,u=void 0===h?.6:h,d=r.findAllMatches,p=void 0!==d&&d,m=r.minMatchCharLength,f=void 0===m?1:m,v=a,g=e.length,_=u,b=e.indexOf(t,v),y=t.length,E=[],I=0;I<g;I+=1)E[I]=0;if(-1!==b){var S=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});if(_=Math.min(S,_),-1!==(b=e.lastIndexOf(t,v+y))){var w=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});_=Math.min(w,_)}}b=-1;for(var O=[],C=1,A=y+g,L=1<<y-1,T=0;T<y;T+=1){for(var x=0,k=A;x<k;)n(t,{errors:T,currentLocation:v+k,expectedLocation:v,distance:l})<=_?x=k:A=k,k=Math.floor((A-x)/2+x);A=k;var P=Math.max(1,v-k+1),D=p?g:Math.min(v+k,g)+y,M=Array(D+2);M[D+1]=(1<<T)-1;for(var N=D;N>=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r<o;r+=1){var a=e[r];a&&-1===n?n=r:a||-1===n||((s=r-1)-n+1>=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n<i;n+=1)t[e.charAt(n)]=0;for(var s=0;s<i;s+=1)t[e.charAt(s)]|=1<<i-s-1;return t}},function(e,t,i){var n=i(0);e.exports=function(e,t){return function e(t,i,s){if(i){var r=i.indexOf("."),o=i,a=null;-1!==r&&(o=i.slice(0,r),a=i.slice(r+1));var c=t[o];if(null!=c)if(a||"string"!=typeof c&&"number"!=typeof c)if(n(c))for(var l=0,h=c.length;l<h;l+=1)e(c[l],a,s);else a&&e(c,a,s);else s.push(c.toString())}else s.push(t);return s}(e,t,[])}}])},function(e,t,i){"use strict";function n(e){var t,i=e.Symbol;return"function"==typeof i?i.observable?t=i.observable:(t=i("observable"),i.observable=t):t="@@observable",t}i.d(t,"a",(function(){return n}))},function(e,t,i){e.exports=i(7)},function(e,t){var i;i=function(){return this}();try{i=i||new Function("return this")()}catch(e){"object"==typeof window&&(i=window)}e.exports=i},function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},function(e,t,i){"use strict";i.r(t);var n=i(2),s=i.n(n),r=i(0),o=i.n(r),a=i(1),c=function(){return Math.random().toString(36).substring(7).split("").join(".")},l={INIT:"@@redux/INIT"+c(),REPLACE:"@@redux/REPLACE"+c(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+c()}};function h(e){if("object"!=typeof e||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function u(e,t,i){var n;if("function"==typeof t&&"function"==typeof i||"function"==typeof i&&"function"==typeof arguments[3])throw new Error("It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function.");if("function"==typeof t&&void 0===i&&(i=t,t=void 0),void 0!==i){if("function"!=typeof i)throw new Error("Expected the enhancer to be a function.");return i(u)(e,t)}if("function"!=typeof e)throw new Error("Expected the reducer to be a function.");var s=e,r=t,o=[],c=o,d=!1;function p(){c===o&&(c=o.slice())}function m(){if(d)throw new Error("You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");return r}function f(e){if("function"!=typeof e)throw new Error("Expected the listener to be a function.");if(d)throw new Error("You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");var t=!0;return p(),c.push(e),function(){if(t){if(d)throw new Error("You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");t=!1,p();var i=c.indexOf(e);c.splice(i,1)}}}function v(e){if(!h(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(void 0===e.type)throw new Error(‘Actions may not have an undefined "type" property. Have you misspelled a constant?’);if(d)throw new Error("Reducers may not dispatch actions.");try{d=!0,r=s(r,e)}finally{d=!1}for(var t=o=c,i=0;i<t.length;i++)(0,t[i])();return e}function g(e){if("function"!=typeof e)throw new Error("Expected the nextReducer to be a function.");s=e,v({type:l.REPLACE})}function _(){var e,t=f;return(e={subscribe:function(e){if("object"!=typeof e||null===e)throw new TypeError("Expected the observer to be an object.");function i(){e.next&&e.next(m())}return i(),{unsubscribe:t(i)}}})[a.a]=function(){return this},e}return v({type:l.INIT}),(n={dispatch:v,subscribe:f,getState:m,replaceReducer:g})[a.a]=_,n}function d(e,t){var i=t&&t.type;return"Given "+(i&&’action "’+String(i)+’"’||"an action")+’, reducer "’+e+’" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.’}var p,m=[],f=[],v=[],g={loading:!1},_=function(e,t){switch(void 0===e&&(e=g),t.type){case"SET_IS_LOADING":return{loading:t.isLoading};default:return e}},b=function(e){return Array.from({length:e},(function(){return(e=0,t=36,Math.floor(Math.random()*(t-e)+e)).toString(36);var e,t})).join("")},y=function(e){return Object.prototype.toString.call(e).slice(8,-1)},E=function(e,t){return null!=t&&y(t)===e},I=function(e){return"string"!=typeof e?e:e.replace(/&/g,"&").replace(/>/g,"&rt;").replace(/</g,"<").replace(/"/g,""")},S=(p=document.createElement("div"),function(e){var t=e.trim();p.innerHTML=t;for(var i=p.children[0];p.firstChild;)p.removeChild(p.firstChild);return i}),w=function(e,t){return e.score-t.score},O=function(e){return JSON.parse(JSON.stringify(e))},C=function(e){for(var t=Object.keys(e),i={},n=0;n<t.length;n++){var s=t[n];"function"==typeof e[s]&&(i[s]=e[s])}var r,o=Object.keys(i);try{!function(e){Object.keys(e).forEach((function(t){var i=e[t];if(void 0===i(void 0,{type:l.INIT}))throw new Error(‘Reducer "’+t+"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don’t want to set a value for this reducer, you can use null instead of undefined.");if(void 0===i(void 0,{type:l.PROBE_UNKNOWN_ACTION()}))throw new Error(‘Reducer "’+t+"\" returned undefined when probed with a random type. Don’t try to handle "+l.INIT+’ or other actions in "redux/" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.’)}))}(i)}catch(e){r=e}return function(e,t){if(void 0===e&&(e={}),r)throw r;for(var n=!1,s={},a=0;a<o.length;a++){var c=o[a],l=i[c],h=e[c],u=l(h,t);if(void 0===u){var p=d(c,t);throw new Error(p)}s[c]=u,n=n||u!==h}return n?s:e}}({items:function(e,t){switch(void 0===e&&(e=m),t.type){case"ADD_ITEM":return[].concat(e,[{id:t.id,choiceId:t.choiceId,groupId:t.groupId,value:t.value,label:t.label,active:!0,highlighted:!1,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]).map((function(e){var t=e;return t.highlighted=!1,t}));case"REMOVE_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.active=!1),i}));case"HIGHLIGHT_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.highlighted=t.highlighted),i}));default:return e}},groups:function(e,t){switch(void 0===e&&(e=f),t.type){case"ADD_GROUP":return[].concat(e,[{id:t.id,value:t.value,active:t.active,disabled:t.disabled}]);case"CLEAR_CHOICES":return[];default:return e}},choices:function(e,t){switch(void 0===e&&(e=v),t.type){case"ADD_CHOICE":return[].concat(e,[{id:t.id,elementId:t.elementId,groupId:t.groupId,value:t.value,label:t.label||t.value,disabled:t.disabled||!1,selected:!1,active:!0,score:9999,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]);case"ADD_ITEM":return t.activateOptions?e.map((function(e){var i=e;return i.active=t.active,i})):t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case"REMOVE_ITEM":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case"FILTER_CHOICES":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case"ACTIVATE_CHOICES":return e.map((function(e){var i=e;return i.active=t.active,i}));case"CLEAR_CHOICES":return v;default:return e}},general:_}),A=function(e,t){var i=e;if("CLEAR_ALL"===t.type)i=void 0;else if("RESET_TO"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var T=function(){function e(){this._store=u(A,window.__REDUX_DEVTOOLS_EXTENSION__&&window.__REDUX_DEVTOOLS_EXTENSION__())}var t,i,n,s=e.prototype;return s.subscribe=function(e){this._store.subscribe(e)},s.dispatch=function(e){this._store.dispatch(e)},s.isLoading=function(){return this.state.general.loading},s.getChoiceById=function(e){return this.activeChoices.find((function(t){return t.id===parseInt(e,10)}))},s.getGroupById=function(e){return this.groups.find((function(t){return t.id===e}))},t=e,(i=[{key:"state",get:function(){return this._store.getState()}},{key:"items",get:function(){return this.state.items}},{key:"activeItems",get:function(){return this.items.filter((function(e){return!0===e.active}))}},{key:"highlightedActiveItems",get:function(){return this.items.filter((function(e){return e.active&&e.highlighted}))}},{key:"choices",get:function(){return this.state.choices}},{key:"activeChoices",get:function(){return this.choices.filter((function(e){return!0===e.active}))}},{key:"selectableChoices",get:function(){return this.choices.filter((function(e){return!0!==e.disabled}))}},{key:"searchableChoices",get:function(){return this.selectableChoices.filter((function(e){return!0!==e.placeholder}))}},{key:"placeholderChoice",get:function(){return[].concat(this.choices).reverse().find((function(e){return!0===e.placeholder}))}},{key:"groups",get:function(){return this.state.groups}},{key:"activeGroups",get:function(){var e=this.groups,t=this.choices;return e.filter((function(e){var i=!0===e.active&&!1===e.disabled,n=t.some((function(e){return!0===e.active&&!1===e.disabled}));return i&&n}),[])}}])&&L(t.prototype,i),n&&L(t,n),e}();function x(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var k=function(){function e(e){var t=e.element,i=e.type,n=e.classNames;this.element=t,this.classNames=n,this.type=i,this.isActive=!1}var t,i,n,s=e.prototype;return s.getChild=function(e){return this.element.querySelector(e)},s.show=function(){return this.element.classList.add(this.classNames.activeState),this.element.setAttribute("aria-expanded","true"),this.isActive=!0,this},s.hide=function(){return this.element.classList.remove(this.classNames.activeState),this.element.setAttribute("aria-expanded","false"),this.isActive=!1,this},t=e,(i=[{key:"distanceFromTopWindow",get:function(){return this.element.getBoundingClientRect().bottom}}])&&x(t.prototype,i),n&&x(t,n),e}(),P={items:[],choices:[],silent:!1,renderChoiceLimit:-1,maxItemCount:-1,addItems:!0,addItemFilter:null,removeItems:!0,removeItemButton:!1,editItems:!1,duplicateItemsAllowed:!0,delimiter:",",paste:!0,searchEnabled:!0,searchChoices:!0,searchFloor:1,searchResultLimit:4,searchFields:["label","value"],position:"auto",resetScrollPosition:!0,shouldSort:!0,shouldSortItems:!1,sorter:function(e,t){var i=e.value,n=e.label,s=void 0===n?i:n,r=t.value,o=t.label,a=void 0===o?r:o;return s.localeCompare(a,[],{sensitivity:"base",ignorePunctuation:!0,numeric:!0})},placeholder:!0,placeholderValue:null,searchPlaceholderValue:null,prependValue:null,appendValue:null,renderSelectedChoices:"auto",loadingText:"Loading…",noResultsText:"No results found",noChoicesText:"No choices to choose from",itemSelectText:"Press to select",uniqueItemText:"Only unique values can be added",customAddItemText:"Only values matching specific conditions can be added",addItemText:function(e){return’Press Enter to add <b>"’+I(e)+’"</b>’},maxItemText:function(e){return"Only "+e+" values can be added"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:"choices",containerInner:"choices__inner",input:"choices__input",inputCloned:"choices__input–cloned",list:"choices__list",listItems:"choices__list–multiple",listSingle:"choices__list–single",listDropdown:"choices__list–dropdown",item:"choices__item",itemSelectable:"choices__item–selectable",itemDisabled:"choices__item–disabled",itemChoice:"choices__item–choice",placeholder:"choices__placeholder",group:"choices__group",groupHeading:"choices__heading",button:"choices__button",activeState:"is-active",focusState:"is-focused",openState:"is-open",disabledState:"is-disabled",highlightedState:"is-highlighted",selectedState:"is-selected",flippedState:"is-flipped",loadingState:"is-loading",noResults:"has-no-results",noChoices:"has-no-choices"}},D="showDropdown",M="hideDropdown",N="change",F="choice",j="search",K="addItem",R="removeItem",H="highlightItem",B="highlightChoice",V="ADD_CHOICE",G="FILTER_CHOICES",q="ACTIVATE_CHOICES",U="CLEAR_CHOICES",z="ADD_GROUP",W="ADD_ITEM",X="REMOVE_ITEM",$="HIGHLIGHT_ITEM",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener("focus",this._onFocus),this.element.addEventListener("blur",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener("focus",this._onFocus),this.element.removeEventListener("blur",this._onBlur)},t.shouldFlip=function(e){if("number"!=typeof e)return!1;var t=!1;return"auto"===this.position?t=!window.matchMedia("(min-height: "+(e+1)+"px)").matches:"top"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},t.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute("aria-expanded","true"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute("aria-expanded","false"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute("aria-disabled"),"select-one"===this.type&&this.element.setAttribute("tabindex","0"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute("aria-disabled","true"),"select-one"===this.type&&this.element.setAttribute("tabindex","-1"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement("div")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute("aria-busy","true"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute("aria-busy"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function oe(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var ae=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.preventPaste;this.element=t,this.type=i,this.classNames=n,this.preventPaste=s,this.isFocussed=this.element===document.activeElement,this.isDisabled=t.disabled,this._onPaste=this._onPaste.bind(this),this._onInput=this._onInput.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t,i,n,s=e.prototype;return s.addEventListeners=function(){this.element.addEventListener("paste",this._onPaste),this.element.addEventListener("input",this._onInput,{passive:!0}),this.element.addEventListener("focus",this._onFocus,{passive:!0}),this.element.addEventListener("blur",this._onBlur,{passive:!0})},s.removeEventListeners=function(){this.element.removeEventListener("input",this._onInput,{passive:!0}),this.element.removeEventListener("paste",this._onPaste),this.element.removeEventListener("focus",this._onFocus,{passive:!0}),this.element.removeEventListener("blur",this._onBlur,{passive:!0})},s.enable=function(){this.element.removeAttribute("disabled"),this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.isDisabled=!0},s.focus=function(){this.isFocussed||this.element.focus()},s.blur=function(){this.isFocussed&&this.element.blur()},s.clear=function(e){return void 0===e&&(e=!0),this.element.value&&(this.element.value=""),e&&this.setWidth(),this},s.setWidth=function(){var e=this.element,t=e.style,i=e.value,n=e.placeholder;t.minWidth=n.length+1+"ch",t.width=i.length+1+"ch"},s.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},s.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},s._onInput=function(){"select-one"!==this.type&&this.setWidth()},s._onPaste=function(e){this.preventPaste&&e.preventDefault()},s._onFocus=function(){this.isFocussed=!0},s._onBlur=function(){this.isFocussed=!1},t=e,(i=[{key:"placeholder",set:function(e){this.element.placeholder=e}},{key:"value",get:function(){return I(this.element.value)},set:function(e){this.element.value=e}}])&&oe(t.prototype,i),n&&oe(t,n),e}(),ce=function(){function e(e){var t=e.element;this.element=t,this.scrollPos=this.element.scrollTop,this.height=this.element.offsetHeight}var t=e.prototype;return t.clear=function(){this.element.innerHTML=""},t.append=function(e){this.element.appendChild(e)},t.getChild=function(e){return this.element.querySelector(e)},t.hasChildren=function(){return this.element.hasChildNodes()},t.scrollToTop=function(){this.element.scrollTop=0},t.scrollToChildElement=function(e,t){var i=this;if(e){var n=this.element.offsetHeight,s=this.element.scrollTop+n,r=e.offsetHeight,o=e.offsetTop+r,a=t>0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),n<e&&(s=!0)):(this._scrollUp(n,4,e),n>e&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function le(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var he=function(){function e(e){var t=e.element,i=e.classNames;if(this.element=t,this.classNames=i,!(t instanceof HTMLInputElement||t instanceof HTMLSelectElement))throw new TypeError("Invalid element passed");this.isDisabled=!1}var t,i,n,s=e.prototype;return s.conceal=function(){this.element.classList.add(this.classNames.input),this.element.hidden=!0,this.element.tabIndex=-1;var e=this.element.getAttribute("style");e&&this.element.setAttribute("data-choice-orig-style",e),this.element.setAttribute("data-choice","active")},s.reveal=function(){this.element.classList.remove(this.classNames.input),this.element.hidden=!1,this.element.removeAttribute("tabindex");var e=this.element.getAttribute("data-choice-orig-style");e?(this.element.removeAttribute("data-choice-orig-style"),this.element.setAttribute("style",e)):this.element.removeAttribute("style"),this.element.removeAttribute("data-choice"),this.element.value=this.element.value},s.enable=function(){this.element.removeAttribute("disabled"),this.element.disabled=!1,this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.element.disabled=!0,this.isDisabled=!0},s.triggerEvent=function(e,t){!function(e,t,i){void 0===i&&(i=null);var n=new CustomEvent(t,{detail:i,bubbles:!0,cancelable:!0});e.dispatchEvent(n)}(this.element,e,t)},t=e,(i=[{key:"isActive",get:function(){return"active"===this.element.dataset.choice}},{key:"dir",get:function(){return this.element.dir}},{key:"value",get:function(){return this.element.value},set:function(e){this.element.value=e}}])&&le(t.prototype,i),n&&le(t,n),e}();function ue(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var de=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.delimiter;return(i=e.call(this,{element:n,classNames:s})||this).delimiter=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,n=o,(s=[{key:"value",get:function(){return this.element.value},set:function(e){var t=e.map((function(e){return e.value})).join(this.delimiter);this.element.setAttribute("value",t),this.element.value=t}}])&&ue(n.prototype,s),r&&ue(n,r),o}(he);function pe(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var me=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.template;return(i=e.call(this,{element:n,classNames:s})||this).template=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,o.prototype.appendDocFragment=function(e){this.element.innerHTML="",this.element.appendChild(e)},n=o,(s=[{key:"placeholderOption",get:function(){return this.element.querySelector(‘option[value=""]’)||this.element.querySelector("option[placeholder]")}},{key:"optionGroups",get:function(){return Array.from(this.element.getElementsByTagName("OPTGROUP"))}},{key:"options",get:function(){return Array.from(this.element.options)},set:function(e){var t=this,i=document.createDocumentFragment();e.forEach((function(e){return n=e,s=t.template(n),void i.appendChild(s);var n,s})),this.appendDocFragment(i)}}])&&pe(n.prototype,s),r&&pe(n,r),o}(he),fe={containerOuter:function(e,t,i,n,s,r){var o=e.containerOuter,a=Object.assign(document.createElement("div"),{className:o});return a.dataset.type=r,t&&(a.dir=t),n&&(a.tabIndex=0),i&&(a.setAttribute("role",s?"combobox":"listbox"),s&&a.setAttribute("aria-autocomplete","list")),a.setAttribute("aria-haspopup","true"),a.setAttribute("aria-expanded","false"),a},containerInner:function(e){var t=e.containerInner;return Object.assign(document.createElement("div"),{className:t})},itemList:function(e,t){var i=e.list,n=e.listSingle,s=e.listItems;return Object.assign(document.createElement("div"),{className:i+" "+(t?n:s)})},placeholder:function(e,t){var i=e.placeholder;return Object.assign(document.createElement("div"),{className:i,innerHTML:t})},item:function(e,t,i){var n=e.item,s=e.button,r=e.highlightedState,o=e.itemSelectable,a=e.placeholder,c=t.id,l=t.value,h=t.label,u=t.customProperties,d=t.active,p=t.disabled,m=t.highlighted,f=t.placeholder,v=Object.assign(document.createElement("div"),{className:n,innerHTML:h});if(Object.assign(v.dataset,{item:"",id:c,value:l,customProperties:u}),d&&v.setAttribute("aria-selected","true"),p&&v.setAttribute("aria-disabled","true"),f&&v.classList.add(a),v.classList.add(m?r:o),i){p&&v.classList.remove(o),v.dataset.deletable="";var g=Object.assign(document.createElement("button"),{type:"button",className:s,innerHTML:"Remove item"});g.setAttribute("aria-label","Remove item: ‘"+l+"’"),g.dataset.button="",v.appendChild(g)}return v},choiceList:function(e,t){var i=e.list,n=Object.assign(document.createElement("div"),{className:i});return t||n.setAttribute("aria-multiselectable","true"),n.setAttribute("role","listbox"),n},choiceGroup:function(e,t){var i=e.group,n=e.groupHeading,s=e.itemDisabled,r=t.id,o=t.value,a=t.disabled,c=Object.assign(document.createElement("div"),{className:i+" "+(a?s:"")});return c.setAttribute("role","group"),Object.assign(c.dataset,{group:"",id:r,value:o}),a&&c.setAttribute("aria-disabled","true"),c.appendChild(Object.assign(document.createElement("div"),{className:n,innerHTML:o})),c},choice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.itemSelectable,o=e.selectedState,a=e.itemDisabled,c=e.placeholder,l=t.id,h=t.value,u=t.label,d=t.groupId,p=t.elementId,m=t.disabled,f=t.selected,v=t.placeholder,g=Object.assign(document.createElement("div"),{id:p,innerHTML:u,className:n+" "+s});return f&&g.classList.add(o),v&&g.classList.add(c),g.setAttribute("role",d>0?"treeitem":"option"),Object.assign(g.dataset,{choice:"",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled="",g.setAttribute("aria-disabled","true")):(g.classList.add(r),g.dataset.choiceSelectable=""),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement("input"),{type:"text",className:i+" "+n,autocomplete:"off",autocapitalize:"off",spellcheck:!1});return s.setAttribute("role","textbox"),s.setAttribute("aria-autocomplete","list"),s.setAttribute("aria-label",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement("div");return n.classList.add(t,i),n.setAttribute("aria-expanded","false"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i="");var a=[n,s];return"no-choices"===i?a.push(o):"no-results"===i&&a.push(r),Object.assign(document.createElement("div"),{innerHTML:t,className:a.join(" ")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},ve=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ge=function(e,t){return{type:$,id:e,highlighted:t}},_e=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},be=function(e){return{type:"SET_IS_LOADING",isLoading:e}};function ye(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var Ee="-ms-scroll-limit"in document.documentElement.style&&"-ms-ime-align"in document.documentElement.style,Ie={},Se=function(){var e,t,i;function n(e,t){var i=this;void 0===e&&(e="[data-choice]"),void 0===t&&(t={}),this.config=o.a.all([P,n.defaults.options,t],{arrayMerge:function(e,t){return[].concat(t)}});var s,r,a,c,l=(s=this.config,r=P,a=Object.keys(s).sort(),c=Object.keys(r).sort(),a.filter((function(e){return c.indexOf(e)<0})));l.length&&console.warn("Unknown config option(s) passed",l.join(", "));var h="string"==typeof e?document.querySelector(e):e;if(!(h instanceof HTMLInputElement||h instanceof HTMLSelectElement))throw TypeError("Expected one of the following types text|select-one|select-multiple");if(this._isTextElement="text"===h.type,this._isSelectOneElement="select-one"===h.type,this._isSelectMultipleElement="select-multiple"===h.type,this._isSelectElement=this._isSelectOneElement||this._isSelectMultipleElement,this.config.searchEnabled=this._isSelectMultipleElement||this.config.searchEnabled,["auto","always"].includes(this.config.renderSelectedChoices)||(this.config.renderSelectedChoices="auto"),t.addItemFilter&&"function"!=typeof t.addItemFilter){var u=t.addItemFilter instanceof RegExp?t.addItemFilter:new RegExp(t.addItemFilter);this.config.addItemFilter=u.test.bind(u)}if(this._isTextElement?this.passedElement=new de({element:h,classNames:this.config.classNames,delimiter:this.config.delimiter}):this.passedElement=new me({element:h,classNames:this.config.classNames,template:function(e){return i._templates.option(e)}}),this.initialised=!1,this._store=new T,this._initialState={},this._currentState={},this._prevState={},this._currentValue="",this._canSearch=this.config.searchEnabled,this._isScrollingOnIe=!1,this._highlightPosition=0,this._wasTap=!0,this._placeholderValue=this._generatePlaceholderValue(),this._baseId=function(e,t){var i=e.id||e.name&&e.name+"-"+b(2)||b(4);return i=t+"-"+(i=i.replace(/(:|\.|\[|\]|,)/g,""))}(this.passedElement.element,"choices-"),this._direction=this.passedElement.dir,!this._direction){var d=window.getComputedStyle(this.passedElement.element).direction;d!==window.getComputedStyle(document.documentElement).direction&&(this._direction=d)}if(this._idNames={itemChoice:"item-choice"},this._presetGroups=this.passedElement.optionGroups,this._presetOptions=this.passedElement.options,this._presetChoices=this.config.choices,this._presetItems=this.config.items,this.passedElement.value&&(this._presetItems=this._presetItems.concat(this.passedElement.value.split(this.config.delimiter))),this.passedElement.options&&this.passedElement.options.forEach((function(e){i._presetChoices.push({value:e.value,label:e.innerHTML,selected:e.selected,disabled:e.disabled||e.parentNode.disabled,placeholder:""===e.value||e.hasAttribute("placeholder"),customProperties:e.getAttribute("data-custom-properties")})})),this._render=this._render.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this),this._onKeyUp=this._onKeyUp.bind(this),this._onKeyDown=this._onKeyDown.bind(this),this._onClick=this._onClick.bind(this),this._onTouchMove=this._onTouchMove.bind(this),this._onTouchEnd=this._onTouchEnd.bind(this),this._onMouseDown=this._onMouseDown.bind(this),this._onMouseOver=this._onMouseOver.bind(this),this._onFormReset=this._onFormReset.bind(this),this._onAKey=this._onAKey.bind(this),this._onEnterKey=this._onEnterKey.bind(this),this._onEscapeKey=this._onEscapeKey.bind(this),this._onDirectionKey=this._onDirectionKey.bind(this),this._onDeleteKey=this._onDeleteKey.bind(this),this.passedElement.isActive)return this.config.silent||console.warn("Trying to initialise Choices on element already initialised"),void(this.initialised=!0);this.init()}e=n,i=[{key:"defaults",get:function(){return Object.preventExtensions({get options(){return Ie},get templates(){return fe}})}}],(t=null)&&ye(e.prototype,t),i&&ye(e,i);var r=n.prototype;return r.init=function(){if(!this.initialised){this._createTemplates(),this._createElements(),this._createStructure(),this._initialState=O(this._store.state),this._store.subscribe(this._render),this._render(),this._addEventListeners(),(!this.config.addItems||this.passedElement.element.hasAttribute("disabled"))&&this.disable(),this.initialised=!0;var e=this.config.callbackOnInit;e&&"function"==typeof e&&e.call(this)}},r.destroy=function(){this.initialised&&(this._removeEventListeners(),this.passedElement.reveal(),this.containerOuter.unwrap(this.passedElement.element),this.clearStore(),this._isSelectElement&&(this.passedElement.options=this._presetOptions),this._templates=null,this.initialised=!1)},r.enable=function(){return this.passedElement.isDisabled&&this.passedElement.enable(),this.containerOuter.isDisabled&&(this._addEventListeners(),this.input.enable(),this.containerOuter.enable()),this},r.disable=function(){return this.passedElement.isDisabled||this.passedElement.disable(),this.containerOuter.isDisabled||(this._removeEventListeners(),this.input.disable(),this.containerOuter.disable()),this},r.highlightItem=function(e,t){if(void 0===t&&(t=!0),!e)return this;var i=e.id,n=e.groupId,s=void 0===n?-1:n,r=e.value,o=void 0===r?"":r,a=e.label,c=void 0===a?"":a,l=s>=0?this._store.getGroupById(s):null;return this._store.dispatch(ge(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?"":s,o=e.label,a=void 0===o?"":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ge(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t="value"),void 0===i&&(i="label"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError("setChoices was called on a non-initialized instance of Choices");if(!this._isSelectElement)throw new TypeError("setChoices can’t be used with INPUT based Choices");if("string"!=typeof t||!t)throw new TypeError("value parameter must be a name of ‘value’ field in passed objects");if(n&&this.clearChoices(),"function"==typeof e){var r=e(this);if("function"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(".setChoices first argument function must return either array of choices or Promise, got: "+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(".setChoices must be called either with array of choices with a function resulting into Promise of array of choices");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:"CLEAR_ALL"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(ve(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate("notice",a.notice))}else{var c,l;this._isSearching?(l="function"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate("notice",l,"no-results")):(l="function"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate("notice",l,"no-choices")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&("always"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate("choiceGroup",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if("auto"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate("choice",e,n.config.itemSelectText);t.appendChild(i)}},h=e;"auto"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v<m;v+=1)f[v]&&l(f[v]);return t},r._createItemsFragment=function(e,t){var i=this;void 0===t&&(t=document.createDocumentFragment());var n=this.config,s=n.shouldSortItems,r=n.sorter,o=n.removeItemButton;return s&&!this._isSelectOneElement&&e.sort(r),this._isTextElement?this.passedElement.value=e:this.passedElement.options=e,e.forEach((function(e){var n=i._getTemplate("item",e,o);t.appendChild(n)})),t},r._triggerChange=function(e){null!=e&&this.passedElement.triggerEvent(N,{value:e})},r._selectPlaceholderChoice=function(){var e=this._store.placeholderChoice;e&&(this._addItem({value:e.value,label:e.label,choiceId:e.id,groupId:e.groupId,placeholder:e.placeholder}),this._triggerChange(e.value))},r._handleButtonAction=function(e,t){if(e&&t&&this.config.removeItems&&this.config.removeItemButton){var i=t.parentNode.getAttribute("data-id"),n=e.find((function(e){return e.id===parseInt(i,10)}));this._removeItem(n),this._triggerChange(n.value),this._isSelectOneElement&&this._selectPlaceholderChoice()}},r._handleItemAction=function(e,t,i){var n=this;if(void 0===i&&(i=!1),e&&t&&this.config.removeItems&&!this._isSelectOneElement){var s=t.getAttribute("data-id");e.forEach((function(e){e.id!==parseInt(s,10)||e.highlighted?!i&&e.highlighted&&n.unhighlightItem(e):n.highlightItem(e)})),this.input.focus()}},r._handleChoiceAction=function(e,t){if(e&&t){var i=t.dataset.id,n=this._store.getChoiceById(i);if(n){var s=e[0]&&e[0].keyCode?e[0].keyCode:null,r=this.dropdown.isActive;n.keyCode=s,this.passedElement.triggerEvent(F,{choice:n}),n.selected||n.disabled||this._canAddItem(e,n.value).response&&(this._addItem({value:n.value,label:n.label,choiceId:n.id,groupId:n.groupId,customProperties:n.customProperties,placeholder:n.placeholder,keyCode:n.keyCode}),this._triggerChange(n.value)),this.clearInput(),r&&this._isSelectOneElement&&(this.hideDropdown(!0),this.containerOuter.focus())}}},r._handleBackspace=function(e){if(this.config.removeItems&&e){var t=e[e.length-1],i=e.some((function(e){return e.highlighted}));this.config.editItems&&!i&&t?(this.input.value=t.value,this.input.setWidth(),this._removeItem(t),this._triggerChange(t.value)):(i||this.highlightItem(t,!1),this.removeHighlightedItems(!0))}},r._startLoading=function(){this._store.dispatch(be(!0))},r._stopLoading=function(){this._store.dispatch(be(!1))},r._handleLoadingState=function(e){void 0===e&&(e=!0);var t=this.itemList.getChild("."+this.config.classNames.placeholder);e?(this.disable(),this.containerOuter.addLoadingState(),this._isSelectOneElement?t?t.innerHTML=this.config.loadingText:(t=this._getTemplate("placeholder",this.config.loadingText),this.itemList.append(t)):this.input.placeholder=this.config.loadingText):(this.enable(),this.containerOuter.removeLoadingState(),this._isSelectOneElement?t.innerHTML=this._placeholderValue||"":this.input.placeholder=this._placeholderValue||"")},r._handleSearch=function(e){if(e&&this.input.isFocussed){var t=this._store.choices,i=this.config,n=i.searchFloor,s=i.searchChoices,r=t.some((function(e){return!e.active}));if(e&&e.length>=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(ve(!0)))}},r._canAddItem=function(e,t){var i=!0,n="function"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i="value"),e.some((function(e){return"string"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n="function"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n="function"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&"function"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n="function"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t="string"==typeof e?e.trim():e,i="string"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+" ")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.addEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.addEventListener("mousedown",this._onMouseDown,!0),e.addEventListener("click",this._onClick,{passive:!0}),e.addEventListener("touchmove",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener("mouseover",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener("focus",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener("blur",this._onBlur,{passive:!0})),this.input.element.addEventListener("keyup",this._onKeyUp,{passive:!0}),this.input.element.addEventListener("focus",this._onFocus,{passive:!0}),this.input.element.addEventListener("blur",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener("reset",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.removeEventListener("mousedown",this._onMouseDown,!0),e.removeEventListener("click",this._onClick),e.removeEventListener("touchmove",this._onTouchMove),this.dropdown.element.removeEventListener("mouseover",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener("focus",this._onFocus),this.containerOuter.element.removeEventListener("blur",this._onBlur)),this.input.element.removeEventListener("keyup",this._onKeyUp),this.input.element.removeEventListener("focus",this._onFocus),this.input.element.removeEventListener("blur",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener("reset",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate("notice",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(ve(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute("data-button");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild("."+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1;if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector("[data-choice-selectable]:last-of-type"):this.dropdown.element.querySelector("[data-choice-selectable]");else{var p=this.dropdown.element.querySelector("."+this.config.classNames.highlightedState);u=p?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&"string"==typeof t){for(var n=(i>0?"next":"previous")+"ElementSibling",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(p,"[data-choice-selectable]",d):this.dropdown.element.querySelector("[data-choice-selectable]")}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(Ee&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n="ltr"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX<i.offsetLeft;this._isScrollingOnIe=n}if(t!==this.input.element){var s=t.closest("[data-button],[data-item],[data-choice]");if(s instanceof HTMLElement){var r=e.shiftKey,o=this._store.activeItems,a=s.dataset;"button"in a?this._handleButtonAction(o,s):"item"in a?this._handleItemAction(o,s,r):"choice"in a&&this._handleChoiceAction(o,s)}e.preventDefault()}}},r._onMouseOver=function(e){var t=e.target;t instanceof HTMLElement&&"choice"in t.dataset&&this._highlightChoice(t)},r._onClick=function(e){var t=e.target;this.containerOuter.element.contains(t)?this.dropdown.isActive||this.containerOuter.isDisabled?this._isSelectOneElement&&t!==this.input.element&&!this.dropdown.element.contains(t)&&this.hideDropdown():this._isTextElement?document.activeElement!==this.input.element&&this.input.focus():(this.showDropdown(),this.containerOuter.focus()):(this._store.highlightedActiveItems.length>0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t["select-one"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t["select-multiple"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n["select-one"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n["select-multiple"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:"RESET_TO",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll("[data-choice-selectable]"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll("."+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute("aria-selected","false")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute("aria-selected","true"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m="string"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E("Object",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+"-"+this._idNames.itemChoice+"-"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?"value":s,o=e.labelKey,a=void 0===o?"label":o,c=E("Object",i)?i.choices:Array.from(i.getElementsByTagName("OPTION")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(_e({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E("Object",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(_e({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;r<n;r++)s[r-1]=arguments[r];return(t=this._templates[e]).call.apply(t,[this,i].concat(s))},r._createTemplates=function(){var e=this.config.callbackOnCreateTemplates,t={};e&&"function"==typeof e&&(t=e.call(this,S)),this._templates=o()(fe,t)},r._createElements=function(){this.containerOuter=new re({element:this._getTemplate("containerOuter",this._direction,this._isSelectElement,this._isSelectOneElement,this.config.searchEnabled,this.passedElement.element.type),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.containerInner=new re({element:this._getTemplate("containerInner"),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.input=new ae({element:this._getTemplate("input",this._placeholderValue),classNames:this.config.classNames,type:this.passedElement.element.type,preventPaste:!this.config.paste}),this.choiceList=new ce({element:this._getTemplate("choiceList",this._isSelectOneElement)}),this.itemList=new ce({element:this._getTemplate("itemList",this._isSelectOneElement)}),this.dropdown=new k({element:this._getTemplate("dropdown"),classNames:this.config.classNames,type:this.passedElement.element.type})},r._createStructure=function(){this.passedElement.conceal(),this.containerInner.wrap(this.passedElement.element),this.containerOuter.wrap(this.containerInner.element),this._isSelectOneElement?this.input.placeholder=this.config.searchPlaceholderValue||"":this._placeholderValue&&(this.input.placeholder=this._placeholderValue,this.input.setWidth()),this.containerOuter.element.appendChild(this.containerInner.element),this.containerOuter.element.appendChild(this.dropdown.element),this.containerInner.element.appendChild(this.itemList.element),this._isTextElement||this.dropdown.element.appendChild(this.choiceList.element),this._isSelectOneElement?this.config.searchEnabled&&this.dropdown.element.insertBefore(this.input.element,this.dropdown.element.firstChild):this.containerInner.element.appendChild(this.input.element),this._isSelectElement&&(this._highlightPosition=0,this._isSearching=!1,this._startLoading(),this._presetGroups.length?this._addPredefinedGroups(this._presetGroups):this._addPredefinedChoices(this._presetChoices),this._stopLoading()),this._isTextElement&&this._addPredefinedItems(this._presetItems)},r._addPredefinedGroups=function(e){var t=this,i=this.passedElement.placeholderOption;i&&"SELECT"===i.parentNode.tagName&&this._addChoice({value:i.value,label:i.innerHTML,isSelected:i.selected,isDisabled:i.disabled,placeholder:!0}),e.forEach((function(e){return t._addGroup({group:e,id:e.id||null})}))},r._addPredefinedChoices=function(e){var t=this;this.config.shouldSort&&e.sort(this.config.sorter);var i=e.some((function(e){return e.selected})),n=e.findIndex((function(e){return void 0===e.disabled||!e.disabled}));e.forEach((function(e,s){var r=e.value,o=e.label,a=e.customProperties,c=e.placeholder;if(t._isSelectElement)if(e.choices)t._addGroup({group:e,id:e.id||null});else{var l=!(!t._isSelectOneElement||i||s!==n)||e.selected,h=e.disabled;t._addChoice({value:r,label:o,isSelected:l,isDisabled:h,customProperties:a,placeholder:c})}else t._addChoice({value:r,label:o,isSelected:e.selected,isDisabled:e.disabled,customProperties:a,placeholder:c})}))},r._addPredefinedItems=function(e){var t=this;e.forEach((function(e){"object"==typeof e&&e.value&&t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}),"string"==typeof e&&t._addItem({value:e})}))},r._setChoiceOrItem=function(e){var t=this;({object:function(){e.value&&(t._isTextElement?t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}):t._addChoice({value:e.value,label:e.label,isSelected:!0,isDisabled:!1,customProperties:e.customProperties,placeholder:e.placeholder}))},string:function(){t._isTextElement?t._addItem({value:e}):t._addChoice({value:e,label:e,isSelected:!0,isDisabled:!1})}})[y(e).toLowerCase()]()},r._findAndSelectChoiceByValue=function(e){var t=this,i=this._store.choices.find((function(i){return t.config.valueComparer(i.value,e)}));i&&!i.selected&&this._addItem({value:i.value,label:i.label,choiceId:i.id,groupId:i.groupId,customProperties:i.customProperties,placeholder:i.placeholder,keyCode:i.keyCode})},r._generatePlaceholderValue=function(){if(this._isSelectElement){var e=this.passedElement.placeholderOption;return!!e&&e.text}var t=this.config,i=t.placeholder,n=t.placeholderValue,s=this.passedElement.element.dataset;if(i){if(n)return n;if(s.placeholder)return s.placeholder}return!1},n}();t.default=Se}]).default},"object"==typeof i&&"object"==typeof t?t.exports=s():"function"==typeof define&&define.amd?define([],s):"object"==typeof i?i.Choices=s():n.Choices=s()},n”, ” 440: function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default="\n.bk-root {\n /*===============================\n= Choices =\n===============================/\n /===== End of Choices ======/\n}\n.bk-root .choices {\n position: relative;\n margin-bottom: 24px;\n font-size: 16px;\n}\n.bk-root .choices:focus {\n outline: none;\n}\n.bk-root .choices:last-child {\n margin-bottom: 0;\n}\n.bk-root .choices.is-disabled .choices__inner,\n.bk-root .choices.is-disabled .choices__input {\n background-color: #eaeaea;\n cursor: not-allowed;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.bk-root .choices.is-disabled .choices__item {\n cursor: not-allowed;\n}\n.bk-root .choices [hidden] {\n display: none !important;\n}\n.bk-root .choices[data-type*=’select-one’] {\n cursor: pointer;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__inner {\n padding-bottom: 7.5px;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__input {\n display: block;\n width: 100%;\n padding: 10px;\n border-bottom: 1px solid #dddddd;\n background-color: #ffffff;\n margin: 0;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n padding: 0;\n background-size: 8px;\n position: absolute;\n top: 50%;\n right: 0;\n margin-top: -10px;\n margin-right: 25px;\n height: 20px;\n width: 20px;\n border-radius: 10em;\n opacity: 0.5;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button:hover,\n.bk-root .choices[data-type*=’select-one’] .choices__button:focus {\n opacity: 1;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button:focus {\n box-shadow: 0px 0px 0px 2px #00bcd4;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__item[data-value=’’] .choices__button {\n display: none;\n}\n.bk-root .choices[data-type*=’select-one’]:after {\n content: ‘’;\n height: 0;\n width: 0;\n border-style: solid;\n border-color: #333333 transparent transparent transparent;\n border-width: 5px;\n position: absolute;\n right: 11.5px;\n top: 50%;\n margin-top: -2.5px;\n pointer-events: none;\n}\n.bk-root .choices[data-type*=’select-one’].is-open:after {\n border-color: transparent transparent #333333 transparent;\n margin-top: -7.5px;\n}\n.bk-root .choices[data-type*=’select-one’][dir=’rtl’]:after {\n left: 11.5px;\n right: auto;\n}\n.bk-root .choices[data-type*=’select-one’][dir=’rtl’] .choices__button {\n right: auto;\n left: 0;\n margin-left: 25px;\n margin-right: 0;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__inner,\n.bk-root .choices[data-type*=’text’] .choices__inner {\n cursor: text;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__button,\n.bk-root .choices[data-type*=’text’] .choices__button {\n position: relative;\n display: inline-block;\n margin-top: 0;\n margin-right: -4px;\n margin-bottom: 0;\n margin-left: 8px;\n padding-left: 16px;\n border-left: 1px solid #008fa1;\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n background-size: 8px;\n width: 8px;\n line-height: 1;\n opacity: 0.75;\n border-radius: 0;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__button:hover,\n.bk-root .choices[data-type*=’select-multiple’] .choices__button:focus,\n.bk-root .choices[data-type*=’text’] .choices__button:hover,\n.bk-root .choices[data-type*=’text’] .choices__button:focus {\n opacity: 1;\n}\n.bk-root .choices__inner {\n display: inline-block;\n vertical-align: top;\n width: 100%;\n background-color: #f9f9f9;\n padding: 7.5px 7.5px 3.75px;\n border: 1px solid #dddddd;\n border-radius: 2.5px;\n font-size: 14px;\n min-height: 44px;\n overflow: hidden;\n}\n.bk-root .is-focused .choices__inner,\n.bk-root .is-open .choices__inner {\n border-color: #b7b7b7;\n}\n.bk-root .is-open .choices__inner {\n border-radius: 2.5px 2.5px 0 0;\n}\n.bk-root .is-flipped.is-open .choices__inner {\n border-radius: 0 0 2.5px 2.5px;\n}\n.bk-root .choices__list {\n margin: 0;\n padding-left: 0;\n list-style: none;\n}\n.bk-root .choices__list–single {\n display: inline-block;\n padding: 4px 16px 4px 4px;\n width: 100%;\n}\n.bk-root [dir=’rtl’] .choices__list–single {\n padding-right: 4px;\n padding-left: 16px;\n}\n.bk-root .choices__list–single .choices__item {\n width: 100%;\n}\n.bk-root .choices__list–multiple {\n display: inline;\n}\n.bk-root .choices__list–multiple .choices__item {\n display: inline-block;\n vertical-align: middle;\n border-radius: 20px;\n padding: 4px 10px;\n font-size: 12px;\n font-weight: 500;\n margin-right: 3.75px;\n margin-bottom: 3.75px;\n background-color: #00bcd4;\n border: 1px solid #00a5bb;\n color: #ffffff;\n word-break: break-all;\n box-sizing: border-box;\n}\n.bk-root .choices__list–multiple .choices__item[data-deletable] {\n padding-right: 5px;\n}\n.bk-root [dir=’rtl’] .choices__list–multiple .choices__item {\n margin-right: 0;\n margin-left: 3.75px;\n}\n.bk-root .choices__list–multiple .choices__item.is-highlighted {\n background-color: #00a5bb;\n border: 1px solid #008fa1;\n}\n.bk-root .is-disabled .choices__list–multiple .choices__item {\n background-color: #aaaaaa;\n border: 1px solid #919191;\n}\n.bk-root .choices__list–dropdown {\n visibility: hidden;\n z-index: 1;\n position: absolute;\n width: 100%;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n top: 100%;\n margin-top: -1px;\n border-bottom-left-radius: 2.5px;\n border-bottom-right-radius: 2.5px;\n overflow: hidden;\n word-break: break-all;\n will-change: visibility;\n}\n.bk-root .choices__list–dropdown.is-active {\n visibility: visible;\n}\n.bk-root .is-open .choices__list–dropdown {\n border-color: #b7b7b7;\n}\n.bk-root .is-flipped .choices__list–dropdown {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: -1px;\n border-radius: 0.25rem 0.25rem 0 0;\n}\n.bk-root .choices__list–dropdown .choices__list {\n position: relative;\n max-height: 300px;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n will-change: scroll-position;\n}\n.bk-root .choices__list–dropdown .choices__item {\n position: relative;\n padding: 10px;\n font-size: 14px;\n}\n.bk-root [dir=’rtl’] .choices__list–dropdown .choices__item {\n text-align: right;\n}\n@media (min-width: 640px) {\n .bk-root .choices__list–dropdown .choices__item–selectable {\n padding-right: 100px;\n }\n .bk-root .choices__list–dropdown .choices__item–selectable:after {\n content: attr(data-select-text);\n font-size: 12px;\n opacity: 0;\n position: absolute;\n right: 10px;\n top: 50%;\n transform: translateY(-50%);\n }\n .bk-root [dir=’rtl’] .choices__list–dropdown .choices__item–selectable {\n text-align: right;\n padding-left: 100px;\n padding-right: 10px;\n }\n .bk-root [dir=’rtl’] .choices__list–dropdown .choices__item–selectable:after {\n right: auto;\n left: 10px;\n }\n}\n.bk-root .choices__list–dropdown .choices__item–selectable.is-highlighted {\n background-color: #f2f2f2;\n}\n.bk-root .choices__list–dropdown .choices__item–selectable.is-highlighted:after {\n opacity: 0.5;\n}\n.bk-root .choices__item {\n cursor: default;\n}\n.bk-root .choices__item–selectable {\n cursor: pointer;\n}\n.bk-root .choices__item–disabled {\n cursor: not-allowed;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n opacity: 0.5;\n}\n.bk-root .choices__heading {\n font-weight: 600;\n font-size: 12px;\n padding: 10px;\n border-bottom: 1px solid #f7f7f7;\n color: gray;\n}\n.bk-root .choices__button {\n text-indent: -9999px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n border: 0;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center;\n cursor: pointer;\n}\n.bk-root .choices__button:focus {\n outline: none;\n}\n.bk-root .choices__input {\n display: inline-block;\n vertical-align: baseline;\n background-color: #f9f9f9;\n font-size: 14px;\n margin-bottom: 5px;\n border: 0;\n border-radius: 0;\n max-width: 100%;\n padding: 4px 0 4px 2px;\n}\n.bk-root .choices__input:focus {\n outline: 0;\n}\n.bk-root [dir=’rtl’] .choices__input {\n padding-right: 2px;\n padding-left: 0;\n}\n.bk-root .choices__placeholder {\n opacity: 0.5;\n}\n.bk-root .choices {\n width: 100%;\n}\n.bk-root .choices {\n box-sizing: border-box;\n}\n.bk-root .choices ,\n.bk-root .choices *:before,\n.bk-root .choices *:after {\n box-sizing: inherit;\n}\n.bk-root .choices__inner .choices__item.light {\n background-color: rgba(0, 126, 255, 0.08);\n border-radius: 5px;\n border: 1px solid rgba(0, 126, 255, 0.24);\n color: #007eff;\n}\n.bk-root .choices__inner .choices__item.solid {\n background-color: #1f77b4;\n border: none;\n border-radius: 5px;\n color: white;\n}\n.bk-root .choices__inner .choices__item.solid .is-highlighted {\n background-color: #1f77b4;\n border: none;\n}\n.bk-root .choices__input {\n background-color: transparent;\n}\n.bk-root .choices__inner {\n background: transparent;\n border: 1px solid darkgray;\n border-radius: 5px;\n min-height: unset;\n}\n.bk-root .choices__list {\n white-space: initial;\n}\n.bk-root .choices[data-type*=select-multiple] .choices__button.light {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDA3ZWZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n}\n.bk-root .choices[data-type*=select-multiple] .choices__button.solid {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjZmZmZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n border-left: 1px solid white;\n opacity: 1;\n}\n"},n”, ” 441: function _(e,t,l){Object.defineProperty(l,"__esModule",{value:!0});const i=e(1),n=i.__importStar(e(188)),s=e(410),u=e(72),h=e(11),o=i.__importStar(e(18)),a=e(442),r=e(412),d=/^[-+]?\d*$/,p=/^[-+]?\d\.?\d*(?:(?:\d|\d.)[eE][-+]?)*\d*$/;class _ extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value}),this.connect(this.model.properties.low.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(t<=l,"Invalid bounds, low must be inferior to high"),null!=e&&null!=t&&(this.model.value=Math.max(e,t))}),this.connect(this.model.properties.high.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(l>=t,"Invalid bounds, high must be superior to low"),null!=e&&null!=l&&(this.model.value=Math.min(e,l))}),this.connect(this.model.properties.high.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):""}_set_input_filter(e){this.input_el.addEventListener("input",()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}})}render(){super.render(),this.input_el=u.input({type:"text",class:r.bk_input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener("change",()=>this.change_input()),this.input_el.addEventListener("focusout",()=>this.input_el.value=this.format_value),this.group_el.appendChild(this.input_el)}set_input_filter(){"int"==this.model.mode?this._set_input_filter(e=>d.test(e)):"float"==this.model.mode&&this._set_input_filter(e=>p.test(e))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=""!==this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=_,_.__name__="NumericInputView";class m extends s.InputWidget{constructor(e){super(e)}static init_NumericInput(){this.prototype.default_view=_,this.define({value:[o.Number,null],placeholder:[o.String,""],mode:[o.Any,"int"],format:[o.Any],low:[o.Number,null],high:[o.Number,null]})}_formatter(e,t){return a.isString(t)?n.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):""+e}}l.NumericInput=m,m.__name__="NumericInput",m.init_NumericInput()},n”, ” 442: function _(t,_,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(1);e.__exportStar(t(13),r),e.__exportStar(t(9),r),e.__exportStar(t(29),r),e.__exportStar(t(443),r),e.__exportStar(t(8),r),e.__exportStar(t(25),r)},n”, ” 443: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class n{constructor(e){this.seed=e%2147483647,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%2147483647,this.seed}float(){return(this.integer()-1)/2147483646}floats(e){const t=new Array(e);for(let s=0;s<e;s++)t[s]=this.float();return t}}s.Random=n,n.__name__="Random",s.random=new n(Date.now())},n”, ” 444: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e(430),i=e(72);class n extends s.MarkupView{render(){super.render();const e=i.pre({style:{overflow:"auto"}},this.model.text);this.markup_el.appendChild(e)}}r.PreTextView=n,n.__name__="PreTextView";class _ extends s.Markup{constructor(e){super(e)}static init_PreText(){this.prototype.default_view=n}}r.PreText=_,_.__name__="PreText",_.init_PreText()},n”, ” 445: function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),a=t(415),n=t(72),u=i.__importStar(t(18)),s=t(173);class _ extends a.ButtonGroupView{change_active(t){this.model.active!==t&&(this.model.active=t)}_update_active(){const{active:t}=this.model;this._buttons.forEach((o,e)=>{n.classes(o).toggle(s.bk_active,t===e)})}}e.RadioButtonGroupView=_,_.__name__="RadioButtonGroupView";class c extends a.ButtonGroup{constructor(t){super(t)}static init_RadioButtonGroup(){this.prototype.default_view=_,this.define({active:[u.Any,null]})}}e.RadioButtonGroup=c,c.__name__="RadioButtonGroup",c.init_RadioButtonGroup()},n”, ” 446: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),a=e(72),s=e(29),o=n.__importStar(e(18)),d=e(417),l=e(173),p=e(412);class r extends d.InputGroupView{render(){super.render();const e=a.div({class:[p.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const i=s.uniqueId(),{active:t,labels:n}=this.model;this._inputs=[];for(let s=0;s<n.length;s++){const o=a.input({type:"radio",name:i,value:""+s});o.addEventListener("change",()=>this.change_active(s)),this._inputs.push(o),this.model.disabled&&(o.disabled=!0),s==t&&(o.checked=!0);const d=a.label({},o,a.span({},n[s]));e.appendChild(d)}}change_active(e){this.model.active=e}}t.RadioGroupView=r,r.__name__="RadioGroupView";class u extends d.InputGroup{constructor(e){super(e)}static init_RadioGroup(){this.prototype.default_view=r,this.define({active:[o.Number],labels:[o.Array,[]],inline:[o.Boolean,!1]})}}t.RadioGroup=u,u.__name__="RadioGroup",u.init_RadioGroup()},n”, ” 447: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1).__importStar(e(188)),a=e(423),n=e(8);class o extends a.AbstractRangeSliderView{}r.RangeSliderView=o,o.__name__="RangeSliderView";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour="drag",this.connected=[!1,!0,!1]}static init_RangeSlider(){this.prototype.default_view=o,this.override({format:"0[.]00"})}_formatter(e,t){return n.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.RangeSlider=s,s.__name__="RangeSlider",s.init_RangeSlider()},n”, ” 448: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(72),l=e(8),o=e(13),p=n.__importStar(e(18)),u=e(410),a=e(412);class _ extends u.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,()=>{this._update_value()}),this.on_change(t,()=>{s.empty(this.input_el),s.append(this.input_el,…this.options_el())})}options_el(){function e(e){return e.map(e=>{let t,i;return l.isString(e)?t=i=e:[t,i]=e,s.option({value:t},i)})}const{options:t}=this.model;return l.isArray(t)?e(t):o.entries(t).map(([t,i])=>s.optgroup({label:t},e(i)))}render(){super.render(),this.input_el=s.select({class:a.bk_input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;null!=e&&0!=e.length&&(this.input_el.value=this.model.value)}}i.SelectView=_,_.__name__="SelectView";class h extends u.InputWidget{constructor(e){super(e)}static init_Select(){this.prototype.default_view=_,this.define({value:[p.String,""],options:[p.Any,[]]})}}i.Select=h,h.__name__="Select",h.init_Select()},n”, ” 449: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1).__importStar(e(188)),o=e(423),s=e(8);class _ extends o.AbstractSliderView{}r.SliderView=_,_.__name__="SliderView";class a extends o.AbstractSlider{constructor(e){super(e),this.behaviour="tap",this.connected=[!0,!1]}static init_Slider(){this.prototype.default_view=_,this.override({format:"0[.]00"})}_formatter(e,t){return s.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.Slider=a,a.__name__="Slider",a.init_Slider()},n”, ” 450: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(441),l=n.__importStar(e(18)),r=e(72),{min:o,max:_,floor:a,abs:h}=Math;function u(e){return a(e)!==e?e.toFixed(16).replace(/0+$/,"").split(".")[1].length:0}class p extends s.NumericInputView{buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.buttons())r.toggle_attribute(e,"disabled",this.model.disabled)})}render(){super.render(),this.wrapper_el=r.div({class:"bk-spin-wrapper"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=r.button({class:"bk-spin-btn bk-spin-btn-up"}),this.btn_down_el=r.button({class:"bk-spin-btn bk-spin-btn-down"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())r.toggle_attribute(e,"disabled",this.model.disabled),e.addEventListener("mousedown",e=>this._btn_mouse_down(e)),e.addEventListener("mouseup",()=>this._btn_mouse_up()),e.addEventListener("mouseleave",()=>this._btn_mouse_leave());this.input_el.addEventListener("keydown",e=>this._input_key_down(e)),this.input_el.addEventListener("keyup",()=>this.model.value_throttled=this.model.value),this.input_el.addEventListener("wheel",e=>this._input_mouse_wheel(e)),this.input_el.addEventListener("wheel",function(e,t,i=!1){let n;return function(…s){const l=this,r=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),r&&e.apply(l,s)}}(()=>{this.model.value_throttled=this.model.value},this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model;return _(…[e,t,i].map(h).reduce((e,t)=>(null!=t&&e.push(t),e),[]).map(u))}_start_incrementation(e){clearInterval(this._interval_handle),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(e),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(2*e),this._interval/10))}this.increment(e)};this._interval_handle=setInterval(()=>i(e*t),this._interval)}_stop_incrementation(){clearInterval(this._interval_handle),this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._start_incrementation(t)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?o(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?_(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__="SpinnerView";class d extends s.NumericInput{constructor(e){super(e)}static init_Spinner(){this.prototype.default_view=p,this.define({value_throttled:[l.Number,null],step:[l.Number,1],page_step_multiplier:[l.Number,10],wheel_wait:[l.Number,100]}),this.override({mode:"float"})}}i.Spinner=d,d.__name__="Spinner",d.init_Spinner()},n”, ” 451: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(410),l=e(72),h=s.__importStar(e(18)),o=e(412);class a extends n.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.rows.change,()=>this.input_el.rows=this.model.rows),this.connect(this.model.properties.cols.change,()=>this.input_el.cols=this.model.cols),this.connect(this.model.properties.max_length.change,()=>this.input_el.maxLength=this.model.max_length)}render(){super.render(),this.input_el=l.textarea({class:o.bk_input,name:this.model.name,disabled:this.model.disabled,placeholder:this.model.placeholder,cols:this.model.cols,rows:this.model.rows,maxLength:this.model.max_length}),this.input_el.textContent=this.model.value,this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}}i.TextAreaInputView=a,a.__name__="TextAreaInputView";class p extends n.InputWidget{constructor(e){super(e)}static init_TextAreaInput(){this.prototype.default_view=a,this.define({value:[h.String,""],value_input:[h.String,""],placeholder:[h.String,""],cols:[h.Number,20],rows:[h.Number,2],max_length:[h.Number,500]})}}i.TextAreaInput=p,p.__name__="TextAreaInput",p.init_TextAreaInput()},n”, ” 452: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),c=e(404),o=e(72),a=s.__importStar(e(18)),n=e(173);class l extends c.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._update_active())}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){o.classes(this.button_el).toggle(n.bk_active,this.model.active)}}i.ToggleView=l,l.__name__="ToggleView";class _ extends c.AbstractButton{constructor(e){super(e)}static init_Toggle(){this.prototype.default_view=l,this.define({active:[a.Boolean,!1]}),this.override({label:"Toggle"})}}i.Toggle=_,_.__name__="Toggle",_.init_Toggle()},n”, ” }, 402, {"models/widgets/main":402,"models/widgets/index":403,"models/widgets/abstract_button":404,"models/widgets/control":405,"models/widgets/widget":472,"models/widgets/abstract_icon":407,"models/widgets/autocomplete_input":408,"models/widgets/text_input":409,"models/widgets/input_widget":410,"styles/widgets/inputs.css":411,"styles/widgets/inputs":412,"models/widgets/button":413,"models/widgets/checkbox_button_group":414,"models/widgets/button_group":415,"models/widgets/checkbox_group":416,"models/widgets/input_group":417,"models/widgets/color_picker":418,"models/widgets/date_picker":419,"styles/widgets/flatpickr.css":421,"models/widgets/date_range_slider":422,"models/widgets/abstract_slider":423,"styles/widgets/sliders":425,"styles/widgets/nouislider.css":426,"styles/widgets/sliders.css":427,"models/widgets/date_slider":428,"models/widgets/div":429,"models/widgets/markup":430,"styles/clearfix":431,"styles/clearfix.css":432,"models/widgets/dropdown":433,"models/widgets/file_input":434,"models/widgets/multiselect":435,"models/widgets/paragraph":436,"models/widgets/password_input":437,"models/widgets/multichoice":438,"styles/widgets/choices.css":440,"models/widgets/numeric_input":441,"api/linalg":442,"core/util/random":443,"models/widgets/pretext":444,"models/widgets/radio_button_group":445,"models/widgets/radio_group":446,"models/widgets/range_slider":447,"models/widgets/selectbox":448,"models/widgets/slider":449,"models/widgets/spinner":450,"models/widgets/textarea_input":451,"models/widgets/toggle":452}, {});n”, ” })n”, “n”, “n”, ” / END bokeh-widgets.min.js /n”, ” },n”, ” n”, ” function(Bokeh) {n”, ” / BEGIN bokeh-tables.min.js /n”, ” /!n”, ” * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn”, ” * All rights reserved.n”, ” * n”, ” * Redistribution and use in source and binary forms, with or without modification,n”, ” * are permitted provided that the following conditions are met:n”, ” * n”, ” * Redistributions of source code must retain the above copyright notice,n”, ” * this list of conditions and the following disclaimer.n”, ” * n”, ” * Redistributions in binary form must reproduce the above copyright notice,n”, ” * this list of conditions and the following disclaimer in the documentationn”, ” * and/or other materials provided with the distribution.n”, ” * n”, ” * Neither the name of Anaconda nor the names of any contributorsn”, ” * may be used to endorse or promote products derived from this softwaren”, ” * without specific prior written permission.n”, ” * n”, ” * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n”, ” * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn”, ” * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn”, ” * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn”, ” * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn”, ” * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn”, ” * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn”, ” * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn”, ” * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n”, ” * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn”, ” * THE POSSIBILITY OF SUCH DAMAGE.n”, ” /n”, ” (function(root, factory) {n”, ” factory(root["Bokeh"], "2.2.3");n”, ” })(this, function(Bokeh, version) {n”, ” var define;n”, ” return (function(modules, entry, aliases, externals) {n”, ” const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n”, ” if (bokeh != null) {n”, ” return bokeh.register_plugin(modules, entry, aliases);n”, ” } else {n”, ” throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n”, ” }n”, ” })n”, ” ({n”, ” 453: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1).__importStar(e(454));o.Tables=r;e(7).register_models(r)},n”, ” 454: function _(a,g,r){Object.defineProperty(r,"__esModule",{value:!0});const e=a(1);e.__exportStar(a(455),r),e.__exportStar(a(475),r);var t=a(456);r.DataTable=t.DataTable;var o=a(474);r.TableColumn=o.TableColumn;var n=a(473);r.TableWidget=n.TableWidget;var u=a(481);r.AvgAggregator=u.AvgAggregator,r.MinAggregator=u.MinAggregator,r.MaxAggregator=u.MaxAggregator,r.SumAggregator=u.SumAggregator;var l=a(482);r.GroupingInfo=l.GroupingInfo,r.DataCube=l.DataCube},n”, ” 455: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1).__importStar(e(18)),r=e(72),a=e(78),n=e(81),l=e(456),u=e(478);class d extends a.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error("unsupported")}css_classes(){return super.css_classes().concat(u.bk_cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener("keydown",e=>{switch(e.keyCode){case r.Keys.Left:case r.Keys.Right:case r.Keys.Up:case r.Keys.Down:case r.Keys.PageUp:case r.Keys.PageDown:e.stopImmediatePropagation()}})}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(""==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[l.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=d,d.__name__="CellEditorView";class o extends n.Model{}i.CellEditor=o,o.__name__="CellEditor";class _ extends d{get emptyValue(){return""}_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=_,_.__name__="StringEditorView";class c extends o{static init_StringEditor(){this.prototype.default_view=_,this.define({completions:[s.Array,[]]})}}i.StringEditor=c,c.__name__="StringEditor",c.init_StringEditor();class p extends d{_createInput(){return r.textarea()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=p,p.__name__="TextEditorView";class h extends o{static init_TextEditor(){this.prototype.default_view=p}}i.TextEditor=h,h.__name__="TextEditor",h.init_TextEditor();class E extends d{_createInput(){return r.select()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild(r.option({value:e},e));this.focus()}}i.SelectEditorView=E,E.__name__="SelectEditorView";class V extends o{static init_SelectEditor(){this.prototype.default_view=E,this.define({options:[s.Array,[]]})}}i.SelectEditor=V,V.__name__="SelectEditor",V.init_SelectEditor();class m extends d{_createInput(){return r.input({type:"text"})}}i.PercentEditorView=m,m.__name__="PercentEditorView";class f extends o{static init_PercentEditor(){this.prototype.default_view=m}}i.PercentEditor=f,f.__name__="PercentEditor",f.init_PercentEditor();class x extends d{_createInput(){return r.input({type:"checkbox"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=x,x.__name__="CheckboxEditorView";class w extends o{static init_CheckboxEditor(){this.prototype.default_view=x}}i.CheckboxEditor=w,w.__name__="CheckboxEditor",w.init_CheckboxEditor();class g extends d{_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseInt(this.getValue(),10)||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:"Please enter a valid integer"}:super.validateValue(e)}}i.IntEditorView=g,g.__name__="IntEditorView";class y extends o{static init_IntEditor(){this.prototype.default_view=g,this.define({step:[s.Number,1]})}}i.IntEditor=y,y.__name__="IntEditor",y.init_IntEditor();class v extends d{_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseFloat(this.getValue())||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:"Please enter a valid number"}:super.validateValue(e)}}i.NumberEditorView=v,v.__name__="NumberEditorView";class b extends o{static init_NumberEditor(){this.prototype.default_view=v,this.define({step:[s.Number,.01]})}}i.NumberEditor=b,b.__name__="NumberEditor",b.init_NumberEditor();class I extends d{_createInput(){return r.input({type:"text"})}}i.TimeEditorView=I,I.__name__="TimeEditorView";class N extends o{static init_TimeEditor(){this.prototype.default_view=I}}i.TimeEditor=N,N.__name__="TimeEditor",N.init_TimeEditor();class C extends d{_createInput(){return r.input({type:"text"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=C,C.__name__="DateEditorView";class D extends o{static init_DateEditor(){this.prototype.default_view=C}}i.DateEditor=D,D.__name__="DateEditor",D.init_DateEditor()},n”, ” 456: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),o=e(457),n=e(461),l=e(462),r=e(463),d=e(29),a=e(8),h=e(9),u=e(13),c=e(19),_=e(472),m=e(473),g=e(474),p=e(478),f=s.__importDefault(e(479)),b=s.__importDefault(e(480));i.DTINDEX_NAME="__bkdt_internal_index__",i.AutosizeModes={fit_columns:"FCV",fit_viewport:"FVC",force_fit:"LFF",none:"NOA"};class w{constructor(e,t){this.init(e,t)}init(e,t){if(i.DTINDEX_NAME in e.data)throw new Error(`special name ${i.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[…this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of u.keys(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[i.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==i.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return h.range(0,this.getLength()).map(e=>this.getItem(e))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,h.range(e,t,i).map(e=>this.getItem(e))}sort(e){let t=e.map(e=>[e.sortCol.field,e.sortAsc?1:-1]);0==t.length&&(t=[[i.DTINDEX_NAME,1]]);const s=this.getRecords(),o=this.index.slice();this.index.sort((e,i)=>{for(const[n,l]of t){const t=s[o.indexOf(e)][n],r=s[o.indexOf(i)][n];if(t!==r)return a.isNumber(t)&&a.isNumber(r)?l*(t-r||+isNaN(t)-+isNaN(r)):""+t>""+r?l:-l}return 0})}}i.TableDataProvider=w,w.__name__="TableDataProvider";class x extends _.WidgetView{constructor(){super(…arguments),this._in_selection_update=!1,this._warned_not_reorderable=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.source.streaming,()=>this.updateGrid()),this.connect(this.model.source.patching,()=>this.updateGrid()),this.connect(this.model.source.change,()=>this.updateGrid()),this.connect(this.model.source.properties.data.change,()=>this.updateGrid()),this.connect(this.model.source.selected.change,()=>this.updateSelection()),this.connect(this.model.source.selected.properties.indices.change,()=>this.updateSelection())}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[…super.styles(),f.default,b.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return"fit_viewport"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map(t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc}));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map(e=>this.data.index.indexOf(e)).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:d.uniqueId(),name:this.model.index_header,field:i.DTINDEX_NAME,width:this.model.index_width,behavior:"select",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:p.bk_cell_index,headerCssClass:p.bk_header_index}}css_classes(){return super.css_classes().concat(p.bk_data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.map(e=>Object.assign(Object.assign({},e.toColumn()),{parent:this}));let s=null;if("checkbox"==this.model.selectable&&(s=new n.CheckboxSelectColumn({cssClass:p.bk_cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:d}=this.model;!d||"undefined"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(this._warned_not_reorderable||(c.logger.warn("jquery-ui is required to enable DataTable.reorderable"),this._warned_not_reorderable=!0),d=!1);let h=-1,u=!1;const{frozen_rows:_,frozen_columns:m}=this.model,g=null==m?-1:m-1;null!=_&&(u=_<0,h=Math.abs(_));const f={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:d,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:g,frozenRow:h,frozenBottom:u},b=null!=this.grid;if(this.data=new w(this.model.source,this.model.view),this.grid=new r.Grid(this.el,this.data,t,f),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))}),!1!==this.model.selectable){this.grid.setSelectionModel(new o.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return a.isString(i)&&(i=i.replace(/\n/g,"\\n")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new l.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map(e=>this.data.index[e]))}),this.updateSelection(),this.model.header_row||this._hide_header()}b&&this.updateLayout(b,!1)}_hide_header(){for(const e of this.el.querySelectorAll(".slick-header-columns"))e.style.height="0px";this.grid.resizeCanvas()}}i.DataTableView=x,x.__name__="DataTableView";class C extends m.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}static init_DataTable(){this.prototype.default_view=x,this.define(({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Null:r})=>({autosize_mode:[n("fit_columns","fit_viewport","none","force_fit"),"force_fit"],auto_edit:[t,!1],columns:[e(s(g.TableColumn)),[]],fit_columns:[l(t,r),null],frozen_columns:[l(i,r),null],frozen_rows:[l(i,r),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n("checkbox")),!0],index_position:[l(i,r),0],index_header:[o,"#"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]})),this.override({width:600,height:400})}update_sort_columns(e){this._sort_columns=e.map(({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t}))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?h.some(t,t=>e.top<=t&&t<=e.bottom)?null:Math.max(0,Math.min(…t)-1):null}}i.DataTable=C,C.__name__="DataTable",C.init_DataTable()},n”, ” 457: function _(e,t,n){var o=e(458),r=e(460);t.exports={RowSelectionModel:function(e){var t,n,l,i=[],c=this,u=new r.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n<e.length;n++)for(var o=e[n].fromRow;o<=e[n].toRow;o++)t.push(o);return t}function h(e){for(var n=[],o=t.getColumns().length-1,l=0;l<e.length;l++)n.push(new r.Range(e[l],0,e[l],o));return n}function w(){return f(i)}function g(e){(i&&0!==i.length||e&&0!==e.length)&&(i=e,c.onSelectedRangesChanged.notify(i))}function v(e,n){l.selectActiveRow&&null!=n.row&&g([new r.Range(n.row,0,n.row,t.getColumns().length-1)])}function p(e){var n=t.getActiveCell();if(t.getOptions().multiSelect&&n&&e.shiftKey&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&(e.which==r.keyCode.UP||e.which==r.keyCode.DOWN)){var o=w();o.sort((function(e,t){return e-t})),o.length||(o=[n.row]);var l,i=o[0],c=o[o.length-1];if((l=e.which==r.keyCode.DOWN?n.row<c||i==c?++c:++i:n.row<c?–c:–i)>=0&&l<t.getDataLength())t.scrollRowIntoView(l),g(h(function(e,t){var n,o=[];for(n=e;n<=t;n++)o.push(n);for(n=t;n<e;n++)o.push(n);return o}(i,c)));e.preventDefault(),e.stopPropagation()}}function y(e){var n=t.getCellFromEvent(e);if(!n||!t.canCellBeActive(n.row,n.cell))return!1;if(!t.getOptions().multiSelect||!e.ctrlKey&&!e.shiftKey&&!e.metaKey)return!1;var r=f(i),l=o.inArray(n.row,r);if(-1===l&&(e.ctrlKey||e.metaKey))r.push(n.row),t.setActiveCell(n.row,n.cell);else if(-1!==l&&(e.ctrlKey||e.metaKey))r=o.grep(r,(function(e,t){return e!==n.row})),t.setActiveCell(n.row,n.cell);else if(r.length&&e.shiftKey){var c=r.pop(),u=Math.min(n.row,c),s=Math.max(n.row,c);r=[];for(var a=u;a<=s;a++)a!==c&&r.push(a);r.push(c),t.setActiveCell(n.row,n.cell)}return g(h(r)),e.stopImmediatePropagation(),!0}o.extend(this,{getSelectedRows:w,setSelectedRows:function(e){g(h(e))},getSelectedRanges:function(){return i},setSelectedRanges:g,init:function(n){l=o.extend(!0,{},s,e),t=n,u.subscribe(t.onActiveCellChanged,a(v)),u.subscribe(t.onKeyDown,a(p)),u.subscribe(t.onClick,a(y))},destroy:function(){u.unsubscribeAll()},pluginName:"RowSelectionModel",onSelectedRangesChanged:new r.Event})}}},n”, ” 458: function _(e,n,f){n.exports="undefined"!=typeof $?$:e(459)},n”, ” 459: function _(e,t,n){n”, ” /!n”, ” * jQuery JavaScript Library v3.5.1n”, ” * https://jquery.com/n”, ” n”, ” * Includes Sizzle.jsn”, ” * https://sizzlejs.com/n”, ” *n”, ” * Copyright JS Foundation and other contributorsn”, ” * Released under the MIT licensen”, ” * https://jquery.org/licensen”, ” *n”, ” * Date: 2020-05-04T22:49Zn”, ” */n”, ” !function(e,n){"use strict";"object"==typeof t&&"object"==typeof t.exports?t.exports=e.document?n(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(e)}("undefined"!=typeof window?window:this,(function(e,t){"use strict";var n=[],r=Object.getPrototypeOf,i=n.slice,o=n.flat?function(e){return n.flat.call(e)}:function(e){return n.concat.apply([],e)},a=n.push,s=n.indexOf,u={},l=u.toString,c=u.hasOwnProperty,f=c.toString,p=f.call(Object),d={},h=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},g=function(e){return null!=e&&e===e.window},v=e.document,y={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||v).createElement("script");if(o.text=e,t)for(r in y)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?u[l.call(e)]||"object":typeof e}var b=function(e,t){return new b.fn.init(e,t)};function w(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!h(e)&&!g(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}b.fn=b.prototype={jquery:"3.5.1",constructor:b,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return b.each(this,e)},map:function(e){return this.pushStack(b.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(b.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(b.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:a,sort:n.sort,splice:n.splice},b.extend=b.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||h(a)||(a={}),s===u&&(a=this,s–);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(b.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||b.isPlainObject(n)?n:{},i=!1,a[t]=b.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},b.extend({expando:"jQuery"+("3.5.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==l.call(e))&&(!(t=r(e))||"function"==typeof(n=c.call(t,"constructor")&&t.constructor)&&f.call(n)===p)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){m(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(w(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(w(Object(e))?b.merge(n,"string"==typeof e?[e]:e):a.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:s.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,a=0,s=[];if(w(e))for(r=e.length;a<r;a++)null!=(i=t(e[a],a,n))&&s.push(i);else for(a in e)null!=(i=t(e[a],a,n))&&s.push(i);return o(s)},guid:1,support:d}),"function"==typeof Symbol&&(b.fn[Symbol.iterator]=n[Symbol.iterator]),b.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),(function(e,t){u["[object "+t+"]"]=t.toLowerCase()}));var T=n”, ” /!n”, ” * Sizzle CSS Selector Engine v2.3.5n”, ” * https://sizzlejs.com/n”, ” n”, ” * Copyright JS Foundation and other contributorsn”, ” * Released under the MIT licensen”, ” * https://js.foundation/n”, ” *n”, ” * Date: 2020-03-14n”, ” */n”, ” function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,v,y,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ue(),S=ue(),k=ue(),A=ue(),N=function(e,t){return e===t&&(f=!0),0},D={}.hasOwnProperty,j=[],q=j.pop,L=j.push,H=j.push,O=j.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:’((?:\\\\.|[^\\\\’]))’|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\"+I+\"))|)"+M+"\\]",F=":("+I+")(?:\\(((‘((?:\\\\.|[^\\\\’]))’|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+","+M+""),z=new RegExp("^"+M+"([>+~]|"+M+")"+M+""),U=new RegExp(M+"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\d*)n|)"+M+"(?:([+-]|)"+M+"*(\\d+)|))"+M+"\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d)"+M+"\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{H.apply(j=O.call(w.childNodes),w.childNodes),j[w.childNodes.length].nodeType}catch(e){H={apply:j.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+" "]&&(!v||!v.test(e))&&(1!==w||"object"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute("id"))?c=c.replace(re,ie):t.setAttribute("id",c=b)),s=(h=a(e)).length;s–;)h[s]=(c?"#"+c:":scope")+" "+xe(h[s]);y=h.join(",")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace($,"$1"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split("|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||"button"===n)&&t.type===e}}function ge(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a–;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),n.attributes=ce((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(""===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML="<a id=’"+b+"’></a><select id=’"+b+"-\r\\’ msallowcapture=’’><option selected=’’></option></select>",e.querySelectorAll("[msallowcapture^=’’]").length&&v.push("[^$]="+M+"*(?:’’|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+b+"-]").length||v.push("~="),(t=d.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name=’’]").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:’’|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+b+"+").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")})),ce((function(e){e.innerHTML="<a href=’’ disabled=’disabled’></a><select disabled=’disabled’><option/></select>";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll(",:x"),v.push(",.*:")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,""),m.call(e,"[s!=’’]:x"),y.push("!=",F)})),v=v.length&&new RegExp(v.join("|")),y=y.length&&new RegExp(y.join("|")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+" "]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i–;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return""===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||"")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(B," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a–;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,"$1"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s–;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||"")||se.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),odd:ve((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),lt:ve((function(e,t,n){for(var r=n<0?n+t:n>t?t:n;–r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e}))}}).pseudos.nth=r.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=de(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=he(t);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(e,t,n){var r=t.dir,i=t.next,o=i||r,a=n&&"parentNode"===o,s=C++;return t.first?function(t,n,i){for(;t=t[r];)if(1===t.nodeType||a)return e(t,n,i);return!1}:function(t,n,u){var l,c,f,p=[T,s];if(u){for(;t=t[r];)if((1===t.nodeType||a)&&e(t,n,u))return!0}else for(;t=t[r];)if(1===t.nodeType||a)if(c=(f=t[b]||(t[b]={}))[t.uniqueID]||(f[t.uniqueID]={}),i&&i===t.nodeName.toLowerCase())t=t[r]||t;else{if((l=c[o])&&l[0]===T&&l[1]===s)return p[2]=l[2];if(c[o]=p,p[2]=e(t,n,u))return!0}return!1}}function we(e){return e.length>1?function(t,n,r){for(var i=e.length;i–;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(e,t,n,r,i,o){return r&&!r[b]&&(r=Ce(r)),i&&!i[b]&&(i=Ce(i,o)),le((function(o,a,s,u){var l,c,f,p=[],d=[],h=a.length,g=o||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(t||"",s.nodeType?[s]:s,[]),v=!e||!o&&t?g:Te(g,p,e,s,u),y=n?i||(o?e:h||r)?[]:a:v;if(n&&n(v,y,s,u),r)for(l=Te(y,d),r(l,[],s,u),c=l.length;c–;)(f=l[c])&&(y[d[c]]=!(v[d[c]]=f));if(o){if(i||e){if(i){for(l=[],c=y.length;c–;)(f=y[c])&&l.push(v[c]=f);i(null,y=[],l,u)}for(c=y.length;c–;)(f=y[c])&&(l=i?P(o,f):p[c])>-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u<o;u++)if(n=r.relative[e[u].type])p=[be(we(p),n)];else{if((n=r.filter[e[u].type].apply(null,e[u].matches))[b]){for(i=++u;i<o&&!r.relative[e[i].type];i++);return Ce(u>1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:" "===e[u-2].type?"":""})).replace($,"$1"),n,u<i&&Ee(e.slice(u,i)),i<o&&Ee(e=e.slice(i)),i<o&&xe(e))}p.push(n)}return we(p)}return me.prototype=r.filters=r.pseudos,r.setFilters=new me,a=se.tokenize=function(e,t){var n,i,o,a,s,u,l,c=S[e+" "];if(c)return t?0:c.slice(0);for(s=e,u=[],l=r.preFilter;s;){for(a in n&&!(i=_.exec(s))||(i&&(s=s.slice(i[0].length)||s),u.push(o=[])),n=!1,(i=z.exec(s))&&(n=i.shift(),o.push({value:n,type:i[0].replace($," ")}),s=s.slice(n.length)),r.filter)!(i=G[a].exec(s))||l[a]&&!(i=l[a](i))||(n=i.shift(),o.push({value:n,type:a,matches:i}),s=s.slice(n.length));if(!n)break}return t?s.length:s?se.error(e):S(e,u).slice(0)},s=se.compile=function(e,t){var n,i=[],o=[],s=k[e+" "];if(!s){for(t||(t=a(e)),n=t.length;n–;)(s=Ee(t[n]))[b]?i.push(s):o.push(s);(s=k(e,function(e,t){var n=t.length>0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y–,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m–;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i))).selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o–&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split("").sort(N).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))})),ce((function(e){return e.innerHTML="<a href=’#’></a>","#"===e.firstChild.getAttribute("href")}))||fe("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||fe("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute("disabled")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);b.find=T,b.expr=T.selectors,b.expr[":"]=b.expr.pseudos,b.uniqueSort=b.unique=T.uniqueSort,b.text=T.getText,b.isXMLDoc=T.isXML,b.contains=T.contains,b.escapeSelector=T.escape;var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&b(e).is(n))break;r.push(e)}return r},E=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},S=b.expr.match.needsContext;function k(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function N(e,t,n){return h(t)?b.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?b.grep(e,(function(e){return e===t!==n})):"string"!=typeof t?b.grep(e,(function(e){return s.call(t,e)>-1!==n})):b.filter(t,e,n)}b.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?b.find.matchesSelector(r,e)?[r]:[]:b.find.matches(e,b.grep(t,(function(e){return 1===e.nodeType})))},b.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(b(e).filter((function(){for(t=0;t<r;t++)if(b.contains(i[t],this))return!0})));for(n=this.pushStack([]),t=0;t<r;t++)b.find(e,i[t],n);return r>1?b.uniqueSort(n):n},filter:function(e){return this.pushStack(N(this,e||[],!1))},not:function(e){return this.pushStack(N(this,e||[],!0))},is:function(e){return!!N(this,"string"==typeof e&&S.test(e)?b(e):e||[],!1).length}});var D,j=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(b.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof b?t[0]:t,b.merge(this,b.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),A.test(r[1])&&b.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(b):b.makeArray(e,this)}).prototype=b.fn,D=b(v);var q=/^(?:parents|prev(?:Until|All))/,L={children:!0,contents:!0,next:!0,prev:!0};function H(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}b.fn.extend({has:function(e){var t=b(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(b.contains(this,t[e]))return!0}))},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&b(e);if(!S.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&b.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?b.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?s.call(b(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(b.uniqueSort(b.merge(this.get(),b(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,"parentNode")},parentsUntil:function(e,t,n){return C(e,"parentNode",n)},next:function(e){return H(e,"nextSibling")},prev:function(e){return H(e,"previousSibling")},nextAll:function(e){return C(e,"nextSibling")},prevAll:function(e){return C(e,"previousSibling")},nextUntil:function(e,t,n){return C(e,"nextSibling",n)},prevUntil:function(e,t,n){return C(e,"previousSibling",n)},siblings:function(e){return E((e.parentNode||{}).firstChild,e)},children:function(e){return E(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(k(e,"template")&&(e=e.content||e),b.merge([],e.childNodes))}},(function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),this.length>1&&(L[e]||b.uniqueSort(i),q.test(e)&&i.reverse()),this.pushStack(i)}}));var O=/[^\x20\t\r\n\f]+/g;function P(e){return e}function R(e){throw e}function M(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}b.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return b.each(e.match(O)||[],(function(e,n){t[n]=!0})),t}(e):b.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s<o.length;)!1===o[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=o.length,n=!1);e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},l={add:function(){return o&&(n&&!t&&(s=o.length-1,a.push(n)),function t(n){b.each(n,(function(n,r){h(r)?e.unique&&l.has(r)||o.push(r):r&&r.length&&"string"!==x(r)&&t(r)}))}(arguments),n&&!t&&u()),this},remove:function(){return b.each(arguments,(function(e,t){for(var n;(n=b.inArray(t,o,n))>-1;)o.splice(n,1),n<=s&&s–})),this},has:function(e){return e?b.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},b.extend({Deferred:function(t){var n=[["notify","progress",b.Callbacks("memory"),b.Callbacks("memory"),2],["resolve","done",b.Callbacks("once memory"),b.Callbacks("once memory"),0,"resolved"],["reject","fail",b.Callbacks("once memory"),b.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return b.Deferred((function(t){b.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t<o)){if((e=r.apply(s,u))===n.promise())throw new TypeError("Thenable self-resolution");l=e&&("object"==typeof e||"function"==typeof e)&&e.then,h(l)?i?l.call(e,a(o,n,P,i),a(o,n,R,i)):(o++,l.call(e,a(o,n,P,i),a(o,n,R,i),a(o,n,P,n.notifyWith))):(r!==P&&(s=void 0,u=[e]),(i||n.resolveWith)(s,u))}},c=i?l:function(){try{l()}catch(e){b.Deferred.exceptionHook&&b.Deferred.exceptionHook(e,c.stackTrace),t+1>=o&&(r!==R&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(b.Deferred.getStackHook&&(c.stackTrace=b.Deferred.getStackHook()),e.setTimeout(c))}}return b.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:P,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:P)),n[2][3].add(a(0,e,h(r)?r:R))})).promise()},promise:function(e){return null!=e?b.extend(e,i):i}},o={};return b.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=b.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,–t||a.resolveWith(r,o)}};if(t<=1&&(M(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n–;)M(o[n],s(n),a.reject);return a.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;b.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&I.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},b.readyException=function(t){e.setTimeout((function(){throw t}))};var W=b.Deferred();function F(){v.removeEventListener("DOMContentLoaded",F),e.removeEventListener("load",F),b.ready()}b.fn.ready=function(e){return W.then(e).catch((function(e){b.readyException(e)})),this},b.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?–b.readyWait:b.isReady)||(b.isReady=!0,!0!==e&&–b.readyWait>0||W.resolveWith(v,[b]))}}),b.ready.then=W.then,"complete"===v.readyState||"loading"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(b.ready):(v.addEventListener("DOMContentLoaded",F),e.addEventListener("load",F));var B=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n))for(s in i=!0,n)B(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(b(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},$=/^-ms-/,_=/-([a-z])/g;function z(e,t){return t.toUpperCase()}function U(e){return e.replace($,"ms-").replace(_,z)}var X=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function V(){this.expando=b.expando+V.uid++}V.uid=1,V.prototype={cache:function(e){var t=e[this.expando];return t||(t={},X(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[U(t)]=n;else for(r in t)i[U(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][U(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(U):(t=U(t))in r?[t]:t.match(O)||[]).length;for(;n–;)delete r[t[n]]}(void 0===t||b.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!b.isEmptyObject(t)}};var G=new V,Y=new V,Q=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,J=/[A-Z]/g;function K(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(J,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=function(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Q.test(e)?JSON.parse(e):e)}(n)}catch(e){}Y.set(e,t,n)}else n=void 0;return n}b.extend({hasData:function(e){return Y.hasData(e)||G.hasData(e)},data:function(e,t,n){return Y.access(e,t,n)},removeData:function(e,t){Y.remove(e,t)},_data:function(e,t,n){return G.access(e,t,n)},_removeData:function(e,t){G.remove(e,t)}}),b.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=Y.get(o),1===o.nodeType&&!G.get(o,"hasDataAttrs"))){for(n=a.length;n–;)a[n]&&0===(r=a[n].name).indexOf("data-")&&(r=U(r.slice(5)),K(o,r,i[r]));G.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof e?this.each((function(){Y.set(this,e)})):B(this,(function(t){var n;if(o&&void 0===t)return void 0!==(n=Y.get(o,e))||void 0!==(n=K(o,e))?n:void 0;this.each((function(){Y.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){Y.remove(this,e)}))}}),b.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=G.get(e,t),n&&(!r||Array.isArray(n)?r=G.access(e,t,b.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r–),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){b.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return G.get(e,n)||G.access(e,n,{empty:b.Callbacks("once memory").add((function(){G.remove(e,[t+"queue",n])}))})}}),b.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n–),arguments.length<n?b.queue(this[0],e):void 0===t?this:this.each((function(){var n=b.queue(this,e,t);b._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&b.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){b.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=b.Deferred(),o=this,a=this.length,s=function(){–r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a–;)(n=G.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var Z=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ee=new RegExp("^(?:([+-])=|)("+Z+")([a-z%]*)$","i"),te=["Top","Right","Bottom","Left"],ne=v.documentElement,re=function(e){return b.contains(e.ownerDocument,e)},ie={composed:!0};ne.getRootNode&&(re=function(e){return b.contains(e.ownerDocument,e)||e.getRootNode(ie)===e.ownerDocument});var oe=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&re(e)&&"none"===b.css(e,"display")};function ae(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return b.css(e,t,"")},u=s(),l=n&&n[3]||(b.cssNumber[t]?"":"px"),c=e.nodeType&&(b.cssNumber[t]||"px"!==l&&+u)&&ee.exec(b.css(e,t));if(c&&c[3]!==l){for(u/=2,l=l||c[3],c=+u||1;a–;)b.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,b.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var se={};function ue(e){var t,n=e.ownerDocument,r=e.nodeName,i=se[r];return i||(t=n.body.appendChild(n.createElement(r)),i=b.css(t,"display"),t.parentNode.removeChild(t),"none"===i&&(i="block"),se[r]=i,i)}function le(e,t){for(var n,r,i=[],o=0,a=e.length;o<a;o++)(r=e[o]).style&&(n=r.style.display,t?("none"===n&&(i[o]=G.get(r,"display")||null,i[o]||(r.style.display="")),""===r.style.display&&oe(r)&&(i[o]=ue(r))):"none"!==n&&(i[o]="none",G.set(r,"display",n)));for(o=0;o<a;o++)null!=i[o]&&(e[o].style.display=i[o]);return e}b.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each((function(){oe(this)?b(this).show():b(this).hide()}))}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=v.createDocumentFragment().appendChild(v.createElement("div")),(fe=v.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),d.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",d.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",d.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||""):void 0!==e.querySelectorAll?e.querySelectorAll(t||""):[],void 0===t||t&&k(e,t)?b.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)G.set(e[n],"globalEval",!t||G.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,d.option||(ge.optgroup=ge.option=[1,"<select multiple=’multiple’>","</select>"]);var me=/<|&#?\\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if(\"object\"===x(o))b.merge(p,o.nodeType?[o]:o);else if(me.test(o)){for(a=a||f.appendChild(t.createElement(\"div\")),s=(de.exec(o)||[\"\",\"\"])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+b.htmlPrefilter(o)+u[2],c=u[0];c--;)a=a.lastChild;b.merge(p,a.childNodes),(a=f.firstChild).textContent=\"\"}else p.push(t.createTextNode(o));for(f.textContent=\"\",d=0;o=p[d++];)if(r&&b.inArray(o,r)>-1)i&&i.push(o);else if(l=re(o),a=ve(f.appendChild(o),\"script\"),l&&ye(a),n)for(c=0;o=a[c++];)he.test(o.type||"")&&n.push(o);return f}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\.(.+)|)/;function Ce(){return!0}function Ee(){return!1}function Se(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==("focus"===t)}function ke(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)ke(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ee;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return b().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=b.guid++)),e.each((function(){b.event.add(this,t,i,r,n)}))}function Ae(e,t,n){n?(G.set(e,t,!1),b.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=G.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(b.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),G.set(this,t,a),r=n(this,t),this[t](),a!==(o=G.get(this,t))||r?G.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o.value}else a.length&&(G.set(this,t,{value:b.event.trigger(b.extend(a[0],b.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===G.get(e,t)&&b.event.add(e,t,Ce)}b.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.get(e);if(X(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&b.find.matchesSelector(ne,i),n.guid||(n.guid=b.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==b&&b.event.triggered!==t.type?b.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(O)||[""]).length;l–;)d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=b.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=b.event.special[d]||{},c=b.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&b.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),b.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.hasData(e)&&G.get(e);if(v&&(u=v.events)){for(l=(t=(t||"").match(O)||[""]).length;l–;)if(d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){for(f=b.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;o–;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(""!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount–,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||b.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(u)&&G.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=b.event.fix(e),l=(G.get(this,"events")||Object.create(null))[u.type]||[],c=b.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){for(a=b.event.handlers.call(this,u,l),t=0;(i=a[t++])&&!u.isPropagationStopped();)for(u.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!u.isImmediatePropagationStopped();)u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((b.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&e.button>=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?b(i,this).index(l)>-1:b.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(e,t){Object.defineProperty(b.Event.prototype,e,{enumerable:!0,configurable:!0,get:h(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[b.expando]?e:new b.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&k(t,"input")&&Ae(t,"click",Ce),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&k(t,"input")&&Ae(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&k(t,"input")&&G.get(t,"click")||k(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},b.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},b.Event=function(e,t){if(!(this instanceof b.Event))return new b.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ce:Ee,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&b.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[b.expando]=!0},b.Event.prototype={constructor:b.Event,isDefaultPrevented:Ee,isPropagationStopped:Ee,isImmediatePropagationStopped:Ee,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ce,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ce,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ce,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},b.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&be.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&we.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},b.event.addProp),b.each({focus:"focusin",blur:"focusout"},(function(e,t){b.event.special[e]={setup:function(){return Ae(this,e,Se),!1},trigger:function(){return Ae(this,e),!0},delegateType:t}})),b.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},(function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return i&&(i===r||b.contains(r,i))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}})),b.fn.extend({on:function(e,t,n,r){return ke(this,e,t,n,r)},one:function(e,t,n,r){return ke(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,b(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Ee),this.each((function(){b.event.remove(this,e,n,t)}))}});var Ne=/<script|<style|<link/i,De=/checked\s*(?:[^=]|=\s*.checked.)/i,je=/^\s*<!(?:\[CDATA\[|–)|(?:\]\]|–)>\s*$/g;function qe(e,t){return k(e,"table")&&k(11!==t.nodeType?t:t.firstChild,"tr")&&b(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(G.hasData(e)&&(s=G.get(e).events))for(i in G.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)b.event.add(t,i,s[i][n]);Y.hasData(e)&&(o=Y.access(e),a=b.extend({},o),Y.set(t,a))}}function Pe(e,t){var n=t.nodeName.toLowerCase();"input"===n&&pe.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function Re(e,t,n,r){t=o(t);var i,a,s,u,l,c,f=0,p=e.length,g=p-1,v=t[0],y=h(v);if(y||p>1&&"string"==typeof v&&!d.checkClone&&De.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Re(o,t,n,r)}));if(p&&(a=(i=xe(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=b.map(ve(i,"script"),Le)).length;f<p;f++)l=i,f!==g&&(l=b.clone(l,!0,!0),u&&b.merge(s,ve(l,"script"))),n.call(e[f],l,f);if(u)for(c=s[s.length-1].ownerDocument,b.map(s,He),f=0;f<u;f++)l=s[f],he.test(l.type||"")&&!G.access(l,"globalEval")&&b.contains(c,l)&&(l.src&&"module"!==(l.type||"").toLowerCase()?b._evalUrl&&!l.noModule&&b._evalUrl(l.src,{nonce:l.nonce||l.getAttribute("nonce")},c):m(l.textContent.replace(je,""),l,c))}return e}function Me(e,t,n){for(var r,i=t?b.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||b.cleanData(ve(r)),r.parentNode&&(n&&re(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}b.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=re(e);if(!(d.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(a=ve(s),r=0,i=(o=ve(e)).length;r<i;r++)Pe(o[r],a[r]);if(t)if(n)for(o=o||ve(e),a=a||ve(s),r=0,i=o.length;r<i;r++)Oe(o[r],a[r]);else Oe(e,s);return(a=ve(s,"script")).length>0&&ye(a,!u&&ve(e,"script")),s},cleanData:function(e){for(var t,n,r,i=b.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[G.expando]){if(t.events)for(r in t.events)i[r]?b.event.remove(n,r):b.removeEvent(n,r,t.handle);n[G.expando]=void 0}n[Y.expando]&&(n[Y.expando]=void 0)}}}),b.fn.extend({detach:function(e){return Me(this,e,!0)},remove:function(e){return Me(this,e)},text:function(e){return B(this,(function(e){return void 0===e?b.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Re(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)}))},prepend:function(){return Re(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(b.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return b.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ne.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=b.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(b.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return Re(this,arguments,(function(t){var n=this.parentNode;b.inArray(this,e)<0&&(b.cleanData(ve(this)),n&&n.replaceChild(t,this))}),e)}}),b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},(function(e,t){b.fn[e]=function(e){for(var n,r=[],i=b(e),o=i.length-1,s=0;s<=o;s++)n=s===o?this:this.clone(!0),b(i[s])[t](n),a.apply(r,n.get());return this.pushStack(r)}}));var Ie=new RegExp("^("+Z+")(?!px)[a-z%]+$","i"),We=function(t){var n=t.ownerDocument.defaultView;return n&&n.opener||(n=e),n.getComputedStyle(t)},Fe=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Be=new RegExp(te.join("|"),"i");function $e(e,t,n){var r,i,o,a,s=e.style;return(n=n||We(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||re(e)||(a=b.style(e,t)),!d.pixelBoxStyles()&&Ie.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function _e(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function t(){if(c){l.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",c.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ne.appendChild(l).appendChild(c);var t=e.getComputedStyle(c);r="1%"!==t.top,u=12===n(t.marginLeft),c.style.right="60%",a=36===n(t.right),i=36===n(t.width),c.style.position="absolute",o=12===n(c.offsetWidth/3),ne.removeChild(l),c=null}}function n(e){return Math.round(parseFloat(e))}var r,i,o,a,s,u,l=v.createElement("div"),c=v.createElement("div");c.style&&(c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",d.clearCloneStyle="content-box"===c.style.backgroundClip,b.extend(d,{boxSizingReliable:function(){return t(),i},pixelBoxStyles:function(){return t(),a},pixelPosition:function(){return t(),r},reliableMarginLeft:function(){return t(),u},scrollboxSize:function(){return t(),o},reliableTrDimensions:function(){var t,n,r,i;return null==s&&(t=v.createElement("table"),n=v.createElement("tr"),r=v.createElement("div"),t.style.cssText="position:absolute;left:-11111px",n.style.height="1px",r.style.height="9px",ne.appendChild(t).appendChild(n).appendChild(r),i=e.getComputedStyle(n),s=parseInt(i.height)>3,ne.removeChild(t)),s}}))}();var ze=["Webkit","Moz","ms"],Ue=v.createElement("div").style,Xe={};function Ve(e){var t=b.cssProps[e]||Xe[e];return t||(e in Ue?e:Xe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=ze.length;n–;)if((e=ze[n]+t)in Ue)return e}(e)||e)}var Ge=/^(none|table(?!-c[ea]).+)/,Ye=/^–/,Qe={position:"absolute",visibility:"hidden",display:"block"},Je={letterSpacing:"0",fontWeight:"400"};function Ke(e,t,n){var r=ee.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ze(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=b.css(e,n+te[a],!0,i)),r?("content"===n&&(u-=b.css(e,"padding"+te[a],!0,i)),"margin"!==n&&(u-=b.css(e,"border"+te[a]+"Width",!0,i))):(u+=b.css(e,"padding"+te[a],!0,i),"padding"!==n?u+=b.css(e,"border"+te[a]+"Width",!0,i):s+=b.css(e,"border"+te[a]+"Width",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function et(e,t,n){var r=We(e),i=(!d.boxSizingReliable()||n)&&"border-box"===b.css(e,"boxSizing",!1,r),o=i,a=$e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Ie.test(a)){if(!n)return a;a="auto"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&k(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===b.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===b.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ze(e,t,n||(i?"border":"content"),o,r,a)+"px"}function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=$e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=U(t),u=Ye.test(t),l=e.style;if(u||(t=Ve(s)),a=b.cssHooks[t]||b.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ee.exec(n))&&i[1]&&(n=ae(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(b.cssNumber[s]?"":"px")),d.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=U(t);return Ye.test(t)||(t=Ve(s)),(a=b.cssHooks[t]||b.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=$e(e,t,r)),"normal"===i&&t in Je&&(i=Je[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),b.each(["height","width"],(function(e,t){b.cssHooks[t]={get:function(e,n,r){if(n)return!Ge.test(b.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):Fe(e,Qe,(function(){return et(e,t,r)}))},set:function(e,n,r){var i,o=We(e),a=!d.scrollboxSize()&&"absolute"===o.position,s=(a||r)&&"border-box"===b.css(e,"boxSizing",!1,o),u=r?Ze(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),u&&(i=ee.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=b.css(e,t)),Ke(0,n,u)}}})),b.cssHooks.marginLeft=_e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat($e(e,"marginLeft"))||e.getBoundingClientRect().left-Fe(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),b.each({margin:"",padding:"",border:"Width"},(function(e,t){b.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+te[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(b.cssHooks[e+t].set=Ke)})),b.fn.extend({css:function(e,t){return B(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=We(e),i=t.length;a<i;a++)o[t[a]]=b.css(e,t[a],!1,r);return o}return void 0!==n?b.style(e,t,n):b.css(e,t)}),e,t,arguments.length>1)}}),b.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||b.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=b.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):1!==e.elem.nodeType||!b.cssHooks[e.prop]&&null==e.elem.style[Ve(e.prop)]?e.elem[e.prop]=e.now:b.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},b.fx=tt.prototype.init,b.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,b.fx.interval),b.fx.tick())}function st(){return e.setTimeout((function(){nt=void 0})),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=te[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(ct.tweeners[t]||[]).concat(ct.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function ct(e,t,n){var r,i,o=0,a=ct.prefilters.length,s=b.Deferred().always((function(){delete u.elem})),u=function(){if(i)return!1;for(var t=nt||st(),n=Math.max(0,l.startTime+l.duration-t),r=1-(n/l.duration||0),o=0,a=l.tweens.length;o<a;o++)l.tweens[o].run(r);return s.notifyWith(e,[l,r,n]),r<1&&a?n:(a||s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{},easing:b.easing._default},n),originalProperties:t,originalOptions:n,startTime:nt||st(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)l.tweens[n].run(1);return t?(s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l,t])):s.rejectWith(e,[l,t]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=U(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=b.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);o<a;o++)if(r=ct.prefilters[o].call(l,e,c,l.opts))return h(r.stop)&&(b._queueHooks(l.elem,l.opts.queue).stop=r.stop.bind(r)),r;return b.map(c,lt,l),h(l.opts.start)&&l.opts.start.call(e,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l}b.Animation=b.extend(ct,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return ae(n.elem,e,ee.exec(t),n),n}]},tweener:function(e,t){h(e)?(t=e,e=["*"]):e=e.match(O);for(var n,r=0,i=e.length;r<i;r++)n=e[r],ct.tweeners[n]=ct.tweeners[n]||[],ct.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&oe(e),v=G.get(e,"fxshow");for(r in n.queue||(null==(a=b._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always((function(){p.always((function(){a.unqueued–,b.queue(e,"fx").length||a.empty.fire()}))}))),t)if(i=t[r],it.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||b.style(e,r)}if((u=!b.isEmptyObject(t))||!b.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=G.get(e,"display")),"none"===(c=b.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=b.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===b.css(e,"float")&&(u||(p.done((function(){h.display=l})),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always((function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]}))),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=G.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done((function(){for(r in g||le([e]),G.remove(e,"fxshow"),d)b.style(e,r,d[r])}))),u=lt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?ct.prefilters.unshift(e):ct.prefilters.push(e)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||h(e)&&e,duration:e,easing:n&&t||t&&!h(t)&&t};return b.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in b.fx.speeds?r.duration=b.fx.speeds[r.duration]:r.duration=b.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){h(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(oe).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=ct(this,b.extend({},e),o);(i||G.get(this,"finish"))&&t.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&this.queue(e||"fx",[]),this.each((function(){var t=!0,i=null!=e&&e+"queueHooks",o=b.timers,a=G.get(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&ot.test(i)&&r(a[i]);for(i=o.length;i–;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||b.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||"fx"),this.each((function(){var t,n=G.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t–;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish}))}}),b.each(["toggle","show","hide"],(function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ut(t,!0),e,r,i)}})),b.each({slideDown:ut("show"),slideUp:ut("hide"),slideToggle:ut("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},(function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}})),b.timers=[],b.fx.tick=function(){var e,t=0,n=b.timers;for(nt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t–,1);n.length||b.fx.stop(),nt=void 0},b.fx.timer=function(e){b.timers.push(e),b.fx.start()},b.fx.interval=13,b.fx.start=function(){rt||(rt=!0,at())},b.fx.stop=function(){rt=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fn.delay=function(t,n){return t=b.fx&&b.fx.speeds[t]||t,n=n||"fx",this.queue(n,(function(n,r){var i=e.setTimeout(n,t);r.stop=function(){e.clearTimeout(i)}}))},function(){var e=v.createElement("input"),t=v.createElement("select").appendChild(v.createElement("option"));e.type="checkbox",d.checkOn=""!==e.value,d.optSelected=t.selected,(e=v.createElement("input")).value="t",e.type="radio",d.radioValue="t"===e.value}();var ft,pt=b.expr.attrHandle;b.fn.extend({attr:function(e,t){return B(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){b.removeAttr(this,e)}))}}),b.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?b.prop(e,t,n):(1===o&&b.isXMLDoc(e)||(i=b.attrHooks[t.toLowerCase()]||(b.expr.match.bool.test(t)?ft:void 0)),void 0!==n?null===n?void b.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=b.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&"radio"===t&&k(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(O);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ft={set:function(e,t,n){return!1===t?b.removeAttr(e,n):e.setAttribute(n,n),n}},b.each(b.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=pt[t]||b.find.attr;pt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=pt[a],pt[a]=i,i=null!=n(e,t,r)?a:null,pt[a]=o),i}}));var dt=/^(?:input|select|textarea|button)$/i,ht=/^(?:a|area)$/i;function gt(e){return(e.match(O)||[]).join(" ")}function vt(e){return e.getAttribute&&e.getAttribute("class")||""}function yt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(O)||[]}b.fn.extend({prop:function(e,t){return B(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[b.propFix[e]||e]}))}}),b.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&b.isXMLDoc(e)||(t=b.propFix[t]||t,i=b.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=b.find.attr(e,"tabindex");return t?parseInt(t,10):dt.test(e.nodeName)||ht.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),d.optSelected||(b.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),b.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){b.propFix[this.toLowerCase()]=this})),b.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).addClass(e.call(this,t,vt(this)))}));if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr("class","");if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){b(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=b(this),a=yt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=vt(this))&&G.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":G.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+gt(vt(n))+" ").indexOf(t)>-1)return!0;return!1}});var mt=/\r/g;b.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,b(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=b.map(i,(function(e){return null==e?"":e+""}))),(t=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=b.valHooks[i.type]||b.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(mt,""):null==n?"":n:void 0}}),b.extend({valHooks:{option:{get:function(e){var t=b.find.attr(e,"value");return null!=t?t:gt(b.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!k(n.parentNode,"optgroup"))){if(t=b(n).val(),a)return t;s.push(t)}return s},set:function(e,t){for(var n,r,i=e.options,o=b.makeArray(t),a=i.length;a–;)((r=i[a]).selected=b.inArray(b.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),b.each(["radio","checkbox"],(function(){b.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=b.inArray(b(e).val(),t)>-1}},d.checkOn||(b.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),d.focusin="onfocusin"in e;var xt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};b.extend(b.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,"type")?t.type:t,x=c.call(t,"namespace")?t.namespace.split("."):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!xt.test(m+b.event.triggered)&&(m.indexOf(".")>-1&&(x=m.split("."),m=x.shift(),x.sort()),l=m.indexOf(":")<0&&"on"+m,(t=t[b.expando]?t:new b.Event(m,"object"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:b.makeArray(n,[t]),p=b.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,xt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(G.get(a,"events")||Object.create(null))[t.type]&&G.get(a,"handle"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&X(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!X(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),b.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,bt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,bt),b.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=b.extend(new b.Event,n,{type:e,isSimulated:!0});b.event.trigger(r,null,t)}}),b.fn.extend({trigger:function(e,t){return this.each((function(){b.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return b.event.trigger(e,t,n,!0)}}),d.focusin||b.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){b.event.simulate(t,e.target,b.event.fix(e))};b.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t);i||r.addEventListener(e,n,!0),G.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t)-1;i?G.access(r,t,i):(r.removeEventListener(e,n,!0),G.remove(r,t))}}}));var wt=e.location,Tt={guid:Date.now()},Ct=/\?/;b.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+t),n};var Et=/\[\]$/,St=/\r?\n/g,kt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function Nt(e,t,n,r){var i;if(Array.isArray(t))b.each(t,(function(t,i){n||Et.test(e)?r(e,i):Nt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==x(t))r(e,t);else for(i in t)Nt(e+"["+i+"]",t[i],n,r)}b.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,(function(){i(this.name,this.value)}));else for(n in e)Nt(n,e[n],t,i);return r.join("&")},b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&At.test(this.nodeName)&&!kt.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var n=b(this).val();return null==n?null:Array.isArray(n)?b.map(n,(function(e){return{name:t.name,value:e.replace(St,"\r\n")}})):{name:t.name,value:n.replace(St,"\r\n")}})).get()}});var Dt=/%20/g,jt=/#.*$/,qt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ht=/^(?:GET|HEAD)$/,Ot=/^\/\//,Pt={},Rt={},Mt="*/".concat("*"),It=v.createElement("a");function Wt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(O)||[];if(h(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Ft(e,t,n,r){var i={},o=e===Rt;function a(s){var u;return i[s]=!0,b.each(e[s]||[],(function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function Bt(e,t){var n,r,i=b.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&b.extend(!0,e,r),e}It.href=wt.href,b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Mt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,b.ajaxSettings),t):Bt(b.ajaxSettings,e)},ajaxPrefilter:Wt(Pt),ajaxTransport:Wt(Rt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=b.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?b(h):b.event,y=b.Deferred(),m=b.Callbacks("once memory"),x=d.statusCode||{},w={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Lt.exec(o);)a[t[1].toLowerCase()+" "]=(a[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=a[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||wt.href)+"").replace(Ot,wt.protocol+"//"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||"*").toLowerCase().match(O)||[""],null==d.crossDomain){u=v.createElement("a");try{u.href=d.url,u.href=u.href,d.crossDomain=It.protocol+"//"+It.host!=u.protocol+"//"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=b.param(d.data,d.traditional)),Ft(Pt,d,n,E),l)return E;for(f in(c=b.event&&d.global)&&0==b.active++&&b.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!Ht.test(d.type),i=d.url.replace(jt,""),d.hasContent?d.data&&d.processData&&0===(d.contentType||"").indexOf("application/x-www-form-urlencoded")&&(d.data=d.data.replace(Dt,"+")):(p=d.url.slice(i.length),d.data&&(d.processData||"string"==typeof d.data)&&(i+=(Ct.test(i)?"&":"?")+d.data,delete d.data),!1===d.cache&&(i=i.replace(qt,"$1"),p=(Ct.test(i)?"&":"?")+"_="+Tt.guid+++p),d.url=i+p),d.ifModified&&(b.lastModified[i]&&E.setRequestHeader("If-Modified-Since",b.lastModified[i]),b.etag[i]&&E.setRequestHeader("If-None-Match",b.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader("Content-Type",d.contentType),E.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Mt+"; q=0.01":""):d.accepts["*"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C="abort",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Ft(Rt,d,n,E)){if(E.readyState=1,c&&g.trigger("ajaxSend",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort("timeout")}),d.timeout));try{l=!1,r.send(w,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,"No Transport");function S(t,n,a,u){var f,p,v,w,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||"",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(w=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;"*"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&b.inArray("script",d.dataTypes)>-1&&(d.converters["text script"]=function(){}),w=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(d,w,E,f),f?(d.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(b.lastModified[i]=T),(T=E.getResponseHeader("etag"))&&(b.etag[i]=T)),204===t||"HEAD"===d.type?C="nocontent":304===t?C="notmodified":(C=w.state,p=w.data,f=!(v=w.error))):(v=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?"ajaxSuccess":"ajaxError",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger("ajaxComplete",[E,d]),–b.active||b.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return b.get(e,t,n,"json")},getScript:function(e,t){return b.get(e,void 0,t,"script")}}),b.each(["get","post"],(function(e,t){b[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),b.ajax(b.extend({url:e,type:t,dataType:i,data:n,success:r},b.isPlainObject(e)&&e))}})),b.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),b._evalUrl=function(e,t,n){return b.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){b.globalEval(e,t,n)}})},b.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=b(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){b(this).wrapInner(e.call(this,t))})):this.each((function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){b(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){b(this).replaceWith(this.childNodes)})),this}}),b.expr.pseudos.hidden=function(e){return!b.expr.pseudos.visible(e)},b.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},b.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var $t={0:200,1223:204},_t=b.ajaxSettings.xhr();d.cors=!!_t&&"withCredentials"in _t,d.ajax=_t=!!_t,b.ajaxTransport((function(t){var n,r;if(d.cors||_t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o($t[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),b.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),b.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=b("<script>").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),v.head.appendChild(t[0])},abort:function(){n&&n()}}}));var zt,Ut=[],Xt=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Ut.pop()||b.expando+"_"+Tt.guid++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",(function(t,n,r){var i,o,a,s=!1!==t.jsonp&&(Xt.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&Xt.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=h(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(Xt,"$1"+i):!1!==t.jsonp&&(t.url+=(Ct.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return a||b.error(i+" was not called"),a[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){a=arguments},r.always((function(){void 0===o?b(e).removeProp(i):e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,Ut.push(i)),a&&h(o)&&o(a[0]),a=o=void 0})),"script"})),d.createHTMLDocument=((zt=v.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===zt.childNodes.length),b.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(d.createHTMLDocument?((r=(t=v.implementation.createHTMLDocument("")).createElement("base")).href=v.location.href,t.head.appendChild(r)):t=v),o=!n&&[],(i=A.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&b(o).remove(),b.merge([],i.childNodes)));var r,i,o},b.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return s>-1&&(r=gt(e.slice(s)),e=e.slice(0,s)),h(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),a.length>0&&b.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done((function(e){o=arguments,a.html(r?b("<div>").append(b.parseHTML(e)).find(r):e)})).always(n&&function(e,t){a.each((function(){n.apply(this,o||[e.responseText,t,e])}))}),this},b.expr.pseudos.animated=function(e){return b.grep(b.timers,(function(t){return e===t.elem})).length},b.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=b.css(e,"position"),c=b(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=b.css(e,"top"),u=b.css(e,"left"),("absolute"===l||"fixed"===l)&&(o+u).indexOf("auto")>-1?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),h(t)&&(t=t.call(e,n,b.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},b.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){b.offset.setOffset(this,e,t)}));var t,n,r=this[0];return r?r.getClientRects().length?(t=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===b.css(r,"position"))t=r.getBoundingClientRect();else{for(t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&"static"===b.css(e,"position");)e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=b(e).offset()).top+=b.css(e,"borderTopWidth",!0),i.left+=b.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-b.css(r,"marginTop",!0),left:t.left-i.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map((function(){for(var e=this.offsetParent;e&&"static"===b.css(e,"position");)e=e.offsetParent;return e||ne}))}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},(function(e,t){var n="pageYOffset"===t;b.fn[e]=function(r){return B(this,(function(e,r,i){var o;if(g(e)?o=e:9===e.nodeType&&(o=e.defaultView),void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i}),e,r,arguments.length)}})),b.each(["top","left"],(function(e,t){b.cssHooks[t]=_e(d.pixelPosition,(function(e,n){if(n)return n=$e(e,t),Ie.test(n)?b(e).position()[t]+"px":n}))})),b.each({Height:"height",Width:"width"},(function(e,t){b.each({padding:"inner"+e,content:t,"":"outer"+e},(function(n,r){b.fn[r]=function(i,o){var a=arguments.length&&(n||"boolean"!=typeof i),s=n||(!0===i||!0===o?"margin":"border");return B(this,(function(t,n,i){var o;return g(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(o=t.documentElement,Math.max(t.body["scroll"+e],o["scroll"+e],t.body["offset"+e],o["offset"+e],o["client"+e])):void 0===i?b.css(t,n,s):b.style(t,n,i,s)}),t,a?i:void 0,a)}}))})),b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],(function(e,t){b.fn[t]=function(e){return this.on(t,e)}})),b.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,""):this.off(t,e||"",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),b.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),(function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}));var Vt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;b.proxy=function(e,t){var n,r,o;if("string"==typeof t&&(n=e[t],t=e,e=n),h(e))return r=i.call(arguments,2),(o=function(){return e.apply(t||this,r.concat(i.call(arguments)))}).guid=e.guid=e.guid||b.guid++,o},b.holdReady=function(e){e?b.readyWait++:b.ready(!0)},b.isArray=Array.isArray,b.parseJSON=JSON.parse,b.nodeName=k,b.isFunction=h,b.isWindow=g,b.camelCase=U,b.type=x,b.now=Date.now,b.isNumeric=function(e){var t=b.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},b.trim=function(e){return null==e?"":(e+"").replace(Vt,"")},"function"==typeof define&&define.amd&&define("jquery",[],(function(){return b}));var Gt=e.jQuery,Yt=e.$;return b.noConflict=function(t){return e.$===b&&(e.$=Yt),t&&e.jQuery===b&&(e.jQuery=Gt),b},void 0===t&&(e.jQuery=e.$=b),b}))},n”, ” 460: function _(t,n,i){var o=t(458);function e(){var t=!1,n=!1;this.stopPropagation=function(){t=!0},this.isPropagationStopped=function(){return t},this.stopImmediatePropagation=function(){n=!0},this.isImmediatePropagationStopped=function(){return n}}function r(){this.__nonDataRow=!0}function u(){this.__group=!0,this.level=0,this.count=0,this.value=null,this.title=null,this.collapsed=!1,this.selectChecked=!1,this.totals=null,this.rows=[],this.groups=null,this.groupingKey=null}function s(){this.__groupTotals=!0,this.group=null,this.initialized=!1}function l(){var t=null;this.isActive=function(n){return n?t===n:null!==t},this.activate=function(n){if(n!==t){if(null!==t)throw new Error("SlickGrid.EditorLock.activate: an editController is still active, can’t activate another editController");if(!n.commitCurrentEdit)throw new Error("SlickGrid.EditorLock.activate: editController must implement .commitCurrentEdit()");if(!n.cancelCurrentEdit)throw new Error("SlickGrid.EditorLock.activate: editController must implement .cancelCurrentEdit()");t=n}},this.deactivate=function(n){if(t!==n)throw new Error("SlickGrid.EditorLock.deactivate: specified editController is not the currently active one");t=null},this.commitCurrentEdit=function(){return!t||t.commitCurrentEdit()},this.cancelCurrentEdit=function(){return!t||t.cancelCurrentEdit()}}u.prototype=new r,u.prototype.equals=function(t){return this.value===t.value&&this.count===t.count&&this.collapsed===t.collapsed&&this.title===t.title},s.prototype=new r,n.exports={Event:function(){var t=[];this.subscribe=function(n){t.push(n)},this.unsubscribe=function(n){for(var i=t.length-1;i>=0;i–)t[i]===n&&t.splice(i,1)},this.notify=function(n,i,o){var r;i=i||new e,o=o||this;for(var u=0;u<t.length&&!i.isPropagationStopped()&&!i.isImmediatePropagationStopped();u++)r=t[u].call(o,i,n);return r}},EventData:e,EventHandler:function(){var t=[];this.subscribe=function(n,i){return t.push({event:n,handler:i}),n.subscribe(i),this},this.unsubscribe=function(n,i){for(var o=t.length;o–;)if(t[o].event===n&&t[o].handler===i)return t.splice(o,1),void n.unsubscribe(i);return this},this.unsubscribeAll=function(){for(var n=t.length;n–;)t[n].event.unsubscribe(t[n].handler);return t=[],this}},Range:function(t,n,i,o){void 0===i&&void 0===o&&(i=t,o=n),this.fromRow=Math.min(t,i),this.fromCell=Math.min(n,o),this.toRow=Math.max(t,i),this.toCell=Math.max(n,o),this.isSingleRow=function(){return this.fromRow==this.toRow},this.isSingleCell=function(){return this.fromRow==this.toRow&&this.fromCell==this.toCell},this.contains=function(t,n){return t>=this.fromRow&&t<=this.toRow&&n>=this.fromCell&&n<=this.toCell},this.toString=function(){return this.isSingleCell()?"("+this.fromRow+":"+this.fromCell+")":"("+this.fromRow+":"+this.fromCell+" - "+this.toRow+":"+this.toCell+")"}},NonDataRow:r,Group:u,GroupTotals:s,EditorLock:l,GlobalEditorLock:new l,TreeColumns:function(t){var n={};function i(t,n){return t.filter((function(t){var o=n.call(t);return o&&t.columns&&(t.columns=i(t.columns,n)),o&&(!t.columns||t.columns.length)}))}function e(t){return void 0===t?-1:t}function r(t){var n=[];if(t.hasOwnProperty("length"))for(var i=0;i<t.length;i++)n=n.concat(r(t[i]));else{if(!t.hasOwnProperty("columns"))return t;n=n.concat(r(t.columns))}return n}function u(){return o.extend(!0,[],t)}!function t(i){i.forEach((function(i){n[i.id]=i,i.columns&&t(i.columns)}))}(t),this.hasDepth=function(){for(var n in t)if(t[n].hasOwnProperty("columns"))return!0;return!1},this.getTreeColumns=function(){return t},this.extractColumns=function(){return this.hasDepth()?r(t):t},this.getDepth=function(){return function t(n){if(!n.length)return n.columns?1+t(n.columns):1;for(var i in n)return t(n[i])}(t)},this.getColumnsInDepth=function(n){return function t(n,i,o){var e=[];if(i==(o=o||0))return n.length&&n.forEach((function(t){t.columns&&(t.extractColumns=function(){return r(t)})})),n;for(var u in n)n[u].columns&&(e=e.concat(t(n[u].columns,i,o+1)));return e}(t,n)},this.getColumnsInGroup=function(t){return r(t)},this.visibleColumns=function(){return i(u(),(function(){return this.visible}))},this.filter=function(t){return i(u(),t)},this.reOrder=function(n){return function t(n,i){n.sort((function(t,n){return e(i.getColumnIndex(t.id))-e(i.getColumnIndex(n.id))})).forEach((function(n){n.columns&&t(n.columns,i)}))}(t,n)},this.getById=function(t){return n[t]},this.getInIds=function(t){return t.map((function(t){return n[t]}))}},keyCode:{SPACE:8,BACKSPACE:8,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,ESC:27,HOME:36,INSERT:45,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,RIGHT:39,TAB:9,UP:38,A:65,C:67,V:86},preClickClassName:"slick-edit-preclick",GridAutosizeColsMode:{None:"NOA",LegacyOff:"LOF",LegacyForceFit:"LFF",IgnoreViewport:"IGV",FitColsToViewport:"FCV",FitViewportToCols:"FVC"},ColAutosizeMode:{Locked:"LCK",Guide:"GUI",Content:"CON",ContentIntelligent:"CTI"},RowSelectionMode:{FirstRow:"FS1",FirstNRows:"FSN",AllRows:"ALL",LastRow:"LS1"},ValueFilterMode:{None:"NONE",DeDuplicate:"DEDP",GetGreatestAndSub:"GR8T",GetLongestTextAndSub:"LNSB",GetLongestText:"LNSC"},WidthEvalMode:{CanvasTextSize:"CANV",HTML:"HTML"}}},n”, ” 461: function _(e,t,o){var l=e(458),n=e(460);t.exports={CheckboxSelectColumn:function(e){var t,o=null,i=k(),c=new n.EventHandler,r={},d=!1,a=l.extend(!0,{},{columnId:"_checkbox_selector",cssClass:null,hideSelectAllCheckbox:!1,toolTip:"Select/Deselect All",width:30,hideInColumnTitleRow:!1,hideInFilterHeaderRow:!0},e);function s(){t.updateColumnHeader(a.columnId,"","")}function u(){l("#filter-checkbox-selectall-container").hide()}function h(e,n){var c,s,u,h=t.getSelectedRows(),f={},p=0;if("function"==typeof o)for(u=0;u<t.getDataLength();u++){C(s,t.getDataItem(u),t)||p++}var b=[];for(s=0;s<h.length;s++){c=h[s],C(s,t.getDataItem(c),t)?(f[c]=!0,f[c]!==r[c]&&(t.invalidateRow(c),delete r[c])):b.push(c)}for(s in r)t.invalidateRow(s);(r=f,t.render(),d=h.length&&h.length+p>=t.getDataLength(),a.hideInColumnTitleRow||a.hideSelectAllCheckbox||R(d),a.hideInFilterHeaderRow)||l("#header-filter-selector"+i).prop("checked",d);if(b.length>0){for(s=0;s<b.length;s++){var m=h.indexOf(b[s]);h.splice(m,1)}t.setSelectedRows(h)}}function f(e,o){32==e.which&&t.getColumns()[o.cell].id===a.columnId&&(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit()||b(o.row),e.preventDefault(),e.stopImmediatePropagation())}function p(e,o){if(t.getColumns()[o.cell].id===a.columnId&&l(e.target).is(":checkbox")){if(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit())return e.preventDefault(),void e.stopImmediatePropagation();b(o.row),e.stopPropagation(),e.stopImmediatePropagation()}}function b(e){var o=t.getDataItem(e);C(e,o,t)&&(r[e]?t.setSelectedRows(l.grep(t.getSelectedRows(),(function(t){return t!=e}))):t.setSelectedRows(t.getSelectedRows().concat(e)),t.setActiveCell(e,function(){if(null===g){g=0;for(var e=t.getColumns(),o=0;o<e.length;o++)e[o].id==a.columnId&&(g=o)}return g}()))}function m(e,o){if(o.column.id==a.columnId&&l(e.target).is(":checkbox")){if(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit())return e.preventDefault(),void e.stopImmediatePropagation();if(l(e.target).is(":checked")){for(var n=[],i=0;i<t.getDataLength();i++){C(i,t.getDataItem(i),t)&&n.push(i)}t.setSelectedRows(n)}else t.setSelectedRows([]);e.stopPropagation(),e.stopImmediatePropagation()}}"function"==typeof a.selectableOverride&&v(a.selectableOverride);var g=null;function k(){return Math.round(1e7*Math.random())}function w(e,t,o,l,n,i){var c=k()+e;return n&&C(e,n,i)?r[e]?"<input id=’selector"+c+"’ type=’checkbox’ checked=’checked’><label for=’selector"+c+"’></label>":"<input id=’selector"+c+"’ type=’checkbox’><label for=’selector"+c+"’></label>":null}function C(e,t,l){return"function"!=typeof o||o(e,t,l)}function R(e){e?t.updateColumnHeader(a.columnId,"<input id=’header-selector"+i+"’ type=’checkbox’ checked=’checked’><label for=’header-selector"+i+"’></label>",a.toolTip):t.updateColumnHeader(a.columnId,"<input id=’header-selector"+i+"’ type=’checkbox’><label for=’header-selector"+i+"’></label>",a.toolTip)}function v(e){o=e}l.extend(this,{init:function(e){t=e,c.subscribe(t.onSelectedRowsChanged,h).subscribe(t.onClick,p).subscribe(t.onKeyDown,f),a.hideInFilterHeaderRow||function(e){e.onHeaderRowCellRendered.subscribe((function(e,t){"sel"===t.column.field&&(l(t.node).empty(),l("<span id=’filter-checkbox-selectall-container’><input id=’header-filter-selector"+i+"’ type=’checkbox’><label for=’header-filter-selector"+i+"’></label></span>").appendTo(t.node).on("click",(function(e){m(e,t)})))}))}(e),a.hideInColumnTitleRow||c.subscribe(t.onHeaderClick,m)},destroy:function(){c.unsubscribeAll()},pluginName:"CheckboxSelectColumn",deSelectRows:function(e){var o,n=e.length,i=[];for(o=0;o<n;o++)r[e[o]]&&(i[i.length]=e[o]);t.setSelectedRows(l.grep(t.getSelectedRows(),(function(e){return i.indexOf(e)<0})))},selectRows:function(e){var o,l=e.length,n=[];for(o=0;o<l;o++)r[e[o]]||(n[n.length]=e[o]);t.setSelectedRows(t.getSelectedRows().concat(n))},getColumnDefinition:function(){return{id:a.columnId,name:a.hideSelectAllCheckbox||a.hideInColumnTitleRow?"":"<input id=’header-selector"+i+"’ type=’checkbox’><label for=’header-selector"+i+"’></label>",toolTip:a.hideSelectAllCheckbox||a.hideInColumnTitleRow?"":a.toolTip,field:"sel",width:a.width,resizable:!1,sortable:!1,cssClass:a.cssClass,hideSelectAllCheckbox:a.hideSelectAllCheckbox,formatter:w}},getOptions:function(){return a},selectableOverride:v,setOptions:function(e){if((a=l.extend(!0,{},a,e)).hideSelectAllCheckbox)s(),u();else if(a.hideInColumnTitleRow?s():(R(d),c.subscribe(t.onHeaderClick,m)),a.hideInFilterHeaderRow)u();else{var o=l("#filter-checkbox-selectall-container");o.show(),o.find(‘input[type="checkbox"]’).prop("checked",d)}}})}}},n”, ” 462: function _(e,t,o){var l=e(458),n=e(460),a=n.keyCode;t.exports={CellExternalCopyManager:function(e){var t,o,r=this,i=e||{},s=i.copiedCellStyleLayerKey||"copy-manager",u=i.copiedCellStyle||"copied",c=0,d=i.bodyElement||document.body,f=i.onCopyInit||null,h=i.onCopySuccess||null;function C(e){if(i.headerColumnValueExtractor){var t=i.headerColumnValueExtractor(e);if(t)return t}return e.name}function m(e,o,n){if(i.dataItemColumnValueExtractor){var a=i.dataItemColumnValueExtractor(e,o);if(a)return a}var r="";if(o.editor){var s={container:l("<p>"),column:o,position:{top:0,left:0},grid:t,event:n},u=new o.editor(s);u.loadValue(e),r=u.serializeValue(),u.destroy()}else r=e[o.field];return r}function g(e,o,n){if(o.denyPaste)return null;if(i.dataItemColumnValueSetter)return i.dataItemColumnValueSetter(e,o,n);if(o.editor){var a={container:l("body"),column:o,position:{top:0,left:0},grid:t},r=new o.editor(a);r.loadValue(e),r.applyValue(e,n),r.destroy()}else e[o.field]=n}function p(e){var t=document.createElement("textarea");return t.style.position="absolute",t.style.left="-1000px",t.style.top=document.body.scrollTop+"px",t.value=e,d.appendChild(t),t.select(),t}function y(e,l){var n;if(!t.getEditorLock().isActive()||t.getOptions().autoEdit){if(e.which==a.ESC&&o&&(e.preventDefault(),w(),r.onCopyCancelled.notify({ranges:o}),o=null),(e.which===a.C||e.which===a.INSERT)&&(e.ctrlKey||e.metaKey)&&!e.shiftKey&&(f&&f.call(),0!==(n=t.getSelectionModel().getSelectedRanges()).length)){o=n,v(n),r.onCopyCells.notify({ranges:n});for(var s=t.getColumns(),u="",c=0;c<n.length;c++){for(var y=n[c],D=[],S=y.fromRow;S<y.toRow+1;S++){var R=[],x=t.getDataItem(S);if(0===D.length&&i.includeHeaderWhenCopying){for(var E=[],V=y.fromCell;V<y.toCell+1;V++)s[V].name.length>0&&E.push(C(s[V]));D.push(E.join("\t"))}for(V=y.fromCell;V<y.toCell+1;V++)R.push(m(x,s[V],e));D.push(R.join("\t"))}u+=D.join("\r\n")+"\r\n"}if(window.clipboardData)return window.clipboardData.setData("Text",u),!0;var b=document.activeElement;if((M=p(u)).focus(),setTimeout((function(){d.removeChild(M),b?b.focus():console.log("Not element to restore focus to after copy?")}),100),h){var I=0;I=1===n.length?n[0].toRow+1-n[0].fromRow:n.length,h.call(this,I)}return!1}if(!i.readOnlyMode&&(e.which===a.V&&(e.ctrlKey||e.metaKey)&&!e.shiftKey||e.which===a.INSERT&&e.shiftKey&&!e.ctrlKey)){var M=p("");return setTimeout((function(){!function(e,t){var o=e.getColumns(),l=t.value.split(/[\n\f\r]/);""===l[l.length-1]&&l.pop();var n=[],a=0;d.removeChild(t);for(var s=0;s<l.length;s++)""!==l[s]?n[a++]=l[s].split("\t"):n[a++]=[""];var u=e.getActiveCell(),c=e.getSelectionModel().getSelectedRanges(),f=c&&c.length?c[0]:null,h=null,C=null;if(f)h=f.fromRow,C=f.fromCell;else{if(!u)return;h=u.row,C=u.cell}var m=!1,p=n.length,y=n.length?n[0].length:0;1==n.length&&1==n[0].length&&f&&(m=!0,p=f.toRow-f.fromRow+1,y=f.toCell-f.fromCell+1);var w=e.getData().length-h,D=0;if(w<p&&i.newRowCreator){var S=e.getData();for(D=1;D<=p-w;D++)S.push({});e.setData(S),e.render()}var R=h+p>e.getDataLength();if(i.newRowCreator&&R){var x=h+p-e.getDataLength();i.newRowCreator(x)}var E={isClipboardCommand:!0,clippedRange:n,oldValues:[],cellExternalCopyManager:r,_options:i,setDataItemValueForColumn:g,markCopySelection:v,oneCellToMultiple:m,activeRow:h,activeCell:C,destH:p,destW:y,maxDestY:e.getDataLength(),maxDestX:e.getColumns().length,h:0,w:0,execute:function(){this.h=0;for(var t=0;t<this.destH;t++){this.oldValues[t]=[],this.w=0,this.h++;for(var l=0;l<this.destW;l++){this.w++;var a=h+t,r=C+l;if(a<this.maxDestY&&r<this.maxDestX){e.getCellNode(a,r);var i=e.getDataItem(a);this.oldValues[t][l]=i[o[r].field],m?this.setDataItemValueForColumn(i,o[r],n[0][0]):this.setDataItemValueForColumn(i,o[r],n[t]?n[t][l]:""),e.updateCell(a,r),e.onCellChange.notify({row:a,cell:r,item:i,grid:e})}}}var s={fromCell:C,fromRow:h,toCell:C+this.w-1,toRow:h+this.h-1};this.markCopySelection([s]),e.getSelectionModel().setSelectedRanges([s]),this.cellExternalCopyManager.onPasteCells.notify({ranges:[s]})},undo:function(){for(var t=0;t<this.destH;t++)for(var l=0;l<this.destW;l++){var n=h+t,a=C+l;if(n<this.maxDestY&&a<this.maxDestX){e.getCellNode(n,a);var r=e.getDataItem(n);m?this.setDataItemValueForColumn(r,o[a],this.oldValues[0][0]):this.setDataItemValueForColumn(r,o[a],this.oldValues[t][l]),e.updateCell(n,a),e.onCellChange.notify({row:n,cell:a,item:r,grid:e})}}var i={fromCell:C,fromRow:h,toCell:C+this.w-1,toRow:h+this.h-1};if(this.markCopySelection([i]),e.getSelectionModel().setSelectedRanges([i]),this.cellExternalCopyManager.onPasteCells.notify({ranges:[i]}),D>1){for(var s=e.getData();D>1;D–)s.splice(s.length-1,1);e.setData(s),e.render()}}};i.clipboardCommandHandler?i.clipboardCommandHandler(E):E.execute()}(t,M)}),100),!1}}}function v(e){w();for(var o=t.getColumns(),l={},n=0;n<e.length;n++)for(var a=e[n].fromRow;a<=e[n].toRow;a++){l[a]={};for(var i=e[n].fromCell;i<=e[n].toCell&&i<o.length;i++)l[a][o[i].id]=u}t.setCellCssStyles(s,l),clearTimeout(c),c=setTimeout((function(){r.clearCopySelection()}),2e3)}function w(){t.removeCellCssStyles(s)}l.extend(this,{init:function(e){(t=e).onKeyDown.subscribe(y);var o=e.getSelectionModel();if(!o)throw new Error("Selection model is mandatory for this plugin. Please set a selection model on the grid before adding this plugin: grid.setSelectionModel(new Slick.CellSelectionModel())");o.onSelectedRangesChanged.subscribe((function(e,o){t.focus()}))},destroy:function(){t.onKeyDown.unsubscribe(y)},pluginName:"CellExternalCopyManager",clearCopySelection:w,handleKeyDown:y,onCopyCells:new n.Event,onCopyCancelled:new n.Event,onPasteCells:new n.Event,setIncludeHeaderWhenCopying:function(e){i.includeHeaderWhenCopying=e}})}}},n”, ” 463: function _(r,t,o){var _=r(1);_.__exportStar(r(460),t.exports),_.__exportStar(r(464),t.exports),_.__exportStar(r(467),t.exports),_.__exportStar(r(468),t.exports),_.__exportStar(r(469),t.exports),_.__exportStar(r(470),t.exports),_.__exportStar(r(471),t.exports)},n”, ” 464: function _(require,module,exports){n”, ” /n”, ” * @licensen”, ” * (c) 2009-2016 Michael Leibmann”, ” * michael{dot}leibman{at}gmail{dot}comn”, ” * http://github.com/mleibman/slickgridn”, ” n”, ” * Distributed under MIT license.n”, ” * All rights reserved.n”, ” *n”, ” * SlickGrid v2.4n”, ” *n”, ” * NOTES:n”, ” * Cell/row DOM manipulations are done directly bypassing jQuery’s DOM manipulation methods.n”, ” * This increases the speed dramatically, but can only be done safely because there are no event handlersn”, ” * or data associated with any cell/row DOM nodes. Cell editors must make sure they implement .destroy()n”, ” * and do proper cleanup.n”, ” */n”, ” var $=require(458),Slick=require(460),scrollbarDimensions,maxSupportedCssHeight;function SlickGrid(container,data,columns,options){$.fn.drag||require(465),$.fn.drop||require(466);var defaults={alwaysShowVerticalScroll:!1,alwaysAllowHorizontalScroll:!1,explicitInitialization:!1,rowHeight:25,defaultColumnWidth:80,enableAddRow:!1,leaveSpaceForNewRows:!1,editable:!1,autoEdit:!0,suppressActiveCellChangeOnEdit:!1,enableCellNavigation:!0,enableColumnReorder:!0,asyncEditorLoading:!1,asyncEditorLoadDelay:100,forceFitColumns:!1,enableAsyncPostRender:!1,asyncPostRenderDelay:50,enableAsyncPostRenderCleanup:!1,asyncPostRenderCleanupDelay:40,autoHeight:!1,editorLock:Slick.GlobalEditorLock,showColumnHeader:!0,showHeaderRow:!1,headerRowHeight:25,createFooterRow:!1,showFooterRow:!1,footerRowHeight:25,createPreHeaderPanel:!1,showPreHeaderPanel:!1,preHeaderPanelHeight:25,showTopPanel:!1,topPanelHeight:25,formatterFactory:null,editorFactory:null,cellFlashingCssClass:"flashing",selectedCellCssClass:"selected",multiSelect:!0,enableTextSelectionOnCells:!1,dataItemColumnValueExtractor:null,frozenBottom:!1,frozenColumn:-1,frozenRow:-1,fullWidthRows:!1,multiColumnSort:!1,numberedMultiColumnSort:!1,tristateMultiColumnSort:!1,sortColNumberInSeparateSpan:!1,defaultFormatter,forceSyncScrolling:!1,addNewRowCssClass:"new-row",preserveCopiedSelectionOnPaste:!1,showCellSelection:!0,viewportClass:null,minRowBuffer:3,emulatePagingWhenScrolling:!0,editorCellNavOnLRKeys:!1,doPaging:!0,autosizeColsMode:Slick.GridAutosizeColsMode.LegacyOff,autosizeColPaddingPx:4,autosizeTextAvgToMWidthRatio:.75,viewportSwitchToScrollModeWidthPercent:void 0,viewportMinWidthPx:void 0,viewportMaxWidthPx:void 0},columnDefaults={name:"",resizable:!0,sortable:!1,minWidth:30,maxWidth:void 0,rerenderOnResize:!1,headerCssClass:null,defaultSortAsc:!0,focusable:!0,selectable:!0},columnAutosizeDefaults={ignoreHeaderText:!1,colValueArray:void 0,allowAddlPercent:void 0,formatterOverride:void 0,autosizeMode:Slick.ColAutosizeMode.ContentIntelligent,rowSelectionModeOnInit:void 0,rowSelectionMode:Slick.RowSelectionMode.FirstNRows,rowSelectionCount:100,valueFilterMode:Slick.ValueFilterMode.None,widthEvalMode:Slick.WidthEvalMode.CanvasTextSize,sizeToRemaining:void 0,widthPx:void 0,colDataTypeOf:void 0},th,h,ph,n,cj,page=0,offset=0,vScrollDir=1,initialized=!1,$container,uid="slickgrid_"+Math.round(1e6*Math.random()),self=this,$focusSink,$focusSink2,$groupHeaders=$(),$headerScroller,$headers,$headerRow,$headerRowScroller,$headerRowSpacerL,$headerRowSpacerR,$footerRow,$footerRowScroller,$footerRowSpacerL,$footerRowSpacerR,$preHeaderPanel,$preHeaderPanelScroller,$preHeaderPanelSpacer,$preHeaderPanelR,$preHeaderPanelScrollerR,$preHeaderPanelSpacerR,$topPanelScroller,$topPanel,$viewport,$canvas,$style,$boundAncestors,treeColumns,stylesheet,columnCssRulesL,columnCssRulesR,viewportH,viewportW,canvasWidth,canvasWidthL,canvasWidthR,headersWidth,headersWidthL,headersWidthR,viewportHasHScroll,viewportHasVScroll,headerColumnWidthDiff=0,headerColumnHeightDiff=0,cellWidthDiff=0,cellHeightDiff=0,jQueryNewWidthBehaviour=!1,absoluteColumnMinWidth,hasFrozenRows=!1,frozenRowsHeight=0,actualFrozenRow=-1,paneTopH=0,paneBottomH=0,viewportTopH=0,viewportBottomH=0,topPanelH=0,headerRowH=0,footerRowH=0,tabbingDirection=1,$activeCanvasNode,$activeViewportNode,activePosX,activeRow,activeCell,activeCellNode=null,currentEditor=null,serializedEditorValue,editController,rowsCache={},renderedRows=0,numVisibleRows=0,prevScrollTop=0,scrollTop=0,lastRenderedScrollTop=0,lastRenderedScrollLeft=0,prevScrollLeft=0,scrollLeft=0,selectionModel,selectedRows=[],plugins=[],cellCssClasses={},columnsById={},sortColumns=[],columnPosLeft=[],columnPosRight=[],pagingActive=!1,pagingIsLastPage=!1,scrollThrottle=ActionThrottle(render,50),h_editorLoader=null,h_render=null,h_postrender=null,h_postrenderCleanup=null,postProcessedRows={},postProcessToRow=null,postProcessFromRow=null,postProcessedCleanupQueue=[],postProcessgroupId=0,counter_rows_rendered=0,counter_rows_removed=0,rowNodeFromLastMouseWheelEvent,zombieRowNodeFromLastMouseWheelEvent,zombieRowCacheFromLastMouseWheelEvent,zombieRowPostProcessedFromLastMouseWheelEvent,$paneHeaderL,$paneHeaderR,$paneTopL,$paneTopR,$paneBottomL,$paneBottomR,$headerScrollerL,$headerScrollerR,$headerL,$headerR,$groupHeadersL,$groupHeadersR,$headerRowScrollerL,$headerRowScrollerR,$footerRowScrollerL,$footerRowScrollerR,$headerRowL,$headerRowR,$footerRowL,$footerRowR,$topPanelScrollerL,$topPanelScrollerR,$topPanelL,$topPanelR,$viewportTopL,$viewportTopR,$viewportBottomL,$viewportBottomR,$canvasTopL,$canvasTopR,$canvasBottomL,$canvasBottomR,$viewportScrollContainerX,$viewportScrollContainerY,$headerScrollContainer,$headerRowScrollContainer,$footerRowScrollContainer,cssShow={position:"absolute",visibility:"hidden",display:"block"},$hiddenParents,oldProps=[],columnResizeDragging=!1;function init(){if(($container=container instanceof $?container:$(container)).length<1)throw new Error("SlickGrid requires a valid container, "+container+" does not exist in the DOM.");if(cacheCssForHiddenInit(),maxSupportedCssHeight=maxSupportedCssHeight||getMaxSupportedCssHeight(),options=$.extend({},defaults,options),validateAndEnforceOptions(),columnDefaults.width=options.defaultColumnWidth,treeColumns=new Slick.TreeColumns(columns),columns=treeColumns.extractColumns(),updateColumnProps(),options.enableColumnReorder&&!$.fn.sortable)throw new Error("SlickGrid’s ‘enableColumnReorder = true’ option requires jquery-ui.sortable module to be loaded");if(editController={commitCurrentEdit,cancelCurrentEdit},$container.empty().css("overflow","hidden").css("outline",0).addClass(uid).addClass("ui-widget"),/relative|absolute|fixed/.test($container.css("position"))||$container.css("position","relative"),$focusSink=$("<div tabIndex=’0’ hideFocus style=’position:fixed;width:0;height:0;top:0;left:0;outline:0;’></div>").appendTo($container),$paneHeaderL=$("<div class=’slick-pane slick-pane-header slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneHeaderR=$("<div class=’slick-pane slick-pane-header slick-pane-right’ tabIndex=’0’ />").appendTo($container),$paneTopL=$("<div class=’slick-pane slick-pane-top slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneTopR=$("<div class=’slick-pane slick-pane-top slick-pane-right’ tabIndex=’0’ />").appendTo($container),$paneBottomL=$("<div class=’slick-pane slick-pane-bottom slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneBottomR=$("<div class=’slick-pane slick-pane-bottom slick-pane-right’ tabIndex=’0’ />").appendTo($container),options.createPreHeaderPanel&&($preHeaderPanelScroller=$("<div class=’slick-preheader-panel ui-state-default’ style=’overflow:hidden;position:relative;’ />").appendTo($paneHeaderL),$preHeaderPanel=$("<div />").appendTo($preHeaderPanelScroller),$preHeaderPanelSpacer=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($preHeaderPanelScroller),$preHeaderPanelScrollerR=$("<div class=’slick-preheader-panel ui-state-default’ style=’overflow:hidden;position:relative;’ />").appendTo($paneHeaderR),$preHeaderPanelR=$("<div />").appendTo($preHeaderPanelScrollerR),$preHeaderPanelSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($preHeaderPanelScrollerR),options.showPreHeaderPanel||($preHeaderPanelScroller.hide(),$preHeaderPanelScrollerR.hide())),$headerScrollerL=$("<div class=’slick-header ui-state-default slick-header-left’ />").appendTo($paneHeaderL),$headerScrollerR=$("<div class=’slick-header ui-state-default slick-header-right’ />").appendTo($paneHeaderR),$headerScroller=$().add($headerScrollerL).add($headerScrollerR),treeColumns.hasDepth()){$groupHeadersL=[],$groupHeadersR=[];for(var e=0;e<treeColumns.getDepth()-1;e++)$groupHeadersL[e]=$("<div class=’slick-group-header-columns slick-group-header-columns-left’ style=’left:-1000px’ />").appendTo($headerScrollerL),$groupHeadersR[e]=$("<div class=’slick-group-header-columns slick-group-header-columns-right’ style=’left:-1000px’ />").appendTo($headerScrollerR);$groupHeaders=$().add($groupHeadersL).add($groupHeadersR)}$headerL=$("<div class=’slick-header-columns slick-header-columns-left’ style=’left:-1000px’ />").appendTo($headerScrollerL),$headerR=$("<div class=’slick-header-columns slick-header-columns-right’ style=’left:-1000px’ />").appendTo($headerScrollerR),$headers=$().add($headerL).add($headerR),$headerRowScrollerL=$("<div class=’slick-headerrow ui-state-default’ />").appendTo($paneTopL),$headerRowScrollerR=$("<div class=’slick-headerrow ui-state-default’ />").appendTo($paneTopR),$headerRowScroller=$().add($headerRowScrollerL).add($headerRowScrollerR),$headerRowSpacerL=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($headerRowScrollerL),$headerRowSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($headerRowScrollerR),$headerRowL=$("<div class=’slick-headerrow-columns slick-headerrow-columns-left’ />").appendTo($headerRowScrollerL),$headerRowR=$("<div class=’slick-headerrow-columns slick-headerrow-columns-right’ />").appendTo($headerRowScrollerR),$headerRow=$().add($headerRowL).add($headerRowR),$topPanelScrollerL=$("<div class=’slick-top-panel-scroller ui-state-default’ />").appendTo($paneTopL),$topPanelScrollerR=$("<div class=’slick-top-panel-scroller ui-state-default’ />").appendTo($paneTopR),$topPanelScroller=$().add($topPanelScrollerL).add($topPanelScrollerR),$topPanelL=$("<div class=’slick-top-panel’ style=’width:10000px’ />").appendTo($topPanelScrollerL),$topPanelR=$("<div class=’slick-top-panel’ style=’width:10000px’ />").appendTo($topPanelScrollerR),$topPanel=$().add($topPanelL).add($topPanelR),options.showColumnHeader||$headerScroller.hide(),options.showTopPanel||$topPanelScroller.hide(),options.showHeaderRow||$headerRowScroller.hide(),$viewportTopL=$("<div class=’slick-viewport slick-viewport-top slick-viewport-left’ tabIndex=’0’ hideFocus />").appendTo($paneTopL),$viewportTopR=$("<div class=’slick-viewport slick-viewport-top slick-viewport-right’ tabIndex=’0’ hideFocus />").appendTo($paneTopR),$viewportBottomL=$("<div class=’slick-viewport slick-viewport-bottom slick-viewport-left’ tabIndex=’0’ hideFocus />").appendTo($paneBottomL),$viewportBottomR=$("<div class=’slick-viewport slick-viewport-bottom slick-viewport-right’ tabIndex=’0’ hideFocus />").appendTo($paneBottomR),$viewport=$().add($viewportTopL).add($viewportTopR).add($viewportBottomL).add($viewportBottomR),$activeViewportNode=$viewportTopL,$canvasTopL=$("<div class=’grid-canvas grid-canvas-top grid-canvas-left’ tabIndex=’0’ hideFocus />").appendTo($viewportTopL),$canvasTopR=$("<div class=’grid-canvas grid-canvas-top grid-canvas-right’ tabIndex=’0’ hideFocus />").appendTo($viewportTopR),$canvasBottomL=$("<div class=’grid-canvas grid-canvas-bottom grid-canvas-left’ tabIndex=’0’ hideFocus />").appendTo($viewportBottomL),$canvasBottomR=$("<div class=’grid-canvas grid-canvas-bottom grid-canvas-right’ tabIndex=’0’ hideFocus />").appendTo($viewportBottomR),options.viewportClass&&$viewport.toggleClass(options.viewportClass,!0),$canvas=$().add($canvasTopL).add($canvasTopR).add($canvasBottomL).add($canvasBottomR),scrollbarDimensions=scrollbarDimensions||measureScrollbar(),$activeCanvasNode=$canvasTopL,$preHeaderPanelSpacer&&$preHeaderPanelSpacer.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),$headers.width(getHeadersWidth()),$headerRowSpacerL.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),$headerRowSpacerR.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),options.createFooterRow&&($footerRowScrollerR=$("<div class=’slick-footerrow ui-state-default’ />").appendTo($paneTopR),$footerRowScrollerL=$("<div class=’slick-footerrow ui-state-default’ />").appendTo($paneTopL),$footerRowScroller=$().add($footerRowScrollerL).add($footerRowScrollerR),$footerRowSpacerL=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").css("width",getCanvasWidth()+scrollbarDimensions.width+"px").appendTo($footerRowScrollerL),$footerRowSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").css("width",getCanvasWidth()+scrollbarDimensions.width+"px").appendTo($footerRowScrollerR),$footerRowL=$("<div class=’slick-footerrow-columns slick-footerrow-columns-left’ />").appendTo($footerRowScrollerL),$footerRowR=$("<div class=’slick-footerrow-columns slick-footerrow-columns-right’ />").appendTo($footerRowScrollerR),$footerRow=$().add($footerRowL).add($footerRowR),options.showFooterRow||$footerRowScroller.hide()),$focusSink2=$focusSink.clone().appendTo($container),options.explicitInitialization||finishInitialization()}function finishInitialization(){initialized||(initialized=!0,getViewportWidth(),getViewportHeight(),measureCellPaddingAndBorder(),disableSelection($headers),options.enableTextSelectionOnCells||$viewport.on("selectstart.ui",(function(e){return $(e.target).is("input,textarea")})),setFrozenOptions(),setPaneVisibility(),setScroller(),setOverflow(),updateColumnCaches(),createColumnHeaders(),createColumnGroupHeaders(),createColumnFooter(),setupColumnSort(),createCssRules(),resizeCanvas(),bindAncestorScrollEvents(),$container.on("resize.slickgrid",resizeCanvas),$viewport.on("scroll",handleScroll),$.fn.mousewheel&&$viewport.on("mousewheel",handleMouseWheel),$headerScroller.on("contextmenu",handleHeaderContextMenu).on("click",handleHeaderClick).on("mouseenter",".slick-header-column",handleHeaderMouseEnter).on("mouseleave",".slick-header-column",handleHeaderMouseLeave),$headerRowScroller.on("scroll",handleHeaderRowScroll),options.createFooterRow&&($footerRow.on("contextmenu",handleFooterContextMenu).on("click",handleFooterClick),$footerRowScroller.on("scroll",handleFooterRowScroll)),options.createPreHeaderPanel&&$preHeaderPanelScroller.on("scroll",handlePreHeaderPanelScroll),$focusSink.add($focusSink2).on("keydown",handleKeyDown),$canvas.on("keydown",handleKeyDown).on("click",handleClick).on("dblclick",handleDblClick).on("contextmenu",handleContextMenu).on("draginit",handleDragInit).on("dragstart",{distance:3},handleDragStart).on("drag",handleDrag).on("dragend",handleDragEnd).on("mouseenter",".slick-cell",handleMouseEnter).on("mouseleave",".slick-cell",handleMouseLeave),restoreCssFromHiddenInit())}function cacheCssForHiddenInit(){($hiddenParents=$container.parents().addBack().not(":visible")).each((function(){var e={};for(var o in cssShow)e[o]=this.style[o],this.style[o]=cssShow[o];oldProps.push(e)}))}function restoreCssFromHiddenInit(){$hiddenParents.each((function(e){var o=oldProps[e];for(var t in cssShow)this.style[t]=o[t]}))}function hasFrozenColumns(){return options.frozenColumn>-1}function registerPlugin(e){plugins.unshift(e),e.init(self)}function unregisterPlugin(e){for(var o=plugins.length;o>=0;o–)if(plugins[o]===e){plugins[o].destroy&&plugins[o].destroy(),plugins.splice(o,1);break}}function getPluginByName(e){for(var o=plugins.length-1;o>=0;o–)if(plugins[o].pluginName===e)return plugins[o]}function setSelectionModel(e){selectionModel&&(selectionModel.onSelectedRangesChanged.unsubscribe(handleSelectedRangesChanged),selectionModel.destroy&&selectionModel.destroy()),(selectionModel=e)&&(selectionModel.init(self),selectionModel.onSelectedRangesChanged.subscribe(handleSelectedRangesChanged))}function getSelectionModel(){return selectionModel}function getCanvasNode(e,o){e||(e=0),o||(o=0);var t="number"==typeof e?e:getColumnIndex(e);return hasFrozenRows&&o>=actualFrozenRow+(options.frozenBottom?0:1)?hasFrozenColumns()&&t>options.frozenColumn?$canvasBottomR[0]:$canvasBottomL[0]:hasFrozenColumns()&&t>options.frozenColumn?$canvasTopR[0]:$canvasTopL[0]}function getActiveCanvasNode(e){return setActiveCanvasNode(e),$activeCanvasNode[0]}function getCanvases(){return $canvas}function setActiveCanvasNode(e){e&&($activeCanvasNode=$(e.target).closest(".grid-canvas"))}function getViewportNode(){return $viewport[0]}function getActiveViewportNode(e){return setActiveViewPortNode(e),$activeViewportNode[0]}function setActiveViewportNode(e){e&&($activeViewportNode=$(e.target).closest(".slick-viewport"))}function measureScrollbar(){var e=$(‘<div class="’+$viewport.className+’" style="position:absolute; top:-10000px; left:-10000px; overflow:auto; width:100px; height:100px;"></div>’).appendTo("body"),o=$(‘<div style="width:200px; height:200px; overflow:auto;"></div>’).appendTo(e),t={width:e[0].offsetWidth-e[0].clientWidth,height:e[0].offsetHeight-e[0].clientHeight};return o.remove(),e.remove(),t}function getHeadersWidth(){headersWidth=headersWidthL=headersWidthR=0;for(var e=!options.autoHeight,o=0,t=columns.length;o<t;o++){var n=columns[o].width;options.frozenColumn>-1&&o>options.frozenColumn?headersWidthR+=n:headersWidthL+=n}return e&&(options.frozenColumn>-1&&o>options.frozenColumn?headersWidthR+=scrollbarDimensions.width:headersWidthL+=scrollbarDimensions.width),hasFrozenColumns()?(headersWidthL+=1e3,headersWidthR=Math.max(headersWidthR,viewportW)+headersWidthL,headersWidthR+=scrollbarDimensions.width):(headersWidthL+=scrollbarDimensions.width,headersWidthL=Math.max(headersWidthL,viewportW)+1e3),headersWidth=headersWidthL+headersWidthR,Math.max(headersWidth,viewportW)+1e3}function getHeadersWidthL(){return headersWidthL=0,columns.forEach((function(e,o){options.frozenColumn>-1&&o>options.frozenColumn||(headersWidthL+=e.width)})),hasFrozenColumns()?headersWidthL+=1e3:(headersWidthL+=scrollbarDimensions.width,headersWidthL=Math.max(headersWidthL,viewportW)+1e3),headersWidthL}function getHeadersWidthR(){return headersWidthR=0,columns.forEach((function(e,o){options.frozenColumn>-1&&o>options.frozenColumn&&(headersWidthR+=e.width)})),hasFrozenColumns()&&(headersWidthR=Math.max(headersWidthR,viewportW)+getHeadersWidthL(),headersWidthR+=scrollbarDimensions.width),headersWidthR}function getCanvasWidth(){var e=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW,o=columns.length;for(canvasWidthL=canvasWidthR=0;o–;)hasFrozenColumns()&&o>options.frozenColumn?canvasWidthR+=columns[o].width:canvasWidthL+=columns[o].width;var t=canvasWidthL+canvasWidthR;return options.fullWidthRows?Math.max(t,e):t}function updateCanvasWidth(e){var o,t=canvasWidth,n=canvasWidthL,l=canvasWidthR;((o=(canvasWidth=getCanvasWidth())!==t||canvasWidthL!==n||canvasWidthR!==l)||hasFrozenColumns()||hasFrozenRows)&&($canvasTopL.width(canvasWidthL),getHeadersWidth(),$headerL.width(headersWidthL),$headerR.width(headersWidthR),hasFrozenColumns()?($canvasTopR.width(canvasWidthR),$paneHeaderL.width(canvasWidthL),$paneHeaderR.css("left",canvasWidthL),$paneHeaderR.css("width",viewportW-canvasWidthL),$paneTopL.width(canvasWidthL),$paneTopR.css("left",canvasWidthL),$paneTopR.css("width",viewportW-canvasWidthL),$headerRowScrollerL.width(canvasWidthL),$headerRowScrollerR.width(viewportW-canvasWidthL),$headerRowL.width(canvasWidthL),$headerRowR.width(canvasWidthR),options.createFooterRow&&($footerRowScrollerL.width(canvasWidthL),$footerRowScrollerR.width(viewportW-canvasWidthL),$footerRowL.width(canvasWidthL),$footerRowR.width(canvasWidthR)),options.createPreHeaderPanel&&$preHeaderPanel.width(canvasWidth),$viewportTopL.width(canvasWidthL),$viewportTopR.width(viewportW-canvasWidthL),hasFrozenRows&&($paneBottomL.width(canvasWidthL),$paneBottomR.css("left",canvasWidthL),$viewportBottomL.width(canvasWidthL),$viewportBottomR.width(viewportW-canvasWidthL),$canvasBottomL.width(canvasWidthL),$canvasBottomR.width(canvasWidthR))):($paneHeaderL.width("100%"),$paneTopL.width("100%"),$headerRowScrollerL.width("100%"),$headerRowL.width(canvasWidth),options.createFooterRow&&($footerRowScrollerL.width("100%"),$footerRowL.width(canvasWidth)),options.createPreHeaderPanel&&($preHeaderPanel.width("100%"),$preHeaderPanel.width(canvasWidth)),$viewportTopL.width("100%"),hasFrozenRows&&($viewportBottomL.width("100%"),$canvasBottomL.width(canvasWidthL))),viewportHasHScroll=canvasWidth>viewportW-scrollbarDimensions.width),$headerRowSpacerL.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),$headerRowSpacerR.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),options.createFooterRow&&($footerRowSpacerL.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),$footerRowSpacerR.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0))),(o||e)&&applyColumnWidths()}function disableSelection(e){e&&e.jquery&&e.attr("unselectable","on").css("MozUserSelect","none").on("selectstart.ui",(function(){return!1}))}function getMaxSupportedCssHeight(){for(var e=1e6,o=navigator.userAgent.toLowerCase().match(/firefox/)?6e6:1e9,t=$("<div style=’display:none’ />").appendTo(document.body);;){var n=2*e;if(t.css("height",n),n>o||t.height()!==n)break;e=n}return t.remove(),e}function getUID(){return uid}function getHeaderColumnWidthDiff(){return headerColumnWidthDiff}function getScrollbarDimensions(){return scrollbarDimensions}function bindAncestorScrollEvents(){for(var e=hasFrozenRows&&!options.frozenBottom?$canvasBottomL[0]:$canvasTopL[0];(e=e.parentNode)!=document.body&&null!=e;)if(e==$viewportTopL[0]||e.scrollWidth!=e.clientWidth||e.scrollHeight!=e.clientHeight){var o=$(e);$boundAncestors=$boundAncestors?$boundAncestors.add(o):o,o.on("scroll."+uid,handleActiveCellPositionChange)}}function unbindAncestorScrollEvents(){$boundAncestors&&($boundAncestors.off("scroll."+uid),$boundAncestors=null)}function updateColumnHeader(e,o,t){if(initialized){var n=getColumnIndex(e);if(null!=n){var l=columns[n],r=$headers.children().eq(n);r&&(void 0!==o&&(columns[n].name=o),void 0!==t&&(columns[n].toolTip=t),trigger(self.onBeforeHeaderCellDestroy,{node:r[0],column:l,grid:self}),r.attr("title",t||"").children().eq(0).html(o),trigger(self.onHeaderCellRendered,{node:r[0],column:l,grid:self}))}}}function getHeader(e){if(!e)return hasFrozenColumns()?$headers:$headerL;var o=getColumnIndex(e.id);return hasFrozenColumns()?o<=options.frozenColumn?$headerL:$headerR:$headerL}function getHeaderColumn(e){var o="number"==typeof e?e:getColumnIndex(e),t=hasFrozenColumns()?o<=options.frozenColumn?$headerL:$headerR:$headerL,n=hasFrozenColumns()?o<=options.frozenColumn?o:o-options.frozenColumn-1:o,l=t.children().eq(n);return l&&l[0]}function getHeaderRow(){return hasFrozenColumns()?$headerRow:$headerRow[0]}function getFooterRow(){return hasFrozenColumns()?$footerRow:$footerRow[0]}function getPreHeaderPanel(){return $preHeaderPanel[0]}function getPreHeaderPanelRight(){return $preHeaderPanelR[0]}function getHeaderRowColumn(e){var o,t="number"==typeof e?e:getColumnIndex(e);hasFrozenColumns()?t<=options.frozenColumn?o=$headerRowL:(o=$headerRowR,t-=options.frozenColumn+1):o=$headerRowL;var n=o.children().eq(t);return n&&n[0]}function getFooterRowColumn(e){var o,t="number"==typeof e?e:getColumnIndex(e);hasFrozenColumns()?t<=options.frozenColumn?o=$footerRowL:(o=$footerRowR,t-=options.frozenColumn+1):o=$footerRowL;var n=o&&o.children().eq(t);return n&&n[0]}function createColumnFooter(){if(options.createFooterRow){$footerRow.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowL.empty(),$footerRowR.empty();for(var e=0;e<columns.length;e++){var o=columns[e],t=$("<div class=’ui-state-default slick-footerrow-column l"+e+" r"+e+"’></div>").data("column",o).addClass(hasFrozenColumns()&&e<=options.frozenColumn?"frozen":"").appendTo(hasFrozenColumns()&&e>options.frozenColumn?$footerRowR:$footerRowL);trigger(self.onFooterRowCellRendered,{node:t[0],column:o,grid:self})}}}function createColumnGroupHeaders(){var e=0,o=!1;if(treeColumns.hasDepth()){for(var t=0;t<$groupHeadersL.length;t++){$groupHeadersL[t].empty(),$groupHeadersR[t].empty();var n=treeColumns.getColumnsInDepth(t);for(var l in n){var r=n[l];e+=r.extractColumns().length,hasFrozenColumns()&&0===t&&e-1===options.frozenColumn&&(o=!0),$("<div class=’ui-state-default slick-group-header-column’ />").html("<span class=’slick-column-name’>"+r.name+"</span>").attr("id",""+uid+r.id).attr("title",r.toolTip||"").data("column",r).addClass(r.headerCssClass||"").addClass(hasFrozenColumns()&&e-1>options.frozenColumn?"frozen":"").appendTo(hasFrozenColumns()&&e-1>options.frozenColumn?$groupHeadersR[t]:$groupHeadersL[t])}if(hasFrozenColumns()&&0===t&&!o){$groupHeadersL[t].empty(),$groupHeadersR[t].empty(),alert("All columns of group should to be grouped!");break}}applyColumnGroupHeaderWidths()}}function createColumnHeaders(){function e(){$(this).addClass("ui-state-hover")}function o(){$(this).removeClass("ui-state-hover")}$headers.find(".slick-header-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeHeaderCellDestroy,{node:this,column:e,grid:self})})),$headerL.empty(),$headerR.empty(),getHeadersWidth(),$headerL.width(headersWidthL),$headerR.width(headersWidthR),$headerRow.find(".slick-headerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeHeaderRowCellDestroy,{node:this,column:e,grid:self})})),$headerRowL.empty(),$headerRowR.empty(),options.createFooterRow&&($footerRowL.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowL.empty(),hasFrozenColumns()&&($footerRowR.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowR.empty()));for(var t=0;t<columns.length;t++){var n=columns[t],l=hasFrozenColumns()?t<=options.frozenColumn?$headerL:$headerR:$headerL,r=hasFrozenColumns()?t<=options.frozenColumn?$headerRowL:$headerRowR:$headerRowL,i=$("<div class=’ui-state-default slick-header-column’ />").html("<span class=’slick-column-name’>"+n.name+"</span>").width(n.width-headerColumnWidthDiff).attr("id",""+uid+n.id).attr("title",n.toolTip||"").data("column",n).addClass(n.headerCssClass||"").addClass(hasFrozenColumns()&&t<=options.frozenColumn?"frozen":"").appendTo(l);if((options.enableColumnReorder||n.sortable)&&i.on("mouseenter",e).on("mouseleave",o),n.hasOwnProperty("headerCellAttrs")&&n.headerCellAttrs instanceof Object)for(var a in n.headerCellAttrs)n.headerCellAttrs.hasOwnProperty(a)&&i.attr(a,n.headerCellAttrs[a]);if(n.sortable&&(i.addClass("slick-header-sortable"),i.append("<span class=’slick-sort-indicator"+(options.numberedMultiColumnSort&&!options.sortColNumberInSeparateSpan?" slick-sort-indicator-numbered":"")+"’ />"),options.numberedMultiColumnSort&&options.sortColNumberInSeparateSpan&&i.append("<span class=’slick-sort-indicator-numbered’ />")),trigger(self.onHeaderCellRendered,{node:i[0],column:n,grid:self}),options.showHeaderRow){var s=$("<div class=’ui-state-default slick-headerrow-column l"+t+" r"+t+"’></div>").data("column",n).addClass(hasFrozenColumns()&&t<=options.frozenColumn?"frozen":"").appendTo(r);trigger(self.onHeaderRowCellRendered,{node:s[0],column:n,grid:self})}if(options.createFooterRow&&options.showFooterRow){var d=$("<div class=’ui-state-default slick-footerrow-column l"+t+" r"+t+"’></div>").data("column",n).appendTo($footerRow);trigger(self.onFooterRowCellRendered,{node:d[0],column:n,grid:self})}}setSortColumns(sortColumns),setupColumnResize(),options.enableColumnReorder&&("function"==typeof options.enableColumnReorder?options.enableColumnReorder(self,$headers,headerColumnWidthDiff,setColumns,setupColumnResize,columns,getColumnIndex,uid,trigger):setupColumnReorder())}function setupColumnSort(){$headers.click((function(e){if(!columnResizeDragging&&(e.metaKey=e.metaKey||e.ctrlKey,!$(e.target).hasClass("slick-resizable-handle"))){var o=$(e.target).closest(".slick-header-column");if(o.length){var t=o.data("column");if(t.sortable){if(!getEditorLock().commitCurrentEdit())return;for(var n=null,l=0;l<sortColumns.length;l++)if(sortColumns[l].columnId==t.id){(n=sortColumns[l]).sortAsc=!n.sortAsc;break}var r=!!n;options.tristateMultiColumnSort?(n||(n={columnId:t.id,sortAsc:t.defaultSortAsc}),r&&n.sortAsc&&(sortColumns.splice(l,1),n=null),options.multiColumnSort||(sortColumns=[]),!n||r&&options.multiColumnSort||sortColumns.push(n)):e.metaKey&&options.multiColumnSort?n&&sortColumns.splice(l,1):((e.shiftKey||e.metaKey)&&options.multiColumnSort||(sortColumns=[]),n?0===sortColumns.length&&sortColumns.push(n):(n={columnId:t.id,sortAsc:t.defaultSortAsc},sortColumns.push(n))),setSortColumns(sortColumns),options.multiColumnSort?trigger(self.onSort,{multiColumnSort:!0,sortCols:$.map(sortColumns,(function(e){return{columnId:columns[getColumnIndex(e.columnId)].id,sortCol:columns[getColumnIndex(e.columnId)],sortAsc:e.sortAsc}}))},e):trigger(self.onSort,{multiColumnSort:!1,columnId:sortColumns.length>0?t.id:null,sortCol:sortColumns.length>0?t:null,sortAsc:!(sortColumns.length>0)||sortColumns[0].sortAsc},e)}}}}))}function currentPositionInHeader(e){var o=0;return $headers.find(".slick-header-column").each((function(t){if(this.id==e)return o=t,!1})),o}function limitPositionInGroup(e){var o,t=0,n=0;return treeColumns.getColumnsInDepth($groupHeadersL.length-1).some((function(l){return t=n,n+=l.columns.length,l.columns.some((function(t){return t.id===e&&(o=l),o})),o})),n–,{start:t,end:n,group:o}}function remove(e,o){var t=e.lastIndexOf(o);t>-1&&(e.splice(t,1),remove(e,o))}function columnPositionValidInGroup(e){var o=currentPositionInHeader(e[0].id),t=limitPositionInGroup(e.data("column").id),n=t.start<=o&&o<=t.end;return{limit:t,valid:n,message:n?"":’Column "’.concat(e.text(),’" can be reordered only within the "’,t.group.name,’" group!’)}}function setupColumnReorder(){$headers.filter(":ui-sortable").sortable("destroy");var e,o=null;function t(){$viewportScrollContainerX[0].scrollLeft=$viewportScrollContainerX[0].scrollLeft+10}function n(){$viewportScrollContainerX[0].scrollLeft=$viewportScrollContainerX[0].scrollLeft-10}$headers.sortable({containment:"parent",distance:3,axis:"x",cursor:"default",tolerance:"intersection",helper:"clone",placeholder:"slick-sortable-placeholder ui-state-default slick-header-column",start:function(o,t){t.placeholder.width(t.helper.outerWidth()-headerColumnWidthDiff),e=!hasFrozenColumns()||t.placeholder.offset().left+t.placeholder.width()>$viewportScrollContainerX.offset().left,$(t.helper).addClass("slick-header-column-active")},beforeStop:function(e,o){$(o.helper).removeClass("slick-header-column-active")},sort:function(l,r){e&&l.originalEvent.pageX>$container[0].clientWidth?o||(o=setInterval(t,100)):e&&l.originalEvent.pageX<$viewportScrollContainerX.offset().left?o||(o=setInterval(n,100)):(clearInterval(o),o=null)},stop:function(e,t){var n=!1;clearInterval(o),o=null;var l=null;if(treeColumns.hasDepth()){var r=columnPositionValidInGroup(t.item);l=r.limit,(n=!r.valid)&&alert(r.message)}if(!n&&getEditorLock().commitCurrentEdit()){var i=$headerL.sortable("toArray");i=i.concat($headerR.sortable("toArray"));for(var a=[],s=0;s<i.length;s++)a.push(columns[getColumnIndex(i[s].replace(uid,""))]);setColumns(a),trigger(self.onColumnsReordered,{impactedColumns:getImpactedColumns(l)}),e.stopPropagation(),setupColumnResize()}else $(this).sortable("cancel")}})}function getImpactedColumns(e){var o=[];if(e)for(var t=e.start;t<=e.end;t++)o.push(columns[t]);else o=columns;return o}function setupColumnResize(){var e,o,t,n,l,r,i,a,s;(l=$headers.children()).find(".slick-resizable-handle").remove(),l.each((function(e,o){e>=columns.length||columns[e].resizable&&(void 0===a&&(a=e),s=e)})),void 0!==a&&l.each((function(d,c){d>=columns.length||d<a||options.forceFitColumns&&d>=s||($(c),$("<div class=’slick-resizable-handle’ />").appendTo(c).on("dragstart",(function(o,a){if(!getEditorLock().commitCurrentEdit())return!1;n=o.pageX,$(this).parent().addClass("slick-header-column-active");var s=null,c=null;if(l.each((function(e,o){e>=columns.length||(columns[e].previousWidth=$(o).outerWidth())})),options.forceFitColumns)for(s=0,c=0,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(null!==c&&(t.maxWidth?c+=t.maxWidth-t.previousWidth:c=null),s+=t.previousWidth-Math.max(t.minWidth||0,absoluteColumnMinWidth));var u=0,h=0;for(e=0;e<=d;e++)(t=columns[e]).resizable&&(null!==h&&(t.maxWidth?h+=t.maxWidth-t.previousWidth:h=null),u+=t.previousWidth-Math.max(t.minWidth||0,absoluteColumnMinWidth));null===s&&(s=1e5),null===u&&(u=1e5),null===c&&(c=1e5),null===h&&(h=1e5),i=n+Math.min(s,h),r=n-Math.min(u,c)})).on("drag",(function(l,a){columnResizeDragging=!0;var s,c,u=Math.min(i,Math.max(r,l.pageX))-n,h=0;if(u<0){for(c=u,e=d;e>=0;e–)(t=columns[e]).resizable&&(s=Math.max(t.minWidth||0,absoluteColumnMinWidth),c&&t.previousWidth+c<s?(c+=t.previousWidth-s,t.width=s):(t.width=t.previousWidth+c,c=0));for(o=0;o<=d;o++)t=columns[o],hasFrozenColumns()&&o>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0),hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width);else for(e=d+1;e<columns.length;e++)t=columns[e],hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0))}else{for(c=u,h=0,0,e=d;e>=0;e–)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0));for(o=0;o<=d;o++)t=columns[o],hasFrozenColumns()&&o>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(s=Math.max(t.minWidth||0,absoluteColumnMinWidth),c&&t.previousWidth+c<s?(c+=t.previousWidth-s,t.width=s):(t.width=t.previousWidth+c,c=0),hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width);else for(e=d+1;e<columns.length;e++)t=columns[e],hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width}hasFrozenColumns()&&h!=canvasWidthL&&($headerL.width(h+1e3),$paneHeaderR.css("left",h)),applyColumnHeaderWidths(),applyColumnGroupHeaderWidths(),options.syncColumnCellResize&&applyColumnWidths(),trigger(self.onColumnsDrag,{triggeredByColumn:$(this).parent().attr("id").replace(uid,""),resizeHandle:$(this)})})).on("dragend",(function(o,n){$(this).parent().removeClass("slick-header-column-active");var r,i=$(this).parent().attr("id").replace(uid,"");for(!0===trigger(self.onBeforeColumnsResize,{triggeredByColumn:i})&&(applyColumnHeaderWidths(),applyColumnGroupHeaderWidths()),e=0;e<columns.length;e++)t=columns[e],r=$(l[e]).outerWidth(),t.previousWidth!==r&&t.rerenderOnResize&&invalidateAllRows();updateCanvasWidth(!0),render(),trigger(self.onColumnsResized,{triggeredByColumn:i}),setTimeout((function(){columnResizeDragging=!1}),300)})))}))}function getVBoxDelta(e){var o=0;return e&&"function"==typeof e.css&&$.each(["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],(function(t,n){o+=parseFloat(e.css(n))||0})),o}function setFrozenOptions(){if(options.frozenColumn=options.frozenColumn>=0&&options.frozenColumn<columns.length?parseInt(options.frozenColumn):-1,options.frozenRow>-1){hasFrozenRows=!0,frozenRowsHeight=options.frozenRow*options.rowHeight;var e=getDataLength();actualFrozenRow=options.frozenBottom?e-options.frozenRow:options.frozenRow}else hasFrozenRows=!1}function setPaneVisibility(){hasFrozenColumns()?($paneHeaderR.show(),$paneTopR.show(),hasFrozenRows?($paneBottomL.show(),$paneBottomR.show()):($paneBottomR.hide(),$paneBottomL.hide())):($paneHeaderR.hide(),$paneTopR.hide(),$paneBottomR.hide(),hasFrozenRows?$paneBottomL.show():($paneBottomR.hide(),$paneBottomL.hide()))}function setOverflow(){$viewportTopL.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"scroll":hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"auto","overflow-y":options.alwaysShowVerticalScroll?"scroll":hasFrozenColumns()?"hidden":hasFrozenRows?"scroll":"auto"}),$viewportTopR.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"scroll":hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"auto","overflow-y":options.alwaysShowVerticalScroll?"scroll":(hasFrozenColumns(),hasFrozenRows?"scroll":"auto")}),$viewportBottomL.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"scroll":"auto":(hasFrozenRows&&options.alwaysAllowHorizontalScroll,"auto"),"overflow-y":options.alwaysShowVerticalScroll?"scroll":hasFrozenColumns()?"hidden":hasFrozenRows?"scroll":"auto"}),$viewportBottomR.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"scroll":"auto":(hasFrozenRows&&options.alwaysAllowHorizontalScroll,"auto"),"overflow-y":options.alwaysShowVerticalScroll?"scroll":(hasFrozenColumns(),"auto")}),options.viewportClass&&($viewportTopL.toggleClass(options.viewportClass,!0),$viewportTopR.toggleClass(options.viewportClass,!0),$viewportBottomL.toggleClass(options.viewportClass,!0),$viewportBottomR.toggleClass(options.viewportClass,!0))}function setScroller(){hasFrozenColumns()?($headerScrollContainer=$headerScrollerR,$headerRowScrollContainer=$headerRowScrollerR,$footerRowScrollContainer=$footerRowScrollerR,hasFrozenRows?options.frozenBottom?($viewportScrollContainerX=$viewportBottomR,$viewportScrollContainerY=$viewportTopR):$viewportScrollContainerX=$viewportScrollContainerY=$viewportBottomR:$viewportScrollContainerX=$viewportScrollContainerY=$viewportTopR):($headerScrollContainer=$headerScrollerL,$headerRowScrollContainer=$headerRowScrollerL,$footerRowScrollContainer=$footerRowScrollerL,hasFrozenRows?options.frozenBottom?($viewportScrollContainerX=$viewportBottomL,$viewportScrollContainerY=$viewportTopL):$viewportScrollContainerX=$viewportScrollContainerY=$viewportBottomL:$viewportScrollContainerX=$viewportScrollContainerY=$viewportTopL)}function measureCellPaddingAndBorder(){var e,o=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],t=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],n=$.fn.jquery.split(".");jQueryNewWidthBehaviour=1==n[0]&&n[1]>=8||n[0]>=2,e=$("<div class=’ui-state-default slick-header-column’ style=’visibility:hidden’>-</div>").appendTo($headers),headerColumnWidthDiff=headerColumnHeightDiff=0,"border-box"!=e.css("box-sizing")&&"border-box"!=e.css("-moz-box-sizing")&&"border-box"!=e.css("-webkit-box-sizing")&&($.each(o,(function(o,t){headerColumnWidthDiff+=parseFloat(e.css(t))||0})),$.each(t,(function(o,t){headerColumnHeightDiff+=parseFloat(e.css(t))||0}))),e.remove();var l=$("<div class=’slick-row’ />").appendTo($canvas);e=$("<div class=’slick-cell’ id=’’ style=’visibility:hidden’>-</div>").appendTo(l),cellWidthDiff=cellHeightDiff=0,"border-box"!=e.css("box-sizing")&&"border-box"!=e.css("-moz-box-sizing")&&"border-box"!=e.css("-webkit-box-sizing")&&($.each(o,(function(o,t){cellWidthDiff+=parseFloat(e.css(t))||0})),$.each(t,(function(o,t){cellHeightDiff+=parseFloat(e.css(t))||0}))),l.remove(),absoluteColumnMinWidth=Math.max(headerColumnWidthDiff,cellWidthDiff)}function createCssRules(){$style=$("<style type=’text/css’ rel=’stylesheet’ />").appendTo($("head"));for(var e=options.rowHeight-cellHeightDiff,o=["."+uid+" .slick-group-header-column { left: 1000px; }","."+uid+" .slick-header-column { left: 1000px; }","."+uid+" .slick-top-panel { height:"+options.topPanelHeight+"px; }","."+uid+" .slick-preheader-panel { height:"+options.preHeaderPanelHeight+"px; }","."+uid+" .slick-headerrow-columns { height:"+options.headerRowHeight+"px; }","."+uid+" .slick-footerrow-columns { height:"+options.footerRowHeight+"px; }","."+uid+" .slick-cell { height:"+e+"px; }","."+uid+" .slick-row { height:"+options.rowHeight+"px; }"],t=0;t<columns.length;t++)o.push("."+uid+" .l"+t+" { }"),o.push("."+uid+" .r"+t+" { }");$style[0].styleSheet?$style[0].styleSheet.cssText=o.join(" "):$style[0].appendChild(document.createTextNode(o.join(" ")))}function getColumnCssRules(e){var o;if(!stylesheet){var t=document.styleSheets;for(o=0;o<t.length;o++)if((t[o].ownerNode||t[o].owningElement)==$style[0]){stylesheet=t[o];break}if(!stylesheet)throw new Error("Cannot find stylesheet.");columnCssRulesL=[],columnCssRulesR=[];var n,l,r=stylesheet.cssRules||stylesheet.rules;for(o=0;o<r.length;o++){var i=r[o].selectorText;(n=/\.l\d+/.exec(i))?(l=parseInt(n[0].substr(2,n[0].length-2),10),columnCssRulesL[l]=r[o]):(n=/\.r\d+/.exec(i))&&(l=parseInt(n[0].substr(2,n[0].length-2),10),columnCssRulesR[l]=r[o])}}return{left:columnCssRulesL[e],right:columnCssRulesR[e]}}function removeCssRules(){$style.remove(),stylesheet=null}function destroy(){getEditorLock().cancelCurrentEdit(),trigger(self.onBeforeDestroy,{});for(var e=plugins.length;e–;)unregisterPlugin(plugins[e]);options.enableColumnReorder&&$headers.filter(":ui-sortable").sortable("destroy"),unbindAncestorScrollEvents(),$container.off(".slickgrid"),removeCssRules(),$canvas.off("draginit dragstart dragend drag"),$container.empty().removeClass(uid)}var canvas=null,canvas_context=null;function autosizeColumn(e,o){var t=e;if("number"==typeof e)t=columns[e];else if("string"==typeof e)for(var n=0;n<columns.length;n++)columns[n].Id===e&&(t=columns[n]);getColAutosizeWidth(t,$(getCanvasNode(0,0)),o)}function autosizeColumns(e,o){if((e=e||options.autosizeColsMode)!==Slick.GridAutosizeColsMode.LegacyForceFit&&e!==Slick.GridAutosizeColsMode.LegacyOff){if(e!==Slick.GridAutosizeColsMode.None){(canvas=document.createElement("canvas"))&&canvas.getContext&&(canvas_context=canvas.getContext("2d"));var t,n,l,r,i=$(getCanvasNode(0,0)),a=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW,s=0,d=0,c=0,u=0,h=0;for(t=0;t<columns.length;t++)getColAutosizeWidth(n=columns[t],i,o),h+=n.autoSize.autosizeMode===Slick.ColAutosizeMode.Locked?n.width:0,u+=n.autoSize.autosizeMode===Slick.ColAutosizeMode.Locked?n.width:n.minWidth,s+=n.autoSize.widthPx,d+=n.autoSize.sizeToRemaining?0:n.autoSize.widthPx,c+=n.autoSize.sizeToRemaining&&n.minWidth||0;var p=s-d;if(e===Slick.GridAutosizeColsMode.FitViewportToCols){var m=s+scrollbarDimensions.width;e=Slick.GridAutosizeColsMode.IgnoreViewport,options.viewportMaxWidthPx&&m>options.viewportMaxWidthPx?(m=options.viewportMaxWidthPx,e=Slick.GridAutosizeColsMode.FitColsToViewport):options.viewportMinWidthPx&&m<options.viewportMinWidthPx&&(m=options.viewportMinWidthPx,e=Slick.GridAutosizeColsMode.FitColsToViewport),$container.width(m)}if(e===Slick.GridAutosizeColsMode.FitColsToViewport)if(p>0&&d<a-c)for(t=0;t<columns.length;t++){var w=a-d;l=(n=columns[t]).autoSize.sizeToRemaining?w*n.autoSize.widthPx/p:n.autoSize.widthPx,n.rerenderOnResize&&n.width!=l&&(r=!0),n.width=l}else if(options.viewportSwitchToScrollModeWidthPercent&&d+c>a*options.viewportSwitchToScrollModeWidthPercent/100||u>a)e=Slick.GridAutosizeColsMode.IgnoreViewport;else{var v=d-h,f=a-h-c;for(t=0;t<columns.length;t++)l=(n=columns[t]).width,n.autoSize.autosizeMode!==Slick.ColAutosizeMode.Locked&&(n.autoSize.sizeToRemaining?l=n.minWidth:((l=f/v*n.autoSize.widthPx)<n.minWidth&&(l=n.minWidth),v-=n.autoSize.widthPx,f-=l)),n.rerenderOnResize&&n.width!=l&&(r=!0),n.width=l}if(e===Slick.GridAutosizeColsMode.IgnoreViewport)for(t=0;t<columns.length;t++)l=columns[t].autoSize.widthPx,columns[t].rerenderOnResize&&columns[t].width!=l&&(r=!0),columns[t].width=l;reRenderColumns(r)}}else legacyAutosizeColumns()}function LogColWidths(){for(var e="Col Widths:",o=0;o<columns.length;o++)e+=" "+columns[o].width;console.log(e)}function getColAutosizeWidth(e,o,t){var n=e.autoSize;if(n.widthPx=e.width,n.autosizeMode!==Slick.ColAutosizeMode.Locked&&n.autosizeMode!==Slick.ColAutosizeMode.Guide){var l=getDataLength();if(n.autosizeMode===Slick.ColAutosizeMode.ContentIntelligent){var r,i=n.colDataTypeOf;if(l>0){var a=getDataItem(0);a&&"object"===(i=typeof(r=a[e.field]))&&(r instanceof Date&&(i="date"),"undefined"!=typeof moment&&r instanceof moment&&(i="moment"))}"boolean"===i&&(n.colValueArray=[!0,!1]),"number"===i&&(n.valueFilterMode=Slick.ValueFilterMode.GetGreatestAndSub,n.rowSelectionMode=Slick.RowSelectionMode.AllRows),"string"===i&&(n.valueFilterMode=Slick.ValueFilterMode.GetLongestText,n.rowSelectionMode=Slick.RowSelectionMode.AllRows,n.allowAddlPercent=5),"date"===i&&(n.colValueArray=[new Date(2009,8,30,12,20,20)]),"moment"===i&&"undefined"!=typeof moment&&(n.colValueArray=[moment([2009,8,30,12,20,20])])}var s=getColContentSize(e,o,t);s=s*(n.allowAddlPercent?1+n.allowAddlPercent/100:1)+options.autosizeColPaddingPx,e.minWidth&&s<e.minWidth&&(s=e.minWidth),e.maxWidth&&s>e.maxWidth&&(s=e.maxWidth),n.widthPx=s}}function getColContentSize(e,o,t){var n,l=e.autoSize,r=1,i=0,a=0;if(l.ignoreHeaderText||(a=getColHeaderWidth(e)),l.colValueArray)return i=getColWidth(e,o,l.colValueArray),Math.max(a,i);var s=getData();s.getItems&&(s=s.getItems());var d=(t?l.rowSelectionModeOnInit:void 0)||l.rowSelectionMode;if(d===Slick.RowSelectionMode.FirstRow&&(s=s.slice(0,1)),d===Slick.RowSelectionMode.LastRow&&(s=s.slice(s.length-1,s.length)),d===Slick.RowSelectionMode.FirstNRows&&(s=s.slice(0,l.rowSelectionCount)),l.valueFilterMode===Slick.ValueFilterMode.DeDuplicate){var c={};for(u=0,n=s.length;u<n;u++)c[s[u][e.field]]=!0;if(Object.keys)s=Object.keys(c);else for(var u in s=[],c)s.push(u)}if(l.valueFilterMode===Slick.ValueFilterMode.GetGreatestAndSub){var h,p=0;for(u=0,n=s.length;u<n;u++)w=s[u][e.field],Math.abs(w)>p&&(h=w,p=Math.abs(w));h=""+h,s=[h=+(h=Array(h.length+1).join("9"))]}if(l.valueFilterMode===Slick.ValueFilterMode.GetLongestTextAndSub){var m=0;for(u=0,n=s.length;u<n;u++)((w=s[u][e.field])||"").length>m&&(m=w.length);w=Array(m+1).join("m"),r=options.autosizeTextAvgToMWidthRatio,s=[w]}if(l.valueFilterMode===Slick.ValueFilterMode.GetLongestText){m=0;var w,v=0;for(u=0,n=s.length;u<n;u++)((w=s[u][e.field])||"").length>m&&(m=w.length,v=u);s=[w=s[v][e.field]]}return i=getColWidth(e,o,s)*r,Math.max(a,i)}function getColWidth(e,o,t){var n=getColumnIndex(e.id),l=$(‘<div class="slick-row ui-widget-content"></div>’),r=$(‘<div class="slick-cell"></div>’);r.css({position:"absolute",visibility:"hidden","text-overflow":"initial","white-space":"nowrap"}),l.append(r),o.append(l);var i,a,s,d,c=0;return canvas_context&&e.autoSize.widthEvalMode===Slick.WidthEvalMode.CanvasTextSize?(canvas_context.font=r.css("font-size")+" "+r.css("font-family"),$(t).each((function(o,t){d=Array.isArray(t)?t[e.field]:t,(i=(a=""+d)?canvas_context.measureText(a).width:0)>c&&(c=i,s=a)})),r.html(s),i=r.outerWidth(),l.remove(),i):($(t).each((function(o,t){d=Array.isArray(t)?t[e.field]:t,applyFormatResultToCellNode(e.formatterOverride?e.formatterOverride(o,n,d,e,t):e.formatter?e.formatter(o,n,d,e,t):""+d,r[0]),(i=r.outerWidth())>c&&(c=i)})),l.remove(),c)}function getColHeaderWidth(e){var o=0,t=getUID()+e.id,n=document.getElementById(t),l=t+"_";if(n){var r=n.cloneNode(!0);r.id=l,r.style.cssText="position: absolute; visibility: hidden;right: auto;text-overflow: initial;white-space: nowrap;",n.parentNode.insertBefore(r,n),o=r.offsetWidth,r.parentNode.removeChild(r)}else{var i=getHeader(e);o=(n=$("<div class=’ui-state-default slick-header-column’ />").html("<span class=’slick-column-name’>"+e.name+"</span>").attr("id",l).css({position:"absolute",visibility:"hidden",right:"auto","text-overflow:":"initial","white-space":"nowrap"}).addClass(e.headerCssClass||"").appendTo(i))[0].offsetWidth,i[0].removeChild(n[0])}return o}function legacyAutosizeColumns(){var e,o,t,n=[],l=0,r=0,i=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW;for(e=0;e<columns.length;e++)o=columns[e],n.push(o.width),r+=o.width,o.resizable&&(l+=o.width-Math.max(o.minWidth,absoluteColumnMinWidth));for(t=r;r>i&&l;){var a=(r-i)/l;for(e=0;e<columns.length&&r>i;e++){o=columns[e];var s=n[e];if(!(!o.resizable||s<=o.minWidth||s<=absoluteColumnMinWidth)){var d=Math.max(o.minWidth,absoluteColumnMinWidth),c=Math.floor(a*(s-d))||1;r-=c=Math.min(c,s-d),l-=c,n[e]-=c}}if(t<=r)break;t=r}for(t=r;r<i;){var u=i/r;for(e=0;e<columns.length&&r<i;e++){o=columns[e];var h,p=n[e];r+=h=!o.resizable||o.maxWidth<=p?0:Math.min(Math.floor(u*p)-p,o.maxWidth-p||1e6)||1,n[e]+=r<=i?h:0}if(t>=r)break;t=r}var m=!1;for(e=0;e<columns.length;e++)columns[e].rerenderOnResize&&columns[e].width!=n[e]&&(m=!0),columns[e].width=n[e];reRenderColumns(m)}function reRenderColumns(e){applyColumnHeaderWidths(),applyColumnGroupHeaderWidths(),updateCanvasWidth(!0),trigger(self.onAutosizeColumns,{columns}),e&&(invalidateAllRows(),render())}function trigger(e,o,t){return t=t||new Slick.EventData,(o=o||{}).grid=self,e.notify(o,t,self)}function getEditorLock(){return options.editorLock}function getEditController(){return editController}function getColumnIndex(e){return columnsById[e]}function applyColumnGroupHeaderWidths(){if(treeColumns.hasDepth())for(var e=$groupHeadersL.length-1;e>=0;e–){treeColumns.getColumnsInDepth(e);$().add($groupHeadersL[e]).add($groupHeadersR[e]).each((function(e){var o=$(this),t=0;o.width(0===e?getHeadersWidthL():getHeadersWidthR()),o.children().each((function(){var e=$(this),n=$(this).data("column");n.width=0,n.columns.forEach((function(){var e=o.next().children(":eq("+t+++")");n.width+=e.outerWidth()})),e.width(n.width-headerColumnWidthDiff)}))}))}}function applyColumnHeaderWidths(){if(initialized){for(var e,o=0,t=$headers.children(),n=columns.length;o<n;o++)e=$(t[o]),jQueryNewWidthBehaviour?e.outerWidth()!==columns[o].width&&e.outerWidth(columns[o].width):e.width()!==columns[o].width-headerColumnWidthDiff&&e.width(columns[o].width-headerColumnWidthDiff);updateColumnCaches()}}function applyColumnWidths(){for(var e,o,t=0,n=0;n<columns.length;n++)e=columns[n].width,(o=getColumnCssRules(n)).left.style.left=t+"px",o.right.style.right=(-1!=options.frozenColumn&&n>options.frozenColumn?canvasWidthR:canvasWidthL)-t-e+"px",options.frozenColumn==n?t=0:t+=columns[n].width}function setSortColumn(e,o){setSortColumns([{columnId:e,sortAsc:o}])}function setSortColumns(e){sortColumns=e;var o=options.numberedMultiColumnSort&&sortColumns.length>1,t=$headers.children();t.removeClass("slick-header-column-sorted").find(".slick-sort-indicator").removeClass("slick-sort-indicator-asc slick-sort-indicator-desc"),t.find(".slick-sort-indicator-numbered").text(""),$.each(sortColumns,(function(e,n){null==n.sortAsc&&(n.sortAsc=!0);var l=getColumnIndex(n.columnId);null!=l&&(t.eq(l).addClass("slick-header-column-sorted").find(".slick-sort-indicator").addClass(n.sortAsc?"slick-sort-indicator-asc":"slick-sort-indicator-desc"),o&&t.eq(l).find(".slick-sort-indicator-numbered").text(e+1))}))}function getSortColumns(){return sortColumns}function handleSelectedRangesChanged(e,o){var t=selectedRows.slice(0);selectedRows=[];for(var n={},l=0;l<o.length;l++)for(var r=o[l].fromRow;r<=o[l].toRow;r++){n[r]||(selectedRows.push(r),n[r]={});for(var i=o[l].fromCell;i<=o[l].toCell;i++)canCellBeSelected(r,i)&&(n[r][columns[i].id]=options.selectedCellCssClass)}setCellCssStyles(options.selectedCellCssClass,n),simpleArrayEquals(t,selectedRows)&&trigger(self.onSelectedRowsChanged,{rows:getSelectedRows(),previousSelectedRows:t},e)}function simpleArrayEquals(e,o){return Array.isArray(e)&&Array.isArray(o)&&o.sort().toString()!==e.sort().toString()}function getColumns(){return columns}function updateColumnCaches(){columnPosLeft=[],columnPosRight=[];for(var e=0,o=0,t=columns.length;o<t;o++)columnPosLeft[o]=e,columnPosRight[o]=e+columns[o].width,options.frozenColumn==o?e=0:e+=columns[o].width}function updateColumnProps(){columnsById={};for(var e=0;e<columns.length;e++){columns[e].width&&(columns[e].widthRequest=columns[e].width);var o=columns[e]=$.extend({},columnDefaults,columns[e]);o.autoSize=$.extend({},columnAutosizeDefaults,o.autoSize),columnsById[o.id]=e,o.minWidth&&o.width<o.minWidth&&(o.width=o.minWidth),o.maxWidth&&o.width>o.maxWidth&&(o.width=o.maxWidth),o.resizable}}function setColumns(e){var o=new Slick.TreeColumns(e);columns=o.hasDepth()?(treeColumns=o).extractColumns():e,updateColumnProps(),updateColumnCaches(),initialized&&(setPaneVisibility(),setOverflow(),invalidateAllRows(),createColumnHeaders(),createColumnGroupHeaders(),createColumnFooter(),removeCssRules(),createCssRules(),resizeCanvas(),updateCanvasWidth(),applyColumnHeaderWidths(),applyColumnWidths(),handleScroll())}function getOptions(){return options}function setOptions(e,o){if(getEditorLock().commitCurrentEdit()){makeActiveCellNormal(),void 0!==e.showColumnHeader&&setColumnHeaderVisibility(e.showColumnHeader),options.enableAddRow!==e.enableAddRow&&invalidateRow(getDataLength());var t=$.extend(!0,{},options);options=$.extend(options,e),trigger(self.onSetOptions,{optionsBefore:t,optionsAfter:options}),validateAndEnforceOptions(),$viewport.css("overflow-y",options.autoHeight?"hidden":"auto"),o||render(),setFrozenOptions(),setScroller(),zombieRowNodeFromLastMouseWheelEvent=null,setColumns(treeColumns.extractColumns())}}function validateAndEnforceOptions(){options.autoHeight&&(options.leaveSpaceForNewRows=!1),options.forceFitColumns&&(options.autosizeColsMode=Slick.GridAutosizeColsMode.LegacyForceFit,console.log("forceFitColumns option is deprecated - use autosizeColsMode"))}function setData(e,o){data=e,invalidateAllRows(),updateRowCount(),o&&scrollTo(0)}function getData(){return data}function getDataLength(){return data.getLength?data.getLength():data&&data.length||0}function getDataLengthIncludingAddNew(){return getDataLength()+(options.enableAddRow&&(!pagingActive||pagingIsLastPage)?1:0)}function getDataItem(e){return data.getItem?data.getItem(e):data[e]}function getTopPanel(){return $topPanel[0]}function setTopPanelVisibility(e,o){var t=!1!==o;options.showTopPanel!=e&&(options.showTopPanel=e,e?t?$topPanelScroller.slideDown("fast",resizeCanvas):($topPanelScroller.show(),resizeCanvas()):t?$topPanelScroller.slideUp("fast",resizeCanvas):($topPanelScroller.hide(),resizeCanvas()))}function setHeaderRowVisibility(e,o){var t=!1!==o;options.showHeaderRow!=e&&(options.showHeaderRow=e,e?t?$headerRowScroller.slideDown("fast",resizeCanvas):($headerRowScroller.show(),resizeCanvas()):t?$headerRowScroller.slideUp("fast",resizeCanvas):($headerRowScroller.hide(),resizeCanvas()))}function setColumnHeaderVisibility(e,o){options.showColumnHeader!=e&&(options.showColumnHeader=e,e?o?$headerScroller.slideDown("fast",resizeCanvas):($headerScroller.show(),resizeCanvas()):o?$headerScroller.slideUp("fast",resizeCanvas):($headerScroller.hide(),resizeCanvas()))}function setFooterRowVisibility(e,o){var t=!1!==o;options.showFooterRow!=e&&(options.showFooterRow=e,e?t?$footerRowScroller.slideDown("fast",resizeCanvas):($footerRowScroller.show(),resizeCanvas()):t?$footerRowScroller.slideUp("fast",resizeCanvas):($footerRowScroller.hide(),resizeCanvas()))}function setPreHeaderPanelVisibility(e,o){var t=!1!==o;options.showPreHeaderPanel!=e&&(options.showPreHeaderPanel=e,e?t?$preHeaderPanelScroller.slideDown("fast",resizeCanvas):($preHeaderPanelScroller.show(),resizeCanvas()):t?$preHeaderPanelScroller.slideUp("fast",resizeCanvas):($preHeaderPanelScroller.hide(),resizeCanvas()))}function getContainerNode(){return $container.get(0)}function getRowTop(e){return options.rowHeight*e-offset}function getRowFromPosition(e){return Math.floor((e+offset)/options.rowHeight)}function scrollTo(e){e=Math.max(e,0),e=Math.min(e,th-$viewportScrollContainerY.height()+(viewportHasHScroll||hasFrozenColumns()?scrollbarDimensions.height:0));var o=offset;page=Math.min(n-1,Math.floor(e/ph));var t=e-(offset=Math.round(page*cj));offset!=o&&(cleanupRows(getVisibleRange(t)),updateRowPositions());prevScrollTop!=t&&(vScrollDir=prevScrollTop+o<t+offset?1:-1,lastRenderedScrollTop=scrollTop=prevScrollTop=t,hasFrozenColumns()&&($viewportTopL[0].scrollTop=t),hasFrozenRows&&($viewportBottomL[0].scrollTop=$viewportBottomR[0].scrollTop=t),$viewportScrollContainerY[0].scrollTop=t,trigger(self.onViewportChanged,{}))}function defaultFormatter(e,o,t,n,l,r){return null==t?"":(t+"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}function getFormatter(e,o){var t=data.getItemMetadata&&data.getItemMetadata(e),n=t&&t.columns&&(t.columns[o.id]||t.columns[getColumnIndex(o.id)]);return n&&n.formatter||t&&t.formatter||o.formatter||options.formatterFactory&&options.formatterFactory.getFormatter(o)||options.defaultFormatter}function callFormatter(e,o,t,n,l,r){var i,a=data.getItemMetadata&&data.getItemMetadata(e);if(a=a&&a.columns){var s=a[n.id]||a[o];i=getFormatter(e,n)(e,o,t,n,l,s)}else i=getFormatter(e,n)(e,o,t,n,l);return i}function getEditor(e,o){var t=columns[o],n=data.getItemMetadata&&data.getItemMetadata(e),l=n&&n.columns;return l&&l[t.id]&&void 0!==l[t.id].editor?l[t.id].editor:l&&l[o]&&void 0!==l[o].editor?l[o].editor:t.editor||options.editorFactory&&options.editorFactory.getEditor(t)}function getDataItemValueForColumn(e,o){return options.dataItemColumnValueExtractor?options.dataItemColumnValueExtractor(e,o):e[o.field]}function appendRowHtml(e,o,t,n,l){var r=getDataItem(t),i=t<l&&!r,a="slick-row"+(hasFrozenRows&&t<=options.frozenRow?" frozen":"")+(i?" loading":"")+(t===activeRow&&options.showCellSelection?" active":"")+(t%2==1?" odd":" even");r||(a+=" "+options.addNewRowCssClass);var s=data.getItemMetadata&&data.getItemMetadata(t);s&&s.cssClasses&&(a+=" "+s.cssClasses);var d,c,u=getFrozenRowOffset(t),h="<div class=’ui-widget-content "+a+"’ style=’top:"+(getRowTop(t)-u)+"px’>";e.push(h),hasFrozenColumns()&&o.push(h);for(var p=0,m=columns.length;p<m;p++){if(c=columns[p],d=1,s&&s.columns){var w=s.columns[c.id]||s.columns[p];""===(d=w&&w.colspan||1)&&(d=m-p)}if(columnPosRight[Math.min(m-1,p+d-1)]>n.leftPx){if(!c.alwaysRenderColumn&&columnPosLeft[p]>n.rightPx)break;hasFrozenColumns()&&p>options.frozenColumn?appendCellHtml(o,t,p,d,r):appendCellHtml(e,t,p,d,r)}else(c.alwaysRenderColumn||hasFrozenColumns()&&p<=options.frozenColumn)&&appendCellHtml(e,t,p,d,r);d>1&&(p+=d-1)}e.push("</div>"),hasFrozenColumns()&&o.push("</div>")}function appendCellHtml(e,o,t,n,l){var r=columns[t],i="slick-cell l"+t+" r"+Math.min(columns.length-1,t+n-1)+(r.cssClass?" "+r.cssClass:"");for(var a in hasFrozenColumns()&&t<=options.frozenColumn&&(i+=" frozen"),o===activeRow&&t===activeCell&&options.showCellSelection&&(i+=" active"),cellCssClasses)cellCssClasses[a][o]&&cellCssClasses[a][o][r.id]&&(i+=" "+cellCssClasses[a][o][r.id]);var s=null,d="";l&&(s=getDataItemValueForColumn(l,r),null==(d=getFormatter(o,r)(o,t,s,r,l,self))&&(d=""));var c=trigger(self.onBeforeAppendCell,{row:o,cell:t,value:s,dataContext:l})||"";c+=d&&d.addClasses?(c?" ":"")+d.addClasses:"";var u=d&&d.toolTip?"title=’"+d.toolTip+"’":"",h="";if(r.hasOwnProperty("cellAttrs")&&r.cellAttrs instanceof Object)for(var a in r.cellAttrs)r.cellAttrs.hasOwnProperty(a)&&(h+=" "+a+’="’+r.cellAttrs[a]+’" ‘);e.push("<div class=’"+i+(c?" "+c:"")+"’ "+u+h+">"),l&&e.push("[object Object]"!==Object.prototype.toString.call(d)?d:d.text),e.push("</div>"),rowsCache[o].cellRenderQueue.push(t),rowsCache[o].cellColSpans[t]=n}function cleanupRows(e){for(var o in rowsCache){var t=!0;hasFrozenRows&&(options.frozenBottom&&o>=actualFrozenRow||!options.frozenBottom&&o<=actualFrozenRow)&&(t=!1),(o=parseInt(o,10))!==activeRow&&(o<e.top||o>e.bottom)&&t&&removeRowFromCache(o)}options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}function invalidate(){updateRowCount(),invalidateAllRows(),render()}function invalidateAllRows(){for(var e in currentEditor&&makeActiveCellNormal(),rowsCache)removeRowFromCache(e);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}function queuePostProcessedRowForCleanup(e,o,t){for(var n in postProcessgroupId++,o)o.hasOwnProperty(n)&&postProcessedCleanupQueue.push({actionType:"C",groupId:postProcessgroupId,node:e.cellNodesByColumnIdx[0|n],columnIdx:0|n,rowIdx:t});postProcessedCleanupQueue.push({actionType:"R",groupId:postProcessgroupId,node:e.rowNode}),$(e.rowNode).detach()}function queuePostProcessedCellForCleanup(e,o,t){postProcessedCleanupQueue.push({actionType:"C",groupId:postProcessgroupId,node:e,columnIdx:o,rowIdx:t}),$(e).detach()}function removeRowFromCache(e){var o=rowsCache[e];o&&(rowNodeFromLastMouseWheelEvent==o.rowNode[0]||hasFrozenColumns()&&rowNodeFromLastMouseWheelEvent==o.rowNode[1]?(o.rowNode.hide(),zombieRowNodeFromLastMouseWheelEvent=o.rowNode):o.rowNode.each((function(){this.parentElement.removeChild(this)})),delete rowsCache[e],delete postProcessedRows[e],renderedRows–,counter_rows_removed++)}function invalidateRows(e){var o,t;if(e&&e.length){for(vScrollDir=0,t=e.length,o=0;o<t;o++)currentEditor&&activeRow===e[o]&&makeActiveCellNormal(),rowsCache[e[o]]&&removeRowFromCache(e[o]);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}}function invalidateRow(e){(e||0===e)&&invalidateRows([e])}function applyFormatResultToCellNode(e,o,t){null==e&&(e=""),"[object Object]"===Object.prototype.toString.call(e)?(o.innerHTML=e.text,e.removeClasses&&!t&&$(o).removeClass(e.removeClasses),e.addClasses&&$(o).addClass(e.addClasses),e.toolTip&&$(o).attr("title",e.toolTip)):o.innerHTML=e}function updateCell(e,o){var t=getCellNode(e,o);if(t){var n=columns[o],l=getDataItem(e);if(currentEditor&&activeRow===e&&activeCell===o)currentEditor.loadValue(l);else applyFormatResultToCellNode(l?getFormatter(e,n)(e,o,getDataItemValueForColumn(l,n),n,l,self):"",t),invalidatePostProcessingResults(e)}}function updateRow(e){var o=rowsCache[e];if(o){ensureCellNodesInRowsCache(e);var t=getDataItem(e);for(var n in o.cellNodesByColumnIdx)if(o.cellNodesByColumnIdx.hasOwnProperty(n)){var l=columns[n|=0],r=o.cellNodesByColumnIdx[n][0];e===activeRow&&n===activeCell&¤tEditor?currentEditor.loadValue(t):t?applyFormatResultToCellNode(getFormatter(e,l)(e,n,getDataItemValueForColumn(t,l),l,t,self),r):r.innerHTML=""}invalidatePostProcessingResults(e)}}function getViewportHeight(){if(options.autoHeight&&-1==options.frozenColumn||(topPanelH=options.showTopPanel?options.topPanelHeight+getVBoxDelta($topPanelScroller):0,headerRowH=options.showHeaderRow?options.headerRowHeight+getVBoxDelta($headerRowScroller):0,footerRowH=options.showFooterRow?options.footerRowHeight+getVBoxDelta($footerRowScroller):0),options.autoHeight){var e=$paneHeaderL.outerHeight();e+=options.showHeaderRow?options.headerRowHeight+getVBoxDelta($headerRowScroller):0,e+=options.showFooterRow?options.footerRowHeight+getVBoxDelta($footerRowScroller):0,e+=getCanvasWidth()>viewportW?scrollbarDimensions.height:0,viewportH=options.rowHeight*getDataLengthIncludingAddNew()+(-1==options.frozenColumn?e:0)}else{var o=options.showColumnHeader?parseFloat($.css($headerScroller[0],"height"))+getVBoxDelta($headerScroller):0,t=options.createPreHeaderPanel&&options.showPreHeaderPanel?options.preHeaderPanelHeight+getVBoxDelta($preHeaderPanelScroller):0;viewportH=parseFloat($.css($container[0],"height",!0))-parseFloat($.css($container[0],"paddingTop",!0))-parseFloat($.css($container[0],"paddingBottom",!0))-o-topPanelH-headerRowH-footerRowH-t}return numVisibleRows=Math.ceil(viewportH/options.rowHeight),viewportH}function getViewportWidth(){viewportW=parseFloat($container.width())}function resizeCanvas(){if(initialized){paneTopH=0,paneBottomH=0,viewportTopH=0,viewportBottomH=0,getViewportWidth(),getViewportHeight(),hasFrozenRows?options.frozenBottom?(paneTopH=viewportH-frozenRowsHeight-scrollbarDimensions.height,paneBottomH=frozenRowsHeight+scrollbarDimensions.height):(paneTopH=frozenRowsHeight,paneBottomH=viewportH-frozenRowsHeight):paneTopH=viewportH,paneTopH+=topPanelH+headerRowH+footerRowH,hasFrozenColumns()&&options.autoHeight&&(paneTopH+=scrollbarDimensions.height),viewportTopH=paneTopH-topPanelH-headerRowH-footerRowH,options.autoHeight&&(hasFrozenColumns()&&$container.height(paneTopH+parseFloat($.css($headerScrollerL[0],"height"))),$paneTopL.css("position","relative")),$paneTopL.css({top:$paneHeaderL.height(),height:paneTopH});var e=$paneTopL.position().top+paneTopH;options.autoHeight||$viewportTopL.height(viewportTopH),hasFrozenColumns()?($paneTopR.css({top:$paneHeaderL.height(),height:paneTopH}),$viewportTopR.height(viewportTopH),hasFrozenRows&&($paneBottomL.css({top:e,height:paneBottomH}),$paneBottomR.css({top:e,height:paneBottomH}),$viewportBottomR.height(paneBottomH))):hasFrozenRows&&($paneBottomL.css({width:"100%",height:paneBottomH}),$paneBottomL.css("top",e)),hasFrozenRows?($viewportBottomL.height(paneBottomH),options.frozenBottom?($canvasBottomL.height(frozenRowsHeight),hasFrozenColumns()&&$canvasBottomR.height(frozenRowsHeight)):($canvasTopL.height(frozenRowsHeight),hasFrozenColumns()&&$canvasTopR.height(frozenRowsHeight))):$viewportTopR.height(viewportTopH),scrollbarDimensions&&scrollbarDimensions.width||(scrollbarDimensions=measureScrollbar()),options.autosizeColsMode===Slick.GridAutosizeColsMode.LegacyForceFit&&autosizeColumns(),updateRowCount(),handleScroll(),lastRenderedScrollLeft=-1,render()}}function updatePagingStatusFromView(e){pagingActive=0!==e.pageSize,pagingIsLastPage=e.pageNum==e.totalPages-1}function updateRowCount(){if(initialized){var e=getDataLength(),o=getDataLengthIncludingAddNew(),t=0,l=hasFrozenRows&&!options.frozenBottom?$canvasBottomL.height():$canvasTopL.height();if(hasFrozenRows)t=getDataLength()-options.frozenRow;else t=o+(options.leaveSpaceForNewRows?numVisibleRows-1:0);var r=$viewportScrollContainerY.height(),i=viewportHasVScroll;viewportHasVScroll=options.alwaysShowVerticalScroll||!options.autoHeight&&t*options.rowHeight>r,makeActiveCellNormal();var a=e-1;for(var s in rowsCache)s>a&&removeRowFromCache(s);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup(),activeCellNode&&activeRow>a&&resetActiveCell();l=h;options.autoHeight?h=options.rowHeight*t:(th=Math.max(options.rowHeight*t,r-scrollbarDimensions.height))<maxSupportedCssHeight?(h=ph=th,n=1,cj=0):(ph=(h=maxSupportedCssHeight)/100,n=Math.floor(th/ph),cj=(th-h)/(n-1)),h!==l&&(hasFrozenRows&&!options.frozenBottom?($canvasBottomL.css("height",h),hasFrozenColumns()&&$canvasBottomR.css("height",h)):($canvasTopL.css("height",h),$canvasTopR.css("height",h)),scrollTop=$viewportScrollContainerY[0].scrollTop);var d=scrollTop+offset<=th-r;0==th||0==scrollTop?page=offset=0:scrollTo(d?scrollTop+offset:th-r),h!=l&&options.autoHeight&&resizeCanvas(),options.autosizeColsMode===Slick.GridAutosizeColsMode.LegacyForceFit&&i!=viewportHasVScroll&&autosizeColumns(),updateCanvasWidth(!1)}}function getVisibleRange(e,o){return null==e&&(e=scrollTop),null==o&&(o=scrollLeft),{top:getRowFromPosition(e),bottom:getRowFromPosition(e+viewportH)+1,leftPx:o,rightPx:o+viewportW}}function getRenderedRange(e,o){var t=getVisibleRange(e,o),n=Math.round(viewportH/options.rowHeight),l=options.minRowBuffer;return-1==vScrollDir?(t.top-=n,t.bottom+=l):1==vScrollDir?(t.top-=l,t.bottom+=n):(t.top-=l,t.bottom+=l),t.top=Math.max(0,t.top),t.bottom=Math.min(getDataLengthIncludingAddNew()-1,t.bottom),t.leftPx-=viewportW,t.rightPx+=viewportW,t.leftPx=Math.max(0,t.leftPx),t.rightPx=Math.min(canvasWidth,t.rightPx),t}function ensureCellNodesInRowsCache(e){var o=rowsCache[e];if(o&&o.cellRenderQueue.length)for(var t=o.rowNode.children().last();o.cellRenderQueue.length;){var n=o.cellRenderQueue.pop();o.cellNodesByColumnIdx[n]=t,0===(t=t.prev()).length&&(t=$(o.rowNode[0]).children().last())}}function cleanUpCells(e,o){if(!hasFrozenRows||!(options.frozenBottom&&o>actualFrozenRow||o<=actualFrozenRow)){var t,n=rowsCache[o],l=[];for(var r in n.cellNodesByColumnIdx)if(n.cellNodesByColumnIdx.hasOwnProperty(r)&&!((r|=0)<=options.frozenColumn||Array.isArray(columns)&&columns[r]&&columns[r].alwaysRenderColumn)){var i=n.cellColSpans[r];(columnPosLeft[r]>e.rightPx||columnPosRight[Math.min(columns.length-1,r+i-1)]<e.leftPx)&&(o==activeRow&&r==activeCell||l.push(r))}for(;null!=(t=l.pop());)n.cellNodesByColumnIdx[t][0].parentElement.removeChild(n.cellNodesByColumnIdx[t][0]),delete n.cellColSpans[t],delete n.cellNodesByColumnIdx[t],postProcessedRows[o]&&delete postProcessedRows[o][t]}}function cleanUpAndRenderCells(e){for(var o,t,n,l=[],r=[],i=e.top,a=e.bottom;i<=a;i++)if(o=rowsCache[i]){ensureCellNodesInRowsCache(i),cleanUpCells(e,i),t=0;var s=data.getItemMetadata&&data.getItemMetadata(i);s=s&&s.columns;for(var d=getDataItem(i),c=0,u=columns.length;c<u&&!(columnPosLeft[c]>e.rightPx);c++)if(null==(n=o.cellColSpans[c])){if(n=1,s){var h=s[columns[c].id]||s[c];""===(n=h&&h.colspan||1)&&(n=u-c)}columnPosRight[Math.min(u-1,c+n-1)]>e.leftPx&&(appendCellHtml(l,i,c,n,d),t++),c+=n>1?n-1:0}else c+=n>1?n-1:0;t&&(t,r.push(i))}if(l.length){var p,m,w=document.createElement("div");for(w.innerHTML=l.join("");null!=(p=r.pop());){var v;for(o=rowsCache[p];null!=(v=o.cellRenderQueue.pop());)m=w.lastChild,hasFrozenColumns()&&v>options.frozenColumn?o.rowNode[1].appendChild(m):o.rowNode[0].appendChild(m),o.cellNodesByColumnIdx[v]=$(m)}}}function renderRows(e){for(var o=[],t=[],n=[],l=!1,r=getDataLength(),i=e.top,a=e.bottom;i<=a;i++)rowsCache[i]||hasFrozenRows&&options.frozenBottom&&i==getDataLength()||(renderedRows++,n.push(i),rowsCache[i]={rowNode:null,cellColSpans:[],cellNodesByColumnIdx:[],cellRenderQueue:[]},appendRowHtml(o,t,i,e,r),activeCellNode&&activeRow===i&&(l=!0),counter_rows_rendered++);if(n.length){var s=document.createElement("div"),d=document.createElement("div");s.innerHTML=o.join(""),d.innerHTML=t.join("");for(i=0,a=n.length;i<a;i++)hasFrozenRows&&n[i]>=actualFrozenRow?hasFrozenColumns()?rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasBottomL)).add($(d.firstChild).appendTo($canvasBottomR)):rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasBottomL)):hasFrozenColumns()?rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasTopL)).add($(d.firstChild).appendTo($canvasTopR)):rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasTopL));l&&(activeCellNode=getCellNode(activeRow,activeCell))}}function startPostProcessing(){options.enableAsyncPostRender&&(clearTimeout(h_postrender),h_postrender=setTimeout(asyncPostProcessRows,options.asyncPostRenderDelay))}function startPostProcessingCleanup(){options.enableAsyncPostRenderCleanup&&(clearTimeout(h_postrenderCleanup),h_postrenderCleanup=setTimeout(asyncPostProcessCleanupRows,options.asyncPostRenderCleanupDelay))}function invalidatePostProcessingResults(e){for(var o in postProcessedRows[e])postProcessedRows[e].hasOwnProperty(o)&&(postProcessedRows[e][o]="C");postProcessFromRow=Math.min(postProcessFromRow,e),postProcessToRow=Math.max(postProcessToRow,e),startPostProcessing()}function updateRowPositions(){for(var e in rowsCache){var o=e?parseInt(e):0;rowsCache[o].rowNode[0].style.top=getRowTop(o)+"px"}}function render(){if(initialized){scrollThrottle.dequeue();var e=getVisibleRange(),o=getRenderedRange();if(cleanupRows(o),lastRenderedScrollLeft!=scrollLeft){if(hasFrozenRows){var t=$.extend(!0,{},o);options.frozenBottom?(t.top=actualFrozenRow,t.bottom=getDataLength()):(t.top=0,t.bottom=options.frozenRow),cleanUpAndRenderCells(t)}cleanUpAndRenderCells(o)}renderRows(o),hasFrozenRows&&(options.frozenBottom?renderRows({top:actualFrozenRow,bottom:getDataLength()-1,leftPx:o.leftPx,rightPx:o.rightPx}):renderRows({top:0,bottom:options.frozenRow-1,leftPx:o.leftPx,rightPx:o.rightPx})),postProcessFromRow=e.top,postProcessToRow=Math.min(getDataLengthIncludingAddNew()-1,e.bottom),startPostProcessing(),lastRenderedScrollTop=scrollTop,lastRenderedScrollLeft=scrollLeft,h_render=null,trigger(self.onRendered,{startRow:e.top,endRow:e.bottom,grid:self})}}function handleHeaderScroll(){handleElementScroll($headerScrollContainer[0])}function handleHeaderRowScroll(){var e=$headerRowScrollContainer[0].scrollLeft;e!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=e)}function handleFooterRowScroll(){var e=$footerRowScrollContainer[0].scrollLeft;e!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=e)}function handlePreHeaderPanelScroll(){handleElementScroll($preHeaderPanelScroller[0])}function handleElementScroll(e){var o=e.scrollLeft;o!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=o)}function handleScroll(){return scrollTop=$viewportScrollContainerY[0].scrollTop,scrollLeft=$viewportScrollContainerX[0].scrollLeft,_handleScroll(!1)}function _handleScroll(e){var o=$viewportScrollContainerY[0].scrollHeight-$viewportScrollContainerY[0].clientHeight,t=$viewportScrollContainerY[0].scrollWidth-$viewportScrollContainerY[0].clientWidth;o=Math.max(0,o),t=Math.max(0,t),scrollTop>o&&(scrollTop=o),scrollLeft>t&&(scrollLeft=t);var l=Math.abs(scrollTop-prevScrollTop),r=Math.abs(scrollLeft-prevScrollLeft);if(r&&(prevScrollLeft=scrollLeft,$viewportScrollContainerX[0].scrollLeft=scrollLeft,$headerScrollContainer[0].scrollLeft=scrollLeft,$topPanelScroller[0].scrollLeft=scrollLeft,$headerRowScrollContainer[0].scrollLeft=scrollLeft,options.createFooterRow&&($footerRowScrollContainer[0].scrollLeft=scrollLeft),options.createPreHeaderPanel&&(hasFrozenColumns()?$preHeaderPanelScrollerR[0].scrollLeft=scrollLeft:$preHeaderPanelScroller[0].scrollLeft=scrollLeft),hasFrozenColumns()?hasFrozenRows&&($viewportTopR[0].scrollLeft=scrollLeft):hasFrozenRows&&($viewportTopL[0].scrollLeft=scrollLeft)),l)if(vScrollDir=prevScrollTop<scrollTop?1:-1,prevScrollTop=scrollTop,e&&($viewportScrollContainerY[0].scrollTop=scrollTop),hasFrozenColumns()&&(hasFrozenRows&&!options.frozenBottom?$viewportBottomL[0].scrollTop=scrollTop:$viewportTopL[0].scrollTop=scrollTop),l<viewportH)scrollTo(scrollTop+offset);else{var i=offset;page=h==viewportH?0:Math.min(n-1,Math.floor(scrollTop*((th-viewportH)/(h-viewportH))*(1/ph))),i!=(offset=Math.round(page*cj))&&invalidateAllRows()}if(r||l){var a=Math.abs(lastRenderedScrollLeft-scrollLeft),s=Math.abs(lastRenderedScrollTop-scrollTop);(a>20||s>20)&&(options.forceSyncScrolling||s<viewportH&&a<viewportW?render():scrollThrottle.enqueue(),trigger(self.onViewportChanged,{}))}return trigger(self.onScroll,{scrollLeft,scrollTop}),!(!r&&!l)}function ActionThrottle(e,o){var t=!1,n=!1;function l(){n=!1}function r(){t=!0,setTimeout(i,o),e()}function i(){n?(l(),r()):t=!1}return{enqueue:function(){t?n=!0:r()},dequeue:l}}function asyncPostProcessRows(){for(var e=getDataLength();postProcessFromRow<=postProcessToRow;){var o=vScrollDir>=0?postProcessFromRow++:postProcessToRow–,t=rowsCache[o];if(t&&!(o>=e)){for(var n in postProcessedRows[o]||(postProcessedRows[o]={}),ensureCellNodesInRowsCache(o),t.cellNodesByColumnIdx)if(t.cellNodesByColumnIdx.hasOwnProperty(n)){var l=columns[n|=0],r=postProcessedRows[o][n];if(l.asyncPostRender&&"R"!==r){var i=t.cellNodesByColumnIdx[n];i&&l.asyncPostRender(i,o,getDataItem(o),l,"C"===r),postProcessedRows[o][n]="R"}}return void(h_postrender=setTimeout(asyncPostProcessRows,options.asyncPostRenderDelay))}}}function asyncPostProcessCleanupRows(){if(postProcessedCleanupQueue.length>0){for(var e=postProcessedCleanupQueue[0].groupId;postProcessedCleanupQueue.length>0&&postProcessedCleanupQueue[0].groupId==e;){var o=postProcessedCleanupQueue.shift();if("R"==o.actionType&&$(o.node).remove(),"C"==o.actionType){var t=columns[o.columnIdx];t.asyncPostRenderCleanup&&o.node&&t.asyncPostRenderCleanup(o.node,o.rowIdx,t)}}h_postrenderCleanup=setTimeout(asyncPostProcessCleanupRows,options.asyncPostRenderCleanupDelay)}}function updateCellCssStylesOnRenderedRows(e,o){var t,n,l,r;for(var i in rowsCache){if(r=o&&o[i],l=e&&e[i],r)for(n in r)l&&r[n]==l[n]||(t=getCellNode(i,getColumnIndex(n)))&&$(t).removeClass(r[n]);if(l)for(n in l)r&&r[n]==l[n]||(t=getCellNode(i,getColumnIndex(n)))&&$(t).addClass(l[n])}}function addCellCssStyles(e,o){if(cellCssClasses[e])throw new Error("addCellCssStyles: cell CSS hash with key ‘"+e+"’ already exists.");cellCssClasses[e]=o,updateCellCssStylesOnRenderedRows(o,null),trigger(self.onCellCssStylesChanged,{key:e,hash:o,grid:self})}function removeCellCssStyles(e){cellCssClasses[e]&&(updateCellCssStylesOnRenderedRows(null,cellCssClasses[e]),delete cellCssClasses[e],trigger(self.onCellCssStylesChanged,{key:e,hash:null,grid:self}))}function setCellCssStyles(e,o){var t=cellCssClasses[e];cellCssClasses[e]=o,updateCellCssStylesOnRenderedRows(o,t),trigger(self.onCellCssStylesChanged,{key:e,hash:o,grid:self})}function getCellCssStyles(e){return cellCssClasses[e]}function flashCell(e,o,t){(t=t||100,rowsCache[e])&&function e(o,n){n&&setTimeout((function(){o.queue((function(){o.toggleClass(options.cellFlashingCssClass).dequeue(),e(o,n-1)}))}),t)}($(getCellNode(e,o)),4)}function handleMouseWheel(e,o,t,n){var l=$(e.target).closest(".slick-row"),r=l[0];if(r!=rowNodeFromLastMouseWheelEvent){var i=l.parents(".grid-canvas").hasClass("grid-canvas-left");if(zombieRowNodeFromLastMouseWheelEvent&&zombieRowNodeFromLastMouseWheelEvent[i?0:1]!=r){var a=zombieRowNodeFromLastMouseWheelEvent[i||1==zombieRowNodeFromLastMouseWheelEvent.length?0:1];a.parentElement.removeChild(a),zombieRowNodeFromLastMouseWheelEvent=null}rowNodeFromLastMouseWheelEvent=r}scrollTop=Math.max(0,$viewportScrollContainerY[0].scrollTop-n*options.rowHeight),scrollLeft=$viewportScrollContainerX[0].scrollLeft+10*t,_handleScroll(!0)&&e.preventDefault()}function handleDragInit(e,o){var t=getCellFromEvent(e);if(!t||!cellExists(t.row,t.cell))return!1;var n=trigger(self.onDragInit,o,e);return!!e.isImmediatePropagationStopped()&&n}function handleDragStart(e,o){var t=getCellFromEvent(e);if(!t||!cellExists(t.row,t.cell))return!1;var n=trigger(self.onDragStart,o,e);return!!e.isImmediatePropagationStopped()&&n}function handleDrag(e,o){return trigger(self.onDrag,o,e)}function handleDragEnd(e,o){trigger(self.onDragEnd,o,e)}function handleKeyDown(e){trigger(self.onKeyDown,{row:activeRow,cell:activeCell},e);var o=e.isImmediatePropagationStopped(),t=Slick.keyCode;if(!o&&!e.shiftKey&&!e.altKey){if(options.editable&¤tEditor&¤tEditor.keyCaptureList&¤tEditor.keyCaptureList.indexOf(e.which)>-1)return;e.which==t.HOME?o=e.ctrlKey?navigateTop():navigateRowStart():e.which==t.END&&(o=e.ctrlKey?navigateBottom():navigateRowEnd())}if(!o)if(e.shiftKey||e.altKey||e.ctrlKey)e.which!=t.TAB||!e.shiftKey||e.ctrlKey||e.altKey||(o=navigatePrev());else{if(options.editable&¤tEditor&¤tEditor.keyCaptureList&¤tEditor.keyCaptureList.indexOf(e.which)>-1)return;if(e.which==t.ESCAPE){if(!getEditorLock().isActive())return;cancelEditAndSetFocus()}else e.which==t.PAGE_DOWN?(navigatePageDown(),o=!0):e.which==t.PAGE_UP?(navigatePageUp(),o=!0):e.which==t.LEFT?o=navigateLeft():e.which==t.RIGHT?o=navigateRight():e.which==t.UP?o=navigateUp():e.which==t.DOWN?o=navigateDown():e.which==t.TAB?o=navigateNext():e.which==t.ENTER&&(options.editable&&(currentEditor?activeRow===getDataLength()?navigateDown():commitEditAndSetFocus():getEditorLock().commitCurrentEdit()&&makeActiveCellEditable(void 0,void 0,e)),o=!0)}if(o){e.stopPropagation(),e.preventDefault();try{e.originalEvent.keyCode=0}catch(e){}}}function handleClick(e){currentEditor||(e.target!=document.activeElement||$(e.target).hasClass("slick-cell"))&&setFocus();var o=getCellFromEvent(e);if(o&&(null===currentEditor||activeRow!=o.row||activeCell!=o.cell)&&(trigger(self.onClick,{row:o.row,cell:o.cell},e),!e.isImmediatePropagationStopped()&&canCellBeActive(o.row,o.cell)&&(!getEditorLock().isActive()||getEditorLock().commitCurrentEdit()))){scrollRowIntoView(o.row,!1);var t=e.target&&e.target.className===Slick.preClickClassName,n=columns[o.cell],l=!!(options.editable&&n&&n.editor&&options.suppressActiveCellChangeOnEdit);setActiveCellInternal(getCellNode(o.row,o.cell),null,t,l,e)}}function handleContextMenu(e){var o=$(e.target).closest(".slick-cell",$canvas);0!==o.length&&(activeCellNode===o[0]&&null!==currentEditor||trigger(self.onContextMenu,{},e))}function handleDblClick(e){var o=getCellFromEvent(e);!o||null!==currentEditor&&activeRow==o.row&&activeCell==o.cell||(trigger(self.onDblClick,{row:o.row,cell:o.cell},e),e.isImmediatePropagationStopped()||options.editable&&gotoCell(o.row,o.cell,!0,e))}function handleHeaderMouseEnter(e){trigger(self.onHeaderMouseEnter,{column:$(this).data("column"),grid:self},e)}function handleHeaderMouseLeave(e){trigger(self.onHeaderMouseLeave,{column:$(this).data("column"),grid:self},e)}function handleHeaderContextMenu(e){var o=$(e.target).closest(".slick-header-column",".slick-header-columns"),t=o&&o.data("column");trigger(self.onHeaderContextMenu,{column:t},e)}function handleHeaderClick(e){if(!columnResizeDragging){var o=$(e.target).closest(".slick-header-column",".slick-header-columns"),t=o&&o.data("column");t&&trigger(self.onHeaderClick,{column:t},e)}}function handleFooterContextMenu(e){var o=$(e.target).closest(".slick-footerrow-column",".slick-footerrow-columns"),t=o&&o.data("column");trigger(self.onFooterContextMenu,{column:t},e)}function handleFooterClick(e){var o=$(e.target).closest(".slick-footerrow-column",".slick-footerrow-columns"),t=o&&o.data("column");trigger(self.onFooterClick,{column:t},e)}function handleMouseEnter(e){trigger(self.onMouseEnter,{},e)}function handleMouseLeave(e){trigger(self.onMouseLeave,{},e)}function cellExists(e,o){return!(e<0||e>=getDataLength()||o<0||o>=columns.length)}function getCellFromPoint(e,o){for(var t=getRowFromPosition(o),n=0,l=0,r=0;r<columns.length&&l<e;r++)l+=columns[r].width,n++;return n<0&&(n=0),{row:t,cell:n-1}}function getCellFromNode(e){var o=/l\d+/.exec(e.className);if(!o)throw new Error("getCellFromNode: cannot get cell - "+e.className);return parseInt(o[0].substr(1,o[0].length-1),10)}function getRowFromNode(e){for(var o in rowsCache)for(var t in rowsCache[o].rowNode)if(rowsCache[o].rowNode[t]===e)return o?parseInt(o):0;return null}function getFrozenRowOffset(e){return hasFrozenRows?options.frozenBottom?e>=actualFrozenRow?h<viewportTopH?actualFrozenRow*options.rowHeight:h:0:e>=actualFrozenRow?frozenRowsHeight:0:0}function getCellFromEvent(e){var o,t,n=$(e.target).closest(".slick-cell",$canvas);if(!n.length)return null;if(o=getRowFromNode(n[0].parentNode),hasFrozenRows){var l=n.parents(".grid-canvas").offset(),r=0;n.parents(".grid-canvas-bottom").length&&(r=options.frozenBottom?$canvasTopL.height():frozenRowsHeight),o=getCellFromPoint(e.clientX-l.left,e.clientY-l.top+r+$(document).scrollTop()).row}return t=getCellFromNode(n[0]),null==o||null==t?null:{row:o,cell:t}}function getCellNodeBox(e,o){if(!cellExists(e,o))return null;for(var t=getFrozenRowOffset(e),n=getRowTop(e)-t,l=n+options.rowHeight-1,r=0,i=0;i<o;i++)r+=columns[i].width,options.frozenColumn==i&&(r=0);return{top:n,left:r,bottom:l,right:r+columns[o].width}}function resetActiveCell(){setActiveCellInternal(null,!1)}function setFocus(){-1==tabbingDirection?$focusSink[0].focus():$focusSink2[0].focus()}function scrollCellIntoView(e,o,t){if(scrollRowIntoView(e,t),!(o<=options.frozenColumn)){var n=getColspan(e,o);internalScrollColumnIntoView(columnPosLeft[o],columnPosRight[o+(n>1?n-1:0)])}}function internalScrollColumnIntoView(e,o){var t=scrollLeft+$viewportScrollContainerX.width();e<scrollLeft?($viewportScrollContainerX.scrollLeft(e),handleScroll(),render()):o>t&&($viewportScrollContainerX.scrollLeft(Math.min(e,o-$viewportScrollContainerX[0].clientWidth)),handleScroll(),render())}function scrollColumnIntoView(e){internalScrollColumnIntoView(columnPosLeft[e],columnPosRight[e])}function setActiveCellInternal(e,o,t,n,l){null!==activeCellNode&&(makeActiveCellNormal(),$(activeCellNode).removeClass("active"),rowsCache[activeRow]&&$(rowsCache[activeRow].rowNode).removeClass("active"));if(null!=(activeCellNode=e)){var r=$(activeCellNode),i=r.offset(),a=Math.floor(r.parents(".grid-canvas").offset().top),s=r.parents(".grid-canvas-bottom").length;hasFrozenRows&&s&&(a-=options.frozenBottom?$canvasTopL.height():frozenRowsHeight);var d=getCellFromPoint(i.left,Math.ceil(i.top)-a);activeRow=d.row,activeCell=activePosX=activeCell=activePosX=getCellFromNode(activeCellNode),null==o&&(o=activeRow==getDataLength()||options.autoEdit),options.showCellSelection&&(r.addClass("active"),rowsCache[activeRow]&&$(rowsCache[activeRow].rowNode).addClass("active")),options.editable&&o&&isCellPotentiallyEditable(activeRow,activeCell)&&(clearTimeout(h_editorLoader),options.asyncEditorLoading?h_editorLoader=setTimeout((function(){makeActiveCellEditable(void 0,t,l)}),options.asyncEditorLoadDelay):makeActiveCellEditable(void 0,t,l))}else activeRow=activeCell=null;n||trigger(self.onActiveCellChanged,getActiveCell())}function clearTextSelection(){if(document.selection&&document.selection.empty)try{document.selection.empty()}catch(e){}else if(window.getSelection){var e=window.getSelection();e&&e.removeAllRanges&&e.removeAllRanges()}}function isCellPotentiallyEditable(e,o){var t=getDataLength();return!(e<t&&!getDataItem(e))&&(!(columns[o].cannotTriggerInsert&&e>=t)&&!!getEditor(e,o))}function makeActiveCellNormal(){if(currentEditor){if(trigger(self.onBeforeCellEditorDestroy,{editor:currentEditor}),currentEditor.destroy(),currentEditor=null,activeCellNode){var e=getDataItem(activeRow);if($(activeCellNode).removeClass("editable invalid"),e){var o=columns[activeCell];applyFormatResultToCellNode(getFormatter(activeRow,o)(activeRow,activeCell,getDataItemValueForColumn(e,o),o,e,self),activeCellNode),invalidatePostProcessingResults(activeRow)}}navigator.userAgent.toLowerCase().match(/msie/)&&clearTextSelection(),getEditorLock().deactivate(editController)}}function makeActiveCellEditable(e,o,t){if(activeCellNode){if(!options.editable)throw new Error("Grid : makeActiveCellEditable : should never get called when options.editable is false");if(clearTimeout(h_editorLoader),isCellPotentiallyEditable(activeRow,activeCell)){var n=columns[activeCell],l=getDataItem(activeRow);if(!1!==trigger(self.onBeforeEditCell,{row:activeRow,cell:activeCell,item:l,column:n})){getEditorLock().activate(editController),$(activeCellNode).addClass("editable");var r=e||getEditor(activeRow,activeCell);e||r.suppressClearOnEdit||(activeCellNode.innerHTML="");var i=data.getItemMetadata&&data.getItemMetadata(activeRow),a=(i=i&&i.columns)&&(i[n.id]||i[activeCell]);currentEditor=new r({grid:self,gridPosition:absBox($container[0]),position:absBox(activeCellNode),container:activeCellNode,column:n,columnMetaData:a,item:l||{},event:t,commitChanges:commitEditAndSetFocus,cancelChanges:cancelEditAndSetFocus}),l&&(currentEditor.loadValue(l),o&¤tEditor.preClick&¤tEditor.preClick()),serializedEditorValue=currentEditor.serializeValue(),currentEditor.position&&handleActiveCellPositionChange()}else setFocus()}}}function commitEditAndSetFocus(){getEditorLock().commitCurrentEdit()&&(setFocus(),options.autoEdit&&navigateDown())}function cancelEditAndSetFocus(){getEditorLock().cancelCurrentEdit()&&setFocus()}function absBox(e){var o={top:e.offsetTop,left:e.offsetLeft,bottom:0,right:0,width:$(e).outerWidth(),height:$(e).outerHeight(),visible:!0};o.bottom=o.top+o.height,o.right=o.left+o.width;for(var t=e.offsetParent;(e=e.parentNode)!=document.body&&null!=e;)o.visible&&e.scrollHeight!=e.offsetHeight&&"visible"!=$(e).css("overflowY")&&(o.visible=o.bottom>e.scrollTop&&o.top<e.scrollTop+e.clientHeight),o.visible&&e.scrollWidth!=e.offsetWidth&&"visible"!=$(e).css("overflowX")&&(o.visible=o.right>e.scrollLeft&&o.left<e.scrollLeft+e.clientWidth),o.left-=e.scrollLeft,o.top-=e.scrollTop,e===t&&(o.left+=e.offsetLeft,o.top+=e.offsetTop,t=e.offsetParent),o.bottom=o.top+o.height,o.right=o.left+o.width;return o}function getActiveCellPosition(){return absBox(activeCellNode)}function getGridPosition(){return absBox($container[0])}function handleActiveCellPositionChange(){if(activeCellNode&&(trigger(self.onActiveCellPositionChanged,{}),currentEditor)){var e=getActiveCellPosition();currentEditor.show&¤tEditor.hide&&(e.visible?currentEditor.show():currentEditor.hide()),currentEditor.position&¤tEditor.position(e)}}function getCellEditor(){return currentEditor}function getActiveCell(){return activeCellNode?{row:activeRow,cell:activeCell}:null}function getActiveCellNode(){return activeCellNode}function scrollRowIntoView(e,o){if(!hasFrozenRows||!options.frozenBottom&&e>actualFrozenRow-1||options.frozenBottom&&e<actualFrozenRow-1){var t=$viewportScrollContainerY.height(),n=hasFrozenRows&&!options.frozenBottom?e-options.frozenRow:e,l=n*options.rowHeight,r=(n+1)*options.rowHeight-t+(viewportHasHScroll?scrollbarDimensions.height:0);(n+1)*options.rowHeight>scrollTop+t+offset?(scrollTo(o?l:r),render()):n*options.rowHeight<scrollTop+offset&&(scrollTo(o?r:l),render())}}function scrollRowToTop(e){scrollTo(e*options.rowHeight),render()}function scrollPage(e){var o=e*numVisibleRows;if(scrollTo((getRowFromPosition(scrollTop+options.rowHeight-1)+o)*options.rowHeight),render(),options.enableCellNavigation&&null!=activeRow){var t=activeRow+o,n=getDataLengthIncludingAddNew();t>=n&&(t=n-1),t<0&&(t=0);for(var l=0,r=null,i=activePosX;l<=activePosX;)canCellBeActive(t,l)&&(r=l),l+=getColspan(t,l);null!==r?(setActiveCellInternal(getCellNode(t,r)),activePosX=i):resetActiveCell()}}function navigatePageDown(){scrollPage(1)}function navigatePageUp(){scrollPage(-1)}function navigateTop(){navigateToRow(0)}function navigateBottom(){navigateToRow(getDataLength()-1)}function navigateToRow(e){var o=getDataLength();if(!o)return!0;if(e<0?e=0:e>=o&&(e=o-1),scrollCellIntoView(e,0,!0),options.enableCellNavigation&&null!=activeRow){for(var t=0,n=null,l=activePosX;t<=activePosX;)canCellBeActive(e,t)&&(n=t),t+=getColspan(e,t);null!==n?(setActiveCellInternal(getCellNode(e,n)),activePosX=l):resetActiveCell()}return!0}function getColspan(e,o){var t=data.getItemMetadata&&data.getItemMetadata(e);if(!t||!t.columns)return 1;var n=t.columns[columns[o].id]||t.columns[o],l=n&&n.colspan;return l=""===l?columns.length-o:l||1}function findFirstFocusableCell(e){for(var o=0;o<columns.length;){if(canCellBeActive(e,o))return o;o+=getColspan(e,o)}return null}function findLastFocusableCell(e){for(var o=0,t=null;o<columns.length;)canCellBeActive(e,o)&&(t=o),o+=getColspan(e,o);return t}function gotoRight(e,o,t){if(o>=columns.length)return null;do{o+=getColspan(e,o)}while(o<columns.length&&!canCellBeActive(e,o));return o<columns.length?{row:e,cell:o,posX:o}:null}function gotoLeft(e,o,t){if(o<=0)return null;var n=findFirstFocusableCell(e);if(null===n||n>=o)return null;for(var l,r={row:e,cell:n,posX:n};;){if(!(l=gotoRight(r.row,r.cell,r.posX)))return null;if(l.cell>=o)return r;r=l}}function gotoDown(e,o,t){for(var n,l=getDataLengthIncludingAddNew();;){if(++e>=l)return null;for(n=o=0;o<=t;)n=o,o+=getColspan(e,o);if(canCellBeActive(e,n))return{row:e,cell:n,posX:t}}}function gotoUp(e,o,t){for(var n;;){if(–e<0)return null;for(n=o=0;o<=t;)n=o,o+=getColspan(e,o);if(canCellBeActive(e,n))return{row:e,cell:n,posX:t}}}function gotoNext(e,o,t){if(null==e&&null==o&&canCellBeActive(e=o=t=0,o))return{row:e,cell:o,posX:o};var n=gotoRight(e,o,t);if(n)return n;var l=null,r=getDataLengthIncludingAddNew();for(e===r-1&&e–;++e<r;)if(null!==(l=findFirstFocusableCell(e)))return{row:e,cell:l,posX:l};return null}function gotoPrev(e,o,t){if(null==e&&null==o&&canCellBeActive(e=getDataLengthIncludingAddNew()-1,o=t=columns.length-1))return{row:e,cell:o,posX:o};for(var n,l;!n&&!(n=gotoLeft(e,o,t));){if(–e<0)return null;o=0,null!==(l=findLastFocusableCell(e))&&(n={row:e,cell:l,posX:l})}return n}function gotoRowStart(e,o,t){var n=findFirstFocusableCell(e);return null===n?null:{row:e,cell:n,posX:n}}function gotoRowEnd(e,o,t){var n=findLastFocusableCell(e);return null===n?null:{row:e,cell:n,posX:n}}function navigateRight(){return navigate("right")}function navigateLeft(){return navigate("left")}function navigateDown(){return navigate("down")}function navigateUp(){return navigate("up")}function navigateNext(){return navigate("next")}function navigatePrev(){return navigate("prev")}function navigateRowStart(){return navigate("home")}function navigateRowEnd(){return navigate("end")}function navigate(e){if(!options.enableCellNavigation)return!1;if(!activeCellNode&&"prev"!=e&&"next"!=e)return!1;if(!getEditorLock().commitCurrentEdit())return!0;setFocus();tabbingDirection={up:-1,down:1,left:-1,right:1,prev:-1,next:1,home:-1,end:1}[e];var o=(0,{up:gotoUp,down:gotoDown,left:gotoLeft,right:gotoRight,prev:gotoPrev,next:gotoNext,home:gotoRowStart,end:gotoRowEnd}[e])(activeRow,activeCell,activePosX);if(o){if(hasFrozenRows&&options.frozenBottom&o.row==getDataLength())return;var t=o.row==getDataLength();return(!options.frozenBottom&&o.row>=actualFrozenRow||options.frozenBottom&&o.row<actualFrozenRow)&&scrollCellIntoView(o.row,o.cell,!t&&options.emulatePagingWhenScrolling),setActiveCellInternal(getCellNode(o.row,o.cell)),activePosX=o.posX,!0}return setActiveCellInternal(getCellNode(activeRow,activeCell)),!1}function getCellNode(e,o){if(rowsCache[e]){ensureCellNodesInRowsCache(e);try{return rowsCache[e].cellNodesByColumnIdx.length>o?rowsCache[e].cellNodesByColumnIdx[o][0]:null}catch(t){return rowsCache[e].cellNodesByColumnIdx[o]}}return null}function setActiveCell(e,o,t,n,l){initialized&&(e>getDataLength()||e<0||o>=columns.length||o<0||options.enableCellNavigation&&(scrollCellIntoView(e,o,!1),setActiveCellInternal(getCellNode(e,o),t,n,l)))}function canCellBeActive(e,o){if(!options.enableCellNavigation||e>=getDataLengthIncludingAddNew()||e<0||o>=columns.length||o<0)return!1;var t=data.getItemMetadata&&data.getItemMetadata(e);if(t&&void 0!==t.focusable)return!!t.focusable;var n=t&&t.columns;return n&&n[columns[o].id]&&void 0!==n[columns[o].id].focusable?!!n[columns[o].id].focusable:n&&n[o]&&void 0!==n[o].focusable?!!n[o].focusable:!!columns[o].focusable}function canCellBeSelected(e,o){if(e>=getDataLength()||e<0||o>=columns.length||o<0)return!1;var t=data.getItemMetadata&&data.getItemMetadata(e);if(t&&void 0!==t.selectable)return!!t.selectable;var n=t&&t.columns&&(t.columns[columns[o].id]||t.columns[o]);return n&&void 0!==n.selectable?!!n.selectable:!!columns[o].selectable}function gotoCell(e,o,t,n){if(initialized&&canCellBeActive(e,o)&&getEditorLock().commitCurrentEdit()){scrollCellIntoView(e,o,!1);var l=getCellNode(e,o),r=columns[o],i=!!(options.editable&&r&&r.editor&&options.suppressActiveCellChangeOnEdit);setActiveCellInternal(l,t||e===getDataLength()||options.autoEdit,null,i,n),currentEditor||setFocus()}}function commitCurrentEdit(){var e=getDataItem(activeRow),o=columns[activeCell];if(currentEditor){if(currentEditor.isValueChanged()){var t=currentEditor.validate();if(t.valid){if(activeRow<getDataLength()){var n={row:activeRow,cell:activeCell,editor:currentEditor,serializedValue:currentEditor.serializeValue(),prevSerializedValue:serializedEditorValue,execute:function(){this.editor.applyValue(e,this.serializedValue),updateRow(this.row),trigger(self.onCellChange,{row:this.row,cell:this.cell,item:e})},undo:function(){this.editor.applyValue(e,this.prevSerializedValue),updateRow(this.row),trigger(self.onCellChange,{row:this.row,cell:this.cell,item:e})}};options.editCommandHandler?(makeActiveCellNormal(),options.editCommandHandler(e,o,n)):(n.execute(),makeActiveCellNormal())}else{var l={};currentEditor.applyValue(l,currentEditor.serializeValue()),makeActiveCellNormal(),trigger(self.onAddNewRow,{item:l,column:o})}return!getEditorLock().isActive()}return $(activeCellNode).removeClass("invalid"),$(activeCellNode).width(),$(activeCellNode).addClass("invalid"),trigger(self.onValidationError,{editor:currentEditor,cellNode:activeCellNode,validationResults:t,row:activeRow,cell:activeCell,column:o}),currentEditor.focus(),!1}makeActiveCellNormal()}return!0}function cancelCurrentEdit(){return makeActiveCellNormal(),!0}function rowsToRanges(e){for(var o=[],t=columns.length-1,n=0;n<e.length;n++)o.push(new Slick.Range(e[n],0,e[n],t));return o}function getSelectedRows(){if(!selectionModel)throw new Error("Selection model is not set");return selectedRows.slice(0)}function setSelectedRows(e){if(!selectionModel)throw new Error("Selection model is not set");self&&self.getEditorLock&&!self.getEditorLock().isActive()&&selectionModel.setSelectedRanges(rowsToRanges(e))}this.debug=function(){var e="";e+="\ncounter_rows_rendered: "+counter_rows_rendered,e+="\ncounter_rows_removed: "+counter_rows_removed,e+="\nrenderedRows: "+renderedRows,e+="\nnumVisibleRows: "+numVisibleRows,e+="\nmaxSupportedCssHeight: "+maxSupportedCssHeight,e+="\nn(umber of pages): "+n,e+="\n(current) page: "+page,e+="\npage height (ph): "+ph,e+="\nvScrollDir: "+vScrollDir,alert(e)},this.eval=function(expr){return eval(expr)},$.extend(this,{slickGridVersion:"2.4.27",onScroll:new Slick.Event,onSort:new Slick.Event,onHeaderMouseEnter:new Slick.Event,onHeaderMouseLeave:new Slick.Event,onHeaderContextMenu:new Slick.Event,onHeaderClick:new Slick.Event,onHeaderCellRendered:new Slick.Event,onBeforeHeaderCellDestroy:new Slick.Event,onHeaderRowCellRendered:new Slick.Event,onFooterRowCellRendered:new Slick.Event,onFooterContextMenu:new Slick.Event,onFooterClick:new Slick.Event,onBeforeHeaderRowCellDestroy:new Slick.Event,onBeforeFooterRowCellDestroy:new Slick.Event,onMouseEnter:new Slick.Event,onMouseLeave:new Slick.Event,onClick:new Slick.Event,onDblClick:new Slick.Event,onContextMenu:new Slick.Event,onKeyDown:new Slick.Event,onAddNewRow:new Slick.Event,onBeforeAppendCell:new Slick.Event,onValidationError:new Slick.Event,onViewportChanged:new Slick.Event,onColumnsReordered:new Slick.Event,onColumnsDrag:new Slick.Event,onColumnsResized:new Slick.Event,onBeforeColumnsResize:new Slick.Event,onCellChange:new Slick.Event,onBeforeEditCell:new Slick.Event,onBeforeCellEditorDestroy:new Slick.Event,onBeforeDestroy:new Slick.Event,onActiveCellChanged:new Slick.Event,onActiveCellPositionChanged:new Slick.Event,onDragInit:new Slick.Event,onDragStart:new Slick.Event,onDrag:new Slick.Event,onDragEnd:new Slick.Event,onSelectedRowsChanged:new Slick.Event,onCellCssStylesChanged:new Slick.Event,onAutosizeColumns:new Slick.Event,onRendered:new Slick.Event,onSetOptions:new Slick.Event,registerPlugin,unregisterPlugin,getPluginByName,getColumns,setColumns,getColumnIndex,updateColumnHeader,setSortColumn,setSortColumns,getSortColumns,autosizeColumns,autosizeColumn,getOptions,setOptions,getData,getDataLength,getDataItem,setData,getSelectionModel,setSelectionModel,getSelectedRows,setSelectedRows,getContainerNode,updatePagingStatusFromView,applyFormatResultToCellNode,render,invalidate,invalidateRow,invalidateRows,invalidateAllRows,updateCell,updateRow,getViewport:getVisibleRange,getRenderedRange,resizeCanvas,updateRowCount,scrollRowIntoView,scrollRowToTop,scrollCellIntoView,scrollColumnIntoView,getCanvasNode,getUID,getHeaderColumnWidthDiff,getScrollbarDimensions,getHeadersWidth,getCanvasWidth,getCanvases,getActiveCanvasNode,setActiveCanvasNode,getViewportNode,getActiveViewportNode,setActiveViewportNode,focus:setFocus,scrollTo,getCellFromPoint,getCellFromEvent,getActiveCell,setActiveCell,getActiveCellNode,getActiveCellPosition,resetActiveCell,editActiveCell:makeActiveCellEditable,getCellEditor,getCellNode,getCellNodeBox,canCellBeSelected,canCellBeActive,navigatePrev,navigateNext,navigateUp,navigateDown,navigateLeft,navigateRight,navigatePageUp,navigatePageDown,navigateTop,navigateBottom,navigateRowStart,navigateRowEnd,gotoCell,getTopPanel,setTopPanelVisibility,getPreHeaderPanel,getPreHeaderPanelLeft:getPreHeaderPanel,getPreHeaderPanelRight,setPreHeaderPanelVisibility,getHeader,getHeaderColumn,setHeaderRowVisibility,getHeaderRow,getHeaderRowColumn,setFooterRowVisibility,getFooterRow,getFooterRowColumn,getGridPosition,flashCell,addCellCssStyles,setCellCssStyles,removeCellCssStyles,getCellCssStyles,getFrozenRowOffset,setColumnHeaderVisibility,init:finishInitialization,destroy,getEditorLock,getEditController}),init()}module.exports={Grid:SlickGrid}},n”, ” 465: function _(t,e,a){n”, ” /!n”, ” * jquery.event.drag - v 2.3.0n”, ” * Copyright (c) 2010 Three Dub Media - http://threedubmedia.comn”, ” * Open Source MIT License - http://threedubmedia.com/code/licensen”, ” */n”, ” var n=t(458);n.fn.drag=function(t,e,a){var r="string"==typeof t?t:"",o=n.isFunction(t)?t:n.isFunction(e)?e:null;return 0!==r.indexOf("drag")&&(r="drag"+r),a=(t==o?e:a)||{},o?this.on(r,a,o):this.trigger(r)};var r=n.event,o=r.special,i=o.drag={defaults:{which:1,distance:0,not:":input",handle:null,relative:!1,drop:!0,click:!1},datakey:"dragdata",noBubble:!0,add:function(t){var e=n.data(this,i.datakey),a=t.data||{};e.related+=1,n.each(i.defaults,(function(t,n){void 0!==a[t]&&(e[t]=a[t])}))},remove:function(){n.data(this,i.datakey).related-=1},setup:function(){if(!n.data(this,i.datakey)){var t=n.extend({related:0},i.defaults);n.data(this,i.datakey,t),r.add(this,"touchstart mousedown",i.init,t),this.attachEvent&&this.attachEvent("ondragstart",i.dontstart)}},teardown:function(){(n.data(this,i.datakey)||{}).related||(n.removeData(this,i.datakey),r.remove(this,"touchstart mousedown",i.init),i.textselect(!0),this.detachEvent&&this.detachEvent("ondragstart",i.dontstart))},init:function(t){if(!i.touched){var e,a=t.data;if(!(0!=t.which&&a.which>0&&t.which!=a.which)){var d=n(t.target).attr("class")||"";if(!n(t.target).is(a.not)&&d&&-1!==d.toString().indexOf("slick")&&(!a.handle||n(t.target).closest(a.handle,t.currentTarget).length)&&(i.touched="touchstart"==t.type?this:null,a.propagates=1,a.mousedown=this,a.interactions=[i.interaction(this,a)],a.target=t.target,a.pageX=t.pageX,a.pageY=t.pageY,a.dragging=null,e=i.hijack(t,"draginit",a),a.propagates))return(e=i.flatten(e))&&e.length&&(a.interactions=[],n.each(e,(function(){a.interactions.push(i.interaction(this,a))}))),a.propagates=a.interactions.length,!1!==a.drop&&o.drop&&o.drop.handler(t,a),i.textselect(!1),i.touched?r.add(i.touched,"touchmove touchend",i.handler,a):r.add(document,"mousemove mouseup",i.handler,a),!(!i.touched||a.live)&&void 0}}},interaction:function(t,e){var a=t&&t.ownerDocument&&n(t)[e.relative?"position":"offset"]()||{top:0,left:0};return{drag:t,callback:new i.callback,droppable:[],offset:a}},handler:function(t){var e=t.data;switch(t.type){case!e.dragging&&"touchmove":t.preventDefault();case!e.dragging&&"mousemove":if(Math.pow(t.pageX-e.pageX,2)+Math.pow(t.pageY-e.pageY,2)<Math.pow(e.distance,2))break;t.target=e.target,i.hijack(t,"dragstart",e),e.propagates&&(e.dragging=!0);case"touchmove":t.preventDefault();case"mousemove":if(e.dragging){if(i.hijack(t,"drag",e),e.propagates){!1!==e.drop&&o.drop&&o.drop.handler(t,e);break}t.type="mouseup"}case"touchend":case"mouseup":default:i.touched?r.remove(i.touched,"touchmove touchend",i.handler):r.remove(document,"mousemove mouseup",i.handler),e.dragging&&(!1!==e.drop&&o.drop&&o.drop.handler(t,e),i.hijack(t,"dragend",e)),i.textselect(!0),!1===e.click&&e.dragging&&n.data(e.mousedown,"suppress.click",(new Date).getTime()+5),e.dragging=i.touched=!1}},hijack:function(t,e,a,o,d){if(a){var s,c,l,p={event:t.originalEvent,type:t.type},u=e.indexOf("drop")?"drag":"drop",g=o||0,h=isNaN(o)?a.interactions.length:o;t.type=e;var f=function(){};t.originalEvent=new n.Event(p.event,{preventDefault:f,stopPropagation:f,stopImmediatePropagation:f}),a.results=[];do{if(c=a.interactions[g]){if("dragend"!==e&&c.cancelled)continue;l=i.properties(t,a,c),c.results=[],n(d||c[u]||a.droppable).each((function(o,d){if(l.target=d,t.isPropagationStopped=function(){return!1},!1===(s=d?r.dispatch.call(d,t,l):null)?("drag"==u&&(c.cancelled=!0,a.propagates-=1),"drop"==e&&(c[u][o]=null)):"dropinit"==e&&c.droppable.push(i.element(s)||d),"dragstart"==e&&(c.proxy=n(i.element(s)||c.drag)[0]),c.results.push(s),delete t.result,"dropinit"!==e)return s})),a.results[g]=i.flatten(c.results),"dropinit"==e&&(c.droppable=i.flatten(c.droppable)),"dragstart"!=e||c.cancelled||l.update()}}while(++g<h);return t.type=p.type,t.originalEvent=p.event,i.flatten(a.results)}},properties:function(t,e,a){var n=a.callback;return n.drag=a.drag,n.proxy=a.proxy||a.drag,n.startX=e.pageX,n.startY=e.pageY,n.deltaX=t.pageX-e.pageX,n.deltaY=t.pageY-e.pageY,n.originalX=a.offset.left,n.originalY=a.offset.top,n.offsetX=n.originalX+n.deltaX,n.offsetY=n.originalY+n.deltaY,n.drop=i.flatten((a.drop||[]).slice()),n.available=i.flatten((a.droppable||[]).slice()),n},element:function(t){if(t&&(t.jquery||1==t.nodeType))return t},flatten:function(t){return n.map(t,(function(t){return t&&t.jquery?n.makeArray(t):t&&t.length?i.flatten(t):t}))},textselect:function(t){n(document)[t?"off":"on"]("selectstart",i.dontstart).css("MozUserSelect",t?"":"none"),document.unselectable=t?"off":"on"},dontstart:function(){return!1},callback:function(){}};i.callback.prototype={update:function(){o.drop&&this.available.length&&n.each(this.available,(function(t){o.drop.locate(this,t)}))}};var d=r.dispatch;r.dispatch=function(t){if(!(n.data(this,"suppress."+t.type)-(new Date).getTime()>0))return d.apply(this,arguments);n.removeData(this,"suppress."+t.type)},o.draginit=o.dragstart=o.dragend=i},n”, ” 466: function _(t,e,a){n”, ” /!n”, ” * jquery.event.drop - v 2.3.0n”, ” * Copyright (c) 2010 Three Dub Media - http://threedubmedia.comn”, ” * Open Source MIT License - http://threedubmedia.com/code/licensen”, ” /n”, ” var n=t(458);n.fn.drop=function(t,e,a){var i="string"==typeof t?t:"",o=n.isFunction(t)?t:n.isFunction(e)?e:null;return 0!==i.indexOf("drop")&&(i="drop"+i),a=(t==o?e:a)||{},o?this.on(i,a,o):this.trigger(i)},n.drop=function(t){t=t||{},o.multi=!0===t.multi?1/0:!1===t.multi?1:isNaN(t.multi)?o.multi:t.multi,o.delay=t.delay||o.delay,o.tolerance=n.isFunction(t.tolerance)?t.tolerance:null===t.tolerance?null:o.tolerance,o.mode=t.mode||o.mode||"intersect"};var i=n.event.special,o=n.event.special.drop={multi:1,delay:20,mode:"overlap",targets:[],datakey:"dropdata",noBubble:!0,add:function(t){n.data(this,o.datakey).related+=1},remove:function(){n.data(this,o.datakey).related-=1},setup:function(){if(!n.data(this,o.datakey)){n.data(this,o.datakey,{related:0,active:[],anyactive:0,winner:0,location:{}}),o.targets.push(this)}},teardown:function(){if(!(n.data(this,o.datakey)||{}).related){n.removeData(this,o.datakey);var t=this;o.targets=n.grep(o.targets,(function(e){return e!==t}))}},handler:function(t,e){var a;if(e)switch(t.type){case"mousedown":case"touchstart":a=n(o.targets),"string"==typeof e.drop&&(a=a.filter(e.drop)),a.each((function(){var t=n.data(this,o.datakey);t.active=[],t.anyactive=0,t.winner=0})),e.droppable=a,i.drag.hijack(t,"dropinit",e);break;case"mousemove":case"touchmove":o.event=t,o.timer||o.tolerate(e);break;case"mouseup":case"touchend":o.timer=clearTimeout(o.timer),e.propagates&&(i.drag.hijack(t,"drop",e),i.drag.hijack(t,"dropend",e))}},locate:function(t,e){var a=n.data(t,o.datakey),i=n(t),r=i.length&&!i.is(document)?i.offset():{},d=i.outerHeight(),l=i.outerWidth(),c={elem:t,width:l,height:d,top:r.top,left:r.left,right:r.left+l,bottom:r.top+d};return a&&(a.location=c,a.index=e,a.elem=t),c},contains:function(t,e){return(e[0]||e.left)>=t.left&&(e[0]||e.right)<=t.right&&(e[1]||e.top)>=t.top&&(e[1]||e.bottom)<=t.bottom},modes:{intersect:function(t,e,a){return this.contains(a,[t.pageX,t.pageY])?1e9:this.modes.overlap.apply(this,arguments)},overlap:function(t,e,a){return Math.max(0,Math.min(a.bottom,e.bottom)-Math.max(a.top,e.top))*Math.max(0,Math.min(a.right,e.right)-Math.max(a.left,e.left))},fit:function(t,e,a){return this.contains(a,e)?1:0},middle:function(t,e,a){return this.contains(a,[e.left+.5*e.width,e.top+.5*e.height])?1:0}},sort:function(t,e){return e.winner-t.winner||t.index-e.index},tolerate:function(t){var e,a,r,d,l,c,s,u,p=0,h=t.interactions.length,m=[o.event.pageX,o.event.pageY],f=o.tolerance||o.modes[o.mode];do{if(u=t.interactions[p]){if(!u)return;u.drop=[],l=[],c=u.droppable.length,f&&(r=o.locate(u.proxy)),e=0;do{if(s=u.droppable[e]){if(!(a=(d=n.data(s,o.datakey)).location))continue;d.winner=f?f.call(o,o.event,r,a):o.contains(a,m)?1:0,l.push(d)}}while(++e<c);l.sort(o.sort),e=0;do{(d=l[e])&&(d.winner&&u.drop.length<o.multi?(d.active[p]||d.anyactive||(!1!==i.drag.hijack(o.event,"dropstart",t,p,d.elem)[0]?(d.active[p]=1,d.anyactive+=1):d.winner=0),d.winner&&u.drop.push(d.elem)):d.active[p]&&1==d.anyactive&&(i.drag.hijack(o.event,"dropend",t,p,d.elem),d.active[p]=0,d.anyactive-=1))}while(++e<c)}}while(++p<h);o.last&&m[0]==o.last.pageX&&m[1]==o.last.pageY?delete o.timer:o.timer=setTimeout((function(){o.tolerate(t)}),o.delay),o.last=o.event}};i.dropinit=i.dropstart=i.dropend=o},n”, ” 467: function _(e,t,n){var r=e(458),o=e(460);var i={Avg:function(e){this.field_=e,this.init=function(){this.count_=0,this.nonNullCount_=0,this.sum_=0},this.accumulate=function(e){var t=e[this.field_];this.count_++,null==t||""===t||isNaN(t)||(this.nonNullCount_++,this.sum_+=parseFloat(t))},this.storeResult=function(e){e.avg||(e.avg={}),0!==this.nonNullCount_&&(e.avg[this.field_]=this.sum_/this.nonNullCount_)}},Min:function(e){this.field_=e,this.init=function(){this.min_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(null==this.min_||t<this.min_)&&(this.min_=t)},this.storeResult=function(e){e.min||(e.min={}),e.min[this.field_]=this.min_}},Max:function(e){this.field_=e,this.init=function(){this.max_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(null==this.max_||t>this.max_)&&(this.max_=t)},this.storeResult=function(e){e.max||(e.max={}),e.max[this.field_]=this.max_}},Sum:function(e){this.field_=e,this.init=function(){this.sum_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(this.sum_+=parseFloat(t))},this.storeResult=function(e){e.sum||(e.sum={}),e.sum[this.field_]=this.sum_}},Count:function(e){this.field_=e,this.init=function(){},this.storeResult=function(e){e.count||(e.count={}),e.count[this.field_]=e.group.rows.length}}};t.exports={DataView:function(e){var t,n,i,l,a,u=this,s="id",g=[],c=[],f={},p=null,h=null,d=null,m=!1,v=!0,_={},w={},y=[],$=[],C={getter:null,formatter:null,comparer:function(e,t){return e.value===t.value?0:e.value>t.value?1:-1},predefinedValues:[],aggregators:[],aggregateEmpty:!1,aggregateCollapsed:!1,aggregateChildGroups:!1,collapsed:!1,displayTotalsRow:!0,lazyTotalsCalculation:!1},I=[],R=[],x=[],E=0,M=0,F=0,S=new o.Event,b=new o.Event,A=new o.Event,N=new o.Event,G=new o.Event,T=new o.Event,O=new o.Event,P=new o.Event;function D(e){for(var t,n=e=e||0,r=g.length;n<r;n++){if(void 0===(t=g[n][s]))throw new Error("Each data element must implement a unique ‘id’ property");f[t]=n}}function K(){var e=E?Math.max(1,Math.ceil(F/E)):1;return{pageSize:E,pageNum:M,totalRows:F,totalPages:e,dataView:u}}function j(e,r){v=r,n=e,t=null,!1===r&&g.reverse(),g.sort(e),!1===r&&g.reverse(),f={},D(),le()}function B(e,r){v=r,t=e,n=null;var o=Object.prototype.toString;Object.prototype.toString="function"==typeof e?e:function(){return this[e]},!1===r&&g.reverse(),g.sort(),Object.prototype.toString=o,!1===r&&g.reverse(),f={},D(),le()}function z(t){e.groupItemMetadataProvider||(e.groupItemMetadataProvider=new o.Data.GroupItemMetadataProvider),R=[],x=[],I=(t=t||[])instanceof Array?t:[t];for(var n=0;n<I.length;n++){var i=I[n]=r.extend(!0,{},C,I[n]);i.getterIsAFn="function"==typeof i.getter,i.compiledAccumulators=[];for(var l=i.aggregators.length;l–;)i.compiledAccumulators[l]=ee(i.aggregators[l]);x[n]={}}le()}function V(){if(!p){p={};for(var e=0,t=c.length;e<t;e++)p[c[e][s]]=e}}function q(e){return g[f[e]]}function U(e,t){if(void 0===f[e])throw new Error("Invalid id");if(e!==t[s]){var n=t[s];if(null==n)throw new Error("Cannot update item to associate with a null id");if(void 0!==f[n])throw new Error("Cannot update item to associate with a non-unique id");f[n]=f[e],delete f[e],d&&d[e]&&delete d[e],e=n}g[f[e]]=t,d||(d={}),d[e]=!0,le()}function L(e,t){g.splice(e,0,t),D(e),le()}function k(e){var t=f[e];if(void 0===t)throw new Error("Invalid id");delete f[e],g.splice(t,1),D(t),le()}function H(e){if(!n)throw new Error("sortedAddItem() requires a sort comparer, use sort()");L(function(e){var t=0,r=g.length;for(;t<r;){var o=t+r>>>1;-1===n(g[o],e)?t=o+1:r=o}return t}(e),e)}function W(e,t){if(null==e)for(var n=0;n<I.length;n++)x[n]={},I[n].collapsed=t,!0===t?P.notify({level:n,groupingKey:null}):O.notify({level:n,groupingKey:null});else x[e]={},I[e].collapsed=t,!0===t?P.notify({level:e,groupingKey:null}):O.notify({level:e,groupingKey:null});le()}function J(e,t,n){x[e][t]=I[e].collapsed^n,le()}function Q(e,t){for(var n,r,i,l=[],a={},u=t?t.level+1:0,s=I[u],g=0,c=s.predefinedValues.length;g<c;g++)(n=a[r=s.predefinedValues[g]])||((n=new o.Group).value=r,n.level=u,n.groupingKey=(t?t.groupingKey+":|:":"")+r,l[l.length]=n,a[r]=n);for(g=0,c=e.length;g<c;g++)i=e[g],(n=a[r=s.getterIsAFn?s.getter(i):i[s.getter]])||((n=new o.Group).value=r,n.level=u,n.groupingKey=(t?t.groupingKey+":|:":"")+r,l[l.length]=n,a[r]=n),n.rows[n.count++]=i;if(u<I.length-1)for(g=0;g<l.length;g++)(n=l[g]).groups=Q(n.rows,n);return l.length&&function e(t,n){var r,o=I[n=n||0],i=o.collapsed,l=x[n],a=t.length;for(;a–;)(r=t[a]).collapsed&&!o.aggregateCollapsed||(r.groups&&e(r.groups,n+1),o.aggregators.length&&(o.aggregateEmpty||r.rows.length||r.groups&&r.groups.length)&&Y(r),r.collapsed=i^l[r.groupingKey],r.title=o.formatter?o.formatter(r):r.value)}(l,u),l.sort(I[u].comparer),l}function X(e){var t,n=e.group,r=I[n.level],o=n.level==I.length,i=r.aggregators.length;if(!o&&r.aggregateChildGroups)for(var l=n.groups.length;l–;)n.groups[l].totals.initialized||X(n.groups[l].totals);for(;i–;)(t=r.aggregators[i]).init(),!o&&r.aggregateChildGroups?r.compiledAccumulators[i].call(t,n.groups):r.compiledAccumulators[i].call(t,n.rows),t.storeResult(e);e.initialized=!0}function Y(e){var t=I[e.level],n=new o.GroupTotals;n.group=e,e.totals=n,t.lazyTotalsCalculation||X(n)}function Z(e){var t=e.toString().indexOf("function")>=0?/^function[^(]\(([^)]*)\)\s*{([\s\S]*)}$/:/^[^(]*\(([^)]*)\)\s*{([\s\S]*)}$/,n=e.toString().match(t);return{params:n[1].split(","),body:n[2]}}function ee(e){if(e.accumulate){var t=Z(e.accumulate),n=new Function("_items","for (var "+t.params[0]+", _i=0, _il=_items.length; _i<_il; _i++) {"+t.params[0]+" = _items[_i]; "+t.body+"}"),r="compiledAccumulatorLoop";return n.displayName=r,n.name=te(n,r),n}return function(){}}function te(e,t){try{Object.defineProperty(e,"name",{writable:!0,value:t})}catch(n){e.name=t}}function ne(e,t){for(var n=[],r=0,o=0,i=e.length;o<i;o++)h(e[o],t)&&(n[r++]=e[o]);return n}function re(e,t,n){for(var r,o=[],i=0,l=0,a=e.length;l<a;l++)r=e[l],n[l]?o[i++]=r:h(r,t)&&(o[i++]=r,n[l]=!0);return o}function oe(t){if(h){var n=e.inlineFilters?l:ne,r=e.inlineFilters?a:re;_.isFilterNarrowing?y=n(y,i):_.isFilterExpanding?y=r(t,i,$):_.isFilterUnchanged||(y=n(t,i))}else y=E?t:t.concat();var o;return E?(y.length<=M*E&&(M=0===y.length?0:Math.floor((y.length-1)/E)),o=y.slice(E*M,E*M+E)):o=y,{totalRows:y.length,rows:o}}function ie(e){p=null,_.isFilterNarrowing==w.isFilterNarrowing&&_.isFilterExpanding==w.isFilterExpanding||($=[]);var t=oe(e);F=t.totalRows;var n=t.rows;R=[],I.length&&(R=Q(n)).length&&(n=function e(t,n){for(var r,o,i=I[n=n||0],l=[],a=0,u=0,s=t.length;u<s;u++){if(o=t[u],l[a++]=o,!o.collapsed)for(var g=0,c=(r=o.groups?e(o.groups,n+1):o.rows).length;g<c;g++)l[a++]=r[g];o.totals&&i.displayTotalsRow&&(!o.collapsed||i.aggregateCollapsed)&&(l[a++]=o.totals)}return l}(R));var r=function(e,t){var n,r,o,i=[],l=0,a=Math.max(t.length,e.length);_&&_.ignoreDiffsBefore&&(l=Math.max(0,Math.min(t.length,_.ignoreDiffsBefore))),_&&_.ignoreDiffsAfter&&(a=Math.min(t.length,Math.max(0,_.ignoreDiffsAfter)));for(var u=l,g=e.length;u<a;u++)u>=g?i[i.length]=u:(n=t[u],r=e[u],(!n||I.length&&(o=n.__nonDataRow||r.__nonDataRow)&&n.__group!==r.__group||n.__group&&!n.equals(r)||o&&(n.__groupTotals||r.__groupTotals)||n[s]!=r[s]||d&&d[n[s]])&&(i[i.length]=u));return i}(c,n);return c=n,r}function le(){if(!m){var e=r.extend(!0,{},K()),t=c.length,n=F,o=ie(g);E&&F<M*E&&(M=Math.max(0,Math.ceil(F/E)-1),o=ie(g)),d=null,w=_,_={},n!==F&&(G.notify(e,null,u),T.notify(K(),null,u)),t!==c.length&&b.notify({previous:t,current:c.length,dataView:u,callingOnRowsChanged:o.length>0},null,u),o.length>0&&A.notify({rows:o,dataView:u,calledOnRowCountChanged:t!==c.length},null,u),(t!==c.length||o.length>0)&&N.notify({rowsDiff:o,previousRowCount:t,currentRowCount:c.length,rowCountChanged:t!==c.length,rowsChanged:o.length>0,dataView:u},null,u)}}e=r.extend(!0,{},{groupItemMetadataProvider:null,inlineFilters:!1},e),r.extend(this,{beginUpdate:function(){m=!0},endUpdate:function(){m=!1,le()},setPagingOptions:function(e){G.notify(K(),null,u),null!=e.pageSize&&(E=e.pageSize,M=E?Math.min(M,Math.max(0,Math.ceil(F/E)-1)):0),null!=e.pageNum&&(M=Math.min(e.pageNum,Math.max(0,Math.ceil(F/E)-1))),T.notify(K(),null,u),le()},getPagingInfo:K,getIdPropertyName:function(){return s},getItems:function(){return g},setItems:function(e,t){void 0!==t&&(s=t),g=y=e,f={},D(),function(){for(var e,t=0,n=g.length;t<n;t++)if(void 0===(e=g[t][s])||f[e]!==t)throw new Error("Each data element must implement a unique ‘id’ property")}(),le(),S.notify({idProperty:t},null,u)},setFilter:function(t){h=t,e.inlineFilters&&(l=function(){var e=Z(h),t="{ _retval[_idx++] = $item$; continue _coreloop; }$1",n=e.body.replace(/return false\s*([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return!1([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return true\s*([;}]|\}|$)/gi,t).replace(/return!0([;}]|\}|$)/gi,t).replace(/return ([^;}]+?)\s*([;}]|$)/gi,"{ if ($1) { _retval[_idx++] = $item$; }; continue _coreloop; }$2"),r=["var _retval = [], _idx = 0; ","var $item$, $args$ = _args; ","_coreloop: ","for (var _i = 0, _il = _items.length; _i < _il; _i++) { ","$item$ = _items[_i]; ","$filter$; ","} ","return _retval; "].join("");r=(r=(r=r.replace(/\$filter\$/gi,n)).replace(/\$item\$/gi,e.params[0])).replace(/\$args\$/gi,e.params[1]);var o=new Function("_items,_args",r);return o.displayName="compiledFilter",o.name=te(o,"compiledFilter"),o}(),a=function(){var e=Z(h),t="{ _cache[_i] = true;_retval[_idx++] = $item$; continue _coreloop; }$1",n=e.body.replace(/return false\s*([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return!1([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return true\s*([;}]|\}|$)/gi,t).replace(/return!0([;}]|\}|$)/gi,t).replace(/return ([^;}]+?)\s*([;}]|$)/gi,"{ if ((_cache[_i] = $1)) { _retval[_idx++] = $item$; }; continue _coreloop; }$2"),r=["var _retval = [], _idx = 0; ","var $item$, $args$ = _args; ","_coreloop: ","for (var _i = 0, _il = _items.length; _i < _il; _i++) { ","$item$ = _items[_i]; ","if (_cache[_i]) { ","_retval[_idx++] = $item$; ","continue _coreloop; ","} ","$filter$; ","} ","return _retval; "].join("");r=(r=(r=r.replace(/\$filter\$/gi,n)).replace(/\$item\$/gi,e.params[0])).replace(/\$args\$/gi,e.params[1]);var o=new Function("_items,_args,_cache",r),i="compiledFilterWithCaching";return o.displayName=i,o.name=te(o,i),o}()),le()},getFilter:function(){return h},getFilteredItems:function(){return y},sort:j,fastSort:B,reSort:function(){n?j(n,v):t&&B(t,v)},setGrouping:z,getGrouping:function(){return I},groupBy:function(e,t,n){z(null!=e?{getter:e,formatter:t,comparer:n}:[])},setAggregators:function(e,t){if(!I.length)throw new Error("At least one grouping must be specified before calling setAggregators().");I[0].aggregators=e,I[0].aggregateCollapsed=t,z(I)},collapseAllGroups:function(e){W(e,!0)},expandAllGroups:function(e){W(e,!1)},collapseGroup:function(e){var t,n,r=Array.prototype.slice.call(arguments),o=r[0];1===r.length&&-1!==o.indexOf(":|:\")?(t=o,n=o.split(\":|:").length-1):(t=r.join(":|:\"),n=r.length-1),J(n,t,!0),P.notify({level:n,groupingKey:t})},expandGroup:function(e){var t,n,r=Array.prototype.slice.call(arguments),o=r[0];1===r.length&&-1!==o.indexOf(\":|:")?(n=o.split(":|:\").length-1,t=o):(n=r.length-1,t=r.join(\":|:")),J(n,t,!1),O.notify({level:n,groupingKey:t})},getGroups:function(){return R},getIdxById:function(e){return f[e]},getRowByItem:function(e){return V(),p[e[s]]},getRowById:function(e){return V(),p[e]},getItemById:q,getItemByIdx:function(e){return g[e]},mapItemsToRows:function(e){var t=[];V();for(var n=0,r=e.length;n<r;n++){var o=p[e[n][s]];null!=o&&(t[t.length]=o)}return t},mapRowsToIds:function(e){for(var t=[],n=0,r=e.length;n<r;n++)e[n]<c.length&&(t[t.length]=c[e[n]][s]);return t},mapIdsToRows:function(e){var t=[];V();for(var n=0,r=e.length;n<r;n++){var o=p[e[n]];null!=o&&(t[t.length]=o)}return t},setRefreshHints:function(e){_=e},setFilterArgs:function(e){i=e},refresh:le,updateItem:U,insertItem:L,addItem:function(e){g.push(e),D(g.length-1),le()},deleteItem:k,sortedAddItem:H,sortedUpdateItem:function(e,t){if(void 0===f[e]||e!==t[s])throw new Error("Invalid or non-matching id "+f[e]);if(!n)throw new Error("sortedUpdateItem() requires a sort comparer, use sort()");var r=q(e);0!==n(r,t)?(k(e),H(t)):U(e,t)},syncGridSelection:function(e,t,n){var i,l=this,a=l.mapRowsToIds(e.getSelectedRows()),u=new o.Event;function s(t){a.join(",")!=t.join(",")&&(a=t,u.notify({grid:e,ids:a,dataView:l},new o.EventData,l))}return e.onSelectedRowsChanged.subscribe((function(t,o){if(!i){var u=l.mapRowsToIds(e.getSelectedRows());if(n&&e.getOptions().multiSelect)s(r.grep(a,(function(e){return void 0===l.getRowById(e)})).concat(u));else s(u)}})),this.onRowsOrCountChanged.subscribe((function(){if(a.length>0){i=!0;var n=l.mapIdsToRows(a);t||s(l.mapRowsToIds(n)),e.setSelectedRows(n),i=!1}})),u},syncGridCellCssStyles:function(e,t){var n,r;function o(e){for(var t in n={},e){var r=c[t][s];n[r]=e[t]}}function i(){if(n){r=!0,V();var o={};for(var i in n){var l=p[i];null!=l&&(o[l]=n[i])}e.setCellCssStyles(t,o),r=!1}}o(e.getCellCssStyles(t)),e.onCellCssStylesChanged.subscribe((function(n,l){r||t==l.key&&(l.hash?o(l.hash):(e.onCellCssStylesChanged.unsubscribe(),u.onRowsOrCountChanged.unsubscribe(i)))})),this.onRowsOrCountChanged.subscribe(i)},getLength:function(){return c.length},getItem:function(e){var t=c[e];if(t&&t.__group&&t.totals&&!t.totals.initialized){var n=I[t.level];n.displayTotalsRow||(X(t.totals),t.title=n.formatter?n.formatter(t):t.value)}else t&&t.__groupTotals&&!t.initialized&&X(t);return t},getItemMetadata:function(t){var n=c[t];return void 0===n?null:n.__group?e.groupItemMetadataProvider.getGroupRowMetadata(n):n.__groupTotals?e.groupItemMetadataProvider.getTotalsRowMetadata(n):null},onSetItemsCalled:S,onRowCountChanged:b,onRowsChanged:A,onRowsOrCountChanged:N,onBeforePagingInfoChanged:G,onPagingInfoChanged:T,onGroupExpanded:O,onGroupCollapsed:P})},Aggregators:i,Data:{Aggregators:i}}},n”, ” 468: function _(e,t,i){var n=e(458),o=e(460);function l(e){var t,i;function o(){var t=e.column.editorFixedDecimalPlaces;return void 0===t&&(t=l.DefaultDecimalPlaces),t||0===t?t:null}this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field];var l=o();null!==l&&(i||0===i)&&i.toFixed&&(i=i.toFixed(l)),t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){var e=parseFloat(t.val());l.AllowEmptyValue?e||0===e||(e=""):e=e||0;var i=o();return null!==i&&(e||0===e)&&e.toFixed&&(e=parseFloat(e.toFixed(i))),e},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(isNaN(t.val()))return{valid:!1,msg:"Please enter a valid number"};if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()}function a(e){var t=this.selectionStart,i=this.value.length;(e.keyCode===o.keyCode.LEFT&&t>0||e.keyCode===o.keyCode.RIGHT&&t<i-1)&&e.stopImmediatePropagation()}function s(e){e.keyCode!==o.keyCode.LEFT&&e.keyCode!==o.keyCode.RIGHT||e.stopImmediatePropagation()}l.DefaultDecimalPlaces=null,l.AllowEmptyValue=!1,t.exports={Editors:{Text:function(e){var t,i;this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.getValue=function(){return t.val()},this.setValue=function(e){t.val(e)},this.loadValue=function(n){i=n[e.column.field]||"",t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},Integer:function(e){var t,i;this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field],t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return parseInt(t.val(),10)||0},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(isNaN(t.val()))return{valid:!1,msg:"Please enter a valid integer"};if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},Float:l,Date:function(e){var t,i,o=!1;this.init=function(){(t=n("<INPUT type=text class=’editor-text’ />")).appendTo(e.container),t.focus().select(),t.datepicker({showOn:"button",buttonImageOnly:!0,beforeShow:function(){o=!0},onClose:function(){o=!1}}),t.width(t.width()-18)},this.destroy=function(){n.datepicker.dpDiv.stop(!0,!0),t.datepicker("hide"),t.datepicker("destroy"),t.remove()},this.show=function(){o&&n.datepicker.dpDiv.stop(!0,!0).show()},this.hide=function(){o&&n.datepicker.dpDiv.stop(!0,!0).hide()},this.position=function(e){o&&n.datepicker.dpDiv.css("top",e.top+30).css("left",e.left)},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field],t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},YesNoSelect:function(e){var t,i;this.init=function(){(t=n("<SELECT tabIndex=’0’ class=’editor-yesno’><OPTION value=’yes’>Yes</OPTION><OPTION value=’no’>No</OPTION></SELECT>")).appendTo(e.container),t.focus()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){t.val((i=n[e.column.field])?"yes":"no"),t.select()},this.serializeValue=function(){return"yes"==t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return t.val()!=i},this.validate=function(){return{valid:!0,msg:null}},this.init()},Checkbox:function(e){var t,i;this.init=function(){(t=n("<INPUT type=checkbox value=’true’ class=’editor-checkbox’ hideFocus>")).appendTo(e.container),t.focus()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){(i=!!n[e.column.field])?t.prop("checked",!0):t.prop("checked",!1)},this.preClick=function(){t.prop("checked",!t.prop("checked"))},this.serializeValue=function(){return t.prop("checked")},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return this.serializeValue()!==i},this.validate=function(){return{valid:!0,msg:null}},this.init()},PercentComplete:function(e){var t,i,o;this.init=function(){(t=n("<INPUT type=text class=’editor-percentcomplete’ />")).width(n(e.container).innerWidth()-25),t.appendTo(e.container),(i=n("<div class=’editor-percentcomplete-picker’ />").appendTo(e.container)).append("<div class=’editor-percentcomplete-helper’><div class=’editor-percentcomplete-wrapper’><div class=’editor-percentcomplete-slider’ /><div class=’editor-percentcomplete-buttons’ /></div></div>"),i.find(".editor-percentcomplete-buttons").append("<button val=0>Not started</button><br/><button val=50>In Progress</button><br/><button val=100>Complete</button>"),t.focus().select(),i.find(".editor-percentcomplete-slider").slider({orientation:"vertical",range:"min",value:o,slide:function(e,i){t.val(i.value)}}),i.find(".editor-percentcomplete-buttons button").on("click",(function(e){t.val(n(this).attr("val")),i.find(".editor-percentcomplete-slider").slider("value",n(this).attr("val"))}))},this.destroy=function(){t.remove(),i.remove()},this.focus=function(){t.focus()},this.loadValue=function(i){t.val(o=i[e.column.field]),t.select()},this.serializeValue=function(){return parseInt(t.val(),10)||0},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==o)&&(parseInt(t.val(),10)||0)!=o},this.validate=function(){return isNaN(parseInt(t.val(),10))?{valid:!1,msg:"Please enter a valid positive number"}:{valid:!0,msg:null}},this.init()},LongText:function(e){var t,i,l,a=this;this.init=function(){var o=n("body");e.grid.getOptions().editorCellNavOnLRKeys;i=n("<DIV style=’z-index:10000;position:absolute;background:white;padding:5px;border:3px solid gray; -moz-border-radius:10px; border-radius:10px;’/>").appendTo(o),t=n("<TEXTAREA hidefocus rows=5 style=’background:white;width:250px;height:80px;border:0;outline:0’>").appendTo(i),n("<DIV style=’text-align:right’><BUTTON>Save</BUTTON><BUTTON>Cancel</BUTTON></DIV>").appendTo(i),i.find("button:first").on("click",this.save),i.find("button:last").on("click",this.cancel),t.on("keydown",this.handleKeyDown),a.position(e.position),t.focus().select()},this.handleKeyDown=function(t){if(t.which==o.keyCode.ENTER&&t.ctrlKey)a.save();else if(t.which==o.keyCode.ESCAPE)t.preventDefault(),a.cancel();else if(t.which==o.keyCode.TAB&&t.shiftKey)t.preventDefault(),e.grid.navigatePrev();else if(t.which==o.keyCode.TAB)t.preventDefault(),e.grid.navigateNext();else if((t.which==o.keyCode.LEFT||t.which==o.keyCode.RIGHT)&&e.grid.getOptions().editorCellNavOnLRKeys){var i=this.selectionStart,n=this.value.length;t.keyCode===o.keyCode.LEFT&&0===i&&e.grid.navigatePrev(),t.keyCode===o.keyCode.RIGHT&&i>=n-1&&e.grid.navigateNext()}},this.save=function(){e.commitChanges()},this.cancel=function(){t.val(l),e.cancelChanges()},this.hide=function(){i.hide()},this.show=function(){i.show()},this.position=function(e){i.css("top",e.top-5).css("left",e.left-5)},this.destroy=function(){i.remove()},this.focus=function(){t.focus()},this.loadValue=function(i){t.val(l=i[e.column.field]),t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==l)&&t.val()!=l},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()}}}},n”, ” 469: function _(e,n,r){e(460);n.exports={Formatters:{PercentComplete:function(e,n,r,t,c){return null==r||""===r?"-":r<50?"<span style=’color:red;font-weight:bold;’>"+r+"%</span>":"<span style=’color:green’>"+r+"%</span>"},PercentCompleteBar:function(e,n,r,t,c){return null==r||""===r?"":"<span class=’percent-complete-bar’ style=’background:"+(r<30?"red":r<70?"silver":"green")+";width:"+r+"%’></span>"},YesNo:function(e,n,r,t,c){return r?"Yes":"No"},Checkmark:function(e,n,r,t,c){return r?"<img src=’../images/tick.png’>":""},Checkbox:function(e,n,r,t,c){return’<img class="slick-edit-preclick" src="../images/’+(r?"CheckboxY":"CheckboxN")+’.png">’}}}},n”, ” 470: function _(t,o,r){var e=t(458),n=t(460);o.exports={RemoteModel:function(){var t={length:0},o="",r=null,a=1,l=null,i=null,s=new n.Event,u=new n.Event;function f(){for(var o in t)delete t[o];t.length=0}function c(n,f){if(i){i.abort();for(var c=i.fromPage;c<=i.toPage;c++)t[50*c]=void 0}n<0&&(n=0),t.length>0&&(f=Math.min(f,t.length-1));for(var d=Math.floor(n/50),v=Math.floor(f/50);void 0!==t[50*d]&&d<v;)d++;for(;void 0!==t[50*v]&&d<v;)v–;if(d>v||d==v&&void 0!==t[50*d])u.notify({from:n,to:f});else{var m="http://octopart.com/api/v3/parts/search?apikey=68b25f31&include[]=short_description&show[]=uid&show[]=manufacturer&show[]=mpn&show[]=brand&show[]=octopart_url&show[]=short_description&q="+o+"&start="+50*d+"&limit="+(50*(v-d)+50);null!=r&&(m+="&sortby="+r+(a>0?"+asc":"+desc")),null!=l&&clearTimeout(l),l=setTimeout((function(){for(var o=d;o<=v;o++)t[50*o]=null;s.notify({from:n,to:f}),(i=e.jsonp({url:m,callbackParameter:"callback",cache:!0,success:h,error:function(){!function(t,o){alert("error loading pages "+t+" to "+o)}(d,v)}})).fromPage=d,i.toPage=v}),50)}}function h(o){var r=o.request.start,e=r+o.results.length;t.length=Math.min(parseInt(o.hits),1e3);for(var n=0;n<o.results.length;n++){var a=o.results[n].item;t[r+n]=a,t[r+n].index=r+n}i=null,u.notify({from:r,to:e})}return{data:t,clear:f,isDataLoaded:function(o,r){for(var e=o;e<=r;e++)if(null==t[e]||null==t[e])return!1;return!0},ensureData:c,reloadData:function(o,r){for(var e=o;e<=r;e++)delete t[e];c(o,r)},setSort:function(t,o){r=t,a=o,f()},setSearch:function(t){o=t,f()},onDataLoading:s,onDataLoaded:u}}}},n”, ” 471: function _(e,s,t){var o=e(458),l=e(460);s.exports={GroupItemMetadataProvider:function(e){var s,t={checkboxSelect:!1,checkboxSelectCssClass:"slick-group-select-checkbox",checkboxSelectPlugin:null,groupCssClass:"slick-group",groupTitleCssClass:"slick-group-title",totalsCssClass:"slick-group-totals",groupFocusable:!0,totalsFocusable:!1,toggleCssClass:"slick-group-toggle",toggleExpandedCssClass:"expanded",toggleCollapsedCssClass:"collapsed",enableExpandCollapse:!0,groupFormatter:function(e,s,t,o,l,r){if(!a.enableExpandCollapse)return l.title;var c=15*l.level+"px";return(a.checkboxSelect?’<span class="’+a.checkboxSelectCssClass+" "+(l.selectChecked?"checked":"unchecked")+’"></span>’:"")+"<span class=’"+a.toggleCssClass+" "+(l.collapsed?a.toggleCollapsedCssClass:a.toggleExpandedCssClass)+"’ style=’margin-left:"+c+"’></span><span class=’"+a.groupTitleCssClass+"’ level=’"+l.level+"’>"+l.title+"</span>"},totalsFormatter:function(e,s,t,o,l,a){return o.groupTotalsFormatter&&o.groupTotalsFormatter(l,o,a)||""},includeHeaderTotals:!1},a=o.extend(!0,{},t,e);function r(e,t){var r=o(e.target),c=this.getDataItem(t.row);if(c&&c instanceof l.Group&&r.hasClass(a.toggleCssClass)){var n=s.getRenderedRange();this.getData().setRefreshHints({ignoreDiffsBefore:n.top,ignoreDiffsAfter:n.bottom+1}),c.collapsed?this.getData().expandGroup(c.groupingKey):this.getData().collapseGroup(c.groupingKey),e.stopImmediatePropagation(),e.preventDefault()}if(c&&c instanceof l.Group&&r.hasClass(a.checkboxSelectCssClass)){c.selectChecked=!c.selectChecked,r.removeClass(c.selectChecked?"unchecked":"checked"),r.addClass(c.selectChecked?"checked":"unchecked");var i=s.getData().mapItemsToRows(c.rows);(c.selectChecked?a.checkboxSelectPlugin.selectRows:a.checkboxSelectPlugin.deSelectRows)(i)}}function c(e,t){if(a.enableExpandCollapse&&e.which==l.keyCode.SPACE){var o=this.getActiveCell();if(o){var r=this.getDataItem(o.row);if(r&&r instanceof l.Group){var c=s.getRenderedRange();this.getData().setRefreshHints({ignoreDiffsBefore:c.top,ignoreDiffsAfter:c.bottom+1}),r.collapsed?this.getData().expandGroup(r.groupingKey):this.getData().collapseGroup(r.groupingKey),e.stopImmediatePropagation(),e.preventDefault()}}}}return{init:function(e){(s=e).onClick.subscribe(r),s.onKeyDown.subscribe(c)},destroy:function(){s&&(s.onClick.unsubscribe(r),s.onKeyDown.unsubscribe(c))},getGroupRowMetadata:function(e){var s=e&&e.level;return{selectable:!1,focusable:a.groupFocusable,cssClasses:a.groupCssClass+" slick-group-level-"+s,formatter:a.includeHeaderTotals&&a.totalsFormatter,columns:{0:{colspan:a.includeHeaderTotals?"1":"",formatter:a.groupFormatter,editor:null}}}},getTotalsRowMetadata:function(e){var s=e&&e.group&&e.group.level;return{selectable:!1,focusable:a.totalsFocusable,cssClasses:a.totalsCssClass+" slick-group-level-"+s,formatter:a.totalsFormatter,editor:null}},getOptions:function(){return a},setOptions:function(e){o.extend(!0,a,e)}}}}},n”, ” 472: function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return"horizontal"==this.model.orientation?super._width_policy():"fixed"}_height_policy(){return"horizontal"==this.model.orientation?"fixed":super._height_policy()}box_sizing(){const i=super.box_sizing();return"horizontal"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__="WidgetView";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,"horizontal"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__="Widget",s.init_Widget()},n”, ” 473: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),n=e(472),c=e(114),a=s.__importStar(e(18));class o extends n.Widget{constructor(e){super(e)}static init_TableWidget(){this.define({source:[a.Instance],view:[a.Instance,()=>new c.CDSView]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.source,this.view.compute_indices())}}t.TableWidget=o,o.__name__="TableWidget",o.init_TableWidget()},n”, ” 474: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const r=t(1),o=t(475),n=t(455),l=r.__importStar(t(18)),a=t(29),d=t(81);class s extends d.Model{constructor(t){super(t)}static init_TableColumn(){this.define({field:[l.String],title:[l.String],width:[l.Number,300],formatter:[l.Instance,()=>new o.StringFormatter],editor:[l.Instance,()=>new n.StringEditor],sortable:[l.Boolean,!0],default_sort:[l.Sort,"ascending"]})}toColumn(){var t;return{id:a.uniqueId(),field:this.field,name:null!==(t=this.title)&&void 0!==t?t:this.field,width:this.width,formatter:null!=this.formatter?this.formatter.doFormat.bind(this.formatter):void 0,model:this.editor,editor:this.editor.default_view,sortable:this.sortable,defaultSortAsc:"ascending"==this.default_sort}}}i.TableColumn=s,s.__name__="TableColumn",s.init_TableColumn()},n”, ” 475: function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),i=n.__importDefault(t(186)),a=n.__importStar(t(188)),o=t(476),s=n.__importStar(t(18)),l=t(72),c=t(8),m=t(81);class _ extends m.Model{constructor(t){super(t)}doFormat(t,e,r,n,i){return null==r?"":(r+"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}}r.CellFormatter=_,_.__name__="CellFormatter";class u extends _{constructor(t){super(t)}static init_StringFormatter(){this.define({font_style:[s.FontStyle,"normal"],text_align:[s.TextAlign,"left"],text_color:[s.Color]})}doFormat(t,e,r,n,i){const{font_style:a,text_align:o,text_color:s}=this,c=l.div({},null==r?"":""+r);switch(a){case"bold":c.style.fontWeight="bold";break;case"italic":c.style.fontStyle="italic"}return null!=o&&(c.style.textAlign=o),null!=s&&(c.style.color=s),c.outerHTML}}r.StringFormatter=u,u.__name__="StringFormatter",u.init_StringFormatter();class F extends u{constructor(t){super(t)}static init_ScientificFormatter(){this.define({nan_format:[s.String],precision:[s.Number,10],power_limit_high:[s.Number,5],power_limit_low:[s.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}doFormat(t,e,r,n,i){const a=r<=this.scientific_limit_low||r>=this.scientific_limit_high;let o=this.precision;return o<1&&(o=1),r=null!=r&&!isNaN(r)||null==this.nan_format?a?r.toExponential(o):r.toFixed(o).replace(/(\.[0-9]?)0+$/,"$1").replace(/\.$/,""):this.nan_format,super.doFormat(t,e,r,n,i)}}r.ScientificFormatter=F,F.__name__="ScientificFormatter",F.init_ScientificFormatter();class d extends u{constructor(t){super(t)}static init_NumberFormatter(){this.define({format:[s.String,"0,0"],language:[s.String,"en"],rounding:[s.RoundingFunction,"round"],nan_format:[s.String]})}doFormat(t,e,r,n,i){const{format:o,language:s,nan_format:l}=this,c=(()=>{switch(this.rounding){case"round":case"nearest":return Math.round;case"floor":case"rounddown":return Math.floor;case"ceil":case"roundup":return Math.ceil}})();return r=null!=r&&!isNaN(r)||null==l?a.format(r,o,s,c):l,super.doFormat(t,e,r,n,i)}}r.NumberFormatter=d,d.__name__="NumberFormatter",d.init_NumberFormatter();class f extends _{constructor(t){super(t)}static init_BooleanFormatter(){this.define({icon:[s.String,"check"]})}doFormat(t,e,r,n,i){return r?l.i({class:this.icon}).outerHTML:""}}r.BooleanFormatter=f,f.__name__="BooleanFormatter",f.init_BooleanFormatter();class g extends u{constructor(t){super(t)}static init_DateFormatter(){this.define({format:[s.String,"ISO-8601"],nan_format:[s.String]})}getFormat(){switch(this.format){case"ATOM":case"W3C":case"RFC-3339":case"ISO-8601":return"%Y-%m-%d";case"COOKIE":return"%a, %d %b %Y";case"RFC-850":return"%A, %d-%b-%y";case"RFC-1123":case"RFC-2822":return"%a, %e %b %Y";case"RSS":case"RFC-822":case"RFC-1036":return"%a, %e %b %y";case"TIMESTAMP":return;default:return this.format}}doFormat(t,e,r,n,a){const{nan_format:o}=this;let s;return s=null!=(r=c.isString(r)?parseInt(r,10):r)&&!isNaN(r)&&-9223372036854776!==r||null==o?null==r?"":i.default(r,this.getFormat()):o,super.doFormat(t,e,s,n,a)}}r.DateFormatter=g,g.__name__="DateFormatter",g.init_DateFormatter();class h extends _{constructor(t){super(t)}static init_HTMLTemplateFormatter(){this.define({template:[s.String,"<%= value %>"]})}doFormat(t,e,r,n,i){const{template:a}=this;if(null==r)return"";return o._.template(a)(Object.assign(Object.assign({},i),{value:r}))}}r.HTMLTemplateFormatter=h,h.__name__="HTMLTemplateFormatter",h.init_HTMLTemplateFormatter()},n”, ” 476: function _(e,n,t){var f=e(477),i=f.template;function o(e,n,t){return i(e,n,t)}o._=f,n.exports=o,"function"==typeof define&&define.amd?define((function(){return o})):"undefined"==typeof window&&"undefined"==typeof navigator||(window.UnderscoreTemplate=o)},n”, ” 477: function _(r,e,n){n”, ” // (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn”, ” // Underscore may be freely distributed under the MIT license.n”, ” var t={},a=Array.prototype,u=Object.prototype,c=a.slice,o=u.toString,l=u.hasOwnProperty,i=a.forEach,f=Object.keys,s=Array.isArray,p=function(){},_=p.each=p.forEach=function(r,e,n){if(null!=r)if(i&&r.forEach===i)r.forEach(e,n);else if(r.length===+r.length){for(var a=0,u=r.length;a<u;a++)if(e.call(n,r[a],a,r)===t)return}else{var c=p.keys(r);for(a=0,u=c.length;a<u;a++)if(e.call(n,r[c[a]],c[a],r)===t)return}};p.keys=f||function(r){if(r!==Object(r))throw new TypeError("Invalid object");var e=[];for(var n in r)p.has(r,n)&&e.push(n);return e},p.defaults=function(r){return _(c.call(arguments,1),(function(e){if(e)for(var n in e)void 0===r[n]&&(r[n]=e[n])})),r},p.isArray=s||function(r){return"[object Array]"===o.call(r)},p.has=function(r,e){if(!p.isArray(e))return null!=r&&l.call(r,e);for(var n=e.length,t=0;t<n;t++){var a=e[t];if(null==r||!l.call(r,a))return!1;r=r[a]}return!!n};var h={escape:{"&":"&","<":"<",">":">",’"’:""","’":"'"}},v={escape:new RegExp("["+p.keys(h.escape).join("")+"]","g")};p.each(["escape"],(function(r){p[r]=function(e){return null==e?"":(""+e).replace(v[r],(function(e){return h[r][e]}))}})),p.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var g=/(.)^/,y={"’":"’","\\":"\\","\r":"r","\n":"n","\t":"t","\u2028":"u2028","\u2029":"u2029"},j=/\\|’|\\r|\n|\t|\u2028|\u2029/g;p.template=function(r,e,n){var t;n=p.defaults({},n,p.templateSettings);var a=new RegExp([(n.escape||g).source,(n.interpolate||g).source,(n.evaluate||g).source].join("|\")+\"|$\",\"g\"),u=0,c=\"__p+='\";r.replace(a,(function(e,n,t,a,o){return c+=r.slice(u,o).replace(j,(function(r){return\"\\\\\"+y[r]})),n&&(c+=\"'+\\n((__t=(\"+n+\"))==null?'':_.escape(__t))+\\n'\"),t&&(c+=\"'+\\n((__t=(\"+t+\"))==null?'':__t)+\\n'\"),a&&(c+=\"';\\n\"+a+\"\\n__p+='\"),u=o+e.length,e})),c+=\"';\\n\",n.variable||(c=\"with(obj||{}){\\n\"+c+\"}\\n\"),c=\"var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\\n\"+c+\"return __p;\\n\";try{t=new Function(n.variable||"obj","_",c)}catch(r){throw r.source=c,r}if(e)return t(e,p);var o=function(r){return t.call(this,r,p)};return o.source="function("+(n.variable||"obj")+"){\n"+c+"}",o},e.exports=p},n”, ” 478: function _(e,l,b){Object.defineProperty(b,"__esModule",{value:!0}),b.bk_data_table="bk-data-table",b.bk_cell_index="bk-cell-index",b.bk_header_index="bk-header-index",b.bk_cell_editor="bk-cell-editor",b.bk_cell_select="bk-cell-select"},n”, ” 479: function _(A,n,o){Object.defineProperty(o,"__esModule",{value:!0});o.default=’\n.bk-root {\n /\nIMPORTANT:\nIn order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.\nNo built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS\nclasses should alter those!\n/\n /\nIMPORTANT:\nIn order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.\nNo built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS\nclasses should alter those!\n/\n /* Menu button /\n / Menu /\n / Menu items /\n / Disabled /\n / Divider /\n / Excluded item from Column Picker will be hidden /\n}\n.bk-root .slick-header.ui-state-default,\n.bk-root .slick-headerrow.ui-state-default,\n.bk-root .slick-footerrow.ui-state-default,\n.bk-root .slick-top-panel-scroller.ui-state-default,\n.bk-root .slick-group-header.ui-state-default {\n width: 100%;\n overflow: auto;\n position: relative;\n border-left: 0px !important;\n}\n.bk-root .slick-header.ui-state-default {\n overflow: inherit;\n}\n.bk-root .slick-header::-webkit-scrollbar,\n.bk-root .slick-headerrow::-webkit-scrollbar,\n.bk-root .slick-footerrow::-webkit-scrollbar {\n display: none;\n}\n.bk-root .slick-header-columns,\n.bk-root .slick-headerrow-columns,\n.bk-root .slick-footerrow-columns,\n.bk-root .slick-group-header-columns {\n position: relative;\n white-space: nowrap;\n cursor: default;\n overflow: hidden;\n}\n.bk-root .slick-header-column.ui-state-default,\n.bk-root .slick-group-header-column.ui-state-default {\n position: relative;\n display: inline-block;\n box-sizing: content-box !important;\n / this here only for Firefox! /\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n height: 16px;\n line-height: 16px;\n margin: 0;\n padding: 4px;\n border-right: 1px solid silver;\n border-left: 0px !important;\n border-top: 0px !important;\n border-bottom: 0px !important;\n float: left;\n}\n.bk-root .slick-footerrow-column.ui-state-default {\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n margin: 0;\n padding: 4px;\n border-right: 1px solid silver;\n border-left: 0px;\n border-top: 0px;\n border-bottom: 0px;\n float: left;\n line-height: 20px;\n vertical-align: middle;\n}\n.bk-root .slick-headerrow-column.ui-state-default,\n.bk-root .slick-footerrow-column.ui-state-default {\n padding: 4px;\n}\n.bk-root .slick-header-column-sorted {\n font-style: italic;\n}\n.bk-root .slick-sort-indicator {\n display: inline-block;\n width: 8px;\n height: 5px;\n margin-left: 4px;\n margin-top: 6px;\n float: left;\n}\n.bk-root .slick-sort-indicator-numbered {\n display: inline-block;\n width: 8px;\n height: 5px;\n margin-left: 4px;\n margin-top: 0;\n line-height: 20px;\n float: left;\n font-family: Arial;\n font-style: normal;\n font-weight: bold;\n color: #6190CD;\n}\n.bk-root .slick-sort-indicator-desc {\n background: url(images/sort-desc.gif);\n}\n.bk-root .slick-sort-indicator-asc {\n background: url(images/sort-asc.gif);\n}\n.bk-root .slick-resizable-handle {\n position: absolute;\n font-size: 0.1px;\n display: block;\n cursor: col-resize;\n width: 9px;\n right: -5px;\n top: 0;\n height: 100%;\n z-index: 1;\n}\n.bk-root .slick-sortable-placeholder {\n background: silver;\n}\n.bk-root .grid-canvas {\n position: relative;\n outline: 0;\n}\n.bk-root .slick-row.ui-widget-content,\n.bk-root .slick-row.ui-state-active {\n position: absolute;\n border: 0px;\n width: 100%;\n}\n.bk-root .slick-cell,\n.bk-root .slick-headerrow-column,\n.bk-root .slick-footerrow-column {\n position: absolute;\n border: 1px solid transparent;\n border-right: 1px dotted silver;\n border-bottom-color: silver;\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n vertical-align: middle;\n z-index: 1;\n padding: 1px 2px 2px 1px;\n margin: 0;\n white-space: nowrap;\n cursor: default;\n}\n.bk-root .slick-cell,\n.bk-root .slick-headerrow-column {\n border-bottom-color: silver;\n}\n.bk-root .slick-footerrow-column {\n border-top-color: silver;\n}\n.bk-root .slick-group-toggle {\n display: inline-block;\n}\n.bk-root .slick-cell.highlighted {\n background: lightskyblue;\n background: rgba(0, 0, 255, 0.2);\n -webkit-transition: all 0.5s;\n -moz-transition: all 0.5s;\n -o-transition: all 0.5s;\n transition: all 0.5s;\n}\n.bk-root .slick-cell.flashing {\n border: 1px solid red !important;\n}\n.bk-root .slick-cell.editable {\n z-index: 11;\n overflow: visible;\n background: white;\n border-color: black;\n border-style: solid;\n}\n.bk-root .slick-cell:focus {\n outline: none;\n}\n.bk-root .slick-reorder-proxy {\n display: inline-block;\n background: blue;\n opacity: 0.15;\n cursor: move;\n}\n.bk-root .slick-reorder-guide {\n display: inline-block;\n height: 2px;\n background: blue;\n opacity: 0.7;\n}\n.bk-root .slick-selection {\n z-index: 10;\n position: absolute;\n border: 2px dashed black;\n}\n.bk-root .slick-pane {\n position: absolute;\n outline: 0;\n overflow: hidden;\n width: 100%;\n}\n.bk-root .slick-pane-header {\n display: block;\n}\n.bk-root .slick-header {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-headerrow {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-top-panel-scroller {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-top-panel {\n width: 10000px;\n}\n.bk-root .slick-viewport {\n position: relative;\n outline: 0;\n width: 100%;\n}\n.bk-root .slick-header-columns {\n background: url(\’images/header-columns-bg.gif\’) repeat-x center bottom;\n border-bottom: 1px solid silver;\n}\n.bk-root .slick-header-column {\n background: url(\’images/header-columns-bg.gif\’) repeat-x center bottom;\n border-right: 1px solid silver;\n}\n.bk-root .slick-header-column:hover,\n.bk-root .slick-header-column-active {\n background: white url(\’images/header-columns-over-bg.gif\’) repeat-x center bottom;\n}\n.bk-root .slick-headerrow {\n background: #fafafa;\n}\n.bk-root .slick-headerrow-column {\n background: #fafafa;\n border-bottom: 0;\n height: 100%;\n}\n.bk-root .slick-row.ui-state-active {\n background: #F5F7D7;\n}\n.bk-root .slick-row {\n position: absolute;\n background: white;\n border: 0px;\n line-height: 20px;\n}\n.bk-root .slick-row.selected {\n z-index: 10;\n background: #DFE8F6;\n}\n.bk-root .slick-cell {\n padding-left: 4px;\n padding-right: 4px;\n}\n.bk-root .slick-group {\n border-bottom: 2px solid silver;\n}\n.bk-root .slick-group-toggle {\n width: 9px;\n height: 9px;\n margin-right: 5px;\n}\n.bk-root .slick-group-toggle.expanded {\n background: url(images/collapse.gif) no-repeat center center;\n}\n.bk-root .slick-group-toggle.collapsed {\n background: url(images/expand.gif) no-repeat center center;\n}\n.bk-root .slick-group-totals {\n color: gray;\n background: white;\n}\n.bk-root .slick-group-select-checkbox {\n width: 13px;\n height: 13px;\n margin: 3px 10px 0 0;\n display: inline-block;\n}\n.bk-root .slick-group-select-checkbox.checked {\n background: url(images/GrpCheckboxY.png) no-repeat center center;\n}\n.bk-root .slick-group-select-checkbox.unchecked {\n background: url(images/GrpCheckboxN.png) no-repeat center center;\n}\n.bk-root .slick-cell.selected {\n background-color: beige;\n}\n.bk-root .slick-cell.active {\n border-color: gray;\n border-style: solid;\n}\n.bk-root .slick-sortable-placeholder {\n background: silver !important;\n}\n.bk-root .slick-row.odd {\n background: #fafafa;\n}\n.bk-root .slick-row.ui-state-active {\n background: #F5F7D7;\n}\n.bk-root .slick-row.loading {\n opacity: 0.5;\n}\n.bk-root .slick-cell.invalid {\n border-color: red;\n -moz-animation-duration: 0.2s;\n -webkit-animation-duration: 0.2s;\n -moz-animation-name: slickgrid-invalid-hilite;\n -webkit-animation-name: slickgrid-invalid-hilite;\n}\n@-moz-keyframes slickgrid-invalid-hilite {\n from {\n box-shadow: 0 0 6px red;\n }\n to {\n box-shadow: none;\n }\n}\n@-webkit-keyframes slickgrid-invalid-hilite {\n from {\n box-shadow: 0 0 6px red;\n }\n to {\n box-shadow: none;\n }\n}\n.bk-root .slick-column-name,\n.bk-root .slick-sort-indicator {\n /*\n * This makes all "float:right" elements after it that spill over to the next line\n * display way below the lower boundary of the column thus hiding them.\n /\n display: inline-block;\n float: left;\n margin-bottom: 100px;\n}\n.bk-root .slick-header-button {\n display: inline-block;\n float: right;\n vertical-align: top;\n margin: 1px;\n /*\n * This makes all "float:right" elements after it that spill over to the next line\n * display way below the lower boundary of the column thus hiding them.\n /\n margin-bottom: 100px;\n height: 15px;\n width: 15px;\n background-repeat: no-repeat;\n background-position: center center;\n cursor: pointer;\n}\n.bk-root .slick-header-button-hidden {\n width: 0;\n -webkit-transition: 0.2s width;\n -ms-transition: 0.2s width;\n transition: 0.2s width;\n}\n.bk-root .slick-header-column:hover > .slick-header-button {\n width: 15px;\n}\n.bk-root .slick-header-menubutton {\n position: absolute;\n right: 0;\n top: 0;\n bottom: 0;\n width: 14px;\n background-repeat: no-repeat;\n background-position: left center;\n background-image: url(../images/down.gif);\n cursor: pointer;\n display: none;\n border-left: thin ridge silver;\n}\n.bk-root .slick-header-column:hover > .slick-header-menubutton,\n.bk-root .slick-header-column-active .slick-header-menubutton {\n display: inline-block;\n}\n.bk-root .slick-header-menu {\n position: absolute;\n display: inline-block;\n margin: 0;\n padding: 2px;\n cursor: default;\n}\n.bk-root .slick-header-menuitem {\n list-style: none;\n margin: 0;\n padding: 0;\n cursor: pointer;\n}\n.bk-root .slick-header-menuicon {\n display: inline-block;\n width: 16px;\n height: 16px;\n vertical-align: middle;\n margin-right: 4px;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .slick-header-menucontent {\n display: inline-block;\n vertical-align: middle;\n}\n.bk-root .slick-header-menuitem-disabled {\n color: silver;\n}\n.bk-root .slick-header-menuitem.slick-header-menuitem-divider {\n cursor: default;\n border: none;\n overflow: hidden;\n padding: 0;\n height: 1px;\n margin: 8px 2px;\n background-color: #cecece;\n}\n.bk-root .slick-header-menuitem-divider.slick-header-menuitem:hover {\n background-color: #cecece;\n}\n.bk-root .slick-columnpicker {\n border: 1px solid #718BB7;\n background: #f0f0f0;\n padding: 6px;\n -moz-box-shadow: 2px 2px 2px silver;\n -webkit-box-shadow: 2px 2px 2px silver;\n box-shadow: 2px 2px 2px silver;\n min-width: 150px;\n cursor: default;\n position: absolute;\n z-index: 20;\n overflow: auto;\n resize: both;\n}\n.bk-root .slick-columnpicker > .close {\n float: right;\n}\n.bk-root .slick-columnpicker .title {\n font-size: 16px;\n width: 60%;\n border-bottom: solid 1px #d6d6d6;\n margin-bottom: 10px;\n}\n.bk-root .slick-columnpicker li {\n list-style: none;\n margin: 0;\n padding: 0;\n background: none;\n}\n.bk-root .slick-columnpicker input {\n margin: 4px;\n}\n.bk-root .slick-columnpicker li a {\n display: block;\n padding: 4px;\n font-weight: bold;\n}\n.bk-root .slick-columnpicker li a:hover {\n background: white;\n}\n.bk-root .slick-columnpicker-list li.hidden {\n display: none;\n}\n.bk-root .slick-pager {\n width: 100%;\n height: 26px;\n border: 1px solid gray;\n border-top: 0;\n background: url(\’../images/header-columns-bg.gif\’) repeat-x center bottom;\n vertical-align: middle;\n}\n.bk-root .slick-pager .slick-pager-status {\n display: inline-block;\n padding: 6px;\n}\n.bk-root .slick-pager .ui-icon-container {\n display: inline-block;\n margin: 2px;\n border-color: gray;\n}\n.bk-root .slick-pager .slick-pager-nav {\n display: inline-block;\n float: left;\n padding: 2px;\n}\n.bk-root .slick-pager .slick-pager-settings {\n display: block;\n float: right;\n padding: 2px;\n}\n.bk-root .slick-pager .slick-pager-settings * {\n vertical-align: middle;\n}\n.bk-root .slick-pager .slick-pager-settings a {\n padding: 2px;\n text-decoration: underline;\n cursor: pointer;\n}\n.bk-root .slick-header-columns {\n border-bottom: 1px solid silver;\n background-image: none;\n}\n.bk-root .slick-header-column {\n border-right: 1px solid transparent;\n background-image: none;\n}\n.bk-root .slick-header-column:last-of-type {\n border-right-color: transparent;\n}\n.bk-root .slick-header-column:hover,\n.bk-root .slick-header-column-active {\n background-color: #F0F8FF;\n background-image: none;\n}\n.bk-root .slick-group-toggle.expanded {\n background-image: url("data:image/gif;base64,R0lGODlhCQAJAPcAAAFGeoCAgNXz/+v5/+v6/+z5/+36//L7//X8//j9/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACQAJAAAIMwADCBxIUIDBgwIEChgwwECBAgQUFjBAkaJCABgxGlB4AGHCAAIQiBypEEECkScJqgwQEAA7");\n}\n.bk-root .slick-group-toggle.collapsed {\n background-image: url("data:image/gif;base64,R0lGODlhCQAJAPcAAAFGeoCAgNXz/+v5/+v6/+z5/+36//L7//X8//j9/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACQAJAAAIOAADCBxIUIDBgwIEChgwAECBAgQUFjAAQIABAwoBaNSIMYCAAwIqGlSIAEHFkiQTIBCgkqDLAAEBADs=");\n}\n.bk-root .slick-group-select-checkbox.checked {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAIAAACQKrqGAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAEcSURBVChTjdI9S8NQFAbg/raQXVwCRRFE7GK7OXTwD+ikk066VF3a0ja0hQTyQdJrwNq0zrYSQRLEXMSWSlCIb8glqRcFD+9yz3nugXwU4n9XQqMoGjj36uBJsTwuaNo3EwBG4Yy7pe7Gv8YcvhJCGFVsjxsjxujj6OTSGlHv+U2WZUZbPWKOv1ZjT5a7pbIoiptbO5b73mwrjHa1B27l8VlTEIS1damlTnEE+EEN9/P8WrfH81qdAIGeXvTTmzltdCy46sEhxpKUINReZR9NnqZbr9puugxV3NjWh/k74WmmEdWhmUNy2jNmWRc6fZTVADCqao52u+DGWTACYNT3fRxwtatPufTNR4yCIGAUn5hS+vJHhWGY/ANx/A3tvdv+1tZmuwAAAABJRU5ErkJggg==");\n}\n.bk-root .slick-group-select-checkbox.unchecked {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAIAAACQKrqGAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAACXSURBVChT1dIxC4MwEAXg/v8/VOhQVDBNakV0KA6pxS4JhWRSIYPEJxwdDi1de7wleR+3JIf486w0hKCKRpSvvOhZcCmvNQBRuKqdah03U7UjNNH81rOaBYDo8SQaPX8JANFEaLaGBeAPaaY61rGksiN6TmR5H1j9CSoAosYYHLA7vTxYMvVEZa0liif23r93xjm3/oEYF8PiDn/I2FHCAAAAAElFTkSuQmCC");\n}\n.bk-root .slick-sort-indicator-desc {\n background-image: url("data:image/gif;base64,R0lGODlhDQAFAIcAAGGQzUD/QOPu+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAMAAAEALAAAAAANAAUAAAgeAAUAGEgQgIAACBEKLHgwYcKFBh1KFNhQosOKEgMCADs=");\n}\n.bk-root .slick-sort-indicator-asc {\n background-image: url("data:image/gif;base64,R0lGODlhDQAFAIcAAGGQzUD/QOPu+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAMAAAEALAAAAAANAAUAAAgbAAMIDABgoEGDABIeRJhQ4cKGEA8KmEiRosGAADs=");\n}\n.bk-root .slick-header-menubutton {\n background-image: url("data:image/gif;base64,R0lGODlhDgAOAIABADtKYwAAACH5BAEAAAEALAAAAAAOAA4AAAISjI+py+0PHZgUsGobhTn6DxoFADs=");\n}\n.bk-root .slick-pager {\n background-image: none;\n}\n’},n”, ” 480: function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default=’\n.bk-root .bk-data-table {\n box-sizing: content-box;\n font-size: 11px;\n}\n.bk-root .bk-data-table input[type="checkbox"] {\n margin-left: 4px;\n margin-right: 4px;\n}\n.bk-root .bk-cell-special-defaults {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n}\n.bk-root .bk-cell-select {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n}\n.bk-root .slick-cell.bk-cell-index {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n text-align: right;\n background: #f0f0f0;\n color: #909090;\n}\n.bk-root .bk-header-index .slick-column-name {\n float: right;\n}\n.bk-root .slick-row.selected .bk-cell-index {\n background-color: transparent;\n}\n.bk-root .slick-row.odd {\n background: #f0f0f0;\n}\n.bk-root .slick-cell {\n padding-left: 4px;\n padding-right: 4px;\n border-right-color: transparent;\n border: 0.25px solid transparent;\n}\n.bk-root .slick-cell .bk {\n line-height: inherit;\n}\n.bk-root .slick-cell.active {\n border-style: dashed;\n}\n.bk-root .slick-cell.selected {\n background-color: #F0F8FF;\n}\n.bk-root .slick-cell.editable {\n padding-left: 0;\n padding-right: 0;\n}\n.bk-root .bk-cell-editor {\n display: contents;\n}\n.bk-root .bk-cell-editor input,\n.bk-root .bk-cell-editor select {\n width: 100%;\n height: 100%;\n border: 0;\n margin: 0;\n padding: 0;\n outline: 0;\n background: transparent;\n vertical-align: baseline;\n}\n.bk-root .bk-cell-editor input {\n padding-left: 4px;\n padding-right: 4px;\n}\n.bk-root .bk-cell-editor-completion {\n font-size: 11px;\n}\n’},n”, ” 481: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const r=t(1),a=t(463),{Avg:i,Min:o,Max:g,Sum:n}=a.Data.Aggregators,u=r.__importStar(t(18)),c=t(81);class _ extends c.Model{constructor(t){super(t)}static init_RowAggregator(){this.define({field_:[u.String,""]})}}s.RowAggregator=_,_.__name__="RowAggregator",_.init_RowAggregator();const l=new i;class m extends _{constructor(){super(…arguments),this.key="avg",this.init=l.init,this.accumulate=l.accumulate,this.storeResult=l.storeResult}}s.AvgAggregator=m,m.__name__="AvgAggregator";const h=new o;class A extends _{constructor(){super(…arguments),this.key="min",this.init=h.init,this.accumulate=h.accumulate,this.storeResult=h.storeResult}}s.MinAggregator=A,A.__name__="MinAggregator";const R=new g;class d extends _{constructor(){super(…arguments),this.key="max",this.init=R.init,this.accumulate=R.accumulate,this.storeResult=R.storeResult}}s.MaxAggregator=d,d.__name__="MaxAggregator";const x=new n;class w extends _{constructor(){super(…arguments),this.key="sum",this.init=x.init,this.accumulate=x.accumulate,this.storeResult=x.storeResult}}s.SumAggregator=w,w.__name__="SumAggregator"},n”, ” 482: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t(1).__importStar(t(18)),r=t(72),i=t(463),a=t(456),n=t(81);function l(t,e,s,o,i){const{collapsed:a,level:n,title:l}=i,u=r.span({class:"slick-group-toggle "+(a?"collapsed":"expanded"),style:{"margin-left":15*n+"px"}}),g=r.span({class:"slick-group-title",level:n},l);return`${u.outerHTML}${g.outerHTML}`}function u(t,e){const s=this.getDataItem(e.row);s instanceof i.Group&&t.target.classList.contains("slick-group-toggle")&&(s.collapsed?this.getData().expandGroup(s.groupingKey):this.getData().collapseGroup(s.groupingKey),t.stopImmediatePropagation(),t.preventDefault(),this.invalidate(),this.render())}class g extends n.Model{constructor(t){super(t)}static init_GroupingInfo(){this.define({getter:[o.String,""],aggregators:[o.Array,[]],collapsed:[o.Boolean,!1]})}get comparer(){return(t,e)=>t.value===e.value?0:t.value>e.value?1:-1}}s.GroupingInfo=g,g.__name__="GroupingInfo",g.init_GroupingInfo();class c extends a.TableDataProvider{constructor(t,e,s,o){super(t,e),this.columns=s,this.groupingInfos=[],this.groupingDelimiter=":|:",this.target=o}setGrouping(t){this.groupingInfos=t,this.toggledGroupsByLevel=t.map(()=>({})),this.refresh()}extractGroups(t,e){const s=[],o=new Map,r=e?e.level+1:0,{comparer:a,getter:n}=this.groupingInfos[r];return t.forEach(t=>{const a=this.source.data[n][t];let l=o.get(a);if(!l){const t=e?`${e.groupingKey}${this.groupingDelimiter}${a}`:""+a;l=Object.assign(new i.Group,{value:a,level:r,groupingKey:t}),s.push(l),o.set(a,l)}l.rows.push(t)}),r<this.groupingInfos.length-1&&s.forEach(t=>{t.groups=this.extractGroups(t.rows,t)}),s.sort(a),s}calculateTotals(t,e){const s={avg:{},max:{},min:{},sum:{}},{source:{data:o}}=this,r=Object.keys(o),i=t.rows.map(t=>r.reduce((e,s)=>Object.assign(Object.assign({},e),{[s]:o[s][t]}),{}));return e.forEach(t=>{t.init(),i.forEach(e=>t.accumulate(e)),t.storeResult(s)}),s}addTotals(t,e=0){const{aggregators:s,collapsed:o}=this.groupingInfos[e],r=this.toggledGroupsByLevel[e];t.forEach(t=>{t.groups&&this.addTotals(t.groups,e+1),s.length&&t.rows.length&&(t.totals=this.calculateTotals(t,s)),t.collapsed=o!==r[t.groupingKey],t.title=t.value?""+t.value:""})}flattenedGroupedRows(t,e=0){const s=[];return t.forEach(t=>{if(s.push(t),!t.collapsed){const o=t.groups?this.flattenedGroupedRows(t.groups,e+1):t.rows;s.push(…o)}}),s}refresh(){const t=this.extractGroups([…this.view.indices]),e=this.source.data[this.columns[0].field];t.length&&(this.addTotals(t),this.rows=this.flattenedGroupedRows(t),this.target.data={row_indices:this.rows.map(t=>t instanceof i.Group?t.rows:t),labels:this.rows.map(t=>t instanceof i.Group?t.title:e[t])})}getLength(){return this.rows.length}getItem(t){const e=this.rows[t],{source:{data:s}}=this;return e instanceof i.Group?e:Object.keys(s).reduce((t,o)=>Object.assign(Object.assign({},t),{[o]:s[o][e]}),{[a.DTINDEX_NAME]:e})}getItemMetadata(t){const e=this.rows[t],s=this.columns.slice(1),o=e instanceof i.Group?this.groupingInfos[e.level].aggregators:[];return e instanceof i.Group?{selectable:!1,focusable:!1,cssClasses:"slick-group",columns:[{formatter:l},…s.map((function(t){const{field:e,formatter:s}=t,r=o.find(({field_:t})=>t===e);if(r){const{key:t}=r;return{formatter:(o,r,i,a,n)=>s?s(o,r,n.totals[t][e],a,n):""}}return{}}))]}:{}}collapseGroup(t){const e=t.split(this.groupingDelimiter).length-1;this.toggledGroupsByLevel[e][t]=!this.groupingInfos[e].collapsed,this.refresh()}expandGroup(t){const e=t.split(this.groupingDelimiter).length-1;this.toggledGroupsByLevel[e][t]=this.groupingInfos[e].collapsed,this.refresh()}}s.DataCubeProvider=c,c.__name__="DataCubeProvider";class p extends a.DataTableView{render(){const t={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:!1,autosizeColsMode:this.autosize,multiColumnSort:!1,editable:this.model.editable,autoEdit:this.model.auto_edit,rowHeight:this.model.row_height},e=this.model.columns.map(t=>t.toColumn());var s,o;e[0].formatter=(s=e[0].formatter,o=this.model.grouping.length,(t,e,i,a,n)=>{const l=r.span({class:"slick-group-toggle",style:{"margin-left":15*(o||0)+"px"}}),u=s?s(t,e,i,a,n):""+i;return`${l.outerHTML}${u&&u.replace(/^<div/,"<span").replace(/div>$/,"span>")}`}),delete e[0].editor,this.data=new c(this.model.source,this.model.view,e,this.model.target),this.data.setGrouping(this.model.grouping),this.el.style.width=this.model.width+"px",this.grid=new i.Grid(this.el,this.data,e,t),this.grid.onClick.subscribe(u)}}s.DataCubeView=p,p.__name__="DataCubeView";class h extends a.DataTable{constructor(t){super(t)}static init_DataCube(){this.prototype.default_view=p,this.define({grouping:[o.Array,[]],target:[o.Instance]})}}s.DataCube=h,h.__name__="DataCube",h.init_DataCube()},n”, ” }, 453, {"models/widgets/tables/main":453,"models/widgets/tables/index":454,"models/widgets/tables/cell_editors":455,"models/widgets/tables/data_table":456,"models/widgets/widget":472,"models/widgets/tables/table_widget":473,"models/widgets/tables/table_column":474,"models/widgets/tables/cell_formatters":475,"styles/widgets/tables":478,"styles/widgets/slickgrid.css":479,"styles/widgets/tables.css":480,"models/widgets/tables/row_aggregators":481,"models/widgets/tables/data_cube":482}, {});n”, ” })n”, “n”, “n”, ” / END bokeh-tables.min.js /n”, ” },n”, ” n”, ” function(Bokeh) {n”, ” Bokeh.set_log_level("info");n”, ” },n”, ” n”, ” function(Bokeh) {n”, ” / BEGIN panel.min.js /n”, ” /!n”, ” * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn”, ” * All rights reserved.n”, ” * n”, ” * Redistribution and use in source and binary forms, with or without modification,n”, ” * are permitted provided that the following conditions are met:n”, ” * n”, ” * Redistributions of source code must retain the above copyright notice,n”, ” * this list of conditions and the following disclaimer.n”, ” * n”, ” * Redistributions in binary form must reproduce the above copyright notice,n”, ” * this list of conditions and the following disclaimer in the documentationn”, ” * and/or other materials provided with the distribution.n”, ” * n”, ” * Neither the name of Anaconda nor the names of any contributorsn”, ” * may be used to endorse or promote products derived from this softwaren”, ” * without specific prior written permission.n”, ” * n”, ” * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n”, ” * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn”, ” * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn”, ” * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn”, ” * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn”, ” * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn”, ” * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn”, ” * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn”, ” * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n”, ” * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn”, ” * THE POSSIBILITY OF SUCH DAMAGE.n”, ” /n”, ” (function(root, factory) {n”, ” factory(root["Bokeh"], undefined);n”, ” })(this, function(Bokeh, version) {n”, ” var define;n”, ” return (function(modules, entry, aliases, externals) {n”, ” const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n”, ” if (bokeh != null) {n”, ” return bokeh.register_plugin(modules, entry, aliases);n”, ” } else {n”, ” throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n”, ” }n”, ” })n”, ” ({n”, ” "4e90918c0a": function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e("tslib").__importStar(e("c4b9651916"));o.Panel=s;e("@bokehjs/base").register_models(s)},n”, ” "c4b9651916": function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});const o=a("tslib");var t=a("abb1112c2c");r.AcePlot=t.AcePlot;var c=a("66d52165db");r.Audio=c.Audio;var d=a("0106b0a1bf");r.Card=d.Card;var l=a("684c940c17");r.CommManager=l.CommManager;var v=a("d0d2aafca0");r.DeckGLPlot=v.DeckGLPlot;var b=a("c6decbe3f5");r.ECharts=b.ECharts;var i=a("ed08037ce5");r.HTML=i.HTML;var P=a("cb7ac8d1fa");r.IPyWidget=P.IPyWidget;var f=a("284504a0cf");r.JSON=f.JSON;var n=a("7a99dba4eb");r.FileDownload=n.FileDownload;var S=a("7b859fb3cf");r.KaTeX=S.KaTeX;var g=a("aded270681");r.Location=g.Location;var s=a("0c21036737");r.MathJax=s.MathJax;var y=a("79c41bbf71");r.Player=y.Player;var M=a("47b5ae5c43");r.PlotlyPlot=M.PlotlyPlot;var m=a("765e9cea08");r.Progress=m.Progress;var C=a("ff9dd91f7b");r.SingleSelect=C.SingleSelect;var L=a("38b2bc9574");r.State=L.State;var V=a("294adeb985");r.VegaPlot=V.VegaPlot;var u=a("b0c3e9e9c2");r.Video=u.Video;var _=a("3c7145a2fa");r.VideoStream=_.VideoStream,o.__exportStar(a("c51f25e2a7"),r)},n”, ” "abb1112c2c": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),n=e("@bokehjs/core/dom"),a=e("7116a7a602");class d extends a.PanelHTMLBoxView{initialize(){super.initialize(),this._ace=window.ace,this._container=n.div({id:"_"+Math.random().toString(36).substr(2,9),style:{width:"100%",height:"100%"}})}connect_signals(){super.connect_signals(),this.connect(this.model.properties.code.change,()=>this._update_code_from_model()),this.connect(this.model.properties.theme.change,()=>this._update_theme()),this.connect(this.model.properties.language.change,()=>this._update_language()),this.connect(this.model.properties.filename.change,()=>this._update_filename()),this.connect(this.model.properties.print_margin.change,()=>this._update_print_margin()),this.connect(this.model.properties.annotations.change,()=>this._add_annotations()),this.connect(this.model.properties.readonly.change,()=>{this._editor.setReadOnly(this.model.readonly)})}render(){super.render(),this._container!==this.el.childNodes[0]&&this.el.appendChild(this._container),this._container.textContent=this.model.code,this._editor=this._ace.edit(this._container.id),this._langTools=this._ace.require("ace/ext/language_tools"),this._modelist=this._ace.require("ace/ext/modelist"),this._editor.setOptions({enableBasicAutocompletion:!0,enableSnippets:!0,fontFamily:"monospace"}),this._update_theme(),this._update_filename(),this._update_language(),this._editor.setReadOnly(this.model.readonly),this._editor.setShowPrintMargin(this.model.print_margin),this._editor.on("change",()=>this._update_code_from_editor())}_update_code_from_model(){this._editor&&this._editor.getValue()!=this.model.code&&this._editor.setValue(this.model.code)}_update_print_margin(){this._editor.setShowPrintMargin(this.model.print_margin)}_update_code_from_editor(){this._editor.getValue()!=this.model.code&&(this.model.code=this._editor.getValue())}_update_theme(){this._editor.setTheme("ace/theme/"+this.model.theme)}_update_filename(){if(this.model.filename){const e=this._modelist.getModeForPath(this.model.filename).mode;this.model.language=e.slice(9)}}_update_language(){null!=this.model.language&&this._editor.session.setMode("ace/mode/"+this.model.language)}_add_annotations(){this._editor.session.setAnnotations(this.model.annotations)}after_layout(){super.after_layout(),this._editor.resize()}}i.AcePlotView=d,d.__name__="AcePlotView";class h extends s.HTMLBox{constructor(e){super(e)}static init_AcePlot(){this.prototype.default_view=d,this.define({code:[o.String],filename:[o.String],language:[o.String],theme:[o.String,"chrome"],annotations:[o.Array,[]],readonly:[o.Boolean,!1],print_margin:[o.Boolean,!1]}),this.override({height:300,width:300})}}i.AcePlot=h,h.__name__="AcePlot",h.__module__="panel.models.ace",h.init_AcePlot()},n”, ” "7116a7a602": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e("@bokehjs/core/layout/html"),h=e("@bokehjs/core/layout/types"),o=e("@bokehjs/core/dom"),n=e("@bokehjs/models/widgets/markup"),_=e("@bokehjs/models/layouts/html_box");function a(e,i){let t=null!=i.width?"fixed":"fit",s=null!=i.height?"fixed":"fit";const{sizing_mode:h}=i;if(null!=h)if("fixed"==h)t=s="fixed";else if("stretch_both"==h)t=s="max";else if("stretch_width"==h)t="max";else if("stretch_height"==h)s="max";else switch(h){case"scale_width":t="max",s="min";break;case"scale_height":t="min",s="max";break;case"scale_both":t="max",s="max";break;default:throw new Error("unreachable")}"fixed"==t&&i.width?e.style.width=i.width+"px":"max"==t&&(e.style.width="100%"),"fixed"==s&&i.height?e.style.height=i.height+"px":"max"==s&&(e.style.height="100%")}t.set_size=a;class d extends s.VariadicBox{constructor(e,i,t){super(e),this.el=e,this.sizing_mode=i,this.changed=t,this._cache=new Map,this._cache_count=new Map}_measure(e){const i=[e.width,e.height,this.sizing_mode].toString(),t=this.changed&&"fixed"!=this.sizing_mode&&null!=this.sizing_mode?1:0,s=this._cache.get(i),n=this._cache_count.get(i);if(null!=s&&null!=n&&n>=t)return this._cache_count.set(i,n+1),s;const _=new h.Sizeable(e).bounded_to(this.sizing.size),a=o.sized(this.el,_,()=>{const e=new h.Sizeable(o.content_size(this.el)),{border:i,padding:t}=o.extents(this.el);return e.grow_by(i).grow_by(t).map(Math.ceil)});return this._cache.set(i,a),this._cache_count.set(i,0),a}invalidate_cache(){}}t.CachedVariadicBox=d,d.__name__="CachedVariadicBox";class l extends n.MarkupView{_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new d(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}render(){super.render(),a(this.markup_el,this.model)}}t.PanelMarkupView=l,l.__name__="PanelMarkupView";class c extends _.HTMLBoxView{_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new d(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}render(){super.render(),a(this.el,this.model)}}t.PanelHTMLBoxView=c,c.__name__="PanelHTMLBoxView"},n”, ” "66d52165db": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),l=e("7116a7a602");class d extends l.PanelHTMLBoxView{initialize(){super.initialize(),this._blocked=!1,this._setting=!1,this._time=Date.now()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.loop.change,()=>this.set_loop()),this.connect(this.model.properties.paused.change,()=>this.set_paused()),this.connect(this.model.properties.time.change,()=>this.set_time()),this.connect(this.model.properties.value.change,()=>this.set_value()),this.connect(this.model.properties.volume.change,()=>this.set_volume())}render(){super.render(),this.audioEl=document.createElement("audio"),this.audioEl.controls=!0,this.audioEl.src=this.model.value,this.audioEl.currentTime=this.model.time,this.audioEl.loop=this.model.loop,null!=this.model.volume?this.audioEl.volume=this.model.volume/100:this.model.volume=100*this.audioEl.volume,this.audioEl.onpause=()=>this.model.paused=!0,this.audioEl.onplay=()=>this.model.paused=!1,this.audioEl.ontimeupdate=()=>this.update_time(this),this.audioEl.onvolumechange=()=>this.update_volume(this),this.el.appendChild(this.audioEl),this.model.paused||this.audioEl.play()}update_time(e){e._setting?e._setting=!1:Date.now()-e._time<e.model.throttle||(e._blocked=!0,e.model.time=e.audioEl.currentTime,e._time=Date.now())}update_volume(e){e._setting?e._setting=!1:(e._blocked=!0,e.model.volume=100*e.audioEl.volume)}set_loop(){this.audioEl.loop=this.model.loop}set_paused(){!this.audioEl.paused&&this.model.paused&&this.audioEl.pause(),this.audioEl.paused&&!this.model.paused&&this.audioEl.play()}set_volume(){this._blocked?this._blocked=!1:(this._setting=!0,null!=this.model.volume&&(this.audioEl.volume=this.model.volume/100))}set_time(){this._blocked?this._blocked=!1:(this._setting=!0,this.audioEl.currentTime=this.model.time)}set_value(){this.audioEl.src=this.model.value}}i.AudioView=d,d.__name__="AudioView";class u extends s.HTMLBox{constructor(e){super(e)}static init_Audio(){this.prototype.default_view=d,this.define({loop:[o.Boolean,!1],paused:[o.Boolean,!0],time:[o.Number,0],throttle:[o.Number,250],value:[o.Any,""],volume:[o.Number,null]})}}i.Audio=u,u.__name__="Audio",u.__module__="panel.models.widgets",u.init_Audio()},n”, ” "0106b0a1bf": function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const l=e("tslib"),o=e("@bokehjs/models/layouts/column"),a=l.__importStar(e("@bokehjs/core/dom")),i=e("@bokehjs/core/dom"),n=e("@bokehjs/core/layout/grid"),r=l.__importStar(e("@bokehjs/core/properties"));class c extends n.Column{constructor(e,s=!1){super(e),this.collapsed=s}_measure_totals(e,s){const t=this.collapsed?e.slice(0,1):e,l=t.length-1;return this.collapsed||(t[l]=t[l]+5),super._measure_totals(t,s)}}t.CollapseableColumnLayout=c,c.__name__="CollapseableColumnLayout";class d extends o.ColumnView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.collapsed.change,()=>this._collapse());const{active_header_background:e,header_background:s,header_color:t}=this.model.properties;this.on_change([e,s,t],()=>this.render())}_update_layout(){const e=this.child_views.map(e=>e.layout);this.layout=new c(e,this.model.collapsed),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0];const s=this.box_sizing();this.model.collapsed&&(s.height=void 0),this.layout.set_sizing(s)}render(){i.empty(this.el);const{background:e,button_css_classes:s,header_color:t,header_tag:l,header_css_classes:o}=this.model;this.el.style.backgroundColor=null!=e?e:"",i.classes(this.el).clear().add(…this.css_classes());let n=this.model.header_background;this.model.collapsed||null==this.model.active_header_background||(n=this.model.active_header_background);const r=this.child_views[0];let c;if(this.model.collapsible){this.button_el=a.createElement("button",{type:"button",class:o}),this.button_el.style.backgroundColor=null!=n?n:"",this.button_el.appendChild(r.el);const e=a.createElement("p",{class:s});e.innerHTML=this.model.collapsed?"+":"−",this.button_el.appendChild(e),this.button_el.onclick=()=>this._toggle_button(),c=this.button_el}else c=a.createElement(l,{class:o}),c.style.backgroundColor=null!=n?n:"",c.appendChild(r.el);c.style.color=null!=t?t:"",this.el.appendChild(c),r.render();for(const e of this.child_views.slice(1))this.model.collapsed||this.el.appendChild(e.el),e.render()}_toggle_button(){this.model.collapsed=!this.model.collapsed}_collapse(){this.invalidate_render(),this.resize_layout()}_createElement(){return a.createElement(this.model.tag,{class:this.css_classes()})}}t.CardView=d,d.__name__="CardView";class h extends o.Column{constructor(e){super(e)}static init_Card(){this.prototype.default_view=d,this.define({active_header_background:[r.String,null],button_css_classes:[r.Array,[]],collapsed:[r.Boolean,!0],collapsible:[r.Boolean,!0],header_background:[r.String,null],header_color:[r.String,null],header_css_classes:[r.Array,[]],header_tag:[r.String,"div"],tag:[r.String,"div"]})}}t.Card=h,h.__name__="Card",h.__module__="panel.models.layout",h.init_Card()},n”, ” "684c940c17": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),i=e("@bokehjs/document"),s=e("@bokehjs/core/view"),c=e("@bokehjs/model"),l=e("@bokehjs/protocol/message"),_=e("@bokehjs/protocol/receiver");class r extends s.View{renderTo(){}}n.CommManagerView=r,r.__name__="CommManagerView";class a extends c.Model{constructor(e){super(e),this._document_listener=e=>this._document_changed(e),this._receiver=new _.Receiver,this._event_buffer=[],this._blocked=!1,this._timeout=Date.now(),null!=window.PyViz&&window.PyViz.comm_manager?(this.ns=window.PyViz,this.ns.comm_manager.register_target(this.plot_id,this.comm_id,e=>this.msg_handler(e)),this._client_comm=this.ns.comm_manager.get_client_comm(this.plot_id,this.client_comm_id,e=>this.on_ack(e))):console.log("Could not find comm manager on window.PyViz, ensure the extension is loaded.")}_doc_attached(){super._doc_attached(),null!=this.document&&this.document.on_change(this._document_listener)}_document_changed(e){e.setter_id!==this.id&&(e instanceof i.ModelChangedEvent&&!(e.attr in e.model.serializable_attributes())||(this._event_buffer.push(e),(!this._blocked||Date.now()>this._timeout)&&(setTimeout(()=>this.process_events(),this.debounce),this._blocked=!0,this._timeout=Date.now()+this.timeout)))}process_events(){if(null==this.document||null==this._client_comm)return;const e=this.document.create_json_patch(this._event_buffer);this._event_buffer=[];const t=l.Message.create("PATCH-DOC",{},e);this._client_comm.send(t)}on_ack(e){const t=e.metadata;this._event_buffer.length?(this._blocked=!0,this._timeout=Date.now()+this.timeout,this.process_events()):this._blocked=!1,"Ready"==t.msg_type&&t.content?console.log("Python callback returned following output:",t.content):"Error"==t.msg_type&&console.log("Python failed with the following traceback:",t.traceback)}msg_handler(e){const t=e.metadata,n=e.buffers,o=e.content.data,i=this.plot_id;if("Ready"==t.msg_type)t.content?console.log("Python callback returned following output:",t.content):"Error"==t.msg_type&&console.log("Python failed with the following traceback:",t.traceback);else if(null!=i){let e=null;if(i in this.ns.plot_index&&null!=this.ns.plot_index[i]?e=this.ns.plot_index[i]:void 0!==window.Bokeh&&i in window.Bokeh.index&&(e=window.Bokeh.index[i]),null==e)return;null!=n&&n.length>0?this._receiver.consume(n[0].buffer):this._receiver.consume(o);const t=this._receiver.message;null!=t&&Object.keys(t.content).length>0&&null!=this.document&&this.document.apply_json_patch(t.content,t.buffers,this.id)}}static init_CommManager(){this.prototype.default_view=r,this.define({plot_id:[o.String,null],comm_id:[o.String,null],client_comm_id:[o.String,null],timeout:[o.Number,5e3],debounce:[o.Number,50]})}}n.CommManager=a,a.__name__="CommManager",a.__module__="panel.models.comm_manager",a.init_CommManager()},n”, ” "d0d2aafca0": function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const i=e("tslib"),n=e("@bokehjs/core/dom"),a=i.__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),c=e("7116a7a602"),r=e("064eac2866"),d=i.__importDefault(e("093eb75864"));function l(){const e={},t=window.deck,o=Object.keys(t).filter(e=>e.charAt(0)===e.charAt(0).toUpperCase());for(const i of o)e[i]=t[i];return e}class _ extends c.PanelHTMLBoxView{connect_signals(){super.connect_signals();const{data:e,mapbox_api_key:t,tooltip:o,layers:i,initialViewState:n,data_sources:a}=this.model.properties;this.on_change([t,o],()=>this.render()),this.on_change([e,n],()=>this.updateDeck()),this.on_change([i],()=>this._update_layers()),this.on_change([a],()=>this._connect_sources(!0)),this._layer_map={},this._connected=[],this._connect_sources()}_update_layers(){this._layer_map={},this._update_data(!0)}_connect_sources(e=!1){for(const e of this.model.data_sources)this._connected.indexOf(e)<0&&(this.connect(e.properties.data.change,()=>this._update_data(!0)),this._connected.push(e));this._update_data(e)}initialize(){if(super.initialize(),window.deck.JSONConverter){const{CSVLoader:e,Tile3DLoader:t}=window.loaders;window.loaders.registerLoaders([t,e]);const o={classes:l(),enumerations:{COORDINATE_SYSTEM:window.deck.COORDINATE_SYSTEM,GL:d.default},constants:{Tile3DLoader:t}};this.jsonConverter=new window.deck.JSONConverter({configuration:o})}}_update_data(e=!0){let t=0;for(const e of this.model.layers){let o;if(t+=1,t-1 in this._layer_map)o=this.model.data_sources[this._layer_map[t-1]];else{if("number"!=typeof e.data)continue;this._layer_map[t-1]=e.data,o=this.model.data_sources[e.data]}const i=[],n=o.columns();for(let e=0;e<o.get_length();e++){const t={};for(const i of n){let n=o.get_array(i);const a=null==n[0].shape?null:n[0].shape;null!=a&&a.length>1&&"number"==typeof a[0]?t[i]=n.slice(e*a[1],e*a[1]+a[1]):t[i]=n[e]}i.push(t)}e.data=i}e&&this.updateDeck()}_on_click_event(e){const t={coordinate:e.coordinate,lngLat:e.lngLat,index:e.index};this.model.clickState=t}_on_hover_event(e){const t={coordinate:e.coordinate,lngLat:e.lngLat,index:e.index};this.model.hoverState=t}_on_viewState_event(e){this.model.viewState=e.viewState}getData(){return Object.assign(Object.assign({},this.model.data),{layers:this.model.layers,initialViewState:this.model.initialViewState,onViewStateChange:e=>this._on_viewState_event(e),onClick:e=>this._on_click_event(e),onHover:e=>this._on_hover_event(e)})}updateDeck(){if(!this.deckGL)return void this.render();const e=this.getData();if(window.deck.updateDeck)window.deck.updateDeck(e,this.deckGL);else{const t=this.jsonConverter.convert(e);this.deckGL.setProps(t)}}createDeck({mapboxApiKey:e,container:t,jsonInput:o,tooltip:i}){let n;try{const a=this.jsonConverter.convert(o),s=r.makeTooltip(i);n=new window.deck.DeckGL(Object.assign(Object.assign({},a),{map:window.mapboxgl,mapboxApiAccessToken:e,container:t,getTooltip:s}))}catch(e){console.error(e)}return n}render(){super.render();const e=n.div({class:"deckgl"});c.set_size(e,this.model);const t=this.model.mapbox_api_key,o=this.model.tooltip,i=this.getData();window.deck.createDeck?this.deckGL=window.deck.createDeck({mapboxApiKey:t,container:e,jsonInput:i,tooltip:o}):this.deckGL=this.createDeck({mapboxApiKey:t,container:e,jsonInput:i,tooltip:o}),this.el.appendChild(e)}}o.DeckGLPlotView=_,_.__name__="DeckGLPlotView";class h extends s.HTMLBox{constructor(e){super(e)}static init_DeckGLPlot(){this.prototype.default_view=_,this.define({data:[a.Any],data_sources:[a.Array,[]],clickState:[a.Any],hoverState:[a.Any],initialViewState:[a.Any],layers:[a.Array,[]],mapbox_api_key:[a.String],tooltip:[a.Any],viewState:[a.Any]}),this.override({height:400,width:600})}}o.DeckGLPlot=h,h.__name__="DeckGLPlot",h.__module__="panel.models.deckgl",h.init_DeckGLPlot()},n”, ” "064eac2866": function _(e,t,n){n”, ” /n”, ” This file was adapted from https://github.com/uber/deck.gl/ the LICENSEn”, ” below is preserved to comply with the original license.n”, ” n”, ” Copyright (c) 2015 - 2017 Uber Technologies, Inc.n”, ” n”, ” Permission is hereby granted, free of charge, to any person obtaining a copyn”, ” of this software and associated documentation files (the "Software"), to dealn”, ” in the Software without restriction, including without limitation the rightsn”, ” to use, copy, modify, merge, publish, distribute, sublicense, and/or selln”, ” copies of the Software, and to permit persons to whom the Software isn”, ” furnished to do so, subject to the following conditions:n”, ” n”, ” The above copyright notice and this permission notice shall be included inn”, ” all copies or substantial portions of the Software.n”, ” n”, ” THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORn”, ” IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,n”, ” FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEn”, ” AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERn”, ” LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,n”, ” OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS INn”, ” THE SOFTWARE.n”, ” /n”, ” let i,l;Object.defineProperty(n,"__esModule",{value:!0});const o={fontFamily:’"Helvetica Neue", Helvetica, Arial, sans-serif’,display:"flex",flex:"wrap",maxWidth:"500px",flexDirection:"column",zIndex:2};function r(){return document.createElement("div")}function s(e){if(!e.picked)return null;if(e.object===i)return l;const t={html:a(e.object),style:o};return l=t,i=e.object,t}n.getTooltipDefault=s;const c=new Set(["position","index"]);function a(e){const t=r();for(const n in e){if(c.has(n))continue;const i=r();i.className="header",i.textContent=n;const l=r();l.className="value",l.textContent=u(e[n]);const o=r();f(o,i,l),o.appendChild(i),o.appendChild(l),t.appendChild(o)}return t.innerHTML}function f(e,t,n){Object.assign(t.style,{fontWeight:700,marginRight:"10px",flex:"1 1 0%"}),Object.assign(n.style,{flex:"none",maxWidth:"250px",overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"}),Object.assign(e.style,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"stretch"})}function u(e){let t;if(Array.isArray(e)&&e.length>4)t=`Array<${e.length}>`;else if("string"==typeof e)t=e;else if("number"==typeof e)t=String(e);else try{t=JSON.stringify(e)}catch(e){t="<Non-Serializable Object>"}return t.length>50&&(t=t.slice(0,50)),t}function p(e,t){let n=e;for(const e in t)n=n.replace(`{${e}}`,t[e]);return n}n.tabularize=a,n.toText=u,n.substituteIn=p,n.makeTooltip=function(e){return e?e.html||e.text?t=>{if(!t.picked)return null;const n={style:e.style||o};return e.html?n.html=p(e.html,t.object):n.text=p(e.text,t.object),n}:s:null}},n”, ” "093eb75864": function _(E,_,R){_.exports={DEPTH_BUFFER_BIT:256,STENCIL_BUFFER_BIT:1024,COLOR_BUFFER_BIT:16384,POINTS:0,LINES:1,LINE_LOOP:2,LINE_STRIP:3,TRIANGLES:4,TRIANGLE_STRIP:5,TRIANGLE_FAN:6,ZERO:0,ONE:1,SRC_COLOR:768,ONE_MINUS_SRC_COLOR:769,SRC_ALPHA:770,ONE_MINUS_SRC_ALPHA:771,DST_ALPHA:772,ONE_MINUS_DST_ALPHA:773,DST_COLOR:774,ONE_MINUS_DST_COLOR:775,SRC_ALPHA_SATURATE:776,CONSTANT_COLOR:32769,ONE_MINUS_CONSTANT_COLOR:32770,CONSTANT_ALPHA:32771,ONE_MINUS_CONSTANT_ALPHA:32772,FUNC_ADD:32774,FUNC_SUBTRACT:32778,FUNC_REVERSE_SUBTRACT:32779,BLEND_EQUATION:32777,BLEND_EQUATION_RGB:32777,BLEND_EQUATION_ALPHA:34877,BLEND_DST_RGB:32968,BLEND_SRC_RGB:32969,BLEND_DST_ALPHA:32970,BLEND_SRC_ALPHA:32971,BLEND_COLOR:32773,ARRAY_BUFFER_BINDING:34964,ELEMENT_ARRAY_BUFFER_BINDING:34965,LINE_WIDTH:2849,ALIASED_POINT_SIZE_RANGE:33901,ALIASED_LINE_WIDTH_RANGE:33902,CULL_FACE_MODE:2885,FRONT_FACE:2886,DEPTH_RANGE:2928,DEPTH_WRITEMASK:2930,DEPTH_CLEAR_VALUE:2931,DEPTH_FUNC:2932,STENCIL_CLEAR_VALUE:2961,STENCIL_FUNC:2962,STENCIL_FAIL:2964,STENCIL_PASS_DEPTH_FAIL:2965,STENCIL_PASS_DEPTH_PASS:2966,STENCIL_REF:2967,STENCIL_VALUE_MASK:2963,STENCIL_WRITEMASK:2968,STENCIL_BACK_FUNC:34816,STENCIL_BACK_FAIL:34817,STENCIL_BACK_PASS_DEPTH_FAIL:34818,STENCIL_BACK_PASS_DEPTH_PASS:34819,STENCIL_BACK_REF:36003,STENCIL_BACK_VALUE_MASK:36004,STENCIL_BACK_WRITEMASK:36005,VIEWPORT:2978,SCISSOR_BOX:3088,COLOR_CLEAR_VALUE:3106,COLOR_WRITEMASK:3107,UNPACK_ALIGNMENT:3317,PACK_ALIGNMENT:3333,MAX_TEXTURE_SIZE:3379,MAX_VIEWPORT_DIMS:3386,SUBPIXEL_BITS:3408,RED_BITS:3410,GREEN_BITS:3411,BLUE_BITS:3412,ALPHA_BITS:3413,DEPTH_BITS:3414,STENCIL_BITS:3415,POLYGON_OFFSET_UNITS:10752,POLYGON_OFFSET_FACTOR:32824,TEXTURE_BINDING_2D:32873,SAMPLE_BUFFERS:32936,SAMPLES:32937,SAMPLE_COVERAGE_VALUE:32938,SAMPLE_COVERAGE_INVERT:32939,COMPRESSED_TEXTURE_FORMATS:34467,VENDOR:7936,RENDERER:7937,VERSION:7938,IMPLEMENTATION_COLOR_READ_TYPE:35738,IMPLEMENTATION_COLOR_READ_FORMAT:35739,BROWSER_DEFAULT_WEBGL:37444,STATIC_DRAW:35044,STREAM_DRAW:35040,DYNAMIC_DRAW:35048,ARRAY_BUFFER:34962,ELEMENT_ARRAY_BUFFER:34963,BUFFER_SIZE:34660,BUFFER_USAGE:34661,CURRENT_VERTEX_ATTRIB:34342,VERTEX_ATTRIB_ARRAY_ENABLED:34338,VERTEX_ATTRIB_ARRAY_SIZE:34339,VERTEX_ATTRIB_ARRAY_STRIDE:34340,VERTEX_ATTRIB_ARRAY_TYPE:34341,VERTEX_ATTRIB_ARRAY_NORMALIZED:34922,VERTEX_ATTRIB_ARRAY_POINTER:34373,VERTEX_ATTRIB_ARRAY_BUFFER_BINDING:34975,CULL_FACE:2884,FRONT:1028,BACK:1029,FRONT_AND_BACK:1032,BLEND:3042,DEPTH_TEST:2929,DITHER:3024,POLYGON_OFFSET_FILL:32823,SAMPLE_ALPHA_TO_COVERAGE:32926,SAMPLE_COVERAGE:32928,SCISSOR_TEST:3089,STENCIL_TEST:2960,NO_ERROR:0,INVALID_ENUM:1280,INVALID_VALUE:1281,INVALID_OPERATION:1282,OUT_OF_MEMORY:1285,CONTEXT_LOST_WEBGL:37442,CW:2304,CCW:2305,DONT_CARE:4352,FASTEST:4353,NICEST:4354,GENERATE_MIPMAP_HINT:33170,BYTE:5120,UNSIGNED_BYTE:5121,SHORT:5122,UNSIGNED_SHORT:5123,INT:5124,UNSIGNED_INT:5125,FLOAT:5126,DOUBLE:5130,DEPTH_COMPONENT:6402,ALPHA:6406,RGB:6407,RGBA:6408,LUMINANCE:6409,LUMINANCE_ALPHA:6410,UNSIGNED_SHORT_4_4_4_4:32819,UNSIGNED_SHORT_5_5_5_1:32820,UNSIGNED_SHORT_5_6_5:33635,FRAGMENT_SHADER:35632,VERTEX_SHADER:35633,COMPILE_STATUS:35713,DELETE_STATUS:35712,LINK_STATUS:35714,VALIDATE_STATUS:35715,ATTACHED_SHADERS:35717,ACTIVE_ATTRIBUTES:35721,ACTIVE_UNIFORMS:35718,MAX_VERTEX_ATTRIBS:34921,MAX_VERTEX_UNIFORM_VECTORS:36347,MAX_VARYING_VECTORS:36348,MAX_COMBINED_TEXTURE_IMAGE_UNITS:35661,MAX_VERTEX_TEXTURE_IMAGE_UNITS:35660,MAX_TEXTURE_IMAGE_UNITS:34930,MAX_FRAGMENT_UNIFORM_VECTORS:36349,SHADER_TYPE:35663,SHADING_LANGUAGE_VERSION:35724,CURRENT_PROGRAM:35725,NEVER:512,ALWAYS:519,LESS:513,EQUAL:514,LEQUAL:515,GREATER:516,GEQUAL:518,NOTEQUAL:517,KEEP:7680,REPLACE:7681,INCR:7682,DECR:7683,INVERT:5386,INCR_WRAP:34055,DECR_WRAP:34056,NEAREST:9728,LINEAR:9729,NEAREST_MIPMAP_NEAREST:9984,LINEAR_MIPMAP_NEAREST:9985,NEAREST_MIPMAP_LINEAR:9986,LINEAR_MIPMAP_LINEAR:9987,TEXTURE_MAG_FILTER:10240,TEXTURE_MIN_FILTER:10241,TEXTURE_WRAP_S:10242,TEXTURE_WRAP_T:10243,TEXTURE_2D:3553,TEXTURE:5890,TEXTURE_CUBE_MAP:34067,TEXTURE_BINDING_CUBE_MAP:34068,TEXTURE_CUBE_MAP_POSITIVE_X:34069,TEXTURE_CUBE_MAP_NEGATIVE_X:34070,TEXTURE_CUBE_MAP_POSITIVE_Y:34071,TEXTURE_CUBE_MAP_NEGATIVE_Y:34072,TEXTURE_CUBE_MAP_POSITIVE_Z:34073,TEXTURE_CUBE_MAP_NEGATIVE_Z:34074,MAX_CUBE_MAP_TEXTURE_SIZE:34076,TEXTURE0:33984,ACTIVE_TEXTURE:34016,REPEAT:10497,CLAMP_TO_EDGE:33071,MIRRORED_REPEAT:33648,TEXTURE_WIDTH:4096,TEXTURE_HEIGHT:4097,FLOAT_VEC2:35664,FLOAT_VEC3:35665,FLOAT_VEC4:35666,INT_VEC2:35667,INT_VEC3:35668,INT_VEC4:35669,BOOL:35670,BOOL_VEC2:35671,BOOL_VEC3:35672,BOOL_VEC4:35673,FLOAT_MAT2:35674,FLOAT_MAT3:35675,FLOAT_MAT4:35676,SAMPLER_2D:35678,SAMPLER_CUBE:35680,LOW_FLOAT:36336,MEDIUM_FLOAT:36337,HIGH_FLOAT:36338,LOW_INT:36339,MEDIUM_INT:36340,HIGH_INT:36341,FRAMEBUFFER:36160,RENDERBUFFER:36161,RGBA4:32854,RGB5_A1:32855,RGB565:36194,DEPTH_COMPONENT16:33189,STENCIL_INDEX:6401,STENCIL_INDEX8:36168,DEPTH_STENCIL:34041,RENDERBUFFER_WIDTH:36162,RENDERBUFFER_HEIGHT:36163,RENDERBUFFER_INTERNAL_FORMAT:36164,RENDERBUFFER_RED_SIZE:36176,RENDERBUFFER_GREEN_SIZE:36177,RENDERBUFFER_BLUE_SIZE:36178,RENDERBUFFER_ALPHA_SIZE:36179,RENDERBUFFER_DEPTH_SIZE:36180,RENDERBUFFER_STENCIL_SIZE:36181,FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:36048,FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:36049,FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL:36050,FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE:36051,COLOR_ATTACHMENT0:36064,DEPTH_ATTACHMENT:36096,STENCIL_ATTACHMENT:36128,DEPTH_STENCIL_ATTACHMENT:33306,NONE:0,FRAMEBUFFER_COMPLETE:36053,FRAMEBUFFER_INCOMPLETE_ATTACHMENT:36054,FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT:36055,FRAMEBUFFER_INCOMPLETE_DIMENSIONS:36057,FRAMEBUFFER_UNSUPPORTED:36061,FRAMEBUFFER_BINDING:36006,RENDERBUFFER_BINDING:36007,READ_FRAMEBUFFER:36008,DRAW_FRAMEBUFFER:36009,MAX_RENDERBUFFER_SIZE:34024,INVALID_FRAMEBUFFER_OPERATION:1286,UNPACK_FLIP_Y_WEBGL:37440,UNPACK_PREMULTIPLY_ALPHA_WEBGL:37441,UNPACK_COLORSPACE_CONVERSION_WEBGL:37443,READ_BUFFER:3074,UNPACK_ROW_LENGTH:3314,UNPACK_SKIP_ROWS:3315,UNPACK_SKIP_PIXELS:3316,PACK_ROW_LENGTH:3330,PACK_SKIP_ROWS:3331,PACK_SKIP_PIXELS:3332,TEXTURE_BINDING_3D:32874,UNPACK_SKIP_IMAGES:32877,UNPACK_IMAGE_HEIGHT:32878,MAX_3D_TEXTURE_SIZE:32883,MAX_ELEMENTS_VERTICES:33e3,MAX_ELEMENTS_INDICES:33001,MAX_TEXTURE_LOD_BIAS:34045,MAX_FRAGMENT_UNIFORM_COMPONENTS:35657,MAX_VERTEX_UNIFORM_COMPONENTS:35658,MAX_ARRAY_TEXTURE_LAYERS:35071,MIN_PROGRAM_TEXEL_OFFSET:35076,MAX_PROGRAM_TEXEL_OFFSET:35077,MAX_VARYING_COMPONENTS:35659,FRAGMENT_SHADER_DERIVATIVE_HINT:35723,RASTERIZER_DISCARD:35977,VERTEX_ARRAY_BINDING:34229,MAX_VERTEX_OUTPUT_COMPONENTS:37154,MAX_FRAGMENT_INPUT_COMPONENTS:37157,MAX_SERVER_WAIT_TIMEOUT:37137,MAX_ELEMENT_INDEX:36203,RED:6403,RGB8:32849,RGBA8:32856,RGB10_A2:32857,TEXTURE_3D:32879,TEXTURE_WRAP_R:32882,TEXTURE_MIN_LOD:33082,TEXTURE_MAX_LOD:33083,TEXTURE_BASE_LEVEL:33084,TEXTURE_MAX_LEVEL:33085,TEXTURE_COMPARE_MODE:34892,TEXTURE_COMPARE_FUNC:34893,SRGB:35904,SRGB8:35905,SRGB8_ALPHA8:35907,COMPARE_REF_TO_TEXTURE:34894,RGBA32F:34836,RGB32F:34837,RGBA16F:34842,RGB16F:34843,TEXTURE_2D_ARRAY:35866,TEXTURE_BINDING_2D_ARRAY:35869,R11F_G11F_B10F:35898,RGB9_E5:35901,RGBA32UI:36208,RGB32UI:36209,RGBA16UI:36214,RGB16UI:36215,RGBA8UI:36220,RGB8UI:36221,RGBA32I:36226,RGB32I:36227,RGBA16I:36232,RGB16I:36233,RGBA8I:36238,RGB8I:36239,RED_INTEGER:36244,RGB_INTEGER:36248,RGBA_INTEGER:36249,R8:33321,RG8:33323,R16F:33325,R32F:33326,RG16F:33327,RG32F:33328,R8I:33329,R8UI:33330,R16I:33331,R16UI:33332,R32I:33333,R32UI:33334,RG8I:33335,RG8UI:33336,RG16I:33337,RG16UI:33338,RG32I:33339,RG32UI:33340,R8_SNORM:36756,RG8_SNORM:36757,RGB8_SNORM:36758,RGBA8_SNORM:36759,RGB10_A2UI:36975,TEXTURE_IMMUTABLE_FORMAT:37167,TEXTURE_IMMUTABLE_LEVELS:33503,UNSIGNED_INT_2_10_10_10_REV:33640,UNSIGNED_INT_10F_11F_11F_REV:35899,UNSIGNED_INT_5_9_9_9_REV:35902,FLOAT_32_UNSIGNED_INT_24_8_REV:36269,UNSIGNED_INT_24_8:34042,HALF_FLOAT:5131,RG:33319,RG_INTEGER:33320,INT_2_10_10_10_REV:36255,CURRENT_QUERY:34917,QUERY_RESULT:34918,QUERY_RESULT_AVAILABLE:34919,ANY_SAMPLES_PASSED:35887,ANY_SAMPLES_PASSED_CONSERVATIVE:36202,MAX_DRAW_BUFFERS:34852,DRAW_BUFFER0:34853,DRAW_BUFFER1:34854,DRAW_BUFFER2:34855,DRAW_BUFFER3:34856,DRAW_BUFFER4:34857,DRAW_BUFFER5:34858,DRAW_BUFFER6:34859,DRAW_BUFFER7:34860,DRAW_BUFFER8:34861,DRAW_BUFFER9:34862,DRAW_BUFFER10:34863,DRAW_BUFFER11:34864,DRAW_BUFFER12:34865,DRAW_BUFFER13:34866,DRAW_BUFFER14:34867,DRAW_BUFFER15:34868,MAX_COLOR_ATTACHMENTS:36063,COLOR_ATTACHMENT1:36065,COLOR_ATTACHMENT2:36066,COLOR_ATTACHMENT3:36067,COLOR_ATTACHMENT4:36068,COLOR_ATTACHMENT5:36069,COLOR_ATTACHMENT6:36070,COLOR_ATTACHMENT7:36071,COLOR_ATTACHMENT8:36072,COLOR_ATTACHMENT9:36073,COLOR_ATTACHMENT10:36074,COLOR_ATTACHMENT11:36075,COLOR_ATTACHMENT12:36076,COLOR_ATTACHMENT13:36077,COLOR_ATTACHMENT14:36078,COLOR_ATTACHMENT15:36079,SAMPLER_3D:35679,SAMPLER_2D_SHADOW:35682,SAMPLER_2D_ARRAY:36289,SAMPLER_2D_ARRAY_SHADOW:36292,SAMPLER_CUBE_SHADOW:36293,INT_SAMPLER_2D:36298,INT_SAMPLER_3D:36299,INT_SAMPLER_CUBE:36300,INT_SAMPLER_2D_ARRAY:36303,UNSIGNED_INT_SAMPLER_2D:36306,UNSIGNED_INT_SAMPLER_3D:36307,UNSIGNED_INT_SAMPLER_CUBE:36308,UNSIGNED_INT_SAMPLER_2D_ARRAY:36311,MAX_SAMPLES:36183,SAMPLER_BINDING:35097,PIXEL_PACK_BUFFER:35051,PIXEL_UNPACK_BUFFER:35052,PIXEL_PACK_BUFFER_BINDING:35053,PIXEL_UNPACK_BUFFER_BINDING:35055,COPY_READ_BUFFER:36662,COPY_WRITE_BUFFER:36663,COPY_READ_BUFFER_BINDING:36662,COPY_WRITE_BUFFER_BINDING:36663,FLOAT_MAT2x3:35685,FLOAT_MAT2x4:35686,FLOAT_MAT3x2:35687,FLOAT_MAT3x4:35688,FLOAT_MAT4x2:35689,FLOAT_MAT4x3:35690,UNSIGNED_INT_VEC2:36294,UNSIGNED_INT_VEC3:36295,UNSIGNED_INT_VEC4:36296,UNSIGNED_NORMALIZED:35863,SIGNED_NORMALIZED:36764,VERTEX_ATTRIB_ARRAY_INTEGER:35069,VERTEX_ATTRIB_ARRAY_DIVISOR:35070,TRANSFORM_FEEDBACK_BUFFER_MODE:35967,MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS:35968,TRANSFORM_FEEDBACK_VARYINGS:35971,TRANSFORM_FEEDBACK_BUFFER_START:35972,TRANSFORM_FEEDBACK_BUFFER_SIZE:35973,TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN:35976,MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS:35978,MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS:35979,INTERLEAVED_ATTRIBS:35980,SEPARATE_ATTRIBS:35981,TRANSFORM_FEEDBACK_BUFFER:35982,TRANSFORM_FEEDBACK_BUFFER_BINDING:35983,TRANSFORM_FEEDBACK:36386,TRANSFORM_FEEDBACK_PAUSED:36387,TRANSFORM_FEEDBACK_ACTIVE:36388,TRANSFORM_FEEDBACK_BINDING:36389,FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:33296,FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:33297,FRAMEBUFFER_ATTACHMENT_RED_SIZE:33298,FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:33299,FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:33300,FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:33301,FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:33302,FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:33303,FRAMEBUFFER_DEFAULT:33304,DEPTH24_STENCIL8:35056,DRAW_FRAMEBUFFER_BINDING:36006,READ_FRAMEBUFFER_BINDING:36010,RENDERBUFFER_SAMPLES:36011,FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER:36052,FRAMEBUFFER_INCOMPLETE_MULTISAMPLE:36182,UNIFORM_BUFFER:35345,UNIFORM_BUFFER_BINDING:35368,UNIFORM_BUFFER_START:35369,UNIFORM_BUFFER_SIZE:35370,MAX_VERTEX_UNIFORM_BLOCKS:35371,MAX_FRAGMENT_UNIFORM_BLOCKS:35373,MAX_COMBINED_UNIFORM_BLOCKS:35374,MAX_UNIFORM_BUFFER_BINDINGS:35375,MAX_UNIFORM_BLOCK_SIZE:35376,MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS:35377,MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS:35379,UNIFORM_BUFFER_OFFSET_ALIGNMENT:35380,ACTIVE_UNIFORM_BLOCKS:35382,UNIFORM_TYPE:35383,UNIFORM_SIZE:35384,UNIFORM_BLOCK_INDEX:35386,UNIFORM_OFFSET:35387,UNIFORM_ARRAY_STRIDE:35388,UNIFORM_MATRIX_STRIDE:35389,UNIFORM_IS_ROW_MAJOR:35390,UNIFORM_BLOCK_BINDING:35391,UNIFORM_BLOCK_DATA_SIZE:35392,UNIFORM_BLOCK_ACTIVE_UNIFORMS:35394,UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES:35395,UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER:35396,UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER:35398,OBJECT_TYPE:37138,SYNC_CONDITION:37139,SYNC_STATUS:37140,SYNC_FLAGS:37141,SYNC_FENCE:37142,SYNC_GPU_COMMANDS_COMPLETE:37143,UNSIGNALED:37144,SIGNALED:37145,ALREADY_SIGNALED:37146,TIMEOUT_EXPIRED:37147,CONDITION_SATISFIED:37148,WAIT_FAILED:37149,SYNC_FLUSH_COMMANDS_BIT:1,COLOR:6144,DEPTH:6145,STENCIL:6146,MIN:32775,MAX:32776,DEPTH_COMPONENT24:33190,STREAM_READ:35041,STREAM_COPY:35042,STATIC_READ:35045,STATIC_COPY:35046,DYNAMIC_READ:35049,DYNAMIC_COPY:35050,DEPTH_COMPONENT32F:36012,DEPTH32F_STENCIL8:36013,INVALID_INDEX:4294967295,TIMEOUT_IGNORED:-1,MAX_CLIENT_WAIT_TIMEOUT_WEBGL:37447,VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE:35070,UNMASKED_VENDOR_WEBGL:37445,UNMASKED_RENDERER_WEBGL:37446,MAX_TEXTURE_MAX_ANISOTROPY_EXT:34047,TEXTURE_MAX_ANISOTROPY_EXT:34046,COMPRESSED_RGB_S3TC_DXT1_EXT:33776,COMPRESSED_RGBA_S3TC_DXT1_EXT:33777,COMPRESSED_RGBA_S3TC_DXT3_EXT:33778,COMPRESSED_RGBA_S3TC_DXT5_EXT:33779,COMPRESSED_R11_EAC:37488,COMPRESSED_SIGNED_R11_EAC:37489,COMPRESSED_RG11_EAC:37490,COMPRESSED_SIGNED_RG11_EAC:37491,COMPRESSED_RGB8_ETC2:37492,COMPRESSED_RGBA8_ETC2_EAC:37493,COMPRESSED_SRGB8_ETC2:37494,COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:37495,COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2:37496,COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2:37497,COMPRESSED_RGB_PVRTC_4BPPV1_IMG:35840,COMPRESSED_RGBA_PVRTC_4BPPV1_IMG:35842,COMPRESSED_RGB_PVRTC_2BPPV1_IMG:35841,COMPRESSED_RGBA_PVRTC_2BPPV1_IMG:35843,COMPRESSED_RGB_ETC1_WEBGL:36196,COMPRESSED_RGB_ATC_WEBGL:35986,COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL:35986,COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL:34798,UNSIGNED_INT_24_8_WEBGL:34042,HALF_FLOAT_OES:36193,RGBA32F_EXT:34836,RGB32F_EXT:34837,FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT:33297,UNSIGNED_NORMALIZED_EXT:35863,MIN_EXT:32775,MAX_EXT:32776,SRGB_EXT:35904,SRGB_ALPHA_EXT:35906,SRGB8_ALPHA8_EXT:35907,FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT:33296,FRAGMENT_SHADER_DERIVATIVE_HINT_OES:35723,COLOR_ATTACHMENT0_WEBGL:36064,COLOR_ATTACHMENT1_WEBGL:36065,COLOR_ATTACHMENT2_WEBGL:36066,COLOR_ATTACHMENT3_WEBGL:36067,COLOR_ATTACHMENT4_WEBGL:36068,COLOR_ATTACHMENT5_WEBGL:36069,COLOR_ATTACHMENT6_WEBGL:36070,COLOR_ATTACHMENT7_WEBGL:36071,COLOR_ATTACHMENT8_WEBGL:36072,COLOR_ATTACHMENT9_WEBGL:36073,COLOR_ATTACHMENT10_WEBGL:36074,COLOR_ATTACHMENT11_WEBGL:36075,COLOR_ATTACHMENT12_WEBGL:36076,COLOR_ATTACHMENT13_WEBGL:36077,COLOR_ATTACHMENT14_WEBGL:36078,COLOR_ATTACHMENT15_WEBGL:36079,DRAW_BUFFER0_WEBGL:34853,DRAW_BUFFER1_WEBGL:34854,DRAW_BUFFER2_WEBGL:34855,DRAW_BUFFER3_WEBGL:34856,DRAW_BUFFER4_WEBGL:34857,DRAW_BUFFER5_WEBGL:34858,DRAW_BUFFER6_WEBGL:34859,DRAW_BUFFER7_WEBGL:34860,DRAW_BUFFER8_WEBGL:34861,DRAW_BUFFER9_WEBGL:34862,DRAW_BUFFER10_WEBGL:34863,DRAW_BUFFER11_WEBGL:34864,DRAW_BUFFER12_WEBGL:34865,DRAW_BUFFER13_WEBGL:34866,DRAW_BUFFER14_WEBGL:34867,DRAW_BUFFER15_WEBGL:34868,MAX_COLOR_ATTACHMENTS_WEBGL:36063,MAX_DRAW_BUFFERS_WEBGL:34852,VERTEX_ARRAY_BINDING_OES:34229,QUERY_COUNTER_BITS_EXT:34916,CURRENT_QUERY_EXT:34917,QUERY_RESULT_EXT:34918,QUERY_RESULT_AVAILABLE_EXT:34919,TIME_ELAPSED_EXT:35007,TIMESTAMP_EXT:36392,GPU_DISJOINT_EXT:36795}},n”, ” "c6decbe3f5": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),h=e("@bokehjs/models/layouts/html_box");class r extends h.HTMLBoxView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>this._plot());const{width:e,height:t,renderer:s,theme:i}=this.model.properties;this.on_change([e,t],()=>this._resize()),this.on_change([i,s],()=>this.render())}render(){super.render();const e={width:this.model.width,height:this.model.height,renderer:this.model.renderer};null!=this._chart&&window.echarts.dispose(this._chart),this._chart=window.echarts.init(this.el,this.model.theme,e),this._plot()}after_layout(){super.after_layout(),this._chart.resize()}_plot(){null!=window.echarts&&this._chart.setOption(this.model.data)}_resize(){this._chart.resize({width:this.model.width,height:this.model.height})}}s.EChartsView=r,r.__name__="EChartsView";class o extends h.HTMLBox{constructor(e){super(e)}static init_ECharts(){this.prototype.default_view=r,this.define({data:[i.Any],theme:[i.String,"default"],renderer:[i.String,"canvas"]})}}s.ECharts=o,o.__name__="ECharts",o.__module__="panel.models.echarts",o.init_ECharts()},n”, ” "ed08037ce5": function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const n=e("@bokehjs/models/widgets/markup"),a=e("7116a7a602");function o(e){return(new DOMParser).parseFromString(e,"text/html").documentElement.textContent}r.htmlDecode=o;class s extends a.PanelMarkupView{render(){super.render();const e=o(this.model.text)||this.model.text;e?(this.markup_el.innerHTML=e,Array.from(this.markup_el.querySelectorAll("script")).forEach(e=>{const t=document.createElement("script");Array.from(e.attributes).forEach(e=>t.setAttribute(e.name,e.value)),t.appendChild(document.createTextNode(e.innerHTML)),e.parentNode&&e.parentNode.replaceChild(t,e)})):this.markup_el.innerHTML=""}}r.HTMLView=s,s.__name__="HTMLView";class i extends n.Markup{constructor(e){super(e)}static init_HTML(){this.prototype.default_view=s}}r.HTML=i,i.__name__="HTML",i.__module__="panel.models.markup",i.init_HTML()},n”, ” "cb7ac8d1fa": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),d=e("7116a7a602"),l=window.Jupyter;class o extends d.PanelHTMLBoxView{constructor(){super(…arguments),this.rendered=!1}render(){super.render(),this._render().then(()=>{this.rendered=!0,this.invalidate_layout(),this.notify_finished()})}has_finished(){return this.rendered&&super.has_finished()}async _render(){const{spec:e,state:i}=this.model.bundle;let t;if(null!=l&&null!=l.notebook?t=l.notebook.kernel.widget_manager:null!=window.PyViz.widget_manager&&(t=window.PyViz.widget_manager),t)if(null==this.ipyview){const n=(await t.set_state(i)).find(i=>i.model_id==e.model_id);if(null!=n){const e=await t.create_view(n,{el:this.el});if(this.ipyview=e,e.children_views)for(const i of e.children_views.views)await i;this.el.appendChild(e.el),e.trigger("displayed",e)}}else this.el.appendChild(this.ipyview.el);else console.log("Panel IPyWidget model could not find a WidgetManager")}}t.IPyWidgetView=o,o.__name__="IPyWidgetView";class r extends s.HTMLBox{constructor(e){super(e)}static init_IPyWidget(){this.prototype.default_view=o,this.define({bundle:[n.Any,{}]})}}t.IPyWidget=r,r.__name__="IPyWidget",r.__module__="panel.models.ipywidget",r.init_IPyWidget()},n”, ” "284504a0cf": function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e("tslib"),n=s.__importStar(e("@bokehjs/core/properties")),i=e("@bokehjs/models/widgets/markup"),o=s.__importDefault(e("18bba7b7e1")),d=e("7116a7a602");class a extends d.PanelMarkupView{connect_signals(){super.connect_signals();const{depth:e,hover_preview:t,theme:r}=this.model.properties;this.on_change([e,t,r],()=>this.render())}render(){super.render();const e=this.model.text.replace(/(\r\n|\n|\r)/gm,"").replace("’",’"’);let t;try{t=window.JSON.parse(e)}catch(e){return void(this.markup_el.innerHTML="<b>Invalid JSON:</b> "+e.toString())}const r={hoverPreviewEnabled:this.model.hover_preview,theme:this.model.theme},s=null==this.model.depth?1/0:this.model.depth,n=new o.default(t,s,r).render();let i="border-radius: 5px; padding: 10px;";"dark"==this.model.theme?n.style.cssText="background-color: rgb(30, 30, 30);"+i:n.style.cssText=i,this.markup_el.append(n)}}r.JSONView=a,a.__name__="JSONView";const l=["dark","light"];class p extends i.Markup{constructor(e){super(e)}static init_JSON(){this.prototype.default_view=a,this.define({depth:[n.Number,1],hover_preview:[n.Boolean,!1],theme:[n.Enum(l),"dark"]})}}r.JSON=p,p.__name__="JSON",p.__module__="panel.models.markup",p.init_JSON()},n”, ” "18bba7b7e1": function _(t,e,r){function n(t){return null===t?"null":typeof t}function o(t){return!!t&&"object"==typeof t}function i(t){if(void 0===t)return"";if(null===t)return"Object";if("object"==typeof t&&!t.constructor)return"Object";var e=/function ([^(])/.exec(t.constructor.toString());return e&&e.length>1?e[1]:""}function s(t,e,r){return"null"===t||"undefined"===t?t:("string"!==t&&"stringifiable"!==t||(r=’"’+r.replace(/"/g,’\\"’)+’"’),"function"===t?e.toString().replace(/[\r\n]/g,"").replace(/\{.*\}/,"")+"{…}":r)}function a(t){var e="";return o(t)?(e=i(t),Array.isArray(t)&&(e+="["+t.length+"]")):e=s(n(t),t,t),e}function f(t){return"json-formatter-"+t}function m(t,e,r){var n=document.createElement(t);return e&&n.classList.add(f(e)),void 0!==r&&(r instanceof Node?n.appendChild(r):n.appendChild(document.createTextNode(String(r)))),n}Object.defineProperty(r,"__esModule",{value:!0}),function(t){if("undefined"!=typeof window){var e=document.createElement("style");e.setAttribute("media","screen"),e.innerHTML=t,document.head.appendChild(e)}}(‘.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: "No properties";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: "[]";\n}\n.json-formatter-row .json-formatter-string,\n.json-formatter-row .json-formatter-stringifiable {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: "►";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: "No properties";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: "[]";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string,\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: "►";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n’);var l=/(^\d{1,4}[\.|\\/|-]\\d{1,2}[\\.|\\/|-]\\d{1,4})(\\s*(?:0?[1-9]:[0-5]|1(?=[012])\\d:[0-5])\\d\\s*[ap]m)?$/,d=/\\d{2}:\\d{2}:\\d{2} GMT-\\d{4}/,c=/\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{3}Z/,p=window.requestAnimationFrame||function(t){return t(),0},j={hoverPreviewEnabled:!1,hoverPreviewArrayCount:100,hoverPreviewFieldCount:5,animateOpen:!0,animateClose:!0,theme:null,useToJSON:!0,sortPropertiesBy:null},h=function(){function t(t,e,r,n){void 0===e&&(e=1),void 0===r&&(r=j),this.json=t,this.open=e,this.config=r,this.key=n,this._isOpen=null,void 0===this.config.hoverPreviewEnabled&&(this.config.hoverPreviewEnabled=j.hoverPreviewEnabled),void 0===this.config.hoverPreviewArrayCount&&(this.config.hoverPreviewArrayCount=j.hoverPreviewArrayCount),void 0===this.config.hoverPreviewFieldCount&&(this.config.hoverPreviewFieldCount=j.hoverPreviewFieldCount),void 0===this.config.useToJSON&&(this.config.useToJSON=j.useToJSON),\"\"===this.key&&(this.key='\"\"')}return Object.defineProperty(t.prototype,\"isOpen\",{get:function(){return null!==this._isOpen?this._isOpen:this.open>0},set:function(t){this._isOpen=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,\"isDate\",{get:function(){return this.json instanceof Date||"string"===this.type&&(l.test(this.json)||c.test(this.json)||d.test(this.json))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isUrl",{get:function(){return"string"===this.type&&0===this.json.indexOf("http")},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isArray",{get:function(){return Array.isArray(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isObject",{get:function(){return o(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isEmptyObject",{get:function(){return!this.keys.length&&!this.isArray},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isEmpty",{get:function(){return this.isEmptyObject||this.keys&&!this.keys.length&&this.isArray},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"useToJSON",{get:function(){return this.config.useToJSON&&"stringifiable"===this.type},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"hasKey",{get:function(){return void 0!==this.key},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"constructorName",{get:function(){return i(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"type",{get:function(){return this.config.useToJSON&&this.json&&this.json.toJSON?"stringifiable":n(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"keys",{get:function(){if(this.isObject){var t=Object.keys(this.json);return!this.isArray&&this.config.sortPropertiesBy?t.sort(this.config.sortPropertiesBy):t}return[]},enumerable:!0,configurable:!0}),t.prototype.toggleOpen=function(){this.isOpen=!this.isOpen,this.element&&(this.isOpen?this.appendChildren(this.config.animateOpen):this.removeChildren(this.config.animateClose),this.element.classList.toggle(f("open")))},t.prototype.openAtDepth=function(t){void 0===t&&(t=1),t<0||(this.open=t,this.isOpen=0!==t,this.element&&(this.removeChildren(!1),0===t?this.element.classList.remove(f("open")):(this.appendChildren(this.config.animateOpen),this.element.classList.add(f("open")))))},t.prototype.getInlinepreview=function(){var t=this;if(this.isArray)return this.json.length>this.config.hoverPreviewArrayCount?"Array["+this.json.length+"]":"["+this.json.map(a).join(", ")+"]";var e=this.keys,r=e.slice(0,this.config.hoverPreviewFieldCount).map((function(e){return e+":"+a(t.json[e])})),n=e.length>=this.config.hoverPreviewFieldCount?"…":"";return"{"+r.join(", ")+n+"}"},t.prototype.render=function(){this.element=m("div","row");var t=this.isObject?m("a","toggler-link"):m("span");if(this.isObject&&!this.useToJSON&&t.appendChild(m("span","toggler")),this.hasKey&&t.appendChild(m("span","key",this.key+":")),this.isObject&&!this.useToJSON){var e=m("span","value"),r=m("span"),n=m("span","constructor-name",this.constructorName);if(r.appendChild(n),this.isArray){var o=m("span");o.appendChild(m("span","bracket","[")),o.appendChild(m("span","number",this.json.length)),o.appendChild(m("span","bracket","]")),r.appendChild(o)}e.appendChild(r),t.appendChild(e)}else{(e=this.isUrl?m("a"):m("span")).classList.add(f(this.type)),this.isDate&&e.classList.add(f("date")),this.isUrl&&(e.classList.add(f("url")),e.setAttribute("href",this.json));var i=s(this.type,this.json,this.useToJSON?this.json.toJSON():this.json);e.appendChild(document.createTextNode(i)),t.appendChild(e)}if(this.isObject&&this.config.hoverPreviewEnabled){var a=m("span","preview-text");a.appendChild(document.createTextNode(this.getInlinepreview())),t.appendChild(a)}var l=m("div","children");return this.isObject&&l.classList.add(f("object")),this.isArray&&l.classList.add(f("array")),this.isEmpty&&l.classList.add(f("empty")),this.config&&this.config.theme&&this.element.classList.add(f(this.config.theme)),this.isOpen&&this.element.classList.add(f("open")),this.element.appendChild(t),this.element.appendChild(l),this.isObject&&this.isOpen&&this.appendChildren(),this.isObject&&!this.useToJSON&&t.addEventListener("click",this.toggleOpen.bind(this)),this.element},t.prototype.appendChildren=function(e){var r=this;void 0===e&&(e=!1);var n=this.element.querySelector("div."+f("children"));if(n&&!this.isEmpty)if(e){var o=0,i=function(){var e=r.keys[o],s=new t(r.json[e],r.open-1,r.config,e);n.appendChild(s.render()),(o+=1)<r.keys.length&&(o>10?i():p(i))};p(i)}else this.keys.forEach((function(e){var o=new t(r.json[e],r.open-1,r.config,e);n.appendChild(o.render())}))},t.prototype.removeChildren=function(t){void 0===t&&(t=!1);var e=this.element.querySelector("div."+f("children"));if(t){var r=0,n=function(){e&&e.children.length&&(e.removeChild(e.children[0]),(r+=1)>10?n():p(n))};p(n)}else e&&(e.innerHTML="")},t}();r.default=h},n”, ” "7a99dba4eb": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e("tslib"),s=e("@bokehjs/models/widgets/input_widget"),o=e("@bokehjs/styles/buttons"),n=l.__importStar(e("@bokehjs/core/properties"));class a extends s.InputWidgetView{constructor(){super(…arguments),this._downloadable=!1,this._embed=!1,this._prev_href="",this._prev_download=""}initialize(){super.initialize(),this.model.data&&this.model.filename&&(this._embed=!0)}connect_signals(){super.connect_signals(),this.connect(this.model.properties.button_type.change,()=>this._update_button_style()),this.connect(this.model.properties.filename.change,()=>this._update_download()),this.connect(this.model.properties._transfers.change,()=>this._handle_click()),this.connect(this.model.properties.label.change,()=>this._update_label())}render(){super.render(),this.group_el.style.display="flex",this.group_el.style.alignItems="stretch",this.anchor_el=document.createElement("a"),this._update_button_style(),this._update_label(),this.model.disabled?(this.anchor_el.setAttribute("disabled",""),this._downloadable=!1):(this.anchor_el.removeAttribute("disabled"),this._prev_download&&(this.anchor_el.download=this._prev_download),this._prev_href&&(this.anchor_el.href=this._prev_href),this.anchor_el.download&&this.anchor_el.download&&(this._downloadable=!0)),this._embed?this._make_link_downloadable():(this._click_listener=this._increment_clicks.bind(this),this.anchor_el.addEventListener("click",this._click_listener)),this.group_el.appendChild(this.anchor_el)}_increment_clicks(){this.model.clicks=this.model.clicks+1}_handle_click(){!this.model.auto&&this._downloadable||(this._make_link_downloadable(),!this._embed&&this.model.auto&&(this.anchor_el.removeEventListener("click",this._click_listener),this.anchor_el.click(),this.anchor_el.removeAttribute("href"),this.anchor_el.removeAttribute("download"),this.anchor_el.addEventListener("click",this._click_listener)),this._prev_href=this.anchor_el.getAttribute("href"),this._prev_download=this.anchor_el.getAttribute("download"))}_make_link_downloadable(){this._update_href(),this._update_download(),this.anchor_el.download&&this.anchor_el.href&&(this._downloadable=!0)}_update_href(){if(this.model.data){const e=function(e){const t=atob(e.split(",")[1]),i=e.split(",")[0].split(":")[1].split(";")[0],l=new ArrayBuffer(t.length),s=new Uint8Array(l);for(let e=0;e<t.length;e++)s[e]=t.charCodeAt(e);return new Blob([l],{type:i})}(this.model.data);this.anchor_el.href=URL.createObjectURL(e)}}_update_download(){this.model.filename&&(this.anchor_el.download=this.model.filename)}_update_label(){this.anchor_el.textContent=this.model.label}_update_button_style(){if(this.anchor_el.hasAttribute("class")){const e=this.anchor_el.classList.item(1);e&&this.anchor_el.classList.replace(e,o.bk_btn_type(this.model.button_type))}else this.anchor_el.classList.add(o.bk_btn),this.anchor_el.classList.add(o.bk_btn_type(this.model.button_type))}}i.FileDownloadView=a,a.__name__="FileDownloadView";class h extends s.InputWidget{constructor(e){super(e)}static init_FileDownload(){this.prototype.default_view=a,this.define({auto:[n.Boolean,!1],clicks:[n.Number,0],data:[n.NullString,null],label:[n.String,"Download"],filename:[n.String,null],button_type:[n.ButtonType,"default"],_transfers:[n.Number,0]}),this.override({title:""})}}i.FileDownload=h,h.__name__="FileDownload",h.__module__="panel.models.widgets",h.init_FileDownload()},n”, ” "7b859fb3cf": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e("@bokehjs/models/widgets/markup"),n=e("7116a7a602");class r extends n.PanelMarkupView{render(){super.render(),this.markup_el.innerHTML=this.model.text,window.renderMathInElement&&window.renderMathInElement(this.el,{delimiters:[{left:"$$",right:"$$",display:!0},{left:"\\[",right:"\\]",display:!0},{left:"$",right:"$",display:!1},{left:"\\(",right:"\\)",display:!1}]})}}i.KaTeXView=r,r.__name__="KaTeXView";class s extends a.Markup{constructor(e){super(e)}static init_KaTeX(){this.prototype.default_view=r}}i.KaTeX=s,s.__name__="KaTeX",s.__module__="panel.models.katex",s.init_KaTeX()},n”, ” "aded270681": function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o("tslib").__importStar(o("@bokehjs/core/properties")),a=o("@bokehjs/core/view"),n=o("@bokehjs/model");class h extends a.View{initialize(){super.initialize(),this.model.pathname=window.location.pathname,this.model.search=window.location.search,this.model.hash=window.location.hash,this.model.href=window.location.href,this.model.hostname=window.location.hostname,this.model.protocol=window.location.protocol,this.model.port=window.location.port}connect_signals(){super.connect_signals(),this.connect(this.model.properties.pathname.change,()=>this.update("pathname")),this.connect(this.model.properties.search.change,()=>this.update("search")),this.connect(this.model.properties.hash.change,()=>this.update("hash")),this.connect(this.model.properties.reload.change,()=>this.update("reload"))}update(o){this.model.reload&&"reload"!==o?("pathname"==o&&(window.location.pathname=this.model.pathname),"search"==o&&(window.location.search=this.model.search),"hash"==o&&(window.location.hash=this.model.hash)):(window.history.pushState({},"",`${this.model.pathname}${this.model.search}${this.model.hash}`),this.model.href=window.location.href,"reload"===o&&window.location.reload())}}t.LocationView=h,h.__name__="LocationView";class s extends n.Model{constructor(o){super(o)}static init_Location(){this.prototype.default_view=h,this.define({href:[i.String,""],hostname:[i.String,""],pathname:[i.String,""],protocol:[i.String,""],port:[i.String,""],search:[i.String,""],hash:[i.String,""],reload:[i.Boolean,!1]})}}t.Location=s,s.__name__="Location",s.__module__="panel.models.location",s.init_Location()},n”, ” "0c21036737": function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e("@bokehjs/models/widgets/markup"),s=e("7116a7a602");class _ extends s.PanelMarkupView{initialize(){super.initialize(),this._hub=window.MathJax.Hub,this._hub.Config({tex2jax:{inlineMath:[["$","$"],["\\(","\\)"]]}})}render(){super.render(),this._hub&&(this.markup_el.innerHTML=this.model.text,this._hub.Queue(["Typeset",this._hub,this.markup_el]))}}a.MathJaxView=_,_.__name__="MathJaxView";class h extends i.Markup{constructor(e){super(e)}static init_MathJax(){this.prototype.default_view=_}}a.MathJax=h,h.__name__="MathJax",h.__module__="panel.models.mathjax",h.init_MathJax()},n”, ” "79c41bbf71": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/core/dom"),l=e("@bokehjs/models/widgets/widget");function n(e){e.forEach(e=>e.style.borderStyle="inset")}function a(e){e.forEach(e=>e.style.borderStyle="outset")}class r extends l.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.value.change,()=>this.render()),this.connect(this.model.properties.loop_policy.change,()=>this.set_loop_state(this.model.loop_policy)),this.connect(this.model.properties.show_loop_controls.change,()=>{this.model.show_loop_controls&&this.loop_state.parentNode!=this.groupEl?this.groupEl.appendChild(this.loop_state):this.model.show_loop_controls||this.loop_state.parentNode!=this.groupEl||this.el.removeChild(this.loop_state)})}get_height(){return 250}render(){if(null!=this.sliderEl)return this.sliderEl.min=String(this.model.start),this.sliderEl.max=String(this.model.end),void(this.sliderEl.value=String(this.model.value));super.render(),this.groupEl=o.div(),this.groupEl.style.display="flex",this.groupEl.style.flexDirection="column",this.groupEl.style.alignItems="center",this.sliderEl=document.createElement("input"),this.sliderEl.style.width="100%",this.sliderEl.setAttribute("type","range"),this.sliderEl.value=String(this.model.value),this.sliderEl.min=String(this.model.start),this.sliderEl.max=String(this.model.end),this.sliderEl.onchange=e=>this.set_frame(parseInt(e.target.value));const e=o.div();e.style.cssText="margin: 0 auto; display: flex; padding: 5px; align-items: stretch; width: 100%;";const t="text-align: center; min-width: 20px; flex-grow: 1; margin: 2px",s="text-align: center; min-width: 40px; flex-grow: 2; margin: 2px",i=document.createElement("button");i.style.cssText=t,i.appendChild(document.createTextNode("–")),i.onclick=()=>this.slower(),e.appendChild(i);const l=document.createElement("button");l.style.cssText=s,l.appendChild(document.createTextNode("❚◀◀")),l.onclick=()=>this.first_frame(),e.appendChild(l);const r=document.createElement("button");r.style.cssText=s,r.appendChild(document.createTextNode("❚◀")),r.onclick=()=>this.previous_frame(),e.appendChild(r);const d=document.createElement("button");d.style.cssText=s,d.appendChild(document.createTextNode("◀")),d.onclick=()=>this.reverse_animation(),e.appendChild(d);const h=document.createElement("button");h.style.cssText=s,h.appendChild(document.createTextNode("❚❚")),h.onclick=()=>this.pause_animation(),e.appendChild(h);const p=document.createElement("button");p.style.cssText=s,p.appendChild(document.createTextNode("▶")),p.onclick=()=>this.play_animation(),e.appendChild(p);const c=document.createElement("button");c.style.cssText=s,c.appendChild(document.createTextNode("▶❚")),c.onclick=()=>this.next_frame(),e.appendChild(c);const m=document.createElement("button");m.style.cssText=s,m.appendChild(document.createTextNode("▶▶❚")),m.onclick=()=>this.last_frame(),e.appendChild(m);const _=document.createElement("button");_.style.cssText=t,_.appendChild(document.createTextNode("+")),_.onclick=()=>this.faster(),e.appendChild(_),this._toggle_reverse=()=>{a([h,p]),n([d])},this._toogle_pause=()=>{a([d,p]),n([h])},this._toggle_play=()=>{a([d,h]),n([p])},this.loop_state=document.createElement("form"),this.loop_state.style.cssText="margin: 0 auto; display: table";const u=document.createElement("input");u.type="radio",u.value="once",u.name="state";const g=document.createElement("label");g.innerHTML="Once",g.style.cssText="padding: 0 10px 0 5px; user-select:none;";const f=document.createElement("input");f.setAttribute("type","radio"),f.setAttribute("value","loop"),f.setAttribute("name","state");const v=document.createElement("label");v.innerHTML="Loop",v.style.cssText="padding: 0 10px 0 5px; user-select:none;";const y=document.createElement("input");y.setAttribute("type","radio"),y.setAttribute("value","reflect"),y.setAttribute("name","state");const x=document.createElement("label");x.innerHTML="Reflect",x.style.cssText="padding: 0 10px 0 5px; user-select:none;","once"==this.model.loop_policy?u.checked=!0:"loop"==this.model.loop_policy?f.checked=!0:y.checked=!0,this.loop_state.appendChild(u),this.loop_state.appendChild(g),this.loop_state.appendChild(f),this.loop_state.appendChild(v),this.loop_state.appendChild(y),this.loop_state.appendChild(x),this.groupEl.appendChild(this.sliderEl),this.groupEl.appendChild(e),this.model.show_loop_controls&&this.groupEl.appendChild(this.loop_state),this.el.appendChild(this.groupEl)}set_frame(e){this.model.value!=e&&(this.model.value=e),this.sliderEl.value!=String(e)&&(this.sliderEl.value=String(e))}get_loop_state(){for(var e=this.loop_state.state,t=0;t<e.length;t++){var s=e[t];if(s.checked)return s.value}return"once"}set_loop_state(e){for(var t=this.loop_state.state,s=0;s<t.length;s++){var i=t[s];i.value==e&&(i.checked=!0)}}next_frame(){this.set_frame(Math.min(this.model.end,this.model.value+this.model.step))}previous_frame(){this.set_frame(Math.max(this.model.start,this.model.value-this.model.step))}first_frame(){this.set_frame(this.model.start)}last_frame(){this.set_frame(this.model.end)}slower(){this.model.interval=Math.round(this.model.interval/.7),this.model.direction>0?this.play_animation():this.model.direction<0&&this.reverse_animation()}faster(){this.model.interval=Math.round(.7*this.model.interval),this.model.direction>0?this.play_animation():this.model.direction<0&&this.reverse_animation()}anim_step_forward(){if(this.model.value<this.model.end)this.next_frame();else{var e=this.get_loop_state();"loop"==e?this.first_frame():"reflect"==e?(this.last_frame(),this.reverse_animation()):(this.pause_animation(),this.last_frame())}}anim_step_reverse(){if(this.model.value>this.model.start)this.previous_frame();else{var e=this.get_loop_state();"loop"==e?this.last_frame():"reflect"==e?(this.first_frame(),this.play_animation()):(this.pause_animation(),this.first_frame())}}pause_animation(){this._toogle_pause(),this.model.direction=0,this.timer&&(clearInterval(this.timer),this.timer=null)}play_animation(){this.pause_animation(),this._toggle_play(),this.model.direction=1,this.timer||(this.timer=setInterval(()=>this.anim_step_forward(),this.model.interval))}reverse_animation(){this.pause_animation(),this._toggle_reverse(),this.model.direction=-1,this.timer||(this.timer=setInterval(()=>this.anim_step_reverse(),this.model.interval))}}s.PlayerView=r,r.__name__="PlayerView";class d extends l.Widget{constructor(e){super(e)}static init_Player(){this.prototype.default_view=r,this.define({direction:[i.Number,0],interval:[i.Number,500],start:[i.Number],end:[i.Number],step:[i.Number,1],loop_policy:[i.Any,"once"],value:[i.Any,0],show_loop_controls:[i.Boolean,!0]}),this.override({width:400})}}s.Player=d,d.__name__="Player",d.__module__="panel.models.widgets",d.init_Player()},n”, ” "47b5ae5c43": function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const r=t("tslib").__importStar(t("@bokehjs/core/properties")),i=t("@bokehjs/core/dom"),l=t("@bokehjs/core/util/object"),s=t("@bokehjs/core/util/eq"),a=t("@bokehjs/models/layouts/html_box"),p=t("99a25e6992"),n=t("990b5dd5c7"),_=t("7116a7a602"),h=(t,e,o)=>{let r=Array.isArray(e)?[]:{};if("click"===o||"hover"===o||"selected"===o){const o=[];if(null==e)return null;const i=t.data;for(let t=0;t<e.points.length;t++){const r=e.points[t];let l={};for(let t in r){const e=r[t];!r.hasOwnProperty(t)||Array.isArray(e)||n.isPlainObject(e)||(l[t]=e)}null!=r&&(r.hasOwnProperty("curveNumber")&&r.hasOwnProperty("pointNumber")&&i[r.curveNumber].hasOwnProperty("customdata")&&(l.customdata=i[r.curveNumber].customdata[r.pointNumber]),r.hasOwnProperty("pointNumbers")&&(l.pointNumbers=r.pointNumbers)),o[t]=l}r.points=o}else if("relayout"===o||"restyle"===o)for(let t in e)e.hasOwnProperty(t)&&(r[t]=e[t]);return e.hasOwnProperty("range")&&(r.range=e.range),e.hasOwnProperty("lassoPoints")&&(r.lassoPoints=e.lassoPoints),r};class u extends _.PanelHTMLBoxView{constructor(){super(…arguments),this._settingViewport=!1,this._plotInitialized=!1,this._reacting=!1,this._relayouting=!1,this._end_relayouting=p.debounce(()=>{this._relayouting=!1},2e3,!1)}connect_signals(){super.connect_signals(),this.connect(this.model.properties.viewport_update_policy.change,this._updateSetViewportFunction),this.connect(this.model.properties.viewport_update_throttle.change,this._updateSetViewportFunction),this.connect(this.model.properties._render_count.change,this.plot),this.connect(this.model.properties.viewport.change,this._updateViewportFromProperty)}render(){super.render(),this._layout_wrapper=i.div({style:"height: 100%; width: 100%"}),this.el.appendChild(this._layout_wrapper),window.Plotly&&this.plot()}plot(){if(!window.Plotly)return;const t=[];for(let e=0;e<this.model.data.length;e++)t.push(this._get_trace(e,!1));let e=n.deepCopy(this.model.layout);if(this._relayouting){const{layout:t}=this._layout_wrapper;Object.keys(t).reduce((t,o)=>{"axis"===o.slice(1,5)&&"range"in t&&(e[o].range=t.range)},{})}this._reacting=!0,window.Plotly.react(this._layout_wrapper,t,e,this.model.config).then(()=>{var t,e;this._updateSetViewportFunction(),this._updateViewportProperty(),this._plotInitialized||(this._layout_wrapper.on("plotly_relayout",t=>{!0!==t._update_from_property&&(this.model.relayout_data=h(this._layout_wrapper,t,"relayout"),this._updateViewportProperty(),this._end_relayouting())}),this._layout_wrapper.on("plotly_relayouting",()=>{"mouseup"!==this.model.viewport_update_policy&&(this._relayouting=!0,this._updateViewportProperty())}),this._layout_wrapper.on("plotly_restyle",t=>{this.model.restyle_data=h(this._layout_wrapper,t,"restyle"),this._updateViewportProperty()}),this._layout_wrapper.on("plotly_click",t=>{this.model.click_data=h(this._layout_wrapper,t,"click")}),this._layout_wrapper.on("plotly_hover",t=>{this.model.hover_data=h(this._layout_wrapper,t,"hover")}),this._layout_wrapper.on("plotly_selected",t=>{this.model.selected_data=h(this._layout_wrapper,t,"selected")}),this._layout_wrapper.on("plotly_clickannotation",t=>{delete t.event,delete t.fullAnnotation,this.model.clickannotation_data=t}),this._layout_wrapper.on("plotly_deselect",()=>{this.model.selected_data=null}),this._layout_wrapper.on("plotly_unhover",()=>{this.model.hover_data=null})),this._plotInitialized=!0,this._reacting=!1,t=this._layout_wrapper,(e=window.getComputedStyle(t).display)&&"none"!==e&&window.Plotly.Plots.resize(this._layout_wrapper)})}_get_trace(t,e){const o=l.clone(this.model.data[t]),r=this.model.data_sources[t];for(const t of r.columns()){let i=r.get_array(t)[0];if(null!=i.shape&&i.shape.length>1){const t=[],e=i.shape;for(let o=0;o<e[0];o++)t.push(i.slice(o*e[1],(o+1)*e[1]));i=t}let l=t.split("."),s=l[l.length-1],a=o;for(let t of l.slice(0,-1))a=a[t];e&&1==l.length?a[s]=[i]:a[s]=i}return o}_updateViewportFromProperty(){if(!window.Plotly||this._settingViewport||this._reacting||!this.model.viewport)return;const t=this._layout_wrapper._fullLayout;Object.keys(this.model.viewport).reduce((e,o)=>{if(s.isEqual(n.get(t,o),e))return!0;{let t=n.deepCopy(this.model.viewport);return t._update_from_property=!0,window.Plotly.relayout(this.el,t),!1}},{})}_updateViewportProperty(){const t=this._layout_wrapper._fullLayout;let e={};for(let o in t){if(!t.hasOwnProperty(o))continue;let r=o.slice(0,5);"xaxis"!==r&&"yaxis"!==r||(e[o+".range"]=n.deepCopy(t[o].range))}s.isEqual(e,this.model.viewport)||this._setViewport(e)}_updateSetViewportFunction(){"continuous"===this.model.viewport_update_policy||"mouseup"===this.model.viewport_update_policy?this._setViewport=t=>{this._settingViewport||(this._settingViewport=!0,this.model.viewport=t,this._settingViewport=!1)}:this._setViewport=n.throttle(t=>{this._settingViewport||(this._settingViewport=!0,this.model.viewport=t,this._settingViewport=!1)},this.model.viewport_update_throttle)}}o.PlotlyPlotView=u,u.__name__="PlotlyPlotView";class d extends a.HTMLBox{constructor(t){super(t)}static init_PlotlyPlot(){this.prototype.default_view=u,this.define({data:[r.Array,[]],layout:[r.Any,{}],config:[r.Any,{}],data_sources:[r.Array,[]],relayout_data:[r.Any,{}],restyle_data:[r.Array,[]],click_data:[r.Any,{}],hover_data:[r.Any,{}],clickannotation_data:[r.Any,{}],selected_data:[r.Any,{}],viewport:[r.Any,{}],viewport_update_policy:[r.String,"mouseup"],viewport_update_throttle:[r.Number,200],_render_count:[r.Number,0]})}}o.PlotlyPlot=d,d.__name__="PlotlyPlot",d.__module__="panel.models.plotly",d.init_PlotlyPlot()},n”, ” "99a25e6992": function _(n,l,u){function t(n,l,u){var t,e,o,a,r;function i(){var c=Date.now()-a;c<l&&c>=0?t=setTimeout(i,l-c):(t=null,u||(r=n.apply(o,e),o=e=null))}null==l&&(l=100);var c=function(){o=this,e=arguments,a=Date.now();var c=u&&!t;return t||(t=setTimeout(i,l)),c&&(r=n.apply(o,e),o=e=null),r};return c.clear=function(){t&&(clearTimeout(t),t=null)},c.flush=function(){t&&(r=n.apply(o,e),o=e=null,clearTimeout(t),t=null)},c}t.debounce=t,l.exports=t},n”, ” "990b5dd5c7": function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.get=(t,e,n)=>{const r=n=>String.prototype.split.call(e,n).filter(Boolean).reduce((t,e)=>null!=t?t[e]:t,t),o=r(/[,[\]]+?/)||r(/[,[\].]+?/);return void 0===o||o===t?n:o},n.throttle=function(t,e){var n=0;return function(){var r=Number(new Date);r-n>=e&&(t(),n=r)}},n.deepCopy=function t(e){var n;if(null==e||"object"!=typeof e)return e;if(e instanceof Array){n=[];for(var r=0,o=e.length;r<o;r++)n[r]=t(e[r]);return n}if(e instanceof Object){const n={};for(const r in e){const o=r;e.hasOwnProperty(o)&&(n[o]=t(e[o]))}return n}throw new Error("Unable to copy obj! Its type isn’t supported.")},n.isPlainObject=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},n”, ” "765e9cea08": function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/models/layouts/html_box"),r=e("7116a7a602");class l extends o.HTMLBoxView{connect_signals(){super.connect_signals();const e=()=>{this.render(),this.root.compute_layout()};this.connect(this.model.properties.height.change,e),this.connect(this.model.properties.width.change,e),this.connect(this.model.properties.height_policy.change,e),this.connect(this.model.properties.width_policy.change,e),this.connect(this.model.properties.sizing_mode.change,e),this.connect(this.model.properties.active.change,()=>this.setCSS()),this.connect(this.model.properties.bar_color.change,()=>this.setCSS()),this.connect(this.model.properties.css_classes.change,()=>this.setCSS()),this.connect(this.model.properties.value.change,()=>this.setValue()),this.connect(this.model.properties.max.change,()=>this.setMax())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:"inline-block"});this.progressEl=document.createElement("progress"),this.setValue(),this.setMax(),r.set_size(this.progressEl,this.model),this.setCSS();for(const s in e)this.progressEl.style.setProperty(s,e[s]);this.el.appendChild(this.progressEl)}setCSS(){let e=this.model.css_classes.join(" ")+" "+this.model.bar_color;this.model.active&&(e+=" active"),this.progressEl.className=e}setValue(){null!=this.model.value&&(this.progressEl.value=this.model.value)}setMax(){null!=this.model.max&&(this.progressEl.max=this.model.max)}_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new r.CachedVariadicBox(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}}t.ProgressView=l,l.__name__="ProgressView";class n extends o.HTMLBox{constructor(e){super(e)}static init_Progress(){this.prototype.default_view=l,this.define({active:[i.Boolean,!0],bar_color:[i.String,"primary"],style:[i.Any,{}],max:[i.Number,100],value:[i.Any,null]})}}t.Progress=n,n.__name__="Progress",n.__module__="panel.models.widgets",n.init_Progress()},n”, ” "ff9dd91f7b": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib"),n=e("@bokehjs/core/dom"),l=e("@bokehjs/core/util/types"),o=i.__importStar(e("@bokehjs/core/properties")),c=e("@bokehjs/models/widgets/input_widget"),r=e("@bokehjs/styles/widgets/inputs");class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!1,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.style.backgroundImage="none",this.select_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=this.model.value;for(const t of this.el.querySelectorAll("option"))t.value===e&&(t.selected=!0);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector("select:focus");let t=null;for(const e of this.el.querySelectorAll("option"))if(e.selected){t=e.value;break}this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.SingleSelectView=h,h.__name__="SingleSelectView";class d extends c.InputWidget{constructor(e){super(e)}static init_SingleSelect(){this.prototype.default_view=h,this.define({value:[o.String,""],options:[o.Array,[]],size:[o.Number,4]})}}s.SingleSelect=d,d.__name__="SingleSelect",d.__module__="panel.models.widgets",d.init_SingleSelect()},n”, ” "38b2bc9574": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),a=e("@bokehjs/core/view"),o=e("@bokehjs/core/util/array"),c=e("@bokehjs/model"),n=e("@bokehjs/protocol/receiver");class r extends a.View{renderTo(){}}s.StateView=r,r.__name__="StateView";class _ extends c.Model{constructor(e){super(e),this._receiver=new n.Receiver,this._cache={}}apply_state(e){this._receiver.consume(e.header),this._receiver.consume(e.metadata),this._receiver.consume(e.content),this._receiver.message&&this.document&&this.document.apply_json_patch(this._receiver.message.content)}_receive_json(e,t){const s=JSON.parse(e);this._cache[t]=s;let i=this.state;for(const e of this.values)i=i[e];i===t?this.apply_state(s):this._cache[i]&&this.apply_state(this._cache[i])}set_state(e,t){let s=o.copy(this.values);s[this.widgets[e.id]]=t;let i=this.state;for(const e of s)i=i[e];var a,c,n;this.values=s,this.json?this._cache[i]?this.apply_state(this._cache[i]):(a=i,c=e=>this._receive_json(e,i),(n=new XMLHttpRequest).overrideMimeType("application/json"),n.open("GET",a,!0),n.onreadystatechange=function(){4==n.readyState&&200==n.status&&c(n.responseText)},n.send(null)):this.apply_state(i)}static init_State(){this.prototype.default_view=r,this.define({json:[i.Boolean,!1],state:[i.Any,{}],widgets:[i.Any,{}],values:[i.Any,[]]})}}s.State=_,_.__name__="State",_.__module__="panel.models.state",_.init_State()},n”, ” "294adeb985": function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t("tslib").__importStar(t("@bokehjs/core/properties")),a=t("@bokehjs/core/util/types"),n=t("@bokehjs/models/layouts/html_box");class c extends n.HTMLBoxView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,this._plot),this.connect(this.model.properties.data_sources.change,()=>this._connect_sources()),this._connected=[],this._connect_sources()}_connect_sources(){for(const t in this.model.data_sources){const e=this.model.data_sources[t];this._connected.indexOf(t)<0&&(this.connect(e.properties.data.change,this._plot),this._connected.push(t))}}_fetch_datasets(){const t={};for(const e in this.model.data_sources){const s=this.model.data_sources[e],o=[],a=s.columns();for(let t=0;t<s.get_length();t++){const e={};for(const o of a)e[o]=s.data[o][t];o.push(e)}t[e]=o}return t}render(){super.render(),this._plot()}_plot(){const t=this.model.data;if(null!=t&&window.vegaEmbed){if(this.model.data_sources&&Object.keys(this.model.data_sources).length>0){const e=this._fetch_datasets();if("data"in e&&(t.data.values=e.data,delete e.data),null!=t.data){const s=a.isArray(t.data)?t.data:[t.data];for(const t of s)t.name in e&&(t.values=e[t.name],delete e[t.name])}this.model.data.datasets=e}window.vegaEmbed(this.el,this.model.data,{actions:!1})}}}s.VegaPlotView=c,c.__name__="VegaPlotView";class i extends n.HTMLBox{constructor(t){super(t)}static init_VegaPlot(){this.prototype.default_view=c,this.define({data:[o.Any],data_sources:[o.Any]})}}s.VegaPlot=i,i.__name__="VegaPlot",i.__module__="panel.models.vega",i.init_VegaPlot()},n”, ” "b0c3e9e9c2": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),l=e("7116a7a602");class d extends l.PanelHTMLBoxView{initialize(){super.initialize(),this._blocked=!1,this._setting=!1,this._time=Date.now()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.loop.change,()=>this.set_loop()),this.connect(this.model.properties.paused.change,()=>this.set_paused()),this.connect(this.model.properties.time.change,()=>this.set_time()),this.connect(this.model.properties.value.change,()=>this.set_value()),this.connect(this.model.properties.volume.change,()=>this.set_volume())}render(){super.render(),this.videoEl=document.createElement("video"),this.model.sizing_mode&&"fixed"!==this.model.sizing_mode||(this.model.height&&(this.videoEl.height=this.model.height),this.model.width&&(this.videoEl.width=this.model.width)),this.videoEl.style.objectFit="fill",this.videoEl.style.minWidth="100%",this.videoEl.style.minHeight="100%",this.videoEl.controls=!0,this.videoEl.src=this.model.value,this.videoEl.currentTime=this.model.time,this.videoEl.loop=this.model.loop,null!=this.model.volume?this.videoEl.volume=this.model.volume/100:this.model.volume=100*this.videoEl.volume,this.videoEl.onpause=()=>this.model.paused=!0,this.videoEl.onplay=()=>this.model.paused=!1,this.videoEl.ontimeupdate=()=>this.update_time(this),this.videoEl.onvolumechange=()=>this.update_volume(this),this.el.appendChild(this.videoEl),this.model.paused||this.videoEl.play()}update_time(e){e._setting?e._setting=!1:Date.now()-e._time<e.model.throttle||(e._blocked=!0,e.model.time=e.videoEl.currentTime,e._time=Date.now())}update_volume(e){e._setting?e._setting=!1:(e._blocked=!0,e.model.volume=100*e.videoEl.volume)}set_loop(){this.videoEl.loop=this.model.loop}set_paused(){!this.videoEl.paused&&this.model.paused&&this.videoEl.pause(),this.videoEl.paused&&!this.model.paused&&this.videoEl.play()}set_volume(){this._blocked?this._blocked=!1:(this._setting=!0,null!=this.model.volume&&(this.videoEl.volume=this.model.volume/100))}set_time(){this._blocked?this._blocked=!1:(this._setting=!0,this.videoEl.currentTime=this.model.time)}set_value(){this.videoEl.src=this.model.value}}t.VideoView=d,d.__name__="VideoView";class h extends s.HTMLBox{constructor(e){super(e)}static init_Video(){this.prototype.default_view=d,this.define({loop:[o.Boolean,!1],paused:[o.Boolean,!0],time:[o.Number,0],throttle:[o.Number,250],value:[o.Any,""],volume:[o.Number,null]})}}t.Video=h,h.__name__="Video",h.__module__="panel.models.widgets",h.init_Video()},n”, ” "3c7145a2fa": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/models/layouts/html_box"),h=e("7116a7a602");class a extends h.PanelHTMLBoxView{constructor(){super(…arguments),this.constraints={audio:!1,video:!0}}initialize(){super.initialize(),null!==this.model.timeout&&this.set_timeout()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.timeout.change,()=>this.set_timeout()),this.connect(this.model.properties.snapshot.change,()=>this.snapshot()),this.connect(this.model.properties.paused.change,()=>this.pause())}pause(){this.model.paused&&(null!=this.timer&&(clearInterval(this.timer),this.timer=null),this.videoEl.pause()),this.set_timeout()}set_timeout(){this.timer&&(clearInterval(this.timer),this.timer=null),this.model.timeout>0&&(this.timer=setInterval(()=>this.snapshot(),this.model.timeout))}snapshot(){this.canvasEl.width=this.videoEl.videoWidth,this.canvasEl.height=this.videoEl.videoHeight;const e=this.canvasEl.getContext("2d");e&&e.drawImage(this.videoEl,0,0,this.canvasEl.width,this.canvasEl.height),this.model.value=this.canvasEl.toDataURL("image/"+this.model.format,.95)}remove(){super.remove(),this.timer&&(clearInterval(this.timer),this.timer=null)}render(){super.render(),this.videoEl||(this.videoEl=document.createElement("video"),this.model.sizing_mode&&"fixed"!==this.model.sizing_mode||(this.model.height&&(this.videoEl.height=this.model.height),this.model.width&&(this.videoEl.width=this.model.width)),this.videoEl.style.objectFit="fill",this.videoEl.style.minWidth="100%",this.videoEl.style.minHeight="100%",this.canvasEl=document.createElement("canvas"),this.el.appendChild(this.videoEl),navigator.mediaDevices.getUserMedia&&navigator.mediaDevices.getUserMedia(this.constraints).then(e=>{this.videoEl.srcObject=e,this.model.paused||this.videoEl.play()}).catch(console.error))}}i.VideoStreamView=a,a.__name__="VideoStreamView";class l extends o.HTMLBox{constructor(e){super(e)}static init_VideoStream(){this.prototype.default_view=a,this.define({format:[s.String,"png"],paused:[s.Boolean,!1],snapshot:[s.Boolean,!1],timeout:[s.Number,0],value:[s.Any]}),this.override({height:240,width:320})}}i.VideoStream=l,l.__name__="VideoStream",l.__module__="panel.models.widgets",l.init_VideoStream()},n”, ” "c51f25e2a7": function _(e,o,l){Object.defineProperty(l,"__esModule",{value:!0});var V=e("6ed30646d7");l.VTKJSPlot=V.VTKJSPlot;var t=e("087f1e0be6");l.VTKVolumePlot=t.VTKVolumePlot;var a=e("3ae7537200");l.VTKAxes=a.VTKAxes;var r=e("4baab0b7ce");l.VTKSynchronizedPlot=r.VTKSynchronizedPlot},n”, ” "6ed30646d7": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("021b2a3929"),a=e("6c442cdcb4");class r extends s.AbstractVTKView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>{this.invalidate_render()})}render(){super.render(),this._create_orientation_widget(),this._set_axes()}invalidate_render(){this._vtk_renwin=null,super.invalidate_render()}init_vtk_renwin(){this._vtk_renwin=a.vtkns.FullScreenRenderWindow.newInstance({rootContainer:this.el,container:this._vtk_container})}plot(){if(!this.model.data)return void this._vtk_renwin.getRenderWindow().render();const e=a.vtkns.DataAccessHelper.get("zip",{zipContent:atob(this.model.data),callback:t=>{const n=a.vtkns.HttpSceneLoader.newInstance({renderer:this._vtk_renwin.getRenderer(),dataAccessHelper:e}),i=a.vtk.macro.debounce(()=>setTimeout(()=>{null==this._axes&&this.model.axes&&this._set_axes(),this._set_camera_state(),this._get_camera_state()},100),100);n.setUrl("index.json"),n.onReady(i)}})}}n.VTKJSPlotView=r,r.__name__="VTKJSPlotView";class o extends s.AbstractVTKPlot{static init_VTKJSPlot(){this.prototype.default_view=r,this.define({data:[i.String],enable_keybindings:[i.Boolean,!1]})}}n.VTKJSPlot=o,o.__name__="VTKJSPlot",o.init_VTKJSPlot()},n”, ” "021b2a3929": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e("tslib").__importStar(e("@bokehjs/core/properties")),r=e("@bokehjs/core/dom"),s=e("@bokehjs/models/layouts/html_box"),a=e("@bokehjs/core/util/object"),o=e("7116a7a602"),_=e("6c442cdcb4"),d=e("c010237f8b"),c={padding:"0px 2px 0px 2px",maxHeight:"150px",height:"auto",backgroundColor:"rgba(255, 255, 255, 0.4)",borderRadius:"10px",margin:"2px",boxSizing:"border-box",overflow:"hidden",overflowY:"auto",transition:"width 0.1s linear",bottom:"0px",position:"absolute"};class h extends o.PanelHTMLBoxView{initialize(){super.initialize(),this._camera_callbacks=[],this._renderable=!0,this._setting_camera=!1}_add_colorbars(){const e=this.el.querySelector(".vtk_info");if(e&&this.el.removeChild(e),this.model.color_mappers.length<1)return;const t=document.createElement("div");t.classList.add("vtk_info"),_.applyStyle(t,c),_.applyStyle(t,{width:"350px"}),this.el.appendChild(t);const i=[];this.model.color_mappers.forEach(e=>{const n=new d.VTKColorBar(t,e);i.push(n)});const n=document.createElement("div");_.applyStyle(n,{textAlign:"center",fontSize:"20px"}),n.innerText="…",t.addEventListener("click",()=>{"30px"===t.style.width?(t.removeChild(n),_.applyStyle(t,{height:"auto",width:"350px"}),i.forEach(e=>t.appendChild(e.canvas))):(i.forEach(e=>t.removeChild(e.canvas)),_.applyStyle(t,{height:"30px",width:"30px"}),t.appendChild(n))}),t.click()}connect_signals(){super.connect_signals(),this.on_change(this.model.properties.orientation_widget,()=>{this._orientation_widget_visibility(this.model.orientation_widget)}),this.on_change(this.model.properties.camera,()=>this._set_camera_state()),this.on_change(this.model.properties.axes,()=>{this._delete_axes(),this.model.axes&&this._set_axes(),this._vtk_render()}),this.on_change(this.model.properties.color_mappers,()=>this._add_colorbars())}render(){super.render(),this._vtk_renwin&&this._vtk_container?(o.set_size(this._vtk_container,this.model),this.el.appendChild(this._vtk_container)):(this._orientationWidget=null,this._axes=null,this._vtk_container=r.div(),this.init_vtk_renwin(),o.set_size(this._vtk_container,this.model),this.el.appendChild(this._vtk_container),this._vtk_renwin.getInteractor().onEndAnimation(()=>this._get_camera_state()),this._remove_default_key_binding(),this._bind_key_events(),this.plot(),this._add_colorbars(),this.model.renderer_el=this._vtk_renwin)}after_layout(){super.after_layout(),this._renderable&&this._vtk_renwin.resize(),this._vtk_render()}invalidate_render(){this._unsubscribe_camera_cb(),super.invalidate_render()}remove(){this._unsubscribe_camera_cb(),window.removeEventListener("resize",this._vtk_renwin.resize),this._vtk_renwin.delete(),super.remove()}get _vtk_camera_state(){const e=this._vtk_renwin.getRenderer().getActiveCamera();let t;return e&&(t=a.clone(e.get()),delete t.classHierarchy,delete t.vtkObject,delete t.vtkCamera,delete t.viewPlaneNormal,delete t.flattenedDepIds,delete t.managedInstanceId,delete t.directionOfProjection),t}get _axes_canvas(){let e=this._vtk_container.querySelector(".axes-canvas");return e||(e=r.canvas({style:{position:"absolute",top:"0",left:"0",width:"100%",height:"100%"}}),e.classList.add("axes-canvas"),this._vtk_container.appendChild(e),this._vtk_renwin.setResizeCallback(()=>{if(this._axes_canvas){const e=this._vtk_container.getBoundingClientRect(),t=Math.floor(e.width*window.devicePixelRatio),i=Math.floor(e.height*window.devicePixelRatio);this._axes_canvas.setAttribute("width",t.toFixed()),this._axes_canvas.setAttribute("height",i.toFixed())}})),e}_bind_key_events(){this.el.addEventListener("mouseenter",()=>{const e=this._vtk_renwin.getInteractor();this.model.enable_keybindings&&(document.querySelector("body").addEventListener("keypress",e.handleKeyPress),document.querySelector("body").addEventListener("keydown",e.handleKeyDown),document.querySelector("body").addEventListener("keyup",e.handleKeyUp))}),this.el.addEventListener("mouseleave",()=>{const e=this._vtk_renwin.getInteractor();document.querySelector("body").removeEventListener("keypress",e.handleKeyPress),document.querySelector("body").removeEventListener("keydown",e.handleKeyDown),document.querySelector("body").removeEventListener("keyup",e.handleKeyUp)})}_create_orientation_widget(){const e=_.vtkns.AxesActor.newInstance();this._orientationWidget=_.vtkns.OrientationMarkerWidget.newInstance({actor:e,interactor:this._vtk_renwin.getInteractor()}),this._orientationWidget.setEnabled(!0),this._orientationWidget.setViewportCorner(_.vtkns.OrientationMarkerWidget.Corners.BOTTOM_RIGHT),this._orientationWidget.setViewportSize(.15),this._orientationWidget.setMinPixelSize(75),this._orientationWidget.setMaxPixelSize(300),this.model.interactive_orientation_widget&&this._make_orientation_widget_interactive(),this._orientation_widget_visibility(this.model.orientation_widget)}_make_orientation_widget_interactive(){this._widgetManager=_.vtkns.WidgetManager.newInstance(),this._widgetManager.setRenderer(this._orientationWidget.getRenderer());const e=this._orientationWidget.getActor(),t=_.vtkns.InteractiveOrientationWidget.newInstance();t.placeWidget(e.getBounds()),t.setBounds(e.getBounds()),t.setPlaceFactor(1);this._widgetManager.addWidget(t).onOrientationChange(({direction:e})=>{const t=this._vtk_renwin.getRenderer().getActiveCamera(),i=t.getFocalPoint(),n=t.getPosition(),r=t.getViewUp(),s=Math.sqrt(Math.pow(n[0]-i[0],2)+Math.pow(n[1]-i[1],2)+Math.pow(n[2]-i[2],2));t.setPosition(i[0]+e[0]*s,i[1]+e[1]*s,i[2]+e[2]*s),e[0]&&t.setViewUp(_.majorAxis(r,1,2)),e[1]&&t.setViewUp(_.majorAxis(r,0,2)),e[2]&&t.setViewUp(_.majorAxis(r,0,1)),this._vtk_renwin.getRenderer().resetCameraClippingRange(),this._vtk_render(),this._get_camera_state()})}_delete_axes(){if(this._axes){Object.keys(this._axes).forEach(e=>this._vtk_renwin.getRenderer().removeActor(this._axes[e])),this._axes=null;const e=this._axes_canvas.getContext("2d");e&&e.clearRect(0,0,this._axes_canvas.clientWidth*window.devicePixelRatio,this._axes_canvas.clientHeight*window.devicePixelRatio)}}_get_camera_state(){this._setting_camera||(this._setting_camera=!0,this.model.camera=this._vtk_camera_state,this._setting_camera=!1)}_orientation_widget_visibility(e){this._orientationWidget.setEnabled(e),null!=this._widgetManager&&(e?this._widgetManager.enablePicking():this._widgetManager.disablePicking()),this._vtk_render()}_remove_default_key_binding(){const e=this._vtk_renwin.getInteractor();document.querySelector("body").removeEventListener("keypress",e.handleKeyPress),document.querySelector("body").removeEventListener("keydown",e.handleKeyDown),document.querySelector("body").removeEventListener("keyup",e.handleKeyUp)}_set_axes(){if(this.model.axes&&this._vtk_renwin.getRenderer()){const{psActor:e,axesActor:t,gridActor:i}=this.model.axes.create_axes(this._axes_canvas);this._axes={psActor:e,axesActor:t,gridActor:i},this._vtk_renwin.getRenderer().addActor(e),this._vtk_renwin.getRenderer().addActor(t),this._vtk_renwin.getRenderer().addActor(i)}}_set_camera_state(){this._setting_camera||void 0===this._vtk_renwin.getRenderer()||(this._setting_camera=!0,this.model.camera&&JSON.stringify(this.model.camera)!=JSON.stringify(this._vtk_camera_state)&&this._vtk_renwin.getRenderer().getActiveCamera().set(this.model.camera),this._vtk_renwin.getRenderer().resetCameraClippingRange(),this._vtk_render(),this._setting_camera=!1)}_unsubscribe_camera_cb(){this._camera_callbacks.splice(0,this._camera_callbacks.length).map(e=>e.unsubscribe())}_vtk_render(){this._renderable&&(this._orientationWidget&&this._orientationWidget.updateMarkerOrientation(),this._vtk_renwin.getRenderWindow().render())}}i.AbstractVTKView=h,h.__name__="AbstractVTKView";class l extends s.HTMLBox{constructor(e){super(e)}getActors(){return this.renderer_el.getRenderer().getActors()}static init_AbstractVTKPlot(){this.define({axes:[n.Instance],camera:[n.Instance],color_mappers:[n.Array,[]],orientation_widget:[n.Boolean,!1],interactive_orientation_widget:[n.Boolean,!1]}),this.override({height:300,width:300})}}i.AbstractVTKPlot=l,l.__name__="AbstractVTKPlot",l.__module__="panel.models.vtk",l.init_AbstractVTKPlot()},n”, ” "6c442cdcb4": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e("@bokehjs/core/util/array");if(n.ARRAY_TYPES={uint8:Uint8Array,int8:Int8Array,uint16:Uint16Array,int16:Int16Array,uint32:Uint32Array,int32:Int32Array,float32:Float32Array,float64:Float64Array},n.vtk=window.vtk,n.vtkns={},n.vtk){n.vtkns.Actor=n.vtk.Rendering.Core.vtkActor,n.vtkns.AxesActor=n.vtk.Rendering.Core.vtkAxesActor,n.vtkns.Base64=n.vtk.Common.Core.vtkBase64,n.vtkns.BoundingBox=n.vtk.Common.DataModel.vtkBoundingBox,n.vtkns.Camera=n.vtk.Rendering.Core.vtkCamera,n.vtkns.ColorTransferFunction=n.vtk.Rendering.Core.vtkColorTransferFunction,n.vtkns.CubeSource=n.vtk.Filters.Sources.vtkCubeSource,n.vtkns.DataAccessHelper=n.vtk.IO.Core.DataAccessHelper,n.vtkns.DataArray=n.vtk.Common.Core.vtkDataArray,n.vtkns.Follower=n.vtk.Rendering.Core.vtkFollower,n.vtkns.FullScreenRenderWindow=n.vtk.Rendering.Misc.vtkFullScreenRenderWindow,n.vtkns.Glyph3DMapper=n.vtk.Rendering.Core.vtkGlyph3DMapper,n.vtkns.HttpSceneLoader=n.vtk.IO.Core.vtkHttpSceneLoader,n.vtkns.ImageData=n.vtk.Common.DataModel.vtkImageData,n.vtkns.ImageMapper=n.vtk.Rendering.Core.vtkImageMapper,n.vtkns.ImageProperty=n.vtk.Rendering.Core.vtkImageProperty,n.vtkns.ImageSlice=n.vtk.Rendering.Core.vtkImageSlice,n.vtkns.InteractiveOrientationWidget=n.vtk.Widgets.Widgets3D.vtkInteractiveOrientationWidget,n.vtkns.InteractorStyleTrackballCamera=n.vtk.Interaction.Style.vtkInteractorStyleTrackballCamera,n.vtkns.Light=n.vtk.Rendering.Core.vtkLight,n.vtkns.LineSource=n.vtk.Filters.Sources.vtkLineSource,n.vtkns.LookupTable=n.vtk.Common.Core.vtkLookupTable,n.vtkns.macro=n.vtk.macro,n.vtkns.Mapper=n.vtk.Rendering.Core.vtkMapper,n.vtkns.OpenGLRenderWindow=n.vtk.Rendering.OpenGL.vtkRenderWindow,n.vtkns.OrientationMarkerWidget=n.vtk.Interaction.Widgets.vtkOrientationMarkerWidget,n.vtkns.OutlineFilter=n.vtk.Filters.General.vtkOutlineFilter,n.vtkns.PiecewiseFunction=n.vtk.Common.DataModel.vtkPiecewiseFunction,n.vtkns.PixelSpaceCallbackMapper=n.vtk.Rendering.Core.vtkPixelSpaceCallbackMapper,n.vtkns.PlaneSource=n.vtk.Filters.Sources.vtkPlaneSource,n.vtkns.PointSource=n.vtk.Filters.Sources.vtkPointSource,n.vtkns.PolyData=n.vtk.Common.DataModel.vtkPolyData,n.vtkns.Property=n.vtk.Rendering.Core.vtkProperty,n.vtkns.Renderer=n.vtk.Rendering.Core.vtkRenderer,n.vtkns.RenderWindow=n.vtk.Rendering.Core.vtkRenderWindow,n.vtkns.RenderWindowInteractor=n.vtk.Rendering.Core.vtkRenderWindowInteractor,n.vtkns.SphereMapper=n.vtk.Rendering.Core.vtkSphereMapper,n.vtkns.SynchronizableRenderWindow=n.vtk.Rendering.Misc.vtkSynchronizableRenderWindow,n.vtkns.ThirdParty=n.vtk.ThirdParty,n.vtkns.Texture=n.vtk.Rendering.Core.vtkTexture,n.vtkns.Volume=n.vtk.Rendering.Core.vtkVolume,n.vtkns.VolumeController=n.vtk.Interaction.UI.vtkVolumeController,n.vtkns.VolumeMapper=n.vtk.Rendering.Core.vtkVolumeMapper,n.vtkns.VolumeProperty=n.vtk.Rendering.Core.vtkVolumeProperty,n.vtkns.WidgetManager=n.vtk.Widgets.Core.vtkWidgetManager;const{vtkObjectManager:e}=n.vtkns.SynchronizableRenderWindow;e.setTypeMapping("vtkVolumeMapper",n.vtkns.VolumeMapper.newInstance,e.oneTimeGenericUpdater),e.setTypeMapping("vtkSmartVolumeMapper",n.vtkns.VolumeMapper.newInstance,e.oneTimeGenericUpdater),e.setTypeMapping("vtkFollower",n.vtkns.Follower.newInstance,e.genericUpdater)}function o(e){const t=Math.min(Math.max(Math.round(e),0),255).toString(16);return 2==t.length?t:"0"+t}function a(e,t,n){return"#"+o(e)+o(t)+o(n)}function k(e){for(var t=new ArrayBuffer(e.length),n=new Uint8Array(t),r=0,o=e.length;r<o;r++)n[r]=e.charCodeAt(r);return t}n.applyStyle=function(e,t){Object.keys(t).forEach(n=>{e.style[n]=t[n]})},n.hexToRGB=function(e){return[parseInt(e.slice(1,3),16)/255,parseInt(e.slice(3,5),16)/255,parseInt(e.slice(5,7),16)/255]},n.rgbToHex=a,n.vtkLutToMapper=function(e){const{scale:t,nodes:o}=e.get("scale","nodes");if(t!==n.vtkns.ColorTransferFunction.Scale.LINEAR)throw"Error transfer function scale not handle";const k=o.map(e=>e.x),v=Math.min(…k),i=Math.max(…k),s=r.linspace(v,i,255),c=[0,0,0];return{low:v,high:i,palette:s.map(t=>(e.getColor(t,c),a(255*c[0],255*c[1],255*c[2])))}},n.data2VTKImageData=function(e){const t=n.vtkns.ImageData.newInstance({spacing:e.spacing});t.setDimensions(e.dims),t.setOrigin(null!=e.origin?e.origin:e.dims.map(e=>e/2));const r=n.vtkns.DataArray.newInstance({name:"scalars",numberOfComponents:1,values:new n.ARRAY_TYPES[e.dtype](k(atob(e.buffer)))});return t.getPointData().setScalars(r),t},n.majorAxis=function(e,t,n){const r=[0,0,0],o=Math.abs(e[t])>Math.abs(e[n])?t:n,a=e[o]>0?1:-1;return r[o]=a,r},n.cartesian_product=function(…e){return e.reduce((e,t)=>e.flatMap(e=>t.map(t=>[].concat(e,t))))}},n”, ” "c010237f8b": function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t("@bokehjs/models/mappers"),h=t("@bokehjs/core/util/array");class a{constructor(t,i,e={}){this.parent=t,this.mapper=i,this.options=e,e.ticksNum||(e.ticksNum=5),e.fontFamily||(e.fontFamily="Arial"),e.fontSize||(e.fontSize="12px"),e.ticksSize||(e.ticksSize=2),this.canvas=document.createElement("canvas"),this.canvas.style.width="100%",this.parent.appendChild(this.canvas),this.ctx=this.canvas.getContext("2d"),this.ctx.font=`${this.options.fontSize} ${this.options.fontFamily}`,this.ctx.lineWidth=e.ticksSize,e.height||(e.height=4*(this.font_height+1)+"px"),this.canvas.style.height=e.height,this.draw_colorbar()}get values(){const{min:t,max:i}=this.mapper.metrics;return h.linspace(t,i,this.options.ticksNum)}get ticks(){return this.values.map(t=>t.toExponential(3))}get title(){return this.mapper.name?this.mapper.name:"scalars"}get font_height(){let t=0;return this.values.forEach(i=>{const{actualBoundingBoxAscent:e,actualBoundingBoxDescent:s}=this.ctx.measureText(""+i),h=e+s;t<h&&(t=h)}),t}draw_colorbar(){this.canvas.width=this.canvas.clientWidth,this.canvas.height=this.canvas.clientHeight;const{palette:t}=this.mapper;this.ctx.font=`${this.options.fontSize} ${this.options.fontFamily}`;const i=this.font_height;this.ctx.save();const e=document.createElement("canvas"),a=t.length;e.width=a,e.height=1;const n=e.getContext("2d"),c=n.getImageData(0,0,a,1),o=new s.LinearColorMapper({palette:t}).rgba_mapper.v_compute(h.range(0,t.length));c.data.set(o),n.putImageData(c,0,0),this.ctx.drawImage(e,0,2*(this.font_height+1)+1,this.canvas.width,this.canvas.height),this.ctx.restore(),this.ctx.save(),this.ctx.textAlign="center",this.ctx.fillText(this.title,this.canvas.width/2,i+1),this.ctx.restore(),this.ctx.save();const r=h.linspace(0,this.canvas.width,5);r.forEach((t,e)=>{let s=t;0==e?(s=t+Math.ceil(this.ctx.lineWidth/2),this.ctx.textAlign="left"):e==r.length-1?(s=t-Math.ceil(this.ctx.lineWidth/2),this.ctx.textAlign="right"):this.ctx.textAlign="center",this.ctx.moveTo(s,2*(i+1)),this.ctx.lineTo(s,2*(i+1)+5),this.ctx.stroke(),this.ctx.fillText(""+this.ticks[e],t,2*(i+1))}),this.ctx.restore()}}e.VTKColorBar=a,a.__name__="VTKColorBar"},n”, ” "087f1e0be6": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),n=e("021b2a3929"),r=e("6c442cdcb4");class o extends n.AbstractVTKView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>{this._vtk_image_data=r.data2VTKImageData(this.model.data),this.invalidate_render()}),this.connect(this.model.properties.colormap.change,()=>{this.colormap_selector.value=this.model.colormap;const e=new Event("change");this.colormap_selector.dispatchEvent(e)}),this.connect(this.model.properties.shadow.change,()=>{this.shadow_selector.value=this.model.shadow?"1":"0";const e=new Event("change");this.shadow_selector.dispatchEvent(e)}),this.connect(this.model.properties.sampling.change,()=>{this.sampling_slider.value=this.model.sampling.toFixed(2);const e=new Event("input");this.sampling_slider.dispatchEvent(e)}),this.connect(this.model.properties.edge_gradient.change,()=>{this.edge_gradient_slider.value=this.model.edge_gradient.toFixed(2);const e=new Event("input");this.edge_gradient_slider.dispatchEvent(e)}),this.connect(this.model.properties.rescale.change,()=>{this._controllerWidget.setRescaleColorMap(this.model.rescale),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.ambient.change,()=>{this.volume.getProperty().setAmbient(this.model.ambient),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.diffuse.change,()=>{this.volume.getProperty().setDiffuse(this.model.diffuse),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.specular.change,()=>{this.volume.getProperty().setSpecular(this.model.specular),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.specular_power.change,()=>{this.volume.getProperty().setSpecularPower(this.model.specular_power),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.display_volume.change,()=>{this._set_volume_visibility(this.model.display_volume),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.display_slices.change,()=>{this._set_slices_visibility(this.model.display_slices),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.slice_i.change,()=>{void 0!==this.image_actor_i&&(this.image_actor_i.getMapper().setISlice(this.model.slice_i),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.slice_j.change,()=>{void 0!==this.image_actor_j&&(this.image_actor_j.getMapper().setJSlice(this.model.slice_j),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.slice_k.change,()=>{void 0!==this.image_actor_k&&(this.image_actor_k.getMapper().setKSlice(this.model.slice_k),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.render_background.change,()=>{this._vtk_renwin.getRenderer().setBackground(…r.hexToRGB(this.model.render_background)),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.interpolation.change,()=>{this._set_interpolation(this.model.interpolation),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.controller_expanded.change,()=>{null!=this._controllerWidget&&this._controllerWidget.setExpanded(this.model.controller_expanded)})}render(){this._vtk_renwin=null,this._orientationWidget=null,this._axes=null,super.render(),this._create_orientation_widget(),this._set_axes(),this.model.camera?this._set_camera_state():this._vtk_renwin.getRenderer().resetCamera(),this._get_camera_state()}invalidate_render(){this._vtk_renwin=null,super.invalidate_render()}init_vtk_renwin(){this._vtk_renwin=r.vtkns.FullScreenRenderWindow.newInstance({rootContainer:this.el,container:this._vtk_container})}plot(){this._controllerWidget=r.vtkns.VolumeController.newInstance({size:[400,150],rescaleColorMap:this.model.rescale}),this._plot_volume(),this._plot_slices(),this._controllerWidget.setupContent(this._vtk_renwin.getRenderWindow(),this.volume,!0),this._controllerWidget.setContainer(this.el),this._controllerWidget.setExpanded(this.model.controller_expanded),this._connect_js_controls(),this._vtk_renwin.getRenderWindow().getInteractor(),this._vtk_renwin.getRenderWindow().getInteractor().setDesiredUpdateRate(45),this._set_volume_visibility(this.model.display_volume),this._set_slices_visibility(this.model.display_slices),this._vtk_renwin.getRenderer().setBackground(…r.hexToRGB(this.model.render_background)),this._set_interpolation(this.model.interpolation),this._set_camera_state()}get vtk_image_data(){return this._vtk_image_data||(this._vtk_image_data=r.data2VTKImageData(this.model.data)),this._vtk_image_data}get volume(){return this._vtk_renwin.getRenderer().getVolumes()[0]}get image_actor_i(){return this._vtk_renwin.getRenderer().getActors()[0]}get image_actor_j(){return this._vtk_renwin.getRenderer().getActors()[1]}get image_actor_k(){return this._vtk_renwin.getRenderer().getActors()[2]}get shadow_selector(){return this.el.querySelector(".js-shadow")}get edge_gradient_slider(){return this.el.querySelector(".js-edge")}get sampling_slider(){return this.el.querySelector(".js-spacing")}get colormap_selector(){return this.el.querySelector(".js-color-preset")}_connect_js_controls(){const{el:e}=this._controllerWidget.get("el");if(void 0!==e){e.querySelector(".js-button").addEventListener("click",()=>this.model.controller_expanded=this._controllerWidget.getExpanded())}this.colormap_selector.addEventListener("change",()=>{this.model.colormap=this.colormap_selector.value}),this.model.colormap?this.model.properties.colormap.change.emit():this.model.colormap=this.colormap_selector.value,this.shadow_selector.addEventListener("change",()=>{this.model.shadow=!!Number(this.shadow_selector.value)}),(this.model.shadow=!!Number(this.shadow_selector.value))&&this.model.properties.shadow.change.emit(),this.sampling_slider.addEventListener("input",()=>{const e=Number(this.sampling_slider.value);Math.abs(this.model.sampling-e)>=.005&&(this.model.sampling=e)}),Math.abs(this.model.sampling-Number(this.shadow_selector.value))>=.005&&this.model.properties.sampling.change.emit(),this.edge_gradient_slider.addEventListener("input",()=>{const e=Number(this.edge_gradient_slider.value);Math.abs(this.model.edge_gradient-e)>=.005&&(this.model.edge_gradient=e)}),Math.abs(this.model.edge_gradient-Number(this.edge_gradient_slider.value))>=.005&&this.model.properties.edge_gradient.change.emit()}_plot_slices(){const e=this._vtk_image_data,t=r.vtkns.ImageSlice.newInstance(),i=r.vtkns.ImageSlice.newInstance(),s=r.vtkns.ImageSlice.newInstance(),n=r.vtkns.ImageMapper.newInstance(),o=r.vtkns.ImageMapper.newInstance(),a=r.vtkns.ImageMapper.newInstance();n.setInputData(e),n.setISlice(this.model.slice_i),t.setMapper(n),o.setInputData(e),o.setJSlice(this.model.slice_j),i.setMapper(o),a.setInputData(e),a.setKSlice(this.model.slice_k),s.setMapper(a);const l=r.vtkns.PiecewiseFunction.newInstance();l.removeAllPoints(),l.addPoint(0,1);const d=this.volume.getProperty().getRGBTransferFunction(0),c=t.getProperty();i.setProperty(c),s.setProperty(c),c.setRGBTransferFunction(d),c.setScalarOpacity(l);const _=this._vtk_renwin.getRenderer();_.addActor(t),_.addActor(i),_.addActor(s)}_plot_volume(){const e=this.vtk_image_data,t=r.vtkns.Volume.newInstance(),i=r.vtkns.VolumeMapper.newInstance();t.setMapper(i),i.setInputData(e);const s=(e.getPointData().getScalars()||e.getPointData().getArrays()[0]).getRange(),n=r.vtkns.ColorTransferFunction.newInstance();n.onModified(()=>this.model.mapper=r.vtkLutToMapper(n));const o=r.vtkns.PiecewiseFunction.newInstance(),a=.7*Math.sqrt(e.getSpacing().map(e=>e*e).reduce((e,t)=>e+t,0));i.setSampleDistance(a),t.getProperty().setRGBTransferFunction(0,n),t.getProperty().setScalarOpacity(0,o),t.getProperty().setInterpolationTypeToFastLinear(),t.getProperty().setScalarOpacityUnitDistance(0,r.vtkns.BoundingBox.getDiagonalLength(e.getBounds())/Math.max(…e.getDimensions())),t.getProperty().setGradientOpacityMinimumValue(0,0),t.getProperty().setGradientOpacityMaximumValue(0,.05*(s[1]-s[0])),t.getProperty().setShade(this.model.shadow),t.getProperty().setUseGradientOpacity(0,!0),t.getProperty().setGradientOpacityMinimumOpacity(0,0),t.getProperty().setGradientOpacityMaximumOpacity(0,1),t.getProperty().setAmbient(this.model.ambient),t.getProperty().setDiffuse(this.model.diffuse),t.getProperty().setSpecular(this.model.specular),t.getProperty().setSpecularPower(this.model.specular_power),this._vtk_renwin.getRenderer().addVolume(t)}_set_interpolation(e){"fast_linear"==e?(this.volume.getProperty().setInterpolationTypeToFastLinear(),this.image_actor_i.getProperty().setInterpolationTypeToLinear()):"linear"==e?(this.volume.getProperty().setInterpolationTypeToLinear(),this.image_actor_i.getProperty().setInterpolationTypeToLinear()):(this.volume.getProperty().setInterpolationTypeToNearest(),this.image_actor_i.getProperty().setInterpolationTypeToNearest())}_set_slices_visibility(e){this._vtk_renwin.getRenderer().getActors().map(t=>t.setVisibility(e))}_set_volume_visibility(e){this.volume.setVisibility(e)}}i.VTKVolumePlotView=o,o.__name__="VTKVolumePlotView";class a extends n.AbstractVTKPlot{constructor(e){super(e)}static init_VTKVolumePlot(){this.prototype.default_view=o,this.define({ambient:[s.Number,.2],colormap:[s.String],data:[s.Instance],diffuse:[s.Number,.7],display_slices:[s.Boolean,!1],display_volume:[s.Boolean,!0],edge_gradient:[s.Number,.2],interpolation:[s.Any,"fast_linear"],mapper:[s.Instance],render_background:[s.String,"#52576e"],rescale:[s.Boolean,!1],sampling:[s.Number,.4],shadow:[s.Boolean,!0],slice_i:[s.Int,0],slice_j:[s.Int,0],slice_k:[s.Int,0],specular:[s.Number,.3],specular_power:[s.Number,8],controller_expanded:[s.Boolean,!0]})}}i.VTKVolumePlot=a,a.__name__="VTKVolumePlot",a.init_VTKVolumePlot()},n”, ” "3ae7537200": function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t("tslib").__importStar(t("@bokehjs/core/properties")),n=t("@bokehjs/model"),a=t("2f3fd5db07"),c=t("6c442cdcb4");class r extends n.Model{constructor(t){super(t)}static init_VTKAxes(){this.define({origin:[e.Array],xticker:[e.Instance],yticker:[e.Instance],zticker:[e.Instance],digits:[e.Number,1],show_grid:[e.Boolean,!0],grid_opacity:[e.Number,.1],axes_opacity:[e.Number,1],fontsize:[e.Number,12]})}get xticks(){return this.xticker.ticks}get yticks(){return this.yticker.ticks}get zticks(){return this.zticker.ticks}get xlabels(){return this.xticker.labels?this.xticker.labels:this.xticks.map(t=>t.toFixed(this.digits))}get ylabels(){return this.yticker.labels?this.yticker.labels:this.yticks.map(t=>t.toFixed(this.digits))}get zlabels(){return this.zticker.labels?this.zticker.labels:this.zticks.map(t=>t.toFixed(this.digits))}_make_grid_lines(t,s,i){const e=[];for(let n=0;n<t-1;n++)for(let t=0;t<s-1;t++){const a=n*s+t+i,c=[5,a,n*s+t+1+i,(n+1)*s+t+1+i,(n+1)*s+t+i,a];e.push(c)}return e}_create_grid_axes(){const t=[];t.push(c.cartesian_product(this.xticks,this.yticks,[this.origin[2]])),t.push(c.cartesian_product([this.origin[0]],this.yticks,this.zticks)),t.push(c.cartesian_product(this.xticks,[this.origin[1]],this.zticks));const s=[];let i=0;s.push(this._make_grid_lines(this.xticks.length,this.yticks.length,i)),i+=this.xticks.length*this.yticks.length,s.push(this._make_grid_lines(this.yticks.length,this.zticks.length,i)),i+=this.yticks.length*this.zticks.length,s.push(this._make_grid_lines(this.xticks.length,this.zticks.length,i));const e=c.vtk({vtkClass:"vtkPolyData",points:{vtkClass:"vtkPoints",dataType:"Float32Array",numberOfComponents:3,values:t.flat(2)},lines:{vtkClass:"vtkCellArray",dataType:"Uint32Array",values:s.flat(2)}}),n=c.vtkns.Mapper.newInstance(),a=c.vtkns.Actor.newInstance();return n.setInputData(e),a.setMapper(n),a.getProperty().setOpacity(this.grid_opacity),a.setVisibility(this.show_grid),a}create_axes(t){const s=[this.xticks,this.yticks,this.zticks].map((t,s)=>{let i=null;switch(s){case 0:i=c.cartesian_product(t,[this.origin[1]],[this.origin[2]]);break;case 1:i=c.cartesian_product([this.origin[0]],t,[this.origin[2]]);break;case 2:i=c.cartesian_product([this.origin[0]],[this.origin[1]],t)}return i}).flat(2),i=c.vtk({vtkClass:"vtkPolyData",points:{vtkClass:"vtkPoints",dataType:"Float32Array",numberOfComponents:3,values:s},lines:{vtkClass:"vtkCellArray",dataType:"Uint32Array",values:[2,0,this.xticks.length-1,2,this.xticks.length,this.xticks.length+this.yticks.length-1,2,this.xticks.length+this.yticks.length,this.xticks.length+this.yticks.length+this.zticks.length-1]}}),e=c.vtkns.PixelSpaceCallbackMapper.newInstance();e.setInputData(i),e.setUseZValues(!0),e.setCallback((s,i,n)=>{const c=t.getContext("2d");if(c){const r={height:t.clientHeight*window.devicePixelRatio,width:t.clientWidth*window.devicePixelRatio},h=e.getInputData().getPoints(),l=i.getViewMatrix();a.mat4.transpose(l,l);const o=i.getProjectionMatrix(n,-1,1);a.mat4.transpose(o,o),c.clearRect(0,0,r.width,r.height),s.forEach((t,s)=>{const i=h.getPoint(s),e=a.vec3.fromValues(i[0],i[1],i[2]);if(a.vec3.transformMat4(e,e,l),e[2]+=.05,a.vec3.transformMat4(e,e,o),e[2]-.001<t[3]){let i;c.font="30px serif",c.textAlign="center",c.textBaseline="alphabetic",c.fillText(".",t[0],r.height-t[1]+2),c.font=this.fontsize*window.devicePixelRatio+"px serif",c.textAlign="right",c.textBaseline="top",i=s<this.xticks.length?this.xlabels[s]:s>=this.xticks.length&&s<this.xticks.length+this.yticks.length?this.ylabels[s-this.xticks.length]:this.zlabels[s-(this.xticks.length+this.yticks.length)],c.fillText(""+i,t[0],r.height-t[1])}})}});const n=c.vtkns.Actor.newInstance();n.setMapper(e);const r=c.vtkns.Mapper.newInstance();r.setInputData(i);const h=c.vtkns.Actor.newInstance();h.setMapper(r),h.getProperty().setOpacity(this.axes_opacity);return{psActor:n,axesActor:h,gridActor:this._create_grid_axes()}}}i.VTKAxes=r,r.__name__="VTKAxes",r.__module__="panel.models.vtk",r.init_VTKAxes()},n”, ” "2f3fd5db07": function _(t,c,a){Object.defineProperty(a,"__esModule",{value:!0});const o=t("tslib"),r=o.__importStar(t("68ca94c15c"));a.glMatrix=r;const _=o.__importStar(t("7c0b8e6048"));a.mat2=_;const e=o.__importStar(t("dc03f0a621"));a.mat2d=e;const i=o.__importStar(t("0285c50a7e"));a.mat3=i;const m=o.__importStar(t("a427635f32"));a.mat4=m;const n=o.__importStar(t("eb06fc032a"));a.quat=n;const s=o.__importStar(t("277615c682"));a.quat2=s;const p=o.__importStar(t("c56d9ff837"));a.vec2=p;const S=o.__importStar(t("2c5eb22089"));a.vec3=S;const f=o.__importStar(t("c1aa33d719"));a.vec4=f},n”, ” "68ca94c15c": function _(t,a,r){Object.defineProperty(r,"__esModule",{value:!0}),r.EPSILON=1e-6,r.ARRAY_TYPE="undefined"!=typeof Float32Array?Float32Array:Array,r.RANDOM=Math.random,r.setMatrixArrayType=function(t){r.ARRAY_TYPE=t};var n=Math.PI/180;r.toRadian=function(t){return t*n},r.equals=function(t,a){return Math.abs(t-a)<=r.EPSILON*Math.max(1,Math.abs(t),Math.abs(a))},Math.hypot||(Math.hypot=function(){for(var t=0,a=arguments.length;a–;)t+=arguments[a]*arguments[a];return Math.sqrt(t)})},n”, ” "7c0b8e6048": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=r[0],i=r[1],f=r[2],s=r[3];return t[0]=a*c+e*i,t[1]=u*c+o*i,t[2]=a*f+e*s,t[3]=u*f+o*s,t}function e(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}r.create=function(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0),t[0]=1,t[3]=1,t},r.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},r.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t},r.fromValues=function(t,n,r,u){var e=new a.ARRAY_TYPE(4);return e[0]=t,e[1]=n,e[2]=r,e[3]=u,e},r.set=function(t,n,r,a,u){return t[0]=n,t[1]=r,t[2]=a,t[3]=u,t},r.transpose=function(t,n){if(t===n){var r=n[1];t[1]=n[2],t[2]=r}else t[0]=n[0],t[1]=n[2],t[2]=n[1],t[3]=n[3];return t},r.invert=function(t,n){var r=n[0],a=n[1],u=n[2],e=n[3],o=r*e-u*a;return o?(o=1/o,t[0]=e*o,t[1]=-a*o,t[2]=-u*o,t[3]=r*o,t):null},r.adjoint=function(t,n){var r=n[0];return t[0]=n[3],t[1]=-n[1],t[2]=-n[2],t[3]=r,t},r.determinant=function(t){return t[0]*t[3]-t[2]*t[1]},r.multiply=u,r.rotate=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=Math.sin(r),i=Math.cos(r);return t[0]=a*i+e*c,t[1]=u*i+o*c,t[2]=a*-c+e*i,t[3]=u*-c+o*i,t},r.scale=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=r[0],i=r[1];return t[0]=a*c,t[1]=u*c,t[2]=e*i,t[3]=o*i,t},r.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=-r,t[3]=a,t},r.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t},r.str=function(t){return"mat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},r.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3])},r.LDU=function(t,n,r,a){return t[2]=a[2]/a[0],r[0]=a[0],r[1]=a[1],r[3]=a[3]-t[2]*r[1],[t,n,r]},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},r.subtract=e,r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=t[3],c=n[0],i=n[1],f=n[2],s=n[3];return Math.abs(r-c)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(c))&&Math.abs(u-i)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(i))&&Math.abs(e-f)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(f))&&Math.abs(o-s)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(s))},r.multiplyScalar=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},r.multiplyScalarAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},r.mul=u,r.sub=e},n”, ” "dc03f0a621": function _(t,n,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function u(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1],h=a[2],M=a[3],b=a[4],l=a[5];return t[0]=r*s+e*f,t[1]=u*s+o*f,t[2]=r*h+e*M,t[3]=u*h+o*M,t[4]=r*b+e*l+c,t[5]=u*b+o*l+i,t}function e(t,n,a){return t[0]=n[0]-a[0],t[1]=n[1]-a[1],t[2]=n[2]-a[2],t[3]=n[3]-a[3],t[4]=n[4]-a[4],t[5]=n[5]-a[5],t}a.create=function(){var t=new r.ARRAY_TYPE(6);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[4]=0,t[5]=0),t[0]=1,t[3]=1,t},a.clone=function(t){var n=new r.ARRAY_TYPE(6);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n},a.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t},a.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t},a.fromValues=function(t,n,a,u,e,o){var c=new r.ARRAY_TYPE(6);return c[0]=t,c[1]=n,c[2]=a,c[3]=u,c[4]=e,c[5]=o,c},a.set=function(t,n,a,r,u,e,o){return t[0]=n,t[1]=a,t[2]=r,t[3]=u,t[4]=e,t[5]=o,t},a.invert=function(t,n){var a=n[0],r=n[1],u=n[2],e=n[3],o=n[4],c=n[5],i=a*e-r*u;return i?(i=1/i,t[0]=e*i,t[1]=-r*i,t[2]=-u*i,t[3]=a*i,t[4]=(u*c-e*o)*i,t[5]=(r*o-a*c)*i,t):null},a.determinant=function(t){return t[0]*t[3]-t[1]*t[2]},a.multiply=u,a.rotate=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=Math.sin(a),f=Math.cos(a);return t[0]=r*f+e*s,t[1]=u*f+o*s,t[2]=r*-s+e*f,t[3]=u*-s+o*f,t[4]=c,t[5]=i,t},a.scale=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1];return t[0]=r*s,t[1]=u*s,t[2]=e*f,t[3]=o*f,t[4]=c,t[5]=i,t},a.translate=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1];return t[0]=r,t[1]=u,t[2]=e,t[3]=o,t[4]=r*s+e*f+c,t[5]=u*s+o*f+i,t},a.fromRotation=function(t,n){var a=Math.sin(n),r=Math.cos(n);return t[0]=r,t[1]=a,t[2]=-a,t[3]=r,t[4]=0,t[5]=0,t},a.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t[4]=0,t[5]=0,t},a.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=n[0],t[5]=n[1],t},a.str=function(t){return"mat2d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+")"},a.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],1)},a.add=function(t,n,a){return t[0]=n[0]+a[0],t[1]=n[1]+a[1],t[2]=n[2]+a[2],t[3]=n[3]+a[3],t[4]=n[4]+a[4],t[5]=n[5]+a[5],t},a.subtract=e,a.multiplyScalar=function(t,n,a){return t[0]=n[0]*a,t[1]=n[1]*a,t[2]=n[2]*a,t[3]=n[3]*a,t[4]=n[4]*a,t[5]=n[5]*a,t},a.multiplyScalarAndAdd=function(t,n,a,r){return t[0]=n[0]+a[0]*r,t[1]=n[1]+a[1]*r,t[2]=n[2]+a[2]*r,t[3]=n[3]+a[3]*r,t[4]=n[4]+a[4]*r,t[5]=n[5]+a[5]*r,t},a.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]&&t[4]===n[4]&&t[5]===n[5]},a.equals=function(t,n){var a=t[0],u=t[1],e=t[2],o=t[3],c=t[4],i=t[5],s=n[0],f=n[1],h=n[2],M=n[3],b=n[4],l=n[5];return Math.abs(a-s)<=r.EPSILON*Math.max(1,Math.abs(a),Math.abs(s))&&Math.abs(u-f)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(f))&&Math.abs(e-h)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(h))&&Math.abs(o-M)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(M))&&Math.abs(c-b)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(b))&&Math.abs(i-l)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(l))},a.mul=u,a.sub=e},n”, ” "0285c50a7e": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function u(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=n[0],b=n[1],l=n[2],m=n[3],v=n[4],E=n[5],P=n[6],S=n[7],d=n[8];return t[0]=f*r+b*e+l*s,t[1]=f*u+b*i+l*M,t[2]=f*o+b*c+l*h,t[3]=m*r+v*e+E*s,t[4]=m*u+v*i+E*M,t[5]=m*o+v*c+E*h,t[6]=P*r+S*e+d*s,t[7]=P*u+S*i+d*M,t[8]=P*o+S*c+d*h,t}function o(t,a,n){return t[0]=a[0]-n[0],t[1]=a[1]-n[1],t[2]=a[2]-n[2],t[3]=a[3]-n[3],t[4]=a[4]-n[4],t[5]=a[5]-n[5],t[6]=a[6]-n[6],t[7]=a[7]-n[7],t[8]=a[8]-n[8],t}n.create=function(){var t=new r.ARRAY_TYPE(9);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t},n.fromMat4=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[4],t[4]=a[5],t[5]=a[6],t[6]=a[8],t[7]=a[9],t[8]=a[10],t},n.clone=function(t){var a=new r.ARRAY_TYPE(9);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a[8]=t[8],a},n.copy=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t},n.fromValues=function(t,a,n,u,o,e,i,c,s){var M=new r.ARRAY_TYPE(9);return M[0]=t,M[1]=a,M[2]=n,M[3]=u,M[4]=o,M[5]=e,M[6]=i,M[7]=c,M[8]=s,M},n.set=function(t,a,n,r,u,o,e,i,c,s){return t[0]=a,t[1]=n,t[2]=r,t[3]=u,t[4]=o,t[5]=e,t[6]=i,t[7]=c,t[8]=s,t},n.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.transpose=function(t,a){if(t===a){var n=a[1],r=a[2],u=a[5];t[1]=a[3],t[2]=a[6],t[3]=n,t[5]=a[7],t[6]=r,t[7]=u}else t[0]=a[0],t[1]=a[3],t[2]=a[6],t[3]=a[1],t[4]=a[4],t[5]=a[7],t[6]=a[2],t[7]=a[5],t[8]=a[8];return t},n.invert=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8],h=M*e-i*s,f=-M*o+i*c,b=s*o-e*c,l=n*h+r*f+u*b;return l?(l=1/l,t[0]=h*l,t[1]=(-M*r+u*s)*l,t[2]=(i*r-u*e)*l,t[3]=f*l,t[4]=(M*n-u*c)*l,t[5]=(-i*n+u*o)*l,t[6]=b*l,t[7]=(-s*n+r*c)*l,t[8]=(e*n-r*o)*l,t):null},n.adjoint=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8];return t[0]=e*M-i*s,t[1]=u*s-r*M,t[2]=r*i-u*e,t[3]=i*c-o*M,t[4]=n*M-u*c,t[5]=u*o-n*i,t[6]=o*s-e*c,t[7]=r*c-n*s,t[8]=n*e-r*o,t},n.determinant=function(t){var a=t[0],n=t[1],r=t[2],u=t[3],o=t[4],e=t[5],i=t[6],c=t[7],s=t[8];return a*(s*o-e*c)+n*(-s*u+e*i)+r*(c*u-o*i)},n.multiply=u,n.translate=function(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=n[0],b=n[1];return t[0]=r,t[1]=u,t[2]=o,t[3]=e,t[4]=i,t[5]=c,t[6]=f*r+b*e+s,t[7]=f*u+b*i+M,t[8]=f*o+b*c+h,t},n.rotate=function(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=Math.sin(n),b=Math.cos(n);return t[0]=b*r+f*e,t[1]=b*u+f*i,t[2]=b*o+f*c,t[3]=b*e-f*r,t[4]=b*i-f*u,t[5]=b*c-f*o,t[6]=s,t[7]=M,t[8]=h,t},n.scale=function(t,a,n){var r=n[0],u=n[1];return t[0]=r*a[0],t[1]=r*a[1],t[2]=r*a[2],t[3]=u*a[3],t[4]=u*a[4],t[5]=u*a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t},n.fromTranslation=function(t,a){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=a[0],t[7]=a[1],t[8]=1,t},n.fromRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=n,t[2]=0,t[3]=-n,t[4]=r,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromScaling=function(t,a){return t[0]=a[0],t[1]=0,t[2]=0,t[3]=0,t[4]=a[1],t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromMat2d=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=0,t[3]=a[2],t[4]=a[3],t[5]=0,t[6]=a[4],t[7]=a[5],t[8]=1,t},n.fromQuat=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=n+n,i=r+r,c=u+u,s=n*e,M=r*e,h=r*i,f=u*e,b=u*i,l=u*c,m=o*e,v=o*i,E=o*c;return t[0]=1-h-l,t[3]=M-E,t[6]=f+v,t[1]=M+E,t[4]=1-s-l,t[7]=b-m,t[2]=f-v,t[5]=b+m,t[8]=1-s-h,t},n.normalFromMat4=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8],h=a[9],f=a[10],b=a[11],l=a[12],m=a[13],v=a[14],E=a[15],P=n*i-r*e,S=n*c-u*e,d=n*s-o*e,A=r*c-u*i,x=r*s-o*i,O=u*s-o*c,p=M*m-h*l,I=M*v-f*l,L=M*E-b*l,N=h*v-f*m,R=h*E-b*m,_=f*E-b*v,y=P*_-S*R+d*N+A*L-x*I+O*p;return y?(y=1/y,t[0]=(i*_-c*R+s*N)*y,t[1]=(c*L-e*_-s*I)*y,t[2]=(e*R-i*L+s*p)*y,t[3]=(u*R-r*_-o*N)*y,t[4]=(n*_-u*L+o*I)*y,t[5]=(r*L-n*R-o*p)*y,t[6]=(m*O-v*x+E*A)*y,t[7]=(v*d-l*O-E*S)*y,t[8]=(l*x-m*d+E*P)*y,t):null},n.projection=function(t,a,n){return t[0]=2/a,t[1]=0,t[2]=0,t[3]=0,t[4]=-2/n,t[5]=0,t[6]=-1,t[7]=1,t[8]=1,t},n.str=function(t){return"mat3("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+")"},n.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8])},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t[8]=a[8]+n[8],t},n.subtract=o,n.multiplyScalar=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t[8]=a[8]*n,t},n.multiplyScalarAndAdd=function(t,a,n,r){return t[0]=a[0]+n[0]*r,t[1]=a[1]+n[1]*r,t[2]=a[2]+n[2]*r,t[3]=a[3]+n[3]*r,t[4]=a[4]+n[4]*r,t[5]=a[5]+n[5]*r,t[6]=a[6]+n[6]*r,t[7]=a[7]+n[7]*r,t[8]=a[8]+n[8]*r,t},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]&&t[8]===a[8]},n.equals=function(t,a){var n=t[0],u=t[1],o=t[2],e=t[3],i=t[4],c=t[5],s=t[6],M=t[7],h=t[8],f=a[0],b=a[1],l=a[2],m=a[3],v=a[4],E=a[5],P=a[6],S=a[7],d=a[8];return Math.abs(n-f)<=r.EPSILON*Math.max(1,Math.abs(n),Math.abs(f))&&Math.abs(u-b)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(b))&&Math.abs(o-l)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(l))&&Math.abs(e-m)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(m))&&Math.abs(i-v)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(v))&&Math.abs(c-E)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(E))&&Math.abs(s-P)<=r.EPSILON*Math.max(1,Math.abs(s),Math.abs(P))&&Math.abs(M-S)<=r.EPSILON*Math.max(1,Math.abs(M),Math.abs(S))&&Math.abs(h-d)<=r.EPSILON*Math.max(1,Math.abs(h),Math.abs(d))},n.mul=u,n.sub=o},n”, ” "a427635f32": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function h(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function o(t,a,n){var r=a[0],h=a[1],o=a[2],u=a[3],M=a[4],e=a[5],s=a[6],i=a[7],c=a[8],f=a[9],b=a[10],l=a[11],v=a[12],m=a[13],P=a[14],E=a[15],S=n[0],I=n[1],O=n[2],p=n[3];return t[0]=S*r+I*M+O*c+p*v,t[1]=S*h+I*e+O*f+p*m,t[2]=S*o+I*s+O*b+p*P,t[3]=S*u+I*i+O*l+p*E,S=n[4],I=n[5],O=n[6],p=n[7],t[4]=S*r+I*M+O*c+p*v,t[5]=S*h+I*e+O*f+p*m,t[6]=S*o+I*s+O*b+p*P,t[7]=S*u+I*i+O*l+p*E,S=n[8],I=n[9],O=n[10],p=n[11],t[8]=S*r+I*M+O*c+p*v,t[9]=S*h+I*e+O*f+p*m,t[10]=S*o+I*s+O*b+p*P,t[11]=S*u+I*i+O*l+p*E,S=n[12],I=n[13],O=n[14],p=n[15],t[12]=S*r+I*M+O*c+p*v,t[13]=S*h+I*e+O*f+p*m,t[14]=S*o+I*s+O*b+p*P,t[15]=S*u+I*i+O*l+p*E,t}function u(t,a,n){var r=a[0],h=a[1],o=a[2],u=a[3],M=r+r,e=h+h,s=o+o,i=r*M,c=r*e,f=r*s,b=h*e,l=h*s,v=o*s,m=u*M,P=u*e,E=u*s;return t[0]=1-(b+v),t[1]=c+E,t[2]=f-P,t[3]=0,t[4]=c-E,t[5]=1-(i+v),t[6]=l+m,t[7]=0,t[8]=f+P,t[9]=l-m,t[10]=1-(i+b),t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t}function M(t,a){var n=a[0],r=a[1],h=a[2],o=a[4],u=a[5],M=a[6],e=a[8],s=a[9],i=a[10];return t[0]=Math.hypot(n,r,h),t[1]=Math.hypot(o,u,M),t[2]=Math.hypot(e,s,i),t}function e(t,a,n){return t[0]=a[0]-n[0],t[1]=a[1]-n[1],t[2]=a[2]-n[2],t[3]=a[3]-n[3],t[4]=a[4]-n[4],t[5]=a[5]-n[5],t[6]=a[6]-n[6],t[7]=a[7]-n[7],t[8]=a[8]-n[8],t[9]=a[9]-n[9],t[10]=a[10]-n[10],t[11]=a[11]-n[11],t[12]=a[12]-n[12],t[13]=a[13]-n[13],t[14]=a[14]-n[14],t[15]=a[15]-n[15],t}n.create=function(){var t=new r.ARRAY_TYPE(16);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t},n.clone=function(t){var a=new r.ARRAY_TYPE(16);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a[8]=t[8],a[9]=t[9],a[10]=t[10],a[11]=t[11],a[12]=t[12],a[13]=t[13],a[14]=t[14],a[15]=t[15],a},n.copy=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t[9]=a[9],t[10]=a[10],t[11]=a[11],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15],t},n.fromValues=function(t,a,n,h,o,u,M,e,s,i,c,f,b,l,v,m){var P=new r.ARRAY_TYPE(16);return P[0]=t,P[1]=a,P[2]=n,P[3]=h,P[4]=o,P[5]=u,P[6]=M,P[7]=e,P[8]=s,P[9]=i,P[10]=c,P[11]=f,P[12]=b,P[13]=l,P[14]=v,P[15]=m,P},n.set=function(t,a,n,r,h,o,u,M,e,s,i,c,f,b,l,v,m){return t[0]=a,t[1]=n,t[2]=r,t[3]=h,t[4]=o,t[5]=u,t[6]=M,t[7]=e,t[8]=s,t[9]=i,t[10]=c,t[11]=f,t[12]=b,t[13]=l,t[14]=v,t[15]=m,t},n.identity=h,n.transpose=function(t,a){if(t===a){var n=a[1],r=a[2],h=a[3],o=a[6],u=a[7],M=a[11];t[1]=a[4],t[2]=a[8],t[3]=a[12],t[4]=n,t[6]=a[9],t[7]=a[13],t[8]=r,t[9]=o,t[11]=a[14],t[12]=h,t[13]=u,t[14]=M}else t[0]=a[0],t[1]=a[4],t[2]=a[8],t[3]=a[12],t[4]=a[1],t[5]=a[5],t[6]=a[9],t[7]=a[13],t[8]=a[2],t[9]=a[6],t[10]=a[10],t[11]=a[14],t[12]=a[3],t[13]=a[7],t[14]=a[11],t[15]=a[15];return t},n.invert=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=a[4],M=a[5],e=a[6],s=a[7],i=a[8],c=a[9],f=a[10],b=a[11],l=a[12],v=a[13],m=a[14],P=a[15],E=n*M-r*u,S=n*e-h*u,I=n*s-o*u,O=r*e-h*M,p=r*s-o*M,L=h*s-o*e,N=i*v-c*l,R=i*m-f*l,x=i*P-b*l,y=c*m-f*v,A=c*P-b*v,Y=f*P-b*m,d=E*Y-S*A+I*y+O*x-p*R+L*N;return d?(d=1/d,t[0]=(M*Y-e*A+s*y)*d,t[1]=(h*A-r*Y-o*y)*d,t[2]=(v*L-m*p+P*O)*d,t[3]=(f*p-c*L-b*O)*d,t[4]=(e*x-u*Y-s*R)*d,t[5]=(n*Y-h*x+o*R)*d,t[6]=(m*I-l*L-P*S)*d,t[7]=(i*L-f*I+b*S)*d,t[8]=(u*A-M*x+s*N)*d,t[9]=(r*x-n*A-o*N)*d,t[10]=(l*p-v*I+P*E)*d,t[11]=(c*I-i*p-b*E)*d,t[12]=(M*R-u*y-e*N)*d,t[13]=(n*y-r*R+h*N)*d,t[14]=(v*S-l*O-m*E)*d,t[15]=(i*O-c*S+f*E)*d,t):null},n.adjoint=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=a[4],M=a[5],e=a[6],s=a[7],i=a[8],c=a[9],f=a[10],b=a[11],l=a[12],v=a[13],m=a[14],P=a[15];return t[0]=M*(f*P-b*m)-c*(e*P-s*m)+v*(e*b-s*f),t[1]=-(r*(f*P-b*m)-c*(h*P-o*m)+v*(h*b-o*f)),t[2]=r*(e*P-s*m)-M*(h*P-o*m)+v*(h*s-o*e),t[3]=-(r*(e*b-s*f)-M*(h*b-o*f)+c*(h*s-o*e)),t[4]=-(u*(f*P-b*m)-i*(e*P-s*m)+l*(e*b-s*f)),t[5]=n*(f*P-b*m)-i*(h*P-o*m)+l*(h*b-o*f),t[6]=-(n*(e*P-s*m)-u*(h*P-o*m)+l*(h*s-o*e)),t[7]=n*(e*b-s*f)-u*(h*b-o*f)+i*(h*s-o*e),t[8]=u*(c*P-b*v)-i*(M*P-s*v)+l*(M*b-s*c),t[9]=-(n*(c*P-b*v)-i*(r*P-o*v)+l*(r*b-o*c)),t[10]=n*(M*P-s*v)-u*(r*P-o*v)+l*(r*s-o*M),t[11]=-(n*(M*b-s*c)-u*(r*b-o*c)+i*(r*s-o*M)),t[12]=-(u*(c*m-f*v)-i*(M*m-e*v)+l*(M*f-e*c)),t[13]=n*(c*m-f*v)-i*(r*m-h*v)+l*(r*f-h*c),t[14]=-(n*(M*m-e*v)-u*(r*m-h*v)+l*(r*e-h*M)),t[15]=n*(M*f-e*c)-u*(r*f-h*c)+i*(r*e-h*M),t},n.determinant=function(t){var a=t[0],n=t[1],r=t[2],h=t[3],o=t[4],u=t[5],M=t[6],e=t[7],s=t[8],i=t[9],c=t[10],f=t[11],b=t[12],l=t[13],v=t[14],m=t[15];return(a*u-n*o)*(c*m-f*v)-(a*M-r*o)*(i*m-f*l)+(a*e-h*o)*(i*v-c*l)+(n*M-r*u)*(s*m-f*b)-(n*e-h*u)*(s*v-c*b)+(r*e-h*M)*(s*l-i*b)},n.multiply=o,n.translate=function(t,a,n){var r,h,o,u,M,e,s,i,c,f,b,l,v=n[0],m=n[1],P=n[2];return a===t?(t[12]=a[0]*v+a[4]*m+a[8]*P+a[12],t[13]=a[1]*v+a[5]*m+a[9]*P+a[13],t[14]=a[2]*v+a[6]*m+a[10]*P+a[14],t[15]=a[3]*v+a[7]*m+a[11]*P+a[15]):(r=a[0],h=a[1],o=a[2],u=a[3],M=a[4],e=a[5],s=a[6],i=a[7],c=a[8],f=a[9],b=a[10],l=a[11],t[0]=r,t[1]=h,t[2]=o,t[3]=u,t[4]=M,t[5]=e,t[6]=s,t[7]=i,t[8]=c,t[9]=f,t[10]=b,t[11]=l,t[12]=r*v+M*m+c*P+a[12],t[13]=h*v+e*m+f*P+a[13],t[14]=o*v+s*m+b*P+a[14],t[15]=u*v+i*m+l*P+a[15]),t},n.scale=function(t,a,n){var r=n[0],h=n[1],o=n[2];return t[0]=a[0]*r,t[1]=a[1]*r,t[2]=a[2]*r,t[3]=a[3]*r,t[4]=a[4]*h,t[5]=a[5]*h,t[6]=a[6]*h,t[7]=a[7]*h,t[8]=a[8]*o,t[9]=a[9]*o,t[10]=a[10]*o,t[11]=a[11]*o,t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15],t},n.rotate=function(t,a,n,h){var o,u,M,e,s,i,c,f,b,l,v,m,P,E,S,I,O,p,L,N,R,x,y,A,Y=h[0],d=h[1],g=h[2],T=Math.hypot(Y,d,g);return T<r.EPSILON?null:(Y*=T=1/T,d*=T,g*=T,o=Math.sin(n),M=1-(u=Math.cos(n)),e=a[0],s=a[1],i=a[2],c=a[3],f=a[4],b=a[5],l=a[6],v=a[7],m=a[8],P=a[9],E=a[10],S=a[11],I=Y*Y*M+u,O=d*Y*M+g*o,p=g*Y*M-d*o,L=Y*d*M-g*o,N=d*d*M+u,R=g*d*M+Y*o,x=Y*g*M+d*o,y=d*g*M-Y*o,A=g*g*M+u,t[0]=e*I+f*O+m*p,t[1]=s*I+b*O+P*p,t[2]=i*I+l*O+E*p,t[3]=c*I+v*O+S*p,t[4]=e*L+f*N+m*R,t[5]=s*L+b*N+P*R,t[6]=i*L+l*N+E*R,t[7]=c*L+v*N+S*R,t[8]=e*x+f*y+m*A,t[9]=s*x+b*y+P*A,t[10]=i*x+l*y+E*A,t[11]=c*x+v*y+S*A,a!==t&&(t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t)},n.rotateX=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[4],u=a[5],M=a[6],e=a[7],s=a[8],i=a[9],c=a[10],f=a[11];return a!==t&&(t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[4]=o*h+s*r,t[5]=u*h+i*r,t[6]=M*h+c*r,t[7]=e*h+f*r,t[8]=s*h-o*r,t[9]=i*h-u*r,t[10]=c*h-M*r,t[11]=f*h-e*r,t},n.rotateY=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[0],u=a[1],M=a[2],e=a[3],s=a[8],i=a[9],c=a[10],f=a[11];return a!==t&&(t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[0]=o*h-s*r,t[1]=u*h-i*r,t[2]=M*h-c*r,t[3]=e*h-f*r,t[8]=o*r+s*h,t[9]=u*r+i*h,t[10]=M*r+c*h,t[11]=e*r+f*h,t},n.rotateZ=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[0],u=a[1],M=a[2],e=a[3],s=a[4],i=a[5],c=a[6],f=a[7];return a!==t&&(t[8]=a[8],t[9]=a[9],t[10]=a[10],t[11]=a[11],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[0]=o*h+s*r,t[1]=u*h+i*r,t[2]=M*h+c*r,t[3]=e*h+f*r,t[4]=s*h-o*r,t[5]=i*h-u*r,t[6]=c*h-M*r,t[7]=f*h-e*r,t},n.fromTranslation=function(t,a){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=a[0],t[13]=a[1],t[14]=a[2],t[15]=1,t},n.fromScaling=function(t,a){return t[0]=a[0],t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=a[1],t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=a[2],t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotation=function(t,a,n){var h,o,u,M=n[0],e=n[1],s=n[2],i=Math.hypot(M,e,s);return i<r.EPSILON?null:(M*=i=1/i,e*=i,s*=i,h=Math.sin(a),u=1-(o=Math.cos(a)),t[0]=M*M*u+o,t[1]=e*M*u+s*h,t[2]=s*M*u-e*h,t[3]=0,t[4]=M*e*u-s*h,t[5]=e*e*u+o,t[6]=s*e*u+M*h,t[7]=0,t[8]=M*s*u+e*h,t[9]=e*s*u-M*h,t[10]=s*s*u+o,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t)},n.fromXRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=r,t[6]=n,t[7]=0,t[8]=0,t[9]=-n,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromYRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=0,t[2]=-n,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=n,t[9]=0,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromZRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=n,t[2]=0,t[3]=0,t[4]=-n,t[5]=r,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotationTranslation=u,n.fromQuat2=function(t,a){var n=new r.ARRAY_TYPE(3),h=-a[0],o=-a[1],M=-a[2],e=a[3],s=a[4],i=a[5],c=a[6],f=a[7],b=h*h+o*o+M*M+e*e;return b>0?(n[0]=2*(s*e+f*h+i*M-c*o)/b,n[1]=2*(i*e+f*o+c*h-s*M)/b,n[2]=2*(c*e+f*M+s*o-i*h)/b):(n[0]=2*(s*e+f*h+i*M-c*o),n[1]=2*(i*e+f*o+c*h-s*M),n[2]=2*(c*e+f*M+s*o-i*h)),u(t,a,n),t},n.getTranslation=function(t,a){return t[0]=a[12],t[1]=a[13],t[2]=a[14],t},n.getScaling=M,n.getRotation=function(t,a){var n=new r.ARRAY_TYPE(3);M(n,a);var h=1/n[0],o=1/n[1],u=1/n[2],e=a[0]*h,s=a[1]*o,i=a[2]*u,c=a[4]*h,f=a[5]*o,b=a[6]*u,l=a[8]*h,v=a[9]*o,m=a[10]*u,P=e+f+m,E=0;return P>0?(E=2*Math.sqrt(P+1),t[3]=.25*E,t[0]=(b-v)/E,t[1]=(l-i)/E,t[2]=(s-c)/E):e>f&&e>m?(E=2*Math.sqrt(1+e-f-m),t[3]=(b-v)/E,t[0]=.25*E,t[1]=(s+c)/E,t[2]=(l+i)/E):f>m?(E=2*Math.sqrt(1+f-e-m),t[3]=(l-i)/E,t[0]=(s+c)/E,t[1]=.25*E,t[2]=(b+v)/E):(E=2*Math.sqrt(1+m-e-f),t[3]=(s-c)/E,t[0]=(l+i)/E,t[1]=(b+v)/E,t[2]=.25*E),t},n.fromRotationTranslationScale=function(t,a,n,r){var h=a[0],o=a[1],u=a[2],M=a[3],e=h+h,s=o+o,i=u+u,c=h*e,f=h*s,b=h*i,l=o*s,v=o*i,m=u*i,P=M*e,E=M*s,S=M*i,I=r[0],O=r[1],p=r[2];return t[0]=(1-(l+m))*I,t[1]=(f+S)*I,t[2]=(b-E)*I,t[3]=0,t[4]=(f-S)*O,t[5]=(1-(c+m))*O,t[6]=(v+P)*O,t[7]=0,t[8]=(b+E)*p,t[9]=(v-P)*p,t[10]=(1-(c+l))*p,t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t},n.fromRotationTranslationScaleOrigin=function(t,a,n,r,h){var o=a[0],u=a[1],M=a[2],e=a[3],s=o+o,i=u+u,c=M+M,f=o*s,b=o*i,l=o*c,v=u*i,m=u*c,P=M*c,E=e*s,S=e*i,I=e*c,O=r[0],p=r[1],L=r[2],N=h[0],R=h[1],x=h[2],y=(1-(v+P))*O,A=(b+I)*O,Y=(l-S)*O,d=(b-I)*p,g=(1-(f+P))*p,T=(m+E)*p,_=(l+S)*L,q=(m-E)*L,w=(1-(f+v))*L;return t[0]=y,t[1]=A,t[2]=Y,t[3]=0,t[4]=d,t[5]=g,t[6]=T,t[7]=0,t[8]=_,t[9]=q,t[10]=w,t[11]=0,t[12]=n[0]+N-(y*N+d*R+_*x),t[13]=n[1]+R-(A*N+g*R+q*x),t[14]=n[2]+x-(Y*N+T*R+w*x),t[15]=1,t},n.fromQuat=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=n+n,M=r+r,e=h+h,s=n*u,i=r*u,c=r*M,f=h*u,b=h*M,l=h*e,v=o*u,m=o*M,P=o*e;return t[0]=1-c-l,t[1]=i+P,t[2]=f-m,t[3]=0,t[4]=i-P,t[5]=1-s-l,t[6]=b+v,t[7]=0,t[8]=f+m,t[9]=b-v,t[10]=1-s-c,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.frustum=function(t,a,n,r,h,o,u){var M=1/(n-a),e=1/(h-r),s=1/(o-u);return t[0]=2*o*M,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=2*o*e,t[6]=0,t[7]=0,t[8]=(n+a)*M,t[9]=(h+r)*e,t[10]=(u+o)*s,t[11]=-1,t[12]=0,t[13]=0,t[14]=u*o*2*s,t[15]=0,t},n.perspective=function(t,a,n,r,h){var o,u=1/Math.tan(a/2);return t[0]=u/n,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=u,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=h&&h!==1/0?(o=1/(r-h),t[10]=(h+r)*o,t[14]=2*h*r*o):(t[10]=-1,t[14]=-2*r),t},n.perspectiveFromFieldOfView=function(t,a,n,r){var h=Math.tan(a.upDegrees*Math.PI/180),o=Math.tan(a.downDegrees*Math.PI/180),u=Math.tan(a.leftDegrees*Math.PI/180),M=Math.tan(a.rightDegrees*Math.PI/180),e=2/(u+M),s=2/(h+o);return t[0]=e,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=s,t[6]=0,t[7]=0,t[8]=-(u-M)*e*.5,t[9]=(h-o)*s*.5,t[10]=r/(n-r),t[11]=-1,t[12]=0,t[13]=0,t[14]=r*n/(n-r),t[15]=0,t},n.ortho=function(t,a,n,r,h,o,u){var M=1/(a-n),e=1/(r-h),s=1/(o-u);return t[0]=-2*M,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*e,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*s,t[11]=0,t[12]=(a+n)*M,t[13]=(h+r)*e,t[14]=(u+o)*s,t[15]=1,t},n.lookAt=function(t,a,n,o){var u,M,e,s,i,c,f,b,l,v,m=a[0],P=a[1],E=a[2],S=o[0],I=o[1],O=o[2],p=n[0],L=n[1],N=n[2];return Math.abs(m-p)<r.EPSILON&&Math.abs(P-L)<r.EPSILON&&Math.abs(E-N)<r.EPSILON?h(t):(f=m-p,b=P-L,l=E-N,u=I*(l*=v=1/Math.hypot(f,b,l))-O*(b*=v),M=O*(f*=v)-S*l,e=S*b-I*f,(v=Math.hypot(u,M,e))?(u*=v=1/v,M*=v,e*=v):(u=0,M=0,e=0),s=b*e-l*M,i=l*u-f*e,c=f*M-b*u,(v=Math.hypot(s,i,c))?(s*=v=1/v,i*=v,c*=v):(s=0,i=0,c=0),t[0]=u,t[1]=s,t[2]=f,t[3]=0,t[4]=M,t[5]=i,t[6]=b,t[7]=0,t[8]=e,t[9]=c,t[10]=l,t[11]=0,t[12]=-(u*m+M*P+e*E),t[13]=-(s*m+i*P+c*E),t[14]=-(f*m+b*P+l*E),t[15]=1,t)},n.targetTo=function(t,a,n,r){var h=a[0],o=a[1],u=a[2],M=r[0],e=r[1],s=r[2],i=h-n[0],c=o-n[1],f=u-n[2],b=i*i+c*c+f*f;b>0&&(i*=b=1/Math.sqrt(b),c*=b,f*=b);var l=e*f-s*c,v=s*i-M*f,m=M*c-e*i;return(b=l*l+v*v+m*m)>0&&(l*=b=1/Math.sqrt(b),v*=b,m*=b),t[0]=l,t[1]=v,t[2]=m,t[3]=0,t[4]=c*m-f*v,t[5]=f*l-i*m,t[6]=i*v-c*l,t[7]=0,t[8]=i,t[9]=c,t[10]=f,t[11]=0,t[12]=h,t[13]=o,t[14]=u,t[15]=1,t},n.str=function(t){return"mat4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+", "+t[9]+", "+t[10]+", "+t[11]+", "+t[12]+", "+t[13]+", "+t[14]+", "+t[15]+")"},n.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8],t[9],t[10],t[11],t[12],t[13],t[14],t[15])},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t[8]=a[8]+n[8],t[9]=a[9]+n[9],t[10]=a[10]+n[10],t[11]=a[11]+n[11],t[12]=a[12]+n[12],t[13]=a[13]+n[13],t[14]=a[14]+n[14],t[15]=a[15]+n[15],t},n.subtract=e,n.multiplyScalar=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t[8]=a[8]*n,t[9]=a[9]*n,t[10]=a[10]*n,t[11]=a[11]*n,t[12]=a[12]*n,t[13]=a[13]*n,t[14]=a[14]*n,t[15]=a[15]*n,t},n.multiplyScalarAndAdd=function(t,a,n,r){return t[0]=a[0]+n[0]*r,t[1]=a[1]+n[1]*r,t[2]=a[2]+n[2]*r,t[3]=a[3]+n[3]*r,t[4]=a[4]+n[4]*r,t[5]=a[5]+n[5]*r,t[6]=a[6]+n[6]*r,t[7]=a[7]+n[7]*r,t[8]=a[8]+n[8]*r,t[9]=a[9]+n[9]*r,t[10]=a[10]+n[10]*r,t[11]=a[11]+n[11]*r,t[12]=a[12]+n[12]*r,t[13]=a[13]+n[13]*r,t[14]=a[14]+n[14]*r,t[15]=a[15]+n[15]*r,t},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]&&t[8]===a[8]&&t[9]===a[9]&&t[10]===a[10]&&t[11]===a[11]&&t[12]===a[12]&&t[13]===a[13]&&t[14]===a[14]&&t[15]===a[15]},n.equals=function(t,a){var n=t[0],h=t[1],o=t[2],u=t[3],M=t[4],e=t[5],s=t[6],i=t[7],c=t[8],f=t[9],b=t[10],l=t[11],v=t[12],m=t[13],P=t[14],E=t[15],S=a[0],I=a[1],O=a[2],p=a[3],L=a[4],N=a[5],R=a[6],x=a[7],y=a[8],A=a[9],Y=a[10],d=a[11],g=a[12],T=a[13],_=a[14],q=a[15];return Math.abs(n-S)<=r.EPSILON*Math.max(1,Math.abs(n),Math.abs(S))&&Math.abs(h-I)<=r.EPSILON*Math.max(1,Math.abs(h),Math.abs(I))&&Math.abs(o-O)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(O))&&Math.abs(u-p)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(p))&&Math.abs(M-L)<=r.EPSILON*Math.max(1,Math.abs(M),Math.abs(L))&&Math.abs(e-N)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(N))&&Math.abs(s-R)<=r.EPSILON*Math.max(1,Math.abs(s),Math.abs(R))&&Math.abs(i-x)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(x))&&Math.abs(c-y)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(y))&&Math.abs(f-A)<=r.EPSILON*Math.max(1,Math.abs(f),Math.abs(A))&&Math.abs(b-Y)<=r.EPSILON*Math.max(1,Math.abs(b),Math.abs(Y))&&Math.abs(l-d)<=r.EPSILON*Math.max(1,Math.abs(l),Math.abs(d))&&Math.abs(v-g)<=r.EPSILON*Math.max(1,Math.abs(v),Math.abs(g))&&Math.abs(m-T)<=r.EPSILON*Math.max(1,Math.abs(m),Math.abs(T))&&Math.abs(P-_)<=r.EPSILON*Math.max(1,Math.abs(P),Math.abs(_))&&Math.abs(E-q)<=r.EPSILON*Math.max(1,Math.abs(E),Math.abs(q))},n.mul=o,n.sub=e},n”, ” "eb06fc032a": function _(t,r,a){Object.defineProperty(a,"__esModule",{value:!0});const n=t("tslib"),e=n.__importStar(t("68ca94c15c")),o=n.__importStar(t("0285c50a7e")),s=n.__importStar(t("2c5eb22089")),u=n.__importStar(t("c1aa33d719"));function c(){var t=new e.ARRAY_TYPE(4);return e.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t[3]=1,t}function i(t,r,a){a*=.5;var n=Math.sin(a);return t[0]=n*r[0],t[1]=n*r[1],t[2]=n*r[2],t[3]=Math.cos(a),t}function h(t,r,a){var n=r[0],e=r[1],o=r[2],s=r[3],u=a[0],c=a[1],i=a[2],h=a[3];return t[0]=n*h+s*u+e*i-o*c,t[1]=e*h+s*c+o*u-n*i,t[2]=o*h+s*i+n*c-e*u,t[3]=s*h-n*u-e*c-o*i,t}function M(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=Math.sqrt(a*a+n*n+e*e),u=Math.exp(o),c=s>0?u*Math.sin(s)/s:0;return t[0]=a*c,t[1]=n*c,t[2]=e*c,t[3]=u*Math.cos(s),t}function l(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=Math.sqrt(a*a+n*n+e*e),u=s>0?Math.atan2(s,o)/s:0;return t[0]=a*u,t[1]=n*u,t[2]=e*u,t[3]=.5*Math.log(a*a+n*n+e*e+o*o),t}function f(t,r,a,n){var o,s,u,c,i,h=r[0],M=r[1],l=r[2],f=r[3],v=a[0],m=a[1],q=a[2],d=a[3];return(s=h*v+M*m+l*q+f*d)<0&&(s=-s,v=-v,m=-m,q=-q,d=-d),1-s>e.EPSILON?(o=Math.acos(s),u=Math.sin(o),c=Math.sin((1-n)*o)/u,i=Math.sin(n*o)/u):(c=1-n,i=n),t[0]=c*h+i*v,t[1]=c*M+i*m,t[2]=c*l+i*q,t[3]=c*f+i*d,t}function v(t,r){var a,n=r[0]+r[4]+r[8];if(n>0)a=Math.sqrt(n+1),t[3]=.5*a,a=.5/a,t[0]=(r[5]-r[7])*a,t[1]=(r[6]-r[2])*a,t[2]=(r[1]-r[3])*a;else{var e=0;r[4]>r[0]&&(e=1),r[8]>r[3*e+e]&&(e=2);var o=(e+1)%3,s=(e+2)%3;a=Math.sqrt(r[3*e+e]-r[3*o+o]-r[3*s+s]+1),t[e]=.5*a,a=.5/a,t[3]=(r[3*o+s]-r[3*s+o])*a,t[o]=(r[3*o+e]+r[3*e+o])*a,t[s]=(r[3*s+e]+r[3*e+s])*a}return t}var m,q,d,p,A,g;a.create=c,a.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t},a.setAxisAngle=i,a.getAxisAngle=function(t,r){var a=2*Math.acos(r[3]),n=Math.sin(a/2);return n>e.EPSILON?(t[0]=r[0]/n,t[1]=r[1]/n,t[2]=r[2]/n):(t[0]=1,t[1]=0,t[2]=0),a},a.getAngle=function(t,r){var n=a.dot(t,r);return Math.acos(2*n*n-1)},a.multiply=h,a.rotateX=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c+s*u,t[1]=e*c+o*u,t[2]=o*c-e*u,t[3]=s*c-n*u,t},a.rotateY=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c-o*u,t[1]=e*c+s*u,t[2]=o*c+n*u,t[3]=s*c-e*u,t},a.rotateZ=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c+e*u,t[1]=e*c-n*u,t[2]=o*c+s*u,t[3]=s*c-o*u,t},a.calculateW=function(t,r){var a=r[0],n=r[1],e=r[2];return t[0]=a,t[1]=n,t[2]=e,t[3]=Math.sqrt(Math.abs(1-a*a-n*n-e*e)),t},a.exp=M,a.ln=l,a.pow=function(t,r,n){return l(t,r),a.scale(t,t,n),M(t,t),t},a.slerp=f,a.random=function(t){var r=e.RANDOM(),a=e.RANDOM(),n=e.RANDOM(),o=Math.sqrt(1-r),s=Math.sqrt(r);return t[0]=o*Math.sin(2*Math.PI*a),t[1]=o*Math.cos(2*Math.PI*a),t[2]=s*Math.sin(2*Math.PI*n),t[3]=s*Math.cos(2*Math.PI*n),t},a.invert=function(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=a*a+n*n+e*e+o*o,u=s?1/s:0;return t[0]=-a*u,t[1]=-n*u,t[2]=-e*u,t[3]=o*u,t},a.conjugate=function(t,r){return t[0]=-r[0],t[1]=-r[1],t[2]=-r[2],t[3]=r[3],t},a.fromMat3=v,a.fromEuler=function(t,r,a,n){var e=.5*Math.PI/180;r*=e,a*=e,n*=e;var o=Math.sin(r),s=Math.cos(r),u=Math.sin(a),c=Math.cos(a),i=Math.sin(n),h=Math.cos(n);return t[0]=o*c*h-s*u*i,t[1]=s*u*h+o*c*i,t[2]=s*c*i-o*u*h,t[3]=s*c*h+o*u*i,t},a.str=function(t){return"quat("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},a.clone=u.clone,a.fromValues=u.fromValues,a.copy=u.copy,a.set=u.set,a.add=u.add,a.mul=h,a.scale=u.scale,a.dot=u.dot,a.lerp=u.lerp,a.length=u.length,a.len=a.length,a.squaredLength=u.squaredLength,a.sqrLen=a.squaredLength,a.normalize=u.normalize,a.exactEquals=u.exactEquals,a.equals=u.equals,a.rotationTo=(m=s.create(),q=s.fromValues(1,0,0),d=s.fromValues(0,1,0),function(t,r,n){var e=s.dot(r,n);return e<-.999999?(s.cross(m,q,r),s.len(m)<1e-6&&s.cross(m,d,r),s.normalize(m,m),i(t,m,Math.PI),t):e>.999999?(t[0]=0,t[1]=0,t[2]=0,t[3]=1,t):(s.cross(m,r,n),t[0]=m[0],t[1]=m[1],t[2]=m[2],t[3]=1+e,a.normalize(t,t))}),a.sqlerp=(p=c(),A=c(),function(t,r,a,n,e,o){return f(p,r,e,o),f(A,a,n,o),f(t,p,A,2*o*(1-o)),t}),a.setAxes=(g=o.create(),function(t,r,n,e){return g[0]=n[0],g[3]=n[1],g[6]=n[2],g[1]=e[0],g[4]=e[1],g[7]=e[2],g[2]=-r[0],g[5]=-r[1],g[8]=-r[2],a.normalize(t,v(t,g))})},n”, ” "2c5eb22089": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(){var t=new a.ARRAY_TYPE(3);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t}function e(t){var n=t[0],r=t[1],a=t[2];return Math.hypot(n,r,a)}function o(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t}function i(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t}function c(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t}function h(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2];return Math.hypot(r,a,u)}function M(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2];return r*r+a*a+u*u}function s(t){var n=t[0],r=t[1],a=t[2];return n*n+r*r+a*a}function f(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}var l;r.create=u,r.clone=function(t){var n=new a.ARRAY_TYPE(3);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n},r.length=e,r.fromValues=function(t,n,r){var u=new a.ARRAY_TYPE(3);return u[0]=t,u[1]=n,u[2]=r,u},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t},r.set=function(t,n,r,a){return t[0]=n,t[1]=r,t[2]=a,t},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t},r.subtract=o,r.multiply=i,r.divide=c,r.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t},r.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t},r.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t},r.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t},r.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t},r.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t},r.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t},r.distance=h,r.squaredDistance=M,r.squaredLength=s,r.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t},r.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t},r.normalize=function(t,n){var r=n[0],a=n[1],u=n[2],e=r*r+a*a+u*u;return e>0&&(e=1/Math.sqrt(e)),t[0]=n[0]*e,t[1]=n[1]*e,t[2]=n[2]*e,t},r.dot=f,r.cross=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[0],i=r[1],c=r[2];return t[0]=u*c-e*i,t[1]=e*o-a*c,t[2]=a*i-u*o,t},r.lerp=function(t,n,r,a){var u=n[0],e=n[1],o=n[2];return t[0]=u+a*(r[0]-u),t[1]=e+a*(r[1]-e),t[2]=o+a*(r[2]-o),t},r.hermite=function(t,n,r,a,u,e){var o=e*e,i=o*(2*e-3)+1,c=o*(e-2)+e,h=o*(e-1),M=o*(3-2*e);return t[0]=n[0]*i+r[0]*c+a[0]*h+u[0]*M,t[1]=n[1]*i+r[1]*c+a[1]*h+u[1]*M,t[2]=n[2]*i+r[2]*c+a[2]*h+u[2]*M,t},r.bezier=function(t,n,r,a,u,e){var o=1-e,i=o*o,c=e*e,h=i*o,M=3*e*i,s=3*c*o,f=c*e;return t[0]=n[0]*h+r[0]*M+a[0]*s+u[0]*f,t[1]=n[1]*h+r[1]*M+a[1]*s+u[1]*f,t[2]=n[2]*h+r[2]*M+a[2]*s+u[2]*f,t},r.random=function(t,n){n=n||1;var r=2*a.RANDOM()*Math.PI,u=2*a.RANDOM()-1,e=Math.sqrt(1-u*u)*n;return t[0]=Math.cos(r)*e,t[1]=Math.sin(r)*e,t[2]=u*n,t},r.transformMat4=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[3]*a+r[7]*u+r[11]*e+r[15];return o=o||1,t[0]=(r[0]*a+r[4]*u+r[8]*e+r[12])/o,t[1]=(r[1]*a+r[5]*u+r[9]*e+r[13])/o,t[2]=(r[2]*a+r[6]*u+r[10]*e+r[14])/o,t},r.transformMat3=function(t,n,r){var a=n[0],u=n[1],e=n[2];return t[0]=a*r[0]+u*r[3]+e*r[6],t[1]=a*r[1]+u*r[4]+e*r[7],t[2]=a*r[2]+u*r[5]+e*r[8],t},r.transformQuat=function(t,n,r){var a=r[0],u=r[1],e=r[2],o=r[3],i=n[0],c=n[1],h=n[2],M=u*h-e*c,s=e*i-a*h,f=a*c-u*i,l=u*f-e*s,v=e*M-a*f,m=a*s-u*M,d=2*o;return M*=d,s*=d,f*=d,l*=2,v*=2,m*=2,t[0]=i+M+l,t[1]=c+s+v,t[2]=h+f+m,t},r.rotateX=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[0],e[1]=u[1]*Math.cos(a)-u[2]*Math.sin(a),e[2]=u[1]*Math.sin(a)+u[2]*Math.cos(a),t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.rotateY=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[2]*Math.sin(a)+u[0]*Math.cos(a),e[1]=u[1],e[2]=u[2]*Math.cos(a)-u[0]*Math.sin(a),t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.rotateZ=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[0]*Math.cos(a)-u[1]*Math.sin(a),e[1]=u[0]*Math.sin(a)+u[1]*Math.cos(a),e[2]=u[2],t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.angle=function(t,n){var r=t[0],a=t[1],u=t[2],e=n[0],o=n[1],i=n[2],c=Math.sqrt(r*r+a*a+u*u)*Math.sqrt(e*e+o*o+i*i),h=c&&f(t,n)/c;return Math.acos(Math.min(Math.max(h,-1),1))},r.zero=function(t){return t[0]=0,t[1]=0,t[2]=0,t},r.str=function(t){return"vec3("+t[0]+", "+t[1]+", "+t[2]+")"},r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=n[0],i=n[1],c=n[2];return Math.abs(r-o)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(u-i)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(i))&&Math.abs(e-c)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(c))},r.sub=o,r.mul=i,r.div=c,r.dist=h,r.sqrDist=M,r.len=e,r.sqrLen=s,r.forEach=(l=u(),function(t,n,r,a,u,e){var o,i;for(n||(n=3),r||(r=0),i=a?Math.min(a*n+r,t.length):t.length,o=r;o<i;o+=n)l[0]=t[o],l[1]=t[o+1],l[2]=t[o+2],u(l,l,e),t[o]=l[0],t[o+1]=l[1],t[o+2]=l[2];return t})},n”, ” "c1aa33d719": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0),t}function e(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}function o(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t[3]=n[3]*r[3],t}function i(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t[3]=n[3]/r[3],t}function c(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2],e=n[3]-t[3];return Math.hypot(r,a,u,e)}function h(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2],e=n[3]-t[3];return r*r+a*a+u*u+e*e}function M(t){var n=t[0],r=t[1],a=t[2],u=t[3];return Math.hypot(n,r,a,u)}function f(t){var n=t[0],r=t[1],a=t[2],u=t[3];return n*n+r*r+a*a+u*u}var s;r.create=u,r.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},r.fromValues=function(t,n,r,u){var e=new a.ARRAY_TYPE(4);return e[0]=t,e[1]=n,e[2]=r,e[3]=u,e},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},r.set=function(t,n,r,a,u){return t[0]=n,t[1]=r,t[2]=a,t[3]=u,t},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},r.subtract=e,r.multiply=o,r.divide=i,r.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t[3]=Math.ceil(n[3]),t},r.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t[3]=Math.floor(n[3]),t},r.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t[3]=Math.min(n[3],r[3]),t},r.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t[3]=Math.max(n[3],r[3]),t},r.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t[3]=Math.round(n[3]),t},r.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},r.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},r.distance=c,r.squaredDistance=h,r.length=M,r.squaredLength=f,r.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t[3]=-n[3],t},r.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t[3]=1/n[3],t},r.normalize=function(t,n){var r=n[0],a=n[1],u=n[2],e=n[3],o=r*r+a*a+u*u+e*e;return o>0&&(o=1/Math.sqrt(o)),t[0]=r*o,t[1]=a*o,t[2]=u*o,t[3]=e*o,t},r.dot=function(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]+t[3]*n[3]},r.cross=function(t,n,r,a){var u=r[0]*a[1]-r[1]*a[0],e=r[0]*a[2]-r[2]*a[0],o=r[0]*a[3]-r[3]*a[0],i=r[1]*a[2]-r[2]*a[1],c=r[1]*a[3]-r[3]*a[1],h=r[2]*a[3]-r[3]*a[2],M=n[0],f=n[1],s=n[2],l=n[3];return t[0]=f*h-s*c+l*i,t[1]=-M*h+s*o-l*e,t[2]=M*c-f*o+l*u,t[3]=-M*i+f*e-s*u,t},r.lerp=function(t,n,r,a){var u=n[0],e=n[1],o=n[2],i=n[3];return t[0]=u+a*(r[0]-u),t[1]=e+a*(r[1]-e),t[2]=o+a*(r[2]-o),t[3]=i+a*(r[3]-i),t},r.random=function(t,n){var r,u,e,o,i,c;n=n||1;do{i=(r=2*a.RANDOM()-1)*r+(u=2*a.RANDOM()-1)*u}while(i>=1);do{c=(e=2*a.RANDOM()-1)*e+(o=2*a.RANDOM()-1)*o}while(c>=1);var h=Math.sqrt((1-i)/c);return t[0]=n*r,t[1]=n*u,t[2]=n*e*h,t[3]=n*o*h,t},r.transformMat4=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3];return t[0]=r[0]*a+r[4]*u+r[8]*e+r[12]*o,t[1]=r[1]*a+r[5]*u+r[9]*e+r[13]*o,t[2]=r[2]*a+r[6]*u+r[10]*e+r[14]*o,t[3]=r[3]*a+r[7]*u+r[11]*e+r[15]*o,t},r.transformQuat=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[0],i=r[1],c=r[2],h=r[3],M=h*a+i*e-c*u,f=h*u+c*a-o*e,s=h*e+o*u-i*a,l=-o*a-i*u-c*e;return t[0]=M*h+l*-o+f*-c-s*-i,t[1]=f*h+l*-i+s*-o-M*-c,t[2]=s*h+l*-c+M*-i-f*-o,t[3]=n[3],t},r.zero=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t},r.str=function(t){return"vec4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=t[3],i=n[0],c=n[1],h=n[2],M=n[3];return Math.abs(r-i)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(i))&&Math.abs(u-c)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(c))&&Math.abs(e-h)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(h))&&Math.abs(o-M)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(M))},r.sub=e,r.mul=o,r.div=i,r.dist=c,r.sqrDist=h,r.len=M,r.sqrLen=f,r.forEach=(s=u(),function(t,n,r,a,u,e){var o,i;for(n||(n=4),r||(r=0),i=a?Math.min(a*n+r,t.length):t.length,o=r;o<i;o+=n)s[0]=t[o],s[1]=t[o+1],s[2]=t[o+2],s[3]=t[o+3],u(s,s,e),t[o]=s[0],t[o+1]=s[1],t[o+2]=s[2],t[o+3]=s[3];return t})},n”, ” "277615c682": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib"),e=r.__importStar(t("68ca94c15c")),u=r.__importStar(t("eb06fc032a")),o=r.__importStar(t("a427635f32"));function i(t,a,n){var r=.5*n[0],e=.5*n[1],u=.5*n[2],o=a[0],i=a[1],s=a[2],c=a[3];return t[0]=o,t[1]=i,t[2]=s,t[3]=c,t[4]=r*c+e*s-u*i,t[5]=e*c+u*o-r*s,t[6]=u*c+r*i-e*o,t[7]=-r*o-e*i-u*s,t}function s(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t}function c(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=n[4],s=n[5],c=n[6],h=n[7],f=a[4],M=a[5],l=a[6],b=a[7],v=n[0],m=n[1],R=n[2],P=n[3];return t[0]=r*P+o*v+e*R-u*m,t[1]=e*P+o*m+u*v-r*R,t[2]=u*P+o*R+r*m-e*v,t[3]=o*P-r*v-e*m-u*R,t[4]=r*h+o*i+e*c-u*s+f*P+b*v+M*R-l*m,t[5]=e*h+o*s+u*i-r*c+M*P+b*m+l*v-f*R,t[6]=u*h+o*c+r*s-e*i+l*P+b*R+f*m-M*v,t[7]=o*h-r*i-e*s-u*c+b*P-f*v-M*m-l*R,t}n.create=function(){var t=new e.ARRAY_TYPE(8);return e.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[4]=0,t[5]=0,t[6]=0,t[7]=0),t[3]=1,t},n.clone=function(t){var a=new e.ARRAY_TYPE(8);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a},n.fromValues=function(t,a,n,r,u,o,i,s){var c=new e.ARRAY_TYPE(8);return c[0]=t,c[1]=a,c[2]=n,c[3]=r,c[4]=u,c[5]=o,c[6]=i,c[7]=s,c},n.fromRotationTranslationValues=function(t,a,n,r,u,o,i){var s=new e.ARRAY_TYPE(8);s[0]=t,s[1]=a,s[2]=n,s[3]=r;var c=.5*u,h=.5*o,f=.5*i;return s[4]=c*r+h*n-f*a,s[5]=h*r+f*t-c*n,s[6]=f*r+c*a-h*t,s[7]=-c*t-h*a-f*n,s},n.fromRotationTranslation=i,n.fromTranslation=function(t,a){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=.5*a[0],t[5]=.5*a[1],t[6]=.5*a[2],t[7]=0,t},n.fromRotation=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.fromMat4=function(t,a){var n=u.create();o.getRotation(n,a);var r=new e.ARRAY_TYPE(3);return o.getTranslation(r,a),i(t,n,r),t},n.copy=s,n.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.set=function(t,a,n,r,e,u,o,i,s){return t[0]=a,t[1]=n,t[2]=r,t[3]=e,t[4]=u,t[5]=o,t[6]=i,t[7]=s,t},n.getReal=u.copy,n.getDual=function(t,a){return t[0]=a[4],t[1]=a[5],t[2]=a[6],t[3]=a[7],t},n.setReal=u.copy,n.setDual=function(t,a){return t[4]=a[0],t[5]=a[1],t[6]=a[2],t[7]=a[3],t},n.getTranslation=function(t,a){var n=a[4],r=a[5],e=a[6],u=a[7],o=-a[0],i=-a[1],s=-a[2],c=a[3];return t[0]=2*(n*c+u*o+r*s-e*i),t[1]=2*(r*c+u*i+e*o-n*s),t[2]=2*(e*c+u*s+n*i-r*o),t},n.translate=function(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=.5*n[0],s=.5*n[1],c=.5*n[2],h=a[4],f=a[5],M=a[6],l=a[7];return t[0]=r,t[1]=e,t[2]=u,t[3]=o,t[4]=o*i+e*c-u*s+h,t[5]=o*s+u*i-r*c+f,t[6]=o*c+r*s-e*i+M,t[7]=-r*i-e*s-u*c+l,t},n.rotateX=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateX(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateY=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateY(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateZ=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateZ(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateByQuatAppend=function(t,a,n){var r=n[0],e=n[1],u=n[2],o=n[3],i=a[0],s=a[1],c=a[2],h=a[3];return t[0]=i*o+h*r+s*u-c*e,t[1]=s*o+h*e+c*r-i*u,t[2]=c*o+h*u+i*e-s*r,t[3]=h*o-i*r-s*e-c*u,i=a[4],s=a[5],c=a[6],h=a[7],t[4]=i*o+h*r+s*u-c*e,t[5]=s*o+h*e+c*r-i*u,t[6]=c*o+h*u+i*e-s*r,t[7]=h*o-i*r-s*e-c*u,t},n.rotateByQuatPrepend=function(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=n[0],s=n[1],c=n[2],h=n[3];return t[0]=r*h+o*i+e*c-u*s,t[1]=e*h+o*s+u*i-r*c,t[2]=u*h+o*c+r*s-e*i,t[3]=o*h-r*i-e*s-u*c,i=n[4],s=n[5],c=n[6],h=n[7],t[4]=r*h+o*i+e*c-u*s,t[5]=e*h+o*s+u*i-r*c,t[6]=u*h+o*c+r*s-e*i,t[7]=o*h-r*i-e*s-u*c,t},n.rotateAroundAxis=function(t,a,n,r){if(Math.abs(r)<e.EPSILON)return s(t,a);var u=Math.hypot(n[0],n[1],n[2]);r*=.5;var o=Math.sin(r),i=o*n[0]/u,c=o*n[1]/u,h=o*n[2]/u,f=Math.cos(r),M=a[0],l=a[1],b=a[2],v=a[3];t[0]=M*f+v*i+l*h-b*c,t[1]=l*f+v*c+b*i-M*h,t[2]=b*f+v*h+M*c-l*i,t[3]=v*f-M*i-l*c-b*h;var m=a[4],R=a[5],P=a[6],d=a[7];return t[4]=m*f+d*i+R*h-P*c,t[5]=R*f+d*c+P*i-m*h,t[6]=P*f+d*h+m*c-R*i,t[7]=d*f-m*i-R*c-P*h,t},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t},n.multiply=c,n.mul=c,n.scale=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t},n.dot=u.dot,n.lerp=function(t,a,r,e){var u=1-e;return n.dot(a,r)<0&&(e=-e),t[0]=a[0]*u+r[0]*e,t[1]=a[1]*u+r[1]*e,t[2]=a[2]*u+r[2]*e,t[3]=a[3]*u+r[3]*e,t[4]=a[4]*u+r[4]*e,t[5]=a[5]*u+r[5]*e,t[6]=a[6]*u+r[6]*e,t[7]=a[7]*u+r[7]*e,t},n.invert=function(t,a){var r=n.squaredLength(a);return t[0]=-a[0]/r,t[1]=-a[1]/r,t[2]=-a[2]/r,t[3]=a[3]/r,t[4]=-a[4]/r,t[5]=-a[5]/r,t[6]=-a[6]/r,t[7]=a[7]/r,t},n.conjugate=function(t,a){return t[0]=-a[0],t[1]=-a[1],t[2]=-a[2],t[3]=a[3],t[4]=-a[4],t[5]=-a[5],t[6]=-a[6],t[7]=a[7],t},n.length=u.length,n.len=n.length,n.squaredLength=u.squaredLength,n.sqrLen=n.squaredLength,n.normalize=function(t,a){var r=n.squaredLength(a);if(r>0){r=Math.sqrt(r);var e=a[0]/r,u=a[1]/r,o=a[2]/r,i=a[3]/r,s=a[4],c=a[5],h=a[6],f=a[7],M=e*s+u*c+o*h+i*f;t[0]=e,t[1]=u,t[2]=o,t[3]=i,t[4]=(s-e*M)/r,t[5]=(c-u*M)/r,t[6]=(h-o*M)/r,t[7]=(f-i*M)/r}return t},n.str=function(t){return"quat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+")"},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]},n.equals=function(t,a){var n=t[0],r=t[1],u=t[2],o=t[3],i=t[4],s=t[5],c=t[6],h=t[7],f=a[0],M=a[1],l=a[2],b=a[3],v=a[4],m=a[5],R=a[6],P=a[7];return Math.abs(n-f)<=e.EPSILON*Math.max(1,Math.abs(n),Math.abs(f))&&Math.abs(r-M)<=e.EPSILON*Math.max(1,Math.abs(r),Math.abs(M))&&Math.abs(u-l)<=e.EPSILON*Math.max(1,Math.abs(u),Math.abs(l))&&Math.abs(o-b)<=e.EPSILON*Math.max(1,Math.abs(o),Math.abs(b))&&Math.abs(i-v)<=e.EPSILON*Math.max(1,Math.abs(i),Math.abs(v))&&Math.abs(s-m)<=e.EPSILON*Math.max(1,Math.abs(s),Math.abs(m))&&Math.abs(c-R)<=e.EPSILON*Math.max(1,Math.abs(c),Math.abs(R))&&Math.abs(h-P)<=e.EPSILON*Math.max(1,Math.abs(h),Math.abs(P))}},n”, ” "c56d9ff837": function _(n,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=n("tslib").__importStar(n("68ca94c15c"));function u(){var n=new a.ARRAY_TYPE(2);return a.ARRAY_TYPE!=Float32Array&&(n[0]=0,n[1]=0),n}function e(n,t,r){return n[0]=t[0]-r[0],n[1]=t[1]-r[1],n}function o(n,t,r){return n[0]=t[0]*r[0],n[1]=t[1]*r[1],n}function c(n,t,r){return n[0]=t[0]/r[0],n[1]=t[1]/r[1],n}function i(n,t){var r=t[0]-n[0],a=t[1]-n[1];return Math.hypot(r,a)}function f(n,t){var r=t[0]-n[0],a=t[1]-n[1];return r*r+a*a}function s(n){var t=n[0],r=n[1];return Math.hypot(t,r)}function h(n){var t=n[0],r=n[1];return t*t+r*r}var M;r.create=u,r.clone=function(n){var t=new a.ARRAY_TYPE(2);return t[0]=n[0],t[1]=n[1],t},r.fromValues=function(n,t){var r=new a.ARRAY_TYPE(2);return r[0]=n,r[1]=t,r},r.copy=function(n,t){return n[0]=t[0],n[1]=t[1],n},r.set=function(n,t,r){return n[0]=t,n[1]=r,n},r.add=function(n,t,r){return n[0]=t[0]+r[0],n[1]=t[1]+r[1],n},r.subtract=e,r.multiply=o,r.divide=c,r.ceil=function(n,t){return n[0]=Math.ceil(t[0]),n[1]=Math.ceil(t[1]),n},r.floor=function(n,t){return n[0]=Math.floor(t[0]),n[1]=Math.floor(t[1]),n},r.min=function(n,t,r){return n[0]=Math.min(t[0],r[0]),n[1]=Math.min(t[1],r[1]),n},r.max=function(n,t,r){return n[0]=Math.max(t[0],r[0]),n[1]=Math.max(t[1],r[1]),n},r.round=function(n,t){return n[0]=Math.round(t[0]),n[1]=Math.round(t[1]),n},r.scale=function(n,t,r){return n[0]=t[0]*r,n[1]=t[1]*r,n},r.scaleAndAdd=function(n,t,r,a){return n[0]=t[0]+r[0]*a,n[1]=t[1]+r[1]*a,n},r.distance=i,r.squaredDistance=f,r.length=s,r.squaredLength=h,r.negate=function(n,t){return n[0]=-t[0],n[1]=-t[1],n},r.inverse=function(n,t){return n[0]=1/t[0],n[1]=1/t[1],n},r.normalize=function(n,t){var r=t[0],a=t[1],u=r*r+a*a;return u>0&&(u=1/Math.sqrt(u)),n[0]=t[0]*u,n[1]=t[1]*u,n},r.dot=function(n,t){return n[0]*t[0]+n[1]*t[1]},r.cross=function(n,t,r){var a=t[0]*r[1]-t[1]*r[0];return n[0]=n[1]=0,n[2]=a,n},r.lerp=function(n,t,r,a){var u=t[0],e=t[1];return n[0]=u+a*(r[0]-u),n[1]=e+a*(r[1]-e),n},r.random=function(n,t){t=t||1;var r=2*a.RANDOM()*Math.PI;return n[0]=Math.cos(r)*t,n[1]=Math.sin(r)*t,n},r.transformMat2=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[2]*u,n[1]=r[1]*a+r[3]*u,n},r.transformMat2d=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[2]*u+r[4],n[1]=r[1]*a+r[3]*u+r[5],n},r.transformMat3=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[3]*u+r[6],n[1]=r[1]*a+r[4]*u+r[7],n},r.transformMat4=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[4]*u+r[12],n[1]=r[1]*a+r[5]*u+r[13],n},r.rotate=function(n,t,r,a){var u=t[0]-r[0],e=t[1]-r[1],o=Math.sin(a),c=Math.cos(a);return n[0]=u*c-e*o+r[0],n[1]=u*o+e*c+r[1],n},r.angle=function(n,t){var r=n[0],a=n[1],u=t[0],e=t[1],o=Math.sqrt(r*r+a*a)*Math.sqrt(u*u+e*e),c=o&&(r*u+a*e)/o;return Math.acos(Math.min(Math.max(c,-1),1))},r.zero=function(n){return n[0]=0,n[1]=0,n},r.str=function(n){return"vec2("+n[0]+", "+n[1]+")"},r.exactEquals=function(n,t){return n[0]===t[0]&&n[1]===t[1]},r.equals=function(n,t){var r=n[0],u=n[1],e=t[0],o=t[1];return Math.abs(r-e)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(e))&&Math.abs(u-o)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(o))},r.len=s,r.sub=e,r.mul=o,r.div=c,r.dist=i,r.sqrDist=f,r.sqrLen=h,r.forEach=(M=u(),function(n,t,r,a,u,e){var o,c;for(t||(t=2),r||(r=0),c=a?Math.min(a*t+r,n.length):n.length,o=r;o<c;o+=t)M[0]=n[o],M[1]=n[o+1],u(M,M,e),n[o]=M[0],n[o+1]=M[1];return n})},n”, ” "4baab0b7ce": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),r=e("@bokehjs/core/util/object"),i=e("021b2a3929"),o=e("6c442cdcb4"),_=e("11e0707a8f");class a extends i.AbstractVTKView{initialize(){super.initialize(),this._promises=[],this._renderable=!1,this._arrays={},this._decoded_arrays={},this._pending_arrays={},this.getArray=e=>this._arrays[e]?Promise.resolve(this._arrays[e]):new Promise((t,n)=>{this._pending_arrays[e]={resolve:t,reject:n}}),this.registerArray=(e,t)=>(this._arrays[e]=t,this._pending_arrays[e]&&this._pending_arrays[e].resolve(t),!0),this._synchronizer_context=o.vtkns.SynchronizableRenderWindow.getSynchronizerContext("panel")}connect_signals(){super.connect_signals(),this.connect(this.model.properties.arrays.change,()=>this._decode_arrays()),this.connect(this.model.properties.scene.change,()=>{if(this.model.rebuild)this._vtk_renwin=null,this.invalidate_render();else{const e=r.clone(this.model.scene);Promise.all(this._promises).then(()=>{this._sync_plot(e,()=>{this._on_scene_ready()})})}}),this.connect(this.model.properties.one_time_reset.change,()=>{this._vtk_renwin.getRenderWindow().clearOneTimeUpdaters()})}init_vtk_renwin(){this._vtk_renwin=_.FullScreenRenderWindowSynchronized.newInstance({rootContainer:this.el,container:this._vtk_container,synchronizerContext:this._synchronizer_context})}plot(){this._vtk_renwin.getRenderWindow().clearOneTimeUpdaters(),this._decode_arrays();const e=r.clone(this.model.scene);Promise.all(this._promises).then(()=>{this._sync_plot(e,()=>this._on_scene_ready()).then(()=>{this._set_camera_state(),this._get_camera_state()})})}_decode_arrays(){const e=new o.vtkns.ThirdParty.JSZip,t=this.model.arrays,n=this.registerArray,s=this.model.arrays_processed,r=this.model;Object.keys(t).forEach(i=>{this._decoded_arrays[i]||(this._decoded_arrays[i]=!0,this._promises.push(function(i){return e.loadAsync(atob(t[i])).then(e=>e.file("data/"+i)).then(e=>e.async("arraybuffer")).then(e=>n(i,e)).then(()=>{s.push(i),r.properties.arrays_processed.change.emit()})}(i)))})}_on_scene_ready(){this._promises.length>0||(this._renderable=!0,this._camera_callbacks.push(this._vtk_renwin.getRenderer().getActiveCamera().onModified(()=>this._vtk_render())),this._orientationWidget||this._create_orientation_widget(),this._axes||this._set_axes(),this._vtk_renwin.resize(),this._vtk_render())}_sync_plot(e,t){this._renderable=!1,this._promises=[],this._unsubscribe_camera_cb(),this._synchronizer_context.setFetchArrayFunction(e=>Promise.resolve(this._arrays[e]));const n=this._synchronizer_context.getInstance(this.model.scene.dependencies[0].id);return n&&!this._vtk_renwin.getRenderer()&&this._vtk_renwin.getRenderWindow().addRenderer(n),this._vtk_renwin.getRenderWindow().synchronize(e).then(t)}}n.VTKSynchronizedPlotView=a,a.__name__="VTKSynchronizedPlotView";class h extends i.AbstractVTKPlot{constructor(e){super(e),this.outline=o.vtkns.OutlineFilter.newInstance();const t=o.vtkns.Mapper.newInstance();t.setInputConnection(this.outline.getOutputPort()),this.outline_actor=o.vtkns.Actor.newInstance(),this.outline_actor.setMapper(t)}getActors(e){let t=this.renderer_el.getRenderer().getActors();if(e){const n=this.renderer_el.getSynchronizerContext("panel");t=t.filter(t=>{const s=n.getInstanceId(t);return!!s&&s.slice(-16)==e.slice(1,17)})}return t}static init_VTKSynchronizedPlot(){this.prototype.default_view=a,this.define({arrays:[s.Any,{}],arrays_processed:[s.Array,[]],enable_keybindings:[s.Boolean,!1],one_time_reset:[s.Boolean],rebuild:[s.Boolean,!1],scene:[s.Any,{}]}),this.override({height:300,width:300})}}n.VTKSynchronizedPlot=h,h.__name__="VTKSynchronizedPlot",h.__module__="panel.models.vtk",h.init_VTKSynchronizedPlot()},n”, ” "11e0707a8f": function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const t=e("6c442cdcb4");if(t.vtk){const e={containerStyle:null,controlPanelStyle:null,listenWindowResize:!0,resizeCallback:null,controllerVisibility:!0,synchronizerContextName:"default"},n={position:"absolute",left:"25px",top:"25px",backgroundColor:"white",borderRadius:"5px",listStyle:"none",padding:"5px 10px",margin:"0",display:"block",border:"solid 1px black",maxWidth:"calc(100vw - 70px)",maxHeight:"calc(100vh - 60px)",overflow:"auto"};o.FullScreenRenderWindowSynchronized={newInstance:t.vtk.macro.newInstance((o,r,i={})=>{Object.assign(r,e,i),t.vtk.macro.obj(o,r),t.vtk.macro.get(o,r,["renderWindow","openGLRenderWindow","interactor","rootContainer","container","controlContainer","synchronizerContext"]),function(e,o){o.renderWindow=t.vtkns.SynchronizableRenderWindow.newInstance({synchronizerContext:o.synchronizerContext}),o.openGLRenderWindow=t.vtkns.OpenGLRenderWindow.newInstance(),o.openGLRenderWindow.setContainer(o.container),o.renderWindow.addView(o.openGLRenderWindow),o.interactor=t.vtkns.RenderWindowInteractor.newInstance(),o.interactor.setInteractorStyle(t.vtkns.InteractorStyleTrackballCamera.newInstance()),o.interactor.setView(o.openGLRenderWindow),o.interactor.initialize(),o.interactor.bindEvents(o.container),e.getRenderer=()=>o.renderWindow.getRenderers()[0],e.removeController=()=>{const e=o.controlContainer;e&&e.parentNode.removeChild(e)},e.setControllerVisibility=e=>{o.controllerVisibility=e,o.controlContainer&&(o.controlContainer.style.display=e?"block":"none")},e.toggleControllerVisibility=()=>{e.setControllerVisibility(!o.controllerVisibility)},e.addController=r=>{o.controlContainer=document.createElement("div"),t.applyStyle(o.controlContainer,o.controlPanelStyle||n),o.rootContainer.appendChild(o.controlContainer),o.controlContainer.innerHTML=r,e.setControllerVisibility(o.controllerVisibility),o.rootContainer.addEventListener("keypress",n=>{"c"===String.fromCharCode(n.charCode)&&e.toggleControllerVisibility()})},e.delete=t.vtk.macro.chain(e.setContainer,o.openGLRenderWindow.delete,e.delete),e.resize=()=>{const e=o.container.getBoundingClientRect(),n=window.devicePixelRatio||1;o.openGLRenderWindow.setSize(Math.floor(e.width*n),Math.floor(e.height*n)),o.resizeCallback&&o.resizeCallback(e),o.renderWindow.render()},e.setResizeCallback=n=>{o.resizeCallback=n,e.resize()},o.listenWindowResize&&window.addEventListener("resize",e.resize),e.resize()}(o,r)})}}},n”, ” }, "4e90918c0a", {"index":"4e90918c0a","models/index":"c4b9651916","models/ace":"abb1112c2c","models/layout":"7116a7a602","models/audio":"66d52165db","models/card":"0106b0a1bf","models/comm_manager":"684c940c17","models/deckgl":"d0d2aafca0","models/tooltips":"064eac2866","models/echarts":"c6decbe3f5","models/html":"ed08037ce5","models/ipywidget":"cb7ac8d1fa","models/json":"284504a0cf","models/file_download":"7a99dba4eb","models/katex":"7b859fb3cf","models/location":"aded270681","models/mathjax":"0c21036737","models/player":"79c41bbf71","models/plotly":"47b5ae5c43","models/util":"990b5dd5c7","models/progress":"765e9cea08","models/singleselect":"ff9dd91f7b","models/state":"38b2bc9574","models/vega":"294adeb985","models/video":"b0c3e9e9c2","models/videostream":"3c7145a2fa","models/vtk/index":"c51f25e2a7","models/vtk/vtkjs":"6ed30646d7","models/vtk/vtklayout":"021b2a3929","models/vtk/util":"6c442cdcb4","models/vtk/vtkcolorbar":"c010237f8b","models/vtk/vtkvolume":"087f1e0be6","models/vtk/vtkaxes":"3ae7537200","models/vtk/vtksynchronized":"4baab0b7ce","models/vtk/panel_fullscreen_renwin_sync":"11e0707a8f"}, {});n”, ” })n”, “n”, “n”, ” /* END panel.min.js */n”, ” },n”, ” function(Bokeh) {} // ensure no trailing comma for IEn”, ” ];n”, “n”, ” function run_inline_js() {n”, ” if ((root.Bokeh !== undefined) || (force === true)) {n”, ” for (var i = 0; i < inline_js.length; i++) {n”, ” inline_js[i].call(root, root.Bokeh);n”, ” }} else if (Date.now() < root._bokeh_timeout) {n”, ” setTimeout(run_inline_js, 100);n”, ” } else if (!root._bokeh_failed_load) {n”, ” console.log("Bokeh: BokehJS failed to load within specified timeout.");n”, ” root._bokeh_failed_load = true;n”, ” }n”, ” }n”, “n”, ” if (root._bokeh_is_loading === 0) {n”, ” console.debug("Bokeh: BokehJS loaded, going straight to plotting");n”, ” run_inline_js();n”, ” } else {n”, ” load_libs(css_urls, js_urls, function() {n”, ” console.debug("Bokeh: BokehJS plotting callback run at", now());n”, ” run_inline_js();n”, ” });n”, ” }n”, “}(window));”
], “application/vnd.holoviews_load.v0+json”: “n(function(root) {n function now() {n return new Date();n }nn var force = true;nn if (typeof root._bokeh_onload_callbacks === "undefined" || force === true) {n root._bokeh_onload_callbacks = [];n root._bokeh_is_loading = undefined;n }nn if (typeof (root._bokeh_timeout) === "undefined" || force === true) {n root._bokeh_timeout = Date.now() + 5000;n root._bokeh_failed_load = false;n }nn function run_callbacks() {n try {n root._bokeh_onload_callbacks.forEach(function(callback) {n if (callback != null)n callback();n });n } finally {n delete root._bokeh_onload_callbacksn }n console.debug("Bokeh: all callbacks have finished");n }nn function load_libs(css_urls, js_urls, callback) {n if (css_urls == null) css_urls = [];n if (js_urls == null) js_urls = [];nn root._bokeh_onload_callbacks.push(callback);n if (root._bokeh_is_loading > 0) {n console.debug("Bokeh: BokehJS is being loaded, scheduling callback at", now());n return null;n }n if (js_urls == null || js_urls.length === 0) {n run_callbacks();n return null;n }n console.debug("Bokeh: BokehJS not loaded, scheduling load and callback at", now());n root._bokeh_is_loading = css_urls.length + js_urls.length;nn function on_load() {n root._bokeh_is_loading–;n if (root._bokeh_is_loading === 0) {n console.debug("Bokeh: all BokehJS libraries/stylesheets loaded");n run_callbacks()n }n }nn function on_error() {n console.error("failed to load " + url);n }nn for (var i = 0; i < css_urls.length; i++) {n var url = css_urls[i];n const element = document.createElement("link");n element.onload = on_load;n element.onerror = on_error;n element.rel = "stylesheet";n element.type = "text/css";n element.href = url;n console.debug("Bokeh: injecting link tag for BokehJS stylesheet: ", url);n document.body.appendChild(element);n }nn var skip = [];n if (window.requirejs) {n require([], function() {n })n }n for (var i = 0; i < js_urls.length; i++) {n var url = js_urls[i];n if (skip.indexOf(url) >= 0) { on_load(); continue; }n var element = document.createElement(‘script’);n element.onload = on_load;n element.onerror = on_error;n element.async = false;n element.src = url;n console.debug("Bokeh: injecting script tag for BokehJS library: ", url);n document.head.appendChild(element);n }ntif (!js_urls.length) {n on_load()n }n };nn function inject_raw_css(css) {n const element = document.createElement("style");n element.appendChild(document.createTextNode(css));n document.body.appendChild(element);n }nn var js_urls = [];n var css_urls = [];nn var inline_js = [n function(Bokeh) {n inject_raw_css(".bk.alert {\n padding: 0.75rem 1.25rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n /* Don’t set margin because that will not render correctly! /\n / margin-bottom: 1rem; /\n margin-top: 15px;\n margin-bottom: 15px;\n}\n.bk.alert a {\n color: rgb(11, 46, 19); / #002752; /\n font-weight: 700;\n text-decoration: rgb(11, 46, 19);\n text-decoration-color: rgb(11, 46, 19);\n text-decoration-line: none;\n text-decoration-style: solid;\n text-decoration-thickness: auto;\n }\n.bk.alert a:hover {\n color: rgb(11, 46, 19);\n font-weight: 700;\n text-decoration: underline;\n}\n\n.bk.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n.bk.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.bk.alert-secondary {\n color: #383d41;\n background-color: #e2e3e5;\n border-color: #d6d8db;\n }\n.bk.alert-secondary hr {\n border-top-color: #c8cbcf;\n}\n\n.bk.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n }\n\n.bk.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.bk.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n }\n.bk.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.bk.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n }\n\n.bk.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.bk.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n.bk.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.bk.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n }\n.bk.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.bk.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n }\n.bk.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n\n/ adjf\u00e6l /\n\n.bk.alert-primary a {\n color: #002752;\n}\n\n.bk.alert-secondary a {\n color: #202326;\n}\n\n\n.bk.alert-success a {\n color: #0b2e13;\n}\n\n\n.bk.alert-info a {\n color: #062c33;\n}\n\n\n.bk.alert-warning a {\n color: #533f03;\n}\n\n\n.bk.alert-danger a {\n color: #491217;\n}\n\n.bk.alert-light a {\n color: #686868;\n}\n\n.bk.alert-dark a {\n color: #040505;\n}");n },n function(Bokeh) {n inject_raw_css(".bk.card {\n border: 1px solid rgba(0,0,0,.125);\n border-radius: 0.25rem;\n}\n.bk.accordion {\n border: 1px solid rgba(0,0,0,.125);\n}\n.bk.card-header {\n align-items: center;\n background-color: rgba(0, 0, 0, 0.03);\n border-radius: 0.25rem;\n display: flex;\n justify-content: space-between;\n padding: 0 1.25rem 0 0;\n width: 100%;\n}\n.bk.accordion-header {\n align-items: center;\n background-color: rgba(0, 0, 0, 0.03);\n border-radius: 0;\n display: flex;\n justify-content: space-between;\n padding: 0 1.25rem 0 0;\n width: 100%;\n}\np.bk.card-button {\n background-color: transparent;\n font-size: 1.25rem;\n font-weight: 700;\n margin: 0;\n margin-left: -15px;\n}\n.bk.card-header-row {\n position: relative !important;\n}\n.bk.card-title {\n align-items: center;\n display: flex !important;\n font-size: 1.4em;\n font-weight: bold;\n padding: 0.25em;\n position: relative !important;\n}\n");n },n function(Bokeh) {n inject_raw_css(".bk.panel-widget-box {\n\tmin-height: 20px;\n\tbackground-color: #f5f5f5;\n\tborder: 1px solid #e3e3e3;\n\tborder-radius: 4px;\n\t-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\n\tbox-shadow: inset 0 1px 1px rgba(0,0,0,.05);\n\toverflow-x: hidden;\n\toverflow-y: hidden;\n}\n\n.scrollable {\n overflow: scroll;\n}\n\nprogress {\n\tappearance: none;\n\t-moz-appearance: none;\n\t-webkit-appearance: none;\n\n\tborder: none;\n\theight: 20px;\n\tbackground-color: whiteSmoke;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\n\tcolor: royalblue;\n\tposition: relative;\n\tmargin: 0 0 1.5em;\n}\n\nprogress[value]::-webkit-progress-bar {\n\tbackground-color: whiteSmoke;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\n}\n\nprogress[value]::-webkit-progress-value {\n\tposition: relative;\n\n\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\n\tborder-radius:3px;\n}\n\nprogress.active:not([value])::before {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress[value]::-moz-progress-bar {\n\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\n\tborder-radius:3px;\n}\n\nprogress:not([value])::-moz-progress-bar {\n\tborder-radius:3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n\n}\n\nprogress.active:not([value])::-moz-progress-bar {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress.active:not([value])::-webkit-progress-bar {\n\tbackground-position: 10%;\n\tanimation-name: stripes;\n\tanimation-duration: 3s;\n\tanimation-timing-function: linear;\n\tanimation-iteration-count: infinite;\n}\n\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\nprogress.primary:not([value])::before { background-color: #007bff; }\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\n\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\nprogress.secondary:not([value])::before { background-color: #6c757d; }\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\n\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\nprogress.success:not([value])::before { background-color: #28a745; }\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\nprogress.success::-moz-progress-bar { background-color: #28a745; }\n\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\nprogress.danger:not([value])::before { background-color: #dc3545; }\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\n\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\nprogress.warning:not([value])::before { background-color: #ffc107; }\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\n\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\nprogress.info:not([value])::before { background-color: #17a2b8; }\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\n\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\nprogress.light:not([value])::before { background-color: #f8f9fa; }\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\n\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\nprogress.dark:not([value])::before { background-color: #343a40; }\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\n\nprogress:not([value])::-webkit-progress-bar {\n\tborder-radius: 3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n}\nprogress:not([value])::before {\n\tcontent:\" \";\n\tposition:absolute;\n\theight: 20px;\n\ttop:0;\n\tleft:0;\n\tright:0;\n\tbottom:0;\n\tborder-radius: 3px;\n\tbackground:\n\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\n}\n\n@keyframes stripes {\n from {background-position: 0%}\n to {background-position: 100%}\n}\n\n.bk.loader::after {\n content: \"\";\n border-radius: 50%;\n -webkit-mask-image: radial-gradient(transparent 50%, rgba(0, 0, 0, 1) 54%);\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n position: absolute;\n}\n\n.bk-root .bk.loader.dark::after {\n background: #0f0f0f;\n}\n\n.bk-root .bk.loader.light::after {\n background: #f0f0f0;\n}\n\n.bk-root .bk.loader.spin::after {\n animation: spin 2s linear infinite;\n}\n\n.bk-root div.bk.loader.spin.primary-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #007bff 50%);\n}\n\n.bk-root div.bk.loader.spin.secondary-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #6c757d 50%);\n}\n\n.bk-root div.bk.loader.spin.success-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #28a745 50%);\n}\n\n.bk-root div.bk.loader.spin.danger-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #dc3545 50%);\n}\n\n.bk-root div.bk.loader.spin.warning-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #ffc107 50%);\n}\n\n.bk-root div.bk.loader.spin.info-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #17a2b8 50%);\n}\n\n.bk-root div.bk.loader.spin.light-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #f8f9fa 50%);\n}\n\n.bk-root div.bk.loader.dark-light::after {\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #343a40 50%);\n}\n\n.bk-root div.bk.loader.spin.primary-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #007bff 50%);\n}\n\n.bk-root div.bk.loader.spin.secondary-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #6c757d 50%);\n}\n\n.bk-root div.bk.loader.spin.success-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #28a745 50%);\n}\n\n.bk-root div.bk.loader.spin.danger-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #dc3545 50%)\n}\n\n.bk-root div.bk.loader.spin.warning-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #ffc107 50%);\n}\n\n.bk-root div.bk.loader.spin.info-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #17a2b8 50%);\n}\n\n.bk-root div.bk.loader.spin.light-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #f8f9fa 50%);\n}\n\n.bk-root div.bk.loader.spin.dark-dark::after {\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #343a40 50%);\n}\n\n/ Safari /\n@-webkit-keyframes spin {\n 0% { -webkit-transform: rotate(0deg); }\n 100% { -webkit-transform: rotate(360deg); }\n}\n\n@keyframes spin {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n}\n\n.dot div {\n height: 100%;\n width: 100%;\n border: 1px solid #000 !important;\n background-color: #fff;\n border-radius: 50%;\n display: inline-block;\n}\n\n.dot-filled div {\n height: 100%;\n width: 100%;\n border: 1px solid #000 !important;\n border-radius: 50%;\n display: inline-block;\n}\n\n.dot-filled.primary div {\n background-color: #007bff;\n}\n\n.dot-filled.secondary div {\n background-color: #6c757d;\n}\n\n.dot-filled.success div {\n background-color: #28a745;\n}\n\n.dot-filled.danger div {\n background-color: #dc3545;\n}\n\n.dot-filled.warning div {\n background-color: #ffc107;\n}\n\n.dot-filled.info div {\n background-color: #17a2b8;\n}\n\n.dot-filled.dark div {\n background-color: #343a40;\n}\n\n.dot-filled.light div {\n background-color: #f8f9fa;\n}");n },n function(Bokeh) {n inject_raw_css(".codehilite .hll { background-color: #ffffcc }\n.codehilite { background: #f8f8f8; }\n.codehilite .c { color: #408080; font-style: italic } / Comment /\n.codehilite .err { border: 1px solid #FF0000 } / Error /\n.codehilite .k { color: #008000; font-weight: bold } / Keyword /\n.codehilite .o { color: #666666 } / Operator /\n.codehilite .ch { color: #408080; font-style: italic } / Comment.Hashbang /\n.codehilite .cm { color: #408080; font-style: italic } / Comment.Multiline /\n.codehilite .cp { color: #BC7A00 } / Comment.Preproc /\n.codehilite .cpf { color: #408080; font-style: italic } / Comment.PreprocFile /\n.codehilite .c1 { color: #408080; font-style: italic } / Comment.Single /\n.codehilite .cs { color: #408080; font-style: italic } / Comment.Special /\n.codehilite .gd { color: #A00000 } / Generic.Deleted /\n.codehilite .ge { font-style: italic } / Generic.Emph /\n.codehilite .gr { color: #FF0000 } / Generic.Error /\n.codehilite .gh { color: #000080; font-weight: bold } / Generic.Heading /\n.codehilite .gi { color: #00A000 } / Generic.Inserted /\n.codehilite .go { color: #888888 } / Generic.Output /\n.codehilite .gp { color: #000080; font-weight: bold } / Generic.Prompt /\n.codehilite .gs { font-weight: bold } / Generic.Strong /\n.codehilite .gu { color: #800080; font-weight: bold } / Generic.Subheading /\n.codehilite .gt { color: #0044DD } / Generic.Traceback /\n.codehilite .kc { color: #008000; font-weight: bold } / Keyword.Constant /\n.codehilite .kd { color: #008000; font-weight: bold } / Keyword.Declaration /\n.codehilite .kn { color: #008000; font-weight: bold } / Keyword.Namespace /\n.codehilite .kp { color: #008000 } / Keyword.Pseudo /\n.codehilite .kr { color: #008000; font-weight: bold } / Keyword.Reserved /\n.codehilite .kt { color: #B00040 } / Keyword.Type /\n.codehilite .m { color: #666666 } / Literal.Number /\n.codehilite .s { color: #BA2121 } / Literal.String /\n.codehilite .na { color: #7D9029 } / Name.Attribute /\n.codehilite .nb { color: #008000 } / Name.Builtin /\n.codehilite .nc { color: #0000FF; font-weight: bold } / Name.Class /\n.codehilite .no { color: #880000 } / Name.Constant /\n.codehilite .nd { color: #AA22FF } / Name.Decorator /\n.codehilite .ni { color: #999999; font-weight: bold } / Name.Entity /\n.codehilite .ne { color: #D2413A; font-weight: bold } / Name.Exception /\n.codehilite .nf { color: #0000FF } / Name.Function /\n.codehilite .nl { color: #A0A000 } / Name.Label /\n.codehilite .nn { color: #0000FF; font-weight: bold } / Name.Namespace /\n.codehilite .nt { color: #008000; font-weight: bold } / Name.Tag /\n.codehilite .nv { color: #19177C } / Name.Variable /\n.codehilite .ow { color: #AA22FF; font-weight: bold } / Operator.Word /\n.codehilite .w { color: #bbbbbb } / Text.Whitespace /\n.codehilite .mb { color: #666666 } / Literal.Number.Bin /\n.codehilite .mf { color: #666666 } / Literal.Number.Float /\n.codehilite .mh { color: #666666 } / Literal.Number.Hex /\n.codehilite .mi { color: #666666 } / Literal.Number.Integer /\n.codehilite .mo { color: #666666 } / Literal.Number.Oct /\n.codehilite .sa { color: #BA2121 } / Literal.String.Affix /\n.codehilite .sb { color: #BA2121 } / Literal.String.Backtick /\n.codehilite .sc { color: #BA2121 } / Literal.String.Char /\n.codehilite .dl { color: #BA2121 } / Literal.String.Delimiter /\n.codehilite .sd { color: #BA2121; font-style: italic } / Literal.String.Doc /\n.codehilite .s2 { color: #BA2121 } / Literal.String.Double /\n.codehilite .se { color: #BB6622; font-weight: bold } / Literal.String.Escape /\n.codehilite .sh { color: #BA2121 } / Literal.String.Heredoc /\n.codehilite .si { color: #BB6688; font-weight: bold } / Literal.String.Interpol /\n.codehilite .sx { color: #008000 } / Literal.String.Other /\n.codehilite .sr { color: #BB6688 } / Literal.String.Regex /\n.codehilite .s1 { color: #BA2121 } / Literal.String.Single /\n.codehilite .ss { color: #19177C } / Literal.String.Symbol /\n.codehilite .bp { color: #008000 } / Name.Builtin.Pseudo /\n.codehilite .fm { color: #0000FF } / Name.Function.Magic /\n.codehilite .vc { color: #19177C } / Name.Variable.Class /\n.codehilite .vg { color: #19177C } / Name.Variable.Global /\n.codehilite .vi { color: #19177C } / Name.Variable.Instance /\n.codehilite .vm { color: #19177C } / Name.Variable.Magic /\n.codehilite .il { color: #666666 } / Literal.Number.Integer.Long /\n\n.markdown h1 { margin-block-start: 0.34em }\n.markdown h2 { margin-block-start: 0.42em }\n.markdown h3 { margin-block-start: 0.5em }\n.markdown h4 { margin-block-start: 0.67em }\n.markdown h5 { margin-block-start: 0.84em }\n.markdown h6 { margin-block-start: 1.17em }\n.markdown ul { padding-inline-start: 2em }\n.markdown ol { padding-inline-start: 2em }\n.markdown strong { font-weight: 600 }\n.markdown a { color: -webkit-link }\n.markdown a { color: -moz-hyperlinkText }\n");n },n function(Bokeh) {n inject_raw_css(".json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-row .json-formatter-string,\n.json-formatter-row .json-formatter-stringifiable {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string,\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n");n },n function(Bokeh) {n inject_raw_css("table.panel-df {\n margin-left: auto;\n margin-right: auto;\n border: none;\n border-collapse: collapse;\n border-spacing: 0;\n color: black;\n font-size: 12px;\n table-layout: fixed;\n width: 100%;\n}\n\n.panel-df tr, .panel-df th, .panel-df td {\n text-align: right;\n vertical-align: middle;\n padding: 0.5em 0.5em !important;\n line-height: normal;\n white-space: normal;\n max-width: none;\n border: none;\n}\n\n.panel-df tbody {\n display: table-row-group;\n vertical-align: middle;\n border-color: inherit;\n}\n\n.panel-df tbody tr:nth-child(odd) {\n background: #f5f5f5;\n}\n\n.panel-df thead {\n border-bottom: 1px solid black;\n vertical-align: bottom;\n}\n\n.panel-df tr:hover {\n background: lightblue !important;\n cursor: pointer;\n}\n");n },n function(Bokeh) {n / BEGIN bokeh.min.js /n /!n * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn * All rights reserved.n * n * Redistribution and use in source and binary forms, with or without modification,n * are permitted provided that the following conditions are met:n * n * Redistributions of source code must retain the above copyright notice,n * this list of conditions and the following disclaimer.n * n * Redistributions in binary form must reproduce the above copyright notice,n * this list of conditions and the following disclaimer in the documentationn * and/or other materials provided with the distribution.n * n * Neither the name of Anaconda nor the names of any contributorsn * may be used to endorse or promote products derived from this softwaren * without specific prior written permission.n * n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn * THE POSSIBILITY OF SUCH DAMAGE.n /n (function(root, factory) {n const bokeh = factory();n bokeh.__bokeh__ = true;n if (typeof root.Bokeh === "undefined" || typeof root.Bokeh.__bokeh__ === "undefined") {n root.Bokeh = bokeh;n }n const Bokeh = root.Bokeh;n Bokeh[bokeh.version] = bokeh;n })(this, function() {n var define;n var parent_require = typeof require === "function" && requiren return (function(modules, entry, aliases, externals) {n if (aliases === undefined) aliases = {};n if (externals === undefined) externals = {};nn var cache = {};nn var normalize = function(name) {n if (typeof name === "number")n return name;nn if (name === "bokehjs")n return entry;nn var prefix = "@bokehjs/"n if (name.slice(0, prefix.length) === prefix)n name = name.slice(prefix.length)nn var alias = aliases[name]n if (alias != null)n return alias;nn var trailing = name.length > 0 && name[name.lenght-1] === "/";n var index = aliases[name + (trailing ? "" : "/") + "index"];n if (index != null)n return index;nn return name;n }nn var require = function(name) {n var mod = cache[name];n if (!mod) {n var id = normalize(name);nn mod = cache[id];n if (!mod) {n if (!modules[id]) {n if (externals[id] === false || (externals[id] == true && parent_require)) {n try {n mod = {exports: externals[id] ? parent_require(id) : {}};n cache[id] = cache[name] = mod;n return mod.exports;n } catch (e) {}n }nn var err = new Error("Cannot find module ‘" + name + "’");n err.code = ‘MODULE_NOT_FOUND’;n throw err;n }nn mod = {exports: {}};n cache[id] = cache[name] = mod;n modules[id].call(mod.exports, require, mod, mod.exports);n } elsen cache[name] = mod;n }nn return mod.exports;n }n require.resolve = function(name) {n return ""n }nn var main = require(entry);n main.require = require;nn if (typeof Proxy !== "undefined") {n // allow Bokeh.loader["@bokehjs/module/name"] syntaxn main.loader = new Proxy({}, {n get: function(_obj, module) {n return require(module);n }n });n }nn main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {n if (plugin_aliases === undefined) plugin_aliases = {};n if (plugin_externals === undefined) plugin_externals = {};nn for (var name in plugin_modules) {n modules[name] = plugin_modules[name];n }nn for (var name in plugin_aliases) {n aliases[name] = plugin_aliases[name];n }nn for (var name in plugin_externals) {n externals[name] = plugin_externals[name];n }nn var plugin = require(plugin_entry);nn for (var name in plugin) {n main[name] = plugin[name];n }nn return plugin;n }nn return main;n })n ([n function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});e(1).__exportStar(e(2),_)},n function _(t,e,n){n /! *************************************************************************n Copyright (c) Microsoft Corporation.n n Permission to use, copy, modify, and/or distribute this software for anyn purpose with or without fee is hereby granted.n n THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITHn REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITYn AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROMn LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE ORn OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE ORn PERFORMANCE OF THIS SOFTWARE.n ************************************************************************* /n Object.defineProperty(n,"__esModule",{value:!0});var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function o(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function a(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,a=n.call(t),i=[];try{for(;(void 0===e||e– >0)&&!(r=a.next()).done;)i.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=a.return)&&n.call(a)}finally{if(o)throw o.error}}return i}function i(t){return this instanceof i?(this.v=t,this):new i(t)}n.__extends=function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},n.__assign=function(){return n.__assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t},n.__assign.apply(this,arguments)},n.__rest=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(t);o<r.length;o++)e.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(t,r[o])&&(n[r[o]]=t[r[o]])}return n},n.__decorate=function(t,e,n,r){var o,a=arguments.length,i=a<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(t,e,n,r);else for(var u=t.length-1;u>=0;u–)(o=t[u])&&(i=(a<3?o(i):a>3?o(e,n,i):o(e,n))||i);return a>3&&i&&Object.defineProperty(e,n,i),i},n.__param=function(t,e){return function(n,r){e(n,r,t)}},n.__metadata=function(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)},n.__awaiter=function(t,e,n,r){return new(n||(n=Promise))((function(o,a){function i(t){try{c(r.next(t))}catch(t){a(t)}}function u(t){try{c(r.throw(t))}catch(t){a(t)}}function c(t){var e;t.done?o(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,u)}c((r=r.apply(t,e||[])).next())}))},n.__generator=function(t,e){var n,r,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(a){return function(u){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1],o=a;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(a);break}o[2]&&i.ops.pop(),i.trys.pop();continue}a=e.call(t,i)}catch(t){a=[6,t],r=0}finally{n=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,u])}}},n.__createBinding=function(t,e,n,r){void 0===r&&(r=n),t[r]=e[n]},n.__exportStar=function(t,e){for(var n in t)"default"===n||e.hasOwnProperty(n)||(e[n]=t[n])},n.__values=o,n.__read=a,n.__spread=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(a(arguments[e]));return t},n.__spreadArrays=function(){for(var t=0,e=0,n=arguments.length;e<n;e++)t+=arguments[e].length;var r=Array(t),o=0;for(e=0;e<n;e++)for(var a=arguments[e],i=0,u=a.length;i<u;i++,o++)r[o]=a[i];return r},n.__await=i,n.__asyncGenerator=function(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,o=n.apply(t,e||[]),a=[];return r={},u("next"),u("throw"),u("return"),r[Symbol.asyncIterator]=function(){return this},r;function u(t){o[t]&&(r[t]=function(e){return new Promise((function(n,r){a.push([t,e,n,r])>1||c(t,e)}))})}function c(t,e){try{(n=o[t](e)).value instanceof i?Promise.resolve(n.value.v).then(f,l):s(a[0][2],n)}catch(t){s(a[0][3],t)}var n}function f(t){c("next",t)}function l(t){c("throw",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},n.__asyncDelegator=function(t){var e,n;return e={},r("next"),r("throw",(function(t){throw t})),r("return"),e[Symbol.iterator]=function(){return this},e;function r(r,o){e[r]=t[r]?function(e){return(n=!n)?{value:i(t[r](e)),done:"return"===r}:o?o(e):e}:o}},n.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=o(t),e={},r("next"),r("throw"),r("return"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,o){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,o,(e=t[n](e)).done,e.value)}))}}},n.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,"raw",{value:e}):t.raw=e,t},n.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e},n.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},n.__classPrivateFieldGet=function(t,e){if(!e.has(t))throw new TypeError("attempted to get private field on non-instance");return e.get(t)},n.__classPrivateFieldSet=function(t,e,n){if(!e.has(t))throw new TypeError("attempted to set private field on non-instance");return e.set(t,n),n}},n function _(e,r,t){var l=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var t in e)Object.hasOwnProperty.call(e,t)&&(r[t]=e[t]);return r.default=e,r};Object.defineProperty(t,"__esModule",{value:!0});var o=e(3);t.version=o.version;var s=e(4);t.index=s.index,t.embed=l(e(4)),t.protocol=l(e(390)),t._testing=l(e(391));var n=e(19);t.logger=n.logger,t.set_log_level=n.set_log_level;var a=e(27);t.settings=a.settings;var i=e(7);t.Models=i.Models;var v=e(5);t.documents=v.documents;var _=e(392);t.safely=_.safely},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0}),o.version="2.2.3"},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(5),s=e(19),r=e(29),d=e(13),_=e(8),c=e(16),i=e(381),a=e(383),u=e(382);var l=e(381);t.add_document_standalone=l.add_document_standalone,t.index=l.index;var m=e(383);t.add_document_from_session=m.add_document_from_session;var f=e(388);t.embed_items_notebook=f.embed_items_notebook,t.kernels=f.kernels;var g=e(382);async function O(e,o,t,c){_.isString(e)&&(e=JSON.parse(r.unescape(e)));const l={};for(const[o,t]of d.entries(e))l[o]=n.Document.from_json(t);const m=[];for(const e of o){const o=u._resolve_element(e),n=u._resolve_root_elements(e);if(null!=e.docid)m.push(await i.add_document_standalone(l[e.docid],o,n,e.use_for_title));else{if(null==e.token)throw new Error("Error rendering Bokeh items: either ‘docid’ or ‘token’ was expected.");{const r=a._get_ws_url(t,c);s.logger.debug("embed: computed ws url: "+r);try{m.push(await a.add_document_from_session(r,e.token,o,n,e.use_for_title)),console.log("Bokeh items were rendered successfully")}catch(e){console.log("Error rendering Bokeh items:",e)}}}}return m}t.BOKEH_ROOT=g.BOKEH_ROOT,t.embed_item=async function(e,o){const t={},n=r.uuid4();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(u.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n},[_]=await c.defer(()=>O(t,[d]));return _},t.embed_items=async function(e,o,t,n){return await c.defer(()=>O(e,o,t,n))}},n function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const o=e(1);o.__exportStar(e(6),_),o.__exportStar(e(121),_)},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),n=e(7),r=e(3),i=e(19),_=e(313),a=e(14),l=e(15),c=e(17),h=e(31),d=e(9),f=e(13),u=o.__importStar(e(120)),m=e(25),g=e(8),p=e(272),w=e(85),v=e(81),b=e(121);class y{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new b.MessageSentEvent(this.document,"bokeh_event",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=y,y.__name__="EventManager",s.documents=[],s.DEFAULT_TITLE="Bokeh Application";class j{constructor(){s.documents.push(this),this._init_timestamp=Date.now(),this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new y(this),this.idle=new l.Signal0(this,"idle"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter(e=>e instanceof p.LayoutDOM)}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(i.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new _.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new _.LODStart)),this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&this._interactive_plot.trigger_event(new _.LODEnd),this._interactive_plot=null,this._interactive_timestamp=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error("Attempted to overwrite a document with itself");e.clear();const t=d.copy(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error("Somehow we didn’t detach "+e);if(0!=this._all_models.size)throw new Error("this._all_models still had stuff in it: "+this._all_models);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){i.logger.debug("invalidating document models"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=u.union(e,t.references());const t=new Set(this._all_models.values()),s=u.difference(t,e),o=u.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(i.logger.debug("Adding root: "+e),!d.includes(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new b.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof v.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named ‘${e}’`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof b.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new b.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _references_json(e,t=!0){const s=[];for(const o of e){const e=o.struct();e.attributes=o.attributes_as_json(t),delete e.attributes.id,s.push(e)}return s}static _instantiate_object(e,t,s){const o=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(n.Models(t))(o)}static _instantiate_references_json(e,t){const s=new Map;for(const o of e){const e=o.id,n=o.type,r=o.attributes||{};let i=t.get(e);null==i&&(i=j._instantiate_object(e,n,r),null!=o.subtype&&i.set_subtype(o.subtype)),s.set(i.id,i)}return s}static _resolve_refs(e,t,s,o){function n(e){if(c.is_ref(e)){if(t.has(e.id))return t.get(e.id);if(s.has(e.id))return s.get(e.id);throw new Error(`reference ${JSON.stringify(e)} isn’t known (not in Document?)`)}return h.is_NDArray_ref(e)?h.decode_NDArray(e,o):g.isArray(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):g.isPlainObject(e)?function(e){const t={};for(const[s,o]of f.entries(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:r,attributes:i}of e){const e=!t.has(r),_=e?s.get(r):t.get(r),a=j._resolve_refs(i,t,s,o);_.setv(a,{silent:!0}),n.set(r,{instance:_,is_new:e})}const r=[],i=new Set;function _(e){if(e instanceof a.HasProps){if(n.has(e.id)&&!i.has(e.id)){i.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of f.values(o))_(e);s&&(t.finalize(),r.push(t))}}else if(g.isArray(e))for(const t of e)_(t);else if(g.isPlainObject(e))for(const t of f.values(e))_(t)}for(const e of n.values())_(e.instance);for(const e of r)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const r={kind:"ModelChanged",model:{id:e.id},attr:t,new:s};return a.HasProps._json_record_references(o,s,n,{recursive:!0}),r}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),r=Object.keys(t.attributes),_=d.difference(n,r),a=d.difference(r,n),l=d.intersection(n,r),c=[];for(const e of _)i.logger.warn(`Server sent key ${e} but we don’t seem to have it in our JSON`);for(const n of a){const r=t.attributes[n];c.push(j._event_for_attribute_change(e,n,r,s,o))}for(const n of l){const r=e.attributes[n],i=t.attributes[n];null==r&&null==i||(null==r||null==i?c.push(j._event_for_attribute_change(e,n,i,s,o)):m.isEqual(r,i)||c.push(j._event_for_attribute_change(e,n,i,s,o)))}return c.filter(e=>null!=e)}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),r=new Map,i=[];for(const t of e.roots.root_ids)r.set(t,n.get(t)),i.push(t);const _=o(s),a=new Map,l=[];for(const e of s.roots.root_ids)a.set(e,_.get(e)),l.push(e);if(i.sort(),l.sort(),d.difference(i,l).length>0||d.difference(l,i).length>0)throw new Error("Not implemented: computing add/remove of document roots");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=j._events_to_sync_objects(n.get(e),_.get(e),t,c);h=h.concat(s)}return{references:j._references_json(c,!1),events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=this._roots.map(e=>e.id),s=this._all_models.values();return{version:r.version,title:this._title,roots:{root_ids:t,references:j._references_json(s,e)}}}static from_json_string(e){const t=JSON.parse(e);return j.from_json(t)}static from_json(e){i.logger.debug("Creating Document from JSON");const t=e.version,s=-1!==t.indexOf("+")||-1!==t.indexOf("-"),o=`Library versions: JS (${r.version}) / Python (${t})`;s||r.version.replace(/-(dev|rc)\./,"$1")==t?i.logger.debug(o):(i.logger.warn("JS/Python version mismatch"),i.logger.warn(o));const n=e.roots,_=n.root_ids,a=n.references,l=j._instantiate_references_json(a,new Map);j._initialize_references_json(a,new Map,l,new Map);const c=new j;for(const e of _){const t=l.get(e);null!=t&&c.add_root(t)}return c.set_title(e.title),c}replace_with_json(e){j.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){const t=new Set,s=[];for(const o of e){if(o.document!==this)throw i.logger.warn("Cannot create a patch using events from a different document, event had ",o.document," we are ",this),new Error("Cannot create a patch using events from a different document");s.push(o.json(t))}return{events:s,references:j._references_json(t)}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,r=j._instantiate_references_json(o,this._all_models);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case"RootAdded":case"RootRemoved":case"ModelChanged":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)r.set(t,s);else if(!r.has(t))throw i.logger.warn(`Got an event for unknown model ${e.model}"`),new Error("event model wasn’t known");break}}const _=new Map,a=new Map;for(const[e,t]of r)this._all_models.has(e)?_.set(e,t):a.set(e,t);j._initialize_references_json(o,_,a,t);for(const e of n)switch(e.kind){case"MessageSent":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error("expected exactly one buffer");{const[[,e]]=t;n=e}}else n=j._resolve_refs(o,_,a,t);this._trigger_on_message(s,n);break}case"ModelChanged":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const r=e.attr,i=j._resolve_refs(e.new,_,a,t);n.setv({[r]:i},{setter_id:s});break}case"ColumnDataChanged":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const r=j._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in r||(r[e]=n.data[e]);n.setv({data:r},{setter_id:s,check_eq:!1});break}case"ColumnsStreamed":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error("Cannot stream to non-ColumnDataSource");const n=e.data,r=e.rollover;o.stream(n,r,s);break}case"ColumnsPatched":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error("Cannot patch non-ColumnDataSource");const n=e.patches;o.patch(n,s);break}case"RootAdded":{const t=e.model.id,o=r.get(t);this.add_root(o,s);break}case"RootRemoved":{const t=e.model.id,o=r.get(t);this.remove_root(o,s);break}case"TitleChanged":this.set_title(e.title,s);break;default:throw new Error("Unknown patch event "+JSON.stringify(e))}}}s.Document=j,j.__name__="Document"},n function _(e,r,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),t=e(8),d=e(13),i=e(14);s.overrides={};const l=new Map;s.Models=e=>{const r=s.overrides[e]||l.get(e);if(null==r)throw new Error(`Model ‘${e}’ does not exist. This could be due to a widget or a custom model not being registered before first usage.`);return r},s.Models.register=(e,r)=>{s.overrides[e]=r},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,r=!1,s)=>{var o;if(null!=e)for(const n of d.values(e))if(o=n,t.isObject(o)&&o.prototype instanceof i.HasProps){const e=n.__qualified__;r||!l.has(e)?l.set(e,n):null!=s?s(e):console.warn(`Model ‘${e}’ was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>Array.from(l.keys());const n=o.__importStar(e(34));s.register_models(n)},n function _(n,t,r){Object.defineProperty(r,"__esModule",{value:!0});n // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn // Underscore may be freely distributed under the MIT license.n const e=n(9),i=Object.prototype.toString;function o(n){return"[object Number]"===i.call(n)}function c(n){const t=typeof n;return"function"===t||"object"===t&&!!n}r.isBoolean=function(n){return!0===n||!1===n||"[object Boolean]"===i.call(n)},r.isNumber=o,r.isInteger=function(n){return o(n)&&Number.isInteger(n)},r.isString=function(n){return"[object String]"===i.call(n)},r.isFunction=function(n){return"[object Function]"===i.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return e.every(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r<e;r++)if(!t(n[r]))return!1;return!0},r.isTypedArray=function(n){return ArrayBuffer.isView(n)&&!(n instanceof DataView)},r.isObject=c,r.isPlainObject=function(n){return c(n)&&(null==n.constructor||n.constructor===Object)},r.isIterable=function(n){return Symbol.iterator in Object(n)}},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});n // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn // Underscore may be freely distributed under the MIT license.n const r=n(10),o=n(11),i=n(12);e.map=i.map,e.reduce=i.reduce,e.min=i.min,e.min_by=i.min_by,e.max=i.max,e.max_by=i.max_by,e.sum=i.sum,e.cumsum=i.cumsum,e.every=i.every,e.some=i.some,e.find=i.find,e.find_last=i.find_last,e.find_index=i.find_index,e.find_last_index=i.find_last_index,e.sorted_index=i.sorted_index,e.is_empty=i.is_empty;const u=Array.prototype.slice;function c(n){return u.call(n)}function f(n){return[].concat(…n)}function s(n,t){return-1!==n.indexOf(t)}function a(n,t,e=1){o.assert(e>0,"’step’ must be a positive number"),null==t&&(t=n,n=0);const{max:r,ceil:i,abs:u}=Math,c=n<=t?e:-e,f=r(i(u(t-n)/e),0),s=new Array(f);for(let t=0;t<f;t++,n+=c)s[t]=n;return s}e.head=function(n){return n[0]},e.tail=function(n){return n[n.length-1]},e.last=function(n){return n[n.length-1]},e.copy=c,e.concat=f,e.includes=s,e.contains=s,e.nth=function(n,t){return n[t>=0?t:n.length+t]},e.zip=function(…n){if(0==n.length)return[];const t=i.min(n.map(n=>n.length)),e=n.length,r=new Array(t);for(let o=0;o<t;o++){r[o]=new Array(e);for(let t=0;t<e;t++)r[o][t]=n[t][o]}return r},e.unzip=function(n){const t=n.length,e=i.min(n.map(n=>n.length)),r=Array(e);for(let n=0;n<e;n++)r[n]=new Array(t);for(let o=0;o<t;o++)for(let t=0;t<e;t++)r[t][o]=n[o][t];return r},e.range=a,e.linspace=function(n,t,e=100){const r=(t-n)/(e-1),o=new Array(e);for(let t=0;t<e;t++)o[t]=n+r*t;return o},e.transpose=function(n){const t=n.length,e=n[0].length,r=[];for(let o=0;o<e;o++){r[o]=[];for(let e=0;e<t;e++)r[o][e]=n[e][o]}return r},e.argmin=function(n){return i.min_by(a(n.length),t=>n[t])},e.argmax=function(n){return i.max_by(a(n.length),t=>n[t])},e.sort_by=function(n,t){const e=n.map((n,e)=>({value:n,index:e,key:t(n)}));return e.sort((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(e<r||void 0===r)return-1}return n.index-t.index}),e.map(n=>n.value)},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[…t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);s(r,n)||(r.push(n),e.push(o))}return e},e.union=function(…n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[…t]},e.intersection=function(n,…t){const e=[];n:for(const r of n)if(!s(e,r)){for(const n of t)if(!s(n,r))continue n;e.push(r)}return e},e.difference=function(n,…t){const e=f(t);return n.filter(n=>!s(e,n))},e.remove_at=function(n,t){const e=c(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e<n.length;)t(n[e])?n.splice(e,1):e++},e.shuffle=function(n){const t=n.length,e=new Array(t);for(let o=0;o<t;o++){const t=r.randomIn(0,o);t!==o&&(e[o]=e[t]),e[t]=n[o]}return e},e.pairwise=function(n,t){const e=n.length,r=new Array(e-1);for(let o=0;o<e-1;o++)r[o]=t(n[o],n[o+1]);return r},e.reversed=function(n){const t=n.length,e=new Array(t);for(let r=0;r<t;r++)e[t-r-1]=n[r];return e},e.repeat=function(n,t){const e=new Array(t);for(let r=0;r<t;r++)e[r]=n;return e}},n function _(n,t,r){function e(n){if(0==n)return 0;for(;n<=0;)n+=2*Math.PI;for(;n>2*Math.PI;)n-=2*Math.PI;return n}function a(n,t){return e(n-t)}function o(){return Math.random()}Object.defineProperty(r,"__esModule",{value:!0}),r.angle_norm=e,r.angle_dist=a,r.angle_between=function(n,t,r,o){const u=a(t,r);if(0==u)return!1;if(u==2*Math.PI)return!0;const f=e(n),i=a(t,f)<=u&&a(f,r)<=u;return 0==o?i:!i},r.random=o,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(Math.PI/180)},r.degrees=function(n){return n/(Math.PI/180)},r.rnorm=function(n,t){let r,e;for(;r=o(),e=o(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let a=e/r;return a=n+t*a,a},r.clamp=function(n,t,r){return n<t?t:n>r?r:n}},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});class o extends Error{}n.AssertionError=o,o.__name__="AssertionError",n.assert=function(e,r){if(!(!0===e||!1!==e&&e()))throw new o(null!=r?r:"Assertion failed")},n.unreachable=function(){throw new Error("unreachable code")}},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=n(8),o=n(10);function i(n,t,e,…r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,u=new n.constructor(i);let l=0;for(;l<t;l++)u[l]=n[l];for(const n of r)u[l++]=n;for(let r=t+e;r<o;r++)u[l++]=n[r];return u}function u(n,t){return i(n,t,n.length-t)}function l(n,t){const e=n.length,r=new n.constructor(e);for(let o=0;o<e;o++)r[o]=t(n[o],o,n);return r}function c(n,t,e){const r=n.length;if(void 0===e&&0==r)throw new Error("can’t reduce an empty array without an initial value");let o,i;for(void 0===e?(o=n[0],i=1):(o=e,i=0);i<r;i++)o=t(o,n[i],i,n);return o}function f(n){return function(t,e){const r=t.length;let o=n>0?0:r-1;for(;o>=0&&o<r;o+=n)if(e(t[o]))return o;return-1}}function s(n,t){let e=0,r=n.length;for(;e<r;){const o=Math.floor((e+r)/2);n[o]<t?e=o+1:r=o}return e}function h(n,t,e,r,o){const i=(o-e)/(r-t);let u=i*(n-t)+e;return isFinite(u)||(u=i*(n-r)+o,isFinite(u)||e!=o||(u=e)),u}function a(n,t){if(n<t[0])return-1;if(n>t[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return r.isArray(n)?n.slice():new n.constructor(n)},e.splice=i,e.head=u,e.insert=function(n,t,e){return i(n,e,0,t)},e.append=function(n,t){return i(n,n.length,0,t)},e.prepend=function(n,t){return i(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;e<r;e++)if(n[e]===t)return e;return-1},e.subselect=function(n,t){const e=t.length,r=new n.constructor(e);for(let o=0;o<e;o++)r[o]=n[t[o]];return r},e.map=l,e.filter=function(n,t){const e=n.length,r=new n.constructor(e);let o=0;for(let i=0;i<e;i++){const e=n[i];t(e,i,n)&&(r[o++]=e)}return u(r,o)},e.reduce=c,e.min=function(n){let t,e=1/0;for(let r=0,o=n.length;r<o;r++)t=n[r],!isNaN(t)&&t<e&&(e=t);return e},e.max=function(n){let t,e=-1/0;for(let r=0,o=n.length;r<o;r++)t=n[r],!isNaN(t)&&t>e&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;o<i;o++)t=n[o],isNaN(t)||(t<e&&(e=t),t>r&&(r=t));return[e,r]},e.min_by=function(n,t){if(0==n.length)throw new Error("min_by() called with an empty array");let e=n[0],r=t(e);for(let o=1,i=n.length;o<i;o++){const i=n[o],u=t(i);u<r&&(e=i,r=u)}return e},e.max_by=function(n,t){if(0==n.length)throw new Error("max_by() called with an empty array");let e=n[0],r=t(e);for(let o=1,i=n.length;o<i;o++){const i=n[o],u=t(i);u>r&&(e=i,r=u)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;e<r;e++)t+=n[e];return t},e.cumsum=function(n){const t=new n.constructor(n.length);return c(n,(n,e,r)=>t[r]=n+e,0),t},e.every=function(n,t){for(let e=0,r=n.length;e<r;e++)if(!t(n[e]))return!1;return!0},e.some=function(n,t){for(let e=0,r=n.length;e<r;e++)if(t(n[e]))return!0;return!1},e.index_of=function(n,t){for(let e=0,r=n.length;e<r;e++)if(n[e]===t)return e;return-1},e.find_index=f(1),e.find_last_index=f(-1),e.find=function(n,t){const r=e.find_index(n,t);return-1==r?void 0:n[r]},e.find_last=function(n,t){const r=e.find_last_index(n,t);return-1==r?void 0:n[r]},e.sorted_index=s,e.bin_counts=function(n,t){const e=t.length-1,r=Array(e).fill(0);for(let i=0;i<n.length;i++){const u=s(t,n[i]);r[o.clamp(u-1,0,e-1)]+=1}return r},e.interpolate=function(n,t,e){const r=n.length,o=new Array(r);for(let i=0;i<r;i++){const r=n[i];if(isNaN(r)){o[i]=r;continue}const u=a(r,t);if(-1==u)o[i]=e[0];else if(u==t.length)o[i]=e[e.length-1];else if(u==t.length-1||t[u]==r)o[i]=e[u];else{const n=t[u],l=e[u],c=t[u+1],f=e[u+1];o[i]=h(r,n,l,c,f)}}return o},e.left_edge_index=a,e.norm=function(n,t,e){const r=e-t;return l(n,n=>(n-t)/r)}},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const c=e(9);function o(e){return Object.keys(e).length}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(e){return Object.assign({},e)},n.merge=function(e,t){const n=Object.create(Object.prototype),o=c.concat([Object.keys(e),Object.keys(t)]);for(const s of o){const o=e.hasOwnProperty(s)?e[s]:[],r=t.hasOwnProperty(s)?t[s]:[];n[s]=c.union(o,r)}return n},n.size=o,n.isEmpty=function(e){return 0==o(e)},n.to_object=function(e){const t={};for(const[n,c]of e)t[n]=c;return t}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const s=t(1),n=t(15),i=t(17),o=s.__importStar(t(18)),c=s.__importStar(t(21)),a=s.__importStar(t(28)),_=t(29),u=t(9),f=t(13),l=t(8),h=t(25),p=t(5),d=t(30),y=t(31),g=t(25),v=t(33),m=s.__importStar(t(21));class b extends(n.Signalable()){constructor(t={}){var e;super(),this._subtype=void 0,this.document=null,this.destroyed=new n.Signal0(this,"destroyed"),this.change=new n.Signal0(this,"change"),this.transformchange=new n.Signal0(this,"transformchange"),this.properties={},this._pending=!1,this._changing=!1;const r=t instanceof Map?t.get:e=>t[e];for(const[t,{type:e,default_value:s,options:n}]of f.entries(this._props)){let i;i=e instanceof c.Kind?new o.PrimitiveProperty(this,t,e,s,r(t),n):new e(this,t,c.Any,s,r(t),n),this.properties[t]=i}null!==(e=r("__deferred__"))&&void 0!==e&&e||(this.finalize(),this.connect_signals())}set type(t){console.warn("prototype.type = ‘ModelName’ is deprecated, use static __name__ instead"),this.constructor.__name__=t}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:t,__name__:e}=this;return null!=t?`${t}.${e}`:e}static get[Symbol.toStringTag](){return this.__name__}static init_HasProps(){this.prototype._props={},this.prototype._mixins=[],this.define({id:[o.String,()=>_.uniqueId()]})}static _fix_default(t,e){if(void 0!==t){if(l.isFunction(t))return t;if(l.isArray(t))return()=>u.copy(t);if(l.isPlainObject(t))return()=>f.clone(t);if(l.isObject(t))throw new Error(t+" must be explicitly wrapped in a function");return()=>t}}static define(t){for(const[e,r]of f.entries(l.isFunction(t)?t(m):t)){if(null!=this.prototype._props[e])throw new Error(`attempted to redefine property ‘${this.prototype.type}.${e}’`);if(null!=this.prototype[e])throw new Error(`attempted to redefine attribute ‘${this.prototype.type}.${e}’`);Object.defineProperty(this.prototype,e,{get(){return this.properties[e].get_value()},set(t){return this.setv({[e]:t}),this},configurable:!1,enumerable:!0});const[t,s,n]=r,i={type:t,default_value:this._fix_default(s,e),options:n},o=f.clone(this.prototype._props);o[e]=i,this.prototype._props=o}}static internal(t){const e={};for(const[r,s]of f.entries(t)){const[t,n,i={}]=s;e[r]=[t,n,Object.assign(Object.assign({},i),{internal:!0})]}this.define(e)}static mixins(t){function e(t){switch(t){case"line":return a.LineVector;case"fill":return a.FillVector;case"hatch":return a.HatchVector;case"text":return a.TextVector;default:throw new Error(`Unknown property mixin kind ‘${t}’`)}}function r(t,e){const r={};for(const[s,n]of f.entries(e))r[t+s]=n;return r}function s(t){const[e]=Object.keys(t),[r]=e.split("_",1);return r}l.isArray(t)||(t=[t]);const n={},i=[];for(const o of t)if(l.isString(o)){const[t,s=""]=o.split(":"),c=e(t);i.push(o),f.extend(n,r(s,c))}else if(l.isArray(o)){const[t,e]=o;i.push(`${s(e)}:${t}`),f.extend(n,r(t,e))}else{const t=o;i.push(s(t)),f.extend(n,t)}this.define(n),this.prototype._mixins=[…this.prototype._mixins,…i]}static override(t){for(const[e,r]of f.entries(t)){const t=this._fix_default(r,e),s=this.prototype._props[e];if(null==s)throw new Error(`attempted to override nonexistent ‘${this.prototype.type}.${e}’`);const n=f.clone(this.prototype._props);n[e]=Object.assign(Object.assign({},s),{default_value:t}),this.prototype._props=n}}toString(){return`${this.type}(${this.id})`}property(t){const e=this.properties[t];if(null!=e)return e;throw new Error(`unknown property ${this.type}.${t}`)}get attributes(){const t={};for(const e of this)t[e.attr]=e.get_value();return t}[g.equals](t,e){for(const r of this){const s=t.property(r.attr);if(e.eq(r.get_value(),s.get_value()))return!1}return!0}[v.pretty](t){const e=t.token,r=[];for(const s of this)if(s.dirty){const n=s.get_value();r.push(`${s.attr}${e(":")} ${t.to_string(n)}`)}return`${this.constructor.__qualified__}${e("(")}${e("{")}${r.join(e(",")+" ")}${e("}")}${e(")")}`}finalize(){for(const t of this)null!=t.spec.transform&&this.connect(t.spec.transform.change,()=>this.transformchange.emit());this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){n.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return new this.constructor(this.attributes)}_setv(t,e){const r=e.check_eq,s=[],n=this._changing;this._changing=!0;for(const[e,n]of t)!1!==r&&h.isEqual(e.get_value(),n)||(e.set_value(n),s.push(e));s.length>0&&(this._pending=!0);for(const t of s)t.change.emit();if(!n){if(!e.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(t,e={}){const r=f.entries(t);if(0==r.length)return;if(!0===e.silent){for(const[t,e]of r)this.properties[t].set_value(e);return}const s=new Map,n=new Map;for(const[t,e]of r){const r=this.properties[t];s.set(r,e),n.set(r,r.get_value())}this._setv(s,e);const{document:i}=this;if(null!=i){const t=[];for(const[e,r]of n)t.push([e,r,e.get_value()]);for(const[,e,r]of t)if(this._needs_invalidate(e,r)){i._invalidate_all_models();break}this._push_changes(t,e)}}getv(t){return this.property(t).get_value()}ref(){return{id:this.id}}struct(){const t={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(t.subtype=this._subtype),t}set_subtype(t){this._subtype=t}*[Symbol.iterator](){yield*f.values(this.properties)}*syncable_properties(){for(const t of this)t.syncable&&(yield t)}serializable_attributes(){const t={};for(const e of this.syncable_properties())t[e.attr]=e.get_value();return t}static _value_to_json(t){if(t instanceof b)return t.ref();if(d.is_NDArray(t))return y.encode_NDArray(t);if(l.isArray(t)||l.isTypedArray(t)){const e=t.length,r=new Array(e);for(let s=0;s<e;s++){const e=t[s];r[s]=b._value_to_json(e)}return r}if(l.isPlainObject(t)){const e={};for(const[r,s]of f.entries(t))e[r]=b._value_to_json(s);return e}return t}attributes_as_json(t=!0,e=b._value_to_json){const r={};for(const s of this)s.syncable&&(t||s.dirty)&&(r[s.attr]=e(s.get_value()));return r}static _json_record_references(t,e,r,s){const{recursive:n}=s;if(i.is_ref(e)){const s=t.get_model_by_id(e.id);null==s||r.has(s)||b._value_record_references(s,r,{recursive:n})}else if(l.isArray(e))for(const s of e)b._json_record_references(t,s,r,{recursive:n});else if(l.isPlainObject(e))for(const s of f.values(e))b._json_record_references(t,s,r,{recursive:n})}static _value_record_references(t,e,r){const{recursive:s}=r;if(t instanceof b){if(!e.has(t)&&(e.add(t),s)){const r=t._immediate_references();for(const t of r)b._value_record_references(t,e,{recursive:!0})}}else if(l.isArray(t))for(const r of t)b._value_record_references(r,e,{recursive:s});else if(l.isPlainObject(t))for(const r of f.values(t))b._value_record_references(r,e,{recursive:s})}_immediate_references(){const t=new Set;for(const e of this.syncable_properties()){const r=e.get_value();b._value_record_references(r,t,{recursive:!1})}return t}references(){const t=new Set;return b._value_record_references(this,t,{recursive:!0}),t}_doc_attached(){}_doc_detached(){}attach_document(t){if(null!=this.document&&this.document!=t)throw new Error("models must be owned by only a single document");this.document=t,this._doc_attached()}detach_document(){this._doc_detached(),this.document=null}_needs_invalidate(t,e){const r=new Set;b._value_record_references(e,r,{recursive:!1});const s=new Set;b._value_record_references(t,s,{recursive:!1});for(const t of r)if(!s.has(t))return!0;for(const t of s)if(!r.has(t))return!0;return!1}_push_changes(t,e={}){const{document:r}=this;if(null==r)return;const{setter_id:s}=e,n=[];for(const[e,i,o]of t)e.syncable&&n.push(new p.ModelChangedEvent(r,this,e.attr,i,o,s));if(0!=n.length){let t;1==n.length?[t]=n:t=new p.DocumentEventBatch(r,n,s),r._trigger_on_change(t)}}materialize_dataspecs(t){const e={};for(const r of this){if(!(r instanceof o.VectorSpec))continue;if(r.optional&&null==r.spec.value&&!r.dirty)continue;const s=r.attr,n=r.array(t);e["_"+s]=n,r instanceof o.DistanceSpec&&(e["max_"+s]=u.max(n))}return e}on_change(t,e){for(const r of l.isArray(t)?t:[t])this.connect(r.change,e)}}r.HasProps=b,b.init_HasProps()},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const l=n(16),s=n(9);class o{constructor(n,t){this.sender=n,this.name=t}connect(n,t=null){c.has(this.sender)||c.set(this.sender,[]);const e=c.get(this.sender);if(null!=u(e,this,n,t))return!1;const l=null!=t?t:n;r.has(l)||r.set(l,[]);const s=r.get(l),o={signal:this,slot:n,context:t};return e.push(o),s.push(o),!0}disconnect(n,t=null){const e=c.get(this.sender);if(null==e||0===e.length)return!1;const l=u(e,this,n,t);if(null==l)return!1;const s=null!=t?t:n,o=r.get(s);return l.signal=null,a(e),a(o),!0}emit(n){var t;const e=null!==(t=c.get(this.sender))&&void 0!==t?t:[];for(const{signal:t,slot:l,context:s}of e)t===this&&l.call(s,n,this.sender)}}e.Signal=o,o.__name__="Signal";class i extends o{emit(){super.emit(void 0)}}e.Signal0=i,i.__name__="Signal0",function(n){n.disconnectBetween=function(n,t){const e=c.get(n);if(null==e||0===e.length)return;const l=r.get(t);if(null!=l&&0!==l.length){for(const t of l){if(null==t.signal)return;t.signal.sender===n&&(t.signal=null)}a(e),a(l)}},n.disconnectSender=function(n){var t;const e=c.get(n);if(null!=e&&0!==e.length){for(const n of e){if(null==n.signal)return;const e=null!==(t=n.context)&&void 0!==t?t:n.slot;n.signal=null,a(r.get(e))}a(e)}},n.disconnectReceiver=function(n){const t=r.get(n);if(null!=t&&0!==t.length){for(const n of t){if(null==n.signal)return;const t=n.signal.sender;n.signal=null,a(c.get(t))}a(t)}},n.disconnectAll=function(n){const t=c.get(n);if(null!=t&&0!==t.length){for(const n of t)n.signal=null;a(t)}const e=r.get(n);if(null!=e&&0!==e.length){for(const n of e)n.signal=null;a(e)}}}(o||(e.Signal=o={})),e.Signalable=function(){return class{connect(n,t){return n.connect(t,this)}disconnect(n,t){return n.disconnect(t,this)}}};const c=new WeakMap,r=new WeakMap;function u(n,t,e,l){return s.find(n,n=>n.signal===t&&n.slot===e&&n.context===l)}const g=new Set;function a(n){0===g.size&&l.defer(f),g.add(n)}function f(){for(const n of g)s.remove_by(n,n=>null==n.signal);g.clear()}},n function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.delay=n // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn // Underscore may be freely distributed under the MIT license.n function(n,e){return setTimeout(n,e)};const u="function"==typeof requestAnimationFrame?requestAnimationFrame:setImmediate;t.defer=function(n){return new Promise(e=>{u(()=>e(n()))})},t.throttle=function(n,e,t={}){let u,o,i,r=null,l=0;const c=function(){l=!1===t.leading?0:Date.now(),r=null,i=n.apply(u,o),r||(u=o=null)};return function(){const a=Date.now();l||!1!==t.leading||(l=a);const f=e-(a-l);return u=this,o=arguments,f<=0||f>e?(r&&(clearTimeout(r),r=null),l=a,i=n.apply(u,o),r||(u=o=null)):r||!1===t.trailing||(r=setTimeout(c,f)),i}},t.once=function(n){let e,t=!1;return function(){return t||(t=!0,e=n()),e}}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(8),r=e(13);t.is_ref=function(e){if(i.isPlainObject(e)){const n=r.keys(e);return 1==n.length&&"id"==n[0]}return!1}},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const a=e(1),s=e(15),i=e(19),r=a.__importStar(e(20)),l=e(24),o=e(9),c=e(12),_=e(22),u=e(8),d=e(27);function p(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function S(e){return u.isPlainObject(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}n.isSpec=S;class m{constructor(e,t,n,a,i,r={}){var l,o;let c;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=a,this._dirty=!1,this.change=new s.Signal0(this.obj,"change"),this.internal=null!==(l=r.internal)&&void 0!==l&&l,this.optional=null!==(o=r.optional)&&void 0!==o&&o,void 0!==i)c=i,this._dirty=!0;else{const t=this._default_override();c=void 0!==t?t:void 0!==a?a(e):null}this._update(c)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){null!=e&&this.validate(e),this.spec={value:e}}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${p(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj.type}.${this.attr} given invalid value: ${p(e)}`)}valid(e){return this.kind.valid(e)}value(e=!0){if(!this.is_value)throw new Error("attempted to retrieve property value for property without value specification");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=m,m.__name__="Property";class h extends m{}n.PrimitiveProperty=h,h.__name__="PrimitiveProperty";class v extends m{}n.Any=v,v.__name__="Any";class g extends m{valid(e){return u.isArray(e)||e instanceof Float32Array||e instanceof Float64Array}}n.Array=g,g.__name__="Array";class x extends m{valid(e){return u.isBoolean(e)}}n.Boolean=x,x.__name__="Boolean";class y extends m{valid(e){return u.isString(e)&&_.is_color(e)}}n.Color=y,y.__name__="Color";class f extends m{}n.Instance=f,f.__name__="Instance";class A extends m{valid(e){return u.isNumber(e)}}n.Number=A,A.__name__="Number";class P extends A{valid(e){return u.isNumber(e)&&(0|e)==e}}n.Int=P,P.__name__="Int";class C extends A{}n.Angle=C,C.__name__="Angle";class b extends A{valid(e){return u.isNumber(e)&&0<=e&&e<=1}}n.Percent=b,b.__name__="Percent";class L extends m{valid(e){return u.isString(e)}}n.String=L,L.__name__="String";class N extends m{valid(e){return null===e||u.isString(e)}}n.NullString=N,N.__name__="NullString";class T extends L{}n.FontSize=T,T.__name__="FontSize";class q extends L{_default_override(){return d.settings.dev?"Bokeh":void 0}}n.Font=q,q.__name__="Font";class B extends m{valid(e){return u.isString(e)&&o.includes(this.enum_values,e)}}function M(e){return class extends B{get enum_values(){return[…e]}}}n.EnumProperty=B,B.__name__="EnumProperty",n.Enum=M;class w extends B{get enum_values(){return[…r.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;n<e.length;n++)switch(e[n]){case"clock":t[n]=0;break;case"anticlock":t[n]=1}return t}}n.Direction=w,w.__name__="Direction",n.Anchor=M(r.Anchor),n.AngleUnits=M(r.AngleUnits),n.BoxOrigin=M(r.BoxOrigin),n.ButtonType=M(r.ButtonType),n.CalendarPosition=M(r.CalendarPosition),n.Dimension=M(r.Dimension),n.Dimensions=M(r.Dimensions),n.Distribution=M(r.Distribution),n.FontStyle=M(r.FontStyle),n.HatchPatternType=M(r.HatchPatternType),n.HTTPMethod=M(r.HTTPMethod),n.HexTileOrientation=M(r.HexTileOrientation),n.HoverMode=M(r.HoverMode),n.LatLon=M(r.LatLon),n.LegendClickPolicy=M(r.LegendClickPolicy),n.LegendLocation=M(r.LegendLocation),n.LineCap=M(r.LineCap),n.LineJoin=M(r.LineJoin),n.LinePolicy=M(r.LinePolicy),n.Location=M(r.Location),n.Logo=M(r.Logo),n.MarkerType=M(r.MarkerType),n.MutedPolicy=M(r.MutedPolicy),n.Orientation=M(r.Orientation),n.OutputBackend=M(r.OutputBackend),n.PaddingUnits=M(r.PaddingUnits),n.Place=M(r.Place),n.PointPolicy=M(r.PointPolicy),n.RadiusDimension=M(r.RadiusDimension),n.RenderLevel=M(r.RenderLevel),n.RenderMode=M(r.RenderMode),n.ResetPolicy=M(r.ResetPolicy),n.RoundingFunction=M(r.RoundingFunction),n.Side=M(r.Side),n.SizingMode=M(r.SizingMode),n.Sort=M(r.Sort),n.SpatialUnits=M(r.SpatialUnits),n.StartEnd=M(r.StartEnd),n.StepMode=M(r.StepMode),n.TapBehavior=M(r.TapBehavior),n.TextAlign=M(r.TextAlign),n.TextBaseline=M(r.TextBaseline),n.TextureRepetition=M(r.TextureRepetition),n.TickLabelOrientation=M(r.TickLabelOrientation),n.TooltipAttachment=M(r.TooltipAttachment),n.UpdateMode=M(r.UpdateMode),n.VerticalAlign=M(r.VerticalAlign);class D extends m{get_value(){return null===this.spec.value?null:this.spec}_update(e){S(e)?this.spec=e:this.spec={value:e},null!=this.spec.value&&this.validate(this.spec.value)}}n.ScalarSpec=D,D.__name__="ScalarSpec";class k extends D{}n.AnyScalar=k,k.__name__="AnyScalar";class F extends D{}n.ColorScalar=F,F.__name__="ColorScalar";class U extends D{}n.NumberScalar=U,U.__name__="NumberScalar";class z extends D{}n.StringScalar=z,z.__name__="StringScalar";class O extends D{}n.NullStringScalar=O,O.__name__="NullStringScalar";class R extends D{}n.ArrayScalar=R,R.__name__="ArrayScalar";class $ extends D{}n.LineJoinScalar=$,$.__name__="LineJoinScalar";class E extends D{}n.LineCapScalar=E,E.__name__="LineCapScalar";class H extends D{}n.FontSizeScalar=H,H.__name__="FontSizeScalar";class j extends D{}n.FontStyleScalar=j,j.__name__="FontStyleScalar";class X extends D{}n.TextAlignScalar=X,X.__name__="TextAlignScalar";class Y extends D{}n.TextBaselineScalar=Y,Y.__name__="TextBaselineScalar";class I extends m{get_value(){return null===this.spec.value?null:this.spec}_update(e){S(e)?this.spec=e:this.spec={value:e},null!=this.spec.value&&this.validate(this.spec.value)}array(e){var t;let n;const a=null!==(t=e.get_length())&&void 0!==t?t:1;if(null!=this.spec.field){const t=e.get_column(this.spec.field);if(null!=t)n=this.normalize(t);else{i.logger.warn(`attempted to retrieve property array for nonexistent field ‘${this.spec.field}’`);const e=new l.NumberArray(a);e.fill(NaN),n=e}}else if(null!=this.spec.expr)n=this.normalize(this.spec.expr.v_compute(e));else{const e=this.value(!1);if(u.isNumber(e)){const t=new l.NumberArray(a);t.fill(e),n=t}else n=o.repeat(e,a)}return null!=this.spec.transform&&(n=this.spec.transform.v_compute(n)),n}}n.VectorSpec=I,I.__name__="VectorSpec";class J extends I{}n.DataSpec=J,J.__name__="DataSpec";class V extends I{_update(e){super._update(e),null==this.spec.units&&(this.spec.units=this.default_units);const t=this.spec.units;if(!o.includes(this.valid_units,t))throw new Error(`units must be one of ${this.valid_units.join(", ")}; got: ${t}`)}get units(){return this.spec.units}set units(e){this.spec.units=e}}n.UnitsSpec=V,V.__name__="UnitsSpec";class G extends V{array(e){return new l.NumberArray(super.array(e))}}n.NumberUnitsSpec=G,G.__name__="NumberUnitsSpec";class K extends J{}n.BaseCoordinateSpec=K,K.__name__="BaseCoordinateSpec";class Q extends K{}n.CoordinateSpec=Q,Q.__name__="CoordinateSpec";class W extends K{}n.CoordinateSeqSpec=W,W.__name__="CoordinateSeqSpec";class Z extends K{}n.CoordinateSeqSeqSeqSpec=Z,Z.__name__="CoordinateSeqSeqSeqSpec";class ee extends Q{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSpec=ee,ee.__name__="XCoordinateSpec";class te extends Q{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSpec=te,te.__name__="YCoordinateSpec";class ne extends W{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSeqSpec=ne,ne.__name__="XCoordinateSeqSpec";class ae extends W{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSeqSpec=ae,ae.__name__="YCoordinateSeqSpec";class se extends Z{constructor(){super(…arguments),this.dimension="x"}}n.XCoordinateSeqSeqSeqSpec=se,se.__name__="XCoordinateSeqSeqSeqSpec";class ie extends Z{constructor(){super(…arguments),this.dimension="y"}}n.YCoordinateSeqSeqSeqSpec=ie,ie.__name__="YCoordinateSeqSeqSeqSpec";class re extends G{get default_units(){return"rad"}get valid_units(){return[…r.AngleUnits]}normalize(e){return"deg"==this.spec.units&&(e=c.map(e,e=>e*Math.PI/180)),e=c.map(e,e=>-e),super.normalize(e)}}n.AngleSpec=re,re.__name__="AngleSpec";class le extends G{get default_units(){return"data"}get valid_units(){return[…r.SpatialUnits]}}n.DistanceSpec=le,le.__name__="DistanceSpec";class oe extends J{array(e){return new Uint8Array(super.array(e))}}n.BooleanSpec=oe,oe.__name__="BooleanSpec";class ce extends J{array(e){return new l.NumberArray(super.array(e))}}n.NumberSpec=ce,ce.__name__="NumberSpec";class _e extends J{array(e){const t=super.array(e),n=t.length,a=new l.ColorArray(n);for(let e=0;e<n;e++){const n=t[e];if(u.isNumber(n))a[e]=n;else{const t=_.color2rgba(n);a[e]=_.encode_rgba(t)}}return a}}n.ColorSpec=_e,_e.__name__="ColorSpec";class ue extends J{}n.FontSizeSpec=ue,ue.__name__="FontSizeSpec";class de extends J{}n.MarkerSpec=de,de.__name__="MarkerSpec";class pe extends J{}n.StringSpec=pe,pe.__name__="StringSpec";class Se extends J{}n.NullStringSpec=Se,Se.__name__="NullStringSpec";class me extends J{}n.NDArraySpec=me,me.__name__="NDArraySpec"},n function _(e,l,o){Object.defineProperty(o,"__esModule",{value:!0});const n=e(8),t=e(13),s={};class g{constructor(e,l){this.name=e,this.level=l}}o.LogLevel=g,g.__name__="LogLevel";class r{constructor(e,l=r.INFO){this._name=e,this.set_level(l)}static get levels(){return Object.keys(r.log_levels)}static get(e,l=r.INFO){if(e.length>0){let o=s[e];return null==o&&(s[e]=o=new r(e,l)),o}throw new TypeError("Logger.get() expects a non-empty string name and an optional log-level")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof g)this._log_level=e;else{if(!n.isString(e)||null==r.log_levels[e])throw new Error("Logger.set_level() expects a log-level object or a string name of a log-level");this._log_level=r.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of t.entries(r.log_levels))o.level<this._log_level.level||this._log_level.level===r.OFF.level?this[e]=function(){}:this[e]=i(e,l)}trace(…e){}debug(…e){}info(…e){}warn(…e){}error(…e){}}function i(e,l){return null!=console[e]?console[e].bind(console,l):null!=console.log?console.log.bind(console,l):function(){}}function _(e){const l=o.logger.level;return n.isString(e)&&null==r.log_levels[e]?(console.log(`[bokeh] unrecognized logging level ‘${e}’ passed to Bokeh.set_log_level(), ignoring`),console.log("[bokeh] valid log levels are: "+r.levels.join(", "))):(console.log(`[bokeh] setting log level to: ‘${n.isString(e)?e:e.level}’`),o.logger.set_level(e)),l}o.Logger=r,r.__name__="Logger",r.TRACE=new g("trace",0),r.DEBUG=new g("debug",1),r.INFO=new g("info",2),r.WARN=new g("warn",6),r.ERROR=new g("error",7),r.FATAL=new g("fatal",8),r.OFF=new g("off",9),r.log_levels={trace:r.TRACE,debug:r.DEBUG,info:r.INFO,warn:r.WARN,error:r.ERROR,fatal:r.FATAL,off:r.OFF},o.logger=r.get("bokeh"),o.set_log_level=_,o.with_log_level=function(e,l){const o=_(e);try{l()}finally{_(o)}}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(21);t.Align=o.Enum("start","center","end"),t.Anchor=o.Enum("top_left","top_center","top_right","center_left","center","center_right","bottom_left","bottom_center","bottom_right"),t.AngleUnits=o.Enum("deg","rad"),t.BoxOrigin=o.Enum("corner","center"),t.ButtonType=o.Enum("default","primary","success","warning","danger"),t.CalendarPosition=o.Enum("auto","above","below"),t.Dimension=o.Enum("width","height"),t.Dimensions=o.Enum("width","height","both"),t.Direction=o.Enum("clock","anticlock"),t.Distribution=o.Enum("uniform","normal"),t.FontStyle=o.Enum("normal","italic","bold","bold italic"),t.HatchPatternType=o.Enum("blank","dot","ring","horizontal_line","vertical_line","cross","horizontal_dash","vertical_dash","spiral","right_diagonal_line","left_diagonal_line","diagonal_cross","right_diagonal_dash","left_diagonal_dash","horizontal_wave","vertical_wave","criss_cross"," ",".","o","-","|","+",’"’,":","@","/","\\","x",",","`","v",">",""),t.HTTPMethod=o.Enum("POST","GET"),t.HexTileOrientation=o.Enum("pointytop","flattop"),t.HoverMode=o.Enum("mouse","hline","vline"),t.LatLon=o.Enum("lat","lon"),t.LegendClickPolicy=o.Enum("none","hide","mute"),t.LegendLocation=t.Anchor,t.LineCap=o.Enum("butt","round","square"),t.LineJoin=o.Enum("miter","round","bevel"),t.LinePolicy=o.Enum("prev","next","nearest","interp","none"),t.Location=o.Enum("above","below","left","right"),t.Logo=o.Enum("normal","grey"),t.MarkerType=o.Enum("asterisk","circle","circle_cross","circle_dot","circle_x","circle_y","cross","dash","diamond","diamond_cross","diamond_dot","dot","hex","hex_dot","inverted_triangle","plus","square","square_cross","square_dot","square_pin","square_x","triangle","triangle_dot","triangle_pin","x","y"),t.MutedPolicy=o.Enum("show","ignore"),t.Orientation=o.Enum("vertical","horizontal"),t.OutputBackend=o.Enum("canvas","svg","webgl"),t.PaddingUnits=o.Enum("percent","absolute"),t.Place=o.Enum("above","below","left","right","center"),t.PointPolicy=o.Enum("snap_to_data","follow_mouse","none"),t.RadiusDimension=o.Enum("x","y","max","min"),t.RenderLevel=o.Enum("image","underlay","glyph","guide","annotation","overlay"),t.RenderMode=o.Enum("canvas","css"),t.ResetPolicy=o.Enum("standard","event_only"),t.RoundingFunction=o.Enum("round","nearest","floor","rounddown","ceil","roundup"),t.SelectionMode=o.Enum("replace","append","intersect","subtract"),t.Side=o.Enum("above","below","left","right"),t.SizingMode=o.Enum("stretch_width","stretch_height","stretch_both","scale_width","scale_height","scale_both","fixed"),t.Sort=o.Enum("ascending","descending"),t.SpatialUnits=o.Enum("screen","data"),t.StartEnd=o.Enum("start","end"),t.StepMode=o.Enum("after","before","center"),t.TapBehavior=o.Enum("select","inspect"),t.TextAlign=o.Enum("left","right","center"),t.TextBaseline=o.Enum("top","middle","bottom","alphabetic","hanging","ideographic"),t.TextureRepetition=o.Enum("repeat","repeat_x","repeat_y","no_repeat"),t.TickLabelOrientation=o.Enum("vertical","horizontal","parallel","normal"),t.TooltipAttachment=o.Enum("horizontal","vertical","left","right","above","below"),t.UpdateMode=o.Enum("replace","append"),t.VerticalAlign=o.Enum("top","middle","bottom")},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1).__importStar(e(8)),r=e(22);class i{}t.Kind=i,i.__name__="Kind",function(e){class n extends i{valid(e){return!0}}n.__name__="Any",e.Any=n;class t extends i{valid(e){return!0}}t.__name__="Unknown",e.Unknown=t;class l extends i{valid(e){return s.isBoolean(e)}}l.__name__="Boolean",e.Boolean=l;class a extends i{constructor(e){super(),this.obj_type=e}valid(e){return!0}}a.__name__="Ref",e.Ref=a;class _ extends i{valid(e){return s.isNumber(e)}}_.__name__="Number",e.Number=_;class u extends _{valid(e){return super.valid(e)&&s.isInteger(e)}}u.__name__="Int",e.Int=u;class d extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some(n=>n.valid(e))}}d.__name__="Or",e.Or=d;class o extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!s.isArray(e))return!1;for(let n=0;n<this.types.length;n++){const t=this.types[n],s=e[n];if(!t.valid(s))return!1}return!0}}o.__name__="Tuple",e.Tuple=o;class c extends i{constructor(e){super(),this.item_type=e}valid(e){return s.isArray(e)&&e.every(e=>this.item_type.valid(e))}}c.__name__="Array",e.Array=c;class m extends i{valid(e){return null===e}}m.__name__="Null",e.Null=m;class p extends i{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}p.__name__="Nullable",e.Nullable=p;class y extends i{valid(e){return s.isString(e)}}y.__name__="String",e.String=y;class v extends i{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}v.__name__="Enum",e.Enum=v;class h extends i{constructor(e){super(),this.item_type=e}valid(e){if(!s.isPlainObject(e))return!1;for(const n in e)if(e.hasOwnProperty(n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}h.__name__="Struct",e.Struct=h;class w extends i{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof Map))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}w.__name__="Dict",e.Dict=w;class K extends i{valid(e){return s.isString(e)&&r.is_color(e)}}K.__name__="Color",e.Color=K;class f extends _{valid(e){return super.valid(e)&&0<=e&&e<=1}}f.__name__="Percent",e.Percent=f}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null,t.Nullable=e=>new t.Kinds.Nullable(e),t.Or=(…e)=>new t.Kinds.Or(e),t.Tuple=(…e)=>new t.Kinds.Tuple(e),t.Array=e=>new t.Kinds.Array(e),t.Struct=e=>new t.Kinds.Struct(e),t.Dict=(e,n)=>new t.Kinds.Dict(e,n),t.Enum=(…e)=>new t.Kinds.Enum(e),t.Ref=e=>new t.Kinds.Ref(e),t.Percent=new t.Kinds.Percent,t.Color=new t.Kinds.Color,t.Auto=t.Enum("auto"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(23),l=e(9);function a(e){const r=Number(e).toString(16);return 1==r.length?"0"+r:r}function o(e){if(0==(e+="").indexOf("#"))return e;if(n.is_svg_color(e))return n.svg_colors[e];if(0==e.indexOf("rgb")){const r=e.replace(/^rgba?\(|\\s+|\)$/g,"").split(",");let t=r.slice(0,3).map(a).join("");return 4==r.length&&(t+=a(Math.floor(255*parseFloat(r[3])))),"#"+t.slice(0,8)}return e}function s(e){let r;switch(e.substring(0,4)){case"rgba":r={start:"rgba(",len:4,alpha:!0};break;case"rgb(":r={start:"rgb(",len:3,alpha:!1};break;default:return!1}if(new RegExp(".*?(\\.).*(,)").test(e))return!1;const t=e.replace(r.start,"").replace(")","").split(",").map(parseFloat);return t.length==r.len&&((!r.alpha||0<=t[3]&&t[3]<=1)&&!l.includes(t.slice(0,3).map(e=>0<=e&&e<=255),!1))}t.is_color=function(e){return n.is_svg_color(e.toLowerCase())||"#"==e.substring(0,1)||s(e)},t.rgb2hex=function(e,r,t){return`#${a(255&e)}${a(255&r)}${a(255&t)}`},t.color2hex=o,t.encode_rgba=function([e,r,t,n]){return(255*e|0)<<24|(255*r|0)<<16|(255*t|0)<<8|255*n|0},t.decode_rgba=function(e){return[(e>>24&255)/255,(e>>16&255)/255,(e>>8&255)/255,(e>>0&255)/255]},t.color2rgba=function(e,r=1){if(!e)return[0,0,0,0];let t=o(e);t=t.replace(/ |#/g,\"\"),t.length<=4&&(t=t.replace(/(.)/g,\"$1$1\"));const n=t.match(/../g).map(e=>parseInt(e,16)/255);for(;n.length<3;)n.push(0);return n.length<4&&n.push(r),n.slice(0,4)},t.valid_rgb=s},\n function _(e,F,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.svg_colors={indianred:\"#CD5C5C\",lightcoral:\"#F08080\",salmon:\"#FA8072\",darksalmon:\"#E9967A\",lightsalmon:\"#FFA07A\",crimson:\"#DC143C\",red:\"#FF0000\",firebrick:\"#B22222\",darkred:\"#8B0000\",pink:\"#FFC0CB\",lightpink:\"#FFB6C1\",hotpink:\"#FF69B4\",deeppink:\"#FF1493\",mediumvioletred:\"#C71585\",palevioletred:\"#DB7093\",coral:\"#FF7F50\",tomato:\"#FF6347\",orangered:\"#FF4500\",darkorange:\"#FF8C00\",orange:\"#FFA500\",gold:\"#FFD700\",yellow:\"#FFFF00\",lightyellow:\"#FFFFE0\",lemonchiffon:\"#FFFACD\",lightgoldenrodyellow:\"#FAFAD2\",papayawhip:\"#FFEFD5\",moccasin:\"#FFE4B5\",peachpuff:\"#FFDAB9\",palegoldenrod:\"#EEE8AA\",khaki:\"#F0E68C\",darkkhaki:\"#BDB76B\",lavender:\"#E6E6FA\",thistle:\"#D8BFD8\",plum:\"#DDA0DD\",violet:\"#EE82EE\",orchid:\"#DA70D6\",fuchsia:\"#FF00FF\",magenta:\"#FF00FF\",mediumorchid:\"#BA55D3\",mediumpurple:\"#9370DB\",blueviolet:\"#8A2BE2\",darkviolet:\"#9400D3\",darkorchid:\"#9932CC\",darkmagenta:\"#8B008B\",purple:\"#800080\",indigo:\"#4B0082\",slateblue:\"#6A5ACD\",darkslateblue:\"#483D8B\",mediumslateblue:\"#7B68EE\",greenyellow:\"#ADFF2F\",chartreuse:\"#7FFF00\",lawngreen:\"#7CFC00\",lime:\"#00FF00\",limegreen:\"#32CD32\",palegreen:\"#98FB98\",lightgreen:\"#90EE90\",mediumspringgreen:\"#00FA9A\",springgreen:\"#00FF7F\",mediumseagreen:\"#3CB371\",seagreen:\"#2E8B57\",forestgreen:\"#228B22\",green:\"#008000\",darkgreen:\"#006400\",yellowgreen:\"#9ACD32\",olivedrab:\"#6B8E23\",olive:\"#808000\",darkolivegreen:\"#556B2F\",mediumaquamarine:\"#66CDAA\",darkseagreen:\"#8FBC8F\",lightseagreen:\"#20B2AA\",darkcyan:\"#008B8B\",teal:\"#008080\",aqua:\"#00FFFF\",cyan:\"#00FFFF\",lightcyan:\"#E0FFFF\",paleturquoise:\"#AFEEEE\",aquamarine:\"#7FFFD4\",turquoise:\"#40E0D0\",mediumturquoise:\"#48D1CC\",darkturquoise:\"#00CED1\",cadetblue:\"#5F9EA0\",steelblue:\"#4682B4\",lightsteelblue:\"#B0C4DE\",powderblue:\"#B0E0E6\",lightblue:\"#ADD8E6\",skyblue:\"#87CEEB\",lightskyblue:\"#87CEFA\",deepskyblue:\"#00BFFF\",dodgerblue:\"#1E90FF\",cornflowerblue:\"#6495ED\",royalblue:\"#4169E1\",blue:\"#0000FF\",mediumblue:\"#0000CD\",darkblue:\"#00008B\",navy:\"#000080\",midnightblue:\"#191970\",cornsilk:\"#FFF8DC\",blanchedalmond:\"#FFEBCD\",bisque:\"#FFE4C4\",navajowhite:\"#FFDEAD\",wheat:\"#F5DEB3\",burlywood:\"#DEB887\",tan:\"#D2B48C\",rosybrown:\"#BC8F8F\",sandybrown:\"#F4A460\",goldenrod:\"#DAA520\",darkgoldenrod:\"#B8860B\",peru:\"#CD853F\",chocolate:\"#D2691E\",saddlebrown:\"#8B4513\",sienna:\"#A0522D\",brown:\"#A52A2A\",maroon:\"#800000\",white:\"#FFFFFF\",snow:\"#FFFAFA\",honeydew:\"#F0FFF0\",mintcream:\"#F5FFFA\",azure:\"#F0FFFF\",aliceblue:\"#F0F8FF\",ghostwhite:\"#F8F8FF\",whitesmoke:\"#F5F5F5\",seashell:\"#FFF5EE\",beige:\"#F5F5DC\",oldlace:\"#FDF5E6\",floralwhite:\"#FFFAF0\",ivory:\"#FFFFF0\",antiquewhite:\"#FAEBD7\",linen:\"#FAF0E6\",lavenderblush:\"#FFF0F5\",mistyrose:\"#FFE4E1\",gainsboro:\"#DCDCDC\",lightgray:\"#D3D3D3\",lightgrey:\"#D3D3D3\",silver:\"#C0C0C0\",darkgray:\"#A9A9A9\",darkgrey:\"#A9A9A9\",gray:\"#808080\",grey:\"#808080\",dimgray:\"#696969\",dimgrey:\"#696969\",lightslategray:\"#778899\",lightslategrey:\"#778899\",slategray:\"#708090\",slategrey:\"#708090\",darkslategray:\"#2F4F4F\",darkslategrey:\"#2F4F4F\",black:\"#000000\"},r.is_svg_color=function(e){return e in r.svg_colors}},\n function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.NumberArray=Float32Array,e.ColorArray=Uint32Array;const s=r(25);class a{constructor(r,t){this.offsets=r,this.array=t}[s.equals](r,t){return t.arrays(this.offsets,r.offsets)&&t.arrays(this.array,r.array)}get length(){return this.offsets.length}clone(){return new a(new Uint32Array(this.offsets),new e.NumberArray(this.array))}static from(r){const t=r.length,s=new Uint32Array(t);let n=0;for(let e=0;e<t;e++){const t=r[e].length;s[e]=n,n+=t}const o=new e.NumberArray(n);for(let e=0;e<t;e++)o.set(r[e],s[e]);return new a(s,o)}*[Symbol.iterator](){const{offsets:r,length:t}=this;for(let e=0;e<t;e++)yield this.array.subarray(r[e],r[e+1])}get(r){const{offsets:t}=this;return this.array.subarray(t[r],t[r+1])}set(r,t){this.array.set(t,this.offsets[r])}}e.RaggedArray=a,a.__name__=\"RaggedArray\",a[Symbol.toStringTag]=\"RaggedArray\";var n=r(26);e.Indices=n.BitSet},\n function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.equals=Symbol(\"equals\"),r.wildcard=Symbol(\"wildcard\");const n=Object.prototype.toString;class s{constructor(){this.a_stack=[],this.b_stack=[]}eq(t,e){if(Object.is(t,e))return!0;if(t===r.wildcard||e===r.wildcard)return!0;if(null==t||null==e)return t===e;const s=n.call(t);if(s!=n.call(e))return!1;switch(s){case\"[object Number]\":return this.numbers(t,e);case\"[object RegExp]\":case\"[object String]\":return\"\"+t==\"\"+e;case\"[object Date]\":case\"[object Boolean]\":return+t==+e}const{a_stack:o,b_stack:c}=this;let a=o.length;for(;a--;)if(o[a]===t)return c[a]===e;o.push(t),c.push(e);const i=(()=>{if(null!=t[r.equals]&&null!=e[r.equals])return t[r.equals](e,this);switch(s){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(\"\"+t,\"\"+e)}if(t instanceof Node)return this.nodes(t,e);throw Error(\"can't compare objects of type \"+s)})();return o.pop(),c.pop(),i}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n<r;n++)if(!this.eq(t[n],e[n]))return!1;return!0}iterables(t,e){const r=t[Symbol.iterator](),n=e[Symbol.iterator]();for(;;){const t=r.next(),e=n.next();if(t.done&&e.done)return!0;if(t.done||e.done)return!1;if(!this.eq(t.value,e.value))return!1}}maps(t,e){if(t.size!=e.size)return!1;for(const[r,n]of t)if(!e.has(r)||!this.eq(n,e.get(r)))return!1;return!0}sets(t,e){if(t.size!=e.size)return!1;for(const r of t)if(!e.has(r))return!1;return!0}objects(t,e){const r=Object.keys(t);if(r.length!=Object.keys(e).length)return!1;for(const n of r)if(!e.hasOwnProperty(n)||!this.eq(t[n],e[n]))return!1;return!0}nodes(t,e){return t.nodeType==e.nodeType&&(t.textContent==e.textContent&&!!this.iterables(t.childNodes,e.childNodes))}}r.Comparator=s,s.__name__="Comparator";const{abs:o}=Math;class c extends s{constructor(t=1e-4){super(),this.tolerance=t}numbers(t,e){return super.numbers(t,e)||o(t-e)<this.tolerance}}function a(t,e){return(new s).eq(t,e)}r.SimilarComparator=c,c.__name__="SimilarComparator",r.is_equal=a,r.is_similar=function(t,e,r){return new c(r).eq(t,e)},r.isEqual=a},n function _(t,s,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(11),i=t(9),n=t(25);class o{constructor(t,s=0){this.size=t,this[Symbol.toStringTag]="BitSet",this._count=null,this._nwords=Math.ceil(t/32),0==s||1==s?(this._array=new Uint32Array(this._nwords),1==s&&this._array.fill(4294967295)):(e.assert(s.length==this._nwords,"Initializer size mismatch"),this._array=s)}clone(){return new o(this.size,new Uint32Array(this._array))}[n.equals](t,s){if(!s.eq(this.size,t.size))return!1;const{_nwords:r}=this,e=this.size%r,i=0==e?r:r-1;for(let s=0;s<i;s++)if(this._array[s]!=t._array[s])return!1;if(0==e)return!0;{const s=1<<e-1,r=s-1^s;return(this._array[i]&r)==(t._array[i]&r)}}static all_set(t){return new o(t,1)}static all_unset(t){return new o(t,0)}static from_indices(t,s){const r=new o(t);for(const t of s)r.set(t);return r}static from_booleans(t,s){const r=new o(t),e=Math.min(t,s.length);for(let t=0;t<e;t++)s[t]&&r.set(t);return r}_check_bounds(t){e.assert(0<=t&&t<this.size,"Out of bounds")}get(t){this._check_bounds(t);const s=t>>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<<e:this._array[r]&=~(1<<e)}unset(t){this.set(t,!1)}*[Symbol.iterator](){yield*this.ones()}get count(){let t=this._count;return null==t&&(this._count=t=this._get_count()),t}_get_count(){const{_array:t,_nwords:s,size:r}=this;let e=0;for(let i=0,n=0;n<s;n++){const s=t[n];if(0==s)i+=32;else for(let t=0;t<32&&i<r;t++,i++)s>>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i<s;i++){const s=t[i];if(0!=s)for(let t=0;t<32&&e<r;t++,e++)s>>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i<s;i++){const s=t[i];if(4294967295!=s)for(let t=0;t<32&&e<r;t++,e++)s>>>t&1||(yield e);else e+=32}}_check_size(t){e.assert(this.size==t.size,"Size mismatch")}add(t){this._check_size(t);for(let s=0;s<this._nwords;s++)this._array[s]|=t._array[s]}intersect(t){this._check_size(t);for(let s=0;s<this._nwords;s++)this._array[s]&=t._array[s]}subtract(t){this._check_size(t);for(let s=0;s<this._nwords;s++){const r=this._array[s],e=t._array[s];this._array[s]=(r^e)&r}}union(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++)s._array[r]|=t._array[r];return s}intersection(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++)s._array[r]&=t._array[r];return s}difference(t){this._check_size(t);const s=this.clone();for(let r=0;r<this._nwords;r++){const e=this._array[r],i=t._array[r];s._array[r]=(e^i)&e}return s}select(t){const s=this.count,r=new t.constructor(s);let e=0;for(const s of this)r[e++]=t[s];return r}}r.BitSet=o,o.__name__="BitSet";class a{constructor(t,s,r){this.nrows=t,this.ncols=s,this._matrix=new Array(t);for(let e=0;e<t;e++){this._matrix[e]=new Array(s);for(let t=0;t<s;t++)this._matrix[e][t]=r(e,t)}}at(t,s){return this._matrix[t][s]}*[Symbol.iterator](){for(let t=0;t<this.nrows;t++)for(let s=0;s<this.ncols;s++){const r=this._matrix[t][s];yield[r,t,s]}}*values(){for(const[t]of this)yield t}map(t){return new a(this.nrows,this.ncols,(s,r)=>t(this.at(s,r),s,r))}apply(t){const s=a.from(t),{nrows:r,ncols:e}=this;if(r==s.nrows&&e==s.ncols)return new a(r,e,(t,r)=>s.at(t,r)(this.at(t,r),t,r));throw new Error("dimensions don’t match")}to_sparse(){return[…this]}static from(t,s){if(t instanceof a)return t;if(null!=s){const r=t,e=Math.floor(r.length/s);return new a(e,s,(t,e)=>r[t*s+e])}{const s=t,r=t.length,e=i.min(s.map(t=>t.length));return new a(r,e,(t,r)=>s[t][r])}}}r.Matrix=a,a.__name__="Matrix"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class n{constructor(){this._dev=!1}set dev(e){this._dev=e}get dev(){return this._dev}}s.Settings=n,n.__name__="Settings",s.settings=new n},n function _(e,l,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(1).__importStar(e(18));t.Line={line_color:[a.Color,"black"],line_alpha:[a.Number,1],line_width:[a.Number,1],line_join:[a.LineJoin,"bevel"],line_cap:[a.LineCap,"butt"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.Fill={fill_color:[a.Color,"gray"],fill_alpha:[a.Number,1]},t.Hatch={hatch_color:[a.Color,"black"],hatch_alpha:[a.Number,1],hatch_scale:[a.Number,12],hatch_pattern:[a.NullString,null],hatch_weight:[a.Number,1],hatch_extra:[a.Any,{}]},t.Text={text_color:[a.Color,"#444444"],text_alpha:[a.Number,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSize,"16px"],text_font_style:[a.FontStyle,"normal"],text_align:[a.TextAlign,"left"],text_baseline:[a.TextBaseline,"bottom"],text_line_height:[a.Number,1.2]},t.LineScalar={line_color:[a.ColorScalar,"black"],line_alpha:[a.NumberScalar,1],line_width:[a.NumberScalar,1],line_join:[a.LineJoinScalar,"bevel"],line_cap:[a.LineCapScalar,"butt"],line_dash:[a.ArrayScalar,[]],line_dash_offset:[a.NumberScalar,0]},t.FillScalar={fill_color:[a.ColorScalar,"gray"],fill_alpha:[a.NumberScalar,1]},t.HatchScalar={hatch_color:[a.ColorScalar,"black"],hatch_alpha:[a.NumberScalar,1],hatch_scale:[a.NumberScalar,12],hatch_pattern:[a.NullStringScalar,null],hatch_weight:[a.NumberScalar,1],hatch_extra:[a.AnyScalar,{}]},t.TextScalar={text_color:[a.ColorScalar,"#444444"],text_alpha:[a.NumberScalar,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSizeScalar,"16px"],text_font_style:[a.FontStyleScalar,"normal"],text_align:[a.TextAlignScalar,"left"],text_baseline:[a.TextBaselineScalar,"bottom"],text_line_height:[a.NumberScalar,1.2]},t.LineVector={line_color:[a.ColorSpec,"black"],line_alpha:[a.NumberSpec,1],line_width:[a.NumberSpec,1],line_join:[a.LineJoin,"bevel"],line_cap:[a.LineCap,"butt"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.FillVector={fill_color:[a.ColorSpec,"gray"],fill_alpha:[a.NumberSpec,1]},t.HatchVector={hatch_color:[a.ColorSpec,"black"],hatch_alpha:[a.NumberSpec,1],hatch_scale:[a.NumberSpec,12],hatch_pattern:[a.NullStringSpec,null],hatch_weight:[a.NumberSpec,1],hatch_extra:[a.Any,{}]},t.TextVector={text_color:[a.ColorSpec,"#444444"],text_alpha:[a.NumberSpec,1],text_font:[a.Font,"helvetica"],text_font_size:[a.FontSizeSpec,"16px"],text_font_style:[a.FontStyle,"normal"],text_align:[a.TextAlign,"left"],text_baseline:[a.TextBaseline,"bottom"],text_line_height:[a.Number,1.2]}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(27);function u(){const t=new Array(32);for(let e=0;e<32;e++)t[e]="0123456789ABCDEF".substr(Math.floor(16*Math.random()),1);return t[12]="4",t[16]="0123456789ABCDEF".substr(3&t[16].charCodeAt(0)|8,1),t.join("")}r.startsWith=function(t,e,r=0){return t.substr(r,e.length)==e},r.uuid4=u;let s=1e3;r.uniqueId=function(t){const e=n.settings.dev?"j"+s++:u();return null!=t?`${t}-${e}`:e},r.escape=function(t){return t.replace(/(?:[&<>"’])/g,t=>{switch(t){case"&":return"&";case"<":return"<";case">":return">";case’"’:return""";case"’":return"'";case"":return"`";default:return t}})},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,(t,e)=>{switch(e){case"amp":return"&";case"lt":return"<";case"gt":return">";case"quot":return’"’;case"#x27":return"’";case"#x60":return"";default:return e}})},r.use_strict=function(t){return"’use strict’;\n"+t}},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(8),a=t(11),n=t(25),i=Symbol("__ndarray__");class h extends Uint8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint8",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint8NDArray=h,h.__name__="Uint8NDArray";class _ extends Int8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int8",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int8NDArray=_,_.__name__="Int8NDArray";class u extends Uint16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint16",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint16NDArray=u,u.__name__="Uint16NDArray";class l extends Int16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int16",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int16NDArray=l,l.__name__="Int16NDArray";class y extends Uint32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="uint32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint32NDArray=y,y.__name__="Uint32NDArray";class c extends Int32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="int32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int32NDArray=c,c.__name__="Int32NDArray";class p extends Float32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="float32",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Float32NDArray=p,p.__name__="Float32NDArray";class o extends Float64Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype="float64",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}function d(t){return r.isObject(t)&&t.__ndarray__==i}e.Float64NDArray=o,o.__name__="Float64NDArray",e.is_NDArray=d,e.ndarray=function(t,s={}){let{dtype:e}=s;null==e&&(e=t instanceof ArrayBuffer||r.isArray(t)?"float32":(()=>{switch(!0){case t instanceof Uint8Array:return"uint8";case t instanceof Int8Array:return"int8";case t instanceof Uint16Array:return"uint16";case t instanceof Int16Array:return"int16";case t instanceof Uint32Array:return"uint32";case t instanceof Int32Array:return"int32";case t instanceof Float32Array:return"float32";case t instanceof Float64Array:return"float64";default:a.unreachable()}})());const{shape:n}=s;switch(e){case"uint8":return new h(t,n);case"int8":return new _(t,n);case"uint16":return new u(t,n);case"int16":return new l(t,n);case"uint32":return new y(t,n);case"int32":return new c(t,n);case"float32":return new p(t,n);case"float64":return new o(t,n)}}},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),a=e(8),f=e(32),_=n.__importStar(e(30));function o(e){const r=new Uint8Array(e),t=Array.from(r).map(e=>String.fromCharCode(e));return btoa(t.join(""))}function s(e){const r=atob(e),t=r.length,n=new Uint8Array(t);for(let e=0,a=t;e<a;e++)n[e]=r.charCodeAt(e);return n.buffer}function i(e){const r=new Uint8Array(e.buffer,e.byteOffset,2*e.length);for(let e=0,t=r.length;e<t;e+=2){const t=r[e];r[e]=r[e+1],r[e+1]=t}}function u(e){const r=new Uint8Array(e.buffer,e.byteOffset,4*e.length);for(let e=0,t=r.length;e<t;e+=4){let t=r[e];r[e]=r[e+3],r[e+3]=t,t=r[e+1],r[e+1]=r[e+2],r[e+2]=t}}function c(e){const r=new Uint8Array(e.buffer,e.byteOffset,8*e.length);for(let e=0,t=r.length;e<t;e+=8){let t=r[e];r[e]=r[e+7],r[e+7]=t,t=r[e+1],r[e+1]=r[e+6],r[e+6]=t,t=r[e+2],r[e+2]=r[e+5],r[e+5]=t,t=r[e+3],r[e+3]=r[e+4],r[e+4]=t}}t.buffer_to_base64=o,t.base64_to_buffer=s,t.BYTE_ORDER=f.is_little_endian?"little":"big",t.swap16=i,t.swap32=u,t.swap64=c,t.is_NDArray_ref=function(e){return a.isPlainObject(e)&&("__buffer__"in e||"__ndarray__"in e)},t.decode_NDArray=function(e,r){const{shape:n,dtype:a,order:f}=e;let o;if("__buffer__"in e){const t=r.get(e.__buffer__);if(null==t)throw new Error(`buffer for ${e.__buffer__} not found);o=t}else o=s(e.__ndarray__);const l=(()=>{switch(a){case"uint8":return new _.Uint8NDArray(o,n);case"int8":return new _.Int8NDArray(o,n);case"uint16":return new _.Uint16NDArray(o,n);case"int16":return new _.Int16NDArray(o,n);case"uint32":return new _.Uint32NDArray(o,n);case"int32":return new _.Int32NDArray(o,n);case"float32":return new _.Float32NDArray(o,n);case"float64":return new _.Float64NDArray(o,n)}})();if(f!==t.BYTE_ORDER)switch(l.BYTES_PER_ELEMENT){case 2:i(l);break;case 4:u(l);break;case 8:c(l)}return l},t.encode_NDArray=function(e,r){const n={order:t.BYTE_ORDER,dtype:e.dtype,shape:e.shape};if(null!=r){const t=""+r.size;return r.set(t,e.buffer),Object.assign({__buffer__:t},n)}{const r=o(e.buffer);return Object.assign({__ndarray__:r},n)}}},n function _(e,n,i){Object.defineProperty(i,"__esModule",{value:!0}),i.is_ie=(()=>{const e="undefined"!=typeof navigator?navigator.userAgent:"";return e.indexOf("MSIE")>=0||e.indexOf("Trident")>0||e.indexOf("Edge")>0})(),i.is_mobile="undefined"!=typeof window&&("ontouchstart"in window||navigator.maxTouchPoints>0),i.is_little_endian=(()=>{const e=new ArrayBuffer(4),n=new Uint8Array(e);new Uint32Array(e)[1]=168496141;let i=!0;return 10==n[4]&&11==n[5]&&12==n[6]&&13==n[7]&&(i=!1),i})()},n function _(t,r,n){Object.defineProperty(n,"__esModule",{value:!0});const e=t(8),i=t(13);n.pretty=Symbol("pretty");class o{constructor(t){this.precision=null==t?void 0:t.precision}to_string(t){return function(t){return n.pretty in Object(t)}(t)?t[n.pretty](this):e.isBoolean(t)?this.boolean(t):e.isNumber(t)?this.number(t):e.isString(t)?this.string(t):e.isArray(t)?this.array(t):e.isIterable(t)?this.iterable(t):e.isPlainObject(t)?this.object(t):""+t}token(t){return t}boolean(t){return""+t}number(t){return null!=this.precision?t.toFixed(this.precision):""+t}string(t){return`"${t.replace(/’/g,"\\’")}"}array(t){const r=this.token,n=[];for(const r of t)n.push(this.to_string(r));return`${r("[")}${n.join(r(",")+" ")}${r("]")}}iterable(t){var r;const n=this.token,e=null!==(r=Object(t)[Symbol.toStringTag])&&void 0!==r?r:"Object",i=this.array(t);return`${e}${n("(")}${i}${n(")")}`}object(t){const r=this.token,n=[];for(const[e,o]of i.entries(t))n.push(${e}${r(":")} ${this.to_string(o)});return`${r("{")}${n.join(r(",")+" ")}${r("}")}`}}n.Printer=o,o.__name__="Printer",n.to_string=function(t,r){return new o(r).to_string(t)}},n function _(t,_,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(1);e.__exportStar(t(35),r),e.__exportStar(t(176),r),e.__exportStar(t(203),r),e.__exportStar(t(207),r),e.__exportStar(t(218),r),e.__exportStar(t(222),r),e.__exportStar(t(228),r),e.__exportStar(t(232),r),e.__exportStar(t(265),r),e.__exportStar(t(268),r),e.__exportStar(t(270),r),e.__exportStar(t(132),r),e.__exportStar(t(148),r),e.__exportStar(t(287),r),e.__exportStar(t(291),r),e.__exportStar(t(320),r),e.__exportStar(t(321),r),e.__exportStar(t(322),r),e.__exportStar(t(323),r),e.__exportStar(t(324),r),e.__exportStar(t(329),r),e.__exportStar(t(331),r),e.__exportStar(t(342),r),e.__exportStar(t(346),r)},n function _(a,e,o){Object.defineProperty(o,"__esModule",{value:!0});var r=a(36);o.Annotation=r.Annotation;var n=a(83);o.Arrow=n.Arrow;var t=a(84);o.ArrowHead=t.ArrowHead;var v=a(84);o.OpenHead=v.OpenHead;var l=a(84);o.NormalHead=l.NormalHead;var d=a(84);o.TeeHead=d.TeeHead;var i=a(84);o.VeeHead=i.VeeHead;var A=a(122);o.Band=A.Band;var H=a(124);o.BoxAnnotation=H.BoxAnnotation;var T=a(125);o.ColorBar=T.ColorBar;var p=a(160);o.Label=p.Label;var L=a(162);o.LabelSet=L.LabelSet;var b=a(163);o.Legend=b.Legend;var B=a(164);o.LegendItem=B.LegendItem;var S=a(166);o.PolyAnnotation=S.PolyAnnotation;var P=a(167);o.Slope=P.Slope;var g=a(168);o.Span=g.Span;var m=a(161);o.TextAnnotation=m.TextAnnotation;var w=a(169);o.Title=w.Title;var x=a(170);o.ToolbarPanel=x.ToolbarPanel;var s=a(171);o.Tooltip=s.Tooltip;var u=a(175);o.Whisker=u.Whisker},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const s=t(1).__importStar(t(37)),i=t(13),o=t(70);class _ extends o.RendererView{get panel(){return this.layout}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.visible,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible){const{width:t,height:e}=this._get_size();return{width:Math.round(t),height:Math.round(e)}}return{width:0,height:0}}_get_size(){throw new Error("not implemented")}set_data(t){const e=this.model.materialize_dataspecs(t);if(i.extend(this,e),this.plot_model.use_map){const t=this;null!=t._x&&([t._x,t._y]=s.project_xy(t._x,t._y)),null!=t._xs&&([t._xs,t._ys]=s.project_xsys(t._xs,t._ys))}}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}n.AnnotationView=_,_.__name__="AnnotationView";class a extends o.Renderer{constructor(t){super(t)}static init_Annotation(){this.override({level:"annotation"})}}n.Annotation=a,a.__name__="Annotation",a.init_Annotation()},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=n(1),o=r.__importDefault(n(38)),l=r.__importDefault(n(39)),c=n(24),i=new l.default("GOOGLE"),u=new l.default("WGS84"),a=o.default(u,i);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?a.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?a.inverse([n,t]):[NaN,NaN]};const s={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},f={lon:[-180,180],lat:[-85.06,85.06]},{min:_,max:p}=Math;function m(n,t){const r=_(n.length,t.length),o=new c.NumberArray(r),l=new c.NumberArray(r);return e.inplace.project_xy(n,t,o,l),[o,l]}e.clip_mercator=function(n,t,e){const[r,o]=s[e];return[p(n,r),_(t,o)]},e.in_bounds=function(n,t){const[e,r]=f[t];return e<n&&n<r},function(n){function t(n,t,r,o){const l=_(n.length,t.length);r=null!=r?r:n,o=null!=o?o:t;for(let c=0;c<l;c++){const l=n[c],i=t[c],[u,a]=e.wgs84_mercator.compute(l,i);r[c]=u,o[c]=a}}n.project_xy=t,n.project_xsys=function(n,e,r,o){const l=_(n.length,e.length);r=null!=r?r:n,o=null!=o?o:e;for(let c=0;c<l;c++)t(n[c],e[c],r[c],o[c])}}(e.inplace||(e.inplace={})),e.project_xy=m,e.project_xsys=function(n,t){const e=_(n.length,t.length),r=new Array(e),o=new Array(e);for(let l=0;l<e;l++){const[e,c]=m(n[l],t[l]);r[l]=e,o[l]=c}return[r,o]}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(1),o=r.__importDefault(e(39)),a=r.__importDefault(e(64));var i=o.default("WGS84");function c(e,n,t){var r,o,i;return Array.isArray(t)?(r=a.default(e,n,t)||{x:NaN,y:NaN},t.length>2?void 0!==e.name&&"geocent"===e.name||void 0!==n.name&&"geocent"===n.name?"number"==typeof r.z?[r.x,r.y,r.z].concat(t.splice(3)):[r.x,r.y,t[2]].concat(t.splice(3)):[r.x,r.y].concat(t.splice(2)):[r.x,r.y]):(o=a.default(e,n,t),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&"geocent"===e.name||void 0!==n.name&&"geocent"===n.name){if("x"===r||"y"===r||"z"===r)return}else if("x"===r||"y"===r)return;o[r]=t[r]})),o)}function u(e){return e instanceof o.default?e:e.oProj?e.oProj:o.default(e)}t.default=function(e,n,t){e=u(e);var r,o=!1;return void 0===n?(n=e,e=i,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=i,o=!0),n=u(n),t?c(e,n,t):(r={forward:function(t){return c(e,n,t)},inverse:function(t){return c(n,e,t)}},o&&(r.oProj=n),r)}},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),i=s.__importDefault(e(40)),u=s.__importDefault(e(51)),l=s.__importDefault(e(52)),o=e(60),r=s.__importDefault(e(62)),f=s.__importDefault(e(63)),d=s.__importDefault(e(47));function p(e,t){if(!(this instanceof p))return new p(e);t=t||function(e){if(e)throw e};var a=i.default(e);if("object"==typeof a){var s=p.projections.get(a.projName);if(s){if(a.datumCode&&"none"!==a.datumCode){var l=d.default(r.default,a.datumCode);l&&(a.datum_params=l.towgs84?l.towgs84.split(","):null,a.ellps=l.ellipse,a.datumName=l.datumName?l.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||"enu",a.ellps=a.ellps||"wgs84";var m=o.sphere(a.a,a.b,a.rf,a.ellps,a.sphere),n=o.eccentricity(m.a,m.b,m.rf,a.R_A),h=a.datum||f.default(a.datumCode,a.datum_params,m.a,m.b,n.es,n.ep2);u.default(this,a),u.default(this,s),this.a=m.a,this.b=m.b,this.rf=m.rf,this.sphere=m.sphere,this.es=n.es,this.e=n.e,this.ep2=n.ep2,this.datum=h,this.init(),t(null,this)}else t(e)}else t(e)}p.projections=l.default,p.projections.start(),a.default=p},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const u=t(1),n=u.__importDefault(t(41)),f=u.__importDefault(t(48)),i=u.__importDefault(t(43)),a=u.__importDefault(t(47));var o=["PROJECTEDCRS","PROJCRS","GEOGCS","GEOCCS","PROJCS","LOCAL_CS","GEODCRS","GEODETICCRS","GEODETICDATUM","ENGCRS","ENGINEERINGCRS"];var l=["3857","900913","3785","102113"];r.default=function(t){if(!function(t){return"string"==typeof t}(t))return t;if(function(t){return t in n.default}(t))return n.default[t];if(function(t){return o.some((function(e){return t.indexOf(e)>-1}))}(t)){var e=f.default(t);if(function(t){var e=a.default(t,"authority");if(e){var r=a.default(e,"epsg");return r&&l.indexOf(r)>-1}}(e))return n.default["EPSG:3857"];var r=function(t){var e=a.default(t,"extension");if(e)return a.default(e,"proj4")}(e);return r?i.default(r):e}return function(t){return"+"===t[0]}(t)?i.default(t):void 0}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=t(1),n=i.__importDefault(t(42)),f=i.__importDefault(t(43)),a=i.__importDefault(t(48));function l(t){var e=this;if(2===arguments.length){var r=arguments[1];"string"==typeof r?"+"===r.charAt(0)?l[t]=f.default(arguments[1]):l[t]=a.default(arguments[1]):l[t]=r}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?l.apply(e,t):l(t)}));if("string"==typeof t){if(t in l)return l[t]}else"EPSG"in t?l["EPSG:"+t.EPSG]=t:"ESRI"in t?l["ESRI:"+t.ESRI]=t:"IAU2000"in t?l["IAU2000:"+t.IAU2000]=t:console.log(t);return}}n.default(l),r.default=l},n function _(e,t,l){Object.defineProperty(l,"__esModule",{value:!0}),l.default=function(e){e("EPSG:4326","+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees"),e("EPSG:4269","+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees"),e("EPSG:3857","+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs"),e.WGS84=e["EPSG:4326"],e["EPSG:3785"]=e["EPSG:3857"],e.GOOGLE=e["EPSG:3857"],e["EPSG:900913"]=e["EPSG:3857"],e["EPSG:102113"]=e["EPSG:3857"]}},n function _(t,n,o){Object.defineProperty(o,"__esModule",{value:!0});const e=t(1),a=t(44),u=e.__importDefault(t(45)),r=e.__importDefault(t(46)),i=e.__importDefault(t(47));o.default=function(t){var n,o,e,f={},l=t.split("+").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split("=");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:"projName",datum:"datumCode",rf:function(t){f.rf=parseFloat(t)},lat_0:function(t){f.lat0=t*a.D2R},lat_1:function(t){f.lat1=t*a.D2R},lat_2:function(t){f.lat2=t*a.D2R},lat_ts:function(t){f.lat_ts=t*a.D2R},lon_0:function(t){f.long0=t*a.D2R},lon_1:function(t){f.long1=t*a.D2R},lon_2:function(t){f.long2=t*a.D2R},alpha:function(t){f.alpha=parseFloat(t)*a.D2R},lonc:function(t){f.longc=t*a.D2R},x_0:function(t){f.x0=parseFloat(t)},y_0:function(t){f.y0=parseFloat(t)},k_0:function(t){f.k0=parseFloat(t)},k:function(t){f.k0=parseFloat(t)},a:function(t){f.a=parseFloat(t)},b:function(t){f.b=parseFloat(t)},r_a:function(){f.R_A=!0},zone:function(t){f.zone=parseInt(t,10)},south:function(){f.utmSouth=!0},towgs84:function(t){f.datum_params=t.split(",").map((function(t){return parseFloat(t)}))},to_meter:function(t){f.to_meter=parseFloat(t)},units:function(t){f.units=t;var n=i.default(r.default,t);n&&(f.to_meter=n.to_meter)},from_greenwich:function(t){f.from_greenwich=t*a.D2R},pm:function(t){var n=i.default(u.default,t);f.from_greenwich=(n||parseFloat(t))*a.D2R},nadgrids:function(t){"@null"===t?f.datumCode="none":f.nadgrids=t},axis:function(t){3===t.length&&-1!=="ewnsud".indexOf(t.substr(0,1))&&-1!=="ewnsud".indexOf(t.substr(1,1))&&-1!=="ewnsud".indexOf(t.substr(2,1))&&(f.axis=t)}};for(n in l)o=l[n],n in c?"function"==typeof(e=c[n])?e(o):f[e]=o:f[n]=o;return"string"==typeof f.datumCode&&"WGS84"!==f.datumCode&&(f.datumCode=f.datumCode.toLowerCase()),f}},n function _(P,_,e){Object.defineProperty(e,"__esModule",{value:!0}),e.PJD_3PARAM=1,e.PJD_7PARAM=2,e.PJD_WGS84=4,e.PJD_NODATUM=5,e.SEC_TO_RAD=484813681109536e-20,e.HALF_PI=Math.PI/2,e.SIXTH=.16666666666666666,e.RA4=.04722222222222222,e.RA6=.022156084656084655,e.EPSLN=1e-10,e.D2R=.017453292519943295,e.R2D=57.29577951308232,e.FORTPI=Math.PI/4,e.TWO_PI=2*Math.PI,e.SPI=3.14159265359},n function _(e,o,r){Object.defineProperty(r,"__esModule",{value:!0});var a={};r.default=a,a.greenwich=0,a.lisbon=-9.131906111111,a.paris=2.337229166667,a.bogota=-74.080916666667,a.madrid=-3.687938888889,a.rome=12.452333333333,a.bern=7.439583333333,a.jakarta=106.807719444444,a.ferro=-17.666666666667,a.brussels=4.367975,a.stockholm=18.058277777778,a.athens=23.7163375,a.oslo=10.722916666667},n function _(e,t,f){Object.defineProperty(f,"__esModule",{value:!0}),f.default={ft:{to_meter:.3048},"us-ft":{to_meter:1200/3937}}},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});var o=/[\s_\-\/\(\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,""),f=-1;++f<a.length;)if((t=a[f]).toLowerCase().replace(o,"")===n)return e[t]}},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const o=e(1);const d=o.__importDefault(e(49)),r=e(50);function n(e){return.017453292519943295*e}a.default=function(e){var t=d.default(e),a=t.shift(),o=t.shift();t.unshift(["name",o]),t.unshift(["type",a]);var l={};return r.sExpr(t,l),function(e){if("GEOGCS"===e.type?e.projName="longlat":"LOCAL_CS"===e.type?(e.projName="identity",e.local=!0):"object"==typeof e.PROJECTION?e.projName=Object.keys(e.PROJECTION)[0]:e.projName=e.PROJECTION,e.AXIS){for(var t="",a=0,o=e.AXIS.length;a<o;++a){var d=e.AXIS[a][0].toLowerCase();-1!==d.indexOf("north")?t+="n":-1!==d.indexOf("south")?t+="s":-1!==d.indexOf("east")?t+="e":-1!==d.indexOf("west")&&(t+="w")}2===t.length&&(t+="u"),3===t.length&&(e.axis=t)}e.UNIT&&(e.units=e.UNIT.name.toLowerCase(),"metre"===e.units&&(e.units="meter"),e.UNIT.convert&&("GEOGCS"===e.type?e.DATUM&&e.DATUM.SPHEROID&&(e.to_meter=e.UNIT.convert*e.DATUM.SPHEROID.a):e.to_meter=e.UNIT.convert));var r=e.GEOGCS;function l(t){return t*(e.to_meter||1)}"GEOGCS"===e.type&&(r=e),r&&(r.DATUM?e.datumCode=r.DATUM.name.toLowerCase():e.datumCode=r.name.toLowerCase(),"d_"===e.datumCode.slice(0,2)&&(e.datumCode=e.datumCode.slice(2)),"new_zealand_geodetic_datum_1949"!==e.datumCode&&"new_zealand_1949"!==e.datumCode||(e.datumCode="nzgd49"),"wgs_1984"!==e.datumCode&&"world_geodetic_system_1984"!==e.datumCode||("Mercator_Auxiliary_Sphere"===e.PROJECTION&&(e.sphere=!0),e.datumCode="wgs84"),"_ferro"===e.datumCode.slice(-6)&&(e.datumCode=e.datumCode.slice(0,-6)),"_jakarta"===e.datumCode.slice(-8)&&(e.datumCode=e.datumCode.slice(0,-8)),~e.datumCode.indexOf("belge")&&(e.datumCode="rnb72"),r.DATUM&&r.DATUM.SPHEROID&&(e.ellps=r.DATUM.SPHEROID.name.replace("_19","").replace(/[Cc]larke\_18/,"clrk"),"international"===e.ellps.toLowerCase().slice(0,13)&&(e.ellps="intl"),e.a=r.DATUM.SPHEROID.a,e.rf=parseFloat(r.DATUM.SPHEROID.rf,10)),r.DATUM&&r.DATUM.TOWGS84&&(e.datum_params=r.DATUM.TOWGS84),~e.datumCode.indexOf("osgb_1936")&&(e.datumCode="osgb36"),~e.datumCode.indexOf("osni_1952")&&(e.datumCode="osni52"),(~e.datumCode.indexOf("tm65")||~e.datumCode.indexOf("geodetic_datum_of_1965"))&&(e.datumCode="ire65"),"ch1903+"===e.datumCode&&(e.datumCode="ch1903"),~e.datumCode.indexOf("israel")&&(e.datumCode="isr93")),e.b&&!isFinite(e.b)&&(e.b=e.a),[["standard_parallel_1","Standard_Parallel_1"],["standard_parallel_2","Standard_Parallel_2"],["false_easting","False_Easting"],["false_northing","False_Northing"],["central_meridian","Central_Meridian"],["latitude_of_origin","Latitude_Of_Origin"],["latitude_of_origin","Central_Parallel"],["scale_factor","Scale_Factor"],["k0","scale_factor"],["latitude_of_center","Latitude_Of_Center"],["latitude_of_center","Latitude_of_center"],["lat0","latitude_of_center",n],["longitude_of_center","Longitude_Of_Center"],["longitude_of_center","Longitude_of_center"],["longc","longitude_of_center",n],["x0","false_easting",l],["y0","false_northing",l],["long0","central_meridian",n],["lat0","latitude_of_origin",n],["lat0","standard_parallel_1",n],["lat1","standard_parallel_1",n],["lat2","standard_parallel_2",n],["azimuth","Azimuth"],["alpha","azimuth",n],["srsCode","name"]].forEach((function(t){return a=e,d=(o=t)[0],r=o[1],void(!(d in a)&&r in a&&(a[d]=a[r],3===o.length&&(a[d]=o[2](a[d]))));var a,o,d,r})),e.long0||!e.longc||"Albers_Conic_Equal_Area"!==e.projName&&"Lambert_Azimuthal_Equal_Area"!==e.projName||(e.long0=e.longc),e.lat_ts||!e.lat1||"Stereographic_South_Pole"!==e.projName&&"Polar Stereographic (variant B)"!==e.projName||(e.lat0=n(e.lat1>0?90:-90),e.lat_ts=e.lat1)}(l),l}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(t){return new a(t).output()};var i=/\s/,s=/[A-Za-z]/,h=/[A-Za-z84]/,o=/[,\]]/,n=/[\d\.E\-\+]/;function a(t){if("string"!=typeof t)throw new Error("not a string");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}a.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;i.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},a.prototype.afterquote=function(t){if(’"’===t)return this.word+=’"’,void(this.state=4);if(o.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error("havn’t handled \""+t+’" in afterquote yet, index ‘+this.place)},a.prototype.afterItem=function(t){return","===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):"]"===t?(this.level–,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},a.prototype.number=function(t){if(!n.test(t)){if(o.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error("havn’t handled \""+t+’" in number yet, index ‘+this.place)}this.word+=t},a.prototype.quoted=function(t){’"’!==t?this.word+=t:this.state=5},a.prototype.keyword=function(t){if(h.test(t))this.word+=t;else{if("["===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!o.test(t))throw new Error("havn’t handled \""+t+’" in keyword yet, index ‘+this.place);this.afterItem(t)}},a.prototype.neutral=function(t){if(s.test(t))return this.word=t,void(this.state=2);if(’"’===t)return this.word="",void(this.state=4);if(n.test(t))return this.word=t,void(this.state=3);if(!o.test(t))throw new Error("havn’t handled \""+t+’" in neutral yet, index ‘+this.place);this.afterItem(t)},a.prototype.output=function(){for(;this.place<this.text.length;)this.readCharicter();if(-1===this.state)return this.root;throw new Error(‘unable to parse string "’+this.text+’". State is ‘+this.state)}},n function _(e,r,a){function s(e,r,a){Array.isArray(r)&&(a.unshift(r),r=null);var s=r?{}:e,n=a.reduce((function(e,r){return c(r,e),e}),s);r&&(e[r]=n)}function c(e,r){if(Array.isArray(e)){var a=e.shift();if("PARAMETER"===a&&(a=e.shift()),1===e.length)return Array.isArray(e[0])?(r[a]={},void c(e[0],r[a])):void(r[a]=e[0]);if(e.length)if("TOWGS84"!==a){if("AXIS"===a)return a in r||(r[a]=[]),void r[a].push(e);var n;switch(Array.isArray(a)||(r[a]={}),a){case"UNIT":case"PRIMEM":case"VERT_DATUM":return r[a]={name:e[0].toLowerCase(),convert:e[1]},void(3===e.length&&c(e[2],r[a]));case"SPHEROID":case"ELLIPSOID":return r[a]={name:e[0],a:e[1],rf:e[2]},void(4===e.length&&c(e[3],r[a]));case"PROJECTEDCRS":case"PROJCRS":case"GEOGCS":case"GEOCCS":case"PROJCS":case"LOCAL_CS":case"GEODCRS":case"GEODETICCRS":case"GEODETICDATUM":case"EDATUM":case"ENGINEERINGDATUM":case"VERT_CS":case"VERTCRS":case"VERTICALCRS":case"COMPD_CS":case"COMPOUNDCRS":case"ENGINEERINGCRS":case"ENGCRS":case"FITTED_CS":case"LOCAL_DATUM":case"DATUM":return e[0]=["name",e[0]],void s(r,a,e);default:for(n=-1;++n<e.length;)if(!Array.isArray(e[n]))return c(e,r[a]);return s(r,a,e)}}else r[a]=e;else r[a]=!0}else r[e]=!0}Object.defineProperty(a,"__esModule",{value:!0}),a.sExpr=c},n function _(e,n,r){Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,n){var r,t;if(e=e||{},!n)return e;for(t in n)void 0!==(r=n[t])&&(e[t]=r);return e}},n function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const a=t(1),n=a.__importDefault(t(53)),r=a.__importDefault(t(59));var u=[n.default,r.default],f={},i=[];function d(t,e){var o=i.length;return t.names?(i[o]=t,t.names.forEach((function(t){f[t.toLowerCase()]=o})),this):(console.log(e),!0)}function c(t){if(!t)return!1;var e=t.toLowerCase();return void 0!==f[e]&&i[f[e]]?i[f[e]]:void 0}function l(){u.forEach(d)}o.add=d,o.get=c,o.start=l,o.default={start:l,add:d,get:c}},n function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const h=t(1),a=h.__importDefault(t(54)),e=h.__importDefault(t(55)),r=h.__importDefault(t(57)),n=h.__importDefault(t(58)),l=t(44);function u(){var t=this.b/this.a;this.es=1-t*t,"x0"in this||(this.x0=0),"y0"in this||(this.y0=0),this.e=Math.sqrt(this.es),this.lat_ts?this.sphere?this.k0=Math.cos(this.lat_ts):this.k0=a.default(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts)):this.k0||(this.k?this.k0=this.k:this.k0=1)}function o(t){var i,s,h=t.x,a=t.y;if(a*l.R2D>90&&a*l.R2D<-90&&h*l.R2D>180&&h*l.R2D<-180)return null;if(Math.abs(Math.abs(a)-l.HALF_PI)<=l.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(l.FORTPI+.5*a));else{var n=Math.sin(a),u=r.default(this.e,a,n);i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0-this.a*this.k0*Math.log(u)}return t.x=i,t.y=s,t}function f(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=l.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var r=Math.exp(-a/(this.a*this.k0));if(-9999===(s=n.default(this.e,r)))return null}return i=e.default(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=u,s.forward=o,s.inverse=f,s.names=["Mercator","Popular Visualisation Pseudo Mercator","Mercator_1SP","Mercator_Auxiliary_Sphere","merc"],s.default={init:u,forward:o,inverse:f,names:s.names}},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.default=function(e,t,n){var r=e*t;return n/Math.sqrt(1-r*r)}},n function _(e,t,u){Object.defineProperty(u,"__esModule",{value:!0});const n=e(1),a=e(44),f=n.__importDefault(e(56));u.default=function(e){return Math.abs(e)<=a.SPI?e:e-f.default(e)*a.TWO_PI}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return e<0?-1:1}},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const a=t(44);n.default=function(t,e,n){var o=t*n,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(a.HALF_PI-e))/o}},n function _(t,a,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(44);e.default=function(t,a){for(var e,r,o=.5*t,u=n.HALF_PI-2*Math.atan(a),f=0;f<=15;f++)if(e=t*Math.sin(u),u+=r=n.HALF_PI-2*Math.atan(a*Math.pow((1-e)/(1+e),o))-u,Math.abs(r)<=1e-10)return u;return-9999}},n function _(e,n,i){function t(){}function r(e){return e}Object.defineProperty(i,"__esModule",{value:!0}),i.init=t,i.forward=r,i.inverse=r,i.names=["longlat","identity"],i.default={init:t,forward:r,inverse:r,names:i.names}},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=e(1),n=e(44),f=a.__importStar(e(61)),u=a.__importDefault(e(47));r.eccentricity=function(e,t,r,a){var f=e*e,u=t*t,i=(f-u)/f,c=0;return a?(f=(e*=1-i*(n.SIXTH+i*(n.RA4+i*n.RA6)))*e,i=0):c=Math.sqrt(i),{es:i,e:c,ep2:(f-u)/u}},r.sphere=function(e,t,r,a,i){if(!e){var c=u.default(f.default,a);c||(c=f.WGS84),e=c.a,t=c.b,r=c.rf}return r&&!t&&(t=(1-1/r)*e),(0===r||Math.abs(e-t)<n.EPSLN)&&(i=!0,t=e),{a:e,b:t,rf:r,sphere:i}}},n function _(e,a,l){Object.defineProperty(l,"__esModule",{value:!0});var s={};l.default=s,s.MERIT={a:6378137,rf:298.257,ellipseName:"MERIT 1983"},s.SGS85={a:6378136,rf:298.257,ellipseName:"Soviet Geodetic System 85"},s.GRS80={a:6378137,rf:298.257222101,ellipseName:"GRS 1980(IUGG, 1980)"},s.IAU76={a:6378140,rf:298.257,ellipseName:"IAU 1976"},s.airy={a:6377563.396,b:6356256.91,ellipseName:"Airy 1830"},s.APL4={a:6378137,rf:298.25,ellipseName:"Appl. Physics. 1965"},s.NWL9D={a:6378145,rf:298.25,ellipseName:"Naval Weapons Lab., 1965"},s.mod_airy={a:6377340.189,b:6356034.446,ellipseName:"Modified Airy"},s.andrae={a:6377104.43,rf:300,ellipseName:"Andrae 1876 (Den., Iclnd.)"},s.aust_SA={a:6378160,rf:298.25,ellipseName:"Australian Natl & S. Amer. 1969"},s.GRS67={a:6378160,rf:298.247167427,ellipseName:"GRS 67(IUGG 1967)"},s.bessel={a:6377397.155,rf:299.1528128,ellipseName:"Bessel 1841"},s.bess_nam={a:6377483.865,rf:299.1528128,ellipseName:"Bessel 1841 (Namibia)"},s.clrk66={a:6378206.4,b:6356583.8,ellipseName:"Clarke 1866"},s.clrk80={a:6378249.145,rf:293.4663,ellipseName:"Clarke 1880 mod."},s.clrk58={a:6378293.645208759,rf:294.2606763692654,ellipseName:"Clarke 1858"},s.CPM={a:6375738.7,rf:334.29,ellipseName:"Comm. des Poids et Mesures 1799"},s.delmbr={a:6376428,rf:311.5,ellipseName:"Delambre 1810 (Belgium)"},s.engelis={a:6378136.05,rf:298.2566,ellipseName:"Engelis 1985"},s.evrst30={a:6377276.345,rf:300.8017,ellipseName:"Everest 1830"},s.evrst48={a:6377304.063,rf:300.8017,ellipseName:"Everest 1948"},s.evrst56={a:6377301.243,rf:300.8017,ellipseName:"Everest 1956"},s.evrst69={a:6377295.664,rf:300.8017,ellipseName:"Everest 1969"},s.evrstSS={a:6377298.556,rf:300.8017,ellipseName:"Everest (Sabah & Sarawak)"},s.fschr60={a:6378166,rf:298.3,ellipseName:"Fischer (Mercury Datum) 1960"},s.fschr60m={a:6378155,rf:298.3,ellipseName:"Fischer 1960"},s.fschr68={a:6378150,rf:298.3,ellipseName:"Fischer 1968"},s.helmert={a:6378200,rf:298.3,ellipseName:"Helmert 1906"},s.hough={a:6378270,rf:297,ellipseName:"Hough"},s.intl={a:6378388,rf:297,ellipseName:"International 1909 (Hayford)"},s.kaula={a:6378163,rf:298.24,ellipseName:"Kaula 1961"},s.lerch={a:6378139,rf:298.257,ellipseName:"Lerch 1979"},s.mprts={a:6397300,rf:191,ellipseName:"Maupertius 1738"},s.new_intl={a:6378157.5,b:6356772.2,ellipseName:"New International 1967"},s.plessis={a:6376523,rf:6355863,ellipseName:"Plessis 1817 (France)"},s.krass={a:6378245,rf:298.3,ellipseName:"Krassovsky, 1942"},s.SEasia={a:6378155,b:6356773.3205,ellipseName:"Southeast Asia"},s.walbeck={a:6376896,b:6355834.8467,ellipseName:"Walbeck"},s.WGS60={a:6378165,rf:298.3,ellipseName:"WGS 60"},s.WGS66={a:6378145,rf:298.25,ellipseName:"WGS 66"},s.WGS7={a:6378135,rf:298.26,ellipseName:"WGS 72"},l.WGS84=s.WGS84={a:6378137,rf:298.257223563,ellipseName:"WGS 84"},s.sphere={a:6370997,b:6370997,ellipseName:"Normal Sphere (r=6370997)"}},n function _(e,a,s){Object.defineProperty(s,"__esModule",{value:!0});var t={};s.default=t,t.wgs84={towgs84:"0,0,0",ellipse:"WGS84",datumName:"WGS84"},t.ch1903={towgs84:"674.374,15.056,405.346",ellipse:"bessel",datumName:"swiss"},t.ggrs87={towgs84:"-199.87,74.79,246.62",ellipse:"GRS80",datumName:"Greek_Geodetic_Reference_System_1987"},t.nad83={towgs84:"0,0,0",ellipse:"GRS80",datumName:"North_American_Datum_1983"},t.nad27={nadgrids:"@conus,@alaska,@ntv2_0.gsb,@ntv1_can.dat",ellipse:"clrk66",datumName:"North_American_Datum_1927"},t.potsdam={towgs84:"606.0,23.0,413.0",ellipse:"bessel",datumName:"Potsdam Rauenberg 1950 DHDN"},t.carthage={towgs84:"-263.0,6.0,431.0",ellipse:"clark80",datumName:"Carthage 1934 Tunisia"},t.hermannskogel={towgs84:"653.0,-212.0,449.0",ellipse:"bessel",datumName:"Hermannskogel"},t.osni52={towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"airy",datumName:"Irish National"},t.ire65={towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"mod_airy",datumName:"Ireland 1965"},t.rassadiran={towgs84:"-133.63,-157.5,-158.62",ellipse:"intl",datumName:"Rassadiran"},t.nzgd49={towgs84:"59.47,-5.04,187.44,0.47,-0.1,1.024,-4.5993",ellipse:"intl",datumName:"New Zealand Geodetic Datum 1949"},t.osgb36={towgs84:"446.448,-125.157,542.060,0.1502,0.2470,0.8421,-20.4894",ellipse:"airy",datumName:"Airy 1830"},t.s_jtsk={towgs84:"589,76,480",ellipse:"bessel",datumName:"S-JTSK (Ferro)"},t.beduaram={towgs84:"-106,-87,188",ellipse:"clrk80",datumName:"Beduaram"},t.gunung_segara={towgs84:"-403,684,41",ellipse:"bessel",datumName:"Gunung Segara Jakarta"},t.rnb72={towgs84:"106.869,-52.2978,103.724,-0.33657,0.456955,-1.84218,1",ellipse:"intl",datumName:"Reseau National Belge 1972"}},n function _(a,m,_){Object.defineProperty(_,"__esModule",{value:!0});const t=a(44);_.default=function(a,m,_,u,d,p){var r={};return r.datum_type=void 0===a||"none"===a?t.PJD_NODATUM:t.PJD_WGS84,m&&(r.datum_params=m.map(parseFloat),0===r.datum_params[0]&&0===r.datum_params[1]&&0===r.datum_params[2]||(r.datum_type=t.PJD_3PARAM),r.datum_params.length>3&&(0===r.datum_params[3]&&0===r.datum_params[4]&&0===r.datum_params[5]&&0===r.datum_params[6]||(r.datum_type=t.PJD_7PARAM,r.datum_params[3]*=t.SEC_TO_RAD,r.datum_params[4]*=t.SEC_TO_RAD,r.datum_params[5]*=t.SEC_TO_RAD,r.datum_params[6]=r.datum_params[6]/1e6+1))),r.a=_,r.b=u,r.es=d,r.ep2=p,r}},n function _(t,e,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t(1),u=t(44),m=r.__importDefault(t(65)),_=r.__importDefault(t(67)),o=r.__importDefault(t(39)),d=r.__importDefault(t(68)),f=r.__importDefault(t(69));a.default=function t(e,a,r){var n;if(Array.isArray(r)&&(r=d.default(r)),f.default(r),e.datum&&a.datum&&function(t,e){return(t.datum.datum_type===u.PJD_3PARAM||t.datum.datum_type===u.PJD_7PARAM)&&"WGS84"!==e.datumCode||(e.datum.datum_type===u.PJD_3PARAM||e.datum.datum_type===u.PJD_7PARAM)&&"WGS84"!==t.datumCode}(e,a)&&(r=t(e,n=new o.default("WGS84"),r),e=n),"enu"!==e.axis&&(r=_.default(e,!1,r)),"longlat"===e.projName)r={x:r.x*u.D2R,y:r.y*u.D2R,z:r.z||0};else if(e.to_meter&&(r={x:r.x*e.to_meter,y:r.y*e.to_meter,z:r.z||0}),!(r=e.inverse(r)))return;return e.from_greenwich&&(r.x+=e.from_greenwich),r=m.default(e.datum,a.datum,r),a.from_greenwich&&(r={x:r.x-a.from_greenwich,y:r.y,z:r.z||0}),"longlat"===a.projName?r={x:r.x*u.R2D,y:r.y*u.R2D,z:r.z||0}:(r=a.forward(r),a.to_meter&&(r={x:r.x/a.to_meter,y:r.y/a.to_meter,z:r.z||0})),"enu"!==a.axis?_.default(a,!0,r):r}},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const u=e(44),o=e(66);function _(e){return e===u.PJD_3PARAM||e===u.PJD_7PARAM}a.default=function(e,t,a){return o.compareDatums(e,t)||e.datum_type===u.PJD_NODATUM||t.datum_type===u.PJD_NODATUM?a:e.es!==t.es||e.a!==t.a||_(e.datum_type)||_(t.datum_type)?(a=o.geodeticToGeocentric(a,e.es,e.a),_(e.datum_type)&&(a=o.geocentricToWgs84(a,e.datum_type,e.datum_params)),_(t.datum_type)&&(a=o.geocentricFromWgs84(a,t.datum_type,t.datum_params)),o.geocentricToGeodetic(a,t.es,t.a,t.b)):a}},n function _(a,t,r){Object.defineProperty(r,"__esModule",{value:!0});const e=a(44);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===e.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==e.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,u,s,_,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-e.HALF_PI&&d>-1.001*e.HALF_PI)d=-e.HALF_PI;else if(d>e.HALF_PI&&d<1.001*e.HALF_PI)d=e.HALF_PI;else{if(d<-e.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>e.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),u=Math.sin(d),_=Math.cos(d),s=u*u,{x:((m=r/Math.sqrt(1-t*s))+i)*_*Math.cos(n),y:(m+i)*_*Math.sin(n),z:(m*(1-t)+i)*u}},r.geocentricToGeodetic=function(a,t,r,m){var u,s,_,n,d,i,p,P,o,y,M,z,c,A,x,f=a.x,h=a.y,I=a.z?a.z:0;if(u=Math.sqrt(f*f+h*h),s=Math.sqrt(f*f+h*h+I*I),u/r<1e-12){if(A=0,s/r<1e-12)return e.HALF_PI,x=-m,{x:a.x,y:a.y,z:a.z}}else A=Math.atan2(h,f);_=I/s,P=(n=u/s)*(1-t)*(d=1/Math.sqrt(1-t*(2-t)*n*n)),o=_*d,c=0;do{c++,i=t*(p=r/Math.sqrt(1-t*o*o))/(p+(x=u*P+I*o-p*(1-t*o*o))),z=(M=_*(d=1/Math.sqrt(1-i*(2-i)*n*n)))*P-(y=n*(1-i)*d)*o,P=y,o=M}while(z*z>1e-24&&c<30);return{x:A,y:Math.atan(M/Math.abs(y)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-_*a.z)+u,z:i*(-n*a.x+_*a.y+a.z)+s}}},r.geocentricFromWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-u)/i,o=(a.z-s)/i;return{x:p+d*P-n*o,y:-d*p+P+_*o,z:n*p-_*P+o}}}},n function _(e,a,i){Object.defineProperty(i,"__esModule",{value:!0}),i.default=function(e,a,i){var s,n,r,c=i.x,d=i.y,u=i.z||0,f={};for(r=0;r<3;r++)if(!a||2!==r||void 0!==i.z)switch(0===r?(s=c,n=-1!=="ew".indexOf(e.axis[r])?"x":"y"):1===r?(s=d,n=-1!=="ns".indexOf(e.axis[r])?"y":"x"):(s=u,n="z"),e.axis[r]){case"e":case"w":case"n":case"s":f[n]=s;break;case"u":void 0!==i[n]&&(f.z=s);break;case"d":void 0!==i[n]&&(f.z=-s);break;default:return null}return f}},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var n={x:e[0],y:e[1]};return e.length>2&&(n.z=e[2]),e.length>3&&(n.m=e[3]),n}},n function _(e,i,n){function t(e){if("function"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError("coordinates must be finite numbers")}if("number"!=typeof e||e!=e||!isFinite(e))throw new TypeError("coordinates must be finite numbers")}Object.defineProperty(n,"__esModule",{value:!0}),n.default=function(e){t(e.x),t(e.y)}},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),r=e(71),s=n.__importStar(e(74)),_=n.__importStar(e(18)),a=e(81),o=e(82);class l extends r.View{get coordinates(){return this._coordinates}initialize(){super.initialize(),this.visuals=new s.Visuals(this.model),this.needs_webgl_blit=!1,this._initialize_coordinates()}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],()=>this._initialize_coordinates())}_initialize_coordinates(){const{x_range_name:e,y_range_name:i}=this.model,{frame:t}=this.plot_view,n=t.x_scales.get(e),r=t.y_scales.get(i);this._coordinates=new o.CoordinateTransform(n,r)}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.plot_view.canvas_view;return"overlay"==this.model.level?e:i}request_render(){this.plot_view.request_render()}notify_finished(){this.plot_view.notify_finished()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}}t.RendererView=l,l.__name__="RendererView";class d extends a.Model{constructor(e){super(e)}static init_Renderer(){this.define({level:[_.RenderLevel],visible:[_.Boolean,!0],x_range_name:[_.String,"default"],y_range_name:[_.String,"default"]})}}t.Renderer=d,d.__name__="Renderer",d.init_Renderer()},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),r=t(15),n=t(72),o=t(8),h=i.__importDefault(t(73));class a{constructor(t){if(this.removed=new r.Signal0(this,"removed"),this._ready=Promise.resolve(void 0),null==t.model)throw new Error("model of a view wasn’t configured");this.model=t.model,this._parent=t.parent}get ready(){return this._ready}connect(t,e){return t.connect((t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then(()=>i)},this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=n.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this._parent=void 0,this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get parent(){if(void 0!==this._parent)return this._parent;throw new Error("parent of a view wasn’t configured")}get is_root(){return null===this.parent}get root(){return this.is_root?this:this.parent.root}assert_root(){if(!this.is_root)throw new Error(this.toString()+" is not a root layout")}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){r.Signal.disconnectReceiver(this)}on_change(t,e){for(const s of o.isArray(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[h.default]}}s.View=a,a.__name__="View"},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(8),o=t(13),s=t=>(e={},…n)=>{const s=document.createElement(t);s.classList.add("bk");for(let[t,n]of o.entries(e))if(null!=n&&(!i.isBoolean(n)||n))if("class"===t&&(i.isString(n)&&(n=n.split(/\s+/)),i.isArray(n)))for(const t of n)null!=t&&s.classList.add(t);else if("style"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.style[t]=e;else if("data"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.dataset[t]=e;else s.setAttribute(t,n);function l(t){if(i.isString(t))s.appendChild(document.createTextNode(t));else if(t instanceof Node)s.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)s.appendChild(e);else if(null!=t&&!1!==t)throw new Error("expected a DOM element, string, false or null, got "+JSON.stringify(t))}for(const t of n)if(i.isArray(t))for(const e of t)l(e);else l(t);return s};function l(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function r(t,…e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function a(t,e){const n=Element.prototype;return(n.matches||n.webkitMatchesSelector||n.mozMatchesSelector||n.msMatchesSelector).call(t,e)}function c(t){return parseFloat(t)||0}function h(t){const e=getComputedStyle(t);return{border:{top:c(e.borderTopWidth),bottom:c(e.borderBottomWidth),left:c(e.borderLeftWidth),right:c(e.borderRightWidth)},margin:{top:c(e.marginTop),bottom:c(e.marginBottom),left:c(e.marginLeft),right:c(e.marginRight)},padding:{top:c(e.paddingTop),bottom:c(e.paddingBottom),left:c(e.paddingLeft),right:c(e.paddingRight)}}}function d(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,…n){return s(t)(e,…n)},n.div=s("div"),n.span=s("span"),n.canvas=s("canvas"),n.link=s("link"),n.style=s("style"),n.a=s("a"),n.p=s("p"),n.i=s("i"),n.pre=s("pre"),n.button=s("button"),n.label=s("label"),n.input=s("input"),n.select=s("select"),n.option=s("option"),n.optgroup=s("optgroup"),n.textarea=s("textarea"),n.nbsp=function(){return document.createTextNode(" ")},n.append=function(t,…e){for(const n of e)t.appendChild(n)},n.remove=l,n.removeElement=l,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=r,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=""},n.undisplay=function(t){t.style.display="none"},n.show=function(t){t.style.visibility=""},n.hide=function(t){t.style.visibility="hidden"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=a,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(a(n,e))return n;return null},n.extents=h,n.size=d,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=h(t),{width:s,height:l}=d(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=h(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=e.x+"px",i.top=e.y+"px",i.width=e.width+"px",i.height=e.height+"px",null==n)i.margin="";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class f{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e<this.classList.length;e++){const n=this.classList.item(e);null!=n&&t.push(n)}return t}has(t){return this.classList.contains(t)}add(…t){for(const e of t)this.classList.add(e);return this}remove(…t){for(const e of t)this.classList.remove(e);return this}clear(){for(const t of this.values)"bk"!=t&&this.classList.remove(t);return this}toggle(t,e){return(null!=e?e:!this.has(t))?this.add(t):this.remove(t),this}}var u;function p(t,e,n){const{width:i,height:o,position:s,display:l}=t.style;t.style.position="absolute",t.style.display="",t.style.width=null!=e.width&&e.width!=1/0?e.width+"px":"auto",t.style.height=null!=e.height&&e.height!=1/0?e.height+"px":"auto";try{return n()}finally{t.style.position=s,t.style.display=l,t.style.width=i,t.style.height=o}}n.ClassList=f,f.__name__="ClassList",n.classes=function(t){return new f(t)},n.toggle_attribute=function(t,e,n){null==n&&(n=!t.hasAttribute(e)),n?t.setAttribute(e,"true"):t.removeAttribute(e)},(u=n.Keys||(n.Keys={}))[u.Backspace=8]="Backspace",u[u.Tab=9]="Tab",u[u.Enter=13]="Enter",u[u.Esc=27]="Esc",u[u.PageUp=33]="PageUp",u[u.PageDown=34]="PageDown",u[u.Left=37]="Left",u[u.Up=38]="Up",u[u.Right=39]="Right",u[u.Down=40]="Down",u[u.Delete=46]="Delete",n.undisplayed=function(t,e){const{display:n}=t.style;t.style.display="none";try{return e()}finally{t.style.display=n}},n.unsized=function(t,e){return p(t,{},e)},n.sized=p;class g{constructor(t){this.root=t,this.known=new Set,this.style=n.style({type:"text/css"}),r(t,this.style)}append(t){this.known.has(t)||(this.style.appendChild(document.createTextNode(t)),this.known.add(t))}}n.StyleSheet=g,g.__name__="StyleSheet",n.stylesheet=new g(document.head)},n function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default="\n.bk-root {\n position: relative;\n width: auto;\n height: auto;\n z-index: 0;\n box-sizing: border-box;\n font-family: Helvetica, Arial, sans-serif;\n font-size: 13px;\n}\n.bk-root .bk,\n.bk-root .bk:before,\n.bk-root .bk:after {\n box-sizing: inherit;\n margin: 0;\n border: 0;\n padding: 0;\n background-image: none;\n font-family: inherit;\n font-size: 100%;\n line-height: 1.42857143;\n}\n.bk-root pre.bk {\n font-family: Courier, monospace;\n}\n"},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),l=s.__importStar(e(28)),c=s.__importStar(e(18)),i=e(22),o=e(8),r=e(75),h=e(77);function n(e,t){const[a,s,l,c]=o.isString(e)?i.color2rgba(e):i.decode_rgba(e);return`rgba(${255*a}, ${255*s}, ${255*l}, ${1==c?t:c})`}function _(e,t,a){e.moveTo(0,a+.5),e.lineTo(t,a+.5),e.stroke()}function u(e,t,a){e.moveTo(a+.5,0),e.lineTo(a+.5,t),e.stroke()}function v(e,t){e.moveTo(0,t),e.lineTo(t,0),e.stroke(),e.moveTo(0,0),e.lineTo(t,t),e.stroke()}a.hatch_aliases={" ":"blank",".":"dot",o:"ring","-":"horizontal_line","|\":\"vertical_line\",\"+\":\"cross\",'\"':\"horizontal_dash\",\":\":\"vertical_dash\",\"@\":\"spiral\",\"/\":\"right_diagonal_line\",\"\\\\\":\"left_diagonal_line\",x:\"diagonal_cross\",\",\":\"right_diagonal_dash\",\"`\":\"left_diagonal_dash\",v:\"horizontal_wave\",\">\":\"vertical_wave\",\"*\":\"criss_cross\"};class p{constructor(e,t=\"\"){this.obj=e,this.prefix=t,this.cache={};for(const a of this.attrs)this[a]=e.properties[t+a]}warm_cache(e,t){for(const a of this.attrs){const s=this.obj.properties[this.prefix+a];if(void 0!==s.spec.value)this.cache[a]=s.spec.value;else{if(!(null!=e&&s instanceof c.VectorSpec))throw new Error(\"source is required with a vectorized visual property\");{const l=s.array(e),c=null!=t?t.select(l):l;this.cache[a+\"_array\"]=c}}}}cache_select(e,t){const a=this.obj.properties[this.prefix+e];let s;return void 0!==a.spec.value?this.cache[e]=s=a.spec.value:this.cache[e]=s=this.cache[e+\"_array\"][t],s}get_array(e){return this.cache[e+\"_array\"]}set_vectorize(e,t){this._set_vectorize(e,t)}}a.ContextProperties=p,p.__name__=\"ContextProperties\";class f extends p{set_value(e){const t=this.line_color.value(),a=this.line_alpha.value();e.strokeStyle=n(t,a),e.lineWidth=this.line_width.value(),e.lineJoin=this.line_join.value(),e.lineCap=this.line_cap.value(),e.lineDash=this.line_dash.value(),e.lineDashOffset=this.line_dash_offset.value()}get doit(){return!(null===this.line_color.spec.value||0==this.line_alpha.spec.value||0==this.line_width.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"line_color\",t),s=this.cache_select(\"line_alpha\",t),l=this.cache_select(\"line_width\",t),c=this.cache_select(\"line_join\",t),i=this.cache_select(\"line_cap\",t),o=this.cache_select(\"line_dash\",t),r=this.cache_select(\"line_dash_offset\",t);e.strokeStyle=n(a,s),e.lineWidth=l,e.lineJoin=c,e.lineCap=i,e.lineDash=o,e.lineDashOffset=r}color_value(){return n(this.line_color.value(),this.line_alpha.value())}}a.Line=f,f.__name__=\"Line\",f.prototype.attrs=Object.keys(l.LineVector);class d extends p{set_value(e){const t=this.fill_color.value(),a=this.fill_alpha.value();e.fillStyle=n(t,a)}get doit(){return!(null===this.fill_color.spec.value||0==this.fill_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"fill_color\",t),s=this.cache_select(\"fill_alpha\",t);e.fillStyle=n(a,s)}color_value(){return n(this.fill_color.value(),this.fill_alpha.value())}}a.Fill=d,d.__name__=\"Fill\",d.prototype.attrs=Object.keys(l.FillVector);class k extends p{cache_select(e,t){let s;if(\"pattern\"==e){const e=this.cache_select(\"hatch_color\",t),s=this.cache_select(\"hatch_alpha\",t),l=this.cache_select(\"hatch_scale\",t),c=this.cache_select(\"hatch_pattern\",t),i=this.cache_select(\"hatch_weight\",t),{hatch_extra:o}=this.cache;if(null!=o&&o.hasOwnProperty(c)){const t=o[c];this.cache.pattern=t.get_pattern(e,s,l,i)}else this.cache.pattern=t=>{const o=t instanceof r.SVGRenderingContext2D?\"svg\":\"canvas\",p=new h.CanvasLayer(o,!0);return p.resize(l,l),p.prepare(),function(e,t,s,l,c,i){var o;const r=c,h=r/2,p=h/2;switch(e.strokeStyle=n(s,l),e.lineCap=\"square\",e.fillStyle=s,e.lineWidth=i,null!==(o=a.hatch_aliases[t])&&void 0!==o?o:t){case\"blank\":break;case\"dot\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":_(e,r,h);break;case\"vertical_line\":u(e,r,h);break;case\"cross\":_(e,r,h),u(e,r,h);break;case\"horizontal_dash\":_(e,h,h);break;case\"vertical_dash\":u(e,h,h);break;case\"spiral\":{const t=r/30;e.moveTo(h,h);for(let a=0;a<360;a++){const s=.1*a,l=h+t*s*Math.cos(s),c=h+t*s*Math.sin(s);e.lineTo(l,c)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-p,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(5*p+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(p+.5,r),e.lineTo(.5-p,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(5*p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":v(e,r);break;case\"right_diagonal_dash\":e.moveTo(p+.5,3*p+.5),e.lineTo(3*p+.5,p+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(p+.5,p+.5),e.lineTo(3*p+.5,3*p+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,p),e.lineTo(h,3*p),e.lineTo(r,p),e.stroke();break;case\"vertical_wave\":e.moveTo(p,0),e.lineTo(3*p,h),e.lineTo(p,r),e.stroke();break;case\"criss_cross\":v(e,r),_(e,r,h),u(e,r,h)}}(p.ctx,c,e,s,l,i),t.createPattern(p.canvas,\"repeat\")}}else s=super.cache_select(e,t);return s}_try_defer(e){const{hatch_pattern:t,hatch_extra:a}=this.cache;if(null!=a&&a.hasOwnProperty(t)){a[t].onload(e)}}get doit(){return!(null===this.hatch_color.spec.value||0==this.hatch_alpha.spec.value||" "==this.hatch_pattern.spec.value||"blank"==this.hatch_pattern.spec.value||null===this.hatch_pattern.spec.value)}doit2(e,t,a,s){if(!this.doit)return;this.cache_select("pattern",t);null==this.cache.pattern(e)?this._try_defer(s):(this.set_vectorize(e,t),a())}_set_vectorize(e,t){this.cache_select("pattern",t),e.fillStyle=this.cache.pattern(e)}color_value(){return n(this.hatch_color.value(),this.hatch_alpha.value())}}a.Hatch=k,k.__name__="Hatch",k.prototype.attrs=Object.keys(l.HatchVector);class x extends p{color_value(){return n(this.text_color.value(),this.text_alpha.value())}font_value(){const e=this.text_font.value(),t=this.text_font_size.value();return`${this.text_font_style.value()} ${t} ${e}`}v_font_value(e){super.cache_select("text_font_style",e),super.cache_select("text_font_size",e),super.cache_select("text_font",e);const{text_font_style:t,text_font_size:a,text_font:s}=this.cache;return`${t} ${a} ${s}`}cache_select(e,t){let a;return"font"==e?this.cache.font=a=this.v_font_value(t):a=super.cache_select(e,t),a}set_value(e){const t=this.text_color.value(),a=this.text_alpha.value();e.fillStyle=n(t,a),e.font=this.font_value(),e.textAlign=this.text_align.value(),e.textBaseline=this.text_baseline.value()}get doit(){return!(null===this.text_color.spec.value||0==this.text_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select("text_color",t),s=this.cache_select("text_alpha",t),l=this.cache_select("font",t),c=this.cache_select("text_align",t),i=this.cache_select("text_baseline",t);e.fillStyle=n(a,s),e.font=l,e.textAlign=c,e.textBaseline=i}}a.Text=x,x.__name__="Text",x.prototype.attrs=Object.keys(l.TextVector);class b{constructor(e){for(const t of e._mixins){const[a,s=""]=t.split(":");let l;switch(a){case"line":l=f;break;case"fill":l=d;break;case"hatch":l=k;break;case"text":l=x;break;default:throw new Error("unknown visual: "+a)}this[s+a]=new l(e,s)}}warm_cache(e,t){for(const a in this)if(this.hasOwnProperty(a)){const s=this[a];s instanceof p&&s.warm_cache(e,t)}}}a.Visuals=b,b.__name__="Visuals"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(76),n=t(8),r=t(72);function a(t){if(!t)throw new Error("cannot create a random attribute name for an undefined object");const e="ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";let i="";do{i="";for(let t=0;t<12;t++)i+=e[Math.floor(Math.random()*e.length)]}while(t[i]);return i}function o(t){const e={left:"start",right:"end",center:"middle",start:"start",end:"end"};return e[t]||e.start}function l(t){const e={alphabetic:"alphabetic",hanging:"hanging",top:"text-before-edge",bottom:"text-after-edge",middle:"central"};return e[t]||e.alphabetic}const h=function(t,e){const i=new Map,s=t.split(",");e=e||10;for(let t=0;t<s.length;t+=2){const n="&"+s[t+1]+";",r=parseInt(s[t],e);i.set(n,"&#"+r+";")}return i.set("\\xa0"," "),i}("50,nbsp,51,iexcl,52,cent,53,pound,54,curren,55,yen,56,brvbar,57,sect,58,uml,59,copy,5a,ordf,5b,laquo,5c,not,5d,shy,5e,reg,5f,macr,5g,deg,5h,plusmn,5i,sup2,5j,sup3,5k,acute,5l,micro,5m,para,5n,middot,5o,cedil,5p,sup1,5q,ordm,5r,raquo,5s,frac14,5t,frac12,5u,frac34,5v,iquest,60,Agrave,61,Aacute,62,Acirc,63,Atilde,64,Auml,65,Aring,66,AElig,67,Ccedil,68,Egrave,69,Eacute,6a,Ecirc,6b,Euml,6c,Igrave,6d,Iacute,6e,Icirc,6f,Iuml,6g,ETH,6h,Ntilde,6i,Ograve,6j,Oacute,6k,Ocirc,6l,Otilde,6m,Ouml,6n,times,6o,Oslash,6p,Ugrave,6q,Uacute,6r,Ucirc,6s,Uuml,6t,Yacute,6u,THORN,6v,szlig,70,agrave,71,aacute,72,acirc,73,atilde,74,auml,75,aring,76,aelig,77,ccedil,78,egrave,79,eacute,7a,ecirc,7b,euml,7c,igrave,7d,iacute,7e,icirc,7f,iuml,7g,eth,7h,ntilde,7i,ograve,7j,oacute,7k,ocirc,7l,otilde,7m,ouml,7n,divide,7o,oslash,7p,ugrave,7q,uacute,7r,ucirc,7s,uuml,7t,yacute,7u,thorn,7v,yuml,ci,fnof,sh,Alpha,si,Beta,sj,Gamma,sk,Delta,sl,Epsilon,sm,Zeta,sn,Eta,so,Theta,sp,Iota,sq,Kappa,sr,Lambda,ss,Mu,st,Nu,su,Xi,sv,Omicron,t0,Pi,t1,Rho,t3,Sigma,t4,Tau,t5,Upsilon,t6,Phi,t7,Chi,t8,Psi,t9,Omega,th,alpha,ti,beta,tj,gamma,tk,delta,tl,epsilon,tm,zeta,tn,eta,to,theta,tp,iota,tq,kappa,tr,lambda,ts,mu,tt,nu,tu,xi,tv,omicron,u0,pi,u1,rho,u2,sigmaf,u3,sigma,u4,tau,u5,upsilon,u6,phi,u7,chi,u8,psi,u9,omega,uh,thetasym,ui,upsih,um,piv,812,bull,816,hellip,81i,prime,81j,Prime,81u,oline,824,frasl,88o,weierp,88h,image,88s,real,892,trade,89l,alefsym,8cg,larr,8ch,uarr,8ci,rarr,8cj,darr,8ck,harr,8dl,crarr,8eg,lArr,8eh,uArr,8ei,rArr,8ej,dArr,8ek,hArr,8g0,forall,8g2,part,8g3,exist,8g5,empty,8g7,nabla,8g8,isin,8g9,notin,8gb,ni,8gf,prod,8gh,sum,8gi,minus,8gn,lowast,8gq,radic,8gt,prop,8gu,infin,8h0,ang,8h7,and,8h8,or,8h9,cap,8ha,cup,8hb,int,8hk,there4,8hs,sim,8i5,cong,8i8,asymp,8j0,ne,8j1,equiv,8j4,le,8j5,ge,8k2,sub,8k3,sup,8k4,nsub,8k6,sube,8k7,supe,8kl,oplus,8kn,otimes,8l5,perp,8m5,sdot,8o8,lceil,8o9,rceil,8oa,lfloor,8ob,rfloor,8p9,lang,8pa,rang,9ea,loz,9j0,spades,9j3,clubs,9j5,hearts,9j6,diams,ai,OElig,aj,oelig,b0,Scaron,b1,scaron,bo,Yuml,m6,circ,ms,tilde,802,ensp,803,emsp,809,thinsp,80c,zwnj,80d,zwj,80e,lrm,80f,rlm,80j,ndash,80k,mdash,80o,lsquo,80p,rsquo,80q,sbquo,80s,ldquo,80t,rdquo,80u,bdquo,810,dagger,811,Dagger,81g,permil,81p,lsaquo,81q,rsaquo,85c,euro",32),c={strokeStyle:{svgAttr:"stroke",canvas:"#000000",svg:"none",apply:"stroke"},fillStyle:{svgAttr:"fill",canvas:"#000000",svg:null,apply:"fill"},lineCap:{svgAttr:"stroke-linecap",canvas:"butt",svg:"butt",apply:"stroke"},lineJoin:{svgAttr:"stroke-linejoin",canvas:"miter",svg:"miter",apply:"stroke"},miterLimit:{svgAttr:"stroke-miterlimit",canvas:10,svg:4,apply:"stroke"},lineWidth:{svgAttr:"stroke-width",canvas:1,svg:1,apply:"stroke"},globalAlpha:{svgAttr:"opacity",canvas:1,svg:1,apply:"fill stroke"},font:{canvas:"10px sans-serif"},shadowColor:{canvas:"#000000"},shadowOffsetX:{canvas:0},shadowOffsetY:{canvas:0},shadowBlur:{canvas:0},textAlign:{canvas:"start"},textBaseline:{canvas:"alphabetic"},lineDash:{svgAttr:"stroke-dasharray",canvas:[],svg:null,apply:"stroke"}};class _{constructor(t,e){this.__root=t,this.__ctx=e}addColorStop(t,e){const i=this.__ctx.__createElement("stop");if(i.setAttribute("offset",""+t),-1!==e.indexOf("rgba")){const t=/rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?\.?\d*)\s*\)/gi.exec(e),[,s,n,r,a]=t;i.setAttribute("stop-color",`rgb(${s},${n},${r})`),i.setAttribute("stop-opacity",a)}else i.setAttribute("stop-color",e);this.__root.appendChild(i)}}_.__name__="CanvasGradient";class u{constructor(t,e){this.__root=t,this.__ctx=e}}u.__name__="CanvasPattern";class p{constructor(t){var e,i,n;this.__currentPosition=null,this.__currentElementsToStyle=null,this._transform=new s.AffineTransform,this._clip_path=null,this.__document=null!==(e=null==t?void 0:t.document)&&void 0!==e?e:document,(null==t?void 0:t.ctx)?this.__ctx=t.ctx:(this.__canvas=this.__document.createElement("canvas"),this.__ctx=this.__canvas.getContext("2d")),this.__setDefaultStyles(),this.__stack=[],this.__root=this.__document.createElementNS("http://www.w3.org/2000/svg","svg"),this.__root.setAttribute("version","1.1"),this.__root.setAttribute("xmlns","http://www.w3.org/2000/svg"),this.__root.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:xlink","http://www.w3.org/1999/xlink"),this.width=null!==(i=null==t?void 0:t.width)&&void 0!==i?i:500,this.height=null!==(n=null==t?void 0:t.height)&&void 0!==n?n:500,this.__ids={},this.__defs=this.__document.createElementNS("http://www.w3.org/2000/svg","defs"),this.__root.appendChild(this.__defs)}get canvas(){return this}get width(){return this._width}set width(t){this._width=t,this.__root.setAttribute("width",""+t)}get height(){return this._height}set height(t){this._height=t,this.__root.setAttribute("height",""+t)}__createElement(t,e={},i=!1){const s=this.__document.createElementNS("http://www.w3.org/2000/svg",t);i&&(s.setAttribute("fill","none"),s.setAttribute("stroke","none"));const n=Object.keys(e);for(const t of n)s.setAttribute(t,""+e[t]);return s}__setDefaultStyles(){const t=Object.keys(c),e=this;for(let i=0;i<t.length;i++){const s=t[i];e[s]=c[s].canvas}}__applyStyleState(t){const e=Object.keys(t),i=this;for(let s=0;s<e.length;s++){const n=e[s];i[n]=t[n]}}__getStyleState(){const t=Object.keys(c),e={};for(let i=0;i<t.length;i++){const s=t[i];e[s]=this[s]}return e}__applyStyleToCurrentElement(t){let e=this.__currentElement;const i=this.__currentElementsToStyle;if(null!=i){e.setAttribute(t,""),e=i.element;for(const e of i.children)e.setAttribute(t,"")}const s=Object.keys(c);for(let i=0;i<s.length;i++){const r=c[s[i]],a=this[s[i]];if(r.apply)if(a instanceof u){for(const t of[…a.__ctx.__defs.childNodes])if(t instanceof Element){const e=t.getAttribute("id");this.__ids[e]=e,this.__defs.appendChild(t)}const t=a.__root.getAttribute("id");e.setAttribute(r.apply,`url(#${t})`)}else if(a instanceof _){const t=a.__root.getAttribute("id");e.setAttribute(r.apply,`url(#${t})`)}else if(-1!==r.apply.indexOf(t)&&r.svg!==a)if("stroke"!==r.svgAttr&&"fill"!==r.svgAttr||!n.isString(a)||-1===a.indexOf("rgba")){let n=r.svgAttr;if("globalAlpha"===s[i]&&(n=t+"-"+r.svgAttr,e.getAttribute(n)))continue;e.setAttribute(n,""+a)}else{const t=/rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?\.?\d*)\s*\)/gi.exec(a),[,i,s,n,o]=t;e.setAttribute(r.svgAttr,`rgb(${i},${s},${n})`);let l=parseFloat(o);const h=this.globalAlpha;null!=h&&(l*=h),e.setAttribute(r.svgAttr+"-opacity",""+l)}}}get_serialized_svg(t=!1){let e=(new XMLSerializer).serializeToString(this.__root);if(/xmlns="http:\/\/www\.w3\.org\/2000\/svg".+xmlns="http:\/\/www\.w3\.org\/2000\/svg/gi.test(e)&&(e=e.replace(‘xmlns="http://www.w3.org/2000/svg’,’xmlns:xlink="http://www.w3.org/1999/xlink’)),t)for(const[t,i]of h){const s=new RegExp(t,"gi");s.test(e)&&(e=e.replace(s,i))}return e}get_svg(){return this.__root}save(){this.__stack.push({transform:this._transform,clip_path:this._clip_path,attributes:this.__getStyleState()}),this._transform=this._transform.clone()}restore(){if(0==this.__stack.length)return;const{transform:t,clip_path:e,attributes:i}=this.__stack.pop();this._transform=t,this._clip_path=e,this.__applyStyleState(i)}_apply_transform(t,e=this._transform){e.is_identity||t.setAttribute("transform",e.toString())}scale(t,e){isFinite(t)&&(null==e||isFinite(e))&&this._transform.scale(t,null!=e?e:t)}rotate(t){isFinite(t)&&this._transform.rotate(t)}translate(t,e){isFinite(t+e)&&this._transform.translate(t,e)}transform(t,e,i,s,n,r){isFinite(t+e+i+s+n+r)&&this._transform.transform(t,e,i,s,n,r)}beginPath(){this.__currentDefaultPath="",this.__currentPosition=null;const t=this.__createElement("path",{},!0);this.__root.appendChild(t),this.__currentElement=t}__applyCurrentDefaultPath(){const t=this.__currentElement;"path"===t.nodeName?t.setAttribute("d",this.__currentDefaultPath):console.error("Attempted to apply path command to node",t.nodeName)}__addPathCommand(t,e,i){const s=this.__currentDefaultPath?" ":"";this.__currentDefaultPath+=s+i,this.__currentPosition={x:t,y:e}}get _hasCurrentDefaultPath(){return!!this.__currentDefaultPath}moveTo(t,e){if(!isFinite(t+e))return;"path"!==this.__currentElement.nodeName&&this.beginPath();const[i,s]=this._transform.apply(t,e);this.__addPathCommand(i,s,`M ${i} ${s}`)}closePath(){this._hasCurrentDefaultPath&&this.__addPathCommand(NaN,NaN,"Z")}lineTo(t,e){if(isFinite(t+e))if(this._hasCurrentDefaultPath){const[i,s]=this._transform.apply(t,e);this.__addPathCommand(i,s,`L ${i} ${s}`)}else this.moveTo(t,e)}bezierCurveTo(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))return;const[a,o]=this._transform.apply(n,r),[l,h]=this._transform.apply(t,e),[c,_]=this._transform.apply(i,s);this.__addPathCommand(a,o,`C ${l} ${h} ${c} ${_} ${a} ${o}`)}quadraticCurveTo(t,e,i,s){if(!isFinite(t+e+i+s))return;const[n,r]=this._transform.apply(i,s),[a,o]=this._transform.apply(t,e);this.__addPathCommand(n,r,`Q ${a} ${o} ${n} ${r}`)}arcTo(t,e,i,s,n){if(!isFinite(t+e+i+s+n))return;if(null==this.__currentPosition)return;const r=this.__currentPosition.x,a=this.__currentPosition.y;if(n<0)throw new Error("IndexSizeError: The radius provided ("+n+") is negative.");if(r===t&&a===e||t===i&&e===s||0===n)return void this.lineTo(t,e);function o([t,e]){const i=Math.sqrt(t**2+e**2);return[t/i,e/i]}const l=o([r-t,a-e]),h=o([i-t,s-e]);if(l[0]*h[1]==l[1]*h[0])return void this.lineTo(t,e);const c=l[0]*h[0]+l[1]*h[1],_=Math.acos(Math.abs(c)),u=o([l[0]+h[0],l[1]+h[1]]),p=n/Math.sin(_/2),d=t+p*u[0],m=e+p*u[1],f=[-l[1],l[0]],g=[h[1],-h[0]];function w(t){const e=t[0];return t[1]>=0?Math.acos(e):-Math.acos(e)}const b=w(f),v=w(g);this.lineTo(d+f[0]*n,m+f[1]*n),this.arc(d,m,n,b,v)}stroke(){"path"===this.__currentElement.nodeName&&this.__currentElement.setAttribute("paint-order","fill"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement("stroke"),null!=this._clip_path&&this.__currentElement.setAttribute("clip-path",this._clip_path)}fill(){"path"===this.__currentElement.nodeName&&this.__currentElement.setAttribute("paint-order","stroke"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement("fill"),null!=this._clip_path&&this.__currentElement.setAttribute("clip-path",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&("path"!==this.__currentElement.nodeName&&this.beginPath(),this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){r.empty(this.__defs),r.empty(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const n=this.__createElement("rect",{x:t,y:e,width:i,height:s,fill:"#FFFFFF"},!0);this._apply_transform(n),this.__root.appendChild(n)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error("The provided double value is non-finite");const[n,r]=this._transform.apply(t,e),[o,l]=this._transform.apply(i,s),h=this.__createElement("linearGradient",{id:a(this.__ids),x1:n+"px",x2:o+"px",y1:r+"px",y2:l+"px",gradientUnits:"userSpaceOnUse"},!1);return this.__defs.appendChild(h),new _(h,this)}createRadialGradient(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))throw new Error("The provided double value is non-finite");const[o,l]=this._transform.apply(t,e),[h,c]=this._transform.apply(s,n),u=this.__createElement("radialGradient",{id:a(this.__ids),cx:h+"px",cy:c+"px",r:r+"px",fx:o+"px",fy:l+"px",gradientUnits:"userSpaceOnUse"},!1);return this.__defs.appendChild(u),new _(u,this)}__parseFont(){const t=/^\s*(?=(?:(?:[-a-z]+\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\1|\2|\3)\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\d]+(?:\%|in|[cem]m|ex|p[ctx]))(?:\s*\/\s*(normal|[.\d]+(?:\%|in|[cem]m|ex|p[ctx])))?\s*([-,\’\"\sa-z0-9]+?)\s*$/i.exec(this.font),e={style:t[1]||"normal",size:t[4]||"10px",family:t[6]||"sans-serif",weight:t[3]||"normal",decoration:t[2]||"normal"};return"underline"===this.__fontUnderline&&(e.decoration="underline"),null!=this.__fontHref&&(e.href=this.__fontHref),e}__wrapTextLink(t,e){if(t.href){const i=this.__createElement("a");return i.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",t.href),i.appendChild(e),i}return e}__applyText(t,e,i,s){const n=this.__parseFont(),r=this.__createElement("text",{"font-family":n.family,"font-size":n.size,"font-style":n.style,"font-weight":n.weight,"text-decoration":n.decoration,x:e,y:i,"text-anchor":o(this.textAlign),"dominant-baseline":l(this.textBaseline)},!0);r.appendChild(this.__document.createTextNode(t)),this._apply_transform(r),this.__currentElement=r,this.__applyStyleToCurrentElement(s),this.__root.appendChild(this.__wrapTextLink(n,r))}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,"fill")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,"stroke")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,n,r=!1){if(!isFinite(t+e+i+s+n))return;if(s===n)return;(s%=2*Math.PI)===(n%=2*Math.PI)&&(n=(n+2*Math.PI-.001*(r?-1:1))%(2*Math.PI));const a=t+i*Math.cos(n),o=e+i*Math.sin(n),l=t+i*Math.cos(s),h=e+i*Math.sin(s),c=r?0:1;let _=0,u=n-s;u<0&&(u+=2*Math.PI),_=r?u>Math.PI?0:1:u>Math.PI?1:0,this.lineTo(l,h);const p=i,d=i,[m,f]=this._transform.apply(a,o);this.__addPathCommand(m,f,`A ${p} ${d} 0 ${_} ${c} ${m} ${f}`)}clip(){const t=this.__createElement("clipPath"),e=a(this.__ids);this.__applyCurrentDefaultPath(),t.setAttribute("id",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,…e){let i,s,n,r,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,n=l,r=h}else if(4==e.length){if([i,s,n,r]=e,!isFinite(i+s+n+r))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error("Inavlid number of arguments passed to drawImage: "+arguments.length);if([a,o,l,h,i,s,n,r]=e,!isFinite(a+o+l+h+i+s+n+r))return}const c=this.__root,_="translate("+i+", "+s+")",u=this._transform.clone().translate(i,s);if(t instanceof p||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;u.is_identity?i=c:(i=this.__createElement("g"),this._apply_transform(i,u),c.appendChild(i));for(const t of[…e.childNodes])if(t instanceof SVGDefsElement){for(const e of[…t.childNodes])if(e instanceof Element){const t=e.getAttribute("id");this.__ids[t]=t,this.__defs.appendChild(e)}}else i.appendChild(t)}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement("image");if(e.setAttribute("width",""+n),e.setAttribute("height",""+r),e.setAttribute("preserveAspectRatio","none"),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement("canvas");e.width=n,e.height=r;e.getContext("2d").drawImage(t,a,o,l,h,0,0,n,r),t=e}e.setAttribute("transform",_);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute("src");e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",i),c.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement("image");e.setAttribute("width",""+n),e.setAttribute("height",""+r),e.setAttribute("preserveAspectRatio","none");const i=this.__document.createElement("canvas");i.width=n,i.height=r;const s=i.getContext("2d");s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,n,r),t=i,e.setAttribute("transform",_),e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",t.toDataURL()),c.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS("http://www.w3.org/2000/svg","pattern"),s=a(this.__ids);if(i.setAttribute("id",s),i.setAttribute("width",""+this._to_number(t.width)),i.setAttribute("height",""+this._to_number(t.height)),i.setAttribute("patternUnits","userSpaceOnUse"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS("http://www.w3.org/2000/svg","image"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute("src");e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof p){for(const e of[…t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error("unsupported");for(const e of[…t.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}return new u(i,this)}setLineDash(t){t&&t.length>0?this.lineDash=t.join(","):this.lineDash=null}_to_number(t){return n.isNumber(t)?t:t.baseVal.value}}i.SVGRenderingContext2D=p,p.__name__="SVGRenderingContext2D"},n function _(t,s,r){Object.defineProperty(r,"__esModule",{value:!0});const{sin:e,cos:n}=Math;class i{constructor(t=1,s=0,r=0,e=1,n=0,i=0){this.a=t,this.b=s,this.c=r,this.d=e,this.e=n,this.f=i}toString(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return`matrix(${t}, ${s}, ${r}, ${e}, ${n}, ${i})`}clone(){const{a:t,b:s,c:r,d:e,e:n,f:a}=this;return new i(t,s,r,e,n,a)}get is_identity(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return 1==t&&0==s&&0==r&&1==e&&0==n&&0==i}apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this;return[r*t+n*s+a,e*t+i*s+h]}iv_apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this,c=t.length;for(let o=0;o<c;o++){const c=t[o],f=s[o];t[o]=r*c+n*f+a,s[o]=e*c+i*f+h}}transform(t,s,r,e,n,i){const{a,b:h,c,d:o,e:f,f:l}=this;return this.a=a*t+c*s,this.c=a*r+c*e,this.e=a*n+c*i+f,this.b=h*t+o*s,this.d=h*r+o*e,this.f=h*n+o*i+l,this}translate(t,s){return this.transform(1,0,0,1,t,s)}scale(t,s){return this.transform(t,0,0,s,0,0)}skew(t,s){return this.transform(1,s,t,1,0,0)}rotate(t){const s=e(t),r=n(t);return this.transform(r,s,-s,r,0,0)}rotate_ccw(t){return this.rotate(-t)}translate_x(t){return this.translate(t,0)}translate_y(t){return this.translate(0,t)}flip(){return this.scale(-1,-1)}flip_x(){return this.scale(1,-1)}flip_y(){return this.scale(-1,1)}}r.AffineTransform=i,i.__name__="AffineTransform"},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),a=e(14),n=e(78),l=e(19),o=s.__importStar(e(18)),r=e(72),h=e(13),c=e(79),_=e(80),d=e(75),p=(()=>{const e=document.createElement("canvas"),t=e.getContext("webgl",{premultipliedAlpha:!0});return null!=t?{canvas:e,gl:t}:void l.logger.trace("WebGL is not supported")})(),v={position:"absolute",top:"0",left:"0",width:"100%",height:"100%"};class b{constructor(e,t){switch(this.backend=e,this.hidpi=t,this.pixel_ratio=1,this.bbox=new c.BBox,e){case"webgl":case"canvas":{this._el=this._canvas=r.canvas({style:v});const e=this.canvas.getContext("2d");if(null==e)throw new Error("unable to obtain 2D rendering context");this._ctx=e,t&&(this.pixel_ratio=devicePixelRatio);break}case"svg":{const e=new d.SVGRenderingContext2D;this._ctx=e,this._canvas=e.get_svg(),this._el=r.div({style:v},this._canvas);break}}_.fixup_ctx(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t});const i=this._ctx instanceof d.SVGRenderingContext2D?this._ctx:this.canvas;i.width=e*this.pixel_ratio,i.height=t*this.pixel_ratio}prepare(){const{ctx:e,hidpi:t,pixel_ratio:i}=this;e.save(),t&&(e.scale(i,i),e.translate(.5,.5)),this.clear()}clear(){const{x:e,y:t,width:i,height:s}=this.bbox;this.ctx.clearRect(e,t,i,s)}finish(){this.ctx.restore()}to_blob(){const{_canvas:e}=this;if(e instanceof HTMLCanvasElement)return null!=e.msToBlob?Promise.resolve(e.msToBlob()):new Promise((t,i)=>{e.toBlob(e=>null!=e?t(e):i(),"image/png")});{const e=this._ctx.get_serialized_svg(!0),t=new Blob([e],{type:"image/svg+xml"});return Promise.resolve(t)}}}i.CanvasLayer=b,b.__name__="CanvasLayer";class g extends n.DOMView{constructor(){super(…arguments),this.bbox=new c.BBox}initialize(){super.initialize();const{output_backend:e,hidpi:t}=this.model;"webgl"==e&&(this.webgl=p),this.underlays_el=r.div({style:v}),this.primary=new b(e,t),this.overlays=new b(e,t),this.overlays_el=r.div({style:v}),this.events_el=r.div({class:"bk-canvas-events",style:v});const i=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];h.extend(this.el.style,v),r.append(this.el,…i),l.logger.debug("CanvasView initialized")}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const{gl:a}=t;a.enable(a.SCISSOR_TEST);const[n,l,o,r]=e,{xview:h,yview:c}=this.bbox,_=h.compute(n),d=c.compute(l+r),p=this.pixel_ratio;a.scissor(p*_,p*d,p*o,p*r),a.enable(a.BLEND),a.blendFuncSeparate(a.SRC_ALPHA,a.ONE_MINUS_SRC_ALPHA,a.ONE_MINUS_DST_ALPHA,a.ONE)}}clear_webgl(){const{webgl:e}=this;if(null!=e){const{gl:t,canvas:i}=e;t.viewport(0,0,i.width,i.height),t.clearColor(0,0,0,0),t.clear(t.COLOR_BUFFER_BIT||t.DEPTH_BUFFER_BIT)}}blit_webgl(e){const{webgl:t}=this;if(null!=t&&(l.logger.debug("Blitting WebGL canvas"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi)){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}}compose(){const{output_backend:e,hidpi:t}=this.model,{width:i,height:s}=this.bbox,a=new b(e,t);return a.resize(i,s),a.ctx.drawImage(this.primary.canvas,0,0),a.ctx.drawImage(this.overlays.canvas,0,0),a}to_blob(){return this.compose().to_blob()}}i.CanvasView=g,g.__name__="CanvasView";class x extends a.HasProps{constructor(e){super(e)}static init_Canvas(){this.prototype.default_view=g,this.internal({hidpi:[o.Boolean,!0],output_backend:[o.OutputBackend,"canvas"]})}}i.Canvas=x,x.__name__="Canvas",x.init_Canvas()},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(71),r=e(72);class n extends i.View{initialize(){super.initialize(),this.el=this._createElement()}remove(){r.remove(this.el),super.remove()}css_classes(){return[]}render(){}renderTo(e){e.appendChild(this.el),this.render()}_createElement(){return r.createElement(this.tagName,{class:this.css_classes()})}}t.DOMView=n,n.__name__="DOMView",n.prototype.tagName="div"},n function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const h=t(24),{min:r,max:s}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:r(t.x0,i.x0),x1:s(t.x1,i.x1),y0:r(t.y0,i.y0),y1:s(t.y1,i.y1)}};class n{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if("x0"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}});this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if("x"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}});this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if("width"in t)if("left"in t)i=t.left,e=i+t.width;else if("right"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if("height"in t)if("top"in t)h=t.top,r=h+t.height;else if("bottom"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}});this.x0=i,this.y0=h,this.x1=e,this.y1=r}}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get rect(){return{x0:this.x0,y0:this.y0,x1:this.x1,y1:this.y1}}get box(){return{x:this.x,y:this.y,width:this.width,height:this.height}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}relativize(){const{width:t,height:i}=this;return new n({x:0,y:0,width:t,height:i})}contains(t,i){return t>=this.x0&&t<=this.x1&&i>=this.y0&&i<=this.y1}clip(t,i){return t<this.x0?t=this.x0:t>this.x1&&(t=this.x1),i<this.y0?i=this.y0:i>this.y1&&(i=this.y1),[t,i]}union(t){return new n({x0:r(this.x0,t.x0),y0:r(this.y0,t.y0),x1:s(this.x1,t.x1),y1:s(this.y1,t.y1)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.left;for(let h=0;h<t.length;h++)i[h]=e+t[h];return i}}}get yview(){return{compute:t=>this.bottom-t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.bottom;for(let h=0;h<t.length;h++)i[h]=e-t[h];return i}}}}e.BBox=n,n.__name__="BBox"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.fixup_ctx=function(e){!function(e){void 0===e.lineDash&&Object.defineProperty(e,"lineDash",{get:()=>e.getLineDash(),set:t=>e.setLineDash(t)})}(e),function(e){e.setImageSmoothingEnabled=t=>{e.imageSmoothingEnabled=t,e.mozImageSmoothingEnabled=t,e.oImageSmoothingEnabled=t,e.webkitImageSmoothingEnabled=t,e.msImageSmoothingEnabled=t},e.getImageSmoothingEnabled=()=>{const t=e.imageSmoothingEnabled;return null==t||t}}(e),function(e){e.measureText&&null==e.html5MeasureText&&(e.html5MeasureText=e.measureText,e.measureText=t=>{const n=e.html5MeasureText(t);return n.ascent=1.6*e.html5MeasureText("m").width,n})}(e),function(e){e.ellipse||(e.ellipse=function(t,n,o,a,i,l,m,r=!1){const u=.551784;e.translate(t,n),e.rotate(i);let s=o,g=a;r&&(s=-o,g=-a),e.moveTo(-s,0),e.bezierCurveTo(-s,g*u,-s*u,g,0,g),e.bezierCurveTo(s*u,g,s,g*u,s,0),e.bezierCurveTo(s,-g*u,s*u,-g,0,-g),e.bezierCurveTo(-s*u,-g,-s,-g*u,-s,0),e.rotate(-i),e.translate(-t,-n)})}(e)}},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(1),c=e(14),i=n.__importStar(e(18)),a=e(8),r=e(13),o=e(19);class l extends c.HasProps{constructor(e){super(e)}static init_Model(){this.define({tags:[i.Array,[]],name:[i.String],js_property_callbacks:[i.Any,{}],js_event_callbacks:[i.Any,{}],subscribed_events:[i.Array,[]]})}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,()=>this._update_property_callbacks()),this.connect(this.properties.js_event_callbacks.change,()=>this._update_event_callbacks()),this.connect(this.properties.subscribed_events.change,()=>this._update_event_callbacks())}_process_event(e){for(const t of this.js_event_callbacks[e.event_name]||[])t.execute(e);null!=this.document&&this.subscribed_events.some(t=>t==e.event_name)&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):o.logger.warn("WARNING: Document not defined for updating event callbacks")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(":");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of r.entries(this.js_property_callbacks)){const n=s.map(e=>()=>e.execute(this));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){r.isEmpty(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if(a.isString(e))return[…this.references()].filter(t=>t instanceof l&&t.name===e);if(e.prototype instanceof c.HasProps)return[…this.references()].filter(t=>t instanceof e);throw new Error("invalid selector")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error("found more than one object matching given selector")}}}s.Model=l,l.__name__="Model",l.init_Model()},n function _(e,s,_){Object.defineProperty(_,"__esModule",{value:!0});class t{constructor(e,s){this.x_scale=e,this.y_scale=s,this.x_range=this.x_scale.source_range,this.y_range=this.y_scale.source_range,this.ranges=[this.x_range,this.y_range],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,s){return[this.x_scale.v_compute(e),this.y_scale.v_compute(s)]}map_from_screen(e,s){return[this.x_scale.v_invert(e),this.y_scale.v_invert(s)]}}_.CoordinateTransform=t,t.__name__="CoordinateTransform"},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),a=t(36),o=t(84),r=t(85),n=t(28),_=i.__importStar(t(18)),h=t(10);class c extends a.AnnotationView{initialize(){super.initialize(),null==this.model.source&&(this.model.source=new r.ColumnDataSource),this.set_data(this.model.source)}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.set_data(this.model.source)),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}set_data(t){super.set_data(t),this.visuals.warm_cache(t),this.plot_view.request_render()}_map_data(){const{frame:t}=this.plot_view;let e,s,i,a;return"data"==this.model.start_units?(e=this.coordinates.x_scale.v_compute(this._x_start),s=this.coordinates.y_scale.v_compute(this._y_start)):(e=t.xview.v_compute(this._x_start),s=t.yview.v_compute(this._y_start)),"data"==this.model.end_units?(i=this.coordinates.x_scale.v_compute(this._x_end),a=this.coordinates.y_scale.v_compute(this._y_end)):(i=t.xview.v_compute(this._x_end),a=t.yview.v_compute(this._y_end)),[[e,s],[i,a]]}_render(){const{ctx:t}=this.layer;t.save();const[e,s]=this._map_data();null!=this.model.end&&this._arrow_head(t,"render",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,"render",this.model.start,s,e),t.beginPath();const{x:i,y:a,width:o,height:r}=this.plot_view.frame.bbox;t.rect(i,a,o,r),null!=this.model.end&&this._arrow_head(t,"clip",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,"clip",this.model.start,s,e),t.closePath(),t.clip(),this._arrow_body(t,e,s),t.restore()}_arrow_head(t,e,s,i,a){for(let o=0,r=this._x_start.length;o<r;o++){const r=Math.PI/2+h.atan2([i[0][o],i[1][o]],[a[0][o],a[1][o]]);t.save(),t.translate(a[0][o],a[1][o]),t.rotate(r),"render"==e?s.render(t,o):"clip"==e&&s.clip(t,o),t.restore()}}_arrow_body(t,e,s){if(this.visuals.line.doit)for(let i=0,a=this._x_start.length;i<a;i++)this.visuals.line.set_vectorize(t,i),t.beginPath(),t.moveTo(e[0][i],e[1][i]),t.lineTo(s[0][i],s[1][i]),t.stroke()}}s.ArrowView=c,c.__name__="ArrowView";class d extends a.Annotation{constructor(t){super(t)}static init_Arrow(){this.prototype.default_view=c,this.mixins(n.LineVector),this.define({x_start:[_.NumberSpec],y_start:[_.NumberSpec],start_units:[_.SpatialUnits,"data"],start:[_.Instance,null],x_end:[_.NumberSpec],y_end:[_.NumberSpec],end_units:[_.SpatialUnits,"data"],end:[_.Instance,()=>new o.OpenHead({})],source:[_.Instance]})}}s.Arrow=d,d.__name__="Arrow",d.init_Arrow()},n function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),o=i(36),l=i(74),n=i(28),h=t.__importStar(i(18));class a extends o.Annotation{constructor(i){super(i)}static init_ArrowHead(){this.define({size:[h.Number,25]})}initialize(){super.initialize(),this.visuals=new l.Visuals(this)}}s.ArrowHead=a,a.__name__="ArrowHead",a.init_ArrowHead();class r extends a{constructor(i){super(i)}static init_OpenHead(){this.mixins(n.LineVector)}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,0),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.stroke())}}s.OpenHead=r,r.__name__="OpenHead",r.init_OpenHead();class z extends a{constructor(i){super(i)}static init_NormalHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:"black"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._normal(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._normal(i,e),i.stroke())}_normal(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.closePath()}}s.NormalHead=z,z.__name__="NormalHead",z.init_NormalHead();class _ extends a{constructor(i){super(i)}static init_VeeHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:"black"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._vee(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._vee(i,e),i.stroke())}_vee(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.closePath()}}s.VeeHead=_,_.__name__="VeeHead",_.init_VeeHead();class c extends a{constructor(i){super(i)}static init_TeeHead(){this.mixins(n.LineVector)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,0),i.lineTo(-.5*this.size,0),i.stroke())}clip(i,e){}}s.TeeHead=c,c.__name__="TeeHead",c.init_TeeHead()},n function _(t,n,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t(1),o=t(86),r=s.__importStar(t(18)),i=t(8),l=t(13),a=s.__importStar(t(119)),c=t(120),u=t(121);function h(t,n,e){if(i.isArray(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if(i.isTypedArray(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let i;t.length<e?(i=new t.constructor(e),i.set(t,0)):i=t;for(let t=o,n=r;t<n;t++)i[t-o]=i[t];for(let t=0,e=n.length;t<e;t++)i[t+(r-o)]=n[t];return i}{const e=new t.constructor(n);return a.concat(t,e)}}throw new Error("unsupported array types")}function d(t,n){let e,s,o;return i.isNumber(t)?(e=t,o=t+1,s=1):(e=null!=t.start?t.start:0,o=null!=t.stop?t.stop:n,s=null!=t.step?t.step:1),[e,o,s]}function f(t,n){const e=new Set;let s=!1;for(const[o,r]of n){let n,l,a,c;if(i.isArray(o)){const[s]=o;e.add(s),n=t[s].shape,l=t[s],c=r,2===o.length?(n=[1,n[0]],a=[o[0],0,o[1]]):a=o}else i.isNumber(o)?(c=[r],e.add(o)):(c=r,s=!0),a=[0,0,o],n=[1,t.length],l=t;let u=0;const[h,f,m]=d(a[1],n[0]),[_,p,g]=d(a[2],n[1]);for(let t=h;t<f;t+=m)for(let o=_;o<p;o+=g)s&&e.add(o),l[t*n[1]+o]=c[u],u++}return e}e.stream_to_column=h,e.slice=d,e.patch_to_column=f;class m extends o.ColumnarDataSource{constructor(t){super(t)}static init_ColumnDataSource(){this.define({data:[r.Any,{}]})}stream(t,n,e){const{data:s}=this;for(const[e,o]of l.entries(t))s[e]=h(s[e],o,n);if(this.setv({data:s},{silent:!0}),this.streaming.emit(),null!=this.document){const s=new u.ColumnsStreamedEvent(this.document,this.ref(),t,n);this.document._notify_change(this,"data",null,null,{setter_id:e,hint:s})}}patch(t,n){const{data:e}=this;let s=new Set;for(const[n,o]of l.entries(t))s=c.union(s,f(e[n],o));if(this.setv({data:e},{silent:!0}),this.patching.emit([…s]),null!=this.document){const e=new u.ColumnsPatchedEvent(this.document,this.ref(),t);this.document._notify_change(this,"data",null,null,{setter_id:n,hint:e})}}}e.ColumnDataSource=m,m.__name__="ColumnDataSource",m.init_ColumnDataSource()},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const a=t(1),s=t(87),i=t(15),r=t(19),l=t(89),c=a.__importStar(t(18)),o=t(8),u=t(9),h=t(13),g=t(88),_=t(118);class d extends s.DataSource{constructor(t){super(t)}get_array(t){let e=this.data[t];return null==e?this.data[t]=e=[]:o.isArray(e)||(this.data[t]=e=Array.from(e)),e}static init_ColumnarDataSource(){this.define({selection_policy:[c.Instance,()=>new _.UnionRenderers]}),this.internal({selection_manager:[c.Instance,t=>new l.SelectionManager({source:t})],inspected:[c.Instance,()=>new g.Selection]})}initialize(){super.initialize(),this._select=new i.Signal0(this,"select"),this.inspect=new i.Signal(this,"inspect"),this.streaming=new i.Signal0(this,"streaming"),this.patching=new i.Signal(this,"patching")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return h.keys(this.data)}get_length(t=!0){const e=u.uniq(h.values(this.data).map(t=>t.length));switch(e.length){case 0:return null;case 1:return e[0];default:{const n="data source has columns of inconsistent lengths";if(t)return r.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=d,d.__name__="ColumnarDataSource",d.init_ColumnarDataSource()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const c=e(1),n=e(81),o=e(88),i=c.__importStar(e(18));class r extends n.Model{constructor(e){super(e)}static init_DataSource(){this.define({selected:[i.Instance,()=>new o.Selection]})}}a.DataSource=r,r.__name__="DataSource",r.init_DataSource()},n function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),n=i(81),l=t.__importStar(i(18)),c=i(9),h=i(13);class d extends n.Model{constructor(i){super(i)}get_view(){return this.view}static init_Selection(){this.define({indices:[l.Array,[]],line_indices:[l.Array,[]],multiline_indices:[l.Any,{}]}),this.internal({selected_glyphs:[l.Array,[]],view:[l.Any],image_indices:[l.Array,[]]})}initialize(){super.initialize()}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s="replace"){switch(s){case"replace":this.indices=i.indices,this.line_indices=i.line_indices,this.selected_glyphs=i.selected_glyphs,this.view=i.view,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices;break;case"append":this.update_through_union(i);break;case"intersect":this.update_through_intersection(i);break;case"subtract":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.view=null,this.selected_glyphs=[]}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=c.union(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=c.intersection(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=c.difference(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}}s.Selection=d,d.__name__="Selection",d.init_Selection()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(14),o=e(88),c=e(90),r=e(116),l=i.__importStar(e(18));class p extends n.HasProps{constructor(e){super(e),this.inspectors=new Map}static init_SelectionManager(){this.internal({source:[l.Any]})}select(e,t,s,i="replace"){const n=[],o=[];for(const t of e)t instanceof c.GlyphRendererView?n.push(t):t instanceof r.GraphRendererView&&o.push(t);let l=!1;for(const e of o){const n=e.model.selection_policy.hit_test(t,e);l=l||e.model.selection_policy.do_selection(n,e.model,s,i)}if(n.length>0){const e=this.source.selection_policy.hit_test(t,n);l=l||this.source.selection_policy.do_selection(e,this.source,s,i)}return l}inspect(e,t){let s=!1;if(e instanceof c.GlyphRendererView){const i=e.hit_test(t);if(null!=i){s=!i.is_empty();const n=this.get_or_create_inspector(e.model);n.update(i,!0,"replace"),this.source.setv({inspected:n},{silent:!0}),this.source.inspect.emit([e,{geometry:t}])}}else if(e instanceof r.GraphRendererView){const i=e.model.inspection_policy.hit_test(t,e);s=s||e.model.inspection_policy.do_inspection(i,t,e,!1,"replace")}return s}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new o.Selection,this.inspectors.set(e,t)),t}}s.SelectionManager=p,p.__name__="SelectionManager",p.init_SelectionManager()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),l=e(91),n=e(92),h=e(110),o=e(111),a=e(113),c=e(114),_=e(24),d=s.__importStar(e(18)),r=e(12),p=e(9),g=e(13),u=e(115),y=e(98),m={fill:{},line:{}},v={fill:{fill_alpha:.3,fill_color:"grey"},line:{line_alpha:.3,line_color:"grey"}},f={fill:{fill_alpha:.2},line:{}};class w extends l.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model.glyph,t=p.includes(e._mixins,"fill"),i=p.includes(e._mixins,"line"),s=g.clone(e.attributes);function l(l){const n=g.clone(s);return t&&g.extend(n,l.fill),i&&g.extend(n,l.line),new e.constructor(n)}delete s.id,this.glyph=await this.build_glyph_view(e);let{selection_glyph:n}=this.model;null==n?n=l({fill:{},line:{}}):"auto"===n&&(n=l(m)),this.selection_glyph=await this.build_glyph_view(n);let{nonselection_glyph:h}=this.model;null==h?h=l({fill:{},line:{}}):"auto"===h&&(h=l(f)),this.nonselection_glyph=await this.build_glyph_view(h);const{hover_glyph:o}=this.model;null!=o&&(this.hover_glyph=await this.build_glyph_view(o));const{muted_glyph:a}=this.model;null!=a&&(this.muted_glyph=await this.build_glyph_view(a));const c=l(v);this.decimated_glyph=await this.build_glyph_view(c),this.set_data(!1)}async build_glyph_view(e){return u.build_view(e,{parent:this})}remove(){var e,t;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),null===(t=this.muted_glyph)||void 0===t||t.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.glyph.change,()=>this.set_data()),this.connect(this.model.data_source.change,()=>this.set_data()),this.connect(this.model.data_source.streaming,()=>this.set_data()),this.connect(this.model.data_source.patching,e=>this.set_data(!0,e)),this.connect(this.model.data_source.selected.change,()=>this.request_render()),this.connect(this.model.data_source._select,()=>this.request_render()),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,()=>this.request_render()),this.connect(this.model.properties.view.change,()=>this.set_data()),this.connect(this.model.view.properties.indices.change,()=>this.set_data()),this.connect(this.model.view.properties.masked.change,()=>this.set_visuals()),this.connect(this.model.properties.visible.change,()=>this.plot_view.update_dataranges());const{x_ranges:e,y_ranges:t}=this.plot_view.frame;for(const[,t]of e)t instanceof y.FactorRange&&this.connect(t.change,()=>this.set_data());for(const[,e]of t)e instanceof y.FactorRange&&this.connect(e.change,()=>this.set_data());this.connect(this.model.glyph.transformchange,()=>this.set_data())}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}set_data(e=!0,t=null){const i=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:s}=this;this.glyph.set_data(i,s,t),this.set_visuals(),this._update_masked_indices();const{lod_factor:l}=this.plot_model,n=this.all_indices.count;this.decimated=new _.Indices(n);for(let e=0;e<n;e+=l)this.decimated.set(e);this.set_data_timestamp=Date.now(),e&&this.request_render()}set_visuals(){var e,t,i,s;const l=this.model.data_source,{all_indices:n}=this;this.glyph.set_visuals(l,n),this.decimated_glyph.set_visuals(l,n),null===(e=this.selection_glyph)||void 0===e||e.set_visuals(l,n),null===(t=this.nonselection_glyph)||void 0===t||t.set_visuals(l,n),null===(i=this.hover_glyph)||void 0===i||i.set_visuals(l,n),null===(s=this.muted_glyph)||void 0===s||s.set_visuals(l,n)}get has_webgl(){return this.glyph.has_webgl}_render(){const e=this.has_webgl;this.glyph.map_data();const t=[…this.all_indices];let i=[…this._update_masked_indices()];const{ctx:s}=this.layer;s.save();const{selected:l}=this.model.data_source;let c;c=!l||l.is_empty()?[]:this.glyph instanceof n.LineView&&l.selected_glyph===this.glyph.model?this.model.view.convert_indices_from_subset(i):l.indices;const{inspected:_}=this.model.data_source,d=new Set((()=>!_||_.is_empty()?[]:_.selected_glyph?this.model.view.convert_indices_from_subset(i):_.indices.length>0?_.indices:Object.keys(_.multiline_indices).map(e=>parseInt(e)))()),g=r.filter(i,e=>d.has(t[e])),{lod_threshold:u}=this.plot_model;let y,m,v;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=u&&t.length>u?(i=[…this.decimated],y=this.decimated_glyph,m=this.decimated_glyph,v=this.selection_glyph):(y=this.model.muted&&null!=this.muted_glyph?this.muted_glyph:this.glyph,m=this.nonselection_glyph,v=this.selection_glyph),null!=this.hover_glyph&&g.length&&(i=p.difference(i,g)),c.length){const e={};for(const t of c)e[t]=!0;const l=new Array,h=new Array;if(this.glyph instanceof n.LineView)for(const i of t)null!=e[i]?l.push(i):h.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):h.push(s);m.render(s,h,this.glyph),v.render(s,l,this.glyph),null!=this.hover_glyph&&(this.glyph instanceof n.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):this.hover_glyph.render(s,g,this.glyph))}else if(this.glyph instanceof n.LineView)this.hover_glyph&&g.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):y.render(s,t,this.glyph);else if(this.glyph instanceof h.PatchView||this.glyph instanceof o.HAreaView||this.glyph instanceof a.VAreaView)if(0==_.selected_glyphs.length||null==this.hover_glyph)y.render(s,t,this.glyph);else for(const e of _.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t,this.glyph);else y.render(s,i,this.glyph),this.hover_glyph&&g.length&&this.hover_glyph.render(s,g,this.glyph);s.restore()}draw_legend(e,t,i,s,l,n,h,o){null==o&&(o=this.model.get_reference_point(n,h)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o)}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=w,w.__name__="GlyphRendererView";class b extends l.DataRenderer{constructor(e){super(e)}static init_GlyphRenderer(){this.prototype.default_view=w,this.define({data_source:[d.Instance],view:[d.Instance,()=>new c.CDSView],glyph:[d.Instance],hover_glyph:[d.Instance],nonselection_glyph:[d.Any,"auto"],selection_glyph:[d.Any,"auto"],muted_glyph:[d.Instance],muted:[d.Boolean,!1]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){let i=0;if(null!=e){const s=this.data_source.get_column(e);if(null!=s){const e=r.indexOf(s,t);-1!=e&&(i=e)}}return i}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=b,b.__name__="GlyphRenderer",b.init_GlyphRenderer()},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(70);class n extends a.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=n,n.__name__="DataRendererView";class s extends a.Renderer{constructor(e){super(e)}static init_DataRenderer(){this.override({level:"glyph"})}}t.DataRenderer=s,s.__name__="DataRenderer",s.init_DataRenderer()},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),n=e(93),l=e(100),_=e(102),r=s.__importStar(e(28)),o=s.__importStar(e(101)),h=e(88);class a extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&(this.glglyph=new _.LineGL(e.gl,this))}_render(e,i,{sx:t,sy:s}){let n=!1,l=null;this.visuals.line.set_value(e);for(const _ of i){if(n){if(!isFinite(t[_]+s[_])){e.stroke(),e.beginPath(),n=!1,l=_;continue}null!=l&&_-l>1&&(e.stroke(),n=!1)}n?e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]),n=!0),l=_}n&&e.stroke()}_hit_point(e){const i=new h.Selection,t={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.visuals.line.line_width.value()/2);for(let e=0,l=this.sx.length-1;e<l;e++){const l={x:this.sx[e],y:this.sy[e]},_={x:this.sx[e+1],y:this.sy[e+1]},r=o.dist_to_segment(t,l,_);r<n&&r<s&&(s=r,i.add_to_selected_glyphs(this.model),i.view=this,i.line_indices=[e])}return i}_hit_span(e){const{sx:i,sy:t}=e,s=new h.Selection;let n,l;"v"==e.direction?(n=this.renderer.yscale.invert(t),l=this._y):(n=this.renderer.xscale.invert(i),l=this._x);for(let e=0,i=l.length-1;e<i;e++)(l[e]<=n&&n<=l[e+1]||l[e+1]<=n&&n<=l[e])&&(s.add_to_selected_glyphs(this.model),s.view=this,s.line_indices.push(e));return s}get_interpolation_hit(e,i){const[t,s,n,_]=[this._x[e],this._y[e],this._x[e+1],this._y[e+1]];return l.line_interpolation(this.renderer,i,t,s,n,_)}draw_legend_for_index(e,i,t){l.generic_line_legend(this.visuals,e,i,t)}}t.LineView=a,a.__name__="LineView";class c extends n.XYGlyph{constructor(e){super(e)}static init_Line(){this.prototype.default_view=a,this.mixins(r.Line)}}t.Line=c,c.__name__="Line",c.init_Line()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),_=e(37),n=s.__importStar(e(18)),a=e(94);class d extends a.GlyphView{_project_data(){_.inplace.project_xy(this._x,this._y)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++){const t=this._x[i],s=this._y[i];isNaN(t+s)||!isFinite(t+s)?e.add_empty():e.add(t,s,t,s)}}scenterxy(e){return[this.sx[e],this.sy[e]]}}i.XYGlyphView=d,d.__name__="XYGlyphView";class p extends a.Glyph{constructor(e){super(e)}static init_XYGlyph(){this.define({x:[n.XCoordinateSpec,{field:"x"}],y:[n.YCoordinateSpec,{field:"y"}]})}}i.XYGlyph=p,p.__name__="XYGlyph",p.init_XYGlyph()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),n=s.__importStar(t(18)),a=s.__importStar(t(79)),r=s.__importStar(t(74)),_=t(71),l=t(81),o=t(19),h=t(24),d=t(12),c=t(95),u=t(98),p=t(88);class y extends _.View{constructor(){super(…arguments),this._index=null,this._data_size=null,this._nohit_warned=new Set}get renderer(){return this.parent}get has_webgl(){return null!=this.glglyph}get index(){const{_index:t}=this;if(null!=t)return t;throw new Error(this+".index_data() wasn’t called")}get data_size(){const{_data_size:t}=this;if(null!=t)return t;throw new Error(this+".set_data() wasn’t called")}initialize(){super.initialize(),this.visuals=new r.Visuals(this.model)}set_visuals(t,e){this.visuals.warm_cache(t,e),null!=this.glglyph&&this.glglyph.set_visuals_changed()}render(t,e,i){t.beginPath(),null!=this.glglyph&&(this.renderer.needs_webgl_blit=this.glglyph.render(t,e,i),this.renderer.needs_webgl_blit)||this._render(t,e,i)}has_finished(){return!0}notify_finished(){this.renderer.notify_finished()}_bounds(t){return t}bounds(){return this._bounds(this.index.bbox)}log_bounds(){const{x0:t,x1:e}=this.index.bounds(a.positive_x()),{y0:i,y1:s}=this.index.bounds(a.positive_y());return this._bounds({x0:t,y0:i,x1:e,y1:s})}get_anchor_point(t,e,[i,s]){switch(t){case"center":{const[t,n]=this.scenterxy(e,i,s);return{x:t,y:n}}default:return null}}scenterx(t,e,i){return this.scenterxy(t,e,i)[0]}scentery(t,e,i){return this.scenterxy(t,e,i)[1]}sdist(t,e,i,s="edge",n=!1){let a,r;const _=e.length;if("center"==s){const t=d.map(i,t=>t/2);a=new Float64Array(_);for(let i=0;i<_;i++)a[i]=e[i]-t[i];r=new Float64Array(_);for(let i=0;i<_;i++)r[i]=e[i]+t[i]}else{a=e,r=new Float64Array(_);for(let t=0;t<_;t++)r[t]=a[t]+i[t]}const l=t.v_compute(a),o=t.v_compute(r);return n?d.map(l,(t,e)=>Math.ceil(Math.abs(o[e]-l[e]))):d.map(l,(t,e)=>Math.abs(o[e]-l[e]))}draw_legend_for_index(t,e,i){}hit_test(t){switch(t.type){case"point":if(null!=this._hit_point)return this._hit_point(t);break;case"span":if(null!=this._hit_span)return this._hit_span(t);break;case"rect":if(null!=this._hit_rect)return this._hit_rect(t);break;case"poly":if(null!=this._hit_poly)return this._hit_poly(t)}return this._nohit_warned.has(t.type)||(o.logger.debug(‘${t.type}’ selection not available for ${this.model.type}),this._nohit_warned.add(t.type)),null}_hit_rect_against_index(t){const{sx0:e,sx1:i,sy0:s,sy1:n}=t,[a,r]=this.renderer.coordinates.x_scale.r_invert(e,i),[_,l]=this.renderer.coordinates.y_scale.r_invert(s,n),o=[…this.index.indices({x0:a,x1:r,y0:_,y1:l})];return new p.Selection({indices:o})}_project_data(){}set_data(t,e,i){var s,a;const{x_range:r,y_range:_}=this.renderer.coordinates;this._data_size=null!==(s=t.get_length())&&void 0!==s?s:1;for(const i of this.model){if(!(i instanceof n.VectorSpec))continue;if(i.optional&&null==i.spec.value&&!i.dirty)continue;const s=i.attr,a=i.array(t);let l=e.select(a);if(i instanceof n.BaseCoordinateSpec){const t="x"==i.dimension?r:_;if(t instanceof u.FactorRange)if(i instanceof n.CoordinateSpec)l=t.v_synthetic(l);else if(i instanceof n.CoordinateSeqSpec)for(let e=0;e<l.length;e++)l[e]=t.v_synthetic(l[e]);i instanceof n.CoordinateSeqSpec&&(l=h.RaggedArray.from(l))}else i instanceof n.DistanceSpec&&(this["max_"+s]=d.max(l));this["_"+s]=l}this.renderer.plot_view.model.use_map&&this._project_data(),this._set_data(i),null===(a=this.glglyph)||void 0===a||a.set_data_changed(),this.index_data()}_set_data(t){}get _index_size(){return this.data_size}index_data(){const t=new c.SpatialIndex(this._index_size);this._index_data(t),t.finish(),this._index=t}mask_data(){return null!=this.glglyph||null==this._mask_data?h.Indices.all_set(this.data_size):this._mask_data()}map_data(){var t;const e=this,{x_scale:i,y_scale:s}=this.renderer.coordinates;for(const t of this.model)if(t instanceof n.BaseCoordinateSpec){const n="x"==t.dimension?i:s;let a=e["_"+t.attr];if(a instanceof h.RaggedArray){const t=n.v_compute(a.array);a=new h.RaggedArray(a.offsets,t)}else a=n.v_compute(a);this["s"+t.attr]=a}this._map_data(),null===(t=this.glglyph)||void 0===t||t.set_data_changed()}_map_data(){}}i.GlyphView=y,y.__name__="GlyphView";class g extends l.Model{constructor(t){super(t)}static init_Glyph(){}}i.Glyph=g,g.__name__="Glyph",g.init_Glyph()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1).__importDefault(e(96)),s=e(24),o=e(79);function d(e,n){let t=0,i=n.length-1;for(;t<i;){const s=t+i>>1;n[s]>e?i=s:t=s+1}return n[t]}class x extends i.default{search_indices(e,n,t,i){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let o=this._boxes.length-4;const x=[],h=new s.Indices(this.numItems);for(;void 0!==o;){const s=Math.min(o+4*this.nodeSize,d(o,this._levelBounds));for(let d=o;d<s;d+=4){const s=0|this._indices[d>>2];t<this._boxes[d+0]||(i<this._boxes[d+1]||e>this._boxes[d+2]||n>this._boxes[d+3]||(o<4*this.numItems?h.set(s):x.push(s)))}o=x.pop()}return h}}x.__name__="_FlatBush";class h{constructor(e){this.index=null,e>0&&(this.index=new x(e))}add(e,n,t,i){var s;null===(s=this.index)||void 0===s||s.add(e,n,t,i)}add_empty(){var e;null===(e=this.index)||void 0===e||e.add(1/0,1/0,-1/0,-1/0)}finish(){var e;null===(e=this.index)||void 0===e||e.finish()}_normalize(e){let{x0:n,y0:t,x1:i,y1:s}=e;return n>i&&([n,i]=[i,n]),t>s&&([t,s]=[s,t]),{x0:n,y0:t,x1:i,y1:s}}get bbox(){if(null==this.index)return o.empty();{const{minX:e,minY:n,maxX:t,maxY:i}=this.index;return{x0:e,y0:n,x1:t,y1:i}}}indices(e){if(null==this.index)return new s.Indices(0);{const{x0:n,y0:t,x1:i,y1:s}=this._normalize(e);return this.index.search_indices(n,t,i,s)}}bounds(e){const n=o.empty();for(const t of this.indices(e)){const e=this.index._boxes,i=e[4*t+0],s=e[4*t+1],o=e[4*t+2],d=e[4*t+3];o<n.x0&&(n.x0=o),i>n.x1&&(n.x1=i),d<n.y0&&(n.y0=d),s>n.y1&&(n.y1=s)}return n}}t.SpatialIndex=h,h.__name__="SpatialIndex"},n function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1).__importDefault(t(97)),h=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class n{static from(t){if(!(t instanceof ArrayBuffer))throw new Error("Data must be an instance of ArrayBuffer.");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error("Data does not appear to be in a Flatbush format.");if(i>>4!=3)throw new Error(Got v${i>>4} data when expected v3.);const[e]=new Uint16Array(t,2,1),[o]=new Uint32Array(t,4,1);return new n(o,e,h[15&i],t)}constructor(t,s=16,i=Float64Array,n){if(void 0===t)throw new Error("Missing required argument: numItems.");if(isNaN(t)||t<=0)throw new Error(Unpexpected numItems value: ${t}.);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let o=t,r=o;this._levelBounds=[4*o];do{o=Math.ceil(o/this.nodeSize),r+=o,this._levelBounds.push(4*r)}while(1!==o);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=h.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(Unexpected typed array class: ${i}.);n&&n instanceof ArrayBuffer?(this.data=n,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new e.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,t<this.minX&&(this.minX=t),s<this.minY&&(this.minY=s),i>this.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(Added ${this._pos>>2} items when expected ${this.numItems}.);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e<this.numItems;e++){let h=4*e;const n=this._boxes[h++],o=this._boxes[h++],r=this._boxes[h++],a=this._boxes[h++],d=Math.floor(65535*((n+r)/2-this.minX)/t),x=Math.floor(65535*((o+a)/2-this.minY)/s);i[e]=_(d,x)}!function t(s,i,e,h,n,o){if(Math.floor(h/o)>=Math.floor(n/o))return;const r=s[h+n>>1];let _=h-1,d=n+1;for(;;){do{_++}while(s[_]<r);do{d–}while(s[d]>r);if(_>=d)break;a(s,i,e,_,d)}t(s,i,e,h,d,o),t(s,i,e,d+1,n,o)}(i,this._boxes,this._indices,0,this.numItems-1,this.nodeSize);for(let t=0,s=0;t<this._levelBounds.length-1;t++){const i=this._levelBounds[t];for(;s<i;){const t=s;let e=1/0,h=1/0,n=-1/0,o=-1/0;for(let t=0;t<this.nodeSize&&s<i;t++)e=Math.min(e,this._boxes[s++]),h=Math.min(h,this._boxes[s++]),n=Math.max(n,this._boxes[s++]),o=Math.max(o,this._boxes[s++]);this._indices[this._pos>>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let n=this._boxes.length-4;const o=[],a=[];for(;void 0!==n;){const _=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let r=n;r<_;r+=4){const _=0|this._indices[r>>2];i<this._boxes[r]||(e<this._boxes[r+1]||t>this._boxes[r+2]||s>this._boxes[r+3]||(n<4*this.numItems?(void 0===h||h(_))&&a.push(_):o.push(_)))}n=o.pop()}return a}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error("Data not yet indexed - call index.finish().");let n=this._boxes.length-4;const a=this._queue,_=[],d=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let i=n;i<e;i+=4){const e=0|this._indices[i>>2],r=o(t,this._boxes[i],this._boxes[i+2]),_=o(s,this._boxes[i+1],this._boxes[i+3]),d=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&a.push(-e-1,d):a.push(e,d)}for(;a.length&&a.peek()<0;){if(a.peekValue()>d)return a.clear(),_;if(_.push(-a.pop()-1),_.length===i)return a.clear(),_}n=a.pop()}return a.clear(),_}}function o(t,s,i){return t<s?s-t:t<=i?0:t-i}function r(t,s){let i=0,e=s.length-1;for(;i<e;){const h=i+e>>1;s[h]>t?e=h:i=h+1}return s[i]}function a(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],d=s[o+2],x=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=d,s[r+3]=x;const l=i[e];i[e]=i[h],i[h]=l}function _(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let d=t^s,x=e|65535^(d|i);return d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),(x<<1|d)>>>0}i.default=n},n function _(s,t,i){Object.defineProperty(i,"__esModule",{value:!0});i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length–,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h<i;){let s=1+(h<<1);const i=s+1;let e=this.ids[s],l=this.values[s];const n=this.values[i];if(i<this.length&&n<l&&(s=i,e=this.ids[i],l=n),l>=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const s=t(1),i=t(99),r=s.__importStar(t(18)),a=t(24),o=t(9),p=t(8),g=t(11);function c(t,e,n=0){const s=new Map;for(let i=0;i<t.length;i++){const r=t[i];if(s.has(r))throw new Error("duplicate factor or subfactor: "+r);s.set(r,{value:.5+i*(1+e)+n})}return[s,(t.length-1)*e]}function l(t,e,n,s=0){var i;const r=new Map,a=new Map;for(const[e,n]of t){const t=null!==(i=a.get(e))&&void 0!==i?i:[];a.set(e,[…t,n])}let p=s,g=0;for(const[t,s]of a){const i=s.length,[a,l]=c(s,n,p);g+=l;const u=o.sum(s.map(t=>a.get(t).value));r.set(t,{value:u/i,mapping:a}),p+=i+e+l}return[r,(a.size-1)*e+g]}function u(t,e,n,s,i=0){var r;const a=new Map,p=new Map;for(const[e,n,s]of t){const t=null!==(r=p.get(e))&&void 0!==r?r:[];p.set(e,[…t,[n,s]])}let g=i,c=0;for(const[t,i]of p){const r=i.length,[p,u]=l(i,n,s,g);c+=u;const h=o.sum(i.map(([t])=>p.get(t).value));a.set(t,{value:h/r,mapping:p}),g+=r+e+u}return[a,(p.size-1)*e+c]}n.map_one_level=c,n.map_two_levels=l,n.map_three_levels=u;class h extends i.Range{constructor(t){super(t)}static init_FactorRange(){this.define({factors:[r.Array,[]],factor_padding:[r.Number,0],subgroup_padding:[r.Number,.8],group_padding:[r.Number,1.4],range_padding:[r.Number,0],range_padding_units:[r.PaddingUnits,"percent"],start:[r.Number],end:[r.Number]}),this.internal({levels:[r.Number],mids:[r.Array,null],tops:[r.Array,null]})}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,()=>this.reset()),this.connect(this.properties.factor_padding.change,()=>this.reset()),this.connect(this.properties.group_padding.change,()=>this.reset()),this.connect(this.properties.subgroup_padding.change,()=>this.reset()),this.connect(this.properties.range_padding.change,()=>this.reset()),this.connect(this.properties.range_padding_units.change,()=>this.reset())}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[e]=t,n=this._mapping.get(e);return null!=n?n.value:NaN}case 2:{const[e,n]=t,s=this._mapping.get(e);if(null!=s){const t=s.mapping.get(n);if(null!=t)return t.value}return NaN}case 3:{const[e,n,s]=t,i=this._mapping.get(e);if(null!=i){const t=i.mapping.get(n);if(null!=t){const e=t.mapping.get(s);if(null!=e)return e.value}}return NaN}default:g.unreachable()}}synthetic(t){if(p.isNumber(t))return t;if(p.isString(t))return this._lookup([t]);let e=0;const n=t[t.length-1];return p.isNumber(n)&&(e=n,t=t.slice(0,-1)),this._lookup(t)+e}v_synthetic(t){const e=t.length,n=new a.NumberArray(e);for(let s=0;s<e;s++)n[s]=this.synthetic(t[s]);return n}_init(t){const{levels:e,mapping:n,tops:s,mids:i,inside_padding:r}=(()=>{if(o.every(this.factors,p.isString)){const t=this.factors,[e,n]=c(t,this.factor_padding);return{levels:1,mapping:e,tops:null,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&2==t.length&&p.isString(t[0])&&p.isString(t[1]))){const t=this.factors,[e,n]=l(t,this.group_padding,this.factor_padding),s=[…e.keys()];return{levels:2,mapping:e,tops:s,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&3==t.length&&p.isString(t[0])&&p.isString(t[1])&&p.isString(t[2]))){const t=this.factors,[e,n]=u(t,this.group_padding,this.subgroup_padding,this.factor_padding),s=[…e.keys()],i=[];for(const[t,n]of e)for(const e of n.mapping.keys())i.push([t,e]);return{levels:3,mapping:e,tops:s,mids:i,inside_padding:n}}g.unreachable()})();this._mapping=n,this.tops=s,this.mids=i;let a=0,h=this.factors.length+r;if("percent"==this.range_padding_units){const t=(h-a)*this.range_padding/2;a-=t,h+=t}else a-=this.range_padding,h+=this.range_padding;this.setv({start:a,end:h,levels:e},{silent:t}),"auto"==this.bounds&&this.setv({bounds:[a,h]},{silent:!0})}}n.FactorRange=h,h.__name__="FactorRange",h.init_FactorRange()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(81),a=n.__importStar(e(18));class r extends s.Model{constructor(e){super(e),this.have_updated_interactively=!1}static init_Range(){this.define({bounds:[a.Any],min_interval:[a.Any],max_interval:[a.Any]}),this.internal({plots:[a.Array,[]]})}get is_reversed(){return this.start>this.end}get is_valid(){return!isNaN(this.min)&&!isNaN(this.max)}}i.Range=r,r.__name__="Range",r.init_Range()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1).__importStar(e(101));i.generic_line_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){t.save(),t.beginPath(),t.moveTo(i,(c+o)/2),t.lineTo(n,(c+o)/2),e.line.doit&&(e.line.set_vectorize(t,r),t.stroke()),t.restore()},i.generic_area_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){const l=.1*Math.abs(n-i),a=.1*Math.abs(o-c),s=i+l,_=n-l,h=c+a,v=o-a;e.fill.doit&&(e.fill.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),null!=e.hatch&&e.hatch.doit&&(e.hatch.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),e.line&&e.line.doit&&(t.beginPath(),t.rect(s,h,_-s,v-h),e.line.set_vectorize(t,r),t.stroke())},i.line_interpolation=function(e,t,i,c,o,r){const{sx:l,sy:a}=t;let s,_,h,v;"point"==t.type?([h,v]=e.yscale.r_invert(a-1,a+1),[s,_]=e.xscale.r_invert(l-1,l+1)):"v"==t.direction?([h,v]=e.yscale.r_invert(a,a),[s,_]=[Math.min(i-1,o-1),Math.max(i+1,o+1)]):([s,_]=e.xscale.r_invert(l,l),[h,v]=[Math.min(c-1,r-1),Math.max(c+1,r+1)]);const{x,y}=n.check_2_segments_intersect(s,h,_,v,i,c,o,r);return[x,y]}},n function _(t,n,e){function i(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function r(t,n,e){const r=i(n,e);if(0==r)return i(t,n);const s=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/r;if(s<0)return i(t,n);if(s>1)return i(t,e);return i(t,{x:n.x+s*(e.x-n.x),y:n.y+s*(e.y-n.y)})}Object.defineProperty(e,"__esModule",{value:!0}),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u<e.length;u++){const c=e[u],_=i[u];o<n!=_<n&&s+(n-o)/(_-o)*(c-s)<t&&(r=!r),s=c,o=_}return r},e.point_in_ellipse=function(t,n,e,i,r,s,o){return((Math.cos(e)/r)**2+(Math.sin(e)/i)**2)*(t-s)**2+2*Math.cos(e)*Math.sin(e)*((1/r)**2-(1/i)**2)*(t-s)*(n-o)+((Math.cos(e)/i)**2+(Math.sin(e)/r)**2)*(n-o)**2<=1},e.dist_2_pts=i,e.dist_to_segment_squared=r,e.dist_to_segment=function(t,n,e){return Math.sqrt(r(t,n,e))},e.check_2_segments_intersect=function(t,n,e,i,r,s,o,u){const c=(u-s)*(e-t)-(o-r)*(i-n);if(0==c)return{hit:!1,x:null,y:null};{let _=n-s,l=t-r;const y=(e-t)*_-(i-n)*l;_=((o-r)*_-(u-s)*l)/c,l=y/c;return{hit:_>0&&_<1&&l>0&&l<1,x:t+_*(e-t),y:n+_*(i-n)}}}},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(103),a=t(107),n=t(108),o=t(109),_=t(22);class h{constructor(t){this._atlas=new Map,this._width=256,this._height=256,this.tex=new i.Texture2d(t),this.tex.set_wrapping(t.REPEAT,t.REPEAT),this.tex.set_interpolation(t.NEAREST,t.NEAREST),this.tex.set_size([this._width,this._height],t.RGBA),this.tex.set_data([0,0],[this._width,this._height],new Uint8Array(4*this._width*this._height)),this.get_atlas_data([1])}get_atlas_data(t){const e=t.join("-");let s=this._atlas.get(e);if(null==s){const[i,a]=this.make_pattern(t),n=this._atlas.size;this.tex.set_data([0,n],[this._width,1],new Uint8Array(i.map(t=>t+10))),s=[n/this._height,a],this._atlas.set(e,s)}return s}make_pattern(t){t.length>1&&t.length%2&&(t=t.concat(t));let e=0;for(const s of t)e+=s;const s=[];let i=0;for(let e=0,a=t.length+2;e<a;e+=2){const a=Math.max(1e-4,t[e%t.length]),n=Math.max(1e-4,t[(e+1)%t.length]);s.push(i,i+a),i+=a+n}const a=this._width,n=new Float32Array(4*a);for(let t=0,i=a;t<i;t++){let i,o,_;const h=e*t/(a-1);let r=0,l=1e16;for(let t=0,e=s.length;t<e;t++){const e=Math.abs(s[t]-h);e<l&&(r=t,l=e)}r%2==0?(_=h<=s[r]?1:0,o=s[r],i=s[r+1]):(_=h>s[r]?-1:0,o=s[r-1],i=s[r]),n[4*t+0]=s[r],n[4*t+1]=_,n[4*t+2]=o,n[4*t+3]=i}return[n,e]}}h.__name__="DashAtlas";const r={miter:0,round:1,bevel:2},l={"":0,none:0,".":0,round:1,")":1,"(":1,o:1,"triangle in":2,"<":2,"triangle out":3,">":3,square:4,"[":4,"]":4,"=":4,butt:5,"|\":5};class g extends a.BaseGLGlyph{init(){const{gl:t}=this;this._scale_aspect=0;const e=n.vertex_shader,s=o.fragment_shader;this.prog=new i.Program(t),this.prog.set_shaders(e,s),this.index_buffer=new i.IndexBuffer(t),this.vbo_position=new i.VertexBuffer(t),this.vbo_tangents=new i.VertexBuffer(t),this.vbo_segment=new i.VertexBuffer(t),this.vbo_angles=new i.VertexBuffer(t),this.vbo_texcoord=new i.VertexBuffer(t),this.dash_atlas=new h(t)}draw(t,e,s){const i=e.glglyph;if(i.data_changed&&(i._set_data(),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(),this.visuals_changed=!1),i._update_scale(1,1),this._scale_aspect=1,this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord),this.prog.set_uniform(\"u_length\",\"float\",[i.cumsum]),this.prog.set_texture(\"u_dash_atlas\",this.dash_atlas.tex),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_uniform(\"u_scale_aspect\",\"vec2\",[1,1]),this.prog.set_uniform(\"u_scale_length\",\"float\",[Math.sqrt(2)]),this.I_triangles=i.I_triangles,this.I_triangles.length<65535)this.index_buffer.set_size(2*this.I_triangles.length),this.index_buffer.set_data(0,new Uint16Array(this.I_triangles)),this.prog.draw(this.gl.TRIANGLES,this.index_buffer);else{t=Array.from(this.I_triangles);const e=this.I_triangles.length,s=64008,a=[];for(let t=0,i=Math.ceil(e/s);t<i;t++)a.push([]);for(let e=0,i=t.length;e<i;e++){const i=t[e]%s;a[Math.floor(t[e]/s)].push(i)}for(let t=0,e=a.length;t<e;t++){const e=new Uint16Array(a[t]),n=t*s*4;0!==e.length&&(this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position,0,2*n),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents,0,4*n),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment,0,2*n),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles,0,2*n),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord,0,2*n),this.index_buffer.set_size(2*e.length),this.index_buffer.set_data(0,e),this.prog.draw(this.gl.TRIANGLES,this.index_buffer))}}}_set_data(){this._bake(),this.vbo_position.set_size(4*this.V_position.length),this.vbo_position.set_data(0,this.V_position),this.vbo_tangents.set_size(4*this.V_tangents.length),this.vbo_tangents.set_data(0,this.V_tangents),this.vbo_angles.set_size(4*this.V_angles.length),this.vbo_angles.set_data(0,this.V_angles),this.vbo_texcoord.set_size(4*this.V_texcoord.length),this.vbo_texcoord.set_data(0,this.V_texcoord)}_set_visuals(){const t=_.color2rgba(this.glyph.visuals.line.line_color.value(),this.glyph.visuals.line.line_alpha.value()),e=l[this.glyph.visuals.line.line_cap.value()],s=r[this.glyph.visuals.line.line_join.value()];this.prog.set_uniform(\"u_color\",\"vec4\",t),this.prog.set_uniform(\"u_linewidth\",\"float\",[this.glyph.visuals.line.line_width.value()]),this.prog.set_uniform(\"u_antialias\",\"float\",[.9]),this.prog.set_uniform(\"u_linecaps\",\"vec2\",[e,e]),this.prog.set_uniform(\"u_linejoin\",\"float\",[s]),this.prog.set_uniform(\"u_miter_limit\",\"float\",[10]);const i=this.glyph.visuals.line.line_dash.value();let a=0,n=1;i.length&&([a,n]=this.dash_atlas.get_atlas_data(i)),this.prog.set_uniform(\"u_dash_index\",\"float\",[a]),this.prog.set_uniform(\"u_dash_phase\",\"float\",[this.glyph.visuals.line.line_dash_offset.value()]),this.prog.set_uniform(\"u_dash_period\",\"float\",[n]),this.prog.set_uniform(\"u_dash_caps\",\"vec2\",[e,e]),this.prog.set_uniform(\"u_closed\",\"float\",[0])}_bake(){let t,e,s,i,a,n,o,_;const h=this.nvertices,r=this.glyph.sx,l=this.glyph.sy,g=o=new Float32Array(2*h),u=new Float32Array(2*h),f=_=new Float32Array(4*h);for(let t=0,e=h;t<e;t++)g[2*t+0]=r[t],g[2*t+1]=l[t];this.tangents=e=new Float32Array(2*h-2);for(let t=0,s=h-1;t<s;t++)e[2*t+0]=o[2*(t+1)+0]-o[2*t+0],e[2*t+1]=o[2*(t+1)+1]-o[2*t+1];for(let t=0,s=h-1;t<s;t++)f[4*(t+1)+0]=e[2*t+0],f[4*(t+1)+1]=e[2*t+1],f[4*t+2]=e[2*t+0],f[4*t+3]=e[2*t+1];f[0]=e[0],f[1]=e[1],f[4*(h-1)+2]=e[2*(h-2)+0],f[4*(h-1)+3]=e[2*(h-2)+1];const c=new Float32Array(h);for(let t=0,e=h;t<e;t++)c[t]=Math.atan2(_[4*t+0]*_[4*t+3]-_[4*t+1]*_[4*t+2],_[4*t+0]*_[4*t+2]+_[4*t+1]*_[4*t+3]);for(let t=0,e=h-1;t<e;t++)u[2*t+0]=c[t],u[2*t+1]=c[t+1];const p=4*h-4;this.V_position=i=new Float32Array(2*p),this.V_angles=s=new Float32Array(2*p),this.V_tangents=a=new Float32Array(4*p),this.V_texcoord=n=new Float32Array(2*p);for(let t=0,e=h;t<e;t++)for(let e=0;e<4;e++){for(let a=0;a<2;a++)i[2*(4*t+e-2)+a]=g[2*t+a],s[2*(4*t+e)+a]=u[2*t+a];for(let s=0;s<4;s++)a[4*(4*t+e-2)+s]=f[4*t+s]}for(let t=0,e=h;t<e;t++)n[2*(4*t+0)+0]=-1,n[2*(4*t+1)+0]=-1,n[2*(4*t+2)+0]=1,n[2*(4*t+3)+0]=1,n[2*(4*t+0)+1]=-1,n[2*(4*t+1)+1]=1,n[2*(4*t+2)+1]=-1,n[2*(4*t+3)+1]=1;const d=6*(h-1);this.I_triangles=t=new Uint32Array(d);for(let e=0,s=h;e<s;e++)t[6*e+0]=0+4*e,t[6*e+1]=1+4*e,t[6*e+2]=3+4*e,t[6*e+3]=2+4*e,t[6*e+4]=0+4*e,t[6*e+5]=3+4*e}_update_scale(t,e){let s;const i=this.nvertices,a=4*i-4,n=this.tangents,o=new Float32Array(i-1),_=new Float32Array(2*i);this.V_segment=s=new Float32Array(2*a);for(let s=0,a=i-1;s<a;s++)o[s]=Math.sqrt((n[2*s+0]*t)**2+(n[2*s+1]*e)**2);let h=0;for(let t=0,e=i-1;t<e;t++)h+=o[t],_[2*(t+1)+0]=h,_[2*t+1]=h;for(let t=0,e=i;t<e;t++)for(let e=0;e<4;e++)for(let i=0;i<2;i++)s[2*(4*t+e)+i]=_[2*t+i];this.cumsum=h,this.vbo_segment.set_size(4*this.V_segment.length),this.vbo_segment.set_data(0,this.V_segment)}}s.LineGL=g,g.__name__=\"LineGL\"},\n function _(e,r,f){Object.defineProperty(f,\"__esModule\",{value:!0});var u=e(104);f.Program=u.Program;var t=e(106);f.Texture2d=t.Texture2d;var a=e(105);f.IndexBuffer=a.IndexBuffer,f.VertexBuffer=a.VertexBuffer},\n function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(105);class a{constructor(t){this.gl=t,this.UTYPEMAP={float:\"uniform1fv\",vec2:\"uniform2fv\",vec3:\"uniform3fv\",vec4:\"uniform4fv\",int:\"uniform1iv\",ivec2:\"uniform2iv\",ivec3:\"uniform3iv\",ivec4:\"uniform4iv\",bool:\"uniform1iv\",bvec2:\"uniform2iv\",bvec3:\"uniform3iv\",bvec4:\"uniform4iv\",mat2:\"uniformMatrix2fv\",mat3:\"uniformMatrix3fv\",mat4:\"uniformMatrix4fv\",sampler1D:\"uniform1i\",sampler2D:\"uniform1i\",sampler3D:\"uniform1i\"},this.ATYPEMAP={float:\"vertexAttrib1f\",vec2:\"vertexAttrib2f\",vec3:\"vertexAttrib3f\",vec4:\"vertexAttrib4f\"},this.ATYPEINFO={float:[1,5126],vec2:[2,5126],vec3:[3,5126],vec4:[4,5126]},this._linked=!1,this._validated=!1,this._unset_variables=new Set,this._known_invalid=new Set,this._locations=new Map,this._samplers=new Map,this._attributes=new Map,this.handle=this.gl.createProgram()}delete(){this.gl.deleteProgram(this.handle)}activate(){this.gl.useProgram(this.handle)}deactivate(){this.gl.useProgram(0)}set_shaders(t,e){const i=this.gl;this._linked=!1;const s=i.createShader(i.VERTEX_SHADER),a=i.createShader(i.FRAGMENT_SHADER),r=[[t,s,\"vertex\"],[e,a,\"fragment\"]];for(const[t,e,s]of r){i.shaderSource(e,t),i.compileShader(e);if(!i.getShaderParameter(e,i.COMPILE_STATUS)){const t=i.getShaderInfoLog(e);throw new Error(`errors in ${s} shader:\\n${t}`)}}if(i.attachShader(this.handle,s),i.attachShader(this.handle,a),i.linkProgram(this.handle),!i.getProgramParameter(this.handle,i.LINK_STATUS)){const t=i.getProgramInfoLog(this.handle);throw new Error(\"Program link error:\\n\"+t)}this._unset_variables=this._get_active_attributes_and_uniforms(),i.detachShader(this.handle,s),i.detachShader(this.handle,a),i.deleteShader(s),i.deleteShader(a),this._known_invalid.clear(),this._linked=!0}_get_active_attributes_and_uniforms(){const t=this.gl;this._locations.clear();const e=new RegExp(\"(\\\\w+)\\\\s*(\\\\[(\\\\d+)\\\\])\\\\s*\"),i=t.getProgramParameter(this.handle,t.ACTIVE_UNIFORMS),s=[],a=[],r=[[s,t.getProgramParameter(this.handle,t.ACTIVE_ATTRIBUTES),t.getActiveAttrib,t.getAttribLocation],[a,i,t.getActiveUniform,t.getUniformLocation]];for(const[i,s,a,n]of r)for(let r=0;r<s;r+=1){const s=a.call(t,this.handle,r),o=s.name,h=o.match(e);if(null!=h){const t=h[1];for(let e=0;e<s.size;e+=1)i.push([`${t}[${e}]`,s.type])}else i.push([o,s.type]);this._locations.set(o,n.call(t,this.handle,o))}const n=new Set;for(const[t]of s)n.add(t);for(const[t]of a)n.add(t);return n}set_texture(t,e){var i;if(!this._linked)throw new Error(\"Cannot set uniform when program has no code\");const s=null!==(i=this._locations.get(t))&&void 0!==i?i:-1;if(s<0)this._known_invalid.has(t)||(this._known_invalid.add(t),console.log(`\"Variable ${t} is not an active texture`));else{this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate();{let i=this._samplers.size;this._samplers.has(t)&&(i=this._samplers.get(t)[2]),this._samplers.set(t,[e._target,e.handle,i]),this.gl.uniform1i(s,i)}}}set_uniform(t,e,i){var s;if(!this._linked)throw new Error(\"Cannot set uniform when program has no code\");const a=null!==(s=this._locations.get(t))&&void 0!==s?s:-1;if(a<0)return void(this._known_invalid.has(t)||(this._known_invalid.add(t),console.log(`Variable ${t} is not an active uniform`)));this._unset_variables.has(t)&&this._unset_variables.delete(t);let r=1;if(!e.startsWith(\"mat\")){const t=\"int\"==e||"bool"==e?"float":e.replace(/^ib/,"");r=Math.floor(i.length/this.ATYPEINFO[t][0])}if(r>1)for(let e=0;e<r;e+=1)if(this._unset_variables.has(${t}[${e}])){const i=`${t}[${e}]`;this._unset_variables.has(i)&&this._unset_variables.delete(i)}const n=this.UTYPEMAP[e];this.activate(),e.startsWith("mat")?this.gl[n](a,!1,i):this.gl[n](a,i)}set_attribute(t,e,i,a=0,r=0){var n;if(!this._linked)throw new Error("Cannot set attribute when program has no code");const o=null!==(n=this._locations.get(t))&&void 0!==n?n:-1;if(o<0)this._known_invalid.has(t)||(this._known_invalid.add(t),i instanceof s.VertexBuffer&&r>0||console.log(Variable ${t} is not an active attribute));else if(this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate(),i instanceof s.VertexBuffer){const[s,n]=this.ATYPEINFO[e],h="vertexAttribPointer",l=[s,n,!1,a,r];this._attributes.set(t,[i.handle,o,h,l])}else{const s=this.ATYPEMAP[e];this._attributes.set(t,[null,o,s,i])}}_pre_draw(){this.activate();for(const[t,e,i]of this._samplers.values())this.gl.activeTexture(this.gl.TEXTURE0+i),this.gl.bindTexture(t,e);for(const[t,e,i,s]of this._attributes.values())null!=t?(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,t),this.gl.enableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,…s])):(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,…s]));this._validated||(this._validated=!0,this._validate())}_validate(){if(this._unset_variables.size&&console.log("Program has unset variables: "+this._unset_variables),this.gl.validateProgram(this.handle),!this.gl.getProgramParameter(this.handle,this.gl.VALIDATE_STATUS))throw console.log(this.gl.getProgramInfoLog(this.handle)),new Error("Program validation error")}draw(t,e){if(!this._linked)throw new Error("Cannot draw program if code has not been set");if(e instanceof s.IndexBuffer){this._pre_draw(),e.activate();const i=e.buffer_size/2,s=this.gl.UNSIGNED_SHORT;this.gl.drawElements(t,i,s,0),e.deactivate()}else{const[i,s]=e;0!=s&&(this._pre_draw(),this.gl.drawArrays(t,i,s))}}}i.Program=a,a.__name__="Program"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class i{constructor(e){this.gl=e,this._usage=35048,this.buffer_size=0,this.handle=this.gl.createBuffer()}delete(){this.gl.deleteBuffer(this.handle)}activate(){this.gl.bindBuffer(this._target,this.handle)}deactivate(){this.gl.bindBuffer(this._target,null)}set_size(e){e!=this.buffer_size&&(this.activate(),this.gl.bufferData(this._target,e,this._usage),this.buffer_size=e)}set_data(e,t){this.activate(),this.gl.bufferSubData(this._target,e,t)}}s.Buffer=i,i.__name__="Buffer";class r extends i{constructor(){super(…arguments),this._target=34962}}s.VertexBuffer=r,r.__name__="VertexBuffer";class a extends i{constructor(){super(…arguments),this._target=34963}}s.IndexBuffer=a,a.__name__="IndexBuffer"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const a=t(11);class r{constructor(t){this.gl=t,this._target=3553,this._types={Int8Array:5120,Uint8Array:5121,Int16Array:5122,Uint16Array:5123,Int32Array:5124,Uint32Array:5125,Float32Array:5126},this.handle=this.gl.createTexture()}delete(){this.gl.deleteTexture(this.handle)}activate(){this.gl.bindTexture(this._target,this.handle)}deactivate(){this.gl.bindTexture(this._target,0)}_get_alignment(t){const e=[4,8,2,1];for(const i of e)if(t%i==0)return i;a.unreachable()}set_wrapping(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_S,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_T,e)}set_interpolation(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_MIN_FILTER,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_MAG_FILTER,e)}set_size([t,e],i){var a,r,s;t==(null===(a=this._shape_format)||void 0===a?void 0:a.width)&&e==(null===(r=this._shape_format)||void 0===r?void 0:r.height)&&i==(null===(s=this._shape_format)||void 0===s?void 0:s.format)||(this._shape_format={width:t,height:e,format:i},this.activate(),this.gl.texImage2D(this._target,0,i,t,e,0,i,this.gl.UNSIGNED_BYTE,null))}set_data(t,[e,i],a){this.activate();const{format:r}=this._shape_format,[s,h]=t,l=this._types[a.constructor.name];if(null==l)throw new Error(Type ${a.constructor.name} not allowed for texture);const _=this._get_alignment(e);4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,_),this.gl.texSubImage2D(this._target,0,s,h,e,i,r,l,a),4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,4)}}i.Texture2d=r,r.__name__="Texture2d"},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});class s{constructor(e,t){this.gl=e,this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.init()}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,i){if(0==t.length)return!0;const{width:s,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:s,height:h};return this.draw(t,i,a),!0}}i.BaseGLGlyph=s,s.__name__="BaseGLGlyph"},n function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.vertex_shader="\nprecision mediump float;\n\nconst float PI = 3.14159265358979323846264;\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\n\nuniform float u_pixel_ratio;\nuniform vec2 u_canvas_size, u_offset;\nuniform vec2 u_scale_aspect;\nuniform float u_scale_length;\n\nuniform vec4 u_color;\nuniform float u_antialias;\nuniform float u_length;\nuniform float u_linewidth;\nuniform float u_dash_index;\nuniform float u_closed;\n\nattribute vec2 a_position;\nattribute vec4 a_tangents;\nattribute vec2 a_segment;\nattribute vec2 a_angles;\nattribute vec2 a_texcoord;\n\nvarying vec4 v_color;\nvarying vec2 v_segment;\nvarying vec2 v_angles;\nvarying vec2 v_texcoord;\nvarying vec2 v_miter;\nvarying float v_length;\nvarying float v_linewidth;\n\nfloat cross(in vec2 v1, in vec2 v2)\n{\n return v1.x*v2.y - v1.y*v2.x;\n}\n\nfloat signed_distance(in vec2 v1, in vec2 v2, in vec2 v3)\n{\n return cross(v2-v1,v1-v3) / length(v2-v1);\n}\n\nvoid rotate( in vec2 v, in float alpha, out vec2 result )\n{\n float c = cos(alpha);\n float s = sin(alpha);\n result = vec2( c*v.x - s*v.y,\n s*v.x + c*v.y );\n}\n\nvoid main()\n{\n bool closed = (u_closed > 0.0);\n\n // Attributes and uniforms to varyings\n v_color = u_color;\n v_linewidth = u_linewidth;\n v_segment = a_segment * u_scale_length;\n v_length = u_length * u_scale_length;\n\n // Scale to map to pixel coordinates. The original algorithm from the paper\n // assumed isotropic scale. We obviously do not have this.\n vec2 abs_scale_aspect = abs(u_scale_aspect);\n vec2 abs_scale = u_scale_length * abs_scale_aspect;\n\n // Correct angles for aspect ratio\n vec2 av;\n av = vec2(1.0, tan(a_angles.x)) / abs_scale_aspect;\n v_angles.x = atan(av.y, av.x);\n av = vec2(1.0, tan(a_angles.y)) / abs_scale_aspect;\n v_angles.y = atan(av.y, av.x);\n\n // Thickness below 1 pixel are represented using a 1 pixel thickness\n // and a modified alpha\n v_color.a = min(v_linewidth, v_color.a);\n v_linewidth = max(v_linewidth, 1.0);\n\n // If color is fully transparent we just will discard the fragment anyway\n if( v_color.a <= 0.0 ) {\n gl_Position = vec4(0.0,0.0,0.0,1.0);\n return;\n }\n\n // This is the actual half width of the line\n float w = ceil(u_antialias+v_linewidth)/2.0;\n\n vec2 position = a_position;\n\n vec2 t1 = normalize(a_tangents.xy * abs_scale_aspect); // note the scaling for aspect ratio here\n vec2 t2 = normalize(a_tangents.zw * abs_scale_aspect);\n float u = a_texcoord.x;\n float v = a_texcoord.y;\n vec2 o1 = vec2( +t1.y, -t1.x);\n vec2 o2 = vec2( +t2.y, -t2.x);\n\n // This is a join\n // —————————————————————-\n if( t1 != t2 ) {\n float angle = atan (t1.x*t2.y-t1.y*t2.x, t1.x*t2.x+t1.y*t2.y); // Angle needs recalculation for some reason\n vec2 t = normalize(t1+t2);\n vec2 o = vec2( + t.y, - t.x);\n\n if ( u_dash_index > 0.0 )\n {\n // Broken angle\n // —————————————————————-\n if( (abs(angle) > THETA) ) {\n position += v * w * o / cos(angle/2.0);\n float s = sign(angle);\n if( angle < 0.0 ) {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n if( v == 1.0 ) {\n position -= 2.0 * w * t1 / sin(angle);\n u -= 2.0 * w / sin(angle);\n }\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n if( v == 1.0 ) {\n position += 2.0 * w * t2 / sin(angle);\n u += 2.0*w / sin(angle);\n }\n }\n } else {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n if( v == -1.0 ) {\n position += 2.0 * w * t1 / sin(angle);\n u += 2.0 * w / sin(angle);\n }\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n if( v == -1.0 ) {\n position -= 2.0 * w * t2 / sin(angle);\n u -= 2.0*w / sin(angle);\n }\n }\n }\n // Continuous angle\n // ————————————————————\n } else {\n position += v * w * o / cos(angle/2.0);\n if( u == +1.0 ) u = v_segment.y;\n else u = v_segment.x;\n }\n }\n\n // Solid line\n // ——————————————————————–\n else\n {\n position.xy += v * w * o / cos(angle/2.0);\n if( angle < 0.0 ) {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n }\n } else {\n if( u == +1.0 ) {\n u = v_segment.y + v * w * tan(angle/2.0);\n } else {\n u = v_segment.x - v * w * tan(angle/2.0);\n }\n }\n }\n\n // This is a line start or end (t1 == t2)\n // ————————————————————————\n } else {\n position += v * w * o1;\n if( u == -1.0 ) {\n u = v_segment.x - w;\n position -= w * t1;\n } else {\n u = v_segment.y + w;\n position += w * t2;\n }\n }\n\n // Miter distance\n // ————————————————————————\n vec2 t;\n vec2 curr = a_position * abs_scale;\n if( a_texcoord.x < 0.0 ) {\n vec2 next = curr + t2*(v_segment.y-v_segment.x);\n\n rotate( t1, +v_angles.x/2.0, t);\n v_miter.x = signed_distance(curr, curr+t, position);\n\n rotate( t2, +v_angles.y/2.0, t);\n v_miter.y = signed_distance(next, next+t, position);\n } else {\n vec2 prev = curr - t1*(v_segment.y-v_segment.x);\n\n rotate( t1, -v_angles.x/2.0,t);\n v_miter.x = signed_distance(prev, prev+t, position);\n\n rotate( t2, -v_angles.y/2.0,t);\n v_miter.y = signed_distance(curr, curr+t, position);\n }\n\n if (!closed && v_segment.x <= 0.0) {\n v_miter.x = 1e10;\n }\n if (!closed && v_segment.y >= v_length)\n {\n v_miter.y = 1e10;\n }\n\n v_texcoord = vec2( u, v*w );\n\n // Calculate position in device coordinates. Note that we\n // already scaled with abs scale above.\n vec2 normpos = position * sign(u_scale_aspect);\n normpos += 0.5; // make up for Bokeh’s offset\n normpos /= u_canvas_size / u_pixel_ratio; // in 0..1\n gl_Position = vec4(normpos*2.0-1.0, 0.0, 1.0);\n gl_Position.y = -1.0;\n}\n"},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.fragment_shader="\nprecision mediump float;\n\nconst float PI = 3.14159265358979323846264;\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\n\nuniform sampler2D u_dash_atlas;\n\nuniform vec2 u_linecaps;\nuniform float u_miter_limit;\nuniform float u_linejoin;\nuniform float u_antialias;\nuniform float u_dash_phase;\nuniform float u_dash_period;\nuniform float u_dash_index;\nuniform vec2 u_dash_caps;\nuniform float u_closed;\n\nvarying vec4 v_color;\nvarying vec2 v_segment;\nvarying vec2 v_angles;\nvarying vec2 v_texcoord;\nvarying vec2 v_miter;\nvarying float v_length;\nvarying float v_linewidth;\n\n// Compute distance to cap —————————————————-\nfloat cap( int type, float dx, float dy, float t, float linewidth )\n{\n float d = 0.0;\n dx = abs(dx);\n dy = abs(dy);\n if (type == 0) discard; // None\n else if (type == 1) d = sqrt(dx*dx+dy*dy); // Round\n else if (type == 3) d = (dx+abs(dy)); // Triangle in\n else if (type == 2) d = max(abs(dy),(t+dx-abs(dy))); // Triangle out\n else if (type == 4) d = max(dx,dy); // Square\n else if (type == 5) d = max(dx+t,dy); // Butt\n return d;\n}\n\n// Compute distance to join ————————————————-\nfloat join( in int type, in float d, in vec2 segment, in vec2 texcoord, in vec2 miter,\n in float linewidth )\n{\n // texcoord.x is distance from start\n // texcoord.y is distance from centerline\n // segment.x and y indicate the limits (as for texcoord.x) for this segment\n\n float dx = texcoord.x;\n\n // Round join\n if( type == 1 ) {\n if (dx < segment.x) {\n d = max(d,length( texcoord - vec2(segment.x,0.0)));\n //d = length( texcoord - vec2(segment.x,0.0));\n } else if (dx > segment.y) {\n d = max(d,length( texcoord - vec2(segment.y,0.0)));\n //d = length( texcoord - vec2(segment.y,0.0));\n }\n }\n // Bevel join\n else if ( type == 2 ) {\n if (dx < segment.x) {\n vec2 x = texcoord - vec2(segment.x,0.0);\n d = max(d, max(abs(x.x), abs(x.y)));\n\n } else if (dx > segment.y) {\n vec2 x = texcoord - vec2(segment.y,0.0);\n d = max(d, max(abs(x.x), abs(x.y)));\n }\n / Original code for bevel which does not work for us\n if( (dx < segment.x) || (dx > segment.y) )\n d = max(d, min(abs(x.x),abs(x.y)));\n /\n }\n\n return d;\n}\n\nvoid main()\n{\n // If color is fully transparent we just discard the fragment\n if( v_color.a <= 0.0 ) {\n discard;\n }\n\n // Test if dash pattern is the solid one (0)\n bool solid = (u_dash_index == 0.0);\n\n // Test if path is closed\n bool closed = (u_closed > 0.0);\n\n vec4 color = v_color;\n float dx = v_texcoord.x;\n float dy = v_texcoord.y;\n float t = v_linewidth/2.0-u_antialias;\n float width = 1.0; //v_linewidth; original code had dashes scale with line width, we do not\n float d = 0.0;\n\n vec2 linecaps = u_linecaps;\n vec2 dash_caps = u_dash_caps;\n float line_start = 0.0;\n float line_stop = v_length;\n\n // Apply miter limit; fragments too far into the miter are simply discarded\n if( (dx < v_segment.x) || (dx > v_segment.y) ) {\n float into_miter = max(v_segment.x - dx, dx - v_segment.y);\n if (into_miter > u_miter_limit*v_linewidth/2.0)\n discard;\n }\n\n // Solid line ————————————————————–\n if( solid ) {\n d = abs(dy);\n if( (!closed) && (dx < line_start) ) {\n d = cap( int(u_linecaps.x), abs(dx), abs(dy), t, v_linewidth );\n }\n else if( (!closed) && (dx > line_stop) ) {\n d = cap( int(u_linecaps.y), abs(dx)-line_stop, abs(dy), t, v_linewidth );\n }\n else {\n d = join( int(u_linejoin), abs(dy), v_segment, v_texcoord, v_miter, v_linewidth );\n }\n\n // Dash line ————————————————————–\n } else {\n float segment_start = v_segment.x;\n float segment_stop = v_segment.y;\n float segment_center= (segment_start+segment_stop)/2.0;\n float freq = u_dash_period*width;\n float u = mod( dx + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n float dash_center= tex.x * width;\n float dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n float dash_start = dx - u + _start;\n float dash_stop = dx - u + _stop;\n\n // Compute extents of the first dash (the one relative to v_segment.x)\n // Note: this could be computed in the vertex shader\n if( (dash_stop < segment_start) && (dash_caps.x != 5.0) ) {\n float u = mod(segment_start + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n dash_center= tex.x * width;\n //dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n dash_start = segment_start - u + _start;\n dash_stop = segment_start - u + _stop;\n }\n\n // Compute extents of the last dash (the one relatives to v_segment.y)\n // Note: This could be computed in the vertex shader\n else if( (dash_start > segment_stop) && (dash_caps.y != 5.0) ) {\n float u = mod(segment_stop + u_dash_phase*width, freq);\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\n dash_center= tex.x * width;\n //dash_type = tex.y;\n float _start = tex.z * width;\n float _stop = tex.a * width;\n dash_start = segment_stop - u + _start;\n dash_stop = segment_stop - u + _stop;\n }\n\n // This test if the we are dealing with a discontinuous angle\n bool discontinuous = ((dx < segment_center) && abs(v_angles.x) > THETA) ||\n ((dx >= segment_center) && abs(v_angles.y) > THETA);\n //if( dx < line_start) discontinuous = false;\n //if( dx > line_stop) discontinuous = false;\n\n float d_join = join( int(u_linejoin), abs(dy),\n v_segment, v_texcoord, v_miter, v_linewidth );\n\n // When path is closed, we do not have room for linecaps, so we make room\n // by shortening the total length\n if (closed) {\n line_start += v_linewidth/2.0;\n line_stop -= v_linewidth/2.0;\n }\n\n // We also need to take antialias area into account\n //line_start += u_antialias;\n //line_stop -= u_antialias;\n\n // Check is dash stop is before line start\n if( dash_stop <= line_start ) {\n discard;\n }\n // Check is dash start is beyond line stop\n if( dash_start >= line_stop ) {\n discard;\n }\n\n // Check if current dash start is beyond segment stop\n if( discontinuous ) {\n // Dash start is beyond segment, we discard\n if( (dash_start > segment_stop) ) {\n discard;\n //gl_FragColor = vec4(1.0,0.0,0.0,.25); return;\n }\n\n // Dash stop is before segment, we discard\n if( (dash_stop < segment_start) ) {\n discard; //gl_FragColor = vec4(0.0,1.0,0.0,.25); return;\n }\n\n // Special case for round caps (nicer with this)\n if( dash_caps.x == 1.0 ) {\n if( (u > _stop) && (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0)) {\n discard;\n }\n }\n\n // Special case for round caps (nicer with this)\n if( dash_caps.y == 1.0 ) {\n if( (u < _start) && (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0)) {\n discard;\n }\n }\n\n // Special case for triangle caps (in & out) and square\n // We make sure the cap stop at crossing frontier\n if( (dash_caps.x != 1.0) && (dash_caps.x != 5.0) ) {\n if( (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0) ) {\n float a = v_angles.x/2.0;\n float x = (segment_start-dx)*cos(a) - dy*sin(a);\n float y = (segment_start-dx)*sin(a) + dy*cos(a);\n if( x > 0.0 ) discard;\n // We transform the cap into square to avoid holes\n dash_caps.x = 4.0;\n }\n }\n\n // Special case for triangle caps (in & out) and square\n // We make sure the cap stop at crossing frontier\n if( (dash_caps.y != 1.0) && (dash_caps.y != 5.0) ) {\n if( (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0) ) {\n float a = v_angles.y/2.0;\n float x = (dx-segment_stop)*cos(a) - dy*sin(a);\n float y = (dx-segment_stop)*sin(a) + dy*cos(a);\n if( x > 0.0 ) discard;\n // We transform the caps into square to avoid holes\n dash_caps.y = 4.0;\n }\n }\n }\n\n // Line cap at start\n if( (dx < line_start) && (dash_start < line_start) && (dash_stop > line_start) ) {\n d = cap( int(linecaps.x), dx-line_start, dy, t, v_linewidth);\n }\n // Line cap at stop\n else if( (dx > line_stop) && (dash_stop > line_stop) && (dash_start < line_stop) ) {\n d = cap( int(linecaps.y), dx-line_stop, dy, t, v_linewidth);\n }\n // Dash cap left - dash_type = -1, 0 or 1, but there may be roundoff errors\n else if( dash_type < -0.5 ) {\n d = cap( int(dash_caps.y), abs(u-dash_center), dy, t, v_linewidth);\n if( (dx > line_start) && (dx < line_stop) )\n d = max(d,d_join);\n }\n // Dash cap right\n else if( dash_type > 0.5 ) {\n d = cap( int(dash_caps.x), abs(dash_center-u), dy, t, v_linewidth);\n if( (dx > line_start) && (dx < line_stop) )\n d = max(d,d_join);\n }\n // Dash body (plain)\n else {// if( dash_type > -0.5 && dash_type < 0.5) {\n d = abs(dy);\n }\n\n // Line join\n if( (dx > line_start) && (dx < line_stop)) {\n if( (dx <= segment_start) && (dash_start <= segment_start)\n && (dash_stop >= segment_start) ) {\n d = d_join;\n // Antialias at outer border\n float angle = PI/2.+v_angles.x;\n float f = abs( (segment_start - dx)*cos(angle) - dy*sin(angle));\n d = max(f,d);\n }\n else if( (dx > segment_stop) && (dash_start <= segment_stop)\n && (dash_stop >= segment_stop) ) {\n d = d_join;\n // Antialias at outer border\n float angle = PI/2.+v_angles.y;\n float f = abs((dx - segment_stop)*cos(angle) - dy*sin(angle));\n d = max(f,d);\n }\n else if( dx < (segment_start - v_linewidth/2.)) {\n discard;\n }\n else if( dx > (segment_stop + v_linewidth/2.)) {\n discard;\n }\n }\n else if( dx < (segment_start - v_linewidth/2.)) {\n discard;\n }\n else if( dx > (segment_stop + v_linewidth/2.)) {\n discard;\n }\n }\n\n // Distance to border ——————————————————\n d = d - t;\n if( d < 0.0 ) {\n gl_FragColor = color;\n } else {\n d /= u_antialias;\n gl_FragColor = vec4(color.rgb, exp(-d*d)*color.a);\n }\n}\n"},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),l=e(93),_=e(100),n=s.__importStar(e(101)),o=s.__importStar(e(28)),a=e(88);class h extends l.XYGlyphView{_inner_loop(e,i,t,s,l){for(const _ of i)0!=_?isNaN(t[_]+s[_])?(e.closePath(),l.apply(e),e.beginPath()):e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]));e.closePath(),l.call(e)}_render(e,i,{sx:t,sy:s}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner_loop(e,i,t,s,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner_loop(e,i,t,s,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_value(e),this._inner_loop(e,i,t,s,e.stroke))}draw_legend_for_index(e,i,t){_.generic_area_legend(this.visuals,e,i,t)}_hit_point(e){const i=new a.Selection;return n.point_in_poly(e.sx,e.sy,this.sx,this.sy)&&(i.add_to_selected_glyphs(this.model),i.view=this),i}}t.PatchView=h,h.__name__="PatchView";class r extends l.XYGlyph{constructor(e){super(e)}static init_Patch(){this.prototype.default_view=h,this.mixins([o.Line,o.Fill,o.Hatch])}}t.Patch=r,r.__name__="Patch",r.init_Patch()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x1[r],n=this._x2[r],a=this._y[r];isNaN(i+n+a)||!isFinite(i+n+a)?e.add_empty():e.add(t(i,n),a,s(i,n),a)}}_inner(e,t,s,i,r){e.beginPath();for(let s=0,r=t.length;s<r;s++)e.lineTo(t[s],i[s]);for(let t=s.length-1;t>=0;t–)e.lineTo(s[t],i[t]);e.closePath(),r.call(e)}_render(e,t,{sx1:s,sx2:i,sy:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}_hit_point(e){const t=this.sy.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e<r;e++)s[e]=this.sx1[e],i[e]=this.sy[e],s[t+e]=this.sx2[t-e-1],i[t+e]=this.sy[t-e-1];const n=new h.Selection;return a.point_in_poly(e.sx,e.sy,s,i)&&(n.add_to_selected_glyphs(this.model),n.view=this),n}scenterxy(e){return[(this.sx1[e]+this.sx2[e])/2,this.sy[e]]}_map_data(){this.sx1=this.renderer.xscale.v_compute(this._x1),this.sx2=this.renderer.xscale.v_compute(this._x2),this.sy=this.renderer.yscale.v_compute(this._y)}}s.HAreaView=l,l.__name__="HAreaView";class o extends n.Area{constructor(e){super(e)}static init_HArea(){this.prototype.default_view=l,this.define({x1:[_.XCoordinateSpec,{field:"x1"}],x2:[_.XCoordinateSpec,{field:"x2"}],y:[_.YCoordinateSpec,{field:"y"}]})}}s.HArea=o,o.__name__="HArea",o.init_HArea()},n function _(e,_,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e(1),r=e(94),t=e(100),n=a.__importStar(e(28));class s extends r.GlyphView{draw_legend_for_index(e,_,i){t.generic_area_legend(this.visuals,e,_,i)}}i.AreaView=s,s.__name__="AreaView";class c extends r.Glyph{constructor(e){super(e)}static init_Area(){this.mixins([n.Fill,n.HatchVector])}}i.Area=c,c.__name__="Area",c.init_Area()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x[r],n=this._y1[r],a=this._y2[r];isNaN(i+n+a)||!isFinite(i+n+a)?e.add_empty():e.add(i,t(n,a),i,s(n,a))}}_inner(e,t,s,i,r){e.beginPath();for(let i=0,r=s.length;i<r;i++)e.lineTo(t[i],s[i]);for(let s=i.length-1;s>=0;s–)e.lineTo(t[s],i[s]);e.closePath(),r.call(e)}_render(e,t,{sx:s,sy1:i,sy2:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}scenterxy(e){return[this.sx[e],(this.sy1[e]+this.sy2[e])/2]}_hit_point(e){const t=this.sx.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e<r;e++)s[e]=this.sx[e],i[e]=this.sy1[e],s[t+e]=this.sx[t-e-1],i[t+e]=this.sy2[t-e-1];const n=new h.Selection;return a.point_in_poly(e.sx,e.sy,s,i)&&(n.add_to_selected_glyphs(this.model),n.view=this),n}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sy1=this.renderer.yscale.v_compute(this._y1),this.sy2=this.renderer.yscale.v_compute(this._y2)}}s.VAreaView=l,l.__name__="VAreaView";class o extends n.Area{constructor(e){super(e)}static init_VArea(){this.prototype.default_view=l,this.define({x:[_.XCoordinateSpec,{field:"x"}],y1:[_.YCoordinateSpec,{field:"y1"}],y2:[_.YCoordinateSpec,{field:"y2"}]})}}s.VArea=o,o.__name__="VArea",o.init_VArea()},n function _(i,e,s){Object.defineProperty(s,"__esModule",{value:!0});const t=i(1),n=i(81),c=t.__importStar(i(18)),o=i(88),r=i(24),_=i(86);class a extends n.Model{constructor(i){super(i)}static init_CDSView(){this.define({filters:[c.Array,[]],source:[c.Instance]}),this.internal({indices:[c.Any],indices_map:[c.Any,{}],masked:[c.Any,null]})}initialize(){super.initialize(),this.compute_indices()}connect_signals(){super.connect_signals(),this.connect(this.properties.filters.change,()=>this.compute_indices());const i=()=>{const i=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,i),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,i),this.connect(this.source.patching,i)))};let e=null!=this.source;e?i():this.connect(this.properties.source.change,()=>{e||(i(),e=!0)})}compute_indices(){var i;const{source:e}=this;if(null==e)return;const s=null!==(i=e.get_length())&&void 0!==i?i:1,t=r.Indices.all_set(s);for(const i of this.filters)t.intersect(i.compute_indices(e));this.indices=t,this._indices=[…t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let i=0;i<this._indices.length;i++)this.indices_map[this._indices[i]]=i}convert_selection_from_subset(i){const e=i.indices.map(i=>this._indices[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_selection_to_subset(i){const e=i.indices.map(i=>this.indices_map[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_indices_from_subset(i){return i.map(i=>this._indices[i])}}s.CDSView=a,a.__name__="CDSView",a.init_CDSView()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(9);async function i(e,n,t){const o=new e(Object.assign(Object.assign({},t),{model:n}));return o.initialize(),await o.lazy_initialize(),o}t.build_view=async function(e,n={parent:null},t=(e=>e.default_view)){const o=await i(t(e),e,n);return o.connect_signals(),o},t.build_views=async function(e,n,t={parent:null},s=(e=>e.default_view)){const c=o.difference([…e.keys()],n);for(const n of c)e.get(n).remove(),e.delete(n);const a=[],f=n.filter(n=>!e.has(n));for(const n of f){const o=await i(s(n),n,t);e.set(n,o),a.push(o)}for(const e of a)e.connect_signals();return a},t.remove_views=function(e){for(const[n,t]of e)t.remove(),e.delete(n)}},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),i=e(91),s=e(117),a=t.__importStar(e(18)),o=e(115),_=e(11);class l extends i.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model;let r=null,n=null;const t={v_compute(n){_.assert(null==r);const[t]=r=e.layout_provider.get_edge_coordinates(n);return t}},i={v_compute(e){_.assert(null!=r);const[,n]=r;return r=null,n}},s={v_compute(r){_.assert(null==n);const[t]=n=e.layout_provider.get_node_coordinates(r);return t}},a={v_compute(e){_.assert(null!=n);const[,r]=n;return n=null,r}},{edge_renderer:l,node_renderer:d}=this.model;l.glyph.properties.xs.internal=!0,l.glyph.properties.ys.internal=!0,d.glyph.properties.x.internal=!0,d.glyph.properties.y.internal=!0,l.glyph.xs={expr:t},l.glyph.ys={expr:i},d.glyph.x={expr:s},d.glyph.y={expr:a};const{parent:p}=this;this.edge_view=await o.build_view(l,{parent:p}),this.node_view=await o.build_view(d,{parent:p})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,()=>{this.edge_view.set_data(!1),this.node_view.set_data(!1),this.request_render()})}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}}n.GraphRendererView=l,l.__name__="GraphRendererView";class d extends i.DataRenderer{constructor(e){super(e)}static init_GraphRenderer(){this.prototype.default_view=l,this.define({layout_provider:[a.Instance],node_renderer:[a.Instance],edge_renderer:[a.Instance],selection_policy:[a.Instance,()=>new s.NodesOnly],inspection_policy:[a.Instance,()=>new s.NodesOnly]})}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}n.GraphRenderer=d,d.__name__="GraphRenderer",d.init_GraphRenderer()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const d=e(81),s=e(12),o=e(9),_=e(88);class i extends d.Model{constructor(e){super(e)}_hit_test_nodes(e,t){if(!t.model.visible)return null;const n=t.node_view.glyph.hit_test(e);return null==n?null:t.node_view.model.view.convert_selection_from_subset(n)}_hit_test_edges(e,t){if(!t.model.visible)return null;const n=t.edge_view.glyph.hit_test(e);return null==n?null:t.edge_view.model.view.convert_selection_from_subset(n)}}n.GraphHitTestPolicy=i,i.__name__="GraphHitTestPolicy";class r extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.model.get_selection_manager().get_or_create_inspector(n.node_view.model);return o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesOnly=r,r.__name__="NodesOnly";class c extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}get_linked_edges(e,t,n){let d=[];"selection"==n?d=e.selected.indices.map(t=>e.data.index[t]):"inspection"==n&&(d=e.inspected.indices.map(t=>e.data.index[t]));const s=[];for(let e=0;e<t.data.start.length;e++)(o.contains(d,t.data.start[e])||o.contains(d,t.data.end[e]))&&s.push(e);const i=new _.Selection;for(const e of s)i.multiline_indices[e]=[0];return i.indices=s,i}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;s.update(e,n,d);const o=t.edge_renderer.data_source.selected,_=this.get_linked_edges(t.node_renderer.data_source,t.edge_renderer.data_source,"selection");return o.update(_,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model);o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model),i=this.get_linked_edges(n.node_view.model.data_source,n.edge_view.model.data_source,"inspection");return _.update(i,d,s),n.edge_view.model.data_source.setv({inspected:_},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesAndLinkedEdges=c,c.__name__="NodesAndLinkedEdges";class a extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_edges(e,t)}get_linked_nodes(e,t,n){let d=[];"selection"==n?d=t.selected.indices:"inspection"==n&&(d=t.inspected.indices);const i=[];for(const e of d)i.push(t.data.start[e]),i.push(t.data.end[e]);const r=o.uniq(i).map(t=>s.indexOf(e.data.index,t));return new _.Selection({indices:r})}do_selection(e,t,n,d){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,n,d);const o=t.node_renderer.data_source.selected,_=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,"selection");return o.update(_,n,d),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model);o.update(e,d,s),n.edge_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model),i=this.get_linked_nodes(n.node_view.model.data_source,n.edge_view.model.data_source,"inspection");return _.update(i,d,s),n.node_view.model.data_source.setv({inspected:_},{silent:!0}),n.edge_view.model.data_source.inspect.emit([n.edge_view,{geometry:t}]),!o.is_empty()}}n.EdgesAndLinkedNodes=a,a.__name__="EdgesAndLinkedNodes"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e(81);class o extends s.Model{do_selection(e,t,n,s){return null!==e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=o,o.__name__="SelectionPolicy";class r extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=r,r.__name__="IntersectRenderers";class c extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=c,c.__name__="UnionRenderers"},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.concat=function(t,…e){let n=t.length;for(const t of e)n+=t.length;const o=new t.constructor(n);o.set(t,0);let c=t.length;for(const t of e)o.set(t,c),c+=t.length;return o}},n function _(n,o,e){function t(…n){const o=new Set;for(const e of n)for(const n of e)o.add(n);return o}Object.defineProperty(e,"__esModule",{value:!0}),e.union=t,e.intersection=function(n,…o){const e=new Set;n:for(const t of n){for(const n of o)if(!n.has(t))continue n;e.add(t)}return e},e.difference=function(n,…o){const e=new Set(n);for(const n of t(…o))e.delete(n);return e}},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(14);class o{constructor(e){this.document=e}}s.DocumentEvent=o,o.__name__="DocumentEvent";class r extends o{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=r,r.__name__="DocumentEventBatch";class d extends o{}s.DocumentChangedEvent=d,d.__name__="DocumentChangedEvent";class _ extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}json(e){const t=this.msg_data,s=n.HasProps._value_to_json(t),o=new Set;return n.HasProps._value_record_references(t,o,{recursive:!0}),{kind:"MessageSent",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=_,_.__name__="MessageSentEvent";class i extends d{constructor(e,t,s,n,o,r,d){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=r,this.hint=d}json(e){if("id"===this.attr)throw new Error("’id’ field should never change, whatever code just set it is wrong");if(null!=this.hint)return this.hint.json(e);const t=this.new_,s=n.HasProps._value_to_json(t),o=new Set;n.HasProps._value_record_references(t,o,{recursive:!0}),o.has(this.model)&&this.model!==t&&o.delete(this.model);for(const t of o)e.add(t);return{kind:"ModelChanged",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=i,i.__name__="ModelChangedEvent";class a extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}json(e){return{kind:"ColumnsPatched",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=a,a.__name__="ColumnsPatchedEvent";class c extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}json(e){return{kind:"ColumnsStreamed",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=c,c.__name__="ColumnsStreamedEvent";class h extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}json(e){return{kind:"TitleChanged",title:this.title}}}s.TitleChangedEvent=h,h.__name__="TitleChangedEvent";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return n.HasProps._value_record_references(this.model,e,{recursive:!0}),{kind:"RootAdded",model:this.model.ref()}}}s.RootAddedEvent=u,u.__name__="RootAddedEvent";class l extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return{kind:"RootRemoved",model:this.model.ref()}}}s.RootRemovedEvent=l,l.__name__="RootRemovedEvent"},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),l=e(123),_=i.__importStar(e(28));class o extends l.UpperLowerView{connect_signals(){super.connect_signals();const e=()=>this.set_data(this.model.source);this.connect(this.model.change,e),this.connect(this.model.source.streaming,e),this.connect(this.model.source.patching,e),this.connect(this.model.source.change,e)}_render(){this._map_data();const{ctx:e}=this.layer;e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s<t;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);for(let s=this._upper_sx.length-1;s>=0;s–)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_value(e),e.fill()),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s<t;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);this.visuals.line.doit&&(this.visuals.line.set_value(e),e.stroke()),e.beginPath(),e.moveTo(this._upper_sx[0],this._upper_sy[0]);for(let s=0,t=this._upper_sx.length;s<t;s++)e.lineTo(this._upper_sx[s],this._upper_sy[s]);this.visuals.line.doit&&(this.visuals.line.set_value(e),e.stroke())}}t.BandView=o,o.__name__="BandView";class n extends l.UpperLower{constructor(e){super(e)}static init_Band(){this.prototype.default_view=o,this.mixins([_.Line,_.Fill]),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}}t.Band=n,n.__name__="Band",n.init_Band()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),o=e(36),r=e(85),p=s.__importStar(e(18));class _ extends o.AnnotationView{initialize(){super.initialize(),this.set_data(this.model.source)}set_data(e){super.set_data(e),this.visuals.warm_cache(e),this.plot_view.request_render()}_map_data(){const{frame:e}=this.plot_view,t=this.model.dimension,i=this.coordinates.x_scale,s=this.coordinates.y_scale,o="height"==t?s:i,r="height"==t?i:s,p="height"==t?e.yview:e.xview,_="height"==t?e.xview:e.yview;let a,n,h;a="data"==this.model.properties.lower.units?o.v_compute(this._lower):p.v_compute(this._lower),n="data"==this.model.properties.upper.units?o.v_compute(this._upper):p.v_compute(this._upper),h="data"==this.model.properties.base.units?r.v_compute(this._base):_.v_compute(this._base);const[c,u]="height"==t?[1,0]:[0,1],l=[a,h],w=[n,h];this._lower_sx=l[c],this._lower_sy=l[u],this._upper_sx=w[c],this._upper_sy=w[u]}}i.UpperLowerView=_,_.__name__="UpperLowerView";class a extends o.Annotation{constructor(e){super(e)}static init_UpperLower(){this.define({lower:[p.DistanceSpec],upper:[p.DistanceSpec],base:[p.DistanceSpec],dimension:[p.Dimension,"height"],source:[p.Instance,()=>new r.ColumnDataSource]})}}i.UpperLower=a,a.__name__="UpperLower",a.init_UpperLower()},n function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const e=t(1),o=t(36),n=t(15),l=e.__importStar(t(28)),a=e.__importStar(t(18)),h=t(79);s.EDGE_TOLERANCE=2.5;class r extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this)),this.connect(this.model.data_update,()=>this.plot_view.request_paint(this))}_render(){if(null==this.model.left&&null==this.model.right&&null==this.model.top&&null==this.model.bottom)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,s=this.coordinates.y_scale,e=(t,i,s,e,o)=>{let n;return n=null!=t?this.model.screen?t:"data"==i?s.compute(t):e.compute(t):o,n};this.sleft=e(this.model.left,this.model.left_units,i,t.xview,t.bbox.left),this.sright=e(this.model.right,this.model.right_units,i,t.xview,t.bbox.right),this.stop=e(this.model.top,this.model.top_units,s,t.yview,t.bbox.top),this.sbottom=e(this.model.bottom,this.model.bottom_units,s,t.yview,t.bbox.bottom),this._paint_box(this.sleft,this.sright,this.sbottom,this.stop)}_paint_box(t,i,s,e){const{ctx:o}=this.layer;o.save(),o.beginPath(),o.rect(t,e,i-t,s-e),this.visuals.fill.doit&&(this.visuals.fill.set_value(o),o.fill()),this.visuals.line.doit&&(this.visuals.line.set_value(o),o.stroke()),o.restore()}interactive_bbox(){const t=this.model.properties.line_width.value()+s.EDGE_TOLERANCE;return new h.BBox({x0:this.sleft-t,y0:this.stop-t,x1:this.sright+t,y1:this.sbottom+t})}interactive_hit(t,i){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,i)}cursor(t,i){return Math.abs(t-this.sleft)<3||Math.abs(t-this.sright)<3?this.model.ew_cursor:Math.abs(i-this.sbottom)<3||Math.abs(i-this.stop)<3?this.model.ns_cursor:t>this.sleft&&t<this.sright&&i>this.stop&&i<this.sbottom?this.model.in_cursor:null}}s.BoxAnnotationView=r,r.__name__="BoxAnnotationView";class u extends o.Annotation{constructor(t){super(t)}static init_BoxAnnotation(){this.prototype.default_view=r,this.mixins([l.Line,l.Fill]),this.define({render_mode:[a.RenderMode,"canvas"],top:[a.Number,null],top_units:[a.SpatialUnits,"data"],bottom:[a.Number,null],bottom_units:[a.SpatialUnits,"data"],left:[a.Number,null],left_units:[a.SpatialUnits,"data"],right:[a.Number,null],right_units:[a.SpatialUnits,"data"]}),this.internal({screen:[a.Boolean,!1],ew_cursor:[a.String,null],ns_cursor:[a.String,null],in_cursor:[a.String,null]}),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}initialize(){super.initialize(),this.data_update=new n.Signal0(this,"data_update")}update({left:t,right:i,top:s,bottom:e}){this.setv({left:t,right:i,top:s,bottom:e,screen:!0},{silent:!0}),this.data_update.emit()}}s.BoxAnnotation=u,u.__name__="BoxAnnotation",u.init_BoxAnnotation()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),a=t(36),s=t(126),r=t(130),n=t(132),l=t(145),_=t(156),h=t(157),m=t(158),d=o.__importStar(t(28)),c=o.__importStar(t(18)),u=o.__importStar(t(159)),g=t(9),p=t(12),f=t(8),b=t(11);class v extends a.AnnotationView{initialize(){super.initialize(),this._set_canvas_image()}connect_signals(){super.connect_signals(),this.connect(this.model.ticker.change,()=>this.plot_view.request_render()),this.connect(this.model.formatter.change,()=>this.plot_view.request_render()),null!=this.model.color_mapper&&this.connect(this.model.color_mapper.change,()=>{this._set_canvas_image(),this.plot_view.request_render()})}_get_size(){if(null==this.model.color_mapper)return{width:0,height:0};{const{width:t,height:e}=this.compute_legend_dimensions();return{width:t,height:e}}}_set_canvas_image(){if(null==this.model.color_mapper)return;let t,e,{palette:i}=this.model.color_mapper;switch("vertical"==this.model.orientation&&(i=g.reversed(i)),this.model.orientation){case"vertical":[t,e]=[1,i.length];break;case"horizontal":[t,e]=[i.length,1]}const o=document.createElement("canvas");o.width=t,o.height=e;const a=o.getContext("2d"),s=a.getImageData(0,0,t,e),r=new n.LinearColorMapper({palette:i}).rgba_mapper.v_compute(g.range(0,i.length));s.data.set(r),a.putImageData(s,0,0),this.image=o}compute_legend_dimensions(){const t=this._computed_image_dimensions(),[e,i]=[t.height,t.width],o=this._get_label_extent(),a=this._title_extent(),s=this._tick_extent(),{padding:r}=this.model;let n,l;switch(this.model.orientation){case"vertical":n=e+a+2*r,l=i+s+o+2*r;break;case"horizontal":n=e+a+s+o+2*r,l=i+2*r}return{width:l,height:n}}compute_legend_location(){const t=this.compute_legend_dimensions(),[e,i]=[t.height,t.width],o=this.model.margin,a=null!=this.panel?this.panel:this.plot_view.frame,[s,r]=a.bbox.ranges,{location:n}=this.model;let l,_;if(f.isString(n))switch(n){case"top_left":l=s.start+o,_=r.start+o;break;case"top_center":l=(s.end+s.start)/2-i/2,_=r.start+o;break;case"top_right":l=s.end-o-i,_=r.start+o;break;case"bottom_right":l=s.end-o-i,_=r.end-o-e;break;case"bottom_center":l=(s.end+s.start)/2-i/2,_=r.end-o-e;break;case"bottom_left":l=s.start+o,_=r.end-o-e;break;case"center_left":l=s.start+o,_=(r.end+r.start)/2-e/2;break;case"center":l=(s.end+s.start)/2-i/2,_=(r.end+r.start)/2-e/2;break;case"center_right":l=s.end-o-i,_=(r.end+r.start)/2-e/2}else if(f.isArray(n)&&2==n.length){const[t,i]=n;l=a.xview.compute(t),_=a.yview.compute(i)-e}else b.unreachable();return{sx:l,sy:_}}_render(){if(null==this.model.color_mapper)return;const{ctx:t}=this.layer;t.save();const{sx:e,sy:i}=this.compute_legend_location();t.translate(e,i),this._draw_bbox(t);const o=this._get_image_offset();t.translate(o.x,o.y),this._draw_image(t);const a=this.tick_info();this._draw_major_ticks(t,a),this._draw_minor_ticks(t,a),this._draw_major_labels(t,a),this.model.title&&this._draw_title(t),t.restore()}_draw_bbox(t){const e=this.compute_legend_dimensions();t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(0,0,e.width,e.height)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_image(t){const e=this._computed_image_dimensions();t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this.image,0,0,e.width,e.height),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_major_ticks(t,e){if(!this.visuals.major_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.major,_=this.model.major_tick_in,h=this.model.major_tick_out;t.save(),t.translate(s,r),this.visuals.major_tick_line.set_value(t);for(let e=0,a=n.length;e<a;e++)t.beginPath(),t.moveTo(Math.round(n[e]+i*h),Math.round(l[e]+o*h)),t.lineTo(Math.round(n[e]-i*_),Math.round(l[e]-o*_)),t.stroke();t.restore()}_draw_minor_ticks(t,e){if(!this.visuals.minor_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.minor,_=this.model.minor_tick_in,h=this.model.minor_tick_out;t.save(),t.translate(s,r),this.visuals.minor_tick_line.set_value(t);for(let e=0,a=n.length;e<a;e++)t.beginPath(),t.moveTo(Math.round(n[e]+i*h),Math.round(l[e]+o*h)),t.lineTo(Math.round(n[e]-i*_),Math.round(l[e]-o*_)),t.stroke();t.restore()}_draw_major_labels(t,e){if(!this.visuals.major_label_text.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],n=this.model.label_standoff+this._tick_extent(),[l,_]=[n*i,n*o],[h,m]=e.coords.major,d=e.labels.major;this.visuals.major_label_text.set_value(t),t.save(),t.translate(s+l,r+_);for(let e=0,a=h.length;e<a;e++)t.fillText(d[e],Math.round(h[e]+i*this.model.label_standoff),Math.round(m[e]+o*this.model.label_standoff));t.restore()}_draw_title(t){this.visuals.title_text.doit&&(t.save(),this.visuals.title_text.set_value(t),t.fillText(this.model.title,0,-this.model.title_standoff),t.restore())}_get_label_extent(){const t=this.tick_info().labels.major;let e;if(g.is_empty(t))e=0;else{const{ctx:i}=this.layer;switch(i.save(),this.visuals.major_label_text.set_value(i),this.model.orientation){case"vertical":e=g.max(t.map(t=>i.measureText(t.toString()).width));break;case"horizontal":e=u.measure_font(this.visuals.major_label_text.font_value()).height}e+=this.model.label_standoff,i.restore()}return e}_get_image_offset(){return{x:this.model.padding,y:this.model.padding+this._title_extent()}}_normals(){return"vertical"==this.model.orientation?[1,0]:[0,1]}_title_extent(){const t=this.model.title_text_font+" "+this.model.title_text_font_size+" "+this.model.title_text_font_style;return this.model.title?u.measure_font(t).height+this.model.title_standoff:0}_tick_extent(){return g.max([this.model.major_tick_out,this.model.minor_tick_out])}_computed_image_dimensions(){const t=this.plot_view.frame.bbox.height,e=this.plot_view.frame.bbox.width,i=this._title_extent();let o,a;switch(this.model.orientation){case"vertical":"auto"==this.model.height?null!=this.panel?o=t-2*this.model.padding-i:(o=g.max([25*this.model.color_mapper.palette.length,.3*t]),o=g.min([o,.8*t-2*this.model.padding-i])):o=this.model.height,a="auto"==this.model.width?25:this.model.width;break;case"horizontal":o="auto"==this.model.height?25:this.model.height,"auto"==this.model.width?null!=this.panel?a=e-2*this.model.padding:(a=g.max([25*this.model.color_mapper.palette.length,.3*e]),a=g.min([a,.8*e-2*this.model.padding])):a=this.model.width}return{width:a,height:o}}_tick_coordinate_scale(t){const e={source_range:new m.Range1d({start:this.model.color_mapper.metrics.min,end:this.model.color_mapper.metrics.max}),target_range:new m.Range1d({start:0,end:t})},{color_mapper:i}=this.model;if(i instanceof n.LinearColorMapper)return new l.LinearScale(e);if(i instanceof n.LogColorMapper)return new h.LogScale(e);if(i instanceof n.ScanningColorMapper){const{binning:t}=i.metrics;return new _.LinearInterpolationScale(Object.assign(Object.assign({},e),{binning:t}))}b.unreachable()}_format_major_labels(t,e){const i=this.model.formatter.doFormat(t,null);for(let t=0,o=e.length;t<o;t++)e[t]in this.model.major_label_overrides&&(i[t]=this.model.major_label_overrides[e[t]]);return i}tick_info(){const t=this._computed_image_dimensions();let e;switch(this.model.orientation){case"vertical":e=t.height;break;case"horizontal":e=t.width}const i=this._tick_coordinate_scale(e),[o,a]=this._normals(),[s,r]=[this.model.color_mapper.metrics.min,this.model.color_mapper.metrics.max],n=this.model.ticker.get_ticks(s,r,null,null,this.model.ticker.desired_num_ticks),l=n.major,_=n.minor,h=[[],[]],m=[[],[]];for(let t=0,e=l.length;t<e;t++)l[t]<s||l[t]>r||(h[o].push(l[t]),h[a].push(0));for(let t=0,e=_.length;t<e;t++)_[t]<s||_[t]>r||(m[o].push(_[t]),m[a].push(0));const d={major:this._format_major_labels(h[o],l)},c={major:[[],[]],minor:[[],[]]};return c.major[o]=i.v_compute(h[o]),c.minor[o]=i.v_compute(m[o]),c.major[a]=h[a],c.minor[a]=m[a],"vertical"==this.model.orientation&&(c.major[o]=p.map(c.major[o],t=>e-t),c.minor[o]=p.map(c.minor[o],t=>e-t)),{coords:c,labels:d}}}i.ColorBarView=v,v.__name__="ColorBarView";class w extends a.Annotation{constructor(t){super(t)}static init_ColorBar(){this.prototype.default_view=v,this.mixins([["major_label_",d.Text],["title_",d.Text],["major_tick_",d.Line],["minor_tick_",d.Line],["border_",d.Line],["bar_",d.Line],["background_",d.Fill]]),this.define({location:[c.Any,"top_right"],orientation:[c.Orientation,"vertical"],title:[c.String],title_standoff:[c.Number,2],width:[c.Any,"auto"],height:[c.Any,"auto"],scale_alpha:[c.Number,1],ticker:[c.Instance,()=>new s.BasicTicker],formatter:[c.Instance,()=>new r.BasicTickFormatter],major_label_overrides:[c.Any,{}],color_mapper:[c.Instance],label_standoff:[c.Number,5],margin:[c.Number,30],padding:[c.Number,10],major_tick_in:[c.Number,5],major_tick_out:[c.Number,0],minor_tick_in:[c.Number,0],minor_tick_out:[c.Number,0]}),this.override({background_fill_color:"#ffffff",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_align:"center",major_label_text_baseline:"middle",major_label_text_font_size:"11px",major_tick_line_color:"#ffffff",minor_tick_line_color:null,title_text_font_size:"13px",title_text_font_style:"italic"})}}i.ColorBar=w,w.__name__="ColorBar",w.init_ColorBar()},n function _(e,c,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(127);class r extends i.AdaptiveTicker{constructor(e){super(e)}}s.BasicTicker=r,r.__name__="BasicTicker"},n function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const a=t(1),s=t(128),n=t(9),r=a.__importStar(t(18));class _ extends s.ContinuousTicker{constructor(t){super(t)}static init_AdaptiveTicker(){this.define({base:[r.Number,10],mantissas:[r.Array,[1,2,5]],min_interval:[r.Number,0],max_interval:[r.Number]})}initialize(){super.initialize();const t=n.nth(this.mantissas,-1)/this.base,i=n.nth(this.mantissas,0)*this.base;this.extended_mantissas=[t,…this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,e){const a=i-t,s=this.get_ideal_interval(t,i,e),r=Math.floor(function(t,i=Math.E){return Math.log(t)/Math.log(i)}(s/this.base_factor,this.base)),_=this.base**r*this.base_factor,h=this.extended_mantissas,m=h.map(t=>Math.abs(e-a/(t*_))),o=h[n.argmin(m)];return c=o*_,l=this.get_min_interval(),u=this.get_max_interval(),Math.max(l,Math.min(u,c));var c,l,u}}e.AdaptiveTicker=_,_.__name__="AdaptiveTicker",_.init_AdaptiveTicker()},n function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(1),r=t(129),s=n.__importStar(t(18)),o=t(9);class _ extends r.Ticker{constructor(t){super(t)}static init_ContinuousTicker(){this.define({num_minor_ticks:[s.Number,5],desired_num_ticks:[s.Number,6]})}get_ticks(t,i,e,n,r){return this.get_ticks_no_defaults(t,i,n,this.desired_num_ticks)}get_ticks_no_defaults(t,i,e,n){const r=this.get_interval(t,i,n),s=Math.floor(t/r),_=Math.ceil(i/r);let c;c=isFinite(s)&&isFinite(_)?o.range(s,_+1):[];const u=c.map(t=>t*r).filter(e=>t<=e&&e<=i),a=this.num_minor_ticks,l=[];if(a>0&&u.length>0){const e=r/a,n=o.range(0,a).map(t=>t*e);for(const e of n.slice(1)){const n=u[0]-e;t<=n&&n<=i&&l.push(n)}for(const e of u)for(const r of n){const n=e+r;t<=n&&n<=i&&l.push(n)}}return{major:u,minor:l}}get_min_interval(){return this.min_interval}get_max_interval(){return null!=this.max_interval?this.max_interval:1/0}get_ideal_interval(t,i,e){return(i-t)/e}}e.ContinuousTicker=_,_.__name__="ContinuousTicker",_.init_ContinuousTicker()},n function _(e,c,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Ticker=r,r.__name__="Ticker"},n function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=i(1),s=i(131),n=r.__importStar(i(18));class o extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}static init_BasicTickFormatter(){this.define({precision:[n.Any,"auto"],use_scientific:[n.Boolean,!0],power_limit_high:[n.Number,5],power_limit_low:[n.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,r=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const s of i){const i=Math.abs(s);if(!(i<=r)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){const r=new Array(i.length);if(t)for(let t=0,s=i.length;t<s;t++)r[t]=i[t].toExponential(e);else for(let t=0,s=i.length;t<s;t++)r[t]=i[t].toFixed(e).replace(/(\.[0-9]?)0+$/,"$1").replace(/\.$/,"");return r}_auto_precision(i,t){const e=new Array(i.length),r=this.last_precision<=15;i:for(let s=this.last_precision;r?s<=15:s>=1;r?s++:s–){if(t){e[0]=i[0].toExponential(s);for(let t=1;t<i.length;t++)if(e[t]==e[t-1])continue i;this.last_precision=s;break}e[0]=i[0].toFixed(s).replace(/(\.[0-9]*?)0+$/,"$1").replace(/\.$/,"");for(let t=1;t<i.length;t++)if(e[t]=i[t].toFixed(s).replace(/(\.[0-9]*?)0+$/,"$1").replace(/\.$/,""),e[t]==e[t-1])continue i;this.last_precision=s;break}return this.last_precision}doFormat(i,t){if(0==i.length)return[];const e=this._need_sci(i),r="auto"==this.precision?this._auto_precision(i,e):this.precision;return this._format_with_precision(i,e,r)}}e.BasicTickFormatter=o,o.__name__="BasicTickFormatter",o.init_BasicTickFormatter()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(81);class c extends r.Model{constructor(e){super(e)}}o.TickFormatter=c,c.__name__="TickFormatter"},n function _(r,a,o){Object.defineProperty(o,"__esModule",{value:!0});var e=r(133);o.CategoricalColorMapper=e.CategoricalColorMapper;var p=r(138);o.CategoricalMarkerMapper=p.CategoricalMarkerMapper;var l=r(139);o.CategoricalPatternMapper=l.CategoricalPatternMapper;var C=r(140);o.ContinuousColorMapper=C.ContinuousColorMapper;var M=r(135);o.ColorMapper=M.ColorMapper;var n=r(141);o.LinearColorMapper=n.LinearColorMapper;var t=r(142);o.LogColorMapper=t.LogColorMapper;var i=r(143);o.ScanningColorMapper=i.ScanningColorMapper;var c=r(144);o.EqHistColorMapper=c.EqHistColorMapper},n function _(r,t,e){Object.defineProperty(e,"__esModule",{value:!0});const o=r(1),a=r(134),c=r(135),i=o.__importStar(r(18));class s extends c.ColorMapper{constructor(r){super(r)}static init_CategoricalColorMapper(){this.define({factors:[i.Array],start:[i.Number,0],end:[i.Number]})}_v_compute(r,t,e,{nan_color:o}){a.cat_v_compute(r,this.factors,e,t,this.start,this.end,o)}}e.CategoricalColorMapper=s,s.__name__="CategoricalColorMapper",s.init_CategoricalColorMapper()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const l=e(12),i=e(8);function u(e,n){if(e.length!=n.length)return!1;for(let t=0,l=e.length;t<l;t++)if(e[t]!==n[t])return!1;return!0}t._cat_equals=u,t.cat_v_compute=function(e,n,t,c,f,o,r){for(let _=0,g=e.length;_<g;_++){let g,s,d=e[_];i.isString(d)?g=l.index_of(n,d):(null!=f?d=null!=o?d.slice(f,o):d.slice(f):null!=o&&(d=d.slice(0,o)),g=1==d.length?l.index_of(n,d[0]):l.find_index(n,e=>u(e,d))),s=g<0||g>=t.length?r:t[g],c[_]=s}}},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),o=t(136),_=n.__importStar(t(18)),i=t(8),l=t(22),c=t(32);function a(t){return i.isNumber(t)?t:("#"!=t[0]&&(t=l.color2hex(t)),9!=t.length&&(t+="ff"),parseInt(t.slice(1),16))}function s(t){const e=new Uint32Array(t.length);for(let r=0,n=t.length;r<n;r++)e[r]=a(t[r]);return e}function p(t){if(c.is_little_endian){const e=new DataView(t.buffer);for(let r=0,n=t.length;r<n;r++)e.setUint32(4*r,t[r])}return new Uint8Array(t.buffer)}r._convert_color=a,r._convert_palette=s,r._uint32_to_rgba=p;class u extends o.Mapper{constructor(t){super(t)}static init_ColorMapper(){this.define({palette:[_.Any],nan_color:[_.Color,"gray"]})}v_compute(t){const e=new Array(t.length);return this._v_compute(t,e,this.palette,this._colors(t=>t)),e}get rgba_mapper(){const t=this,e=s(this.palette),r=this._colors(a);return{v_compute(n){const o=new Uint32Array(n.length);return t._v_compute(n,o,e,r),p(o)}}}_colors(t){return{nan_color:t(this.nan_color)}}}r.ColorMapper=u,u.__name__="ColorMapper",u.init_ColorMapper()},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(137);class s extends o.Transform{constructor(e){super(e)}compute(e){throw new Error("mapping single values is not supported")}}n.Mapper=s,s.__name__="Mapper"},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(81);class s extends r.Model{constructor(e){super(e)}}o.Transform=s,s.__name__="Transform"},n function _(r,e,a){Object.defineProperty(a,"__esModule",{value:!0});const t=r(1),s=r(134),i=r(136),c=t.__importStar(r(18));class n extends i.Mapper{constructor(r){super(r)}static init_CategoricalMarkerMapper(){this.define({factors:[c.Array],markers:[c.Array],start:[c.Number,0],end:[c.Number],default_value:[c.MarkerType,"circle"]})}v_compute(r){const e=new Array(r.length);return s.cat_v_compute(r,this.factors,this.markers,e,this.start,this.end,this.default_value),e}}a.CategoricalMarkerMapper=n,n.__name__="CategoricalMarkerMapper",n.init_CategoricalMarkerMapper()},n function _(t,e,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t(1),n=t(134),s=t(136),i=r.__importStar(t(18));class c extends s.Mapper{constructor(t){super(t)}static init_CategoricalPatternMapper(){this.define({factors:[i.Array],patterns:[i.Array],start:[i.Number,0],end:[i.Number],default_value:[i.HatchPatternType," "]})}v_compute(t){const e=new Array(t.length);return n.cat_v_compute(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=c,c.__name__="CategoricalPatternMapper",c.init_CategoricalPatternMapper()},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(135),s=t(90),l=t(9),i=t(8);class c extends n.ColorMapper{constructor(t){super(t),this._scan_data=null}static init_ContinuousColorMapper(){this.define(({Number:t,String:o,Null:e,Ref:n,Color:l,Or:i,Tuple:c,Array:a})=>({high:[i(t,e),null],low:[i(t,e),null],high_color:[i(l,e),null],low_color:[i(l,e),null],domain:[a(c(n(s.GlyphRenderer),i(o,a(o)))),[]]}))}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,()=>this.update_data()),this.connect(t.data_source.selected.change,()=>this.update_data())};this.connect(this.properties.domain.change,()=>t()),t()}update_data(){const{domain:t,palette:o}=this,e=[…this._collect(t)];this._scan_data=this.scan(e,o.length),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[o,e]of t)for(const t of i.isArray(e)?e:[e]){let e=o.data_source.get_column(t);e=o.view.indices.select(e);const n=o.view.masked,s=o.data_source.selected.indices;let c;if(null!=n&&s.length>0?c=l.intersection([…n],s):null!=n?c=[…n]:s.length>0&&(c=s),null!=c&&(e=l.map(c,t=>e[t])),e.length>0&&!i.isNumber(e[0]))for(const t of e)yield*t;else yield*e}}_v_compute(t,o,e,n){const{nan_color:s}=n;let{low_color:i,high_color:c}=n;null==i&&(i=e[0]),null==c&&(c=e[e.length-1]);const{domain:a}=this,r=l.is_empty(a)?t:[…this._collect(a)];this._scan_data=this.scan(r,e.length);for(let n=0,l=t.length;n<l;n++){const l=t[n];isNaN(l)?o[n]=s:o[n]=this.cmap(l,e,i,c,this._scan_data)}}_colors(t){return Object.assign(Object.assign({},super._colors(t)),{low_color:null!=this.low_color?t(this.low_color):void 0,high_color:null!=this.high_color?t(this.high_color):void 0})}}e.ContinuousColorMapper=c,c.__name__="ContinuousColorMapper",c.init_ContinuousColorMapper()},n function _(n,r,o){Object.defineProperty(o,"__esModule",{value:!0});const e=n(140),t=n(12);class a extends e.ContinuousColorMapper{constructor(n){super(n)}scan(n,r){const o=null!=this.low?this.low:t.min(n),e=null!=this.high?this.high:t.max(n);return{max:e,min:o,norm_factor:1/(e-o),normed_interval:1/r}}cmap(n,r,o,e,t){const a=r.length-1;if(n==t.max)return r[a];const i=(n-t.min)*t.norm_factor,l=Math.floor(i/t.normed_interval);return l<0?o:l>a?e:r[l]}}o.LinearColorMapper=a,a.__name__="LinearColorMapper"},n function _(o,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=o(140),r=o(12);class l extends e.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:r.min(o),e=null!=this.high?this.high:r.max(o);return{max:e,min:n,scale:t/(Math.log(e)-Math.log(n))}}cmap(o,t,n,e,r){const l=t.length-1;if(o>r.max)return e;if(o==r.max)return t[l];if(o<r.min)return n;const a=Math.log(o)-Math.log(r.min);let s=Math.floor(a*r.scale);return s>l&&(s=l),t[s]}}n.LogColorMapper=l,l.__name__="LogColorMapper"},n function _(n,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=n(140),o=n(12);class t extends i.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,r,i,t){if(n<t.binning[0])return r;if(n>t.binning[t.binning.length-1])return i;return e[o.left_edge_index(n,t.binning)]}}r.ScanningColorMapper=t,t.__name__="ScanningColorMapper"},n function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});const i=n(1),o=n(143),r=n(12),s=n(9),a=i.__importStar(n(18)),l=n(19);class p extends o.ScanningColorMapper{constructor(n){super(n)}static init_EqHistColorMapper(){this.define({bins:[a.Int,65536]})}scan(n,t){const e=null!=this.low?this.low:r.min(n),i=null!=this.high?this.high:r.max(n),o=this.bins,a=s.linspace(e,i,o+1),p=r.bin_counts(n,a),c=new Array(o);for(let n=0,t=a.length;n<t-1;n++){const t=a[n],e=a[n+1];c[n]=(t+e)/2}const h=s.cumsum(p),u=h[h.length-1],g=r.map(h,n=>n/u);let m=t-1,_=[],M=0,f=2*t;for(;m!=t&&M<4&&0!=m;){const n=f/m;if(n>1e3)break;f=Math.round(Math.max(t*n,t));const e=s.range(0,f),i=r.map(g,n=>n*(f-1));_=r.interpolate(e,i,c);m=s.uniq(_).length-1,M++}if(0==m){_=[e,i];for(let n=0;n<t-1;n++)_.push(i)}else _=_.slice(_.length-t-1),m!=t&&l.logger.warn("EqHistColorMapper warning: Histogram equalization did not converge.");return{min:e,max:i,binning:_}}}e.EqHistColorMapper=p,p.__name__="EqHistColorMapper",p.init_EqHistColorMapper()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),i=e(146),_=r.__importStar(e(18));class a extends i.ContinuousScale{constructor(e){super(e)}static init_LinearScale(){this.internal({scan_result:[_.Any]})}compute(e){return this._linear_compute(e)}v_compute(e){return this._linear_v_compute(e)}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}n.LinearScale=a,a.__name__="LinearScale",a.init_LinearScale()},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const c=e(147);class s extends c.Scale{constructor(e){super(e)}}o.ContinuousScale=s,s.__name__="ContinuousScale"},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),_=t(148),s=t(24),i=n.__importStar(t(18));class a extends _.Transform{constructor(t){super(t)}static init_Scale(){this.internal({source_range:[i.Any],target_range:[i.Any]})}r_compute(t,e){return this.target_range.is_reversed?[this.compute(e),this.compute(t)]:[this.compute(t),this.compute(e)]}r_invert(t,e){return this.target_range.is_reversed?[this.invert(e),this.invert(t)]:[this.invert(t),this.invert(e)]}_linear_compute(t){const[e,r]=this._linear_compute_state();return e*t+r}_linear_v_compute(t){const[e,r]=this._linear_compute_state(),n=new s.NumberArray(t.length);for(let _=0;_<t.length;_++)n[_]=e*t[_]+r;return n}_linear_invert(t){const[e,r]=this._linear_compute_state();return(t-r)/e}_linear_v_invert(t){const[e,r]=this._linear_compute_state(),n=new s.NumberArray(t.length);for(let _=0;_<t.length;_++)n[_]=(t[_]-r)/e;return n}_linear_compute_state(){const t=this.source_range.start,e=this.source_range.end,r=this.target_range.start,n=(this.target_range.end-r)/(e-t);return[n,-n*t+r]}}r.Scale=a,a.__name__="Scale",a.init_Scale()},n function _(r,o,t){Object.defineProperty(t,"__esModule",{value:!0});var e=r(149);t.CustomJSTransform=e.CustomJSTransform;var a=r(150);t.Dodge=a.Dodge;var n=r(152);t.Interpolator=n.Interpolator;var p=r(153);t.Jitter=p.Jitter;var l=r(154);t.LinearInterpolator=l.LinearInterpolator;var v=r(155);t.StepInterpolator=v.StepInterpolator;var s=r(137);t.Transform=s.Transform},n function _(t,r,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),e=t(137),a=n.__importStar(t(18)),o=t(13),u=t(29);class i extends e.Transform{constructor(t){super(t)}static init_CustomJSTransform(){this.define({args:[a.Any,{}],func:[a.String,""],v_func:[a.String,""]})}get names(){return o.keys(this.args)}get values(){return o.values(this.args)}_make_transform(t,r){return new Function(…this.names,t,u.use_strict(r))}get scalar_transform(){return this._make_transform("x",this.func)}get vector_transform(){return this._make_transform("xs",this.v_func)}compute(t){return this.scalar_transform(…this.values,t)}v_compute(t){return this.vector_transform(…this.values,t)}}s.CustomJSTransform=i,i.__name__="CustomJSTransform",i.init_CustomJSTransform()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(1),r=e(151),_=o.__importStar(e(18));class i extends r.RangeTransform{constructor(e){super(e)}static init_Dodge(){this.define({value:[_.Number,0]})}_compute(e){return e+this.value}}n.Dodge=i,i.__name__="Dodge",i.init_Dodge()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),s=e(137),a=e(98),i=r.__importStar(e(18)),o=e(24),c=e(8);class u extends s.Transform{constructor(e){super(e)}static init_RangeTransform(){this.define({range:[i.Instance]})}v_compute(e){let t;if(this.range instanceof a.FactorRange)t=this.range.v_synthetic(e);else{if(!c.isArrayableOf(e,c.isNumber))throw new Error("unexpected");t=e}const n=new o.NumberArray(t.length);for(let e=0;e<t.length;e++){const r=t[e];n[e]=this._compute(r)}return n}compute(e){if(this.range instanceof a.FactorRange)return this._compute(this.range.synthetic(e));if(c.isNumber(e))return this._compute(e);throw new Error("unexpected")}}n.RangeTransform=u,u.__name__="RangeTransform",u.init_RangeTransform()},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),o=t(137),s=n.__importStar(t(18)),i=t(24),a=t(9),h=t(8);class d extends o.Transform{constructor(t){super(t),this._sorted_dirty=!0}static init_Interpolator(){this.define({x:[s.Any],y:[s.Any],data:[s.Any],clip:[s.Boolean,!0]})}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._sorted_dirty=!0)}v_compute(t){const e=new i.NumberArray(t.length);for(let r=0;r<t.length;r++){const n=t[r];e[r]=this.compute(n)}return e}sort(t=!1){if(!this._sorted_dirty)return;let e,r;if(h.isString(this.x)&&h.isString(this.y)&&null!=this.data){const t=this.data.columns();if(!a.includes(t,this.x))throw new Error("The x parameter does not correspond to a valid column name defined in the data parameter");if(!a.includes(t,this.y))throw new Error("The y parameter does not correspond to a valid column name defined in the data parameter");e=this.data.get_column(this.x),r=this.data.get_column(this.y)}else{if(!h.isArray(this.x)||!h.isArray(this.y))throw new Error("parameters ‘x’ and ‘y’ must be both either string fields or arrays");e=this.x,r=this.y}if(e.length!==r.length)throw new Error("The length for x and y do not match");if(e.length<2)throw new Error("x and y must have at least two elements to support interpolation");const n=e.length,o=new Uint32Array(n);for(let t=0;t<n;t++)o[t]=t;const s=t?-1:1;o.sort((t,r)=>s*(e[t]-e[r])),this._x_sorted=new i.NumberArray(n),this._y_sorted=new i.NumberArray(n);for(let t=0;t<n;t++)this._x_sorted[t]=e[o[t]],this._y_sorted[t]=r[o[t]];this._sorted_dirty=!1}}r.Interpolator=d,d.__name__="Interpolator",d.init_Interpolator()},n function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),s=t(151),n=r.__importStar(t(18)),u=r.__importStar(t(10));class o extends s.RangeTransform{constructor(t){super(t)}static init_Jitter(){this.define({mean:[n.Number,0],width:[n.Number,1],distribution:[n.Distribution,"uniform"]})}v_compute(t){return null!=this.previous_values&&this.previous_values.length==t.length||(this.previous_values=super.v_compute(t)),this.previous_values}_compute(t){switch(this.distribution){case"uniform":return t+this.mean+(u.random()-.5)*this.width;case"normal":return t+u.rnorm(this.mean,this.width)}}}e.Jitter=o,o.__name__="Jitter",o.init_Jitter()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const _=t(9),r=t(152);class o extends r.Interpolator{constructor(t){super(t)}compute(t){if(this.sort(!1),this.clip){if(t<this._x_sorted[0]||t>this._x_sorted[this._x_sorted.length-1])return NaN}else{if(t<this._x_sorted[0])return this._y_sorted[0];if(t>this._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=_.find_last_index(this._x_sorted,s=>s<t),e=this._x_sorted[s],r=this._x_sorted[s+1],o=this._y_sorted[s],i=this._y_sorted[s+1];return o+(t-e)/(r-e)*(i-o)}}e.LinearInterpolator=o,o.__name__="LinearInterpolator"},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const s=t(1),o=t(152),_=s.__importStar(t(18)),i=t(9);class n extends o.Interpolator{constructor(t){super(t)}static init_StepInterpolator(){this.define({mode:[_.StepMode,"after"]})}compute(t){if(this.sort(!1),this.clip){if(t<this._x_sorted[0]||t>this._x_sorted[this._x_sorted.length-1])return NaN}else{if(t<this._x_sorted[0])return this._y_sorted[0];if(t>this._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case"after":e=i.find_last_index(this._x_sorted,e=>t>=e);break;case"before":e=i.find_index(this._x_sorted,e=>t<=e);break;case"center":{const r=this._x_sorted.map(e=>Math.abs(e-t)),s=i.min(r);e=i.find_index(r,t=>s===t);break}default:throw new Error("unknown mode: "+this.mode)}return-1!=e?this._y_sorted[e]:NaN}}r.StepInterpolator=n,n.__name__="StepInterpolator",n.init_StepInterpolator()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),a=e(147),i=e(24),s=e(9),o=e(12),c=r.__importStar(e(18));class _ extends a.Scale{constructor(e){super(e)}static init_LinearInterpolationScale(){this.internal({binning:[c.Array]})}compute(e){return e}v_compute(e){const t=o.norm(e,this.source_range.start,this.source_range.end),n=s.linspace(0,1,this.binning.length),r=o.interpolate(t,n,this.binning),a=o.norm(r,this.source_range.start,this.source_range.end),c=this.target_range.end-this.target_range.start,_=o.map(a,e=>this.target_range.start+e*c);return new i.NumberArray(_)}invert(e){return e}v_invert(e){return new i.NumberArray(e)}}n.LinearInterpolationScale=_,_.__name__="LinearInterpolationScale",_.init_LinearInterpolationScale()},n function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const a=t(146),r=t(24);class s extends a.ContinuousScale{constructor(t){super(t)}compute(t){const[e,o,a,r]=this._compute_state();let s;if(0==a)s=0;else{const n=(Math.log(t)-r)/a;s=isFinite(n)?n*e+o:NaN}return s}v_compute(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);if(0==a)for(let e=0;e<t.length;e++)n[e]=0;else for(let r=0;r<t.length;r++){const l=(Math.log(t[r])-s)/a;let c;c=isFinite(l)?l*e+o:NaN,n[r]=c}return n}invert(t){const[e,o,a,r]=this._compute_state(),s=(t-o)/e;return Math.exp(a*s+r)}v_invert(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);for(let r=0;r<t.length;r++){const l=(t[r]-o)/e;n[r]=Math.exp(a*l+s)}return n}_get_safe_factor(t,e){let o=t<0?0:t,a=e<0?0:e;if(o==a)if(0==o)[o,a]=[1,10];else{const t=Math.log(o)/Math.log(10);o=10**Math.floor(t),a=Math.ceil(t)!=Math.floor(t)?10**Math.ceil(t):10**(Math.ceil(t)+1)}return[o,a]}_compute_state(){const t=this.source_range.start,e=this.source_range.end,o=this.target_range.start,a=this.target_range.end-o,[r,s]=this._get_safe_factor(t,e);let n,l;0==r?(n=Math.log(s),l=0):(n=Math.log(s)-Math.log(r),l=Math.log(r));return[a,o,n,l]}}o.LogScale=s,s.__name__="LogScale"},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),n=t(99),r=i.__importStar(t(18));class a extends n.Range{constructor(t){super(t)}static init_Range1d(){this.define({start:[r.Number,0],end:[r.Number,1],reset_start:[r.Number],reset_end:[r.Number]})}_set_auto_bounds(){if("auto"==this.bounds){const t=Math.min(this.reset_start,this.reset_end),e=Math.max(this.reset_start,this.reset_end);this.setv({bounds:[t,e]},{silent:!0})}}initialize(){super.initialize(),null==this.reset_start&&(this.reset_start=this.start),null==this.reset_end&&(this.reset_end=this.end),this._set_auto_bounds()}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}reset(){this._set_auto_bounds(),this.start!=this.reset_start||this.end!=this.reset_end?this.setv({start:this.reset_start,end:this.reset_end}):this.change.emit()}}s.Range1d=a,a.__name__="Range1d",a.init_Range1d()},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=t(72),i=new Map;n.measure_font=function(t){const e=i.get(t);if(null!=e)return e;const n=o.span({style:{font:t}},"Hg"),l=o.div({style:{display:"inline-block",width:"1px",height:"0px"}}),s=o.div({},n,l);document.body.appendChild(s);try{l.style.verticalAlign="baseline";const e=o.offset(l).top-o.offset(n).top;l.style.verticalAlign="bottom";const d=o.offset(l).top-o.offset(n).top,c={height:d,ascent:e,descent:d-e};return i.set(t,c),c}finally{document.body.removeChild(s)}};const l=new Map;n.measure_text=function(t,e){let n=l.get(e);if(null!=n){const e=n.get(t);if(null!=e)return e}else n=new Map,l.set(e,n);const i=o.div({style:{display:"inline-block","white-space":"nowrap",font:e}},t);document.body.appendChild(i);try{const{width:e,height:o}=i.getBoundingClientRect();return n.set(t,{width:e,height:o}),{width:e,height:o}}finally{document.body.removeChild(i)}}},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(161),l=s.__importStar(t(28)),n=s.__importStar(t(18));class o extends a.TextAnnotationView{initialize(){super.initialize(),this.visuals.warm_cache()}_get_size(){const{ctx:t}=this.layer;this.visuals.text.set_value(t);const{width:e,ascent:i}=t.measureText(this.model.text);return{width:e,height:i}}_render(){let t;switch(this.model.angle_units){case"rad":t=-this.model.angle;break;case"deg":t=-this.model.angle*Math.PI/180}const e=null!=this.panel?this.panel:this.plot_view.frame,i=this.coordinates.x_scale,s=this.coordinates.y_scale;let a="data"==this.model.x_units?i.compute(this.model.x):e.xview.compute(this.model.x),l="data"==this.model.y_units?s.compute(this.model.y):e.yview.compute(this.model.y);a+=this.model.x_offset,l-=this.model.y_offset;("canvas"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,this.model.text,a,l,t)}}i.LabelView=o,o.__name__="LabelView";class _ extends a.TextAnnotation{constructor(t){super(t)}static init_Label(){this.prototype.default_view=o,this.mixins([l.Text,["border_",l.Line],["background_",l.Fill]]),this.define({x:[n.Number],x_units:[n.SpatialUnits,"data"],y:[n.Number],y_units:[n.SpatialUnits,"data"],text:[n.String],angle:[n.Angle,0],angle_units:[n.AngleUnits,"rad"],x_offset:[n.Number,0],y_offset:[n.Number,0]}),this.override({background_fill_color:null,border_line_color:null})}}i.Label=_,_.__name__="Label",_.init_Label()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),l=e(36),a=e(72),n=i.__importStar(e(18)),o=e(159),r=e(11);class _ extends l.AnnotationView{constructor(){super(…arguments),this.rotate=!0}initialize(){super.initialize(),"css"==this.model.render_mode&&(this.el=a.div(),this.plot_view.canvas_view.add_overlay(this.el))}remove(){null!=this.el&&a.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),"css"==this.model.render_mode?this.connect(this.model.change,()=>this.render()):this.connect(this.model.change,()=>this.plot_view.request_render())}render(){this.model.visible||"css"!=this.model.render_mode||a.undisplay(this.el),super.render()}_calculate_text_dimensions(e,t){const{width:s}=e.measureText(t),{height:i}=o.measure_font(this.visuals.text.font_value());return[s,i]}_calculate_bounding_box_dimensions(e,t){const[s,i]=this._calculate_text_dimensions(e,t);let l,a;switch(e.textAlign){case"left":l=0;break;case"center":l=-s/2;break;case"right":l=-s;break;default:r.unreachable()}switch(e.textBaseline){case"top":a=0;break;case"middle":a=-.5*i;break;case"bottom":a=-1*i;break;case"alphabetic":a=-.8*i;break;case"hanging":a=-.17*i;break;case"ideographic":a=-.83*i;break;default:r.unreachable()}return[l,a,s,i]}_canvas_text(e,t,s,i,l){this.visuals.text.set_value(e);const a=this._calculate_bounding_box_dimensions(e,t);e.save(),e.beginPath(),e.translate(s,i),l&&e.rotate(l),e.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),e.stroke()),this.visuals.text.doit&&(this.visuals.text.set_value(e),e.fillText(t,0,0)),e.restore()}_css_text(e,t,s,i,l){const{el:n}=this;r.assert(null!=n),a.undisplay(n),this.visuals.text.set_value(e);const o=this._calculate_bounding_box_dimensions(e,t),_=this.visuals.border_line.line_dash.value().length<2?"solid":"dashed";this.visuals.border_line.set_value(e),this.visuals.background_fill.set_value(e),n.style.position="absolute",n.style.left=s+o[0]+"px",n.style.top=i+o[1]+"px",n.style.color=""+this.visuals.text.text_color.value(),n.style.opacity=""+this.visuals.text.text_alpha.value(),n.style.font=""+this.visuals.text.font_value(),n.style.lineHeight="normal",l&&(n.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(n.style.backgroundColor=""+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(n.style.borderStyle=""+_,n.style.borderWidth=this.visuals.border_line.line_width.value()+"px",n.style.borderColor=""+this.visuals.border_line.color_value()),n.textContent=t,a.display(n)}}s.TextAnnotationView=_,_.__name__="TextAnnotationView";class u extends l.Annotation{constructor(e){super(e)}static init_TextAnnotation(){this.define({render_mode:[n.RenderMode,"canvas"]})}}s.TextAnnotation=u,u.__name__="TextAnnotation",u.init_TextAnnotation()},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),o=t(161),l=t(85),a=i.__importStar(t(28)),n=t(72),r=i.__importStar(t(18));class _ extends o.TextAnnotationView{initialize(){if(super.initialize(),this.set_data(this.model.source),"css"==this.model.render_mode)for(let t=0,e=this._text.length;t<e;t++){const t=n.div({style:{display:"none"}});this.el.appendChild(t)}}connect_signals(){super.connect_signals(),"css"==this.model.render_mode?(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.render()})):(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}))}set_data(t){super.set_data(t),this.visuals.warm_cache(t)}_map_data(){const t=this.coordinates.x_scale,e=this.coordinates.y_scale,s=null!=this.panel?this.panel:this.plot_view.frame;return["data"==this.model.x_units?t.v_compute(this._x):s.xview.v_compute(this._x),"data"==this.model.y_units?e.v_compute(this._y):s.yview.v_compute(this._y)]}_render(){const t="canvas"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer,[s,i]=this._map_data();for(let o=0,l=this._text.length;o<l;o++)t(e,o,this._text[o],s[o]+this._x_offset[o],i[o]-this._y_offset[o],this._angle[o])}_get_size(){const{ctx:t}=this.layer;this.visuals.text.set_value(t);const{width:e,ascent:s}=t.measureText(this._text[0]);return{width:e,height:s}}_v_canvas_text(t,e,s,i,o,l){this.visuals.text.set_vectorize(t,e);const a=this._calculate_bounding_box_dimensions(t,s);t.save(),t.beginPath(),t.translate(i,o),t.rotate(l),t.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_vectorize(t,e),t.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_vectorize(t,e),t.stroke()),this.visuals.text.doit&&(this.visuals.text.set_vectorize(t,e),t.fillText(s,0,0)),t.restore()}_v_css_text(t,e,s,i,o,l){const a=this.el.children[e];a.textContent=s,this.visuals.text.set_vectorize(t,e);const r=this._calculate_bounding_box_dimensions(t,s),_=this.visuals.border_line.line_dash.value().length<2?"solid":"dashed";this.visuals.border_line.set_vectorize(t,e),this.visuals.background_fill.set_vectorize(t,e),a.style.position="absolute",a.style.left=i+r[0]+"px",a.style.top=o+r[1]+"px",a.style.color=""+this.visuals.text.text_color.value(),a.style.opacity=""+this.visuals.text.text_alpha.value(),a.style.font=""+this.visuals.text.font_value(),a.style.lineHeight="normal",l&&(a.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(a.style.backgroundColor=""+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(a.style.borderStyle=""+_,a.style.borderWidth=this.visuals.border_line.line_width.value()+"px",a.style.borderColor=""+this.visuals.border_line.color_value()),n.display(a)}}s.LabelSetView=_,_.__name__="LabelSetView";class h extends o.TextAnnotation{constructor(t){super(t)}static init_LabelSet(){this.prototype.default_view=_,this.mixins([a.TextVector,["border_",a.LineVector],["background_",a.FillVector]]),this.define({x:[r.NumberSpec],y:[r.NumberSpec],x_units:[r.SpatialUnits,"data"],y_units:[r.SpatialUnits,"data"],text:[r.StringSpec,{field:"text"}],angle:[r.AngleSpec,0],x_offset:[r.NumberSpec,{value:0}],y_offset:[r.NumberSpec,{value:0}],source:[r.Instance,()=>new l.ColumnDataSource]}),this.override({background_fill_color:null,border_line_color:null})}}s.LabelSet=h,h.__name__="LabelSet",h.init_LabelSet()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=t(36),n=s.__importStar(t(28)),h=s.__importStar(t(18)),a=t(15),_=t(159),o=t(79),r=t(9),d=t(8),c=t(11);class g extends l.AnnotationView{cursor(t,e){return"none"==this.model.click_policy?null:"pointer"}get legend_padding(){return null!=this.visuals.border_line.line_color.value()?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.item_change,()=>this.plot_view.request_render())}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:s,label_width:l}=this.model;this.max_label_height=r.max([_.measure_font(this.visuals.label_text.font_value()).height,s,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,r.max([n.measureText(e).width,l]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?_.measure_font(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const h=Math.max(r.max([…this.text_widths.values()]),0),a=this.model.margin,{legend_padding:g}=this,m=this.model.spacing,{label_standoff:b}=this.model;let u,f;if("vertical"==this.model.orientation)u=t.length*this.max_label_height+Math.max(t.length-1,0)*m+2*g+this.title_height,f=r.max([h+i+b+2*g,this.title_width+2*g]);else{let e=2*g+Math.max(t.length-1,0)*m;for(const[,t]of this.text_widths)e+=r.max([t,l])+i+b;f=r.max([this.title_width+2*g,e]),u=this.max_label_height+this.title_height+2*g}const x=null!=this.panel?this.panel:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if(d.isString(v))switch(v){case"top_left":y=p.start+a,k=w.start+a;break;case"top_center":y=(p.end+p.start)/2-f/2,k=w.start+a;break;case"top_right":y=p.end-a-f,k=w.start+a;break;case"bottom_right":y=p.end-a-f,k=w.end-a-u;break;case"bottom_center":y=(p.end+p.start)/2-f/2,k=w.end-a-u;break;case"bottom_left":y=p.start+a,k=w.end-a-u;break;case"center_left":y=p.start+a,k=(w.end+w.start)/2-u/2;break;case"center":y=(p.end+p.start)/2-f/2,k=(w.end+w.start)/2-u/2;break;case"center_right":y=p.end-a-f,k=(w.end+w.start)/2-u/2}else if(d.isArray(v)&&2==v.length){const[t,e]=v;y=x.xview.compute(t),k=x.yview.compute(e)-u}else c.unreachable();return new o.BBox({left:y,top:k,width:f,height:u})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=i=l;const _=this.compute_legend_bbox(),r="vertical"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop();for(const g of c){const c=_.x+a,m=_.y+i+this.title_height;let b,u;[b,u]=r?[_.width-2*l,this.max_label_height]:[this.text_widths.get(g)+s+h,this.max_label_height];if(new o.BBox({left:c,top:m,width:b,height:u}).contains(t,e)){switch(this.model.click_policy){case"hide":for(const t of d.renderers)t.visible=!t.visible;break;case"mute":for(const t of d.renderers)t.muted=!t.muted}return!0}r?i+=this.max_label_height+n:a+=this.text_widths.get(g)+s+h+n}}return!1}_render(){if(0==this.model.items.length)return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this.model.title&&this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.set_value(t),t.fill(),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.stroke())}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=l,_=l;const o="vertical"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop(),g=d.get_field_from_label_prop();if(0==c.length)continue;const m=(()=>{switch(this.model.click_policy){case"none":return!0;case"hide":return r.every(d.renderers,t=>t.visible);case"mute":return r.every(d.renderers,t=>!t.muted)}})();for(const r of c){const c=e.x+a,b=e.y+_+this.title_height,u=c+i,f=b+s;o?_+=this.max_label_height+n:a+=this.text_widths.get(r)+i+h+n,this.visuals.label_text.set_value(t),t.fillText(r,u+h,b+this.max_label_height/2);for(const e of d.renderers){this.plot_view.renderer_views.get(e).draw_legend(t,c,u,b,f,g,r,d.index)}if(!m){let s,n;[s,n]=o?[e.width-2*l,this.max_label_height]:[this.text_widths.get(r)+i+h,this.max_label_height],t.beginPath(),t.rect(c,b,s,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(this.model.title,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=g,g.__name__="LegendView";class m extends l.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new a.Signal0(this,"item_change")}static init_Legend(){this.prototype.default_view=g,this.mixins([["label_",n.Text],["title_",n.Text],["inactive_",n.Fill],["border_",n.Line],["background_",n.Fill]]),this.define({orientation:[h.Orientation,"vertical"],location:[h.Any,"top_right"],title:[h.String],title_standoff:[h.Number,5],label_standoff:[h.Number,5],glyph_height:[h.Number,20],glyph_width:[h.Number,20],label_height:[h.Number,20],label_width:[h.Number,20],margin:[h.Number,10],padding:[h.Number,10],spacing:[h.Number,3],items:[h.Array,[]],click_policy:[h.Any,"none"]}),this.override({border_line_color:"#e5e5e5",border_line_alpha:.5,border_line_width:1,background_fill_color:"#ffffff",background_fill_alpha:.95,inactive_fill_color:"white",inactive_fill_alpha:.7,label_text_font_size:"13px",label_text_baseline:"middle",title_text_font_size:"13px",title_text_font_style:"italic"})}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(…i)}return t}}i.Legend=m,m.__name__="Legend",m.init_Legend()},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),l=e(81),i=e(86),s=e(165),o=t.__importStar(e(18)),_=e(19),a=e(9);class u extends l.Model{constructor(e){super(e)}static init_LegendItem(){this.define({label:[o.StringSpec,null],renderers:[o.Array,[]],index:[o.Number,null]})}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!a.includes(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()});this._check_data_sources_on_renderers()||_.logger.error("Non matching data sources on legend item renderers");this._check_field_label_on_data_source()||_.logger.error("Bad column name on label: "+this.label)}get_field_from_label_prop(){const{label:e}=this;return s.isField(e)?e.field:null}get_labels_list_from_label_prop(){if(s.isValue(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return["No source found"];if(r=this.renderers[0].data_source,r instanceof i.ColumnarDataSource){const n=r.get_column(e);return null!=n?a.uniq(Array.from(n)):["Invalid field"]}}return[]}}n.LegendItem=u,u.__name__="LegendItem",u.init_LegendItem()},n function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(8);n.isValue=function(e){return t.isPlainObject(e)&&"value"in e},n.isField=function(e){return t.isPlainObject(e)&&"field"in e}},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(36),o=n.__importStar(t(28)),l=t(15),a=n.__importStar(t(18));class r extends s.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.data_update,()=>this.plot_view.request_render())}_render(){const{xs:t,ys:e}=this.model;if(t.length!=e.length)return;if(t.length<3||e.length<3)return;const{frame:i}=this.plot_view,{ctx:n}=this.layer;for(let s=0,o=t.length;s<o;s++){let o,l;if("screen"!=this.model.xs_units)throw new Error("not implemented");if(o=this.model.screen?t[s]:i.xview.compute(t[s]),"screen"!=this.model.ys_units)throw new Error("not implemented");l=this.model.screen?e[s]:i.yview.compute(e[s]),0==s?(n.beginPath(),n.moveTo(o,l)):n.lineTo(o,l)}n.closePath(),this.visuals.line.doit&&(this.visuals.line.set_value(n),n.stroke()),this.visuals.fill.doit&&(this.visuals.fill.set_value(n),n.fill())}}i.PolyAnnotationView=r,r.__name__="PolyAnnotationView";class _ extends s.Annotation{constructor(t){super(t)}static init_PolyAnnotation(){this.prototype.default_view=r,this.mixins([o.Line,o.Fill]),this.define({xs:[a.Array,[]],xs_units:[a.SpatialUnits,"data"],ys:[a.Array,[]],ys_units:[a.SpatialUnits,"data"]}),this.internal({screen:[a.Boolean,!1]}),this.override({fill_color:"#fff9ba",fill_alpha:.4,line_color:"#cccccc",line_alpha:.3})}initialize(){super.initialize(),this.data_update=new l.Signal0(this,"data_update")}update({xs:t,ys:e}){this.setv({xs:t,ys:e,screen:!0},{silent:!0}),this.data_update.emit()}}i.PolyAnnotation=_,_.__name__="PolyAnnotation",_.init_PolyAnnotation()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),l=n.__importStar(e(18));class r extends o.AnnotationView{initialize(){super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render())}_render(){const e=this.model.gradient,t=this.model.y_intercept;if(null==e||null==t)return;const{frame:i}=this.plot_view,n=this.coordinates.x_scale,o=this.coordinates.y_scale,s=i.bbox.top,l=s+i.bbox.height,r=(o.invert(s)-t)/e,_=(o.invert(l)-t)/e,a=n.compute(r),c=n.compute(_),{ctx:p}=this.layer;p.save(),p.beginPath(),this.visuals.line.set_value(p),p.moveTo(a,s),p.lineTo(c,l),p.stroke(),p.restore()}}i.SlopeView=r,r.__name__="SlopeView";class _ extends o.Annotation{constructor(e){super(e)}static init_Slope(){this.prototype.default_view=r,this.mixins(s.Line),this.define({gradient:[l.Number,null],y_intercept:[l.Number,null]}),this.override({line_color:"black"})}}i.Slope=_,_.__name__="Slope",_.init_Slope()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),a=n.__importStar(e(18));class l extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,n=this.coordinates.y_scale,o=(t,i)=>"data"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,a,l,r;"width"==this.model.dimension?(l=o(n,t.yview),a=t.bbox.left,r=t.bbox.width,s=this.model.properties.line_width.value()):(l=t.bbox.top,a=o(i,t.xview),r=this.model.properties.line_width.value(),s=t.bbox.height);const{ctx:_}=this.layer;_.save(),_.beginPath(),this.visuals.line.set_value(_),_.moveTo(a,l),"width"==this.model.dimension?_.lineTo(a+r,l):_.lineTo(a,l+s),_.stroke(),_.restore()}}i.SpanView=l,l.__name__="SpanView";class r extends o.Annotation{constructor(e){super(e)}static init_Span(){this.prototype.default_view=l,this.mixins(s.Line),this.define({render_mode:[a.RenderMode,"canvas"],location:[a.Number,null],location_units:[a.SpatialUnits,"data"],dimension:[a.Dimension,"width"]}),this.override({line_color:"black"}),this.internal({for_hover:[a.Boolean,!1]})}}i.Span=r,r.__name__="Span",r.init_Span()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const l=t(1),s=t(161),a=t(74),n=l.__importStar(t(28)),o=l.__importStar(t(18));class r extends s.TextAnnotationView{initialize(){super.initialize(),this.visuals.text=new a.Text(this.model)}_get_location(){const t=this.panel,e=this.model.offset;let i,l;const{bbox:s}=t;switch(t.side){case"above":case"below":switch(this.model.vertical_align){case"top":l=s.top+5;break;case"middle":l=s.vcenter;break;case"bottom":l=s.bottom-5}switch(this.model.align){case"left":i=s.left+e;break;case"center":i=s.hcenter;break;case"right":i=s.right-e}break;case"left":switch(this.model.vertical_align){case"top":i=s.left-5;break;case"middle":i=s.hcenter;break;case"bottom":i=s.right+5}switch(this.model.align){case"left":l=s.bottom-e;break;case"center":l=s.vcenter;break;case"right":l=s.top+e}break;case"right":switch(this.model.vertical_align){case"top":i=s.right-5;break;case"middle":i=s.hcenter;break;case"bottom":i=s.left+5}switch(this.model.align){case"left":l=s.top+e;break;case"center":l=s.vcenter;break;case"right":l=s.bottom-e}}return[i,l]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),l=this.panel.get_label_angle_heuristic("parallel");("canvas"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,l)}_get_size(){const{text:t}=this.model;if(null==t||0==t.length)return{width:0,height:0};{this.visuals.text.set_value(this.layer.ctx);const{width:e,ascent:i}=this.layer.ctx.measureText(t);return{width:e,height:i*this.visuals.text.text_line_height.value()+10}}}}i.TitleView=r,r.__name__="TitleView";class c extends s.TextAnnotation{constructor(t){super(t)}static init_Title(){this.prototype.default_view=r,this.mixins([["border_",n.Line],["background_",n.Fill]]),this.define({text:[o.String],text_font:[o.Font,"helvetica"],text_font_size:[o.StringSpec,"13px"],text_font_style:[o.FontStyle,"bold"],text_color:[o.ColorSpec,"#444444"],text_alpha:[o.NumberSpec,1],text_line_height:[o.Number,1],vertical_align:[o.VerticalAlign,"bottom"],align:[o.TextAlign,"left"],offset:[o.Number,0]}),this.override({background_fill_color:null,border_line_color:null}),this.internal({text_align:[o.TextAlign,"left"],text_baseline:[o.TextBaseline,"bottom"]})}}i.Title=c,c.__name__="Title",c.init_Title()},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),l=e(36),s=e(115),a=e(72),n=e(79),r=o.__importStar(e(18));class _ extends l.AnnotationView{constructor(){super(…arguments),this.rotate=!0,this._invalidate_toolbar=!0,this._previous_bbox=new n.BBox}initialize(){super.initialize(),this.el=a.div(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){this._toolbar_view=await s.build_view(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push(e=>this._toolbar_view.set_visibility(e))}remove(){this._toolbar_view.remove(),a.remove(this.el),super.remove()}render(){this.model.visible||a.undisplay(this.el),super.render()}_render(){const{bbox:e}=this.panel;this._previous_bbox.equals(e)||(a.position(this.el,e),this._previous_bbox=e),this._invalidate_toolbar&&(this.el.style.position="absolute",this.el.style.overflow="hidden",this._toolbar_view.render(),a.empty(this.el),this.el.appendChild(this._toolbar_view.el),this._invalidate_toolbar=!1),a.display(this.el)}_get_size(){const{tools:e,logo:i}=this.model.toolbar;return{width:30*e.length+(null!=i?25:0),height:30}}}t.ToolbarPanelView=_,_.__name__="ToolbarPanelView";class h extends l.Annotation{constructor(e){super(e)}static init_ToolbarPanel(){this.prototype.default_view=_,this.define({toolbar:[r.Instance]})}}t.ToolbarPanel=h,h.__name__="ToolbarPanel",h.init_ToolbarPanel()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=t(36),o=t(72),n=s.__importStar(t(18)),a=t(172),h=t(173),r=s.__importDefault(t(174));class c extends l.AnnotationView{initialize(){super.initialize(),this.el=o.div({class:a.bk_tooltip}),o.undisplay(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){o.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,()=>this.render()),this.connect(this.model.properties.position.change,()=>this._reposition())}styles(){return[…super.styles(),r.default]}render(){this.model.visible||o.undisplay(this.el),super.render()}_render(){const{content:t}=this.model;null!=t?(o.empty(this.el),o.classes(this.el).toggle(a.bk_tooltip_custom,this.model.custom),this.el.appendChild(t),this.model.show_arrow&&this.el.classList.add(a.bk_tooltip_arrow)):o.undisplay(this.el)}_reposition(){const{position:t}=this.model;if(null==t)return void o.undisplay(this.el);const[e,i]=t,s=(()=>{const t=this.parent.layout.bbox.relativize(),{attachment:s}=this.model;switch(s){case"horizontal":return e<t.hcenter?"right":"left";case"vertical":return i<t.vcenter?"below":"above";default:return s}})();let l;this.el.classList.remove(h.bk_right),this.el.classList.remove(h.bk_left),this.el.classList.remove(h.bk_above),this.el.classList.remove(h.bk_below),o.display(this.el);let n=null,a=null;switch(s){case"right":this.el.classList.add(h.bk_left),n=e+(this.el.offsetWidth-this.el.clientWidth)+10,l=i-this.el.offsetHeight/2;break;case"left":this.el.classList.add(h.bk_right),a=this.plot_view.layout.bbox.width-e+10,l=i-this.el.offsetHeight/2;break;case"below":this.el.classList.add(h.bk_above),l=i+(this.el.offsetHeight-this.el.clientHeight)+10,n=Math.round(e-this.el.offsetWidth/2);break;case"above":this.el.classList.add(h.bk_below),l=i-this.el.offsetHeight-10,n=Math.round(e-this.el.offsetWidth/2)}this.el.style.top=l+"px",this.el.style.left=null!=n?n+"px":"auto",this.el.style.right=null!=a?a+"px":"auto"}}i.TooltipView=c,c.__name__="TooltipView";class d extends l.Annotation{constructor(t){super(t)}static init_Tooltip(){this.prototype.default_view=c,this.define({attachment:[n.TooltipAttachment,"horizontal"],inner_only:[n.Boolean,!0],show_arrow:[n.Boolean,!0]}),this.override({level:"overlay"}),this.internal({position:[n.Any,null],content:[n.Any,()=>o.div()],custom:[n.Any]})}clear(){this.position=null}}i.Tooltip=d,d.__name__="Tooltip",d.init_Tooltip()},n function _(o,t,l){Object.defineProperty(l,"__esModule",{value:!0}),l.bk_tooltip="bk-tooltip",l.bk_tooltip_arrow="bk-tooltip-arrow",l.bk_tooltip_custom="bk-tooltip-custom",l.bk_tooltip_row_label="bk-tooltip-row-label",l.bk_tooltip_row_value="bk-tooltip-row-value",l.bk_tooltip_color_block="bk-tooltip-color-block"},n function _(e,b,k){Object.defineProperty(k,"__esModule",{value:!0}),k.bk_active="bk-active",k.bk_inline="bk-inline",k.bk_left="bk-left",k.bk_right="bk-right",k.bk_above="bk-above",k.bk_below="bk-below",k.bk_up="bk-up",k.bk_down="bk-down",k.bk_side=function(e){switch(e){case"above":return k.bk_above;case"below":return k.bk_below;case"left":return k.bk_left;case"right":return k.bk_right}}},n function _(o,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root {\n /* Same border color used everywhere /\n / Gray of icons /\n}\n.bk-root .bk-tooltip {\n font-weight: 300;\n font-size: 12px;\n position: absolute;\n padding: 5px;\n border: 1px solid #e5e5e5;\n color: #2f2f2f;\n background-color: white;\n pointer-events: none;\n opacity: 0.95;\n z-index: 100;\n}\n.bk-root .bk-tooltip > div:not(:first-child) {\n / gives space when multiple elements are being hovered over /\n margin-top: 5px;\n border-top: #e5e5e5 1px dashed;\n}\n.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before {\n position: absolute;\n margin: -7px 0 0 0;\n top: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 7px 0 7px 0;\n border-color: transparent;\n content: " ";\n display: block;\n left: -10px;\n border-right-width: 10px;\n border-right-color: #909599;\n}\n.bk-root .bk-tooltip.bk-left::before {\n left: -10px;\n border-right-width: 10px;\n border-right-color: #909599;\n}\n.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after {\n position: absolute;\n margin: -7px 0 0 0;\n top: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 7px 0 7px 0;\n border-color: transparent;\n content: " ";\n display: block;\n right: -10px;\n border-left-width: 10px;\n border-left-color: #909599;\n}\n.bk-root .bk-tooltip.bk-right::after {\n right: -10px;\n border-left-width: 10px;\n border-left-color: #909599;\n}\n.bk-root .bk-tooltip.bk-above::before {\n position: absolute;\n margin: 0 0 0 -7px;\n left: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 7px 0 7px;\n border-color: transparent;\n content: " ";\n display: block;\n top: -10px;\n border-bottom-width: 10px;\n border-bottom-color: #909599;\n}\n.bk-root .bk-tooltip.bk-below::after {\n position: absolute;\n margin: 0 0 0 -7px;\n left: 50%;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 7px 0 7px;\n border-color: transparent;\n content: " ";\n display: block;\n bottom: -10px;\n border-top-width: 10px;\n border-top-color: #909599;\n}\n.bk-root .bk-tooltip-row-label {\n text-align: right;\n color: #26aae1;\n / blue from toolbar highlighting /\n}\n.bk-root .bk-tooltip-row-value {\n color: default;\n / seems to be necessary for notebook /\n}\n.bk-root .bk-tooltip-color-block {\n width: 12px;\n height: 12px;\n margin-left: 5px;\n margin-right: 5px;\n outline: #dddddd solid 1px;\n display: inline-block;\n}\n’},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),r=e(123),o=e(84),h=e(28),n=i.__importStar(e(18));class l extends r.UpperLowerView{connect_signals(){super.connect_signals(),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}_render(){this._map_data();const{ctx:e}=this.layer;if(this.visuals.line.doit)for(let s=0,t=this._lower_sx.length;s<t;s++)this.visuals.line.set_vectorize(e,s),e.beginPath(),e.moveTo(this._lower_sx[s],this._lower_sy[s]),e.lineTo(this._upper_sx[s],this._upper_sy[s]),e.stroke();const s="height"==this.model.dimension?0:Math.PI/2;if(null!=this.model.lower_head)for(let t=0,i=this._lower_sx.length;t<i;t++)e.save(),e.translate(this._lower_sx[t],this._lower_sy[t]),e.rotate(s+Math.PI),this.model.lower_head.render(e,t),e.restore();if(null!=this.model.upper_head)for(let t=0,i=this._upper_sx.length;t<i;t++)e.save(),e.translate(this._upper_sx[t],this._upper_sy[t]),e.rotate(s),this.model.upper_head.render(e,t),e.restore()}}t.WhiskerView=l,l.__name__="WhiskerView";class _ extends r.UpperLower{constructor(e){super(e)}static init_Whisker(){this.prototype.default_view=l,this.mixins(h.LineVector),this.define({lower_head:[n.Instance,()=>new o.TeeHead({level:"underlay",size:10})],upper_head:[n.Instance,()=>new o.TeeHead({level:"underlay",size:10})]}),this.override({level:"underlay"})}}t.Whisker=_,_.__name__="Whisker",_.init_Whisker()},n function _(i,a,e){Object.defineProperty(e,"__esModule",{value:!0});var r=i(177);e.Axis=r.Axis;var s=i(179);e.CategoricalAxis=s.CategoricalAxis;var x=i(182);e.ContinuousAxis=x.ContinuousAxis;var A=i(183);e.DatetimeAxis=A.DatetimeAxis;var o=i(184);e.LinearAxis=o.LinearAxis;var t=i(197);e.LogAxis=t.LogAxis;var n=i(200);e.MercatorAxis=n.MercatorAxis},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(178),l=s.__importStar(t(28)),n=s.__importStar(t(18)),o=t(9),r=t(8),_=t(98),{abs:h,min:c,max:d}=Math;class m extends a.GuideRendererView{constructor(){super(…arguments),this.rotate=!0}get panel(){return this.layout}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const e={tick:this._tick_extent(),tick_label:this._tick_label_extents(),axis_label:this._axis_label_extent()},{tick_coords:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,e),this._draw_major_ticks(s,e,i),this._draw_minor_ticks(s,e,i),this._draw_major_labels(s,e,i),this._draw_axis_label(s,e,i),null===(t=this._paint)||void 0===t||t.call(this,s,e,i),s.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible&&null==this.model.fixed_location&&this.is_renderable){const t=this._get_size();return{width:0,height:Math.round(t)}}return{width:0,height:0}}_get_size(){return this._tick_extent()+this._tick_label_extent()+this._axis_label_extent()}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,l]=this.coordinates.map_to_screen(i,s),[n,o]=this.normals,[r,_]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath(),t.moveTo(Math.round(a[0]+n*r),Math.round(l[0]+o*_));for(let e=1;e<a.length;e++){const i=Math.round(a[e]+n*r),s=Math.round(l[e]+o*_);t.lineTo(i,s)}t.stroke()}_draw_major_ticks(t,e,i){const s=this.model.major_tick_in,a=this.model.major_tick_out,l=this.visuals.major_tick_line;this._draw_ticks(t,i.major,s,a,l)}_draw_minor_ticks(t,e,i){const s=this.model.minor_tick_in,a=this.model.minor_tick_out,l=this.visuals.minor_tick_line;this._draw_ticks(t,i.minor,s,a,l)}_draw_major_labels(t,e,i){const s=i.major,a=this.compute_labels(s[this.dimension]),l=this.model.major_label_orientation,n=e.tick+this.model.major_label_standoff,o=this.visuals.major_label_text;this._draw_oriented_labels(t,a,s,l,this.panel.side,n,o)}_draw_axis_label(t,e,i){if(null==this.model.axis_label||0==this.model.axis_label.length||null!=this.model.fixed_location)return;let s,a;const{bbox:l}=this.panel;switch(this.panel.side){case"above":s=l.hcenter,a=l.bottom;break;case"below":s=l.hcenter,a=l.top;break;case"left":s=l.right,a=l.vcenter;break;case"right":s=l.left,a=l.vcenter;break;default:throw new Error("unknown side: "+this.panel.side)}const n=[[s],[a]],r=e.tick+o.sum(e.tick_label)+this.model.axis_label_standoff,_=this.visuals.axis_label_text;this._draw_oriented_labels(t,[this.model.axis_label],n,"parallel",this.panel.side,r,_,"screen")}_draw_ticks(t,e,i,s,a){if(!a.doit)return;const[l,n]=e,[o,r]=this.coordinates.map_to_screen(l,n),[_,h]=this.normals,[c,d]=this.offsets,[m,b]=[_*(c-i),h*(d-i)],[u,x]=[_*(c+s),h*(d+s)];a.set_value(t),t.beginPath();for(let e=0;e<o.length;e++){const i=Math.round(o[e]+u),s=Math.round(r[e]+x),a=Math.round(o[e]+m),l=Math.round(r[e]+b);t.moveTo(i,s),t.lineTo(a,l)}t.stroke()}_draw_oriented_labels(t,e,i,s,a,l,n,o="data"){if(!n.doit||0==e.length)return;let _,h,c,d;if("screen"==o)[_,h]=i,[c,d]=[0,0];else{const[t,e]=i;[_,h]=this.coordinates.map_to_screen(t,e),[c,d]=this.offsets}const[m,b]=this.normals,u=m*(c+l),x=b*(d+l);let f;n.set_value(t),this.panel.apply_label_text_heuristics(t,s),f=r.isString(s)?this.panel.get_label_angle_heuristic(s):-s;for(let i=0;i<_.length;i++){const s=Math.round(_[i]+u),a=Math.round(h[i]+x);t.translate(s,a),t.rotate(f),t.fillText(e[i],0,0),t.rotate(-f),t.translate(-s,-a)}}_axis_label_extent(){if(null==this.model.axis_label||""==this.model.axis_label)return 0;const t=this.model.axis_label_standoff,e=this.visuals.axis_label_text;return this._oriented_labels_extent([this.model.axis_label],"parallel",this.panel.side,t,e)}_tick_extent(){return this.model.major_tick_out}_tick_label_extent(){return o.sum(this._tick_label_extents())}_tick_label_extents(){const t=this.tick_coords.major,e=this.compute_labels(t[this.dimension]),i=this.model.major_label_orientation,s=this.model.major_label_standoff,a=this.visuals.major_label_text;return[this._oriented_labels_extent(e,i,this.panel.side,s,a)]}_oriented_labels_extent(t,e,i,s,a){if(0==t.length)return 0;const l=this.layer.ctx;let n,o;a.set_value(l),r.isString(e)?(n=1,o=this.panel.get_label_angle_heuristic(e)):(n=2,o=-e),o=Math.abs(o);const _=Math.cos(o),h=Math.sin(o);let c=0;for(let e=0;e<t.length;e++){const s=1.1*l.measureText(t[e]).width,a=.9*l.measureText(t[e]).ascent;let o;o="above"==i||"below"==i?s*h+a/n*_:s*_+a/n*h,o>c&&(c=o)}return c>0&&(c+=s),c}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.doFormat(t,this);for(let i=0;i<t.length;i++)t[i]in this.model.major_label_overrides&&(e[i]=this.model.major_label_overrides[t[i]]);return e}get offsets(){if(null!=this.model.fixed_location)return[0,0];const{frame:t}=this.plot_view;let[e,i]=[0,0];switch(this.panel.side){case"below":i=h(this.panel.bbox.top-t.bbox.bottom);break;case"above":i=h(this.panel.bbox.bottom-t.bbox.top);break;case"right":e=h(this.panel.bbox.left-t.bbox.right);break;case"left":e=h(this.panel.bbox.right-t.bbox.left)}return[e,i]}get ranges(){const t=this.dimension,e=(t+1)%2,{ranges:i}=this.coordinates;return[i[t],i[e]]}get computed_bounds(){const[t]=this.ranges,e=this.model.bounds,i=[t.min,t.max];if("auto"==e)return[t.min,t.max];{let t,s;const[a,l]=e,[n,o]=i;return h(a-l)>h(n-o)?(t=d(c(a,l),n),s=c(d(a,l),o)):(t=c(a,l),s=d(a,l)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=[new Array(2),new Array(2)];return l[t][0]=Math.max(s,i.min),l[t][1]=Math.min(a,i.max),l[t][0]>l[t][1]&&(l[t][0]=l[t][1]=NaN),l[e][0]=this.loc,l[e][1]=this.loc,l}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=this.model.ticker.get_ticks(s,a,i,this.loc,{}),n=l.major,o=l.minor,r=[[],[]],_=[[],[]],[h,c]=[i.min,i.max];for(let i=0;i<n.length;i++)n[i]<h||n[i]>c||(r[t].push(n[i]),r[e].push(this.loc));for(let i=0;i<o.length;i++)o[i]<h||o[i]>c||(_[t].push(o[i]),_[e].push(this.loc));return{major:r,minor:_}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if(r.isNumber(t))return t;const[,e]=this.ranges;if(e instanceof _.FactorRange)return e.synthetic(t);throw new Error("unexpected")}const[,e]=this.ranges;switch(this.panel.side){case"left":case"below":return e.start;case"right":case"above":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}}i.AxisView=m,m.__name__="AxisView";class b extends a.GuideRenderer{constructor(t){super(t)}static init_Axis(){this.prototype.default_view=m,this.mixins([["axis_",l.Line],["major_tick_",l.Line],["minor_tick_",l.Line],["major_label_",l.Text],["axis_label_",l.Text]]),this.define({bounds:[n.Any,"auto"],ticker:[n.Instance],formatter:[n.Instance],axis_label:[n.String,""],axis_label_standoff:[n.Int,5],major_label_standoff:[n.Int,5],major_label_orientation:[n.Any,"horizontal"],major_label_overrides:[n.Any,{}],major_tick_in:[n.Number,2],major_tick_out:[n.Number,6],minor_tick_in:[n.Number,0],minor_tick_out:[n.Number,4],fixed_location:[n.Any,null]}),this.override({axis_line_color:"black",major_tick_line_color:"black",minor_tick_line_color:"black",major_label_text_font_size:"11px",major_label_text_align:"center",major_label_text_baseline:"alphabetic",axis_label_text_font_size:"13px",axis_label_text_font_style:"italic"})}}i.Axis=b,b.__name__="Axis",b.init_Axis()},n function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});const i=e(70);class n extends i.RendererView{}d.GuideRendererView=n,n.__name__="GuideRendererView";class t extends i.Renderer{constructor(e){super(e)}static init_GuideRenderer(){this.override({level:"guide"})}}d.GuideRenderer=t,t.__name__="GuideRenderer",t.init_GuideRenderer()},n function _(t,s,o){Object.defineProperty(o,"__esModule",{value:!0});const e=t(1),i=t(177),r=t(180),a=t(181),l=e.__importStar(t(28)),_=e.__importStar(t(18));class n extends i.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;t<e.tops.length-1;t++){let s,o;for(let i=n;i<e.factors.length;i++)if(e.factors[i][0]==e.tops[t+1]){[s,o]=[e.factors[i-1],e.factors[i]],n=i;break}const h=(e.synthetic(s)+e.synthetic(o))/2;h>i&&h<r&&(_[a].push(h),_[l].push(this.loc))}const h=this._tick_label_extent();this._draw_ticks(t,_,-3,h-6,this.visuals.separator_line)}_draw_major_labels(t,s,o){const e=this._get_factor_info();let i=s.tick+this.model.major_label_standoff;for(let o=0;o<e.length;o++){const[r,a,l,_]=e[o];this._draw_oriented_labels(t,r,a,l,this.panel.side,i,_),i+=s.tick_label[o]}}_tick_label_extents(){const t=this._get_factor_info(),s=[];for(const[o,,e,i]of t){const t=this._oriented_labels_extent(o,e,this.panel.side,this.model.major_label_standoff,i);s.push(t)}return s}_get_factor_info(){const[t]=this.ranges,[s,o]=this.computed_bounds,e=this.loc,i=this.model.ticker.get_ticks(s,o,t,e,{}),r=this.tick_coords,a=[];if(1==t.levels){const t=i.major,s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text])}else if(2==t.levels){const t=i.major.map(t=>t[1]),s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=i.major.map(t=>t[2]),s=this.model.formatter.doFormat(t,this),o=i.mids.map(t=>t[1]);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([o,r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc,{}),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map(t=>this.loc),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map(t=>this.loc)),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map(t=>this.loc)),a}}o.CategoricalAxisView=n,n.__name__="CategoricalAxisView";class h extends i.Axis{constructor(t){super(t)}static init_CategoricalAxis(){this.prototype.default_view=n,this.mixins([["separator_",l.Line],["group_",l.Text],["subgroup_",l.Text]]),this.define({group_label_orientation:[_.Any,"parallel"],subgroup_label_orientation:[_.Any,"parallel"]}),this.override({ticker:()=>new r.CategoricalTicker,formatter:()=>new a.CategoricalTickFormatter,separator_line_color:"lightgrey",separator_line_width:2,group_text_font_style:"bold",group_text_font_size:"11px",group_text_color:"grey",subgroup_text_font_style:"bold",subgroup_text_font_size:"11px"})}}o.CategoricalAxis=h,h.__name__="CategoricalAxis",h.init_CategoricalAxis()},n function _(t,c,e){Object.defineProperty(e,"__esModule",{value:!0});const o=t(129);class s extends o.Ticker{constructor(t){super(t)}get_ticks(t,c,e,o,s){return{major:this._collect(e.factors,e,t,c),minor:[],tops:this._collect(e.tops||[],e,t,c),mids:this._collect(e.mids||[],e,t,c)}}_collect(t,c,e,o){const s=[];for(const r of t){const t=c.synthetic(r);t>e&&t<o&&s.push(r)}return s}}e.CategoricalTicker=s,s.__name__="CategoricalTicker"},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(131),c=e(9);class a extends o.TickFormatter{constructor(e){super(e)}doFormat(e,t){return c.copy(e)}}r.CategoricalTickFormatter=a,a.__name__="CategoricalTickFormatter"},n function _(s,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=s(177);class t extends o.Axis{constructor(s){super(s)}}n.ContinuousAxis=t,t.__name__="ContinuousAxis"},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(184),a=e(185),r=e(190);class n extends s.LinearAxisView{}i.DatetimeAxisView=n,n.__name__="DatetimeAxisView";class _ extends s.LinearAxis{constructor(e){super(e)}static init_DatetimeAxis(){this.prototype.default_view=n,this.override({ticker:()=>new r.DatetimeTicker,formatter:()=>new a.DatetimeTickFormatter})}}i.DatetimeAxis=_,_.__name__="DatetimeAxis",_.init_DatetimeAxis()},n function _(e,i,s){Object.defineProperty(s,"__esModule",{value:!0});const t=e(177),n=e(182),r=e(130),a=e(126);class _ extends t.AxisView{}s.LinearAxisView=_,_.__name__="LinearAxisView";class c extends n.ContinuousAxis{constructor(e){super(e)}static init_LinearAxis(){this.prototype.default_view=_,this.override({ticker:()=>new a.BasicTicker,formatter:()=>new r.BasicTickFormatter})}}s.LinearAxis=c,c.__name__="LinearAxis",c.init_LinearAxis()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),i=r.__importDefault(t(186)),n=t(131),o=t(19),a=r.__importStar(t(18)),c=t(187),m=t(9),u=t(8);function h(t){return i.default(t,"%Y %m %d %H %M %S").split(/\s+/).map(t=>parseInt(t,10))}function d(t,s){if(u.isFunction(s))return s(t);{const e=c.sprintf("$1%06d",function(t){return Math.round(t/1e3%1*1e6)}(t));return-1==(s=s.replace(/((^|[^%])(%%))%f/,e)).indexOf("%")?s:i.default(t,s)}}const l=["microseconds","milliseconds","seconds","minsec","minutes","hourmin","hours","days","months","years"];class _ extends n.TickFormatter{constructor(t){super(t),this.strip_leading_zeros=!0}static init_DatetimeTickFormatter(){this.define({microseconds:[a.Array,["%fus"]],milliseconds:[a.Array,["%3Nms","%S.%3Ns"]],seconds:[a.Array,["%Ss"]],minsec:[a.Array,[":%M:%S"]],minutes:[a.Array,[":%M","%Mm"]],hourmin:[a.Array,["%H:%M"]],hours:[a.Array,["%Hh","%H:%M"]],days:[a.Array,["%m/%d","%a%d"]],months:[a.Array,["%m/%Y","%b %Y"]],years:[a.Array,["%Y"]]})}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const t=+i.default(new Date),s=function(s){const e=s.map(s=>d(t,s).length),r=m.sort_by(m.zip(e,s),([t])=>t);return m.unzip(r)};this._width_formats={microseconds:s(this.microseconds),milliseconds:s(this.milliseconds),seconds:s(this.seconds),minsec:s(this.minsec),minutes:s(this.minutes),hourmin:s(this.hourmin),hours:s(this.hours),days:s(this.days),months:s(this.months),years:s(this.years)}}_get_resolution_str(t,s){const e=1.1*t;switch(!1){case!(e<.001):return"microseconds";case!(e<1):return"milliseconds";case!(e<60):return s>=60?"minsec":"seconds";case!(e<3600):return s>=3600?"hourmin":"minutes";case!(e<86400):return"hours";case!(e<2678400):return"days";case!(e<31536e3):return"months";default:return"years"}}doFormat(t,s){if(0==t.length)return[];const e=Math.abs(t[t.length-1]-t[0])/1e3,r=e/(t.length-1),i=this._get_resolution_str(r,e),[,[n]]=this._width_formats[i],a=[],c=l.indexOf(i),m={};for(const t of l)m[t]=0;m.seconds=5,m.minsec=4,m.minutes=4,m.hourmin=3,m.hours=3;for(const s of t){let t,e;try{e=h(s),t=d(s,n)}catch(t){o.logger.warn("unable to format tick for timestamp value "+s),o.logger.warn(" - "+t),a.push("ERR");continue}let r=!1,u=c;for(;0==e[m[l[u]]];){let n;if(u+=1,u==l.length)break;if(("minsec"==i||"hourmin"==i)&&!r){if("minsec"==i&&0==e[4]&&0!=e[5]||"hourmin"==i&&0==e[3]&&0!=e[4]){n=this._width_formats[l[c-1]][1][0],t=d(s,n);break}r=!0}n=this._width_formats[l[u]][1][0],t=d(s,n)}if(this.strip_leading_zeros){let s=t.replace(/^0+/g,"");s!=t&&isNaN(parseInt(s))&&(s="0"+s),a.push(s)}else a.push(t)}return a}}e.DatetimeTickFormatter=_,_.__name__="DatetimeTickFormatter",_.init_DatetimeTickFormatter()},n function _(e,t,n){!function(e){"object"==typeof t&&t.exports?t.exports=e():"function"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o<a&&!(f[o][n]<=r);o++);if((u=f[o]).rules){for(s=t[u.rules],c=T+1;c>=T-g;–c)for(o=0,a=s.length;o<a;o++)s[o].from<=c&&c<=s[o].to?h.push(e(u,s[o],c)):s[o].to<c&&1==g&&(g=c-s[o].to);for(h.sort((function(e,t){return e.sort-t.sort})),o=0,a=h.length;o<a;o++)r>=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return"UTC"==e.zone?n:(e.entry=t(e,"posix",n),n+e.entry.offset+e.entry.save)}function r(e,n){return"UTC"==e.zone?n:(e.entry=r=t(e,"wallclock",n),0<(o=n-r.wallclock)&&o<r.save?null:n-r.offset-r.save);var r,o}function o(e,t,o){var a,i=+(o[1]+1),s=o[2]*i,c=u.indexOf(o[3].toLowerCase());if(c>9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:"UTC",entry:{abbrev:"UTC",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push(("0"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return"^"!=n||u?("^"==n&&(r=3),3==r?(a=(a=l.join(":")).replace(/:00$/,""),"^"!=n&&(a=a.replace(/:00$/,""))):r?(a=l.slice(0,r+1).join(":"),"^"==n&&(a=a.replace(/:00$/,""))):a=l.slice(0,2).join(""),a=(a=(u<0?"-":"+")+a).replace(/([-+])(0)/,{_:" $1","-":"$1"}[n]||"$1$2")):"Z"},"%":function(e){return"%"},n:function(e){return"\n"},t:function(e){return"\t"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,"%H:%M"])},T:function(e,t){return this.convert([t,"%H:%M:%S"])},D:function(e,t){return this.convert([t,"%m/%d/%y"])},F:function(e,t){return this.convert([t,"%Y-%m-%d"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||"%I:%M:%S"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return"1.0.23";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t<e.length;t++)if(l=e[t],Array.isArray(l))t||isNaN(l[1])?l.splice.apply(e,[t–,1].concat(l)):s=l;else if(isNaN(l)){if("string"==(u=typeof l))~l.indexOf("%")?c.format=l:t||""!=l?!t&&(u=/^(\d{4})-(\d{2})-(\d{2})(?:[T\s](\d{2}):(\d{2})(?::(\d{2})(?:\.(\d+))?)?(Z|(([+-])(\d{2}(:\d{2}){0,2})))?)?$/.exec(l))?((s=[]).push.apply(s,u.slice(1,8)),u[9]?(s.push(u[10]+1),s.push.apply(s,u[11].split(/:/))):u[8]&&s.push(1)):/^\w{2,3}_\w{2}$/.test(l)?c.locale=l:(u=i.exec(l))?f.push(u):c.zone=l:s=l;else if("function"==u){if(u=l.call(c))return u}else if(/^\w{2,3}_\w{2}$/.test(l.name))c[l.name]=l;else if(l.zones){for(u in l.zones)c[u]=l.zones[u];for(u in l.rules)c[u]=l.rules[u]}}else t||(s=l);if(c[c.locale]||delete c.locale,c[c.zone]||delete c.zone,null!=s){if(""==s)s=c.clock();else if(Array.isArray(s)){for(u=[],a=!s[7],t=0;t<11;t++)u[t]=+(s[t]||0);–u[1],s=Date.UTC.apply(Date.UTC,u)+-u[7]*(36e5*u[8]+6e4*u[9]+1e3*u[10])}else s=Math.floor(s);if(!isNaN(s)){if(a&&(s=r(c,s)),null==s)return s;for(t=0,a=f.length;t<a;t++)s=o(c,s,f[t]);return c.format?(u=new Date(n(c,s)),c.format.replace(/%([-0_^]?)(:{0,3})(\d*)(.)/g,(function(e,t,n,r,o){var a,i,l="0";if(a=c[o]){for(e=String(a.call(c,u,s,t,n.length)),"_"==(t||a.style)&&(l=" "),i="-"==t?0:a.pad||0;e.length<i;)e=l+e;for(i="-"==t?0:r||a.pad;e.length<i;)e=l+e;"N"==o&&i<e.length&&(e=e.slice(0,i)),"^"==t&&(e=e.toUpperCase())}return e}))):s}}return function(){return c.convert(arguments)}},locale:"en_US",en_US:{date:"%m/%d/%Y",time24:"%I:%M:%S %p",time12:"%I:%M:%S %p",dateTime:"%a %d %b %Y %I:%M:%S %p %Z",meridiem:["AM","PM"],month:{abbrev:"Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec".split("|\"),full:\"January|February|March|April|May|June|July|August|September|October|November|December\".split(\"|")},day:{abbrev:"Sun|Mon|Tue|Wed|Thu|Fri|Sat".split("|\"),full:\"Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday\".split(\"|")}}},u="Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|year|month|day|hour|minute|second|millisecond",i=new RegExp("^\\s*([+-])(\\d+)\\s+("+u+")s?\\s*$","i"),l=[36e5,6e4,1e3,1];function s(e,t){var n,r,o;return r=new Date(Date.UTC(e.getUTCFullYear(),0)),n=Math.floor((e.getTime()-r.getTime())/864e5),r.getUTCDay()==t?o=0:8==(o=7-r.getUTCDay()+t)&&(o=1),n>=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split("|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=r(1),i=n.__importStar(r(188)),u=r(189),a=n.__importDefault(r(186)),f=r(29),o=r(8);function l(r,...e){return u.sprintf(r,...e)}function s(r,e,t){if(o.isNumber(r)){return l((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return\"\"+r}function c(r,e,n){if(null==e)return s;if(null!=n&&r in n){const e=n[r];if(o.isString(e)){if(e in t.DEFAULT_FORMATTERS)return t.DEFAULT_FORMATTERS[e];throw new Error(`Unknown tooltip field formatter type '${e}'`)}return function(r,t,n){return e.format(r,t,n)}}return t.DEFAULT_FORMATTERS.numeral}function m(r,e,t,n){if(\"$\"==r[0]){return function(r,e){if(r in e)return e[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),n)}return function(r,e,t){const n=e.get_column(r);if(null==n)return null;if(o.isNumber(t))return n[t];const i=n[t.index];if(o.isTypedArray(i)||o.isArray(i)){if(o.isArray(i[0])){return i[t.dim2][t.dim1]}return i[t.flat_index]}return i}(r.substring(1).replace(/[{}]/g,\"\"),e,t)}t.DEFAULT_FORMATTERS={numeral:(r,e,t)=>i.format(r,e),datetime:(r,e,t)=>a.default(r,e),printf:(r,e,t)=>l(e,r)},t.sprintf=l,t.basic_formatter=s,t.get_formatter=c,t.get_value=m,t.replace_placeholders=function(r,e,t,n,i={}){let u,a;if(o.isString(r)?(u=r,a=!1):(u=r.html,a=!0),u=u.replace(/@\\$name/g,r=>`@{${i.name}}`),u=u.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,(r,u,o)=>{const l=m(u,e,t,i);if(null==l)return\"\"+f.escape(\"???\");if(\"safe\"==o)return a=!0,\"\"+l;const s=c(u,o,n);return\"\"+f.escape(s(l,o,i))}),a){return[...(new DOMParser).parseFromString(u,\"text/html\").body.childNodes]}return u}},\n function _(e,n,t){\n /*!\n * numbro.js\n * version : 1.6.2\n * author : Företagsplatsen AB\n * license : MIT\n * http://www.foretagsplatsen.se\n */\n var r,i={},a=i,o=\"en-US\",l=null,u=\"0,0\";void 0!==n&&n.exports;function c(e){this._value=e}function s(e){var n,t=\"\";for(n=0;n<e;n++)t+=\"0\";return t}function f(e,n,t,r){var i,a,o=Math.pow(10,n);return a=e.toFixed(0).search(\"e\")>-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||"")+s(i-r.length),n>0&&(a+="."+s(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp("0{1,"+r+"}$"),a=a.replace(i,"")),a}function d(e,n,t){return n.indexOf("$")>-1?function(e,n,t){var r,a,l=n,u=l.indexOf("$"),c=l.indexOf("("),s=l.indexOf("+"),f=l.indexOf("-"),d="",p="";-1===l.indexOf("$")?"infix"===i[o].currency.position?(p=i[o].currency.symbol,i[o].currency.spaceSeparated&&(p=" "+p+" ")):i[o].currency.spaceSeparated&&(d=" "):l.indexOf(" $")>-1?(d=" ",l=l.replace(" $","")):l.indexOf("$ ")>-1?(d=" ",l=l.replace("$ ","")):l=l.replace("$","");if(a=h(e,l,t,p),-1===n.indexOf("$"))switch(i[o].currency.position){case"postfix":a.indexOf(")")>-1?((a=a.split("")).splice(-1,0,d+i[o].currency.symbol),a=a.join("")):a=a+d+i[o].currency.symbol;break;case"infix":break;case"prefix":a.indexOf("(")>-1||a.indexOf("-")>-1?(a=a.split(""),r=Math.max(c,f)+1,a.splice(r,0,i[o].currency.symbol+d),a=a.join("")):a=i[o].currency.symbol+d+a;break;default:throw Error(‘Currency position should be among ["prefix", "infix", "postfix"]’)}else u<=1?a.indexOf("(")>-1||a.indexOf("+")>-1||a.indexOf("-")>-1?(a=a.split(""),r=1,(u<c||u<s||u<f)&&(r=0),a.splice(r,0,i[o].currency.symbol+d),a=a.join("")):a=i[o].currency.symbol+d+a:a.indexOf(")")>-1?((a=a.split("")).splice(-1,0,d+i[o].currency.symbol),a=a.join("")):a=a+d+i[o].currency.symbol;return a}(e,n,t):n.indexOf("%")>-1?function(e,n,t){var r,i="";e*=100,n.indexOf(" %")>-1?(i=" ",n=n.replace(" %","")):n=n.replace("%","");(r=h(e,n,t)).indexOf(")")>-1?((r=r.split("")).splice(-1,0,i+"%"),r=r.join("")):r=r+i+"%";return r}(e,n,t):n.indexOf(":")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+":"+(t<10?"0"+t:t)+":"+(r<10?"0"+r:r)}(e):h(e,n,t)}function h(e,n,t,r){var a,u,c,s,d,h,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k="",U=!1,N=!1,S=!1,j=!1,D=!1,C="",L="",T=Math.abs(e),K=["B","KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"],G=["B","KB","MB","GB","TB","PB","EB","ZB","YB"],I="",P=!1,R=!1;if(0===e&&null!==l)return l;if(!isFinite(e))return""+e;if(0===n.indexOf("{")){var W=n.indexOf("}");if(-1===W)throw Error(‘Format should also contain a "}"’);b=n.slice(1,W),n=n.slice(W+1)}else b="";if(n.indexOf("}")===n.length-1){var Y=n.indexOf("{");if(-1===Y)throw Error(‘Format should also contain a "{"’);w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w="";if(v=null===($=-1===n.indexOf(".")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\..*/))?-1:$[1].length,-1!==n.indexOf("-")&&(P=!0),n.indexOf("(")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf("+")>-1&&(E=!0,n=n.replace(/\+/g,"")),n.indexOf("a")>-1){if(g=n.split(".")[0].match(/[0-9]+/g)||["0"],g=parseInt(g[0],10),U=n.indexOf("aK")>=0,N=n.indexOf("aM")>=0,S=n.indexOf("aB")>=0,j=n.indexOf("aT")>=0,D=U||N||S||j,n.indexOf(" a")>-1?(k=" ",n=n.replace(" a","")):n=n.replace("a",""),p=0===(p=(d=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(h=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,d)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(".")&&g>3))for(n+="[.]",M=(M=0===h?0:3*~~(h/3)-h)<0?M+3:M,a=0;a<M;a++)n+="0";Math.floor(Math.log(Math.abs(e))/Math.LN10)+1!==g&&(T>=Math.pow(10,12)&&!D||j?(k+=i[o].abbreviations.trillion,e/=Math.pow(10,12)):T<Math.pow(10,12)&&T>=Math.pow(10,9)&&!D||S?(k+=i[o].abbreviations.billion,e/=Math.pow(10,9)):T<Math.pow(10,9)&&T>=Math.pow(10,6)&&!D||N?(k+=i[o].abbreviations.million,e/=Math.pow(10,6)):(T<Math.pow(10,6)&&T>=Math.pow(10,3)&&!D||U)&&(k+=i[o].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf("b")>-1)for(n.indexOf(" b")>-1?(C=" ",n=n.replace(" b","")):n=n.replace("b",""),s=0;s<=K.length;s++)if(u=Math.pow(1024,s),c=Math.pow(1024,s+1),e>=u&&e<c){C+=K[s],u>0&&(e/=u);break}if(n.indexOf("d")>-1)for(n.indexOf(" d")>-1?(C=" ",n=n.replace(" d","")):n=n.replace("d",""),s=0;s<=G.length;s++)if(u=Math.pow(1e3,s),c=Math.pow(1e3,s+1),e>=u&&e<c){C+=G[s],u>0&&(e/=u);break}if(n.indexOf("o")>-1&&(n.indexOf(" o")>-1?(L=" ",n=n.replace(" o","")):n=n.replace("o",""),i[o].ordinal&&(L+=i[o].ordinal(e))),n.indexOf("[.]")>-1&&(F=!0,n=n.replace("[.]",".")),x=e.toString().split(".")[0],O=n.split(".")[1],y=n.indexOf(","),O){if(x=(I=-1!==O.indexOf("")?f(e,e.toString().split(".")[1].length,t):O.indexOf("[")>-1?f(e,(O=(O=O.replace("]","")).split("["))[0].length+O[1].length,t,O[1].length):f(e,O.length,t)).split(".")[0],I.split(".")[1].length)I=(r?k+r:i[o].delimiters.decimal)+I.split(".")[1];else I="";F&&0===Number(I.slice(1))&&(I="")}else x=f(e,null,t);return x.indexOf("-")>-1&&(x=x.slice(1),R=!0),x.length<v&&(x=new Array(v-x.length+1).join("0")+x),y>-1&&(x=x.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1"+i[o].delimiters.thousands)),0===n.indexOf(".")&&(x=""),b+(n.indexOf("(")<n.indexOf("-")?(B&&R?"(":"")+(P&&R||!B&&R?"-":""):(P&&R||!B&&R?"-":"")+(B&&R?"(":""))+(!R&&E&&0!==e?"+":"")+x+I+(L||"")+(k&&!r?k:"")+(C||"")+(B&&R?")":"")+w}function p(e,n){i[e]=n}function m(e){o=e;var n=i[e].defaults;n&&n.format&&r.defaultFormat(n.format),n&&n.currencyFormat&&r.defaultCurrencyFormat(n.currencyFormat)}(r=function(e){return r.isNumbro(e)?e=e.value():0===e||void 0===e?e=0:Number(e)||(e=r.fn.unformat(e)),new c(Number(e))}).version="1.6.2",r.isNumbro=function(e){return e instanceof c},r.setLanguage=function(e,n){console.warn("`setLanguage` is deprecated since version 1.6.0. Use `setCulture` instead");var t=e,r=e.split("-")[0],i=null;a[t]||(Object.keys(a).forEach((function(e){i||e.split("-")[0]!==r||(i=e)})),t=i||n||"en-US"),m(t)},r.setCulture=function(e,n){var t=e,r=e.split("-")[1],a=null;i[t]||(r&&Object.keys(i).forEach((function(e){a||e.split("-")[1]!==r||(a=e)})),t=a||n||"en-US"),m(t)},r.language=function(e,n){if(console.warn("`language` is deprecated since version 1.6.0. Use `culture` instead"),!e)return o;if(e&&!n){if(!a[e])throw new Error("Unknown language : "+e);m(e)}return!n&&a[e]||p(e,n),r},r.culture=function(e,n){if(!e)return o;if(e&&!n){if(!i[e])throw new Error("Unknown culture : "+e);m(e)}return!n&&i[e]||p(e,n),r},r.languageData=function(e){if(console.warn("`languageData` is deprecated since version 1.6.0. Use `cultureData` instead"),!e)return a[o];if(!a[e])throw new Error("Unknown language : "+e);return a[e]},r.cultureData=function(e){if(!e)return i[o];if(!i[e])throw new Error("Unknown culture : "+e);return i[e]},r.culture("en-US",{delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(e){var n=e%10;return 1==~~(e%100/10)?"th":1===n?"st":2===n?"nd":3===n?"rd":"th"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",0000 a"},formats:{fourDigits:"0000 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00"}}),r.languages=function(){return console.warn("`languages` is deprecated since version 1.6.0. Use `cultures` instead"),a},r.cultures=function(){return i},r.zeroFormat=function(e){l="string"==typeof e?e:null},r.defaultFormat=function(e){u="string"==typeof e?e:"0.0"},r.defaultCurrencyFormat=function(e){"string"==typeof e?e:"0$"},r.validate=function(e,n){var t,i,a,o,l,u,c,s;if("string"!=typeof e&&(e+="",console.warn&&console.warn("Numbro.js: Value is not string. It has been co-erced to: ",e)),(e=e.trim()).match(/^\d+$/))return!0;if(""===e)return!1;try{c=r.cultureData(n)}catch(e){c=r.cultureData(r.culture())}return a=c.currency.symbol,l=c.abbreviations,t=c.delimiters.decimal,i="."===c.delimiters.thousands?"\\.":c.delimiters.thousands,(null===(s=e.match(/^[^\d]+/))||(e=e.substr(1),s[0]===a))&&((null===(s=e.match(/[^\d]+$/))||(e=e.slice(0,-1),s[0]===l.thousand||s[0]===l.million||s[0]===l.billion||s[0]===l.trillion))&&(u=new RegExp(i+"{2}"),!e.match(/[^\d.,]/g)&&(!((o=e.split(t)).length>2)&&(o.length<2?!!o[0].match(/^\d+.\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\d+$/):!!o[0].match(/^\d+.*\d$/)&&!o[0].match(u)&&!!o[1].match(/^\d+$/)))))},n.exports={format:function(e,n,t,i){return null!=t&&t!==r.culture()&&r.setCulture(t),d(Number(e),null!=n?n:u,null==i?Math.round:i)}}},n function _(e,n,t){!function(){"use strict";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|’[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y="";for(s=0;s<g;s++)if("string"==typeof t[s])y+=t[s];else if("object"==typeof t[s]){if((o=t[s]).keys)for(i=r[d],a=0;a<o.keys.length;a++){if(null==i)throw new Error(n(‘[sprintf] Cannot access property "%s" of undefined value "%s"’,o.keys[a],o.keys[a-1]));i=i[o.keys[a]]}else i=o.param_no?r[o.param_no]:r[d++];if(e.not_type.test(o.type)&&e.not_primitive.test(o.type)&&i instanceof Function&&(i=i()),e.numeric_arg.test(o.type)&&"number"!=typeof i&&isNaN(i))throw new TypeError(n("[sprintf] expecting number but found %T",i));switch(e.number.test(o.type)&&(u=i>=0),o.type){case"b":i=parseInt(i,10).toString(2);break;case"c":i=String.fromCharCode(parseInt(i,10));break;case"d":case"i":i=parseInt(i,10);break;case"j":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case"e":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case"f":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case"g":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case"o":i=(parseInt(i,10)>>>0).toString(8);break;case"s":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case"t":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case"T":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case"u":i=parseInt(i,10)>>>0;break;case"v":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case"x":i=(parseInt(i,10)>>>0).toString(16);break;case"X":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f="":(f=u?"+":"-",i=i.toString().replace(e.sign,"")),c=o.pad_char?"0"===o.pad_char?"0":o.pad_char.charAt(1):" ",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):"",y+=o.align?f+i+p:"0"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push("%");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(o.push(c[1]);""!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError("[sprintf] failed to parse named argument key");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),"undefined"!=typeof window&&(window.sprintf=n,window.vsprintf=r,"function"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},n function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(9),a=e(127),s=e(191),r=e(192),c=e(195),_=e(196),m=e(194);class k extends s.CompositeTicker{constructor(e){super(e)}static init_DatetimeTicker(){this.override({num_minor_ticks:0,tickers:()=>[new a.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*m.ONE_MILLI,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:m.ONE_SECOND,max_interval:30*m.ONE_MINUTE,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:m.ONE_HOUR,max_interval:12*m.ONE_HOUR,num_minor_ticks:0}),new r.DaysTicker({days:t.range(1,32)}),new r.DaysTicker({days:t.range(1,31,3)}),new r.DaysTicker({days:[1,8,15,22]}),new r.DaysTicker({days:[1,15]}),new c.MonthsTicker({months:t.range(0,12,1)}),new c.MonthsTicker({months:t.range(0,12,2)}),new c.MonthsTicker({months:t.range(0,12,4)}),new c.MonthsTicker({months:t.range(0,12,6)}),new _.YearsTicker({})]})}}n.DatetimeTicker=k,k.__name__="DatetimeTicker",k.init_DatetimeTicker()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const r=t(1),s=t(128),n=r.__importStar(t(18)),_=t(9);class a extends s.ContinuousTicker{constructor(t){super(t)}static init_CompositeTicker(){this.define({tickers:[n.Array,[]]})}get min_intervals(){return this.tickers.map(t=>t.get_min_interval())}get max_intervals(){return this.tickers.map(t=>t.get_max_interval())}get min_interval(){return this.min_intervals[0]}get max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[_.sorted_index(this.min_intervals,s)-1,_.sorted_index(this.max_intervals,s)],a=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map(t=>Math.abs(i-r/t));let c;if(_.is_empty(a.filter(t=>!isNaN(t))))c=this.tickers[0];else{const t=n[_.argmin(a)];c=this.tickers[t]}return c}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=a,a.__name__="CompositeTicker",a.init_CompositeTicker()},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(1),s=t(193),a=t(194),o=i.__importStar(t(18)),r=t(9);class _ extends s.SingleIntervalTicker{constructor(t){super(t)}static init_DaysTicker(){this.define({days:[o.Array,[]]}),this.override({num_minor_ticks:0})}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*a.ONE_DAY:this.interval=31*a.ONE_DAY}get_ticks_no_defaults(t,e,n,i){const s=function(t,e){const n=a.last_month_no_later_than(new Date(t)),i=a.last_month_no_later_than(new Date(e));i.setUTCMonth(i.getUTCMonth()+1);const s=[],o=n;for(;s.push(a.copy_date(o)),o.setUTCMonth(o.getUTCMonth()+1),!(o>i););return s}(t,e),o=this.days,_=this.interval;return{major:r.concat(s.map(t=>((t,e)=>{const n=t.getUTCMonth(),i=[];for(const s of o){const o=a.copy_date(t);o.setUTCDate(s);new Date(o.getTime()+e/2).getUTCMonth()==n&&i.push(o)}return i})(t,_))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.DaysTicker=_,_.__name__="DaysTicker",_.init_DaysTicker()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),r=e(128),l=n.__importStar(e(18));class a extends r.ContinuousTicker{constructor(e){super(e)}static init_SingleIntervalTicker(){this.define({interval:[l.Number]})}get_interval(e,t,i){return this.interval}get min_interval(){return this.interval}get max_interval(){return this.interval}}i.SingleIntervalTicker=a,a.__name__="SingleIntervalTicker",a.init_SingleIntervalTicker()},n function _(t,e,n){function _(t){return new Date(t.getTime())}function O(t){const e=_(t);return e.setUTCDate(1),e.setUTCHours(0),e.setUTCMinutes(0),e.setUTCSeconds(0),e.setUTCMilliseconds(0),e}Object.defineProperty(n,"__esModule",{value:!0}),n.ONE_MILLI=1,n.ONE_SECOND=1e3,n.ONE_MINUTE=60*n.ONE_SECOND,n.ONE_HOUR=60*n.ONE_MINUTE,n.ONE_DAY=24*n.ONE_HOUR,n.ONE_MONTH=30*n.ONE_DAY,n.ONE_YEAR=365*n.ONE_DAY,n.copy_date=_,n.last_month_no_later_than=O,n.last_year_no_later_than=function(t){const e=O(t);return e.setUTCMonth(0),e}},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),i=t(193),s=t(194),a=r.__importStar(t(18)),o=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}static init_MonthsTicker(){this.define({months:[a.Array,[]]})}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*s.ONE_MONTH:this.interval=12*s.ONE_MONTH}get_ticks_no_defaults(t,e,n,r){const i=function(t,e){const n=s.last_year_no_later_than(new Date(t)),r=s.last_year_no_later_than(new Date(e));r.setUTCFullYear(r.getUTCFullYear()+1);const i=[],a=n;for(;i.push(s.copy_date(a)),a.setUTCFullYear(a.getUTCFullYear()+1),!(a>r););return i}(t,e),a=this.months;return{major:o.concat(i.map(t=>a.map(e=>{const n=s.copy_date(t);return n.setUTCMonth(e),n}))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.MonthsTicker=_,_.__name__="MonthsTicker",_.init_MonthsTicker()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(126),r=e(193),n=e(194);class _ extends r.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=n.ONE_YEAR,this.basic_ticker=new i.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=n.last_year_no_later_than(new Date(e)).getUTCFullYear(),_=n.last_year_no_later_than(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,_,a,i).major.map(e=>Date.UTC(e,0,1)).filter(a=>e<=a&&a<=t),minor:[]}}}a.YearsTicker=_,_.__name__="YearsTicker"},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(177),o=e(182),n=e(198),r=e(199);class _ extends s.AxisView{}t.LogAxisView=_,_.__name__="LogAxisView";class c extends o.ContinuousAxis{constructor(e){super(e)}static init_LogAxis(){this.prototype.default_view=_,this.override({ticker:()=>new r.LogTicker,formatter:()=>new n.LogTickFormatter})}}t.LogAxis=c,c.__name__="LogAxis",c.init_LogAxis()},n function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const i=t(1),o=t(131),a=t(130),n=i.__importStar(t(18));class c extends o.TickFormatter{constructor(t){super(t)}static init_LogTickFormatter(){this.define({ticker:[n.Instance,null]})}initialize(){super.initialize(),this.basic_formatter=new a.BasicTickFormatter}doFormat(t,e){if(0==t.length)return[];const r=null!=this.ticker?this.ticker.base:10;let i=!1;const o=new Array(t.length);for(let e=0,a=t.length;e<a;e++)if(o[e]=`${r}^${Math.round(Math.log(t[e])/Math.log(r))}`,e>0&&o[e]==o[e-1]){i=!0;break}return i?this.basic_formatter.doFormat(t,e):o}}r.LogTickFormatter=c,c.__name__="LogTickFormatter",c.init_LogTickFormatter()},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(127),s=t(9);class n extends i.AdaptiveTicker{constructor(t){super(t)}static init_LogTicker(){this.override({mantissas:[1,5]})}get_ticks_no_defaults(t,o,e,i){const n=this.num_minor_ticks,r=[],c=this.base,a=Math.log(t)/Math.log(c),f=Math.log(o)/Math.log(c),l=f-a;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,i),c=Math.floor(t/e),a=Math.ceil(o/e);if(h=s.range(c,a+1).filter(t=>0!=t).map(t=>t*e).filter(e=>t<=e&&e<=o),n>0&&h.length>0){const t=e/n,o=s.range(0,n).map(o=>o*t);for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*a),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=s.range(t-1,o+1,e).map(t=>c**t),n>0&&h.length>0){const t=c**e/n,o=s.range(1,n+1).map(o=>o*t);for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter(e=>t<=e&&e<=o),minor:r.filter(e=>t<=e&&e<=o)}}}e.LogTicker=n,n.__name__="LogTicker",n.init_LogTicker()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(177),s=e(184),o=e(201),a=e(202);class c extends i.AxisView{}r.MercatorAxisView=c,c.__name__="MercatorAxisView";class n extends s.LinearAxis{constructor(e){super(e)}static init_MercatorAxis(){this.prototype.default_view=c,this.override({ticker:()=>new a.MercatorTicker({dimension:"lat"}),formatter:()=>new o.MercatorTickFormatter({dimension:"lat"})})}}r.MercatorAxis=n,n.__name__="MercatorAxis",n.init_MercatorAxis()},n function _(r,t,e){Object.defineProperty(e,"__esModule",{value:!0});const o=r(1),n=r(130),i=o.__importStar(r(18)),c=r(37);class a extends n.BasicTickFormatter{constructor(r){super(r)}static init_MercatorTickFormatter(){this.define({dimension:[i.LatLon]})}doFormat(r,t){if(null==this.dimension)throw new Error("MercatorTickFormatter.dimension not configured");if(0==r.length)return[];const e=r.length,o=new Array(e);if("lon"==this.dimension)for(let n=0;n<e;n++){const[e]=c.wgs84_mercator.invert(r[n],t.loc);o[n]=e}else for(let n=0;n<e;n++){const[,e]=c.wgs84_mercator.invert(t.loc,r[n]);o[n]=e}return super.doFormat(o,t)}}e.MercatorTickFormatter=a,a.__name__="MercatorTickFormatter",a.init_MercatorTickFormatter()},n function _(t,o,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),s=t(126),e=n.__importStar(t(18)),i=t(37);class c extends s.BasicTicker{constructor(t){super(t)}static init_MercatorTicker(){this.define({dimension:[e.LatLon]})}get_ticks_no_defaults(t,o,r,n){if(null==this.dimension)throw new Error(this+".dimension wasn’t configured");return[t,o]=i.clip_mercator(t,o,this.dimension),"lon"==this.dimension?this._get_ticks_lon(t,o,r,n):this._get_ticks_lat(t,o,r,n)}_get_ticks_lon(t,o,r,n){const[s]=i.wgs84_mercator.invert(t,r),[e,c]=i.wgs84_mercator.invert(o,r),_=super.get_ticks_no_defaults(s,e,r,n),a=[];for(const t of _.major)if(i.in_bounds(t,"lon")){const[o]=i.wgs84_mercator.compute(t,c);a.push(o)}const m=[];for(const t of _.minor)if(i.in_bounds(t,"lon")){const[o]=i.wgs84_mercator.compute(t,c);m.push(o)}return{major:a,minor:m}}_get_ticks_lat(t,o,r,n){const[,s]=i.wgs84_mercator.invert(r,t),[e,c]=i.wgs84_mercator.invert(r,o),_=super.get_ticks_no_defaults(s,c,r,n),a=[];for(const t of _.major)if(i.in_bounds(t,"lat")){const[,o]=i.wgs84_mercator.compute(e,t);a.push(o)}const m=[];for(const t of _.minor)if(i.in_bounds(t,"lat")){const[,o]=i.wgs84_mercator.compute(e,t);m.push(o)}return{major:a,minor:m}}}r.MercatorTicker=c,c.__name__="MercatorTicker",c.init_MercatorTicker()},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});var t=e(204);o.CustomJS=t.CustomJS;var u=e(206);o.OpenURL=u.OpenURL},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),u=t(205),c=n.__importStar(t(18)),r=t(13),a=t(29);class i extends u.Callback{constructor(t){super(t)}static init_CustomJS(){this.define({args:[c.Any,{}],code:[c.String,""]})}get names(){return r.keys(this.args)}get values(){return r.values(this.args)}get func(){const t=a.use_strict(this.code);return new Function(…this.names,"cb_obj","cb_data",t)}execute(t,e={}){return this.func.apply(t,this.values.concat(t,e))}}s.CustomJS=i,i.__name__="CustomJS",i.init_CustomJS()},n function _(e,c,l){Object.defineProperty(l,"__esModule",{value:!0});const a=e(81);class n extends a.Model{constructor(e){super(e)}}l.Callback=n,n.__name__="Callback"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(1),i=e(205),s=e(187),r=e(8),c=o.__importStar(e(18));class a extends i.Callback{constructor(e){super(e)}static init_OpenURL(){this.define({url:[c.String,"http://"],same_tab:[c.Boolean,!1]})}execute(e,{source:t}){const n=e=>{const n=s.replace_placeholders(this.url,t,e);if(!r.isString(n))throw new Error("HTML output is not supported in this context");this.same_tab?window.location.href=n:window.open(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=a,a.__name__="OpenURL",a.init_OpenURL()},n function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var n=a(77);r.Canvas=n.Canvas;var s=a(208);r.CartesianFrame=s.CartesianFrame},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const a=e(209),_=e(146),n=e(157),r=e(158),i=e(210),g=e(98),c=e(212),o=e(13),l=e(11);class h extends c.LayoutItem{constructor(e,t,s,a,_={},n={}){super(),this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=n,l.assert(null==e.source_range&&null==e.target_range),l.assert(null==t.source_range&&null==t.target_range),this._configure_scales()}_get_ranges(e,t){return new Map(o.entries(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s){const c=new Map;for(const[o,l]of t){if((l instanceof i.DataRange1d||l instanceof r.Range1d)&&!(e instanceof _.ContinuousScale))throw new Error(Range ${l.type} is incompatible is Scale ${e.type});if(l instanceof g.FactorRange&&!(e instanceof a.CategoricalScale))throw new Error(Range ${l.type} is incompatible is Scale ${e.type});e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint="log");const t=e.clone();t.setv({source_range:l,target_range:s}),c.set(o,t)}return c}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new r.Range1d({start:e.left,end:e.right}),this._y_target=new r.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}_set_geometry(e,t){super._set_geometry(e,t),this._update_scales()}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get("default")}get y_scale(){return this._y_scales.get("default")}get xscales(){return o.to_object(this.x_scales)}get yscales(){return o.to_object(this.y_scales)}}s.CartesianFrame=h,h.__name__="CartesianFrame"},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(147);class _ extends n.Scale{constructor(e){super(e)}compute(e){return super._linear_compute(this.source_range.synthetic(e))}v_compute(e){return super._linear_v_compute(this.source_range.v_synthetic(e))}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}t.CategoricalScale=_,_.__name__="CategoricalScale"},n function _(t,i,n){Object.defineProperty(n,"__esModule",{value:!0});const e=t(1),a=t(211),s=t(90),l=t(19),_=e.__importStar(t(18)),o=e.__importStar(t(79)),r=t(9);class h extends a.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}static init_DataRange1d(){this.define({start:[_.Number],end:[_.Number],range_padding:[_.Number,.1],range_padding_units:[_.PaddingUnits,"percent"],flipped:[_.Boolean,!1],follow:[_.StartEnd],follow_interval:[_.Number],default_span:[_.Number,2],only_visible:[_.Boolean,!1]}),this.internal({scale_hint:[_.String,"auto"]})}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const t=this.names;let i=this.renderers;if(0==i.length)for(const t of this.plots){const n=t.renderers.filter(t=>t instanceof s.GlyphRenderer);i=i.concat(n)}t.length>0&&(i=i.filter(i=>r.includes(t,i.name))),l.logger.debug(computed ${i.length} renderers for ${this});for(const t of i)l.logger.trace(" - "+t);return i}_compute_plot_bounds(t,i){let n=o.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=o.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=o.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return e<i*a?e=i*a:a=e/i,n.x1=s+.5*e,n.x0=s-.5*e,n.y1=l+.5*a,n.y0=l-.5*a,n}_compute_min_max(t,i){let n,e,a=o.empty();for(const i of t)a=o.union(a,i);return[n,e]=0==i?[a.x0,a.x1]:[a.y0,a.y1],[n,e]}_compute_range(t,i){const n=this.range_padding;let e,a;if(null!=this._initial_start&&(t=this._initial_start),null!=this._initial_end&&(i=this._initial_end),"log"==this.scale_hint){let s,_;if((isNaN(t)||!isFinite(t)||t<=0)&&(t=isNaN(i)||!isFinite(i)||i<=0?.1:i/100,l.logger.warn("could not determine minimum data value for log axis, DataRange1d using value "+t)),(isNaN(i)||!isFinite(i)||i<=0)&&(i=isNaN(t)||!isFinite(t)||t<=0?10:100*t,l.logger.warn("could not determine maximum data value for log axis, DataRange1d using value "+i)),i==t)_=this.default_span+.001,s=Math.log(t)/Math.log(10);else{let e,a;"percent"==this.range_padding_units?(e=Math.log(t)/Math.log(10),a=Math.log(i)/Math.log(10),_=(a-e)*(1+n)):(e=Math.log(t-n)/Math.log(10),a=Math.log(i+n)/Math.log(10),_=a-e),s=(e+a)/2}e=10**(s-_/2),a=10**(s+_/2)}else{let s;s=i==t?this.default_span:"percent"==this.range_padding_units?(i-t)*(1+n):i-t+2*n;const l=(i+t)/2;e=l-s/2,a=l+s/2}let s=1;this.flipped&&([e,a]=[a,e],s=-1);const _=this.follow_interval;return null!=_&&Math.abs(e-a)>_&&("start"==this.follow?a=e+s*_:"end"==this.follow&&(e=a-s*_)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.values(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&("log"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&("log"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);const[h,d]=[this.start,this.end];if(o!=h||r!=d){const t={};o!=h&&(t.start=o),r!=d&&(t.end=r),this.setv(t)}"auto"==this.bounds&&this.setv({bounds:[o,r]},{silent:!0}),this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=h,h.__name__="DataRange1d",h.init_DataRange1d()},n function _(e,a,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),r=e(99),s=n.__importStar(e(18));class _ extends r.Range{constructor(e){super(e)}static init_DataRange(){this.define({names:[s.Array,[]],renderers:[s.Array,[]]})}}t.DataRange=_,_.__name__="DataRange",_.init_DataRange()},n function _(a,o,t){Object.defineProperty(t,"__esModule",{value:!0});var e=a(213);t.Sizeable=e.Sizeable,t.SizingPolicy=e.SizingPolicy;var i=a(214);t.Layoutable=i.Layoutable,t.LayoutItem=i.LayoutItem;var n=a(215);t.HStack=n.HStack,t.VStack=n.VStack,t.AnchorLayout=n.AnchorLayout;var r=a(216);t.Grid=r.Grid,t.Row=r.Row,t.Column=r.Column;var c=a(217);t.ContentBox=c.ContentBox,t.VariadicBox=c.VariadicBox},n function _(t,h,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(21),{min:d,max:n}=Math;class w{constructor(t={}){this.width=null!=t.width?t.width:0,this.height=null!=t.height?t.height:0}bounded_to({width:t,height:h}){return new w({width:this.width==1/0&&null!=t?t:this.width,height:this.height==1/0&&null!=h?h:this.height})}expanded_to({width:t,height:h}){return new w({width:t!=1/0?n(this.width,t):this.width,height:h!=1/0?n(this.height,h):this.height})}expand_to({width:t,height:h}){this.width=n(this.width,t),this.height=n(this.height,h)}narrowed_to({width:t,height:h}){return new w({width:d(this.width,t),height:d(this.height,h)})}narrow_to({width:t,height:h}){this.width=d(this.width,t),this.height=d(this.height,h)}grow_by({left:t,right:h,top:i,bottom:e}){const d=this.width+t+h,n=this.height+i+e;return new w({width:d,height:n})}shrink_by({left:t,right:h,top:i,bottom:e}){const d=n(this.width-t-h,0),s=n(this.height-i-e,0);return new w({width:d,height:s})}map(t,h){return new w({width:t(this.width),height:(null!=h?h:t)(this.height)})}}i.Sizeable=w,w.__name__="Sizeable",i.SizingPolicy=e.Enum("fixed","fit","min","max")},n function _(i,t,h){Object.defineProperty(h,"__esModule",{value:!0});const e=i(213),s=i(79),{min:n,max:g,round:a}=Math;class l{constructor(){this._bbox=new s.BBox,this._inner_bbox=new s.BBox}get bbox(){return this._bbox}get inner_bbox(){return this._inner_bbox}get sizing(){return this._sizing}set_sizing(i){const t=i.width_policy||"fit",h=i.width,e=null!=i.min_width?i.min_width:0,s=null!=i.max_width?i.max_width:1/0,n=i.height_policy||"fit",g=i.height,a=null!=i.min_height?i.min_height:0,l=null!=i.max_height?i.max_height:1/0,_=i.aspect,d=i.margin||{top:0,right:0,bottom:0,left:0},r=!1!==i.visible,w=i.halign||"start",o=i.valign||"start";this._sizing={width_policy:t,min_width:e,width:h,max_width:s,height_policy:n,min_height:a,height:g,max_height:l,aspect:_,margin:d,visible:r,halign:w,valign:o,size:{width:h,height:g},min_size:{width:e,height:a},max_size:{width:s,height:l}},this._init()}_init(){}_set_geometry(i,t){this._bbox=i,this._inner_bbox=t}set_geometry(i,t){this._set_geometry(i,t||i)}is_width_expanding(){return"max"==this.sizing.width_policy}is_height_expanding(){return"max"==this.sizing.height_policy}apply_aspect(i,{width:t,height:h}){const{aspect:e}=this.sizing;if(null!=e){const{width_policy:s,height_policy:n}=this.sizing,g=(i,t)=>{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if("fixed"!=s&&"fixed"!=n)if(s==n){const s=t,n=a(t/e),g=a(h*e),l=h;Math.abs(i.width-s)+Math.abs(i.height-n)<=Math.abs(i.width-g)+Math.abs(i.height-l)?(t=s,h=n):(t=g,h=l)}else g(s,n)?h=a(t/e):t=a(h*e);else"fixed"==s?h=a(t/e):"fixed"==n&&(t=a(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>"fixed"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>"fixed"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,s=new e.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(s),g=this.clip_size(n),a=t(g.width),l=h(g.height),_=this.apply_aspect(s,{width:a,height:l});return Object.assign(Object.assign({},n),_)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new s.BBox({left:0,top:0,width:h,height:e});let g=void 0;if(null!=t.inner){const{left:i,top:n,right:a,bottom:l}=t.inner;g=new s.BBox({left:i,top:n,right:h-a,bottom:e-l})}this.set_geometry(n,g)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_width(i){return g(this.sizing.min_width,n(i,this.sizing.max_width))}clip_height(i){return g(this.sizing.min_height,n(i,this.sizing.max_height))}clip_size({width:i,height:t}){return{width:this.clip_width(i),height:this.clip_height(t)}}}h.Layoutable=l,l.__name__="Layoutable";class _ extends l{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;let e,s;if(i.width==1/0)e=null!=this.sizing.width?this.sizing.width:0;else switch(t){case"fixed":e=null!=this.sizing.width?this.sizing.width:0;break;case"min":e=null!=this.sizing.width?n(i.width,this.sizing.width):0;break;case"fit":e=null!=this.sizing.width?n(i.width,this.sizing.width):i.width;break;case"max":e=null!=this.sizing.width?g(i.width,this.sizing.width):i.width}if(i.height==1/0)s=null!=this.sizing.height?this.sizing.height:0;else switch(h){case"fixed":s=null!=this.sizing.height?this.sizing.height:0;break;case"min":s=null!=this.sizing.height?n(i.height,this.sizing.height):0;break;case"fit":s=null!=this.sizing.height?n(i.height,this.sizing.height):i.height;break;case"max":s=null!=this.sizing.height?g(i.height,this.sizing.height):i.height}return{width:e,height:s}}}h.LayoutItem=_,_.__name__="LayoutItem";class d extends l{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case"fixed":return null!=this.sizing.width?this.sizing.width:t.width;case"min":return t.width;case"fit":return h.width;case"max":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case"fixed":return null!=this.sizing.height?this.sizing.height:t.height;case"min":return t.height;case"fit":return h.height;case"max":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=d,d.__name__="ContentLayoutable"},n function _(t,e,h){Object.defineProperty(h,"__esModule",{value:!0});const o=t(214),r=t(79);class i extends o.Layoutable{constructor(){super(…arguments),this.children=[]}}h.Stack=i,i.__name__="Stack";class s extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e+=o.width,h=Math.max(h,o.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{top:h,bottom:o}=t;let{left:i}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({left:i,width:e,top:h,bottom:o})),i+=e}}}h.HStack=s,s.__name__="HStack";class n extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e=Math.max(e,o.width),h+=o.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{left:h,right:o}=t;let{top:i}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({top:i,height:e,left:h,right:o})),i+=e}}}h.VStack=n,n.__name__="VStack";class c extends o.Layoutable{constructor(){super(…arguments),this.children=[]}_measure(t){let e=0,h=0;for(const{layout:o}of this.children){const r=o.measure(t);e=Math.max(e,r.width),h=Math.max(h,r.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);for(const{layout:e,anchor:h,margin:o}of this.children){const{left:i,right:s,top:n,bottom:c,hcenter:a,vcenter:_}=t,{width:g,height:d}=e.measure(t);let m;switch(h){case"top_left":m=new r.BBox({left:i+o,top:n+o,width:g,height:d});break;case"top_center":m=new r.BBox({hcenter:a,top:n+o,width:g,height:d});break;case"top_right":m=new r.BBox({right:s-o,top:n+o,width:g,height:d});break;case"bottom_right":m=new r.BBox({right:s-o,bottom:c-o,width:g,height:d});break;case"bottom_center":m=new r.BBox({hcenter:a,bottom:c-o,width:g,height:d});break;case"bottom_left":m=new r.BBox({left:i+o,bottom:c-o,width:g,height:d});break;case"center_left":m=new r.BBox({left:i+o,vcenter:_,width:g,height:d});break;case"center":m=new r.BBox({hcenter:a,vcenter:_,width:g,height:d});break;case"center_right":m=new r.BBox({right:s-o,vcenter:_,width:g,height:d})}e.set_geometry(m)}}}h.AnchorLayout=c,c.__name__="AnchorLayout"},n function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const e=t(213),o=t(214),n=t(8),r=t(79),h=t(9),{max:l,round:c}=Math;class a{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}a.__name__="DefaultMap";class g{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=l(this._nrows,s+1),this._ncols=l(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter(({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1).map(({data:t})=>t)}row(t){return this._items.filter(({span:i})=>i.r0<=t&&t<=i.r1).map(({data:t})=>t)}col(t){return this._items.filter(({span:i})=>i.c0<=t&&t<=i.c1).map(({data:t})=>t)}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new g;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}g.__name__="Container";class p extends o.Layoutable{constructor(t=[]){super(),this.items=t,this.rows="auto",this.cols="auto",this.spacing=0,this.absolute=!1}is_width_expanding(){if(super.is_width_expanding())return!0;if("fixed"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return h.some(t,t=>"max"==t.policy)}is_height_expanding(){if(super.is_height_expanding())return!0;if("fixed"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return h.some(t,t=>"max"==t.policy)}_init(){super._init();const t=new g;for(const{layout:i,row:s,col:e,row_span:o,col_span:n}of this.items)if(i.sizing.visible){const r=s,h=e,l=s+(null!=o?o:1)-1,c=e+(null!=n?n:1)-1;t.add({r0:r,c0:h,r1:l,c1:c},i)}const{nrows:i,ncols:s}=t,e=new Array(i);for(let s=0;s<i;s++){const i=(()=>{const t=n.isPlainObject(this.rows)?this.rows[s]||this.rows[""]:this.rows;return null==t?{policy:"auto"}:n.isNumber(t)?{policy:"fixed",height:t}:n.isString(t)?{policy:t}:t})(),o=i.align||"auto";if("fixed"==i.policy)e[s]={policy:"fixed",height:i.height,align:o};else if("min"==i.policy)e[s]={policy:"min",align:o};else if("fit"==i.policy||"max"==i.policy)e[s]={policy:i.policy,flex:i.flex||1,align:o};else{if("auto"!=i.policy)throw new Error("unrechable");h.some(t.row(s),t=>t.is_height_expanding())?e[s]={policy:"max",flex:1,align:o}:e[s]={policy:"min",align:o}}}const o=new Array(s);for(let i=0;i<s;i++){const s=(()=>{const t=n.isPlainObject(this.cols)?this.cols[i]||this.cols[""]:this.cols;return null==t?{policy:"auto"}:n.isNumber(t)?{policy:"fixed",width:t}:n.isString(t)?{policy:t}:t})(),e=s.align||"auto";if("fixed"==s.policy)o[i]={policy:"fixed",width:s.width,align:e};else if("min"==s.policy)o[i]={policy:"min",align:e};else if("fit"==s.policy||"max"==s.policy)o[i]={policy:s.policy,flex:s.flex||1,align:e};else{if("auto"!=s.policy)throw new Error("unrechable");h.some(t.col(i),t=>t.is_width_expanding())?o[i]={policy:"max",flex:1,align:e}:o[i]={policy:"min",align:e}}}const[r,l]=n.isNumber(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:t,nrows:i,ncols:s,rows:e,cols:o,rspacing:r,cspacing:l}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:h.sum(t)+(s-1)*o,width:h.sum(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:o,rows:n,cols:r,rspacing:h,cspacing:a}=this._state,p=new Array(s);for(let t=0;t<s;t++){const i=n[t];p[t]="fixed"==i.policy?i.height:0}const _=new Array(o);for(let t=0;t<o;t++){const i=r[t];_[t]="fixed"==i.policy?i.width:0}const f=new g;i.foreach((i,s)=>{const{r0:o,c0:g,r1:d,c1:w}=i,u=(d-o)*h,m=(w-g)*a;let y=0;for(let i=o;i<=d;i++)y+=t(i,g).height;y+=u;let x=0;for(let i=g;i<=w;i++)x+=t(o,i).width;x+=m;const b=s.measure({width:x,height:y});f.add(i,{layout:s,size_hint:b});const z=new e.Sizeable(b).grow_by(s.sizing.margin);z.height-=u,z.width-=m;const j=[];for(let t=o;t<=d;t++){const i=n[t];"fixed"==i.policy?z.height-=i.height:j.push(t)}if(z.height>0){const t=c(z.height/j.length);for(const i of j)p[i]=l(p[i],t)}const O=[];for(let t=g;t<=w;t++){const i=r[t];"fixed"==i.policy?z.width-=i.width:O.push(t)}if(z.width>0){const t=c(z.width/O.length);for(const i of O)_[i]=l(_[i],t)}});return{size:this._measure_totals(p,_),row_heights:p,col_widths:_,size_hints:f}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:r}=this._state,h=this._measure_cells((t,i)=>{const s=e[t],n=o[i];return{width:"fixed"==n.policy?n.width:1/0,height:"fixed"==s.policy?s.height:1/0}});let a;a="fixed"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:h.size.height;let g,p=0;for(let t=0;t<i;t++){const i=e[t];"fit"==i.policy||"max"==i.policy?p+=i.flex:a-=h.row_heights[t]}if(a-=(i-1)*n,0!=p&&a>0)for(let t=0;t<i;t++){const i=e[t];if("fit"==i.policy||"max"==i.policy){const s=c(a*(i.flex/p));a-=s,h.row_heights[t]=s,p-=i.flex}}else if(a<0){let t=0;for(let s=0;s<i;s++){"fixed"!=e[s].policy&&t++}let s=-a;for(let o=0;o<i;o++){if("fixed"!=e[o].policy){const i=h.row_heights[o],e=c(s/t);h.row_heights[o]=l(i-e,0),s-=e>i?i:e,t–}}}g="fixed"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:h.size.width;let _=0;for(let t=0;t<s;t++){const i=o[t];"fit"==i.policy||"max"==i.policy?_+=i.flex:g-=h.col_widths[t]}if(g-=(s-1)*r,0!=_&&g>0)for(let t=0;t<s;t++){const i=o[t];if("fit"==i.policy||"max"==i.policy){const s=c(g*(i.flex/_));g-=s,h.col_widths[t]=s,_-=i.flex}}else if(g<0){let t=0;for(let i=0;i<s;i++){"fixed"!=o[i].policy&&t++}let i=-g;for(let e=0;e<s;e++){if("fixed"!=o[e].policy){const s=h.col_widths[e],o=c(i/t);h.col_widths[e]=l(s-o,0),i-=o>s?s:o,t–}}}const{row_heights:f,col_widths:d,size_hints:w}=this._measure_cells((t,i)=>({width:h.col_widths[i],height:h.row_heights[t]}));return{size:this._measure_totals(f,d),row_heights:f,col_widths:d,size_hints:w}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:h,col_widths:g,size_hints:p}=this._measure_grid(t),_=this._state.rows.map((t,i)=>Object.assign(Object.assign({},t),{top:0,height:h[i],get bottom(){return this.top+this.height}})),f=this._state.cols.map((t,i)=>Object.assign(Object.assign({},t),{left:0,width:g[i],get right(){return this.left+this.width}})),d=p.map((t,i)=>Object.assign(Object.assign({},i),{outer:new r.BBox,inner:new r.BBox}));for(let i=0,e=this.absolute?t.top:0;i<s;i++){const t=_[i];t.top=e,e+=t.height+o}for(let i=0,s=this.absolute?t.left:0;i<e;i++){const t=f[i];t.left=s,s+=t.width+n}d.foreach(({r0:t,c0:i,r1:s,c1:e},h)=>{const{layout:l,size_hint:a}=h,{sizing:g}=l,{width:p,height:d}=a,w=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=f[e].width;return s}(i,e),u=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=_[e].height;return s}(t,s),m=i==e&&"auto"!=f[i].align?f[i].align:g.halign,y=t==s&&"auto"!=_[t].align?_[t].align:g.valign;let x=f[i].left;"start"==m?x+=g.margin.left:"center"==m?x+=c((w-p)/2):"end"==m&&(x+=w-g.margin.right-p);let b=_[t].top;"start"==y?b+=g.margin.top:"center"==y?b+=c((u-d)/2):"end"==y&&(b+=u-g.margin.bottom-d),h.outer=new r.BBox({left:x,top:b,width:p,height:d})});const w=_.map(()=>({start:new a(()=>0),end:new a(()=>0)})),u=f.map(()=>({start:new a(()=>0),end:new a(()=>0)}));d.foreach(({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:r}=o;null!=r&&(w[t].start.apply(n.top,t=>l(t,r.top)),w[s].end.apply(_[s].bottom-n.bottom,t=>l(t,r.bottom)),u[i].start.apply(n.left,t=>l(t,r.left)),u[e].end.apply(f[e].right-n.right,t=>l(t,r.right)))}),d.foreach(({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:h}=o;function l({left:t,right:i,top:s,bottom:e}){const o=h.width-t-i,n=h.height-s-e;return new r.BBox({left:t,top:s,width:o,height:n})}if(null!=n.inner){let r=l(n.inner);if(!1!==n.align){const o=w[t].start.get(h.top),n=w[s].end.get(_[s].bottom-h.bottom),c=u[i].start.get(h.left),a=u[e].end.get(f[e].right-h.right);try{r=l({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=r}else o.inner=h}),d.foreach((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)})}}s.Grid=p,p.__name__="Grid";class _ extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:0,col:i})),this.rows="fit"}}s.Row=_,_.__name__="Row";class f extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:i,col:0})),this.cols="fit"}}s.Column=f,f.__name__="Column"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(214),i=e(213),a=e(72);class c extends n.ContentLayoutable{constructor(e){super(),this.content_size=a.unsized(e,()=>new i.Sizeable(a.size(e)))}_content_size(){return this.content_size}}s.ContentBox=c,c.__name__="ContentBox";class o extends n.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new i.Sizeable(e).bounded_to(this.sizing.size);return a.sized(this.el,t,()=>{const e=new i.Sizeable(a.content_size(this.el)),{border:t,padding:s}=a.extents(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)})}}s.VariadicBox=o,o.__name__="VariadicBox";class r extends o{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=r,r.__name__="CachedVariadicBox"},n function _(e,r,u){Object.defineProperty(u,"__esModule",{value:!0});var a=e(219);u.Expression=a.Expression;var n=e(220);u.Stack=n.Stack;var o=e(221);u.CumSum=o.CumSum},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(81);class i extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._connected=new Set,this._result=new Map}v_compute(e){this._connected.has(e)||(this.connect(e.change,()=>this._result.delete(e)),this.connect(e.patching,()=>this._result.delete(e)),this.connect(e.streaming,()=>this._result.delete(e)),this._connected.add(e));let t=this._result.get(e);return null==t&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=i,i.__name__="Expression"},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),i=t(219),s=t(24),o=r.__importStar(t(18));class a extends i.Expression{constructor(t){super(t)}static init_Stack(){this.define({fields:[o.Array,[]]})}_v_compute(t){var e;const n=null!==(e=t.get_length())&&void 0!==e?e:0,r=new s.NumberArray(n);for(const e of this.fields){const i=t.data[e];if(null!=i)for(let t=0,e=Math.min(n,i.length);t<e;t++)r[t]+=i[t]}return r}}n.Stack=a,a.__name__="Stack",a.init_Stack()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e(1),u=e(219),r=e(24),_=i.__importStar(e(18));class o extends u.Expression{constructor(e){super(e)}static init_CumSum(){this.define({field:[_.String],include_zero:[_.Boolean,!1]})}_v_compute(e){const t=new r.NumberArray(e.get_length()||0),n=e.data[this.field],i=this.include_zero?1:0;t[0]=this.include_zero?0:n[0];for(let e=1;e<t.length;e++)t[e]=t[e-1]+n[e-i];return t}}n.CumSum=o,o.__name__="CumSum",o.init_CumSum()},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});var l=e(223);t.BooleanFilter=l.BooleanFilter;var i=e(225);t.CustomJSFilter=i.CustomJSFilter;var o=e(224);t.Filter=o.Filter;var F=e(226);t.GroupFilter=F.GroupFilter;var a=e(227);t.IndexFilter=a.IndexFilter},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),l=e(224),i=o.__importStar(e(18)),s=e(24);class r extends l.Filter{constructor(e){super(e)}static init_BooleanFilter(){this.define({booleans:[i.Array,null]})}compute_indices(e){const n=e.length,{booleans:t}=this;return null==t?s.Indices.all_set(n):s.Indices.from_booleans(n,t)}}t.BooleanFilter=r,r.__name__="BooleanFilter",r.init_BooleanFilter()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Filter=r,r.__name__="Filter"},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e(1),n=e(224),i=s.__importStar(e(18)),o=e(24),u=e(13),c=e(8),a=e(29);class l extends n.Filter{constructor(e){super(e)}static init_CustomJSFilter(){this.define({args:[i.Any,{}],code:[i.String,""]})}get names(){return u.keys(this.args)}get values(){return u.values(this.args)}get func(){const e=a.use_strict(this.code);return new Function(…this.names,"source",e)}compute_indices(e){const t=e.length,r=this.func(…this.values,e);if(null==r)return o.Indices.all_set(t);if(c.isArrayOf(r,c.isInteger))return o.Indices.from_indices(t,r);if(c.isArrayOf(r,c.isBoolean))return o.Indices.from_booleans(t,r);throw new Error("expect an array of integers or booleans, or null, got "+r)}}r.CustomJSFilter=l,l.__name__="CustomJSFilter",l.init_CustomJSFilter()},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e(1),i=e(224),o=r.__importStar(e(18)),u=e(24),s=e(19);class c extends i.Filter{constructor(e){super(e)}static init_GroupFilter(){this.define({column_name:[o.String],group:[o.String]})}compute_indices(e){const t=e.get_column(this.column_name);if(null==t)return s.logger.warn(${this}: groupby column ‘${this.column_name}’ not found in the data source),new u.Indices(e.length,1);{const n=new u.Indices(e.length);for(let e=0;e<n.size;e++)t[e]===this.group&&n.set(e);return n}}}n.GroupFilter=c,c.__name__="GroupFilter",c.init_GroupFilter()},n function _(e,i,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(1),s=e(224),r=t.__importStar(e(18)),c=e(24);class l extends s.Filter{constructor(e){super(e)}static init_IndexFilter(){this.define({indices:[r.Array,null]})}compute_indices(e){const i=e.length,{indices:n}=this;return null==n?c.Indices.all_set(i):c.Indices.from_indices(i,n)}}n.IndexFilter=l,l.__name__="IndexFilter",l.init_IndexFilter()},n function _(r,t,a){Object.defineProperty(a,"__esModule",{value:!0});var e=r(130);a.BasicTickFormatter=e.BasicTickFormatter;var c=r(181);a.CategoricalTickFormatter=c.CategoricalTickFormatter;var i=r(185);a.DatetimeTickFormatter=i.DatetimeTickFormatter;var o=r(229);a.FuncTickFormatter=o.FuncTickFormatter;var m=r(198);a.LogTickFormatter=m.LogTickFormatter;var F=r(201);a.MercatorTickFormatter=F.MercatorTickFormatter;var k=r(230);a.NumeralTickFormatter=k.NumeralTickFormatter;var T=r(231);a.PrintfTickFormatter=T.PrintfTickFormatter;var v=r(131);a.TickFormatter=v.TickFormatter},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),s=t(131),i=r.__importStar(t(18)),c=t(13),a=t(29);class u extends s.TickFormatter{constructor(t){super(t)}static init_FuncTickFormatter(){this.define({args:[i.Any,{}],code:[i.String,""]})}get names(){return c.keys(this.args)}get values(){return c.values(this.args)}_make_func(){const t=a.use_strict(this.code);return new Function("tick","index","ticks",…this.names,t)}doFormat(t,e){const n=this._make_func().bind({});return t.map((t,e,r)=>n(t,e,r,…this.values))}}n.FuncTickFormatter=u,u.__name__="FuncTickFormatter",u.init_FuncTickFormatter()},n function _(r,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=r(1),o=e.__importStar(r(188)),a=r(131),i=e.__importStar(r(18));class u extends a.TickFormatter{constructor(r){super(r)}static init_NumeralTickFormatter(){this.define({format:[i.String,"0,0"],language:[i.String,"en"],rounding:[i.RoundingFunction,"round"]})}get _rounding_fn(){switch(this.rounding){case"round":case"nearest":return Math.round;case"floor":case"rounddown":return Math.floor;case"ceil":case"roundup":return Math.ceil}}doFormat(r,t){const{format:n,language:e,_rounding_fn:a}=this;return r.map(r=>o.format(r,n,e,a))}}n.NumeralTickFormatter=u,u.__name__="NumeralTickFormatter",u.init_NumeralTickFormatter()},n function _(t,r,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1),n=t(131),o=t(187),a=e.__importStar(t(18));class c extends n.TickFormatter{constructor(t){super(t)}static init_PrintfTickFormatter(){this.define({format:[a.String,"%s"]})}doFormat(t,r){return t.map(t=>o.sprintf(this.format,t))}}i.PrintfTickFormatter=c,c.__name__="PrintfTickFormatter",c.init_PrintfTickFormatter()},n function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var v=a(233);r.AnnularWedge=v.AnnularWedge;var l=a(234);r.Annulus=l.Annulus;var t=a(235);r.Arc=t.Arc;var i=a(236);r.Bezier=i.Bezier;var n=a(237);r.Circle=n.Circle;var u=a(241);r.CenterRotatable=u.CenterRotatable;var c=a(242);r.Ellipse=c.Ellipse;var g=a(243);r.EllipseOval=g.EllipseOval;var A=a(94);r.Glyph=A.Glyph;var p=a(111);r.HArea=p.HArea;var s=a(244);r.HBar=s.HBar;var d=a(246);r.HexTile=d.HexTile;var R=a(247);r.Image=R.Image;var o=a(249);r.ImageRGBA=o.ImageRGBA;var y=a(250);r.ImageURL=y.ImageURL;var h=a(92);r.Line=h.Line;var m=a(252);r.MultiLine=m.MultiLine;var B=a(253);r.MultiPolygons=B.MultiPolygons;var P=a(254);r.Oval=P.Oval;var G=a(110);r.Patch=G.Patch;var H=a(255);r.Patches=H.Patches;var I=a(256);r.Quad=I.Quad;var L=a(257);r.Quadratic=L.Quadratic;var M=a(258);r.Ray=M.Ray;var O=a(259);r.Rect=O.Rect;var x=a(260);r.Segment=x.Segment;var C=a(261);r.Step=C.Step;var E=a(262);r.Text=E.Text;var Q=a(113);r.VArea=Q.VArea;var S=a(263);r.VBar=S.VBar;var T=a(264);r.Wedge=T.Wedge;var V=a(93);r.XYGlyph=V.XYGlyph},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),_=e(24),o=i.__importStar(e(18)),d=e(10),h=e(88);class u extends r.XYGlyphView{_map_data(){"data"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,"data"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius,this._angle=new _.NumberArray(this._start_angle.length);for(let e=0,t=this._start_angle.length;e<t;e++)this._angle[e]=this._end_angle[e]-this._start_angle[e]}_render(e,t,{sx:s,sy:i,_start_angle:r,_angle:n,sinner_radius:a,souter_radius:_}){const o=this.model.properties.direction.value();for(const d of t)isNaN(s[d]+i[d]+a[d]+_[d]+r[d]+n[d])||(e.translate(s[d],i[d]),e.rotate(r[d]),e.beginPath(),e.moveTo(_[d],0),e.arc(0,0,_[d],0,n[d],o),e.rotate(n[d]),e.lineTo(a[d],0),e.arc(0,0,a[d],0,-n[d],!o),e.closePath(),e.rotate(-n[d]-r[d]),e.translate(-s[d],-i[d]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,d),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,d),e.stroke()))}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),r=this.renderer.yscale.invert(s);let n,a,_,o;if("data"==this.model.properties.outer_radius.units)n=i-this.max_outer_radius,_=i+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const e=t-this.max_outer_radius,i=t+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(e,i);const r=s-this.max_outer_radius,d=s+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,d)}const u=[];for(const e of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const t=this.souter_radius[e]**2,s=this.sinner_radius[e]**2,[n,a]=this.renderer.xscale.r_compute(i,this._x[e]),[_,o]=this.renderer.yscale.r_compute(r,this._y[e]),d=(n-a)**2+(_-o)**2;d<=t&&d>=s&&u.push(e)}const l=this.model.properties.direction.value(),c=[];for(const e of u){const i=Math.atan2(s-this.sy[e],t-this.sx[e]);d.angle_between(-i,-this._start_angle[e],-this._end_angle[e],l)&&c.push(e)}return new h.Selection({indices:c})}draw_legend_for_index(e,t,s){n.generic_area_legend(this.visuals,e,t,s)}scenterxy(e){const t=(this.sinner_radius[e]+this.souter_radius[e])/2,s=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+t*Math.cos(s),this.sy[e]+t*Math.sin(s)]}}s.AnnularWedgeView=u,u.__name__="AnnularWedgeView";class l extends r.XYGlyph{constructor(e){super(e)}static init_AnnularWedge(){this.prototype.default_view=u,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[o.Direction,"anticlock"],inner_radius:[o.DistanceSpec],outer_radius:[o.DistanceSpec],start_angle:[o.AngleSpec],end_angle:[o.AngleSpec]})}}s.AnnularWedge=l,l.__name__="AnnularWedge",l.init_AnnularWedge()},n function _(s,i,e){Object.defineProperty(e,"__esModule",{value:!0});const t=s(1),r=s(93),n=s(28),a=t.__importStar(s(18)),_=s(32),u=s(88);class o extends r.XYGlyphView{_map_data(){"data"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,"data"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius}_render(s,i,{sx:e,sy:t,sinner_radius:r,souter_radius:n}){for(const a of i)if(!isNaN(e[a]+t[a]+r[a]+n[a])){if(this.visuals.fill.doit){if(this.visuals.fill.set_vectorize(s,a),s.beginPath(),_.is_ie)for(const i of[!1,!0])s.arc(e[a],t[a],r[a],0,Math.PI,i),s.arc(e[a],t[a],n[a],Math.PI,0,!i);else s.arc(e[a],t[a],r[a],0,2*Math.PI,!0),s.arc(e[a],t[a],n[a],2*Math.PI,0,!1);s.fill()}this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI),s.moveTo(e[a]+n[a],t[a]),s.arc(e[a],t[a],n[a],0,2*Math.PI),s.stroke())}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let n,a,_,o;if("data"==this.model.properties.outer_radius.units)n=t-this.max_outer_radius,_=t+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const s=i-this.max_outer_radius,t=i+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_outer_radius,u=e+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,u)}const d=[];for(const s of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const i=this.souter_radius[s]**2,e=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(t,this._x[s]),[_,u]=this.renderer.yscale.r_compute(r,this._y[s]),o=(n-a)**2+(_-u)**2;o<=i&&o>=e&&d.push(s)}return new u.Selection({indices:d})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},n){const a=n+1,_=new Array(a);_[n]=(i+t)/2;const u=new Array(a);u[n]=(e+r)/2;const o=.5*Math.min(Math.abs(t-i),Math.abs(r-e)),d=new Array(a);d[n]=.4*o;const h=new Array(a);h[n]=.8*o,this._render(s,[n],{sx:_,sy:u,sinner_radius:d,souter_radius:h})}}e.AnnulusView=o,o.__name__="AnnulusView";class d extends r.XYGlyph{constructor(s){super(s)}static init_Annulus(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({inner_radius:[a.DistanceSpec],outer_radius:[a.DistanceSpec]})}}e.Annulus=d,d.__name__="Annulus",d.init_Annulus()},n function _(e,i,s){Object.defineProperty(s,"__esModule",{value:!0});const t=e(1),r=e(93),n=e(100),a=e(28),_=t.__importStar(e(18));class c extends r.XYGlyphView{_map_data(){"data"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,i,{sx:s,sy:t,sradius:r,_start_angle:n,_end_angle:a}){if(this.visuals.line.doit){const _=this.model.properties.direction.value();for(const c of i)isNaN(s[c]+t[c]+r[c]+n[c]+a[c])||(e.beginPath(),e.arc(s[c],t[c],r[c],n[c],a[c],_),this.visuals.line.set_vectorize(e,c),e.stroke())}}draw_legend_for_index(e,i,s){n.generic_line_legend(this.visuals,e,i,s)}}s.ArcView=c,c.__name__="ArcView";class d extends r.XYGlyph{constructor(e){super(e)}static init_Arc(){this.prototype.default_view=c,this.mixins(a.LineVector),this.define({direction:[_.Direction,"anticlock"],radius:[_.DistanceSpec],start_angle:[_.AngleSpec],end_angle:[_.AngleSpec]})}}s.Arc=d,d.__name__="Arc",d.init_Arc()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(28),c=e(94),o=e(100),_=e(37),r=s.__importStar(e(18));function a(e,t,i,s,n,c,o,_){const r=[],a=[[],[]];for(let a=0;a<=2;a++){let h,d,x;if(0===a?(d=6*e-12*i+6*n,h=-3*e+9*i-9*n+3*o,x=3*i-3*e):(d=6*t-12*s+6*c,h=-3*t+9*s-9*c+3*_,x=3*s-3*t),Math.abs(h)<1e-12){if(Math.abs(d)<1e-12)continue;const e=-x/d;0<e&&e<1&&r.push(e);continue}const l=d*d-4*x*h,y=Math.sqrt(l);if(l<0)continue;const p=(-d+y)/(2*h);0<p&&p<1&&r.push(p);const f=(-d-y)/(2*h);0<f&&f<1&&r.push(f)}let h=r.length;const d=h;for(;h–;){const d=r[h],x=1-d,l=x*x*x*e+3*x*x*d*i+3*x*d*d*n+d*d*d*o;a[0][h]=l;const y=x*x*x*t+3*x*x*d*s+3*x*d*d*c+d*d*d*_;a[1][h]=y}return a[0][d]=e,a[1][d]=t,a[0][d+1]=o,a[1][d+1]=_,[Math.min(…a[0]),Math.max(…a[1]),Math.max(…a[0]),Math.min(…a[1])]}class h extends c.GlyphView{_project_data(){_.inplace.project_xy(this._x0,this._y0),_.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++)if(isNaN(this._x0[i]+this._x1[i]+this._y0[i]+this._y1[i]+this._cx0[i]+this._cy0[i]+this._cx1[i]+this._cy1[i]))e.add_empty();else{const[t,s,n,c]=a(this._x0[i],this._y0[i],this._x1[i],this._y1[i],this._cx0[i],this._cy0[i],this._cx1[i],this._cy1[i]);e.add(t,s,n,c)}}_render(e,t,{sx0:i,sy0:s,sx1:n,sy1:c,scx0:o,scy0:_,scx1:r,scy1:a}){if(this.visuals.line.doit)for(const h of t)isNaN(i[h]+s[h]+n[h]+c[h]+o[h]+_[h]+r[h]+a[h])||(e.beginPath(),e.moveTo(i[h],s[h]),e.bezierCurveTo(o[h],_[h],r[h],a[h],n[h],c[h]),this.visuals.line.set_vectorize(e,h),e.stroke())}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}i.BezierView=h,h.__name__="BezierView";class d extends c.Glyph{constructor(e){super(e)}static init_Bezier(){this.prototype.default_view=h,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}],cx0:[r.XCoordinateSpec,{field:"cx0"}],cy0:[r.YCoordinateSpec,{field:"cy0"}],cx1:[r.XCoordinateSpec,{field:"cx1"}],cy1:[r.YCoordinateSpec,{field:"cy1"}]}),this.mixins(n.LineVector)}}i.Bezier=d,d.__name__="Bezier",d.init_Bezier()},n function _(s,i,e){Object.defineProperty(e,"__esModule",{value:!0});const t=s(1),r=s(93),a=s(238),n=s(28),h=t.__importStar(s(101)),d=t.__importStar(s(18)),l=s(9),_=s(12),c=s(88);class o extends r.XYGlyphView{initialize(){super.initialize();const{webgl:s}=this.renderer.plot_view.canvas_view;null!=s&&(this.glglyph=new a.CircleGL(s.gl,this))}_map_data(){if(null!=this._radius)if("data"==this.model.properties.radius.units)switch(this.model.radius_dimension){case"x":this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius);break;case"y":this.sradius=this.sdist(this.renderer.yscale,this._y,this._radius);break;case"max":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.max(s,i[e]));break}case"min":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.min(s,i[e]));break}}else this.sradius=this._radius,this.max_size=2*this.max_radius;else this.sradius=_.map(this._size,s=>s/2)}_mask_data(){const[s,i]=this.renderer.plot_view.frame.bbox.ranges;let e,t,r,a;if(null!=this._radius&&"data"==this.model.properties.radius.units){const n=s.start,h=s.end;[e,r]=this.renderer.xscale.r_invert(n,h),e-=this.max_radius,r+=this.max_radius;const d=i.start,l=i.end;[t,a]=this.renderer.yscale.r_invert(d,l),t-=this.max_radius,a+=this.max_radius}else{const n=s.start-this.max_size,h=s.end+this.max_size;[e,r]=this.renderer.xscale.r_invert(n,h);const d=i.start-this.max_size,l=i.end+this.max_size;[t,a]=this.renderer.yscale.r_invert(d,l)}return this.index.indices({x0:e,x1:r,y0:t,y1:a})}_render(s,i,{sx:e,sy:t,sradius:r}){for(const a of i)isNaN(e[a]+t[a]+r[a])||(s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI,!1),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(s,a),s.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.stroke()))}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let a,n,h,d;if(null!=this._radius&&"data"==this.model.properties.radius.units)a=t-this.max_radius,n=t+this.max_radius,h=r-this.max_radius,d=r+this.max_radius;else{const s=i-this.max_size,t=i+this.max_size;[a,n]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size,l=e+this.max_size;[h,d]=this.renderer.yscale.r_invert(r,l)}const l=this.index.indices({x0:a,x1:n,y0:h,y1:d}),_=[];if(null!=this._radius&&"data"==this.model.properties.radius.units)for(const s of l){const i=this.sradius[s]**2,[e,a]=this.renderer.xscale.r_compute(t,this._x[s]),[n,h]=this.renderer.yscale.r_compute(r,this._y[s]);(e-a)**2+(n-h)**2<=i&&_.push(s)}else for(const s of l){const t=this.sradius[s]**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&_.push(s)}return new c.Selection({indices:_})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if("h"==s.direction){let s,e;if(n=t.y0,h=t.y1,null!=this._radius&&"data"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,null!=this._radius&&"data"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[…this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new c.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[…this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new c.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=l.range(0,this.sx.length),r=[];for(let s=0,a=t.length;s<a;s++){const a=t[s];h.point_in_poly(this.sx[s],this.sy[s],i,e)&&r.push(a)}return new c.Selection({indices:r})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},a){const n=a+1,h=new Array(n);h[a]=(i+t)/2;const d=new Array(n);d[a]=(e+r)/2;const l=new Array(n);l[a]=.2*Math.min(Math.abs(t-i),Math.abs(r-e)),this._render(s,[a],{sx:h,sy:d,sradius:l})}}e.CircleView=o,o.__name__="CircleView";class u extends r.XYGlyph{constructor(s){super(s)}static init_Circle(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({angle:[d.AngleSpec,0],size:[d.DistanceSpec,{units:"screen",value:4}],radius:[d.DistanceSpec,void 0,{optional:!0}],radius_dimension:[d.RadiusDimension,"x"]})}}e.Circle=u,u.__name__="Circle",u.init_Circle()},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),a=t(103),r=t(107),o=t(239),_=t(240),l=t(237),h=t(12),n=t(19),g=t(22);function u(t,e,s,i,a,r){if(a.doit)if(a[r].is_value)e.used=!1,t.set_attribute(s,"float",[a[r].value()]);else{e.used=!0;const o=new Float32Array(a.get_array(r));e.set_size(4*i),e.set_data(0,o),t.set_attribute(s,"float",e)}else e.used=!1,t.set_attribute(s,"float",[0])}function f(t,e,s,i,a,r){const o=r+"_color",_=r+"_alpha";if(a.doit){let r,l;if(e.used=!0,a[o].is_value){const t=g.encode_rgba(g.color2rgba(a[o].value())),e=new Uint32Array(i);e.fill(t),r=e}else r=a.get_array(o);if(a[_].is_value){const t=a[_].value(),e=new Float32Array(i);e.fill(t),l=e}else l=a.get_array(_);const h=new Float32Array(4*i);for(let t=0,e=i;t<e;t++){const e=g.decode_rgba(r[t]);1==e[3]&&(e[3]=l[t]),h.set(e,4*t)}e.set_size(4*i*4),e.set_data(0,h),t.set_attribute(s,"vec4",e)}else e.used=!1,t.set_attribute(s,"vec4",[0,0,0,0])}s.attach_float=u,s.attach_color=f;class d extends r.BaseGLGlyph{init(){const{gl:t}=this,e=o.vertex_shader,s=_.fragment_shader(this._marker_code);this.prog=new a.Program(t),this.prog.set_shaders(e,s),this.vbo_sx=new a.VertexBuffer(t),this.prog.set_attribute("a_sx","float",this.vbo_sx),this.vbo_sy=new a.VertexBuffer(t),this.prog.set_attribute("a_sy","float",this.vbo_sy),this.vbo_s=new a.VertexBuffer(t),this.prog.set_attribute("a_size","float",this.vbo_s),this.vbo_a=new a.VertexBuffer(t),this.prog.set_attribute("a_angle","float",this.vbo_a),this.vbo_linewidth=new a.VertexBuffer(t),this.vbo_fg_color=new a.VertexBuffer(t),this.vbo_bg_color=new a.VertexBuffer(t),this.index_buffer=new a.IndexBuffer(t)}draw(t,e,s){const i=e.glglyph,{nvertices:a}=i;if(i.data_changed&&(i._set_data(a),this.glyph instanceof l.CircleView&&null!=this.glyph._radius&&this.vbo_s.set_data(0,h.map(this.glyph.sradius,t=>2*t)),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(a),this.visuals_changed=!1),this.prog.set_uniform("u_pixel_ratio","float",[s.pixel_ratio]),this.prog.set_uniform("u_canvas_size","vec2",[s.width,s.height]),this.prog.set_attribute("a_sx","float",i.vbo_sx),this.prog.set_attribute("a_sy","float",i.vbo_sy),this.prog.set_attribute("a_size","float",i.vbo_s),this.prog.set_attribute("a_angle","float",i.vbo_a),0!=t.length)if(t.length===a)this.prog.draw(this.gl.POINTS,[0,a]);else if(a<65535){const e=window.navigator.userAgent;e.indexOf("MSIE ")+e.indexOf("Trident/")+e.indexOf("Edge/")>0&&n.logger.warn("WebGL warning: IE is known to produce 1px sprites whith selections."),this.index_buffer.set_size(2*t.length),this.index_buffer.set_data(0,new Uint16Array(t)),this.prog.draw(this.gl.POINTS,this.index_buffer)}else{const e=64e3,s=[];for(let t=0,i=Math.ceil(a/e);t<i;t++)s.push([]);for(let i=0,a=t.length;i<a;i++){const a=t[i]%e;s[Math.floor(t[i]/e)].push(a)}for(let t=0,a=s.length;t<a;t++){const a=new Uint16Array(s[t]),r=t*e*4;0!==a.length&&(this.prog.set_attribute("a_sx","float",i.vbo_sx,0,r),this.prog.set_attribute("a_sy","float",i.vbo_sy,0,r),this.prog.set_attribute("a_size","float",i.vbo_s,0,r),this.prog.set_attribute("a_angle","float",i.vbo_a,0,r),this.vbo_linewidth.used&&this.prog.set_attribute("a_linewidth","float",this.vbo_linewidth,0,r),this.vbo_fg_color.used&&this.prog.set_attribute("a_fg_color","vec4",this.vbo_fg_color,0,4*r),this.vbo_bg_color.used&&this.prog.set_attribute("a_bg_color","vec4",this.vbo_bg_color,0,4*r),this.index_buffer.set_size(2*a.length),this.index_buffer.set_data(0,a),this.prog.draw(this.gl.POINTS,this.index_buffer))}}}_set_data(t){const e=4*t;this.vbo_sx.set_size(e),this.vbo_sy.set_size(e),this.vbo_a.set_size(e),this.vbo_s.set_size(e),this.vbo_sx.set_data(0,this.glyph.sx),this.vbo_sy.set_data(0,this.glyph.sy),null!=this.glyph._angle&&this.vbo_a.set_data(0,new Float32Array(this.glyph._angle)),this.glyph instanceof l.CircleView&&null!=this.glyph._radius?this.vbo_s.set_data(0,h.map(this.glyph.sradius,t=>2*t)):this.vbo_s.set_data(0,new Float32Array(this.glyph._size))}_set_visuals(t){u(this.prog,this.vbo_linewidth,"a_linewidth",t,this.glyph.visuals.line,"line_width"),f(this.prog,this.vbo_fg_color,"a_fg_color",t,this.glyph.visuals.line,"line"),f(this.prog,this.vbo_bg_color,"a_bg_color",t,this.glyph.visuals.fill,"fill"),this.prog.set_uniform("u_antialias","float",[.8])}}function b(t){return class extends d{get _marker_code(){return t}}}s.MarkerGL=d,d.__name__="MarkerGL";const c=i.__importStar(t(240));s.AsteriskGL=b(c.asterisk),s.CircleGL=b(c.circle),s.CircleCrossGL=b(c.circlecross),s.CircleXGL=b(c.circlex),s.CrossGL=b(c.cross),s.DiamondGL=b(c.diamond),s.DiamondCrossGL=b(c.diamondcross),s.HexGL=b(c.hex),s.InvertedTriangleGL=b(c.invertedtriangle),s.SquareGL=b(c.square),s.SquareCrossGL=b(c.squarecross),s.SquareXGL=b(c.squarex),s.TriangleGL=b(c.triangle),s.XGL=b(c.x)},n function _(n,i,a){Object.defineProperty(a,"__esModule",{value:!0}),a.vertex_shader="\nprecision mediump float;\nconst float SQRT_2 = 1.4142135623730951;\n//\nuniform float u_pixel_ratio;\nuniform vec2 u_canvas_size;\nuniform vec2 u_offset;\nuniform vec2 u_scale;\nuniform float u_antialias;\n//\nattribute float a_sx;\nattribute float a_sy;\nattribute float a_size;\nattribute float a_angle; // in radians\nattribute float a_linewidth;\nattribute vec4 a_fg_color;\nattribute vec4 a_bg_color;\n//\nvarying float v_linewidth;\nvarying float v_size;\nvarying vec4 v_fg_color;\nvarying vec4 v_bg_color;\nvarying vec2 v_rotation;\n\nvoid main (void)\n{\n v_size = a_size * u_pixel_ratio;\n v_linewidth = a_linewidth * u_pixel_ratio;\n v_fg_color = a_fg_color;\n v_bg_color = a_bg_color;\n v_rotation = vec2(cos(-a_angle), sin(-a_angle));\n vec2 pos = vec2(a_sx, a_sy); // in pixels\n pos += 0.5; // make up for Bokeh’s offset\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\n gl_Position = vec4(pos*2.0-1.0, 0.0, 1.0);\n gl_Position.y = -1.0;\n gl_PointSize = SQRT_2 * v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\n}\n"},n function _(a,n,s){Object.defineProperty(s,"__esModule",{value:!0}),s.fragment_shader=a=>`\nprecision mediump float;\nconst float SQRT_2 = 1.4142135623730951;\nconst float PI = 3.14159265358979323846264;\n//\nuniform float u_antialias;\n//\nvarying vec4 v_fg_color;\nvarying vec4 v_bg_color;\nvarying float v_linewidth;\nvarying float v_size;\nvarying vec2 v_rotation;\n\n${a}\n\nvec4 outline(float distance, float linewidth, float antialias, vec4 fg_color, vec4 bg_color)\n{\n vec4 frag_color;\n float t = linewidth/2.0 - antialias;\n float signed_distance = distance;\n float border_distance = abs(signed_distance) - t;\n float alpha = border_distance/antialias;\n alpha = exp(-alpha*alpha);\n\n // If fg alpha is zero, it probably means no outline. To avoid a dark outline\n // shining through due to aa, we set the fg color to the bg color. Avoid if (i.e. branching).\n float select = float(bool(fg_color.a));\n fg_color.rgb = select * fg_color.rgb + (1.0 - select) * bg_color.rgb;\n // Similarly, if we want a transparent bg\n select = float(bool(bg_color.a));\n bg_color.rgb = select * bg_color.rgb + (1.0 - select) * fg_color.rgb;\n\n if( border_distance < 0.0)\n frag_color = fg_color;\n else if( signed_distance < 0.0 ) {\n frag_color = mix(bg_color, fg_color, sqrt(alpha));\n } else {\n if( abs(signed_distance) < (linewidth/2.0 + antialias) ) {\n frag_color = vec4(fg_color.rgb, fg_color.a * alpha);\n } else {\n discard;\n }\n }\n return frag_color;\n}\n\nvoid main()\n{\n vec2 P = gl_PointCoord.xy - vec2(0.5, 0.5);\n P = vec2(v_rotation.x*P.x - v_rotation.y*P.y,\n v_rotation.y*P.x + v_rotation.x*P.y);\n float point_size = SQRT_2*v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\n float distance = marker(P*point_size, v_size);\n gl_FragColor = outline(distance, v_linewidth, u_antialias, v_fg_color, v_bg_color);\n}\n`,s.circle="\nfloat marker(vec2 P, float size)\n{\n return length(P) - size/2.0;\n}\n",s.square="\nfloat marker(vec2 P, float size)\n{\n return max(abs(P.x), abs(P.y)) - size/2.0;\n}\n",s.diamond="\nfloat marker(vec2 P, float size)\n{\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\n float r1 = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\n return r1 / SQRT_2;\n}\n",s.hex="\nfloat marker(vec2 P, float size)\n{\n vec2 q = abs(P);\n return max(q.y * 0.57735 + q.x - 1.0 * size/2.0, q.y - 0.866 * size/2.0);\n}\n",s.triangle="\nfloat marker(vec2 P, float size)\n{\n P.y -= size * 0.3;\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\n float r1 = max(abs(x), abs(y)) - size / 1.6;\n float r2 = P.y;\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\n}\n",s.invertedtriangle="\nfloat marker(vec2 P, float size)\n{\n P.y += size * 0.3;\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\n float r1 = max(abs(x), abs(y)) - size / 1.6;\n float r2 = - P.y;\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\n}\n",s.cross=’\nfloat marker(vec2 P, float size)\n{\n float square = max(abs(P.x), abs(P.y)) - size / 2.5; // 2.5 is a tweak\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of "width" for aa\n return max(square, cross);\n}\n’,s.circlecross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float circle = length(P) - size/2.0;\n float c1 = max(circle, s1);\n float c2 = max(circle, s2);\n float c3 = max(circle, s3);\n float c4 = max(circle, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.squarecross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\n float c1 = max(square, s1);\n float c2 = max(square, s2);\n float c3 = max(square, s3);\n float c4 = max(square, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.diamondcross="\nfloat marker(vec2 P, float size)\n{\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\n float diamond = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\n diamond /= SQRT_2;\n float c1 = max(diamond, s1);\n float c2 = max(diamond, s2);\n float c3 = max(diamond, s3);\n float c4 = max(diamond, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.x=’\nfloat marker(vec2 P, float size)\n{\n float circle = length(P) - size / 1.6;\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n return max(circle, X);\n}\n’,s.circlex=’\nfloat marker(vec2 P, float size)\n{\n float x = P.x - P.y;\n float y = P.x + P.y;\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float circle = length(P) - size/2.0;\n float c1 = max(circle, s1);\n float c2 = max(circle, s2);\n float c3 = max(circle, s3);\n float c4 = max(circle, s4);\n // Union\n float almost = min(min(min(c1, c2), c3), c4);\n // In this case, the X is also outside of the main shape\n float Xmask = length(P) - size / 1.6; // a circle\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n return min(max(X, Xmask), almost);\n}\n’,s.squarex="\nfloat marker(vec2 P, float size)\n{\n float x = P.x - P.y;\n float y = P.x + P.y;\n // Define quadrants\n float qs = size / 2.0; // quadrant size\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\n // Intersect main shape with quadrants (to form cross)\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\n float c1 = max(square, s1);\n float c2 = max(square, s2);\n float c3 = max(square, s3);\n float c4 = max(square, s4);\n // Union\n return min(min(min(c1, c2), c3), c4);\n}\n",s.asterisk=’\nfloat marker(vec2 P, float size)\n{\n // Masks\n float diamond = max(abs(SQRT_2 / 2.0 * (P.x - P.y)), abs(SQRT_2 / 2.0 * (P.x + P.y))) - size / (2.0 * SQRT_2);\n float square = max(abs(P.x), abs(P.y)) - size / (2.0 * SQRT_2);\n // Shapes\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of "width" for aa\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of "width" for aa\n // Result is union of masked shapes\n return min(max(X, diamond), max(cross, square));\n}\n’},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const a=e(1),i=e(93),l=e(28),s=a.__importStar(e(18));class c extends i.XYGlyphView{}n.CenterRotatableView=c,c.__name__="CenterRotatableView";class o extends i.XYGlyph{constructor(e){super(e)}static init_CenterRotatable(){this.mixins([l.LineVector,l.FillVector]),this.define({angle:[s.AngleSpec,0],width:[s.DistanceSpec],height:[s.DistanceSpec]})}}n.CenterRotatable=o,o.__name__="CenterRotatable",o.init_CenterRotatable()},n function _(e,l,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(243);class t extends s.EllipseOvalView{}i.EllipseView=t,t.__name__="EllipseView";class _ extends s.EllipseOval{constructor(e){super(e)}static init_Ellipse(){this.prototype.default_view=t}}i.Ellipse=_,_.__name__="Ellipse",_.init_Ellipse()},n function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t(1),h=t(241),a=e.__importStar(t(101)),r=t(88);class n extends h.CenterRotatableView{_set_data(){this.max_w2=0,"data"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,"data"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){"data"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this._width,"center"):this.sw=this._width,"data"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this._height,"center"):this.sh=this._height}_render(t,s,{sx:i,sy:e,sw:h,sh:a,_angle:r}){for(const n of s)isNaN(i[n]+e[n]+h[n]+a[n]+r[n])||(t.beginPath(),t.ellipse(i[n],e[n],h[n]/2,a[n]/2,r[n],0,2*Math.PI),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,n),t.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,n),t.stroke()))}_hit_point(t){let s,i,e,h,n,_,l,d,o;const{sx:x,sy:m}=t,w=this.renderer.xscale.invert(x),c=this.renderer.yscale.invert(m);"data"==this.model.properties.width.units?(s=w-this.max_width,i=w+this.max_width):(_=x-this.max_width,l=x+this.max_width,[s,i]=this.renderer.xscale.r_invert(_,l)),"data"==this.model.properties.height.units?(e=c-this.max_height,h=c+this.max_height):(d=m-this.max_height,o=m+this.max_height,[e,h]=this.renderer.yscale.r_invert(d,o));const p=this.index.indices({x0:s,x1:i,y0:e,y1:h}),y=[];for(const t of p)n=a.point_in_ellipse(x,m,this._angle[t],this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new r.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:i,x1:e,y1:h},a){const r=a+1,n=new Array(r);n[a]=(s+e)/2;const _=new Array(r);_[a]=(i+h)/2;const l=this.sw[a]/this.sh[a],d=.8*Math.min(Math.abs(e-s),Math.abs(h-i)),o=new Array(r),x=new Array(r);l>1?(o[a]=d,x[a]=d/l):(o[a]=d*l,x[a]=d),this._render(t,[a],{sx:n,sy:_,sw:o,sh:x,_angle:[0]})}_bounds({x0:t,x1:s,y0:i,y1:e}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:i-this.max_h2,y1:e+this.max_h2}}}i.EllipseOvalView=n,n.__name__="EllipseOvalView";class _ extends h.CenterRotatable{constructor(t){super(t)}}i.EllipseOval=_,_.__name__="EllipseOval"},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(1),h=t(245),r=t(24),_=i.__importStar(t(18));class a extends h.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){return[Math.min(this._left[t],this._right[t]),Math.max(this._left[t],this._right[t]),this._y[t]+.5*this._height[t],this._y[t]-.5*this._height[t]]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this._height,"center"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new r.NumberArray(t),this.sbottom=new r.NumberArray(t);for(let e=0;e<t;e++)this.stop[e]=this.sy[e]-this.sh[e]/2,this.sbottom[e]=this.sy[e]+this.sh[e]/2;this._clamp_viewport()}}s.HBarView=a,a.__name__="HBarView";class o extends h.Box{constructor(t){super(t)}static init_HBar(){this.prototype.default_view=a,this.define({left:[_.XCoordinateSpec,{value:0}],y:[_.YCoordinateSpec,{field:"y"}],height:[_.NumberSpec,{value:1}],right:[_.XCoordinateSpec,{field:"right"}]})}}s.HBar=o,o.__name__="HBar",o.init_HBar()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(28),r=t(94),n=t(100),a=t(88);class h extends r.GlyphView{get_anchor_point(t,e,i){const s=Math.min(this.sleft[e],this.sright[e]),r=Math.max(this.sright[e],this.sleft[e]),n=Math.min(this.stop[e],this.sbottom[e]),a=Math.max(this.sbottom[e],this.stop[e]);switch(t){case"top_left":return{x:s,y:n};case"top_center":return{x:(s+r)/2,y:n};case"top_right":return{x:r,y:n};case"bottom_left":return{x:s,y:a};case"bottom_center":return{x:(s+r)/2,y:a};case"bottom_right":return{x:r,y:a};case"center_left":return{x:s,y:(n+a)/2};case"center":return{x:(s+r)/2,y:(n+a)/2};case"center_right":return{x:r,y:(n+a)/2};default:return null}}_index_data(t){const{min:e,max:i}=Math,{data_size:s}=this;for(let r=0;r<s;r++){const[s,n,a,h]=this._lrtb(r);isNaN(s+n+a+h)||!isFinite(s+n+a+h)?t.add_empty():t.add(e(s,n),e(a,h),i(n,s),i(a,h))}}_render(t,e,{sleft:i,sright:s,stop:r,sbottom:n}){for(const a of e)isNaN(i[a]+r[a]+s[a]+n[a])||(t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()),this.visuals.hatch.doit2(t,a,()=>{t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.stroke()))}_clamp_viewport(){const t=this.renderer.plot_view.frame.bbox.h_range,e=this.renderer.plot_view.frame.bbox.v_range,i=this.stop.length;for(let s=0;s<i;s++)this.stop[s]=Math.max(this.stop[s],e.start),this.sbottom[s]=Math.min(this.sbottom[s],e.end),this.sleft[s]=Math.max(this.sleft[s],t.start),this.sright[s]=Math.min(this.sright[s],t.end)}_hit_rect(t){return this._hit_rect_against_index(t)}_hit_point(t){const{sx:e,sy:i}=t,s=this.renderer.xscale.invert(e),r=this.renderer.yscale.invert(i),n=[…this.index.indices({x0:s,y0:r,x1:s,y1:r})];return new a.Selection({indices:n})}_hit_span(t){const{sx:e,sy:i}=t;let s;if("v"==t.direction){const t=this.renderer.yscale.invert(i),e=this.renderer.plot_view.frame.bbox.h_range,[r,n]=this.renderer.xscale.r_invert(e.start,e.end);s=[…this.index.indices({x0:r,y0:t,x1:n,y1:t})]}else{const t=this.renderer.xscale.invert(e),i=this.renderer.plot_view.frame.bbox.v_range,[r,n]=this.renderer.yscale.r_invert(i.start,i.end);s=[…this.index.indices({x0:t,y0:r,x1:t,y1:n})]}return new a.Selection({indices:s})}draw_legend_for_index(t,e,i){n.generic_area_legend(this.visuals,t,e,i)}}i.BoxView=h,h.__name__="BoxView";class o extends r.Glyph{constructor(t){super(t)}static init_Box(){this.mixins([s.LineVector,s.FillVector,s.HatchVector])}}i.Box=o,o.__name__="Box",o.init_Box()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(94),n=i.__importStar(e(101)),a=i.__importStar(e(18)),o=e(28),c=e(24),_=e(37),h=e(100),l=e(88);class d extends r.GlyphView{scenterxy(e){return[this.sx[e],this.sy[e]]}_set_data(){const e=this._q.length,{orientation:t,size:s,aspect_scale:i}=this.model;this._x=new c.NumberArray(e),this._y=new c.NumberArray(e);const r=Math.sqrt(3);if("pointytop"==t)for(let t=0;t<e;t++)this._x[t]=s*r*(this._q[t]+this._r[t]/2)/i,this._y[t]=3-s/2*this._r[t];else for(let t=0;t<e;t++)this._x[t]=3*s/2*this._q[t],this._y[t]=-s*r*(this._r[t]+this._q[t]/2)*i}_project_data(){_.inplace.project_xy(this._x,this._y)}_index_data(e){let t=this.model.size,s=Math.sqrt(3)*t/2;"flattop"==this.model.orientation?([s,t]=[t,s],t*=this.model.aspect_scale):s/=this.model.aspect_scale;const{data_size:i}=this;for(let r=0;r<i;r++){const i=this._x[r],n=this._y[r];isNaN(i+n)||!isFinite(i+n)?e.add_empty():e.add(i-s,n-t,i+s,n+t)}}map_data(){[this.sx,this.sy]=this.renderer.coordinates.map_to_screen(this._x,this._y),[this.svx,this.svy]=this._get_unscaled_vertices()}_get_unscaled_vertices(){const e=this.model.size,t=this.model.aspect_scale;if("pointytop"==this.model.orientation){const s=this.renderer.yscale,i=this.renderer.xscale,r=Math.abs(s.compute(0)-s.compute(e)),n=Math.sqrt(3)/2*Math.abs(i.compute(0)-i.compute(e))/t,a=r/2;return[[0,-n,-n,0,n,n],[r,a,-a,-r,-a,a]]}{const s=this.renderer.xscale,i=this.renderer.yscale,r=Math.abs(s.compute(0)-s.compute(e)),n=Math.sqrt(3)/2*Math.abs(i.compute(0)-i.compute(e))*t,a=r/2;return[[r,a,-a,-r,-a,a],[0,-n,-n,0,n,n]]}}_render(e,t,{sx:s,sy:i,svx:r,svy:n,_scale:a}){for(const o of t)if(!isNaN(s[o]+i[o]+a[o])){e.translate(s[o],i[o]),e.beginPath();for(let t=0;t<6;t++)e.lineTo(r[t]*a[o],n[t]*a[o]);e.closePath(),e.translate(-s[o],-i[o]),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,o),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,o),e.stroke())}}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),r=this.renderer.yscale.invert(s),a=this.index.indices({x0:i,y0:r,x1:i,y1:r}),o=[];for(const e of a)n.point_in_poly(t-this.sx[e],s-this.sy[e],this.svx,this.svy)&&o.push(e);return new l.Selection({indices:o})}_hit_span(e){const{sx:t,sy:s}=e;let i;if("v"==e.direction){const e=this.renderer.yscale.invert(s),t=this.renderer.plot_view.frame.bbox.h_range,[r,n]=this.renderer.xscale.r_invert(t.start,t.end);i=[…this.index.indices({x0:r,y0:e,x1:n,y1:e})]}else{const e=this.renderer.xscale.invert(t),s=this.renderer.plot_view.frame.bbox.v_range,[r,n]=this.renderer.yscale.r_invert(s.start,s.end);i=[…this.index.indices({x0:e,y0:r,x1:e,y1:n})]}return new l.Selection({indices:i})}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:r}=e,[n,a]=this.renderer.xscale.r_invert(t,s),[o,c]=this.renderer.yscale.r_invert(i,r),_=[…this.index.indices({x0:n,x1:a,y0:o,y1:c})];return new l.Selection({indices:_})}draw_legend_for_index(e,t,s){h.generic_area_legend(this.visuals,e,t,s)}}s.HexTileView=d,d.__name__="HexTileView";class x extends r.Glyph{constructor(e){super(e)}static init_HexTile(){this.prototype.default_view=d,this.mixins([o.LineVector,o.FillVector]),this.define({r:[a.NumberSpec],q:[a.NumberSpec],size:[a.Number,1],aspect_scale:[a.Number,1],scale:[a.NumberSpec,1],orientation:[a.HexTileOrientation,"pointytop"]}),this.override({line_color:null})}}s.HexTile=x,x.__name__="HexTile",x.init_HexTile()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const _=e(1),i=e(248),n=e(141),s=_.__importStar(e(18));class r extends i.ImageBaseView{connect_signals(){super.connect_signals(),this.connect(this.model.color_mapper.change,()=>this._update_image())}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.plot_view.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}a.ImageView=r,r.__name__="ImageView";class o extends i.ImageBase{constructor(e){super(e)}static init_Image(){this.prototype.default_view=r,this.define({color_mapper:[s.Instance,()=>new n.LinearColorMapper({palette:["#000000","#252525","#525252","#737373","#969696","#bdbdbd","#d9d9d9","#f0f0f0","#ffffff"]})]})}}a.Image=o,o.__name__="Image",o.init_Image()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(93),h=e(24),_=i.__importStar(e(18)),n=e(88),r=e(9),d=e(30),l=e(11);class g extends a.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_render(e,t,{image_data:s,sx:i,sy:a,sw:h,sh:_}){const n=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1),e.globalAlpha=this.model.global_alpha;for(const n of t){if(null==s[n]||isNaN(i[n]+a[n]+h[n]+_[n]))continue;const t=a[n];e.translate(0,t),e.scale(1,-1),e.translate(0,-t),e.drawImage(s[n],0|i[n],0|a[n],h[n],_[n]),e.translate(0,t),e.scale(1,-1),e.translate(0,-t)}e.setImageSmoothingEnabled(n)}_set_data(e){this._set_width_heigh_data();for(let t=0,s=this._image.length;t<s;t++){if(null!=e&&e.indexOf(t)<0)continue;const s=this._image[t];let i;d.is_NDArray(s)?(l.assert(2==s.dimension,"expected a 2D array"),i=s,this._height[t]=s.shape[0],this._width[t]=s.shape[1]):(i=r.concat(s),this._height[t]=s.length,this._width[t]=s[0].length);const a=this._flat_img_to_buf8(i);this._set_image_data_from_buffer(t,a)}}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++){const[t,i,a,h]=this._lrtb(s);isNaN(t+i+a+h)||!isFinite(t+i+a+h)?e.add_empty():e.add(t,h,i,a)}}_lrtb(e){const t=this.renderer.xscale.source_range,s=this._x[e],i=t.is_reversed?s-this._dw[e]:s+this._dw[e],a=this.renderer.yscale.source_range,h=this._y[e],_=a.is_reversed?h-this._dh[e]:h+this._dh[e],[n,r]=s<i?[s,i]:[i,s],[d,l]=h<_?[h,_]:[_,h];return[n,r,l,d]}_set_width_heigh_data(){null!=this.image_data&&this.image_data.length==this._image.length||(this.image_data=new Array(this._image.length)),null!=this._width&&this._width.length==this._image.length||(this._width=new h.NumberArray(this._image.length)),null!=this._height&&this._height.length==this._image.length||(this._height=new h.NumberArray(this._image.length))}_get_or_create_canvas(e){const t=this.image_data[e];if(null!=t&&t.width==this._width[e]&&t.height==this._height[e])return t;{const t=document.createElement("canvas");return t.width=this._width[e],t.height=this._height[e],t}}_set_image_data_from_buffer(e,t){const s=this._get_or_create_canvas(e),i=s.getContext("2d"),a=i.getImageData(0,0,this._width[e],this._height[e]);a.data.set(t),i.putImageData(a,0,0),this.image_data[e]=s}_map_data(){switch(this.model.properties.dw.units){case"data":this.sw=this.sdist(this.renderer.xscale,this._x,this._dw,"edge",this.model.dilate);break;case"screen":this.sw=this._dw}switch(this.model.properties.dh.units){case"data":this.sh=this.sdist(this.renderer.yscale,this._y,this._dh,"edge",this.model.dilate);break;case"screen":this.sh=this._dh}}_image_index(e,t,s){const[i,a,h,_]=this._lrtb(e),n=this._width[e],r=this._height[e],d=(a-i)/n,l=(h-_)/r;let g=Math.floor((t-i)/d),o=Math.floor((s-_)/l);return this.renderer.xscale.source_range.is_reversed&&(g=n-g-1),this.renderer.yscale.source_range.is_reversed&&(o=r-o-1),{index:e,dim1:g,dim2:o,flat_index:o*n+g}}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),a=this.renderer.yscale.invert(s),h=this.index.indices({x0:i,x1:i,y0:a,y1:a}),_=new n.Selection;for(const e of h)t!=1/0&&s!=1/0&&_.image_indices.push(this._image_index(e,i,a));return _}}s.ImageBaseView=g,g.__name__="ImageBaseView";class o extends a.XYGlyph{constructor(e){super(e)}static init_ImageBase(){this.define({image:[_.NDArraySpec],dw:[_.DistanceSpec],dh:[_.DistanceSpec],dilate:[_.Boolean,!1],global_alpha:[_.Number,1]})}}s.ImageBase=o,o.__name__="ImageBase",o.init_ImageBase()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const _=e(248),i=e(8);class n extends _.ImageBaseView{_flat_img_to_buf8(e){let t;return t=i.isArray(e)?new Uint32Array(e):e,new Uint8Array(t.buffer)}}a.ImageRGBAView=n,n.__name__="ImageRGBAView";class r extends _.ImageBase{constructor(e){super(e)}static init_ImageRGBA(){this.prototype.default_view=n}}a.ImageRGBA=r,r.__name__="ImageRGBA",r.init_ImageRGBA()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(1),i=e(93),a=e(24),n=r.__importStar(e(18)),h=e(12),o=e(251);class _ extends i.XYGlyphView{constructor(){super(…arguments),this._images_rendered=!1}initialize(){super.initialize(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++)e.add_empty()}_set_data(){null!=this.image&&this.image.length==this._url.length||(this.image=h.map(this._url,()=>null));const{retry_attempts:e,retry_timeout:t}=this.model;for(let s=0,r=this._url.length;s<r;s++){const r=this._url[s];null!=r&&""!=r&&new o.ImageLoader(r,{loaded:e=>{this.image[s]=e,this.renderer.request_render()},attempts:e+1,timeout:t})}const s="data"==this.model.properties.w.units,r="data"==this.model.properties.h.units,i=this._x.length,n=new a.NumberArray(s?2*i:i),_=new a.NumberArray(r?2*i:i),{anchor:c}=this.model;function l(e,t){switch(c){case"top_left":case"bottom_left":case"center_left":return[e,e+t];case"top_center":case"bottom_center":case"center":return[e-t/2,e+t/2];case"top_right":case"bottom_right":case"center_right":return[e-t,e]}}function d(e,t){switch(c){case"top_left":case"top_center":case"top_right":return[e,e-t];case"bottom_left":case"bottom_center":case"bottom_right":return[e+t,e];case"center_left":case"center":case"center_right":return[e+t/2,e-t/2]}}if(s)for(let e=0;e<i;e++)[n[e],n[i+e]]=l(this._x[e],this._w[e]);else n.set(this._x,0);if(r)for(let e=0;e<i;e++)[_[e],_[i+e]]=d(this._y[e],this._h[e]);else _.set(this._y,0);const[m,u]=h.minmax(n),[p,g]=h.minmax(_);this._bounds_rect={x0:m,x1:u,y0:p,y1:g}}has_finished(){return super.has_finished()&&1==this._images_rendered}_map_data(){const e=null!=this.model.w?this._w:h.map(this._x,()=>NaN),t=null!=this.model.h?this._h:h.map(this._x,()=>NaN);switch(this.model.properties.w.units){case"data":this.sw=this.sdist(this.renderer.xscale,this._x,e,"edge",this.model.dilate);break;case"screen":this.sw=e}switch(this.model.properties.h.units){case"data":this.sh=this.sdist(this.renderer.yscale,this._y,t,"edge",this.model.dilate);break;case"screen":this.sh=t}}_render(e,t,{image:s,sx:r,sy:i,sw:a,sh:n,_angle:h}){const{frame:o}=this.renderer.plot_view;e.rect(o.bbox.left+1,o.bbox.top+1,o.bbox.width-2,o.bbox.height-2),e.clip();let _=!0;for(const o of t){if(isNaN(r[o]+i[o]+h[o]))continue;const t=s[o];null!=t?this._render_image(e,o,t,r,i,a,n,h):_=!1}_&&!this._images_rendered&&(this._images_rendered=!0,this.notify_finished())}_final_sx_sy(e,t,s,r,i){switch(e){case"top_left":return[t,s];case"top_center":return[t-r/2,s];case"top_right":return[t-r,s];case"center_right":return[t-r,s-i/2];case"bottom_right":return[t-r,s-i];case"bottom_center":return[t-r/2,s-i];case"bottom_left":return[t,s-i];case"center_left":return[t,s-i/2];case"center":return[t-r/2,s-i/2]}}_render_image(e,t,s,r,i,a,n,h){isNaN(a[t])&&(a[t]=s.width),isNaN(n[t])&&(n[t]=s.height);const{anchor:o}=this.model,[_,c]=this._final_sx_sy(o,r[t],i[t],a[t],n[t]);e.save(),e.globalAlpha=this.model.global_alpha;const l=a[t]/2,d=n[t]/2;h[t]?(e.translate(_,c),e.translate(l,d),e.rotate(h[t]),e.translate(-l,-d),e.drawImage(s,0,0,a[t],n[t]),e.translate(l,d),e.rotate(-h[t]),e.translate(-l,-d),e.translate(-_,-c)):e.drawImage(s,_,c,a[t],n[t]),e.restore()}bounds(){return this._bounds_rect}}s.ImageURLView=_,_.__name__="ImageURLView";class c extends i.XYGlyph{constructor(e){super(e)}static init_ImageURL(){this.prototype.default_view=_,this.define({url:[n.StringSpec],anchor:[n.Anchor,"top_left"],global_alpha:[n.Number,1],angle:[n.AngleSpec,0],w:[n.DistanceSpec],h:[n.DistanceSpec],dilate:[n.Boolean,!1],retry_attempts:[n.Number,0],retry_timeout:[n.Number,0]})}}s.ImageURL=c,c.__name__="ImageURL",c.init_ImageURL()},n function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(19);class a{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:a=1}=e;this.promise=new Promise((o,n)=>{this._image.crossOrigin="anonymous";let r=0;this._image.onerror=()=>{if(++r==t){const a=`unable to load ${i} image after ${t} attempts`;if(s.logger.warn(a),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());s.logger.warn(attempting to load ${i} without a cross origin policy),this._image.crossOrigin=null,r=0}setTimeout(()=>this._image.src=i,a)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i})}get finished(){return this._finished}get image(){return this._image}}t.ImageLoader=a,a.__name__="ImageLoader"},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(37),o=e(28),l=s.__importStar(e(101)),r=s.__importStar(e(18)),_=e(12),c=e(13),a=e(94),h=e(100),d=e(88);class y extends a.GlyphView{_project_data(){n.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let i=0;i<t;i++){const t=this._xs.get(i);if(0==t.length){e.add_empty();continue}const s=this._ys.get(i);if(0==s.length){e.add_empty();continue}const[n,o]=_.minmax(t),[l,r]=_.minmax(s);e.add(n,l,o,r)}}_render(e,t,{sxs:i,sys:s}){for(const n of t){const t=i.get(n),o=s.get(n);this.visuals.line.set_vectorize(e,n);for(let i=0,s=t.length;i<s;i++)0!=i?isNaN(t[i])||isNaN(o[i])?(e.stroke(),e.beginPath()):e.lineTo(t[i],o[i]):(e.beginPath(),e.moveTo(t[i],o[i]));e.stroke()}}_hit_point(e){const t={x:e.sx,y:e.sy};let i=9999;const s=new Map;for(let e=0,n=this.sxs.length;e<n;e++){const n=Math.max(2,this.visuals.line.cache_select("line_width",e)/2),o=this.sxs.get(e),r=this.sys.get(e);let _=null;for(let e=0,s=o.length-1;e<s;e++){const s={x:o[e],y:r[e]},c={x:o[e+1],y:r[e+1]},a=l.dist_to_segment(t,s,c);a<n&&a<i&&(i=a,_=[e])}null!=_&&s.set(e,_)}return new d.Selection({indices:[…s.keys()],multiline_indices:c.to_object(s)})}_hit_span(e){const{sx:t,sy:i}=e;let s,n;"v"==e.direction?(s=this.renderer.yscale.invert(i),n=this._ys):(s=this.renderer.xscale.invert(t),n=this._xs);const o=new Map;for(let e=0,t=n.length;e<t;e++){const t=n.get(e),i=[];for(let e=0,n=t.length-1;e<n;e++)t[e]<=s&&s<=t[e+1]&&i.push(e);i.length>0&&o.set(e,i)}return new d.Selection({indices:[…o.keys()],multiline_indices:c.to_object(o)})}get_interpolation_hit(e,t,i){const s=this._xs.get(e),n=this._ys.get(e),o=s[t],l=n[t],r=s[t+1],_=n[t+1];return h.line_interpolation(this.renderer,i,o,l,r,_)}draw_legend_for_index(e,t,i){h.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}i.MultiLineView=y,y.__name__="MultiLineView";class x extends a.Glyph{constructor(e){super(e)}static init_MultiLine(){this.prototype.default_view=y,this.define({xs:[r.XCoordinateSeqSpec,{field:"xs"}],ys:[r.YCoordinateSeqSpec,{field:"ys"}]}),this.mixins(o.LineVector)}}i.MultiLine=x,x.__name__="MultiLine",x.init_MultiLine()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(95),o=e(94),r=e(100),l=e(12),h=e(12),_=e(28),a=i.__importStar(e(101)),d=i.__importStar(e(18)),c=e(88),x=e(11);class y extends o.GlyphView{_project_data(){}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n<i;n++){const i=this._xs[n],o=this._ys[n];if(0==i.length||0==o.length){e.add_empty();continue}let r=1/0,h=-1/0,_=1/0,a=-1/0;for(let e=0,n=i.length;e<n;e++){const n=i[e][0],d=o[e][0];if(0!=n.length&&0!=d.length){const[e,i]=l.minmax(n),[o,c]=l.minmax(d);r=t(r,e),h=s(h,i),_=t(_,o),a=s(a,c)}}isFinite(r+h+_+a)?e.add(r,_,h,a):e.add_empty()}this._hole_index=this._index_hole_data()}_index_hole_data(){const{min:e,max:t}=Math,{data_size:s}=this,i=new n.SpatialIndex(s);for(let n=0;n<s;n++){const s=this._xs[n],o=this._ys[n];if(0==s.length||0==o.length){i.add_empty();continue}let r=1/0,h=-1/0,_=1/0,a=-1/0;for(let i=0,n=s.length;i<n;i++){const n=s[i],d=o[i];if(n.length>1&&d.length>1)for(let s=1,i=n.length;s<i;s++){const[i,o]=l.minmax(n[s]),[c,x]=l.minmax(d[s]);r=e(r,i),h=t(h,o),_=e(_,c),a=t(a,x)}}isFinite(r+h+_+a)?i.add(r,_,h,a):i.add_empty()}return i.finish(),i}_mask_data(){const e=this.renderer.plot_view.frame.x_range,[t,s]=[e.min,e.max],i=this.renderer.plot_view.frame.y_range,[n,o]=[i.min,i.max];return this.index.indices({x0:t,x1:s,y0:n,y1:o})}_inner_loop(e,t,s){e.beginPath();for(let i=0,n=t.length;i<n;i++)for(let n=0,o=t[i].length;n<o;n++){const o=t[i][n],r=s[i][n];for(let t=0,s=o.length;t<s;t++)0!=t?e.lineTo(o[t],r[t]):e.moveTo(o[t],r[t]);e.closePath()}}_render(e,t,{sxs:s,sys:i}){if(this.visuals.fill.doit||this.visuals.line.doit)for(const n of t){const[t,o]=[s[n],i[n]];this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,n),this._inner_loop(e,t,o),e.fill("evenodd")),this.visuals.hatch.doit2(e,n,()=>{this._inner_loop(e,t,o),e.fill("evenodd")},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,o),e.stroke())}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,o=[t,s,s,t],r=[i,i,n,n],[l,h]=this.renderer.xscale.r_invert(t,s),[_,d]=this.renderer.yscale.r_invert(i,n),x=this.index.indices({x0:l,x1:h,y0:_,y1:d}),y=[];for(const e of x){const t=this.sxs[e],s=this.sys[e];let i=!0;for(let e=0,n=t.length;e<n;e++){for(let n=0,l=t[e][0].length;n<l;n++){const l=t[e][0][n],h=s[e][0][n];if(!a.point_in_poly(l,h,o,r)){i=!1;break}}if(!i)break}i&&y.push(e)}return new c.Selection({indices:y})}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),n=this.renderer.yscale.invert(s),o=this.index.indices({x0:i,y0:n,x1:i,y1:n}),r=this._hole_index.indices({x0:i,y0:n,x1:i,y1:n}),l=[];for(const e of o){const i=this.sxs[e],n=this.sys[e];for(let o=0,h=i.length;o<h;o++){const h=i[o].length;if(a.point_in_poly(t,s,i[o][0],n[o][0]))if(1==h)l.push(e);else if(r.get(e)){if(h>1){let r=!1;for(let e=1;e<h;e++){const l=i[o][e],h=n[o][e];if(a.point_in_poly(t,s,l,h)){r=!0;break}}r||l.push(e)}}else l.push(e)}}return new c.Selection({indices:l})}_get_snap_coord(e){return h.sum(e)/e.length}scenterxy(e,t,s){if(1==this.sxs[e].length){return[this._get_snap_coord(this.sxs[e][0][0]),this._get_snap_coord(this.sys[e][0][0])]}{const i=this.sxs[e],n=this.sys[e];for(let e=0,o=i.length;e<o;e++)if(a.point_in_poly(t,s,i[e][0],n[e][0])){return[this._get_snap_coord(i[e][0]),this._get_snap_coord(n[e][0])]}}x.unreachable()}map_data(){const e=this._xs.length;this.sxs=new Array(e),this.sys=new Array(e);for(let t=0;t<e;t++){const e=this._xs[t].length;this.sxs[t]=new Array(e),this.sys[t]=new Array(e);for(let s=0;s<e;s++){const e=this._xs[t][s].length;this.sxs[t][s]=new Array(e),this.sys[t][s]=new Array(e);for(let i=0;i<e;i++){const[e,n]=this.renderer.coordinates.map_to_screen(this._xs[t][s][i],this._ys[t][s][i]);this.sxs[t][s][i]=e,this.sys[t][s][i]=n}}}}draw_legend_for_index(e,t,s){r.generic_area_legend(this.visuals,e,t,s)}}s.MultiPolygonsView=y,y.__name__="MultiPolygonsView";class f extends o.Glyph{constructor(e){super(e)}static init_MultiPolygons(){this.prototype.default_view=y,this.define({xs:[d.XCoordinateSeqSeqSeqSpec,{field:"xs"}],ys:[d.YCoordinateSeqSeqSeqSpec,{field:"ys"}]}),this.mixins([_.LineVector,_.FillVector,_.HatchVector])}}s.MultiPolygons=f,f.__name__="MultiPolygons",f.init_MultiPolygons()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const l=e(243);class s extends l.EllipseOvalView{_map_data(){super._map_data();const{sw:e}=this,t=e.length;for(let a=0;a<t;a++)e[a]*=.75}}a.OvalView=s,s.__name__="OvalView";class _ extends l.EllipseOval{constructor(e){super(e)}static init_Oval(){this.prototype.default_view=s}}a.Oval=_,_.__name__="Oval",_.init_Oval()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(94),r=e(100),o=e(12),a=e(28),_=i.__importStar(e(101)),c=i.__importStar(e(18)),l=e(88),h=e(11),d=e(37);class y extends n.GlyphView{_project_data(){d.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s<t;s++){const t=this._xs.get(s),i=this._ys.get(s);if(0==t.length)e.add_empty();else{const[s,n]=o.minmax(t),[r,a]=o.minmax(i);e.add(s,r,n,a)}}}_mask_data(){const e=this.renderer.plot_view.frame.x_range,[t,s]=[e.min,e.max],i=this.renderer.plot_view.frame.y_range,[n,r]=[i.min,i.max];return this.index.indices({x0:t,x1:s,y0:n,y1:r})}_inner_loop(e,t,s,i){for(let n=0,r=t.length;n<r;n++)0!=n?isNaN(t[n]+s[n])?(e.closePath(),i.apply(e),e.beginPath()):e.lineTo(t[n],s[n]):(e.beginPath(),e.moveTo(t[n],s[n]));e.closePath(),i.call(e)}_render(e,t,{sxs:s,sys:i}){for(const n of t){const t=s.get(n),r=i.get(n);this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,n),this._inner_loop(e,t,r,e.fill)),this.visuals.hatch.doit2(e,n,()=>this._inner_loop(e,t,r,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,r,e.stroke))}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,r=[t,s,s,t],o=[i,i,n,n],[a,c]=this.renderer.xscale.r_invert(t,s),[h,d]=this.renderer.yscale.r_invert(i,n),y=this.index.indices({x0:a,x1:c,y0:h,y1:d}),p=[];for(const e of y){const t=this.sxs.get(e),s=this.sys.get(e);let i=!0;for(let e=0,n=t.length;e<n;e++){const n=t[e],a=s[e];if(!_.point_in_poly(n,a,r,o)){i=!1;break}}i&&p.push(e)}return new l.Selection({indices:p})}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),n=this.renderer.yscale.invert(s),r=this.index.indices({x0:i,y0:n,x1:i,y1:n}),o=[];for(const e of r){const i=this.sxs.get(e),n=this.sys.get(e),r=i.length;for(let a=0,c=0;;c++){if(isNaN(i[c])||c==r){const r=i.subarray(a,c),l=n.subarray(a,c);if(_.point_in_poly(t,s,r,l)){o.push(e);break}a=c+1}if(c==r)break}}return new l.Selection({indices:o})}_get_snap_coord(e){return o.sum(e)/e.length}scenterxy(e,t,s){const i=this.sxs.get(e),n=this.sys.get(e),r=i.length;let o=!1;for(let e=0,a=0;;a++){const c=isNaN(i[a]);if(o=o||c,a==r&&!o){return[this._get_snap_coord(i),this._get_snap_coord(n)]}if(c||a==r){const r=i.subarray(e,a),o=n.subarray(e,a);if(_.point_in_poly(t,s,r,o)){return[this._get_snap_coord(r),this._get_snap_coord(o)]}e=a+1}if(a==r)break}h.unreachable()}draw_legend_for_index(e,t,s){r.generic_area_legend(this.visuals,e,t,s)}}s.PatchesView=y,y.__name__="PatchesView";class p extends n.Glyph{constructor(e){super(e)}static init_Patches(){this.prototype.default_view=y,this.define({xs:[c.XCoordinateSeqSpec,{field:"xs"}],ys:[c.YCoordinateSeqSpec,{field:"ys"}]}),this.mixins([a.LineVector,a.FillVector,a.HatchVector])}}s.Patches=p,p.__name__="Patches",p.init_Patches()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),s=t(245),r=o.__importStar(t(18));class _ extends s.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){return[this._left[t],this._right[t],this._top[t],this._bottom[t]]}}i.QuadView=_,_.__name__="QuadView";class d extends s.Box{constructor(t){super(t)}static init_Quad(){this.prototype.default_view=_,this.define({right:[r.XCoordinateSpec,{field:"right"}],bottom:[r.YCoordinateSpec,{field:"bottom"}],left:[r.XCoordinateSpec,{field:"left"}],top:[r.YCoordinateSpec,{field:"top"}]})}}i.Quad=d,d.__name__="Quad",d.init_Quad()},n function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(1),a=i(28),_=i(37),c=i(94),n=i(100),r=s.__importStar(i(18));function o(i,e,t){if(e==(i+t)/2)return[i,t];{const s=(i-e)/(i-2*e+t),a=i*(1-s)**2+2*e*(1-s)*s+t*s**2;return[Math.min(i,t,a),Math.max(i,t,a)]}}class d extends c.GlyphView{_project_data(){_.inplace.project_xy(this._x0,this._y0),_.inplace.project_xy(this._x1,this._y1)}_index_data(i){const{data_size:e}=this;for(let t=0;t<e;t++)if(isNaN(this._x0[t]+this._x1[t]+this._y0[t]+this._y1[t]+this._cx[t]+this._cy[t]))i.add_empty();else{const[e,s]=o(this._x0[t],this._cx[t],this._x1[t]),[a,_]=o(this._y0[t],this._cy[t],this._y1[t]);i.add(e,a,s,_)}}_render(i,e,{sx0:t,sy0:s,sx1:a,sy1:_,scx:c,scy:n}){if(this.visuals.line.doit)for(const r of e)isNaN(t[r]+s[r]+a[r]+_[r]+c[r]+n[r])||(i.beginPath(),i.moveTo(t[r],s[r]),i.quadraticCurveTo(c[r],n[r],a[r],_[r]),this.visuals.line.set_vectorize(i,r),i.stroke())}draw_legend_for_index(i,e,t){n.generic_line_legend(this.visuals,i,e,t)}scenterxy(){throw new Error(this+".scenterxy() is not implemented")}}t.QuadraticView=d,d.__name__="QuadraticView";class h extends c.Glyph{constructor(i){super(i)}static init_Quadratic(){this.prototype.default_view=d,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}],cx:[r.XCoordinateSpec,{field:"cx"}],cy:[r.YCoordinateSpec,{field:"cy"}]}),this.mixins(a.LineVector)}}t.Quadratic=h,h.__name__="Quadratic",h.init_Quadratic()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(93),a=e(100),r=e(28),l=s.__importStar(e(18));class _ extends n.XYGlyphView{_map_data(){"data"==this.model.properties.length.units?this.slength=this.sdist(this.renderer.xscale,this._x,this._length):this.slength=this._length}_render(e,t,{sx:i,sy:s,slength:n,_angle:a}){if(this.visuals.line.doit){const r=2*(this.renderer.plot_view.frame.bbox.width+this.renderer.plot_view.frame.bbox.height);for(let e=0,t=n.length;e<t;e++)0==n[e]&&(n[e]=r);for(const r of t)isNaN(i[r]+s[r]+a[r]+n[r])||(e.translate(i[r],s[r]),e.rotate(a[r]),e.beginPath(),e.moveTo(0,0),e.lineTo(n[r],0),this.visuals.line.set_vectorize(e,r),e.stroke(),e.rotate(-a[r]),e.translate(-i[r],-s[r]))}}draw_legend_for_index(e,t,i){a.generic_line_legend(this.visuals,e,t,i)}}i.RayView=_,_.__name__="RayView";class h extends n.XYGlyph{constructor(e){super(e)}static init_Ray(){this.prototype.default_view=_,this.mixins(r.LineVector),this.define({length:[l.DistanceSpec],angle:[l.AngleSpec]})}}i.Ray=h,h.__name__="Ray",h.init_Ray()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),h=t(241),r=t(100),a=t(24),n=i.__importStar(t(18)),_=t(12),o=t(88);class l extends h.CenterRotatableView{_set_data(){this.max_w2=0,"data"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,"data"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){if("data"==this.model.properties.width.units)[this.sw,this.sx0]=this._map_dist_corner_for_data_side_length(this._x,this._width,this.renderer.xscale);else{this.sw=this._width;const t=this.sx.length;this.sx0=new a.NumberArray(t);for(let s=0;s<t;s++)this.sx0[s]=this.sx[s]-this.sw[s]/2}if("data"==this.model.properties.height.units)[this.sh,this.sy1]=this._map_dist_corner_for_data_side_length(this._y,this._height,this.renderer.yscale);else{this.sh=this._height;const t=this.sy.length;this.sy1=new a.NumberArray(t);for(let s=0;s<t;s++)this.sy1[s]=this.sy[s]-this.sh[s]/2}const t=this.sw.length;this.ssemi_diag=new a.NumberArray(t);for(let s=0;s<t;s++)this.ssemi_diag[s]=Math.sqrt(this.sw[s]/2*this.sw[s]/2+this.sh[s]/2*this.sh[s]/2)}_render(t,s,{sx:e,sy:i,sx0:h,sy1:r,sw:a,sh:n,_angle:_}){if(this.visuals.fill.doit)for(const o of s)isNaN(e[o]+i[o]+h[o]+r[o]+a[o]+n[o]+_[o])||(this.visuals.fill.set_vectorize(t,o),_[o]?(t.translate(e[o],i[o]),t.rotate(_[o]),t.fillRect(-a[o]/2,-n[o]/2,a[o],n[o]),t.rotate(-_[o]),t.translate(-e[o],-i[o])):t.fillRect(h[o],r[o],a[o],n[o]));if(this.visuals.line.doit){t.beginPath();for(const o of s)isNaN(e[o]+i[o]+h[o]+r[o]+a[o]+n[o]+_[o])||0!=a[o]&&0!=n[o]&&(_[o]?(t.translate(e[o],i[o]),t.rotate(_[o]),t.rect(-a[o]/2,-n[o]/2,a[o],n[o]),t.rotate(-_[o]),t.translate(-e[o],-i[o])):t.rect(h[o],r[o],a[o],n[o]),this.visuals.line.set_vectorize(t,o),t.stroke(),t.beginPath());t.stroke()}}_hit_rect(t){return this._hit_rect_against_index(t)}_hit_point(t){let{sx:s,sy:e}=t;const i=this.renderer.xscale.invert(s),h=this.renderer.yscale.invert(e),r=this.sx0.length,n=new a.NumberArray(r);for(let t=0;t<r;t++)n[t]=this.sx0[t]+this.sw[t]/2;const l=new a.NumberArray(r);for(let t=0;t<r;t++)l[t]=this.sy1[t]+this.sh[t]/2;const d=_.max(this._ddist(0,n,this.ssemi_diag)),c=_.max(this._ddist(1,l,this.ssemi_diag)),x=i-d,m=i+d,y=h-c,w=h+c;let f,u;const g=[];for(const t of this.index.indices({x0:x,x1:m,y0:y,y1:w})){if(this._angle[t]){const i=Math.sin(-this._angle[t]),h=Math.cos(-this._angle[t]),r=h*(s-this.sx[t])-i*(e-this.sy[t])+this.sx[t],a=i*(s-this.sx[t])+h*(e-this.sy[t])+this.sy[t];s=r,e=a,f=Math.abs(this.sx[t]-s)<=this.sw[t]/2,u=Math.abs(this.sy[t]-e)<=this.sh[t]/2}else{const i=s-this.sx0[t],h=e-this.sy1[t];f=0<=i&&i<=this.sw[t],u=0<=h&&h<=this.sh[t]}f&&u&&g.push(t)}return new o.Selection({indices:g})}_map_dist_corner_for_data_side_length(t,s,e){const i=t.length,h=new Float64Array(i),r=new Float64Array(i);for(let e=0;e<i;e++)h[e]=t[e]-s[e]/2,r[e]=t[e]+s[e]/2;const a=e.v_compute(h),n=e.v_compute(r),_=this.sdist(e,h,s,"edge",this.model.dilate);let o=a;for(let t=0;t<i;t++){const s=a[t],e=n[t];if(!isNaN(s+e)&&s!=e){o=s<e?a:n;break}}return[_,o]}_ddist(t,s,e){const i=0==t?this.renderer.xscale:this.renderer.yscale,h=s,r=h.length,n=new a.NumberArray(r);for(let t=0;t<r;t++)n[t]=h[t]+e[t];const _=i.v_invert(h),o=i.v_invert(n),l=_.length,d=new a.NumberArray(l);for(let t=0;t<l;t++)d[t]=Math.abs(o[t]-_[t]);return d}draw_legend_for_index(t,s,e){r.generic_area_legend(this.visuals,t,s,e)}_bounds({x0:t,x1:s,y0:e,y1:i}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:e-this.max_h2,y1:i+this.max_h2}}}e.RectView=l,l.__name__="RectView";class d extends h.CenterRotatable{constructor(t){super(t)}static init_Rect(){this.prototype.default_view=l,this.define({dilate:[n.Boolean,!1]})}}e.Rect=d,d.__name__="Rect",d.init_Rect()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=i.__importStar(e(101)),r=i.__importStar(e(18)),_=e(28),h=e(37),a=e(94),o=e(100),c=e(88);class d extends a.GlyphView{_project_data(){h.inplace.project_xy(this._x0,this._y0),h.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n<i;n++){const i=this._x0[n],r=this._x1[n],_=this._y0[n],h=this._y1[n];isNaN(i+r+_+h)?e.add_empty():e.add(t(i,r),t(_,h),s(i,r),s(_,h))}}_render(e,t,{sx0:s,sy0:i,sx1:n,sy1:r}){if(this.visuals.line.doit)for(const _ of t)isNaN(s[_]+i[_]+n[_]+r[_])||(e.beginPath(),e.moveTo(s[_],i[_]),e.lineTo(n[_],r[_]),this.visuals.line.set_vectorize(e,_),e.stroke())}_hit_point(e){const{sx:t,sy:s}=e,i={x:t,y:s},[r,_]=this.renderer.xscale.r_invert(t-2,t+2),[h,a]=this.renderer.yscale.r_invert(s-2,s+2),o=this.index.indices({x0:r,y0:h,x1:_,y1:a}),d=[];for(const e of o){const t=Math.max(2,this.visuals.line.cache_select("line_width",e)/2)**2,s={x:this.sx0[e],y:this.sy0[e]},r={x:this.sx1[e],y:this.sy1[e]};n.dist_to_segment_squared(i,s,r)<t&&d.push(e)}return new c.Selection({indices:d})}_hit_span(e){const[t,s]=this.renderer.plot_view.frame.bbox.ranges,{sx:i,sy:n}=e;let r,_,h;"v"==e.direction?(h=this.renderer.yscale.invert(n),[r,_]=[this._y0,this._y1]):(h=this.renderer.xscale.invert(i),[r,_]=[this._x0,this._x1]);const a=[],[o,d]=this.renderer.xscale.r_invert(t.start,t.end),[x,l]=this.renderer.yscale.r_invert(s.start,s.end),y=this.index.indices({x0:o,y0:x,x1:d,y1:l});for(const t of y){(r[t]<=h&&h<=_[t]||_[t]<=h&&h<=r[t])&&a.push(t);const s=1.5+this.visuals.line.cache_select("line_width",t)/2;r[t]==_[t]&&("h"==e.direction?Math.abs(this.sx0[t]-i)<=s&&a.push(t):Math.abs(this.sy0[t]-n)<=s&&a.push(t))}return new c.Selection({indices:a})}scenterxy(e){return[(this.sx0[e]+this.sx1[e])/2,(this.sy0[e]+this.sy1[e])/2]}draw_legend_for_index(e,t,s){o.generic_line_legend(this.visuals,e,t,s)}}s.SegmentView=d,d.__name__="SegmentView";class x extends a.Glyph{constructor(e){super(e)}static init_Segment(){this.prototype.default_view=d,this.define({x0:[r.XCoordinateSpec,{field:"x0"}],y0:[r.YCoordinateSpec,{field:"y0"}],x1:[r.XCoordinateSpec,{field:"x1"}],y1:[r.YCoordinateSpec,{field:"y1"}]}),this.mixins(_.LineVector)}}s.Segment=x,x.__name__="Segment",x.init_Segment()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(93),o=e(100),r=e(28),l=n.__importStar(e(18));class a extends s.XYGlyphView{_render(e,t,{sx:i,sy:n}){let s=!1,o=null;this.visuals.line.set_value(e);const r=t.length;if(!(r<2)){e.beginPath(),e.moveTo(i[0],n[0]);for(const r of t){let t,l,a,_;switch(this.model.mode){case"before":[t,a]=[i[r-1],n[r]],[l,_]=[i[r],n[r]];break;case"after":[t,a]=[i[r],n[r-1]],[l,_]=[i[r],n[r]];break;case"center":{const e=(i[r-1]+i[r])/2;[t,a]=[e,n[r-1]],[l,_]=[e,n[r]];break}default:throw new Error("unexpected")}if(s){if(!isFinite(i[r]+n[r])){e.stroke(),e.beginPath(),s=!1,o=r;continue}null!=o&&r-o>1&&(e.stroke(),s=!1)}s?(e.lineTo(t,a),e.lineTo(l,_)):(e.beginPath(),e.moveTo(i[r],n[r]),s=!0),o=r}e.lineTo(i[r-1],n[r-1]),e.stroke()}}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}}i.StepView=a,a.__name__="StepView";class _ extends s.XYGlyph{constructor(e){super(e)}static init_Step(){this.prototype.default_view=a,this.mixins(r.LineVector),this.define({mode:[l.StepMode,"before"]})}}i.Step=_,_.__name__="Step",_.init_Step()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),n=t(93),_=t(28),o=i.__importStar(t(101)),h=i.__importStar(t(18)),l=t(159),a=t(11),r=t(88);class c extends n.XYGlyphView{_rotate_point(t,s,e,i,n){return[(t-e)*Math.cos(n)-(s-i)*Math.sin(n)+e,(t-e)*Math.sin(n)+(s-i)*Math.cos(n)+i]}_text_bounds(t,s,e,i){return[[t,t+e,t+e,t,t],[s,s,s-i,s-i,s]]}_render(t,s,{sx:e,sy:i,_x_offset:n,_y_offset:_,_angle:o,_text:h}){this._sys=[],this._sxs=[];for(const a of s)if(this._sxs[a]=[],this._sys[a]=[],!isNaN(e[a]+i[a]+n[a]+_[a]+o[a])&&null!=h[a]&&this.visuals.text.doit){const s=""+h[a];t.save(),t.translate(e[a]+n[a],i[a]+_[a]),t.rotate(o[a]),this.visuals.text.set_vectorize(t,a);const r=this.visuals.text.cache_select("font",a),{height:c}=l.measure_font(r),x=this.visuals.text.text_line_height.value()*c;if(-1==s.indexOf("\n")){t.fillText(s,0,0);const o=e[a]+n[a],h=i[a]+_[a],l=t.measureText(s).width,[r,c]=this._text_bounds(o,h,l,x);this._sxs[a].push(r),this._sys[a].push(c)}else{const o=s.split("\n"),h=x*o.length,l=this.visuals.text.cache_select("text_baseline",a);let r;switch(l){case"top":r=0;break;case"middle":r=-h/2+x/2;break;case"bottom":r=-h+x;break;default:r=0,console.warn(‘${l}’ baseline not supported with multi line text)}for(const s of o){t.fillText(s,0,r);const o=e[a]+n[a],h=r+i[a]+_[a],l=t.measureText(s).width,[c,u]=this._text_bounds(o,h,l,x);this._sxs[a].push(c),this._sys[a].push(u),r+=x}}t.restore()}}_hit_point(t){const{sx:s,sy:e}=t,i=[];for(let t=0;t<this._sxs.length;t++){const n=this._sxs[t],_=this._sys[t],h=n.length;for(let l=0,a=h;l<a;l++){const[a,r]=this._rotate_point(s,e,n[h-1][0],_[h-1][0],-this._angle[t]);o.point_in_poly(a,r,n[l],_[l])&&i.push(t)}}return new r.Selection({indices:i})}scenterxy(t){const s=this._sxs[t],e=this._sys[t];a.assert(0!=s.length&&0!=e.length);const i=s[0][0],n=e[0][0],_=(s[0][2]+i)/2,o=(e[0][2]+n)/2,[h,l]=this._rotate_point(_,o,i,n,this._angle[t]);return[h,l]}}e.TextView=c,c.__name__="TextView";class x extends n.XYGlyph{constructor(t){super(t)}static init_Text(){this.prototype.default_view=c,this.mixins(_.TextVector),this.define({text:[h.NullStringSpec,{field:"text"}],angle:[h.AngleSpec,0],x_offset:[h.NumberSpec,0],y_offset:[h.NumberSpec,0]})}}e.Text=x,x.__name__="Text",x.init_Text()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),r=t(245),h=t(24),o=i.__importStar(t(18));class _ extends r.BoxView{scenterxy(t){return[this.sx[t],(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){return[this._x[t]-this._width[t]/2,this._x[t]+this._width[t]/2,Math.max(this._top[t],this._bottom[t]),Math.min(this._top[t],this._bottom[t])]}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sw=this.sdist(this.renderer.xscale,this._x,this._width,"center"),this.stop=this.renderer.yscale.v_compute(this._top),this.sbottom=this.renderer.yscale.v_compute(this._bottom);const t=this.sx.length;this.sleft=new h.NumberArray(t),this.sright=new h.NumberArray(t);for(let s=0;s<t;s++)this.sleft[s]=this.sx[s]-this.sw[s]/2,this.sright[s]=this.sx[s]+this.sw[s]/2;this._clamp_viewport()}}e.VBarView=_,_.__name__="VBarView";class a extends r.Box{constructor(t){super(t)}static init_VBar(){this.prototype.default_view=_,this.define({x:[o.XCoordinateSpec,{field:"x"}],bottom:[o.YCoordinateSpec,{value:0}],width:[o.NumberSpec,{value:1}],top:[o.YCoordinateSpec,{field:"top"}]})}}e.VBar=a,a.__name__="VBar",a.init_VBar()},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),d=i.__importStar(e(18)),l=e(10),o=e(88);class _ extends r.XYGlyphView{_map_data(){"data"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,s,{sx:t,sy:i,sradius:r,_start_angle:n,_end_angle:a}){const d=this.model.properties.direction.value();for(const l of s)isNaN(t[l]+i[l]+r[l]+n[l]+a[l])||(e.beginPath(),e.arc(t[l],i[l],r[l],n[l],a[l],d),e.lineTo(t[l],i[l]),e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,l),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,l),e.stroke()))}_hit_point(e){let s,t,i,r,n,a,d,_,c;const{sx:h,sy:u}=e,p=this.renderer.xscale.invert(h),g=this.renderer.yscale.invert(u),x=2*this.max_radius;"data"===this.model.properties.radius.units?(a=p-x,d=p+x,_=g-x,c=g+x):(t=h-x,i=h+x,[a,d]=this.renderer.xscale.r_invert(t,i),r=u-x,n=u+x,[_,c]=this.renderer.yscale.r_invert(r,n));const v=[];for(const e of this.index.indices({x0:a,x1:d,y0:_,y1:c})){const a=this.sradius[e]**2;[t,i]=this.renderer.xscale.r_compute(p,this._x[e]),[r,n]=this.renderer.yscale.r_compute(g,this._y[e]),s=(t-i)**2+(r-n)**2,s<=a&&v.push(e)}const y=this.model.properties.direction.value(),f=[];for(const e of v){const s=Math.atan2(u-this.sy[e],h-this.sx[e]);l.angle_between(-s,-this._start_angle[e],-this._end_angle[e],y)&&f.push(e)}return new o.Selection({indices:f})}draw_legend_for_index(e,s,t){n.generic_area_legend(this.visuals,e,s,t)}scenterxy(e){const s=this.sradius[e]/2,t=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+s*Math.cos(t),this.sy[e]+s*Math.sin(t)]}}t.WedgeView=_,_.__name__="WedgeView";class c extends r.XYGlyph{constructor(e){super(e)}static init_Wedge(){this.prototype.default_view=_,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[d.Direction,"anticlock"],radius:[d.DistanceSpec],start_angle:[d.AngleSpec],end_angle:[d.AngleSpec]})}}t.Wedge=c,c.__name__="Wedge",c.init_Wedge()},n function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const r=e(1);r.__exportStar(e(117),_),r.__exportStar(e(266),_),r.__exportStar(e(267),_)},n function _(e,o,r){Object.defineProperty(r,"__esModule",{value:!0});const t=e(81);class n extends t.Model{constructor(e){super(e)}}r.LayoutProvider=n,n.__name__="LayoutProvider"},n function _(t,a,e){Object.defineProperty(e,"__esModule",{value:!0});const r=t(1),o=t(266),n=t(24),s=r.__importStar(t(18));class u extends o.LayoutProvider{constructor(t){super(t)}static init_StaticLayoutProvider(){this.define({graph_layout:[s.Any,{}]})}get_node_coordinates(t){const a=t.data.index,e=a.length,r=new n.NumberArray(e),o=new n.NumberArray(e);for(let t=0;t<e;t++){const e=this.graph_layout[a[t]],[n,s]=null!=e?e:[NaN,NaN];r[t]=n,o[t]=s}return[r,o]}get_edge_coordinates(t){const a=t.data.start,e=t.data.end,r=a.length,o=[],n=[],s=null!=t.data.xs&&null!=t.data.ys;for(let u=0;u<r;u++){const r=null!=this.graph_layout[a[u]]&&null!=this.graph_layout[e[u]];if(s&&r)o.push(t.data.xs[u]),n.push(t.data.ys[u]);else{let t,s;r?(t=this.graph_layout[a[u]],s=this.graph_layout[e[u]]):(t=[NaN,NaN],s=[NaN,NaN]),o.push([t[0],s[0]]),n.push([t[1],s[1]])}}return[o,n]}}e.StaticLayoutProvider=u,u.__name__="StaticLayoutProvider",u.init_StaticLayoutProvider()},n function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});var i=e(269);d.Grid=i.Grid},n function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const s=i(1),n=i(178),r=s.__importStar(i(28)),o=s.__importStar(i(18)),d=i(8);class _ extends n.GuideRendererView{_render(){const i=this.layer.ctx;i.save(),this._draw_regions(i),this._draw_minor_grids(i),this._draw_grids(i),i.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render())}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;this.visuals.band_fill.set_value(i);const[e,t]=this.grid_coords("major",!1);for(let s=0;s<e.length-1;s++){if(s%2!=1)continue;const[n,r]=this.coordinates.map_to_screen(e[s],t[s]),[o,d]=this.coordinates.map_to_screen(e[s+1],t[s+1]);this.visuals.band_fill.doit&&i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0]),this.visuals.band_hatch.doit2(i,s,()=>{i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0])},()=>this.request_render())}}_draw_grids(i){if(!this.visuals.grid_line.doit)return;const[e,t]=this.grid_coords("major");this._draw_grid_helper(i,this.visuals.grid_line,e,t)}_draw_minor_grids(i){if(!this.visuals.minor_grid_line.doit)return;const[e,t]=this.grid_coords("minor");this._draw_grid_helper(i,this.visuals.minor_grid_line,e,t)}_draw_grid_helper(i,e,t,s){e.set_value(i),i.beginPath();for(let e=0;e<t.length;e++){const[n,r]=this.coordinates.map_to_screen(t[e],s[e]);i.moveTo(Math.round(n[0]),Math.round(r[0]));for(let e=1;e<n.length;e++)i.lineTo(Math.round(n[e]),Math.round(r[e]))}i.stroke()}ranges(){const i=this.model.dimension,e=(i+1)%2,{ranges:t}=this.coordinates;return[t[i],t[e]]}computed_bounds(){const[i]=this.ranges(),e=this.model.bounds,t=[i.min,i.max];let s,n;if(d.isArray(e))s=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]),s<t[0]&&(s=t[0]),n>t[1]&&(n=t[1]);else{[s,n]=t;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,n]=i.computed_bounds)}return[s,n]}grid_coords(i,e=!0){const t=this.model.dimension,s=(t+1)%2,[n,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,n,r.min,{})[i],h=n.min,c=n.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;i<l.length;i++){if((l[i]==h||l[i]==c)&&e)continue;const n=[],r=[],o=2;for(let e=0;e<o;e++){const t=u+(m-u)/(o-1)*e;n.push(l[i]),r.push(t)}_[t].push(n),_[s].push(r)}return _}}t.GridView=_,_.__name__="GridView";class a extends n.GuideRenderer{constructor(i){super(i)}static init_Grid(){this.prototype.default_view=_,this.mixins([["grid_",r.Line],["minor_grid_",r.Line],["band_",r.Fill],["band_",r.Hatch]]),this.define({bounds:[o.Any,"auto"],dimension:[o.Any,0],axis:[o.Instance],ticker:[o.Instance]}),this.override({level:"underlay",band_fill_color:null,band_fill_alpha:0,grid_line_color:"#e5e5e5",minor_grid_line_color:null})}get_ticker(){return null!=this.ticker?this.ticker:null!=this.axis?this.axis.ticker:null}}t.Grid=a,a.__name__="Grid",a.init_Grid()},n function _(a,o,r){Object.defineProperty(r,"__esModule",{value:!0});var e=a(271);r.Box=e.Box;var v=a(274);r.Column=v.Column;var x=a(275);r.GridBox=x.GridBox;var B=a(276);r.HTMLBox=B.HTMLBox;var n=a(272);r.LayoutDOM=n.LayoutDOM;var t=a(277);r.Row=t.Row;var u=a(278);r.Spacer=u.Spacer;var d=a(279);r.Panel=d.Panel,r.Tabs=d.Tabs;var i=a(286);r.WidgetBox=i.WidgetBox},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(272),o=n.__importStar(e(18));class c extends s.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children}}i.BoxView=c,c.__name__="BoxView";class r extends s.LayoutDOM{constructor(e){super(e)}static init_Box(){this.define({children:[o.Array,[]],spacing:[o.Number,0]})}}i.Box=r,r.__name__="Box",r.init_Box()},n function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const s=i(81),o=i(20),l=i(72),n=i(19),h=i(8),a=i(115),r=i(78),_=i(212),d=i(273),c=i(77);class u extends r.DOMView{constructor(){super(…arguments),this._idle_notified=!1,this._offset_parent=null,this._viewport={}}initialize(){super.initialize(),this.el.style.position=this.is_root?"relative":"absolute",this._child_views=new Map}async lazy_initialize(){await this.build_child_views()}remove(){for(const i of this.child_views)i.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener("resize",this._on_resize),this._parent_observer=setInterval(()=>{const i=this.el.offsetParent;this._offset_parent!=i&&(this._offset_parent=i,null!=i&&(this.compute_viewport(),this.invalidate_layout()))},250));const i=this.model.properties;this.on_change([i.width,i.height,i.min_width,i.min_height,i.max_width,i.max_height,i.margin,i.width_policy,i.height_policy,i.sizing_mode,i.aspect_ratio,i.visible],()=>this.invalidate_layout()),this.on_change([i.background,i.css_classes],()=>this.invalidate_render())}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener("resize",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map(i=>this._child_views.get(i))}async build_child_views(){await a.build_views(this._child_views,this.child_models,{parent:this})}render(){super.render(),l.empty(this.el);const{background:i}=this.model;this.el.style.backgroundColor=null!=i?i:"",l.classes(this.el).clear().add(…this.css_classes());for(const i of this.child_views)this.el.appendChild(i.el),i.render()}update_layout(){for(const i of this.child_views)i.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?"block":"none";const i=this.is_root?this.layout.sizing.margin:void 0;l.position(this.el,this.layout.bbox,i);for(const i of this.child_views)i.update_position()}after_layout(){for(const i of this.child_views)i.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(i){i.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build()}build(){return this.assert_root(),this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const i=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),n.logger.debug(layout computed in ${Date.now()-i} ms),this.notify_finished()}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const i of this.child_views)if(!i.has_finished())return!1;return!0}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}_width_policy(){return null!=this.model.width?"fixed":"fit"}_height_policy(){return null!=this.model.height?"fixed":"fit"}box_sizing(){let{width_policy:i,height_policy:t,aspect_ratio:e}=this.model;"auto"==i&&(i=this._width_policy()),"auto"==t&&(t=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if("fixed"==s)i=t="fixed";else if("stretch_both"==s)i=t="max";else if("stretch_width"==s)i="max";else if("stretch_height"==s)t="max";else switch(null==e&&(e="auto"),s){case"scale_width":i="max",t="min";break;case"scale_height":i="min",t="max";break;case"scale_both":i="max",t="max"}const o={width_policy:i,height_policy:t},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:a,height:r}=this.model;null!=a&&(o.width=a),null!=r&&(o.height=r);const{max_width:_,max_height:d}=this.model;null!=_&&(o.max_width=_),null!=d&&(o.max_height=d),"auto"==e&&null!=a&&null!=r?o.aspect=a/r:h.isNumber(e)&&(o.aspect=e);const{margin:c}=this.model;if(null!=c)if(h.isNumber(c))o.margin={top:c,right:c,bottom:c,left:c};else if(2==c.length){const[i,t]=c;o.margin={top:i,right:t,bottom:i,left:t}}else{const[i,t,e,s]=c;o.margin={top:i,right:t,bottom:e,left:s}}o.visible=this.model.visible;const{align:u}=this.model;return h.isArray(u)?[o.halign,o.valign]=u:o.halign=o.valign=u,o}_viewport_size(){return l.undisplayed(this.el,()=>{let i=this.el;for(;i=i.parentElement;){if(i.classList.contains(d.bk_root))continue;if(i==document.body){const{margin:{left:i,right:t,top:e,bottom:s}}=l.extents(document.body);return{width:Math.ceil(document.documentElement.clientWidth-i-t),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:t,right:e,top:s,bottom:o}}=l.extents(i),{width:n,height:h}=i.getBoundingClientRect(),a=Math.ceil(n-t-e),r=Math.ceil(h-s-o);if(a>0||r>0)return{width:a>0?a:void 0,height:r>0?r:void 0}}return{}})}export(i,t=!0){const e="png"==i?"canvas":"svg",s=new c.CanvasLayer(e,t),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(i,t),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map(i=>i.serializable_state())})}}e.LayoutDOMView=u,u.__name__="LayoutDOMView";class m extends s.Model{constructor(i){super(i)}static init_LayoutDOM(){this.define(i=>{const{Boolean:t,Number:e,String:s,Null:l,Auto:n,Color:h,Array:a,Tuple:r,Or:d}=i,c=r(e,e),u=r(e,e,e,e);return{width:[d(e,l),null],height:[d(e,l),null],min_width:[d(e,l),null],min_height:[d(e,l),null],max_width:[d(e,l),null],max_height:[d(e,l),null],margin:[d(e,c,u),[0,0,0,0]],width_policy:[d(_.SizingPolicy,n),"auto"],height_policy:[d(_.SizingPolicy,n),"auto"],aspect_ratio:[d(e,n,l),null],sizing_mode:[d(o.SizingMode,l),null],visible:[t,!0],disabled:[t,!1],align:[d(o.Align,r(o.Align,o.Align)),"start"],background:[d(h,l),null],css_classes:[a(s),[]]}})}}e.LayoutDOM=m,m.__name__="LayoutDOM",m.init_LayoutDOM()},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_root="bk-root"},n function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),e=t(271),n=t(216),l=s.__importStar(t(18));class u extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new n.Column(t),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}i.ColumnView=u,u.__name__="ColumnView";class _ extends e.Box{constructor(t){super(t)}static init_Column(){this.prototype.default_view=u,this.define({rows:[l.Any,"auto"]})}}i.Column=_,_.__name__="Column",_.init_Column()},n function _(t,i,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t(1),e=t(272),n=t(216),l=o.__importStar(t(18));class r extends e.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children.map(([t])=>t)}_update_layout(){this.layout=new n.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[t,i,s,o,e]of this.model.children){const n=this._child_views.get(t);this.layout.items.push({layout:n.layout,row:i,col:s,row_span:o,col_span:e})}this.layout.set_sizing(this.box_sizing())}}s.GridBoxView=r,r.__name__="GridBoxView";class a extends e.LayoutDOM{constructor(t){super(t)}static init_GridBox(){this.prototype.default_view=r,this.define({children:[l.Array,[]],rows:[l.Any,"auto"],cols:[l.Any,"auto"],spacing:[l.Any,0]})}}s.GridBox=a,a.__name__="GridBox",a.init_GridBox()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(272),_=e(212);class n extends s.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new _.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=n,n.__name__="HTMLBoxView";class i extends s.LayoutDOM{constructor(e){super(e)}}o.HTMLBox=i,i.__name__="HTMLBox"},n function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),e=t(271),_=t(216),a=s.__importStar(t(18));class n extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new _.Row(t),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}i.RowView=n,n.__name__="RowView";class l extends e.Box{constructor(t){super(t)}static init_Row(){this.prototype.default_view=n,this.define({cols:[a.Any,"auto"]})}}i.Row=l,l.__name__="Row",l.init_Row()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(272),s=e(212);class _ extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new s.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=_,_.__name__="SpacerView";class o extends i.LayoutDOM{constructor(e){super(e)}static init_Spacer(){this.prototype.default_view=_}}a.Spacer=o,o.__name__="Spacer",o.init_Spacer()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(212),l=e(72),h=e(9),o=i.__importStar(e(18)),c=e(272),d=e(81),r=e(173),n=e(280),_=e(281),b=e(282),p=i.__importDefault(e(283)),u=i.__importDefault(e(284)),m=i.__importDefault(e(285));class v extends c.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,()=>this.rebuild()),this.connect(this.model.properties.active.change,()=>this.on_active_change())}styles(){return[…super.styles(),p.default,u.default,m.default]}get child_models(){return this.model.tabs.map(e=>e.child)}_update_layout(){const e=this.model.tabs_location,t="above"==e||"below"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends a.ContentBox{_measure(e){const a=l.size(s),o=l.children(i).slice(0,3).map(e=>l.size(e)),{width:c,height:d}=super._measure(e);if(t){const t=a.width+h.sum(o.map(e=>e.width));return{width:e.width!=1/0?e.width:t,height:d}}{const t=a.height+h.sum(o.map(e=>e.height));return{width:c,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:"fit",height_policy:"fixed"}):this.header.set_sizing({width_policy:"fixed",height_policy:"fit"});let o=1,c=1;switch(e){case"above":o-=1;break;case"below":o+=1;break;case"left":c-=1;break;case"right":c+=1}const d={layout:this.header,row:o,col:c},r=this.child_views.map(e=>({layout:e.layout,row:1,col:1}));this.layout=new a.Grid([d,…r]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position="absolute",l.position(this.header_el,this.header.bbox);const e=this.model.tabs_location,t="above"==e||"below"==e,s=l.size(this.scroll_el),i=l.scroll_size(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+"px",l.display(this.scroll_el)):(this.wrapper_el.style.maxWidth="",l.undisplay(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+"px",l.display(this.scroll_el)):(this.wrapper_el.style.maxHeight="",l.undisplay(this.scroll_el))}const{child_views:a}=this;for(const e of a)l.hide(e.el);const h=a[this.model.active];null!=h&&l.show(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs_location,s="above"==t||"below"==t,i=this.model.tabs.map((t,s)=>{const i=l.div({class:[n.bk_tab,s==e?r.bk_active:null]},t.title);if(i.addEventListener("click",e=>{e.target==e.currentTarget&&this.change_active(s)}),t.closable){const e=l.div({class:n.bk_close});e.addEventListener("click",e=>{if(e.target==e.currentTarget){this.model.tabs=h.remove_at(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}}),i.appendChild(e)}return i});this.headers_el=l.div({class:[n.bk_headers]},i),this.wrapper_el=l.div({class:n.bk_headers_wrapper},this.headers_el);const a=l.div({class:[_.bk_btn,_.bk_btn_default],disabled:""},l.div({class:[b.bk_caret,r.bk_left]})),o=l.div({class:[_.bk_btn,_.bk_btn_default]},l.div({class:[b.bk_caret,r.bk_right]}));let c=0;const d=e=>()=>{const t=this.model.tabs.length;c="left"==e?Math.max(c-1,0):Math.min(c+1,t-1),0==c?a.setAttribute("disabled",""):a.removeAttribute("disabled"),c==t-1?o.setAttribute("disabled",""):o.removeAttribute("disabled");const i=l.children(this.headers_el).slice(0,c).map(e=>e.getBoundingClientRect());if(s){const e=-h.sum(i.map(e=>e.width));this.headers_el.style.left=e+"px"}else{const e=-h.sum(i.map(e=>e.height));this.headers_el.style.top=e+"px"}};a.addEventListener("click",d("left")),o.addEventListener("click",d("right")),this.scroll_el=l.div({class:_.bk_btn_group},a,o),this.header_el=l.div({class:[n.bk_tabs_header,r.bk_side(t)]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=l.children(this.headers_el);for(const e of t)e.classList.remove(r.bk_active);t[e].classList.add(r.bk_active);const{child_views:s}=this;for(const e of s)l.hide(e.el);l.show(s[e].el)}}s.TabsView=v,v.__name__="TabsView";class g extends c.LayoutDOM{constructor(e){super(e)}static init_Tabs(){this.prototype.default_view=v,this.define({tabs:[o.Array,[]],tabs_location:[o.Location,"above"],active:[o.Number,0]})}}s.Tabs=g,g.__name__="Tabs",g.init_Tabs();class w extends d.Model{constructor(e){super(e)}static init_Panel(){this.define({title:[o.String,""],child:[o.Instance],closable:[o.Boolean,!1]})}}s.Panel=w,w.__name__="Panel",w.init_Panel()},n function _(e,b,a){Object.defineProperty(a,"__esModule",{value:!0}),a.bk_tabs_header="bk-tabs-header",a.bk_headers_wrapper="bk-headers-wrapper",a.bk_headers="bk-headers",a.bk_tab="bk-tab",a.bk_close="bk-close"},n function _(n,b,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_btn="bk-btn",t.bk_btn_group="bk-btn-group",t.bk_btn_default="bk-btn-default",t.bk_btn_primary="bk-btn-primary",t.bk_btn_success="bk-btn-success",t.bk_btn_warning="bk-btn-warning",t.bk_btn_danger="bk-btn-danger",t.bk_btn_type=function(n){switch(n){case"default":return t.bk_btn_default;case"primary":return t.bk_btn_primary;case"success":return t.bk_btn_success;case"warning":return t.bk_btn_warning;case"danger":return t.bk_btn_danger}},t.bk_dropdown_toggle="bk-dropdown-toggle"},n function _(e,b,d){Object.defineProperty(d,"__esModule",{value:!0}),d.bk_menu="bk-menu",d.bk_caret="bk-caret",d.bk_divider="bk-divider"},n function _(n,o,b){Object.defineProperty(b,"__esModule",{value:!0});b.default="\n.bk-root .bk-btn {\n height: 100%;\n display: inline-block;\n text-align: center;\n vertical-align: middle;\n white-space: nowrap;\n cursor: pointer;\n padding: 6px 12px;\n font-size: 12px;\n border: 1px solid transparent;\n border-radius: 4px;\n outline: 0;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-btn:hover,\n.bk-root .bk-btn:focus {\n text-decoration: none;\n}\n.bk-root .bk-btn:active,\n.bk-root .bk-btn.bk-active {\n background-image: none;\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.bk-root .bk-btn[disabled] {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n box-shadow: none;\n}\n.bk-root .bk-btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.bk-root .bk-btn-default:hover {\n background-color: #f5f5f5;\n border-color: #b8b8b8;\n}\n.bk-root .bk-btn-default.bk-active {\n background-color: #ebebeb;\n border-color: #adadad;\n}\n.bk-root .bk-btn-default[disabled],\n.bk-root .bk-btn-default[disabled]:hover,\n.bk-root .bk-btn-default[disabled]:focus,\n.bk-root .bk-btn-default[disabled]:active,\n.bk-root .bk-btn-default[disabled].bk-active {\n background-color: #e6e6e6;\n border-color: #ccc;\n}\n.bk-root .bk-btn-primary {\n color: #fff;\n background-color: #428bca;\n border-color: #357ebd;\n}\n.bk-root .bk-btn-primary:hover {\n background-color: #3681c1;\n border-color: #2c699e;\n}\n.bk-root .bk-btn-primary.bk-active {\n background-color: #3276b1;\n border-color: #285e8e;\n}\n.bk-root .bk-btn-primary[disabled],\n.bk-root .bk-btn-primary[disabled]:hover,\n.bk-root .bk-btn-primary[disabled]:focus,\n.bk-root .bk-btn-primary[disabled]:active,\n.bk-root .bk-btn-primary[disabled].bk-active {\n background-color: #506f89;\n border-color: #357ebd;\n}\n.bk-root .bk-btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.bk-root .bk-btn-success:hover {\n background-color: #4eb24e;\n border-color: #409240;\n}\n.bk-root .bk-btn-success.bk-active {\n background-color: #47a447;\n border-color: #398439;\n}\n.bk-root .bk-btn-success[disabled],\n.bk-root .bk-btn-success[disabled]:hover,\n.bk-root .bk-btn-success[disabled]:focus,\n.bk-root .bk-btn-success[disabled]:active,\n.bk-root .bk-btn-success[disabled].bk-active {\n background-color: #667b66;\n border-color: #4cae4c;\n}\n.bk-root .bk-btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.bk-root .bk-btn-warning:hover {\n background-color: #eea43b;\n border-color: #e89014;\n}\n.bk-root .bk-btn-warning.bk-active {\n background-color: #ed9c28;\n border-color: #d58512;\n}\n.bk-root .bk-btn-warning[disabled],\n.bk-root .bk-btn-warning[disabled]:hover,\n.bk-root .bk-btn-warning[disabled]:focus,\n.bk-root .bk-btn-warning[disabled]:active,\n.bk-root .bk-btn-warning[disabled].bk-active {\n background-color: #c89143;\n border-color: #eea236;\n}\n.bk-root .bk-btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.bk-root .bk-btn-danger:hover {\n background-color: #d5433e;\n border-color: #bd2d29;\n}\n.bk-root .bk-btn-danger.bk-active {\n background-color: #d2322d;\n border-color: #ac2925;\n}\n.bk-root .bk-btn-danger[disabled],\n.bk-root .bk-btn-danger[disabled]:hover,\n.bk-root .bk-btn-danger[disabled]:focus,\n.bk-root .bk-btn-danger[disabled]:active,\n.bk-root .bk-btn-danger[disabled].bk-active {\n background-color: #a55350;\n border-color: #d43f3a;\n}\n.bk-root .bk-btn-group {\n height: 100%;\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-btn-group > .bk-btn {\n flex-grow: 1;\n -webkit-flex-grow: 1;\n}\n.bk-root .bk-btn-group > .bk-btn + .bk-btn {\n margin-left: -1px;\n}\n.bk-root .bk-btn-group > .bk-btn:first-child:not(:last-child) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):last-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.bk-root .bk-btn-group .bk-dropdown-toggle {\n flex: 0 0 0;\n -webkit-flex: 0 0 0;\n padding: 6px 6px;\n}\n"},n function _(n,o,r){Object.defineProperty(r,"__esModule",{value:!0});r.default="\n.bk-root .bk-menu-icon {\n width: 28px;\n height: 28px;\n background-size: 60%;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .bk-context-menu {\n position: absolute;\n display: inline-flex;\n display: -webkit-inline-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n width: auto;\n height: auto;\n z-index: 100;\n cursor: pointer;\n font-size: 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.bk-root .bk-context-menu.bk-horizontal {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-context-menu.bk-vertical {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-context-menu > .bk-divider {\n cursor: default;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.bk-root .bk-context-menu.bk-horizontal > .bk-divider {\n width: 1px;\n margin: 5px 0;\n}\n.bk-root .bk-context-menu.bk-vertical > .bk-divider {\n height: 1px;\n margin: 0 5px;\n}\n.bk-root .bk-context-menu > :not(.bk-divider) {\n border: 1px solid transparent;\n}\n.bk-root .bk-context-menu > :not(.bk-divider).bk-active {\n border-color: #26aae1;\n}\n.bk-root .bk-context-menu > :not(.bk-divider):hover {\n background-color: #f9f9f9;\n}\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child {\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.bk-root .bk-menu {\n position: absolute;\n left: 0;\n width: 100%;\n z-index: 100;\n cursor: pointer;\n font-size: 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.bk-root .bk-menu.bk-above {\n bottom: 100%;\n}\n.bk-root .bk-menu.bk-below {\n top: 100%;\n}\n.bk-root .bk-menu > .bk-divider {\n height: 1px;\n margin: 7.5px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.bk-root .bk-menu > :not(.bk-divider) {\n padding: 6px 12px;\n}\n.bk-root .bk-menu > :not(.bk-divider):hover,\n.bk-root .bk-menu > :not(.bk-divider).bk-active {\n background-color: #e6e6e6;\n}\n.bk-root .bk-caret {\n display: inline-block;\n vertical-align: middle;\n width: 0;\n height: 0;\n margin: 0 5px;\n}\n.bk-root .bk-caret.bk-down {\n border-top: 4px solid;\n}\n.bk-root .bk-caret.bk-up {\n border-bottom: 4px solid;\n}\n.bk-root .bk-caret.bk-down,\n.bk-root .bk-caret.bk-up {\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.bk-root .bk-caret.bk-left {\n border-right: 4px solid;\n}\n.bk-root .bk-caret.bk-right {\n border-left: 4px solid;\n}\n.bk-root .bk-caret.bk-left,\n.bk-root .bk-caret.bk-right {\n border-top: 4px solid transparent;\n border-bottom: 4px solid transparent;\n}\n"},n function _(e,r,n){Object.defineProperty(n,"__esModule",{value:!0});n.default=’\n.bk-root .bk-tabs-header {\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n overflow: hidden;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-tabs-header .bk-btn-group {\n height: auto;\n margin-right: 5px;\n}\n.bk-root .bk-tabs-header .bk-btn-group > .bk-btn {\n flex-grow: 0;\n -webkit-flex-grow: 0;\n height: auto;\n padding: 4px 4px;\n}\n.bk-root .bk-tabs-header .bk-headers-wrapper {\n flex-grow: 1;\n -webkit-flex-grow: 1;\n overflow: hidden;\n color: #666666;\n}\n.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper {\n border-bottom: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper {\n border-left: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper {\n border-top: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper {\n border-right: 1px solid #e6e6e6;\n}\n.bk-root .bk-tabs-header.bk-above,\n.bk-root .bk-tabs-header.bk-below {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-tabs-header.bk-above .bk-headers,\n.bk-root .bk-tabs-header.bk-below .bk-headers {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-tabs-header.bk-left,\n.bk-root .bk-tabs-header.bk-right {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-tabs-header.bk-left .bk-headers,\n.bk-root .bk-tabs-header.bk-right .bk-headers {\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-tabs-header .bk-headers {\n position: relative;\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n}\n.bk-root .bk-tabs-header .bk-tab {\n padding: 4px 8px;\n border: solid transparent;\n white-space: nowrap;\n cursor: pointer;\n}\n.bk-root .bk-tabs-header .bk-tab:hover {\n background-color: #f2f2f2;\n}\n.bk-root .bk-tabs-header .bk-tab.bk-active {\n color: #4d4d4d;\n background-color: white;\n border-color: #e6e6e6;\n}\n.bk-root .bk-tabs-header .bk-tab .bk-close {\n margin-left: 10px;\n}\n.bk-root .bk-tabs-header.bk-above .bk-tab {\n border-width: 3px 1px 0px 1px;\n border-radius: 4px 4px 0 0;\n}\n.bk-root .bk-tabs-header.bk-right .bk-tab {\n border-width: 1px 3px 1px 0px;\n border-radius: 0 4px 4px 0;\n}\n.bk-root .bk-tabs-header.bk-below .bk-tab {\n border-width: 0px 1px 3px 1px;\n border-radius: 0 0 4px 4px;\n}\n.bk-root .bk-tabs-header.bk-left .bk-tab {\n border-width: 1px 0px 1px 3px;\n border-radius: 4px 0 0 4px;\n}\n.bk-root .bk-close {\n display: inline-block;\n width: 10px;\n height: 10px;\n vertical-align: middle;\n background-image: url(\’data:image/svg+xml;utf8, <svg viewPort="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg"> <line x1="1" y1="9" x2="9" y2="1" stroke="gray" stroke-width="2"/> <line x1="1" y1="1" x2="9" y2="9" stroke="gray" stroke-width="2"/> </svg>\’);\n}\n.bk-root .bk-close:hover {\n background-image: url(\’data:image/svg+xml;utf8, <svg viewPort="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg"> <line x1="1" y1="9" x2="9" y2="1" stroke="red" stroke-width="2"/> <line x1="1" y1="1" x2="9" y2="9" stroke="red" stroke-width="2"/> </svg>\’);\n}\n’},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e(274);class _ extends o.ColumnView{}i.WidgetBoxView=_,_.__name__="WidgetBoxView";class n extends o.Column{constructor(e){super(e)}static init_WidgetBox(){this.prototype.default_view=_}}i.WidgetBox=n,n.__name__="WidgetBox",n.init_WidgetBox()},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});e(1).__exportStar(e(288),t);var a=e(289);t.Marker=a.Marker;var _=e(290);t.Scatter=_.Scatter},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const i=e(1),r=e(289),n=i.__importStar(e(238)),s=Math.sqrt(3);function c(e,t){e.rotate(Math.PI/4),a(e,t),e.rotate(-Math.PI/4)}function l(e,t){const o=t*s,i=o/3;e.moveTo(-o/2,-i),e.lineTo(0,0),e.lineTo(o/2,-i),e.lineTo(0,0),e.lineTo(0,t)}function a(e,t){e.moveTo(0,t),e.lineTo(0,-t),e.moveTo(-t,0),e.lineTo(t,0)}function u(e,t){e.moveTo(0,t),e.lineTo(t/1.5,0),e.lineTo(0,-t),e.lineTo(-t/1.5,0),e.closePath()}function d(e,t){const o=t*s,i=o/3;e.moveTo(-t,i),e.lineTo(t,i),e.lineTo(0,i-o),e.closePath()}function v(e,t,o,i,r){a(e,o),c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function _(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function f(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function T(e,t,o,i,r){_(e,t,o,i,r),P(e,t,o,i,r)}function z(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),l(e,o),e.stroke())}function C(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),c(e,o),e.stroke())}function k(e,t,o,i,r){a(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function m(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function h(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(0,o),e.lineTo(0,-o),e.moveTo(-o/1.5,0),e.lineTo(o/1.5,0),e.stroke())}function q(e,t,o,i,r){m(e,t,o,i,r),P(e,t,o,i,r)}function P(e,t,o,i,r){!function(e,t){e.beginPath(),e.arc(0,0,t/4,0,2*Math.PI,!1),e.closePath()}(e,o),i.set_vectorize(e,t),e.fillStyle=e.strokeStyle,e.fill()}function D(e,t,o,i,r){!function(e,t){const o=t/2,i=s*o;e.moveTo(t,0),e.lineTo(o,-i),e.lineTo(-o,-i),e.lineTo(-t,0),e.lineTo(-o,i),e.lineTo(o,i),e.closePath()}(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function g(e,t,o,i,r){D(e,t,o,i,r),P(e,t,o,i)}function S(e,t,o,i,r){e.rotate(Math.PI),d(e,o),e.rotate(-Math.PI),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function G(e,t,o,i,r){const n=3*o/8,s=[n,n,o,o,n,n,-n,-n,-o,-o,-n,-n],c=[o,n,n,-n,-n,-o,-o,-n,-n,n,n,o];for(e.moveTo(s[0],c[0]),t=1;t<12;t++)e.lineTo(s[t],c[t]);e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function L(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function M(e,t,o,i,r){const n=3*o/8;e.moveTo(-o,-o),e.quadraticCurveTo(0,-n,o,-o),e.quadraticCurveTo(n,0,o,o),e.quadraticCurveTo(0,n,-o,o),e.quadraticCurveTo(-n,0,-o,-o),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function p(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function x(e,t,o,i,r){L(e,t,o,i,r),P(e,t,o,i)}function I(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(-o,o),e.lineTo(o,-o),e.moveTo(-o,-o),e.lineTo(o,o),e.stroke())}function y(e,t,o,i,r){d(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function X(e,t,o,i,r){y(e,t,o,i,r),P(e,t,o,i)}function H(e,t,o,i,r){const n=o*s,c=n/3,l=3*c/8;e.moveTo(-o,c),e.quadraticCurveTo(0,l,o,c),e.quadraticCurveTo(s*l/2,l/2,0,c-n),e.quadraticCurveTo(-s*l/2,l/2,-o,c),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function Y(e,t,o,i,r){!function(e,t){e.moveTo(-t,0),e.lineTo(t,0)}(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function A(e,t,o,i,r){c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function b(e,t,o,i,r){l(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function w(e,t,o){var i;const n=class extends r.MarkerView{static initClass(){this.prototype._render_one=t,this.prototype.glglyph_cls=o}};n.initClass();const s=((i=class extends r.Marker{static initClass(){this.prototype.default_view=n}}).__name__=e,i);return s.initClass(),s}o.Asterisk=w("Asterisk",v,n.AsteriskGL),o.CircleCross=w("CircleCross",f,n.CircleCrossGL),o.CircleDot=w("CircleDot",T),o.CircleY=w("CircleY",z),o.CircleX=w("CircleX",C,n.CircleXGL),o.Cross=w("Cross",k,n.CrossGL),o.Dash=w("Dash",Y),o.Diamond=w("Diamond",m,n.DiamondGL),o.DiamondCross=w("DiamondCross",h,n.DiamondCrossGL),o.DiamondDot=w("DiamondDot",q),o.Dot=w("Dot",P),o.Hex=w("Hex",D,n.HexGL),o.HexDot=w("HexDot",g),o.InvertedTriangle=w("InvertedTriangle",S,n.InvertedTriangleGL),o.Plus=w("Plus",G),o.Square=w("Square",L,n.SquareGL),o.SquareCross=w("SquareCross",p,n.SquareCrossGL),o.SquareDot=w("SquareDot",x),o.SquarePin=w("SquarePin",M),o.SquareX=w("SquareX",I,n.SquareXGL),o.Triangle=w("Triangle",y,n.TriangleGL),o.TriangleDot=w("TriangleDot",X),o.TrianglePin=w("TrianglePin",H),o.X=w("X",A,n.XGL),o.Y=w("Y",b),o.marker_funcs={asterisk:v,circle:_,circle_cross:f,circle_dot:T,circle_y:z,circle_x:C,cross:k,diamond:m,diamond_dot:q,diamond_cross:h,dot:P,hex:D,hex_dot:g,inverted_triangle:S,plus:G,square:L,square_cross:p,square_dot:x,square_pin:M,square_x:I,triangle:y,triangle_dot:X,triangle_pin:H,dash:Y,x:A,y:b}},n function _(e,s,i){Object.defineProperty(i,"__esModule",{value:!0});const t=e(1),n=e(93),r=e(28),a=t.__importStar(e(101)),_=t.__importStar(e(18)),h=e(9),l=e(88);class c extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&null!=this.glglyph_cls&&(this.glglyph=new this.glglyph_cls(e.gl,this))}_render(e,s,{sx:i,sy:t,_size:n,_angle:r}){for(const a of s){if(isNaN(i[a]+t[a]+n[a]+r[a]))continue;const s=n[a]/2;e.beginPath(),e.translate(i[a],t[a]),r[a]&&e.rotate(r[a]),this._render_one(e,a,s,this.visuals.line,this.visuals.fill),r[a]&&e.rotate(-r[a]),e.translate(-i[a],-t[a])}}_mask_data(){const e=this.renderer.plot_view.frame.bbox.h_range,s=e.start-this.max_size,i=e.end+this.max_size,[t,n]=this.renderer.xscale.r_invert(s,i),r=this.renderer.plot_view.frame.bbox.v_range,a=r.start-this.max_size,_=r.end+this.max_size,[h,l]=this.renderer.yscale.r_invert(a,_);return this.index.indices({x0:t,x1:n,y0:h,y1:l})}_hit_point(e){const{sx:s,sy:i}=e,t=s-this.max_size,n=s+this.max_size,[r,a]=this.renderer.xscale.r_invert(t,n),_=i-this.max_size,h=i+this.max_size,[c,o]=this.renderer.yscale.r_invert(_,h),x=this.index.indices({x0:r,x1:a,y0:c,y1:o}),d=[];for(const e of x){const t=this._size[e]/2;Math.abs(this.sx[e]-s)<=t&&Math.abs(this.sy[e]-i)<=t&&d.push(e)}return new l.Selection({indices:d})}_hit_span(e){const{sx:s,sy:i}=e,t=this.bounds(),n=this.max_size/2;let r,a,_,h;if("h"==e.direction){_=t.y0,h=t.y1;const e=s-n,i=s+n;[r,a]=this.renderer.xscale.r_invert(e,i)}else{r=t.x0,a=t.x1;const e=i-n,s=i+n;[_,h]=this.renderer.yscale.r_invert(e,s)}const c=[…this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_rect(e){const{sx0:s,sx1:i,sy0:t,sy1:n}=e,[r,a]=this.renderer.xscale.r_invert(s,i),[_,h]=this.renderer.yscale.r_invert(t,n),c=[…this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_poly(e){const{sx:s,sy:i}=e,t=h.range(0,this.sx.length),n=[];for(let e=0,r=t.length;e<r;e++){const r=t[e];a.point_in_poly(this.sx[e],this.sy[e],s,i)&&n.push(r)}return new l.Selection({indices:n})}_get_legend_args({x0:e,x1:s,y0:i,y1:t},n){const r=n+1,a=new Array(r);a[n]=(e+s)/2;const _=new Array(r);_[n]=(i+t)/2;const h=new Array(r);h[n]=.4*Math.min(Math.abs(s-e),Math.abs(t-i));const l=new Array(r);return l[n]=0,{sx:a,sy:_,_size:h,_angle:l}}draw_legend_for_index(e,{x0:s,x1:i,y0:t,y1:n},r){const a=this._get_legend_args({x0:s,x1:i,y0:t,y1:n},r);this._render(e,[r],a)}}i.MarkerView=c,c.__name__="MarkerView";class o extends n.XYGlyph{constructor(e){super(e)}static init_Marker(){this.mixins([r.LineVector,r.FillVector]),this.define({size:[_.DistanceSpec,{units:"screen",value:4}],angle:[_.AngleSpec,0]})}}i.Marker=o,o.__name__="Marker",o.init_Marker()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=e(1),s=e(289),i=e(288),n=a.__importStar(e(18));class _ extends s.MarkerView{_render(e,t,{sx:r,sy:a,_size:s,_angle:n,_marker:_}){for(const c of t){if(isNaN(r[c]+a[c]+s[c]+n[c])||null==_[c])continue;const t=s[c]/2;e.beginPath(),e.translate(r[c],a[c]),n[c]&&e.rotate(n[c]),i.marker_funcs[_[c]](e,c,t,this.visuals.line,this.visuals.fill),n[c]&&e.rotate(-n[c]),e.translate(-r[c],-a[c])}}draw_legend_for_index(e,{x0:t,x1:r,y0:a,y1:s},i){const n=this._get_legend_args({x0:t,x1:r,y0:a,y1:s},i),_=new Array(i+1);_[i]=this._marker[i],n._marker=_,this._render(e,[i],n)}}r.ScatterView=_,_.__name__="ScatterView";class c extends s.Marker{constructor(e){super(e)}static init_Scatter(){this.prototype.default_view=_,this.define({marker:[n.MarkerSpec,{value:"circle"}]})}}r.Scatter=c,c.__name__="Scatter",c.init_Scatter()},n function _(a,o,p){Object.defineProperty(p,"__esModule",{value:!0});var t=a(292);p.MapOptions=t.MapOptions;var e=a(292);p.GMapOptions=e.GMapOptions;var n=a(292);p.GMapPlot=n.GMapPlot;var M=a(293);p.Plot=M.Plot},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const o=t(1),n=t(19),a=t(293),s=o.__importStar(t(18)),p=t(81),r=t(158),_=t(319);i.GMapPlotView=_.GMapPlotView;class l extends p.Model{constructor(t){super(t)}static init_MapOptions(){this.define({lat:[s.Number],lng:[s.Number],zoom:[s.Number,12]})}}i.MapOptions=l,l.__name__="MapOptions",l.init_MapOptions();class c extends l{constructor(t){super(t)}static init_GMapOptions(){this.define({map_type:[s.String,"roadmap"],scale_control:[s.Boolean,!1],styles:[s.String],tilt:[s.Int,45]})}}i.GMapOptions=c,c.__name__="GMapOptions",c.init_GMapOptions();class u extends a.Plot{constructor(t){super(t)}static init_GMapPlot(){this.prototype.default_view=_.GMapPlotView,this.define({map_options:[s.Instance],api_key:[s.String]}),this.override({x_range:()=>new r.Range1d,y_range:()=>new r.Range1d})}initialize(){super.initialize(),this.use_map=!0,this.api_key||n.logger.error("api_key is required. See https://developers.google.com/maps/documentation/javascript/get-api-key for more information on how to obtain your own.")}}i.GMapPlot=u,u.__name__="GMapPlot",u.init_GMapPlot()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1),o=i.__importStar(e(28)),n=i.__importStar(e(18)),s=e(15),a=e(9),l=e(13),_=e(8),h=e(272),c=e(169),u=e(145),d=e(294),b=e(85),g=e(90),p=e(210),m=e(312);r.PlotView=m.PlotView;class f extends h.LayoutDOM{constructor(e){super(e)}static init_Plot(){this.prototype.default_view=m.PlotView,this.mixins([["outline_",o.Line],["background_",o.Fill],["border_",o.Fill]]),this.define({toolbar:[n.Instance,()=>new d.Toolbar],toolbar_location:[n.Location,"right"],toolbar_sticky:[n.Boolean,!0],plot_width:[n.Number,600],plot_height:[n.Number,600],frame_width:[n.Number,null],frame_height:[n.Number,null],title:[n.Any,()=>new c.Title({text:""})],title_location:[n.Location,"above"],above:[n.Array,[]],below:[n.Array,[]],left:[n.Array,[]],right:[n.Array,[]],center:[n.Array,[]],renderers:[n.Array,[]],x_range:[n.Instance,()=>new p.DataRange1d],extra_x_ranges:[n.Any,{}],y_range:[n.Instance,()=>new p.DataRange1d],extra_y_ranges:[n.Any,{}],x_scale:[n.Instance,()=>new u.LinearScale],y_scale:[n.Instance,()=>new u.LinearScale],lod_factor:[n.Number,10],lod_interval:[n.Number,300],lod_threshold:[n.Number,2e3],lod_timeout:[n.Number,500],hidpi:[n.Boolean,!0],output_backend:[n.OutputBackend,"canvas"],min_border:[n.Number,5],min_border_top:[n.Number,null],min_border_left:[n.Number,null],min_border_bottom:[n.Number,null],min_border_right:[n.Number,null],inner_width:[n.Number],inner_height:[n.Number],outer_width:[n.Number],outer_height:[n.Number],match_aspect:[n.Boolean,!1],aspect_scale:[n.Number,1],reset_policy:[n.ResetPolicy,"standard"]}),this.override({outline_line_color:"#e5e5e5",border_fill_color:"#ffffff",background_fill_color:"#ffffff"})}get width(){const e=this.properties.width.get_value();return null!=e?e:this.plot_width}set width(e){this.setv({width:e,plot_width:e})}get height(){const e=this.properties.height.get_value();return null!=e?e:this.plot_height}set height(e){this.setv({height:e,plot_height:e})}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new s.Signal0(this,"reset");for(const e of l.values(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of l.values(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t="center"){const r=this.properties[t].get_value();this.setv({[t]:[…r,e]})}remove_layout(e){const t=t=>{a.remove_by(t,t=>t==e)};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}add_renderers(…e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new b.ColumnDataSource,r={}){const i=Object.assign(Object.assign({},r),{data_source:t,glyph:e}),o=new g.GlyphRenderer(i);return this.add_renderers(o),o}add_tools(…e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[…this.side_panels,…this.center]}get side_panels(){const{above:e,below:t,left:r,right:i}=this;return a.concat([e,t,r,i])}}r.Plot=f,f.__name__="Plot",f.init_Plot()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1).__importStar(t(18)),c=t(8),o=t(9),n=t(13),a=t(295),l=t(305),r=t=>{switch(t){case"tap":return"active_tap";case"pan":return"active_drag";case"pinch":case"scroll":return"active_scroll";case"multi":return"active_multi"}return null},_=t=>"tap"==t||"pan"==t;class h extends l.ToolbarBase{constructor(t){super(t)}static init_Toolbar(){this.prototype.default_view=l.ToolbarBaseView,this.define({active_drag:[s.Any,"auto"],active_inspect:[s.Any,"auto"],active_scroll:[s.Any,"auto"],active_tap:[s.Any,"auto"],active_multi:[s.Any,null]})}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:i,active_scroll:s,active_tap:c,active_multi:o}=this.properties;this.on_change([t,e,i,s,c,o],()=>this._init_tools())}_init_tools(){if(super._init_tools(),"auto"==this.active_inspect);else if(this.active_inspect instanceof a.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if(c.isArray(this.active_inspect)){const t=o.intersection(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)o.includes(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of n.values(this.gestures)){t.tools=o.sort_by(t.tools,t=>t.default_order);for(const e of t.tools)this.connect(e.properties.active.change,()=>this._active_change(e))}for(const[e,i]of n.entries(this.gestures)){const s=r(e);if(s){const c=this[s];"auto"==c?0!=i.tools.length&&_(e)&&t(i.tools[0]):null!=c&&(o.includes(this.tools,c)?t(c):this[s]=null)}}}}i.Toolbar=h,h.__name__="Toolbar",h.init_Toolbar()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const n=e(1),s=e(296),i=e(304),_=n.__importStar(e(18));class c extends s.ButtonToolView{}o.InspectToolView=c,c.__name__="InspectToolView";class l extends s.ButtonTool{constructor(e){super(e),this.event_type="move"}static init_InspectTool(){this.prototype.button_view=i.OnOffButtonView,this.define({toggleable:[_.Boolean,!0]}),this.override({active:!0})}}o.InspectTool=l,l.__name__="InspectTool",l.init_InspectTool()},n function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const i=t(1),s=i.__importDefault(t(297)),n=t(78),l=t(298),r=t(72),a=i.__importStar(t(18)),u=t(29),_=t(8),h=t(9),c=t(299),m=i.__importDefault(t(300)),d=i.__importDefault(t(301)),p=i.__importDefault(t(284)),f=t(302);class g extends n.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o="left"==e||"above"==e,i=this.parent.model.horizontal?"vertical":"horizontal";this._menu=new f.ContextMenu(o?h.reversed(t):t,{orientation:i,prevent_hide:t=>t.target==this.el})}this._hammer=new s.default(this.el,{touchAction:"auto",inputClass:s.default.TouchMouseInput}),this.connect(this.model.change,()=>this.render()),this._hammer.on("tap",t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()}),this._hammer.on("press",()=>this._pressed())}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[…super.styles(),m.default,d.default,p.default]}css_classes(){return super.css_classes().concat(c.bk_toolbar_button)}render(){r.empty(this.el);const t=this.model.computed_icon;_.isString(t)&&(u.startsWith(t,"data:image")?this.el.style.backgroundImage="url(’"+t+"’)":this.el.classList.add(t)),this.el.title=this.model.tooltip,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const{left:e,top:o,right:i,bottom:s}=this.el.getBoundingClientRect(),n=(()=>{switch(this.parent.model.toolbar_location){case"right":return{right:e,top:o};case"left":return{left:i,top:o};case"above":return{left:e,top:s};case"below":return{left:e,bottom:o}}})();null===(t=this._menu)||void 0===t||t.toggle(n)}}o.ButtonToolButtonView=g,g.__name__="ButtonToolButtonView";class v extends l.ToolView{}o.ButtonToolView=v,v.__name__="ButtonToolView";class b extends l.Tool{constructor(t){super(t)}static init_ButtonTool(){this.internal({disabled:[a.Boolean,!1]})}get tooltip(){return this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=b,b.__name__="ButtonTool",b.init_ButtonTool()},n function _(t,e,n){n /! Hammer.JS - v2.0.7 - 2016-04-22n * http://hammerjs.github.io/n *n * Copyright (c) 2016 Jorik Tangelder;n * Licensed under the MIT license */n !function(t,n,i,r){"use strict";var s,o=["","webkit","Moz","MS","ms","o"],a=n.createElement("div"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,n){return setTimeout(y(t,n),e)}function p(t,e,n){return!!Array.isArray(t)&&(f(t,n[e],n),!0)}function f(t,e,n){var i;if(t)if(t.forEach)t.forEach(e,n);else if(void 0!==t.length)for(i=0;i<t.length;)e.call(n,t[i],i,t),i++;else for(i in t)t.hasOwnProperty(i)&&e.call(n,t[i],i,t)}function v(e,n,i){var r="DEPRECATED METHOD: "+n+"\n"+i+" AT \n";return function(){var n=new Error("get-stack-trace"),i=n&&n.stack?n.stack.replace(/^[^\(]+?[\n$]/gm,"").replace(/^\s+at\s+/gm,"").replace(/^Object.<anonymous>\s\(/gm,"{anonymous}()@"):"Unknown Stack Trace",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,i),e.apply(this,arguments)}}s="function"!=typeof Object.assign?function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),n=1;n<arguments.length;n++){var i=arguments[n];if(null!=i)for(var r in i)i.hasOwnProperty(r)&&(e[r]=i[r])}return e}:Object.assign;var d=v((function(t,e,n){for(var i=Object.keys(e),r=0;r<i.length;)(!n||n&&void 0===t[i[r]])&&(t[i[r]]=e[i[r]]),r++;return t}),"extend","Use assign."),m=v((function(t,e){return d(t,e,!0)}),"merge","Use assign.");function g(t,e,n){var i,r=e.prototype;(i=t.prototype=Object.create(r)).constructor=t,i._super=r,n&&s(i,n)}function y(t,e){return function(){return t.apply(e,arguments)}}function T(t,e){return"function"==typeof t?t.apply(e&&e[0]||void 0,e):t}function E(t,e){return void 0===t?e:t}function I(t,e,n){f(S(e),(function(e){t.addEventListener(e,n,!1)}))}function A(t,e,n){f(S(e),(function(e){t.removeEventListener(e,n,!1)}))}function _(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1}function C(t,e){return t.indexOf(e)>-1}function S(t){return t.trim().split(/\s+/g)}function b(t,e,n){if(t.indexOf&&!n)return t.indexOf(e);for(var i=0;i<t.length;){if(n&&t[i][n]==e||!n&&t[i]===e)return i;i++}return-1}function x(t){return Array.prototype.slice.call(t,0)}function P(t,e,n){for(var i=[],r=[],s=0;s<t.length;){var o=e?t[s][e]:t[s];b(r,o)<0&&i.push(t[s]),r[s]=o,s++}return n&&(i=e?i.sort((function(t,n){return t[e]>n[e]})):i.sort()),i}function D(t,e){for(var n,i,r=e[0].toUpperCase()+e.slice(1),s=0;s<o.length;){if((i=(n=o[s])?n+r:e)in t)return i;s++}}var w=1;function O(e){var n=e.ownerDocument||e;return n.defaultView||n.parentWindow||t}var R="ontouchstart"in t,M=void 0!==D(t,"PointerEvent"),z=R&&/mobile|tablet|ip(ad|hone|od)|android/i.test(navigator.userAgent),N=["x","y"],X=["clientX","clientY"];function Y(t,e){var n=this;this.manager=t,this.callback=e,this.element=t.element,this.target=t.options.inputTarget,this.domHandler=function(e){T(t.options.enable,[t])&&n.handler(e)},this.init()}function F(t,e,n){var i=n.pointers.length,r=n.changedPointers.length,s=1&e&&i-r==0,o=12&e&&i-r==0;n.isFirst=!!s,n.isFinal=!!o,s&&(t.session={}),n.eventType=e,function(t,e){var n=t.session,i=e.pointers,r=i.length;n.firstInput||(n.firstInput=W(e));r>1&&!n.firstMultiple?n.firstMultiple=W(e):1===r&&(n.firstMultiple=!1);var s=n.firstInput,o=n.firstMultiple,a=o?o.center:s.center,h=e.center=q(i);e.timeStamp=c(),e.deltaTime=e.timeStamp-s.timeStamp,e.angle=U(a,h),e.distance=L(a,h),function(t,e){var n=e.center,i=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},i=t.offsetDelta={x:n.x,y:n.y});e.deltaX=r.x+(n.x-i.x),e.deltaY=r.y+(n.y-i.y)}(n,e),e.offsetDirection=H(e.deltaX,e.deltaY);var l=k(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=l.x,e.overallVelocityY=l.y,e.overallVelocity=u(l.x)>u(l.y)?l.x:l.y,e.scale=o?(p=o.pointers,f=i,L(f[0],f[1],X)/L(p[0],p[1],X)):1,e.rotation=o?function(t,e){return U(e[1],e[0],X)+U(t[1],t[0],X)}(o.pointers,i):0,e.maxPointers=n.prevInput?e.pointers.length>n.prevInput.maxPointers?e.pointers.length:n.prevInput.maxPointers:e.pointers.length,function(t,e){var n,i,r,s,o=t.lastInterval||e,a=e.timeStamp-o.timeStamp;if(8!=e.eventType&&(a>25||void 0===o.velocity)){var h=e.deltaX-o.deltaX,c=e.deltaY-o.deltaY,l=k(a,h,c);i=l.x,r=l.y,n=u(l.x)>u(l.y)?l.x:l.y,s=H(h,c),t.lastInterval=e}else n=o.velocity,i=o.velocityX,r=o.velocityY,s=o.direction;e.velocity=n,e.velocityX=i,e.velocityY=r,e.direction=s}(n,e);var p,f;var v=t.element;_(e.srcEvent.target,v)&&(v=e.srcEvent.target);e.target=v}(t,n),t.emit("hammer.input",n),t.recognize(n),t.session.prevInput=n}function W(t){for(var e=[],n=0;n<t.pointers.length;)e[n]={clientX:h(t.pointers[n].clientX),clientY:h(t.pointers[n].clientY)},n++;return{timeStamp:c(),pointers:e,center:q(e),deltaX:t.deltaX,deltaY:t.deltaY}}function q(t){var e=t.length;if(1===e)return{x:h(t[0].clientX),y:h(t[0].clientY)};for(var n=0,i=0,r=0;r<e;)n+=t[r].clientX,i+=t[r].clientY,r++;return{x:h(n/e),y:h(i/e)}}function k(t,e,n){return{x:e/t||0,y:n/t||0}}function H(t,e){return t===e?1:u(t)>=u(e)?t<0?2:4:e<0?8:16}function L(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return Math.sqrt(i*i+r*r)}function U(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return 180*Math.atan2(r,i)/Math.PI}Y.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var V={mousedown:1,mousemove:2,mouseup:4};function j(){this.evEl="mousedown",this.evWin="mousemove mouseup",this.pressed=!1,Y.apply(this,arguments)}g(j,Y,{handler:function(t){var e=V[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:"mouse",srcEvent:t}))}});var G={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Z={2:"touch",3:"pen",4:"mouse",5:"kinect"},B="pointerdown",$="pointermove pointerup pointercancel";function J(){this.evEl=B,this.evWin=$,Y.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(B="MSPointerDown",$="MSPointerMove MSPointerUp MSPointerCancel"),g(J,Y,{handler:function(t){var e=this.store,n=!1,i=t.type.toLowerCase().replace("ms",""),r=G[i],s=Z[t.pointerType]||t.pointerType,o="touch"==s,a=b(e,t.pointerId,"pointerId");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(n=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),n&&e.splice(a,1))}});var K={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function Q(){this.evTarget="touchstart",this.evWin="touchstart touchmove touchend touchcancel",this.started=!1,Y.apply(this,arguments)}function tt(t,e){var n=x(t.touches),i=x(t.changedTouches);return 12&e&&(n=P(n.concat(i),"identifier",!0)),[n,i]}g(Q,Y,{handler:function(t){var e=K[t.type];if(1===e&&(this.started=!0),this.started){var n=tt.call(this,t,e);12&e&&n[0].length-n[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}}});var et={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function nt(){this.evTarget="touchstart touchmove touchend touchcancel",this.targetIds={},Y.apply(this,arguments)}function it(t,e){var n=x(t.touches),i=this.targetIds;if(3&e&&1===n.length)return i[n[0].identifier]=!0,[n,n];var r,s,o=x(t.changedTouches),a=[],h=this.target;if(s=n.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r<s.length;)i[s[r].identifier]=!0,r++;for(r=0;r<o.length;)i[o[r].identifier]&&a.push(o[r]),12&e&&delete i[o[r].identifier],r++;return a.length?[P(s.concat(a),"identifier",!0),a]:void 0}g(nt,Y,{handler:function(t){var e=et[t.type],n=it.call(this,t,e);n&&this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:"touch",srcEvent:t})}});function rt(){Y.apply(this,arguments);var t=y(this.handler,this);this.touch=new nt(this.manager,t),this.mouse=new j(this.manager,t),this.primaryTouch=null,this.lastTouches=[]}function st(t,e){1&t?(this.primaryTouch=e.changedPointers[0].identifier,ot.call(this,e)):12&t&&ot.call(this,e)}function ot(t){var e=t.changedPointers[0];if(e.identifier===this.primaryTouch){var n={x:e.clientX,y:e.clientY};this.lastTouches.push(n);var i=this.lastTouches;setTimeout((function(){var t=i.indexOf(n);t>-1&&i.splice(t,1)}),2500)}}function at(t){for(var e=t.srcEvent.clientX,n=t.srcEvent.clientY,i=0;i<this.lastTouches.length;i++){var r=this.lastTouches[i],s=Math.abs(e-r.x),o=Math.abs(n-r.y);if(s<=25&&o<=25)return!0}return!1}g(rt,Y,{handler:function(t,e,n){var i="touch"==n.pointerType,r="mouse"==n.pointerType;if(!(r&&n.sourceCapabilities&&n.sourceCapabilities.firesTouchEvents)){if(i)st.call(this,e,n);else if(r&&at.call(this,n))return;this.callback(t,e,n)}},destroy:function(){this.touch.destroy(),this.mouse.destroy()}});var ht=D(a.style,"touchAction"),ut=void 0!==ht,ct=function(){if(!ut)return!1;var e={},n=t.CSS&&t.CSS.supports;return["auto","manipulation","pan-y","pan-x","pan-x pan-y","none"].forEach((function(i){e[i]=!n||t.CSS.supports("touch-action",i)})),e}();function lt(t,e){this.manager=t,this.set(e)}lt.prototype={set:function(t){"compute"==t&&(t=this.compute()),ut&&this.manager.element.style&&ct[t]&&(this.manager.element.style[ht]=t),this.actions=t.toLowerCase().trim()},update:function(){this.set(this.manager.options.touchAction)},compute:function(){var t=[];return f(this.manager.recognizers,(function(e){T(e.options.enable,[e])&&(t=t.concat(e.getTouchAction()))})),function(t){if(C(t,"none"))return"none";var e=C(t,"pan-x"),n=C(t,"pan-y");if(e&&n)return"none";if(e||n)return e?"pan-x":"pan-y";if(C(t,"manipulation"))return"manipulation";return"auto"}(t.join(" "))},preventDefaults:function(t){var e=t.srcEvent,n=t.offsetDirection;if(this.manager.session.prevented)e.preventDefault();else{var i=this.actions,r=C(i,"none")&&!ct.none,s=C(i,"pan-y")&&!ct["pan-y"],o=C(i,"pan-x")&&!ct["pan-x"];if(r){var a=1===t.pointers.length,h=t.distance<2,u=t.deltaTime<250;if(a&&h&&u)return}if(!o||!s)return r||s&&6&n||o&&24&n?this.preventSrc(e):void 0}},preventSrc:function(t){this.manager.session.prevented=!0,t.preventDefault()}};function pt(t){this.options=s({},this.defaults,t||{}),this.id=w++,this.manager=null,this.options.enable=E(this.options.enable,!0),this.state=1,this.simultaneous={},this.requireFail=[]}function ft(t){return 16&t?"cancel":8&t?"end":4&t?"move":2&t?"start":""}function vt(t){return 16==t?"down":8==t?"up":2==t?"left":4==t?"right":""}function dt(t,e){var n=e.manager;return n?n.get(t):t}function mt(){pt.apply(this,arguments)}function gt(){mt.apply(this,arguments),this.pX=null,this.pY=null}function yt(){mt.apply(this,arguments)}function Tt(){pt.apply(this,arguments),this._timer=null,this._input=null}function Et(){mt.apply(this,arguments)}function It(){mt.apply(this,arguments)}function At(){pt.apply(this,arguments),this.pTime=!1,this.pCenter=!1,this._timer=null,this._input=null,this.count=0}function _t(t,e){return(e=e||{}).recognizers=E(e.recognizers,_t.defaults.preset),new Ct(t,e)}pt.prototype={defaults:{},set:function(t){return s(this.options,t),this.manager&&this.manager.touchAction.update(),this},recognizeWith:function(t){if(p(t,"recognizeWith",this))return this;var e=this.simultaneous;return e[(t=dt(t,this)).id]||(e[t.id]=t,t.recognizeWith(this)),this},dropRecognizeWith:function(t){return p(t,"dropRecognizeWith",this)||(t=dt(t,this),delete this.simultaneous[t.id]),this},requireFailure:function(t){if(p(t,"requireFailure",this))return this;var e=this.requireFail;return-1===b(e,t=dt(t,this))&&(e.push(t),t.requireFailure(this)),this},dropRequireFailure:function(t){if(p(t,"dropRequireFailure",this))return this;t=dt(t,this);var e=b(this.requireFail,t);return e>-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,n=this.state;function i(n){e.manager.emit(n,t)}n<8&&i(e.options.event+ft(n)),i(e.options.event),t.additionalEvent&&i(t.additionalEvent),n>=8&&i(e.options.event+ft(n))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=32},canEmit:function(){for(var t=0;t<this.requireFail.length;){if(!(33&this.requireFail[t].state))return!1;t++}return!0},recognize:function(t){var e=s({},t);if(!T(this.options.enable,[this,e]))return this.reset(),void(this.state=32);56&this.state&&(this.state=1),this.state=this.process(e),30&this.state&&this.tryEmit(e)},process:function(t){},getTouchAction:function(){},reset:function(){}},g(mt,pt,{defaults:{pointers:1},attrTest:function(t){var e=this.options.pointers;return 0===e||t.pointers.length===e},process:function(t){var e=this.state,n=t.eventType,i=6&e,r=this.attrTest(t);return i&&(8&n||!r)?16|e:i||r?4&n?8|e:2&e?4|e:2:32}}),g(gt,mt,{defaults:{event:"pan",threshold:10,pointers:1,direction:30},getTouchAction:function(){var t=this.options.direction,e=[];return 6&t&&e.push("pan-y"),24&t&&e.push("pan-x"),e},directionTest:function(t){var e=this.options,n=!0,i=t.distance,r=t.direction,s=t.deltaX,o=t.deltaY;return r&e.direction||(6&e.direction?(r=0===s?1:s<0?2:4,n=s!=this.pX,i=Math.abs(t.deltaX)):(r=0===o?1:o<0?8:16,n=o!=this.pY,i=Math.abs(t.deltaY))),t.direction=r,n&&i>e.threshold&&r&e.direction},attrTest:function(t){return mt.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=vt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(yt,mt,{defaults:{event:"pinch",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?"in":"out";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(Tt,pt,{defaults:{event:"press",pointers:1,time:251,threshold:9},getTouchAction:function(){return["auto"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance<e.threshold,r=t.deltaTime>e.time;if(this._input=t,!i||!n||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return 32},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+"up",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Et,mt,{defaults:{event:"rotate",threshold:0,pointers:2},getTouchAction:function(){return["none"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(It,mt,{defaults:{event:"swipe",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return gt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,n=this.options.direction;return 30&n?e=t.overallVelocity:6&n?e=t.overallVelocityX:24&n&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&n&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=vt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(At,pt,{defaults:{event:"tap",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return["manipulation"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance<e.threshold,r=t.deltaTime<e.time;if(this.reset(),1&t.eventType&&0===this.count)return this.failTimeout();if(i&&r&&n){if(4!=t.eventType)return this.failTimeout();var s=!this.pTime||t.timeStamp-this.pTime<e.interval,o=!this.pCenter||L(this.pCenter,t.center)<e.posThreshold;if(this.pTime=t.timeStamp,this.pCenter=t.center,o&&s?this.count+=1:this.count=1,this._input=t,0===this.count%e.taps)return this.hasRequireFailures()?(this._timer=l((function(){this.state=8,this.tryEmit()}),e.interval,this),2):8}return 32},failTimeout:function(){return this._timer=l((function(){this.state=32}),this.options.interval,this),32},reset:function(){clearTimeout(this._timer)},emit:function(){8==this.state&&(this._input.tapCount=this.count,this.manager.emit(this.options.event,this._input))}}),_t.VERSION="2.0.7",_t.defaults={domEvents:!1,touchAction:"compute",enable:!0,inputTarget:null,inputClass:null,preset:[[Et,{enable:!1}],[yt,{enable:!1},["rotate"]],[It,{direction:6}],[gt,{direction:6},["swipe"]],[At],[At,{event:"doubletap",taps:2},["tap"]],[Tt]],cssProps:{userSelect:"none",touchSelect:"none",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}};function Ct(t,e){var n;this.options=s({},_t.defaults,e||{}),this.options.inputTarget=this.options.inputTarget||t,this.handlers={},this.session={},this.recognizers=[],this.oldCssProps={},this.element=t,this.input=new((n=this).options.inputClass||(M?J:z?nt:R?rt:j))(n,F),this.touchAction=new lt(this,this.options.touchAction),St(this,!0),f(this.options.recognizers,(function(t){var e=this.add(new t[0](t[1]));t[2]&&e.recognizeWith(t[2]),t[3]&&e.requireFailure(t[3])}),this)}function St(t,e){var n,i=t.element;i.style&&(f(t.options.cssProps,(function(r,s){n=D(i.style,s),e?(t.oldCssProps[n]=i.style[n],i.style[n]=r):i.style[n]=t.oldCssProps[n]||""})),e||(t.oldCssProps={}))}Ct.prototype={set:function(t){return s(this.options,t),t.touchAction&&this.touchAction.update(),t.inputTarget&&(this.input.destroy(),this.input.target=t.inputTarget,this.input.init()),this},stop:function(t){this.session.stopped=t?2:1},recognize:function(t){var e=this.session;if(!e.stopped){var n;this.touchAction.preventDefaults(t);var i=this.recognizers,r=e.curRecognizer;(!r||r&&8&r.state)&&(r=e.curRecognizer=null);for(var s=0;s<i.length;)n=i[s],2===e.stopped||r&&n!=r&&!n.canRecognizeWith(r)?n.reset():n.recognize(t),!r&&14&n.state&&(r=e.curRecognizer=n),s++}},get:function(t){if(t instanceof pt)return t;for(var e=this.recognizers,n=0;n<e.length;n++)if(e[n].options.event==t)return e[n];return null},add:function(t){if(p(t,"add",this))return this;var e=this.get(t.options.event);return e&&this.remove(e),this.recognizers.push(t),t.manager=this,this.touchAction.update(),t},remove:function(t){if(p(t,"remove",this))return this;if(t=this.get(t)){var e=this.recognizers,n=b(e,t);-1!==n&&(e.splice(n,1),this.touchAction.update())}return this},on:function(t,e){if(void 0!==t&&void 0!==e){var n=this.handlers;return f(S(t),(function(t){n[t]=n[t]||[],n[t].push(e)})),this}},off:function(t,e){if(void 0!==t){var n=this.handlers;return f(S(t),(function(t){e?n[t]&&n[t].splice(b(n[t],e),1):delete n[t]})),this}},emit:function(t,e){this.options.domEvents&&function(t,e){var i=n.createEvent("Event");i.initEvent(t,!0,!0),i.gesture=e,e.target.dispatchEvent(i)}(t,e);var i=this.handlers[t]&&this.handlers[t].slice();if(i&&i.length){e.type=t,e.preventDefault=function(){e.srcEvent.preventDefault()};for(var r=0;r<i.length;)i[r](e),r++}},destroy:function(){this.element&&St(this,!1),this.handlers={},this.session={},this.input.destroy(),this.element=null}},s(_t,{INPUT_START:1,INPUT_MOVE:2,INPUT_END:4,INPUT_CANCEL:8,STATE_POSSIBLE:1,STATE_BEGAN:2,STATE_CHANGED:4,STATE_ENDED:8,STATE_RECOGNIZED:8,STATE_CANCELLED:16,STATE_FAILED:32,DIRECTION_NONE:1,DIRECTION_LEFT:2,DIRECTION_RIGHT:4,DIRECTION_UP:8,DIRECTION_DOWN:16,DIRECTION_HORIZONTAL:6,DIRECTION_VERTICAL:24,DIRECTION_ALL:30,Manager:Ct,Input:Y,TouchAction:lt,TouchInput:nt,MouseInput:j,PointerEventInput:J,TouchMouseInput:rt,SingleTouchInput:Q,Recognizer:pt,AttrRecognizer:mt,Tap:At,Pan:gt,Swipe:It,Pinch:yt,Rotate:Et,Press:Tt,on:I,off:A,each:f,merge:m,extend:d,assign:s,inherit:g,bindFn:y,prefixed:D}),(void 0!==t?t:"undefined"!=typeof self?self:{}).Hammer=_t,"function"==typeof define&&define.amd?define((function(){return _t})):void 0!==e&&e.exports?e.exports=_t:t.Hammer=_t}(window,document)},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1).__importStar(t(18)),o=t(71),s=t(9),a=t(81);class r extends o.View{get plot_view(){return this.parent}get plot_model(){return this.parent.model}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>{this.model.active?this.activate():this.deactivate()})}activate(){}deactivate(){}}i.ToolView=r,r.__name__="ToolView";class _ extends a.Model{constructor(t){super(t)}static init_Tool(){this.prototype._known_aliases=new Map,this.internal({active:[n.Boolean,!1]})}get synthetic_renderers(){return[]}_get_dim_tooltip(t,e){switch(e){case"width":return t+" (x-axis)";case"height":return t+" (y-axis)";case"both":return t}}_get_dim_limits([t,e],[i,n],o,a){const r=o.bbox.h_range;let _;"width"==a||"both"==a?(_=[s.min([t,i]),s.max([t,i])],_=[s.max([_[0],r.start]),s.min([_[1],r.end])]):_=[r.start,r.end];const l=o.bbox.v_range;let c;return"height"==a||"both"==a?(c=[s.min([e,n]),s.max([e,n])],c=[s.max([c[0],l.start]),s.min([c[1],l.end])]):c=[l.start,l.end],[_,c]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[…this.prototype._known_aliases.keys()];throw new Error(unexpected tool name ‘${t}’, possible tools are ${e.join(", ")})}}}i.Tool=_,_.__name__="Tool",_.init_Tool()},n function _(o,b,t){Object.defineProperty(t,"__esModule",{value:!0}),t.bk_toolbar="bk-toolbar",t.bk_toolbar_hidden="bk-toolbar-hidden",t.bk_toolbar_button="bk-toolbar-button",t.bk_button_bar="bk-button-bar",t.bk_toolbar_button_custom_action="bk-toolbar-button-custom-action"},n function _(o,b,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-toolbar-hidden {\n visibility: hidden;\n opacity: 0;\n transition: visibility 0.3s linear, opacity 0.3s linear;\n}\n.bk-root .bk-toolbar,\n.bk-root .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: center;\n -webkit-align-items: center;\n user-select: none;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n}\n.bk-root .bk-toolbar .bk-logo {\n flex-shrink: 0;\n -webkit-flex-shrink: 0;\n}\n.bk-root .bk-toolbar.bk-above,\n.bk-root .bk-toolbar.bk-below {\n flex-direction: row;\n -webkit-flex-direction: row;\n justify-content: flex-end;\n -webkit-justify-content: flex-end;\n}\n.bk-root .bk-toolbar.bk-above .bk-button-bar,\n.bk-root .bk-toolbar.bk-below .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-toolbar.bk-above .bk-logo,\n.bk-root .bk-toolbar.bk-below .bk-logo {\n order: 1;\n -webkit-order: 1;\n margin-left: 5px;\n margin-right: 0px;\n}\n.bk-root .bk-toolbar.bk-left,\n.bk-root .bk-toolbar.bk-right {\n flex-direction: column;\n -webkit-flex-direction: column;\n justify-content: flex-start;\n -webkit-justify-content: flex-start;\n}\n.bk-root .bk-toolbar.bk-left .bk-button-bar,\n.bk-root .bk-toolbar.bk-right .bk-button-bar {\n display: flex;\n display: -webkit-flex;\n flex-direction: column;\n -webkit-flex-direction: column;\n}\n.bk-root .bk-toolbar.bk-left .bk-logo,\n.bk-root .bk-toolbar.bk-right .bk-logo {\n order: 0;\n -webkit-order: 0;\n margin-bottom: 5px;\n margin-top: 0px;\n}\n.bk-root .bk-toolbar-button {\n width: 30px;\n height: 30px;\n cursor: pointer;\n background-size: 60% 60%;\n background-origin: border-box;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .bk-toolbar-button:hover {\n background-color: rgba(192, 192, 192, 0.15);\n}\n.bk-root .bk-toolbar-button:focus {\n outline: none;\n}\n.bk-root .bk-toolbar-button::-moz-focus-inner {\n border: 0;\n}\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button {\n border-bottom: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button.bk-active {\n border-bottom-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button {\n border-top: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button.bk-active {\n border-top-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button {\n border-left: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button.bk-active {\n border-left-color: #26aae1;\n}\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button {\n border-right: 2px solid transparent;\n}\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button.bk-active {\n border-right-color: #26aae1;\n}\n.bk-root .bk-button-bar + .bk-button-bar:before {\n content: " ";\n display: inline-block;\n background-color: lightgray;\n}\n.bk-root .bk-toolbar.bk-above .bk-button-bar + .bk-button-bar:before,\n.bk-root .bk-toolbar.bk-below .bk-button-bar + .bk-button-bar:before {\n height: 10px;\n width: 1px;\n}\n.bk-root .bk-toolbar.bk-left .bk-button-bar + .bk-button-bar:before,\n.bk-root .bk-toolbar.bk-right .bk-button-bar + .bk-button-bar:before {\n height: 1px;\n width: 10px;\n}\n’},n function _(A,g,C){Object.defineProperty(C,"__esModule",{value:!0});C.default=’\n.bk-root .bk-tool-icon-copy-to-clipboard {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUSDBoBvcHQeQAAAG9JREFUWMNjXLhsJcNAAiaGAQYwB/xHwh/Q+ITEkfHQCwEWND4jmeb8H/JpgBwfI6cNBhLSEkqaGXRpgFRAcZoZsmlg1AGjDhh1wKgDRh0w6gCaVcf/R2wIkNqw+D9s0wADvUNiyIYA47BJAwPuAAAj/Cjd0TCN6wAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-replace-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxokK3gniQAAAHpJREFUWMNjXLhsJcNAAiaGAQajDhhwB7DgEP+PxmeksvjgDwFcLmYkUh2hkBj8IcBIZXsYh1w2/I8v3sgAOM0bLYhGc8GgrwuICgldfQO88pcvXvg/aOuCUQeM5oLRuoCFCJcTbOMh5XOiW0JDNhdQS3y0IBp1ABwAAF8KGrhC1Eg6AAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-append-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkZWD04WwAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAoUlEQVRYw+1WQQ6AIAwrhO8Y/bIXEz9jIMSDr8ETCUEPQzA4pMeFLKNbu4l5WR0CDOMEALBGIzMuQIBEZQjPgP9JLjwTfBjY9sO9lZsFA9IafZng3BlIyVefgd8XQFZBAWe8jfNxwsDhir6rzoCiPiy1K+J8/FRQemv2XfAdFcQ9znU4Viqg9ta1qYJ+D1BnAIBrkgGVOrXNqUA9rbyZm/AEzFh4jEeY/soAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-intersect-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkrkOpp2wAAAPhJREFUWMPtV1EKwjAMTUavI3oawR/vtn5srJdREfzwMvHHQlcT2mpdMzFfWxiP5r2+JMN+mAiCOB72CABgR1cln4oOGocJnuMTSxWk8jMm7OggYkYXA9gPE3uyd8NXHONJ+eYMdE/NqCJmEZ5ZqlJJ4sUksKN7cYSaPoCZFWR1QI+Xm1fBACU63Cw22x0AAJxudwrffVwvZ+JmQdAHZkw0d4EpAMCw8k87pMdbnwtizQumJYv3nwV6XOA1qbUT/oQLUJgFRbsiNwFVucBIlyR3p0tdMp+XmFjfLKi1LatyAXtCRjPWBdL3Ke3VuACJKFfDr/xFN2fgAR/Go0qaLlmEAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-subtract-mode {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxgsF5XNOQAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAABFUlEQVRYw9VWUQqDMAxNpWfxQxD1MoP97G7zQ5mH2RTZYLtM9lWoMbXtxLXNX4OG9r28l4hrd0PQoqxqAACYpxH25C/nkwCHyCBwSPoS09k1T5Fo+4EiExcC4v584xGFmyIXHBLRISAVZyZufUPVa4rcrwmPDgr93ylo+2GliLRUYHK6th/o/6r7nfLpqaCsagEA8Hh9FmcNKeRmgeYDC+SCq0B6FFi8/BcV6BdR9cL3gCv3ijPKOacsn3rBEcjmaVxpfGcg4wHxzgJJnc6241Hn23DERFRAu1bNcWa3Q0uXi62XR6sCaWoSejbtdLYmU3kTEunNgj0bUbQqYG/IcMaqwPS9jftoVCAQ0ZVDJwf0zQdH4AsyW6fpQu4YegAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-clear-selection {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUGEhcuan3d3wAAAoRJREFUWMPtlzFP3EAQhd+b3TNSzg0N5TWXLkJQUUaKhIQ4fgP/g5ArrriE/I3opEgRrZtIVJR0FJQ010SioUmEZHtnUpwN9gWHGA5BJCy58MraffvmfZ41v3z9hqe8BE98vQh4cgG+Ydzmnrng8efvQJNi/uN7dznx/B3ggtfhf4ehNdUttRzBDIm/2VTiiWCG1HK0nc+3UWtq8BQIiEEakEQOADBIA4QCQmBqoHBhFNR27ikQSmGdYCdTqCpEHMDZmEKRWUBEv1gBDg5SzRJnpopILWICgWuRYflLamuzxB2BmtYqSRIka5VWU8QduXO+1hRc5YZu5GAwmP2ZJzND0IBu5HCV2+NQcAhAVRsnC2IbPzPdSjzd6to6VtfWkXi6YLaVWr7xoAwkfpb8MnC3SH7rKSMBe4M0jA/OTicFIbtCGRIyNbURhcf3ErCd6YwA1m0HgAxhw1NGQnlXBHG4kylVlSJuH0RfIP2CkL2I/qS1gIAAQiBl1QwFggIHtyxgrxK5PgyfC0JWKoT0HLh8LwoietB4TYKaIl7yeNURxB05UtMxDOcVQlZIrlRKdK6m47gjR/fuBRQihyLArtNeJD50Izcx2Eczu7iFkIug4VM3cpOr3MKDekFED0fWUHv9Zq0kpLnridjhY3XDg7NTN0jDrhO3X7O9Wg7wwyANu4mnayNg3gmbu0tCNoUyBNGv2l4rB9EXynA7082FOxAQLhU6rQVO9T2AvWowFToNCJcPORGxIRcnpjZSKATSU9NxvOQnAPArDSaQoUKnNI4iufkGtD4P3EHIcWZhz4HLceSOyrR3Izf5memPAL2cX3yhAkonysZVaWLBkd9dw1Ivv2a/AYPkK+ty1U1DAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-box-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg0kduFrowAAAIdJREFUWMPtVtEKwCAI9KL//4e9DPZ3+wP3KgOjNZouFYI4C8q7s7DtB1lGIeMoRMRinCLXg/ML3EcFqpjjloOyZxRntxpwQ8HsgHYARKFAtSFrCg3TCdMFCE1BuuALEXJLjC4qENsFVXCESZw38/kWLOkC/K4PcOc/Hj03WkoDT3EaWW9egQul6CUbq90JTwAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-box-zoom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg82t254aQAAAkBJREFUWMPN11+E1FEUB/DPTFn2qaeIpcSwr5NlUyJiKWVXWUqvlUh/iE3RY9mUekkPPURtLKNRrFJEeuphGfUUaVliiX1aVjGs6aG7+XX9ZnZ+d2fTl2vmnHvPPfeee/79Sk+may2/UQq/q7Qu+bAJoxjHIKqB/wlfUMcMVqI9bLZ+DGIKwzlzQ2GcxCx2xwvKOUKlaHTiX8bHNspjDONHkOmJBW5jIof/FvPh/06MZOb6cRc7cGn1AKUE5cdzlM/gAr5F/O24H3xkFRfxAbVygvK+cIsspjGWo1zgjeFpxL+BvnLw7laBA4xjIFJwrgu52DoVjKdY4HBEX8dSF3JLYe1fe6UcYCii3xWQjdfuSTnAtoheKCC7GNED5Zx4L4qt61jbTLHA94geKSC7P7ZeShQ0Inoi1IJuEOeORooFXkV0FZNdZs5qvFfKAeqYy7nZ6yg//HG0MBfffh71lFrQDCW2EvEP4mt4okZUDftz9rmGZkotmMxJRtlisy+MTniAWrty3AlXw0hFM2TD89l+oNsoOJXjbIs4EpqNtTCLXbiZ0g+M4mFObj8U3vsNjoZCVcmk60ZwthpepLZkB/AsivWfOJZxtpUQHfWib7KWDwzjeegBZJSdKFiE2qJTFFTwElsi/unQ/awXrU4WGMD7nOJxBY/1EO2iYConq93CHT1GOwucjdqnRyFz+VcHmMNefMY9nNkA3SWUOoXhQviSWQ4huLIRFlirFixnQq/XaKXUgg2xQNGv4V7x/RcW+AXPB3h7H1PaiQAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-zoom-in {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsUBmL8iQAAA2JJREFUWMO9l12IlFUYx3//MzPrLpSjkm5oN4FFIWVEl66IQlFYwtLOzozsjHdGRSCRF0sfBEXRVV0FQuQiLm5CZNBFgRRaRLVFhbJ2EdiN5gbK7toObTPn6eYdPTvNzPvOBz5Xh/ec5/n/n89zXtEHmZqeSXSuXBz/3zfdKvBWJHQrwZuRcP0El+QkbQXeBX6WZEgm6TtJk5lM5o4Lc+cV6qpf4Ga20Tm338zeATItVK9Ker6yvPzp4NDQ3+XieGsCU9MzTYumGbhz7m4ze9/MHgvBgItACrgfGAj2jgAvAYs3wlEujjc13kii8YyZrXXOfWhmo9GnFUlvOOemarVapVqtkslksmb2KjARqL62ecuWN9NxbRInzrldAXhV0uFSIfdew7G/gNLU9MwS8CwSmE3Oz88fcXG5blfpqVRq0Ix8VIAAX0XgrVL7HDCHGcCaWrV60LUBN8Dae58aQIxEqcA592I9M610JL0cpG/U9TIHJNKY3RV5z0R+7Nd4HZ0P1g/2RMBuegLAsRMnb4vT8d5vqKfMzOgtAlADrkmqGywmiMBTwfr3dC9j1Xv/r6Tvg/5/5ejxE6cO7M9faVbQZrYNOFSPmqQvVo9FKexvi5uWX58943aM7DwAfBDY+FbSCxP5sdkGx55GeguzrUEXPaSo2pFkAbiSZQCAzZJOmdkjwd6SpB/M7KykQTPbA2wDhoIzRzcNDx9MJwGNIXdJ0mEzmwbujL7dbma7gd03A7lKfnTOvf74nl0r6bonTUbujRSUCrm2d4L3/kvn3JPe+8+BDW2i9o+kT7z3kxP5sYsA6W47oE64TsR7P9tQL4vA2mh9WdIscKxUyJ0M7aR7acOGzikD65EQLEjaa2ZXzMwDFeB6qZBbbLTRE4EGeSaozNOZgYFf8qP7lmIvs354n0qlHpB0T7B9Ogl4IgJJrmjv/SiQjbrkD+BMUkfSbYATPdckrTOzkciWAXOlQu5cYgLdPEIapud9wMOR9zVJH3ViKx333mtHMJvNuoWFhZ3A+ojMcja77njXBEKwJJfTcqUyCIQ34Mf7nnh0paMnXacFuGoC1mr3AtuDfLzd8Zuyl+rfuGn4HLAD+Az4qZQf+61TAj0Noj8vX6oC35SL43u7teG6rf5+iXppwW7/JUL5D03qaFRvvUe+AAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-zoom-out {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsHgty9VwAAA0FJREFUWMO9l09oXFUUxn/fmXlpItppi22k7UJBRSlVkCytSAuKUloIdjKT0El3FXVXdVFKRVAQV7qQohsNwdA0UFvBhYtqUVyIVlRaogtFQVq7qSTVjA3z3nHzBq/jvPmTN/Ss7rv3nvN99/y794kByMzcfE/7picn/jenmwWeRUI3E7wdCRskuCSTdDfwBvCtJEdySV9KOhpF0e0/LF5SqKtBgbv7ZjObcvfXgShD9Zqk5+orKx8Oj4z8NT05kU1gZm6+bdK0Azezu9z9hLs/HoIBvwAF4H5gKFh7B3gBWFY3460kWve4+3oze9fdx9OpVUmvmNlMHMf1RqNBFEUldz8OHAxUX9q6bduryut+Sfvc/Wz62ZD0fK1afjND9y3gGSRwv1GMojstTxUUCoVhdyopEYDzKXjWwZ4FFnEHWBc3Goet00m7lZlZYQixKw0FZnakGZksHUnHgvCN5/KARBH37enpOVg58H13HV0Kxg/kIuD/ngSA2ZMLt3bTSZJkUzNk7k4+D0AM/CGpaXCyBw/sC8Y/qZd2GpZiuL9YLN4Sx/HpoP5/c/exQ1OVq+1yyt13SLoArEsJnMjlgfOffvK3u58Kprab2QezJxfG2iTzUzI70wRPG9jbmpmb95SNB9mpzp7/j2yVdNbdx4K565K+cvfPJQ27+x5gBzAS7Hlvy+jo4WIvoC3kWpcvS3rR3eeAO9K529x9N7C7zX6AC2b28hN7Hl1Vt44niVq13LUjmtlYkiQfA5s6eO+GpDNJkhw9NFX5ueNt2ARodyF1IHIN2JiOl4H16fiKpK+B2Vq1vBAqFAf4IJkGNiIhWJK0192vunsC1IE/a9XycquNXARa5OnApeeioaHvKuP7r3dTGsiLqFAo7JR0T7B8rhfwXARa2us4UEqr5Ffgs151i/08oTNKdIO770ptObBYq5Yv5ibQq/sl3Qc8lJ4+lnSqH1vFfp9koZRKJVtaWnqkWXqSVkqlDe+vmUDWpZMlK/X6MBDegKf3P/nYaj8ErN9fqZBYEsf3Ag8G8Xit33BaniTcvGX0IvAw8BHwTa1y4Md+CeRqRL9fudwAvpienNi7Vhu21uwflOT+L+i1X2TJP57iUvUFtHWsAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-help {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABltpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPHRpZmY6Q29tcHJlc3Npb24+NTwvdGlmZjpDb21wcmVzc2lvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzI8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMzIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDNDIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMTIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDMjIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPGRjOnN1YmplY3Q+CiAgICAgICAgICAgIDxyZGY6U2VxLz4KICAgICAgICAgPC9kYzpzdWJqZWN0PgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxNjoxMToyOCAxMToxMTo4MjwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+UGl4ZWxtYXRvciAzLjY8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cphjt2AAAAT7SURBVFgJxRdbaFxFdGb2bhui227BWrsVKYgf2kJUbP9EUPuzEB803WTXJjH61Q/7Ya1+CMYKEVTsh4J/EpvY7BoabUiNiA8s1p+4KIhpoUUEselHqyS76TbZ3HuP58ydc3d2u4+IkQxczpz3mZkzZ86VYpXjvenpjZsLhUcliE4AuUuASAgptmt1EFdwPiclzIIUUwubNn17OJlcXo1p2UpodHRiux9xB1Eug1+slbzhFxGOKc851tu7/0oznYYBDA8Pt0U2tL8KQryIq2tvZqQhD0QJHRz3yqWhgYGBpXpydQMwqz6NCnurleCSADkJEfgKfOePqL80R/wV1ZaQyr1LenKfkPCkEPKeaj0xg7vxVL3duCmA0Vyuw/fl52hgBxsBED+h4Cv9z3R/zbRm8MTJTx7HQN7GQB6w5C4L4SX7M5lfLBpurjXMyvNIShiyi0l1pL8n9b7EDGPR8fHxzSsQ6XDB3618/xqo6Pk25V5MpVJllgHM1BO58RdQ612kOYZ+GXdij70TYQB05mpj+1kU5G2fB+l3PZtOf8NGx6ambnMXb3yAxg8wjSEG6OKKR9oicBQD+ZvpH2Wzj0lQpxCPG9qMv1x6hHNCsSAlHM7ZOa682vlI9tRDbvHGbD3nZAPpDoD/3JIrLpAs26UFkC3EMUA99hpfGtEBfJjNJnS2Gwnadnvl+Xw+iuc3DAJuNyIaSCHpilVldyDjjUxj3WDZIAhxhHHyRcdNuA7AAfUaXzVKODpzFiZ4/uLvh5G+m2no+C/pyIf7MqlEJB7bpqR6nXkEUfbeawuLaZsW2ISfNQ2vtaktQlGFQyIVGT0o2+2EC4iQNGwjBIN9qdQ5Qg4mk4X4rW3vCClLtowE2FOFUxKDfNmiZci3ovKKRFPh4FK9q4Zbdr+lKKJiA13TcHR2dmLBgdmQ0GAS2MZaEowY+XbAk09IvgtYZGp16SyvFhaHcIUh645t8T9DBCcnz5zZ4hZLu3DzK2QlL1QQa0Y+pHiJKPSuOGj3PmZTheM5w2TwqBxnvBZOTk7G5gvXJ5Aelms8wnJURL+olSWcfEhf6gDoUXPMq6ZlqbzWU2pE+3hi4s6F68tfIj9cBMlikr7Z0/P0b/X0yIcUXsDCF1WhtL4OROHaXk+xlkbV0Cu732Nmhc4peaWSg73pA8dq5RkvO37ldUTfXCKZv2q45MkhvG87WQEzpCCUSvV1d9GONBy3lMvgKSwrZig8gjAietWY0QriylO2jIo4yVbOSb7KB/qmI9BPKjHpSSXYauRyn92Nq9/Kcrj13x3s3v8D481glQ/0raiNYgX9njPSBOImbrHZePl+tfFmc9sH+Xaoh8NjOKSVdDMhjjYzQLy+dFceH5+IJQf9VYXX4tROg4ZFU8m31M3mfPEqUoJqCGJfvWpo2xnNfdrhC28n06SCeSzNZxlvBINGRXCtKS7EY1uV6V7HWAm38y1cXaXsMcOCvr9ySPj+af7A1U2HJXHzVNvUXVLIGyPf+jV0pf8GHoN+TLAyPkidTCi2RpPApmnR0Bd1zGRaB/B8Oj2HSw7LLbVR1MmskW8RdEWVXSJf3JbpAMgRtc4IZoxTh9qotQjCasm46M0YX9pV1VmbpvRH5OwwgdRtSg2vKaAz/1dNKVtb17Y8DCL4HVufHxMOYl1/zTgIgiYvBnFKfaNp3YjTdPz3n9Na8//X7/k/O1tdwopcZlcAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-hover {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4oVHp0SwAAAQJJREFUWMPtlsENgzAMRb8RQ5VJItFDOgaZAMaAA0iZpN3KPZSoEEHSQBCViI/G8pfNt/KAFFcPshPdoAGgZkYVVYjQAFCyFLN8tlAbXRwAxp61nc9XCkGERpZCxRDvBl0zoxp7K98GAACxxH29srNNmPsK2l7zHoHHXZDr+/9vwDfB3kgeSB5IHkgeOH0DmesJjSXi6pUvkYt5u9teVy6aWREDM0D0BRvmGRV5N6DsQkMzI64FidtI5t3AOKWaFhuioY8dlYf9TO1PREUh/9HVeAqzIThHgWZ6MuNmC1jiL1mK4pAzlKUojEmNsxcmL0J60tazWjLZFpClPbd9BMJfL95145YajN5RHQAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-crosshair {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADEUlEQVRYR81XXVIaQRCeHqug8CXmBNETaE4gniDwIgpVspxAbxC9ATkBkCpQ8gKeQDiB5AQxNyAvUlrldr7eHxyGXZi1rMJ5opbp7m++7un+htSGF204vsoMoNXrlzSpfWa1oxQfhAegCZGaEtPorHo8znIoJwCt6+td8uk7ApUQCIHTF4BNAWzImq8ap6cP68CsBdDp9i9ZqXM7ML79g/EnCWD+jgMKENKqWT+tXK0CkQqgNRjs0OxpQIqKhoMxaG6/6JeRnK7T6yO2UvVqhYSlLX+ryORfgKn9ORDFIy7ky41yGcwsr0QAQfDH5zucOswx819fs4egI9OFCcD8DjBF7VNbEX0JzdWEt3NHSSASAcCxBDqMgt/623kvyTgNgNjJIfTjk4D4FqaJR1715MjmYAmA5Bx3AwUXQL+t105KaTlcBSC26XRvhjEIoLiq1yqXpr8FAGG16/ug4IT27fxBWu7EiQuAiImJpEMKE6nYM30uAIDDttSUOPfJP7JzbjPhAiBIh9QE67vIvoOi9WJfCwDavf40ulpjbCqmUf+W753ezURuh7Dg1SqflwAEHU6pgfyBq9Y4qx0LG++2fnZ/eUzcstmdM2AWH+jfc+liWdBJfSENf8Lifi3GVwC9mybOfi5dzatWVrbbLIHNva8p5h/16gkaFiLGGxbufkoE6XguwePiXLF3XmMfCUCUAqtKXU7sumd1CowOuJEi3Pg1FBpjitIGhyvVSfvmjci6ZR+rFQfDiPVE2jFYeICQ+PoewwjC5h7CZld6DBdyu6nDSKgzOyIMhmhK5TTqXYbRorZYM46TmpKAAOrGWwSJJekSB1yqJNOzp1Gs7YJ0EDeySDIMtJbQHh6Kf/uFfNFZkolJICRmz0P8DKWZuIG2g1hpok+Mk0Qphs0h9lzMtWRoNvYLuVImUWrmPJDlBKeRBDfATGOpHkhw670QSHWGLLckmF1PTsMlYqMJpyUbiO0weiMMceqLVTcotnMCYAYJJbcuQrVgZFP0NOOJYpr62pf3AmrHfWUG4O7abefGAfwH7EXSMJafOlYAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-lasso-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgwlGP1qdAAABMBJREFUWMO9V1uIVVUY/r61z57ZMx4DnbzgkbQXL5iCJphlWdpIGY4jpFBkEiU9ZNaDRRcITcIwMwgxoQtU2IMXdAZfMjFvpERXYiSbysyBEXFmyuHMnLP32uvrwT2xnY5nxvHQ93Jg7fWv71/r//7L4a59TRgqJk+Z6v3a+sv0OI5nk5wu6VaSVZImAThHsgjgrKTvM5nMUWvtmf5n8HodCIKgOgzDhc65pSTrJQWDsSNpJX1ljHnDOfdT37oZLLHv+8OMMasKhcIJ59xHAJYMlhwAJGUAzJfUTHLFuFzOG5QDU6dNMyQfs9Yedc5tBpAD4IYYNQGoBrDtQnt7/b0LFrJsCHzfn2itfQfAnZLiazytA3AaQAuAiwDaEgeNpGkkswAWSBqRONB38b88z5uTKePt6iiKXkk8jq+iJC5LOmiMaTLGHLPWhmWeHr7vV0dRtATAapAzIVmSo51zyzIlbm2stesFPA6pKk0r6Ryg93y/ek8YFvPOOTg3cDSiKCoC2OP7/rEoirYm4rUkF12lAWNM1lr7lqQn0+QA8gI2jBg5cj6Aj8OwmB+KAKIoukhyp6SRJAUgl0ndPLDWPi9pJQCbuviXvu+/GIZhW1dnJ24UJFuTjCCA2ADA8sYGWmsXS3qmL94kDYAtkh4Nw7ANlQJ5U6INT1KrAYC9zQdykl7nFSj5fXp5Y8NWVBhy7mUAjqShMYdMXV2dJ2klyRwAJ8lIeuGWCRMP7N7frEqSG2OmAFhKshNAp5wrmO7u7jEAngPQm1S2z2pqapr+OPt7XEly0oxwzq2RdFmSD2AMgKKJouhhAL4kA+Cs53l7e3t7uytJHgRBreTWkXwkKVJnJD0B4GAGwIJE9R6AFufc6UqSZ7PZbD6ff5dkA4CQZEHSqwAOISmXtwGIE+F1SeqqIP8d+Xz+C0mLJYWSAODteXffczjdDQNJ0BWMCoLg5gqIbRTJNwHsljQhUb0luWPM2LE7Thw/9m/5NCT/TByxAOYWi8X6/gdWV1dnfN8fNRBxJpMZTXKdc+6IpFVJWAEgkvSJpA0X2tvtVTaSjgOYBCAEEADYSHK87/sfhmEYA9gShuEDkgzJHyWtB/B1irQ2juP7ADxkrX0wOUOpzmdpzEY590HJ7Ni1r2kSyZOSiv2+hSRjSTXp/QAukzySNJOJkmalyNIl10hqMcasdc61XDNcQRD8BnITgNp+36r6kfcNFMMlLQGwTNLMEuQGQBfJl2bdPru+HDkAZAqFQux53jZHEsC6aw0eg2gylNRBcqcx5v04ji999+03AwsWAOI4Lsy9a94WkisAnE5a5WCJYwCfA1g7LJudI2lTHMeXBm1faiQzxkyRtF3S5CTupeAB+KG2tnZFT0/P30NO2VKLzrmfAbwGMipjG5Oc0dPTc0Md05SZ5U4Q2FxChErtEYD7jTGNQ3UgM8Asv90Yc9I5LSKRlXSI5CxJa0jWSALJjKRnAewfkniT+vwf7N7fXHK9rq7O7+jo+BTA/NRrdBpjnnLOnUrvXd7YMPQXSBunneno6IhIHgYwW1JtkgmBpBkATlVMAwOk3nFJ+VSoqgCMr6gIy2FcLtdKspAedyQN/98caDt/3kpyabUmf8WvG/8A1vODTBVE/0MAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-pan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4lKssI9gAAAOtJREFUWMPVll0KwyAMgNPgoc0JzDX2Mtgp3csKErSamGabIEUo/T6bHz0ezxdsjPJ5kvUDaROem7VJAp3gufkbtwtI+JYEOsHNEugIN0mgM1wtsVoF1MnyKtZHZBW4DVxoMh6jaAW0MTfnBAbALyUwCD6UwEB4VyJN4FXx4aqUAACgFLjzrsRP9AECAP4Cm88QtJeJrGivdeNdPpko+j1H7XzUB+6WYHmo4eDk4wj41XFMEfBZGXpK0F/eB+QhVcXslVo7i6eANjF5NYSojCN7wi05MJNgbfKiMaPZA75TBVKCrWWbnGrb3DPePZ9Bcbe/QecAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-xpan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4X4hxZdgAAAMpJREFUWMPtlsEKwjAMhr/pwOOedINJe/PobWXCfAIvgo/nA4heOiilZQqN2yE5lpD/I38SWt3uD9aMHSuHAiiAAmwaYCqoM/0KMABtQYDW11wEaHyiEei28bWb8LGOkk5C4iEEgE11YBQWDyHGuAMD0CeS30IQPfACbC3o+Vd2bOIOWMCtoO1mC+ap3CfmoCokFs/SZd6E0ILjnzrhvFbyEJ2FIZzXyB6iZ3AkjITn8WOdSbbAoaD4NSW+tIZdQYBOPyQKoAAKkIsPv0se4A/1UC0AAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-ypan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4anK0lywAAAMVJREFUWMPtlzEKwzAMRX/S7rlpIMXeOnaLaME36FLo8XqCdNFghGljyc4kgQi2Q/SUj0F/eL7eMMTKz6j9wNlYPGRrFcSoLH4XxQPvdQeYuPOlcLbw2dRTgqvoXEaolWM0aP4LYm0NkHYWzyFSSwlmzjw2sR6OvAXNwgEcwAEcwAEcwAEcoGYk20SiMCHlmVoCzACoojEqjHBmCeJOCOo1lgPA7Q8E8TvdjMmHuzsV3NFD4w+1t+Ai/gTx3qHuOFqdMQB8ASMwJX0IEHOeAAAAAElFTkSuQmCC");\n}\n.bk-root .bk-tool-icon-range {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABCJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyI+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDx0aWZmOkNvbXByZXNzaW9uPjU8L3RpZmY6Q29tcHJlc3Npb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjMyPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT4xPC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zMjwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgICAgIDxkYzpzdWJqZWN0PgogICAgICAgICAgICA8cmRmOkJhZy8+CiAgICAgICAgIDwvZGM6c3ViamVjdD4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTgtMDQtMjhUMTQ6MDQ6NDk8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPlBpeGVsbWF0b3IgMy43PC94bXA6Q3JlYXRvclRvb2w+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgrsrWBhAAAD60lEQVRYCcVWv2scRxSemZ097SHbSeWkcYwwclDhzr1Q5T6QE1LghP6BGNIYJGRWNlaZItiFK1mr+JAu4HQu0kjpU8sgF3ITAsaFg0hOvt2Zyfvmdsa7a610Unx44Zgf773vvfneezPHNzrbhn3CT3xC3wPXYOC8LDzqdi8YY/gwh4BeknS/2th6dr2kf94AOp3OFyWgMyziOPbMDxV9FTtJnl1ut795Xd0/YQ0/vtYQwMT1KXWCfr2IjOWwtNehwN4xL9ykTrm6Pzl58yLn3J+mKh9mXbT3uRjGEDph+O8/TjfP5dBp7Ha7AX7O3o5nZeD/0E/OGyXntDgzA0X6qmCnrVutVlrUWV9f/3xo+pwhGDhvEPHOjoxnZjJggXmMHzBQ7NGNp9vxk61fr0HR7e/u7pZzCGHlc7qwBYYTT7tJYSx1AQzppyFPft5apta9w7SKcn0b7P7+/jCsDQ5mbc0dCmIJGDN0ehdcjsmkm6A6KUeKFOTE11PLxrC7Ukqh3ylL2fT0NAP9q6ur6rRCJJYsbKB0JsbCKMuy+xREePDyxQPCz+Crlw062QcA5wBOOt1l6vIl2WiI9F1fN6Q+BBqit6hEC4Hk08GQJMn4myjSP7RavVxgdaVUh/3U6HCMsPr9pYnJKRziHtWQ+un58+hGs6nsjQSjpuTyKGN3CX+FBwHXSiEVgjP+O8X6N12kIePES+GzTKAkGbNp8yJsGUMVzz8jPKReiyAQRimy5/cjye5RpF8utFp/+nwmT7d/NMzcFkS7yjJNGDaPURQxIQThEQy0SyF4l5WJYYhBa816vZ6dU7A6CAhbZVow/pDe0O9hVOoCi13r4BgBAvJHqMSQL2vE/iH6IAXEwgrRVUmBoRRwnwJQT98xEeVeSUyB4dJ5nwJBKdCFFGRmUCcu7rwIYypCTblaChuNBhWODrman5ub+4v0rMNBt8z6Ezh7GksJQpCbm79cMQE7QBFm/X6f0rjWnv8WRYg/QdbUpwDAEBy8vPyA8rNGzg3a8MiElwiM7dAtRqNoNptjGPM1laVxP9umWEMGLOKhKUOJDtBwDmzsw9fC/CzHr9SGuCTi2LbbKvVtmqXpCjMihBFa79Wrt5fGx9PDzc3fmu32Lf8qFliwU9emKhBSp+kRKn/hu9k1COEDbFdt/BoKWOAkuEbdVYyoIXv8+I/QK9dMHEb1Knb7MHOv8LFFOsjzCVHWOD7Ltn+MXCRF4729vWMDK+p8rLkvwjLg4N4v741m5YuwCI9CvHp1Ha8gFdBoPnQAkGsYYGxxcfEI7QQlFCTGUXwjAz4tWF+EpymOWu7fglE7qsOvrYE6g4+9/x/vhRbMdLOCFgAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-polygon-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjc1OfiVKAAAAe1JREFUWMPt1r9rU1EUB/DPK0XbqphFHETo4OCiFhwF0V1KHbRSROLqon+AUMVRRFBwEbRFMBiV+mMW/wIxi5OD1kERRVKRJHUwLvfBTZrU5OWBGXLgQu7Jfe98z/ec7z0vKa88b2q1BDtRHdAPBaylm1NzsxsOjPnPNt6WSWprbft+/c3I3zOAjhT1Y4+fvcjEQJIXnVECSa+AhqIHqlHH5lWCZoe+Gk4GRgDG86j9SAUdlDBSQaZhlOkuHyoVdJmsw98D1S5fM4NYM1LCpqM+Lwa240oLgmZzpVZvzKT75VLZcqksSZKWlQeAy/iORVwIvh31xvotvK7VG3Px4aWHj3Jl4C2uYSvq+Bn8v6LLbaVWb9zsBiKLCvbiNG7gLm7jAYqbPHMJMziZ9lsKoh8GtqCEVVzHftwJn+TFHp4/hg8BSCYVfMOZoPEv2NZGdy9WCGUr9toDR3E2/H4V6nwRe/BmgN65H1ZhvMuB3XiKIyFoGefwO6ysVkUlrNUNsyAK/jli533Q+Y8cJFvAeXyMS1CI/jiMr/gUtD2LQwMGr4R3p7bY3oQHQ5b38CT4D2AXXg6YcQXHpyYnlqKsi5iOAVSwL9zd7zJ09r+Cpwq72omFMazjT9Dnibym0dTkRDUKrrgwH7MwXVyYB38BstaGDfLUTsgAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-redo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4itK+dVQAAAaFJREFUWMPt1L1rFFEUBfDfJDaBBSslIFjbaSFp1FJQFMVCHkzhKIqdUYOCoBgErVz8rCwiTDMwBCIKipDWyip/gxAIWAmBgBC0eYFh2Gx2l9lFcA5M8e59782Zc84dWrT435Hs1siLchqn43MS0zgW22vYxjesYjVLw3YjBPKinMUTBOwf8J5fKLGYpWFjJAJ5Uc7gIW6jM6Kim3iNZ1katgYmEL/6I+YasvY7Lg6iRpIX5VF8wuEe/XV8wGf8jN6LWTiAc7iEQ7ucPZ+lYW0vAtfwvlbfwCKW9gpXDOv1mJvZHiSO91MiyYsyiQSuxtpXXM7SsDmM5nlRdrCMMz3sOJWl4Xevc/vwBzdwAl+yNNwZxfRI+GxelK9ikHcwh8d4NNR/YFRES1ZwoTYdR7I0rNf3TzVNIGbmSvR/Bx08mIgCFSVu4l2ltIWD9WxNGR+W8KOynqnZ0rwCeVG+wa0hjrxtWoF5dAfc28V8Mib/n+Nev5dnabg/zgw87aNEN/bHOwVRiRe4Wym9zNKwMKkpgIWKEt24njxiJlq0aPFv4i9ZWXMSPPhE/QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-reset {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4gWqH8eQAABLdJREFUWMPtlktsVGUUx3/nfvfOlLQaY2IiRRMQIRpI0PjamJhoVASDvNpCpYw1vJQYSVwZwIVQF6wwRHmkAUof9ElrI6VqDAXcID4TF0IiYQMkSlTokNCZ+b7jove2t+NMH7rQBWd3v+989/zP+Z8X3Jb/WGQySvUNTQBJESkNguAVYIWqzhaRhwBU9WcR+QXoymazn6jqzUQiMQSQzWZRVdal1vwzAI2tHQBPOuc2AbWTdOyQ53n7nHNfRwee51GzqoIQMCLDpr3x/tLQ0oZzrk5Vj0/BOEBt+KYuOlBVGlrahr0Wob27t3gEjnZ2AyQzmUwHsDgP6J/AYRE553neDwDOuUdU9QngNeCumK4TkRMhZUORcYC1qysLA6iuSQHIwkWLD6lqapQsuSmwTVV3h99I7EcAR462A2xR2Ilq6ehTaejvO1774kuLNALR33eclsaGsQDe3fYegHl43vyNwEeqGl1963mm2jl7YZRTQ82qlWP4HM6ZToC5ztkW4LHQoALru7s6Di5dvlIj/e6ujrEAWoZDn8hmMjXATMACGaAVuBjXTVVXFc/AxhaA+4zvn1DV+eHxVWPMAmvtb5GeMWZyZVhI2rt7qVy2pOh9U1snwIPW2vMi4oWJuBPYHkVAVScPoKmtkzVVK6cEMsyJraHhiCqJqJUwj/JRz7TW1iSSyR2rVyylqa0Ta+24Ic8vXaAEmDFc/l5Z2A/80OibuVyuz/f9ElUdHCmvw82t5HK5h6y1PYhsz2YyGw43t2KtBZHIGwB6+j4rCkBVUdV7gXrggnPuu8h4eP+xMeZS2D0rJYZ6AdAMzAt1b4nI26p6IFZOY8pugijcKSIHVLUK0LyST4vnrVfnWr3mjmP4QTATaERkXkypRFX3isjmuHdRJEK6Ckqquopp06bdKCkp2Sgi7XnGLcg7gzeutwNIiPYc8HixqIrIOlU9ONVIhHPEd851icgSVXUiskVV94gIqoonIt0i8gfQCfwae38e6BWRXuBZz5jZ8VbaOE4EIqlZVUEQBLlkMplS1QER2RwkEnsSyaREDUzyeNsvIhvCMqkH1kdIJ2o+k8iJB1LVVRfjZ6nqqlEAIbdVQGto8Lrv+/dbawcjAL7vc+6bs+zetetfLSHxniIFGofGGsU2oC7eOCbDfZ7nQawBOSAX74SF9oEPImOq+r7nmVmxb5raukZa8UReGmNmhbMkAwwBH467EYVZe49z7kdgenj8k7V2oTHm8kgdWcvrNdVFjR8cHkYzjDH9wLjDaEwEzpwa4MypgWvAjtjxfGNMj4jMiT+M+kFsZI/Q6Pv+HGNMT8w4wI7TAyevxXVPD5z8+zD64tRXAMHVK1eaVLUyVvuDqroV2BOnJF4ZIedviUidqt4Re9s+vbx8zZXLl7PR2+nl5Tz/zNOFp2FzxzGAklw22wUsLLaSKXwf8vhosZUM6PeDYEUum70VHfpBwKsVyyfeikOP6oBNwN1TrLbfgX3A1kKLzKeff8nLLzw38T5wZDgxn1LnNk5lLRfP26/OnR2hwfNYW2Atn9RCsrf+EECyrKysDFimqhXhyjY3VLkAXBKRDqA7nU6nS0tLhyIj6XSaN9bVclv+l/IXAmkwvZc+jNUAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-save {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4UexUIzAAAAIRJREFUWMNjXLhs5X+GAQRMDAMMWJDYjGhyf7CoIQf8x2H+f0KGM9M7BBio5FNcITo408CoA0YdQM1cwEhtB/ylgqMkCJmFLwrOQguj/xTg50hmkeyARAYGhlNUCIXjDAwM0eREwTUGBgbz0Ww46oBRB4w6YNQBow4YdcCIahP+H5EhAAAH2R8hH3Rg0QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-tap-select {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3NzIwRUFGMDYyMjE2ODExOTdBNUNBNjVEQTY5OTRDRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCOTJBQzE0RDQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCOTJBQzE0QzQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTQ0QzIwMUM1RjIxNjgxMUE3QkFFMzhGRjc2NTI3MjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NzcyMEVBRjA2MjIxNjgxMTk3QTVDQTY1REE2OTk0Q0UiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6eYZ88AAADLklEQVR42rSXf2TUYRzHv7tuGcfE6Vwb5zLSSjEj7Y9KWqfEmFZJP+yPMdKKmUrrn0iUfjhWlLFi6YfNrF+StBoTo39iYkTGco4xxxG59P7k/T2PT8/37nu3bx9ezvPj+zyf5/PreS78bGLS8SmrwE6yje3NHJsDBTALpknBz6JhH3NiYAB0gHqPOVv52wJ6QQ48BzdAttTioRJjdeA8mAHHS2xuk3p+M8M16ipVQE49Ds6CiFO9RLjGONf05QLx6wPQaBlbBlPgJVgkP0ETiIJ2sB/E1XfimjfgBOOlKDUqCGOcqBcQnw6BYW5YTo4wbvQhMmCfGRemC2rBiGXzWUb+kM/NRZ6CHWBM9ce5R61NgX6ayhSJ5EPlItlDRNkz4JbFHf06BkSzHjXxM+gDv1S/mPUo2AXWgt9UUHL/IVhS8yUV1/EbV3o4N+NaoE9Fu/i827K5pNYHnqAVJECShWmAaddpscYFFXwR7vnXBRGlnUN/L6kqKJlxnRUuDbaDBiL+vst5d4gpcpBrqk/2jIgCKVUolhntplzivHmwh4stGOPfwBWwl/2dpp8p7xjQZqFLiQJtauKkivYm+kzccpK57yXfOUe+P23JqAnVbhMFmlXntCWnxbT31am9ZJ4BJifsUmNTqt0cYhA5ypympPg7VkEKunPbVb8cIG+0kyHLJZNR7fUMooUKFHAPkfQo58VLK+RzwRDd4FdWG9mjpaAXzqkJa1R7kQttqEABWXMjOOxxVRfnhRm5URX1prk/0pQHwNcKlchZ+jdpC+hFdVqO0my9Hj5dkYgCn1Rfh/KdlNDHrJhPqlDih+IfBd6qwpOgEqYMsorJ2HtWxtagLJDn/W3KRfPOZhoeBJfZPgVeGKeKrkQBh5dLXl25Ny3pc4/1fkTdbvFqFQgbxWeYD0hXulhQ0pYiM1jG547fcbMQpVnHTZEn9W3ljsCzwHxCdVteNHIZvQa7/7cC7nV6zHIfyFP9EXjFa7YxKAVqPP4bxhhoLWW+z9JyCb6M/MREg59/RlmmXbmneIybB+YC/ay+yrffqEddDzwGvKxxDmzhc0tc80XVgblqFfgjwAAPubcGjAOl1wAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-undo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4em8Dh0gAAAatJREFUWMPt1rFrFFEQBvDfGhACASshkL/ALpWVrSAKEQV5sIULWlgZNSgIFkGIVQ412gkBt1lYLERREFJqJRaW1oHAoZUQsDqwecWy7N3tbe6C4H2wxc682Zn3zTfvLXPM8b8j6RqYF+UCzsfnHBawGt3fMcAX7GEvS8NgKgXkRbmMxwg41TLsN0psZmnodyogL8pFPMIdLHUk7hA7eJKl4U/rAuKu3+HslFr/FZezNPSTFslX8QErDe4DvMVH/Iq9F7VwGpdwZUjsPtaSFjv/1vCBPjaxO0xcNbHejLpZrrlvJCMCT+JzA+2fcC1Lw+GE4l3CG1yIptfjCtiKoqtiJ0vD3aM0Py/K57iIMxgkQxat4EdN7e9xdRzlk+LEEPvDWvIDXJ928sYxjL36icWK+VaWhlezOIqbGFirJd/H7szugrwoX+D2BDEvszSsT5OBdfRaru/F9dPXQF6U27g/KnmWhgctxqyzBrZGMNGL/rHI0nDkKXiKexXTsywNGx0OnFbFNk3BRoWJXnw//j+ivCi32/S8CxPVNiWOAdUiJtXITIqYY45/Cn8B2D97FYW2H+IAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-wheel-pan {\n background-image: url("data:image/png;base64,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");\n}\n.bk-root .bk-tool-icon-wheel-zoom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgskILvMJQAABTtJREFUWMPdl1+MXVUVxn/fPvf2zrSFmUKnoBCUdjRoVaIxEpO2JhilMYBCtBQS2hejpg1Uo2NUrIFAoyGmtiE+GHwQGtvQJhqDmKYRBv+URFsFDNCSptH60DJTO3dKnX/33rM/H7rvsDu9M20fDMaVnGTvtb69z7fWXmvtc/TEzqd4OyXwNsv/FwFJQVI/sA14SZKRLOlPkr5TrVYXHz70quYkEEK4TtI2YAgYkrQthHDdhV5uuw+43/ZrwCbgRttgY/tjtrc0m83X3/f+D6ydnJhYcB4BSZcBA7aP2d4ELAGW2N5k+xgwkDB0IH19CGGH7R8B1aQeAf4KvAw0ku4K2zu7uru3ApdPEyiKohd4TNKjtjt5h6RHgccSNrddbvuHtm9Jqoak7xVF8WFgdavV+pSk5cCObNmXgK++85prCj3z28HKqZMnH7D9YAY4BvwujT8BvCuL1INX9vVt+dfwcCvNb7f9q2RuSfrGvWu/sL2Nf3LX7pzvj4ENSGBPVarVd4fRkZFltjdmoMGiKO4IIWwIIWwoiuIOYDDzeOPoyMiyFLkum7WJCMDztrcrTTrIRuAQZ6NcK1utL4dWq/VZoC8BhqvV6l1lWb4YYxyLMY6VZflitVq9CxhOmL60hhCKeYiV7WMKIXw9jT1HpXw3c+bOAKzOjJubzebJrKQCQLPZPClpc7bP6rMYKtjXth2OMf7tIkr11Wz8oQDc1Fb09vY+kQw1YAuwJY2nbUluAnCWpKkaFl6IQIzxivaR2SYA89sJVK/Xp2x32R6w/a30DNjuqtfrU0ArYecDCEqgLqm94T0dEm9mBG7PxkdDlkBnkhebgIezNQ8nHcCZPL9ijE1Jf/bZZoPtzbavmqNZLbf9tSxq+yoduuJ+SZ+zXSZyBXCqU+d8fvC5yRUrV+0G2j3g2hDCLyXd/+Su3QdnvP/zCuH72LWsgf2k0oHlH2c2odlkxcpVEdgr6aDtjyb8x20/J+mA7T9I6rL9SWA5dne2/GdXLl58qNJh398An85yTMA+4DOz8Dgu6Zu2dwJXJ91ltm8Gbp7Fgb+EEB4aHhpq5CEtACqVyr3AC0AlPS8k3TSmQ2YPhhBuS/1/LpmS9JTtNTHGfwBU2uUALARotVqniqJYH2Pck85pfavVaufAwnQvnHc0McaDKVptebN94QAnJB0EdtjekydyZXqjs/0ZgLIs/w6sy8bnYGYJ63pgERKC05JutT1kOwITwL9tvzlzUQUYB+Zjs2DBgu6xsbGJZHstByZbezregcBXeCsEz1bnzXt5anLyzLq71zDLxTRdVgemdx0fv2e2w5thO5DbiqL4oKT3ZKpnpyYnz+SY2ZpTAPZmJfdIrVZbNBNUq9UW2X4kU+2dcf53Aj1pj2PA7y/6m1DS00A9za9uNBq7iqJYBuoGdRdFsazRaOzKSqye1rTbaa/tlbYrqXQP2X4FIA9/J1l39xrC0v7+w5IeB8XkwS1lWe6TGJAYKMty31tfO4qSHl/a3384I3CDpI+kzC4lnRfrue6GytEjR8oQwlY73gC0L4qlth/q0M1/LYWtR48cKQF6enrC6dOnVwGLEpnxnp7en4+O1i/tszzGOCTpPmB7ahb57QUwBWyXdF+McWg6MScmuoA8OX8xOlpvXGz422XYTsB/SnpA0h7bX5R0WzI9HUL4qe2XbI+dk3xl+V7gxoztD5jRI+YK/zkEEokx2/uB/RdzIfUtueqVN04cXwF8G3iHY3z9Urw/j8ClyhsnjrcS2Vv/J/8NLxT+/zqBTkcxU/cfEkyEAu3kmjAAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-box-edit {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4QfHjM1QAAAGRJREFUWMNjXLhsJcNAAiaGAQYsDAwM/+lsJ+OgCwGsLqMB+D8o08CoA0YdMOqAUQewDFQdMBoFIyoN/B/U7YFRB7DQIc7xyo9GwbBMA4xDqhxgISH1klXbDYk0QOseEeOgDgEAIS0JQleje6IAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-freehand-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADTElEQVRYCeWWTWwMYRjH/88721X1lZJIGxJxcEE4OOiBgzjXWh8TJKR76kWacOBGxdEJIdk4VChZI/phidRBHMRRIr7DSUiaSCRFRM3u88gz+o7Z6bBTdjmYZPf9eJ55fv/5zzvvDPC/H9QsA66Olo9Ga+/MdR+Ljm2/KQIULsz9FqItGdOfJKLhApLgVkiSCGODjWit7QpKWy+TNrFeXvzKVUT8NiTVaIgDcbiCFJ7GiT8WkARXAdYBK0Lbhi/CenArRNskuM7/tgNp4ArQ42dwjf3WY5gWTqC7O/NbNn2Xkfw/YwdSw/We14HP2IEZwX+y9cZ9SH0LmgFP7UCz4KkENBNeV0Cz4b8U8DfgKiDxMWwUXETqLvJpCQpXZfawbzS7t9v5pL19cHBwfja7YA0y/lyCM0+E5hv5+piZXwKYcF23as+37bTXsQVqgkL0p/34fHR7DcBtbetFsBmGDwMOJCggYG55yw7dMlk6DuC1Bdu2RsCU9TYWQq2IoGbsreZ5NzvEqfSBsIsIy8OTbcdgiRHeh4o8AFAEwDakbY2AaCCpH7V9aGhoUUUy3UyVbkPYFuYLDlUZH8XBpwxkK0Dbgxg5HcVi0ent7a0RULMIozaHBSMfF9b2SzdutFcFB2FkwMIJOG6qfteXOa1nHZ48tyefuwyfT9s6wtzZ3t7eZse2DR2I228TtHXzuWCx9g8MtK5cuHCZTH4tiHEOa4xFngvTyS8f35d6enomiCi4/foEXBkZaQuukChL4FYA2Whd7YcC4gEdW3CpdL3LtGAVCVYJywEyTpAuJKeMOKXZs/Bw947C50KhUFOG4cwz35cjWNBlHGeD53n3xsfHP/T19U1qciggar8Fa4I3PHobIotBWBtc2hSiChyZxVzM53Pv7FVH6Tp3uVy+g0r1ImD2GjIrQGYIxjnfuXTZGICS5k/bBwJoubwEFX4TLah9EXomJGMA3za+f9913Yl4TnzsDQ+vE6YTZOjHh4ngibstt1pzQwd04F0bPStEBpXqRoBeQ/AKghfBnOEKgS+Q7z91Xfdz/HGKg8Ox7z8iYD9z6wqTkZFgnvhMGP9VZ2or1XVkPM9z0mytSfVsHa1RLBZbLoyNzUnK+ydz3wC6I9x+lwbngwAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-poly-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjglo9eZgwAAAc5JREFUWMPt1zFrU1EUB/DfS4OmVTGDIChCP4BgnQXRxVHqIJUupp9AB8VBQcRBQUXIB9DWQoMRiXZzcnQSA34A7aAuHSJKkgo2LvfBrU3aJnlYkBy4vHcP557zP/9z3r33JdXa647N0kHSZd5Nn0rSxc8G3cXp85sMcnZZ8vge3osZ+l3vB8CWFA0iL14t79h210swAjACMAIwAjACkB90D/8/GchI9ve4nPwTBh5E9ws7OepzGWb9EddSn51Op9ZstadSg4VK1UKlKkmSDSMLALewiuNh/hVJq71Wxttmqz0dG88vPc+MgWP4grvYG3SLOBrZFFFrttqPe4HIDxh4GSei+98iSlusuYopXEAjBtEPA3tQwUpwluAbDm4TPJUz+BTW9l2Ce6G7L0X/Bw8D3T/7SKKIDzHg7QCcxjvcQAEtXAnrrg/RP0/DKPbqgcN4iVOR7gcO4dcQgRuoh7HSqwlP4n20m63jJu5n8MkWMYfP3UowhzdR8FU8w9iQwevBdyq3/27CMRzAE5yLuvsRLg+ZcR1nJ8YL81HWJUzGAPaFZwe/Q5MdyYDyNHgjzO90YyGHtVDncuiJchaHw8R4oREFV5qdiVmYLM3OgD9k5209/atmIAAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-point-draw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEiERGWPELgAAA4RJREFUWMO1lr1uG1cQhb9ztdRSP7AF1QxgwKlcuZSqRC9gWUUUINWqTh5AnaFOnVPEteQmRuhCURqWsSqqc9IolREXdEvQBElxtdw7KURSFEVKu4w8wAKLxdw9Z+bMnRmZGXfZ29//II8th4WwGVNyIoQLYB5vxA9Caq04iUd9A+7ZlsNC2I7TdSd2hZXMJKlnTqp9jtl/GBaqoyQ0noFKpUIzBicYYc+DEFpxkglc4oVJa5gvDn8v1xV2irG3FM4NSVwjUKlUaMcpJhCGmSEJQ6QGD8M5WnHCd8+f3QCXpPLx8WNwv0j6Bm9FMK7FJ3WBE+R/2t7c/GBmFvSBrzRTCsyTDjXrxUgEMtpxynJYmJoBJ4VAybwVARgvL7Oik0okCodnKpVKX7P0leiVMb0VvbJT+upznK4vh0GIeQwwQStJkHQD3MwsCALTJRG7Qrdrj5m/djgYaIa0hlkRdJk26XEgC9txurccBtVW3IudBImmZuACUP+ZlIDBt9FKcubYNTcAH/X0RYM1E7utJPlqe+uZzPxUcEkiSS4sTT95n15Mud0xWC0o2PAWOCdK3KYZlFxfM+tHOcnMzNr1es18ug+cgsVjP4yBU/Ppfrter1m/+l0+zYygML1xRVHU7TSb1cSzBzoBzszsH+AMdJJ49jrNZjWKou6wBnwOzcyndBpNbuueURR1Dw8Pq35p9cc5p/Dy9Dypt7jXrtdGwQECS9NPhr6Gq6txUzNigE6zydLK6lTw12/KT4FGFEUfJX2YJNONq5tVs4ODA7sD/DnwJ/BoADZuE3tHFs12dna6d4C/BI6AlbyzI8ii2TTw12/KK33gb2cdXsNZoAntbZC2SeO4c9592k/5eNQbiwvFd1kJuFGwLJr1wSPg/SwpvyFBHufOeXcFeAlE97U/uCxOY+P3b+Bn4B3Q+L8EdJfD4a+/AbC4UBzPxiPg3wlHZquB28Cn2IuR9x3gr3uV4DbwfvSDOvi4uFA8BDZmIRHkjHpS9Ht9iRqd8+5G3g05mAGcQbsdiX5QJ428G7Kygo8XYdb1/K4NWVmjzkNge2sz84bs+ELmpDDLtqWsNZBXgvmw8CTtpWVMT7x5YWBjLARnwZfKQNYN2U2LPvrh+5nBt7c2M2/It9bArCTKR8eZN+SJ13AScPnoODeRdqNenH+wul5w2gUr2WUjMFAt8bZ/0axX/wNnv4H8vTFb1QAAAABJRU5ErkJggg==");\n}\n.bk-root .bk-tool-icon-poly-edit {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gELFi46qJmxxAAABV9JREFUWMOdl19vFFUYxn9n9u9sCyylUIzWUoMQBAWCMdEEIt6xIRQSLIEKtvHe6AcA4yeQb7CAUNJy0daLeomJN8SEULAC2kBBapBKoLvbmdl/c14vdmY7u91tF95kknPOnHmf95znPc97Ro2OTeBbdjFDT3c32ZxVHUOE9kSMB0/m6ExuoJn1H+ur6Y+OTfD50SMN5168OgrAlyf7CfuD+z7+iDs3p8hkLUQ0iFQ/yFl5Nm/qonfHVva+s32Zw9GxCYILsZ08tpNfBhbs+1YN4OH9+7huGdECSBVfqUosbsllfmauBqiR+cCNwOr7AEo8pPHJnymXykhg5fUWjoQpl0vVvhZhbSzGoUOHqgBlt6B6uruj2Zy1E9jo0fhfeyL2x4Mnc8VErK0KUEOB64JSyptfG4RSytsJjUJVxw2lsFy3urL9nx1Qd25ObctkrVMi+jQivd7U2ZyV/3Hzpq7h3h1b/7p9Y0o8v8rwAbTWrGpSocN/FGDlbAI0Rl23PCBan0Ok158H9Ipwzi25A/Mzc9Gl/BYx/E4kYqC1NKRARNAaDCNUM27Z+Zr+ouXs0q4+LSLBHPYCFkTkC6uU39kwCdsS7WRKmaYUiAhdnZ3MPX2K4+QjQI+C94A93rMzm8ltMwyDeDzWjMZeEb2pYQDdW3vITU2jtUZ5QThOPgm8C7wP7J15OPsBsB3oWpGnVWisCeDS1VHj4vBI92+/3tgB7Ab2AruAXiDBK5oIOkhtkEYRNRuJhObrd8Dl9ewf4D5wG7hVLpen29vb5wzD+BrkbBMaL3d1dk5nsrnlFDTTFWAWmAZueWD3gCemGde2k2fw1Al1YXhEvjozoO49eczdqekrWmsc2zlrmvEKOGoW1GUjFLqSk2KpJrCLwyMCPAP+BO54QL8DM6YZX/ClsP9YnwKkXnIBP4jdIpJRpdJTCYdMwwi98KU0Hjc/dDILNyUcwTCWdOSMJ0TRmBktGRhLugu0xyLk7CIqVNm+0bGJptl1YXikD0grpY4Rjc4a8Fbgdab/6OGbAJeCUuyJnnHmZH9pbSyGuBXV8NUwlUpR1EWyixmSyTWEwqGlJ2Swbo2JXbAAfgDGgGQA9I1A9t1tlq0AxrXxn0ilUpw4fhQqYkH/sT41OTnJJwf2s6FjI5mshdYa7bqVR2uezr9MJmJt14FvGrh/O9D+e6UkM/xyCuCqEKCYnJyUTKFQrZDHjxzGshwWLQcRsOz8Hi85P23id0ug/XilAMLBmm4tPGdoaKjSH5+oAGrhwvBI9SjZTn4QSK9yenoD7dlrExPoJlXW8G8ytpNHxRKk02lGxsdRKFwXLNvx5yY94HQLGhGk4LFCYQSqaE0AwWM1eOoEbR0dKBSW7bC4mKuffxs4D/wCLKwQQPAUzIkslfp6cVomROWSolh0GjldAM4nzDi2k9/i5UAzC9aKfwNJ3zgJg9YEvN6+C7SHgKm69+sD7RfNnKTTaZRPQfAut4oFV//IS7gkcB34VlVo8kGzphlfB+DU+TfNGBpZtRastvrvARJmfMF28ge9sc2B9/PNnCilMIDwK6y8/ow/Ai4kvILTljAXvDvEvrqKSUs60KolzPjBxspavQD2tKqCAGF/Ba+xE/Wbilu54wZV8NEKF5fXzQHl/bh4hUsE0WAXSlDMYcQSrQXgCmsTseXHsJkNnjqBFGwKJaHsKlxtUHYVhbLCzr1kaOA4bcn1y1Swmb+iLpJKpVrfgdpfsiVVCYcgluwgnU7jEgJ4s5UkLFtWYyHyEg0/N1q1tmQH+YXnAMFr97Nmv3p+0QsHQRsF8qpBOE5+rb9Nkaj50tVQKjqh4OU3GNL/1/So3vuUgbAAAAAASUVORK5CYII=");\n}\n.bk-root .bk-tool-icon-line-edit {\n background-image: url("data:image/png;base64,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");\n}\n’},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(72),o=t(303),l=n.__importStar(t(282));class h{constructor(t,e={}){this.items=t,this.options=e,this.el=s.div(),this._open=!1,this._item_click=t=>{var e;null===(e=this.items[t])||void 0===e||e.handler(),this.hide()},this._on_mousedown=t=>{var e,i;const{target:n}=t;n instanceof Node&&this.el.contains(n)||(null===(i=(e=this.options).prevent_hide)||void 0===i?void 0:i.call(e,t))||this.hide()},this._on_keydown=t=>{t.keyCode==s.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},s.undisplay(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){s.remove(this.el),this._unlisten()}_listen(){document.addEventListener("mousedown",this._on_mousedown),document.addEventListener("keydown",this._on_keydown),window.addEventListener("blur",this._on_blur)}_unlisten(){document.removeEventListener("mousedown",this._on_mousedown),document.removeEventListener("keydown",this._on_keydown),window.removeEventListener("blur",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=e.getBoundingClientRect();this.el.style.left=null!=t.left?t.left-i.left+"px":"",this.el.style.top=null!=t.top?t.top-i.top+"px":"",this.el.style.right=null!=t.right?i.right-t.right+"px":"",this.el.style.bottom=null!=t.bottom?i.bottom-t.bottom+"px":""}}render(){var t,e;s.empty(this.el,!0);const i=null!==(t=this.options.orientation)&&void 0!==t?t:"vertical";s.classes(this.el).add("bk-context-menu","bk-"+i);for(const[t,i]of o.enumerate(this.items)){let n;if(null==t)n=s.div({class:l.bk_divider});else{if(null!=t.if&&!t.if())continue;{const i=null!=t.icon?s.div({class:["bk-menu-icon",t.icon]}):null;n=s.div({class:(null===(e=t.active)||void 0===e?void 0:e.call(t))?"bk-active":null,title:t.tooltip},i,t.label)}}n.addEventListener("click",()=>this._item_click(i)),this.el.appendChild(n)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),s.display(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),s.undisplay(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=h,h.__name__="ContextMenu"},n function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const t=e(9);function*r(e,n){const o=e.length;if(n>o)return;const r=t.range(n);for(yield r.map(n=>e[n]);;){let f;for(const e of t.reversed(t.range(n)))if(r[e]!=e+o-n){f=e;break}if(null==f)return;r[f]+=1;for(const e of t.range(f+1,n))r[e]=r[e-1]+1;yield r.map(n=>e[n])}}o.enumerate=function*(e){let n=0;for(const o of e)yield[o,n++]},o.combinations=r,o.subsets=function*(e){for(const n of t.range(e.length+1))yield*r(e,n)}},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(296),i=e(173),s=e(72);class c extends o.ButtonToolButtonView{render(){super.render(),s.classes(this.el).toggle(i.bk_active,this.model.active)}_clicked(){const{active:e}=this.model;this.model.active=!e}}n.OnOffButtonView=c,c.__name__="OnOffButtonView"},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),s=t(19),l=t(72),n=t(115),a=i.__importStar(t(18)),r=t(78),_=t(9),c=t(13),h=t(8),u=t(81),v=t(306),d=t(307),b=t(308),p=t(295),g=t(299),f=t(310),m=t(173),w=i.__importDefault(t(300)),y=i.__importDefault(t(311));class T extends u.Model{constructor(t){super(t)}static init_ToolbarViewModel(){this.define({_visible:[a.Any,null],autohide:[a.Boolean,!1]})}get visible(){return!this.autohide||null!=this._visible&&this._visible}}e.ToolbarViewModel=T,T.__name__="ToolbarViewModel",T.init_ToolbarViewModel();class k extends r.DOMView{initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new T({autohide:this.model.autohide})}async lazy_initialize(){await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,async()=>{await this._build_tool_button_views(),this.render()}),this.connect(this.model.properties.autohide.change,()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()}),this.connect(this._toolbar_view_model.properties._visible.change,()=>this._on_visible_change())}styles(){return[…super.styles(),w.default,y.default]}remove(){n.remove_views(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await n.build_views(this._tool_button_views,t,{parent:this},t=>t.button_view)}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const t=this._toolbar_view_model.visible,o=g.bk_toolbar_hidden;this.el.classList.contains(o)&&t?this.el.classList.remove(o):t||this.el.classList.add(o)}render(){if(l.empty(this.el),this.el.classList.add(g.bk_toolbar),this.el.classList.add(m.bk_side(this.model.toolbar_location)),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change(),null!=this.model.logo){const t="grey"===this.model.logo?f.bk_grey:null,o=l.a({href:"https://bokeh.org/",target:"_blank",class:[f.bk_logo,f.bk_logo_small,t]});this.el.appendChild(o)}for(const[,t]of this._tool_button_views)t.render();const t=[],o=t=>this._tool_button_views.get(t).el,{gestures:e}=this.model;for(const i of c.values(e))t.push(i.tools.map(o));t.push(this.model.actions.map(o)),t.push(this.model.inspectors.filter(t=>t.toggleable).map(o));for(const o of t)if(0!==o.length){const t=l.div({class:g.bk_button_bar},o);this.el.appendChild(t)}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}}function M(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=k,k.__name__="ToolbarBaseView";class B extends u.Model{constructor(t){super(t)}static init_ToolbarBase(){this.prototype.default_view=k,this.define({tools:[a.Array,[]],logo:[a.Logo,"normal"],autohide:[a.Boolean,!1]}),this.internal({gestures:[a.Any,M],actions:[a.Array,[]],inspectors:[a.Array,[]],help:[a.Array,[]],toolbar_location:[a.Location,"right"]})}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map(t=>t.id));return _.some(t,t=>!e.has(t.id))},o=this.tools.filter(t=>t instanceof p.InspectTool);t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter(t=>t instanceof b.HelpTool);t(this.help,e)&&(this.help=e);const i=this.tools.filter(t=>t instanceof d.ActionTool);t(this.actions,i)&&(this.actions=i);const l=(t,o)=>{t in this.gestures||s.logger.warn(Toolbar: unknown event type ‘${t}’ for tool: ${o})},n={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof v.GestureTool&&t.event_type)if(h.isString(t.event_type))n[t.event_type].tools.push(t),l(t.event_type,t);else{n.multi.tools.push(t);for(const o of t.event_type)l(o,t)}for(const o of Object.keys(n)){const e=this.gestures[o];t(e.tools,n[o].tools)&&(e.tools=n[o].tools),e.active&&_.every(e.tools,t=>t.id!=e.active.id)&&(e.active=null)}}get horizontal(){return"above"===this.toolbar_location||"below"===this.toolbar_location}get vertical(){return"left"===this.toolbar_location||"right"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=h.isString(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(s.logger.debug(Toolbar: deactivating tool: ${e} for event type ‘${o}’),e.active=!1),this.gestures[o].active=t,s.logger.debug(Toolbar: activating tool: ${t} for event type ‘${o}’)}else this.gestures[o].active=null}}e.ToolbarBase=B,B.__name__="ToolbarBase",B.init_ToolbarBase()},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(296),n=e(304);class u extends s.ButtonToolView{}t.GestureToolView=u,u.__name__="GestureToolView";class _ extends s.ButtonTool{constructor(e){super(e),this.button_view=n.OnOffButtonView}}t.GestureTool=_,_.__name__="GestureTool"},n function _(o,t,n){Object.defineProperty(n,"__esModule",{value:!0});const e=o(296),i=o(15);class s extends e.ButtonToolButtonView{_clicked(){this.model.do.emit(void 0)}}n.ActionToolButtonView=s,s.__name__="ActionToolButtonView";class c extends e.ButtonToolView{connect_signals(){super.connect_signals(),this.connect(this.model.do,o=>this.doit(o))}}n.ActionToolView=c,c.__name__="ActionToolView";class l extends e.ButtonTool{constructor(o){super(o),this.button_view=s,this.do=new i.Signal(this,"do")}}n.ActionTool=l,l.__name__="ActionTool"},n function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o(1),l=o(307),s=i.__importStar(o(18)),n=o(309);class _ extends l.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=_,_.__name__="HelpToolView";class r extends l.ActionTool{constructor(o){super(o),this.tool_name="Help",this.icon=n.bk_tool_icon_help}static init_HelpTool(){this.prototype.default_view=_,this.define({help_tooltip:[s.String,"Click the question mark to learn more about Bokeh plot tools."],redirect:[s.String,"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html"]}),this.register_alias("help",()=>new r)}get tooltip(){return this.help_tooltip}}t.HelpTool=r,r.__name__="HelpTool",r.init_HelpTool()},n function _(o,_,l){Object.defineProperty(l,"__esModule",{value:!0}),l.bk_tool_icon_box_select="bk-tool-icon-box-select",l.bk_tool_icon_box_zoom="bk-tool-icon-box-zoom",l.bk_tool_icon_zoom_in="bk-tool-icon-zoom-in",l.bk_tool_icon_zoom_out="bk-tool-icon-zoom-out",l.bk_tool_icon_help="bk-tool-icon-help",l.bk_tool_icon_hover="bk-tool-icon-hover",l.bk_tool_icon_crosshair="bk-tool-icon-crosshair",l.bk_tool_icon_lasso_select="bk-tool-icon-lasso-select",l.bk_tool_icon_pan="bk-tool-icon-pan",l.bk_tool_icon_xpan="bk-tool-icon-xpan",l.bk_tool_icon_ypan="bk-tool-icon-ypan",l.bk_tool_icon_range="bk-tool-icon-range",l.bk_tool_icon_polygon_select="bk-tool-icon-polygon-select",l.bk_tool_icon_redo="bk-tool-icon-redo",l.bk_tool_icon_reset="bk-tool-icon-reset",l.bk_tool_icon_save="bk-tool-icon-save",l.bk_tool_icon_tap_select="bk-tool-icon-tap-select",l.bk_tool_icon_undo="bk-tool-icon-undo",l.bk_tool_icon_wheel_pan="bk-tool-icon-wheel-pan",l.bk_tool_icon_wheel_zoom="bk-tool-icon-wheel-zoom",l.bk_tool_icon_box_edit="bk-tool-icon-box-edit",l.bk_tool_icon_freehand_draw="bk-tool-icon-freehand-draw",l.bk_tool_icon_poly_draw="bk-tool-icon-poly-draw",l.bk_tool_icon_point_draw="bk-tool-icon-point-draw",l.bk_tool_icon_poly_edit="bk-tool-icon-poly-edit",l.bk_tool_icon_line_edit="bk-tool-icon-line-edit"},n function _(o,l,b){Object.defineProperty(b,"__esModule",{value:!0}),b.bk_logo="bk-logo",b.bk_logo_notebook="bk-logo-notebook",b.bk_logo_small="bk-logo-small",b.bk_grey="bk-grey"},n function _(l,n,o){Object.defineProperty(o,"__esModule",{value:!0});o.default="\n.bk-root .bk-logo {\n margin: 5px;\n position: relative;\n display: block;\n background-repeat: no-repeat;\n}\n.bk-root .bk-logo.bk-grey {\n filter: url(\"data:image/svg+xml;utf8,<svg xmlns=’http://www.w3.org/2000/svg’><filter id=’grayscale’><feColorMatrix type=’matrix’ values=’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0’/></filter></svg>#grayscale\");\n /* Firefox 10+, Firefox on Android /\n filter: gray;\n / IE6-9 /\n -webkit-filter: grayscale(100%);\n / Chrome 19+, Safari 6+, Safari 6+ iOS /\n}\n.bk-root .bk-logo-small {\n width: 20px;\n height: 20px;\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);\n}\n.bk-root .bk-logo-notebook {\n display: inline-block;\n vertical-align: middle;\n margin-right: 5px;\n}\n"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});var s=this&&this.__rest||function(t,e){var i={};for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&e.indexOf(s)<0&&(i[s]=t[s]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(s=Object.getOwnPropertySymbols(t);n<s.length;n++)e.indexOf(s[n])<0&&Object.prototype.propertyIsEnumerable.call(t,s[n])&&(i[s[n]]=t[s[n]])}return i};const n=t(208),a=t(77),o=t(210),l=t(90),r=t(272),h=t(169),_=t(177),d=t(170),c=t(313),u=t(15),p=t(115),f=t(314),b=t(74),g=t(19),m=t(316),v=t(8),w=t(9),y=t(215),x=t(317),z=t(318),M=t(216),O=t(79);class k extends r.LayoutDOMView{constructor(){super(…arguments),this._outer_bbox=new O.BBox,this._inner_bbox=new O.BBox,this._needs_paint=!0,this._needs_layout=!1,this._invalidated_painters=new Set,this._invalidate_all=!0}get is_paused(){return null!=this._is_paused&&0!==this._is_paused}get child_models(){return[]}pause(){null==this._is_paused?this._is_paused=1:this._is_paused+=1}unpause(t=!1){if(null==this._is_paused)throw new Error("wasn’t paused");this._is_paused-=1,0!=this._is_paused||t||this.request_paint()}request_render(){this.request_paint()}request_paint(t){if(null!=t?this._invalidated_painters.add(t):this._invalidate_all=!0,!this.is_paused){const t=this.throttled_paint();this._ready=this._ready.then(()=>t)}}request_layout(){this._needs_layout=!0,this.request_paint()}reset(){"standard"==this.model.reset_policy&&(this.clear_state(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){this.ui_event_bus.destroy(),p.remove_views(this.renderer_views),p.remove_views(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.state_changed=new u.Signal0(this,"state_changed"),this.lod_started=!1,this.visuals=new b.Visuals(this.model),this._initial_state_info={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.state={history:[],index:-1};const{hidpi:t,output_backend:e}=this.model;this.canvas=new a.Canvas({hidpi:t,output_backend:e}),this.frame=new n.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges),this.throttled_paint=m.throttle(()=>this.repaint(),1e3/60);const{title_location:i,title:s}=this.model;null!=i&&null!=s&&(this._title=s instanceof h.Title?s:new h.Title({text:s}));const{toolbar_location:o,toolbar:l}=this.model;null!=o&&null!=l&&(this._toolbar=new d.ToolbarPanel({toolbar:l}),l.toolbar_location=o),this.renderer_views=new Map,this.tool_views=new Map}async lazy_initialize(){this.canvas_view=await p.build_view(this.canvas,{parent:this}),this.ui_event_bus=new f.UIEvents(this,this.model.toolbar,this.canvas_view.events_el),await this.build_renderer_views(),await this.build_tool_views(),this.update_dataranges(),this.unpause(!0),g.logger.debug("PlotView initialized")}_width_policy(){return null==this.model.frame_width?super._width_policy():"min"}_height_policy(){return null==this.model.frame_height?super._height_policy():"min"}_update_layout(){this.layout=new x.BorderLayout,this.layout.set_sizing(this.box_sizing());const{frame_width:t,frame_height:e}=this.model;this.layout.center_panel=this.frame,this.layout.center_panel.set_sizing(Object.assign(Object.assign({},null!=t?{width_policy:"fixed",width:t}:{width_policy:"fit"}),null!=e?{height_policy:"fixed",height:e}:{height_policy:"fit"}));const i=w.copy(this.model.above),s=w.copy(this.model.below),n=w.copy(this.model.left),a=w.copy(this.model.right),o=t=>{switch(t){case"above":return i;case"below":return s;case"left":return n;case"right":return a}},{title_location:l,title:r}=this.model;null!=l&&null!=r&&o(l).push(this._title);const{toolbar_location:_,toolbar:c}=this.model;if(null!=_&&null!=c){const t=o(_);let e=!0;if(this.model.toolbar_sticky)for(let i=0;i<t.length;i++){const s=t[i];if(s instanceof h.Title){t[i]="above"==_||"below"==_?[s,this._toolbar]:[this._toolbar,s],e=!1;break}}e&&t.push(this._toolbar)}const u=(t,e)=>{const i=this.renderer_views.get(e);return i.layout=new z.SidePanel(t,i)},p=(t,e)=>{const i="above"==t||"below"==t,s=[];for(const n of e)if(v.isArray(n)){const e=n.map(e=>{const s=u(t,e);if(e instanceof d.ToolbarPanel){const t=i?"width_policy":"height_policy";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[t]:"min"}))}return s});let a;i?(a=new M.Row(e),a.set_sizing({width_policy:"max",height_policy:"min"})):(a=new M.Column(e),a.set_sizing({width_policy:"min",height_policy:"max"})),a.absolute=!0,s.push(a)}else s.push(u(t,n));return s},f=null!=this.model.min_border?this.model.min_border:0;this.layout.min_border={left:null!=this.model.min_border_left?this.model.min_border_left:f,top:null!=this.model.min_border_top?this.model.min_border_top:f,right:null!=this.model.min_border_right?this.model.min_border_right:f,bottom:null!=this.model.min_border_bottom?this.model.min_border_bottom:f};const b=new y.VStack,g=new y.VStack,m=new y.HStack,O=new y.HStack;b.children=w.reversed(p("above",i)),g.children=p("below",s),m.children=w.reversed(p("left",n)),O.children=p("right",a),b.set_sizing({width_policy:"fit",height_policy:"min"}),g.set_sizing({width_policy:"fit",height_policy:"min"}),m.set_sizing({width_policy:"min",height_policy:"fit"}),O.set_sizing({width_policy:"min",height_policy:"fit"}),this.layout.top_panel=b,this.layout.bottom_panel=g,this.layout.left_panel=m,this.layout.right_panel=O}get axis_views(){const t=[];for(const[,e]of this.renderer_views)e instanceof _.AxisView&&t.push(e);return t}set_cursor(t="default"){this.canvas_view.el.style.cursor=t}set_toolbar_visibility(t){for(const e of this.visibility_callbacks)e(t)}update_dataranges(){const t=new Map,e=new Map;let i=!1;for(const[,t]of this.frame.x_ranges)t instanceof o.DataRange1d&&"log"==t.scale_hint&&(i=!0);for(const[,t]of this.frame.y_ranges)t instanceof o.DataRange1d&&"log"==t.scale_hint&&(i=!0);for(const[s,n]of this.renderer_views)if(n instanceof l.GlyphRendererView){const a=n.glyph.bounds();if(null!=a&&t.set(s,a),i){const t=n.glyph.log_bounds();null!=t&&e.set(s,t)}}let s=!1,n=!1;const{width:a,height:r}=this.frame.bbox;let h;!1!==this.model.match_aspect&&0!=a&&0!=r&&(h=1/this.model.aspect_scale*(a/r));for(const[,i]of this.frame.x_ranges){if(i instanceof o.DataRange1d){const n="log"==i.scale_hint?e:t;i.update(n,0,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}for(const[,i]of this.frame.y_ranges){if(i instanceof o.DataRange1d){const n="log"==i.scale_hint?e:t;i.update(n,1,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}if(s&&n){g.logger.warn("Follow enabled so bounds are unset.");for(const[,t]of this.frame.x_ranges)t.bounds=null;for(const[,t]of this.frame.y_ranges)t.bounds=null}this.range_update_timestamp=Date.now()}push_state(t,e){const{history:i,index:s}=this.state,n=null!=i[s]?i[s].info:{},a=Object.assign(Object.assign(Object.assign({},this._initial_state_info),n),e);this.state.history=this.state.history.slice(0,this.state.index+1),this.state.history.push({type:t,info:a}),this.state.index=this.state.history.length-1,this.state_changed.emit()}clear_state(){this.state={history:[],index:-1},this.state_changed.emit()}can_undo(){return this.state.index>=0}can_redo(){return this.state.index<this.state.history.length-1}undo(){this.can_undo()&&(this.state.index-=1,this._do_state_change(this.state.index),this.state_changed.emit())}redo(){this.can_redo()&&(this.state.index+=1,this._do_state_change(this.state.index),this.state_changed.emit())}_do_state_change(t){const e=null!=this.state.history[t]?this.state.history[t].info:this._initial_state_info;null!=e.range&&this.update_range(e.range),null!=e.selection&&this.update_selection(e.selection)}get_selection(){const t=new Map;for(const e of this.model.renderers)if(e instanceof l.GlyphRenderer){const{selected:i}=e.data_source;t.set(e,i)}return t}update_selection(t){for(const e of this.model.renderers){if(!(e instanceof l.GlyphRenderer))continue;const i=e.data_source;if(null!=t){const s=t.get(e);null!=s&&i.selected.update(s,!0)}else i.selection_manager.clear()}}reset_selection(){this.update_selection(null)}_update_ranges_together(t){let e=1;for(const[i,s]of t)e=Math.min(e,this._get_weight_to_constrain_interval(i,s));if(e<1)for(const[i,s]of t)s.start=e*s.start+(1-e)*i.start,s.end=e*s.end+(1-e)*i.end}_update_ranges_individually(t,e,i,s){let n=!1;for(const[s,a]of t){if(!i){const t=this._get_weight_to_constrain_interval(s,a);t<1&&(a.start=t*a.start+(1-t)*s.start,a.end=t*a.end+(1-t)*s.end)}if(null!=s.bounds&&"auto"!=s.bounds){const[t,o]=s.bounds,l=Math.abs(a.end-a.start);s.is_reversed?(null!=t&&t>=a.end&&(n=!0,a.end=t,(e||i)&&(a.start=t+l)),null!=o&&o<=a.start&&(n=!0,a.start=o,(e||i)&&(a.end=o-l))):(null!=t&&t>=a.start&&(n=!0,a.start=t,(e||i)&&(a.end=t+l)),null!=o&&o<=a.end&&(n=!0,a.end=o,(e||i)&&(a.start=o-l)))}}if(!(i&&n&&s))for(const[e,i]of t)e.have_updated_interactively=!0,e.start==i.start&&e.end==i.end||e.setv(i)}_get_weight_to_constrain_interval(t,e){const{min_interval:i}=t;let{max_interval:s}=t;if(null!=t.bounds&&"auto"!=t.bounds){const[e,i]=t.bounds;if(null!=e&&null!=i){const t=Math.abs(i-e);s=null!=s?Math.min(s,t):t}}let n=1;if(null!=i||null!=s){const a=Math.abs(t.end-t.start),o=Math.abs(e.end-e.start);i>0&&o<i&&(n=(a-i)/(a-o)),s>0&&o>s&&(n=(s-a)/(o-a)),n=Math.max(0,Math.min(1,n))}return n}update_range(t,e=!1,i=!1,s=!0){this.pause();const{x_ranges:n,y_ranges:a}=this.frame;if(null==t){for(const[,t]of n)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const o=[];for(const[e,i]of n)o.push([i,t.xrs.get(e)]);for(const[e,i]of a)o.push([i,t.yrs.get(e)]);i&&this._update_ranges_together(o),this._update_ranges_individually(o,e,i,s)}this.unpause()}reset_range(){this.update_range(null)}_invalidate_layout(){(()=>{for(const t of this.model.side_panels){if(this.renderer_views.get(t).layout.has_size_changed())return!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map(t=>this.renderer_views.get(t))}async build_renderer_views(){this.computed_renderers=[];const{above:t,below:e,left:i,right:s,center:n,renderers:a}=this.model;this.computed_renderers.push(…t,…e,…i,…s,…n,…a),null!=this._title&&this.computed_renderers.push(this._title),null!=this._toolbar&&this.computed_renderers.push(this._toolbar);for(const t of this.model.toolbar.tools)null!=t.overlay&&this.computed_renderers.push(t.overlay),this.computed_renderers.push(…t.synthetic_renderers);await p.build_views(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const t=this.model.toolbar.tools;(await p.build_views(this.tool_views,t,{parent:this})).map(t=>this.ui_event_bus.register_tool(t))}connect_signals(){super.connect_signals();const{x_ranges:t,y_ranges:e}=this.frame;for(const[,e]of t)this.connect(e.change,()=>{this._needs_layout=!0,this.request_paint()});for(const[,t]of e)this.connect(t.change,()=>{this._needs_layout=!0,this.request_paint()});const{plot_width:i,plot_height:s}=this.model.properties;this.on_change([i,s],()=>this.invalidate_layout());const{above:n,below:a,left:o,right:l,center:r,renderers:h}=this.model.properties;this.on_change([n,a,o,l,r,h],async()=>await this.build_renderer_views()),this.connect(this.model.toolbar.properties.tools.change,async()=>{await this.build_renderer_views(),await this.build_tool_views()}),this.connect(this.model.change,()=>this.request_paint()),this.connect(this.model.reset,()=>this.reset())}set_initial_range(){let t=!0;const{x_ranges:e,y_ranges:i}=this.frame,s=new Map,n=new Map;for(const[i,n]of e){const{start:e,end:a}=n;if(null==e||null==a||isNaN(e+a)){t=!1;break}s.set(i,{start:e,end:a})}if(t)for(const[e,s]of i){const{start:i,end:a}=s;if(null==i||null==a||isNaN(i+a)){t=!1;break}n.set(e,{start:i,end:a})}t?(this._initial_state_info.range={xrs:s,yrs:n},g.logger.debug("initial ranges set")):g.logger.warn("could not set initial ranges")}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,t]of this.renderer_views)if(!t.has_finished())return!1;return!0}after_layout(){if(super.after_layout(),this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:t,height:e}=this.layout.bbox;this.canvas_view.resize(t,e),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}this._inner_bbox.equals(this.frame.inner_bbox)||(this._inner_bbox=this.layout.inner_bbox,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){if(this.is_paused||!this.model.visible)return;g.logger.trace("PlotView.paint() for "+this.model.id);const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e<this.model.lod_interval?setTimeout(()=>{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint()},this.model.lod_timeout):t.interactive_stop()}for(const[,t]of this.renderer_views)if(null==this.range_update_timestamp||t instanceof l.GlyphRendererView&&t.set_data_timestamp>this.range_update_timestamp){this.update_dataranges();break}let e=!1,i=!1;if(this._invalidate_all)e=!0,i=!0;else for(const t of this._invalidated_painters){const{level:s}=t.model;if("overlay"!=s?e=!0:i=!0,e&&i)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const s=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:a}=this.canvas_view;e&&(n.prepare(),this.canvas_view.prepare_webgl(s),this.canvas_view.clear_webgl(),this._map_hook(n.ctx,s),this._paint_empty(n.ctx,s),this._paint_outline(n.ctx,s),this._paint_levels(n.ctx,"image",s,!0),this._paint_levels(n.ctx,"underlay",s,!0),this._paint_levels(n.ctx,"glyph",s,!0),this._paint_levels(n.ctx,"guide",s,!1),this._paint_levels(n.ctx,"annotation",s,!1),n.finish()),i&&(a.prepare(),this._paint_levels(a.ctx,"overlay",s,!1),a.finish()),null==this._initial_state_info.range&&this.set_initial_range(),this._needs_paint=!1}_paint_levels(t,e,i,s){for(const n of this.computed_renderers){if(n.level!=e)continue;const a=this.renderer_views.get(n);t.save(),(s||a.needs_clip)&&(t.beginPath(),t.rect(…i),t.clip()),a.render(),t.restore(),a.has_webgl&&a.needs_webgl_blit&&(this.canvas_view.blit_webgl(t),this.canvas_view.clear_webgl())}}_map_hook(t,e){}_paint_empty(t,e){const[i,s,n,a]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,h]=e;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(t),t.fillRect(i,s,n,a),t.clearRect(o,l,r,h)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(o,l,r,h))}_paint_outline(t,e){if(this.visuals.outline_line.doit){t.save(),this.visuals.outline_line.set_value(t);let[i,s,n,a]=e;i+n==this.layout.bbox.width&&(n-=1),s+a==this.layout.bbox.height&&(a-=1),t.strokeRect(i,s,n,a),t.restore()}}to_blob(){return this.canvas_view.to_blob()}export(t,e=!0){const i="png"==t?"canvas":"svg",s=new a.CanvasLayer(i,e),{width:n,height:o}=this.layout.bbox;s.resize(n,o);const{canvas:l}=this.canvas_view.compose();return s.ctx.drawImage(l,0,0),s}serializable_state(){const t=super.serializable_state(),{children:e}=t,i=s(t,["children"]),n=this.get_renderer_views().map(t=>t.serializable_state()).filter(t=>"bbox"in t);return Object.assign(Object.assign({},i),{children:[…e,…n]})}}i.PlotView=k,k.__name__="PlotView"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});var n=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r–)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function _(e){return function(t){t.prototype.event_name=e}}class a{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=a,a.__name__="BokehEvent";class o extends a{constructor(){super(…arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=o,o.__name__="ModelEvent";let r=class extends a{_to_json(){return{}}};s.DocumentReady=r,r.__name__="DocumentReady",s.DocumentReady=r=n([_("document_ready")],r);let c=class extends o{};s.ButtonClick=c,c.__name__="ButtonClick",s.ButtonClick=c=n([_("button_click")],c);let l=class extends o{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=l,l.__name__="MenuItemClick",s.MenuItemClick=l=n([_("menu_item_click")],l);class i extends o{}s.UIEvent=i,i.__name__="UIEvent";let u=class extends i{};s.LODStart=u,u.__name__="LODStart",s.LODStart=u=n([_("lodstart")],u);let d=class extends i{};s.LODEnd=d,d.__name__="LODEnd",s.LODEnd=d=n([_("lodend")],d);let h=class extends i{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=h,h.__name__="SelectionGeometry",s.SelectionGeometry=h=n([_("selectiongeometry")],h);let m=class extends i{};s.Reset=m,m.__name__="Reset",s.Reset=m=n([_("reset")],m);class x extends i{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=x,x.__name__="PointEvent";let p=class extends x{constructor(e,t,s,n,_,a){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=p,p.__name__="Pan",s.Pan=p=n([_("pan")],p);let j=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=j,j.__name__="Pinch",s.Pinch=j=n([_("pinch")],j);let y=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=y,y.__name__="Rotate",s.Rotate=y=n([_("rotate")],y);let P=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=P,P.__name__="MouseWheel",s.MouseWheel=P=n([_("wheel")],P);let v=class extends x{};s.MouseMove=v,v.__name__="MouseMove",s.MouseMove=v=n([_("mousemove")],v);let O=class extends x{};s.MouseEnter=O,O.__name__="MouseEnter",s.MouseEnter=O=n([_("mouseenter")],O);let b=class extends x{};s.MouseLeave=b,b.__name__="MouseLeave",s.MouseLeave=b=n([_("mouseleave")],b);let g=class extends x{};s.Tap=g,g.__name__="Tap",s.Tap=g=n([_("tap")],g);let E=class extends x{};s.DoubleTap=E,E.__name__="DoubleTap",s.DoubleTap=E=n([_("doubletap")],E);let M=class extends x{};s.Press=M,M.__name__="Press",s.Press=M=n([_("press")],M);let R=class extends x{};s.PressUp=R,R.__name__="PressUp",s.PressUp=R=n([_("pressup")],R);let f=class extends x{};s.PanStart=f,f.__name__="PanStart",s.PanStart=f=n([_("panstart")],f);let S=class extends x{};s.PanEnd=S,S.__name__="PanEnd",s.PanEnd=S=n([_("panend")],S);let D=class extends x{};s.PinchStart=D,D.__name__="PinchStart",s.PinchStart=D=n([_("pinchstart")],D);let k=class extends x{};s.PinchEnd=k,k.__name__="PinchEnd",s.PinchEnd=k=n([_("pinchend")],k);let L=class extends x{};s.RotateStart=L,L.__name__="RotateStart",s.RotateStart=L=n([_("rotatestart")],L);let C=class extends x{};s.RotateEnd=C,C.__name__="RotateEnd",s.RotateEnd=C=n([_("rotateend")],C)},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),i=n.__importDefault(t(297)),r=t(15),a=t(19),h=t(72),_=n.__importStar(t(313)),o=t(315),c=t(9),l=t(8),p=t(32),u=t(302);class d{constructor(t,e,s){this.plot_view=t,this.toolbar=e,this.hit_area=s,this.pan_start=new r.Signal(this,"pan:start"),this.pan=new r.Signal(this,"pan"),this.pan_end=new r.Signal(this,"pan:end"),this.pinch_start=new r.Signal(this,"pinch:start"),this.pinch=new r.Signal(this,"pinch"),this.pinch_end=new r.Signal(this,"pinch:end"),this.rotate_start=new r.Signal(this,"rotate:start"),this.rotate=new r.Signal(this,"rotate"),this.rotate_end=new r.Signal(this,"rotate:end"),this.tap=new r.Signal(this,"tap"),this.doubletap=new r.Signal(this,"doubletap"),this.press=new r.Signal(this,"press"),this.pressup=new r.Signal(this,"pressup"),this.move_enter=new r.Signal(this,"move:enter"),this.move=new r.Signal(this,"move"),this.move_exit=new r.Signal(this,"move:exit"),this.scroll=new r.Signal(this,"scroll"),this.keydown=new r.Signal(this,"keydown"),this.keyup=new r.Signal(this,"keyup"),this.hammer=new i.default(this.hit_area,{touchAction:"auto",inputClass:i.default.TouchMouseInput}),this._configure_hammerjs(),this.hit_area.addEventListener("mousemove",t=>this._mouse_move(t)),this.hit_area.addEventListener("mouseenter",t=>this._mouse_enter(t)),this.hit_area.addEventListener("mouseleave",t=>this._mouse_exit(t)),this.hit_area.addEventListener("contextmenu",t=>this._context_menu(t)),this.hit_area.addEventListener("wheel",t=>this._mouse_wheel(t)),document.addEventListener("keydown",this),document.addEventListener("keyup",this),this.menu=new u.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener("keydown",this),document.removeEventListener("keyup",this)}handleEvent(t){"keydown"==t.type?this._key_down(t):"keyup"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get("doubletap").recognizeWith("tap"),this.hammer.get("tap").requireFailure("doubletap"),this.hammer.get("doubletap").dropRequireFailure("tap"),this.hammer.on("doubletap",t=>this._doubletap(t)),this.hammer.on("tap",t=>this._tap(t)),this.hammer.on("press",t=>this._press(t)),this.hammer.on("pressup",t=>this._pressup(t)),this.hammer.get("pan").set({direction:i.default.DIRECTION_ALL}),this.hammer.on("panstart",t=>this._pan_start(t)),this.hammer.on("pan",t=>this._pan(t)),this.hammer.on("panend",t=>this._pan_end(t)),this.hammer.get("pinch").set({enable:!0}),this.hammer.on("pinchstart",t=>this._pinch_start(t)),this.hammer.on("pinch",t=>this._pinch(t)),this.hammer.on("pinchend",t=>this._pinch_end(t)),this.hammer.get("rotate").set({enable:!0}),this.hammer.on("rotatestart",t=>this._rotate_start(t)),this.hammer.on("rotate",t=>this._rotate(t)),this.hammer.on("rotateend",t=>this._rotate_end(t))}register_tool(t){const e=t.model.event_type;null!=e&&(l.isString(e)?this._register_tool(t,e):e.forEach((e,s)=>this._register_tool(t,e,s<1)))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},h=t=>e=>{t(e.e)};switch(e){case"pan":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case"pinch":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case"rotate":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case"move":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case"tap":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n)));break;case"press":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case"scroll":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error("unsupported event_type: "+e)}s&&(null!=n._doubletap&&n.connect(this.doubletap,h(n._doubletap.bind(n))),null!=n._keydown&&n.connect(this.keydown,h(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,h(n._keyup.bind(n))),p.is_mobile&&null!=n._scroll&&"pinch"==e&&(a.logger.debug("Registering scroll on touch screen"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e){const s=this.plot_view.get_renderer_views();for(const n of c.reversed(s)){const{level:s}=n.model;if(("annotation"==s||"overlay"==s)&&null!=n.interactive_hit&&n.interactive_hit(t,e))return n}return null}_hit_test_frame(t,e){return this.plot_view.frame.bbox.contains(t,e)}_hit_test_canvas(t,e){return this.plot_view.layout.bbox.contains(t,e)}_trigger(t,e,s){const n=this.toolbar.gestures,i=t.name.split(":")[0],r=this._hit_test_renderers(e.sx,e.sy),a=this._hit_test_canvas(e.sx,e.sy);switch(i){case"move":{const s=n[i].active;null!=s&&this.trigger(t,e,s.id);const h=this.toolbar.inspectors.filter(t=>t.active);let _="default";null!=r?(_=r.cursor(e.sx,e.sy)||_,c.is_empty(h)||(t=this.move_exit)):this._hit_test_frame(e.sx,e.sy)&&(c.is_empty(h)||(_="crosshair")),this.plot_view.set_cursor(_),this.plot_view.set_toolbar_visibility(a),h.map(s=>this.trigger(t,e,s.id));break}case"tap":{const{target:a}=s;if(null!=a&&a!=this.hit_area)return;null!=r&&null!=r.on_hit&&r.on_hit(e.sx,e.sy);const h=n[i].active;null!=h&&this.trigger(t,e,h.id);break}case"scroll":{const i=n[p.is_mobile?"pinch":"scroll"].active;null!=i&&(s.preventDefault(),s.stopPropagation(),this.trigger(t,e,i.id));break}case"pan":{const r=n[i].active;null!=r&&(s.preventDefault(),this.trigger(t,e,r.id));break}default:{const s=n[i].active;null!=s&&this.trigger(t,e,s.id)}}this._trigger_bokeh_event(e)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t){const e=(()=>{const{sx:e,sy:s}=t,n=this.plot_view.frame.x_scale.invert(e),i=this.plot_view.frame.y_scale.invert(s);switch(t.type){case"wheel":return new _.MouseWheel(e,s,n,i,t.delta);case"mousemove":return new _.MouseMove(e,s,n,i);case"mouseenter":return new _.MouseEnter(e,s,n,i);case"mouseleave":return new _.MouseLeave(e,s,n,i);case"tap":return new _.Tap(e,s,n,i);case"doubletap":return new _.DoubleTap(e,s,n,i);case"press":return new _.Press(e,s,n,i);case"pressup":return new _.PressUp(e,s,n,i);case"pan":return new _.Pan(e,s,n,i,t.deltaX,t.deltaY);case"panstart":return new _.PanStart(e,s,n,i);case"panend":return new _.PanEnd(e,s,n,i);case"pinch":return new _.Pinch(e,s,n,i,t.scale);case"pinchstart":return new _.PinchStart(e,s,n,i);case"pinchend":return new _.PinchEnd(e,s,n,i);case"rotate":return new _.Rotate(e,s,n,i,t.rotation);case"rotatestart":return new _.RotateStart(e,s,n,i);case"rotateend":return new _.RotateEnd(e,s,n,i);default:return}})();null!=e&&this.plot_view.model.trigger_event(e)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return"undefined"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=h.offset(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:o.getDeltaY(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){const e=this._tap_event(t);this._trigger_bokeh_event(e),this.trigger(this.doubletap,e)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEvents=d,d.__name__="UIEvents"},n function _(e,t,n){n /!n * jQuery Mousewheel 3.1.13n n * Copyright jQuery Foundation and other contributorsn * Released under the MIT licensen * http://jquery.org/licensen */n function r(e){const t=getComputedStyle(e).fontSize;return null!=t?parseInt(t,10):null}Object.defineProperty(n,"__esModule",{value:!0}),n.getDeltaY=function(e){let t=-e.deltaY;if(e.target instanceof HTMLElement)switch(e.deltaMode){case e.DOM_DELTA_LINE:t*=r((n=e.target).offsetParent||document.body)||r(n)||16;break;case e.DOM_DELTA_PAGE:t*=function(e){return e.clientHeight}(e.target)}var n;return t}},n function _(n,e,o){Object.defineProperty(o,"__esModule",{value:!0});const t=("undefined"!=typeof window?window.requestAnimationFrame:void 0)||("undefined"!=typeof window?window.webkitRequestAnimationFrame:void 0)||("undefined"!=typeof window?window.mozRequestAnimationFrame:void 0)||("undefined"!=typeof window?window.msRequestAnimationFrame:void 0)||function(n){return n(Date.now()),-1};o.throttle=function(n,e){let o=null,i=0,u=!1;return function(){return new Promise((d,w)=>{const r=function(){i=Date.now(),o=null,u=!1;try{n(),d()}catch(n){w(n)}},a=Date.now(),f=e-(a-i);f<=0&&!u?(null!=o&&clearTimeout(o),u=!0,t(r)):o||u?d():o=setTimeout(()=>t(r),f)})}}},n function _(t,e,h){Object.defineProperty(h,"__esModule",{value:!0});const i=t(213),o=t(214),r=t(79);class s extends o.Layoutable{constructor(){super(…arguments),this.min_border={left:0,top:0,right:0,bottom:0}}_measure(t){t=new i.Sizeable(t).bounded_to(this.sizing.size);const e=this.left_panel.measure({width:0,height:t.height}),h=Math.max(e.width,this.min_border.left),o=this.right_panel.measure({width:0,height:t.height}),r=Math.max(o.width,this.min_border.right),s=this.top_panel.measure({width:t.width,height:0}),n=Math.max(s.height,this.min_border.top),a=this.bottom_panel.measure({width:t.width,height:0}),g=Math.max(a.height,this.min_border.bottom),_=new i.Sizeable(t).shrink_by({left:h,right:r,top:n,bottom:g}),m=this.center_panel.measure(_);return{width:h+m.width+r,height:n+m.height+g,inner:{left:h,right:r,top:n,bottom:g},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return"fixed"!=t&&"fixed"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const h=this.left_panel.measure({width:0,height:t.height}),i=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:n,top:a,right:g,bottom:_}=e;this.top_panel.set_geometry(new r.BBox({left:n,right:g,bottom:a,height:o.height})),this.bottom_panel.set_geometry(new r.BBox({left:n,right:g,top:_,height:s.height})),this.left_panel.set_geometry(new r.BBox({top:a,bottom:_,right:n,width:h.width})),this.right_panel.set_geometry(new r.BBox({top:a,bottom:_,left:g,width:i.width}))}}h.BorderLayout=s,s.__name__="BorderLayout"},n function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const l=i(213),a=i(214),r=i(8),o=Math.PI/2,h="left",s="center",n={above:{parallel:0,normal:-o,horizontal:0,vertical:-o},below:{parallel:0,normal:o,horizontal:0,vertical:o},left:{parallel:-o,normal:0,horizontal:0,vertical:-o},right:{parallel:o,normal:0,horizontal:0,vertical:o}},d={above:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"alphabetic",vertical:"middle"},below:{justified:"bottom",parallel:"hanging",normal:"middle",horizontal:"hanging",vertical:"middle"},left:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"middle",vertical:"alphabetic"},right:{justified:"top",parallel:"alphabetic",normal:"middle",horizontal:"middle",vertical:"alphabetic"}},_={above:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},below:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},left:{justified:s,parallel:s,normal:"right",horizontal:"right",vertical:s},right:{justified:s,parallel:s,normal:h,horizontal:h,vertical:s}},c={above:"right",below:h,left:"right",right:h},m={above:h,below:"right",left:"right",right:h};class g extends a.ContentLayoutable{constructor(i,t){switch(super(),this.side=i,this.obj=t,this.side){case"above":this._dim=0,this._normals=[0,-1];break;case"below":this._dim=0,this._normals=[0,1];break;case"left":this._dim=1,this._normals=[-1,0];break;case"right":this._dim=1,this._normals=[1,0]}this.is_horizontal?this.set_sizing({width_policy:"max",height_policy:"fixed"}):this.set_sizing({width_policy:"fixed",height_policy:"max"})}_content_size(){return new l.Sizeable(this.get_oriented_size())}get_oriented_size(){const{width:i,height:t}=this.obj.get_size();return!this.obj.rotate||this.is_horizontal?{width:i,height:t}:{width:t,height:i}}has_size_changed(){const{width:i,height:t}=this.get_oriented_size();return this.is_horizontal?this.bbox.height!=t:this.bbox.width!=i}get dimension(){return this._dim}get normals(){return this._normals}get is_horizontal(){return 0==this._dim}get is_vertical(){return 1==this._dim}apply_label_text_heuristics(i,t){const e=this.side;let l,a;r.isString(t)?(l=d[e][t],a=_[e][t]):t<0?(l="middle",a=c[e]):(l="middle",a=m[e]),i.textBaseline=l,i.textAlign=a}get_label_angle_heuristic(i){return n[this.side][i]}}e.SidePanel=g,g.__name__="SidePanel"},n function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const i=t(15),o=t(72),a=t(37),n=t(312),p=new i.Signal0({},"gmaps_ready");class l extends n.PlotView{initialize(){this.pause(),super.initialize(),this._tiles_loaded=!1,this.zoom_count=0;const{zoom:t,lat:e,lng:s}=this.model.map_options;if(this.initial_zoom=t,this.initial_lat=e,this.initial_lng=s,"undefined"==typeof google||null==google.maps){if(void 0===window._bokeh_gmaps_callback){!function(t){window._bokeh_gmaps_callback=()=>p.emit();const e=document.createElement("script");e.type="text/javascript",e.src=`https://maps.googleapis.com/maps/api/js?v=3.36&key=${t}&callback=_bokeh_gmaps_callback`,document.body.appendChild(e)}(atob(this.model.api_key))}p.connect(()=>this.request_render())}this.unpause()}remove(){o.remove(this.map_el),super.remove()}update_range(t){if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(t.sdx||0,t.sdy||0),super.update_range(t);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t);const e=t.factor<0?-1:1,s=this.map.getZoom(),i=s+e;if(i>=2){this.map.setZoom(i);const[t,e,,]=this._get_projected_bounds();e-t<0&&this.map.setZoom(s)}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=o.div({style:{position:"absolute"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,"idle",()=>this._set_bokeh_ranges()),t.event.addListener(this.map,"bounds_changed",()=>this._set_bokeh_ranges()),t.event.addListenerOnce(this.map,"tilesloaded",()=>this._render_finished()),this.connect(this.model.properties.map_options.change,()=>this._update_options()),this.connect(this.model.map_options.properties.styles.change,()=>this._update_styles()),this.connect(this.model.map_options.properties.lat.change,()=>this._update_center("lat")),this.connect(this.model.map_options.properties.lng.change,()=>this._update_center("lng")),this.connect(this.model.map_options.properties.zoom.change,()=>this._update_zoom()),this.connect(this.model.map_options.properties.map_type.change,()=>this._update_map_type()),this.connect(this.model.map_options.properties.scale_control.change,()=>this._update_scale_control()),this.connect(this.model.map_options.properties.tilt.change,()=>this._update_tilt())}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,i]=this._get_latlon_bounds(),[o,n]=a.wgs84_mercator.compute(t,s),[p,l]=a.wgs84_mercator.compute(e,i);return[o,p,n,l]}_set_bokeh_ranges(){const[t,e,s,i]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:i})}_update_center(t){const e=this.map.getCenter().toJSON();e[t]=this.model.map_options[t],this.map.setCenter(e),this._set_bokeh_ranges()}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center("lat"),this._update_center("lng"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&"undefined"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,i,o]=e;this.map_el.style.top=s+"px",this.map_el.style.left=t+"px",this.map_el.style.width=i+"px",this.map_el.style.height=o+"px"}}_paint_empty(t,e){const s=this.layout.bbox.width,i=this.layout.bbox.height,[o,a,n,p]=e;t.clearRect(0,0,s,i),t.beginPath(),t.moveTo(0,0),t.lineTo(0,i),t.lineTo(s,i),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(o,a),t.lineTo(o+n,a),t.lineTo(o+n,a+p),t.lineTo(o,a+p),t.lineTo(o,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=this.model.border_fill_color,t.fill())}}s.GMapPlotView=l,l.__name__="GMapPlotView"},n function _(a,e,n){Object.defineProperty(n,"__esModule",{value:!0});var g=a(211);n.DataRange=g.DataRange;var R=a(210);n.DataRange1d=R.DataRange1d;var r=a(98);n.FactorRange=r.FactorRange;var t=a(99);n.Range=t.Range;var d=a(158);n.Range1d=d.Range1d},n function _(e,r,d){Object.defineProperty(d,"__esModule",{value:!0});var n=e(90);d.GlyphRenderer=n.GlyphRenderer;var R=e(116);d.GraphRenderer=R.GraphRenderer;var a=e(178);d.GuideRenderer=a.GuideRenderer;var G=e(70);d.Renderer=G.Renderer},n function _(a,e,l){Object.defineProperty(l,"__esModule",{value:!0});var c=a(209);l.CategoricalScale=c.CategoricalScale;var r=a(146);l.ContinuousScale=r.ContinuousScale;var n=a(145);l.LinearScale=n.LinearScale;var o=a(156);l.LinearInterpolationScale=o.LinearInterpolationScale;var i=a(157);l.LogScale=i.LogScale;var S=a(147);l.Scale=S.Scale},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});e(1).__exportStar(e(118),o);var n=e(88);o.Selection=n.Selection},n function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});var o=a(325);r.ServerSentDataSource=o.ServerSentDataSource;var S=a(327);r.AjaxDataSource=S.AjaxDataSource;var u=a(85);r.ColumnDataSource=u.ColumnDataSource;var t=a(86);r.ColumnarDataSource=t.ColumnarDataSource;var c=a(114);r.CDSView=c.CDSView;var D=a(87);r.DataSource=D.DataSource;var v=a(328);r.GeoJSONDataSource=v.GeoJSONDataSource;var n=a(326);r.WebDataSource=n.WebDataSource},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e(326);class s extends a.WebDataSource{constructor(e){super(e),this.initialized=!1}destroy(){super.destroy()}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{this.load_data(JSON.parse(e.data),this.mode,this.max_size)}}}}i.ServerSentDataSource=s,s.__name__="ServerSentDataSource"},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const r=e(1),s=e(85),i=r.__importStar(e(18));class n extends s.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:r}=this;let s;switch(s=null!=r?r.execute(this,{response:e}):e,t){case"replace":this.data=s;break;case"append":{const e=this.data;for(const t of this.columns()){const r=Array.from(e[t]),i=Array.from(s[t]);s[t]=r.concat(i).slice(-a)}this.data=s;break}}}static init_WebDataSource(){this.define({mode:[i.UpdateMode,"replace"],max_size:[i.Number],adapter:[i.Any,null],data_url:[i.String]})}}a.WebDataSource=n,n.__name__="WebDataSource",n.init_WebDataSource()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),a=t(326),r=t(19),o=s.__importStar(t(18)),n=t(13);class d extends a.WebDataSource{constructor(t){super(t),this.initialized=!1}static init_AjaxDataSource(){this.define({polling_interval:[o.Number],content_type:[o.String,"application/json"],http_headers:[o.Any,{}],method:[o.HTTPMethod,"POST"],if_modified:[o.Boolean,!1]})}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=0,i=!1){const s=this.prepare_request();s.addEventListener("load",()=>this.do_load(s,t,e)),s.addEventListener("error",()=>this.do_error(s)),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader("Content-Type",this.content_type);const e=this.http_headers;for(const[i,s]of n.entries(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){r.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=d,d.__name__="AjaxDataSource",d.init_AjaxDataSource()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1),n=e(86),s=e(19),a=r.__importStar(e(18)),i=e(9),l=e(13);function c(e){return null!=e?e:NaN}class _ extends n.ColumnarDataSource{constructor(e){super(e)}static init_GeoJSONDataSource(){this.define({geojson:[a.Any]}),this.internal({data:[a.Any,{}]})}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,()=>this._update_data())}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return i.range(0,e).map(e=>[])}_get_new_nan_array(e){return i.range(0,e).map(e=>NaN)}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of l.entries(s))t.hasOwnProperty(e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=c(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case"Point":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=c(s);break}case"LineString":{const{coordinates:r}=e;for(let e=0;e<r.length;e++){const[n,s,a]=r[e];t.xs[o][e]=n,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"Polygon":{e.coordinates.length>1&&s.logger.warn("Bokeh does not support Polygons with holes in, only exterior ring used.");const r=e.coordinates[0];for(let e=0;e<r.length;e++){const[n,s,a]=r[e];t.xs[o][e]=n,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"MultiPoint":s.logger.warn("MultiPoint not supported in Bokeh");break;case"MultiLineString":{const n=e.coordinates.reduce(r);for(let e=0;e<n.length;e++){const[r,s,a]=n[e];t.xs[o][e]=r,t.ys[o][e]=s,t.zs[o][e]=c(a)}break}case"MultiPolygon":{const n=[];for(const t of e.coordinates)t.length>1&&s.logger.warn("Bokeh does not support Polygons with holes in, only exterior ring used."),n.push(t[0]);const a=n.reduce(r);for(let e=0;e<a.length;e++){const[r,n,s]=a[e];t.xs[o][e]=r,t.ys[o][e]=n,t.zs[o][e]=c(s)}break}default:throw new Error("Invalid GeoJSON geometry type: "+e.type)}}geojson_to_column_data(){const e=JSON.parse(this.geojson);let t;switch(e.type){case"GeometryCollection":if(null==e.geometries)throw new Error("No geometries found in GeometryCollection");if(0===e.geometries.length)throw new Error("geojson.geometries must have one or more items");t=e.geometries;break;case"FeatureCollection":if(null==e.features)throw new Error("No features found in FeaturesCollection");if(0==e.features.length)throw new Error("geojson.features must have one or more items");t=e.features;break;default:throw new Error("Bokeh only supports type GeometryCollection and FeatureCollection at top level")}let o=0;for(const e of t){const t="Feature"===e.type?e.geometry:e;"GeometryCollection"==t.type?o+=t.geometries.length:o+=1}const r={x:this._get_new_nan_array(o),y:this._get_new_nan_array(o),z:this._get_new_nan_array(o),xs:this._get_new_list_array(o),ys:this._get_new_list_array(o),zs:this._get_new_list_array(o)};let n=0;for(const e of t){const t="Feature"==e.type?e.geometry:e;if("GeometryCollection"==t.type)for(const s of t.geometries)this._add_geometry(s,r,n),"Feature"===e.type&&this._add_properties(e,r,n,o),n+=1;else this._add_geometry(t,r,n),"Feature"===e.type&&this._add_properties(e,r,n,o),n+=1}return r}}o.GeoJSONDataSource=_,_.__name__="GeoJSONDataSource",_.init_GeoJSONDataSource()},n function _(e,r,i){Object.defineProperty(i,"__esModule",{value:!0});var c=e(127);i.AdaptiveTicker=c.AdaptiveTicker;var a=e(126);i.BasicTicker=a.BasicTicker;var k=e(180);i.CategoricalTicker=k.CategoricalTicker;var T=e(191);i.CompositeTicker=T.CompositeTicker;var t=e(128);i.ContinuousTicker=t.ContinuousTicker;var o=e(190);i.DatetimeTicker=o.DatetimeTicker;var v=e(192);i.DaysTicker=v.DaysTicker;var n=e(330);i.FixedTicker=n.FixedTicker;var s=e(199);i.LogTicker=s.LogTicker;var l=e(202);i.MercatorTicker=l.MercatorTicker;var u=e(195);i.MonthsTicker=u.MonthsTicker;var d=e(193);i.SingleIntervalTicker=d.SingleIntervalTicker;var g=e(129);i.Ticker=g.Ticker;var C=e(196);i.YearsTicker=C.YearsTicker},n function _(i,t,e){Object.defineProperty(e,"__esModule",{value:!0});const r=i(1),n=i(128),s=r.__importStar(i(18));class _ extends n.ContinuousTicker{constructor(i){super(i),this.min_interval=0,this.max_interval=0}static init_FixedTicker(){this.define({ticks:[s.Array,[]],minor_ticks:[s.Array,[]]})}get_ticks_no_defaults(i,t,e,r){return{major:this.ticks,minor:this.minor_ticks}}get_interval(i,t,e){return 0}}e.FixedTicker=_,_.__name__="FixedTicker",_.init_FixedTicker()},n function _(e,r,o){Object.defineProperty(o,"__esModule",{value:!0});var T=e(332);o.BBoxTileSource=T.BBoxTileSource;var c=e(333);o.MercatorTileSource=c.MercatorTileSource;var i=e(336);o.QUADKEYTileSource=i.QUADKEYTileSource;var l=e(337);o.TileRenderer=l.TileRenderer;var S=e(334);o.TileSource=S.TileSource;var u=e(341);o.TMSTileSource=u.TMSTileSource;var a=e(338);o.WMTSTileSource=a.WMTSTileSource},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(1),i=e(333),l=o.__importStar(e(18));class _ extends i.MercatorTileSource{constructor(e){super(e)}static init_BBoxTileSource(){this.define({use_latlon:[l.Boolean,!1]})}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars);let i,l,_,n;return this.use_latlon?[l,n,i,_]=this.get_tile_geographic_bounds(e,t,r):[l,n,i,_]=this.get_tile_meter_bounds(e,t,r),o.replace("{XMIN}",l.toString()).replace("{YMIN}",n.toString()).replace("{XMAX}",i.toString()).replace("{YMAX}",_.toString())}}r.BBoxTileSource=_,_.__name__="BBoxTileSource",_.init_BBoxTileSource()},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const _=t(1),s=t(334),r=_.__importStar(t(18)),o=t(9),n=t(335);class l extends s.TileSource{constructor(t){super(t)}static init_MercatorTileSource(){this.define({snap_to_zoom:[r.Boolean,!1],wrap_around:[r.Boolean,!0]}),this.override({x_origin_offset:20037508.34,y_origin_offset:20037508.34,initial_resolution:156543.03392804097})}initialize(){super.initialize(),this._resolutions=o.range(this.min_zoom,this.max_zoom+1).map(t=>this.get_resolution(t))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)<Math.abs(t-r)?e:t}));return this._resolutions.indexOf(o)}snap_to_zoom_level(t,e,i,_){const[s,r,o,n]=t,l=this._resolutions[_];let u=i*l,a=e*l;if(!this.snap_to_zoom){const t=(o-s)/u,e=(n-r)/a;t>e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<<i)-e]}meters_to_tile(t,e,i){const[_,s]=this.meters_to_pixels(t,e,i);return this.pixels_to_tile(_,s)}get_tile_meter_bounds(t,e,i){const[_,s]=this.pixels_to_meters(t*this.tile_size,e*this.tile_size,i),[r,o]=this.pixels_to_meters((t+1)*this.tile_size,(e+1)*this.tile_size,i);return[_,s,r,o]}get_tile_geographic_bounds(t,e,i){const _=this.get_tile_meter_bounds(t,e,i),[s,r,o,l]=n.meters_extent_to_geographic(_);return[s,r,o,l]}get_tiles_by_extent(t,e,i=1){const[_,s,r,o]=t;let[n,l]=this.meters_to_tile(_,s,e),[u,a]=this.meters_to_tile(r,o,e);n-=i,l-=i,u+=i,a+=i;const h=[];for(let t=a;t>=l;t–)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s–){const r=1<<s-1;switch(t.charAt(_-s)){case"0":continue;case"1":e|=r;break;case"2":i|=r;break;case"3":e|=r,i|=r;break;default:throw new TypeError("Invalid Quadkey: "+t)}}return[e,i,_]}tile_xyz_to_quadkey(t,e,i){let _="";for(let s=i;s>0;s–){const i=1<<s-1;let r=0;0!=(t&i)&&(r+=1),0!=(e&i)&&(r+=2),_+=r.toString()}return _}children_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=[];for(let t=0;t<=3;t++){const[e,i,r]=this.quadkey_to_tile_xyz(_+t.toString()),o=this.get_tile_meter_bounds(e,i,r);s.push([e,i,r,o])}return s}get_closest_parent_by_tile_xyz(t,e,i){const _=this.calculate_world_x_by_tile_xyz(t,e,i);[t,e,i]=this.normalize_xyz(t,e,i);let s=this.tile_xyz_to_quadkey(t,e,i);for(;s.length>0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=l,l.__name__="MercatorTileSource",l.init_MercatorTileSource()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1),n=e(81),s=e(13),l=i.__importStar(e(18));class a extends n.Model{constructor(e){super(e)}static init_TileSource(){this.define({url:[l.String,""],tile_size:[l.Number,256],max_zoom:[l.Number,30],min_zoom:[l.Number,0],extra_url_vars:[l.Any,{}],attribution:[l.String,""],x_origin_offset:[l.Number],y_origin_offset:[l.Number],initial_resolution:[l.Number]})}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._clear_cache())}string_lookup_replace(e,t){let r=e;for(const[e,i]of s.entries(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace("{x}","{X}").replace("{y}","{Y}").replace("{z}","{Z}").replace("{q}","{Q}").replace("{xmin}","{XMIN}").replace("{ymin}","{YMIN}").replace("{xmax}","{XMAX}").replace("{ymax}","{YMAX}");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(":").map(e=>parseInt(e));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,s]=t,l=(n-r)/2+r,a=(s-i)/2+i;e.sort((function(e,t){return Math.sqrt((l-e[0])**2+(a-e[1])**2)-Math.sqrt((l-t[0])**2+(a-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace("{X}",e.toString()).replace("{Y}",t.toString()).replace("{Z}",r.toString())}}r.TileSource=a,a.__name__="TileSource",a.init_TileSource()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const n=e(37);function o(e,t){return n.wgs84_mercator.compute(e,t)}function c(e,t){return n.wgs84_mercator.invert(e,t)}r.geographic_to_meters=o,r.meters_to_geographic=c,r.geographic_extent_to_meters=function(e){const[t,r,n,c]=e,[_,u]=o(t,r),[i,g]=o(n,c);return[_,u,i,g]},r.meters_extent_to_geographic=function(e){const[t,r,n,o]=e,[_,u]=c(t,r),[i,g]=c(n,o);return[_,u,i,g]}},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const _=e(333);class s extends _.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const _=this.string_lookup_replace(this.url,this.extra_url_vars),[s,o,u]=this.tms_to_wmts(e,t,r),c=this.tile_xyz_to_quadkey(s,o,u);return _.replace("{Q}",c)}}r.QUADKEYTileSource=s,s.__name__="QUADKEYTileSource"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),_=t(338),n=t(91),a=t(158),r=t(72),o=s.__importStar(t(18)),h=t(251),l=t(9),d=t(8),m=t(89),c=t(85),g=t(339),p=s.__importDefault(t(340));class u extends n.DataRendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.tile_source.change,()=>this.request_render())}styles(){return[…super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&r.removeElement(this.attribution_el);const{attribution:t}=this.model.tile_source;if(d.isString(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=r.div({class:g.bk_tile_attribution,style:{position:"absolute",right:s+"px",bottom:_+"px","max-width":n-4+"px",padding:"2px","background-color":"rgba(255,255,255,0.5)","font-size":"9px","line-height":"1.05","white-space":"nowrap",overflow:"hidden","text-overflow":"ellipsis"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\s\n\s*/g," ")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof a.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof a.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const[n,a,r]=this.model.tile_source.normalize_xyz(t,e,i),o={img:void 0,tile_coords:[t,e,i],normalized_coords:[n,a,r],quadkey:this.model.tile_source.tile_xyz_to_quadkey(t,e,i),cache_key:this.model.tile_source.tile_xyz_to_key(t,e,i),bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]},l=this.model.tile_source.get_image_url(n,a,r);new h.ImageLoader(l,{loaded:t=>{Object.assign(o,{img:t,loaded:!0}),_?(o.finished=!0,this.notify_finished()):this.request_render()},failed(){o.finished=!0}}),this.model.tile_source.tiles.set(o.cache_key,o),this._tiles.push(o)}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0===this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,r=t,o=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,r,o,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.properties.outline_line_width.value(),e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);e<i;e++){const[i,s,_]=n[e],a=this.model.tile_source.children_by_tile_xyz(i,s,_);for(const e of a){const[i,s,_,n]=e;t.tiles.has(t.tile_xyz_to_key(i,s,_))||this._create_tile(i,s,_,n,!0)}}}_fetch_tiles(t){for(const e of t){const[t,i,s,_]=e;this._create_tile(t,i,s,_)}}_update(){const{tile_source:t}=this.model,{min_zoom:e}=t,{max_zoom:i}=t;let s=this.get_extent();const _=this.extent[2]-this.extent[0]<s[2]-s[0],n=this.map_frame.bbox.height,a=this.map_frame.bbox.width;let r=t.get_level_by_extent(s,n,a),o=!1;r<e?(s=this.extent,r=e,o=!0):r>i&&(s=this.extent,r=i,o=!0),o&&(this.x_range.setv({x_range:{start:s[0],end:s[2]}}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,r),d=[],m=[],c=[],g=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),r=t.tiles.get(a);if(null!=r&&r.loaded)m.push(a);else if(this.model.render_parents){const[e,a,r]=t.get_closest_parent_by_tile_xyz(i,s,n),o=t.tile_xyz_to_key(e,a,r),h=t.tiles.get(o);if(null!=h&&h.loaded&&!l.includes(c,o)&&c.push(o),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&g.push(e)}}}null==r&&d.push(e)}this._render_tiles(c),this._render_tiles(g),this._render_tiles(m),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout(()=>this._fetch_tiles(d),65)}}i.TileRendererView=u,u.__name__="TileRendererView";class b extends n.DataRenderer{constructor(t){super(t),this._selection_manager=new m.SelectionManager({source:new c.ColumnDataSource})}static init_TileRenderer(){this.prototype.default_view=u,this.define({alpha:[o.Number,1],smoothing:[o.Boolean,!0],tile_source:[o.Instance,()=>new _.WMTSTileSource],render_parents:[o.Boolean,!0]})}get_selection_manager(){return this._selection_manager}}i.TileRenderer=b,b.__name__="TileRenderer",b.init_TileRenderer()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(333);class s extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,_]=this.tms_to_wmts(e,t,r);return o.replace("{X}",s.toString()).replace("{Y}",c.toString()).replace("{Z}",_.toString())}}r.WMTSTileSource=s,s.__name__="WMTSTileSource"},n function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0}),i.bk_tile_attribution="bk-tile-attribution"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});n.default="\n.bk-root .bk-tile-attribution a {\n color: black;\n}\n"},n function _(e,r,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(333);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace("{X}",e.toString()).replace("{Y}",r.toString()).replace("{Z}",t.toString())}}t.TMSTileSource=c,c.__name__="TMSTileSource"},n function _(e,r,a){Object.defineProperty(a,"__esModule",{value:!0});var t=e(343);a.CanvasTexture=t.CanvasTexture;var u=e(345);a.ImageURLTexture=u.ImageURLTexture;var v=e(344);a.Texture=v.Texture},n function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t(1),c=t(344),s=r.__importStar(t(18)),i=t(29);class a extends c.Texture{constructor(t){super(t)}static init_CanvasTexture(){this.define({code:[s.String]})}get func(){const t=i.use_strict(this.code);return new Function("ctx","color","scale","weight",t)}get_pattern(t,e,n){return r=>{const c=document.createElement("canvas");c.width=e,c.height=e;const s=c.getContext("2d");return this.func.call(this,s,t,e,n),r.createPattern(c,this.repetition)}}}n.CanvasTexture=a,a.__name__="CanvasTexture",a.init_CanvasTexture()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),n=e(81),o=r.__importStar(e(18));class _ extends n.Model{constructor(e){super(e)}static init_Texture(){this.define({repetition:[o.TextureRepetition,"repeat"]})}onload(e){e()}}i.Texture=_,_.__name__="Texture",_.init_Texture()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),a=e(344),n=r.__importStar(e(18)),s=e(251);class o extends a.Texture{constructor(e){super(e)}static init_ImageURLTexture(){this.define({url:[n.String]})}initialize(){super.initialize(),this._loader=new s.ImageLoader(this.url)}get_pattern(e,t,i){return e=>this._loader.finished?e.createPattern(this._loader.image,this.repetition):null}onload(e){this._loader.promise.then(()=>e())}}i.ImageURLTexture=o,o.__name__="ImageURLTexture",o.init_ImageURLTexture()},n function _(o,l,T){Object.defineProperty(T,"__esModule",{value:!0});var a=o(307);T.ActionTool=a.ActionTool;var r=o(347);T.CustomAction=r.CustomAction;var e=o(308);T.HelpTool=e.HelpTool;var v=o(348);T.RedoTool=v.RedoTool;var t=o(349);T.ResetTool=t.ResetTool;var n=o(350);T.SaveTool=n.SaveTool;var s=o(351);T.UndoTool=s.UndoTool;var i=o(352);T.ZoomInTool=i.ZoomInTool;var P=o(355);T.ZoomOutTool=P.ZoomOutTool;var c=o(296);T.ButtonTool=c.ButtonTool;var d=o(356);T.EditTool=d.EditTool;var u=o(357);T.BoxEditTool=u.BoxEditTool;var y=o(358);T.FreehandDrawTool=y.FreehandDrawTool;var m=o(359);T.PointDrawTool=m.PointDrawTool;var x=o(360);T.PolyDrawTool=x.PolyDrawTool;var B=o(361);T.PolyTool=B.PolyTool;var S=o(362);T.PolyEditTool=S.PolyEditTool;var b=o(363);T.BoxSelectTool=b.BoxSelectTool;var h=o(366);T.BoxZoomTool=h.BoxZoomTool;var E=o(306);T.GestureTool=E.GestureTool;var Z=o(367);T.LassoSelectTool=Z.LassoSelectTool;var p=o(369);T.LineEditTool=p.LineEditTool;var w=o(371);T.PanTool=w.PanTool;var C=o(368);T.PolySelectTool=C.PolySelectTool;var D=o(372);T.RangeTool=D.RangeTool;var H=o(364);T.SelectTool=H.SelectTool;var R=o(373);T.TapTool=R.TapTool;var A=o(374);T.WheelPanTool=A.WheelPanTool;var I=o(375);T.WheelZoomTool=I.WheelZoomTool;var L=o(376);T.CrosshairTool=L.CrosshairTool;var W=o(377);T.CustomJSHover=W.CustomJSHover;var O=o(378);T.HoverTool=O.HoverTool;var _=o(295);T.InspectTool=_.InspectTool;var f=o(298);T.Tool=f.Tool;var g=o(379);T.ToolProxy=g.ToolProxy;var F=o(294);T.Toolbar=F.Toolbar;var G=o(305);T.ToolbarBase=G.ToolbarBase;var J=o(380);T.ProxyToolbar=J.ProxyToolbar;var U=o(380);T.ToolbarBox=U.ToolbarBox},n function _(t,o,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),s=t(307),e=n.__importStar(t(18)),c=t(299);class _ extends s.ActionToolButtonView{css_classes(){return super.css_classes().concat(c.bk_toolbar_button_custom_action)}}i.CustomActionButtonView=_,_.__name__="CustomActionButtonView";class l extends s.ActionToolView{doit(){null!=this.model.callback&&this.model.callback.execute(this.model)}}i.CustomActionView=l,l.__name__="CustomActionView";class u extends s.ActionTool{constructor(t){super(t),this.tool_name="Custom Action",this.button_view=_}static init_CustomAction(){this.prototype.default_view=l,this.define({action_tooltip:[e.String,"Perform a Custom Action"],callback:[e.Any],icon:[e.String]})}get tooltip(){return this.action_tooltip}}i.CustomAction=u,u.__name__="CustomAction",u.init_CustomAction()},n function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o(307),s=o(309);class n extends i.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_redo())}doit(){this.plot_view.redo()}}t.RedoToolView=n,n.__name__="RedoToolView";class _ extends i.ActionTool{constructor(o){super(o),this.tool_name="Redo",this.icon=s.bk_tool_icon_redo}static init_RedoTool(){this.prototype.default_view=n,this.override({disabled:!0}),this.register_alias("redo",()=>new _)}}t.RedoTool=_,_.__name__="RedoTool",_.init_RedoTool()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(307),i=e(309);class _ extends s.ActionToolView{doit(){this.plot_view.reset()}}o.ResetToolView=_,_.__name__="ResetToolView";class l extends s.ActionTool{constructor(e){super(e),this.tool_name="Reset",this.icon=i.bk_tool_icon_reset}static init_ResetTool(){this.prototype.default_view=_,this.register_alias("reset",()=>new l)}}o.ResetTool=l,l.__name__="ResetTool",l.init_ResetTool()},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const a=e(307),i=e(309);class n extends a.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:e});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement("a");t.href=URL.createObjectURL(o),t.download=e,t.target="_blank",t.dispatchEvent(new MouseEvent("click"))}doit(e="save"){switch(e){case"save":this.save("bokeh_plot");break;case"copy":this.copy()}}}t.SaveToolView=n,n.__name__="SaveToolView";class s extends a.ActionTool{constructor(e){super(e),this.tool_name="Save",this.icon=i.bk_tool_icon_save}static init_SaveTool(){this.prototype.default_view=n,this.register_alias("save",()=>new s)}get menu(){return[{icon:"bk-tool-icon-copy-to-clipboard",tooltip:"Copy image to clipboard",if:()=>"undefined"!=typeof ClipboardItem,handler:()=>{this.do.emit("copy")}}]}}t.SaveTool=s,s.__name__="SaveTool",s.init_SaveTool()},n function _(o,t,e){Object.defineProperty(e,"__esModule",{value:!0});const n=o(307),i=o(309);class s extends n.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_undo())}doit(){this.plot_view.undo()}}e.UndoToolView=s,s.__name__="UndoToolView";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name="Undo",this.icon=i.bk_tool_icon_undo}static init_UndoTool(){this.prototype.default_view=s,this.override({disabled:!0}),this.register_alias("undo",()=>new _)}}e.UndoTool=_,_.__name__="UndoTool",_.init_UndoTool()},n function _(o,i,e){Object.defineProperty(e,"__esModule",{value:!0});const n=o(353),s=o(309);class t extends n.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name="Zoom In",this.icon=s.bk_tool_icon_zoom_in}static init_ZoomInTool(){this.prototype.default_view=n.ZoomBaseToolView,this.register_alias("zoom_in",()=>new t({dimensions:"both"})),this.register_alias("xzoom_in",()=>new t({dimensions:"width"})),this.register_alias("yzoom_in",()=>new t({dimensions:"height"}))}}e.ZoomInTool=t,t.__name__="ZoomInTool",t.init_ZoomInTool()},n function _(o,t,e){Object.defineProperty(e,"__esModule",{value:!0});const i=o(1),s=o(307),n=o(354),_=i.__importStar(o(18));class l extends s.ActionToolView{doit(){const o=this.plot_view.frame,t=this.model.dimensions,e="width"==t||"both"==t,i="height"==t||"both"==t,s=n.scale_range(o,this.model.sign*this.model.factor,e,i);this.plot_view.push_state("zoom_out",{range:s}),this.plot_view.update_range(s,!1,!0),this.model.document&&this.model.document.interactive_start(this.plot_model)}}e.ZoomBaseToolView=l,l.__name__="ZoomBaseToolView";class a extends s.ActionTool{constructor(o){super(o)}static init_ZoomBaseTool(){this.prototype.default_view=l,this.define({factor:[_.Percent,.1],dimensions:[_.Dimensions,"both"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.ZoomBaseTool=a,a.__name__="ZoomBaseTool",a.init_ZoomBaseTool()},n function _(n,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=n(10);function r(n,e,t){const[o,r]=[n.start,n.end],s=null!=t?t:(r+o)/2;return[o-(o-s)*e,r-(r-s)*e]}function s(n,[e,t]){const o=new Map;for(const[r,s]of n){const[n,c]=s.r_invert(e,t);o.set(r,{start:n,end:c})}return o}t.scale_highlow=r,t.get_info=s,t.scale_range=function(n,e,t=!0,c=!0,l){e=o.clamp(e,-.9,.9);const a=t?e:0,[u,_]=r(n.bbox.h_range,a,null!=l?l.x:void 0),i=s(n.x_scales,[u,_]),f=c?e:0,[d,b]=r(n.bbox.v_range,f,null!=l?l.y:void 0);return{xrs:i,yrs:s(n.y_scales,[d,b]),factor:e}}},n function _(o,t,i){Object.defineProperty(i,"__esModule",{value:!0});const e=o(353),s=o(309);class n extends e.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name="Zoom Out",this.icon=s.bk_tool_icon_zoom_out}static init_ZoomOutTool(){this.prototype.default_view=e.ZoomBaseToolView,this.register_alias("zoom_out",()=>new n({dimensions:"both"})),this.register_alias("xzoom_out",()=>new n({dimensions:"width"})),this.register_alias("yzoom_out",()=>new n({dimensions:"height"}))}}i.ZoomOutTool=n,n.__name__="ZoomOutTool",n.init_ZoomOutTool()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1).__importStar(e(18)),i=e(9),n=e(8),r=e(11),_=e(306);class c extends _.GestureToolView{constructor(){super(…arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:o}=e;return t||o?t&&!o?"append":!t&&o?"intersect":t&&o?"subtract":void r.unreachable():"replace"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,o){if(!this.plot_view.frame.bbox.contains(e,t))return null;const s=this.plot_view.renderer_views.get(o);return[s.coordinates.x_scale.invert(e),s.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,o=t.selected.indices;o.sort();for(const e of t.columns()){const s=t.get_array(e);for(let e=0;e<o.length;e++){const t=o[e];s.splice(t-e,1)}}this._emit_cds_changes(t)}_pop_glyphs(e,t){const o=e.columns();if(t&&o.length)for(const s of o){let o=e.get_array(s);const i=o.length-t+1;i<1||(n.isArray(o)||(o=Array.from(o),e.data[s]=o),o.splice(0,i))}}_emit_cds_changes(e,t=!0,o=!0,s=!0){o&&e.selection_manager.clear(),t&&e.change.emit(),s&&(e.data=e.data,e.properties.data.change.emit())}_drag_points(e,t,o="both"){if(null==this._basepoint)return;const[s,i]=this._basepoint;for(const n of t){const t=this._map_drag(s,i,n),r=this._map_drag(e.sx,e.sy,n);if(null==r||null==t)continue;const[_,c]=r,[a,l]=t,[d,u]=[_-a,c-l],h=n.glyph,m=n.data_source,[p,f]=[h.x.field,h.y.field];for(const e of m.selected.indices)!p||"width"!=o&&"both"!=o||(m.data[p][e]+=d),!f||"height"!=o&&"both"!=o||(m.data[f][e]+=u);m.change.emit()}this._basepoint=[e.sx,e.sy]}_pad_empty_columns(e,t){for(const o of e.columns())i.includes(t,o)||e.get_array(o).push(this.model.empty_value)}_select_event(e,t,o){const s=this.plot_view.frame,{sx:i,sy:n}=e;if(!s.bbox.contains(i,n))return[];const r={type:"point",sx:i,sy:n},_=[];for(const e of o){const o=e.get_selection_manager(),s=e.data_source,i=[this.plot_view.renderer_views.get(e)];o.select(i,r,!0,t)&&_.push(e),s.properties.selected.change.emit()}return _}}o.EditToolView=c,c.__name__="EditToolView";class a extends _.GestureTool{constructor(e){super(e)}static init_EditTool(){this.define({custom_icon:[s.String],custom_tooltip:[s.String],empty_value:[s.Any],renderers:[s.Array,[]]})}get tooltip(){return this.custom_tooltip||this.tool_name}get computed_icon(){return this.custom_icon||this.icon}}o.EditTool=a,a.__name__="EditTool",a.init_EditTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),_=e(72),o=i.__importStar(e(18)),n=e(356),a=e(309);class d extends n.EditToolView{_tap(e){null==this._draw_basepoint&&null==this._basepoint&&this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)if(e.keyCode===_.Keys.Backspace)this._delete_selected(t);else if(e.keyCode==_.Keys.Esc){t.data_source.selection_manager.clear()}}_set_extent([e,t],[s,i],_,o=!1){const n=this.model.renderers[0],a=this.plot_view.renderer_views.get(n),d=n.glyph,l=n.data_source,[r,h]=a.coordinates.x_scale.r_invert(e,t),[p,u]=a.coordinates.y_scale.r_invert(s,i),[c,m]=[(r+h)/2,(p+u)/2],[f,b]=[h-r,u-p],[x,y]=[d.x.field,d.y.field],[w,v]=[d.width.field,d.height.field];if(_)this._pop_glyphs(l,this.model.num_objects),x&&l.get_array(x).push(c),y&&l.get_array(y).push(m),w&&l.get_array(w).push(f),v&&l.get_array(v).push(b),this._pad_empty_columns(l,[x,y,w,v]);else{const e=l.data[x].length-1;x&&(l.data[x][e]=c),y&&(l.data[y][e]=m),w&&(l.data[w][e]=f),v&&(l.data[v][e]=b)}this._emit_cds_changes(l,!0,!1,o)}_update_box(e,t=!1,s=!1){if(null==this._draw_basepoint)return;const i=[e.sx,e.sy],_=this.plot_view.frame,o=this.model.dimensions,n=this.model._get_dim_limits(this._draw_basepoint,i,_,o);if(null!=n){const[e,i]=n;this._set_extent(e,i,t,s)}}_doubletap(e){this.model.active&&(null!=this._draw_basepoint?(this._update_box(e,!1,!0),this._draw_basepoint=null):(this._draw_basepoint=[e.sx,e.sy],this._select_event(e,"append",this.model.renderers),this._update_box(e,!0,!1)))}_move(e){this._update_box(e,!1,!1)}_pan_start(e){if(e.shiftKey){if(null!=this._draw_basepoint)return;this._draw_basepoint=[e.sx,e.sy],this._update_box(e,!0,!1)}else{if(null!=this._basepoint)return;this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy]}}_pan(e,t=!1,s=!1){if(e.shiftKey){if(null==this._draw_basepoint)return;this._update_box(e,t,s)}else{if(null==this._basepoint)return;this._drag_points(e,this.model.renderers)}}_pan_end(e){if(this._pan(e,!1,!0),e.shiftKey)this._draw_basepoint=null;else{this._basepoint=null;for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0)}}}s.BoxEditToolView=d,d.__name__="BoxEditToolView";class l extends n.EditTool{constructor(e){super(e),this.tool_name="Box Edit Tool",this.icon=a.bk_tool_icon_box_edit,this.event_type=["tap","pan","move"],this.default_order=1}static init_BoxEditTool(){this.prototype.default_view=d,this.define({dimensions:[o.Dimensions,"both"],num_objects:[o.Int,0]})}}s.BoxEditTool=l,l.__name__="BoxEditTool",l.init_BoxEditTool()},n function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const s=e(1),r=e(72),_=s.__importStar(e(18)),o=e(8),i=e(356),d=e(309);class n extends i.EditToolView{_draw(e,t,a=!1){if(!this.model.active)return;const s=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,s);if(null==r)return;const[_,i]=r,d=s.data_source,n=s.glyph,[l,h]=[n.xs.field,n.ys.field];if("new"==t)this._pop_glyphs(d,this.model.num_objects),l&&d.get_array(l).push([_]),h&&d.get_array(h).push([i]),this._pad_empty_columns(d,[l,h]);else if("add"==t){if(l){const e=d.data[l].length-1;let t=d.get_array(l)[e];o.isArray(t)||(t=Array.from(t),d.data[l][e]=t),t.push(_)}if(h){const e=d.data[h].length-1;let t=d.get_array(h)[e];o.isArray(t)||(t=Array.from(t),d.data[h][e]=t),t.push(i)}}this._emit_cds_changes(d,!0,!0,a)}_pan_start(e){this._draw(e,"new")}_pan(e){this._draw(e,"add")}_pan_end(e){this._draw(e,"add",!0)}_tap(e){this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===r.Keys.Esc?t.data_source.selection_manager.clear():e.keyCode===r.Keys.Backspace&&this._delete_selected(t)}}a.FreehandDrawToolView=n,n.__name__="FreehandDrawToolView";class l extends i.EditTool{constructor(e){super(e),this.tool_name="Freehand Draw Tool",this.icon=d.bk_tool_icon_freehand_draw,this.event_type=["pan","tap"],this.default_order=3}static init_FreehandDrawTool(){this.prototype.default_view=n,this.define({num_objects:[_.Int,0]})}}a.FreehandDrawTool=l,l.__name__="FreehandDrawTool",l.init_FreehandDrawTool()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1),i=e(72),a=s.__importStar(e(18)),n=e(356),_=e(309);class r extends n.EditToolView{_tap(e){if(this._select_event(e,this._select_mode(e),this.model.renderers).length||!this.model.add)return;const t=this.model.renderers[0],o=this._map_drag(e.sx,e.sy,t);if(null==o)return;const s=t.glyph,i=t.data_source,[a,n]=[s.x.field,s.y.field],[_,r]=o;this._pop_glyphs(i,this.model.num_objects),a&&i.get_array(a).push(_),n&&i.get_array(n).push(r),this._pad_empty_columns(i,[a,n]),i.change.emit(),i.data=i.data,i.properties.data.change.emit()}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===i.Keys.Backspace?this._delete_selected(t):e.keyCode==i.Keys.Esc&&t.data_source.selection_manager.clear()}_pan_start(e){this.model.drag&&(this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){this.model.drag&&null!=this._basepoint&&this._drag_points(e,this.model.renderers)}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0);this._basepoint=null}}}o.PointDrawToolView=r,r.__name__="PointDrawToolView";class d extends n.EditTool{constructor(e){super(e),this.tool_name="Point Draw Tool",this.icon=_.bk_tool_icon_point_draw,this.event_type=["tap","pan","move"],this.default_order=2}static init_PointDrawTool(){this.prototype.default_view=r,this.define({add:[a.Boolean,!0],drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}o.PointDrawTool=d,d.__name__="PointDrawTool",d.init_PointDrawTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),r=e(72),a=i.__importStar(e(18)),o=e(8),n=e(361),_=e(309);class d extends n.PolyToolView{constructor(){super(…arguments),this._drawing=!1,this._initialized=!1}_tap(e){this._drawing?this._draw(e,"add",!0):this._select_event(e,this._select_mode(e),this.model.renderers)}_draw(e,t,s=!1){const i=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,i);if(this._initialized||this.activate(),null==r)return;const[a,n]=this._snap_to_vertex(e,…r),_=i.data_source,d=i.glyph,[l,h]=[d.xs.field,d.ys.field];if("new"==t)this._pop_glyphs(_,this.model.num_objects),l&&_.get_array(l).push([a,a]),h&&_.get_array(h).push([n,n]),this._pad_empty_columns(_,[l,h]);else if("edit"==t){if(l){const e=_.data[l][_.data[l].length-1];e[e.length-1]=a}if(h){const e=_.data[h][_.data[h].length-1];e[e.length-1]=n}}else if("add"==t){if(l){const e=_.data[l].length-1;let t=_.get_array(l)[e];const s=t[t.length-1];t[t.length-1]=a,o.isArray(t)||(t=Array.from(t),_.data[l][e]=t),t.push(s)}if(h){const e=_.data[h].length-1;let t=_.get_array(h)[e];const s=t[t.length-1];t[t.length-1]=n,o.isArray(t)||(t=Array.from(t),_.data[h][e]=t),t.push(s)}}this._emit_cds_changes(_,!0,!1,s)}_show_vertices(){if(!this.model.active)return;const e=[],t=[];for(let s=0;s<this.model.renderers.length;s++){const i=this.model.renderers[s],r=i.data_source,a=i.glyph,[o,n]=[a.xs.field,a.ys.field];if(o)for(const t of r.get_array(o))Array.prototype.push.apply(e,t);if(n)for(const e of r.get_array(n))Array.prototype.push.apply(t,e);this._drawing&&s==this.model.renderers.length-1&&(e.splice(e.length-1,1),t.splice(t.length-1,1))}this._set_vertices(e,t)}_doubletap(e){this.model.active&&(this._drawing?(this._drawing=!1,this._draw(e,"edit",!0)):(this._drawing=!0,this._draw(e,"new",!0)))}_move(e){this._drawing&&this._draw(e,"edit")}_remove(){const e=this.model.renderers[0],t=e.data_source,s=e.glyph,[i,r]=[s.xs.field,s.ys.field];if(i){const e=t.data[i].length-1,s=t.get_array(i)[e];s.splice(s.length-1,1)}if(r){const e=t.data[r].length-1,s=t.get_array(r)[e];s.splice(s.length-1,1)}this._emit_cds_changes(t)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===r.Keys.Backspace?this._delete_selected(t):e.keyCode==r.Keys.Esc&&(this._drawing&&(this._remove(),this._drawing=!1),t.data_source.selection_manager.clear())}_pan_start(e){this.model.drag&&(this._select_event(e,"append",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){if(null==this._basepoint||!this.model.drag)return;const[t,s]=this._basepoint;for(const i of this.model.renderers){const r=this._map_drag(t,s,i),a=this._map_drag(e.sx,e.sy,i);if(null==a||null==r)continue;const o=i.data_source,n=i.glyph,[_,d]=[n.xs.field,n.ys.field];if(!_&&!d)continue;const[l,h]=a,[c,g]=r,[p,f]=[l-c,h-g];for(const e of o.selected.indices){let t,s,i;_&&(s=o.data[_][e]),d?(i=o.data[d][e],t=i.length):t=s.length;for(let e=0;e<t;e++)s&&(s[e]+=p),i&&(i[e]+=f)}o.change.emit()}this._basepoint=[e.sx,e.sy]}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source);this._basepoint=null}}activate(){if(this.model.vertex_renderer&&this.model.active){if(this._show_vertices(),!this._initialized)for(const e of this.model.renderers){const t=e.data_source;t.connect(t.properties.data.change,()=>this._show_vertices())}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=d,d.__name__="PolyDrawToolView";class l extends n.PolyTool{constructor(e){super(e),this.tool_name="Polygon Draw Tool",this.icon=_.bk_tool_icon_poly_draw,this.event_type=["pan","tap","move"],this.default_order=3}static init_PolyDrawTool(){this.prototype.default_view=d,this.define({drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}s.PolyDrawTool=l,l.__name__="PolyDrawTool",l.init_PolyDrawTool()},n function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const o=e(1).__importStar(e(18)),i=e(8),s=e(356);class _ extends s.EditToolView{_set_vertices(e,t){const r=this.model.vertex_renderer.glyph,o=this.model.vertex_renderer.data_source,[s,_]=[r.x.field,r.y.field];s&&(i.isArray(e)?o.data[s]=e:r.x={value:e}),_&&(i.isArray(t)?o.data[_]=t:r.y={value:t}),this._emit_cds_changes(o,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,t,r){if(this.model.vertex_renderer){const o=this._select_event(e,"replace",[this.model.vertex_renderer]),i=this.model.vertex_renderer.data_source,s=this.model.vertex_renderer.glyph,[_,l]=[s.x.field,s.y.field];if(o.length){const e=i.selected.indices[0];_&&(t=i.data[_][e]),l&&(r=i.data[l][e]),i.selection_manager.clear()}}return[t,r]}}r.PolyToolView=_,_.__name__="PolyToolView";class l extends s.EditTool{constructor(e){super(e)}static init_PolyTool(){this.prototype.default_view=_,this.define({vertex_renderer:[o.Instance]})}}r.PolyTool=l,l.__name__="PolyTool",l.init_PolyTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(72),i=e(8),_=e(361),d=e(309);class n extends _.PolyToolView{constructor(){super(…arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,"replace",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this._select_event(e,"replace",this.model.renderers);if(!t.length)return this._set_vertices([],[]),this._selected_renderer=null,void(this._drawing=!1);const s=t[0],r=s.glyph,_=s.data_source,d=_.selected.indices[0],[n,l]=[r.xs.field,r.ys.field];let a,c;n?(a=_.data[n][d],i.isArray(a)||(_.data[n][d]=a=Array.from(a))):a=r.xs.value,l?(c=_.data[l][d],i.isArray(c)||(_.data[l][d]=c=Array.from(c))):c=r.ys.value,this._selected_renderer=s,this._set_vertices(a,c)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,"append",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===r.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==r.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=n,n.__name__="PolyEditToolView";class l extends _.PolyTool{constructor(e){super(e),this.tool_name="Poly Edit Tool",this.icon=d.bk_tool_icon_poly_edit,this.event_type=["tap","pan","move"],this.default_order=4}static init_PolyEditTool(){this.prototype.default_view=n}}s.PolyEditTool=l,l.__name__="PolyEditTool",l.init_PolyEditTool()},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(1),i=e(364),l=e(124),_=s.__importStar(e(18)),n=e(309);class c extends i.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if("center"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.push_state("box_select",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l="replace"){const _={type:"rect",sx0:e,sx1:t,sy0:o,sy1:s};this._select(_,i,l)}}o.BoxSelectToolView=c,c.__name__="BoxSelectToolView";const r=()=>new l.BoxAnnotation({level:"overlay",top_units:"screen",left_units:"screen",bottom_units:"screen",right_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.SelectTool{constructor(e){super(e),this.tool_name="Box Select",this.icon=n.bk_tool_icon_box_select,this.event_type="pan",this.default_order=30}static init_BoxSelectTool(){this.prototype.default_view=c,this.define({dimensions:[_.Dimensions,"both"],select_every_mousemove:[_.Boolean,!1],overlay:[_.Instance,r],origin:[_.BoxOrigin,"corner"]}),this.register_alias("box_select",()=>new h),this.register_alias("xbox_select",()=>new h({dimensions:"width"})),this.register_alias("ybox_select",()=>new h({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}o.BoxSelectTool=h,h.__name__="BoxSelectTool",h.init_BoxSelectTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(1),o=e(306),r=e(90),c=e(116),i=e(365),l=n.__importStar(e(18)),a=e(72),_=e(313),d=e(15),h=e(11);class p extends o.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect(()=>this._clear())}get computed_renderers(){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;return i.compute_renderers(e,t,s)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof r.GlyphRenderer)n=s.data_source;else{if(!(s instanceof c.GraphRenderer))continue;n=s.node_renderer.data_source}const o=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[…o,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?"append":!t&&s?"intersect":t&&s?"subtract":void h.unreachable():this.model.mode}_keyup(e){e.keyCode==a.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();this.plot_view.request_render()}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,o]of n){const n=o[0].get_selection_manager(),r=[];for(const e of o){const t=this.plot_view.renderer_views.get(e);null!=t&&r.push(t)}n.select(r,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let o;switch(e.type){case"point":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case"span":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case"rect":{const{sx0:t,sx1:r,sy0:c,sy1:i}=e,[l,a]=s.r_invert(t,r),[_,d]=n.r_invert(c,i);o=Object.assign(Object.assign({},e),{x0:l,y0:_,x1:a,y1:d});break}case"poly":{const{sx:t,sy:r}=e,c=s.v_invert(t),i=n.v_invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new _.SelectionGeometry(o,t))}}s.SelectToolView=p,p.__name__="SelectToolView";class u extends o.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new d.Signal0(this,"clear")}static init_SelectTool(){this.define({renderers:[l.Any,"auto"],names:[l.Array,[]],mode:[l.Any,"replace"]})}get menu(){return[{icon:"bk-tool-icon-replace-mode",tooltip:"Replace the current selection",active:()=>"replace"==this.mode,handler:()=>{this.mode="replace",this.active=!0}},{icon:"bk-tool-icon-append-mode",tooltip:"Append to the current selection (Shift)",active:()=>"append"==this.mode,handler:()=>{this.mode="append",this.active=!0}},{icon:"bk-tool-icon-intersect-mode",tooltip:"Intersect with the current selection (Ctrl)",active:()=>"intersect"==this.mode,handler:()=>{this.mode="intersect",this.active=!0}},{icon:"bk-tool-icon-subtract-mode",tooltip:"Subtract from the current selection (Shift+Ctrl)",active:()=>"subtract"==this.mode,handler:()=>{this.mode="subtract",this.active=!0}},null,{icon:"bk-tool-icon-clear-selection",tooltip:"Clear the current selection (Esc)",handler:()=>{this.clear.emit()}}]}}s.SelectTool=u,u.__name__="SelectTool",u.init_SelectTool()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(9);t.compute_renderers=function(e,n,t){if(null==e)return[];let u="auto"==e?n:e;return t.length>0&&(u=u.filter(e=>r.includes(t,e.name))),u}},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t(1),i=t(306),n=t(124),_=s.__importStar(t(18)),a=t(309);class l extends i.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m<n&&(m=n)),l=Math.abs(p-m),t[1]<=o[1]?(b=t[1],d=t[1]+l/s,d>_&&(d=_)):(d=t[1],b=t[1]-l/s,b<a&&(b=a)),r=Math.abs(d-b),t[0]<=o[0]?p=t[0]+s*r:m=t[0]-s*r,[[m,p],[b,d]]}_compute_limits(t){const o=this.plot_view.frame,e=this.model.dimensions;let s,i,n=this._base_point;if("center"==this.model.origin){const[o,e]=n,[s,i]=t;n=[o-(s-o),e-(i-e)]}return this.model.match_aspect&&"both"==e?[s,i]=this._match_aspect(n,t,o):[s,i]=this.model._get_dim_limits(n,t,o,e),[s,i]}_pan_start(t){this._base_point=[t.sx,t.sy]}_pan(t){const o=[t.sx,t.sy],[e,s]=this._compute_limits(o);this.model.overlay.update({left:e[0],right:e[1],top:s[0],bottom:s[1]})}_pan_end(t){const o=[t.sx,t.sy],[e,s]=this._compute_limits(o);this._update(e,s),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null}_update([t,o],[e,s]){if(Math.abs(o-t)<=5||Math.abs(s-e)<=5)return;const{x_scales:i,y_scales:n}=this.plot_view.frame,_=new Map;for(const[e,s]of i){const[i,n]=s.r_invert(t,o);_.set(e,{start:i,end:n})}const a=new Map;for(const[t,o]of n){const[i,n]=o.r_invert(e,s);a.set(t,{start:i,end:n})}const l={xrs:_,yrs:a};this.plot_view.push_state("box_zoom",{range:l}),this.plot_view.update_range(l)}}e.BoxZoomToolView=l,l.__name__="BoxZoomToolView";const r=()=>new n.BoxAnnotation({level:"overlay",top_units:"screen",left_units:"screen",bottom_units:"screen",right_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.GestureTool{constructor(t){super(t),this.tool_name="Box Zoom",this.icon=a.bk_tool_icon_box_zoom,this.event_type="pan",this.default_order=20}static init_BoxZoomTool(){this.prototype.default_view=l,this.define({dimensions:[_.Dimensions,"both"],overlay:[_.Instance,r],match_aspect:[_.Boolean,!1],origin:[_.BoxOrigin,"corner"]}),this.register_alias("box_zoom",()=>new h({dimensions:"both"})),this.register_alias("xbox_zoom",()=>new h({dimensions:"width"})),this.register_alias("ybox_zoom",()=>new h({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.BoxZoomTool=h,h.__name__="BoxZoomTool",h.init_BoxZoomTool()},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(1),a=e(364),i=e(368),l=e(72),_=o.__importStar(e(18)),c=e(309);class n extends a.SelectToolView{initialize(){super.initialize(),this.data=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_overlay()}_keyup(e){e.keyCode==l.Keys.Enter&&this._clear_overlay()}_pan_start(e){const{sx:s,sy:t}=e;this.data={sx:[s],sy:[t]}}_pan(e){const{sx:s,sy:t}=e,[o,a]=this.plot_view.frame.bbox.clip(s,t);this.data.sx.push(o),this.data.sy.push(a);this.model.overlay.update({xs:this.data.sx,ys:this.data.sy}),this.model.select_every_mousemove&&this._do_select(this.data.sx,this.data.sy,!1,this._select_mode(e))}_pan_end(e){this._clear_overlay(),this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state("lasso_select",{selection:this.plot_view.get_selection()})}_clear_overlay(){this.model.overlay.update({xs:[],ys:[]})}_do_select(e,s,t,o){const a={type:"poly",sx:e,sy:s};this._select(a,t,o)}}t.LassoSelectToolView=n,n.__name__="LassoSelectToolView";class h extends a.SelectTool{constructor(e){super(e),this.tool_name="Lasso Select",this.icon=c.bk_tool_icon_lasso_select,this.event_type="pan",this.default_order=12}static init_LassoSelectTool(){this.prototype.default_view=n,this.define({select_every_mousemove:[_.Boolean,!0],overlay:[_.Instance,i.DEFAULT_POLY_OVERLAY]}),this.register_alias("lasso_select",()=>new h)}}t.LassoSelectTool=h,h.__name__="LassoSelectTool",h.init_LassoSelectTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const l=e(1),i=e(364),o=e(166),a=e(72),_=l.__importStar(e(18)),c=e(9),n=e(309);class h extends i.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==a.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state("poly_select",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:c.copy(this.data.sx),ys:c.copy(this.data.sy)}))}_do_select(e,t,s,l){const i={type:"poly",sx:e,sy:t};this._select(i,s,l)}}s.PolySelectToolView=h,h.__name__="PolySelectToolView",s.DEFAULT_POLY_OVERLAY=()=>new o.PolyAnnotation({level:"overlay",xs_units:"screen",ys_units:"screen",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:2,line_dash:[4,4]});class y extends i.SelectTool{constructor(e){super(e),this.tool_name="Poly Select",this.icon=n.bk_tool_icon_polygon_select,this.event_type="tap",this.default_order=11}static init_PolySelectTool(){this.prototype.default_view=h,this.define({overlay:[_.Instance,s.DEFAULT_POLY_OVERLAY]}),this.register_alias("poly_select",()=>new y)}}s.PolySelectTool=y,y.__name__="PolySelectTool",y.init_PolySelectTool()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(370),r=s.__importStar(e(18)),_=e(309);class d extends n.LineToolView{constructor(){super(…arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const i of t){1==this._select_event(e,"replace",[i]).length&&(this._selected_renderer=i)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[i,s]=[t.x.field,t.y.field],n=e.get_array(i),r=e.get_array(s);this._set_intersection(n,r)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const i=this._select_mode(e);if(0==this._select_event(e,i,[t]).length)return}const i=this._select_mode(e);this._select_event(e,i,[t]),this._select_event(e,i,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[i,s]=[e.x.field,e.y.field];if(i&&s){const e=t.data[i],n=t.data[s];this._selected_renderer.data_source.data[i]=e,this._selected_renderer.data_source.data[s]=n}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,"append",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}i.LineEditToolView=d,d.__name__="LineEditToolView";class o extends n.LineTool{constructor(e){super(e),this.tool_name="Line Edit Tool",this.icon=_.bk_tool_icon_line_edit,this.event_type=["tap","pan","move"],this.default_order=4}static init_LineEditTool(){this.prototype.default_view=d,this.define({dimensions:[r.Dimensions,"both"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}i.LineEditTool=o,o.__name__="LineEditTool",o.init_LineEditTool()},n function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1).__importStar(e(18)),o=e(8),s=e(356);class _ extends s.EditToolView{_set_intersection(e,i){const t=this.model.intersection_renderer.glyph,n=this.model.intersection_renderer.data_source,[s,_]=[t.x.field,t.y.field];s&&(o.isArray(e)?n.data[s]=e:t.x={value:e}),_&&(o.isArray(i)?n.data[_]=i:t.y={value:i}),this._emit_cds_changes(n,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}t.LineToolView=_,_.__name__="LineToolView";class r extends s.EditTool{constructor(e){super(e)}static init_LineTool(){this.prototype.default_view=_,this.define({intersection_renderer:[n.Instance]})}}t.LineTool=r,r.__name__="LineTool",r.init_LineTool()},n function _(t,s,e){Object.defineProperty(e,"__esModule",{value:!0});const n=t(1),i=t(306),o=n.__importStar(t(18)),a=t(309);function _(t,s,e){const n=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,e);n.set(i,{start:t,end:a})}return n}e.update_ranges=_;class h extends i.GestureToolView{_pan_start(t){this.last_dx=0,this.last_dy=0;const{sx:s,sy:e}=t,n=this.plot_view.frame.bbox;if(!n.contains(s,e)){const t=n.h_range,i=n.v_range;(s<t.start||s>t.end)&&(this.v_axis_only=!0),(e<i.start||e>i.end)&&(this.h_axis_only=!0)}null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan(t){this._update(t.deltaX,t.deltaY),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.push_state("pan",{range:this.pan_info})}_update(t,s){const e=this.plot_view.frame,n=t-this.last_dx,i=s-this.last_dy,o=e.bbox.h_range,a=o.start-n,h=o.end-n,l=e.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,x,y,g;"width"!=p&&"both"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=h,m=-n),"height"!=p&&"both"!=p||this.h_axis_only?(x=l.start,y=l.end,g=0):(x=r,y=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:b}=e,f=_(w,c,u),v=_(b,x,y);this.pan_info={xrs:f,yrs:v,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,!0)}}e.PanToolView=h,h.__name__="PanToolView";class l extends i.GestureTool{constructor(t){super(t),this.tool_name="Pan",this.event_type="pan",this.default_order=10}static init_PanTool(){this.prototype.default_view=h,this.define({dimensions:[o.Dimensions,"both"]}),this.register_alias("pan",()=>new l({dimensions:"both"})),this.register_alias("xpan",()=>new l({dimensions:"width"})),this.register_alias("ypan",()=>new l({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip("Pan",this.dimensions)}get icon(){switch(this.dimensions){case"both":return a.bk_tool_icon_pan;case"width":return a.bk_tool_icon_xpan;case"height":return a.bk_tool_icon_ypan}}}e.PanTool=l,l.__name__="PanTool",l.init_PanTool()},n function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(124),l=e(19),a=s.__importStar(e(18)),r=e(306),o=e(309);function _(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function h(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)<s}function d(e,t,i,s,n){let l=!0;if(null!=n.left&&null!=n.right){const t=i.invert(e);(t<n.left||t>n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(e<n.bottom||e>n.top)&&(l=!1)}return l}function u(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function c(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function g(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,_(i))}function y(e,t,i){return e<t.end?(t.start=e,i):(t.start=t.end,t.end=e,_(i))}function f(e,t,i,s){const[n,l]=t.r_compute(e.start,e.end),[a,r]=t.r_invert(n+i,l+i),o=u(e.start,e.end,s);u(a,r,s)>=o&&(e.start=a,e.end=r)}i.flip_side=_,i.is_near=h,i.is_inside=d,i.sides_inside=u,i.compute_value=c,i.update_range_end_side=g,i.update_range_start_side=y,i.update_range=f;class p extends r.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,()=>this.model.update_overlay_from_ranges()),null!=this.model.y_range&&this.connect(this.model.y_range.change,()=>this.model.update_overlay_from_ranges())}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,l=s.x_scale,a=s.y_scale,r=this.model.overlay,{left:o,right:_,top:u,bottom:c}=r,g=this.model.overlay.properties.line_width.value()+n.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(h(e.sx,o,l,g)?this.side=1:h(e.sx,_,l,g)?this.side=2:d(e.sx,e.sy,l,a,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&h(e.sy,c,a,g)&&(this.side=4),0==this.side&&h(e.sy,u,a,g)?this.side=5:d(e.sx,e.sy,l,a,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)f(n,a,i,t.x_range);else if(1==this.side){const e=c(n.start,a,i,t.x_range);this.side=y(e,n,this.side)}else if(2==this.side){const e=c(n.end,a,i,t.x_range);this.side=g(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)f(l,r,s,t.y_range);else if(4==this.side){const e=c(l.start,r,s,t.y_range);this.side=y(e,l,this.side)}else if(5==this.side){const e=c(l.end,r,s,t.y_range);this.side=g(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0}}i.RangeToolView=p,p.__name__="RangeToolView";const m=()=>new n.BoxAnnotation({level:"overlay",fill_color:"lightgrey",fill_alpha:.5,line_color:"black",line_alpha:1,line_width:.5,line_dash:[2,2]});class v extends r.GestureTool{constructor(e){super(e),this.tool_name="Range Tool",this.icon=o.bk_tool_icon_range,this.event_type="pan",this.default_order=1}static init_RangeTool(){this.prototype.default_view=p,this.define({x_range:[a.Instance,null],x_interaction:[a.Boolean,!0],y_range:[a.Instance,null],y_interaction:[a.Boolean,!0],overlay:[a.Instance,m]})}initialize(){super.initialize(),this.overlay.in_cursor="grab",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?"ew-resize":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?"ns-resize":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,l.logger.warn("RangeTool not configured with any Ranges.")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=v,v.__name__="RangeTool",v.init_RangeTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),i=e(364),c=o.__importStar(e(18)),n=e(309);class a extends i.SelectToolView{_tap(e){const{sx:t,sy:s}=e,o={type:"point",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const o=this.model.callback;if("select"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,c]of i){const i=c[0].get_selection_manager(),n=c.map(e=>this.plot_view.renderer_views.get(e));if(i.select(n,e,t,s)&&null!=o){const t=n[0].coordinates.x_scale.invert(e.sx),s=n[0].coordinates.y_scale.invert(e.sy),c={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,c)}}this._emit_selection_event(e),this.plot_view.push_state("tap",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),c=s.coordinates.y_scale.invert(e.sy),n={geometries:Object.assign(Object.assign({},e),{x:t,y:c}),source:i.source};o.execute(this.model,n)}}}}s.TapToolView=a,a.__name__="TapToolView";class _ extends i.SelectTool{constructor(e){super(e),this.tool_name="Tap",this.icon=n.bk_tool_icon_tap_select,this.event_type="tap",this.default_order=10}static init_TapTool(){this.prototype.default_view=a,this.define({behavior:[c.TapBehavior,"select"],callback:[c.Any]}),this.register_alias("click",()=>new _({behavior:"inspect"})),this.register_alias("tap",()=>new _)}}s.TapTool=_,_.__name__="TapTool",_.init_TapTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),o=e(306),n=i.__importStar(e(18)),a=e(309),l=e(371);class _ extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,[o,n]=[s.start,s.end],[a,_]=[i.start,i.end];let h,r,d,p;switch(this.model.dimension){case"height":{const t=Math.abs(_-a);h=o,r=n,d=a-t*e,p=_-t*e;break}case"width":{const t=Math.abs(n-o);h=o-t*e,r=n-t*e,d=a,p=_;break}default:throw new Error("this shouldn’t have happened")}const{x_scales:c,y_scales:u}=t,m={xrs:l.update_ranges(c,h,r),yrs:l.update_ranges(u,d,p),factor:e};this.plot_view.push_state("wheel_pan",{range:m}),this.plot_view.update_range(m,!1,!0),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}s.WheelPanToolView=_,_.__name__="WheelPanToolView";class h extends o.GestureTool{constructor(e){super(e),this.tool_name="Wheel Pan",this.icon=a.bk_tool_icon_wheel_pan,this.event_type="scroll",this.default_order=12}static init_WheelPanTool(){this.prototype.default_view=_,this.define({dimension:[n.Dimension,"width"]}),this.internal({speed:[n.Number,.001]}),this.register_alias("xwheel_pan",()=>new h({dimension:"width"})),this.register_alias("ywheel_pan",()=>new h({dimension:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimension)}}s.WheelPanTool=h,h.__name__="WheelPanTool",h.init_WheelPanTool()},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),i=e(306),l=e(354),n=s.__importStar(e(18)),_=e(32),h=e(309);class a extends i.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:l}=e;let n;n=s>=1?20*(s-1):-20/s,this._scroll({type:"wheel",sx:o,sy:t,delta:n,ctrlKey:i,shiftKey:l})}_scroll(e){const{frame:o}=this.plot_view,t=o.bbox.h_range,s=o.bbox.v_range,{sx:i,sy:n}=e,_=this.model.dimensions,h=("width"==_||"both"==_)&&t.start<i&&i<t.end,a=("height"==_||"both"==_)&&s.start<n&&n<s.end;if(!(h&&a||this.model.zoom_on_axis))return;const m=this.model.speed*e.delta,r=l.scale_range(o,m,h,a,{x:i,y:n});this.plot_view.push_state("wheel_zoom",{range:r}),this.plot_view.update_range(r,!1,!0,this.model.maintain_focus),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}t.WheelZoomToolView=a,a.__name__="WheelZoomToolView";class m extends i.GestureTool{constructor(e){super(e),this.tool_name="Wheel Zoom",this.icon=h.bk_tool_icon_wheel_zoom,this.event_type=_.is_mobile?"pinch":"scroll",this.default_order=10}static init_WheelZoomTool(){this.prototype.default_view=a,this.define({dimensions:[n.Dimensions,"both"],maintain_focus:[n.Boolean,!0],zoom_on_axis:[n.Boolean,!0],speed:[n.Number,1/600]}),this.register_alias("wheel_zoom",()=>new m({dimensions:"both"})),this.register_alias("xwheel_zoom",()=>new m({dimensions:"width"})),this.register_alias("ywheel_zoom",()=>new m({dimensions:"height"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}t.WheelZoomTool=m,m.__name__="WheelZoomTool",m.init_WheelZoomTool()},n function _(i,s,e){Object.defineProperty(e,"__esModule",{value:!0});const t=i(1),o=i(295),n=i(168),l=t.__importStar(i(18)),h=i(13),a=i(309);class r extends o.InspectToolView{_move(i){if(!this.model.active)return;const{sx:s,sy:e}=i;this.plot_view.frame.bbox.contains(s,e)?this._update_spans(s,e):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,s){const e=this.model.dimensions;"width"!=e&&"both"!=e||(this.model.spans.width.location=s),"height"!=e&&"both"!=e||(this.model.spans.height.location=i)}}e.CrosshairToolView=r,r.__name__="CrosshairToolView";class _ extends o.InspectTool{constructor(i){super(i),this.tool_name="Crosshair",this.icon=a.bk_tool_icon_crosshair}static init_CrosshairTool(){this.prototype.default_view=r,this.define({dimensions:[l.Dimensions,"both"],line_color:[l.Color,"black"],line_width:[l.Number,1],line_alpha:[l.Number,1]}),this.internal({spans:[l.Any]}),this.register_alias("crosshair",()=>new _)}get tooltip(){return this._get_dim_tooltip("Crosshair",this.dimensions)}get synthetic_renderers(){return h.values(this.spans)}initialize(){super.initialize(),this.spans={width:new n.Span({for_hover:!0,dimension:"width",location_units:"screen",level:"overlay",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha}),height:new n.Span({for_hover:!0,dimension:"height",location_units:"screen",level:"overlay",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha})}}}e.CrosshairTool=_,_.__name__="CrosshairTool",_.init_CrosshairTool()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const r=e(1),o=e(81),i=r.__importStar(e(18)),a=e(13),n=e(29);class u extends o.Model{constructor(e){super(e)}static init_CustomJSHover(){this.define({args:[i.Any,{}],code:[i.String,""]})}get values(){return a.values(this.args)}_make_code(e,t,s,r){return new Function(…a.keys(this.args),e,t,s,n.use_strict(r))}format(e,t,s){return this._make_code("value","format","special_vars",this.code)(…this.values,e,t,s)}}s.CustomJSHover=u,u.__name__="CustomJSHover",u.init_CustomJSHover()},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const o=e(1),n=e(295),i=e(171),r=e(90),l=e(116),c=e(365),a=o.__importStar(e(101)),_=e(187),d=e(72),p=o.__importStar(e(18)),h=e(22),m=e(13),u=e(303),y=e(8),f=e(115),x=e(309),v=e(172);function w(e,t,s,o,n,i){const r={x:n[e],y:i[e]},l={x:n[e+1],y:i[e+1]};let c,_;if("span"==t.type)"h"==t.direction?(c=Math.abs(r.x-s),_=Math.abs(l.x-s)):(c=Math.abs(r.y-o),_=Math.abs(l.y-o));else{const e={x:s,y:o};c=a.dist_2_pts(r,e),_=a.dist_2_pts(l,e)}return c<_?[[r.x,r.y],e]:[[l.x,l.y],e+1]}function g(e,t,s){return[[e[s],t[s]],s]}s._nearest_line_hit=w,s._line_hit=g;class b extends n.InspectToolView{initialize(){super.initialize(),this._ttmodels=null,this._ttviews=new Map;const{tooltips:e}=this.model;y.isArray(e)&&(this._template_el=this._create_template(e))}remove(){f.remove_views(this._ttviews),super.remove()}connect_signals(){super.connect_signals();for(const e of this.computed_renderers)e instanceof r.GlyphRenderer?this.connect(e.data_source.inspect,this._update):e instanceof l.GraphRenderer&&(this.connect(e.node_renderer.data_source.inspect,this._update),this.connect(e.edge_renderer.data_source.inspect,this._update));this.connect(this.model.properties.renderers.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.names.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.tooltips.change,()=>this._ttmodels=null)}_compute_ttmodels(){const e=new Map,t=this.model.tooltips;if(null!=t)for(const s of this.computed_renderers){const o=new i.Tooltip({custom:y.isString(t)||y.isFunction(t),attachment:this.model.attachment,show_arrow:this.model.show_arrow});s instanceof r.GlyphRenderer?e.set(s,o):s instanceof l.GraphRenderer&&(e.set(s.node_renderer,o),e.set(s.edge_renderer,o))}return(async()=>{const t=await f.build_views(this._ttviews,[…e.values()],{parent:this.plot_view});for(const e of t)e.render()})(),e}get computed_renderers(){if(null==this._computed_renderers){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;this._computed_renderers=c.compute_renderers(e,t,s)}return this._computed_renderers}get ttmodels(){return null==this._ttmodels&&(this._ttmodels=this._compute_ttmodels()),this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)?this._inspect(t,s):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let s;if("mouse"==this.model.mode)s={type:"point",sx:e,sy:t};else{s={type:"span",direction:"vline"==this.model.mode?"h":"v",sx:e,sy:t}}for(const e of this.computed_renderers){e.get_selection_manager().inspect(this.plot_view.renderer_views.get(e),s)}null!=this.model.callback&&this._emit_callback(s)}_update([e,{geometry:t}]){if(!this.model.active)return;if(!(e instanceof r.GlyphRendererView))return;const{model:s}=e;if("ignore"==this.model.muted_policy&&s instanceof r.GlyphRenderer&&s.muted)return;const o=this.ttmodels.get(s);if(null==o)return;const n=s.get_selection_manager();let i=n.inspectors.get(s);if(s instanceof r.GlyphRenderer&&(i=s.view.convert_selection_to_subset(i)),i.is_empty())return void o.clear();const l=n.source,{sx:c,sy:a}=t,_=e.coordinates.x_scale,p=e.coordinates.y_scale,h=_.invert(c),u=p.invert(a),y=e.glyph,f=[];for(const s of i.line_indices){let o,n,r=y._x[s+1],d=y._y[s+1],m=s;switch(this.model.line_policy){case"interp":[r,d]=y.get_interpolation_hit(s,t),o=_.compute(r),n=p.compute(d);break;case"prev":[[o,n],m]=g(y.sx,y.sy,s);break;case"next":[[o,n],m]=g(y.sx,y.sy,s+1);break;case"nearest":[[o,n],m]=w(s,t,c,a,y.sx,y.sy),r=y._x[m],d=y._y[m];break;default:[o,n]=[c,a]}const x={index:m,x:h,y:u,sx:c,sy:a,data_x:r,data_y:d,rx:o,ry:n,indices:i.line_indices,name:e.model.name};f.push([o,n,this._render_tooltips(l,m,x)])}for(const t of i.image_indices){const s={index:t.index,x:h,y:u,sx:c,sy:a,name:e.model.name},o=this._render_tooltips(l,t,s);f.push([c,a,o])}for(const o of i.indices)if(m.isEmpty(i.multiline_indices)){const t=null!=y._x?y._x[o]:void 0,n=null!=y._y?y._y[o]:void 0;let _,d,p;if("snap_to_data"==this.model.point_policy){let e=y.get_anchor_point(this.model.anchor,o,[c,a]);null==e&&(e=y.get_anchor_point("center",o,[c,a])),_=e.x,d=e.y}else[_,d]=[c,a];p=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const m={index:p,x:h,y:u,sx:c,sy:a,data_x:t,data_y:n,indices:i.indices,name:e.model.name};f.push([_,d,this._render_tooltips(l,p,m)])}else for(const n of i.multiline_indices[o.toString()]){let d,m,x,v=y._xs[o][n],b=y._ys[o][n],k=n;switch(this.model.line_policy){case"interp":[v,b]=y.get_interpolation_hit(o,n,t),d=_.compute(v),m=p.compute(b);break;case"prev":[[d,m],k]=g(y.sxs[o],y.sys[o],n);break;case"next":[[d,m],k]=g(y.sxs[o],y.sys[o],n+1);break;case"nearest":[[d,m],k]=w(n,t,c,a,y.sxs[o],y.sys[o]),v=y._xs[o][k],b=y._ys[o][k];break;default:throw new Error("should’t have happened")}x=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const A={index:x,x:h,y:u,sx:c,sy:a,data_x:v,data_y:b,segment_index:k,indices:i.multiline_indices,name:e.model.name};f.push([d,m,this._render_tooltips(l,x,A)])}if(0==f.length)o.clear();else{const{content:e}=o;d.empty(o.content);for(const[,,t]of f)e.appendChild(t);const[t,s]=f[f.length-1];o.setv({position:[t,s]},{check_eq:!1})}}_emit_callback(e){for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),o=s.coordinates.x_scale.invert(e.sx),n=s.coordinates.y_scale.invert(e.sy),i=t.data_source.inspected,r=Object.assign({x:o,y:n},e);this.model.callback.execute(this.model,{index:i,geometry:r,renderer:t})}}_create_template(e){const t=d.div({style:{display:"table",borderSpacing:"2px"}});for(const[s]of e){const e=d.div({style:{display:"table-row"}});t.appendChild(e);const o=d.div({style:{display:"table-cell"},class:v.bk_tooltip_row_label},0!=s.length?s+": ":"");e.appendChild(o);const n=d.span();n.dataset.value="";const i=d.span({class:v.bk_tooltip_color_block}," ");i.dataset.swatch="",d.undisplay(i);const r=d.div({style:{display:"table-cell"},class:v.bk_tooltip_row_value},n,i);e.appendChild(r)}return t}_render_template(e,t,s,o,n){const i=e.cloneNode(!0),r=i.querySelectorAll("[data-value]"),l=i.querySelectorAll("[data-swatch]"),c=/\$color(\[.*\])?:(\w*)/;for(const[[,e],i]of u.enumerate(t)){const t=e.match(c);if(null!=t){const[,e="",n]=t,c=s.get_column(n);if(null==c){r[i].textContent=n+" unknown";continue}const a=e.indexOf("hex")>=0,_=e.indexOf("swatch")>=0;let p=y.isNumber(o)?c[o]:null;if(null==p){r[i].textContent="(null)";continue}a&&(p=h.color2hex(p)),r[i].textContent=p,_&&(l[i].style.backgroundColor=p,d.display(l[i]))}else{const t=_.replace_placeholders(e.replace("$~","$data_"),s,o,this.model.formatters,n);if(y.isString(t))r[i].textContent=t;else for(const e of t)r[i].appendChild(e)}}return i}_render_tooltips(e,t,s){const o=this.model.tooltips;if(y.isString(o)){const n=_.replace_placeholders({html:o},e,t,this.model.formatters,s);return d.div({},n)}return y.isFunction(o)?o(e,s):this._render_template(this._template_el,o,e,t,s)}}s.HoverToolView=b,b.__name__="HoverToolView";class k extends n.InspectTool{constructor(e){super(e),this.tool_name="Hover",this.icon=x.bk_tool_icon_hover}static init_HoverTool(){this.prototype.default_view=b,this.define({tooltips:[p.Any,[["index","$index"],["data (x, y)","($x, $y)"],["screen (x, y)","($sx, $sy)"]]],formatters:[p.Any,{}],renderers:[p.Any,"auto"],names:[p.Array,[]],mode:[p.HoverMode,"mouse"],muted_policy:[p.MutedPolicy,"show"],point_policy:[p.PointPolicy,"snap_to_data"],line_policy:[p.LinePolicy,"nearest"],show_arrow:[p.Boolean,!0],anchor:[p.Anchor,"center"],attachment:[p.TooltipAttachment,"horizontal"],callback:[p.Any]}),this.register_alias("hover",()=>new k)}}s.HoverTool=k,k.__name__="HoverTool",k.init_HoverTool()},n function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1).__importStar(t(18)),n=t(15),s=t(81),l=t(295),c=t(303);class r extends s.Model{constructor(t){super(t)}static init_ToolProxy(){this.define({tools:[i.Array,[]],active:[i.Boolean,!1],disabled:[i.Boolean,!1]})}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof l.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new n.Signal0(this,"do")}connect_signals(){super.connect_signals(),this.connect(this.do,()=>this.doit()),this.connect(this.properties.active.change,()=>this.set_active());for(const t of this.tools)this.connect(t.properties.active.change,()=>{this.active=t.active})}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,i]of c.enumerate(t))if(null==e)o.push(null);else{const t=()=>{var t,o;for(const e of this.tools)null===(o=null===(t=e.menu)||void 0===t?void 0:t[i])||void 0===o||o.handler()};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=r,r.__name__="ToolProxy",r.init_ToolProxy()},n function _(o,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=o(1).__importStar(o(18)),e=o(9),n=o(13),r=o(305),l=o(379),c=o(272),h=o(212);class a extends r.ToolbarBase{constructor(o){super(o)}static init_ProxyToolbar(){this.define({toolbars:[i.Array,[]]})}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},i=[],r=[];for(const o of this.help)e.includes(r,o.redirect)||(i.push(o),r.push(o.redirect));this._proxied_tools.push(…i),this.help=i;for(const[o,t]of n.entries(this.gestures)){o in s||(s[o]={});for(const i of t.tools)i.type in s[o]||(s[o][i.type]=[]),s[o][i.type].push(i)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const c=(o,t=!1)=>{const s=new l.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of n.keys(s)){const t=this.gestures[o];t.tools=[];for(const i of n.keys(s[o])){const e=s[o][i];if(e.length>0)if("multi"==o)for(const o of e){const s=c([o]);t.tools.push(s),this.connect(s.properties.active.change,()=>this._active_change(s))}else{const o=c(e);t.tools.push(o),this.connect(o.properties.active.change,()=>this._active_change(o))}}}this.actions=[];for(const[o,s]of n.entries(t))if("CustomAction"==o)for(const o of s)this.actions.push(c([o]));else s.length>0&&this.actions.push(c(s));this.inspectors=[];for(const t of n.values(o))t.length>0&&this.inspectors.push(c(t,!0));for(const[o,t]of n.entries(this.gestures))0!=t.tools.length&&(t.tools=e.sort_by(t.tools,o=>o.default_order),"pinch"!=o&&"scroll"!=o&&"multi"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=a,a.__name__="ProxyToolbar",a.init_ProxyToolbar();class _ extends c.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new h.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:"fit",min_width:100,height_policy:"fixed"}):this.layout.set_sizing({width_policy:"fixed",height_policy:"fit",min_height:100})}}s.ToolbarBoxView=_,_.__name__="ToolbarBoxView";class p extends c.LayoutDOM{constructor(o){super(o)}static init_ToolbarBox(){this.prototype.default_view=_,this.define({toolbar:[i.Instance],toolbar_location:[i.Location,"right"]})}}s.ToolbarBox=p,p.__name__="ToolbarBox",p.init_ToolbarBox()},n function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e(5),i=e(78),d=e(115),c=e(72),l=e(382);t.index={},t.add_document_standalone=async function(e,n,s=[],a=!1){const u=new Map;async function r(o){let a;const r=e.roots().indexOf(o),f=s[r];null!=f?a=f:n.classList.contains(l.BOKEH_ROOT)?a=n:(a=c.div({class:l.BOKEH_ROOT}),n.appendChild(a));const v=await d.build_view(o,{parent:null});return v instanceof i.DOMView&&v.renderTo(a),u.set(o,v),t.index[o.id]=v,v}for(const n of e.roots())await r(n);return a&&(window.document.title=e.title()),e.on_change(e=>{e instanceof o.RootAddedEvent?r(e.model):e instanceof o.RootRemovedEvent?function(e){const n=u.get(e);null!=n&&(n.remove(),u.delete(e),delete t.index[e.id])}(e.model):a&&e instanceof o.TitleChangedEvent&&(window.document.title=e.title)}),[…u.values()]}},n function _(e,o,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(72),r=e(273);function l(e){let o=document.getElementById(e);if(null==o)throw new Error(Error rendering Bokeh model: could not find #${e} HTML tag);if(!document.body.contains(o))throw new Error(Error rendering Bokeh model: element #${e} must be under <body>);if("SCRIPT"==o.tagName){const e=t.div({class:n.BOKEH_ROOT});t.replaceWith(o,e),o=e}return o}n.BOKEH_ROOT=r.bk_root,n._resolve_element=function(e){const{elementid:o}=e;return null!=o?l(o):document.body},n._resolve_root_elements=function(e){const o=[];if(null!=e.root_ids&&null!=e.roots)for(const n of e.root_ids)o.push(l(e.roots[n]));return o}},n function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});const e=n(384),s=n(19),c=n(381);t._get_ws_url=function(n,o){let t,e="ws:";return"https:"==window.location.protocol&&(e="wss:"),null!=o?(t=document.createElement("a"),t.href=o):t=window.location,null!=n?"/"==n&&(n=""):n=t.pathname.replace(/\/+$/,""),e+"//"+t.host+n+"/ws"};const r={};t.add_document_from_session=async function(n,o,t,a=[],i=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=e.parse_token(o).session_id;n in r||(r[n]={});const c=r[n];return s in c||(c[s]=e.pull_session(n,o,t)),c[s]}(n,o,l)}catch(n){const t=e.parse_token(o).session_id;throw s.logger.error(Failed to load Bokeh session ${t}: ${n}),n}return c.add_document_standalone(d.document,t,a,i)}},n function _(e,s,n){Object.defineProperty(n,"__esModule",{value:!0});const t=e(19),o=e(5),r=e(385),i=e(386),c=e(387);n.DEFAULT_SERVER_WEBSOCKET_URL="ws://localhost:5006/ws",n.DEFAULT_TOKEN="eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ";let l=0;function _(e){let s=e.split(".")[0];const n=s.length%4;return 0!=n&&(s+="=".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,"/").replace(/-/g,"+")))}n.parse_token=_;class h{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,o=null){this.url=e,this.token=s,this.args_string=o,this._number=l++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new i.Receiver,this.id=_(s).session_id.split(".")[0],t.logger.debug(Creating websocket ${this._number} to ‘${this.url}’ session ‘${this.id}’)}async connect(){if(this.closed_permanently)throw new Error("Cannot connect() a closed ClientConnection");if(null!=this.socket)throw new Error("Already connected");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=""+this.url;return null!=this.args_string&&this.args_string.length>0&&(e+="?"+this.args_string),this.socket=new WebSocket(e,["bokeh",this.token]),new Promise((e,s)=>{this.socket.binaryType="arraybuffer",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)})}catch(e){throw t.logger.error("websocket creation failed to url: "+this.url),t.logger.error(" - "+e),e}}close(){this.closed_permanently||(t.logger.debug("Permanently closing websocket connection "+this._number),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,"close method called on ClientConnection "+this._number),this.session._connection_closed())}_schedule_reconnect(e){setTimeout(()=>{this.closed_permanently||t.logger.info(Websocket connection ${this._number} disconnected, will not attempt to reconnect)},e)}send(e){if(null==this.socket)throw new Error("not connected so cannot send "+e);e.send(this.socket)}async send_with_reply(e){const s=await new Promise((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)});if("ERROR"===s.msgtype())throw new Error("Error reply "+s.content.text);return s}async _pull_doc_json(){const e=r.Message.create("PULL-DOC-REQ",{}),s=await this.send_with_reply(e);if(!("doc"in s.content))throw new Error("No ‘doc’ field in PULL-DOC-REPLY");return s.content.doc}async _repull_session_doc(e,s){var n;t.logger.debug(this.session?"Repulling session":"Pulling session for first time");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)t.logger.debug("Got new document after connection was already closed"),s(new Error("The connection has been closed"));else{const s=o.Document.from_json(n),i=o.Document._compute_patch_since_json(n,s);if(i.events.length>0){t.logger.debug(Sending ${i.events.length} changes from model construction back to server);const e=r.Message.create("PATCH-DOC",{},i);this.send(e)}this.session=new c.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],t.logger.debug("Created a new session from new pulled doc"),e(this.session)}else this.session.document.replace_with_json(n),t.logger.debug("Updated existing session with new pulled doc")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),t.logger.error("Failed to repull session "+e),s(e)}}_on_open(e,s){t.logger.info(Websocket connection ${this._number} is now open),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&t.logger.error("Got a message with no current handler set");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(e.toString())}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){t.logger.info(Lost websocket ${this._number} connection, ${e.code} (${e.reason})),this.socket=null,this._pending_replies.forEach(e=>e.reject("Disconnected")),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(Lost websocket connection, ${e.code} (${e.reason})))}_on_error(e){t.logger.debug("Websocket error on socket "+this._number);const s="Could not open websocket";t.logger.error("Failed to connect to Bokeh server: "+s),e(new Error(s))}_close_bad_protocol(e){t.logger.error("Closing connection: "+e),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){"ACK"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol("First message was not an ACK")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):"PATCH-DOC"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=h,h.__name__="ClientConnection",n.pull_session=function(e,s,n){return new h(e,s,n).connect()}},n function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const r=e(29);class n{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),i=JSON.parse(s),a=JSON.parse(t);return new n(r,i,a)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error("too many buffers received, expecting "+t);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=n.create_header(e);return new n(r,s,t)}static create_header(e){return{msgid:r.uniqueId(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error("BokehJS only supports receiving buffers, not sending");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return"msgid"in this.header?"msgtype"in this.header?null:"No msgtype in header":"No msgid in header"}}t.Message=n,n.__name__="Message"},n function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const _=e(385),r=e(8);class i{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,r]=this._fragments.slice(0,3);this._partial=_.Message.assemble(t,s,r),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!r.isString(e))throw new Error("Expected text fragment but received binary fragment")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error("Expected binary fragment but received text fragment")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=i,i.__name__="Receiver"},n function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e(5),s=e(385),c=e(19);class i{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();"PATCH-DOC"===t?this._handle_patch(e):"OK"===t?this._handle_ok(e):"ERROR"===t?this._handle_error(e):c.logger.debug("Doing nothing with message "+e.msgtype())}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=s.Message.create("SERVER-INFO-REQ",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof o.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),c=s.Message.create("PATCH-DOC",{},n);this._connection.send(c)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){c.logger.trace("Unhandled OK reply to "+e.reqid())}_handle_error(e){c.logger.error(Unhandled ERROR reply to ${e.reqid()}: ${e.content.text})}}n.ClientSession=i,i.__name__="ClientSession"},n function _(e,o,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1);var r=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var o,t=e[Symbol.asyncIterator];return t?t.call(e):(e="function"==typeof __values?__values(e):e[Symbol.iterator](),o={},n("next"),n("throw"),n("return"),o[Symbol.asyncIterator]=function(){return this},o);function n(t){o[t]=e[t]&&function(o){return new Promise((function(n,r){(function(e,o,t,n){Promise.resolve(n).then((function(o){e({value:o,done:t})}),o)})(n,r,(o=e[t](o)).done,o.value)}))}}};const s=e(5),i=e(386),l=e(19),a=e(72),c=e(13),u=e(381),f=e(382),g=n.__importDefault(e(73)),m=n.__importDefault(e(311)),d=n.__importDefault(e(389));function p(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function _(e,o){if("undefined"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){l.logger.info("Registering Jupyter comms for target "+e);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,t=>{l.logger.info("Registering Jupyter comms for target "+e);const n=new i.Receiver;t.on_msg(p.bind(o,n))})}catch(e){l.logger.warn(Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else if(o.roots()[0].id in t.kernels){l.logger.info("Registering JupyterLab comms for target "+e);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,t=>{l.logger.info("Registering JupyterLab comms for target "+e);const n=new i.Receiver;t.onMsg=p.bind(o,n)})}catch(e){l.logger.warn(Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else if("undefined"!=typeof google&&null!=google.colab.kernel){l.logger.info("Registering Google Colab comms for target "+e);const t=google.colab.kernel.comms;try{t.registerTarget(e,async t=>{var n,s,a;l.logger.info("Registering Google Colab comms for target "+e);const c=new i.Receiver;try{for(var u,f=r(t.messages);!(u=await f.next()).done;){const e=u.value,t={data:e.data},n=[];for(const o of null!==(a=e.buffers)&&void 0!==a?a:[])n.push(new DataView(o));const r={content:t,buffers:n};p.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{u&&!u.done&&(s=f.return)&&await s.call(f)}finally{if(n)throw n.error}}})}catch(e){l.logger.warn(Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e}))}}else console.warn("Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.")}a.stylesheet.append(g.default),a.stylesheet.append(m.default),a.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=c.size(e))throw new Error("embed_items_notebook expects exactly one document in docs_json");const t=s.Document.from_json(c.values(e)[0]);for(const e of o){null!=e.notebook_comms_target&&_(e.notebook_comms_target,t);const o=f._resolve_element(e),n=f._resolve_root_elements(e);u.add_document_standalone(t,o,n)}}},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});o.default="\n/* notebook specific tweaks so no black outline and matching padding\n/* can’t be wrapped inside bk-root. here are the offending jupyter lines:\n/* https://github.com/jupyter/notebook/blob/master/notebook/static/notebook/less/renderedhtml.less#L59-L76 /\n.rendered_html .bk-root .bk-tooltip table,\n.rendered_html .bk-root .bk-tooltip tr,\n.rendered_html .bk-root .bk-tooltip th,\n.rendered_html .bk-root .bk-tooltip td {\n border: none;\n padding: 1px;\n}\n"},n function _(e,t,_){Object.defineProperty(_,"__esModule",{value:!0});const o=e(1);o.__exportStar(e(385),_),o.__exportStar(e(386),_)},n function _(e,t,n){function s(){const e=document.getElementsByTagName("body")[0],t=document.getElementsByClassName("bokeh-test-div");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement("div");n.classList.add("bokeh-test-div"),n.style.display="none",e.insertBefore(n,e.firstChild)}Object.defineProperty(n,"__esModule",{value:!0}),n.results={},n.init=function(){s()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,s()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,s()}},n function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0}),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement("div");t.style.backgroundColor="#f2dede",t.style.border="1px solid #a94442",t.style.borderRadius="4px",t.style.display="inline-block",t.style.fontFamily="sans-serif",t.style.marginTop="5px",t.style.minWidth="200px",t.style.padding="5px 5px 5px 10px",t.classList.add("bokeh-error-box-into-flames");const o=document.createElement("span");o.style.backgroundColor="#a94442",o.style.borderRadius="0px 4px 0px 0px",o.style.color="white",o.style.cursor="pointer",o.style.cssFloat="right",o.style.fontSize="0.8em",o.style.margin="-6px -6px 0px 0px",o.style.padding="2px 5px 4px 5px",o.title="close",o.setAttribute("aria-label","close"),o.appendChild(document.createTextNode("x")),o.addEventListener("click",()=>r.removeChild(t));const n=document.createElement("h3");n.style.color="#a94442",n.style.margin="8px 0px 0px 0px",n.style.padding="0px",n.appendChild(document.createTextNode("Bokeh Error"));const l=document.createElement("pre");l.style.whiteSpace="unset",l.style.overflowX="auto";const s=e instanceof Error?e.message:e;l.appendChild(document.createTextNode(s)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const r=document.getElementsByTagName("body")[0];r.insertBefore(t,r.firstChild)}(e),t)return;throw e}}},n ], 0, {"main":0,"tslib":1,"index":2,"version":3,"embed/index":4,"document/index":5,"document/document":6,"base":7,"core/util/types":8,"core/util/array":9,"core/util/math":10,"core/util/assert":11,"core/util/arrayable":12,"core/util/object":13,"core/has_props":14,"core/signaling":15,"core/util/callback":16,"core/util/refs":17,"core/properties":18,"core/logging":19,"core/enums":20,"core/kinds":21,"core/util/color":22,"core/util/svg_colors":23,"core/types":24,"core/util/eq":25,"core/util/data_structures":26,"core/settings":27,"core/property_mixins":28,"core/util/string":29,"core/util/ndarray":30,"core/util/serialization":31,"core/util/compat":32,"core/util/pretty":33,"models/index":34,"models/annotations/index":35,"models/annotations/annotation":36,"core/util/projections":37,"models/renderers/renderer":70,"core/view":71,"core/dom":72,"styles/root.css":73,"core/visuals":74,"core/util/svg":75,"core/util/affine":76,"models/canvas/canvas":77,"core/dom_view":78,"core/util/bbox":79,"core/util/canvas":80,"model":81,"models/canvas/coordinates":82,"models/annotations/arrow":83,"models/annotations/arrow_head":84,"models/sources/column_data_source":85,"models/sources/columnar_data_source":86,"models/sources/data_source":87,"models/selections/selection":88,"core/selection_manager":89,"models/renderers/glyph_renderer":90,"models/renderers/data_renderer":91,"models/glyphs/line":92,"models/glyphs/xy_glyph":93,"models/glyphs/glyph":94,"core/util/spatial":95,"models/ranges/factor_range":98,"models/ranges/range":99,"models/glyphs/utils":100,"core/hittest":101,"models/glyphs/webgl/line":102,"models/glyphs/webgl/utils/index":103,"models/glyphs/webgl/utils/program":104,"models/glyphs/webgl/utils/buffer":105,"models/glyphs/webgl/utils/texture":106,"models/glyphs/webgl/base":107,"models/glyphs/webgl/line.vert":108,"models/glyphs/webgl/line.frag":109,"models/glyphs/patch":110,"models/glyphs/harea":111,"models/glyphs/area":112,"models/glyphs/varea":113,"models/sources/cds_view":114,"core/build_views":115,"models/renderers/graph_renderer":116,"models/graphs/graph_hit_test_policy":117,"models/selections/interaction_policy":118,"core/util/typed_array":119,"core/util/set":120,"document/events":121,"models/annotations/band":122,"models/annotations/upper_lower":123,"models/annotations/box_annotation":124,"models/annotations/color_bar":125,"models/tickers/basic_ticker":126,"models/tickers/adaptive_ticker":127,"models/tickers/continuous_ticker":128,"models/tickers/ticker":129,"models/formatters/basic_tick_formatter":130,"models/formatters/tick_formatter":131,"models/mappers/index":132,"models/mappers/categorical_color_mapper":133,"models/mappers/categorical_mapper":134,"models/mappers/color_mapper":135,"models/mappers/mapper":136,"models/transforms/transform":137,"models/mappers/categorical_marker_mapper":138,"models/mappers/categorical_pattern_mapper":139,"models/mappers/continuous_color_mapper":140,"models/mappers/linear_color_mapper":141,"models/mappers/log_color_mapper":142,"models/mappers/scanning_color_mapper":143,"models/mappers/eqhist_color_mapper":144,"models/scales/linear_scale":145,"models/scales/continuous_scale":146,"models/scales/scale":147,"models/transforms/index":148,"models/transforms/customjs_transform":149,"models/transforms/dodge":150,"models/transforms/range_transform":151,"models/transforms/interpolator":152,"models/transforms/jitter":153,"models/transforms/linear_interpolator":154,"models/transforms/step_interpolator":155,"models/scales/linear_interpolation_scale":156,"models/scales/log_scale":157,"models/ranges/range1d":158,"core/util/text":159,"models/annotations/label":160,"models/annotations/text_annotation":161,"models/annotations/label_set":162,"models/annotations/legend":163,"models/annotations/legend_item":164,"core/vectorization":165,"models/annotations/poly_annotation":166,"models/annotations/slope":167,"models/annotations/span":168,"models/annotations/title":169,"models/annotations/toolbar_panel":170,"models/annotations/tooltip":171,"styles/tooltips":172,"styles/mixins":173,"styles/tooltips.css":174,"models/annotations/whisker":175,"models/axes/index":176,"models/axes/axis":177,"models/renderers/guide_renderer":178,"models/axes/categorical_axis":179,"models/tickers/categorical_ticker":180,"models/formatters/categorical_tick_formatter":181,"models/axes/continuous_axis":182,"models/axes/datetime_axis":183,"models/axes/linear_axis":184,"models/formatters/datetime_tick_formatter":185,"core/util/templating":187,"models/tickers/datetime_ticker":190,"models/tickers/composite_ticker":191,"models/tickers/days_ticker":192,"models/tickers/single_interval_ticker":193,"models/tickers/util":194,"models/tickers/months_ticker":195,"models/tickers/years_ticker":196,"models/axes/log_axis":197,"models/formatters/log_tick_formatter":198,"models/tickers/log_ticker":199,"models/axes/mercator_axis":200,"models/formatters/mercator_tick_formatter":201,"models/tickers/mercator_ticker":202,"models/callbacks/index":203,"models/callbacks/customjs":204,"models/callbacks/callback":205,"models/callbacks/open_url":206,"models/canvas/index":207,"models/canvas/cartesian_frame":208,"models/scales/categorical_scale":209,"models/ranges/data_range1d":210,"models/ranges/data_range":211,"core/layout/index":212,"core/layout/types":213,"core/layout/layoutable":214,"core/layout/alignments":215,"core/layout/grid":216,"core/layout/html":217,"models/expressions/index":218,"models/expressions/expression":219,"models/expressions/stack":220,"models/expressions/cumsum":221,"models/filters/index":222,"models/filters/boolean_filter":223,"models/filters/filter":224,"models/filters/customjs_filter":225,"models/filters/group_filter":226,"models/filters/index_filter":227,"models/formatters/index":228,"models/formatters/func_tick_formatter":229,"models/formatters/numeral_tick_formatter":230,"models/formatters/printf_tick_formatter":231,"models/glyphs/index":232,"models/glyphs/annular_wedge":233,"models/glyphs/annulus":234,"models/glyphs/arc":235,"models/glyphs/bezier":236,"models/glyphs/circle":237,"models/glyphs/webgl/markers":238,"models/glyphs/webgl/markers.vert":239,"models/glyphs/webgl/markers.frag":240,"models/glyphs/center_rotatable":241,"models/glyphs/ellipse":242,"models/glyphs/ellipse_oval":243,"models/glyphs/hbar":244,"models/glyphs/box":245,"models/glyphs/hex_tile":246,"models/glyphs/image":247,"models/glyphs/image_base":248,"models/glyphs/image_rgba":249,"models/glyphs/image_url":250,"core/util/image":251,"models/glyphs/multi_line":252,"models/glyphs/multi_polygons":253,"models/glyphs/oval":254,"models/glyphs/patches":255,"models/glyphs/quad":256,"models/glyphs/quadratic":257,"models/glyphs/ray":258,"models/glyphs/rect":259,"models/glyphs/segment":260,"models/glyphs/step":261,"models/glyphs/text":262,"models/glyphs/vbar":263,"models/glyphs/wedge":264,"models/graphs/index":265,"models/graphs/layout_provider":266,"models/graphs/static_layout_provider":267,"models/grids/index":268,"models/grids/grid":269,"models/layouts/index":270,"models/layouts/box":271,"models/layouts/layout_dom":272,"styles/root":273,"models/layouts/column":274,"models/layouts/grid_box":275,"models/layouts/html_box":276,"models/layouts/row":277,"models/layouts/spacer":278,"models/layouts/tabs":279,"styles/tabs":280,"styles/buttons":281,"styles/menus":282,"styles/buttons.css":283,"styles/menus.css":284,"styles/tabs.css":285,"models/layouts/widget_box":286,"models/markers/index":287,"models/markers/defs":288,"models/markers/marker":289,"models/markers/scatter":290,"models/plots/index":291,"models/plots/gmap_plot":292,"models/plots/plot":293,"models/tools/toolbar":294,"models/tools/inspectors/inspect_tool":295,"models/tools/button_tool":296,"models/tools/tool":298,"styles/toolbar":299,"styles/toolbar.css":300,"styles/icons.css":301,"core/util/menus":302,"core/util/iterator":303,"models/tools/on_off_button":304,"models/tools/toolbar_base":305,"models/tools/gestures/gesture_tool":306,"models/tools/actions/action_tool":307,"models/tools/actions/help_tool":308,"styles/icons":309,"styles/logo":310,"styles/logo.css":311,"models/plots/plot_canvas":312,"core/bokeh_events":313,"core/ui_events":314,"core/util/wheel":315,"core/util/throttle":316,"core/layout/border":317,"core/layout/side_panel":318,"models/plots/gmap_plot_canvas":319,"models/ranges/index":320,"models/renderers/index":321,"models/scales/index":322,"models/selections/index":323,"models/sources/index":324,"models/sources/server_sent_data_source":325,"models/sources/web_data_source":326,"models/sources/ajax_data_source":327,"models/sources/geojson_data_source":328,"models/tickers/index":329,"models/tickers/fixed_ticker":330,"models/tiles/index":331,"models/tiles/bbox_tile_source":332,"models/tiles/mercator_tile_source":333,"models/tiles/tile_source":334,"models/tiles/tile_utils":335,"models/tiles/quadkey_tile_source":336,"models/tiles/tile_renderer":337,"models/tiles/wmts_tile_source":338,"styles/tiles":339,"styles/tiles.css":340,"models/tiles/tms_tile_source":341,"models/textures/index":342,"models/textures/canvas_texture":343,"models/textures/texture":344,"models/textures/image_url_texture":345,"models/tools/index":346,"models/tools/actions/custom_action":347,"models/tools/actions/redo_tool":348,"models/tools/actions/reset_tool":349,"models/tools/actions/save_tool":350,"models/tools/actions/undo_tool":351,"models/tools/actions/zoom_in_tool":352,"models/tools/actions/zoom_base_tool":353,"core/util/zoom":354,"models/tools/actions/zoom_out_tool":355,"models/tools/edit/edit_tool":356,"models/tools/edit/box_edit_tool":357,"models/tools/edit/freehand_draw_tool":358,"models/tools/edit/point_draw_tool":359,"models/tools/edit/poly_draw_tool":360,"models/tools/edit/poly_tool":361,"models/tools/edit/poly_edit_tool":362,"models/tools/gestures/box_select_tool":363,"models/tools/gestures/select_tool":364,"models/tools/util":365,"models/tools/gestures/box_zoom_tool":366,"models/tools/gestures/lasso_select_tool":367,"models/tools/gestures/poly_select_tool":368,"models/tools/edit/line_edit_tool":369,"models/tools/edit/line_tool":370,"models/tools/gestures/pan_tool":371,"models/tools/gestures/range_tool":372,"models/tools/gestures/tap_tool":373,"models/tools/gestures/wheel_pan_tool":374,"models/tools/gestures/wheel_zoom_tool":375,"models/tools/inspectors/crosshair_tool":376,"models/tools/inspectors/customjs_hover":377,"models/tools/inspectors/hover_tool":378,"models/tools/tool_proxy":379,"models/tools/toolbar_box":380,"embed/standalone":381,"embed/dom":382,"embed/server":383,"client/connection":384,"protocol/message":385,"protocol/receiver":386,"client/session":387,"embed/notebook":388,"styles/notebook.css":389,"protocol/index":390,"testing":391,"safely":392}, {});n })nnn / END bokeh.min.js /n },n n function(Bokeh) {n / BEGIN bokeh-widgets.min.js /n /!n * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn * All rights reserved.n * n * Redistribution and use in source and binary forms, with or without modification,n * are permitted provided that the following conditions are met:n * n * Redistributions of source code must retain the above copyright notice,n * this list of conditions and the following disclaimer.n * n * Redistributions in binary form must reproduce the above copyright notice,n * this list of conditions and the following disclaimer in the documentationn * and/or other materials provided with the distribution.n * n * Neither the name of Anaconda nor the names of any contributorsn * may be used to endorse or promote products derived from this softwaren * without specific prior written permission.n * n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn * THE POSSIBILITY OF SUCH DAMAGE.n /n (function(root, factory) {n factory(root["Bokeh"], "2.2.3");n })(this, function(Bokeh, version) {n var define;n return (function(modules, entry, aliases, externals) {n const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n if (bokeh != null) {n return bokeh.register_plugin(modules, entry, aliases);n } else {n throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n }n })n ({n 402: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1).__importStar(e(403));o.Widgets=r;e(7).register_models(r)},n 403: function _(r,e,t){Object.defineProperty(t,"__esModule",{value:!0});var a=r(404);t.AbstractButton=a.AbstractButton;var o=r(407);t.AbstractIcon=o.AbstractIcon;var u=r(408);t.AutocompleteInput=u.AutocompleteInput;var n=r(413);t.Button=n.Button;var i=r(414);t.CheckboxButtonGroup=i.CheckboxButtonGroup;var v=r(416);t.CheckboxGroup=v.CheckboxGroup;var p=r(418);t.ColorPicker=p.ColorPicker;var c=r(419);t.DatePicker=c.DatePicker;var l=r(422);t.DateRangeSlider=l.DateRangeSlider;var d=r(428);t.DateSlider=d.DateSlider;var I=r(429);t.Div=I.Div;var g=r(433);t.Dropdown=g.Dropdown;var S=r(434);t.FileInput=S.FileInput;var P=r(410);t.InputWidget=P.InputWidget;var k=r(430);t.Markup=k.Markup;var x=r(435);t.MultiSelect=x.MultiSelect;var D=r(436);t.Paragraph=D.Paragraph;var b=r(437);t.PasswordInput=b.PasswordInput;var s=r(438);t.MultiChoice=s.MultiChoice;var h=r(441);t.NumericInput=h.NumericInput;var A=r(444);t.PreText=A.PreText;var B=r(445);t.RadioButtonGroup=B.RadioButtonGroup;var C=r(446);t.RadioGroup=C.RadioGroup;var G=r(447);t.RangeSlider=G.RangeSlider;var R=r(448);t.Select=R.Select;var T=r(449);t.Slider=T.Slider;var M=r(450);t.Spinner=M.Spinner;var m=r(409);t.TextInput=m.TextInput;var w=r(451);t.TextAreaInput=w.TextAreaInput;var W=r(452);t.Toggle=W.Toggle;var _=r(472);t.Widget=_.Widget},n 404: function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const i=t(1),s=i.__importStar(t(18)),o=t(72),l=t(115),r=t(405),_=t(281),c=i.__importDefault(t(283));class u extends r.ControlView{*controls(){yield this.button_el}async lazy_initialize(){await super.lazy_initialize();const{icon:t}=this.model;null!=t&&(this.icon_view=await l.build_view(t,{parent:this}))}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[…super.styles(),c.default]}_render_button(…t){return o.button({type:"button",disabled:this.model.disabled,class:[_.bk_btn,_.bk_btn_type(this.model.button_type)]},…t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener("click",()=>this.click()),null!=this.icon_view&&(o.prepend(this.button_el,this.icon_view.el,o.nbsp()),this.icon_view.render()),this.group_el=o.div({class:_.bk_btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=u,u.__name__="AbstractButtonView";class a extends r.Control{constructor(t){super(t)}static init_AbstractButton(){this.define({label:[s.String,"Button"],icon:[s.Instance],button_type:[s.ButtonType,"default"]})}}n.AbstractButton=a,a.__name__="AbstractButton",a.init_AbstractButton()},n 405: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e(472),n=e(72);class i extends s.WidgetView{connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.controls())n.toggle_attribute(e,"disabled",this.model.disabled)})}}o.ControlView=i,i.__name__="ControlView";class l extends s.Widget{constructor(e){super(e)}}o.Control=l,l.__name__="Control"},n 472: function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return"horizontal"==this.model.orientation?super._width_policy():"fixed"}_height_policy(){return"horizontal"==this.model.orientation?"fixed":super._height_policy()}box_sizing(){const i=super.box_sizing();return"horizontal"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__="WidgetView";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,"horizontal"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__="Widget",s.init_Widget()},n 407: function _(e,t,c){Object.defineProperty(c,"__esModule",{value:!0});const s=e(81),n=e(78);class o extends n.DOMView{}c.AbstractIconView=o,o.__name__="AbstractIconView";class _ extends s.Model{constructor(e){super(e)}}c.AbstractIcon=_,_.__name__="AbstractIcon"},n 408: function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e(1),s=e(409),h=e(72),_=i.__importStar(e(18)),o=e(10),u=e(173),r=e(282),c=i.__importDefault(e(284));class l extends s.TextInputView{constructor(){super(…arguments),this._open=!1,this._last_value="",this._hover_index=0}styles(){return[…super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener("keydown",e=>this._keydown(e)),this.input_el.addEventListener("keyup",e=>this._keyup(e)),this.menu=h.div({class:[r.bk_menu,u.bk_below]}),this.menu.addEventListener("click",e=>this._menu_click(e)),this.menu.addEventListener("mouseover",e=>this._menu_hover(e)),this.el.appendChild(this.menu),h.undisplay(this.menu)}change_input(){this._open&&this.menu.children.length>0&&(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu())}_update_completions(e){h.empty(this.menu);for(const t of e){const e=h.div({},t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(u.bk_active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,h.display(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener("click",e),this._hide_menu())};document.addEventListener("click",e)}}_hide_menu(){this._open&&(this._open=!1,h.undisplay(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t<this.menu.children.length&&this.menu.children[t].textContent!=e.target.textContent;t++);this._bump_hover(t)}}_bump_hover(e){const t=this.menu.children.length;this._open&&t>0&&(this.menu.children[this._hover_index].classList.remove(u.bk_active),this._hover_index=o.clamp(e,0,t-1),this.menu.children[this._hover_index].classList.add(u.bk_active))}_keydown(e){}_keyup(e){switch(e.keyCode){case h.Keys.Enter:this.change_input();break;case h.Keys.Esc:this._hide_menu();break;case h.Keys.Up:this._bump_hover(this._hover_index-1);break;case h.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.length<this.model.min_characters)return void this._hide_menu();const t=[],{case_sensitive:n}=this.model;let i;i=n?e=>e:e=>e.toLowerCase();for(const n of this.model.completions)i(n).startsWith(i(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__="AutocompleteInputView";class a extends s.TextInput{constructor(e){super(e)}static init_AutocompleteInput(){this.prototype.default_view=l,this.define({completions:[_.Array,[]],min_characters:[_.Int,2],case_sensitive:[_.Boolean,!0]})}}n.AutocompleteInput=a,a.__name__="AutocompleteInput",a.init_AutocompleteInput()},n 409: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(410),l=e(72),p=n.__importStar(e(18)),u=e(412);class a extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.value_input.change,()=>this.input_el.value=this.model.value_input),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}render(){super.render(),this.input_el=l.input({type:"text",class:u.bk_input,name:this.model.name,value:this.model.value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.input_el.addEventListener("change",()=>this.change_input()),this.input_el.addEventListener("input",()=>this.change_input_oninput()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_oninput(){this.model.value_input=this.input_el.value,super.change_input()}}i.TextInputView=a,a.__name__="TextInputView";class h extends s.InputWidget{constructor(e){super(e)}static init_TextInput(){this.prototype.default_view=a,this.define({value:[p.String,""],value_input:[p.String,""],placeholder:[p.String,""]})}}i.TextInput=h,h.__name__="TextInput",h.init_TextInput()},n 410: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const n=t(1),l=t(405),s=t(72),_=n.__importStar(t(18)),o=n.__importDefault(t(411)),r=t(412);class p extends l.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,()=>{this.label_el.textContent=this.model.title})}styles(){return[…super.styles(),o.default]}render(){super.render();const{title:t}=this.model;this.label_el=s.label({style:{display:0==t.length?"none":""}},t),this.group_el=s.div({class:r.bk_input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}i.InputWidgetView=p,p.__name__="InputWidgetView";class u extends l.Control{constructor(t){super(t)}static init_InputWidget(){this.define({title:[_.String,""]})}}i.InputWidget=u,u.__name__="InputWidget",u.init_InputWidget()},n 411: function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-input {\n display: inline-block;\n width: 100%;\n flex-grow: 1;\n -webkit-flex-grow: 1;\n min-height: 31px;\n padding: 0 12px;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n.bk-root .bk-input:focus {\n border-color: #66afe9;\n outline: 0;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.bk-root .bk-input::placeholder,\n.bk-root .bk-input:-ms-input-placeholder,\n.bk-root .bk-input::-moz-placeholder,\n.bk-root .bk-input::-webkit-input-placeholder {\n color: #999;\n opacity: 1;\n}\n.bk-root .bk-input[disabled] {\n cursor: not-allowed;\n background-color: #eee;\n opacity: 1;\n}\n.bk-root select:not([multiple]).bk-input,\n.bk-root select:not([size]).bk-input {\n height: auto;\n appearance: none;\n -webkit-appearance: none;\n background-image: url(\’data:image/svg+xml;utf8,<svg version="1.1" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"><path d="M 0,0 25,0 12.5,20 Z" fill="black" /></svg>\’);\n background-position: right 0.5em center;\n background-size: 8px 6px;\n background-repeat: no-repeat;\n}\n.bk-root select[multiple].bk-input,\n.bk-root select[size].bk-input,\n.bk-root textarea.bk-input {\n height: auto;\n}\n.bk-root .bk-input-group {\n width: 100%;\n height: 100%;\n display: inline-flex;\n display: -webkit-inline-flex;\n flex-wrap: nowrap;\n -webkit-flex-wrap: nowrap;\n align-items: start;\n -webkit-align-items: start;\n flex-direction: column;\n -webkit-flex-direction: column;\n white-space: nowrap;\n}\n.bk-root .bk-input-group.bk-inline {\n flex-direction: row;\n -webkit-flex-direction: row;\n}\n.bk-root .bk-input-group.bk-inline > *:not(:first-child) {\n margin-left: 5px;\n}\n.bk-root .bk-input-group input[type="checkbox"] + span,\n.bk-root .bk-input-group input[type="radio"] + span {\n position: relative;\n top: -2px;\n margin-left: 3px;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper {\n display: inherit;\n width: inherit;\n height: inherit;\n position: relative;\n overflow: hidden;\n padding: 0;\n vertical-align: middle;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper input {\n padding-right: 20px;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn {\n position: absolute;\n display: block;\n height: 50%;\n min-height: 0;\n min-width: 0;\n width: 30px;\n padding: 0;\n margin: 0;\n right: 0;\n border: none;\n background: none;\n cursor: pointer;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before {\n content: "";\n display: inline-block;\n transform: translateY(-50%);\n border-left: 5px solid transparent;\n border-right: 5px solid transparent;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up {\n top: 0;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before {\n border-bottom: 5px solid black;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before {\n border-bottom-color: grey;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down {\n bottom: 0;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before {\n border-top: 5px solid black;\n}\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before {\n border-top-color: grey;\n}\n’},n 412: function _(u,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.bk_input="bk-input",n.bk_input_group="bk-input-group"},n 413: function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0});const o=t(404),i=t(313);class s extends o.AbstractButtonView{click(){this.model.trigger_event(new i.ButtonClick),super.click()}}n.ButtonView=s,s.__name__="ButtonView";class u extends o.AbstractButton{constructor(t){super(t)}static init_Button(){this.prototype.default_view=s,this.override({label:"Button"})}}n.Button=u,u.__name__="Button",u.init_Button()},n 414: function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const i=t(1),c=t(415),s=t(72),n=i.__importStar(t(18)),a=t(173);class u extends c.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[…e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach((e,o)=>{s.classes(e).toggle(a.bk_active,t.has(o))})}}o.CheckboxButtonGroupView=u,u.__name__="CheckboxButtonGroupView";class r extends c.ButtonGroup{constructor(t){super(t)}static init_CheckboxButtonGroup(){this.prototype.default_view=u,this.define({active:[n.Array,[]]})}}o.CheckboxButtonGroup=r,r.__name__="CheckboxButtonGroup",r.init_CheckboxButtonGroup()},n 415: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const n=t(1),o=t(405),i=t(72),r=n.__importStar(t(18)),_=t(281),u=n.__importDefault(t(283));class a extends o.ControlView{*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,()=>this.render()),this.on_change(t.labels,()=>this.render()),this.on_change(t.active,()=>this._update_active())}styles(){return[…super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map((t,e)=>{const s=i.div({class:[_.bk_btn,_.bk_btn_type(this.model.button_type)],disabled:this.model.disabled},t);return s.addEventListener("click",()=>this.change_active(e)),s}),this._update_active();const t=i.div({class:_.bk_btn_group},this._buttons);this.el.appendChild(t)}}s.ButtonGroupView=a,a.__name__="ButtonGroupView";class l extends o.Control{constructor(t){super(t)}static init_ButtonGroup(){this.define({labels:[r.Array,[]],button_type:[r.ButtonType,"default"]})}}s.ButtonGroup=l,l.__name__="ButtonGroup",l.init_ButtonGroup()},n 416: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(417),o=e(72),c=e(9),a=n.__importStar(e(18)),l=e(173),d=e(412);class r extends s.InputGroupView{render(){super.render();const e=o.div({class:[d.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const{active:t,labels:i}=this.model;this._inputs=[];for(let n=0;n<i.length;n++){const s=o.input({type:"checkbox",value:""+n});s.addEventListener("change",()=>this.change_active(n)),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),c.includes(t,n)&&(s.checked=!0);const a=o.label({},s,o.span({},i[n]));e.appendChild(a)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[…t].sort()}}i.CheckboxGroupView=r,r.__name__="CheckboxGroupView";class p extends s.InputGroup{constructor(e){super(e)}static init_CheckboxGroup(){this.prototype.default_view=r,this.define({active:[a.Array,[]],labels:[a.Array,[]],inline:[a.Boolean,!1]})}}i.CheckboxGroup=p,p.__name__="CheckboxGroup",p.init_CheckboxGroup()},n 417: function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e(1),o=e(405),r=s.__importDefault(e(411));class u extends o.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}styles(){return[…super.styles(),r.default]}}n.InputGroupView=u,u.__name__="InputGroupView";class _ extends o.Control{constructor(e){super(e)}}n.InputGroup=_,_.__name__="InputGroup"},n 418: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),o=e(410),s=e(72),l=n.__importStar(e(18)),r=e(412);class c extends o.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.color.change,()=>this.input_el.value=this.model.color),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled)}render(){super.render(),this.input_el=s.input({type:"color",class:r.bk_input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}t.ColorPickerView=c,c.__name__="ColorPickerView";class d extends o.InputWidget{constructor(e){super(e)}static init_ColorPicker(){this.prototype.default_view=c,this.define({color:[l.Color,"#000000"]})}}t.ColorPicker=d,d.__name__="ColorPicker",d.init_ColorPicker()},n 419: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=n.__importDefault(e(420)),a=e(410),l=e(72),o=n.__importStar(e(18)),r=e(8),d=e(412),c=n.__importDefault(e(421));function u(e){const t=[];for(const i of e)if(r.isString(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class _ extends a.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,()=>{var t;return null===(t=this._picker)||void 0===t?void 0:t.setDate(e.value())}),this.connect(t.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("minDate",t.value())}),this.connect(i.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("maxDate",i.value())}),this.connect(n.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("disable",n.value())}),this.connect(s.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("enable",s.value())}),this.connect(a.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("position",a.value())}),this.connect(l.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set("inline",l.value())})}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[…super.styles(),c.default]}render(){null==this._picker&&(super.render(),this.input_el=l.input({type:"text",class:d.bk_input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=s.default(this.input_el,{defaultDate:this.model.value,minDate:this.model.min_date,maxDate:this.model.max_date,inline:this.model.inline,position:this.model.position,disable:u(this.model.disabled_dates),enable:u(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=_,_.__name__="DatePickerView";class h extends a.InputWidget{constructor(e){super(e)}static init_DatePicker(){this.prototype.default_view=_,this.define({value:[o.Any],min_date:[o.Any],max_date:[o.Any],disabled_dates:[o.Any,[]],enabled_dates:[o.Any,[]],position:[o.CalendarPosition,"auto"],inline:[o.Boolean,!1]})}}i.DatePicker=h,h.__name__="DatePicker",h.init_DatePicker()},n 420: function _(e,t,n){n / flatpickr v4.6.3, @license MIT /var a,i;a=this,i=function(){"use strict";n /! *************************************************************************n Copyright (c) Microsoft Corporation. All rights reserved.n Licensed under the Apache License, Version 2.0 (the "License"); you may not usen this file except in compliance with the License. You may obtain a copy of then License at http://www.apache.org/licenses/LICENSE-2.0n n THIS CODE IS PROVIDED ON AN AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANYn KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIEDn WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,n MERCHANTABLITY OR NON-INFRINGEMENT.n n See the Apache Version 2.0 License for specific language governing permissionsn and limitations under the License.n ************************************************************************* /var e=function(){return(e=Object.assign||function(e){for(var t,n=1,a=arguments.length;n<a;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)},t=["onChange","onClose","onDayCreate","onDestroy","onKeyDown","onMonthChange","onOpen","onParseConfig","onReady","onValueUpdate","onYearChange","onPreCalendarPosition"],n={_disable:[],_enable:[],allowInput:!1,altFormat:"F j, Y",altInput:!1,altInputClass:"form-control input",animate:"object"==typeof window&&-1===window.navigator.userAgent.indexOf("MSIE"),ariaDateFormat:"F j, Y",clickOpens:!0,closeOnSelect:!0,conjunction:", ",dateFormat:"Y-m-d",defaultHour:12,defaultMinute:0,defaultSeconds:0,disable:[],disableMobile:!1,enable:[],enableSeconds:!1,enableTime:!1,errorHandler:function(e){return"undefined"!=typeof console&&console.warn(e)},getWeek:function(e){var t=new Date(e.getTime());t.setHours(0,0,0,0),t.setDate(t.getDate()+3-(t.getDay()+6)%7);var n=new Date(t.getFullYear(),0,4);return 1+Math.round(((t.getTime()-n.getTime())/864e5-3+(n.getDay()+6)%7)/7)},hourIncrement:1,ignoredFocusElements:[],inline:!1,locale:"default",minuteIncrement:5,mode:"single",monthSelectorType:"dropdown",nextArrow:"<svg version=’1.1’ xmlns=’http://www.w3.org/2000/svg’ xmlns:xlink=’http://www.w3.org/1999/xlink’ viewBox=’0 0 17 17’><g></g><path d=’M13.207 8.472l-7.854 7.854-0.707-0.707 7.146-7.146-7.146-7.148 0.707-0.707 7.854 7.854z’ /></svg>",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"<svg version=’1.1’ xmlns=’http://www.w3.org/2000/svg’ xmlns:xlink=’http://www.w3.org/1999/xlink’ viewBox=’0 0 17 17’><g></g><path d=’M5.207 8.471l7.146 7.147-0.707 0.707-7.853-7.854 7.854-7.853 0.707 0.707-7.147 7.146z’ /></svg>",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},a={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var t=e%100;if(t>3&&t<21)return"th";switch(t%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},i=function(e){return("0"+e).slice(-2)},o=function(e){return!0===e?1:0};function r(e,t,n){var a;return void 0===n&&(n=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,n||e.apply(i,o)}),t),n&&!a&&e.apply(i,o)}}var l=function(e){return e instanceof Array?e:[e]};function c(e,t,n){if(!0===n)return e.classList.add(t);e.classList.remove(t)}function d(e,t,n){var a=window.document.createElement(e);return t=t||"",n=n||"",a.className=t,void 0!==n&&(a.textContent=n),a}function s(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function u(e,t){var n=d("div","numInputWrapper"),a=d("input","numInput "+e),i=d("span","arrowUp"),o=d("span","arrowDown");if(-1===navigator.userAgent.indexOf("MSIE 9.0")?a.type="number":(a.type="text",a.pattern="\\d"),void 0!==t)for(var r in t)a.setAttribute(r,t[r]);return n.appendChild(a),n.appendChild(i),n.appendChild(o),n}var f=function(){},m=function(e,t,n){return n.months[t?"shorthand":"longhand"][e]},g={D:f,F:function(e,t,n){e.setMonth(n.months.longhand.indexOf(t))},G:function(e,t){e.setHours(parseFloat(t))},H:function(e,t){e.setHours(parseFloat(t))},J:function(e,t){e.setDate(parseFloat(t))},K:function(e,t,n){e.setHours(e.getHours()%12+12*o(new RegExp(n.amPM[1],"i").test(t)))},M:function(e,t,n){e.setMonth(n.months.shorthand.indexOf(t))},S:function(e,t){e.setSeconds(parseFloat(t))},U:function(e,t){return new Date(1e3*parseFloat(t))},W:function(e,t,n){var a=parseInt(t),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+n.firstDayOfWeek),i},Y:function(e,t){e.setFullYear(parseFloat(t))},Z:function(e,t){return new Date(t)},d:function(e,t){e.setDate(parseFloat(t))},h:function(e,t){e.setHours(parseFloat(t))},i:function(e,t){e.setMinutes(parseFloat(t))},j:function(e,t){e.setDate(parseFloat(t))},l:f,m:function(e,t){e.setMonth(parseFloat(t)-1)},n:function(e,t){e.setMonth(parseFloat(t)-1)},s:function(e,t){e.setSeconds(parseFloat(t))},u:function(e,t){return new Date(parseFloat(t))},w:f,y:function(e,t){e.setFullYear(2e3+parseFloat(t))}},p={D:"(\\w+)",F:"(\\w+)",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"(\\w+)",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"(\\w+)",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},h={Z:function(e){return e.toISOString()},D:function(e,t,n){return t.weekdays.shorthand[h.w(e,t,n)]},F:function(e,t,n){return m(h.n(e,t,n)-1,!1,t)},G:function(e,t,n){return i(h.h(e,t,n))},H:function(e){return i(e.getHours())},J:function(e,t){return void 0!==t.ordinal?e.getDate()+t.ordinal(e.getDate()):e.getDate()},K:function(e,t){return t.amPM[o(e.getHours()>11)]},M:function(e,t){return m(e.getMonth(),!0,t)},S:function(e){return i(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,t,n){return n.getWeek(e)},Y:function(e){return e.getFullYear()},d:function(e){return i(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return i(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,t){return t.weekdays.longhand[e.getDay()]},m:function(e){return i(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},v=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,n){var a=n||r;return void 0!==i.formatDate?i.formatDate(e,t,a):t.split("").map((function(t,n,o){return h[t]&&"\\"!==o[n-1]?h[t](e,a,i):"\\"!==t?t:""})).join("")}},D=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,a,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if("string"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if("string"==typeof e){var s=t||(i||n).dateFormat,u=String(e).trim();if("today"===u)l=new Date,a=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(i&&i.parseDate)l=i.parseDate(e,s);else{l=i&&i.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],h=0,v=0,D="";h<s.length;h++){var w=s[h],b="\\"===w,C="\\"===s[h-1]||b;if(p[w]&&!C){D+=p[w];var M=new RegExp(D).exec(e);M&&(f=!0)&&m["Y"!==w?"push":"unshift"]({fn:g[w],val:M[++v]})}else b||(D+=".");m.forEach((function(e){var t=e.fn,n=e.val;return l=t(l,n,c)||l}))}l=f?l:void 0}}if(l instanceof Date&&!isNaN(l.getTime()))return!0===a&&l.setHours(0,0,0,0),l;i.errorHandler(new Error("Invalid date provided: "+d))}}};function w(e,t,n){return void 0===n&&(n=!0),!1!==n?new Date(e.getTime()).setHours(0,0,0,0)-new Date(t.getTime()).setHours(0,0,0,0):e.getTime()-t.getTime()}var b=864e5;function C(f,g){var h={config:e({},n,y.defaultConfig),l10n:a};function C(e){return e.bind(h)}function M(){var e=h.config;!1===e.weekNumbers&&1===e.showMonths||!0!==e.noCalendar&&window.requestAnimationFrame((function(){if(void 0!==h.calendarContainer&&(h.calendarContainer.style.visibility="hidden",h.calendarContainer.style.display="block"),void 0!==h.daysContainer){var t=(h.days.offsetWidth+1)*e.showMonths;h.daysContainer.style.width=t+"px",h.calendarContainer.style.width=t+(void 0!==h.weekWrapper?h.weekWrapper.offsetWidth:0)+"px",h.calendarContainer.style.removeProperty("visibility"),h.calendarContainer.style.removeProperty("display")}}))}function x(e){0===h.selectedDates.length&&ne(),void 0!==e&&"blur"!==e.type&&function(e){e.preventDefault();var t="keydown"===e.type,n=e.target;void 0!==h.amPM&&e.target===h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]);var a=parseFloat(n.getAttribute("min")),r=parseFloat(n.getAttribute("max")),l=parseFloat(n.getAttribute("step")),c=parseInt(n.value,10),d=e.delta||(t?38===e.which?1:-1:0),s=c+l*d;if(void 0!==n.value&&2===n.value.length){var u=n===h.hourElement,f=n===h.minuteElement;s<a?(s=r+s+o(!u)+(o(u)&&o(!h.amPM)),f&&Y(void 0,-1,h.hourElement)):s>r&&(s=n===h.hourElement?s-r-o(!h.amPM):a,f&&Y(void 0,1,h.hourElement)),h.amPM&&u&&(1===l?s+c===23:Math.abs(s-c)>l)&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]),n.value=i(s)}}(e);var t=h._input.value;E(),ve(),h._input.value!==t&&h._debouncedChange()}function E(){if(void 0!==h.hourElement&&void 0!==h.minuteElement){var e,t,n=(parseInt(h.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(h.minuteElement.value,10)||0)%60,i=void 0!==h.secondElement?(parseInt(h.secondElement.value,10)||0)%60:0;void 0!==h.amPM&&(e=n,t=h.amPM.textContent,n=e%12+12*o(t===h.l10n.amPM[1]));var r=void 0!==h.config.minTime||h.config.minDate&&h.minDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.minDate,!0);if(void 0!==h.config.maxTime||h.config.maxDate&&h.maxDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.maxDate,!0)){var l=void 0!==h.config.maxTime?h.config.maxTime:h.config.maxDate;(n=Math.min(n,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(r){var c=void 0!==h.config.minTime?h.config.minTime:h.config.minDate;(n=Math.max(n,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}I(n,a,i)}}function T(e){var t=e||h.latestSelectedDateObj;t&&I(t.getHours(),t.getMinutes(),t.getSeconds())}function k(){var e=h.config.defaultHour,t=h.config.defaultMinute,n=h.config.defaultSeconds;if(void 0!==h.config.minDate){var a=h.config.minDate.getHours(),i=h.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(t=Math.max(i,t)),e===a&&t===i&&(n=h.config.minDate.getSeconds())}if(void 0!==h.config.maxDate){var o=h.config.maxDate.getHours(),r=h.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(t=Math.min(r,t)),e===o&&t===r&&(n=h.config.maxDate.getSeconds())}I(e,t,n)}function I(e,t,n){void 0!==h.latestSelectedDateObj&&h.latestSelectedDateObj.setHours(e%24,t,n||0,0),h.hourElement&&h.minuteElement&&!h.isMobile&&(h.hourElement.value=i(h.config.time_24hr?e:(12+e)%12+12*o(e%12==0)),h.minuteElement.value=i(t),void 0!==h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(e>=12)]),void 0!==h.secondElement&&(h.secondElement.value=i(n)))}function S(e){var t=parseInt(e.target.value)+(e.delta||0);(t/1e3>1||"Enter"===e.key&&!/[^\d]/.test(t.toString()))&&V(t)}function O(e,t,n,a){return t instanceof Array?t.forEach((function(t){return O(e,t,n,a)})):e instanceof Array?e.forEach((function(e){return O(e,t,n,a)})):(e.addEventListener(t,n,a),void h._handlers.push({element:e,event:t,handler:n,options:a}))}function _(e){return function(t){1===t.which&&e(t)}}function F(){fe("onChange")}function N(e,t){var n=void 0!==e?h.parseDate(e):h.latestSelectedDateObj||(h.config.minDate&&h.config.minDate>h.now?h.config.minDate:h.config.maxDate&&h.config.maxDate<h.now?h.config.maxDate:h.now),a=h.currentYear,i=h.currentMonth;try{void 0!==n&&(h.currentYear=n.getFullYear(),h.currentMonth=n.getMonth())}catch(e){e.message="Invalid date supplied: "+n,h.config.errorHandler(e)}t&&h.currentYear!==a&&(fe("onYearChange"),B()),!t||h.currentYear===a&&h.currentMonth===i||fe("onMonthChange"),h.redraw()}function P(e){~e.target.className.indexOf("arrow")&&Y(e,e.target.classList.contains("arrowUp")?1:-1)}function Y(e,t,n){var a=e&&e.target,i=n||a&&a.parentNode&&a.parentNode.firstChild,o=me("increment");o.delta=t,i&&i.dispatchEvent(o)}function A(e,t,n,a){var i=Z(t,!0),o=d("span","flatpickr-day "+e,t.getDate().toString());return o.dateObj=t,o.$i=a,o.setAttribute("aria-label",h.formatDate(t,h.config.ariaDateFormat)),-1===e.indexOf("hidden")&&0===w(t,h.now)&&(h.todayDateElem=o,o.classList.add("today"),o.setAttribute("aria-current","date")),i?(o.tabIndex=-1,ge(t)&&(o.classList.add("selected"),h.selectedDateElem=o,"range"===h.config.mode&&(c(o,"startRange",h.selectedDates[0]&&0===w(t,h.selectedDates[0],!0)),c(o,"endRange",h.selectedDates[1]&&0===w(t,h.selectedDates[1],!0)),"nextMonthDay"===e&&o.classList.add("inRange")))):o.classList.add("flatpickr-disabled"),"range"===h.config.mode&&function(e){return!("range"!==h.config.mode||h.selectedDates.length<2)&&w(e,h.selectedDates[0])>=0&&w(e,h.selectedDates[1])<=0}(t)&&!ge(t)&&o.classList.add("inRange"),h.weekNumbers&&1===h.config.showMonths&&"prevMonthDay"!==e&&n%7==1&&h.weekNumbers.insertAdjacentHTML("beforeend","<span class=’flatpickr-day’>"+h.config.getWeek(t)+"</span>"),fe("onDayCreate",o),o}function j(e){e.focus(),"range"===h.config.mode&&ee(e)}function H(e){for(var t=e>0?0:h.config.showMonths-1,n=e>0?h.config.showMonths:-1,a=t;a!=n;a+=e)for(var i=h.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf("hidden")&&Z(c.dateObj))return c}}function L(e,t){var n=Q(document.activeElement||document.body),a=void 0!==e?e:n?document.activeElement:void 0!==h.selectedDateElem&&Q(h.selectedDateElem)?h.selectedDateElem:void 0!==h.todayDateElem&&Q(h.todayDateElem)?h.todayDateElem:H(t>0?1:-1);return void 0===a?h._input.focus():n?void function(e,t){for(var n=-1===e.className.indexOf("Month")?e.dateObj.getMonth():h.currentMonth,a=t>0?h.config.showMonths:-1,i=t>0?1:-1,o=n-h.currentMonth;o!=a;o+=i)for(var r=h.daysContainer.children[o],l=n-h.currentMonth===o?e.$i+t:t<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d<c&&d!=(t>0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf("hidden")&&Z(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(t))return j(s)}h.changeMonth(i),L(H(i),0)}(a,t):j(a)}function W(e,t){for(var n=(new Date(e,t,1).getDay()-h.l10n.firstDayOfWeek+7)%7,a=h.utils.getDaysInMonth((t-1+12)%12),i=h.utils.getDaysInMonth(t),o=window.document.createDocumentFragment(),r=h.config.showMonths>1,l=r?"prevMonthDay hidden":"prevMonthDay",c=r?"nextMonthDay hidden":"nextMonthDay",s=a+1-n,u=0;s<=a;s++,u++)o.appendChild(A(l,new Date(e,t-1,s),s,u));for(s=1;s<=i;s++,u++)o.appendChild(A("",new Date(e,t,s),s,u));for(var f=i+1;f<=42-n&&(1===h.config.showMonths||u%7!=0);f++,u++)o.appendChild(A(c,new Date(e,t+1,f%i),f,u));var m=d("div","dayContainer");return m.appendChild(o),m}function R(){if(void 0!==h.daysContainer){s(h.daysContainer),h.weekNumbers&&s(h.weekNumbers);for(var e=document.createDocumentFragment(),t=0;t<h.config.showMonths;t++){var n=new Date(h.currentYear,h.currentMonth,1);n.setMonth(h.currentMonth+t),e.appendChild(W(n.getFullYear(),n.getMonth()))}h.daysContainer.appendChild(e),h.days=h.daysContainer.firstChild,"range"===h.config.mode&&1===h.selectedDates.length&&ee()}}function B(){if(!(h.config.showMonths>1||"dropdown"!==h.config.monthSelectorType)){var e=function(e){return!(void 0!==h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&e<h.config.minDate.getMonth()||void 0!==h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()&&e>h.config.maxDate.getMonth())};h.monthsDropdownContainer.tabIndex=-1,h.monthsDropdownContainer.innerHTML="";for(var t=0;t<12;t++)if(e(t)){var n=d("option","flatpickr-monthDropdown-month");n.value=new Date(h.currentYear,t).getMonth().toString(),n.textContent=m(t,h.config.shorthandCurrentMonth,h.l10n),n.tabIndex=-1,h.currentMonth===t&&(n.selected=!0),h.monthsDropdownContainer.appendChild(n)}}}function J(){var e,t=d("div","flatpickr-month"),n=window.document.createDocumentFragment();h.config.showMonths>1||"static"===h.config.monthSelectorType?e=d("span","cur-month"):(h.monthsDropdownContainer=d("select","flatpickr-monthDropdown-months"),O(h.monthsDropdownContainer,"change",(function(e){var t=e.target,n=parseInt(t.value,10);h.changeMonth(n-h.currentMonth),fe("onMonthChange")})),B(),e=h.monthsDropdownContainer);var a=u("cur-year",{tabindex:"-1"}),i=a.getElementsByTagName("input")[0];i.setAttribute("aria-label",h.l10n.yearAriaLabel),h.config.minDate&&i.setAttribute("min",h.config.minDate.getFullYear().toString()),h.config.maxDate&&(i.setAttribute("max",h.config.maxDate.getFullYear().toString()),i.disabled=!!h.config.minDate&&h.config.minDate.getFullYear()===h.config.maxDate.getFullYear());var o=d("div","flatpickr-current-month");return o.appendChild(e),o.appendChild(a),n.appendChild(o),t.appendChild(n),{container:t,yearElement:i,monthElement:e}}function K(){s(h.monthNav),h.monthNav.appendChild(h.prevMonthNav),h.config.showMonths&&(h.yearElements=[],h.monthElements=[]);for(var e=h.config.showMonths;e–;){var t=J();h.yearElements.push(t.yearElement),h.monthElements.push(t.monthElement),h.monthNav.appendChild(t.container)}h.monthNav.appendChild(h.nextMonthNav)}function U(){h.weekdayContainer?s(h.weekdayContainer):h.weekdayContainer=d("div","flatpickr-weekdays");for(var e=h.config.showMonths;e–;){var t=d("div","flatpickr-weekdaycontainer");h.weekdayContainer.appendChild(t)}return q(),h.weekdayContainer}function q(){if(h.weekdayContainer){var e=h.l10n.firstDayOfWeek,t=h.l10n.weekdays.shorthand.slice();e>0&&e<t.length&&(t=t.splice(e,t.length).concat(t.splice(0,e)));for(var n=h.config.showMonths;n–;)h.weekdayContainer.children[n].innerHTML="\n <span class=’flatpickr-weekday’>\n "+t.join("</span><span class=’flatpickr-weekday’>")+"\n </span>\n "}}function $(e,t){void 0===t&&(t=!0);var n=t?e:e-h.currentMonth;n<0&&!0===h._hidePrevMonthArrow||n>0&&!0===h._hideNextMonthArrow||(h.currentMonth+=n,(h.currentMonth<0||h.currentMonth>11)&&(h.currentYear+=h.currentMonth>11?1:-1,h.currentMonth=(h.currentMonth+12)%12,fe("onYearChange"),B()),R(),fe("onMonthChange"),pe())}function z(e){return!(!h.config.appendTo||!h.config.appendTo.contains(e))||h.calendarContainer.contains(e)}function G(e){if(h.isOpen&&!h.config.inline){var t="function"==typeof(r=e).composedPath?r.composedPath()[0]:r.target,n=z(t),a=t===h.input||t===h.altInput||h.element.contains(t)||e.path&&e.path.indexOf&&(~e.path.indexOf(h.input)||~e.path.indexOf(h.altInput)),i="blur"===e.type?a&&e.relatedTarget&&!z(e.relatedTarget):!a&&!n&&!z(e.relatedTarget),o=!h.config.ignoredFocusElements.some((function(e){return e.contains(t)}));i&&o&&(void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&x(),h.close(),"range"===h.config.mode&&1===h.selectedDates.length&&(h.clear(!1),h.redraw()))}var r}function V(e){if(!(!e||h.config.minDate&&e<h.config.minDate.getFullYear()||h.config.maxDate&&e>h.config.maxDate.getFullYear())){var t=e,n=h.currentYear!==t;h.currentYear=t||h.currentYear,h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth=Math.min(h.config.maxDate.getMonth(),h.currentMonth):h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&(h.currentMonth=Math.max(h.config.minDate.getMonth(),h.currentMonth)),n&&(h.redraw(),fe("onYearChange"),B())}}function Z(e,t){void 0===t&&(t=!0);var n=h.parseDate(e,void 0,t);if(h.config.minDate&&n&&w(n,h.config.minDate,void 0!==t?t:!h.minDateHasTime)<0||h.config.maxDate&&n&&w(n,h.config.maxDate,void 0!==t?t:!h.maxDateHasTime)>0)return!1;if(0===h.config.enable.length&&0===h.config.disable.length)return!0;if(void 0===n)return!1;for(var a=h.config.enable.length>0,i=a?h.config.enable:h.config.disable,o=0,r=void 0;o<i.length;o++){if("function"==typeof(r=i[o])&&r(n))return a;if(r instanceof Date&&void 0!==n&&r.getTime()===n.getTime())return a;if("string"==typeof r&&void 0!==n){var l=h.parseDate(r,void 0,!0);return l&&l.getTime()===n.getTime()?a:!a}if("object"==typeof r&&void 0!==n&&r.from&&r.to&&n.getTime()>=r.from.getTime()&&n.getTime()<=r.to.getTime())return a}return!a}function Q(e){return void 0!==h.daysContainer&&-1===e.className.indexOf("hidden")&&h.daysContainer.contains(e)}function X(e){var t=e.target===h._input,n=h.config.allowInput,a=h.isOpen&&(!n||!t),i=h.config.inline&&t&&!n;if(13===e.keyCode&&t){if(n)return h.setDate(h._input.value,!0,e.target===h.altInput?h.config.altFormat:h.config.dateFormat),e.target.blur();h.open()}else if(z(e.target)||a||i){var o=!!h.timeContainer&&h.timeContainer.contains(e.target);switch(e.keyCode){case 13:o?(e.preventDefault(),x(),le()):ce(e);break;case 27:e.preventDefault(),le();break;case 8:case 46:t&&!h.config.allowInput&&(e.preventDefault(),h.clear());break;case 37:case 39:if(o||t)h.hourElement&&h.hourElement.focus();else if(e.preventDefault(),void 0!==h.daysContainer&&(!1===n||document.activeElement&&Q(document.activeElement))){var r=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),$(r),L(H(1),0)):L(void 0,r)}break;case 38:case 40:e.preventDefault();var l=40===e.keyCode?1:-1;h.daysContainer&&void 0!==e.target.$i||e.target===h.input||e.target===h.altInput?e.ctrlKey?(e.stopPropagation(),V(h.currentYear-l),L(H(1),0)):o||L(void 0,7*l):e.target===h.currentYearElement?V(h.currentYear-l):h.config.enableTime&&(!o&&h.hourElement&&h.hourElement.focus(),x(e),h._debouncedChange());break;case 9:if(o){var c=[h.hourElement,h.minuteElement,h.secondElement,h.amPM].concat(h.pluginElements).filter((function(e){return e})),d=c.indexOf(e.target);if(-1!==d){var s=c[d+(e.shiftKey?-1:1)];e.preventDefault(),(s||h._input).focus()}}else!h.config.noCalendar&&h.daysContainer&&h.daysContainer.contains(e.target)&&e.shiftKey&&(e.preventDefault(),h._input.focus())}}if(void 0!==h.amPM&&e.target===h.amPM)switch(e.key){case h.l10n.amPM[0].charAt(0):case h.l10n.amPM[0].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[0],E(),ve();break;case h.l10n.amPM[1].charAt(0):case h.l10n.amPM[1].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[1],E(),ve()}(t||z(e.target))&&fe("onKeyDown",e)}function ee(e){if(1===h.selectedDates.length&&(!e||e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled"))){for(var t=e?e.dateObj.getTime():h.days.firstElementChild.dateObj.getTime(),n=h.parseDate(h.selectedDates[0],void 0,!0).getTime(),a=Math.min(t,h.selectedDates[0].getTime()),i=Math.max(t,h.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;c<i;c+=b)Z(new Date(c),!0)||(o=o||c>a&&c<i,c<n&&(!r||c>r)?r=c:c>n&&(!l||c<l)&&(l=c));for(var d=0;d<h.config.showMonths;d++)for(var s=h.daysContainer.children[d],u=function(a,i){var c,d,u,f=s.children[a],m=f.dateObj.getTime(),g=r>0&&m<r||l>0&&m>l;return g?(f.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach((function(e){f.classList.remove(e)})),"continue"):o&&!g?"continue":(["startRange","inRange","endRange","notAllowed"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(t<=h.selectedDates[0].getTime()?"startRange":"endRange"),n<t&&m===n?f.classList.add("startRange"):n>t&&m===n&&f.classList.add("endRange"),m>=r&&(0===l||m<=l)&&(d=n,u=t,(c=m)>Math.min(d,u)&&c<Math.max(d,u))&&f.classList.add("inRange"))))},f=0,m=s.children.length;f<m;f++)u(f)}}function te(){!h.isOpen||h.config.static||h.config.inline||oe()}function ne(){h.setDate(void 0!==h.config.minDate?new Date(h.config.minDate.getTime()):new Date,!0),k(),ve()}function ae(e){return function(t){var n=h.config["_"+e+"Date"]=h.parseDate(t,h.config.dateFormat),a=h.config["_"+("min"===e?"max":"min")+"Date"];void 0!==n&&(h["min"===e?"minDateHasTime":"maxDateHasTime"]=n.getHours()>0||n.getMinutes()>0||n.getSeconds()>0),h.selectedDates&&(h.selectedDates=h.selectedDates.filter((function(e){return Z(e)})),h.selectedDates.length||"min"!==e||T(n),ve()),h.daysContainer&&(re(),void 0!==n?h.currentYearElement[e]=n.getFullYear().toString():h.currentYearElement.removeAttribute(e),h.currentYearElement.disabled=!!a&&void 0!==n&&a.getFullYear()===n.getFullYear())}}function ie(){"object"!=typeof h.config.locale&&void 0===y.l10ns[h.config.locale]&&h.config.errorHandler(new Error("flatpickr: invalid locale "+h.config.locale)),h.l10n=e({},y.l10ns.default,"object"==typeof h.config.locale?h.config.locale:"default"!==h.config.locale?y.l10ns[h.config.locale]:void 0),p.K="("+h.l10n.amPM[0]+"|\"+h.l10n.amPM[1]+\"|"+h.l10n.amPM[0].toLowerCase()+"|\"+h.l10n.amPM[1].toLowerCase()+\")\",void 0===e({},g,JSON.parse(JSON.stringify(f.dataset||{}))).time_24hr&&void 0===y.defaultConfig.time_24hr&&(h.config.time_24hr=h.l10n.time_24hr),h.formatDate=v(h),h.parseDate=D({config:h.config,l10n:h.l10n})}function oe(e){if(void 0!==h.calendarContainer){fe(\"onPreCalendarPosition\");var t=e||h._positionElement,n=Array.prototype.reduce.call(h.calendarContainer.children,(function(e,t){return e+t.offsetHeight}),0),a=h.calendarContainer.offsetWidth,i=h.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=t.getBoundingClientRect(),d=window.innerHeight-l.bottom,s=\"above\"===o||"below"!==o&&d<n&&l.top>n,u=window.pageYOffset+l.top+(s?-n-2:t.offsetHeight+2);if(c(h.calendarContainer,"arrowTop",!s),c(h.calendarContainer,"arrowBottom",s),!h.config.inline){var f=window.pageXOffset+l.left-(null!=r&&"center"===r?(a-l.width)/2:0),m=window.document.body.offsetWidth-(window.pageXOffset+l.right),g=f+a>window.document.body.offsetWidth,p=m+a>window.document.body.offsetWidth;if(c(h.calendarContainer,"rightMost",g),!h.config.static)if(h.calendarContainer.style.top=u+"px",g)if(p){var v=document.styleSheets[0];if(void 0===v)return;var D=window.document.body.offsetWidth,w=Math.max(0,D/2-a/2),b=v.cssRules.length,C="{left:"+l.left+"px;right:auto;}";c(h.calendarContainer,"rightMost",!1),c(h.calendarContainer,"centerMost",!0),v.insertRule(".flatpickr-calendar.centerMost:before,.flatpickr-calendar.centerMost:after"+C,b),h.calendarContainer.style.left=w+"px",h.calendarContainer.style.right="auto"}else h.calendarContainer.style.left="auto",h.calendarContainer.style.right=m+"px";else h.calendarContainer.style.left=f+"px",h.calendarContainer.style.right="auto"}}}function re(){h.config.noCalendar||h.isMobile||(pe(),R())}function le(){h._input.focus(),-1!==window.navigator.userAgent.indexOf("MSIE")||void 0!==navigator.msMaxTouchPoints?setTimeout(h.close,0):h.close()}function ce(e){e.preventDefault(),e.stopPropagation();var t=function e(t,n){return n(t)?t:t.parentNode?e(t.parentNode,n):void 0}(e.target,(function(e){return e.classList&&e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled")&&!e.classList.contains("notAllowed")}));if(void 0!==t){var n=t,a=h.latestSelectedDateObj=new Date(n.dateObj.getTime()),i=(a.getMonth()<h.currentMonth||a.getMonth()>h.currentMonth+h.config.showMonths-1)&&"range"!==h.config.mode;if(h.selectedDateElem=n,"single"===h.config.mode)h.selectedDates=[a];else if("multiple"===h.config.mode){var o=ge(a);o?h.selectedDates.splice(parseInt(o),1):h.selectedDates.push(a)}else"range"===h.config.mode&&(2===h.selectedDates.length&&h.clear(!1,!1),h.latestSelectedDateObj=a,h.selectedDates.push(a),0!==w(a,h.selectedDates[0],!0)&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()})));if(E(),i){var r=h.currentYear!==a.getFullYear();h.currentYear=a.getFullYear(),h.currentMonth=a.getMonth(),r&&(fe("onYearChange"),B()),fe("onMonthChange")}if(pe(),R(),ve(),h.config.enableTime&&setTimeout((function(){return h.showTimeInput=!0}),50),i||"range"===h.config.mode||1!==h.config.showMonths?void 0!==h.selectedDateElem&&void 0===h.hourElement&&h.selectedDateElem&&h.selectedDateElem.focus():j(n),void 0!==h.hourElement&&void 0!==h.hourElement&&h.hourElement.focus(),h.config.closeOnSelect){var l="single"===h.config.mode&&!h.config.enableTime,c="range"===h.config.mode&&2===h.selectedDates.length&&!h.config.enableTime;(l||c)&&le()}F()}}h.parseDate=D({config:h.config,l10n:h.l10n}),h._handlers=[],h.pluginElements=[],h.loadedPlugins=[],h._bind=O,h._setHoursFromDate=T,h._positionCalendar=oe,h.changeMonth=$,h.changeYear=V,h.clear=function(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0),h.input.value="",void 0!==h.altInput&&(h.altInput.value=""),void 0!==h.mobileInput&&(h.mobileInput.value=""),h.selectedDates=[],h.latestSelectedDateObj=void 0,!0===t&&(h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth()),h.showTimeInput=!1,!0===h.config.enableTime&&k(),h.redraw(),e&&fe("onChange")},h.close=function(){h.isOpen=!1,h.isMobile||(void 0!==h.calendarContainer&&h.calendarContainer.classList.remove("open"),void 0!==h._input&&h._input.classList.remove("active")),fe("onClose")},h._createElement=d,h.destroy=function(){void 0!==h.config&&fe("onDestroy");for(var e=h._handlers.length;e–;){var t=h._handlers[e];t.element.removeEventListener(t.event,t.handler,t.options)}if(h._handlers=[],h.mobileInput)h.mobileInput.parentNode&&h.mobileInput.parentNode.removeChild(h.mobileInput),h.mobileInput=void 0;else if(h.calendarContainer&&h.calendarContainer.parentNode)if(h.config.static&&h.calendarContainer.parentNode){var n=h.calendarContainer.parentNode;if(n.lastChild&&n.removeChild(n.lastChild),n.parentNode){for(;n.firstChild;)n.parentNode.insertBefore(n.firstChild,n);n.parentNode.removeChild(n)}}else h.calendarContainer.parentNode.removeChild(h.calendarContainer);h.altInput&&(h.input.type="text",h.altInput.parentNode&&h.altInput.parentNode.removeChild(h.altInput),delete h.altInput),h.input&&(h.input.type=h.input._type,h.input.classList.remove("flatpickr-input"),h.input.removeAttribute("readonly"),h.input.value=""),["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach((function(e){try{delete h[e]}catch(e){}}))},h.isEnabled=Z,h.jumpToDate=N,h.open=function(e,t){if(void 0===t&&(t=h._positionElement),!0===h.isMobile)return e&&(e.preventDefault(),e.target&&e.target.blur()),void 0!==h.mobileInput&&(h.mobileInput.focus(),h.mobileInput.click()),void fe("onOpen");if(!h._input.disabled&&!h.config.inline){var n=h.isOpen;h.isOpen=!0,n||(h.calendarContainer.classList.add("open"),h._input.classList.add("active"),fe("onOpen"),oe(t)),!0===h.config.enableTime&&!0===h.config.noCalendar&&(0===h.selectedDates.length&&ne(),!1!==h.config.allowInput||void 0!==e&&h.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return h.hourElement.select()}),50))}},h.redraw=re,h.set=function(e,n){if(null!==e&&"object"==typeof e)for(var a in Object.assign(h.config,e),e)void 0!==de[a]&&de[a].forEach((function(e){return e()}));else h.config[e]=n,void 0!==de[e]?de[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(h.config[e]=l(n));h.redraw(),ve(!1)},h.setDate=function(e,t,n){if(void 0===t&&(t=!1),void 0===n&&(n=h.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return h.clear(t);se(e,n),h.showTimeInput=h.selectedDates.length>0,h.latestSelectedDateObj=h.selectedDates[h.selectedDates.length-1],h.redraw(),N(),T(),0===h.selectedDates.length&&h.clear(!1),ve(t),t&&fe("onChange")},h.toggle=function(e){if(!0===h.isOpen)return h.close();h.open(e)};var de={locale:[ie,q],showMonths:[K,M,U],minDate:[N],maxDate:[N]};function se(e,t){var n=[];if(e instanceof Array)n=e.map((function(e){return h.parseDate(e,t)}));else if(e instanceof Date||"number"==typeof e)n=[h.parseDate(e,t)];else if("string"==typeof e)switch(h.config.mode){case"single":case"time":n=[h.parseDate(e,t)];break;case"multiple":n=e.split(h.config.conjunction).map((function(e){return h.parseDate(e,t)}));break;case"range":n=e.split(h.l10n.rangeSeparator).map((function(e){return h.parseDate(e,t)}))}else h.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(e)));h.selectedDates=n.filter((function(e){return e instanceof Date&&Z(e,!1)})),"range"===h.config.mode&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()}))}function ue(e){return e.slice().map((function(e){return"string"==typeof e||"number"==typeof e||e instanceof Date?h.parseDate(e,void 0,!0):e&&"object"==typeof e&&e.from&&e.to?{from:h.parseDate(e.from,void 0),to:h.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function fe(e,t){if(void 0!==h.config){var n=h.config[e];if(void 0!==n&&n.length>0)for(var a=0;n[a]&&a<n.length;a++)n[a](h.selectedDates,h.input.value,h,t);"onChange"===e&&(h.input.dispatchEvent(me("change")),h.input.dispatchEvent(me("input")))}}function me(e){var t=document.createEvent("Event");return t.initEvent(e,!0,!0),t}function ge(e){for(var t=0;t<h.selectedDates.length;t++)if(0===w(h.selectedDates[t],e))return""+t;return!1}function pe(){h.config.noCalendar||h.isMobile||!h.monthNav||(h.yearElements.forEach((function(e,t){var n=new Date(h.currentYear,h.currentMonth,1);n.setMonth(h.currentMonth+t),h.config.showMonths>1||"static"===h.config.monthSelectorType?h.monthElements[t].textContent=m(n.getMonth(),h.config.shorthandCurrentMonth,h.l10n)+" ":h.monthsDropdownContainer.value=n.getMonth().toString(),e.value=n.getFullYear().toString()})),h._hidePrevMonthArrow=void 0!==h.config.minDate&&(h.currentYear===h.config.minDate.getFullYear()?h.currentMonth<=h.config.minDate.getMonth():h.currentYear<h.config.minDate.getFullYear()),h._hideNextMonthArrow=void 0!==h.config.maxDate&&(h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth+1>h.config.maxDate.getMonth():h.currentYear>h.config.maxDate.getFullYear()))}function he(e){return h.selectedDates.map((function(t){return h.formatDate(t,e)})).filter((function(e,t,n){return"range"!==h.config.mode||h.config.enableTime||n.indexOf(e)===t})).join("range"!==h.config.mode?h.config.conjunction:h.l10n.rangeSeparator)}function ve(e){void 0===e&&(e=!0),void 0!==h.mobileInput&&h.mobileFormatStr&&(h.mobileInput.value=void 0!==h.latestSelectedDateObj?h.formatDate(h.latestSelectedDateObj,h.mobileFormatStr):""),h.input.value=he(h.config.dateFormat),void 0!==h.altInput&&(h.altInput.value=he(h.config.altFormat)),!1!==e&&fe("onValueUpdate")}function De(e){var t=h.prevMonthNav.contains(e.target),n=h.nextMonthNav.contains(e.target);t||n?$(t?-1:1):h.yearElements.indexOf(e.target)>=0?e.target.select():e.target.classList.contains("arrowUp")?h.changeYear(h.currentYear+1):e.target.classList.contains("arrowDown")&&h.changeYear(h.currentYear-1)}return function(){h.element=h.input=f,h.isOpen=!1,function(){var a=["wrap","weekNumbers","allowInput","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],i=e({},g,JSON.parse(JSON.stringify(f.dataset||{}))),o={};h.config.parseDate=i.parseDate,h.config.formatDate=i.formatDate,Object.defineProperty(h.config,"enable",{get:function(){return h.config._enable},set:function(e){h.config._enable=ue(e)}}),Object.defineProperty(h.config,"disable",{get:function(){return h.config._disable},set:function(e){h.config._disable=ue(e)}});var r="time"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var c=y.defaultConfig.dateFormat||n.dateFormat;o.dateFormat=i.noCalendar||r?"H:i"+(i.enableSeconds?":S":""):c+" H:i"+(i.enableSeconds?":S":"")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=y.defaultConfig.altFormat||n.altFormat;o.altFormat=i.noCalendar||r?"h:i"+(i.enableSeconds?":S K":" K"):d+" h:i"+(i.enableSeconds?":S":"")+" K"}i.altInputClass||(h.config.altInputClass=h.input.className+" "+h.config.altInputClass),Object.defineProperty(h.config,"minDate",{get:function(){return h.config._minDate},set:ae("min")}),Object.defineProperty(h.config,"maxDate",{get:function(){return h.config._maxDate},set:ae("max")});var s=function(e){return function(t){h.config["min"===e?"_minTime":"_maxTime"]=h.parseDate(t,"H:i:S")}};Object.defineProperty(h.config,"minTime",{get:function(){return h.config._minTime},set:s("min")}),Object.defineProperty(h.config,"maxTime",{get:function(){return h.config._maxTime},set:s("max")}),"time"===i.mode&&(h.config.noCalendar=!0,h.config.enableTime=!0),Object.assign(h.config,o,i);for(var u=0;u<a.length;u++)h.config[a[u]]=!0===h.config[a[u]]||"true"===h.config[a[u]];for(t.filter((function(e){return void 0!==h.config[e]})).forEach((function(e){h.config[e]=l(h.config[e]||[]).map(C)})),h.isMobile=!h.config.disableMobile&&!h.config.inline&&"single"===h.config.mode&&!h.config.disable.length&&!h.config.enable.length&&!h.config.weekNumbers&&/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),u=0;u<h.config.plugins.length;u++){var m=h.config.plugins[u](h)||{};for(var p in m)t.indexOf(p)>-1?h.config[p]=l(m[p]).map(C).concat(h.config[p]):void 0===i[p]&&(h.config[p]=m[p])}fe("onParseConfig")}(),ie(),h.input=h.config.wrap?f.querySelector("[data-input]"):f,h.input?(h.input._type=h.input.type,h.input.type="text",h.input.classList.add("flatpickr-input"),h._input=h.input,h.config.altInput&&(h.altInput=d(h.input.nodeName,h.config.altInputClass),h._input=h.altInput,h.altInput.placeholder=h.input.placeholder,h.altInput.disabled=h.input.disabled,h.altInput.required=h.input.required,h.altInput.tabIndex=h.input.tabIndex,h.altInput.type="text",h.input.setAttribute("type","hidden"),!h.config.static&&h.input.parentNode&&h.input.parentNode.insertBefore(h.altInput,h.input.nextSibling)),h.config.allowInput||h._input.setAttribute("readonly","readonly"),h._positionElement=h.config.positionElement||h._input):h.config.errorHandler(new Error("Invalid input element specified")),function(){h.selectedDates=[],h.now=h.parseDate(h.config.now)||new Date;var e=h.config.defaultDate||("INPUT"!==h.input.nodeName&&"TEXTAREA"!==h.input.nodeName||!h.input.placeholder||h.input.value!==h.input.placeholder?h.input.value:null);e&&se(e,h.config.dateFormat),h._initialDate=h.selectedDates.length>0?h.selectedDates[0]:h.config.minDate&&h.config.minDate.getTime()>h.now.getTime()?h.config.minDate:h.config.maxDate&&h.config.maxDate.getTime()<h.now.getTime()?h.config.maxDate:h.now,h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth(),h.selectedDates.length>0&&(h.latestSelectedDateObj=h.selectedDates[0]),void 0!==h.config.minTime&&(h.config.minTime=h.parseDate(h.config.minTime,"H:i")),void 0!==h.config.maxTime&&(h.config.maxTime=h.parseDate(h.config.maxTime,"H:i")),h.minDateHasTime=!!h.config.minDate&&(h.config.minDate.getHours()>0||h.config.minDate.getMinutes()>0||h.config.minDate.getSeconds()>0),h.maxDateHasTime=!!h.config.maxDate&&(h.config.maxDate.getHours()>0||h.config.maxDate.getMinutes()>0||h.config.maxDate.getSeconds()>0),Object.defineProperty(h,"showTimeInput",{get:function(){return h._showTimeInput},set:function(e){h._showTimeInput=e,h.calendarContainer&&c(h.calendarContainer,"showTimeInput",e),h.isOpen&&oe()}})}(),h.utils={getDaysInMonth:function(e,t){return void 0===e&&(e=h.currentMonth),void 0===t&&(t=h.currentYear),1===e&&(t%4==0&&t%100!=0||t%400==0)?29:h.l10n.daysInMonth[e]}},h.isMobile||function(){var e=window.document.createDocumentFragment();if(h.calendarContainer=d("div","flatpickr-calendar"),h.calendarContainer.tabIndex=-1,!h.config.noCalendar){if(e.appendChild((h.monthNav=d("div","flatpickr-months"),h.yearElements=[],h.monthElements=[],h.prevMonthNav=d("span","flatpickr-prev-month"),h.prevMonthNav.innerHTML=h.config.prevArrow,h.nextMonthNav=d("span","flatpickr-next-month"),h.nextMonthNav.innerHTML=h.config.nextArrow,K(),Object.defineProperty(h,"_hidePrevMonthArrow",{get:function(){return h.__hidePrevMonthArrow},set:function(e){h.__hidePrevMonthArrow!==e&&(c(h.prevMonthNav,"flatpickr-disabled",e),h.__hidePrevMonthArrow=e)}}),Object.defineProperty(h,"_hideNextMonthArrow",{get:function(){return h.__hideNextMonthArrow},set:function(e){h.__hideNextMonthArrow!==e&&(c(h.nextMonthNav,"flatpickr-disabled",e),h.__hideNextMonthArrow=e)}}),h.currentYearElement=h.yearElements[0],pe(),h.monthNav)),h.innerContainer=d("div","flatpickr-innerContainer"),h.config.weekNumbers){var t=function(){h.calendarContainer.classList.add("hasWeeks");var e=d("div","flatpickr-weekwrapper");e.appendChild(d("span","flatpickr-weekday",h.l10n.weekAbbreviation));var t=d("div","flatpickr-weeks");return e.appendChild(t),{weekWrapper:e,weekNumbers:t}}(),n=t.weekWrapper,a=t.weekNumbers;h.innerContainer.appendChild(n),h.weekNumbers=a,h.weekWrapper=n}h.rContainer=d("div","flatpickr-rContainer"),h.rContainer.appendChild(U()),h.daysContainer||(h.daysContainer=d("div","flatpickr-days"),h.daysContainer.tabIndex=-1),R(),h.rContainer.appendChild(h.daysContainer),h.innerContainer.appendChild(h.rContainer),e.appendChild(h.innerContainer)}h.config.enableTime&&e.appendChild(function(){h.calendarContainer.classList.add("hasTime"),h.config.noCalendar&&h.calendarContainer.classList.add("noCalendar"),h.timeContainer=d("div","flatpickr-time"),h.timeContainer.tabIndex=-1;var e=d("span","flatpickr-time-separator",":"),t=u("flatpickr-hour",{"aria-label":h.l10n.hourAriaLabel});h.hourElement=t.getElementsByTagName("input")[0];var n=u("flatpickr-minute",{"aria-label":h.l10n.minuteAriaLabel});if(h.minuteElement=n.getElementsByTagName("input")[0],h.hourElement.tabIndex=h.minuteElement.tabIndex=-1,h.hourElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getHours():h.config.time_24hr?h.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(h.config.defaultHour)),h.minuteElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getMinutes():h.config.defaultMinute),h.hourElement.setAttribute("step",h.config.hourIncrement.toString()),h.minuteElement.setAttribute("step",h.config.minuteIncrement.toString()),h.hourElement.setAttribute("min",h.config.time_24hr?"0":"1"),h.hourElement.setAttribute("max",h.config.time_24hr?"23":"12"),h.minuteElement.setAttribute("min","0"),h.minuteElement.setAttribute("max","59"),h.timeContainer.appendChild(t),h.timeContainer.appendChild(e),h.timeContainer.appendChild(n),h.config.time_24hr&&h.timeContainer.classList.add("time24hr"),h.config.enableSeconds){h.timeContainer.classList.add("hasSeconds");var a=u("flatpickr-second");h.secondElement=a.getElementsByTagName("input")[0],h.secondElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getSeconds():h.config.defaultSeconds),h.secondElement.setAttribute("step",h.minuteElement.getAttribute("step")),h.secondElement.setAttribute("min","0"),h.secondElement.setAttribute("max","59"),h.timeContainer.appendChild(d("span","flatpickr-time-separator",":")),h.timeContainer.appendChild(a)}return h.config.time_24hr||(h.amPM=d("span","flatpickr-am-pm",h.l10n.amPM[o((h.latestSelectedDateObj?h.hourElement.value:h.config.defaultHour)>11)]),h.amPM.title=h.l10n.toggleTitle,h.amPM.tabIndex=-1,h.timeContainer.appendChild(h.amPM)),h.timeContainer}()),c(h.calendarContainer,"rangeMode","range"===h.config.mode),c(h.calendarContainer,"animate",!0===h.config.animate),c(h.calendarContainer,"multiMonth",h.config.showMonths>1),h.calendarContainer.appendChild(e);var r=void 0!==h.config.appendTo&&void 0!==h.config.appendTo.nodeType;if((h.config.inline||h.config.static)&&(h.calendarContainer.classList.add(h.config.inline?"inline":"static"),h.config.inline&&(!r&&h.element.parentNode?h.element.parentNode.insertBefore(h.calendarContainer,h._input.nextSibling):void 0!==h.config.appendTo&&h.config.appendTo.appendChild(h.calendarContainer)),h.config.static)){var l=d("div","flatpickr-wrapper");h.element.parentNode&&h.element.parentNode.insertBefore(l,h.element),l.appendChild(h.element),h.altInput&&l.appendChild(h.altInput),l.appendChild(h.calendarContainer)}h.config.static||h.config.inline||(void 0!==h.config.appendTo?h.config.appendTo:window.document.body).appendChild(h.calendarContainer)}(),function(){if(h.config.wrap&&["open","close","toggle","clear"].forEach((function(e){Array.prototype.forEach.call(h.element.querySelectorAll("[data-"+e+"]"),(function(t){return O(t,"click",h[e])}))})),h.isMobile)!function(){var e=h.config.enableTime?h.config.noCalendar?"time":"datetime-local":"date";h.mobileInput=d("input",h.input.className+" flatpickr-mobile"),h.mobileInput.step=h.input.getAttribute("step")||"any",h.mobileInput.tabIndex=1,h.mobileInput.type=e,h.mobileInput.disabled=h.input.disabled,h.mobileInput.required=h.input.required,h.mobileInput.placeholder=h.input.placeholder,h.mobileFormatStr="datetime-local"===e?"Y-m-d\\TH:i:S":"date"===e?"Y-m-d":"H:i:S",h.selectedDates.length>0&&(h.mobileInput.defaultValue=h.mobileInput.value=h.formatDate(h.selectedDates[0],h.mobileFormatStr)),h.config.minDate&&(h.mobileInput.min=h.formatDate(h.config.minDate,"Y-m-d")),h.config.maxDate&&(h.mobileInput.max=h.formatDate(h.config.maxDate,"Y-m-d")),h.input.type="hidden",void 0!==h.altInput&&(h.altInput.type="hidden");try{h.input.parentNode&&h.input.parentNode.insertBefore(h.mobileInput,h.input.nextSibling)}catch(e){}O(h.mobileInput,"change",(function(e){h.setDate(e.target.value,!1,h.mobileFormatStr),fe("onChange"),fe("onClose")}))}();else{var e=r(te,50);h._debouncedChange=r(F,300),h.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&O(h.daysContainer,"mouseover",(function(e){"range"===h.config.mode&&ee(e.target)})),O(window.document.body,"keydown",X),h.config.inline||h.config.static||O(window,"resize",e),void 0!==window.ontouchstart?O(window.document,"touchstart",G):O(window.document,"mousedown",_(G)),O(window.document,"focus",G,{capture:!0}),!0===h.config.clickOpens&&(O(h._input,"focus",h.open),O(h._input,"mousedown",_(h.open))),void 0!==h.daysContainer&&(O(h.monthNav,"mousedown",_(De)),O(h.monthNav,["keyup","increment"],S),O(h.daysContainer,"mousedown",_(ce))),void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&(O(h.timeContainer,["increment"],x),O(h.timeContainer,"blur",x,{capture:!0}),O(h.timeContainer,"mousedown",_(P)),O([h.hourElement,h.minuteElement],["focus","click"],(function(e){return e.target.select()})),void 0!==h.secondElement&&O(h.secondElement,"focus",(function(){return h.secondElement&&h.secondElement.select()})),void 0!==h.amPM&&O(h.amPM,"mousedown",_((function(e){x(e),F()}))))}}(),(h.selectedDates.length||h.config.noCalendar)&&(h.config.enableTime&&T(h.config.noCalendar?h.latestSelectedDateObj||h.config.minDate:void 0),ve(!1)),M(),h.showTimeInput=h.selectedDates.length>0||h.config.noCalendar;var a=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!h.isMobile&&a&&oe(),fe("onReady")}(),h}function M(e,t){for(var n=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;i<n.length;i++){var o=n[i];try{if(null!==o.getAttribute("data-fp-omit"))continue;void 0!==o._flatpickr&&(o._flatpickr.destroy(),o._flatpickr=void 0),o._flatpickr=C(o,t||{}),a.push(o._flatpickr)}catch(e){console.error(e)}}return 1===a.length?a[0]:a}"function"!=typeof Object.assign&&(Object.assign=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];if(!e)throw TypeError("Cannot convert undefined or null to object");for(var a=function(t){t&&Object.keys(t).forEach((function(n){return e[n]=t[n]}))},i=0,o=t;i<o.length;i++){var r=o[i];a(r)}return e}),"undefined"!=typeof HTMLElement&&"undefined"!=typeof HTMLCollection&&"undefined"!=typeof NodeList&&(HTMLCollection.prototype.flatpickr=NodeList.prototype.flatpickr=function(e){return M(this,e)},HTMLElement.prototype.flatpickr=function(e){return M([this],e)});var y=function(e,t){return"string"==typeof e?M(window.document.querySelectorAll(e),t):e instanceof Node?M([e],t):M(e,t)};return y.defaultConfig={},y.l10ns={en:e({},a),default:e({},a)},y.localize=function(t){y.l10ns.default=e({},y.l10ns.default,t)},y.setDefaults=function(t){y.defaultConfig=e({},y.defaultConfig,t)},y.parseDate=D({}),y.formatDate=v({}),y.compareDates=w,"undefined"!=typeof jQuery&&void 0!==jQuery.fn&&(jQuery.fn.flatpickr=function(e){return M(this,e)}),Date.prototype.fp_incr=function(e){return new Date(this.getFullYear(),this.getMonth(),this.getDate()+("string"==typeof e?parseInt(e,10):e))},"undefined"!=typeof window&&(window.flatpickr=y),y},"object"==typeof n&&void 0!==t?t.exports=i():"function"==typeof define&&define.amd?define(i):(a=a||self).flatpickr=i()},n 421: function _(n,t,e){Object.defineProperty(e,"__esModule",{value:!0});e.default=’\n.flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n background: #fff;\n -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);\n box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #e6e6e6;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: \’\’;\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.rightMost:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #e6e6e6;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #fff;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #e6e6e6;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #fff;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n background: transparent;\n color: rgba(0, 0, 0, 0.9);\n fill: rgba(0, 0, 0, 0.9);\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: rgba(0, 0, 0, 0.9);\n fill: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n /\n /*rtl:begin:ignore/\n /\n */\n left: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n /\n /*rtl:begin:ignore/\n /\n */\n right: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #959ea9;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(57, 57, 57, 0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0, 0, 0, 0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0, 0, 0, 0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: "";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(57, 57, 57, 0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(57, 57, 57, 0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(0, 0, 0, 0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: rgba(0, 0, 0, 0.9);\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(0, 0, 0, 0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: transparent;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: transparent;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: transparent;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: transparent;\n color: rgba(0, 0, 0, 0.54);\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #e6e6e6;\n box-shadow: -1px 0 0 #e6e6e6;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #393939;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e6e6e6;\n border-color: #e6e6e6;\n}\n.flatpickr-day.today {\n border-color: #959ea9;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #959ea9;\n background: #959ea9;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #569ff7;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #569ff7;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #569ff7;\n box-shadow: -10px 0 0 #569ff7;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(57, 57, 57, 0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(57, 57, 57, 0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;\n box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n -webkit-box-shadow: 1px 0 0 #e6e6e6;\n box-shadow: 1px 0 0 #e6e6e6;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(57, 57, 57, 0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-time:after {\n content: "";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #393939;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #393939;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #393939;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #393939;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eee;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n.flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);\n box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #eceef1;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-innerContainer {\n border-bottom: 0;\n}\n.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {\n border: 1px solid #eceef1;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: \’\’;\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.rightMost:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n border-radius: 5px 5px 0 0;\n background: #eceef1;\n color: #5a6171;\n fill: #5a6171;\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: #5a6171;\n fill: #5a6171;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n /\n /*rtl:begin:ignore/\n /\n */\n left: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n /\n /*rtl:begin:ignore/\n /\n */\n right: 0;\n /\n /rtl:end:ignore/\n /\n */\n}\n/\n /rtl:begin:ignore/\n/\n /*rtl:end:ignore/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #bbb;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(72, 72, 72, 0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0, 0, 0, 0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0, 0, 0, 0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: "";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(72, 72, 72, 0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(72, 72, 72, 0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(90, 97, 113, 0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: #5a6171;\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: #5a6171;\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(90, 97, 113, 0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: #eceef1;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: #eceef1;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: #eceef1;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: #eceef1;\n color: #5a6171;\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n border-left: 1px solid #eceef1;\n border-right: 1px solid #eceef1;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #eceef1;\n box-shadow: -1px 0 0 #eceef1;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #484848;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e2e2e2;\n border-color: #e2e2e2;\n}\n.flatpickr-day.today {\n border-color: #bbb;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #bbb;\n background: #bbb;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #ff5a5f;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #ff5a5f;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #ff5a5f;\n box-shadow: -10px 0 0 #ff5a5f;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(72, 72, 72, 0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(72, 72, 72, 0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n border-left: 1px solid #eceef1;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(72, 72, 72, 0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n background: #fff;\n border-bottom: 1px solid #eceef1;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n background: #fff;\n border-radius: 0 0 5px 5px;\n}\n.flatpickr-time:after {\n content: "";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #484848;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #484848;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #484848;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #484848;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eaeaea;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\nspan.flatpickr-day.selected {\n font-weight: bold;\n}\n’},n 422: function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e(1).__importDefault(e(186)),r=e(423);class n extends r.AbstractRangeSliderView{}a.DateRangeSliderView=n,n.__name__="DateRangeSliderView";class d extends r.AbstractSlider{constructor(e){super(e),this.behaviour="drag",this.connected=[!1,!0,!1]}static init_DateRangeSlider(){this.prototype.default_view=n,this.override({format:"%d %b %Y"})}_formatter(e,t){return i.default(e,t)}}a.DateRangeSlider=d,d.__name__="DateRangeSlider",d.init_DateRangeSlider()},n 423: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const s=t(1),l=s.__importStar(t(424)),r=t(72),o=t(9),n=t(405),a=t(131),d=t(425),_=t(412),h=s.__importDefault(t(426)),c=s.__importDefault(t(427));class u extends n.ControlView{controls(){yield this.slider_el}get noUiSlider(){return this.slider_el.noUiSlider}connect_signals(){super.connect_signals();const{direction:t,orientation:e,tooltips:i}=this.model.properties;this.on_change([t,e,i],()=>this.render());const{start:s,end:l,value:r,step:o,title:n}=this.model.properties;this.on_change([s,l,r,o],()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s})});const{bar_color:a}=this.model.properties;this.on_change(a,()=>{this._set_bar_color()});const{show_value:d}=this.model.properties;this.on_change([r,n,d],()=>this._update_title())}styles(){return[…super.styles(),h.default,c.default]}_update_title(){r.empty(this.title_el);const t=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=t?"none":"",!t&&(0!=this.model.title.length&&(this.title_el.textContent=this.model.title+": "),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map(t=>this.model.pretty(t)).join(" .. ");this.title_el.appendChild(r.span({class:d.bk_slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(".noUi-connect").style.backgroundColor=this.model.bar_color}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let n;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};n=o.repeat(t,i.length)}else n=!1;if(null==this.slider_el){this.slider_el=r.div(),l.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:n,orientation:this.model.orientation,direction:this.model.direction}),this.noUiSlider.on("slide",(t,e,i)=>this._slide(i)),this.noUiSlider.on("change",(t,e,i)=>this._change(i));const o=(t,e)=>{if(!n)return;this.slider_el.querySelectorAll(".noUi-handle")[t].querySelector(".noUi-tooltip").style.display=e?"block":""};this.noUiSlider.on("start",(t,e)=>o(e,!0)),this.noUiSlider.on("end",(t,e)=>o(e,!1))}else this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s});this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute("disabled","true"):this.slider_el.removeAttribute("disabled"),this.title_el=r.div({class:d.bk_slider_title}),this._update_title(),this.group_el=r.div({class:_.bk_input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){this.model.value=this._calc_from(t),this.model.value_throttled=this.model.value}}u.__name__="AbstractBaseSliderView";class m extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=m,m.__name__="AbstractSliderView";class p extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=p,p.__name__="AbstractRangeSliderView";class b extends n.Control{constructor(t){super(t),this.connected=!1}static init_AbstractSlider(){this.define(({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:r,Enum:o,Ref:n})=>({title:[s,""],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[r(s,n(a.TickFormatter))],direction:[o("ltr","rtl"),"ltr"],tooltips:[e,!0],bar_color:[l,"#e6e6e6"]}))}_formatter(t,e){return""+t}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=b,b.__name__="AbstractSlider",b.init_AbstractSlider()},n 424: function _(t,e,r){n /! nouislider - 14.6.0 - 6/27/2020 /n var n;n=function(){"use strict";var t="14.6.0";function e(t){t.parentElement.removeChild(t)}function r(t){return null!=t}function n(t){t.preventDefault()}function i(t){return"number"==typeof t&&!isNaN(t)&&isFinite(t)}function o(t,e,r){r>0&&(u(t,e),setTimeout((function(){c(t,e)}),r))}function s(t){return Math.max(Math.min(t,100),0)}function a(t){return Array.isArray(t)?t:[t]}function l(t){var e=(t=String(t)).split(".");return e.length>1?e[1].length:0}function u(t,e){t.classList&&!/\s/.test(e)?t.classList.add(e):t.className+=" "+e}function c(t,e){t.classList&&!/\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\b)"+e.split(" ").join("|")+"(\\b|$)","gi")," ")}function p(t){var e=void 0!==window.pageXOffset,r="CSS1Compat"===(t.compatMode||"");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function f(t,e){return 100/(e-t)}function d(t,e,r){return 100*e/(t[r+1]-t[r])}function h(t,e){for(var r=1;t>=e[r];)r+=1;return r}function m(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=h(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return d(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/f(s,a)}function g(t,e,r,n){if(100===n)return n;var i=h(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}function v(t,e,r){var n;if("number"==typeof e&&(e=[e]),!Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘range’ contains invalid value.");if(!i(n="min"===t?0:"max"===t?100:parseFloat(t))||!i(e[0]))throw new Error("noUiSlider (14.6.0): ‘range’ value isn’t numeric.");r.xPct.push(n),r.xVal.push(e[0]),n?r.xSteps.push(!isNaN(e[1])&&e[1]):isNaN(e[1])||(r.xSteps[0]=e[1]),r.xHighestCompleteStep.push(0)}function b(t,e,r){if(e)if(r.xVal[t]!==r.xVal[t+1]){r.xSteps[t]=d([r.xVal[t],r.xVal[t+1]],e,0)/f(r.xPct[t],r.xPct[t+1]);var n=(r.xVal[t+1]-r.xVal[t])/r.xNumSteps[t],i=Math.ceil(Number(n.toFixed(3))-1),o=r.xVal[t]+r.xNumSteps[t]*i;r.xHighestCompleteStep[t]=o}else r.xSteps[t]=r.xHighestCompleteStep[t]=r.xVal[t]}function x(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.xHighestCompleteStep=[],this.snap=e;var i=[];for(n in t)t.hasOwnProperty(n)&&i.push([t[n],n]);for(i.length&&"object"==typeof i[0][0]?i.sort((function(t,e){return t[0][0]-e[0][0]})):i.sort((function(t,e){return t[0]-e[0]})),n=0;n<i.length;n++)v(i[n][1],i[n][0],this);for(this.xNumSteps=this.xSteps.slice(0),n=0;n<this.xNumSteps.length;n++)b(n,this.xNumSteps[n],this)}x.prototype.getDistance=function(t){var e,r=[];for(e=0;e<this.xNumSteps.length-1;e++){var n=this.xNumSteps[e];if(n&&t/n%1!=0)throw new Error("noUiSlider (14.6.0): ‘limit’, ‘margin’ and ‘padding’ of "+this.xPct[e]+"% range must be divisible by step.");r[e]=d(this.xVal,t,e)}return r},x.prototype.getAbsoluteDistance=function(t,e,r){var n,i=0;if(t<this.xPct[this.xPct.length-1])for(;t>this.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++;var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c–):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},x.prototype.toStepping=function(t){return t=m(this.xVal,this.xPct,t)},x.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=h(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*f(s,e[n]))}(this.xVal,this.xPct,t)},x.prototype.getStep=function(t){return t=g(this.xPct,this.xSteps,this.snap,t)},x.prototype.getDefaultStep=function(t,e,r){var n=h(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},x.prototype.getNearbySteps=function(t){var e=h(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},x.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(l);return Math.max.apply(null,t)},x.prototype.convert=function(t){return this.getStep(this.toStepping(t))};var S={to:function(t){return void 0!==t&&t.toFixed(2)},from:Number},w={target:"target",base:"base",origin:"origin",handle:"handle",handleLower:"handle-lower",handleUpper:"handle-upper",touchArea:"touch-area",horizontal:"horizontal",vertical:"vertical",background:"background",connect:"connect",connects:"connects",ltr:"ltr",rtl:"rtl",textDirectionLtr:"txt-dir-ltr",textDirectionRtl:"txt-dir-rtl",draggable:"draggable",drag:"state-drag",tap:"state-tap",active:"active",tooltip:"tooltip",pips:"pips",pipsHorizontal:"pips-horizontal",pipsVertical:"pips-vertical",marker:"marker",markerHorizontal:"marker-horizontal",markerVertical:"marker-vertical",markerNormal:"marker-normal",markerLarge:"marker-large",markerSub:"marker-sub",value:"value",valueHorizontal:"value-horizontal",valueVertical:"value-vertical",valueNormal:"value-normal",valueLarge:"value-large",valueSub:"value-sub"};function y(t){if(function(t){return"object"==typeof t&&"function"==typeof t.to&&"function"==typeof t.from}(t))return!0;throw new Error("noUiSlider (14.6.0): ‘format’ requires ‘to’ and ‘from’ methods.")}function E(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘step’ is not numeric.");t.singleStep=e}function C(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘keyboardPageMultiplier’ is not numeric.");t.keyboardPageMultiplier=e}function P(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘keyboardDefaultStep’ is not numeric.");t.keyboardDefaultStep=e}function N(t,e){if("object"!=typeof e||Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘range’ is not an object.");if(void 0===e.min||void 0===e.max)throw new Error("noUiSlider (14.6.0): Missing ‘min’ or ‘max’ in ‘range’.");if(e.min===e.max)throw new Error("noUiSlider (14.6.0): ‘range’ ‘min’ and ‘max’ cannot be equal.");t.spectrum=new x(e,t.snap,t.singleStep)}function k(t,e){if(e=a(e),!Array.isArray(e)||!e.length)throw new Error("noUiSlider (14.6.0): ‘start’ option is incorrect.");t.handles=e.length,t.start=e}function U(t,e){if(t.snap=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘snap’ option must be a boolean.")}function A(t,e){if(t.animate=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘animate’ option must be a boolean.")}function V(t,e){if(t.animationDuration=e,"number"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘animationDuration’ option must be a number.")}function D(t,e){var r,n=[!1];if("lower"===e?e=[!0,!1]:"upper"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r<t.handles;r++)n.push(e);n.push(!1)}else{if(!Array.isArray(e)||!e.length||e.length!==t.handles+1)throw new Error("noUiSlider (14.6.0): ‘connect’ option doesn’t match handle count.");n=e}t.connect=n}function M(t,e){switch(e){case"horizontal":t.ort=0;break;case"vertical":t.ort=1;break;default:throw new Error("noUiSlider (14.6.0): ‘orientation’ option is invalid.")}}function O(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘margin’ option must be numeric.");0!==e&&(t.margin=t.spectrum.getDistance(e))}function L(t,e){if(!i(e))throw new Error("noUiSlider (14.6.0): ‘limit’ option must be numeric.");if(t.limit=t.spectrum.getDistance(e),!t.limit||t.handles<2)throw new Error("noUiSlider (14.6.0): ‘limit’ option is only supported on linear sliders with 2 or more handles.")}function z(t,e){var r;if(!i(e)&&!Array.isArray(e))throw new Error("noUiSlider (14.6.0): ‘padding’ option must be numeric or array of exactly 2 numbers.");if(Array.isArray(e)&&2!==e.length&&!i(e[0])&&!i(e[1]))throw new Error("noUiSlider (14.6.0): ‘padding’ option must be numeric or array of exactly 2 numbers.");if(0!==e){for(Array.isArray(e)||(e=[e,e]),t.padding=[t.spectrum.getDistance(e[0]),t.spectrum.getDistance(e[1])],r=0;r<t.spectrum.xNumSteps.length-1;r++)if(t.padding[0][r]<0||t.padding[1][r]<0)throw new Error("noUiSlider (14.6.0): ‘padding’ option must be a positive number(s).");var n=e[0]+e[1],o=t.spectrum.xVal[0];if(n/(t.spectrum.xVal[t.spectrum.xVal.length-1]-o)>1)throw new Error("noUiSlider (14.6.0): ‘padding’ option must not exceed 100% of the range.")}}function H(t,e){switch(e){case"ltr":t.dir=0;break;case"rtl":t.dir=1;break;default:throw new Error("noUiSlider (14.6.0): ‘direction’ option was not recognized.")}}function j(t,e){if("string"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘behaviour’ must be a string containing options.");var r=e.indexOf("tap")>=0,n=e.indexOf("drag")>=0,i=e.indexOf("fixed")>=0,o=e.indexOf("snap")>=0,s=e.indexOf("hover")>=0,a=e.indexOf("unconstrained")>=0;if(i){if(2!==t.handles)throw new Error("noUiSlider (14.6.0): ‘fixed’ behaviour must be used with 2 handles");O(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error("noUiSlider (14.6.0): ‘unconstrained’ behaviour cannot be used with margin or limit");t.events={tap:r||o,drag:n,fixed:i,snap:o,hover:s,unconstrained:a}}function F(t,e){if(!1!==e)if(!0===e){t.tooltips=[];for(var r=0;r<t.handles;r++)t.tooltips.push(!0)}else{if(t.tooltips=a(e),t.tooltips.length!==t.handles)throw new Error("noUiSlider (14.6.0): must pass a formatter for all handles.");t.tooltips.forEach((function(t){if("boolean"!=typeof t&&("object"!=typeof t||"function"!=typeof t.to))throw new Error("noUiSlider (14.6.0): ‘tooltips’ must be passed a formatter or ‘false’.")}))}}function R(t,e){t.ariaFormat=e,y(e)}function T(t,e){t.format=e,y(e)}function B(t,e){if(t.keyboardSupport=e,"boolean"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘keyboardSupport’ option must be a boolean.")}function q(t,e){t.documentElement=e}function X(t,e){if("string"!=typeof e&&!1!==e)throw new Error("noUiSlider (14.6.0): ‘cssPrefix’ must be a string or `false`.");t.cssPrefix=e}function _(t,e){if("object"!=typeof e)throw new Error("noUiSlider (14.6.0): ‘cssClasses’ must be an object.");if("string"==typeof t.cssPrefix)for(var r in t.cssClasses={},e)e.hasOwnProperty(r)&&(t.cssClasses[r]=t.cssPrefix+e[r]);else t.cssClasses=e}function Y(t){var e={margin:0,limit:0,padding:0,animate:!0,animationDuration:300,ariaFormat:S,format:S},n={step:{r:!1,t:E},keyboardPageMultiplier:{r:!1,t:C},keyboardDefaultStep:{r:!1,t:P},start:{r:!0,t:k},connect:{r:!0,t:D},direction:{r:!0,t:H},snap:{r:!1,t:U},animate:{r:!1,t:A},animationDuration:{r:!1,t:V},range:{r:!0,t:N},orientation:{r:!1,t:M},margin:{r:!1,t:O},limit:{r:!1,t:L},padding:{r:!1,t:z},behaviour:{r:!0,t:j},ariaFormat:{r:!1,t:R},format:{r:!1,t:T},tooltips:{r:!1,t:F},keyboardSupport:{r:!0,t:B},documentElement:{r:!1,t:q},cssPrefix:{r:!0,t:X},cssClasses:{r:!0,t:_}},i={connect:!1,direction:"ltr",behaviour:"tap",orientation:"horizontal",keyboardSupport:!0,cssPrefix:"noUi-",cssClasses:w,keyboardPageMultiplier:5,keyboardDefaultStep:10};t.format&&!t.ariaFormat&&(t.ariaFormat=t.format),Object.keys(n).forEach((function(o){if(!r(t[o])&&void 0===i[o]){if(n[o].r)throw new Error("noUiSlider (14.6.0): ‘"+o+"’ is required.");return!0}n[o].t(e,r(t[o])?t[o]:i[o])})),e.pips=t.pips;var o=document.createElement("div"),s=void 0!==o.style.msTransform,a=void 0!==o.style.transform;return e.transformRule=a?"transform":s?"msTransform":"webkitTransform",e.style=[["left","top"],["right","bottom"]][e.dir][e.ort],e}function I(t,r,i){var l,f,d,h,m,g,v,b,x=window.navigator.pointerEnabled?{start:"pointerdown",move:"pointermove",end:"pointerup"}:window.navigator.msPointerEnabled?{start:"MSPointerDown",move:"MSPointerMove",end:"MSPointerUp"}:{start:"mousedown touchstart",move:"mousemove touchmove",end:"mouseup touchend"},S=window.CSS&&CSS.supports&&CSS.supports("touch-action","none")&&function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("test",null,e)}catch(t){}return t}(),w=t,y=r.spectrum,E=[],C=[],P=[],N=0,k={},U=t.ownerDocument,A=r.documentElement||U.documentElement,V=U.body,D="rtl"===U.dir||1===r.ort?0:100;function M(t,e){var r=U.createElement("div");return e&&u(r,e),t.appendChild(r),r}function O(t,e){var n=M(t,r.cssClasses.origin),i=M(n,r.cssClasses.handle);return M(i,r.cssClasses.touchArea),i.setAttribute("data-handle",e),r.keyboardSupport&&(i.setAttribute("tabindex","0"),i.addEventListener("keydown",(function(t){return function(t,e){if(H()||j(e))return!1;var n=["Left","Right"],i=["Down","Up"],o=["PageDown","PageUp"],s=["Home","End"];r.dir&&!r.ort?n.reverse():r.ort&&!r.dir&&(i.reverse(),o.reverse());var a,l=t.key.replace("Arrow",""),u=l===o[0],c=l===o[1],p=l===i[0]||l===n[0]||u,f=l===i[1]||l===n[1]||c,d=l===s[0],h=l===s[1];if(!(p||f||d||h))return!0;if(t.preventDefault(),f||p){var m=r.keyboardPageMultiplier,g=p?0:1,v=ft(e)[g];if(null===v)return!1;!1===v&&(v=y.getDefaultStep(C[e],p,r.keyboardDefaultStep)),(c||u)&&(v*=m),v=Math.max(v,1e-7),v*=p?-1:1,a=E[e]+v}else a=h?r.spectrum.xVal[r.spectrum.xVal.length-1]:r.spectrum.xVal[0];return at(e,y.toStepping(a),!0,!0),et("slide",e),et("update",e),et("change",e),et("set",e),!1}(t,e)}))),i.setAttribute("role","slider"),i.setAttribute("aria-orientation",r.ort?"vertical":"horizontal"),0===e?u(i,r.cssClasses.handleLower):e===r.handles-1&&u(i,r.cssClasses.handleUpper),n}function L(t,e){return!!e&&M(t,r.cssClasses.connect)}function z(t,e){return!!r.tooltips[e]&&M(t.firstChild,r.cssClasses.tooltip)}function H(){return w.hasAttribute("disabled")}function j(t){return f[t].hasAttribute("disabled")}function F(){m&&(tt("update.tooltips"),m.forEach((function(t){t&&e(t)})),m=null)}function R(){F(),m=f.map(z),Z("update.tooltips",(function(t,e,n){if(m[e]){var i=t[e];!0!==r.tooltips[e]&&(i=r.tooltips[e].to(n[e])),m[e].innerHTML=i}}))}function T(t,e,n){var i=U.createElement("div"),o=[];o[0]=r.cssClasses.valueNormal,o[1]=r.cssClasses.valueLarge,o[2]=r.cssClasses.valueSub;var s=[];s[0]=r.cssClasses.markerNormal,s[1]=r.cssClasses.markerLarge,s[2]=r.cssClasses.markerSub;var a=[r.cssClasses.valueHorizontal,r.cssClasses.valueVertical],l=[r.cssClasses.markerHorizontal,r.cssClasses.markerVertical];function c(t,e){var n=e===r.cssClasses.value,i=n?o:s;return e+" "+(n?a:l)[r.ort]+" "+i[t]}return u(i,r.cssClasses.pips),u(i,0===r.ort?r.cssClasses.pipsHorizontal:r.cssClasses.pipsVertical),Object.keys(t).forEach((function(o){!function(t,o,s){if(-1!==(s=e?e(o,s):s)){var a=M(i,!1);a.className=c(s,r.cssClasses.marker),a.style[r.style]=t+"%",s>0&&((a=M(i,!1)).className=c(s,r.cssClasses.value),a.setAttribute("data-value",o),a.style[r.style]=t+"%",a.innerHTML=n.to(o))}}(o,t[o][0],t[o][1])})),i}function B(){h&&(e(h),h=null)}function q(t){B();var e=t.mode,r=t.density||1,n=t.filter||!1,i=function(t,e,r){if("range"===t||"steps"===t)return y.xVal;if("count"===t){if(e<2)throw new Error("noUiSlider (14.6.0): ‘values’ (>= 2) required for mode ‘count’.");var n=e-1,i=100/n;for(e=[];n–;)e[n]=n*i;e.push(100),t="positions"}return"positions"===t?e.map((function(t){return y.fromStepping(r?y.getStep(t):t)})):"values"===t?r?e.map((function(t){return y.fromStepping(y.getStep(y.toStepping(t)))})):e:void 0}(e,t.values||!1,t.stepped||!1),o=function(t,e,r){var n,i={},o=y.xVal[0],s=y.xVal[y.xVal.length-1],a=!1,l=!1,u=0;return n=r.slice().sort((function(t,e){return t-e})),(r=n.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(r.unshift(o),a=!0),r[r.length-1]!==s&&(r.push(s),l=!0),r.forEach((function(n,o){var s,c,p,f,d,h,m,g,v,b,x=n,S=r[o+1],w="steps"===e;if(w&&(s=y.xNumSteps[o]),s||(s=S-x),!1!==x&&void 0!==S)for(s=Math.max(s,1e-7),c=x;c<=S;c=(c+s).toFixed(7)/1){for(g=(d=(f=y.toStepping(c))-u)/t,b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[y.fromStepping(h),0];m=r.indexOf(c)>-1?1:w?2:0,!o&&a&&c!==S&&(m=0),c===S&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}(r,e,i),s=t.format||{to:Math.round};return h=w.appendChild(T(o,n,s))}function X(){var t=l.getBoundingClientRect(),e="offset"+["Width","Height"][r.ort];return 0===r.ort?t.width||l[e]:t.height||l[e]}function _(t,e,n,i){var o=function(o){return!!(o=function(t,e,r){var n,i,o=0===t.type.indexOf("touch"),s=0===t.type.indexOf("mouse"),a=0===t.type.indexOf("pointer");if(0===t.type.indexOf("MSPointer")&&(a=!0),o){var l=function(t){return t.target===r||r.contains(t.target)||t.target.shadowRoot&&t.target.shadowRoot.contains(r)};if("touchstart"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;n=u[0].pageX,i=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;n=c.pageX,i=c.pageY}}return e=e||p(U),(s||a)&&(n=t.clientX+e.x,i=t.clientY+e.y),t.pageOffset=e,t.points=[n,i],t.cursor=s||a,t}(o,i.pageOffset,i.target||e))&&!(H()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp("\\b"+a+"\\b").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==o.buttons&&o.buttons>1)&&(!i.hover||!o.buttons)&&(S||o.preventDefault(),o.calcPoint=o.points[r.ort],void n(o,i)));var s,a},s=[];return t.split(" ").forEach((function(t){e.addEventListener(t,o,!!S&&{passive:!0}),s.push([t,o])})),s}function I(t){var e,n,i,o,a,u,c=100*(t-(e=l,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,a=o.documentElement,u=p(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(u.x=0),n?i.top+u.y-a.clientTop:i.left+u.x-a.clientLeft))/X();return c=s(c),r.dir?100-c:c}function W(t,e){"mouseout"===t.type&&"HTML"===t.target.nodeName&&null===t.relatedTarget&&G(t,e)}function $(t,e){if(-1===navigator.appVersion.indexOf("MSIE 9")&&0===t.buttons&&0!==e.buttonsProperty)return G(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);it(n>0,100*n/e.baseSize,e.locations,e.handleNumbers)}function G(t,e){e.handle&&(c(e.handle,r.cssClasses.active),N-=1),e.listeners.forEach((function(t){A.removeEventListener(t[0],t[1])})),0===N&&(c(w,r.cssClasses.drag),st(),t.cursor&&(V.style.cursor="",V.removeEventListener("selectstart",n))),e.handleNumbers.forEach((function(t){et("change",t),et("set",t),et("end",t)}))}function J(t,e){if(e.handleNumbers.some(j))return!1;var i;1===e.handleNumbers.length&&(i=f[e.handleNumbers[0]].children[0],N+=1,u(i,r.cssClasses.active)),t.stopPropagation();var o=[],s=_(x.move,A,$,{target:t.target,handle:i,listeners:o,startCalcPoint:t.calcPoint,baseSize:X(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:C.slice()}),a=_(x.end,A,G,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers}),l=_("mouseout",A,W,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers});o.push.apply(o,s.concat(a,l)),t.cursor&&(V.style.cursor=getComputedStyle(t.target).cursor,f.length>1&&u(w,r.cssClasses.drag),V.addEventListener("selectstart",n,!1)),e.handleNumbers.forEach((function(t){et("start",t)}))}function K(t){if(!t.buttons&&!t.touches)return!1;t.stopPropagation();var e=I(t.calcPoint),n=function(t){var e=100,r=!1;return f.forEach((function(n,i){if(!j(i)){var o=C[i],s=Math.abs(o-t);(s<e||s<=e&&t>o||100===s&&100===e)&&(r=i,e=s)}})),r}(e);if(!1===n)return!1;r.events.snap||o(w,r.cssClasses.tap,r.animationDuration),at(n,e,!0,!0),st(),et("slide",n,!0),et("update",n,!0),et("change",n,!0),et("set",n,!0),r.events.snap&&J(t,{handleNumbers:[n]})}function Q(t){var e=I(t.calcPoint),r=y.getStep(e),n=y.fromStepping(r);Object.keys(k).forEach((function(t){"hover"===t.split(".")[0]&&k[t].forEach((function(t){t.call(g,n)}))}))}function Z(t,e){k[t]=k[t]||[],k[t].push(e),"update"===t.split(".")[0]&&f.forEach((function(t,e){et("update",e)}))}function tt(t){var e=t&&t.split(".")[0],r=e&&t.substring(e.length);Object.keys(k).forEach((function(t){var n=t.split(".")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||delete k[t]}))}function et(t,e,n){Object.keys(k).forEach((function(i){var o=i.split(".")[0];t===o&&k[i].forEach((function(t){t.call(g,E.map(r.format.to),e,E.slice(),n||!1,C.slice(),g)}))}))}function rt(t,e,n,i,o,a){var l;return f.length>1&&!r.events.unconstrained&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.margin,0),n=Math.max(n,l)),o&&e<f.length-1&&(l=y.getAbsoluteDistance(t[e+1],r.margin,1),n=Math.min(n,l))),f.length>1&&r.limit&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.limit,0),n=Math.min(n,l)),o&&e<f.length-1&&(l=y.getAbsoluteDistance(t[e+1],r.limit,1),n=Math.max(n,l))),r.padding&&(0===e&&(l=y.getAbsoluteDistance(0,r.padding[0],0),n=Math.max(n,l)),e===f.length-1&&(l=y.getAbsoluteDistance(100,r.padding[1],1),n=Math.min(n,l))),!((n=s(n=y.getStep(n)))===t[e]&&!a)&&n}function nt(t,e){var n=r.ort;return(n?e:t)+", "+(n?t:e)}function it(t,e,r,n){var i=r.slice(),o=[!t,t],s=[t,!t];n=n.slice(),t&&n.reverse(),n.length>1?n.forEach((function(t,r){var n=rt(i,t,i[t]+e,o[r],s[r],!1);!1===n?e=0:(e=n-i[t],i[t]=n)})):o=s=[!0];var a=!1;n.forEach((function(t,n){a=at(t,r[t]+e,o[n],s[n])||a})),a&&n.forEach((function(t){et("update",t),et("slide",t)}))}function ot(t,e){return r.dir?100-t-e:t}function st(){P.forEach((function(t){var e=C[t]>50?-1:1,r=3+(f.length+e*t);f[t].style.zIndex=r}))}function at(t,e,n,i){return!1!==(e=rt(C,t,e,n,i,!1))&&(function(t,e){C[t]=e,E[t]=y.fromStepping(e);var n="translate("+nt(10*(ot(e,0)-D)+"%","0")+")";f[t].style[r.transformRule]=n,lt(t),lt(t+1)}(t,e),!0)}function lt(t){if(d[t]){var e=0,n=100;0!==t&&(e=C[t-1]),t!==d.length-1&&(n=C[t]);var i=n-e,o="translate("+nt(ot(e,i)+"%","0")+")",s="scale("+nt(i/100,"1")+")";d[t].style[r.transformRule]=o+" "+s}}function ut(t,e){return null===t||!1===t||void 0===t?C[e]:("number"==typeof t&&(t=String(t)),t=r.format.from(t),!1===(t=y.toStepping(t))||isNaN(t)?C[e]:t)}function ct(t,e){var n=a(t),i=void 0===C[0];e=void 0===e||!!e,r.animate&&!i&&o(w,r.cssClasses.tap,r.animationDuration),P.forEach((function(t){at(t,ut(n[t],t),!0,!1)}));for(var s=1===P.length?0:1;s<P.length;++s)P.forEach((function(t){at(t,C[t],!0,!0)}));st(),P.forEach((function(t){et("update",t),null!==n[t]&&e&&et("set",t)}))}function pt(){var t=E.map(r.format.to);return 1===t.length?t[0]:t}function ft(t){var e=C[t],n=y.getNearbySteps(e),i=E[t],o=n.thisStep.step,s=null;if(r.snap)return[i-n.stepBefore.startValue||null,n.stepAfter.startValue-i||null];!1!==o&&i+o>n.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=y.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}return u(v=w,r.cssClasses.target),0===r.dir?u(v,r.cssClasses.ltr):u(v,r.cssClasses.rtl),0===r.ort?u(v,r.cssClasses.horizontal):u(v,r.cssClasses.vertical),u(v,"rtl"===getComputedStyle(v).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),l=M(v,r.cssClasses.base),function(t,e){var n=M(e,r.cssClasses.connects);f=[],(d=[]).push(L(n,t[0]));for(var i=0;i<r.handles;i++)f.push(O(e,i)),P[i]=i,d.push(L(n,t[i+1]))}(r.connect,l),(b=r.events).fixed||f.forEach((function(t,e){_(x.start,t.children[0],J,{handleNumbers:[e]})})),b.tap&&_(x.start,l,K,{}),b.hover&&_(x.move,l,Q,{hover:!0}),b.drag&&d.forEach((function(t,e){if(!1!==t&&0!==e&&e!==d.length-1){var n=f[e-1],i=f[e],o=[t];u(t,r.cssClasses.draggable),b.fixed&&(o.push(n.children[0]),o.push(i.children[0])),o.forEach((function(t){_(x.start,t,J,{handles:[n,i],handleNumbers:[e-1,e]})}))}})),ct(r.start),r.pips&&q(r.pips),r.tooltips&&R(),Z("update",(function(t,e,n,i,o){P.forEach((function(t){var e=f[t],i=rt(C,t,0,!0,!0,!0),s=rt(C,t,100,!0,!0,!0),a=o[t],l=r.ariaFormat.to(n[t]);i=y.fromStepping(i).toFixed(1),s=y.fromStepping(s).toFixed(1),a=y.fromStepping(a).toFixed(1),e.children[0].setAttribute("aria-valuemin",i),e.children[0].setAttribute("aria-valuemax",s),e.children[0].setAttribute("aria-valuenow",a),e.children[0].setAttribute("aria-valuetext",l)}))})),g={destroy:function(){for(var t in r.cssClasses)r.cssClasses.hasOwnProperty(t)&&c(w,r.cssClasses[t]);for(;w.firstChild;)w.removeChild(w.firstChild);delete w.noUiSlider},steps:function(){return P.map(ft)},on:Z,off:tt,get:pt,set:ct,setHandle:function(t,e,r){if(!((t=Number(t))>=0&&t<P.length))throw new Error("noUiSlider (14.6.0): invalid handle number, got: "+t);at(t,ut(e,t),!0,!0),et("update",t),r&&et("set",t)},reset:function(t){ct(r.start,t)},__moveHandles:function(t,e,r){it(t,e,C,r)},options:i,updateOptions:function(t,e){var n=pt(),o=["margin","limit","padding","range","animate","snap","step","format","pips","tooltips"];o.forEach((function(e){void 0!==t[e]&&(i[e]=t[e])}));var s=Y(i);o.forEach((function(e){void 0!==t[e]&&(r[e]=s[e])})),y=s.spectrum,r.margin=s.margin,r.limit=s.limit,r.padding=s.padding,r.pips?q(r.pips):B(),r.tooltips?R():F(),C=[],ct(t.start||n,e)},target:w,removePips:B,removeTooltips:F,getTooltips:function(){return m},getOrigins:function(){return f},pips:q}}return{__spectrum:x,version:t,cssClasses:w,create:function(t,e){if(!t||!t.nodeName)throw new Error("noUiSlider (14.6.0): create requires a single element, got: "+t);if(t.noUiSlider)throw new Error("noUiSlider (14.6.0): Slider was already initialized.");var r=I(t,Y(e),e);return t.noUiSlider=r,r}}},"function"==typeof define&&define.amd?define([],n):"object"==typeof r?e.exports=n():window.noUiSlider=n()},n 425: function _(e,l,i){Object.defineProperty(i,"__esModule",{value:!0}),i.bk_slider_value="bk-slider-value",i.bk_slider_title="bk-slider-title"},n 426: function _(n,o,t){Object.defineProperty(t,"__esModule",{value:!0});t.default="\n.bk-root {\n /! nouislider - 14.6.0 - 6/27/2020 /\n / Functional styling;\n * These styles are required for noUiSlider to function.\n * You don’t need to change these rules to apply your design.\n /\n / Wrapper for all connect elements.\n /\n / Offset direction\n /\n / Give origins 0 height/width so they don’t interfere with clicking the\n * connect elements.\n /\n / Slider size and handle placement;\n /\n / Styling;\n * Giving the connect element a border radius causes issues with using transform: scale\n /\n / Handles and cursors;\n /\n / Handle stripes;\n /\n / Disabled state;\n /\n / Base;\n \n */\n / Values;\n \n */\n / Markings;\n \n */\n / Horizontal layout;\n \n */\n / Vertical layout;\n \n */\n}\n.bk-root .noUi-target,\n.bk-root .noUi-target * {\n -webkit-touch-callout: none;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n -webkit-user-select: none;\n -ms-touch-action: none;\n touch-action: none;\n -ms-user-select: none;\n -moz-user-select: none;\n user-select: none;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.bk-root .noUi-target {\n position: relative;\n}\n.bk-root .noUi-base,\n.bk-root .noUi-connects {\n width: 100%;\n height: 100%;\n position: relative;\n z-index: 1;\n}\n.bk-root .noUi-connects {\n overflow: hidden;\n z-index: 0;\n}\n.bk-root .noUi-connect,\n.bk-root .noUi-origin {\n will-change: transform;\n position: absolute;\n z-index: 1;\n top: 0;\n right: 0;\n -ms-transform-origin: 0 0;\n -webkit-transform-origin: 0 0;\n -webkit-transform-style: preserve-3d;\n transform-origin: 0 0;\n transform-style: flat;\n}\n.bk-root .noUi-connect {\n height: 100%;\n width: 100%;\n}\n.bk-root .noUi-origin {\n height: 10%;\n width: 10%;\n}\n.bk-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {\n left: 0;\n right: auto;\n}\n.bk-root .noUi-vertical .noUi-origin {\n width: 0;\n}\n.bk-root .noUi-horizontal .noUi-origin {\n height: 0;\n}\n.bk-root .noUi-handle {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n position: absolute;\n}\n.bk-root .noUi-touch-area {\n height: 100%;\n width: 100%;\n}\n.bk-root .noUi-state-tap .noUi-connect,\n.bk-root .noUi-state-tap .noUi-origin {\n -webkit-transition: transform 0.3s;\n transition: transform 0.3s;\n}\n.bk-root .noUi-state-drag * {\n cursor: inherit !important;\n}\n.bk-root .noUi-horizontal {\n height: 18px;\n}\n.bk-root .noUi-horizontal .noUi-handle {\n width: 34px;\n height: 28px;\n right: -17px;\n top: -6px;\n}\n.bk-root .noUi-vertical {\n width: 18px;\n}\n.bk-root .noUi-vertical .noUi-handle {\n width: 28px;\n height: 34px;\n right: -6px;\n top: -17px;\n}\n.bk-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {\n left: -17px;\n right: auto;\n}\n.bk-root .noUi-target {\n background: #FAFAFA;\n border-radius: 4px;\n border: 1px solid #D3D3D3;\n box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;\n}\n.bk-root .noUi-connects {\n border-radius: 3px;\n}\n.bk-root .noUi-connect {\n background: #3FB8AF;\n}\n.bk-root .noUi-draggable {\n cursor: ew-resize;\n}\n.bk-root .noUi-vertical .noUi-draggable {\n cursor: ns-resize;\n}\n.bk-root .noUi-handle {\n border: 1px solid #D9D9D9;\n border-radius: 3px;\n background: #FFF;\n cursor: default;\n box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;\n}\n.bk-root .noUi-active {\n box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;\n}\n.bk-root .noUi-handle:before,\n.bk-root .noUi-handle:after {\n content: \"\";\n display: block;\n position: absolute;\n height: 14px;\n width: 1px;\n background: #E8E7E6;\n left: 14px;\n top: 6px;\n}\n.bk-root .noUi-handle:after {\n left: 17px;\n}\n.bk-root .noUi-vertical .noUi-handle:before,\n.bk-root .noUi-vertical .noUi-handle:after {\n width: 14px;\n height: 1px;\n left: 6px;\n top: 14px;\n}\n.bk-root .noUi-vertical .noUi-handle:after {\n top: 17px;\n}\n.bk-root [disabled] .noUi-connect {\n background: #B8B8B8;\n}\n.bk-root [disabled].noUi-target,\n.bk-root [disabled].noUi-handle,\n.bk-root [disabled] .noUi-handle {\n cursor: not-allowed;\n}\n.bk-root .noUi-pips,\n.bk-root .noUi-pips * {\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n.bk-root .noUi-pips {\n position: absolute;\n color: #999;\n}\n.bk-root .noUi-value {\n position: absolute;\n white-space: nowrap;\n text-align: center;\n}\n.bk-root .noUi-value-sub {\n color: #ccc;\n font-size: 10px;\n}\n.bk-root .noUi-marker {\n position: absolute;\n background: #CCC;\n}\n.bk-root .noUi-marker-sub {\n background: #AAA;\n}\n.bk-root .noUi-marker-large {\n background: #AAA;\n}\n.bk-root .noUi-pips-horizontal {\n padding: 10px 0;\n height: 80px;\n top: 100%;\n left: 0;\n width: 100%;\n}\n.bk-root .noUi-value-horizontal {\n -webkit-transform: translate(-50%, 50%);\n transform: translate(-50%, 50%);\n}\n.bk-root .noUi-rtl .noUi-value-horizontal {\n -webkit-transform: translate(50%, 50%);\n transform: translate(50%, 50%);\n}\n.bk-root .noUi-marker-horizontal.noUi-marker {\n margin-left: -1px;\n width: 2px;\n height: 5px;\n}\n.bk-root .noUi-marker-horizontal.noUi-marker-sub {\n height: 10px;\n}\n.bk-root .noUi-marker-horizontal.noUi-marker-large {\n height: 15px;\n}\n.bk-root .noUi-pips-vertical {\n padding: 0 10px;\n height: 100%;\n top: 0;\n left: 100%;\n}\n.bk-root .noUi-value-vertical {\n -webkit-transform: translate(0, -50%);\n transform: translate(0, -50%);\n padding-left: 25px;\n}\n.bk-root .noUi-rtl .noUi-value-vertical {\n -webkit-transform: translate(0, 50%);\n transform: translate(0, 50%);\n}\n.bk-root .noUi-marker-vertical.noUi-marker {\n width: 5px;\n height: 2px;\n margin-top: -1px;\n}\n.bk-root .noUi-marker-vertical.noUi-marker-sub {\n width: 10px;\n}\n.bk-root .noUi-marker-vertical.noUi-marker-large {\n width: 15px;\n}\n.bk-root .noUi-tooltip {\n display: block;\n position: absolute;\n border: 1px solid #D9D9D9;\n border-radius: 3px;\n background: #fff;\n color: #000;\n padding: 5px;\n text-align: center;\n white-space: nowrap;\n}\n.bk-root .noUi-horizontal .noUi-tooltip {\n -webkit-transform: translate(-50%, 0);\n transform: translate(-50%, 0);\n left: 50%;\n bottom: 120%;\n}\n.bk-root .noUi-vertical .noUi-tooltip {\n -webkit-transform: translate(0, -50%);\n transform: translate(0, -50%);\n top: 50%;\n right: 120%;\n}\n.bk-root .noUi-horizontal .noUi-origin > .noUi-tooltip {\n -webkit-transform: translate(50%, 0);\n transform: translate(50%, 0);\n left: auto;\n bottom: 10px;\n}\n.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip {\n -webkit-transform: translate(0, -18px);\n transform: translate(0, -18px);\n top: auto;\n right: 28px;\n}\n.bk-root .noUi-handle {\n cursor: grab;\n cursor: -webkit-grab;\n}\n.bk-root .noUi-handle.noUi-active {\n cursor: grabbing;\n cursor: -webkit-grabbing;\n}\n.bk-root .noUi-handle:after,\n.bk-root .noUi-handle:before {\n display: none;\n}\n.bk-root .noUi-tooltip {\n display: none;\n white-space: nowrap;\n}\n.bk-root .noUi-handle:hover .noUi-tooltip {\n display: block;\n}\n.bk-root .noUi-horizontal {\n width: 100%;\n height: 10px;\n}\n.bk-root .noUi-vertical {\n width: 10px;\n height: 100%;\n}\n.bk-root .noUi-horizontal .noUi-handle {\n width: 14px;\n height: 18px;\n right: -7px;\n top: -5px;\n}\n.bk-root .noUi-vertical .noUi-handle {\n width: 18px;\n height: 14px;\n right: -5px;\n top: -7px;\n}\n.bk-root .noUi-target.noUi-horizontal {\n margin: 5px 0px;\n}\n.bk-root .noUi-target.noUi-vertical {\n margin: 0px 5px;\n}\n"},n 427: function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default="\n.bk-root .bk-slider-title {\n white-space: nowrap;\n}\n.bk-root .bk-slider-value {\n font-weight: 600;\n}\n"},n 428: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1).__importDefault(e(186)),a=e(423);class d extends a.AbstractSliderView{}i.DateSliderView=d,d.__name__="DateSliderView";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour="tap",this.connected=[!0,!1]}static init_DateSlider(){this.prototype.default_view=d,this.override({format:"%d %b %Y"})}_formatter(e,t){return r.default(e,t)}}i.DateSlider=s,s.__name__="DateSlider",s.init_DateSlider()},n 429: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const r=e(1),_=e(430),n=r.__importStar(e(18));class s extends _.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.model.text}}i.DivView=s,s.__name__="DivView";class a extends _.Markup{constructor(e){super(e)}static init_Div(){this.prototype.default_view=s,this.define({render_as_text:[n.Boolean,!1]})}}i.Div=a,a.__name__="Div",a.init_Div()},n 430: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),a=e(217),n=e(72),l=i.__importStar(e(18)),r=e(472),_=e(431),c=i.__importDefault(e(432));class u extends r.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>{this.layout.invalidate_cache(),this.render(),this.root.compute_layout()})}styles(){return[…super.styles(),c.default]}_update_layout(){this.layout=new a.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:"inline-block"});this.markup_el=n.div({class:_.bk_clearfix,style:e}),this.el.appendChild(this.markup_el)}}s.MarkupView=u,u.__name__="MarkupView";class o extends r.Widget{constructor(e){super(e)}static init_Markup(){this.define({text:[l.String,""],style:[l.Any,{}]})}}s.Markup=o,o.__name__="Markup",o.init_Markup()},n 431: function _(e,c,f){Object.defineProperty(f,"__esModule",{value:!0}),f.bk_clearfix="bk-clearfix"},n 432: function _(e,n,t){Object.defineProperty(t,"__esModule",{value:!0});t.default=’\n.bk-root .bk-clearfix:before,\n.bk-root .bk-clearfix:after {\n content: "";\n display: table;\n}\n.bk-root .bk-clearfix:after {\n clear: both;\n}\n’},n 433: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(404),o=e(313),_=e(72),d=n.__importStar(e(18)),l=e(8),r=e(173),u=e(281),c=e(282),h=n.__importDefault(e(284));class p extends s.AbstractButtonView{constructor(){super(…arguments),this._open=!1}styles(){return[…super.styles(),h.default]}render(){super.render();const e=_.div({class:[c.bk_caret,r.bk_down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(u.bk_dropdown_toggle),t.addEventListener("click",()=>this._toggle_menu()),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map((e,t)=>{if(null==e)return _.div({class:c.bk_divider});{const i=l.isString(e)?e:e[0],n=_.div({},i);return n.addEventListener("click",()=>this._item_click(t)),n}});this.menu=_.div({class:[c.bk_menu,r.bk_below]},t),this.el.appendChild(this.menu),_.undisplay(this.menu)}_show_menu(){if(!this._open){this._open=!0,_.display(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener("click",e),this._hide_menu())};document.addEventListener("click",e)}}_hide_menu(){this._open&&(this._open=!1,_.undisplay(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new o.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=l.isString(t)?t:t[1];l.isString(i)?this.model.trigger_event(new o.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__="DropdownView";class m extends s.AbstractButton{constructor(e){super(e)}static init_Dropdown(){this.prototype.default_view=p,this.define({split:[d.Boolean,!1],menu:[d.Array,[]]}),this.override({label:"Dropdown"})}get is_split(){return this.split}}i.Dropdown=m,m.__name__="Dropdown",m.init_Dropdown()},n 434: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e(1).__importStar(e(18)),s=e(472);class n extends s.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.width.change,()=>this.render())}render(){null==this.dialogEl&&(this.dialogEl=document.createElement("input"),this.dialogEl.type="file",this.dialogEl.multiple=this.model.multiple,this.dialogEl.onchange=()=>{const{files:e}=this.dialogEl;null!=e&&this.load_files(e)},this.el.appendChild(this.dialogEl)),null!=this.model.accept&&""!=this.model.accept&&(this.dialogEl.accept=this.model.accept),this.dialogEl.style.width="{this.model.width}px",this.dialogEl.disabled=this.model.disabled}async load_files(e){const t=[],i=[],l=[];let s;for(s=0;s<e.length;s++){i.push(e[s].name);const n=await this.readfile(e[s]),[,o,,a]=n.split(/[:;,]/,4);t.push(a),l.push(o)}this.model.multiple?(this.model.filename=i,this.model.mime_type=l,this.model.value=t):(this.model.filename=i[0],this.model.mime_type=l[0],this.model.value=t[0])}readfile(e){return new Promise((t,i)=>{const l=new FileReader;l.onload=()=>{var s;const{result:n}=l;null!=n?t(n):i(null!==(s=l.error)&&void 0!==s?s:new Error(`unable to read ‘${e.name}’`))},l.readAsDataURL(e)})}}i.FileInputView=n,n.__name__="FileInputView";class o extends s.Widget{constructor(e){super(e)}static init_FileInput(){this.prototype.default_view=n,this.define({value:[l.Any,""],mime_type:[l.Any,""],filename:[l.Any,""],accept:[l.String,""],multiple:[l.Boolean,!1]})}}i.FileInput=o,o.__name__="FileInput",o.init_FileInput()},n 435: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e(1),n=e(72),l=e(8),o=i.__importStar(e(18)),c=e(410),r=e(412);class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!0,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll("option"))t.selected=e.has(t.value);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector("select:focus"),t=[];for(const e of this.el.querySelectorAll("option"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.MultiSelectView=h,h.__name__="MultiSelectView";class d extends c.InputWidget{constructor(e){super(e)}static init_MultiSelect(){this.prototype.default_view=h,this.define({value:[o.Array,[]],options:[o.Array,[]],size:[o.Number,4]})}}s.MultiSelect=d,d.__name__="MultiSelect",d.init_MultiSelect()},n 436: function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});const t=a(430),p=a(72);class s extends t.MarkupView{render(){super.render();const a=p.p({style:{margin:0}},this.model.text);this.markup_el.appendChild(a)}}r.ParagraphView=s,s.__name__="ParagraphView";class i extends t.Markup{constructor(a){super(a)}static init_Paragraph(){this.prototype.default_view=s}}r.Paragraph=i,i.__name__="Paragraph",i.init_Paragraph()},n 437: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const n=e(409);class r extends n.TextInputView{render(){super.render(),this.input_el.type="password"}}s.PasswordInputView=r,r.__name__="PasswordInputView";class p extends n.TextInput{constructor(e){super(e)}static init_PasswordInput(){this.prototype.default_view=r}}s.PasswordInput=p,p.__name__="PasswordInput",p.init_PasswordInput()},n 438: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e(1),s=l.__importDefault(e(439)),o=e(72),n=e(8),h=e(217),a=l.__importStar(e(18)),c=e(412),u=l.__importDefault(e(440)),d=e(410);class _ extends d.InputWidgetView{constructor(){super(…arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,()=>this.set_disabled());const{value:e,max_items:t,option_limit:i,delete_button:l,placeholder:s,options:o,name:n,title:h}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h],()=>this.render())}styles(){return[…super.styles(),u.default]}_update_layout(){this.layout=new h.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.select_el=o.select({multiple:!0,class:c.bk_input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.select_el);const e=new Set(this.model.value),t=this.model.options.map(t=>{let i,l;return n.isString(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}}),i=this.model.solid?"solid":"light",l="choices__item "+i,h="choices__button "+i,a={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:h}};null!=this.model.placeholder&&(a.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(a.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(a.renderChoiceLimit=this.model.option_limit),this.choice_el=new s.default(this.select_el,a);const u=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=u()&&this.root.invalidate_layout(),this._last_height=u(),this.select_el.addEventListener("change",()=>this.change_input())}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector("select:focus"),t=[];for(const e of this.el.querySelectorAll("option"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}i.MultiChoiceView=_,_.__name__="MultiChoiceView";class r extends d.InputWidget{constructor(e){super(e)}static init_MultiChoice(){this.prototype.default_view=_,this.define({value:[a.Array,[]],options:[a.Array,[]],max_items:[a.Number,null],delete_button:[a.Boolean,!0],placeholder:[a.String,null],option_limit:[a.Number,null],solid:[a.Boolean,!0]})}}i.MultiChoice=r,r.__name__="MultiChoice",r.init_MultiChoice()},n 439: function _(e,t,i){n /! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme /n var n,s;n=window,s=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/public/assets/scripts/",i(i.s=4)}([function(e,t,i){"use strict";var n=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===s}(e)}(e)},s="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return"function"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){"use strict";(function(e,n){var s,r=i(3);s="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){n /!n * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)n n * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)n * All Rights Reserved. Apache Software License 2.0n *n * http://www.apache.org/licenses/LICENSE-2.0n */n e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var r=i(2),o=i(8),a=i(0),c=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.caseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_,y=i.id,E=void 0===y?null:y,I=i.keys,S=void 0===I?[]:I,w=i.shouldSort,O=void 0===w||w,C=i.getFn,A=void 0===C?o:C,L=i.sortFn,T=void 0===L?function(e,t){return e.score-t.score}:L,x=i.tokenize,k=void 0!==x&&x,P=i.matchAllTokens,D=void 0!==P&&P,M=i.includeMatches,N=void 0!==M&&M,F=i.includeScore,j=void 0!==F&&F,K=i.verbose,R=void 0!==K&&K;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b,id:E,keys:S,includeMatches:N,includeScore:j,shouldSort:O,getFn:A,sortFn:T,verbose:R,tokenize:k,matchAllTokens:D},this.setCollection(t)}var t,i;return t=e,(i=[{key:"setCollection",value:function(e){return this.list=e,e}},{key:"search",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log(’———\nSearch pattern: "’.concat(e,’"’));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&"number"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:"_prepareSearchers",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n<s;n+=1)t.push(new r(i[n],this.options));return{tokenSearchers:t,fullSearcher:new r(e,this.options)}}},{key:"_search",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if("string"==typeof i[0]){for(var r=0,o=i.length;r<o;r+=1)this._analyze({key:"",value:i[r],record:r,index:r},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t});return{weights:null,results:s}}for(var a={},c=0,l=i.length;c<l;c+=1)for(var h=i[c],u=0,d=this.options.keys.length;u<d;u+=1){var p=this.options.keys[u];if("string"!=typeof p){if(a[p.name]={weight:1-p.weight||1},p.weight<=0||p.weight>1)throw new Error("Key weight has to be > 0 and <= 1");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:"_analyze",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if("string"==typeof r){this._log("\nKey: ".concat(""===i?"-":i));var y=d.search(r);if(this._log(‘Full text: "’.concat(r,’", score: ‘).concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S<h.length;S+=1){var w=h[S];this._log(’\nPattern: "’.concat(w.pattern,’"’));for(var O=!1,C=0;C<E.length;C+=1){var A=E[C],L=w.search(A),T={};L.isMatch?(T[A]=L.score,g=!0,O=!0,I.push(L.score)):(T[A]=1,this.options.matchAllTokens||I.push(1)),this._log(‘Token: "’.concat(A,’", score: ‘).concat(T[A]))}O&&(b+=1)}_=I[0];for(var x=I.length,k=1;k<x;k+=1)_+=I[k];_/=x,this._log("Token score average:",_)}var P=y.score;_>-1&&(P=(P+_)/2),this._log("Score average:",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log("\nCheck Matches: ".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N<F;N+=1)this._analyze({key:i,arrayIndex:N,value:r[N],record:o,index:c},{resultMap:m,results:v,tokenSearchers:h,fullSearcher:d})}}},{key:"_computeScore",value:function(e,t){this._log("\n\nComputing score:\n");for(var i=0,n=t.length;i<n;i+=1){for(var s=t[i].output,r=s.length,o=1,a=1,c=0;c<r;c+=1){var l=e?e[s[c].key].weight:1,h=(1===l?s[c].score:s[c].score||.001)*l;1!==l?a=Math.min(a,h):(s[c].nScore=h,o*=h)}t[i].score=1===a?o:a,this._log(t[i])}}},{key:"_sort",value:function(e){this._log("\n\nSorting…."),e.sort(this.options.sortFn)}},{key:"_format",value:function(e){var t=[];if(this.options.verbose){var i=[];this._log("\n\nOutput:\n\n",JSON.stringify(e,(function(e,t){if("object"===n(t)&&null!==t){if(-1!==i.indexOf(t))return;i.push(t)}return t}))),i=null}var s=[];this.options.includeMatches&&s.push((function(e,t){var i=e.output;t.matches=[];for(var n=0,s=i.length;n<s;n+=1){var r=i[n];if(0!==r.matchedIndices.length){var o={indices:r.matchedIndices,value:r.value};r.key&&(o.key=r.key),r.hasOwnProperty("arrayIndex")&&r.arrayIndex>-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;r<o;r+=1){var a=e[r];if(this.options.id&&(a.item=this.options.getFn(a.item,this.options.id)[0]),s.length){for(var c={item:a.item},l=0,h=s.length;l<h;l+=1)s[l](a,c);t.push(c)}else t.push(a.item)}return t}},{key:"_log",value:function(){var e;this.options.verbose&&(e=console).log.apply(e,arguments)}}])&&s(t.prototype,i),e}();e.exports=c},function(e,t,i){function n(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var s=i(3),r=i(4),o=i(7),a=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.isCaseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b},this.pattern=this.options.isCaseSensitive?t:t.toLowerCase(),this.pattern.length<=u&&(this.patternAlphabet=o(this.pattern))}var t,i;return t=e,(i=[{key:"search",value:function(e){if(this.options.isCaseSensitive||(e=e.toLowerCase()),this.pattern===e)return{isMatch:!0,score:0,matchedIndices:[[0,e.length-1]]};var t=this.options,i=t.maxPatternLength,n=t.tokenSeparator;if(this.pattern.length>i)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),e}();e.exports=a},function(e,t){var i=/[\-\[\]\/\{\}\(\)\\+\?\.\\\^\$\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,"\\$&").replace(n,"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c<l;c+=1){var h=r[c];a.push([e.indexOf(h),h.length-1])}return{score:o?.5:1,isMatch:o,matchedIndices:a}}},function(e,t,i){var n=i(5),s=i(6);e.exports=function(e,t,i,r){for(var o=r.location,a=void 0===o?0:o,c=r.distance,l=void 0===c?100:c,h=r.threshold,u=void 0===h?.6:h,d=r.findAllMatches,p=void 0!==d&&d,m=r.minMatchCharLength,f=void 0===m?1:m,v=a,g=e.length,_=u,b=e.indexOf(t,v),y=t.length,E=[],I=0;I<g;I+=1)E[I]=0;if(-1!==b){var S=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});if(_=Math.min(S,_),-1!==(b=e.lastIndexOf(t,v+y))){var w=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});_=Math.min(w,_)}}b=-1;for(var O=[],C=1,A=y+g,L=1<<y-1,T=0;T<y;T+=1){for(var x=0,k=A;x<k;)n(t,{errors:T,currentLocation:v+k,expectedLocation:v,distance:l})<=_?x=k:A=k,k=Math.floor((A-x)/2+x);A=k;var P=Math.max(1,v-k+1),D=p?g:Math.min(v+k,g)+y,M=Array(D+2);M[D+1]=(1<<T)-1;for(var N=D;N>=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r<o;r+=1){var a=e[r];a&&-1===n?n=r:a||-1===n||((s=r-1)-n+1>=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n<i;n+=1)t[e.charAt(n)]=0;for(var s=0;s<i;s+=1)t[e.charAt(s)]|=1<<i-s-1;return t}},function(e,t,i){var n=i(0);e.exports=function(e,t){return function e(t,i,s){if(i){var r=i.indexOf("."),o=i,a=null;-1!==r&&(o=i.slice(0,r),a=i.slice(r+1));var c=t[o];if(null!=c)if(a||"string"!=typeof c&&"number"!=typeof c)if(n(c))for(var l=0,h=c.length;l<h;l+=1)e(c[l],a,s);else a&&e(c,a,s);else s.push(c.toString())}else s.push(t);return s}(e,t,[])}}])},function(e,t,i){"use strict";function n(e){var t,i=e.Symbol;return"function"==typeof i?i.observable?t=i.observable:(t=i("observable"),i.observable=t):t="@@observable",t}i.d(t,"a",(function(){return n}))},function(e,t,i){e.exports=i(7)},function(e,t){var i;i=function(){return this}();try{i=i||new Function("return this")()}catch(e){"object"==typeof window&&(i=window)}e.exports=i},function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},function(e,t,i){"use strict";i.r(t);var n=i(2),s=i.n(n),r=i(0),o=i.n(r),a=i(1),c=function(){return Math.random().toString(36).substring(7).split("").join(".")},l={INIT:"@@redux/INIT"+c(),REPLACE:"@@redux/REPLACE"+c(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+c()}};function h(e){if("object"!=typeof e||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function u(e,t,i){var n;if("function"==typeof t&&"function"==typeof i||"function"==typeof i&&"function"==typeof arguments[3])throw new Error("It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function.");if("function"==typeof t&&void 0===i&&(i=t,t=void 0),void 0!==i){if("function"!=typeof i)throw new Error("Expected the enhancer to be a function.");return i(u)(e,t)}if("function"!=typeof e)throw new Error("Expected the reducer to be a function.");var s=e,r=t,o=[],c=o,d=!1;function p(){c===o&&(c=o.slice())}function m(){if(d)throw new Error("You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");return r}function f(e){if("function"!=typeof e)throw new Error("Expected the listener to be a function.");if(d)throw new Error("You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");var t=!0;return p(),c.push(e),function(){if(t){if(d)throw new Error("You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");t=!1,p();var i=c.indexOf(e);c.splice(i,1)}}}function v(e){if(!h(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(void 0===e.type)throw new Error(‘Actions may not have an undefined "type" property. Have you misspelled a constant?’);if(d)throw new Error("Reducers may not dispatch actions.");try{d=!0,r=s(r,e)}finally{d=!1}for(var t=o=c,i=0;i<t.length;i++)(0,t[i])();return e}function g(e){if("function"!=typeof e)throw new Error("Expected the nextReducer to be a function.");s=e,v({type:l.REPLACE})}function _(){var e,t=f;return(e={subscribe:function(e){if("object"!=typeof e||null===e)throw new TypeError("Expected the observer to be an object.");function i(){e.next&&e.next(m())}return i(),{unsubscribe:t(i)}}})[a.a]=function(){return this},e}return v({type:l.INIT}),(n={dispatch:v,subscribe:f,getState:m,replaceReducer:g})[a.a]=_,n}function d(e,t){var i=t&&t.type;return"Given "+(i&&’action "’+String(i)+’"’||"an action")+’, reducer "’+e+’" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.’}var p,m=[],f=[],v=[],g={loading:!1},_=function(e,t){switch(void 0===e&&(e=g),t.type){case"SET_IS_LOADING":return{loading:t.isLoading};default:return e}},b=function(e){return Array.from({length:e},(function(){return(e=0,t=36,Math.floor(Math.random()*(t-e)+e)).toString(36);var e,t})).join("")},y=function(e){return Object.prototype.toString.call(e).slice(8,-1)},E=function(e,t){return null!=t&&y(t)===e},I=function(e){return"string"!=typeof e?e:e.replace(/&/g,"&").replace(/>/g,"&rt;").replace(/</g,"<").replace(/"/g,""")},S=(p=document.createElement("div"),function(e){var t=e.trim();p.innerHTML=t;for(var i=p.children[0];p.firstChild;)p.removeChild(p.firstChild);return i}),w=function(e,t){return e.score-t.score},O=function(e){return JSON.parse(JSON.stringify(e))},C=function(e){for(var t=Object.keys(e),i={},n=0;n<t.length;n++){var s=t[n];"function"==typeof e[s]&&(i[s]=e[s])}var r,o=Object.keys(i);try{!function(e){Object.keys(e).forEach((function(t){var i=e[t];if(void 0===i(void 0,{type:l.INIT}))throw new Error(‘Reducer "’+t+"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don’t want to set a value for this reducer, you can use null instead of undefined.");if(void 0===i(void 0,{type:l.PROBE_UNKNOWN_ACTION()}))throw new Error(‘Reducer "’+t+"\" returned undefined when probed with a random type. Don’t try to handle "+l.INIT+’ or other actions in "redux/" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.’)}))}(i)}catch(e){r=e}return function(e,t){if(void 0===e&&(e={}),r)throw r;for(var n=!1,s={},a=0;a<o.length;a++){var c=o[a],l=i[c],h=e[c],u=l(h,t);if(void 0===u){var p=d(c,t);throw new Error(p)}s[c]=u,n=n||u!==h}return n?s:e}}({items:function(e,t){switch(void 0===e&&(e=m),t.type){case"ADD_ITEM":return[].concat(e,[{id:t.id,choiceId:t.choiceId,groupId:t.groupId,value:t.value,label:t.label,active:!0,highlighted:!1,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]).map((function(e){var t=e;return t.highlighted=!1,t}));case"REMOVE_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.active=!1),i}));case"HIGHLIGHT_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.highlighted=t.highlighted),i}));default:return e}},groups:function(e,t){switch(void 0===e&&(e=f),t.type){case"ADD_GROUP":return[].concat(e,[{id:t.id,value:t.value,active:t.active,disabled:t.disabled}]);case"CLEAR_CHOICES":return[];default:return e}},choices:function(e,t){switch(void 0===e&&(e=v),t.type){case"ADD_CHOICE":return[].concat(e,[{id:t.id,elementId:t.elementId,groupId:t.groupId,value:t.value,label:t.label||t.value,disabled:t.disabled||!1,selected:!1,active:!0,score:9999,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]);case"ADD_ITEM":return t.activateOptions?e.map((function(e){var i=e;return i.active=t.active,i})):t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case"REMOVE_ITEM":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case"FILTER_CHOICES":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case"ACTIVATE_CHOICES":return e.map((function(e){var i=e;return i.active=t.active,i}));case"CLEAR_CHOICES":return v;default:return e}},general:_}),A=function(e,t){var i=e;if("CLEAR_ALL"===t.type)i=void 0;else if("RESET_TO"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var T=function(){function e(){this._store=u(A,window.__REDUX_DEVTOOLS_EXTENSION__&&window.__REDUX_DEVTOOLS_EXTENSION__())}var t,i,n,s=e.prototype;return s.subscribe=function(e){this._store.subscribe(e)},s.dispatch=function(e){this._store.dispatch(e)},s.isLoading=function(){return this.state.general.loading},s.getChoiceById=function(e){return this.activeChoices.find((function(t){return t.id===parseInt(e,10)}))},s.getGroupById=function(e){return this.groups.find((function(t){return t.id===e}))},t=e,(i=[{key:"state",get:function(){return this._store.getState()}},{key:"items",get:function(){return this.state.items}},{key:"activeItems",get:function(){return this.items.filter((function(e){return!0===e.active}))}},{key:"highlightedActiveItems",get:function(){return this.items.filter((function(e){return e.active&&e.highlighted}))}},{key:"choices",get:function(){return this.state.choices}},{key:"activeChoices",get:function(){return this.choices.filter((function(e){return!0===e.active}))}},{key:"selectableChoices",get:function(){return this.choices.filter((function(e){return!0!==e.disabled}))}},{key:"searchableChoices",get:function(){return this.selectableChoices.filter((function(e){return!0!==e.placeholder}))}},{key:"placeholderChoice",get:function(){return[].concat(this.choices).reverse().find((function(e){return!0===e.placeholder}))}},{key:"groups",get:function(){return this.state.groups}},{key:"activeGroups",get:function(){var e=this.groups,t=this.choices;return e.filter((function(e){var i=!0===e.active&&!1===e.disabled,n=t.some((function(e){return!0===e.active&&!1===e.disabled}));return i&&n}),[])}}])&&L(t.prototype,i),n&&L(t,n),e}();function x(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var k=function(){function e(e){var t=e.element,i=e.type,n=e.classNames;this.element=t,this.classNames=n,this.type=i,this.isActive=!1}var t,i,n,s=e.prototype;return s.getChild=function(e){return this.element.querySelector(e)},s.show=function(){return this.element.classList.add(this.classNames.activeState),this.element.setAttribute("aria-expanded","true"),this.isActive=!0,this},s.hide=function(){return this.element.classList.remove(this.classNames.activeState),this.element.setAttribute("aria-expanded","false"),this.isActive=!1,this},t=e,(i=[{key:"distanceFromTopWindow",get:function(){return this.element.getBoundingClientRect().bottom}}])&&x(t.prototype,i),n&&x(t,n),e}(),P={items:[],choices:[],silent:!1,renderChoiceLimit:-1,maxItemCount:-1,addItems:!0,addItemFilter:null,removeItems:!0,removeItemButton:!1,editItems:!1,duplicateItemsAllowed:!0,delimiter:",",paste:!0,searchEnabled:!0,searchChoices:!0,searchFloor:1,searchResultLimit:4,searchFields:["label","value"],position:"auto",resetScrollPosition:!0,shouldSort:!0,shouldSortItems:!1,sorter:function(e,t){var i=e.value,n=e.label,s=void 0===n?i:n,r=t.value,o=t.label,a=void 0===o?r:o;return s.localeCompare(a,[],{sensitivity:"base",ignorePunctuation:!0,numeric:!0})},placeholder:!0,placeholderValue:null,searchPlaceholderValue:null,prependValue:null,appendValue:null,renderSelectedChoices:"auto",loadingText:"Loading…",noResultsText:"No results found",noChoicesText:"No choices to choose from",itemSelectText:"Press to select",uniqueItemText:"Only unique values can be added",customAddItemText:"Only values matching specific conditions can be added",addItemText:function(e){return’Press Enter to add <b>"’+I(e)+’"</b>’},maxItemText:function(e){return"Only "+e+" values can be added"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:"choices",containerInner:"choices__inner",input:"choices__input",inputCloned:"choices__input–cloned",list:"choices__list",listItems:"choices__list–multiple",listSingle:"choices__list–single",listDropdown:"choices__list–dropdown",item:"choices__item",itemSelectable:"choices__item–selectable",itemDisabled:"choices__item–disabled",itemChoice:"choices__item–choice",placeholder:"choices__placeholder",group:"choices__group",groupHeading:"choices__heading",button:"choices__button",activeState:"is-active",focusState:"is-focused",openState:"is-open",disabledState:"is-disabled",highlightedState:"is-highlighted",selectedState:"is-selected",flippedState:"is-flipped",loadingState:"is-loading",noResults:"has-no-results",noChoices:"has-no-choices"}},D="showDropdown",M="hideDropdown",N="change",F="choice",j="search",K="addItem",R="removeItem",H="highlightItem",B="highlightChoice",V="ADD_CHOICE",G="FILTER_CHOICES",q="ACTIVATE_CHOICES",U="CLEAR_CHOICES",z="ADD_GROUP",W="ADD_ITEM",X="REMOVE_ITEM",$="HIGHLIGHT_ITEM",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener("focus",this._onFocus),this.element.addEventListener("blur",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener("focus",this._onFocus),this.element.removeEventListener("blur",this._onBlur)},t.shouldFlip=function(e){if("number"!=typeof e)return!1;var t=!1;return"auto"===this.position?t=!window.matchMedia("(min-height: "+(e+1)+"px)").matches:"top"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},t.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute("aria-expanded","true"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute("aria-expanded","false"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute("aria-disabled"),"select-one"===this.type&&this.element.setAttribute("tabindex","0"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute("aria-disabled","true"),"select-one"===this.type&&this.element.setAttribute("tabindex","-1"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement("div")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute("aria-busy","true"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute("aria-busy"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function oe(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var ae=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.preventPaste;this.element=t,this.type=i,this.classNames=n,this.preventPaste=s,this.isFocussed=this.element===document.activeElement,this.isDisabled=t.disabled,this._onPaste=this._onPaste.bind(this),this._onInput=this._onInput.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t,i,n,s=e.prototype;return s.addEventListeners=function(){this.element.addEventListener("paste",this._onPaste),this.element.addEventListener("input",this._onInput,{passive:!0}),this.element.addEventListener("focus",this._onFocus,{passive:!0}),this.element.addEventListener("blur",this._onBlur,{passive:!0})},s.removeEventListeners=function(){this.element.removeEventListener("input",this._onInput,{passive:!0}),this.element.removeEventListener("paste",this._onPaste),this.element.removeEventListener("focus",this._onFocus,{passive:!0}),this.element.removeEventListener("blur",this._onBlur,{passive:!0})},s.enable=function(){this.element.removeAttribute("disabled"),this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.isDisabled=!0},s.focus=function(){this.isFocussed||this.element.focus()},s.blur=function(){this.isFocussed&&this.element.blur()},s.clear=function(e){return void 0===e&&(e=!0),this.element.value&&(this.element.value=""),e&&this.setWidth(),this},s.setWidth=function(){var e=this.element,t=e.style,i=e.value,n=e.placeholder;t.minWidth=n.length+1+"ch",t.width=i.length+1+"ch"},s.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},s.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},s._onInput=function(){"select-one"!==this.type&&this.setWidth()},s._onPaste=function(e){this.preventPaste&&e.preventDefault()},s._onFocus=function(){this.isFocussed=!0},s._onBlur=function(){this.isFocussed=!1},t=e,(i=[{key:"placeholder",set:function(e){this.element.placeholder=e}},{key:"value",get:function(){return I(this.element.value)},set:function(e){this.element.value=e}}])&&oe(t.prototype,i),n&&oe(t,n),e}(),ce=function(){function e(e){var t=e.element;this.element=t,this.scrollPos=this.element.scrollTop,this.height=this.element.offsetHeight}var t=e.prototype;return t.clear=function(){this.element.innerHTML=""},t.append=function(e){this.element.appendChild(e)},t.getChild=function(e){return this.element.querySelector(e)},t.hasChildren=function(){return this.element.hasChildNodes()},t.scrollToTop=function(){this.element.scrollTop=0},t.scrollToChildElement=function(e,t){var i=this;if(e){var n=this.element.offsetHeight,s=this.element.scrollTop+n,r=e.offsetHeight,o=e.offsetTop+r,a=t>0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),n<e&&(s=!0)):(this._scrollUp(n,4,e),n>e&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function le(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var he=function(){function e(e){var t=e.element,i=e.classNames;if(this.element=t,this.classNames=i,!(t instanceof HTMLInputElement||t instanceof HTMLSelectElement))throw new TypeError("Invalid element passed");this.isDisabled=!1}var t,i,n,s=e.prototype;return s.conceal=function(){this.element.classList.add(this.classNames.input),this.element.hidden=!0,this.element.tabIndex=-1;var e=this.element.getAttribute("style");e&&this.element.setAttribute("data-choice-orig-style",e),this.element.setAttribute("data-choice","active")},s.reveal=function(){this.element.classList.remove(this.classNames.input),this.element.hidden=!1,this.element.removeAttribute("tabindex");var e=this.element.getAttribute("data-choice-orig-style");e?(this.element.removeAttribute("data-choice-orig-style"),this.element.setAttribute("style",e)):this.element.removeAttribute("style"),this.element.removeAttribute("data-choice"),this.element.value=this.element.value},s.enable=function(){this.element.removeAttribute("disabled"),this.element.disabled=!1,this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.element.disabled=!0,this.isDisabled=!0},s.triggerEvent=function(e,t){!function(e,t,i){void 0===i&&(i=null);var n=new CustomEvent(t,{detail:i,bubbles:!0,cancelable:!0});e.dispatchEvent(n)}(this.element,e,t)},t=e,(i=[{key:"isActive",get:function(){return"active"===this.element.dataset.choice}},{key:"dir",get:function(){return this.element.dir}},{key:"value",get:function(){return this.element.value},set:function(e){this.element.value=e}}])&&le(t.prototype,i),n&&le(t,n),e}();function ue(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var de=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.delimiter;return(i=e.call(this,{element:n,classNames:s})||this).delimiter=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,n=o,(s=[{key:"value",get:function(){return this.element.value},set:function(e){var t=e.map((function(e){return e.value})).join(this.delimiter);this.element.setAttribute("value",t),this.element.value=t}}])&&ue(n.prototype,s),r&&ue(n,r),o}(he);function pe(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var me=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.template;return(i=e.call(this,{element:n,classNames:s})||this).template=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,o.prototype.appendDocFragment=function(e){this.element.innerHTML="",this.element.appendChild(e)},n=o,(s=[{key:"placeholderOption",get:function(){return this.element.querySelector(‘option[value=""]’)||this.element.querySelector("option[placeholder]")}},{key:"optionGroups",get:function(){return Array.from(this.element.getElementsByTagName("OPTGROUP"))}},{key:"options",get:function(){return Array.from(this.element.options)},set:function(e){var t=this,i=document.createDocumentFragment();e.forEach((function(e){return n=e,s=t.template(n),void i.appendChild(s);var n,s})),this.appendDocFragment(i)}}])&&pe(n.prototype,s),r&&pe(n,r),o}(he),fe={containerOuter:function(e,t,i,n,s,r){var o=e.containerOuter,a=Object.assign(document.createElement("div"),{className:o});return a.dataset.type=r,t&&(a.dir=t),n&&(a.tabIndex=0),i&&(a.setAttribute("role",s?"combobox":"listbox"),s&&a.setAttribute("aria-autocomplete","list")),a.setAttribute("aria-haspopup","true"),a.setAttribute("aria-expanded","false"),a},containerInner:function(e){var t=e.containerInner;return Object.assign(document.createElement("div"),{className:t})},itemList:function(e,t){var i=e.list,n=e.listSingle,s=e.listItems;return Object.assign(document.createElement("div"),{className:i+" "+(t?n:s)})},placeholder:function(e,t){var i=e.placeholder;return Object.assign(document.createElement("div"),{className:i,innerHTML:t})},item:function(e,t,i){var n=e.item,s=e.button,r=e.highlightedState,o=e.itemSelectable,a=e.placeholder,c=t.id,l=t.value,h=t.label,u=t.customProperties,d=t.active,p=t.disabled,m=t.highlighted,f=t.placeholder,v=Object.assign(document.createElement("div"),{className:n,innerHTML:h});if(Object.assign(v.dataset,{item:"",id:c,value:l,customProperties:u}),d&&v.setAttribute("aria-selected","true"),p&&v.setAttribute("aria-disabled","true"),f&&v.classList.add(a),v.classList.add(m?r:o),i){p&&v.classList.remove(o),v.dataset.deletable="";var g=Object.assign(document.createElement("button"),{type:"button",className:s,innerHTML:"Remove item"});g.setAttribute("aria-label","Remove item: ‘"+l+"’"),g.dataset.button="",v.appendChild(g)}return v},choiceList:function(e,t){var i=e.list,n=Object.assign(document.createElement("div"),{className:i});return t||n.setAttribute("aria-multiselectable","true"),n.setAttribute("role","listbox"),n},choiceGroup:function(e,t){var i=e.group,n=e.groupHeading,s=e.itemDisabled,r=t.id,o=t.value,a=t.disabled,c=Object.assign(document.createElement("div"),{className:i+" "+(a?s:"")});return c.setAttribute("role","group"),Object.assign(c.dataset,{group:"",id:r,value:o}),a&&c.setAttribute("aria-disabled","true"),c.appendChild(Object.assign(document.createElement("div"),{className:n,innerHTML:o})),c},choice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.itemSelectable,o=e.selectedState,a=e.itemDisabled,c=e.placeholder,l=t.id,h=t.value,u=t.label,d=t.groupId,p=t.elementId,m=t.disabled,f=t.selected,v=t.placeholder,g=Object.assign(document.createElement("div"),{id:p,innerHTML:u,className:n+" "+s});return f&&g.classList.add(o),v&&g.classList.add(c),g.setAttribute("role",d>0?"treeitem":"option"),Object.assign(g.dataset,{choice:"",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled="",g.setAttribute("aria-disabled","true")):(g.classList.add(r),g.dataset.choiceSelectable=""),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement("input"),{type:"text",className:i+" "+n,autocomplete:"off",autocapitalize:"off",spellcheck:!1});return s.setAttribute("role","textbox"),s.setAttribute("aria-autocomplete","list"),s.setAttribute("aria-label",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement("div");return n.classList.add(t,i),n.setAttribute("aria-expanded","false"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i="");var a=[n,s];return"no-choices"===i?a.push(o):"no-results"===i&&a.push(r),Object.assign(document.createElement("div"),{innerHTML:t,className:a.join(" ")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},ve=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ge=function(e,t){return{type:$,id:e,highlighted:t}},_e=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},be=function(e){return{type:"SET_IS_LOADING",isLoading:e}};function ye(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var Ee="-ms-scroll-limit"in document.documentElement.style&&"-ms-ime-align"in document.documentElement.style,Ie={},Se=function(){var e,t,i;function n(e,t){var i=this;void 0===e&&(e="[data-choice]"),void 0===t&&(t={}),this.config=o.a.all([P,n.defaults.options,t],{arrayMerge:function(e,t){return[].concat(t)}});var s,r,a,c,l=(s=this.config,r=P,a=Object.keys(s).sort(),c=Object.keys(r).sort(),a.filter((function(e){return c.indexOf(e)<0})));l.length&&console.warn("Unknown config option(s) passed",l.join(", "));var h="string"==typeof e?document.querySelector(e):e;if(!(h instanceof HTMLInputElement||h instanceof HTMLSelectElement))throw TypeError("Expected one of the following types text|select-one|select-multiple");if(this._isTextElement="text"===h.type,this._isSelectOneElement="select-one"===h.type,this._isSelectMultipleElement="select-multiple"===h.type,this._isSelectElement=this._isSelectOneElement||this._isSelectMultipleElement,this.config.searchEnabled=this._isSelectMultipleElement||this.config.searchEnabled,["auto","always"].includes(this.config.renderSelectedChoices)||(this.config.renderSelectedChoices="auto"),t.addItemFilter&&"function"!=typeof t.addItemFilter){var u=t.addItemFilter instanceof RegExp?t.addItemFilter:new RegExp(t.addItemFilter);this.config.addItemFilter=u.test.bind(u)}if(this._isTextElement?this.passedElement=new de({element:h,classNames:this.config.classNames,delimiter:this.config.delimiter}):this.passedElement=new me({element:h,classNames:this.config.classNames,template:function(e){return i._templates.option(e)}}),this.initialised=!1,this._store=new T,this._initialState={},this._currentState={},this._prevState={},this._currentValue="",this._canSearch=this.config.searchEnabled,this._isScrollingOnIe=!1,this._highlightPosition=0,this._wasTap=!0,this._placeholderValue=this._generatePlaceholderValue(),this._baseId=function(e,t){var i=e.id||e.name&&e.name+"-"+b(2)||b(4);return i=t+"-"+(i=i.replace(/(:|\.|\[|\]|,)/g,""))}(this.passedElement.element,"choices-"),this._direction=this.passedElement.dir,!this._direction){var d=window.getComputedStyle(this.passedElement.element).direction;d!==window.getComputedStyle(document.documentElement).direction&&(this._direction=d)}if(this._idNames={itemChoice:"item-choice"},this._presetGroups=this.passedElement.optionGroups,this._presetOptions=this.passedElement.options,this._presetChoices=this.config.choices,this._presetItems=this.config.items,this.passedElement.value&&(this._presetItems=this._presetItems.concat(this.passedElement.value.split(this.config.delimiter))),this.passedElement.options&&this.passedElement.options.forEach((function(e){i._presetChoices.push({value:e.value,label:e.innerHTML,selected:e.selected,disabled:e.disabled||e.parentNode.disabled,placeholder:""===e.value||e.hasAttribute("placeholder"),customProperties:e.getAttribute("data-custom-properties")})})),this._render=this._render.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this),this._onKeyUp=this._onKeyUp.bind(this),this._onKeyDown=this._onKeyDown.bind(this),this._onClick=this._onClick.bind(this),this._onTouchMove=this._onTouchMove.bind(this),this._onTouchEnd=this._onTouchEnd.bind(this),this._onMouseDown=this._onMouseDown.bind(this),this._onMouseOver=this._onMouseOver.bind(this),this._onFormReset=this._onFormReset.bind(this),this._onAKey=this._onAKey.bind(this),this._onEnterKey=this._onEnterKey.bind(this),this._onEscapeKey=this._onEscapeKey.bind(this),this._onDirectionKey=this._onDirectionKey.bind(this),this._onDeleteKey=this._onDeleteKey.bind(this),this.passedElement.isActive)return this.config.silent||console.warn("Trying to initialise Choices on element already initialised"),void(this.initialised=!0);this.init()}e=n,i=[{key:"defaults",get:function(){return Object.preventExtensions({get options(){return Ie},get templates(){return fe}})}}],(t=null)&&ye(e.prototype,t),i&&ye(e,i);var r=n.prototype;return r.init=function(){if(!this.initialised){this._createTemplates(),this._createElements(),this._createStructure(),this._initialState=O(this._store.state),this._store.subscribe(this._render),this._render(),this._addEventListeners(),(!this.config.addItems||this.passedElement.element.hasAttribute("disabled"))&&this.disable(),this.initialised=!0;var e=this.config.callbackOnInit;e&&"function"==typeof e&&e.call(this)}},r.destroy=function(){this.initialised&&(this._removeEventListeners(),this.passedElement.reveal(),this.containerOuter.unwrap(this.passedElement.element),this.clearStore(),this._isSelectElement&&(this.passedElement.options=this._presetOptions),this._templates=null,this.initialised=!1)},r.enable=function(){return this.passedElement.isDisabled&&this.passedElement.enable(),this.containerOuter.isDisabled&&(this._addEventListeners(),this.input.enable(),this.containerOuter.enable()),this},r.disable=function(){return this.passedElement.isDisabled||this.passedElement.disable(),this.containerOuter.isDisabled||(this._removeEventListeners(),this.input.disable(),this.containerOuter.disable()),this},r.highlightItem=function(e,t){if(void 0===t&&(t=!0),!e)return this;var i=e.id,n=e.groupId,s=void 0===n?-1:n,r=e.value,o=void 0===r?"":r,a=e.label,c=void 0===a?"":a,l=s>=0?this._store.getGroupById(s):null;return this._store.dispatch(ge(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?"":s,o=e.label,a=void 0===o?"":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ge(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t="value"),void 0===i&&(i="label"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError("setChoices was called on a non-initialized instance of Choices");if(!this._isSelectElement)throw new TypeError("setChoices can’t be used with INPUT based Choices");if("string"!=typeof t||!t)throw new TypeError("value parameter must be a name of ‘value’ field in passed objects");if(n&&this.clearChoices(),"function"==typeof e){var r=e(this);if("function"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(".setChoices first argument function must return either array of choices or Promise, got: "+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(".setChoices must be called either with array of choices with a function resulting into Promise of array of choices");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:"CLEAR_ALL"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(ve(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate("notice",a.notice))}else{var c,l;this._isSearching?(l="function"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate("notice",l,"no-results")):(l="function"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate("notice",l,"no-choices")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&("always"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate("choiceGroup",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if("auto"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate("choice",e,n.config.itemSelectText);t.appendChild(i)}},h=e;"auto"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v<m;v+=1)f[v]&&l(f[v]);return t},r._createItemsFragment=function(e,t){var i=this;void 0===t&&(t=document.createDocumentFragment());var n=this.config,s=n.shouldSortItems,r=n.sorter,o=n.removeItemButton;return s&&!this._isSelectOneElement&&e.sort(r),this._isTextElement?this.passedElement.value=e:this.passedElement.options=e,e.forEach((function(e){var n=i._getTemplate("item",e,o);t.appendChild(n)})),t},r._triggerChange=function(e){null!=e&&this.passedElement.triggerEvent(N,{value:e})},r._selectPlaceholderChoice=function(){var e=this._store.placeholderChoice;e&&(this._addItem({value:e.value,label:e.label,choiceId:e.id,groupId:e.groupId,placeholder:e.placeholder}),this._triggerChange(e.value))},r._handleButtonAction=function(e,t){if(e&&t&&this.config.removeItems&&this.config.removeItemButton){var i=t.parentNode.getAttribute("data-id"),n=e.find((function(e){return e.id===parseInt(i,10)}));this._removeItem(n),this._triggerChange(n.value),this._isSelectOneElement&&this._selectPlaceholderChoice()}},r._handleItemAction=function(e,t,i){var n=this;if(void 0===i&&(i=!1),e&&t&&this.config.removeItems&&!this._isSelectOneElement){var s=t.getAttribute("data-id");e.forEach((function(e){e.id!==parseInt(s,10)||e.highlighted?!i&&e.highlighted&&n.unhighlightItem(e):n.highlightItem(e)})),this.input.focus()}},r._handleChoiceAction=function(e,t){if(e&&t){var i=t.dataset.id,n=this._store.getChoiceById(i);if(n){var s=e[0]&&e[0].keyCode?e[0].keyCode:null,r=this.dropdown.isActive;n.keyCode=s,this.passedElement.triggerEvent(F,{choice:n}),n.selected||n.disabled||this._canAddItem(e,n.value).response&&(this._addItem({value:n.value,label:n.label,choiceId:n.id,groupId:n.groupId,customProperties:n.customProperties,placeholder:n.placeholder,keyCode:n.keyCode}),this._triggerChange(n.value)),this.clearInput(),r&&this._isSelectOneElement&&(this.hideDropdown(!0),this.containerOuter.focus())}}},r._handleBackspace=function(e){if(this.config.removeItems&&e){var t=e[e.length-1],i=e.some((function(e){return e.highlighted}));this.config.editItems&&!i&&t?(this.input.value=t.value,this.input.setWidth(),this._removeItem(t),this._triggerChange(t.value)):(i||this.highlightItem(t,!1),this.removeHighlightedItems(!0))}},r._startLoading=function(){this._store.dispatch(be(!0))},r._stopLoading=function(){this._store.dispatch(be(!1))},r._handleLoadingState=function(e){void 0===e&&(e=!0);var t=this.itemList.getChild("."+this.config.classNames.placeholder);e?(this.disable(),this.containerOuter.addLoadingState(),this._isSelectOneElement?t?t.innerHTML=this.config.loadingText:(t=this._getTemplate("placeholder",this.config.loadingText),this.itemList.append(t)):this.input.placeholder=this.config.loadingText):(this.enable(),this.containerOuter.removeLoadingState(),this._isSelectOneElement?t.innerHTML=this._placeholderValue||"":this.input.placeholder=this._placeholderValue||"")},r._handleSearch=function(e){if(e&&this.input.isFocussed){var t=this._store.choices,i=this.config,n=i.searchFloor,s=i.searchChoices,r=t.some((function(e){return!e.active}));if(e&&e.length>=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(ve(!0)))}},r._canAddItem=function(e,t){var i=!0,n="function"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i="value"),e.some((function(e){return"string"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n="function"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n="function"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&"function"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n="function"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t="string"==typeof e?e.trim():e,i="string"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+" ")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.addEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.addEventListener("mousedown",this._onMouseDown,!0),e.addEventListener("click",this._onClick,{passive:!0}),e.addEventListener("touchmove",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener("mouseover",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener("focus",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener("blur",this._onBlur,{passive:!0})),this.input.element.addEventListener("keyup",this._onKeyUp,{passive:!0}),this.input.element.addEventListener("focus",this._onFocus,{passive:!0}),this.input.element.addEventListener("blur",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener("reset",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.removeEventListener("mousedown",this._onMouseDown,!0),e.removeEventListener("click",this._onClick),e.removeEventListener("touchmove",this._onTouchMove),this.dropdown.element.removeEventListener("mouseover",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener("focus",this._onFocus),this.containerOuter.element.removeEventListener("blur",this._onBlur)),this.input.element.removeEventListener("keyup",this._onKeyUp),this.input.element.removeEventListener("focus",this._onFocus),this.input.element.removeEventListener("blur",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener("reset",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate("notice",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(ve(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute("data-button");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild("."+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1;if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector("[data-choice-selectable]:last-of-type"):this.dropdown.element.querySelector("[data-choice-selectable]");else{var p=this.dropdown.element.querySelector("."+this.config.classNames.highlightedState);u=p?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&"string"==typeof t){for(var n=(i>0?"next":"previous")+"ElementSibling",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(p,"[data-choice-selectable]",d):this.dropdown.element.querySelector("[data-choice-selectable]")}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(Ee&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n="ltr"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX<i.offsetLeft;this._isScrollingOnIe=n}if(t!==this.input.element){var s=t.closest("[data-button],[data-item],[data-choice]");if(s instanceof HTMLElement){var r=e.shiftKey,o=this._store.activeItems,a=s.dataset;"button"in a?this._handleButtonAction(o,s):"item"in a?this._handleItemAction(o,s,r):"choice"in a&&this._handleChoiceAction(o,s)}e.preventDefault()}}},r._onMouseOver=function(e){var t=e.target;t instanceof HTMLElement&&"choice"in t.dataset&&this._highlightChoice(t)},r._onClick=function(e){var t=e.target;this.containerOuter.element.contains(t)?this.dropdown.isActive||this.containerOuter.isDisabled?this._isSelectOneElement&&t!==this.input.element&&!this.dropdown.element.contains(t)&&this.hideDropdown():this._isTextElement?document.activeElement!==this.input.element&&this.input.focus():(this.showDropdown(),this.containerOuter.focus()):(this._store.highlightedActiveItems.length>0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t["select-one"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t["select-multiple"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n["select-one"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n["select-multiple"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:"RESET_TO",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll("[data-choice-selectable]"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll("."+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute("aria-selected","false")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute("aria-selected","true"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m="string"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E("Object",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+"-"+this._idNames.itemChoice+"-"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?"value":s,o=e.labelKey,a=void 0===o?"label":o,c=E("Object",i)?i.choices:Array.from(i.getElementsByTagName("OPTION")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(_e({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E("Object",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(_e({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;r<n;r++)s[r-1]=arguments[r];return(t=this._templates[e]).call.apply(t,[this,i].concat(s))},r._createTemplates=function(){var e=this.config.callbackOnCreateTemplates,t={};e&&"function"==typeof e&&(t=e.call(this,S)),this._templates=o()(fe,t)},r._createElements=function(){this.containerOuter=new re({element:this._getTemplate("containerOuter",this._direction,this._isSelectElement,this._isSelectOneElement,this.config.searchEnabled,this.passedElement.element.type),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.containerInner=new re({element:this._getTemplate("containerInner"),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.input=new ae({element:this._getTemplate("input",this._placeholderValue),classNames:this.config.classNames,type:this.passedElement.element.type,preventPaste:!this.config.paste}),this.choiceList=new ce({element:this._getTemplate("choiceList",this._isSelectOneElement)}),this.itemList=new ce({element:this._getTemplate("itemList",this._isSelectOneElement)}),this.dropdown=new k({element:this._getTemplate("dropdown"),classNames:this.config.classNames,type:this.passedElement.element.type})},r._createStructure=function(){this.passedElement.conceal(),this.containerInner.wrap(this.passedElement.element),this.containerOuter.wrap(this.containerInner.element),this._isSelectOneElement?this.input.placeholder=this.config.searchPlaceholderValue||"":this._placeholderValue&&(this.input.placeholder=this._placeholderValue,this.input.setWidth()),this.containerOuter.element.appendChild(this.containerInner.element),this.containerOuter.element.appendChild(this.dropdown.element),this.containerInner.element.appendChild(this.itemList.element),this._isTextElement||this.dropdown.element.appendChild(this.choiceList.element),this._isSelectOneElement?this.config.searchEnabled&&this.dropdown.element.insertBefore(this.input.element,this.dropdown.element.firstChild):this.containerInner.element.appendChild(this.input.element),this._isSelectElement&&(this._highlightPosition=0,this._isSearching=!1,this._startLoading(),this._presetGroups.length?this._addPredefinedGroups(this._presetGroups):this._addPredefinedChoices(this._presetChoices),this._stopLoading()),this._isTextElement&&this._addPredefinedItems(this._presetItems)},r._addPredefinedGroups=function(e){var t=this,i=this.passedElement.placeholderOption;i&&"SELECT"===i.parentNode.tagName&&this._addChoice({value:i.value,label:i.innerHTML,isSelected:i.selected,isDisabled:i.disabled,placeholder:!0}),e.forEach((function(e){return t._addGroup({group:e,id:e.id||null})}))},r._addPredefinedChoices=function(e){var t=this;this.config.shouldSort&&e.sort(this.config.sorter);var i=e.some((function(e){return e.selected})),n=e.findIndex((function(e){return void 0===e.disabled||!e.disabled}));e.forEach((function(e,s){var r=e.value,o=e.label,a=e.customProperties,c=e.placeholder;if(t._isSelectElement)if(e.choices)t._addGroup({group:e,id:e.id||null});else{var l=!(!t._isSelectOneElement||i||s!==n)||e.selected,h=e.disabled;t._addChoice({value:r,label:o,isSelected:l,isDisabled:h,customProperties:a,placeholder:c})}else t._addChoice({value:r,label:o,isSelected:e.selected,isDisabled:e.disabled,customProperties:a,placeholder:c})}))},r._addPredefinedItems=function(e){var t=this;e.forEach((function(e){"object"==typeof e&&e.value&&t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}),"string"==typeof e&&t._addItem({value:e})}))},r._setChoiceOrItem=function(e){var t=this;({object:function(){e.value&&(t._isTextElement?t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}):t._addChoice({value:e.value,label:e.label,isSelected:!0,isDisabled:!1,customProperties:e.customProperties,placeholder:e.placeholder}))},string:function(){t._isTextElement?t._addItem({value:e}):t._addChoice({value:e,label:e,isSelected:!0,isDisabled:!1})}})[y(e).toLowerCase()]()},r._findAndSelectChoiceByValue=function(e){var t=this,i=this._store.choices.find((function(i){return t.config.valueComparer(i.value,e)}));i&&!i.selected&&this._addItem({value:i.value,label:i.label,choiceId:i.id,groupId:i.groupId,customProperties:i.customProperties,placeholder:i.placeholder,keyCode:i.keyCode})},r._generatePlaceholderValue=function(){if(this._isSelectElement){var e=this.passedElement.placeholderOption;return!!e&&e.text}var t=this.config,i=t.placeholder,n=t.placeholderValue,s=this.passedElement.element.dataset;if(i){if(n)return n;if(s.placeholder)return s.placeholder}return!1},n}();t.default=Se}]).default},"object"==typeof i&&"object"==typeof t?t.exports=s():"function"==typeof define&&define.amd?define([],s):"object"==typeof i?i.Choices=s():n.Choices=s()},n 440: function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default="\n.bk-root {\n /*===============================\n= Choices =\n===============================/\n /===== End of Choices ======/\n}\n.bk-root .choices {\n position: relative;\n margin-bottom: 24px;\n font-size: 16px;\n}\n.bk-root .choices:focus {\n outline: none;\n}\n.bk-root .choices:last-child {\n margin-bottom: 0;\n}\n.bk-root .choices.is-disabled .choices__inner,\n.bk-root .choices.is-disabled .choices__input {\n background-color: #eaeaea;\n cursor: not-allowed;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.bk-root .choices.is-disabled .choices__item {\n cursor: not-allowed;\n}\n.bk-root .choices [hidden] {\n display: none !important;\n}\n.bk-root .choices[data-type*=’select-one’] {\n cursor: pointer;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__inner {\n padding-bottom: 7.5px;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__input {\n display: block;\n width: 100%;\n padding: 10px;\n border-bottom: 1px solid #dddddd;\n background-color: #ffffff;\n margin: 0;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n padding: 0;\n background-size: 8px;\n position: absolute;\n top: 50%;\n right: 0;\n margin-top: -10px;\n margin-right: 25px;\n height: 20px;\n width: 20px;\n border-radius: 10em;\n opacity: 0.5;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button:hover,\n.bk-root .choices[data-type*=’select-one’] .choices__button:focus {\n opacity: 1;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__button:focus {\n box-shadow: 0px 0px 0px 2px #00bcd4;\n}\n.bk-root .choices[data-type*=’select-one’] .choices__item[data-value=’’] .choices__button {\n display: none;\n}\n.bk-root .choices[data-type*=’select-one’]:after {\n content: ‘’;\n height: 0;\n width: 0;\n border-style: solid;\n border-color: #333333 transparent transparent transparent;\n border-width: 5px;\n position: absolute;\n right: 11.5px;\n top: 50%;\n margin-top: -2.5px;\n pointer-events: none;\n}\n.bk-root .choices[data-type*=’select-one’].is-open:after {\n border-color: transparent transparent #333333 transparent;\n margin-top: -7.5px;\n}\n.bk-root .choices[data-type*=’select-one’][dir=’rtl’]:after {\n left: 11.5px;\n right: auto;\n}\n.bk-root .choices[data-type*=’select-one’][dir=’rtl’] .choices__button {\n right: auto;\n left: 0;\n margin-left: 25px;\n margin-right: 0;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__inner,\n.bk-root .choices[data-type*=’text’] .choices__inner {\n cursor: text;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__button,\n.bk-root .choices[data-type*=’text’] .choices__button {\n position: relative;\n display: inline-block;\n margin-top: 0;\n margin-right: -4px;\n margin-bottom: 0;\n margin-left: 8px;\n padding-left: 16px;\n border-left: 1px solid #008fa1;\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n background-size: 8px;\n width: 8px;\n line-height: 1;\n opacity: 0.75;\n border-radius: 0;\n}\n.bk-root .choices[data-type*=’select-multiple’] .choices__button:hover,\n.bk-root .choices[data-type*=’select-multiple’] .choices__button:focus,\n.bk-root .choices[data-type*=’text’] .choices__button:hover,\n.bk-root .choices[data-type*=’text’] .choices__button:focus {\n opacity: 1;\n}\n.bk-root .choices__inner {\n display: inline-block;\n vertical-align: top;\n width: 100%;\n background-color: #f9f9f9;\n padding: 7.5px 7.5px 3.75px;\n border: 1px solid #dddddd;\n border-radius: 2.5px;\n font-size: 14px;\n min-height: 44px;\n overflow: hidden;\n}\n.bk-root .is-focused .choices__inner,\n.bk-root .is-open .choices__inner {\n border-color: #b7b7b7;\n}\n.bk-root .is-open .choices__inner {\n border-radius: 2.5px 2.5px 0 0;\n}\n.bk-root .is-flipped.is-open .choices__inner {\n border-radius: 0 0 2.5px 2.5px;\n}\n.bk-root .choices__list {\n margin: 0;\n padding-left: 0;\n list-style: none;\n}\n.bk-root .choices__list–single {\n display: inline-block;\n padding: 4px 16px 4px 4px;\n width: 100%;\n}\n.bk-root [dir=’rtl’] .choices__list–single {\n padding-right: 4px;\n padding-left: 16px;\n}\n.bk-root .choices__list–single .choices__item {\n width: 100%;\n}\n.bk-root .choices__list–multiple {\n display: inline;\n}\n.bk-root .choices__list–multiple .choices__item {\n display: inline-block;\n vertical-align: middle;\n border-radius: 20px;\n padding: 4px 10px;\n font-size: 12px;\n font-weight: 500;\n margin-right: 3.75px;\n margin-bottom: 3.75px;\n background-color: #00bcd4;\n border: 1px solid #00a5bb;\n color: #ffffff;\n word-break: break-all;\n box-sizing: border-box;\n}\n.bk-root .choices__list–multiple .choices__item[data-deletable] {\n padding-right: 5px;\n}\n.bk-root [dir=’rtl’] .choices__list–multiple .choices__item {\n margin-right: 0;\n margin-left: 3.75px;\n}\n.bk-root .choices__list–multiple .choices__item.is-highlighted {\n background-color: #00a5bb;\n border: 1px solid #008fa1;\n}\n.bk-root .is-disabled .choices__list–multiple .choices__item {\n background-color: #aaaaaa;\n border: 1px solid #919191;\n}\n.bk-root .choices__list–dropdown {\n visibility: hidden;\n z-index: 1;\n position: absolute;\n width: 100%;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n top: 100%;\n margin-top: -1px;\n border-bottom-left-radius: 2.5px;\n border-bottom-right-radius: 2.5px;\n overflow: hidden;\n word-break: break-all;\n will-change: visibility;\n}\n.bk-root .choices__list–dropdown.is-active {\n visibility: visible;\n}\n.bk-root .is-open .choices__list–dropdown {\n border-color: #b7b7b7;\n}\n.bk-root .is-flipped .choices__list–dropdown {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: -1px;\n border-radius: 0.25rem 0.25rem 0 0;\n}\n.bk-root .choices__list–dropdown .choices__list {\n position: relative;\n max-height: 300px;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n will-change: scroll-position;\n}\n.bk-root .choices__list–dropdown .choices__item {\n position: relative;\n padding: 10px;\n font-size: 14px;\n}\n.bk-root [dir=’rtl’] .choices__list–dropdown .choices__item {\n text-align: right;\n}\n@media (min-width: 640px) {\n .bk-root .choices__list–dropdown .choices__item–selectable {\n padding-right: 100px;\n }\n .bk-root .choices__list–dropdown .choices__item–selectable:after {\n content: attr(data-select-text);\n font-size: 12px;\n opacity: 0;\n position: absolute;\n right: 10px;\n top: 50%;\n transform: translateY(-50%);\n }\n .bk-root [dir=’rtl’] .choices__list–dropdown .choices__item–selectable {\n text-align: right;\n padding-left: 100px;\n padding-right: 10px;\n }\n .bk-root [dir=’rtl’] .choices__list–dropdown .choices__item–selectable:after {\n right: auto;\n left: 10px;\n }\n}\n.bk-root .choices__list–dropdown .choices__item–selectable.is-highlighted {\n background-color: #f2f2f2;\n}\n.bk-root .choices__list–dropdown .choices__item–selectable.is-highlighted:after {\n opacity: 0.5;\n}\n.bk-root .choices__item {\n cursor: default;\n}\n.bk-root .choices__item–selectable {\n cursor: pointer;\n}\n.bk-root .choices__item–disabled {\n cursor: not-allowed;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n opacity: 0.5;\n}\n.bk-root .choices__heading {\n font-weight: 600;\n font-size: 12px;\n padding: 10px;\n border-bottom: 1px solid #f7f7f7;\n color: gray;\n}\n.bk-root .choices__button {\n text-indent: -9999px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n border: 0;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center;\n cursor: pointer;\n}\n.bk-root .choices__button:focus {\n outline: none;\n}\n.bk-root .choices__input {\n display: inline-block;\n vertical-align: baseline;\n background-color: #f9f9f9;\n font-size: 14px;\n margin-bottom: 5px;\n border: 0;\n border-radius: 0;\n max-width: 100%;\n padding: 4px 0 4px 2px;\n}\n.bk-root .choices__input:focus {\n outline: 0;\n}\n.bk-root [dir=’rtl’] .choices__input {\n padding-right: 2px;\n padding-left: 0;\n}\n.bk-root .choices__placeholder {\n opacity: 0.5;\n}\n.bk-root .choices {\n width: 100%;\n}\n.bk-root .choices {\n box-sizing: border-box;\n}\n.bk-root .choices ,\n.bk-root .choices *:before,\n.bk-root .choices *:after {\n box-sizing: inherit;\n}\n.bk-root .choices__inner .choices__item.light {\n background-color: rgba(0, 126, 255, 0.08);\n border-radius: 5px;\n border: 1px solid rgba(0, 126, 255, 0.24);\n color: #007eff;\n}\n.bk-root .choices__inner .choices__item.solid {\n background-color: #1f77b4;\n border: none;\n border-radius: 5px;\n color: white;\n}\n.bk-root .choices__inner .choices__item.solid .is-highlighted {\n background-color: #1f77b4;\n border: none;\n}\n.bk-root .choices__input {\n background-color: transparent;\n}\n.bk-root .choices__inner {\n background: transparent;\n border: 1px solid darkgray;\n border-radius: 5px;\n min-height: unset;\n}\n.bk-root .choices__list {\n white-space: initial;\n}\n.bk-root .choices[data-type*=select-multiple] .choices__button.light {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDA3ZWZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n}\n.bk-root .choices[data-type*=select-multiple] .choices__button.solid {\n background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjZmZmZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);\n border-left: 1px solid white;\n opacity: 1;\n}\n"},n 441: function _(e,t,l){Object.defineProperty(l,"__esModule",{value:!0});const i=e(1),n=i.__importStar(e(188)),s=e(410),u=e(72),h=e(11),o=i.__importStar(e(18)),a=e(442),r=e(412),d=/^[-+]?\d*$/,p=/^[-+]?\d\.?\d*(?:(?:\d|\d.)[eE][-+]?)*\d*$/;class _ extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value}),this.connect(this.model.properties.low.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(t<=l,"Invalid bounds, low must be inferior to high"),null!=e&&null!=t&&(this.model.value=Math.max(e,t))}),this.connect(this.model.properties.high.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(l>=t,"Invalid bounds, high must be superior to low"),null!=e&&null!=l&&(this.model.value=Math.min(e,l))}),this.connect(this.model.properties.high.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):""}_set_input_filter(e){this.input_el.addEventListener("input",()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}})}render(){super.render(),this.input_el=u.input({type:"text",class:r.bk_input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener("change",()=>this.change_input()),this.input_el.addEventListener("focusout",()=>this.input_el.value=this.format_value),this.group_el.appendChild(this.input_el)}set_input_filter(){"int"==this.model.mode?this._set_input_filter(e=>d.test(e)):"float"==this.model.mode&&this._set_input_filter(e=>p.test(e))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=""!==this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=_,_.__name__="NumericInputView";class m extends s.InputWidget{constructor(e){super(e)}static init_NumericInput(){this.prototype.default_view=_,this.define({value:[o.Number,null],placeholder:[o.String,""],mode:[o.Any,"int"],format:[o.Any],low:[o.Number,null],high:[o.Number,null]})}_formatter(e,t){return a.isString(t)?n.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):""+e}}l.NumericInput=m,m.__name__="NumericInput",m.init_NumericInput()},n 442: function _(t,_,r){Object.defineProperty(r,"__esModule",{value:!0});const e=t(1);e.__exportStar(t(13),r),e.__exportStar(t(9),r),e.__exportStar(t(29),r),e.__exportStar(t(443),r),e.__exportStar(t(8),r),e.__exportStar(t(25),r)},n 443: function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});class n{constructor(e){this.seed=e%2147483647,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%2147483647,this.seed}float(){return(this.integer()-1)/2147483646}floats(e){const t=new Array(e);for(let s=0;s<e;s++)t[s]=this.float();return t}}s.Random=n,n.__name__="Random",s.random=new n(Date.now())},n 444: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e(430),i=e(72);class n extends s.MarkupView{render(){super.render();const e=i.pre({style:{overflow:"auto"}},this.model.text);this.markup_el.appendChild(e)}}r.PreTextView=n,n.__name__="PreTextView";class _ extends s.Markup{constructor(e){super(e)}static init_PreText(){this.prototype.default_view=n}}r.PreText=_,_.__name__="PreText",_.init_PreText()},n 445: function _(t,o,e){Object.defineProperty(e,"__esModule",{value:!0});const i=t(1),a=t(415),n=t(72),u=i.__importStar(t(18)),s=t(173);class _ extends a.ButtonGroupView{change_active(t){this.model.active!==t&&(this.model.active=t)}_update_active(){const{active:t}=this.model;this._buttons.forEach((o,e)=>{n.classes(o).toggle(s.bk_active,t===e)})}}e.RadioButtonGroupView=_,_.__name__="RadioButtonGroupView";class c extends a.ButtonGroup{constructor(t){super(t)}static init_RadioButtonGroup(){this.prototype.default_view=_,this.define({active:[u.Any,null]})}}e.RadioButtonGroup=c,c.__name__="RadioButtonGroup",c.init_RadioButtonGroup()},n 446: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e(1),a=e(72),s=e(29),o=n.__importStar(e(18)),d=e(417),l=e(173),p=e(412);class r extends d.InputGroupView{render(){super.render();const e=a.div({class:[p.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const i=s.uniqueId(),{active:t,labels:n}=this.model;this._inputs=[];for(let s=0;s<n.length;s++){const o=a.input({type:"radio",name:i,value:""+s});o.addEventListener("change",()=>this.change_active(s)),this._inputs.push(o),this.model.disabled&&(o.disabled=!0),s==t&&(o.checked=!0);const d=a.label({},o,a.span({},n[s]));e.appendChild(d)}}change_active(e){this.model.active=e}}t.RadioGroupView=r,r.__name__="RadioGroupView";class u extends d.InputGroup{constructor(e){super(e)}static init_RadioGroup(){this.prototype.default_view=r,this.define({active:[o.Number],labels:[o.Array,[]],inline:[o.Boolean,!1]})}}t.RadioGroup=u,u.__name__="RadioGroup",u.init_RadioGroup()},n 447: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1).__importStar(e(188)),a=e(423),n=e(8);class o extends a.AbstractRangeSliderView{}r.RangeSliderView=o,o.__name__="RangeSliderView";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour="drag",this.connected=[!1,!0,!1]}static init_RangeSlider(){this.prototype.default_view=o,this.override({format:"0[.]00"})}_formatter(e,t){return n.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.RangeSlider=s,s.__name__="RangeSlider",s.init_RangeSlider()},n 448: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(72),l=e(8),o=e(13),p=n.__importStar(e(18)),u=e(410),a=e(412);class _ extends u.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,()=>{this._update_value()}),this.on_change(t,()=>{s.empty(this.input_el),s.append(this.input_el,…this.options_el())})}options_el(){function e(e){return e.map(e=>{let t,i;return l.isString(e)?t=i=e:[t,i]=e,s.option({value:t},i)})}const{options:t}=this.model;return l.isArray(t)?e(t):o.entries(t).map(([t,i])=>s.optgroup({label:t},e(i)))}render(){super.render(),this.input_el=s.select({class:a.bk_input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;null!=e&&0!=e.length&&(this.input_el.value=this.model.value)}}i.SelectView=_,_.__name__="SelectView";class h extends u.InputWidget{constructor(e){super(e)}static init_Select(){this.prototype.default_view=_,this.define({value:[p.String,""],options:[p.Any,[]]})}}i.Select=h,h.__name__="Select",h.init_Select()},n 449: function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const i=e(1).__importStar(e(188)),o=e(423),s=e(8);class _ extends o.AbstractSliderView{}r.SliderView=_,_.__name__="SliderView";class a extends o.AbstractSlider{constructor(e){super(e),this.behaviour="tap",this.connected=[!0,!1]}static init_Slider(){this.prototype.default_view=_,this.override({format:"0[.]00"})}_formatter(e,t){return s.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.Slider=a,a.__name__="Slider",a.init_Slider()},n 450: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e(1),s=e(441),l=n.__importStar(e(18)),r=e(72),{min:o,max:_,floor:a,abs:h}=Math;function u(e){return a(e)!==e?e.toFixed(16).replace(/0+$/,"").split(".")[1].length:0}class p extends s.NumericInputView{buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.buttons())r.toggle_attribute(e,"disabled",this.model.disabled)})}render(){super.render(),this.wrapper_el=r.div({class:"bk-spin-wrapper"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=r.button({class:"bk-spin-btn bk-spin-btn-up"}),this.btn_down_el=r.button({class:"bk-spin-btn bk-spin-btn-down"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())r.toggle_attribute(e,"disabled",this.model.disabled),e.addEventListener("mousedown",e=>this._btn_mouse_down(e)),e.addEventListener("mouseup",()=>this._btn_mouse_up()),e.addEventListener("mouseleave",()=>this._btn_mouse_leave());this.input_el.addEventListener("keydown",e=>this._input_key_down(e)),this.input_el.addEventListener("keyup",()=>this.model.value_throttled=this.model.value),this.input_el.addEventListener("wheel",e=>this._input_mouse_wheel(e)),this.input_el.addEventListener("wheel",function(e,t,i=!1){let n;return function(…s){const l=this,r=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),r&&e.apply(l,s)}}(()=>{this.model.value_throttled=this.model.value},this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model;return _(…[e,t,i].map(h).reduce((e,t)=>(null!=t&&e.push(t),e),[]).map(u))}_start_incrementation(e){clearInterval(this._interval_handle),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(e),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(2*e),this._interval/10))}this.increment(e)};this._interval_handle=setInterval(()=>i(e*t),this._interval)}_stop_incrementation(){clearInterval(this._interval_handle),this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._start_incrementation(t)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?o(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?_(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__="SpinnerView";class d extends s.NumericInput{constructor(e){super(e)}static init_Spinner(){this.prototype.default_view=p,this.define({value_throttled:[l.Number,null],step:[l.Number,1],page_step_multiplier:[l.Number,10],wheel_wait:[l.Number,100]}),this.override({mode:"float"})}}i.Spinner=d,d.__name__="Spinner",d.init_Spinner()},n 451: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),n=e(410),l=e(72),h=s.__importStar(e(18)),o=e(412);class a extends n.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||""),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.rows.change,()=>this.input_el.rows=this.model.rows),this.connect(this.model.properties.cols.change,()=>this.input_el.cols=this.model.cols),this.connect(this.model.properties.max_length.change,()=>this.input_el.maxLength=this.model.max_length)}render(){super.render(),this.input_el=l.textarea({class:o.bk_input,name:this.model.name,disabled:this.model.disabled,placeholder:this.model.placeholder,cols:this.model.cols,rows:this.model.rows,maxLength:this.model.max_length}),this.input_el.textContent=this.model.value,this.input_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}}i.TextAreaInputView=a,a.__name__="TextAreaInputView";class p extends n.InputWidget{constructor(e){super(e)}static init_TextAreaInput(){this.prototype.default_view=a,this.define({value:[h.String,""],value_input:[h.String,""],placeholder:[h.String,""],cols:[h.Number,20],rows:[h.Number,2],max_length:[h.Number,500]})}}i.TextAreaInput=p,p.__name__="TextAreaInput",p.init_TextAreaInput()},n 452: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),c=e(404),o=e(72),a=s.__importStar(e(18)),n=e(173);class l extends c.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._update_active())}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){o.classes(this.button_el).toggle(n.bk_active,this.model.active)}}i.ToggleView=l,l.__name__="ToggleView";class _ extends c.AbstractButton{constructor(e){super(e)}static init_Toggle(){this.prototype.default_view=l,this.define({active:[a.Boolean,!1]}),this.override({label:"Toggle"})}}i.Toggle=_,_.__name__="Toggle",_.init_Toggle()},n }, 402, {"models/widgets/main":402,"models/widgets/index":403,"models/widgets/abstract_button":404,"models/widgets/control":405,"models/widgets/widget":472,"models/widgets/abstract_icon":407,"models/widgets/autocomplete_input":408,"models/widgets/text_input":409,"models/widgets/input_widget":410,"styles/widgets/inputs.css":411,"styles/widgets/inputs":412,"models/widgets/button":413,"models/widgets/checkbox_button_group":414,"models/widgets/button_group":415,"models/widgets/checkbox_group":416,"models/widgets/input_group":417,"models/widgets/color_picker":418,"models/widgets/date_picker":419,"styles/widgets/flatpickr.css":421,"models/widgets/date_range_slider":422,"models/widgets/abstract_slider":423,"styles/widgets/sliders":425,"styles/widgets/nouislider.css":426,"styles/widgets/sliders.css":427,"models/widgets/date_slider":428,"models/widgets/div":429,"models/widgets/markup":430,"styles/clearfix":431,"styles/clearfix.css":432,"models/widgets/dropdown":433,"models/widgets/file_input":434,"models/widgets/multiselect":435,"models/widgets/paragraph":436,"models/widgets/password_input":437,"models/widgets/multichoice":438,"styles/widgets/choices.css":440,"models/widgets/numeric_input":441,"api/linalg":442,"core/util/random":443,"models/widgets/pretext":444,"models/widgets/radio_button_group":445,"models/widgets/radio_group":446,"models/widgets/range_slider":447,"models/widgets/selectbox":448,"models/widgets/slider":449,"models/widgets/spinner":450,"models/widgets/textarea_input":451,"models/widgets/toggle":452}, {});n })nnn / END bokeh-widgets.min.js /n },n n function(Bokeh) {n / BEGIN bokeh-tables.min.js /n /!n * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn * All rights reserved.n * n * Redistribution and use in source and binary forms, with or without modification,n * are permitted provided that the following conditions are met:n * n * Redistributions of source code must retain the above copyright notice,n * this list of conditions and the following disclaimer.n * n * Redistributions in binary form must reproduce the above copyright notice,n * this list of conditions and the following disclaimer in the documentationn * and/or other materials provided with the distribution.n * n * Neither the name of Anaconda nor the names of any contributorsn * may be used to endorse or promote products derived from this softwaren * without specific prior written permission.n * n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn * THE POSSIBILITY OF SUCH DAMAGE.n /n (function(root, factory) {n factory(root["Bokeh"], "2.2.3");n })(this, function(Bokeh, version) {n var define;n return (function(modules, entry, aliases, externals) {n const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n if (bokeh != null) {n return bokeh.register_plugin(modules, entry, aliases);n } else {n throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n }n })n ({n 453: function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const r=e(1).__importStar(e(454));o.Tables=r;e(7).register_models(r)},n 454: function _(a,g,r){Object.defineProperty(r,"__esModule",{value:!0});const e=a(1);e.__exportStar(a(455),r),e.__exportStar(a(475),r);var t=a(456);r.DataTable=t.DataTable;var o=a(474);r.TableColumn=o.TableColumn;var n=a(473);r.TableWidget=n.TableWidget;var u=a(481);r.AvgAggregator=u.AvgAggregator,r.MinAggregator=u.MinAggregator,r.MaxAggregator=u.MaxAggregator,r.SumAggregator=u.SumAggregator;var l=a(482);r.GroupingInfo=l.GroupingInfo,r.DataCube=l.DataCube},n 455: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1).__importStar(e(18)),r=e(72),a=e(78),n=e(81),l=e(456),u=e(478);class d extends a.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error("unsupported")}css_classes(){return super.css_classes().concat(u.bk_cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener("keydown",e=>{switch(e.keyCode){case r.Keys.Left:case r.Keys.Right:case r.Keys.Up:case r.Keys.Down:case r.Keys.PageUp:case r.Keys.PageDown:e.stopImmediatePropagation()}})}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(""==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[l.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=d,d.__name__="CellEditorView";class o extends n.Model{}i.CellEditor=o,o.__name__="CellEditor";class _ extends d{get emptyValue(){return""}_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=_,_.__name__="StringEditorView";class c extends o{static init_StringEditor(){this.prototype.default_view=_,this.define({completions:[s.Array,[]]})}}i.StringEditor=c,c.__name__="StringEditor",c.init_StringEditor();class p extends d{_createInput(){return r.textarea()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=p,p.__name__="TextEditorView";class h extends o{static init_TextEditor(){this.prototype.default_view=p}}i.TextEditor=h,h.__name__="TextEditor",h.init_TextEditor();class E extends d{_createInput(){return r.select()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild(r.option({value:e},e));this.focus()}}i.SelectEditorView=E,E.__name__="SelectEditorView";class V extends o{static init_SelectEditor(){this.prototype.default_view=E,this.define({options:[s.Array,[]]})}}i.SelectEditor=V,V.__name__="SelectEditor",V.init_SelectEditor();class m extends d{_createInput(){return r.input({type:"text"})}}i.PercentEditorView=m,m.__name__="PercentEditorView";class f extends o{static init_PercentEditor(){this.prototype.default_view=m}}i.PercentEditor=f,f.__name__="PercentEditor",f.init_PercentEditor();class x extends d{_createInput(){return r.input({type:"checkbox"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=x,x.__name__="CheckboxEditorView";class w extends o{static init_CheckboxEditor(){this.prototype.default_view=x}}i.CheckboxEditor=w,w.__name__="CheckboxEditor",w.init_CheckboxEditor();class g extends d{_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseInt(this.getValue(),10)||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:"Please enter a valid integer"}:super.validateValue(e)}}i.IntEditorView=g,g.__name__="IntEditorView";class y extends o{static init_IntEditor(){this.prototype.default_view=g,this.define({step:[s.Number,1]})}}i.IntEditor=y,y.__name__="IntEditor",y.init_IntEditor();class v extends d{_createInput(){return r.input({type:"text"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseFloat(this.getValue())||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:"Please enter a valid number"}:super.validateValue(e)}}i.NumberEditorView=v,v.__name__="NumberEditorView";class b extends o{static init_NumberEditor(){this.prototype.default_view=v,this.define({step:[s.Number,.01]})}}i.NumberEditor=b,b.__name__="NumberEditor",b.init_NumberEditor();class I extends d{_createInput(){return r.input({type:"text"})}}i.TimeEditorView=I,I.__name__="TimeEditorView";class N extends o{static init_TimeEditor(){this.prototype.default_view=I}}i.TimeEditor=N,N.__name__="TimeEditor",N.init_TimeEditor();class C extends d{_createInput(){return r.input({type:"text"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=C,C.__name__="DateEditorView";class D extends o{static init_DateEditor(){this.prototype.default_view=C}}i.DateEditor=D,D.__name__="DateEditor",D.init_DateEditor()},n 456: function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e(1),o=e(457),n=e(461),l=e(462),r=e(463),d=e(29),a=e(8),h=e(9),u=e(13),c=e(19),_=e(472),m=e(473),g=e(474),p=e(478),f=s.__importDefault(e(479)),b=s.__importDefault(e(480));i.DTINDEX_NAME="__bkdt_internal_index__",i.AutosizeModes={fit_columns:"FCV",fit_viewport:"FVC",force_fit:"LFF",none:"NOA"};class w{constructor(e,t){this.init(e,t)}init(e,t){if(i.DTINDEX_NAME in e.data)throw new Error(`special name ${i.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[…this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of u.keys(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[i.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==i.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return h.range(0,this.getLength()).map(e=>this.getItem(e))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,h.range(e,t,i).map(e=>this.getItem(e))}sort(e){let t=e.map(e=>[e.sortCol.field,e.sortAsc?1:-1]);0==t.length&&(t=[[i.DTINDEX_NAME,1]]);const s=this.getRecords(),o=this.index.slice();this.index.sort((e,i)=>{for(const[n,l]of t){const t=s[o.indexOf(e)][n],r=s[o.indexOf(i)][n];if(t!==r)return a.isNumber(t)&&a.isNumber(r)?l*(t-r||+isNaN(t)-+isNaN(r)):""+t>""+r?l:-l}return 0})}}i.TableDataProvider=w,w.__name__="TableDataProvider";class x extends _.WidgetView{constructor(){super(…arguments),this._in_selection_update=!1,this._warned_not_reorderable=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.source.streaming,()=>this.updateGrid()),this.connect(this.model.source.patching,()=>this.updateGrid()),this.connect(this.model.source.change,()=>this.updateGrid()),this.connect(this.model.source.properties.data.change,()=>this.updateGrid()),this.connect(this.model.source.selected.change,()=>this.updateSelection()),this.connect(this.model.source.selected.properties.indices.change,()=>this.updateSelection())}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[…super.styles(),f.default,b.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return"fit_viewport"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map(t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc}));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map(e=>this.data.index.indexOf(e)).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:d.uniqueId(),name:this.model.index_header,field:i.DTINDEX_NAME,width:this.model.index_width,behavior:"select",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:p.bk_cell_index,headerCssClass:p.bk_header_index}}css_classes(){return super.css_classes().concat(p.bk_data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.map(e=>Object.assign(Object.assign({},e.toColumn()),{parent:this}));let s=null;if("checkbox"==this.model.selectable&&(s=new n.CheckboxSelectColumn({cssClass:p.bk_cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:d}=this.model;!d||"undefined"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(this._warned_not_reorderable||(c.logger.warn("jquery-ui is required to enable DataTable.reorderable"),this._warned_not_reorderable=!0),d=!1);let h=-1,u=!1;const{frozen_rows:_,frozen_columns:m}=this.model,g=null==m?-1:m-1;null!=_&&(u=_<0,h=Math.abs(_));const f={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:d,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:g,frozenRow:h,frozenBottom:u},b=null!=this.grid;if(this.data=new w(this.model.source,this.model.view),this.grid=new r.Grid(this.el,this.data,t,f),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))}),!1!==this.model.selectable){this.grid.setSelectionModel(new o.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return a.isString(i)&&(i=i.replace(/\n/g,"\\n")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new l.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map(e=>this.data.index[e]))}),this.updateSelection(),this.model.header_row||this._hide_header()}b&&this.updateLayout(b,!1)}_hide_header(){for(const e of this.el.querySelectorAll(".slick-header-columns"))e.style.height="0px";this.grid.resizeCanvas()}}i.DataTableView=x,x.__name__="DataTableView";class C extends m.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}static init_DataTable(){this.prototype.default_view=x,this.define(({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Null:r})=>({autosize_mode:[n("fit_columns","fit_viewport","none","force_fit"),"force_fit"],auto_edit:[t,!1],columns:[e(s(g.TableColumn)),[]],fit_columns:[l(t,r),null],frozen_columns:[l(i,r),null],frozen_rows:[l(i,r),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n("checkbox")),!0],index_position:[l(i,r),0],index_header:[o,"#"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]})),this.override({width:600,height:400})}update_sort_columns(e){this._sort_columns=e.map(({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t}))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?h.some(t,t=>e.top<=t&&t<=e.bottom)?null:Math.max(0,Math.min(…t)-1):null}}i.DataTable=C,C.__name__="DataTable",C.init_DataTable()},n 457: function _(e,t,n){var o=e(458),r=e(460);t.exports={RowSelectionModel:function(e){var t,n,l,i=[],c=this,u=new r.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n<e.length;n++)for(var o=e[n].fromRow;o<=e[n].toRow;o++)t.push(o);return t}function h(e){for(var n=[],o=t.getColumns().length-1,l=0;l<e.length;l++)n.push(new r.Range(e[l],0,e[l],o));return n}function w(){return f(i)}function g(e){(i&&0!==i.length||e&&0!==e.length)&&(i=e,c.onSelectedRangesChanged.notify(i))}function v(e,n){l.selectActiveRow&&null!=n.row&&g([new r.Range(n.row,0,n.row,t.getColumns().length-1)])}function p(e){var n=t.getActiveCell();if(t.getOptions().multiSelect&&n&&e.shiftKey&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&(e.which==r.keyCode.UP||e.which==r.keyCode.DOWN)){var o=w();o.sort((function(e,t){return e-t})),o.length||(o=[n.row]);var l,i=o[0],c=o[o.length-1];if((l=e.which==r.keyCode.DOWN?n.row<c||i==c?++c:++i:n.row<c?–c:–i)>=0&&l<t.getDataLength())t.scrollRowIntoView(l),g(h(function(e,t){var n,o=[];for(n=e;n<=t;n++)o.push(n);for(n=t;n<e;n++)o.push(n);return o}(i,c)));e.preventDefault(),e.stopPropagation()}}function y(e){var n=t.getCellFromEvent(e);if(!n||!t.canCellBeActive(n.row,n.cell))return!1;if(!t.getOptions().multiSelect||!e.ctrlKey&&!e.shiftKey&&!e.metaKey)return!1;var r=f(i),l=o.inArray(n.row,r);if(-1===l&&(e.ctrlKey||e.metaKey))r.push(n.row),t.setActiveCell(n.row,n.cell);else if(-1!==l&&(e.ctrlKey||e.metaKey))r=o.grep(r,(function(e,t){return e!==n.row})),t.setActiveCell(n.row,n.cell);else if(r.length&&e.shiftKey){var c=r.pop(),u=Math.min(n.row,c),s=Math.max(n.row,c);r=[];for(var a=u;a<=s;a++)a!==c&&r.push(a);r.push(c),t.setActiveCell(n.row,n.cell)}return g(h(r)),e.stopImmediatePropagation(),!0}o.extend(this,{getSelectedRows:w,setSelectedRows:function(e){g(h(e))},getSelectedRanges:function(){return i},setSelectedRanges:g,init:function(n){l=o.extend(!0,{},s,e),t=n,u.subscribe(t.onActiveCellChanged,a(v)),u.subscribe(t.onKeyDown,a(p)),u.subscribe(t.onClick,a(y))},destroy:function(){u.unsubscribeAll()},pluginName:"RowSelectionModel",onSelectedRangesChanged:new r.Event})}}},n 458: function _(e,n,f){n.exports="undefined"!=typeof $?$:e(459)},n 459: function _(e,t,n){n /!n * jQuery JavaScript Library v3.5.1n * https://jquery.com/n n * Includes Sizzle.jsn * https://sizzlejs.com/n *n * Copyright JS Foundation and other contributorsn * Released under the MIT licensen * https://jquery.org/licensen *n * Date: 2020-05-04T22:49Zn */n !function(e,n){"use strict";"object"==typeof t&&"object"==typeof t.exports?t.exports=e.document?n(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(e)}("undefined"!=typeof window?window:this,(function(e,t){"use strict";var n=[],r=Object.getPrototypeOf,i=n.slice,o=n.flat?function(e){return n.flat.call(e)}:function(e){return n.concat.apply([],e)},a=n.push,s=n.indexOf,u={},l=u.toString,c=u.hasOwnProperty,f=c.toString,p=f.call(Object),d={},h=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},g=function(e){return null!=e&&e===e.window},v=e.document,y={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||v).createElement("script");if(o.text=e,t)for(r in y)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?u[l.call(e)]||"object":typeof e}var b=function(e,t){return new b.fn.init(e,t)};function w(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!h(e)&&!g(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}b.fn=b.prototype={jquery:"3.5.1",constructor:b,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return b.each(this,e)},map:function(e){return this.pushStack(b.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(b.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(b.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:a,sort:n.sort,splice:n.splice},b.extend=b.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||h(a)||(a={}),s===u&&(a=this,s–);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(b.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||b.isPlainObject(n)?n:{},i=!1,a[t]=b.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},b.extend({expando:"jQuery"+("3.5.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==l.call(e))&&(!(t=r(e))||"function"==typeof(n=c.call(t,"constructor")&&t.constructor)&&f.call(n)===p)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){m(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(w(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(w(Object(e))?b.merge(n,"string"==typeof e?[e]:e):a.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:s.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,a=0,s=[];if(w(e))for(r=e.length;a<r;a++)null!=(i=t(e[a],a,n))&&s.push(i);else for(a in e)null!=(i=t(e[a],a,n))&&s.push(i);return o(s)},guid:1,support:d}),"function"==typeof Symbol&&(b.fn[Symbol.iterator]=n[Symbol.iterator]),b.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),(function(e,t){u["[object "+t+"]"]=t.toLowerCase()}));var T=n /!n * Sizzle CSS Selector Engine v2.3.5n * https://sizzlejs.com/n n * Copyright JS Foundation and other contributorsn * Released under the MIT licensen * https://js.foundation/n *n * Date: 2020-03-14n */n function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,v,y,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ue(),S=ue(),k=ue(),A=ue(),N=function(e,t){return e===t&&(f=!0),0},D={}.hasOwnProperty,j=[],q=j.pop,L=j.push,H=j.push,O=j.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:’((?:\\\\.|[^\\\\’]))’|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\"+I+\"))|)"+M+"\\]",F=":("+I+")(?:\\(((‘((?:\\\\.|[^\\\\’]))’|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+","+M+""),z=new RegExp("^"+M+"([>+~]|"+M+")"+M+""),U=new RegExp(M+"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\d*)n|)"+M+"(?:([+-]|)"+M+"*(\\d+)|))"+M+"\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d)"+M+"\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{H.apply(j=O.call(w.childNodes),w.childNodes),j[w.childNodes.length].nodeType}catch(e){H={apply:j.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+" "]&&(!v||!v.test(e))&&(1!==w||"object"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute("id"))?c=c.replace(re,ie):t.setAttribute("id",c=b)),s=(h=a(e)).length;s–;)h[s]=(c?"#"+c:":scope")+" "+xe(h[s]);y=h.join(",")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace($,"$1"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split("|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||"button"===n)&&t.type===e}}function ge(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a–;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),n.attributes=ce((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(""===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML="<a id=’"+b+"’></a><select id=’"+b+"-\r\\’ msallowcapture=’’><option selected=’’></option></select>",e.querySelectorAll("[msallowcapture^=’’]").length&&v.push("[^$]="+M+"*(?:’’|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+b+"-]").length||v.push("~="),(t=d.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name=’’]").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:’’|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+b+"+").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")})),ce((function(e){e.innerHTML="<a href=’’ disabled=’disabled’></a><select disabled=’disabled’><option/></select>";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll(",:x"),v.push(",.*:")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,""),m.call(e,"[s!=’’]:x"),y.push("!=",F)})),v=v.length&&new RegExp(v.join("|")),y=y.length&&new RegExp(y.join("|")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+" "]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i–;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return""===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||"")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(B," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a–;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,"$1"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s–;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||"")||se.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),odd:ve((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),lt:ve((function(e,t,n){for(var r=n<0?n+t:n>t?t:n;–r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e}))}}).pseudos.nth=r.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=de(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=he(t);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(e,t,n){var r=t.dir,i=t.next,o=i||r,a=n&&"parentNode"===o,s=C++;return t.first?function(t,n,i){for(;t=t[r];)if(1===t.nodeType||a)return e(t,n,i);return!1}:function(t,n,u){var l,c,f,p=[T,s];if(u){for(;t=t[r];)if((1===t.nodeType||a)&&e(t,n,u))return!0}else for(;t=t[r];)if(1===t.nodeType||a)if(c=(f=t[b]||(t[b]={}))[t.uniqueID]||(f[t.uniqueID]={}),i&&i===t.nodeName.toLowerCase())t=t[r]||t;else{if((l=c[o])&&l[0]===T&&l[1]===s)return p[2]=l[2];if(c[o]=p,p[2]=e(t,n,u))return!0}return!1}}function we(e){return e.length>1?function(t,n,r){for(var i=e.length;i–;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(e,t,n,r,i,o){return r&&!r[b]&&(r=Ce(r)),i&&!i[b]&&(i=Ce(i,o)),le((function(o,a,s,u){var l,c,f,p=[],d=[],h=a.length,g=o||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(t||"",s.nodeType?[s]:s,[]),v=!e||!o&&t?g:Te(g,p,e,s,u),y=n?i||(o?e:h||r)?[]:a:v;if(n&&n(v,y,s,u),r)for(l=Te(y,d),r(l,[],s,u),c=l.length;c–;)(f=l[c])&&(y[d[c]]=!(v[d[c]]=f));if(o){if(i||e){if(i){for(l=[],c=y.length;c–;)(f=y[c])&&l.push(v[c]=f);i(null,y=[],l,u)}for(c=y.length;c–;)(f=y[c])&&(l=i?P(o,f):p[c])>-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u<o;u++)if(n=r.relative[e[u].type])p=[be(we(p),n)];else{if((n=r.filter[e[u].type].apply(null,e[u].matches))[b]){for(i=++u;i<o&&!r.relative[e[i].type];i++);return Ce(u>1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:" "===e[u-2].type?"":""})).replace($,"$1"),n,u<i&&Ee(e.slice(u,i)),i<o&&Ee(e=e.slice(i)),i<o&&xe(e))}p.push(n)}return we(p)}return me.prototype=r.filters=r.pseudos,r.setFilters=new me,a=se.tokenize=function(e,t){var n,i,o,a,s,u,l,c=S[e+" "];if(c)return t?0:c.slice(0);for(s=e,u=[],l=r.preFilter;s;){for(a in n&&!(i=_.exec(s))||(i&&(s=s.slice(i[0].length)||s),u.push(o=[])),n=!1,(i=z.exec(s))&&(n=i.shift(),o.push({value:n,type:i[0].replace($," ")}),s=s.slice(n.length)),r.filter)!(i=G[a].exec(s))||l[a]&&!(i=l[a](i))||(n=i.shift(),o.push({value:n,type:a,matches:i}),s=s.slice(n.length));if(!n)break}return t?s.length:s?se.error(e):S(e,u).slice(0)},s=se.compile=function(e,t){var n,i=[],o=[],s=k[e+" "];if(!s){for(t||(t=a(e)),n=t.length;n–;)(s=Ee(t[n]))[b]?i.push(s):o.push(s);(s=k(e,function(e,t){var n=t.length>0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y–,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m–;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i))).selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o–&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split("").sort(N).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))})),ce((function(e){return e.innerHTML="<a href=’#’></a>","#"===e.firstChild.getAttribute("href")}))||fe("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||fe("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute("disabled")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);b.find=T,b.expr=T.selectors,b.expr[":"]=b.expr.pseudos,b.uniqueSort=b.unique=T.uniqueSort,b.text=T.getText,b.isXMLDoc=T.isXML,b.contains=T.contains,b.escapeSelector=T.escape;var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&b(e).is(n))break;r.push(e)}return r},E=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},S=b.expr.match.needsContext;function k(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function N(e,t,n){return h(t)?b.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?b.grep(e,(function(e){return e===t!==n})):"string"!=typeof t?b.grep(e,(function(e){return s.call(t,e)>-1!==n})):b.filter(t,e,n)}b.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?b.find.matchesSelector(r,e)?[r]:[]:b.find.matches(e,b.grep(t,(function(e){return 1===e.nodeType})))},b.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(b(e).filter((function(){for(t=0;t<r;t++)if(b.contains(i[t],this))return!0})));for(n=this.pushStack([]),t=0;t<r;t++)b.find(e,i[t],n);return r>1?b.uniqueSort(n):n},filter:function(e){return this.pushStack(N(this,e||[],!1))},not:function(e){return this.pushStack(N(this,e||[],!0))},is:function(e){return!!N(this,"string"==typeof e&&S.test(e)?b(e):e||[],!1).length}});var D,j=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(b.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof b?t[0]:t,b.merge(this,b.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),A.test(r[1])&&b.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(b):b.makeArray(e,this)}).prototype=b.fn,D=b(v);var q=/^(?:parents|prev(?:Until|All))/,L={children:!0,contents:!0,next:!0,prev:!0};function H(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}b.fn.extend({has:function(e){var t=b(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(b.contains(this,t[e]))return!0}))},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&b(e);if(!S.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&b.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?b.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?s.call(b(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(b.uniqueSort(b.merge(this.get(),b(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,"parentNode")},parentsUntil:function(e,t,n){return C(e,"parentNode",n)},next:function(e){return H(e,"nextSibling")},prev:function(e){return H(e,"previousSibling")},nextAll:function(e){return C(e,"nextSibling")},prevAll:function(e){return C(e,"previousSibling")},nextUntil:function(e,t,n){return C(e,"nextSibling",n)},prevUntil:function(e,t,n){return C(e,"previousSibling",n)},siblings:function(e){return E((e.parentNode||{}).firstChild,e)},children:function(e){return E(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(k(e,"template")&&(e=e.content||e),b.merge([],e.childNodes))}},(function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),this.length>1&&(L[e]||b.uniqueSort(i),q.test(e)&&i.reverse()),this.pushStack(i)}}));var O=/[^\x20\t\r\n\f]+/g;function P(e){return e}function R(e){throw e}function M(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}b.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return b.each(e.match(O)||[],(function(e,n){t[n]=!0})),t}(e):b.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s<o.length;)!1===o[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=o.length,n=!1);e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},l={add:function(){return o&&(n&&!t&&(s=o.length-1,a.push(n)),function t(n){b.each(n,(function(n,r){h(r)?e.unique&&l.has(r)||o.push(r):r&&r.length&&"string"!==x(r)&&t(r)}))}(arguments),n&&!t&&u()),this},remove:function(){return b.each(arguments,(function(e,t){for(var n;(n=b.inArray(t,o,n))>-1;)o.splice(n,1),n<=s&&s–})),this},has:function(e){return e?b.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},b.extend({Deferred:function(t){var n=[["notify","progress",b.Callbacks("memory"),b.Callbacks("memory"),2],["resolve","done",b.Callbacks("once memory"),b.Callbacks("once memory"),0,"resolved"],["reject","fail",b.Callbacks("once memory"),b.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return b.Deferred((function(t){b.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t<o)){if((e=r.apply(s,u))===n.promise())throw new TypeError("Thenable self-resolution");l=e&&("object"==typeof e||"function"==typeof e)&&e.then,h(l)?i?l.call(e,a(o,n,P,i),a(o,n,R,i)):(o++,l.call(e,a(o,n,P,i),a(o,n,R,i),a(o,n,P,n.notifyWith))):(r!==P&&(s=void 0,u=[e]),(i||n.resolveWith)(s,u))}},c=i?l:function(){try{l()}catch(e){b.Deferred.exceptionHook&&b.Deferred.exceptionHook(e,c.stackTrace),t+1>=o&&(r!==R&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(b.Deferred.getStackHook&&(c.stackTrace=b.Deferred.getStackHook()),e.setTimeout(c))}}return b.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:P,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:P)),n[2][3].add(a(0,e,h(r)?r:R))})).promise()},promise:function(e){return null!=e?b.extend(e,i):i}},o={};return b.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=b.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,–t||a.resolveWith(r,o)}};if(t<=1&&(M(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n–;)M(o[n],s(n),a.reject);return a.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;b.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&I.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},b.readyException=function(t){e.setTimeout((function(){throw t}))};var W=b.Deferred();function F(){v.removeEventListener("DOMContentLoaded",F),e.removeEventListener("load",F),b.ready()}b.fn.ready=function(e){return W.then(e).catch((function(e){b.readyException(e)})),this},b.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?–b.readyWait:b.isReady)||(b.isReady=!0,!0!==e&&–b.readyWait>0||W.resolveWith(v,[b]))}}),b.ready.then=W.then,"complete"===v.readyState||"loading"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(b.ready):(v.addEventListener("DOMContentLoaded",F),e.addEventListener("load",F));var B=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n))for(s in i=!0,n)B(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(b(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},$=/^-ms-/,_=/-([a-z])/g;function z(e,t){return t.toUpperCase()}function U(e){return e.replace($,"ms-").replace(_,z)}var X=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function V(){this.expando=b.expando+V.uid++}V.uid=1,V.prototype={cache:function(e){var t=e[this.expando];return t||(t={},X(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[U(t)]=n;else for(r in t)i[U(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][U(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(U):(t=U(t))in r?[t]:t.match(O)||[]).length;for(;n–;)delete r[t[n]]}(void 0===t||b.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!b.isEmptyObject(t)}};var G=new V,Y=new V,Q=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,J=/[A-Z]/g;function K(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(J,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=function(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Q.test(e)?JSON.parse(e):e)}(n)}catch(e){}Y.set(e,t,n)}else n=void 0;return n}b.extend({hasData:function(e){return Y.hasData(e)||G.hasData(e)},data:function(e,t,n){return Y.access(e,t,n)},removeData:function(e,t){Y.remove(e,t)},_data:function(e,t,n){return G.access(e,t,n)},_removeData:function(e,t){G.remove(e,t)}}),b.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=Y.get(o),1===o.nodeType&&!G.get(o,"hasDataAttrs"))){for(n=a.length;n–;)a[n]&&0===(r=a[n].name).indexOf("data-")&&(r=U(r.slice(5)),K(o,r,i[r]));G.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof e?this.each((function(){Y.set(this,e)})):B(this,(function(t){var n;if(o&&void 0===t)return void 0!==(n=Y.get(o,e))||void 0!==(n=K(o,e))?n:void 0;this.each((function(){Y.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){Y.remove(this,e)}))}}),b.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=G.get(e,t),n&&(!r||Array.isArray(n)?r=G.access(e,t,b.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r–),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){b.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return G.get(e,n)||G.access(e,n,{empty:b.Callbacks("once memory").add((function(){G.remove(e,[t+"queue",n])}))})}}),b.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n–),arguments.length<n?b.queue(this[0],e):void 0===t?this:this.each((function(){var n=b.queue(this,e,t);b._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&b.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){b.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=b.Deferred(),o=this,a=this.length,s=function(){–r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a–;)(n=G.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var Z=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ee=new RegExp("^(?:([+-])=|)("+Z+")([a-z%]*)$","i"),te=["Top","Right","Bottom","Left"],ne=v.documentElement,re=function(e){return b.contains(e.ownerDocument,e)},ie={composed:!0};ne.getRootNode&&(re=function(e){return b.contains(e.ownerDocument,e)||e.getRootNode(ie)===e.ownerDocument});var oe=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&re(e)&&"none"===b.css(e,"display")};function ae(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return b.css(e,t,"")},u=s(),l=n&&n[3]||(b.cssNumber[t]?"":"px"),c=e.nodeType&&(b.cssNumber[t]||"px"!==l&&+u)&&ee.exec(b.css(e,t));if(c&&c[3]!==l){for(u/=2,l=l||c[3],c=+u||1;a–;)b.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,b.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var se={};function ue(e){var t,n=e.ownerDocument,r=e.nodeName,i=se[r];return i||(t=n.body.appendChild(n.createElement(r)),i=b.css(t,"display"),t.parentNode.removeChild(t),"none"===i&&(i="block"),se[r]=i,i)}function le(e,t){for(var n,r,i=[],o=0,a=e.length;o<a;o++)(r=e[o]).style&&(n=r.style.display,t?("none"===n&&(i[o]=G.get(r,"display")||null,i[o]||(r.style.display="")),""===r.style.display&&oe(r)&&(i[o]=ue(r))):"none"!==n&&(i[o]="none",G.set(r,"display",n)));for(o=0;o<a;o++)null!=i[o]&&(e[o].style.display=i[o]);return e}b.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each((function(){oe(this)?b(this).show():b(this).hide()}))}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=v.createDocumentFragment().appendChild(v.createElement("div")),(fe=v.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),d.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",d.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",d.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||""):void 0!==e.querySelectorAll?e.querySelectorAll(t||""):[],void 0===t||t&&k(e,t)?b.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)G.set(e[n],"globalEval",!t||G.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,d.option||(ge.optgroup=ge.option=[1,"<select multiple=’multiple’>","</select>"]);var me=/<|&#?\\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if(\"object\"===x(o))b.merge(p,o.nodeType?[o]:o);else if(me.test(o)){for(a=a||f.appendChild(t.createElement(\"div\")),s=(de.exec(o)||[\"\",\"\"])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+b.htmlPrefilter(o)+u[2],c=u[0];c--;)a=a.lastChild;b.merge(p,a.childNodes),(a=f.firstChild).textContent=\"\"}else p.push(t.createTextNode(o));for(f.textContent=\"\",d=0;o=p[d++];)if(r&&b.inArray(o,r)>-1)i&&i.push(o);else if(l=re(o),a=ve(f.appendChild(o),\"script\"),l&&ye(a),n)for(c=0;o=a[c++];)he.test(o.type||"")&&n.push(o);return f}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\.(.+)|)/;function Ce(){return!0}function Ee(){return!1}function Se(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==("focus"===t)}function ke(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)ke(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ee;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return b().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=b.guid++)),e.each((function(){b.event.add(this,t,i,r,n)}))}function Ae(e,t,n){n?(G.set(e,t,!1),b.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=G.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(b.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),G.set(this,t,a),r=n(this,t),this[t](),a!==(o=G.get(this,t))||r?G.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o.value}else a.length&&(G.set(this,t,{value:b.event.trigger(b.extend(a[0],b.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===G.get(e,t)&&b.event.add(e,t,Ce)}b.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.get(e);if(X(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&b.find.matchesSelector(ne,i),n.guid||(n.guid=b.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==b&&b.event.triggered!==t.type?b.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(O)||[""]).length;l–;)d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=b.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=b.event.special[d]||{},c=b.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&b.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),b.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.hasData(e)&&G.get(e);if(v&&(u=v.events)){for(l=(t=(t||"").match(O)||[""]).length;l–;)if(d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){for(f=b.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;o–;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(""!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount–,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||b.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(u)&&G.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=b.event.fix(e),l=(G.get(this,"events")||Object.create(null))[u.type]||[],c=b.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){for(a=b.event.handlers.call(this,u,l),t=0;(i=a[t++])&&!u.isPropagationStopped();)for(u.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!u.isImmediatePropagationStopped();)u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((b.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&e.button>=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?b(i,this).index(l)>-1:b.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(e,t){Object.defineProperty(b.Event.prototype,e,{enumerable:!0,configurable:!0,get:h(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[b.expando]?e:new b.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&k(t,"input")&&Ae(t,"click",Ce),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&k(t,"input")&&Ae(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&k(t,"input")&&G.get(t,"click")||k(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},b.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},b.Event=function(e,t){if(!(this instanceof b.Event))return new b.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ce:Ee,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&b.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[b.expando]=!0},b.Event.prototype={constructor:b.Event,isDefaultPrevented:Ee,isPropagationStopped:Ee,isImmediatePropagationStopped:Ee,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ce,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ce,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ce,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},b.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&be.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&we.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},b.event.addProp),b.each({focus:"focusin",blur:"focusout"},(function(e,t){b.event.special[e]={setup:function(){return Ae(this,e,Se),!1},trigger:function(){return Ae(this,e),!0},delegateType:t}})),b.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},(function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return i&&(i===r||b.contains(r,i))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}})),b.fn.extend({on:function(e,t,n,r){return ke(this,e,t,n,r)},one:function(e,t,n,r){return ke(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,b(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Ee),this.each((function(){b.event.remove(this,e,n,t)}))}});var Ne=/<script|<style|<link/i,De=/checked\s*(?:[^=]|=\s*.checked.)/i,je=/^\s*<!(?:\[CDATA\[|–)|(?:\]\]|–)>\s*$/g;function qe(e,t){return k(e,"table")&&k(11!==t.nodeType?t:t.firstChild,"tr")&&b(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(G.hasData(e)&&(s=G.get(e).events))for(i in G.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)b.event.add(t,i,s[i][n]);Y.hasData(e)&&(o=Y.access(e),a=b.extend({},o),Y.set(t,a))}}function Pe(e,t){var n=t.nodeName.toLowerCase();"input"===n&&pe.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function Re(e,t,n,r){t=o(t);var i,a,s,u,l,c,f=0,p=e.length,g=p-1,v=t[0],y=h(v);if(y||p>1&&"string"==typeof v&&!d.checkClone&&De.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Re(o,t,n,r)}));if(p&&(a=(i=xe(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=b.map(ve(i,"script"),Le)).length;f<p;f++)l=i,f!==g&&(l=b.clone(l,!0,!0),u&&b.merge(s,ve(l,"script"))),n.call(e[f],l,f);if(u)for(c=s[s.length-1].ownerDocument,b.map(s,He),f=0;f<u;f++)l=s[f],he.test(l.type||"")&&!G.access(l,"globalEval")&&b.contains(c,l)&&(l.src&&"module"!==(l.type||"").toLowerCase()?b._evalUrl&&!l.noModule&&b._evalUrl(l.src,{nonce:l.nonce||l.getAttribute("nonce")},c):m(l.textContent.replace(je,""),l,c))}return e}function Me(e,t,n){for(var r,i=t?b.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||b.cleanData(ve(r)),r.parentNode&&(n&&re(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}b.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=re(e);if(!(d.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(a=ve(s),r=0,i=(o=ve(e)).length;r<i;r++)Pe(o[r],a[r]);if(t)if(n)for(o=o||ve(e),a=a||ve(s),r=0,i=o.length;r<i;r++)Oe(o[r],a[r]);else Oe(e,s);return(a=ve(s,"script")).length>0&&ye(a,!u&&ve(e,"script")),s},cleanData:function(e){for(var t,n,r,i=b.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[G.expando]){if(t.events)for(r in t.events)i[r]?b.event.remove(n,r):b.removeEvent(n,r,t.handle);n[G.expando]=void 0}n[Y.expando]&&(n[Y.expando]=void 0)}}}),b.fn.extend({detach:function(e){return Me(this,e,!0)},remove:function(e){return Me(this,e)},text:function(e){return B(this,(function(e){return void 0===e?b.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Re(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)}))},prepend:function(){return Re(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(b.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return b.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ne.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=b.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(b.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return Re(this,arguments,(function(t){var n=this.parentNode;b.inArray(this,e)<0&&(b.cleanData(ve(this)),n&&n.replaceChild(t,this))}),e)}}),b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},(function(e,t){b.fn[e]=function(e){for(var n,r=[],i=b(e),o=i.length-1,s=0;s<=o;s++)n=s===o?this:this.clone(!0),b(i[s])[t](n),a.apply(r,n.get());return this.pushStack(r)}}));var Ie=new RegExp("^("+Z+")(?!px)[a-z%]+$","i"),We=function(t){var n=t.ownerDocument.defaultView;return n&&n.opener||(n=e),n.getComputedStyle(t)},Fe=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Be=new RegExp(te.join("|"),"i");function $e(e,t,n){var r,i,o,a,s=e.style;return(n=n||We(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||re(e)||(a=b.style(e,t)),!d.pixelBoxStyles()&&Ie.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function _e(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function t(){if(c){l.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",c.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ne.appendChild(l).appendChild(c);var t=e.getComputedStyle(c);r="1%"!==t.top,u=12===n(t.marginLeft),c.style.right="60%",a=36===n(t.right),i=36===n(t.width),c.style.position="absolute",o=12===n(c.offsetWidth/3),ne.removeChild(l),c=null}}function n(e){return Math.round(parseFloat(e))}var r,i,o,a,s,u,l=v.createElement("div"),c=v.createElement("div");c.style&&(c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",d.clearCloneStyle="content-box"===c.style.backgroundClip,b.extend(d,{boxSizingReliable:function(){return t(),i},pixelBoxStyles:function(){return t(),a},pixelPosition:function(){return t(),r},reliableMarginLeft:function(){return t(),u},scrollboxSize:function(){return t(),o},reliableTrDimensions:function(){var t,n,r,i;return null==s&&(t=v.createElement("table"),n=v.createElement("tr"),r=v.createElement("div"),t.style.cssText="position:absolute;left:-11111px",n.style.height="1px",r.style.height="9px",ne.appendChild(t).appendChild(n).appendChild(r),i=e.getComputedStyle(n),s=parseInt(i.height)>3,ne.removeChild(t)),s}}))}();var ze=["Webkit","Moz","ms"],Ue=v.createElement("div").style,Xe={};function Ve(e){var t=b.cssProps[e]||Xe[e];return t||(e in Ue?e:Xe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=ze.length;n–;)if((e=ze[n]+t)in Ue)return e}(e)||e)}var Ge=/^(none|table(?!-c[ea]).+)/,Ye=/^–/,Qe={position:"absolute",visibility:"hidden",display:"block"},Je={letterSpacing:"0",fontWeight:"400"};function Ke(e,t,n){var r=ee.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ze(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=b.css(e,n+te[a],!0,i)),r?("content"===n&&(u-=b.css(e,"padding"+te[a],!0,i)),"margin"!==n&&(u-=b.css(e,"border"+te[a]+"Width",!0,i))):(u+=b.css(e,"padding"+te[a],!0,i),"padding"!==n?u+=b.css(e,"border"+te[a]+"Width",!0,i):s+=b.css(e,"border"+te[a]+"Width",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function et(e,t,n){var r=We(e),i=(!d.boxSizingReliable()||n)&&"border-box"===b.css(e,"boxSizing",!1,r),o=i,a=$e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Ie.test(a)){if(!n)return a;a="auto"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&k(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===b.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===b.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ze(e,t,n||(i?"border":"content"),o,r,a)+"px"}function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=$e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=U(t),u=Ye.test(t),l=e.style;if(u||(t=Ve(s)),a=b.cssHooks[t]||b.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ee.exec(n))&&i[1]&&(n=ae(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(b.cssNumber[s]?"":"px")),d.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=U(t);return Ye.test(t)||(t=Ve(s)),(a=b.cssHooks[t]||b.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=$e(e,t,r)),"normal"===i&&t in Je&&(i=Je[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),b.each(["height","width"],(function(e,t){b.cssHooks[t]={get:function(e,n,r){if(n)return!Ge.test(b.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):Fe(e,Qe,(function(){return et(e,t,r)}))},set:function(e,n,r){var i,o=We(e),a=!d.scrollboxSize()&&"absolute"===o.position,s=(a||r)&&"border-box"===b.css(e,"boxSizing",!1,o),u=r?Ze(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),u&&(i=ee.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=b.css(e,t)),Ke(0,n,u)}}})),b.cssHooks.marginLeft=_e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat($e(e,"marginLeft"))||e.getBoundingClientRect().left-Fe(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),b.each({margin:"",padding:"",border:"Width"},(function(e,t){b.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+te[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(b.cssHooks[e+t].set=Ke)})),b.fn.extend({css:function(e,t){return B(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=We(e),i=t.length;a<i;a++)o[t[a]]=b.css(e,t[a],!1,r);return o}return void 0!==n?b.style(e,t,n):b.css(e,t)}),e,t,arguments.length>1)}}),b.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||b.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=b.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):1!==e.elem.nodeType||!b.cssHooks[e.prop]&&null==e.elem.style[Ve(e.prop)]?e.elem[e.prop]=e.now:b.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},b.fx=tt.prototype.init,b.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,b.fx.interval),b.fx.tick())}function st(){return e.setTimeout((function(){nt=void 0})),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=te[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(ct.tweeners[t]||[]).concat(ct.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function ct(e,t,n){var r,i,o=0,a=ct.prefilters.length,s=b.Deferred().always((function(){delete u.elem})),u=function(){if(i)return!1;for(var t=nt||st(),n=Math.max(0,l.startTime+l.duration-t),r=1-(n/l.duration||0),o=0,a=l.tweens.length;o<a;o++)l.tweens[o].run(r);return s.notifyWith(e,[l,r,n]),r<1&&a?n:(a||s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{},easing:b.easing._default},n),originalProperties:t,originalOptions:n,startTime:nt||st(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)l.tweens[n].run(1);return t?(s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l,t])):s.rejectWith(e,[l,t]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=U(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=b.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);o<a;o++)if(r=ct.prefilters[o].call(l,e,c,l.opts))return h(r.stop)&&(b._queueHooks(l.elem,l.opts.queue).stop=r.stop.bind(r)),r;return b.map(c,lt,l),h(l.opts.start)&&l.opts.start.call(e,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l}b.Animation=b.extend(ct,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return ae(n.elem,e,ee.exec(t),n),n}]},tweener:function(e,t){h(e)?(t=e,e=["*"]):e=e.match(O);for(var n,r=0,i=e.length;r<i;r++)n=e[r],ct.tweeners[n]=ct.tweeners[n]||[],ct.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&oe(e),v=G.get(e,"fxshow");for(r in n.queue||(null==(a=b._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always((function(){p.always((function(){a.unqueued–,b.queue(e,"fx").length||a.empty.fire()}))}))),t)if(i=t[r],it.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||b.style(e,r)}if((u=!b.isEmptyObject(t))||!b.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=G.get(e,"display")),"none"===(c=b.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=b.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===b.css(e,"float")&&(u||(p.done((function(){h.display=l})),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always((function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]}))),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=G.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done((function(){for(r in g||le([e]),G.remove(e,"fxshow"),d)b.style(e,r,d[r])}))),u=lt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?ct.prefilters.unshift(e):ct.prefilters.push(e)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||h(e)&&e,duration:e,easing:n&&t||t&&!h(t)&&t};return b.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in b.fx.speeds?r.duration=b.fx.speeds[r.duration]:r.duration=b.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){h(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(oe).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=ct(this,b.extend({},e),o);(i||G.get(this,"finish"))&&t.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&this.queue(e||"fx",[]),this.each((function(){var t=!0,i=null!=e&&e+"queueHooks",o=b.timers,a=G.get(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&ot.test(i)&&r(a[i]);for(i=o.length;i–;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||b.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||"fx"),this.each((function(){var t,n=G.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t–;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish}))}}),b.each(["toggle","show","hide"],(function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ut(t,!0),e,r,i)}})),b.each({slideDown:ut("show"),slideUp:ut("hide"),slideToggle:ut("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},(function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}})),b.timers=[],b.fx.tick=function(){var e,t=0,n=b.timers;for(nt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t–,1);n.length||b.fx.stop(),nt=void 0},b.fx.timer=function(e){b.timers.push(e),b.fx.start()},b.fx.interval=13,b.fx.start=function(){rt||(rt=!0,at())},b.fx.stop=function(){rt=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fn.delay=function(t,n){return t=b.fx&&b.fx.speeds[t]||t,n=n||"fx",this.queue(n,(function(n,r){var i=e.setTimeout(n,t);r.stop=function(){e.clearTimeout(i)}}))},function(){var e=v.createElement("input"),t=v.createElement("select").appendChild(v.createElement("option"));e.type="checkbox",d.checkOn=""!==e.value,d.optSelected=t.selected,(e=v.createElement("input")).value="t",e.type="radio",d.radioValue="t"===e.value}();var ft,pt=b.expr.attrHandle;b.fn.extend({attr:function(e,t){return B(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){b.removeAttr(this,e)}))}}),b.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?b.prop(e,t,n):(1===o&&b.isXMLDoc(e)||(i=b.attrHooks[t.toLowerCase()]||(b.expr.match.bool.test(t)?ft:void 0)),void 0!==n?null===n?void b.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=b.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&"radio"===t&&k(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(O);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ft={set:function(e,t,n){return!1===t?b.removeAttr(e,n):e.setAttribute(n,n),n}},b.each(b.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=pt[t]||b.find.attr;pt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=pt[a],pt[a]=i,i=null!=n(e,t,r)?a:null,pt[a]=o),i}}));var dt=/^(?:input|select|textarea|button)$/i,ht=/^(?:a|area)$/i;function gt(e){return(e.match(O)||[]).join(" ")}function vt(e){return e.getAttribute&&e.getAttribute("class")||""}function yt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(O)||[]}b.fn.extend({prop:function(e,t){return B(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[b.propFix[e]||e]}))}}),b.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&b.isXMLDoc(e)||(t=b.propFix[t]||t,i=b.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=b.find.attr(e,"tabindex");return t?parseInt(t,10):dt.test(e.nodeName)||ht.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),d.optSelected||(b.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),b.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){b.propFix[this.toLowerCase()]=this})),b.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).addClass(e.call(this,t,vt(this)))}));if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr("class","");if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){b(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=b(this),a=yt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=vt(this))&&G.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":G.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+gt(vt(n))+" ").indexOf(t)>-1)return!0;return!1}});var mt=/\r/g;b.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,b(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=b.map(i,(function(e){return null==e?"":e+""}))),(t=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=b.valHooks[i.type]||b.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(mt,""):null==n?"":n:void 0}}),b.extend({valHooks:{option:{get:function(e){var t=b.find.attr(e,"value");return null!=t?t:gt(b.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!k(n.parentNode,"optgroup"))){if(t=b(n).val(),a)return t;s.push(t)}return s},set:function(e,t){for(var n,r,i=e.options,o=b.makeArray(t),a=i.length;a–;)((r=i[a]).selected=b.inArray(b.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),b.each(["radio","checkbox"],(function(){b.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=b.inArray(b(e).val(),t)>-1}},d.checkOn||(b.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),d.focusin="onfocusin"in e;var xt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};b.extend(b.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,"type")?t.type:t,x=c.call(t,"namespace")?t.namespace.split("."):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!xt.test(m+b.event.triggered)&&(m.indexOf(".")>-1&&(x=m.split("."),m=x.shift(),x.sort()),l=m.indexOf(":")<0&&"on"+m,(t=t[b.expando]?t:new b.Event(m,"object"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:b.makeArray(n,[t]),p=b.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,xt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(G.get(a,"events")||Object.create(null))[t.type]&&G.get(a,"handle"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&X(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!X(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),b.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,bt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,bt),b.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=b.extend(new b.Event,n,{type:e,isSimulated:!0});b.event.trigger(r,null,t)}}),b.fn.extend({trigger:function(e,t){return this.each((function(){b.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return b.event.trigger(e,t,n,!0)}}),d.focusin||b.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){b.event.simulate(t,e.target,b.event.fix(e))};b.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t);i||r.addEventListener(e,n,!0),G.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t)-1;i?G.access(r,t,i):(r.removeEventListener(e,n,!0),G.remove(r,t))}}}));var wt=e.location,Tt={guid:Date.now()},Ct=/\?/;b.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+t),n};var Et=/\[\]$/,St=/\r?\n/g,kt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function Nt(e,t,n,r){var i;if(Array.isArray(t))b.each(t,(function(t,i){n||Et.test(e)?r(e,i):Nt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==x(t))r(e,t);else for(i in t)Nt(e+"["+i+"]",t[i],n,r)}b.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,(function(){i(this.name,this.value)}));else for(n in e)Nt(n,e[n],t,i);return r.join("&")},b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&At.test(this.nodeName)&&!kt.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var n=b(this).val();return null==n?null:Array.isArray(n)?b.map(n,(function(e){return{name:t.name,value:e.replace(St,"\r\n")}})):{name:t.name,value:n.replace(St,"\r\n")}})).get()}});var Dt=/%20/g,jt=/#.*$/,qt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ht=/^(?:GET|HEAD)$/,Ot=/^\/\//,Pt={},Rt={},Mt="*/".concat("*"),It=v.createElement("a");function Wt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(O)||[];if(h(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Ft(e,t,n,r){var i={},o=e===Rt;function a(s){var u;return i[s]=!0,b.each(e[s]||[],(function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function Bt(e,t){var n,r,i=b.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&b.extend(!0,e,r),e}It.href=wt.href,b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Mt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,b.ajaxSettings),t):Bt(b.ajaxSettings,e)},ajaxPrefilter:Wt(Pt),ajaxTransport:Wt(Rt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=b.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?b(h):b.event,y=b.Deferred(),m=b.Callbacks("once memory"),x=d.statusCode||{},w={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Lt.exec(o);)a[t[1].toLowerCase()+" "]=(a[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=a[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||wt.href)+"").replace(Ot,wt.protocol+"//"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||"*").toLowerCase().match(O)||[""],null==d.crossDomain){u=v.createElement("a");try{u.href=d.url,u.href=u.href,d.crossDomain=It.protocol+"//"+It.host!=u.protocol+"//"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=b.param(d.data,d.traditional)),Ft(Pt,d,n,E),l)return E;for(f in(c=b.event&&d.global)&&0==b.active++&&b.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!Ht.test(d.type),i=d.url.replace(jt,""),d.hasContent?d.data&&d.processData&&0===(d.contentType||"").indexOf("application/x-www-form-urlencoded")&&(d.data=d.data.replace(Dt,"+")):(p=d.url.slice(i.length),d.data&&(d.processData||"string"==typeof d.data)&&(i+=(Ct.test(i)?"&":"?")+d.data,delete d.data),!1===d.cache&&(i=i.replace(qt,"$1"),p=(Ct.test(i)?"&":"?")+"_="+Tt.guid+++p),d.url=i+p),d.ifModified&&(b.lastModified[i]&&E.setRequestHeader("If-Modified-Since",b.lastModified[i]),b.etag[i]&&E.setRequestHeader("If-None-Match",b.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader("Content-Type",d.contentType),E.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Mt+"; q=0.01":""):d.accepts["*"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C="abort",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Ft(Rt,d,n,E)){if(E.readyState=1,c&&g.trigger("ajaxSend",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort("timeout")}),d.timeout));try{l=!1,r.send(w,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,"No Transport");function S(t,n,a,u){var f,p,v,w,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||"",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(w=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;"*"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&b.inArray("script",d.dataTypes)>-1&&(d.converters["text script"]=function(){}),w=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(d,w,E,f),f?(d.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(b.lastModified[i]=T),(T=E.getResponseHeader("etag"))&&(b.etag[i]=T)),204===t||"HEAD"===d.type?C="nocontent":304===t?C="notmodified":(C=w.state,p=w.data,f=!(v=w.error))):(v=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?"ajaxSuccess":"ajaxError",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger("ajaxComplete",[E,d]),–b.active||b.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return b.get(e,t,n,"json")},getScript:function(e,t){return b.get(e,void 0,t,"script")}}),b.each(["get","post"],(function(e,t){b[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),b.ajax(b.extend({url:e,type:t,dataType:i,data:n,success:r},b.isPlainObject(e)&&e))}})),b.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),b._evalUrl=function(e,t,n){return b.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){b.globalEval(e,t,n)}})},b.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=b(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){b(this).wrapInner(e.call(this,t))})):this.each((function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){b(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){b(this).replaceWith(this.childNodes)})),this}}),b.expr.pseudos.hidden=function(e){return!b.expr.pseudos.visible(e)},b.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},b.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var $t={0:200,1223:204},_t=b.ajaxSettings.xhr();d.cors=!!_t&&"withCredentials"in _t,d.ajax=_t=!!_t,b.ajaxTransport((function(t){var n,r;if(d.cors||_t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o($t[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),b.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),b.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=b("<script>").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),v.head.appendChild(t[0])},abort:function(){n&&n()}}}));var zt,Ut=[],Xt=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Ut.pop()||b.expando+"_"+Tt.guid++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",(function(t,n,r){var i,o,a,s=!1!==t.jsonp&&(Xt.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&Xt.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=h(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(Xt,"$1"+i):!1!==t.jsonp&&(t.url+=(Ct.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return a||b.error(i+" was not called"),a[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){a=arguments},r.always((function(){void 0===o?b(e).removeProp(i):e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,Ut.push(i)),a&&h(o)&&o(a[0]),a=o=void 0})),"script"})),d.createHTMLDocument=((zt=v.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===zt.childNodes.length),b.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(d.createHTMLDocument?((r=(t=v.implementation.createHTMLDocument("")).createElement("base")).href=v.location.href,t.head.appendChild(r)):t=v),o=!n&&[],(i=A.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&b(o).remove(),b.merge([],i.childNodes)));var r,i,o},b.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return s>-1&&(r=gt(e.slice(s)),e=e.slice(0,s)),h(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),a.length>0&&b.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done((function(e){o=arguments,a.html(r?b("<div>").append(b.parseHTML(e)).find(r):e)})).always(n&&function(e,t){a.each((function(){n.apply(this,o||[e.responseText,t,e])}))}),this},b.expr.pseudos.animated=function(e){return b.grep(b.timers,(function(t){return e===t.elem})).length},b.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=b.css(e,"position"),c=b(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=b.css(e,"top"),u=b.css(e,"left"),("absolute"===l||"fixed"===l)&&(o+u).indexOf("auto")>-1?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),h(t)&&(t=t.call(e,n,b.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},b.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){b.offset.setOffset(this,e,t)}));var t,n,r=this[0];return r?r.getClientRects().length?(t=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===b.css(r,"position"))t=r.getBoundingClientRect();else{for(t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&"static"===b.css(e,"position");)e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=b(e).offset()).top+=b.css(e,"borderTopWidth",!0),i.left+=b.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-b.css(r,"marginTop",!0),left:t.left-i.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map((function(){for(var e=this.offsetParent;e&&"static"===b.css(e,"position");)e=e.offsetParent;return e||ne}))}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},(function(e,t){var n="pageYOffset"===t;b.fn[e]=function(r){return B(this,(function(e,r,i){var o;if(g(e)?o=e:9===e.nodeType&&(o=e.defaultView),void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i}),e,r,arguments.length)}})),b.each(["top","left"],(function(e,t){b.cssHooks[t]=_e(d.pixelPosition,(function(e,n){if(n)return n=$e(e,t),Ie.test(n)?b(e).position()[t]+"px":n}))})),b.each({Height:"height",Width:"width"},(function(e,t){b.each({padding:"inner"+e,content:t,"":"outer"+e},(function(n,r){b.fn[r]=function(i,o){var a=arguments.length&&(n||"boolean"!=typeof i),s=n||(!0===i||!0===o?"margin":"border");return B(this,(function(t,n,i){var o;return g(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(o=t.documentElement,Math.max(t.body["scroll"+e],o["scroll"+e],t.body["offset"+e],o["offset"+e],o["client"+e])):void 0===i?b.css(t,n,s):b.style(t,n,i,s)}),t,a?i:void 0,a)}}))})),b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],(function(e,t){b.fn[t]=function(e){return this.on(t,e)}})),b.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,""):this.off(t,e||"",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),b.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),(function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}));var Vt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;b.proxy=function(e,t){var n,r,o;if("string"==typeof t&&(n=e[t],t=e,e=n),h(e))return r=i.call(arguments,2),(o=function(){return e.apply(t||this,r.concat(i.call(arguments)))}).guid=e.guid=e.guid||b.guid++,o},b.holdReady=function(e){e?b.readyWait++:b.ready(!0)},b.isArray=Array.isArray,b.parseJSON=JSON.parse,b.nodeName=k,b.isFunction=h,b.isWindow=g,b.camelCase=U,b.type=x,b.now=Date.now,b.isNumeric=function(e){var t=b.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},b.trim=function(e){return null==e?"":(e+"").replace(Vt,"")},"function"==typeof define&&define.amd&&define("jquery",[],(function(){return b}));var Gt=e.jQuery,Yt=e.$;return b.noConflict=function(t){return e.$===b&&(e.$=Yt),t&&e.jQuery===b&&(e.jQuery=Gt),b},void 0===t&&(e.jQuery=e.$=b),b}))},n 460: function _(t,n,i){var o=t(458);function e(){var t=!1,n=!1;this.stopPropagation=function(){t=!0},this.isPropagationStopped=function(){return t},this.stopImmediatePropagation=function(){n=!0},this.isImmediatePropagationStopped=function(){return n}}function r(){this.__nonDataRow=!0}function u(){this.__group=!0,this.level=0,this.count=0,this.value=null,this.title=null,this.collapsed=!1,this.selectChecked=!1,this.totals=null,this.rows=[],this.groups=null,this.groupingKey=null}function s(){this.__groupTotals=!0,this.group=null,this.initialized=!1}function l(){var t=null;this.isActive=function(n){return n?t===n:null!==t},this.activate=function(n){if(n!==t){if(null!==t)throw new Error("SlickGrid.EditorLock.activate: an editController is still active, can’t activate another editController");if(!n.commitCurrentEdit)throw new Error("SlickGrid.EditorLock.activate: editController must implement .commitCurrentEdit()");if(!n.cancelCurrentEdit)throw new Error("SlickGrid.EditorLock.activate: editController must implement .cancelCurrentEdit()");t=n}},this.deactivate=function(n){if(t!==n)throw new Error("SlickGrid.EditorLock.deactivate: specified editController is not the currently active one");t=null},this.commitCurrentEdit=function(){return!t||t.commitCurrentEdit()},this.cancelCurrentEdit=function(){return!t||t.cancelCurrentEdit()}}u.prototype=new r,u.prototype.equals=function(t){return this.value===t.value&&this.count===t.count&&this.collapsed===t.collapsed&&this.title===t.title},s.prototype=new r,n.exports={Event:function(){var t=[];this.subscribe=function(n){t.push(n)},this.unsubscribe=function(n){for(var i=t.length-1;i>=0;i–)t[i]===n&&t.splice(i,1)},this.notify=function(n,i,o){var r;i=i||new e,o=o||this;for(var u=0;u<t.length&&!i.isPropagationStopped()&&!i.isImmediatePropagationStopped();u++)r=t[u].call(o,i,n);return r}},EventData:e,EventHandler:function(){var t=[];this.subscribe=function(n,i){return t.push({event:n,handler:i}),n.subscribe(i),this},this.unsubscribe=function(n,i){for(var o=t.length;o–;)if(t[o].event===n&&t[o].handler===i)return t.splice(o,1),void n.unsubscribe(i);return this},this.unsubscribeAll=function(){for(var n=t.length;n–;)t[n].event.unsubscribe(t[n].handler);return t=[],this}},Range:function(t,n,i,o){void 0===i&&void 0===o&&(i=t,o=n),this.fromRow=Math.min(t,i),this.fromCell=Math.min(n,o),this.toRow=Math.max(t,i),this.toCell=Math.max(n,o),this.isSingleRow=function(){return this.fromRow==this.toRow},this.isSingleCell=function(){return this.fromRow==this.toRow&&this.fromCell==this.toCell},this.contains=function(t,n){return t>=this.fromRow&&t<=this.toRow&&n>=this.fromCell&&n<=this.toCell},this.toString=function(){return this.isSingleCell()?"("+this.fromRow+":"+this.fromCell+")":"("+this.fromRow+":"+this.fromCell+" - "+this.toRow+":"+this.toCell+")"}},NonDataRow:r,Group:u,GroupTotals:s,EditorLock:l,GlobalEditorLock:new l,TreeColumns:function(t){var n={};function i(t,n){return t.filter((function(t){var o=n.call(t);return o&&t.columns&&(t.columns=i(t.columns,n)),o&&(!t.columns||t.columns.length)}))}function e(t){return void 0===t?-1:t}function r(t){var n=[];if(t.hasOwnProperty("length"))for(var i=0;i<t.length;i++)n=n.concat(r(t[i]));else{if(!t.hasOwnProperty("columns"))return t;n=n.concat(r(t.columns))}return n}function u(){return o.extend(!0,[],t)}!function t(i){i.forEach((function(i){n[i.id]=i,i.columns&&t(i.columns)}))}(t),this.hasDepth=function(){for(var n in t)if(t[n].hasOwnProperty("columns"))return!0;return!1},this.getTreeColumns=function(){return t},this.extractColumns=function(){return this.hasDepth()?r(t):t},this.getDepth=function(){return function t(n){if(!n.length)return n.columns?1+t(n.columns):1;for(var i in n)return t(n[i])}(t)},this.getColumnsInDepth=function(n){return function t(n,i,o){var e=[];if(i==(o=o||0))return n.length&&n.forEach((function(t){t.columns&&(t.extractColumns=function(){return r(t)})})),n;for(var u in n)n[u].columns&&(e=e.concat(t(n[u].columns,i,o+1)));return e}(t,n)},this.getColumnsInGroup=function(t){return r(t)},this.visibleColumns=function(){return i(u(),(function(){return this.visible}))},this.filter=function(t){return i(u(),t)},this.reOrder=function(n){return function t(n,i){n.sort((function(t,n){return e(i.getColumnIndex(t.id))-e(i.getColumnIndex(n.id))})).forEach((function(n){n.columns&&t(n.columns,i)}))}(t,n)},this.getById=function(t){return n[t]},this.getInIds=function(t){return t.map((function(t){return n[t]}))}},keyCode:{SPACE:8,BACKSPACE:8,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,ESC:27,HOME:36,INSERT:45,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,RIGHT:39,TAB:9,UP:38,A:65,C:67,V:86},preClickClassName:"slick-edit-preclick",GridAutosizeColsMode:{None:"NOA",LegacyOff:"LOF",LegacyForceFit:"LFF",IgnoreViewport:"IGV",FitColsToViewport:"FCV",FitViewportToCols:"FVC"},ColAutosizeMode:{Locked:"LCK",Guide:"GUI",Content:"CON",ContentIntelligent:"CTI"},RowSelectionMode:{FirstRow:"FS1",FirstNRows:"FSN",AllRows:"ALL",LastRow:"LS1"},ValueFilterMode:{None:"NONE",DeDuplicate:"DEDP",GetGreatestAndSub:"GR8T",GetLongestTextAndSub:"LNSB",GetLongestText:"LNSC"},WidthEvalMode:{CanvasTextSize:"CANV",HTML:"HTML"}}},n 461: function _(e,t,o){var l=e(458),n=e(460);t.exports={CheckboxSelectColumn:function(e){var t,o=null,i=k(),c=new n.EventHandler,r={},d=!1,a=l.extend(!0,{},{columnId:"_checkbox_selector",cssClass:null,hideSelectAllCheckbox:!1,toolTip:"Select/Deselect All",width:30,hideInColumnTitleRow:!1,hideInFilterHeaderRow:!0},e);function s(){t.updateColumnHeader(a.columnId,"","")}function u(){l("#filter-checkbox-selectall-container").hide()}function h(e,n){var c,s,u,h=t.getSelectedRows(),f={},p=0;if("function"==typeof o)for(u=0;u<t.getDataLength();u++){C(s,t.getDataItem(u),t)||p++}var b=[];for(s=0;s<h.length;s++){c=h[s],C(s,t.getDataItem(c),t)?(f[c]=!0,f[c]!==r[c]&&(t.invalidateRow(c),delete r[c])):b.push(c)}for(s in r)t.invalidateRow(s);(r=f,t.render(),d=h.length&&h.length+p>=t.getDataLength(),a.hideInColumnTitleRow||a.hideSelectAllCheckbox||R(d),a.hideInFilterHeaderRow)||l("#header-filter-selector"+i).prop("checked",d);if(b.length>0){for(s=0;s<b.length;s++){var m=h.indexOf(b[s]);h.splice(m,1)}t.setSelectedRows(h)}}function f(e,o){32==e.which&&t.getColumns()[o.cell].id===a.columnId&&(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit()||b(o.row),e.preventDefault(),e.stopImmediatePropagation())}function p(e,o){if(t.getColumns()[o.cell].id===a.columnId&&l(e.target).is(":checkbox")){if(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit())return e.preventDefault(),void e.stopImmediatePropagation();b(o.row),e.stopPropagation(),e.stopImmediatePropagation()}}function b(e){var o=t.getDataItem(e);C(e,o,t)&&(r[e]?t.setSelectedRows(l.grep(t.getSelectedRows(),(function(t){return t!=e}))):t.setSelectedRows(t.getSelectedRows().concat(e)),t.setActiveCell(e,function(){if(null===g){g=0;for(var e=t.getColumns(),o=0;o<e.length;o++)e[o].id==a.columnId&&(g=o)}return g}()))}function m(e,o){if(o.column.id==a.columnId&&l(e.target).is(":checkbox")){if(t.getEditorLock().isActive()&&!t.getEditorLock().commitCurrentEdit())return e.preventDefault(),void e.stopImmediatePropagation();if(l(e.target).is(":checked")){for(var n=[],i=0;i<t.getDataLength();i++){C(i,t.getDataItem(i),t)&&n.push(i)}t.setSelectedRows(n)}else t.setSelectedRows([]);e.stopPropagation(),e.stopImmediatePropagation()}}"function"==typeof a.selectableOverride&&v(a.selectableOverride);var g=null;function k(){return Math.round(1e7*Math.random())}function w(e,t,o,l,n,i){var c=k()+e;return n&&C(e,n,i)?r[e]?"<input id=’selector"+c+"’ type=’checkbox’ checked=’checked’><label for=’selector"+c+"’></label>":"<input id=’selector"+c+"’ type=’checkbox’><label for=’selector"+c+"’></label>":null}function C(e,t,l){return"function"!=typeof o||o(e,t,l)}function R(e){e?t.updateColumnHeader(a.columnId,"<input id=’header-selector"+i+"’ type=’checkbox’ checked=’checked’><label for=’header-selector"+i+"’></label>",a.toolTip):t.updateColumnHeader(a.columnId,"<input id=’header-selector"+i+"’ type=’checkbox’><label for=’header-selector"+i+"’></label>",a.toolTip)}function v(e){o=e}l.extend(this,{init:function(e){t=e,c.subscribe(t.onSelectedRowsChanged,h).subscribe(t.onClick,p).subscribe(t.onKeyDown,f),a.hideInFilterHeaderRow||function(e){e.onHeaderRowCellRendered.subscribe((function(e,t){"sel"===t.column.field&&(l(t.node).empty(),l("<span id=’filter-checkbox-selectall-container’><input id=’header-filter-selector"+i+"’ type=’checkbox’><label for=’header-filter-selector"+i+"’></label></span>").appendTo(t.node).on("click",(function(e){m(e,t)})))}))}(e),a.hideInColumnTitleRow||c.subscribe(t.onHeaderClick,m)},destroy:function(){c.unsubscribeAll()},pluginName:"CheckboxSelectColumn",deSelectRows:function(e){var o,n=e.length,i=[];for(o=0;o<n;o++)r[e[o]]&&(i[i.length]=e[o]);t.setSelectedRows(l.grep(t.getSelectedRows(),(function(e){return i.indexOf(e)<0})))},selectRows:function(e){var o,l=e.length,n=[];for(o=0;o<l;o++)r[e[o]]||(n[n.length]=e[o]);t.setSelectedRows(t.getSelectedRows().concat(n))},getColumnDefinition:function(){return{id:a.columnId,name:a.hideSelectAllCheckbox||a.hideInColumnTitleRow?"":"<input id=’header-selector"+i+"’ type=’checkbox’><label for=’header-selector"+i+"’></label>",toolTip:a.hideSelectAllCheckbox||a.hideInColumnTitleRow?"":a.toolTip,field:"sel",width:a.width,resizable:!1,sortable:!1,cssClass:a.cssClass,hideSelectAllCheckbox:a.hideSelectAllCheckbox,formatter:w}},getOptions:function(){return a},selectableOverride:v,setOptions:function(e){if((a=l.extend(!0,{},a,e)).hideSelectAllCheckbox)s(),u();else if(a.hideInColumnTitleRow?s():(R(d),c.subscribe(t.onHeaderClick,m)),a.hideInFilterHeaderRow)u();else{var o=l("#filter-checkbox-selectall-container");o.show(),o.find(‘input[type="checkbox"]’).prop("checked",d)}}})}}},n 462: function _(e,t,o){var l=e(458),n=e(460),a=n.keyCode;t.exports={CellExternalCopyManager:function(e){var t,o,r=this,i=e||{},s=i.copiedCellStyleLayerKey||"copy-manager",u=i.copiedCellStyle||"copied",c=0,d=i.bodyElement||document.body,f=i.onCopyInit||null,h=i.onCopySuccess||null;function C(e){if(i.headerColumnValueExtractor){var t=i.headerColumnValueExtractor(e);if(t)return t}return e.name}function m(e,o,n){if(i.dataItemColumnValueExtractor){var a=i.dataItemColumnValueExtractor(e,o);if(a)return a}var r="";if(o.editor){var s={container:l("<p>"),column:o,position:{top:0,left:0},grid:t,event:n},u=new o.editor(s);u.loadValue(e),r=u.serializeValue(),u.destroy()}else r=e[o.field];return r}function g(e,o,n){if(o.denyPaste)return null;if(i.dataItemColumnValueSetter)return i.dataItemColumnValueSetter(e,o,n);if(o.editor){var a={container:l("body"),column:o,position:{top:0,left:0},grid:t},r=new o.editor(a);r.loadValue(e),r.applyValue(e,n),r.destroy()}else e[o.field]=n}function p(e){var t=document.createElement("textarea");return t.style.position="absolute",t.style.left="-1000px",t.style.top=document.body.scrollTop+"px",t.value=e,d.appendChild(t),t.select(),t}function y(e,l){var n;if(!t.getEditorLock().isActive()||t.getOptions().autoEdit){if(e.which==a.ESC&&o&&(e.preventDefault(),w(),r.onCopyCancelled.notify({ranges:o}),o=null),(e.which===a.C||e.which===a.INSERT)&&(e.ctrlKey||e.metaKey)&&!e.shiftKey&&(f&&f.call(),0!==(n=t.getSelectionModel().getSelectedRanges()).length)){o=n,v(n),r.onCopyCells.notify({ranges:n});for(var s=t.getColumns(),u="",c=0;c<n.length;c++){for(var y=n[c],D=[],S=y.fromRow;S<y.toRow+1;S++){var R=[],x=t.getDataItem(S);if(0===D.length&&i.includeHeaderWhenCopying){for(var E=[],V=y.fromCell;V<y.toCell+1;V++)s[V].name.length>0&&E.push(C(s[V]));D.push(E.join("\t"))}for(V=y.fromCell;V<y.toCell+1;V++)R.push(m(x,s[V],e));D.push(R.join("\t"))}u+=D.join("\r\n")+"\r\n"}if(window.clipboardData)return window.clipboardData.setData("Text",u),!0;var b=document.activeElement;if((M=p(u)).focus(),setTimeout((function(){d.removeChild(M),b?b.focus():console.log("Not element to restore focus to after copy?")}),100),h){var I=0;I=1===n.length?n[0].toRow+1-n[0].fromRow:n.length,h.call(this,I)}return!1}if(!i.readOnlyMode&&(e.which===a.V&&(e.ctrlKey||e.metaKey)&&!e.shiftKey||e.which===a.INSERT&&e.shiftKey&&!e.ctrlKey)){var M=p("");return setTimeout((function(){!function(e,t){var o=e.getColumns(),l=t.value.split(/[\n\f\r]/);""===l[l.length-1]&&l.pop();var n=[],a=0;d.removeChild(t);for(var s=0;s<l.length;s++)""!==l[s]?n[a++]=l[s].split("\t"):n[a++]=[""];var u=e.getActiveCell(),c=e.getSelectionModel().getSelectedRanges(),f=c&&c.length?c[0]:null,h=null,C=null;if(f)h=f.fromRow,C=f.fromCell;else{if(!u)return;h=u.row,C=u.cell}var m=!1,p=n.length,y=n.length?n[0].length:0;1==n.length&&1==n[0].length&&f&&(m=!0,p=f.toRow-f.fromRow+1,y=f.toCell-f.fromCell+1);var w=e.getData().length-h,D=0;if(w<p&&i.newRowCreator){var S=e.getData();for(D=1;D<=p-w;D++)S.push({});e.setData(S),e.render()}var R=h+p>e.getDataLength();if(i.newRowCreator&&R){var x=h+p-e.getDataLength();i.newRowCreator(x)}var E={isClipboardCommand:!0,clippedRange:n,oldValues:[],cellExternalCopyManager:r,_options:i,setDataItemValueForColumn:g,markCopySelection:v,oneCellToMultiple:m,activeRow:h,activeCell:C,destH:p,destW:y,maxDestY:e.getDataLength(),maxDestX:e.getColumns().length,h:0,w:0,execute:function(){this.h=0;for(var t=0;t<this.destH;t++){this.oldValues[t]=[],this.w=0,this.h++;for(var l=0;l<this.destW;l++){this.w++;var a=h+t,r=C+l;if(a<this.maxDestY&&r<this.maxDestX){e.getCellNode(a,r);var i=e.getDataItem(a);this.oldValues[t][l]=i[o[r].field],m?this.setDataItemValueForColumn(i,o[r],n[0][0]):this.setDataItemValueForColumn(i,o[r],n[t]?n[t][l]:""),e.updateCell(a,r),e.onCellChange.notify({row:a,cell:r,item:i,grid:e})}}}var s={fromCell:C,fromRow:h,toCell:C+this.w-1,toRow:h+this.h-1};this.markCopySelection([s]),e.getSelectionModel().setSelectedRanges([s]),this.cellExternalCopyManager.onPasteCells.notify({ranges:[s]})},undo:function(){for(var t=0;t<this.destH;t++)for(var l=0;l<this.destW;l++){var n=h+t,a=C+l;if(n<this.maxDestY&&a<this.maxDestX){e.getCellNode(n,a);var r=e.getDataItem(n);m?this.setDataItemValueForColumn(r,o[a],this.oldValues[0][0]):this.setDataItemValueForColumn(r,o[a],this.oldValues[t][l]),e.updateCell(n,a),e.onCellChange.notify({row:n,cell:a,item:r,grid:e})}}var i={fromCell:C,fromRow:h,toCell:C+this.w-1,toRow:h+this.h-1};if(this.markCopySelection([i]),e.getSelectionModel().setSelectedRanges([i]),this.cellExternalCopyManager.onPasteCells.notify({ranges:[i]}),D>1){for(var s=e.getData();D>1;D–)s.splice(s.length-1,1);e.setData(s),e.render()}}};i.clipboardCommandHandler?i.clipboardCommandHandler(E):E.execute()}(t,M)}),100),!1}}}function v(e){w();for(var o=t.getColumns(),l={},n=0;n<e.length;n++)for(var a=e[n].fromRow;a<=e[n].toRow;a++){l[a]={};for(var i=e[n].fromCell;i<=e[n].toCell&&i<o.length;i++)l[a][o[i].id]=u}t.setCellCssStyles(s,l),clearTimeout(c),c=setTimeout((function(){r.clearCopySelection()}),2e3)}function w(){t.removeCellCssStyles(s)}l.extend(this,{init:function(e){(t=e).onKeyDown.subscribe(y);var o=e.getSelectionModel();if(!o)throw new Error("Selection model is mandatory for this plugin. Please set a selection model on the grid before adding this plugin: grid.setSelectionModel(new Slick.CellSelectionModel())");o.onSelectedRangesChanged.subscribe((function(e,o){t.focus()}))},destroy:function(){t.onKeyDown.unsubscribe(y)},pluginName:"CellExternalCopyManager",clearCopySelection:w,handleKeyDown:y,onCopyCells:new n.Event,onCopyCancelled:new n.Event,onPasteCells:new n.Event,setIncludeHeaderWhenCopying:function(e){i.includeHeaderWhenCopying=e}})}}},n 463: function _(r,t,o){var _=r(1);_.__exportStar(r(460),t.exports),_.__exportStar(r(464),t.exports),_.__exportStar(r(467),t.exports),_.__exportStar(r(468),t.exports),_.__exportStar(r(469),t.exports),_.__exportStar(r(470),t.exports),_.__exportStar(r(471),t.exports)},n 464: function _(require,module,exports){n /n * @licensen * (c) 2009-2016 Michael Leibmann * michael{dot}leibman{at}gmail{dot}comn * http://github.com/mleibman/slickgridn n * Distributed under MIT license.n * All rights reserved.n *n * SlickGrid v2.4n *n * NOTES:n * Cell/row DOM manipulations are done directly bypassing jQuery’s DOM manipulation methods.n * This increases the speed dramatically, but can only be done safely because there are no event handlersn * or data associated with any cell/row DOM nodes. Cell editors must make sure they implement .destroy()n * and do proper cleanup.n */n var $=require(458),Slick=require(460),scrollbarDimensions,maxSupportedCssHeight;function SlickGrid(container,data,columns,options){$.fn.drag||require(465),$.fn.drop||require(466);var defaults={alwaysShowVerticalScroll:!1,alwaysAllowHorizontalScroll:!1,explicitInitialization:!1,rowHeight:25,defaultColumnWidth:80,enableAddRow:!1,leaveSpaceForNewRows:!1,editable:!1,autoEdit:!0,suppressActiveCellChangeOnEdit:!1,enableCellNavigation:!0,enableColumnReorder:!0,asyncEditorLoading:!1,asyncEditorLoadDelay:100,forceFitColumns:!1,enableAsyncPostRender:!1,asyncPostRenderDelay:50,enableAsyncPostRenderCleanup:!1,asyncPostRenderCleanupDelay:40,autoHeight:!1,editorLock:Slick.GlobalEditorLock,showColumnHeader:!0,showHeaderRow:!1,headerRowHeight:25,createFooterRow:!1,showFooterRow:!1,footerRowHeight:25,createPreHeaderPanel:!1,showPreHeaderPanel:!1,preHeaderPanelHeight:25,showTopPanel:!1,topPanelHeight:25,formatterFactory:null,editorFactory:null,cellFlashingCssClass:"flashing",selectedCellCssClass:"selected",multiSelect:!0,enableTextSelectionOnCells:!1,dataItemColumnValueExtractor:null,frozenBottom:!1,frozenColumn:-1,frozenRow:-1,fullWidthRows:!1,multiColumnSort:!1,numberedMultiColumnSort:!1,tristateMultiColumnSort:!1,sortColNumberInSeparateSpan:!1,defaultFormatter,forceSyncScrolling:!1,addNewRowCssClass:"new-row",preserveCopiedSelectionOnPaste:!1,showCellSelection:!0,viewportClass:null,minRowBuffer:3,emulatePagingWhenScrolling:!0,editorCellNavOnLRKeys:!1,doPaging:!0,autosizeColsMode:Slick.GridAutosizeColsMode.LegacyOff,autosizeColPaddingPx:4,autosizeTextAvgToMWidthRatio:.75,viewportSwitchToScrollModeWidthPercent:void 0,viewportMinWidthPx:void 0,viewportMaxWidthPx:void 0},columnDefaults={name:"",resizable:!0,sortable:!1,minWidth:30,maxWidth:void 0,rerenderOnResize:!1,headerCssClass:null,defaultSortAsc:!0,focusable:!0,selectable:!0},columnAutosizeDefaults={ignoreHeaderText:!1,colValueArray:void 0,allowAddlPercent:void 0,formatterOverride:void 0,autosizeMode:Slick.ColAutosizeMode.ContentIntelligent,rowSelectionModeOnInit:void 0,rowSelectionMode:Slick.RowSelectionMode.FirstNRows,rowSelectionCount:100,valueFilterMode:Slick.ValueFilterMode.None,widthEvalMode:Slick.WidthEvalMode.CanvasTextSize,sizeToRemaining:void 0,widthPx:void 0,colDataTypeOf:void 0},th,h,ph,n,cj,page=0,offset=0,vScrollDir=1,initialized=!1,$container,uid="slickgrid_"+Math.round(1e6*Math.random()),self=this,$focusSink,$focusSink2,$groupHeaders=$(),$headerScroller,$headers,$headerRow,$headerRowScroller,$headerRowSpacerL,$headerRowSpacerR,$footerRow,$footerRowScroller,$footerRowSpacerL,$footerRowSpacerR,$preHeaderPanel,$preHeaderPanelScroller,$preHeaderPanelSpacer,$preHeaderPanelR,$preHeaderPanelScrollerR,$preHeaderPanelSpacerR,$topPanelScroller,$topPanel,$viewport,$canvas,$style,$boundAncestors,treeColumns,stylesheet,columnCssRulesL,columnCssRulesR,viewportH,viewportW,canvasWidth,canvasWidthL,canvasWidthR,headersWidth,headersWidthL,headersWidthR,viewportHasHScroll,viewportHasVScroll,headerColumnWidthDiff=0,headerColumnHeightDiff=0,cellWidthDiff=0,cellHeightDiff=0,jQueryNewWidthBehaviour=!1,absoluteColumnMinWidth,hasFrozenRows=!1,frozenRowsHeight=0,actualFrozenRow=-1,paneTopH=0,paneBottomH=0,viewportTopH=0,viewportBottomH=0,topPanelH=0,headerRowH=0,footerRowH=0,tabbingDirection=1,$activeCanvasNode,$activeViewportNode,activePosX,activeRow,activeCell,activeCellNode=null,currentEditor=null,serializedEditorValue,editController,rowsCache={},renderedRows=0,numVisibleRows=0,prevScrollTop=0,scrollTop=0,lastRenderedScrollTop=0,lastRenderedScrollLeft=0,prevScrollLeft=0,scrollLeft=0,selectionModel,selectedRows=[],plugins=[],cellCssClasses={},columnsById={},sortColumns=[],columnPosLeft=[],columnPosRight=[],pagingActive=!1,pagingIsLastPage=!1,scrollThrottle=ActionThrottle(render,50),h_editorLoader=null,h_render=null,h_postrender=null,h_postrenderCleanup=null,postProcessedRows={},postProcessToRow=null,postProcessFromRow=null,postProcessedCleanupQueue=[],postProcessgroupId=0,counter_rows_rendered=0,counter_rows_removed=0,rowNodeFromLastMouseWheelEvent,zombieRowNodeFromLastMouseWheelEvent,zombieRowCacheFromLastMouseWheelEvent,zombieRowPostProcessedFromLastMouseWheelEvent,$paneHeaderL,$paneHeaderR,$paneTopL,$paneTopR,$paneBottomL,$paneBottomR,$headerScrollerL,$headerScrollerR,$headerL,$headerR,$groupHeadersL,$groupHeadersR,$headerRowScrollerL,$headerRowScrollerR,$footerRowScrollerL,$footerRowScrollerR,$headerRowL,$headerRowR,$footerRowL,$footerRowR,$topPanelScrollerL,$topPanelScrollerR,$topPanelL,$topPanelR,$viewportTopL,$viewportTopR,$viewportBottomL,$viewportBottomR,$canvasTopL,$canvasTopR,$canvasBottomL,$canvasBottomR,$viewportScrollContainerX,$viewportScrollContainerY,$headerScrollContainer,$headerRowScrollContainer,$footerRowScrollContainer,cssShow={position:"absolute",visibility:"hidden",display:"block"},$hiddenParents,oldProps=[],columnResizeDragging=!1;function init(){if(($container=container instanceof $?container:$(container)).length<1)throw new Error("SlickGrid requires a valid container, "+container+" does not exist in the DOM.");if(cacheCssForHiddenInit(),maxSupportedCssHeight=maxSupportedCssHeight||getMaxSupportedCssHeight(),options=$.extend({},defaults,options),validateAndEnforceOptions(),columnDefaults.width=options.defaultColumnWidth,treeColumns=new Slick.TreeColumns(columns),columns=treeColumns.extractColumns(),updateColumnProps(),options.enableColumnReorder&&!$.fn.sortable)throw new Error("SlickGrid’s ‘enableColumnReorder = true’ option requires jquery-ui.sortable module to be loaded");if(editController={commitCurrentEdit,cancelCurrentEdit},$container.empty().css("overflow","hidden").css("outline",0).addClass(uid).addClass("ui-widget"),/relative|absolute|fixed/.test($container.css("position"))||$container.css("position","relative"),$focusSink=$("<div tabIndex=’0’ hideFocus style=’position:fixed;width:0;height:0;top:0;left:0;outline:0;’></div>").appendTo($container),$paneHeaderL=$("<div class=’slick-pane slick-pane-header slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneHeaderR=$("<div class=’slick-pane slick-pane-header slick-pane-right’ tabIndex=’0’ />").appendTo($container),$paneTopL=$("<div class=’slick-pane slick-pane-top slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneTopR=$("<div class=’slick-pane slick-pane-top slick-pane-right’ tabIndex=’0’ />").appendTo($container),$paneBottomL=$("<div class=’slick-pane slick-pane-bottom slick-pane-left’ tabIndex=’0’ />").appendTo($container),$paneBottomR=$("<div class=’slick-pane slick-pane-bottom slick-pane-right’ tabIndex=’0’ />").appendTo($container),options.createPreHeaderPanel&&($preHeaderPanelScroller=$("<div class=’slick-preheader-panel ui-state-default’ style=’overflow:hidden;position:relative;’ />").appendTo($paneHeaderL),$preHeaderPanel=$("<div />").appendTo($preHeaderPanelScroller),$preHeaderPanelSpacer=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($preHeaderPanelScroller),$preHeaderPanelScrollerR=$("<div class=’slick-preheader-panel ui-state-default’ style=’overflow:hidden;position:relative;’ />").appendTo($paneHeaderR),$preHeaderPanelR=$("<div />").appendTo($preHeaderPanelScrollerR),$preHeaderPanelSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($preHeaderPanelScrollerR),options.showPreHeaderPanel||($preHeaderPanelScroller.hide(),$preHeaderPanelScrollerR.hide())),$headerScrollerL=$("<div class=’slick-header ui-state-default slick-header-left’ />").appendTo($paneHeaderL),$headerScrollerR=$("<div class=’slick-header ui-state-default slick-header-right’ />").appendTo($paneHeaderR),$headerScroller=$().add($headerScrollerL).add($headerScrollerR),treeColumns.hasDepth()){$groupHeadersL=[],$groupHeadersR=[];for(var e=0;e<treeColumns.getDepth()-1;e++)$groupHeadersL[e]=$("<div class=’slick-group-header-columns slick-group-header-columns-left’ style=’left:-1000px’ />").appendTo($headerScrollerL),$groupHeadersR[e]=$("<div class=’slick-group-header-columns slick-group-header-columns-right’ style=’left:-1000px’ />").appendTo($headerScrollerR);$groupHeaders=$().add($groupHeadersL).add($groupHeadersR)}$headerL=$("<div class=’slick-header-columns slick-header-columns-left’ style=’left:-1000px’ />").appendTo($headerScrollerL),$headerR=$("<div class=’slick-header-columns slick-header-columns-right’ style=’left:-1000px’ />").appendTo($headerScrollerR),$headers=$().add($headerL).add($headerR),$headerRowScrollerL=$("<div class=’slick-headerrow ui-state-default’ />").appendTo($paneTopL),$headerRowScrollerR=$("<div class=’slick-headerrow ui-state-default’ />").appendTo($paneTopR),$headerRowScroller=$().add($headerRowScrollerL).add($headerRowScrollerR),$headerRowSpacerL=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($headerRowScrollerL),$headerRowSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").appendTo($headerRowScrollerR),$headerRowL=$("<div class=’slick-headerrow-columns slick-headerrow-columns-left’ />").appendTo($headerRowScrollerL),$headerRowR=$("<div class=’slick-headerrow-columns slick-headerrow-columns-right’ />").appendTo($headerRowScrollerR),$headerRow=$().add($headerRowL).add($headerRowR),$topPanelScrollerL=$("<div class=’slick-top-panel-scroller ui-state-default’ />").appendTo($paneTopL),$topPanelScrollerR=$("<div class=’slick-top-panel-scroller ui-state-default’ />").appendTo($paneTopR),$topPanelScroller=$().add($topPanelScrollerL).add($topPanelScrollerR),$topPanelL=$("<div class=’slick-top-panel’ style=’width:10000px’ />").appendTo($topPanelScrollerL),$topPanelR=$("<div class=’slick-top-panel’ style=’width:10000px’ />").appendTo($topPanelScrollerR),$topPanel=$().add($topPanelL).add($topPanelR),options.showColumnHeader||$headerScroller.hide(),options.showTopPanel||$topPanelScroller.hide(),options.showHeaderRow||$headerRowScroller.hide(),$viewportTopL=$("<div class=’slick-viewport slick-viewport-top slick-viewport-left’ tabIndex=’0’ hideFocus />").appendTo($paneTopL),$viewportTopR=$("<div class=’slick-viewport slick-viewport-top slick-viewport-right’ tabIndex=’0’ hideFocus />").appendTo($paneTopR),$viewportBottomL=$("<div class=’slick-viewport slick-viewport-bottom slick-viewport-left’ tabIndex=’0’ hideFocus />").appendTo($paneBottomL),$viewportBottomR=$("<div class=’slick-viewport slick-viewport-bottom slick-viewport-right’ tabIndex=’0’ hideFocus />").appendTo($paneBottomR),$viewport=$().add($viewportTopL).add($viewportTopR).add($viewportBottomL).add($viewportBottomR),$activeViewportNode=$viewportTopL,$canvasTopL=$("<div class=’grid-canvas grid-canvas-top grid-canvas-left’ tabIndex=’0’ hideFocus />").appendTo($viewportTopL),$canvasTopR=$("<div class=’grid-canvas grid-canvas-top grid-canvas-right’ tabIndex=’0’ hideFocus />").appendTo($viewportTopR),$canvasBottomL=$("<div class=’grid-canvas grid-canvas-bottom grid-canvas-left’ tabIndex=’0’ hideFocus />").appendTo($viewportBottomL),$canvasBottomR=$("<div class=’grid-canvas grid-canvas-bottom grid-canvas-right’ tabIndex=’0’ hideFocus />").appendTo($viewportBottomR),options.viewportClass&&$viewport.toggleClass(options.viewportClass,!0),$canvas=$().add($canvasTopL).add($canvasTopR).add($canvasBottomL).add($canvasBottomR),scrollbarDimensions=scrollbarDimensions||measureScrollbar(),$activeCanvasNode=$canvasTopL,$preHeaderPanelSpacer&&$preHeaderPanelSpacer.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),$headers.width(getHeadersWidth()),$headerRowSpacerL.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),$headerRowSpacerR.css("width",getCanvasWidth()+scrollbarDimensions.width+"px"),options.createFooterRow&&($footerRowScrollerR=$("<div class=’slick-footerrow ui-state-default’ />").appendTo($paneTopR),$footerRowScrollerL=$("<div class=’slick-footerrow ui-state-default’ />").appendTo($paneTopL),$footerRowScroller=$().add($footerRowScrollerL).add($footerRowScrollerR),$footerRowSpacerL=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").css("width",getCanvasWidth()+scrollbarDimensions.width+"px").appendTo($footerRowScrollerL),$footerRowSpacerR=$("<div style=’display:block;height:1px;position:absolute;top:0;left:0;’></div>").css("width",getCanvasWidth()+scrollbarDimensions.width+"px").appendTo($footerRowScrollerR),$footerRowL=$("<div class=’slick-footerrow-columns slick-footerrow-columns-left’ />").appendTo($footerRowScrollerL),$footerRowR=$("<div class=’slick-footerrow-columns slick-footerrow-columns-right’ />").appendTo($footerRowScrollerR),$footerRow=$().add($footerRowL).add($footerRowR),options.showFooterRow||$footerRowScroller.hide()),$focusSink2=$focusSink.clone().appendTo($container),options.explicitInitialization||finishInitialization()}function finishInitialization(){initialized||(initialized=!0,getViewportWidth(),getViewportHeight(),measureCellPaddingAndBorder(),disableSelection($headers),options.enableTextSelectionOnCells||$viewport.on("selectstart.ui",(function(e){return $(e.target).is("input,textarea")})),setFrozenOptions(),setPaneVisibility(),setScroller(),setOverflow(),updateColumnCaches(),createColumnHeaders(),createColumnGroupHeaders(),createColumnFooter(),setupColumnSort(),createCssRules(),resizeCanvas(),bindAncestorScrollEvents(),$container.on("resize.slickgrid",resizeCanvas),$viewport.on("scroll",handleScroll),$.fn.mousewheel&&$viewport.on("mousewheel",handleMouseWheel),$headerScroller.on("contextmenu",handleHeaderContextMenu).on("click",handleHeaderClick).on("mouseenter",".slick-header-column",handleHeaderMouseEnter).on("mouseleave",".slick-header-column",handleHeaderMouseLeave),$headerRowScroller.on("scroll",handleHeaderRowScroll),options.createFooterRow&&($footerRow.on("contextmenu",handleFooterContextMenu).on("click",handleFooterClick),$footerRowScroller.on("scroll",handleFooterRowScroll)),options.createPreHeaderPanel&&$preHeaderPanelScroller.on("scroll",handlePreHeaderPanelScroll),$focusSink.add($focusSink2).on("keydown",handleKeyDown),$canvas.on("keydown",handleKeyDown).on("click",handleClick).on("dblclick",handleDblClick).on("contextmenu",handleContextMenu).on("draginit",handleDragInit).on("dragstart",{distance:3},handleDragStart).on("drag",handleDrag).on("dragend",handleDragEnd).on("mouseenter",".slick-cell",handleMouseEnter).on("mouseleave",".slick-cell",handleMouseLeave),restoreCssFromHiddenInit())}function cacheCssForHiddenInit(){($hiddenParents=$container.parents().addBack().not(":visible")).each((function(){var e={};for(var o in cssShow)e[o]=this.style[o],this.style[o]=cssShow[o];oldProps.push(e)}))}function restoreCssFromHiddenInit(){$hiddenParents.each((function(e){var o=oldProps[e];for(var t in cssShow)this.style[t]=o[t]}))}function hasFrozenColumns(){return options.frozenColumn>-1}function registerPlugin(e){plugins.unshift(e),e.init(self)}function unregisterPlugin(e){for(var o=plugins.length;o>=0;o–)if(plugins[o]===e){plugins[o].destroy&&plugins[o].destroy(),plugins.splice(o,1);break}}function getPluginByName(e){for(var o=plugins.length-1;o>=0;o–)if(plugins[o].pluginName===e)return plugins[o]}function setSelectionModel(e){selectionModel&&(selectionModel.onSelectedRangesChanged.unsubscribe(handleSelectedRangesChanged),selectionModel.destroy&&selectionModel.destroy()),(selectionModel=e)&&(selectionModel.init(self),selectionModel.onSelectedRangesChanged.subscribe(handleSelectedRangesChanged))}function getSelectionModel(){return selectionModel}function getCanvasNode(e,o){e||(e=0),o||(o=0);var t="number"==typeof e?e:getColumnIndex(e);return hasFrozenRows&&o>=actualFrozenRow+(options.frozenBottom?0:1)?hasFrozenColumns()&&t>options.frozenColumn?$canvasBottomR[0]:$canvasBottomL[0]:hasFrozenColumns()&&t>options.frozenColumn?$canvasTopR[0]:$canvasTopL[0]}function getActiveCanvasNode(e){return setActiveCanvasNode(e),$activeCanvasNode[0]}function getCanvases(){return $canvas}function setActiveCanvasNode(e){e&&($activeCanvasNode=$(e.target).closest(".grid-canvas"))}function getViewportNode(){return $viewport[0]}function getActiveViewportNode(e){return setActiveViewPortNode(e),$activeViewportNode[0]}function setActiveViewportNode(e){e&&($activeViewportNode=$(e.target).closest(".slick-viewport"))}function measureScrollbar(){var e=$(‘<div class="’+$viewport.className+’" style="position:absolute; top:-10000px; left:-10000px; overflow:auto; width:100px; height:100px;"></div>’).appendTo("body"),o=$(‘<div style="width:200px; height:200px; overflow:auto;"></div>’).appendTo(e),t={width:e[0].offsetWidth-e[0].clientWidth,height:e[0].offsetHeight-e[0].clientHeight};return o.remove(),e.remove(),t}function getHeadersWidth(){headersWidth=headersWidthL=headersWidthR=0;for(var e=!options.autoHeight,o=0,t=columns.length;o<t;o++){var n=columns[o].width;options.frozenColumn>-1&&o>options.frozenColumn?headersWidthR+=n:headersWidthL+=n}return e&&(options.frozenColumn>-1&&o>options.frozenColumn?headersWidthR+=scrollbarDimensions.width:headersWidthL+=scrollbarDimensions.width),hasFrozenColumns()?(headersWidthL+=1e3,headersWidthR=Math.max(headersWidthR,viewportW)+headersWidthL,headersWidthR+=scrollbarDimensions.width):(headersWidthL+=scrollbarDimensions.width,headersWidthL=Math.max(headersWidthL,viewportW)+1e3),headersWidth=headersWidthL+headersWidthR,Math.max(headersWidth,viewportW)+1e3}function getHeadersWidthL(){return headersWidthL=0,columns.forEach((function(e,o){options.frozenColumn>-1&&o>options.frozenColumn||(headersWidthL+=e.width)})),hasFrozenColumns()?headersWidthL+=1e3:(headersWidthL+=scrollbarDimensions.width,headersWidthL=Math.max(headersWidthL,viewportW)+1e3),headersWidthL}function getHeadersWidthR(){return headersWidthR=0,columns.forEach((function(e,o){options.frozenColumn>-1&&o>options.frozenColumn&&(headersWidthR+=e.width)})),hasFrozenColumns()&&(headersWidthR=Math.max(headersWidthR,viewportW)+getHeadersWidthL(),headersWidthR+=scrollbarDimensions.width),headersWidthR}function getCanvasWidth(){var e=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW,o=columns.length;for(canvasWidthL=canvasWidthR=0;o–;)hasFrozenColumns()&&o>options.frozenColumn?canvasWidthR+=columns[o].width:canvasWidthL+=columns[o].width;var t=canvasWidthL+canvasWidthR;return options.fullWidthRows?Math.max(t,e):t}function updateCanvasWidth(e){var o,t=canvasWidth,n=canvasWidthL,l=canvasWidthR;((o=(canvasWidth=getCanvasWidth())!==t||canvasWidthL!==n||canvasWidthR!==l)||hasFrozenColumns()||hasFrozenRows)&&($canvasTopL.width(canvasWidthL),getHeadersWidth(),$headerL.width(headersWidthL),$headerR.width(headersWidthR),hasFrozenColumns()?($canvasTopR.width(canvasWidthR),$paneHeaderL.width(canvasWidthL),$paneHeaderR.css("left",canvasWidthL),$paneHeaderR.css("width",viewportW-canvasWidthL),$paneTopL.width(canvasWidthL),$paneTopR.css("left",canvasWidthL),$paneTopR.css("width",viewportW-canvasWidthL),$headerRowScrollerL.width(canvasWidthL),$headerRowScrollerR.width(viewportW-canvasWidthL),$headerRowL.width(canvasWidthL),$headerRowR.width(canvasWidthR),options.createFooterRow&&($footerRowScrollerL.width(canvasWidthL),$footerRowScrollerR.width(viewportW-canvasWidthL),$footerRowL.width(canvasWidthL),$footerRowR.width(canvasWidthR)),options.createPreHeaderPanel&&$preHeaderPanel.width(canvasWidth),$viewportTopL.width(canvasWidthL),$viewportTopR.width(viewportW-canvasWidthL),hasFrozenRows&&($paneBottomL.width(canvasWidthL),$paneBottomR.css("left",canvasWidthL),$viewportBottomL.width(canvasWidthL),$viewportBottomR.width(viewportW-canvasWidthL),$canvasBottomL.width(canvasWidthL),$canvasBottomR.width(canvasWidthR))):($paneHeaderL.width("100%"),$paneTopL.width("100%"),$headerRowScrollerL.width("100%"),$headerRowL.width(canvasWidth),options.createFooterRow&&($footerRowScrollerL.width("100%"),$footerRowL.width(canvasWidth)),options.createPreHeaderPanel&&($preHeaderPanel.width("100%"),$preHeaderPanel.width(canvasWidth)),$viewportTopL.width("100%"),hasFrozenRows&&($viewportBottomL.width("100%"),$canvasBottomL.width(canvasWidthL))),viewportHasHScroll=canvasWidth>viewportW-scrollbarDimensions.width),$headerRowSpacerL.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),$headerRowSpacerR.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),options.createFooterRow&&($footerRowSpacerL.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0)),$footerRowSpacerR.width(canvasWidth+(viewportHasVScroll?scrollbarDimensions.width:0))),(o||e)&&applyColumnWidths()}function disableSelection(e){e&&e.jquery&&e.attr("unselectable","on").css("MozUserSelect","none").on("selectstart.ui",(function(){return!1}))}function getMaxSupportedCssHeight(){for(var e=1e6,o=navigator.userAgent.toLowerCase().match(/firefox/)?6e6:1e9,t=$("<div style=’display:none’ />").appendTo(document.body);;){var n=2*e;if(t.css("height",n),n>o||t.height()!==n)break;e=n}return t.remove(),e}function getUID(){return uid}function getHeaderColumnWidthDiff(){return headerColumnWidthDiff}function getScrollbarDimensions(){return scrollbarDimensions}function bindAncestorScrollEvents(){for(var e=hasFrozenRows&&!options.frozenBottom?$canvasBottomL[0]:$canvasTopL[0];(e=e.parentNode)!=document.body&&null!=e;)if(e==$viewportTopL[0]||e.scrollWidth!=e.clientWidth||e.scrollHeight!=e.clientHeight){var o=$(e);$boundAncestors=$boundAncestors?$boundAncestors.add(o):o,o.on("scroll."+uid,handleActiveCellPositionChange)}}function unbindAncestorScrollEvents(){$boundAncestors&&($boundAncestors.off("scroll."+uid),$boundAncestors=null)}function updateColumnHeader(e,o,t){if(initialized){var n=getColumnIndex(e);if(null!=n){var l=columns[n],r=$headers.children().eq(n);r&&(void 0!==o&&(columns[n].name=o),void 0!==t&&(columns[n].toolTip=t),trigger(self.onBeforeHeaderCellDestroy,{node:r[0],column:l,grid:self}),r.attr("title",t||"").children().eq(0).html(o),trigger(self.onHeaderCellRendered,{node:r[0],column:l,grid:self}))}}}function getHeader(e){if(!e)return hasFrozenColumns()?$headers:$headerL;var o=getColumnIndex(e.id);return hasFrozenColumns()?o<=options.frozenColumn?$headerL:$headerR:$headerL}function getHeaderColumn(e){var o="number"==typeof e?e:getColumnIndex(e),t=hasFrozenColumns()?o<=options.frozenColumn?$headerL:$headerR:$headerL,n=hasFrozenColumns()?o<=options.frozenColumn?o:o-options.frozenColumn-1:o,l=t.children().eq(n);return l&&l[0]}function getHeaderRow(){return hasFrozenColumns()?$headerRow:$headerRow[0]}function getFooterRow(){return hasFrozenColumns()?$footerRow:$footerRow[0]}function getPreHeaderPanel(){return $preHeaderPanel[0]}function getPreHeaderPanelRight(){return $preHeaderPanelR[0]}function getHeaderRowColumn(e){var o,t="number"==typeof e?e:getColumnIndex(e);hasFrozenColumns()?t<=options.frozenColumn?o=$headerRowL:(o=$headerRowR,t-=options.frozenColumn+1):o=$headerRowL;var n=o.children().eq(t);return n&&n[0]}function getFooterRowColumn(e){var o,t="number"==typeof e?e:getColumnIndex(e);hasFrozenColumns()?t<=options.frozenColumn?o=$footerRowL:(o=$footerRowR,t-=options.frozenColumn+1):o=$footerRowL;var n=o&&o.children().eq(t);return n&&n[0]}function createColumnFooter(){if(options.createFooterRow){$footerRow.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowL.empty(),$footerRowR.empty();for(var e=0;e<columns.length;e++){var o=columns[e],t=$("<div class=’ui-state-default slick-footerrow-column l"+e+" r"+e+"’></div>").data("column",o).addClass(hasFrozenColumns()&&e<=options.frozenColumn?"frozen":"").appendTo(hasFrozenColumns()&&e>options.frozenColumn?$footerRowR:$footerRowL);trigger(self.onFooterRowCellRendered,{node:t[0],column:o,grid:self})}}}function createColumnGroupHeaders(){var e=0,o=!1;if(treeColumns.hasDepth()){for(var t=0;t<$groupHeadersL.length;t++){$groupHeadersL[t].empty(),$groupHeadersR[t].empty();var n=treeColumns.getColumnsInDepth(t);for(var l in n){var r=n[l];e+=r.extractColumns().length,hasFrozenColumns()&&0===t&&e-1===options.frozenColumn&&(o=!0),$("<div class=’ui-state-default slick-group-header-column’ />").html("<span class=’slick-column-name’>"+r.name+"</span>").attr("id",""+uid+r.id).attr("title",r.toolTip||"").data("column",r).addClass(r.headerCssClass||"").addClass(hasFrozenColumns()&&e-1>options.frozenColumn?"frozen":"").appendTo(hasFrozenColumns()&&e-1>options.frozenColumn?$groupHeadersR[t]:$groupHeadersL[t])}if(hasFrozenColumns()&&0===t&&!o){$groupHeadersL[t].empty(),$groupHeadersR[t].empty(),alert("All columns of group should to be grouped!");break}}applyColumnGroupHeaderWidths()}}function createColumnHeaders(){function e(){$(this).addClass("ui-state-hover")}function o(){$(this).removeClass("ui-state-hover")}$headers.find(".slick-header-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeHeaderCellDestroy,{node:this,column:e,grid:self})})),$headerL.empty(),$headerR.empty(),getHeadersWidth(),$headerL.width(headersWidthL),$headerR.width(headersWidthR),$headerRow.find(".slick-headerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeHeaderRowCellDestroy,{node:this,column:e,grid:self})})),$headerRowL.empty(),$headerRowR.empty(),options.createFooterRow&&($footerRowL.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowL.empty(),hasFrozenColumns()&&($footerRowR.find(".slick-footerrow-column").each((function(){var e=$(this).data("column");e&&trigger(self.onBeforeFooterRowCellDestroy,{node:this,column:e,grid:self})})),$footerRowR.empty()));for(var t=0;t<columns.length;t++){var n=columns[t],l=hasFrozenColumns()?t<=options.frozenColumn?$headerL:$headerR:$headerL,r=hasFrozenColumns()?t<=options.frozenColumn?$headerRowL:$headerRowR:$headerRowL,i=$("<div class=’ui-state-default slick-header-column’ />").html("<span class=’slick-column-name’>"+n.name+"</span>").width(n.width-headerColumnWidthDiff).attr("id",""+uid+n.id).attr("title",n.toolTip||"").data("column",n).addClass(n.headerCssClass||"").addClass(hasFrozenColumns()&&t<=options.frozenColumn?"frozen":"").appendTo(l);if((options.enableColumnReorder||n.sortable)&&i.on("mouseenter",e).on("mouseleave",o),n.hasOwnProperty("headerCellAttrs")&&n.headerCellAttrs instanceof Object)for(var a in n.headerCellAttrs)n.headerCellAttrs.hasOwnProperty(a)&&i.attr(a,n.headerCellAttrs[a]);if(n.sortable&&(i.addClass("slick-header-sortable"),i.append("<span class=’slick-sort-indicator"+(options.numberedMultiColumnSort&&!options.sortColNumberInSeparateSpan?" slick-sort-indicator-numbered":"")+"’ />"),options.numberedMultiColumnSort&&options.sortColNumberInSeparateSpan&&i.append("<span class=’slick-sort-indicator-numbered’ />")),trigger(self.onHeaderCellRendered,{node:i[0],column:n,grid:self}),options.showHeaderRow){var s=$("<div class=’ui-state-default slick-headerrow-column l"+t+" r"+t+"’></div>").data("column",n).addClass(hasFrozenColumns()&&t<=options.frozenColumn?"frozen":"").appendTo(r);trigger(self.onHeaderRowCellRendered,{node:s[0],column:n,grid:self})}if(options.createFooterRow&&options.showFooterRow){var d=$("<div class=’ui-state-default slick-footerrow-column l"+t+" r"+t+"’></div>").data("column",n).appendTo($footerRow);trigger(self.onFooterRowCellRendered,{node:d[0],column:n,grid:self})}}setSortColumns(sortColumns),setupColumnResize(),options.enableColumnReorder&&("function"==typeof options.enableColumnReorder?options.enableColumnReorder(self,$headers,headerColumnWidthDiff,setColumns,setupColumnResize,columns,getColumnIndex,uid,trigger):setupColumnReorder())}function setupColumnSort(){$headers.click((function(e){if(!columnResizeDragging&&(e.metaKey=e.metaKey||e.ctrlKey,!$(e.target).hasClass("slick-resizable-handle"))){var o=$(e.target).closest(".slick-header-column");if(o.length){var t=o.data("column");if(t.sortable){if(!getEditorLock().commitCurrentEdit())return;for(var n=null,l=0;l<sortColumns.length;l++)if(sortColumns[l].columnId==t.id){(n=sortColumns[l]).sortAsc=!n.sortAsc;break}var r=!!n;options.tristateMultiColumnSort?(n||(n={columnId:t.id,sortAsc:t.defaultSortAsc}),r&&n.sortAsc&&(sortColumns.splice(l,1),n=null),options.multiColumnSort||(sortColumns=[]),!n||r&&options.multiColumnSort||sortColumns.push(n)):e.metaKey&&options.multiColumnSort?n&&sortColumns.splice(l,1):((e.shiftKey||e.metaKey)&&options.multiColumnSort||(sortColumns=[]),n?0===sortColumns.length&&sortColumns.push(n):(n={columnId:t.id,sortAsc:t.defaultSortAsc},sortColumns.push(n))),setSortColumns(sortColumns),options.multiColumnSort?trigger(self.onSort,{multiColumnSort:!0,sortCols:$.map(sortColumns,(function(e){return{columnId:columns[getColumnIndex(e.columnId)].id,sortCol:columns[getColumnIndex(e.columnId)],sortAsc:e.sortAsc}}))},e):trigger(self.onSort,{multiColumnSort:!1,columnId:sortColumns.length>0?t.id:null,sortCol:sortColumns.length>0?t:null,sortAsc:!(sortColumns.length>0)||sortColumns[0].sortAsc},e)}}}}))}function currentPositionInHeader(e){var o=0;return $headers.find(".slick-header-column").each((function(t){if(this.id==e)return o=t,!1})),o}function limitPositionInGroup(e){var o,t=0,n=0;return treeColumns.getColumnsInDepth($groupHeadersL.length-1).some((function(l){return t=n,n+=l.columns.length,l.columns.some((function(t){return t.id===e&&(o=l),o})),o})),n–,{start:t,end:n,group:o}}function remove(e,o){var t=e.lastIndexOf(o);t>-1&&(e.splice(t,1),remove(e,o))}function columnPositionValidInGroup(e){var o=currentPositionInHeader(e[0].id),t=limitPositionInGroup(e.data("column").id),n=t.start<=o&&o<=t.end;return{limit:t,valid:n,message:n?"":’Column "’.concat(e.text(),’" can be reordered only within the "’,t.group.name,’" group!’)}}function setupColumnReorder(){$headers.filter(":ui-sortable").sortable("destroy");var e,o=null;function t(){$viewportScrollContainerX[0].scrollLeft=$viewportScrollContainerX[0].scrollLeft+10}function n(){$viewportScrollContainerX[0].scrollLeft=$viewportScrollContainerX[0].scrollLeft-10}$headers.sortable({containment:"parent",distance:3,axis:"x",cursor:"default",tolerance:"intersection",helper:"clone",placeholder:"slick-sortable-placeholder ui-state-default slick-header-column",start:function(o,t){t.placeholder.width(t.helper.outerWidth()-headerColumnWidthDiff),e=!hasFrozenColumns()||t.placeholder.offset().left+t.placeholder.width()>$viewportScrollContainerX.offset().left,$(t.helper).addClass("slick-header-column-active")},beforeStop:function(e,o){$(o.helper).removeClass("slick-header-column-active")},sort:function(l,r){e&&l.originalEvent.pageX>$container[0].clientWidth?o||(o=setInterval(t,100)):e&&l.originalEvent.pageX<$viewportScrollContainerX.offset().left?o||(o=setInterval(n,100)):(clearInterval(o),o=null)},stop:function(e,t){var n=!1;clearInterval(o),o=null;var l=null;if(treeColumns.hasDepth()){var r=columnPositionValidInGroup(t.item);l=r.limit,(n=!r.valid)&&alert(r.message)}if(!n&&getEditorLock().commitCurrentEdit()){var i=$headerL.sortable("toArray");i=i.concat($headerR.sortable("toArray"));for(var a=[],s=0;s<i.length;s++)a.push(columns[getColumnIndex(i[s].replace(uid,""))]);setColumns(a),trigger(self.onColumnsReordered,{impactedColumns:getImpactedColumns(l)}),e.stopPropagation(),setupColumnResize()}else $(this).sortable("cancel")}})}function getImpactedColumns(e){var o=[];if(e)for(var t=e.start;t<=e.end;t++)o.push(columns[t]);else o=columns;return o}function setupColumnResize(){var e,o,t,n,l,r,i,a,s;(l=$headers.children()).find(".slick-resizable-handle").remove(),l.each((function(e,o){e>=columns.length||columns[e].resizable&&(void 0===a&&(a=e),s=e)})),void 0!==a&&l.each((function(d,c){d>=columns.length||d<a||options.forceFitColumns&&d>=s||($(c),$("<div class=’slick-resizable-handle’ />").appendTo(c).on("dragstart",(function(o,a){if(!getEditorLock().commitCurrentEdit())return!1;n=o.pageX,$(this).parent().addClass("slick-header-column-active");var s=null,c=null;if(l.each((function(e,o){e>=columns.length||(columns[e].previousWidth=$(o).outerWidth())})),options.forceFitColumns)for(s=0,c=0,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(null!==c&&(t.maxWidth?c+=t.maxWidth-t.previousWidth:c=null),s+=t.previousWidth-Math.max(t.minWidth||0,absoluteColumnMinWidth));var u=0,h=0;for(e=0;e<=d;e++)(t=columns[e]).resizable&&(null!==h&&(t.maxWidth?h+=t.maxWidth-t.previousWidth:h=null),u+=t.previousWidth-Math.max(t.minWidth||0,absoluteColumnMinWidth));null===s&&(s=1e5),null===u&&(u=1e5),null===c&&(c=1e5),null===h&&(h=1e5),i=n+Math.min(s,h),r=n-Math.min(u,c)})).on("drag",(function(l,a){columnResizeDragging=!0;var s,c,u=Math.min(i,Math.max(r,l.pageX))-n,h=0;if(u<0){for(c=u,e=d;e>=0;e–)(t=columns[e]).resizable&&(s=Math.max(t.minWidth||0,absoluteColumnMinWidth),c&&t.previousWidth+c<s?(c+=t.previousWidth-s,t.width=s):(t.width=t.previousWidth+c,c=0));for(o=0;o<=d;o++)t=columns[o],hasFrozenColumns()&&o>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0),hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width);else for(e=d+1;e<columns.length;e++)t=columns[e],hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0))}else{for(c=u,h=0,0,e=d;e>=0;e–)(t=columns[e]).resizable&&(c&&t.maxWidth&&t.maxWidth-t.previousWidth<c?(c-=t.maxWidth-t.previousWidth,t.width=t.maxWidth):(t.width=t.previousWidth+c,c=0));for(o=0;o<=d;o++)t=columns[o],hasFrozenColumns()&&o>options.frozenColumn?t.width:h+=t.width;if(options.forceFitColumns)for(c=-u,e=d+1;e<columns.length;e++)(t=columns[e]).resizable&&(s=Math.max(t.minWidth||0,absoluteColumnMinWidth),c&&t.previousWidth+c<s?(c+=t.previousWidth-s,t.width=s):(t.width=t.previousWidth+c,c=0),hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width);else for(e=d+1;e<columns.length;e++)t=columns[e],hasFrozenColumns()&&e>options.frozenColumn?t.width:h+=t.width}hasFrozenColumns()&&h!=canvasWidthL&&($headerL.width(h+1e3),$paneHeaderR.css("left",h)),applyColumnHeaderWidths(),applyColumnGroupHeaderWidths(),options.syncColumnCellResize&&applyColumnWidths(),trigger(self.onColumnsDrag,{triggeredByColumn:$(this).parent().attr("id").replace(uid,""),resizeHandle:$(this)})})).on("dragend",(function(o,n){$(this).parent().removeClass("slick-header-column-active");var r,i=$(this).parent().attr("id").replace(uid,"");for(!0===trigger(self.onBeforeColumnsResize,{triggeredByColumn:i})&&(applyColumnHeaderWidths(),applyColumnGroupHeaderWidths()),e=0;e<columns.length;e++)t=columns[e],r=$(l[e]).outerWidth(),t.previousWidth!==r&&t.rerenderOnResize&&invalidateAllRows();updateCanvasWidth(!0),render(),trigger(self.onColumnsResized,{triggeredByColumn:i}),setTimeout((function(){columnResizeDragging=!1}),300)})))}))}function getVBoxDelta(e){var o=0;return e&&"function"==typeof e.css&&$.each(["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],(function(t,n){o+=parseFloat(e.css(n))||0})),o}function setFrozenOptions(){if(options.frozenColumn=options.frozenColumn>=0&&options.frozenColumn<columns.length?parseInt(options.frozenColumn):-1,options.frozenRow>-1){hasFrozenRows=!0,frozenRowsHeight=options.frozenRow*options.rowHeight;var e=getDataLength();actualFrozenRow=options.frozenBottom?e-options.frozenRow:options.frozenRow}else hasFrozenRows=!1}function setPaneVisibility(){hasFrozenColumns()?($paneHeaderR.show(),$paneTopR.show(),hasFrozenRows?($paneBottomL.show(),$paneBottomR.show()):($paneBottomR.hide(),$paneBottomL.hide())):($paneHeaderR.hide(),$paneTopR.hide(),$paneBottomR.hide(),hasFrozenRows?$paneBottomL.show():($paneBottomR.hide(),$paneBottomL.hide()))}function setOverflow(){$viewportTopL.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"scroll":hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"auto","overflow-y":options.alwaysShowVerticalScroll?"scroll":hasFrozenColumns()?"hidden":hasFrozenRows?"scroll":"auto"}),$viewportTopR.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"scroll":hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"hidden":"auto","overflow-y":options.alwaysShowVerticalScroll?"scroll":(hasFrozenColumns(),hasFrozenRows?"scroll":"auto")}),$viewportBottomL.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"scroll":"auto":(hasFrozenRows&&options.alwaysAllowHorizontalScroll,"auto"),"overflow-y":options.alwaysShowVerticalScroll?"scroll":hasFrozenColumns()?"hidden":hasFrozenRows?"scroll":"auto"}),$viewportBottomR.css({"overflow-x":hasFrozenColumns()?hasFrozenRows&&!options.alwaysAllowHorizontalScroll?"scroll":"auto":(hasFrozenRows&&options.alwaysAllowHorizontalScroll,"auto"),"overflow-y":options.alwaysShowVerticalScroll?"scroll":(hasFrozenColumns(),"auto")}),options.viewportClass&&($viewportTopL.toggleClass(options.viewportClass,!0),$viewportTopR.toggleClass(options.viewportClass,!0),$viewportBottomL.toggleClass(options.viewportClass,!0),$viewportBottomR.toggleClass(options.viewportClass,!0))}function setScroller(){hasFrozenColumns()?($headerScrollContainer=$headerScrollerR,$headerRowScrollContainer=$headerRowScrollerR,$footerRowScrollContainer=$footerRowScrollerR,hasFrozenRows?options.frozenBottom?($viewportScrollContainerX=$viewportBottomR,$viewportScrollContainerY=$viewportTopR):$viewportScrollContainerX=$viewportScrollContainerY=$viewportBottomR:$viewportScrollContainerX=$viewportScrollContainerY=$viewportTopR):($headerScrollContainer=$headerScrollerL,$headerRowScrollContainer=$headerRowScrollerL,$footerRowScrollContainer=$footerRowScrollerL,hasFrozenRows?options.frozenBottom?($viewportScrollContainerX=$viewportBottomL,$viewportScrollContainerY=$viewportTopL):$viewportScrollContainerX=$viewportScrollContainerY=$viewportBottomL:$viewportScrollContainerX=$viewportScrollContainerY=$viewportTopL)}function measureCellPaddingAndBorder(){var e,o=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],t=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],n=$.fn.jquery.split(".");jQueryNewWidthBehaviour=1==n[0]&&n[1]>=8||n[0]>=2,e=$("<div class=’ui-state-default slick-header-column’ style=’visibility:hidden’>-</div>").appendTo($headers),headerColumnWidthDiff=headerColumnHeightDiff=0,"border-box"!=e.css("box-sizing")&&"border-box"!=e.css("-moz-box-sizing")&&"border-box"!=e.css("-webkit-box-sizing")&&($.each(o,(function(o,t){headerColumnWidthDiff+=parseFloat(e.css(t))||0})),$.each(t,(function(o,t){headerColumnHeightDiff+=parseFloat(e.css(t))||0}))),e.remove();var l=$("<div class=’slick-row’ />").appendTo($canvas);e=$("<div class=’slick-cell’ id=’’ style=’visibility:hidden’>-</div>").appendTo(l),cellWidthDiff=cellHeightDiff=0,"border-box"!=e.css("box-sizing")&&"border-box"!=e.css("-moz-box-sizing")&&"border-box"!=e.css("-webkit-box-sizing")&&($.each(o,(function(o,t){cellWidthDiff+=parseFloat(e.css(t))||0})),$.each(t,(function(o,t){cellHeightDiff+=parseFloat(e.css(t))||0}))),l.remove(),absoluteColumnMinWidth=Math.max(headerColumnWidthDiff,cellWidthDiff)}function createCssRules(){$style=$("<style type=’text/css’ rel=’stylesheet’ />").appendTo($("head"));for(var e=options.rowHeight-cellHeightDiff,o=["."+uid+" .slick-group-header-column { left: 1000px; }","."+uid+" .slick-header-column { left: 1000px; }","."+uid+" .slick-top-panel { height:"+options.topPanelHeight+"px; }","."+uid+" .slick-preheader-panel { height:"+options.preHeaderPanelHeight+"px; }","."+uid+" .slick-headerrow-columns { height:"+options.headerRowHeight+"px; }","."+uid+" .slick-footerrow-columns { height:"+options.footerRowHeight+"px; }","."+uid+" .slick-cell { height:"+e+"px; }","."+uid+" .slick-row { height:"+options.rowHeight+"px; }"],t=0;t<columns.length;t++)o.push("."+uid+" .l"+t+" { }"),o.push("."+uid+" .r"+t+" { }");$style[0].styleSheet?$style[0].styleSheet.cssText=o.join(" "):$style[0].appendChild(document.createTextNode(o.join(" ")))}function getColumnCssRules(e){var o;if(!stylesheet){var t=document.styleSheets;for(o=0;o<t.length;o++)if((t[o].ownerNode||t[o].owningElement)==$style[0]){stylesheet=t[o];break}if(!stylesheet)throw new Error("Cannot find stylesheet.");columnCssRulesL=[],columnCssRulesR=[];var n,l,r=stylesheet.cssRules||stylesheet.rules;for(o=0;o<r.length;o++){var i=r[o].selectorText;(n=/\.l\d+/.exec(i))?(l=parseInt(n[0].substr(2,n[0].length-2),10),columnCssRulesL[l]=r[o]):(n=/\.r\d+/.exec(i))&&(l=parseInt(n[0].substr(2,n[0].length-2),10),columnCssRulesR[l]=r[o])}}return{left:columnCssRulesL[e],right:columnCssRulesR[e]}}function removeCssRules(){$style.remove(),stylesheet=null}function destroy(){getEditorLock().cancelCurrentEdit(),trigger(self.onBeforeDestroy,{});for(var e=plugins.length;e–;)unregisterPlugin(plugins[e]);options.enableColumnReorder&&$headers.filter(":ui-sortable").sortable("destroy"),unbindAncestorScrollEvents(),$container.off(".slickgrid"),removeCssRules(),$canvas.off("draginit dragstart dragend drag"),$container.empty().removeClass(uid)}var canvas=null,canvas_context=null;function autosizeColumn(e,o){var t=e;if("number"==typeof e)t=columns[e];else if("string"==typeof e)for(var n=0;n<columns.length;n++)columns[n].Id===e&&(t=columns[n]);getColAutosizeWidth(t,$(getCanvasNode(0,0)),o)}function autosizeColumns(e,o){if((e=e||options.autosizeColsMode)!==Slick.GridAutosizeColsMode.LegacyForceFit&&e!==Slick.GridAutosizeColsMode.LegacyOff){if(e!==Slick.GridAutosizeColsMode.None){(canvas=document.createElement("canvas"))&&canvas.getContext&&(canvas_context=canvas.getContext("2d"));var t,n,l,r,i=$(getCanvasNode(0,0)),a=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW,s=0,d=0,c=0,u=0,h=0;for(t=0;t<columns.length;t++)getColAutosizeWidth(n=columns[t],i,o),h+=n.autoSize.autosizeMode===Slick.ColAutosizeMode.Locked?n.width:0,u+=n.autoSize.autosizeMode===Slick.ColAutosizeMode.Locked?n.width:n.minWidth,s+=n.autoSize.widthPx,d+=n.autoSize.sizeToRemaining?0:n.autoSize.widthPx,c+=n.autoSize.sizeToRemaining&&n.minWidth||0;var p=s-d;if(e===Slick.GridAutosizeColsMode.FitViewportToCols){var m=s+scrollbarDimensions.width;e=Slick.GridAutosizeColsMode.IgnoreViewport,options.viewportMaxWidthPx&&m>options.viewportMaxWidthPx?(m=options.viewportMaxWidthPx,e=Slick.GridAutosizeColsMode.FitColsToViewport):options.viewportMinWidthPx&&m<options.viewportMinWidthPx&&(m=options.viewportMinWidthPx,e=Slick.GridAutosizeColsMode.FitColsToViewport),$container.width(m)}if(e===Slick.GridAutosizeColsMode.FitColsToViewport)if(p>0&&d<a-c)for(t=0;t<columns.length;t++){var w=a-d;l=(n=columns[t]).autoSize.sizeToRemaining?w*n.autoSize.widthPx/p:n.autoSize.widthPx,n.rerenderOnResize&&n.width!=l&&(r=!0),n.width=l}else if(options.viewportSwitchToScrollModeWidthPercent&&d+c>a*options.viewportSwitchToScrollModeWidthPercent/100||u>a)e=Slick.GridAutosizeColsMode.IgnoreViewport;else{var v=d-h,f=a-h-c;for(t=0;t<columns.length;t++)l=(n=columns[t]).width,n.autoSize.autosizeMode!==Slick.ColAutosizeMode.Locked&&(n.autoSize.sizeToRemaining?l=n.minWidth:((l=f/v*n.autoSize.widthPx)<n.minWidth&&(l=n.minWidth),v-=n.autoSize.widthPx,f-=l)),n.rerenderOnResize&&n.width!=l&&(r=!0),n.width=l}if(e===Slick.GridAutosizeColsMode.IgnoreViewport)for(t=0;t<columns.length;t++)l=columns[t].autoSize.widthPx,columns[t].rerenderOnResize&&columns[t].width!=l&&(r=!0),columns[t].width=l;reRenderColumns(r)}}else legacyAutosizeColumns()}function LogColWidths(){for(var e="Col Widths:",o=0;o<columns.length;o++)e+=" "+columns[o].width;console.log(e)}function getColAutosizeWidth(e,o,t){var n=e.autoSize;if(n.widthPx=e.width,n.autosizeMode!==Slick.ColAutosizeMode.Locked&&n.autosizeMode!==Slick.ColAutosizeMode.Guide){var l=getDataLength();if(n.autosizeMode===Slick.ColAutosizeMode.ContentIntelligent){var r,i=n.colDataTypeOf;if(l>0){var a=getDataItem(0);a&&"object"===(i=typeof(r=a[e.field]))&&(r instanceof Date&&(i="date"),"undefined"!=typeof moment&&r instanceof moment&&(i="moment"))}"boolean"===i&&(n.colValueArray=[!0,!1]),"number"===i&&(n.valueFilterMode=Slick.ValueFilterMode.GetGreatestAndSub,n.rowSelectionMode=Slick.RowSelectionMode.AllRows),"string"===i&&(n.valueFilterMode=Slick.ValueFilterMode.GetLongestText,n.rowSelectionMode=Slick.RowSelectionMode.AllRows,n.allowAddlPercent=5),"date"===i&&(n.colValueArray=[new Date(2009,8,30,12,20,20)]),"moment"===i&&"undefined"!=typeof moment&&(n.colValueArray=[moment([2009,8,30,12,20,20])])}var s=getColContentSize(e,o,t);s=s*(n.allowAddlPercent?1+n.allowAddlPercent/100:1)+options.autosizeColPaddingPx,e.minWidth&&s<e.minWidth&&(s=e.minWidth),e.maxWidth&&s>e.maxWidth&&(s=e.maxWidth),n.widthPx=s}}function getColContentSize(e,o,t){var n,l=e.autoSize,r=1,i=0,a=0;if(l.ignoreHeaderText||(a=getColHeaderWidth(e)),l.colValueArray)return i=getColWidth(e,o,l.colValueArray),Math.max(a,i);var s=getData();s.getItems&&(s=s.getItems());var d=(t?l.rowSelectionModeOnInit:void 0)||l.rowSelectionMode;if(d===Slick.RowSelectionMode.FirstRow&&(s=s.slice(0,1)),d===Slick.RowSelectionMode.LastRow&&(s=s.slice(s.length-1,s.length)),d===Slick.RowSelectionMode.FirstNRows&&(s=s.slice(0,l.rowSelectionCount)),l.valueFilterMode===Slick.ValueFilterMode.DeDuplicate){var c={};for(u=0,n=s.length;u<n;u++)c[s[u][e.field]]=!0;if(Object.keys)s=Object.keys(c);else for(var u in s=[],c)s.push(u)}if(l.valueFilterMode===Slick.ValueFilterMode.GetGreatestAndSub){var h,p=0;for(u=0,n=s.length;u<n;u++)w=s[u][e.field],Math.abs(w)>p&&(h=w,p=Math.abs(w));h=""+h,s=[h=+(h=Array(h.length+1).join("9"))]}if(l.valueFilterMode===Slick.ValueFilterMode.GetLongestTextAndSub){var m=0;for(u=0,n=s.length;u<n;u++)((w=s[u][e.field])||"").length>m&&(m=w.length);w=Array(m+1).join("m"),r=options.autosizeTextAvgToMWidthRatio,s=[w]}if(l.valueFilterMode===Slick.ValueFilterMode.GetLongestText){m=0;var w,v=0;for(u=0,n=s.length;u<n;u++)((w=s[u][e.field])||"").length>m&&(m=w.length,v=u);s=[w=s[v][e.field]]}return i=getColWidth(e,o,s)*r,Math.max(a,i)}function getColWidth(e,o,t){var n=getColumnIndex(e.id),l=$(‘<div class="slick-row ui-widget-content"></div>’),r=$(‘<div class="slick-cell"></div>’);r.css({position:"absolute",visibility:"hidden","text-overflow":"initial","white-space":"nowrap"}),l.append(r),o.append(l);var i,a,s,d,c=0;return canvas_context&&e.autoSize.widthEvalMode===Slick.WidthEvalMode.CanvasTextSize?(canvas_context.font=r.css("font-size")+" "+r.css("font-family"),$(t).each((function(o,t){d=Array.isArray(t)?t[e.field]:t,(i=(a=""+d)?canvas_context.measureText(a).width:0)>c&&(c=i,s=a)})),r.html(s),i=r.outerWidth(),l.remove(),i):($(t).each((function(o,t){d=Array.isArray(t)?t[e.field]:t,applyFormatResultToCellNode(e.formatterOverride?e.formatterOverride(o,n,d,e,t):e.formatter?e.formatter(o,n,d,e,t):""+d,r[0]),(i=r.outerWidth())>c&&(c=i)})),l.remove(),c)}function getColHeaderWidth(e){var o=0,t=getUID()+e.id,n=document.getElementById(t),l=t+"_";if(n){var r=n.cloneNode(!0);r.id=l,r.style.cssText="position: absolute; visibility: hidden;right: auto;text-overflow: initial;white-space: nowrap;",n.parentNode.insertBefore(r,n),o=r.offsetWidth,r.parentNode.removeChild(r)}else{var i=getHeader(e);o=(n=$("<div class=’ui-state-default slick-header-column’ />").html("<span class=’slick-column-name’>"+e.name+"</span>").attr("id",l).css({position:"absolute",visibility:"hidden",right:"auto","text-overflow:":"initial","white-space":"nowrap"}).addClass(e.headerCssClass||"").appendTo(i))[0].offsetWidth,i[0].removeChild(n[0])}return o}function legacyAutosizeColumns(){var e,o,t,n=[],l=0,r=0,i=viewportHasVScroll?viewportW-scrollbarDimensions.width:viewportW;for(e=0;e<columns.length;e++)o=columns[e],n.push(o.width),r+=o.width,o.resizable&&(l+=o.width-Math.max(o.minWidth,absoluteColumnMinWidth));for(t=r;r>i&&l;){var a=(r-i)/l;for(e=0;e<columns.length&&r>i;e++){o=columns[e];var s=n[e];if(!(!o.resizable||s<=o.minWidth||s<=absoluteColumnMinWidth)){var d=Math.max(o.minWidth,absoluteColumnMinWidth),c=Math.floor(a*(s-d))||1;r-=c=Math.min(c,s-d),l-=c,n[e]-=c}}if(t<=r)break;t=r}for(t=r;r<i;){var u=i/r;for(e=0;e<columns.length&&r<i;e++){o=columns[e];var h,p=n[e];r+=h=!o.resizable||o.maxWidth<=p?0:Math.min(Math.floor(u*p)-p,o.maxWidth-p||1e6)||1,n[e]+=r<=i?h:0}if(t>=r)break;t=r}var m=!1;for(e=0;e<columns.length;e++)columns[e].rerenderOnResize&&columns[e].width!=n[e]&&(m=!0),columns[e].width=n[e];reRenderColumns(m)}function reRenderColumns(e){applyColumnHeaderWidths(),applyColumnGroupHeaderWidths(),updateCanvasWidth(!0),trigger(self.onAutosizeColumns,{columns}),e&&(invalidateAllRows(),render())}function trigger(e,o,t){return t=t||new Slick.EventData,(o=o||{}).grid=self,e.notify(o,t,self)}function getEditorLock(){return options.editorLock}function getEditController(){return editController}function getColumnIndex(e){return columnsById[e]}function applyColumnGroupHeaderWidths(){if(treeColumns.hasDepth())for(var e=$groupHeadersL.length-1;e>=0;e–){treeColumns.getColumnsInDepth(e);$().add($groupHeadersL[e]).add($groupHeadersR[e]).each((function(e){var o=$(this),t=0;o.width(0===e?getHeadersWidthL():getHeadersWidthR()),o.children().each((function(){var e=$(this),n=$(this).data("column");n.width=0,n.columns.forEach((function(){var e=o.next().children(":eq("+t+++")");n.width+=e.outerWidth()})),e.width(n.width-headerColumnWidthDiff)}))}))}}function applyColumnHeaderWidths(){if(initialized){for(var e,o=0,t=$headers.children(),n=columns.length;o<n;o++)e=$(t[o]),jQueryNewWidthBehaviour?e.outerWidth()!==columns[o].width&&e.outerWidth(columns[o].width):e.width()!==columns[o].width-headerColumnWidthDiff&&e.width(columns[o].width-headerColumnWidthDiff);updateColumnCaches()}}function applyColumnWidths(){for(var e,o,t=0,n=0;n<columns.length;n++)e=columns[n].width,(o=getColumnCssRules(n)).left.style.left=t+"px",o.right.style.right=(-1!=options.frozenColumn&&n>options.frozenColumn?canvasWidthR:canvasWidthL)-t-e+"px",options.frozenColumn==n?t=0:t+=columns[n].width}function setSortColumn(e,o){setSortColumns([{columnId:e,sortAsc:o}])}function setSortColumns(e){sortColumns=e;var o=options.numberedMultiColumnSort&&sortColumns.length>1,t=$headers.children();t.removeClass("slick-header-column-sorted").find(".slick-sort-indicator").removeClass("slick-sort-indicator-asc slick-sort-indicator-desc"),t.find(".slick-sort-indicator-numbered").text(""),$.each(sortColumns,(function(e,n){null==n.sortAsc&&(n.sortAsc=!0);var l=getColumnIndex(n.columnId);null!=l&&(t.eq(l).addClass("slick-header-column-sorted").find(".slick-sort-indicator").addClass(n.sortAsc?"slick-sort-indicator-asc":"slick-sort-indicator-desc"),o&&t.eq(l).find(".slick-sort-indicator-numbered").text(e+1))}))}function getSortColumns(){return sortColumns}function handleSelectedRangesChanged(e,o){var t=selectedRows.slice(0);selectedRows=[];for(var n={},l=0;l<o.length;l++)for(var r=o[l].fromRow;r<=o[l].toRow;r++){n[r]||(selectedRows.push(r),n[r]={});for(var i=o[l].fromCell;i<=o[l].toCell;i++)canCellBeSelected(r,i)&&(n[r][columns[i].id]=options.selectedCellCssClass)}setCellCssStyles(options.selectedCellCssClass,n),simpleArrayEquals(t,selectedRows)&&trigger(self.onSelectedRowsChanged,{rows:getSelectedRows(),previousSelectedRows:t},e)}function simpleArrayEquals(e,o){return Array.isArray(e)&&Array.isArray(o)&&o.sort().toString()!==e.sort().toString()}function getColumns(){return columns}function updateColumnCaches(){columnPosLeft=[],columnPosRight=[];for(var e=0,o=0,t=columns.length;o<t;o++)columnPosLeft[o]=e,columnPosRight[o]=e+columns[o].width,options.frozenColumn==o?e=0:e+=columns[o].width}function updateColumnProps(){columnsById={};for(var e=0;e<columns.length;e++){columns[e].width&&(columns[e].widthRequest=columns[e].width);var o=columns[e]=$.extend({},columnDefaults,columns[e]);o.autoSize=$.extend({},columnAutosizeDefaults,o.autoSize),columnsById[o.id]=e,o.minWidth&&o.width<o.minWidth&&(o.width=o.minWidth),o.maxWidth&&o.width>o.maxWidth&&(o.width=o.maxWidth),o.resizable}}function setColumns(e){var o=new Slick.TreeColumns(e);columns=o.hasDepth()?(treeColumns=o).extractColumns():e,updateColumnProps(),updateColumnCaches(),initialized&&(setPaneVisibility(),setOverflow(),invalidateAllRows(),createColumnHeaders(),createColumnGroupHeaders(),createColumnFooter(),removeCssRules(),createCssRules(),resizeCanvas(),updateCanvasWidth(),applyColumnHeaderWidths(),applyColumnWidths(),handleScroll())}function getOptions(){return options}function setOptions(e,o){if(getEditorLock().commitCurrentEdit()){makeActiveCellNormal(),void 0!==e.showColumnHeader&&setColumnHeaderVisibility(e.showColumnHeader),options.enableAddRow!==e.enableAddRow&&invalidateRow(getDataLength());var t=$.extend(!0,{},options);options=$.extend(options,e),trigger(self.onSetOptions,{optionsBefore:t,optionsAfter:options}),validateAndEnforceOptions(),$viewport.css("overflow-y",options.autoHeight?"hidden":"auto"),o||render(),setFrozenOptions(),setScroller(),zombieRowNodeFromLastMouseWheelEvent=null,setColumns(treeColumns.extractColumns())}}function validateAndEnforceOptions(){options.autoHeight&&(options.leaveSpaceForNewRows=!1),options.forceFitColumns&&(options.autosizeColsMode=Slick.GridAutosizeColsMode.LegacyForceFit,console.log("forceFitColumns option is deprecated - use autosizeColsMode"))}function setData(e,o){data=e,invalidateAllRows(),updateRowCount(),o&&scrollTo(0)}function getData(){return data}function getDataLength(){return data.getLength?data.getLength():data&&data.length||0}function getDataLengthIncludingAddNew(){return getDataLength()+(options.enableAddRow&&(!pagingActive||pagingIsLastPage)?1:0)}function getDataItem(e){return data.getItem?data.getItem(e):data[e]}function getTopPanel(){return $topPanel[0]}function setTopPanelVisibility(e,o){var t=!1!==o;options.showTopPanel!=e&&(options.showTopPanel=e,e?t?$topPanelScroller.slideDown("fast",resizeCanvas):($topPanelScroller.show(),resizeCanvas()):t?$topPanelScroller.slideUp("fast",resizeCanvas):($topPanelScroller.hide(),resizeCanvas()))}function setHeaderRowVisibility(e,o){var t=!1!==o;options.showHeaderRow!=e&&(options.showHeaderRow=e,e?t?$headerRowScroller.slideDown("fast",resizeCanvas):($headerRowScroller.show(),resizeCanvas()):t?$headerRowScroller.slideUp("fast",resizeCanvas):($headerRowScroller.hide(),resizeCanvas()))}function setColumnHeaderVisibility(e,o){options.showColumnHeader!=e&&(options.showColumnHeader=e,e?o?$headerScroller.slideDown("fast",resizeCanvas):($headerScroller.show(),resizeCanvas()):o?$headerScroller.slideUp("fast",resizeCanvas):($headerScroller.hide(),resizeCanvas()))}function setFooterRowVisibility(e,o){var t=!1!==o;options.showFooterRow!=e&&(options.showFooterRow=e,e?t?$footerRowScroller.slideDown("fast",resizeCanvas):($footerRowScroller.show(),resizeCanvas()):t?$footerRowScroller.slideUp("fast",resizeCanvas):($footerRowScroller.hide(),resizeCanvas()))}function setPreHeaderPanelVisibility(e,o){var t=!1!==o;options.showPreHeaderPanel!=e&&(options.showPreHeaderPanel=e,e?t?$preHeaderPanelScroller.slideDown("fast",resizeCanvas):($preHeaderPanelScroller.show(),resizeCanvas()):t?$preHeaderPanelScroller.slideUp("fast",resizeCanvas):($preHeaderPanelScroller.hide(),resizeCanvas()))}function getContainerNode(){return $container.get(0)}function getRowTop(e){return options.rowHeight*e-offset}function getRowFromPosition(e){return Math.floor((e+offset)/options.rowHeight)}function scrollTo(e){e=Math.max(e,0),e=Math.min(e,th-$viewportScrollContainerY.height()+(viewportHasHScroll||hasFrozenColumns()?scrollbarDimensions.height:0));var o=offset;page=Math.min(n-1,Math.floor(e/ph));var t=e-(offset=Math.round(page*cj));offset!=o&&(cleanupRows(getVisibleRange(t)),updateRowPositions());prevScrollTop!=t&&(vScrollDir=prevScrollTop+o<t+offset?1:-1,lastRenderedScrollTop=scrollTop=prevScrollTop=t,hasFrozenColumns()&&($viewportTopL[0].scrollTop=t),hasFrozenRows&&($viewportBottomL[0].scrollTop=$viewportBottomR[0].scrollTop=t),$viewportScrollContainerY[0].scrollTop=t,trigger(self.onViewportChanged,{}))}function defaultFormatter(e,o,t,n,l,r){return null==t?"":(t+"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}function getFormatter(e,o){var t=data.getItemMetadata&&data.getItemMetadata(e),n=t&&t.columns&&(t.columns[o.id]||t.columns[getColumnIndex(o.id)]);return n&&n.formatter||t&&t.formatter||o.formatter||options.formatterFactory&&options.formatterFactory.getFormatter(o)||options.defaultFormatter}function callFormatter(e,o,t,n,l,r){var i,a=data.getItemMetadata&&data.getItemMetadata(e);if(a=a&&a.columns){var s=a[n.id]||a[o];i=getFormatter(e,n)(e,o,t,n,l,s)}else i=getFormatter(e,n)(e,o,t,n,l);return i}function getEditor(e,o){var t=columns[o],n=data.getItemMetadata&&data.getItemMetadata(e),l=n&&n.columns;return l&&l[t.id]&&void 0!==l[t.id].editor?l[t.id].editor:l&&l[o]&&void 0!==l[o].editor?l[o].editor:t.editor||options.editorFactory&&options.editorFactory.getEditor(t)}function getDataItemValueForColumn(e,o){return options.dataItemColumnValueExtractor?options.dataItemColumnValueExtractor(e,o):e[o.field]}function appendRowHtml(e,o,t,n,l){var r=getDataItem(t),i=t<l&&!r,a="slick-row"+(hasFrozenRows&&t<=options.frozenRow?" frozen":"")+(i?" loading":"")+(t===activeRow&&options.showCellSelection?" active":"")+(t%2==1?" odd":" even");r||(a+=" "+options.addNewRowCssClass);var s=data.getItemMetadata&&data.getItemMetadata(t);s&&s.cssClasses&&(a+=" "+s.cssClasses);var d,c,u=getFrozenRowOffset(t),h="<div class=’ui-widget-content "+a+"’ style=’top:"+(getRowTop(t)-u)+"px’>";e.push(h),hasFrozenColumns()&&o.push(h);for(var p=0,m=columns.length;p<m;p++){if(c=columns[p],d=1,s&&s.columns){var w=s.columns[c.id]||s.columns[p];""===(d=w&&w.colspan||1)&&(d=m-p)}if(columnPosRight[Math.min(m-1,p+d-1)]>n.leftPx){if(!c.alwaysRenderColumn&&columnPosLeft[p]>n.rightPx)break;hasFrozenColumns()&&p>options.frozenColumn?appendCellHtml(o,t,p,d,r):appendCellHtml(e,t,p,d,r)}else(c.alwaysRenderColumn||hasFrozenColumns()&&p<=options.frozenColumn)&&appendCellHtml(e,t,p,d,r);d>1&&(p+=d-1)}e.push("</div>"),hasFrozenColumns()&&o.push("</div>")}function appendCellHtml(e,o,t,n,l){var r=columns[t],i="slick-cell l"+t+" r"+Math.min(columns.length-1,t+n-1)+(r.cssClass?" "+r.cssClass:"");for(var a in hasFrozenColumns()&&t<=options.frozenColumn&&(i+=" frozen"),o===activeRow&&t===activeCell&&options.showCellSelection&&(i+=" active"),cellCssClasses)cellCssClasses[a][o]&&cellCssClasses[a][o][r.id]&&(i+=" "+cellCssClasses[a][o][r.id]);var s=null,d="";l&&(s=getDataItemValueForColumn(l,r),null==(d=getFormatter(o,r)(o,t,s,r,l,self))&&(d=""));var c=trigger(self.onBeforeAppendCell,{row:o,cell:t,value:s,dataContext:l})||"";c+=d&&d.addClasses?(c?" ":"")+d.addClasses:"";var u=d&&d.toolTip?"title=’"+d.toolTip+"’":"",h="";if(r.hasOwnProperty("cellAttrs")&&r.cellAttrs instanceof Object)for(var a in r.cellAttrs)r.cellAttrs.hasOwnProperty(a)&&(h+=" "+a+’="’+r.cellAttrs[a]+’" ‘);e.push("<div class=’"+i+(c?" "+c:"")+"’ "+u+h+">"),l&&e.push("[object Object]"!==Object.prototype.toString.call(d)?d:d.text),e.push("</div>"),rowsCache[o].cellRenderQueue.push(t),rowsCache[o].cellColSpans[t]=n}function cleanupRows(e){for(var o in rowsCache){var t=!0;hasFrozenRows&&(options.frozenBottom&&o>=actualFrozenRow||!options.frozenBottom&&o<=actualFrozenRow)&&(t=!1),(o=parseInt(o,10))!==activeRow&&(o<e.top||o>e.bottom)&&t&&removeRowFromCache(o)}options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}function invalidate(){updateRowCount(),invalidateAllRows(),render()}function invalidateAllRows(){for(var e in currentEditor&&makeActiveCellNormal(),rowsCache)removeRowFromCache(e);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}function queuePostProcessedRowForCleanup(e,o,t){for(var n in postProcessgroupId++,o)o.hasOwnProperty(n)&&postProcessedCleanupQueue.push({actionType:"C",groupId:postProcessgroupId,node:e.cellNodesByColumnIdx[0|n],columnIdx:0|n,rowIdx:t});postProcessedCleanupQueue.push({actionType:"R",groupId:postProcessgroupId,node:e.rowNode}),$(e.rowNode).detach()}function queuePostProcessedCellForCleanup(e,o,t){postProcessedCleanupQueue.push({actionType:"C",groupId:postProcessgroupId,node:e,columnIdx:o,rowIdx:t}),$(e).detach()}function removeRowFromCache(e){var o=rowsCache[e];o&&(rowNodeFromLastMouseWheelEvent==o.rowNode[0]||hasFrozenColumns()&&rowNodeFromLastMouseWheelEvent==o.rowNode[1]?(o.rowNode.hide(),zombieRowNodeFromLastMouseWheelEvent=o.rowNode):o.rowNode.each((function(){this.parentElement.removeChild(this)})),delete rowsCache[e],delete postProcessedRows[e],renderedRows–,counter_rows_removed++)}function invalidateRows(e){var o,t;if(e&&e.length){for(vScrollDir=0,t=e.length,o=0;o<t;o++)currentEditor&&activeRow===e[o]&&makeActiveCellNormal(),rowsCache[e[o]]&&removeRowFromCache(e[o]);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup()}}function invalidateRow(e){(e||0===e)&&invalidateRows([e])}function applyFormatResultToCellNode(e,o,t){null==e&&(e=""),"[object Object]"===Object.prototype.toString.call(e)?(o.innerHTML=e.text,e.removeClasses&&!t&&$(o).removeClass(e.removeClasses),e.addClasses&&$(o).addClass(e.addClasses),e.toolTip&&$(o).attr("title",e.toolTip)):o.innerHTML=e}function updateCell(e,o){var t=getCellNode(e,o);if(t){var n=columns[o],l=getDataItem(e);if(currentEditor&&activeRow===e&&activeCell===o)currentEditor.loadValue(l);else applyFormatResultToCellNode(l?getFormatter(e,n)(e,o,getDataItemValueForColumn(l,n),n,l,self):"",t),invalidatePostProcessingResults(e)}}function updateRow(e){var o=rowsCache[e];if(o){ensureCellNodesInRowsCache(e);var t=getDataItem(e);for(var n in o.cellNodesByColumnIdx)if(o.cellNodesByColumnIdx.hasOwnProperty(n)){var l=columns[n|=0],r=o.cellNodesByColumnIdx[n][0];e===activeRow&&n===activeCell&¤tEditor?currentEditor.loadValue(t):t?applyFormatResultToCellNode(getFormatter(e,l)(e,n,getDataItemValueForColumn(t,l),l,t,self),r):r.innerHTML=""}invalidatePostProcessingResults(e)}}function getViewportHeight(){if(options.autoHeight&&-1==options.frozenColumn||(topPanelH=options.showTopPanel?options.topPanelHeight+getVBoxDelta($topPanelScroller):0,headerRowH=options.showHeaderRow?options.headerRowHeight+getVBoxDelta($headerRowScroller):0,footerRowH=options.showFooterRow?options.footerRowHeight+getVBoxDelta($footerRowScroller):0),options.autoHeight){var e=$paneHeaderL.outerHeight();e+=options.showHeaderRow?options.headerRowHeight+getVBoxDelta($headerRowScroller):0,e+=options.showFooterRow?options.footerRowHeight+getVBoxDelta($footerRowScroller):0,e+=getCanvasWidth()>viewportW?scrollbarDimensions.height:0,viewportH=options.rowHeight*getDataLengthIncludingAddNew()+(-1==options.frozenColumn?e:0)}else{var o=options.showColumnHeader?parseFloat($.css($headerScroller[0],"height"))+getVBoxDelta($headerScroller):0,t=options.createPreHeaderPanel&&options.showPreHeaderPanel?options.preHeaderPanelHeight+getVBoxDelta($preHeaderPanelScroller):0;viewportH=parseFloat($.css($container[0],"height",!0))-parseFloat($.css($container[0],"paddingTop",!0))-parseFloat($.css($container[0],"paddingBottom",!0))-o-topPanelH-headerRowH-footerRowH-t}return numVisibleRows=Math.ceil(viewportH/options.rowHeight),viewportH}function getViewportWidth(){viewportW=parseFloat($container.width())}function resizeCanvas(){if(initialized){paneTopH=0,paneBottomH=0,viewportTopH=0,viewportBottomH=0,getViewportWidth(),getViewportHeight(),hasFrozenRows?options.frozenBottom?(paneTopH=viewportH-frozenRowsHeight-scrollbarDimensions.height,paneBottomH=frozenRowsHeight+scrollbarDimensions.height):(paneTopH=frozenRowsHeight,paneBottomH=viewportH-frozenRowsHeight):paneTopH=viewportH,paneTopH+=topPanelH+headerRowH+footerRowH,hasFrozenColumns()&&options.autoHeight&&(paneTopH+=scrollbarDimensions.height),viewportTopH=paneTopH-topPanelH-headerRowH-footerRowH,options.autoHeight&&(hasFrozenColumns()&&$container.height(paneTopH+parseFloat($.css($headerScrollerL[0],"height"))),$paneTopL.css("position","relative")),$paneTopL.css({top:$paneHeaderL.height(),height:paneTopH});var e=$paneTopL.position().top+paneTopH;options.autoHeight||$viewportTopL.height(viewportTopH),hasFrozenColumns()?($paneTopR.css({top:$paneHeaderL.height(),height:paneTopH}),$viewportTopR.height(viewportTopH),hasFrozenRows&&($paneBottomL.css({top:e,height:paneBottomH}),$paneBottomR.css({top:e,height:paneBottomH}),$viewportBottomR.height(paneBottomH))):hasFrozenRows&&($paneBottomL.css({width:"100%",height:paneBottomH}),$paneBottomL.css("top",e)),hasFrozenRows?($viewportBottomL.height(paneBottomH),options.frozenBottom?($canvasBottomL.height(frozenRowsHeight),hasFrozenColumns()&&$canvasBottomR.height(frozenRowsHeight)):($canvasTopL.height(frozenRowsHeight),hasFrozenColumns()&&$canvasTopR.height(frozenRowsHeight))):$viewportTopR.height(viewportTopH),scrollbarDimensions&&scrollbarDimensions.width||(scrollbarDimensions=measureScrollbar()),options.autosizeColsMode===Slick.GridAutosizeColsMode.LegacyForceFit&&autosizeColumns(),updateRowCount(),handleScroll(),lastRenderedScrollLeft=-1,render()}}function updatePagingStatusFromView(e){pagingActive=0!==e.pageSize,pagingIsLastPage=e.pageNum==e.totalPages-1}function updateRowCount(){if(initialized){var e=getDataLength(),o=getDataLengthIncludingAddNew(),t=0,l=hasFrozenRows&&!options.frozenBottom?$canvasBottomL.height():$canvasTopL.height();if(hasFrozenRows)t=getDataLength()-options.frozenRow;else t=o+(options.leaveSpaceForNewRows?numVisibleRows-1:0);var r=$viewportScrollContainerY.height(),i=viewportHasVScroll;viewportHasVScroll=options.alwaysShowVerticalScroll||!options.autoHeight&&t*options.rowHeight>r,makeActiveCellNormal();var a=e-1;for(var s in rowsCache)s>a&&removeRowFromCache(s);options.enableAsyncPostRenderCleanup&&startPostProcessingCleanup(),activeCellNode&&activeRow>a&&resetActiveCell();l=h;options.autoHeight?h=options.rowHeight*t:(th=Math.max(options.rowHeight*t,r-scrollbarDimensions.height))<maxSupportedCssHeight?(h=ph=th,n=1,cj=0):(ph=(h=maxSupportedCssHeight)/100,n=Math.floor(th/ph),cj=(th-h)/(n-1)),h!==l&&(hasFrozenRows&&!options.frozenBottom?($canvasBottomL.css("height",h),hasFrozenColumns()&&$canvasBottomR.css("height",h)):($canvasTopL.css("height",h),$canvasTopR.css("height",h)),scrollTop=$viewportScrollContainerY[0].scrollTop);var d=scrollTop+offset<=th-r;0==th||0==scrollTop?page=offset=0:scrollTo(d?scrollTop+offset:th-r),h!=l&&options.autoHeight&&resizeCanvas(),options.autosizeColsMode===Slick.GridAutosizeColsMode.LegacyForceFit&&i!=viewportHasVScroll&&autosizeColumns(),updateCanvasWidth(!1)}}function getVisibleRange(e,o){return null==e&&(e=scrollTop),null==o&&(o=scrollLeft),{top:getRowFromPosition(e),bottom:getRowFromPosition(e+viewportH)+1,leftPx:o,rightPx:o+viewportW}}function getRenderedRange(e,o){var t=getVisibleRange(e,o),n=Math.round(viewportH/options.rowHeight),l=options.minRowBuffer;return-1==vScrollDir?(t.top-=n,t.bottom+=l):1==vScrollDir?(t.top-=l,t.bottom+=n):(t.top-=l,t.bottom+=l),t.top=Math.max(0,t.top),t.bottom=Math.min(getDataLengthIncludingAddNew()-1,t.bottom),t.leftPx-=viewportW,t.rightPx+=viewportW,t.leftPx=Math.max(0,t.leftPx),t.rightPx=Math.min(canvasWidth,t.rightPx),t}function ensureCellNodesInRowsCache(e){var o=rowsCache[e];if(o&&o.cellRenderQueue.length)for(var t=o.rowNode.children().last();o.cellRenderQueue.length;){var n=o.cellRenderQueue.pop();o.cellNodesByColumnIdx[n]=t,0===(t=t.prev()).length&&(t=$(o.rowNode[0]).children().last())}}function cleanUpCells(e,o){if(!hasFrozenRows||!(options.frozenBottom&&o>actualFrozenRow||o<=actualFrozenRow)){var t,n=rowsCache[o],l=[];for(var r in n.cellNodesByColumnIdx)if(n.cellNodesByColumnIdx.hasOwnProperty(r)&&!((r|=0)<=options.frozenColumn||Array.isArray(columns)&&columns[r]&&columns[r].alwaysRenderColumn)){var i=n.cellColSpans[r];(columnPosLeft[r]>e.rightPx||columnPosRight[Math.min(columns.length-1,r+i-1)]<e.leftPx)&&(o==activeRow&&r==activeCell||l.push(r))}for(;null!=(t=l.pop());)n.cellNodesByColumnIdx[t][0].parentElement.removeChild(n.cellNodesByColumnIdx[t][0]),delete n.cellColSpans[t],delete n.cellNodesByColumnIdx[t],postProcessedRows[o]&&delete postProcessedRows[o][t]}}function cleanUpAndRenderCells(e){for(var o,t,n,l=[],r=[],i=e.top,a=e.bottom;i<=a;i++)if(o=rowsCache[i]){ensureCellNodesInRowsCache(i),cleanUpCells(e,i),t=0;var s=data.getItemMetadata&&data.getItemMetadata(i);s=s&&s.columns;for(var d=getDataItem(i),c=0,u=columns.length;c<u&&!(columnPosLeft[c]>e.rightPx);c++)if(null==(n=o.cellColSpans[c])){if(n=1,s){var h=s[columns[c].id]||s[c];""===(n=h&&h.colspan||1)&&(n=u-c)}columnPosRight[Math.min(u-1,c+n-1)]>e.leftPx&&(appendCellHtml(l,i,c,n,d),t++),c+=n>1?n-1:0}else c+=n>1?n-1:0;t&&(t,r.push(i))}if(l.length){var p,m,w=document.createElement("div");for(w.innerHTML=l.join("");null!=(p=r.pop());){var v;for(o=rowsCache[p];null!=(v=o.cellRenderQueue.pop());)m=w.lastChild,hasFrozenColumns()&&v>options.frozenColumn?o.rowNode[1].appendChild(m):o.rowNode[0].appendChild(m),o.cellNodesByColumnIdx[v]=$(m)}}}function renderRows(e){for(var o=[],t=[],n=[],l=!1,r=getDataLength(),i=e.top,a=e.bottom;i<=a;i++)rowsCache[i]||hasFrozenRows&&options.frozenBottom&&i==getDataLength()||(renderedRows++,n.push(i),rowsCache[i]={rowNode:null,cellColSpans:[],cellNodesByColumnIdx:[],cellRenderQueue:[]},appendRowHtml(o,t,i,e,r),activeCellNode&&activeRow===i&&(l=!0),counter_rows_rendered++);if(n.length){var s=document.createElement("div"),d=document.createElement("div");s.innerHTML=o.join(""),d.innerHTML=t.join("");for(i=0,a=n.length;i<a;i++)hasFrozenRows&&n[i]>=actualFrozenRow?hasFrozenColumns()?rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasBottomL)).add($(d.firstChild).appendTo($canvasBottomR)):rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasBottomL)):hasFrozenColumns()?rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasTopL)).add($(d.firstChild).appendTo($canvasTopR)):rowsCache[n[i]].rowNode=$().add($(s.firstChild).appendTo($canvasTopL));l&&(activeCellNode=getCellNode(activeRow,activeCell))}}function startPostProcessing(){options.enableAsyncPostRender&&(clearTimeout(h_postrender),h_postrender=setTimeout(asyncPostProcessRows,options.asyncPostRenderDelay))}function startPostProcessingCleanup(){options.enableAsyncPostRenderCleanup&&(clearTimeout(h_postrenderCleanup),h_postrenderCleanup=setTimeout(asyncPostProcessCleanupRows,options.asyncPostRenderCleanupDelay))}function invalidatePostProcessingResults(e){for(var o in postProcessedRows[e])postProcessedRows[e].hasOwnProperty(o)&&(postProcessedRows[e][o]="C");postProcessFromRow=Math.min(postProcessFromRow,e),postProcessToRow=Math.max(postProcessToRow,e),startPostProcessing()}function updateRowPositions(){for(var e in rowsCache){var o=e?parseInt(e):0;rowsCache[o].rowNode[0].style.top=getRowTop(o)+"px"}}function render(){if(initialized){scrollThrottle.dequeue();var e=getVisibleRange(),o=getRenderedRange();if(cleanupRows(o),lastRenderedScrollLeft!=scrollLeft){if(hasFrozenRows){var t=$.extend(!0,{},o);options.frozenBottom?(t.top=actualFrozenRow,t.bottom=getDataLength()):(t.top=0,t.bottom=options.frozenRow),cleanUpAndRenderCells(t)}cleanUpAndRenderCells(o)}renderRows(o),hasFrozenRows&&(options.frozenBottom?renderRows({top:actualFrozenRow,bottom:getDataLength()-1,leftPx:o.leftPx,rightPx:o.rightPx}):renderRows({top:0,bottom:options.frozenRow-1,leftPx:o.leftPx,rightPx:o.rightPx})),postProcessFromRow=e.top,postProcessToRow=Math.min(getDataLengthIncludingAddNew()-1,e.bottom),startPostProcessing(),lastRenderedScrollTop=scrollTop,lastRenderedScrollLeft=scrollLeft,h_render=null,trigger(self.onRendered,{startRow:e.top,endRow:e.bottom,grid:self})}}function handleHeaderScroll(){handleElementScroll($headerScrollContainer[0])}function handleHeaderRowScroll(){var e=$headerRowScrollContainer[0].scrollLeft;e!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=e)}function handleFooterRowScroll(){var e=$footerRowScrollContainer[0].scrollLeft;e!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=e)}function handlePreHeaderPanelScroll(){handleElementScroll($preHeaderPanelScroller[0])}function handleElementScroll(e){var o=e.scrollLeft;o!=$viewportScrollContainerX[0].scrollLeft&&($viewportScrollContainerX[0].scrollLeft=o)}function handleScroll(){return scrollTop=$viewportScrollContainerY[0].scrollTop,scrollLeft=$viewportScrollContainerX[0].scrollLeft,_handleScroll(!1)}function _handleScroll(e){var o=$viewportScrollContainerY[0].scrollHeight-$viewportScrollContainerY[0].clientHeight,t=$viewportScrollContainerY[0].scrollWidth-$viewportScrollContainerY[0].clientWidth;o=Math.max(0,o),t=Math.max(0,t),scrollTop>o&&(scrollTop=o),scrollLeft>t&&(scrollLeft=t);var l=Math.abs(scrollTop-prevScrollTop),r=Math.abs(scrollLeft-prevScrollLeft);if(r&&(prevScrollLeft=scrollLeft,$viewportScrollContainerX[0].scrollLeft=scrollLeft,$headerScrollContainer[0].scrollLeft=scrollLeft,$topPanelScroller[0].scrollLeft=scrollLeft,$headerRowScrollContainer[0].scrollLeft=scrollLeft,options.createFooterRow&&($footerRowScrollContainer[0].scrollLeft=scrollLeft),options.createPreHeaderPanel&&(hasFrozenColumns()?$preHeaderPanelScrollerR[0].scrollLeft=scrollLeft:$preHeaderPanelScroller[0].scrollLeft=scrollLeft),hasFrozenColumns()?hasFrozenRows&&($viewportTopR[0].scrollLeft=scrollLeft):hasFrozenRows&&($viewportTopL[0].scrollLeft=scrollLeft)),l)if(vScrollDir=prevScrollTop<scrollTop?1:-1,prevScrollTop=scrollTop,e&&($viewportScrollContainerY[0].scrollTop=scrollTop),hasFrozenColumns()&&(hasFrozenRows&&!options.frozenBottom?$viewportBottomL[0].scrollTop=scrollTop:$viewportTopL[0].scrollTop=scrollTop),l<viewportH)scrollTo(scrollTop+offset);else{var i=offset;page=h==viewportH?0:Math.min(n-1,Math.floor(scrollTop*((th-viewportH)/(h-viewportH))*(1/ph))),i!=(offset=Math.round(page*cj))&&invalidateAllRows()}if(r||l){var a=Math.abs(lastRenderedScrollLeft-scrollLeft),s=Math.abs(lastRenderedScrollTop-scrollTop);(a>20||s>20)&&(options.forceSyncScrolling||s<viewportH&&a<viewportW?render():scrollThrottle.enqueue(),trigger(self.onViewportChanged,{}))}return trigger(self.onScroll,{scrollLeft,scrollTop}),!(!r&&!l)}function ActionThrottle(e,o){var t=!1,n=!1;function l(){n=!1}function r(){t=!0,setTimeout(i,o),e()}function i(){n?(l(),r()):t=!1}return{enqueue:function(){t?n=!0:r()},dequeue:l}}function asyncPostProcessRows(){for(var e=getDataLength();postProcessFromRow<=postProcessToRow;){var o=vScrollDir>=0?postProcessFromRow++:postProcessToRow–,t=rowsCache[o];if(t&&!(o>=e)){for(var n in postProcessedRows[o]||(postProcessedRows[o]={}),ensureCellNodesInRowsCache(o),t.cellNodesByColumnIdx)if(t.cellNodesByColumnIdx.hasOwnProperty(n)){var l=columns[n|=0],r=postProcessedRows[o][n];if(l.asyncPostRender&&"R"!==r){var i=t.cellNodesByColumnIdx[n];i&&l.asyncPostRender(i,o,getDataItem(o),l,"C"===r),postProcessedRows[o][n]="R"}}return void(h_postrender=setTimeout(asyncPostProcessRows,options.asyncPostRenderDelay))}}}function asyncPostProcessCleanupRows(){if(postProcessedCleanupQueue.length>0){for(var e=postProcessedCleanupQueue[0].groupId;postProcessedCleanupQueue.length>0&&postProcessedCleanupQueue[0].groupId==e;){var o=postProcessedCleanupQueue.shift();if("R"==o.actionType&&$(o.node).remove(),"C"==o.actionType){var t=columns[o.columnIdx];t.asyncPostRenderCleanup&&o.node&&t.asyncPostRenderCleanup(o.node,o.rowIdx,t)}}h_postrenderCleanup=setTimeout(asyncPostProcessCleanupRows,options.asyncPostRenderCleanupDelay)}}function updateCellCssStylesOnRenderedRows(e,o){var t,n,l,r;for(var i in rowsCache){if(r=o&&o[i],l=e&&e[i],r)for(n in r)l&&r[n]==l[n]||(t=getCellNode(i,getColumnIndex(n)))&&$(t).removeClass(r[n]);if(l)for(n in l)r&&r[n]==l[n]||(t=getCellNode(i,getColumnIndex(n)))&&$(t).addClass(l[n])}}function addCellCssStyles(e,o){if(cellCssClasses[e])throw new Error("addCellCssStyles: cell CSS hash with key ‘"+e+"’ already exists.");cellCssClasses[e]=o,updateCellCssStylesOnRenderedRows(o,null),trigger(self.onCellCssStylesChanged,{key:e,hash:o,grid:self})}function removeCellCssStyles(e){cellCssClasses[e]&&(updateCellCssStylesOnRenderedRows(null,cellCssClasses[e]),delete cellCssClasses[e],trigger(self.onCellCssStylesChanged,{key:e,hash:null,grid:self}))}function setCellCssStyles(e,o){var t=cellCssClasses[e];cellCssClasses[e]=o,updateCellCssStylesOnRenderedRows(o,t),trigger(self.onCellCssStylesChanged,{key:e,hash:o,grid:self})}function getCellCssStyles(e){return cellCssClasses[e]}function flashCell(e,o,t){(t=t||100,rowsCache[e])&&function e(o,n){n&&setTimeout((function(){o.queue((function(){o.toggleClass(options.cellFlashingCssClass).dequeue(),e(o,n-1)}))}),t)}($(getCellNode(e,o)),4)}function handleMouseWheel(e,o,t,n){var l=$(e.target).closest(".slick-row"),r=l[0];if(r!=rowNodeFromLastMouseWheelEvent){var i=l.parents(".grid-canvas").hasClass("grid-canvas-left");if(zombieRowNodeFromLastMouseWheelEvent&&zombieRowNodeFromLastMouseWheelEvent[i?0:1]!=r){var a=zombieRowNodeFromLastMouseWheelEvent[i||1==zombieRowNodeFromLastMouseWheelEvent.length?0:1];a.parentElement.removeChild(a),zombieRowNodeFromLastMouseWheelEvent=null}rowNodeFromLastMouseWheelEvent=r}scrollTop=Math.max(0,$viewportScrollContainerY[0].scrollTop-n*options.rowHeight),scrollLeft=$viewportScrollContainerX[0].scrollLeft+10*t,_handleScroll(!0)&&e.preventDefault()}function handleDragInit(e,o){var t=getCellFromEvent(e);if(!t||!cellExists(t.row,t.cell))return!1;var n=trigger(self.onDragInit,o,e);return!!e.isImmediatePropagationStopped()&&n}function handleDragStart(e,o){var t=getCellFromEvent(e);if(!t||!cellExists(t.row,t.cell))return!1;var n=trigger(self.onDragStart,o,e);return!!e.isImmediatePropagationStopped()&&n}function handleDrag(e,o){return trigger(self.onDrag,o,e)}function handleDragEnd(e,o){trigger(self.onDragEnd,o,e)}function handleKeyDown(e){trigger(self.onKeyDown,{row:activeRow,cell:activeCell},e);var o=e.isImmediatePropagationStopped(),t=Slick.keyCode;if(!o&&!e.shiftKey&&!e.altKey){if(options.editable&¤tEditor&¤tEditor.keyCaptureList&¤tEditor.keyCaptureList.indexOf(e.which)>-1)return;e.which==t.HOME?o=e.ctrlKey?navigateTop():navigateRowStart():e.which==t.END&&(o=e.ctrlKey?navigateBottom():navigateRowEnd())}if(!o)if(e.shiftKey||e.altKey||e.ctrlKey)e.which!=t.TAB||!e.shiftKey||e.ctrlKey||e.altKey||(o=navigatePrev());else{if(options.editable&¤tEditor&¤tEditor.keyCaptureList&¤tEditor.keyCaptureList.indexOf(e.which)>-1)return;if(e.which==t.ESCAPE){if(!getEditorLock().isActive())return;cancelEditAndSetFocus()}else e.which==t.PAGE_DOWN?(navigatePageDown(),o=!0):e.which==t.PAGE_UP?(navigatePageUp(),o=!0):e.which==t.LEFT?o=navigateLeft():e.which==t.RIGHT?o=navigateRight():e.which==t.UP?o=navigateUp():e.which==t.DOWN?o=navigateDown():e.which==t.TAB?o=navigateNext():e.which==t.ENTER&&(options.editable&&(currentEditor?activeRow===getDataLength()?navigateDown():commitEditAndSetFocus():getEditorLock().commitCurrentEdit()&&makeActiveCellEditable(void 0,void 0,e)),o=!0)}if(o){e.stopPropagation(),e.preventDefault();try{e.originalEvent.keyCode=0}catch(e){}}}function handleClick(e){currentEditor||(e.target!=document.activeElement||$(e.target).hasClass("slick-cell"))&&setFocus();var o=getCellFromEvent(e);if(o&&(null===currentEditor||activeRow!=o.row||activeCell!=o.cell)&&(trigger(self.onClick,{row:o.row,cell:o.cell},e),!e.isImmediatePropagationStopped()&&canCellBeActive(o.row,o.cell)&&(!getEditorLock().isActive()||getEditorLock().commitCurrentEdit()))){scrollRowIntoView(o.row,!1);var t=e.target&&e.target.className===Slick.preClickClassName,n=columns[o.cell],l=!!(options.editable&&n&&n.editor&&options.suppressActiveCellChangeOnEdit);setActiveCellInternal(getCellNode(o.row,o.cell),null,t,l,e)}}function handleContextMenu(e){var o=$(e.target).closest(".slick-cell",$canvas);0!==o.length&&(activeCellNode===o[0]&&null!==currentEditor||trigger(self.onContextMenu,{},e))}function handleDblClick(e){var o=getCellFromEvent(e);!o||null!==currentEditor&&activeRow==o.row&&activeCell==o.cell||(trigger(self.onDblClick,{row:o.row,cell:o.cell},e),e.isImmediatePropagationStopped()||options.editable&&gotoCell(o.row,o.cell,!0,e))}function handleHeaderMouseEnter(e){trigger(self.onHeaderMouseEnter,{column:$(this).data("column"),grid:self},e)}function handleHeaderMouseLeave(e){trigger(self.onHeaderMouseLeave,{column:$(this).data("column"),grid:self},e)}function handleHeaderContextMenu(e){var o=$(e.target).closest(".slick-header-column",".slick-header-columns"),t=o&&o.data("column");trigger(self.onHeaderContextMenu,{column:t},e)}function handleHeaderClick(e){if(!columnResizeDragging){var o=$(e.target).closest(".slick-header-column",".slick-header-columns"),t=o&&o.data("column");t&&trigger(self.onHeaderClick,{column:t},e)}}function handleFooterContextMenu(e){var o=$(e.target).closest(".slick-footerrow-column",".slick-footerrow-columns"),t=o&&o.data("column");trigger(self.onFooterContextMenu,{column:t},e)}function handleFooterClick(e){var o=$(e.target).closest(".slick-footerrow-column",".slick-footerrow-columns"),t=o&&o.data("column");trigger(self.onFooterClick,{column:t},e)}function handleMouseEnter(e){trigger(self.onMouseEnter,{},e)}function handleMouseLeave(e){trigger(self.onMouseLeave,{},e)}function cellExists(e,o){return!(e<0||e>=getDataLength()||o<0||o>=columns.length)}function getCellFromPoint(e,o){for(var t=getRowFromPosition(o),n=0,l=0,r=0;r<columns.length&&l<e;r++)l+=columns[r].width,n++;return n<0&&(n=0),{row:t,cell:n-1}}function getCellFromNode(e){var o=/l\d+/.exec(e.className);if(!o)throw new Error("getCellFromNode: cannot get cell - "+e.className);return parseInt(o[0].substr(1,o[0].length-1),10)}function getRowFromNode(e){for(var o in rowsCache)for(var t in rowsCache[o].rowNode)if(rowsCache[o].rowNode[t]===e)return o?parseInt(o):0;return null}function getFrozenRowOffset(e){return hasFrozenRows?options.frozenBottom?e>=actualFrozenRow?h<viewportTopH?actualFrozenRow*options.rowHeight:h:0:e>=actualFrozenRow?frozenRowsHeight:0:0}function getCellFromEvent(e){var o,t,n=$(e.target).closest(".slick-cell",$canvas);if(!n.length)return null;if(o=getRowFromNode(n[0].parentNode),hasFrozenRows){var l=n.parents(".grid-canvas").offset(),r=0;n.parents(".grid-canvas-bottom").length&&(r=options.frozenBottom?$canvasTopL.height():frozenRowsHeight),o=getCellFromPoint(e.clientX-l.left,e.clientY-l.top+r+$(document).scrollTop()).row}return t=getCellFromNode(n[0]),null==o||null==t?null:{row:o,cell:t}}function getCellNodeBox(e,o){if(!cellExists(e,o))return null;for(var t=getFrozenRowOffset(e),n=getRowTop(e)-t,l=n+options.rowHeight-1,r=0,i=0;i<o;i++)r+=columns[i].width,options.frozenColumn==i&&(r=0);return{top:n,left:r,bottom:l,right:r+columns[o].width}}function resetActiveCell(){setActiveCellInternal(null,!1)}function setFocus(){-1==tabbingDirection?$focusSink[0].focus():$focusSink2[0].focus()}function scrollCellIntoView(e,o,t){if(scrollRowIntoView(e,t),!(o<=options.frozenColumn)){var n=getColspan(e,o);internalScrollColumnIntoView(columnPosLeft[o],columnPosRight[o+(n>1?n-1:0)])}}function internalScrollColumnIntoView(e,o){var t=scrollLeft+$viewportScrollContainerX.width();e<scrollLeft?($viewportScrollContainerX.scrollLeft(e),handleScroll(),render()):o>t&&($viewportScrollContainerX.scrollLeft(Math.min(e,o-$viewportScrollContainerX[0].clientWidth)),handleScroll(),render())}function scrollColumnIntoView(e){internalScrollColumnIntoView(columnPosLeft[e],columnPosRight[e])}function setActiveCellInternal(e,o,t,n,l){null!==activeCellNode&&(makeActiveCellNormal(),$(activeCellNode).removeClass("active"),rowsCache[activeRow]&&$(rowsCache[activeRow].rowNode).removeClass("active"));if(null!=(activeCellNode=e)){var r=$(activeCellNode),i=r.offset(),a=Math.floor(r.parents(".grid-canvas").offset().top),s=r.parents(".grid-canvas-bottom").length;hasFrozenRows&&s&&(a-=options.frozenBottom?$canvasTopL.height():frozenRowsHeight);var d=getCellFromPoint(i.left,Math.ceil(i.top)-a);activeRow=d.row,activeCell=activePosX=activeCell=activePosX=getCellFromNode(activeCellNode),null==o&&(o=activeRow==getDataLength()||options.autoEdit),options.showCellSelection&&(r.addClass("active"),rowsCache[activeRow]&&$(rowsCache[activeRow].rowNode).addClass("active")),options.editable&&o&&isCellPotentiallyEditable(activeRow,activeCell)&&(clearTimeout(h_editorLoader),options.asyncEditorLoading?h_editorLoader=setTimeout((function(){makeActiveCellEditable(void 0,t,l)}),options.asyncEditorLoadDelay):makeActiveCellEditable(void 0,t,l))}else activeRow=activeCell=null;n||trigger(self.onActiveCellChanged,getActiveCell())}function clearTextSelection(){if(document.selection&&document.selection.empty)try{document.selection.empty()}catch(e){}else if(window.getSelection){var e=window.getSelection();e&&e.removeAllRanges&&e.removeAllRanges()}}function isCellPotentiallyEditable(e,o){var t=getDataLength();return!(e<t&&!getDataItem(e))&&(!(columns[o].cannotTriggerInsert&&e>=t)&&!!getEditor(e,o))}function makeActiveCellNormal(){if(currentEditor){if(trigger(self.onBeforeCellEditorDestroy,{editor:currentEditor}),currentEditor.destroy(),currentEditor=null,activeCellNode){var e=getDataItem(activeRow);if($(activeCellNode).removeClass("editable invalid"),e){var o=columns[activeCell];applyFormatResultToCellNode(getFormatter(activeRow,o)(activeRow,activeCell,getDataItemValueForColumn(e,o),o,e,self),activeCellNode),invalidatePostProcessingResults(activeRow)}}navigator.userAgent.toLowerCase().match(/msie/)&&clearTextSelection(),getEditorLock().deactivate(editController)}}function makeActiveCellEditable(e,o,t){if(activeCellNode){if(!options.editable)throw new Error("Grid : makeActiveCellEditable : should never get called when options.editable is false");if(clearTimeout(h_editorLoader),isCellPotentiallyEditable(activeRow,activeCell)){var n=columns[activeCell],l=getDataItem(activeRow);if(!1!==trigger(self.onBeforeEditCell,{row:activeRow,cell:activeCell,item:l,column:n})){getEditorLock().activate(editController),$(activeCellNode).addClass("editable");var r=e||getEditor(activeRow,activeCell);e||r.suppressClearOnEdit||(activeCellNode.innerHTML="");var i=data.getItemMetadata&&data.getItemMetadata(activeRow),a=(i=i&&i.columns)&&(i[n.id]||i[activeCell]);currentEditor=new r({grid:self,gridPosition:absBox($container[0]),position:absBox(activeCellNode),container:activeCellNode,column:n,columnMetaData:a,item:l||{},event:t,commitChanges:commitEditAndSetFocus,cancelChanges:cancelEditAndSetFocus}),l&&(currentEditor.loadValue(l),o&¤tEditor.preClick&¤tEditor.preClick()),serializedEditorValue=currentEditor.serializeValue(),currentEditor.position&&handleActiveCellPositionChange()}else setFocus()}}}function commitEditAndSetFocus(){getEditorLock().commitCurrentEdit()&&(setFocus(),options.autoEdit&&navigateDown())}function cancelEditAndSetFocus(){getEditorLock().cancelCurrentEdit()&&setFocus()}function absBox(e){var o={top:e.offsetTop,left:e.offsetLeft,bottom:0,right:0,width:$(e).outerWidth(),height:$(e).outerHeight(),visible:!0};o.bottom=o.top+o.height,o.right=o.left+o.width;for(var t=e.offsetParent;(e=e.parentNode)!=document.body&&null!=e;)o.visible&&e.scrollHeight!=e.offsetHeight&&"visible"!=$(e).css("overflowY")&&(o.visible=o.bottom>e.scrollTop&&o.top<e.scrollTop+e.clientHeight),o.visible&&e.scrollWidth!=e.offsetWidth&&"visible"!=$(e).css("overflowX")&&(o.visible=o.right>e.scrollLeft&&o.left<e.scrollLeft+e.clientWidth),o.left-=e.scrollLeft,o.top-=e.scrollTop,e===t&&(o.left+=e.offsetLeft,o.top+=e.offsetTop,t=e.offsetParent),o.bottom=o.top+o.height,o.right=o.left+o.width;return o}function getActiveCellPosition(){return absBox(activeCellNode)}function getGridPosition(){return absBox($container[0])}function handleActiveCellPositionChange(){if(activeCellNode&&(trigger(self.onActiveCellPositionChanged,{}),currentEditor)){var e=getActiveCellPosition();currentEditor.show&¤tEditor.hide&&(e.visible?currentEditor.show():currentEditor.hide()),currentEditor.position&¤tEditor.position(e)}}function getCellEditor(){return currentEditor}function getActiveCell(){return activeCellNode?{row:activeRow,cell:activeCell}:null}function getActiveCellNode(){return activeCellNode}function scrollRowIntoView(e,o){if(!hasFrozenRows||!options.frozenBottom&&e>actualFrozenRow-1||options.frozenBottom&&e<actualFrozenRow-1){var t=$viewportScrollContainerY.height(),n=hasFrozenRows&&!options.frozenBottom?e-options.frozenRow:e,l=n*options.rowHeight,r=(n+1)*options.rowHeight-t+(viewportHasHScroll?scrollbarDimensions.height:0);(n+1)*options.rowHeight>scrollTop+t+offset?(scrollTo(o?l:r),render()):n*options.rowHeight<scrollTop+offset&&(scrollTo(o?r:l),render())}}function scrollRowToTop(e){scrollTo(e*options.rowHeight),render()}function scrollPage(e){var o=e*numVisibleRows;if(scrollTo((getRowFromPosition(scrollTop+options.rowHeight-1)+o)*options.rowHeight),render(),options.enableCellNavigation&&null!=activeRow){var t=activeRow+o,n=getDataLengthIncludingAddNew();t>=n&&(t=n-1),t<0&&(t=0);for(var l=0,r=null,i=activePosX;l<=activePosX;)canCellBeActive(t,l)&&(r=l),l+=getColspan(t,l);null!==r?(setActiveCellInternal(getCellNode(t,r)),activePosX=i):resetActiveCell()}}function navigatePageDown(){scrollPage(1)}function navigatePageUp(){scrollPage(-1)}function navigateTop(){navigateToRow(0)}function navigateBottom(){navigateToRow(getDataLength()-1)}function navigateToRow(e){var o=getDataLength();if(!o)return!0;if(e<0?e=0:e>=o&&(e=o-1),scrollCellIntoView(e,0,!0),options.enableCellNavigation&&null!=activeRow){for(var t=0,n=null,l=activePosX;t<=activePosX;)canCellBeActive(e,t)&&(n=t),t+=getColspan(e,t);null!==n?(setActiveCellInternal(getCellNode(e,n)),activePosX=l):resetActiveCell()}return!0}function getColspan(e,o){var t=data.getItemMetadata&&data.getItemMetadata(e);if(!t||!t.columns)return 1;var n=t.columns[columns[o].id]||t.columns[o],l=n&&n.colspan;return l=""===l?columns.length-o:l||1}function findFirstFocusableCell(e){for(var o=0;o<columns.length;){if(canCellBeActive(e,o))return o;o+=getColspan(e,o)}return null}function findLastFocusableCell(e){for(var o=0,t=null;o<columns.length;)canCellBeActive(e,o)&&(t=o),o+=getColspan(e,o);return t}function gotoRight(e,o,t){if(o>=columns.length)return null;do{o+=getColspan(e,o)}while(o<columns.length&&!canCellBeActive(e,o));return o<columns.length?{row:e,cell:o,posX:o}:null}function gotoLeft(e,o,t){if(o<=0)return null;var n=findFirstFocusableCell(e);if(null===n||n>=o)return null;for(var l,r={row:e,cell:n,posX:n};;){if(!(l=gotoRight(r.row,r.cell,r.posX)))return null;if(l.cell>=o)return r;r=l}}function gotoDown(e,o,t){for(var n,l=getDataLengthIncludingAddNew();;){if(++e>=l)return null;for(n=o=0;o<=t;)n=o,o+=getColspan(e,o);if(canCellBeActive(e,n))return{row:e,cell:n,posX:t}}}function gotoUp(e,o,t){for(var n;;){if(–e<0)return null;for(n=o=0;o<=t;)n=o,o+=getColspan(e,o);if(canCellBeActive(e,n))return{row:e,cell:n,posX:t}}}function gotoNext(e,o,t){if(null==e&&null==o&&canCellBeActive(e=o=t=0,o))return{row:e,cell:o,posX:o};var n=gotoRight(e,o,t);if(n)return n;var l=null,r=getDataLengthIncludingAddNew();for(e===r-1&&e–;++e<r;)if(null!==(l=findFirstFocusableCell(e)))return{row:e,cell:l,posX:l};return null}function gotoPrev(e,o,t){if(null==e&&null==o&&canCellBeActive(e=getDataLengthIncludingAddNew()-1,o=t=columns.length-1))return{row:e,cell:o,posX:o};for(var n,l;!n&&!(n=gotoLeft(e,o,t));){if(–e<0)return null;o=0,null!==(l=findLastFocusableCell(e))&&(n={row:e,cell:l,posX:l})}return n}function gotoRowStart(e,o,t){var n=findFirstFocusableCell(e);return null===n?null:{row:e,cell:n,posX:n}}function gotoRowEnd(e,o,t){var n=findLastFocusableCell(e);return null===n?null:{row:e,cell:n,posX:n}}function navigateRight(){return navigate("right")}function navigateLeft(){return navigate("left")}function navigateDown(){return navigate("down")}function navigateUp(){return navigate("up")}function navigateNext(){return navigate("next")}function navigatePrev(){return navigate("prev")}function navigateRowStart(){return navigate("home")}function navigateRowEnd(){return navigate("end")}function navigate(e){if(!options.enableCellNavigation)return!1;if(!activeCellNode&&"prev"!=e&&"next"!=e)return!1;if(!getEditorLock().commitCurrentEdit())return!0;setFocus();tabbingDirection={up:-1,down:1,left:-1,right:1,prev:-1,next:1,home:-1,end:1}[e];var o=(0,{up:gotoUp,down:gotoDown,left:gotoLeft,right:gotoRight,prev:gotoPrev,next:gotoNext,home:gotoRowStart,end:gotoRowEnd}[e])(activeRow,activeCell,activePosX);if(o){if(hasFrozenRows&&options.frozenBottom&o.row==getDataLength())return;var t=o.row==getDataLength();return(!options.frozenBottom&&o.row>=actualFrozenRow||options.frozenBottom&&o.row<actualFrozenRow)&&scrollCellIntoView(o.row,o.cell,!t&&options.emulatePagingWhenScrolling),setActiveCellInternal(getCellNode(o.row,o.cell)),activePosX=o.posX,!0}return setActiveCellInternal(getCellNode(activeRow,activeCell)),!1}function getCellNode(e,o){if(rowsCache[e]){ensureCellNodesInRowsCache(e);try{return rowsCache[e].cellNodesByColumnIdx.length>o?rowsCache[e].cellNodesByColumnIdx[o][0]:null}catch(t){return rowsCache[e].cellNodesByColumnIdx[o]}}return null}function setActiveCell(e,o,t,n,l){initialized&&(e>getDataLength()||e<0||o>=columns.length||o<0||options.enableCellNavigation&&(scrollCellIntoView(e,o,!1),setActiveCellInternal(getCellNode(e,o),t,n,l)))}function canCellBeActive(e,o){if(!options.enableCellNavigation||e>=getDataLengthIncludingAddNew()||e<0||o>=columns.length||o<0)return!1;var t=data.getItemMetadata&&data.getItemMetadata(e);if(t&&void 0!==t.focusable)return!!t.focusable;var n=t&&t.columns;return n&&n[columns[o].id]&&void 0!==n[columns[o].id].focusable?!!n[columns[o].id].focusable:n&&n[o]&&void 0!==n[o].focusable?!!n[o].focusable:!!columns[o].focusable}function canCellBeSelected(e,o){if(e>=getDataLength()||e<0||o>=columns.length||o<0)return!1;var t=data.getItemMetadata&&data.getItemMetadata(e);if(t&&void 0!==t.selectable)return!!t.selectable;var n=t&&t.columns&&(t.columns[columns[o].id]||t.columns[o]);return n&&void 0!==n.selectable?!!n.selectable:!!columns[o].selectable}function gotoCell(e,o,t,n){if(initialized&&canCellBeActive(e,o)&&getEditorLock().commitCurrentEdit()){scrollCellIntoView(e,o,!1);var l=getCellNode(e,o),r=columns[o],i=!!(options.editable&&r&&r.editor&&options.suppressActiveCellChangeOnEdit);setActiveCellInternal(l,t||e===getDataLength()||options.autoEdit,null,i,n),currentEditor||setFocus()}}function commitCurrentEdit(){var e=getDataItem(activeRow),o=columns[activeCell];if(currentEditor){if(currentEditor.isValueChanged()){var t=currentEditor.validate();if(t.valid){if(activeRow<getDataLength()){var n={row:activeRow,cell:activeCell,editor:currentEditor,serializedValue:currentEditor.serializeValue(),prevSerializedValue:serializedEditorValue,execute:function(){this.editor.applyValue(e,this.serializedValue),updateRow(this.row),trigger(self.onCellChange,{row:this.row,cell:this.cell,item:e})},undo:function(){this.editor.applyValue(e,this.prevSerializedValue),updateRow(this.row),trigger(self.onCellChange,{row:this.row,cell:this.cell,item:e})}};options.editCommandHandler?(makeActiveCellNormal(),options.editCommandHandler(e,o,n)):(n.execute(),makeActiveCellNormal())}else{var l={};currentEditor.applyValue(l,currentEditor.serializeValue()),makeActiveCellNormal(),trigger(self.onAddNewRow,{item:l,column:o})}return!getEditorLock().isActive()}return $(activeCellNode).removeClass("invalid"),$(activeCellNode).width(),$(activeCellNode).addClass("invalid"),trigger(self.onValidationError,{editor:currentEditor,cellNode:activeCellNode,validationResults:t,row:activeRow,cell:activeCell,column:o}),currentEditor.focus(),!1}makeActiveCellNormal()}return!0}function cancelCurrentEdit(){return makeActiveCellNormal(),!0}function rowsToRanges(e){for(var o=[],t=columns.length-1,n=0;n<e.length;n++)o.push(new Slick.Range(e[n],0,e[n],t));return o}function getSelectedRows(){if(!selectionModel)throw new Error("Selection model is not set");return selectedRows.slice(0)}function setSelectedRows(e){if(!selectionModel)throw new Error("Selection model is not set");self&&self.getEditorLock&&!self.getEditorLock().isActive()&&selectionModel.setSelectedRanges(rowsToRanges(e))}this.debug=function(){var e="";e+="\ncounter_rows_rendered: "+counter_rows_rendered,e+="\ncounter_rows_removed: "+counter_rows_removed,e+="\nrenderedRows: "+renderedRows,e+="\nnumVisibleRows: "+numVisibleRows,e+="\nmaxSupportedCssHeight: "+maxSupportedCssHeight,e+="\nn(umber of pages): "+n,e+="\n(current) page: "+page,e+="\npage height (ph): "+ph,e+="\nvScrollDir: "+vScrollDir,alert(e)},this.eval=function(expr){return eval(expr)},$.extend(this,{slickGridVersion:"2.4.27",onScroll:new Slick.Event,onSort:new Slick.Event,onHeaderMouseEnter:new Slick.Event,onHeaderMouseLeave:new Slick.Event,onHeaderContextMenu:new Slick.Event,onHeaderClick:new Slick.Event,onHeaderCellRendered:new Slick.Event,onBeforeHeaderCellDestroy:new Slick.Event,onHeaderRowCellRendered:new Slick.Event,onFooterRowCellRendered:new Slick.Event,onFooterContextMenu:new Slick.Event,onFooterClick:new Slick.Event,onBeforeHeaderRowCellDestroy:new Slick.Event,onBeforeFooterRowCellDestroy:new Slick.Event,onMouseEnter:new Slick.Event,onMouseLeave:new Slick.Event,onClick:new Slick.Event,onDblClick:new Slick.Event,onContextMenu:new Slick.Event,onKeyDown:new Slick.Event,onAddNewRow:new Slick.Event,onBeforeAppendCell:new Slick.Event,onValidationError:new Slick.Event,onViewportChanged:new Slick.Event,onColumnsReordered:new Slick.Event,onColumnsDrag:new Slick.Event,onColumnsResized:new Slick.Event,onBeforeColumnsResize:new Slick.Event,onCellChange:new Slick.Event,onBeforeEditCell:new Slick.Event,onBeforeCellEditorDestroy:new Slick.Event,onBeforeDestroy:new Slick.Event,onActiveCellChanged:new Slick.Event,onActiveCellPositionChanged:new Slick.Event,onDragInit:new Slick.Event,onDragStart:new Slick.Event,onDrag:new Slick.Event,onDragEnd:new Slick.Event,onSelectedRowsChanged:new Slick.Event,onCellCssStylesChanged:new Slick.Event,onAutosizeColumns:new Slick.Event,onRendered:new Slick.Event,onSetOptions:new Slick.Event,registerPlugin,unregisterPlugin,getPluginByName,getColumns,setColumns,getColumnIndex,updateColumnHeader,setSortColumn,setSortColumns,getSortColumns,autosizeColumns,autosizeColumn,getOptions,setOptions,getData,getDataLength,getDataItem,setData,getSelectionModel,setSelectionModel,getSelectedRows,setSelectedRows,getContainerNode,updatePagingStatusFromView,applyFormatResultToCellNode,render,invalidate,invalidateRow,invalidateRows,invalidateAllRows,updateCell,updateRow,getViewport:getVisibleRange,getRenderedRange,resizeCanvas,updateRowCount,scrollRowIntoView,scrollRowToTop,scrollCellIntoView,scrollColumnIntoView,getCanvasNode,getUID,getHeaderColumnWidthDiff,getScrollbarDimensions,getHeadersWidth,getCanvasWidth,getCanvases,getActiveCanvasNode,setActiveCanvasNode,getViewportNode,getActiveViewportNode,setActiveViewportNode,focus:setFocus,scrollTo,getCellFromPoint,getCellFromEvent,getActiveCell,setActiveCell,getActiveCellNode,getActiveCellPosition,resetActiveCell,editActiveCell:makeActiveCellEditable,getCellEditor,getCellNode,getCellNodeBox,canCellBeSelected,canCellBeActive,navigatePrev,navigateNext,navigateUp,navigateDown,navigateLeft,navigateRight,navigatePageUp,navigatePageDown,navigateTop,navigateBottom,navigateRowStart,navigateRowEnd,gotoCell,getTopPanel,setTopPanelVisibility,getPreHeaderPanel,getPreHeaderPanelLeft:getPreHeaderPanel,getPreHeaderPanelRight,setPreHeaderPanelVisibility,getHeader,getHeaderColumn,setHeaderRowVisibility,getHeaderRow,getHeaderRowColumn,setFooterRowVisibility,getFooterRow,getFooterRowColumn,getGridPosition,flashCell,addCellCssStyles,setCellCssStyles,removeCellCssStyles,getCellCssStyles,getFrozenRowOffset,setColumnHeaderVisibility,init:finishInitialization,destroy,getEditorLock,getEditController}),init()}module.exports={Grid:SlickGrid}},n 465: function _(t,e,a){n /!n * jquery.event.drag - v 2.3.0n * Copyright (c) 2010 Three Dub Media - http://threedubmedia.comn * Open Source MIT License - http://threedubmedia.com/code/licensen */n var n=t(458);n.fn.drag=function(t,e,a){var r="string"==typeof t?t:"",o=n.isFunction(t)?t:n.isFunction(e)?e:null;return 0!==r.indexOf("drag")&&(r="drag"+r),a=(t==o?e:a)||{},o?this.on(r,a,o):this.trigger(r)};var r=n.event,o=r.special,i=o.drag={defaults:{which:1,distance:0,not:":input",handle:null,relative:!1,drop:!0,click:!1},datakey:"dragdata",noBubble:!0,add:function(t){var e=n.data(this,i.datakey),a=t.data||{};e.related+=1,n.each(i.defaults,(function(t,n){void 0!==a[t]&&(e[t]=a[t])}))},remove:function(){n.data(this,i.datakey).related-=1},setup:function(){if(!n.data(this,i.datakey)){var t=n.extend({related:0},i.defaults);n.data(this,i.datakey,t),r.add(this,"touchstart mousedown",i.init,t),this.attachEvent&&this.attachEvent("ondragstart",i.dontstart)}},teardown:function(){(n.data(this,i.datakey)||{}).related||(n.removeData(this,i.datakey),r.remove(this,"touchstart mousedown",i.init),i.textselect(!0),this.detachEvent&&this.detachEvent("ondragstart",i.dontstart))},init:function(t){if(!i.touched){var e,a=t.data;if(!(0!=t.which&&a.which>0&&t.which!=a.which)){var d=n(t.target).attr("class")||"";if(!n(t.target).is(a.not)&&d&&-1!==d.toString().indexOf("slick")&&(!a.handle||n(t.target).closest(a.handle,t.currentTarget).length)&&(i.touched="touchstart"==t.type?this:null,a.propagates=1,a.mousedown=this,a.interactions=[i.interaction(this,a)],a.target=t.target,a.pageX=t.pageX,a.pageY=t.pageY,a.dragging=null,e=i.hijack(t,"draginit",a),a.propagates))return(e=i.flatten(e))&&e.length&&(a.interactions=[],n.each(e,(function(){a.interactions.push(i.interaction(this,a))}))),a.propagates=a.interactions.length,!1!==a.drop&&o.drop&&o.drop.handler(t,a),i.textselect(!1),i.touched?r.add(i.touched,"touchmove touchend",i.handler,a):r.add(document,"mousemove mouseup",i.handler,a),!(!i.touched||a.live)&&void 0}}},interaction:function(t,e){var a=t&&t.ownerDocument&&n(t)[e.relative?"position":"offset"]()||{top:0,left:0};return{drag:t,callback:new i.callback,droppable:[],offset:a}},handler:function(t){var e=t.data;switch(t.type){case!e.dragging&&"touchmove":t.preventDefault();case!e.dragging&&"mousemove":if(Math.pow(t.pageX-e.pageX,2)+Math.pow(t.pageY-e.pageY,2)<Math.pow(e.distance,2))break;t.target=e.target,i.hijack(t,"dragstart",e),e.propagates&&(e.dragging=!0);case"touchmove":t.preventDefault();case"mousemove":if(e.dragging){if(i.hijack(t,"drag",e),e.propagates){!1!==e.drop&&o.drop&&o.drop.handler(t,e);break}t.type="mouseup"}case"touchend":case"mouseup":default:i.touched?r.remove(i.touched,"touchmove touchend",i.handler):r.remove(document,"mousemove mouseup",i.handler),e.dragging&&(!1!==e.drop&&o.drop&&o.drop.handler(t,e),i.hijack(t,"dragend",e)),i.textselect(!0),!1===e.click&&e.dragging&&n.data(e.mousedown,"suppress.click",(new Date).getTime()+5),e.dragging=i.touched=!1}},hijack:function(t,e,a,o,d){if(a){var s,c,l,p={event:t.originalEvent,type:t.type},u=e.indexOf("drop")?"drag":"drop",g=o||0,h=isNaN(o)?a.interactions.length:o;t.type=e;var f=function(){};t.originalEvent=new n.Event(p.event,{preventDefault:f,stopPropagation:f,stopImmediatePropagation:f}),a.results=[];do{if(c=a.interactions[g]){if("dragend"!==e&&c.cancelled)continue;l=i.properties(t,a,c),c.results=[],n(d||c[u]||a.droppable).each((function(o,d){if(l.target=d,t.isPropagationStopped=function(){return!1},!1===(s=d?r.dispatch.call(d,t,l):null)?("drag"==u&&(c.cancelled=!0,a.propagates-=1),"drop"==e&&(c[u][o]=null)):"dropinit"==e&&c.droppable.push(i.element(s)||d),"dragstart"==e&&(c.proxy=n(i.element(s)||c.drag)[0]),c.results.push(s),delete t.result,"dropinit"!==e)return s})),a.results[g]=i.flatten(c.results),"dropinit"==e&&(c.droppable=i.flatten(c.droppable)),"dragstart"!=e||c.cancelled||l.update()}}while(++g<h);return t.type=p.type,t.originalEvent=p.event,i.flatten(a.results)}},properties:function(t,e,a){var n=a.callback;return n.drag=a.drag,n.proxy=a.proxy||a.drag,n.startX=e.pageX,n.startY=e.pageY,n.deltaX=t.pageX-e.pageX,n.deltaY=t.pageY-e.pageY,n.originalX=a.offset.left,n.originalY=a.offset.top,n.offsetX=n.originalX+n.deltaX,n.offsetY=n.originalY+n.deltaY,n.drop=i.flatten((a.drop||[]).slice()),n.available=i.flatten((a.droppable||[]).slice()),n},element:function(t){if(t&&(t.jquery||1==t.nodeType))return t},flatten:function(t){return n.map(t,(function(t){return t&&t.jquery?n.makeArray(t):t&&t.length?i.flatten(t):t}))},textselect:function(t){n(document)[t?"off":"on"]("selectstart",i.dontstart).css("MozUserSelect",t?"":"none"),document.unselectable=t?"off":"on"},dontstart:function(){return!1},callback:function(){}};i.callback.prototype={update:function(){o.drop&&this.available.length&&n.each(this.available,(function(t){o.drop.locate(this,t)}))}};var d=r.dispatch;r.dispatch=function(t){if(!(n.data(this,"suppress."+t.type)-(new Date).getTime()>0))return d.apply(this,arguments);n.removeData(this,"suppress."+t.type)},o.draginit=o.dragstart=o.dragend=i},n 466: function _(t,e,a){n /!n * jquery.event.drop - v 2.3.0n * Copyright (c) 2010 Three Dub Media - http://threedubmedia.comn * Open Source MIT License - http://threedubmedia.com/code/licensen /n var n=t(458);n.fn.drop=function(t,e,a){var i="string"==typeof t?t:"",o=n.isFunction(t)?t:n.isFunction(e)?e:null;return 0!==i.indexOf("drop")&&(i="drop"+i),a=(t==o?e:a)||{},o?this.on(i,a,o):this.trigger(i)},n.drop=function(t){t=t||{},o.multi=!0===t.multi?1/0:!1===t.multi?1:isNaN(t.multi)?o.multi:t.multi,o.delay=t.delay||o.delay,o.tolerance=n.isFunction(t.tolerance)?t.tolerance:null===t.tolerance?null:o.tolerance,o.mode=t.mode||o.mode||"intersect"};var i=n.event.special,o=n.event.special.drop={multi:1,delay:20,mode:"overlap",targets:[],datakey:"dropdata",noBubble:!0,add:function(t){n.data(this,o.datakey).related+=1},remove:function(){n.data(this,o.datakey).related-=1},setup:function(){if(!n.data(this,o.datakey)){n.data(this,o.datakey,{related:0,active:[],anyactive:0,winner:0,location:{}}),o.targets.push(this)}},teardown:function(){if(!(n.data(this,o.datakey)||{}).related){n.removeData(this,o.datakey);var t=this;o.targets=n.grep(o.targets,(function(e){return e!==t}))}},handler:function(t,e){var a;if(e)switch(t.type){case"mousedown":case"touchstart":a=n(o.targets),"string"==typeof e.drop&&(a=a.filter(e.drop)),a.each((function(){var t=n.data(this,o.datakey);t.active=[],t.anyactive=0,t.winner=0})),e.droppable=a,i.drag.hijack(t,"dropinit",e);break;case"mousemove":case"touchmove":o.event=t,o.timer||o.tolerate(e);break;case"mouseup":case"touchend":o.timer=clearTimeout(o.timer),e.propagates&&(i.drag.hijack(t,"drop",e),i.drag.hijack(t,"dropend",e))}},locate:function(t,e){var a=n.data(t,o.datakey),i=n(t),r=i.length&&!i.is(document)?i.offset():{},d=i.outerHeight(),l=i.outerWidth(),c={elem:t,width:l,height:d,top:r.top,left:r.left,right:r.left+l,bottom:r.top+d};return a&&(a.location=c,a.index=e,a.elem=t),c},contains:function(t,e){return(e[0]||e.left)>=t.left&&(e[0]||e.right)<=t.right&&(e[1]||e.top)>=t.top&&(e[1]||e.bottom)<=t.bottom},modes:{intersect:function(t,e,a){return this.contains(a,[t.pageX,t.pageY])?1e9:this.modes.overlap.apply(this,arguments)},overlap:function(t,e,a){return Math.max(0,Math.min(a.bottom,e.bottom)-Math.max(a.top,e.top))*Math.max(0,Math.min(a.right,e.right)-Math.max(a.left,e.left))},fit:function(t,e,a){return this.contains(a,e)?1:0},middle:function(t,e,a){return this.contains(a,[e.left+.5*e.width,e.top+.5*e.height])?1:0}},sort:function(t,e){return e.winner-t.winner||t.index-e.index},tolerate:function(t){var e,a,r,d,l,c,s,u,p=0,h=t.interactions.length,m=[o.event.pageX,o.event.pageY],f=o.tolerance||o.modes[o.mode];do{if(u=t.interactions[p]){if(!u)return;u.drop=[],l=[],c=u.droppable.length,f&&(r=o.locate(u.proxy)),e=0;do{if(s=u.droppable[e]){if(!(a=(d=n.data(s,o.datakey)).location))continue;d.winner=f?f.call(o,o.event,r,a):o.contains(a,m)?1:0,l.push(d)}}while(++e<c);l.sort(o.sort),e=0;do{(d=l[e])&&(d.winner&&u.drop.length<o.multi?(d.active[p]||d.anyactive||(!1!==i.drag.hijack(o.event,"dropstart",t,p,d.elem)[0]?(d.active[p]=1,d.anyactive+=1):d.winner=0),d.winner&&u.drop.push(d.elem)):d.active[p]&&1==d.anyactive&&(i.drag.hijack(o.event,"dropend",t,p,d.elem),d.active[p]=0,d.anyactive-=1))}while(++e<c)}}while(++p<h);o.last&&m[0]==o.last.pageX&&m[1]==o.last.pageY?delete o.timer:o.timer=setTimeout((function(){o.tolerate(t)}),o.delay),o.last=o.event}};i.dropinit=i.dropstart=i.dropend=o},n 467: function _(e,t,n){var r=e(458),o=e(460);var i={Avg:function(e){this.field_=e,this.init=function(){this.count_=0,this.nonNullCount_=0,this.sum_=0},this.accumulate=function(e){var t=e[this.field_];this.count_++,null==t||""===t||isNaN(t)||(this.nonNullCount_++,this.sum_+=parseFloat(t))},this.storeResult=function(e){e.avg||(e.avg={}),0!==this.nonNullCount_&&(e.avg[this.field_]=this.sum_/this.nonNullCount_)}},Min:function(e){this.field_=e,this.init=function(){this.min_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(null==this.min_||t<this.min_)&&(this.min_=t)},this.storeResult=function(e){e.min||(e.min={}),e.min[this.field_]=this.min_}},Max:function(e){this.field_=e,this.init=function(){this.max_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(null==this.max_||t>this.max_)&&(this.max_=t)},this.storeResult=function(e){e.max||(e.max={}),e.max[this.field_]=this.max_}},Sum:function(e){this.field_=e,this.init=function(){this.sum_=null},this.accumulate=function(e){var t=e[this.field_];null==t||""===t||isNaN(t)||(this.sum_+=parseFloat(t))},this.storeResult=function(e){e.sum||(e.sum={}),e.sum[this.field_]=this.sum_}},Count:function(e){this.field_=e,this.init=function(){},this.storeResult=function(e){e.count||(e.count={}),e.count[this.field_]=e.group.rows.length}}};t.exports={DataView:function(e){var t,n,i,l,a,u=this,s="id",g=[],c=[],f={},p=null,h=null,d=null,m=!1,v=!0,_={},w={},y=[],$=[],C={getter:null,formatter:null,comparer:function(e,t){return e.value===t.value?0:e.value>t.value?1:-1},predefinedValues:[],aggregators:[],aggregateEmpty:!1,aggregateCollapsed:!1,aggregateChildGroups:!1,collapsed:!1,displayTotalsRow:!0,lazyTotalsCalculation:!1},I=[],R=[],x=[],E=0,M=0,F=0,S=new o.Event,b=new o.Event,A=new o.Event,N=new o.Event,G=new o.Event,T=new o.Event,O=new o.Event,P=new o.Event;function D(e){for(var t,n=e=e||0,r=g.length;n<r;n++){if(void 0===(t=g[n][s]))throw new Error("Each data element must implement a unique ‘id’ property");f[t]=n}}function K(){var e=E?Math.max(1,Math.ceil(F/E)):1;return{pageSize:E,pageNum:M,totalRows:F,totalPages:e,dataView:u}}function j(e,r){v=r,n=e,t=null,!1===r&&g.reverse(),g.sort(e),!1===r&&g.reverse(),f={},D(),le()}function B(e,r){v=r,t=e,n=null;var o=Object.prototype.toString;Object.prototype.toString="function"==typeof e?e:function(){return this[e]},!1===r&&g.reverse(),g.sort(),Object.prototype.toString=o,!1===r&&g.reverse(),f={},D(),le()}function z(t){e.groupItemMetadataProvider||(e.groupItemMetadataProvider=new o.Data.GroupItemMetadataProvider),R=[],x=[],I=(t=t||[])instanceof Array?t:[t];for(var n=0;n<I.length;n++){var i=I[n]=r.extend(!0,{},C,I[n]);i.getterIsAFn="function"==typeof i.getter,i.compiledAccumulators=[];for(var l=i.aggregators.length;l–;)i.compiledAccumulators[l]=ee(i.aggregators[l]);x[n]={}}le()}function V(){if(!p){p={};for(var e=0,t=c.length;e<t;e++)p[c[e][s]]=e}}function q(e){return g[f[e]]}function U(e,t){if(void 0===f[e])throw new Error("Invalid id");if(e!==t[s]){var n=t[s];if(null==n)throw new Error("Cannot update item to associate with a null id");if(void 0!==f[n])throw new Error("Cannot update item to associate with a non-unique id");f[n]=f[e],delete f[e],d&&d[e]&&delete d[e],e=n}g[f[e]]=t,d||(d={}),d[e]=!0,le()}function L(e,t){g.splice(e,0,t),D(e),le()}function k(e){var t=f[e];if(void 0===t)throw new Error("Invalid id");delete f[e],g.splice(t,1),D(t),le()}function H(e){if(!n)throw new Error("sortedAddItem() requires a sort comparer, use sort()");L(function(e){var t=0,r=g.length;for(;t<r;){var o=t+r>>>1;-1===n(g[o],e)?t=o+1:r=o}return t}(e),e)}function W(e,t){if(null==e)for(var n=0;n<I.length;n++)x[n]={},I[n].collapsed=t,!0===t?P.notify({level:n,groupingKey:null}):O.notify({level:n,groupingKey:null});else x[e]={},I[e].collapsed=t,!0===t?P.notify({level:e,groupingKey:null}):O.notify({level:e,groupingKey:null});le()}function J(e,t,n){x[e][t]=I[e].collapsed^n,le()}function Q(e,t){for(var n,r,i,l=[],a={},u=t?t.level+1:0,s=I[u],g=0,c=s.predefinedValues.length;g<c;g++)(n=a[r=s.predefinedValues[g]])||((n=new o.Group).value=r,n.level=u,n.groupingKey=(t?t.groupingKey+":|:":"")+r,l[l.length]=n,a[r]=n);for(g=0,c=e.length;g<c;g++)i=e[g],(n=a[r=s.getterIsAFn?s.getter(i):i[s.getter]])||((n=new o.Group).value=r,n.level=u,n.groupingKey=(t?t.groupingKey+":|:":"")+r,l[l.length]=n,a[r]=n),n.rows[n.count++]=i;if(u<I.length-1)for(g=0;g<l.length;g++)(n=l[g]).groups=Q(n.rows,n);return l.length&&function e(t,n){var r,o=I[n=n||0],i=o.collapsed,l=x[n],a=t.length;for(;a–;)(r=t[a]).collapsed&&!o.aggregateCollapsed||(r.groups&&e(r.groups,n+1),o.aggregators.length&&(o.aggregateEmpty||r.rows.length||r.groups&&r.groups.length)&&Y(r),r.collapsed=i^l[r.groupingKey],r.title=o.formatter?o.formatter(r):r.value)}(l,u),l.sort(I[u].comparer),l}function X(e){var t,n=e.group,r=I[n.level],o=n.level==I.length,i=r.aggregators.length;if(!o&&r.aggregateChildGroups)for(var l=n.groups.length;l–;)n.groups[l].totals.initialized||X(n.groups[l].totals);for(;i–;)(t=r.aggregators[i]).init(),!o&&r.aggregateChildGroups?r.compiledAccumulators[i].call(t,n.groups):r.compiledAccumulators[i].call(t,n.rows),t.storeResult(e);e.initialized=!0}function Y(e){var t=I[e.level],n=new o.GroupTotals;n.group=e,e.totals=n,t.lazyTotalsCalculation||X(n)}function Z(e){var t=e.toString().indexOf("function")>=0?/^function[^(]\(([^)]*)\)\s*{([\s\S]*)}$/:/^[^(]*\(([^)]*)\)\s*{([\s\S]*)}$/,n=e.toString().match(t);return{params:n[1].split(","),body:n[2]}}function ee(e){if(e.accumulate){var t=Z(e.accumulate),n=new Function("_items","for (var "+t.params[0]+", _i=0, _il=_items.length; _i<_il; _i++) {"+t.params[0]+" = _items[_i]; "+t.body+"}"),r="compiledAccumulatorLoop";return n.displayName=r,n.name=te(n,r),n}return function(){}}function te(e,t){try{Object.defineProperty(e,"name",{writable:!0,value:t})}catch(n){e.name=t}}function ne(e,t){for(var n=[],r=0,o=0,i=e.length;o<i;o++)h(e[o],t)&&(n[r++]=e[o]);return n}function re(e,t,n){for(var r,o=[],i=0,l=0,a=e.length;l<a;l++)r=e[l],n[l]?o[i++]=r:h(r,t)&&(o[i++]=r,n[l]=!0);return o}function oe(t){if(h){var n=e.inlineFilters?l:ne,r=e.inlineFilters?a:re;_.isFilterNarrowing?y=n(y,i):_.isFilterExpanding?y=r(t,i,$):_.isFilterUnchanged||(y=n(t,i))}else y=E?t:t.concat();var o;return E?(y.length<=M*E&&(M=0===y.length?0:Math.floor((y.length-1)/E)),o=y.slice(E*M,E*M+E)):o=y,{totalRows:y.length,rows:o}}function ie(e){p=null,_.isFilterNarrowing==w.isFilterNarrowing&&_.isFilterExpanding==w.isFilterExpanding||($=[]);var t=oe(e);F=t.totalRows;var n=t.rows;R=[],I.length&&(R=Q(n)).length&&(n=function e(t,n){for(var r,o,i=I[n=n||0],l=[],a=0,u=0,s=t.length;u<s;u++){if(o=t[u],l[a++]=o,!o.collapsed)for(var g=0,c=(r=o.groups?e(o.groups,n+1):o.rows).length;g<c;g++)l[a++]=r[g];o.totals&&i.displayTotalsRow&&(!o.collapsed||i.aggregateCollapsed)&&(l[a++]=o.totals)}return l}(R));var r=function(e,t){var n,r,o,i=[],l=0,a=Math.max(t.length,e.length);_&&_.ignoreDiffsBefore&&(l=Math.max(0,Math.min(t.length,_.ignoreDiffsBefore))),_&&_.ignoreDiffsAfter&&(a=Math.min(t.length,Math.max(0,_.ignoreDiffsAfter)));for(var u=l,g=e.length;u<a;u++)u>=g?i[i.length]=u:(n=t[u],r=e[u],(!n||I.length&&(o=n.__nonDataRow||r.__nonDataRow)&&n.__group!==r.__group||n.__group&&!n.equals(r)||o&&(n.__groupTotals||r.__groupTotals)||n[s]!=r[s]||d&&d[n[s]])&&(i[i.length]=u));return i}(c,n);return c=n,r}function le(){if(!m){var e=r.extend(!0,{},K()),t=c.length,n=F,o=ie(g);E&&F<M*E&&(M=Math.max(0,Math.ceil(F/E)-1),o=ie(g)),d=null,w=_,_={},n!==F&&(G.notify(e,null,u),T.notify(K(),null,u)),t!==c.length&&b.notify({previous:t,current:c.length,dataView:u,callingOnRowsChanged:o.length>0},null,u),o.length>0&&A.notify({rows:o,dataView:u,calledOnRowCountChanged:t!==c.length},null,u),(t!==c.length||o.length>0)&&N.notify({rowsDiff:o,previousRowCount:t,currentRowCount:c.length,rowCountChanged:t!==c.length,rowsChanged:o.length>0,dataView:u},null,u)}}e=r.extend(!0,{},{groupItemMetadataProvider:null,inlineFilters:!1},e),r.extend(this,{beginUpdate:function(){m=!0},endUpdate:function(){m=!1,le()},setPagingOptions:function(e){G.notify(K(),null,u),null!=e.pageSize&&(E=e.pageSize,M=E?Math.min(M,Math.max(0,Math.ceil(F/E)-1)):0),null!=e.pageNum&&(M=Math.min(e.pageNum,Math.max(0,Math.ceil(F/E)-1))),T.notify(K(),null,u),le()},getPagingInfo:K,getIdPropertyName:function(){return s},getItems:function(){return g},setItems:function(e,t){void 0!==t&&(s=t),g=y=e,f={},D(),function(){for(var e,t=0,n=g.length;t<n;t++)if(void 0===(e=g[t][s])||f[e]!==t)throw new Error("Each data element must implement a unique ‘id’ property")}(),le(),S.notify({idProperty:t},null,u)},setFilter:function(t){h=t,e.inlineFilters&&(l=function(){var e=Z(h),t="{ _retval[_idx++] = $item$; continue _coreloop; }$1",n=e.body.replace(/return false\s*([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return!1([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return true\s*([;}]|\}|$)/gi,t).replace(/return!0([;}]|\}|$)/gi,t).replace(/return ([^;}]+?)\s*([;}]|$)/gi,"{ if ($1) { _retval[_idx++] = $item$; }; continue _coreloop; }$2"),r=["var _retval = [], _idx = 0; ","var $item$, $args$ = _args; ","_coreloop: ","for (var _i = 0, _il = _items.length; _i < _il; _i++) { ","$item$ = _items[_i]; ","$filter$; ","} ","return _retval; "].join("");r=(r=(r=r.replace(/\$filter\$/gi,n)).replace(/\$item\$/gi,e.params[0])).replace(/\$args\$/gi,e.params[1]);var o=new Function("_items,_args",r);return o.displayName="compiledFilter",o.name=te(o,"compiledFilter"),o}(),a=function(){var e=Z(h),t="{ _cache[_i] = true;_retval[_idx++] = $item$; continue _coreloop; }$1",n=e.body.replace(/return false\s*([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return!1([;}]|\}|$)/gi,"{ continue _coreloop; }$1").replace(/return true\s*([;}]|\}|$)/gi,t).replace(/return!0([;}]|\}|$)/gi,t).replace(/return ([^;}]+?)\s*([;}]|$)/gi,"{ if ((_cache[_i] = $1)) { _retval[_idx++] = $item$; }; continue _coreloop; }$2"),r=["var _retval = [], _idx = 0; ","var $item$, $args$ = _args; ","_coreloop: ","for (var _i = 0, _il = _items.length; _i < _il; _i++) { ","$item$ = _items[_i]; ","if (_cache[_i]) { ","_retval[_idx++] = $item$; ","continue _coreloop; ","} ","$filter$; ","} ","return _retval; "].join("");r=(r=(r=r.replace(/\$filter\$/gi,n)).replace(/\$item\$/gi,e.params[0])).replace(/\$args\$/gi,e.params[1]);var o=new Function("_items,_args,_cache",r),i="compiledFilterWithCaching";return o.displayName=i,o.name=te(o,i),o}()),le()},getFilter:function(){return h},getFilteredItems:function(){return y},sort:j,fastSort:B,reSort:function(){n?j(n,v):t&&B(t,v)},setGrouping:z,getGrouping:function(){return I},groupBy:function(e,t,n){z(null!=e?{getter:e,formatter:t,comparer:n}:[])},setAggregators:function(e,t){if(!I.length)throw new Error("At least one grouping must be specified before calling setAggregators().");I[0].aggregators=e,I[0].aggregateCollapsed=t,z(I)},collapseAllGroups:function(e){W(e,!0)},expandAllGroups:function(e){W(e,!1)},collapseGroup:function(e){var t,n,r=Array.prototype.slice.call(arguments),o=r[0];1===r.length&&-1!==o.indexOf(":|:\")?(t=o,n=o.split(\":|:").length-1):(t=r.join(":|:\"),n=r.length-1),J(n,t,!0),P.notify({level:n,groupingKey:t})},expandGroup:function(e){var t,n,r=Array.prototype.slice.call(arguments),o=r[0];1===r.length&&-1!==o.indexOf(\":|:")?(n=o.split(":|:\").length-1,t=o):(n=r.length-1,t=r.join(\":|:")),J(n,t,!1),O.notify({level:n,groupingKey:t})},getGroups:function(){return R},getIdxById:function(e){return f[e]},getRowByItem:function(e){return V(),p[e[s]]},getRowById:function(e){return V(),p[e]},getItemById:q,getItemByIdx:function(e){return g[e]},mapItemsToRows:function(e){var t=[];V();for(var n=0,r=e.length;n<r;n++){var o=p[e[n][s]];null!=o&&(t[t.length]=o)}return t},mapRowsToIds:function(e){for(var t=[],n=0,r=e.length;n<r;n++)e[n]<c.length&&(t[t.length]=c[e[n]][s]);return t},mapIdsToRows:function(e){var t=[];V();for(var n=0,r=e.length;n<r;n++){var o=p[e[n]];null!=o&&(t[t.length]=o)}return t},setRefreshHints:function(e){_=e},setFilterArgs:function(e){i=e},refresh:le,updateItem:U,insertItem:L,addItem:function(e){g.push(e),D(g.length-1),le()},deleteItem:k,sortedAddItem:H,sortedUpdateItem:function(e,t){if(void 0===f[e]||e!==t[s])throw new Error("Invalid or non-matching id "+f[e]);if(!n)throw new Error("sortedUpdateItem() requires a sort comparer, use sort()");var r=q(e);0!==n(r,t)?(k(e),H(t)):U(e,t)},syncGridSelection:function(e,t,n){var i,l=this,a=l.mapRowsToIds(e.getSelectedRows()),u=new o.Event;function s(t){a.join(",")!=t.join(",")&&(a=t,u.notify({grid:e,ids:a,dataView:l},new o.EventData,l))}return e.onSelectedRowsChanged.subscribe((function(t,o){if(!i){var u=l.mapRowsToIds(e.getSelectedRows());if(n&&e.getOptions().multiSelect)s(r.grep(a,(function(e){return void 0===l.getRowById(e)})).concat(u));else s(u)}})),this.onRowsOrCountChanged.subscribe((function(){if(a.length>0){i=!0;var n=l.mapIdsToRows(a);t||s(l.mapRowsToIds(n)),e.setSelectedRows(n),i=!1}})),u},syncGridCellCssStyles:function(e,t){var n,r;function o(e){for(var t in n={},e){var r=c[t][s];n[r]=e[t]}}function i(){if(n){r=!0,V();var o={};for(var i in n){var l=p[i];null!=l&&(o[l]=n[i])}e.setCellCssStyles(t,o),r=!1}}o(e.getCellCssStyles(t)),e.onCellCssStylesChanged.subscribe((function(n,l){r||t==l.key&&(l.hash?o(l.hash):(e.onCellCssStylesChanged.unsubscribe(),u.onRowsOrCountChanged.unsubscribe(i)))})),this.onRowsOrCountChanged.subscribe(i)},getLength:function(){return c.length},getItem:function(e){var t=c[e];if(t&&t.__group&&t.totals&&!t.totals.initialized){var n=I[t.level];n.displayTotalsRow||(X(t.totals),t.title=n.formatter?n.formatter(t):t.value)}else t&&t.__groupTotals&&!t.initialized&&X(t);return t},getItemMetadata:function(t){var n=c[t];return void 0===n?null:n.__group?e.groupItemMetadataProvider.getGroupRowMetadata(n):n.__groupTotals?e.groupItemMetadataProvider.getTotalsRowMetadata(n):null},onSetItemsCalled:S,onRowCountChanged:b,onRowsChanged:A,onRowsOrCountChanged:N,onBeforePagingInfoChanged:G,onPagingInfoChanged:T,onGroupExpanded:O,onGroupCollapsed:P})},Aggregators:i,Data:{Aggregators:i}}},n 468: function _(e,t,i){var n=e(458),o=e(460);function l(e){var t,i;function o(){var t=e.column.editorFixedDecimalPlaces;return void 0===t&&(t=l.DefaultDecimalPlaces),t||0===t?t:null}this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field];var l=o();null!==l&&(i||0===i)&&i.toFixed&&(i=i.toFixed(l)),t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){var e=parseFloat(t.val());l.AllowEmptyValue?e||0===e||(e=""):e=e||0;var i=o();return null!==i&&(e||0===e)&&e.toFixed&&(e=parseFloat(e.toFixed(i))),e},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(isNaN(t.val()))return{valid:!1,msg:"Please enter a valid number"};if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()}function a(e){var t=this.selectionStart,i=this.value.length;(e.keyCode===o.keyCode.LEFT&&t>0||e.keyCode===o.keyCode.RIGHT&&t<i-1)&&e.stopImmediatePropagation()}function s(e){e.keyCode!==o.keyCode.LEFT&&e.keyCode!==o.keyCode.RIGHT||e.stopImmediatePropagation()}l.DefaultDecimalPlaces=null,l.AllowEmptyValue=!1,t.exports={Editors:{Text:function(e){var t,i;this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.getValue=function(){return t.val()},this.setValue=function(e){t.val(e)},this.loadValue=function(n){i=n[e.column.field]||"",t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},Integer:function(e){var t,i;this.init=function(){var i=e.grid.getOptions().editorCellNavOnLRKeys;t=n("<INPUT type=text class=’editor-text’ />").appendTo(e.container).on("keydown.nav",i?a:s).focus().select()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field],t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return parseInt(t.val(),10)||0},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(isNaN(t.val()))return{valid:!1,msg:"Please enter a valid integer"};if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},Float:l,Date:function(e){var t,i,o=!1;this.init=function(){(t=n("<INPUT type=text class=’editor-text’ />")).appendTo(e.container),t.focus().select(),t.datepicker({showOn:"button",buttonImageOnly:!0,beforeShow:function(){o=!0},onClose:function(){o=!1}}),t.width(t.width()-18)},this.destroy=function(){n.datepicker.dpDiv.stop(!0,!0),t.datepicker("hide"),t.datepicker("destroy"),t.remove()},this.show=function(){o&&n.datepicker.dpDiv.stop(!0,!0).show()},this.hide=function(){o&&n.datepicker.dpDiv.stop(!0,!0).hide()},this.position=function(e){o&&n.datepicker.dpDiv.css("top",e.top+30).css("left",e.left)},this.focus=function(){t.focus()},this.loadValue=function(n){i=n[e.column.field],t.val(i),t[0].defaultValue=i,t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==i)&&t.val()!=i},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()},YesNoSelect:function(e){var t,i;this.init=function(){(t=n("<SELECT tabIndex=’0’ class=’editor-yesno’><OPTION value=’yes’>Yes</OPTION><OPTION value=’no’>No</OPTION></SELECT>")).appendTo(e.container),t.focus()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){t.val((i=n[e.column.field])?"yes":"no"),t.select()},this.serializeValue=function(){return"yes"==t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return t.val()!=i},this.validate=function(){return{valid:!0,msg:null}},this.init()},Checkbox:function(e){var t,i;this.init=function(){(t=n("<INPUT type=checkbox value=’true’ class=’editor-checkbox’ hideFocus>")).appendTo(e.container),t.focus()},this.destroy=function(){t.remove()},this.focus=function(){t.focus()},this.loadValue=function(n){(i=!!n[e.column.field])?t.prop("checked",!0):t.prop("checked",!1)},this.preClick=function(){t.prop("checked",!t.prop("checked"))},this.serializeValue=function(){return t.prop("checked")},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return this.serializeValue()!==i},this.validate=function(){return{valid:!0,msg:null}},this.init()},PercentComplete:function(e){var t,i,o;this.init=function(){(t=n("<INPUT type=text class=’editor-percentcomplete’ />")).width(n(e.container).innerWidth()-25),t.appendTo(e.container),(i=n("<div class=’editor-percentcomplete-picker’ />").appendTo(e.container)).append("<div class=’editor-percentcomplete-helper’><div class=’editor-percentcomplete-wrapper’><div class=’editor-percentcomplete-slider’ /><div class=’editor-percentcomplete-buttons’ /></div></div>"),i.find(".editor-percentcomplete-buttons").append("<button val=0>Not started</button><br/><button val=50>In Progress</button><br/><button val=100>Complete</button>"),t.focus().select(),i.find(".editor-percentcomplete-slider").slider({orientation:"vertical",range:"min",value:o,slide:function(e,i){t.val(i.value)}}),i.find(".editor-percentcomplete-buttons button").on("click",(function(e){t.val(n(this).attr("val")),i.find(".editor-percentcomplete-slider").slider("value",n(this).attr("val"))}))},this.destroy=function(){t.remove(),i.remove()},this.focus=function(){t.focus()},this.loadValue=function(i){t.val(o=i[e.column.field]),t.select()},this.serializeValue=function(){return parseInt(t.val(),10)||0},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==o)&&(parseInt(t.val(),10)||0)!=o},this.validate=function(){return isNaN(parseInt(t.val(),10))?{valid:!1,msg:"Please enter a valid positive number"}:{valid:!0,msg:null}},this.init()},LongText:function(e){var t,i,l,a=this;this.init=function(){var o=n("body");e.grid.getOptions().editorCellNavOnLRKeys;i=n("<DIV style=’z-index:10000;position:absolute;background:white;padding:5px;border:3px solid gray; -moz-border-radius:10px; border-radius:10px;’/>").appendTo(o),t=n("<TEXTAREA hidefocus rows=5 style=’background:white;width:250px;height:80px;border:0;outline:0’>").appendTo(i),n("<DIV style=’text-align:right’><BUTTON>Save</BUTTON><BUTTON>Cancel</BUTTON></DIV>").appendTo(i),i.find("button:first").on("click",this.save),i.find("button:last").on("click",this.cancel),t.on("keydown",this.handleKeyDown),a.position(e.position),t.focus().select()},this.handleKeyDown=function(t){if(t.which==o.keyCode.ENTER&&t.ctrlKey)a.save();else if(t.which==o.keyCode.ESCAPE)t.preventDefault(),a.cancel();else if(t.which==o.keyCode.TAB&&t.shiftKey)t.preventDefault(),e.grid.navigatePrev();else if(t.which==o.keyCode.TAB)t.preventDefault(),e.grid.navigateNext();else if((t.which==o.keyCode.LEFT||t.which==o.keyCode.RIGHT)&&e.grid.getOptions().editorCellNavOnLRKeys){var i=this.selectionStart,n=this.value.length;t.keyCode===o.keyCode.LEFT&&0===i&&e.grid.navigatePrev(),t.keyCode===o.keyCode.RIGHT&&i>=n-1&&e.grid.navigateNext()}},this.save=function(){e.commitChanges()},this.cancel=function(){t.val(l),e.cancelChanges()},this.hide=function(){i.hide()},this.show=function(){i.show()},this.position=function(e){i.css("top",e.top-5).css("left",e.left-5)},this.destroy=function(){i.remove()},this.focus=function(){t.focus()},this.loadValue=function(i){t.val(l=i[e.column.field]),t.select()},this.serializeValue=function(){return t.val()},this.applyValue=function(t,i){t[e.column.field]=i},this.isValueChanged=function(){return!(""===t.val()&&null==l)&&t.val()!=l},this.validate=function(){if(e.column.validator){var i=e.column.validator(t.val());if(!i.valid)return i}return{valid:!0,msg:null}},this.init()}}}},n 469: function _(e,n,r){e(460);n.exports={Formatters:{PercentComplete:function(e,n,r,t,c){return null==r||""===r?"-":r<50?"<span style=’color:red;font-weight:bold;’>"+r+"%</span>":"<span style=’color:green’>"+r+"%</span>"},PercentCompleteBar:function(e,n,r,t,c){return null==r||""===r?"":"<span class=’percent-complete-bar’ style=’background:"+(r<30?"red":r<70?"silver":"green")+";width:"+r+"%’></span>"},YesNo:function(e,n,r,t,c){return r?"Yes":"No"},Checkmark:function(e,n,r,t,c){return r?"<img src=’../images/tick.png’>":""},Checkbox:function(e,n,r,t,c){return’<img class="slick-edit-preclick" src="../images/’+(r?"CheckboxY":"CheckboxN")+’.png">’}}}},n 470: function _(t,o,r){var e=t(458),n=t(460);o.exports={RemoteModel:function(){var t={length:0},o="",r=null,a=1,l=null,i=null,s=new n.Event,u=new n.Event;function f(){for(var o in t)delete t[o];t.length=0}function c(n,f){if(i){i.abort();for(var c=i.fromPage;c<=i.toPage;c++)t[50*c]=void 0}n<0&&(n=0),t.length>0&&(f=Math.min(f,t.length-1));for(var d=Math.floor(n/50),v=Math.floor(f/50);void 0!==t[50*d]&&d<v;)d++;for(;void 0!==t[50*v]&&d<v;)v–;if(d>v||d==v&&void 0!==t[50*d])u.notify({from:n,to:f});else{var m="http://octopart.com/api/v3/parts/search?apikey=68b25f31&include[]=short_description&show[]=uid&show[]=manufacturer&show[]=mpn&show[]=brand&show[]=octopart_url&show[]=short_description&q="+o+"&start="+50*d+"&limit="+(50*(v-d)+50);null!=r&&(m+="&sortby="+r+(a>0?"+asc":"+desc")),null!=l&&clearTimeout(l),l=setTimeout((function(){for(var o=d;o<=v;o++)t[50*o]=null;s.notify({from:n,to:f}),(i=e.jsonp({url:m,callbackParameter:"callback",cache:!0,success:h,error:function(){!function(t,o){alert("error loading pages "+t+" to "+o)}(d,v)}})).fromPage=d,i.toPage=v}),50)}}function h(o){var r=o.request.start,e=r+o.results.length;t.length=Math.min(parseInt(o.hits),1e3);for(var n=0;n<o.results.length;n++){var a=o.results[n].item;t[r+n]=a,t[r+n].index=r+n}i=null,u.notify({from:r,to:e})}return{data:t,clear:f,isDataLoaded:function(o,r){for(var e=o;e<=r;e++)if(null==t[e]||null==t[e])return!1;return!0},ensureData:c,reloadData:function(o,r){for(var e=o;e<=r;e++)delete t[e];c(o,r)},setSort:function(t,o){r=t,a=o,f()},setSearch:function(t){o=t,f()},onDataLoading:s,onDataLoaded:u}}}},n 471: function _(e,s,t){var o=e(458),l=e(460);s.exports={GroupItemMetadataProvider:function(e){var s,t={checkboxSelect:!1,checkboxSelectCssClass:"slick-group-select-checkbox",checkboxSelectPlugin:null,groupCssClass:"slick-group",groupTitleCssClass:"slick-group-title",totalsCssClass:"slick-group-totals",groupFocusable:!0,totalsFocusable:!1,toggleCssClass:"slick-group-toggle",toggleExpandedCssClass:"expanded",toggleCollapsedCssClass:"collapsed",enableExpandCollapse:!0,groupFormatter:function(e,s,t,o,l,r){if(!a.enableExpandCollapse)return l.title;var c=15*l.level+"px";return(a.checkboxSelect?’<span class="’+a.checkboxSelectCssClass+" "+(l.selectChecked?"checked":"unchecked")+’"></span>’:"")+"<span class=’"+a.toggleCssClass+" "+(l.collapsed?a.toggleCollapsedCssClass:a.toggleExpandedCssClass)+"’ style=’margin-left:"+c+"’></span><span class=’"+a.groupTitleCssClass+"’ level=’"+l.level+"’>"+l.title+"</span>"},totalsFormatter:function(e,s,t,o,l,a){return o.groupTotalsFormatter&&o.groupTotalsFormatter(l,o,a)||""},includeHeaderTotals:!1},a=o.extend(!0,{},t,e);function r(e,t){var r=o(e.target),c=this.getDataItem(t.row);if(c&&c instanceof l.Group&&r.hasClass(a.toggleCssClass)){var n=s.getRenderedRange();this.getData().setRefreshHints({ignoreDiffsBefore:n.top,ignoreDiffsAfter:n.bottom+1}),c.collapsed?this.getData().expandGroup(c.groupingKey):this.getData().collapseGroup(c.groupingKey),e.stopImmediatePropagation(),e.preventDefault()}if(c&&c instanceof l.Group&&r.hasClass(a.checkboxSelectCssClass)){c.selectChecked=!c.selectChecked,r.removeClass(c.selectChecked?"unchecked":"checked"),r.addClass(c.selectChecked?"checked":"unchecked");var i=s.getData().mapItemsToRows(c.rows);(c.selectChecked?a.checkboxSelectPlugin.selectRows:a.checkboxSelectPlugin.deSelectRows)(i)}}function c(e,t){if(a.enableExpandCollapse&&e.which==l.keyCode.SPACE){var o=this.getActiveCell();if(o){var r=this.getDataItem(o.row);if(r&&r instanceof l.Group){var c=s.getRenderedRange();this.getData().setRefreshHints({ignoreDiffsBefore:c.top,ignoreDiffsAfter:c.bottom+1}),r.collapsed?this.getData().expandGroup(r.groupingKey):this.getData().collapseGroup(r.groupingKey),e.stopImmediatePropagation(),e.preventDefault()}}}}return{init:function(e){(s=e).onClick.subscribe(r),s.onKeyDown.subscribe(c)},destroy:function(){s&&(s.onClick.unsubscribe(r),s.onKeyDown.unsubscribe(c))},getGroupRowMetadata:function(e){var s=e&&e.level;return{selectable:!1,focusable:a.groupFocusable,cssClasses:a.groupCssClass+" slick-group-level-"+s,formatter:a.includeHeaderTotals&&a.totalsFormatter,columns:{0:{colspan:a.includeHeaderTotals?"1":"",formatter:a.groupFormatter,editor:null}}}},getTotalsRowMetadata:function(e){var s=e&&e.group&&e.group.level;return{selectable:!1,focusable:a.totalsFocusable,cssClasses:a.totalsCssClass+" slick-group-level-"+s,formatter:a.totalsFormatter,editor:null}},getOptions:function(){return a},setOptions:function(e){o.extend(!0,a,e)}}}}},n 472: function _(i,e,t){Object.defineProperty(t,"__esModule",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return"horizontal"==this.model.orientation?super._width_policy():"fixed"}_height_policy(){return"horizontal"==this.model.orientation?"fixed":super._height_policy()}box_sizing(){const i=super.box_sizing();return"horizontal"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__="WidgetView";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,"horizontal"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__="Widget",s.init_Widget()},n 473: function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e(1),n=e(472),c=e(114),a=s.__importStar(e(18));class o extends n.Widget{constructor(e){super(e)}static init_TableWidget(){this.define({source:[a.Instance],view:[a.Instance,()=>new c.CDSView]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.source,this.view.compute_indices())}}t.TableWidget=o,o.__name__="TableWidget",o.init_TableWidget()},n 474: function _(t,e,i){Object.defineProperty(i,"__esModule",{value:!0});const r=t(1),o=t(475),n=t(455),l=r.__importStar(t(18)),a=t(29),d=t(81);class s extends d.Model{constructor(t){super(t)}static init_TableColumn(){this.define({field:[l.String],title:[l.String],width:[l.Number,300],formatter:[l.Instance,()=>new o.StringFormatter],editor:[l.Instance,()=>new n.StringEditor],sortable:[l.Boolean,!0],default_sort:[l.Sort,"ascending"]})}toColumn(){var t;return{id:a.uniqueId(),field:this.field,name:null!==(t=this.title)&&void 0!==t?t:this.field,width:this.width,formatter:null!=this.formatter?this.formatter.doFormat.bind(this.formatter):void 0,model:this.editor,editor:this.editor.default_view,sortable:this.sortable,defaultSortAsc:"ascending"==this.default_sort}}}i.TableColumn=s,s.__name__="TableColumn",s.init_TableColumn()},n 475: function _(t,e,r){Object.defineProperty(r,"__esModule",{value:!0});const n=t(1),i=n.__importDefault(t(186)),a=n.__importStar(t(188)),o=t(476),s=n.__importStar(t(18)),l=t(72),c=t(8),m=t(81);class _ extends m.Model{constructor(t){super(t)}doFormat(t,e,r,n,i){return null==r?"":(r+"").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}}r.CellFormatter=_,_.__name__="CellFormatter";class u extends _{constructor(t){super(t)}static init_StringFormatter(){this.define({font_style:[s.FontStyle,"normal"],text_align:[s.TextAlign,"left"],text_color:[s.Color]})}doFormat(t,e,r,n,i){const{font_style:a,text_align:o,text_color:s}=this,c=l.div({},null==r?"":""+r);switch(a){case"bold":c.style.fontWeight="bold";break;case"italic":c.style.fontStyle="italic"}return null!=o&&(c.style.textAlign=o),null!=s&&(c.style.color=s),c.outerHTML}}r.StringFormatter=u,u.__name__="StringFormatter",u.init_StringFormatter();class F extends u{constructor(t){super(t)}static init_ScientificFormatter(){this.define({nan_format:[s.String],precision:[s.Number,10],power_limit_high:[s.Number,5],power_limit_low:[s.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}doFormat(t,e,r,n,i){const a=r<=this.scientific_limit_low||r>=this.scientific_limit_high;let o=this.precision;return o<1&&(o=1),r=null!=r&&!isNaN(r)||null==this.nan_format?a?r.toExponential(o):r.toFixed(o).replace(/(\.[0-9]?)0+$/,"$1").replace(/\.$/,""):this.nan_format,super.doFormat(t,e,r,n,i)}}r.ScientificFormatter=F,F.__name__="ScientificFormatter",F.init_ScientificFormatter();class d extends u{constructor(t){super(t)}static init_NumberFormatter(){this.define({format:[s.String,"0,0"],language:[s.String,"en"],rounding:[s.RoundingFunction,"round"],nan_format:[s.String]})}doFormat(t,e,r,n,i){const{format:o,language:s,nan_format:l}=this,c=(()=>{switch(this.rounding){case"round":case"nearest":return Math.round;case"floor":case"rounddown":return Math.floor;case"ceil":case"roundup":return Math.ceil}})();return r=null!=r&&!isNaN(r)||null==l?a.format(r,o,s,c):l,super.doFormat(t,e,r,n,i)}}r.NumberFormatter=d,d.__name__="NumberFormatter",d.init_NumberFormatter();class f extends _{constructor(t){super(t)}static init_BooleanFormatter(){this.define({icon:[s.String,"check"]})}doFormat(t,e,r,n,i){return r?l.i({class:this.icon}).outerHTML:""}}r.BooleanFormatter=f,f.__name__="BooleanFormatter",f.init_BooleanFormatter();class g extends u{constructor(t){super(t)}static init_DateFormatter(){this.define({format:[s.String,"ISO-8601"],nan_format:[s.String]})}getFormat(){switch(this.format){case"ATOM":case"W3C":case"RFC-3339":case"ISO-8601":return"%Y-%m-%d";case"COOKIE":return"%a, %d %b %Y";case"RFC-850":return"%A, %d-%b-%y";case"RFC-1123":case"RFC-2822":return"%a, %e %b %Y";case"RSS":case"RFC-822":case"RFC-1036":return"%a, %e %b %y";case"TIMESTAMP":return;default:return this.format}}doFormat(t,e,r,n,a){const{nan_format:o}=this;let s;return s=null!=(r=c.isString(r)?parseInt(r,10):r)&&!isNaN(r)&&-9223372036854776!==r||null==o?null==r?"":i.default(r,this.getFormat()):o,super.doFormat(t,e,s,n,a)}}r.DateFormatter=g,g.__name__="DateFormatter",g.init_DateFormatter();class h extends _{constructor(t){super(t)}static init_HTMLTemplateFormatter(){this.define({template:[s.String,"<%= value %>"]})}doFormat(t,e,r,n,i){const{template:a}=this;if(null==r)return"";return o._.template(a)(Object.assign(Object.assign({},i),{value:r}))}}r.HTMLTemplateFormatter=h,h.__name__="HTMLTemplateFormatter",h.init_HTMLTemplateFormatter()},n 476: function _(e,n,t){var f=e(477),i=f.template;function o(e,n,t){return i(e,n,t)}o._=f,n.exports=o,"function"==typeof define&&define.amd?define((function(){return o})):"undefined"==typeof window&&"undefined"==typeof navigator||(window.UnderscoreTemplate=o)},n 477: function _(r,e,n){n // (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editorsn // Underscore may be freely distributed under the MIT license.n var t={},a=Array.prototype,u=Object.prototype,c=a.slice,o=u.toString,l=u.hasOwnProperty,i=a.forEach,f=Object.keys,s=Array.isArray,p=function(){},_=p.each=p.forEach=function(r,e,n){if(null!=r)if(i&&r.forEach===i)r.forEach(e,n);else if(r.length===+r.length){for(var a=0,u=r.length;a<u;a++)if(e.call(n,r[a],a,r)===t)return}else{var c=p.keys(r);for(a=0,u=c.length;a<u;a++)if(e.call(n,r[c[a]],c[a],r)===t)return}};p.keys=f||function(r){if(r!==Object(r))throw new TypeError("Invalid object");var e=[];for(var n in r)p.has(r,n)&&e.push(n);return e},p.defaults=function(r){return _(c.call(arguments,1),(function(e){if(e)for(var n in e)void 0===r[n]&&(r[n]=e[n])})),r},p.isArray=s||function(r){return"[object Array]"===o.call(r)},p.has=function(r,e){if(!p.isArray(e))return null!=r&&l.call(r,e);for(var n=e.length,t=0;t<n;t++){var a=e[t];if(null==r||!l.call(r,a))return!1;r=r[a]}return!!n};var h={escape:{"&":"&","<":"<",">":">",’"’:""","’":"'"}},v={escape:new RegExp("["+p.keys(h.escape).join("")+"]","g")};p.each(["escape"],(function(r){p[r]=function(e){return null==e?"":(""+e).replace(v[r],(function(e){return h[r][e]}))}})),p.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var g=/(.)^/,y={"’":"’","\\":"\\","\r":"r","\n":"n","\t":"t","\u2028":"u2028","\u2029":"u2029"},j=/\\|’|\\r|\n|\t|\u2028|\u2029/g;p.template=function(r,e,n){var t;n=p.defaults({},n,p.templateSettings);var a=new RegExp([(n.escape||g).source,(n.interpolate||g).source,(n.evaluate||g).source].join("|\")+\"|$\",\"g\"),u=0,c=\"__p+='\";r.replace(a,(function(e,n,t,a,o){return c+=r.slice(u,o).replace(j,(function(r){return\"\\\\\"+y[r]})),n&&(c+=\"'+\\n((__t=(\"+n+\"))==null?'':_.escape(__t))+\\n'\"),t&&(c+=\"'+\\n((__t=(\"+t+\"))==null?'':__t)+\\n'\"),a&&(c+=\"';\\n\"+a+\"\\n__p+='\"),u=o+e.length,e})),c+=\"';\\n\",n.variable||(c=\"with(obj||{}){\\n\"+c+\"}\\n\"),c=\"var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\\n\"+c+\"return __p;\\n\";try{t=new Function(n.variable||"obj","_",c)}catch(r){throw r.source=c,r}if(e)return t(e,p);var o=function(r){return t.call(this,r,p)};return o.source="function("+(n.variable||"obj")+"){\n"+c+"}",o},e.exports=p},n 478: function _(e,l,b){Object.defineProperty(b,"__esModule",{value:!0}),b.bk_data_table="bk-data-table",b.bk_cell_index="bk-cell-index",b.bk_header_index="bk-header-index",b.bk_cell_editor="bk-cell-editor",b.bk_cell_select="bk-cell-select"},n 479: function _(A,n,o){Object.defineProperty(o,"__esModule",{value:!0});o.default=’\n.bk-root {\n /\nIMPORTANT:\nIn order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.\nNo built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS\nclasses should alter those!\n/\n /\nIMPORTANT:\nIn order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.\nNo built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS\nclasses should alter those!\n/\n /* Menu button /\n / Menu /\n / Menu items /\n / Disabled /\n / Divider /\n / Excluded item from Column Picker will be hidden /\n}\n.bk-root .slick-header.ui-state-default,\n.bk-root .slick-headerrow.ui-state-default,\n.bk-root .slick-footerrow.ui-state-default,\n.bk-root .slick-top-panel-scroller.ui-state-default,\n.bk-root .slick-group-header.ui-state-default {\n width: 100%;\n overflow: auto;\n position: relative;\n border-left: 0px !important;\n}\n.bk-root .slick-header.ui-state-default {\n overflow: inherit;\n}\n.bk-root .slick-header::-webkit-scrollbar,\n.bk-root .slick-headerrow::-webkit-scrollbar,\n.bk-root .slick-footerrow::-webkit-scrollbar {\n display: none;\n}\n.bk-root .slick-header-columns,\n.bk-root .slick-headerrow-columns,\n.bk-root .slick-footerrow-columns,\n.bk-root .slick-group-header-columns {\n position: relative;\n white-space: nowrap;\n cursor: default;\n overflow: hidden;\n}\n.bk-root .slick-header-column.ui-state-default,\n.bk-root .slick-group-header-column.ui-state-default {\n position: relative;\n display: inline-block;\n box-sizing: content-box !important;\n / this here only for Firefox! /\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n height: 16px;\n line-height: 16px;\n margin: 0;\n padding: 4px;\n border-right: 1px solid silver;\n border-left: 0px !important;\n border-top: 0px !important;\n border-bottom: 0px !important;\n float: left;\n}\n.bk-root .slick-footerrow-column.ui-state-default {\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n margin: 0;\n padding: 4px;\n border-right: 1px solid silver;\n border-left: 0px;\n border-top: 0px;\n border-bottom: 0px;\n float: left;\n line-height: 20px;\n vertical-align: middle;\n}\n.bk-root .slick-headerrow-column.ui-state-default,\n.bk-root .slick-footerrow-column.ui-state-default {\n padding: 4px;\n}\n.bk-root .slick-header-column-sorted {\n font-style: italic;\n}\n.bk-root .slick-sort-indicator {\n display: inline-block;\n width: 8px;\n height: 5px;\n margin-left: 4px;\n margin-top: 6px;\n float: left;\n}\n.bk-root .slick-sort-indicator-numbered {\n display: inline-block;\n width: 8px;\n height: 5px;\n margin-left: 4px;\n margin-top: 0;\n line-height: 20px;\n float: left;\n font-family: Arial;\n font-style: normal;\n font-weight: bold;\n color: #6190CD;\n}\n.bk-root .slick-sort-indicator-desc {\n background: url(images/sort-desc.gif);\n}\n.bk-root .slick-sort-indicator-asc {\n background: url(images/sort-asc.gif);\n}\n.bk-root .slick-resizable-handle {\n position: absolute;\n font-size: 0.1px;\n display: block;\n cursor: col-resize;\n width: 9px;\n right: -5px;\n top: 0;\n height: 100%;\n z-index: 1;\n}\n.bk-root .slick-sortable-placeholder {\n background: silver;\n}\n.bk-root .grid-canvas {\n position: relative;\n outline: 0;\n}\n.bk-root .slick-row.ui-widget-content,\n.bk-root .slick-row.ui-state-active {\n position: absolute;\n border: 0px;\n width: 100%;\n}\n.bk-root .slick-cell,\n.bk-root .slick-headerrow-column,\n.bk-root .slick-footerrow-column {\n position: absolute;\n border: 1px solid transparent;\n border-right: 1px dotted silver;\n border-bottom-color: silver;\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n vertical-align: middle;\n z-index: 1;\n padding: 1px 2px 2px 1px;\n margin: 0;\n white-space: nowrap;\n cursor: default;\n}\n.bk-root .slick-cell,\n.bk-root .slick-headerrow-column {\n border-bottom-color: silver;\n}\n.bk-root .slick-footerrow-column {\n border-top-color: silver;\n}\n.bk-root .slick-group-toggle {\n display: inline-block;\n}\n.bk-root .slick-cell.highlighted {\n background: lightskyblue;\n background: rgba(0, 0, 255, 0.2);\n -webkit-transition: all 0.5s;\n -moz-transition: all 0.5s;\n -o-transition: all 0.5s;\n transition: all 0.5s;\n}\n.bk-root .slick-cell.flashing {\n border: 1px solid red !important;\n}\n.bk-root .slick-cell.editable {\n z-index: 11;\n overflow: visible;\n background: white;\n border-color: black;\n border-style: solid;\n}\n.bk-root .slick-cell:focus {\n outline: none;\n}\n.bk-root .slick-reorder-proxy {\n display: inline-block;\n background: blue;\n opacity: 0.15;\n cursor: move;\n}\n.bk-root .slick-reorder-guide {\n display: inline-block;\n height: 2px;\n background: blue;\n opacity: 0.7;\n}\n.bk-root .slick-selection {\n z-index: 10;\n position: absolute;\n border: 2px dashed black;\n}\n.bk-root .slick-pane {\n position: absolute;\n outline: 0;\n overflow: hidden;\n width: 100%;\n}\n.bk-root .slick-pane-header {\n display: block;\n}\n.bk-root .slick-header {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-headerrow {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-top-panel-scroller {\n overflow: hidden;\n position: relative;\n}\n.bk-root .slick-top-panel {\n width: 10000px;\n}\n.bk-root .slick-viewport {\n position: relative;\n outline: 0;\n width: 100%;\n}\n.bk-root .slick-header-columns {\n background: url(\’images/header-columns-bg.gif\’) repeat-x center bottom;\n border-bottom: 1px solid silver;\n}\n.bk-root .slick-header-column {\n background: url(\’images/header-columns-bg.gif\’) repeat-x center bottom;\n border-right: 1px solid silver;\n}\n.bk-root .slick-header-column:hover,\n.bk-root .slick-header-column-active {\n background: white url(\’images/header-columns-over-bg.gif\’) repeat-x center bottom;\n}\n.bk-root .slick-headerrow {\n background: #fafafa;\n}\n.bk-root .slick-headerrow-column {\n background: #fafafa;\n border-bottom: 0;\n height: 100%;\n}\n.bk-root .slick-row.ui-state-active {\n background: #F5F7D7;\n}\n.bk-root .slick-row {\n position: absolute;\n background: white;\n border: 0px;\n line-height: 20px;\n}\n.bk-root .slick-row.selected {\n z-index: 10;\n background: #DFE8F6;\n}\n.bk-root .slick-cell {\n padding-left: 4px;\n padding-right: 4px;\n}\n.bk-root .slick-group {\n border-bottom: 2px solid silver;\n}\n.bk-root .slick-group-toggle {\n width: 9px;\n height: 9px;\n margin-right: 5px;\n}\n.bk-root .slick-group-toggle.expanded {\n background: url(images/collapse.gif) no-repeat center center;\n}\n.bk-root .slick-group-toggle.collapsed {\n background: url(images/expand.gif) no-repeat center center;\n}\n.bk-root .slick-group-totals {\n color: gray;\n background: white;\n}\n.bk-root .slick-group-select-checkbox {\n width: 13px;\n height: 13px;\n margin: 3px 10px 0 0;\n display: inline-block;\n}\n.bk-root .slick-group-select-checkbox.checked {\n background: url(images/GrpCheckboxY.png) no-repeat center center;\n}\n.bk-root .slick-group-select-checkbox.unchecked {\n background: url(images/GrpCheckboxN.png) no-repeat center center;\n}\n.bk-root .slick-cell.selected {\n background-color: beige;\n}\n.bk-root .slick-cell.active {\n border-color: gray;\n border-style: solid;\n}\n.bk-root .slick-sortable-placeholder {\n background: silver !important;\n}\n.bk-root .slick-row.odd {\n background: #fafafa;\n}\n.bk-root .slick-row.ui-state-active {\n background: #F5F7D7;\n}\n.bk-root .slick-row.loading {\n opacity: 0.5;\n}\n.bk-root .slick-cell.invalid {\n border-color: red;\n -moz-animation-duration: 0.2s;\n -webkit-animation-duration: 0.2s;\n -moz-animation-name: slickgrid-invalid-hilite;\n -webkit-animation-name: slickgrid-invalid-hilite;\n}\n@-moz-keyframes slickgrid-invalid-hilite {\n from {\n box-shadow: 0 0 6px red;\n }\n to {\n box-shadow: none;\n }\n}\n@-webkit-keyframes slickgrid-invalid-hilite {\n from {\n box-shadow: 0 0 6px red;\n }\n to {\n box-shadow: none;\n }\n}\n.bk-root .slick-column-name,\n.bk-root .slick-sort-indicator {\n /*\n * This makes all "float:right" elements after it that spill over to the next line\n * display way below the lower boundary of the column thus hiding them.\n /\n display: inline-block;\n float: left;\n margin-bottom: 100px;\n}\n.bk-root .slick-header-button {\n display: inline-block;\n float: right;\n vertical-align: top;\n margin: 1px;\n /*\n * This makes all "float:right" elements after it that spill over to the next line\n * display way below the lower boundary of the column thus hiding them.\n /\n margin-bottom: 100px;\n height: 15px;\n width: 15px;\n background-repeat: no-repeat;\n background-position: center center;\n cursor: pointer;\n}\n.bk-root .slick-header-button-hidden {\n width: 0;\n -webkit-transition: 0.2s width;\n -ms-transition: 0.2s width;\n transition: 0.2s width;\n}\n.bk-root .slick-header-column:hover > .slick-header-button {\n width: 15px;\n}\n.bk-root .slick-header-menubutton {\n position: absolute;\n right: 0;\n top: 0;\n bottom: 0;\n width: 14px;\n background-repeat: no-repeat;\n background-position: left center;\n background-image: url(../images/down.gif);\n cursor: pointer;\n display: none;\n border-left: thin ridge silver;\n}\n.bk-root .slick-header-column:hover > .slick-header-menubutton,\n.bk-root .slick-header-column-active .slick-header-menubutton {\n display: inline-block;\n}\n.bk-root .slick-header-menu {\n position: absolute;\n display: inline-block;\n margin: 0;\n padding: 2px;\n cursor: default;\n}\n.bk-root .slick-header-menuitem {\n list-style: none;\n margin: 0;\n padding: 0;\n cursor: pointer;\n}\n.bk-root .slick-header-menuicon {\n display: inline-block;\n width: 16px;\n height: 16px;\n vertical-align: middle;\n margin-right: 4px;\n background-repeat: no-repeat;\n background-position: center center;\n}\n.bk-root .slick-header-menucontent {\n display: inline-block;\n vertical-align: middle;\n}\n.bk-root .slick-header-menuitem-disabled {\n color: silver;\n}\n.bk-root .slick-header-menuitem.slick-header-menuitem-divider {\n cursor: default;\n border: none;\n overflow: hidden;\n padding: 0;\n height: 1px;\n margin: 8px 2px;\n background-color: #cecece;\n}\n.bk-root .slick-header-menuitem-divider.slick-header-menuitem:hover {\n background-color: #cecece;\n}\n.bk-root .slick-columnpicker {\n border: 1px solid #718BB7;\n background: #f0f0f0;\n padding: 6px;\n -moz-box-shadow: 2px 2px 2px silver;\n -webkit-box-shadow: 2px 2px 2px silver;\n box-shadow: 2px 2px 2px silver;\n min-width: 150px;\n cursor: default;\n position: absolute;\n z-index: 20;\n overflow: auto;\n resize: both;\n}\n.bk-root .slick-columnpicker > .close {\n float: right;\n}\n.bk-root .slick-columnpicker .title {\n font-size: 16px;\n width: 60%;\n border-bottom: solid 1px #d6d6d6;\n margin-bottom: 10px;\n}\n.bk-root .slick-columnpicker li {\n list-style: none;\n margin: 0;\n padding: 0;\n background: none;\n}\n.bk-root .slick-columnpicker input {\n margin: 4px;\n}\n.bk-root .slick-columnpicker li a {\n display: block;\n padding: 4px;\n font-weight: bold;\n}\n.bk-root .slick-columnpicker li a:hover {\n background: white;\n}\n.bk-root .slick-columnpicker-list li.hidden {\n display: none;\n}\n.bk-root .slick-pager {\n width: 100%;\n height: 26px;\n border: 1px solid gray;\n border-top: 0;\n background: url(\’../images/header-columns-bg.gif\’) repeat-x center bottom;\n vertical-align: middle;\n}\n.bk-root .slick-pager .slick-pager-status {\n display: inline-block;\n padding: 6px;\n}\n.bk-root .slick-pager .ui-icon-container {\n display: inline-block;\n margin: 2px;\n border-color: gray;\n}\n.bk-root .slick-pager .slick-pager-nav {\n display: inline-block;\n float: left;\n padding: 2px;\n}\n.bk-root .slick-pager .slick-pager-settings {\n display: block;\n float: right;\n padding: 2px;\n}\n.bk-root .slick-pager .slick-pager-settings * {\n vertical-align: middle;\n}\n.bk-root .slick-pager .slick-pager-settings a {\n padding: 2px;\n text-decoration: underline;\n cursor: pointer;\n}\n.bk-root .slick-header-columns {\n border-bottom: 1px solid silver;\n background-image: none;\n}\n.bk-root .slick-header-column {\n border-right: 1px solid transparent;\n background-image: none;\n}\n.bk-root .slick-header-column:last-of-type {\n border-right-color: transparent;\n}\n.bk-root .slick-header-column:hover,\n.bk-root .slick-header-column-active {\n background-color: #F0F8FF;\n background-image: none;\n}\n.bk-root .slick-group-toggle.expanded {\n background-image: url("data:image/gif;base64,R0lGODlhCQAJAPcAAAFGeoCAgNXz/+v5/+v6/+z5/+36//L7//X8//j9/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACQAJAAAIMwADCBxIUIDBgwIEChgwwECBAgQUFjBAkaJCABgxGlB4AGHCAAIQiBypEEECkScJqgwQEAA7");\n}\n.bk-root .slick-group-toggle.collapsed {\n background-image: url("data:image/gif;base64,R0lGODlhCQAJAPcAAAFGeoCAgNXz/+v5/+v6/+z5/+36//L7//X8//j9/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACQAJAAAIOAADCBxIUIDBgwIEChgwAECBAgQUFjAAQIABAwoBaNSIMYCAAwIqGlSIAEHFkiQTIBCgkqDLAAEBADs=");\n}\n.bk-root .slick-group-select-checkbox.checked {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAIAAACQKrqGAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAEcSURBVChTjdI9S8NQFAbg/raQXVwCRRFE7GK7OXTwD+ikk066VF3a0ja0hQTyQdJrwNq0zrYSQRLEXMSWSlCIb8glqRcFD+9yz3nugXwU4n9XQqMoGjj36uBJsTwuaNo3EwBG4Yy7pe7Gv8YcvhJCGFVsjxsjxujj6OTSGlHv+U2WZUZbPWKOv1ZjT5a7pbIoiptbO5b73mwrjHa1B27l8VlTEIS1damlTnEE+EEN9/P8WrfH81qdAIGeXvTTmzltdCy46sEhxpKUINReZR9NnqZbr9puugxV3NjWh/k74WmmEdWhmUNy2jNmWRc6fZTVADCqao52u+DGWTACYNT3fRxwtatPufTNR4yCIGAUn5hS+vJHhWGY/ANx/A3tvdv+1tZmuwAAAABJRU5ErkJggg==");\n}\n.bk-root .slick-group-select-checkbox.unchecked {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAIAAACQKrqGAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAACXSURBVChT1dIxC4MwEAXg/v8/VOhQVDBNakV0KA6pxS4JhWRSIYPEJxwdDi1de7wleR+3JIf486w0hKCKRpSvvOhZcCmvNQBRuKqdah03U7UjNNH81rOaBYDo8SQaPX8JANFEaLaGBeAPaaY61rGksiN6TmR5H1j9CSoAosYYHLA7vTxYMvVEZa0liif23r93xjm3/oEYF8PiDn/I2FHCAAAAAElFTkSuQmCC");\n}\n.bk-root .slick-sort-indicator-desc {\n background-image: url("data:image/gif;base64,R0lGODlhDQAFAIcAAGGQzUD/QOPu+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAMAAAEALAAAAAANAAUAAAgeAAUAGEgQgIAACBEKLHgwYcKFBh1KFNhQosOKEgMCADs=");\n}\n.bk-root .slick-sort-indicator-asc {\n background-image: url("data:image/gif;base64,R0lGODlhDQAFAIcAAGGQzUD/QOPu+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAMAAAEALAAAAAANAAUAAAgbAAMIDABgoEGDABIeRJhQ4cKGEA8KmEiRosGAADs=");\n}\n.bk-root .slick-header-menubutton {\n background-image: url("data:image/gif;base64,R0lGODlhDgAOAIABADtKYwAAACH5BAEAAAEALAAAAAAOAA4AAAISjI+py+0PHZgUsGobhTn6DxoFADs=");\n}\n.bk-root .slick-pager {\n background-image: none;\n}\n’},n 480: function _(n,o,e){Object.defineProperty(e,"__esModule",{value:!0});e.default=’\n.bk-root .bk-data-table {\n box-sizing: content-box;\n font-size: 11px;\n}\n.bk-root .bk-data-table input[type="checkbox"] {\n margin-left: 4px;\n margin-right: 4px;\n}\n.bk-root .bk-cell-special-defaults {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n}\n.bk-root .bk-cell-select {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n}\n.bk-root .slick-cell.bk-cell-index {\n border-right-color: silver;\n border-right-style: solid;\n background: #f5f5f5;\n text-align: right;\n background: #f0f0f0;\n color: #909090;\n}\n.bk-root .bk-header-index .slick-column-name {\n float: right;\n}\n.bk-root .slick-row.selected .bk-cell-index {\n background-color: transparent;\n}\n.bk-root .slick-row.odd {\n background: #f0f0f0;\n}\n.bk-root .slick-cell {\n padding-left: 4px;\n padding-right: 4px;\n border-right-color: transparent;\n border: 0.25px solid transparent;\n}\n.bk-root .slick-cell .bk {\n line-height: inherit;\n}\n.bk-root .slick-cell.active {\n border-style: dashed;\n}\n.bk-root .slick-cell.selected {\n background-color: #F0F8FF;\n}\n.bk-root .slick-cell.editable {\n padding-left: 0;\n padding-right: 0;\n}\n.bk-root .bk-cell-editor {\n display: contents;\n}\n.bk-root .bk-cell-editor input,\n.bk-root .bk-cell-editor select {\n width: 100%;\n height: 100%;\n border: 0;\n margin: 0;\n padding: 0;\n outline: 0;\n background: transparent;\n vertical-align: baseline;\n}\n.bk-root .bk-cell-editor input {\n padding-left: 4px;\n padding-right: 4px;\n}\n.bk-root .bk-cell-editor-completion {\n font-size: 11px;\n}\n’},n 481: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const r=t(1),a=t(463),{Avg:i,Min:o,Max:g,Sum:n}=a.Data.Aggregators,u=r.__importStar(t(18)),c=t(81);class _ extends c.Model{constructor(t){super(t)}static init_RowAggregator(){this.define({field_:[u.String,""]})}}s.RowAggregator=_,_.__name__="RowAggregator",_.init_RowAggregator();const l=new i;class m extends _{constructor(){super(…arguments),this.key="avg",this.init=l.init,this.accumulate=l.accumulate,this.storeResult=l.storeResult}}s.AvgAggregator=m,m.__name__="AvgAggregator";const h=new o;class A extends _{constructor(){super(…arguments),this.key="min",this.init=h.init,this.accumulate=h.accumulate,this.storeResult=h.storeResult}}s.MinAggregator=A,A.__name__="MinAggregator";const R=new g;class d extends _{constructor(){super(…arguments),this.key="max",this.init=R.init,this.accumulate=R.accumulate,this.storeResult=R.storeResult}}s.MaxAggregator=d,d.__name__="MaxAggregator";const x=new n;class w extends _{constructor(){super(…arguments),this.key="sum",this.init=x.init,this.accumulate=x.accumulate,this.storeResult=x.storeResult}}s.SumAggregator=w,w.__name__="SumAggregator"},n 482: function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t(1).__importStar(t(18)),r=t(72),i=t(463),a=t(456),n=t(81);function l(t,e,s,o,i){const{collapsed:a,level:n,title:l}=i,u=r.span({class:"slick-group-toggle "+(a?"collapsed":"expanded"),style:{"margin-left":15*n+"px"}}),g=r.span({class:"slick-group-title",level:n},l);return`${u.outerHTML}${g.outerHTML}`}function u(t,e){const s=this.getDataItem(e.row);s instanceof i.Group&&t.target.classList.contains("slick-group-toggle")&&(s.collapsed?this.getData().expandGroup(s.groupingKey):this.getData().collapseGroup(s.groupingKey),t.stopImmediatePropagation(),t.preventDefault(),this.invalidate(),this.render())}class g extends n.Model{constructor(t){super(t)}static init_GroupingInfo(){this.define({getter:[o.String,""],aggregators:[o.Array,[]],collapsed:[o.Boolean,!1]})}get comparer(){return(t,e)=>t.value===e.value?0:t.value>e.value?1:-1}}s.GroupingInfo=g,g.__name__="GroupingInfo",g.init_GroupingInfo();class c extends a.TableDataProvider{constructor(t,e,s,o){super(t,e),this.columns=s,this.groupingInfos=[],this.groupingDelimiter=":|:",this.target=o}setGrouping(t){this.groupingInfos=t,this.toggledGroupsByLevel=t.map(()=>({})),this.refresh()}extractGroups(t,e){const s=[],o=new Map,r=e?e.level+1:0,{comparer:a,getter:n}=this.groupingInfos[r];return t.forEach(t=>{const a=this.source.data[n][t];let l=o.get(a);if(!l){const t=e?`${e.groupingKey}${this.groupingDelimiter}${a}`:""+a;l=Object.assign(new i.Group,{value:a,level:r,groupingKey:t}),s.push(l),o.set(a,l)}l.rows.push(t)}),r<this.groupingInfos.length-1&&s.forEach(t=>{t.groups=this.extractGroups(t.rows,t)}),s.sort(a),s}calculateTotals(t,e){const s={avg:{},max:{},min:{},sum:{}},{source:{data:o}}=this,r=Object.keys(o),i=t.rows.map(t=>r.reduce((e,s)=>Object.assign(Object.assign({},e),{[s]:o[s][t]}),{}));return e.forEach(t=>{t.init(),i.forEach(e=>t.accumulate(e)),t.storeResult(s)}),s}addTotals(t,e=0){const{aggregators:s,collapsed:o}=this.groupingInfos[e],r=this.toggledGroupsByLevel[e];t.forEach(t=>{t.groups&&this.addTotals(t.groups,e+1),s.length&&t.rows.length&&(t.totals=this.calculateTotals(t,s)),t.collapsed=o!==r[t.groupingKey],t.title=t.value?""+t.value:""})}flattenedGroupedRows(t,e=0){const s=[];return t.forEach(t=>{if(s.push(t),!t.collapsed){const o=t.groups?this.flattenedGroupedRows(t.groups,e+1):t.rows;s.push(…o)}}),s}refresh(){const t=this.extractGroups([…this.view.indices]),e=this.source.data[this.columns[0].field];t.length&&(this.addTotals(t),this.rows=this.flattenedGroupedRows(t),this.target.data={row_indices:this.rows.map(t=>t instanceof i.Group?t.rows:t),labels:this.rows.map(t=>t instanceof i.Group?t.title:e[t])})}getLength(){return this.rows.length}getItem(t){const e=this.rows[t],{source:{data:s}}=this;return e instanceof i.Group?e:Object.keys(s).reduce((t,o)=>Object.assign(Object.assign({},t),{[o]:s[o][e]}),{[a.DTINDEX_NAME]:e})}getItemMetadata(t){const e=this.rows[t],s=this.columns.slice(1),o=e instanceof i.Group?this.groupingInfos[e.level].aggregators:[];return e instanceof i.Group?{selectable:!1,focusable:!1,cssClasses:"slick-group",columns:[{formatter:l},…s.map((function(t){const{field:e,formatter:s}=t,r=o.find(({field_:t})=>t===e);if(r){const{key:t}=r;return{formatter:(o,r,i,a,n)=>s?s(o,r,n.totals[t][e],a,n):""}}return{}}))]}:{}}collapseGroup(t){const e=t.split(this.groupingDelimiter).length-1;this.toggledGroupsByLevel[e][t]=!this.groupingInfos[e].collapsed,this.refresh()}expandGroup(t){const e=t.split(this.groupingDelimiter).length-1;this.toggledGroupsByLevel[e][t]=this.groupingInfos[e].collapsed,this.refresh()}}s.DataCubeProvider=c,c.__name__="DataCubeProvider";class p extends a.DataTableView{render(){const t={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:!1,autosizeColsMode:this.autosize,multiColumnSort:!1,editable:this.model.editable,autoEdit:this.model.auto_edit,rowHeight:this.model.row_height},e=this.model.columns.map(t=>t.toColumn());var s,o;e[0].formatter=(s=e[0].formatter,o=this.model.grouping.length,(t,e,i,a,n)=>{const l=r.span({class:"slick-group-toggle",style:{"margin-left":15*(o||0)+"px"}}),u=s?s(t,e,i,a,n):""+i;return`${l.outerHTML}${u&&u.replace(/^<div/,"<span").replace(/div>$/,"span>")}`}),delete e[0].editor,this.data=new c(this.model.source,this.model.view,e,this.model.target),this.data.setGrouping(this.model.grouping),this.el.style.width=this.model.width+"px",this.grid=new i.Grid(this.el,this.data,e,t),this.grid.onClick.subscribe(u)}}s.DataCubeView=p,p.__name__="DataCubeView";class h extends a.DataTable{constructor(t){super(t)}static init_DataCube(){this.prototype.default_view=p,this.define({grouping:[o.Array,[]],target:[o.Instance]})}}s.DataCube=h,h.__name__="DataCube",h.init_DataCube()},n }, 453, {"models/widgets/tables/main":453,"models/widgets/tables/index":454,"models/widgets/tables/cell_editors":455,"models/widgets/tables/data_table":456,"models/widgets/widget":472,"models/widgets/tables/table_widget":473,"models/widgets/tables/table_column":474,"models/widgets/tables/cell_formatters":475,"styles/widgets/tables":478,"styles/widgets/slickgrid.css":479,"styles/widgets/tables.css":480,"models/widgets/tables/row_aggregators":481,"models/widgets/tables/data_cube":482}, {});n })nnn / END bokeh-tables.min.js /n },n n function(Bokeh) {n Bokeh.set_log_level("info");n },n n function(Bokeh) {n / BEGIN panel.min.js /n /!n * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributorsn * All rights reserved.n * n * Redistribution and use in source and binary forms, with or without modification,n * are permitted provided that the following conditions are met:n * n * Redistributions of source code must retain the above copyright notice,n * this list of conditions and the following disclaimer.n * n * Redistributions in binary form must reproduce the above copyright notice,n * this list of conditions and the following disclaimer in the documentationn * and/or other materials provided with the distribution.n * n * Neither the name of Anaconda nor the names of any contributorsn * may be used to endorse or promote products derived from this softwaren * without specific prior written permission.n * n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEn * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BEn * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORn * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFn * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSn * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INn * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OFn * THE POSSIBILITY OF SUCH DAMAGE.n /n (function(root, factory) {n factory(root["Bokeh"], undefined);n })(this, function(Bokeh, version) {n var define;n return (function(modules, entry, aliases, externals) {n const bokeh = typeof Bokeh !== "undefined" && (version != null ? Bokeh[version] : Bokeh);n if (bokeh != null) {n return bokeh.register_plugin(modules, entry, aliases);n } else {n throw new Error("Cannot find Bokeh " + version + ". You have to load it prior to loading plugins.");n }n })n ({n "4e90918c0a": function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const s=e("tslib").__importStar(e("c4b9651916"));o.Panel=s;e("@bokehjs/base").register_models(s)},n "c4b9651916": function _(a,e,r){Object.defineProperty(r,"__esModule",{value:!0});const o=a("tslib");var t=a("abb1112c2c");r.AcePlot=t.AcePlot;var c=a("66d52165db");r.Audio=c.Audio;var d=a("0106b0a1bf");r.Card=d.Card;var l=a("684c940c17");r.CommManager=l.CommManager;var v=a("d0d2aafca0");r.DeckGLPlot=v.DeckGLPlot;var b=a("c6decbe3f5");r.ECharts=b.ECharts;var i=a("ed08037ce5");r.HTML=i.HTML;var P=a("cb7ac8d1fa");r.IPyWidget=P.IPyWidget;var f=a("284504a0cf");r.JSON=f.JSON;var n=a("7a99dba4eb");r.FileDownload=n.FileDownload;var S=a("7b859fb3cf");r.KaTeX=S.KaTeX;var g=a("aded270681");r.Location=g.Location;var s=a("0c21036737");r.MathJax=s.MathJax;var y=a("79c41bbf71");r.Player=y.Player;var M=a("47b5ae5c43");r.PlotlyPlot=M.PlotlyPlot;var m=a("765e9cea08");r.Progress=m.Progress;var C=a("ff9dd91f7b");r.SingleSelect=C.SingleSelect;var L=a("38b2bc9574");r.State=L.State;var V=a("294adeb985");r.VegaPlot=V.VegaPlot;var u=a("b0c3e9e9c2");r.Video=u.Video;var _=a("3c7145a2fa");r.VideoStream=_.VideoStream,o.__exportStar(a("c51f25e2a7"),r)},n "abb1112c2c": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),n=e("@bokehjs/core/dom"),a=e("7116a7a602");class d extends a.PanelHTMLBoxView{initialize(){super.initialize(),this._ace=window.ace,this._container=n.div({id:"_"+Math.random().toString(36).substr(2,9),style:{width:"100%",height:"100%"}})}connect_signals(){super.connect_signals(),this.connect(this.model.properties.code.change,()=>this._update_code_from_model()),this.connect(this.model.properties.theme.change,()=>this._update_theme()),this.connect(this.model.properties.language.change,()=>this._update_language()),this.connect(this.model.properties.filename.change,()=>this._update_filename()),this.connect(this.model.properties.print_margin.change,()=>this._update_print_margin()),this.connect(this.model.properties.annotations.change,()=>this._add_annotations()),this.connect(this.model.properties.readonly.change,()=>{this._editor.setReadOnly(this.model.readonly)})}render(){super.render(),this._container!==this.el.childNodes[0]&&this.el.appendChild(this._container),this._container.textContent=this.model.code,this._editor=this._ace.edit(this._container.id),this._langTools=this._ace.require("ace/ext/language_tools"),this._modelist=this._ace.require("ace/ext/modelist"),this._editor.setOptions({enableBasicAutocompletion:!0,enableSnippets:!0,fontFamily:"monospace"}),this._update_theme(),this._update_filename(),this._update_language(),this._editor.setReadOnly(this.model.readonly),this._editor.setShowPrintMargin(this.model.print_margin),this._editor.on("change",()=>this._update_code_from_editor())}_update_code_from_model(){this._editor&&this._editor.getValue()!=this.model.code&&this._editor.setValue(this.model.code)}_update_print_margin(){this._editor.setShowPrintMargin(this.model.print_margin)}_update_code_from_editor(){this._editor.getValue()!=this.model.code&&(this.model.code=this._editor.getValue())}_update_theme(){this._editor.setTheme("ace/theme/"+this.model.theme)}_update_filename(){if(this.model.filename){const e=this._modelist.getModeForPath(this.model.filename).mode;this.model.language=e.slice(9)}}_update_language(){null!=this.model.language&&this._editor.session.setMode("ace/mode/"+this.model.language)}_add_annotations(){this._editor.session.setAnnotations(this.model.annotations)}after_layout(){super.after_layout(),this._editor.resize()}}i.AcePlotView=d,d.__name__="AcePlotView";class h extends s.HTMLBox{constructor(e){super(e)}static init_AcePlot(){this.prototype.default_view=d,this.define({code:[o.String],filename:[o.String],language:[o.String],theme:[o.String,"chrome"],annotations:[o.Array,[]],readonly:[o.Boolean,!1],print_margin:[o.Boolean,!1]}),this.override({height:300,width:300})}}i.AcePlot=h,h.__name__="AcePlot",h.__module__="panel.models.ace",h.init_AcePlot()},n "7116a7a602": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const s=e("@bokehjs/core/layout/html"),h=e("@bokehjs/core/layout/types"),o=e("@bokehjs/core/dom"),n=e("@bokehjs/models/widgets/markup"),_=e("@bokehjs/models/layouts/html_box");function a(e,i){let t=null!=i.width?"fixed":"fit",s=null!=i.height?"fixed":"fit";const{sizing_mode:h}=i;if(null!=h)if("fixed"==h)t=s="fixed";else if("stretch_both"==h)t=s="max";else if("stretch_width"==h)t="max";else if("stretch_height"==h)s="max";else switch(h){case"scale_width":t="max",s="min";break;case"scale_height":t="min",s="max";break;case"scale_both":t="max",s="max";break;default:throw new Error("unreachable")}"fixed"==t&&i.width?e.style.width=i.width+"px":"max"==t&&(e.style.width="100%"),"fixed"==s&&i.height?e.style.height=i.height+"px":"max"==s&&(e.style.height="100%")}t.set_size=a;class d extends s.VariadicBox{constructor(e,i,t){super(e),this.el=e,this.sizing_mode=i,this.changed=t,this._cache=new Map,this._cache_count=new Map}_measure(e){const i=[e.width,e.height,this.sizing_mode].toString(),t=this.changed&&"fixed"!=this.sizing_mode&&null!=this.sizing_mode?1:0,s=this._cache.get(i),n=this._cache_count.get(i);if(null!=s&&null!=n&&n>=t)return this._cache_count.set(i,n+1),s;const _=new h.Sizeable(e).bounded_to(this.sizing.size),a=o.sized(this.el,_,()=>{const e=new h.Sizeable(o.content_size(this.el)),{border:i,padding:t}=o.extents(this.el);return e.grow_by(i).grow_by(t).map(Math.ceil)});return this._cache.set(i,a),this._cache_count.set(i,0),a}invalidate_cache(){}}t.CachedVariadicBox=d,d.__name__="CachedVariadicBox";class l extends n.MarkupView{_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new d(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}render(){super.render(),a(this.markup_el,this.model)}}t.PanelMarkupView=l,l.__name__="PanelMarkupView";class c extends _.HTMLBoxView{_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new d(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}render(){super.render(),a(this.el,this.model)}}t.PanelHTMLBoxView=c,c.__name__="PanelHTMLBoxView"},n "66d52165db": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),l=e("7116a7a602");class d extends l.PanelHTMLBoxView{initialize(){super.initialize(),this._blocked=!1,this._setting=!1,this._time=Date.now()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.loop.change,()=>this.set_loop()),this.connect(this.model.properties.paused.change,()=>this.set_paused()),this.connect(this.model.properties.time.change,()=>this.set_time()),this.connect(this.model.properties.value.change,()=>this.set_value()),this.connect(this.model.properties.volume.change,()=>this.set_volume())}render(){super.render(),this.audioEl=document.createElement("audio"),this.audioEl.controls=!0,this.audioEl.src=this.model.value,this.audioEl.currentTime=this.model.time,this.audioEl.loop=this.model.loop,null!=this.model.volume?this.audioEl.volume=this.model.volume/100:this.model.volume=100*this.audioEl.volume,this.audioEl.onpause=()=>this.model.paused=!0,this.audioEl.onplay=()=>this.model.paused=!1,this.audioEl.ontimeupdate=()=>this.update_time(this),this.audioEl.onvolumechange=()=>this.update_volume(this),this.el.appendChild(this.audioEl),this.model.paused||this.audioEl.play()}update_time(e){e._setting?e._setting=!1:Date.now()-e._time<e.model.throttle||(e._blocked=!0,e.model.time=e.audioEl.currentTime,e._time=Date.now())}update_volume(e){e._setting?e._setting=!1:(e._blocked=!0,e.model.volume=100*e.audioEl.volume)}set_loop(){this.audioEl.loop=this.model.loop}set_paused(){!this.audioEl.paused&&this.model.paused&&this.audioEl.pause(),this.audioEl.paused&&!this.model.paused&&this.audioEl.play()}set_volume(){this._blocked?this._blocked=!1:(this._setting=!0,null!=this.model.volume&&(this.audioEl.volume=this.model.volume/100))}set_time(){this._blocked?this._blocked=!1:(this._setting=!0,this.audioEl.currentTime=this.model.time)}set_value(){this.audioEl.src=this.model.value}}i.AudioView=d,d.__name__="AudioView";class u extends s.HTMLBox{constructor(e){super(e)}static init_Audio(){this.prototype.default_view=d,this.define({loop:[o.Boolean,!1],paused:[o.Boolean,!0],time:[o.Number,0],throttle:[o.Number,250],value:[o.Any,""],volume:[o.Number,null]})}}i.Audio=u,u.__name__="Audio",u.__module__="panel.models.widgets",u.init_Audio()},n "0106b0a1bf": function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const l=e("tslib"),o=e("@bokehjs/models/layouts/column"),a=l.__importStar(e("@bokehjs/core/dom")),i=e("@bokehjs/core/dom"),n=e("@bokehjs/core/layout/grid"),r=l.__importStar(e("@bokehjs/core/properties"));class c extends n.Column{constructor(e,s=!1){super(e),this.collapsed=s}_measure_totals(e,s){const t=this.collapsed?e.slice(0,1):e,l=t.length-1;return this.collapsed||(t[l]=t[l]+5),super._measure_totals(t,s)}}t.CollapseableColumnLayout=c,c.__name__="CollapseableColumnLayout";class d extends o.ColumnView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.collapsed.change,()=>this._collapse());const{active_header_background:e,header_background:s,header_color:t}=this.model.properties;this.on_change([e,s,t],()=>this.render())}_update_layout(){const e=this.child_views.map(e=>e.layout);this.layout=new c(e,this.model.collapsed),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0];const s=this.box_sizing();this.model.collapsed&&(s.height=void 0),this.layout.set_sizing(s)}render(){i.empty(this.el);const{background:e,button_css_classes:s,header_color:t,header_tag:l,header_css_classes:o}=this.model;this.el.style.backgroundColor=null!=e?e:"",i.classes(this.el).clear().add(…this.css_classes());let n=this.model.header_background;this.model.collapsed||null==this.model.active_header_background||(n=this.model.active_header_background);const r=this.child_views[0];let c;if(this.model.collapsible){this.button_el=a.createElement("button",{type:"button",class:o}),this.button_el.style.backgroundColor=null!=n?n:"",this.button_el.appendChild(r.el);const e=a.createElement("p",{class:s});e.innerHTML=this.model.collapsed?"+":"−",this.button_el.appendChild(e),this.button_el.onclick=()=>this._toggle_button(),c=this.button_el}else c=a.createElement(l,{class:o}),c.style.backgroundColor=null!=n?n:"",c.appendChild(r.el);c.style.color=null!=t?t:"",this.el.appendChild(c),r.render();for(const e of this.child_views.slice(1))this.model.collapsed||this.el.appendChild(e.el),e.render()}_toggle_button(){this.model.collapsed=!this.model.collapsed}_collapse(){this.invalidate_render(),this.resize_layout()}_createElement(){return a.createElement(this.model.tag,{class:this.css_classes()})}}t.CardView=d,d.__name__="CardView";class h extends o.Column{constructor(e){super(e)}static init_Card(){this.prototype.default_view=d,this.define({active_header_background:[r.String,null],button_css_classes:[r.Array,[]],collapsed:[r.Boolean,!0],collapsible:[r.Boolean,!0],header_background:[r.String,null],header_color:[r.String,null],header_css_classes:[r.Array,[]],header_tag:[r.String,"div"],tag:[r.String,"div"]})}}t.Card=h,h.__name__="Card",h.__module__="panel.models.layout",h.init_Card()},n "684c940c17": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),i=e("@bokehjs/document"),s=e("@bokehjs/core/view"),c=e("@bokehjs/model"),l=e("@bokehjs/protocol/message"),_=e("@bokehjs/protocol/receiver");class r extends s.View{renderTo(){}}n.CommManagerView=r,r.__name__="CommManagerView";class a extends c.Model{constructor(e){super(e),this._document_listener=e=>this._document_changed(e),this._receiver=new _.Receiver,this._event_buffer=[],this._blocked=!1,this._timeout=Date.now(),null!=window.PyViz&&window.PyViz.comm_manager?(this.ns=window.PyViz,this.ns.comm_manager.register_target(this.plot_id,this.comm_id,e=>this.msg_handler(e)),this._client_comm=this.ns.comm_manager.get_client_comm(this.plot_id,this.client_comm_id,e=>this.on_ack(e))):console.log("Could not find comm manager on window.PyViz, ensure the extension is loaded.")}_doc_attached(){super._doc_attached(),null!=this.document&&this.document.on_change(this._document_listener)}_document_changed(e){e.setter_id!==this.id&&(e instanceof i.ModelChangedEvent&&!(e.attr in e.model.serializable_attributes())||(this._event_buffer.push(e),(!this._blocked||Date.now()>this._timeout)&&(setTimeout(()=>this.process_events(),this.debounce),this._blocked=!0,this._timeout=Date.now()+this.timeout)))}process_events(){if(null==this.document||null==this._client_comm)return;const e=this.document.create_json_patch(this._event_buffer);this._event_buffer=[];const t=l.Message.create("PATCH-DOC",{},e);this._client_comm.send(t)}on_ack(e){const t=e.metadata;this._event_buffer.length?(this._blocked=!0,this._timeout=Date.now()+this.timeout,this.process_events()):this._blocked=!1,"Ready"==t.msg_type&&t.content?console.log("Python callback returned following output:",t.content):"Error"==t.msg_type&&console.log("Python failed with the following traceback:",t.traceback)}msg_handler(e){const t=e.metadata,n=e.buffers,o=e.content.data,i=this.plot_id;if("Ready"==t.msg_type)t.content?console.log("Python callback returned following output:",t.content):"Error"==t.msg_type&&console.log("Python failed with the following traceback:",t.traceback);else if(null!=i){let e=null;if(i in this.ns.plot_index&&null!=this.ns.plot_index[i]?e=this.ns.plot_index[i]:void 0!==window.Bokeh&&i in window.Bokeh.index&&(e=window.Bokeh.index[i]),null==e)return;null!=n&&n.length>0?this._receiver.consume(n[0].buffer):this._receiver.consume(o);const t=this._receiver.message;null!=t&&Object.keys(t.content).length>0&&null!=this.document&&this.document.apply_json_patch(t.content,t.buffers,this.id)}}static init_CommManager(){this.prototype.default_view=r,this.define({plot_id:[o.String,null],comm_id:[o.String,null],client_comm_id:[o.String,null],timeout:[o.Number,5e3],debounce:[o.Number,50]})}}n.CommManager=a,a.__name__="CommManager",a.__module__="panel.models.comm_manager",a.init_CommManager()},n "d0d2aafca0": function _(e,t,o){Object.defineProperty(o,"__esModule",{value:!0});const i=e("tslib"),n=e("@bokehjs/core/dom"),a=i.__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),c=e("7116a7a602"),r=e("064eac2866"),d=i.__importDefault(e("093eb75864"));function l(){const e={},t=window.deck,o=Object.keys(t).filter(e=>e.charAt(0)===e.charAt(0).toUpperCase());for(const i of o)e[i]=t[i];return e}class _ extends c.PanelHTMLBoxView{connect_signals(){super.connect_signals();const{data:e,mapbox_api_key:t,tooltip:o,layers:i,initialViewState:n,data_sources:a}=this.model.properties;this.on_change([t,o],()=>this.render()),this.on_change([e,n],()=>this.updateDeck()),this.on_change([i],()=>this._update_layers()),this.on_change([a],()=>this._connect_sources(!0)),this._layer_map={},this._connected=[],this._connect_sources()}_update_layers(){this._layer_map={},this._update_data(!0)}_connect_sources(e=!1){for(const e of this.model.data_sources)this._connected.indexOf(e)<0&&(this.connect(e.properties.data.change,()=>this._update_data(!0)),this._connected.push(e));this._update_data(e)}initialize(){if(super.initialize(),window.deck.JSONConverter){const{CSVLoader:e,Tile3DLoader:t}=window.loaders;window.loaders.registerLoaders([t,e]);const o={classes:l(),enumerations:{COORDINATE_SYSTEM:window.deck.COORDINATE_SYSTEM,GL:d.default},constants:{Tile3DLoader:t}};this.jsonConverter=new window.deck.JSONConverter({configuration:o})}}_update_data(e=!0){let t=0;for(const e of this.model.layers){let o;if(t+=1,t-1 in this._layer_map)o=this.model.data_sources[this._layer_map[t-1]];else{if("number"!=typeof e.data)continue;this._layer_map[t-1]=e.data,o=this.model.data_sources[e.data]}const i=[],n=o.columns();for(let e=0;e<o.get_length();e++){const t={};for(const i of n){let n=o.get_array(i);const a=null==n[0].shape?null:n[0].shape;null!=a&&a.length>1&&"number"==typeof a[0]?t[i]=n.slice(e*a[1],e*a[1]+a[1]):t[i]=n[e]}i.push(t)}e.data=i}e&&this.updateDeck()}_on_click_event(e){const t={coordinate:e.coordinate,lngLat:e.lngLat,index:e.index};this.model.clickState=t}_on_hover_event(e){const t={coordinate:e.coordinate,lngLat:e.lngLat,index:e.index};this.model.hoverState=t}_on_viewState_event(e){this.model.viewState=e.viewState}getData(){return Object.assign(Object.assign({},this.model.data),{layers:this.model.layers,initialViewState:this.model.initialViewState,onViewStateChange:e=>this._on_viewState_event(e),onClick:e=>this._on_click_event(e),onHover:e=>this._on_hover_event(e)})}updateDeck(){if(!this.deckGL)return void this.render();const e=this.getData();if(window.deck.updateDeck)window.deck.updateDeck(e,this.deckGL);else{const t=this.jsonConverter.convert(e);this.deckGL.setProps(t)}}createDeck({mapboxApiKey:e,container:t,jsonInput:o,tooltip:i}){let n;try{const a=this.jsonConverter.convert(o),s=r.makeTooltip(i);n=new window.deck.DeckGL(Object.assign(Object.assign({},a),{map:window.mapboxgl,mapboxApiAccessToken:e,container:t,getTooltip:s}))}catch(e){console.error(e)}return n}render(){super.render();const e=n.div({class:"deckgl"});c.set_size(e,this.model);const t=this.model.mapbox_api_key,o=this.model.tooltip,i=this.getData();window.deck.createDeck?this.deckGL=window.deck.createDeck({mapboxApiKey:t,container:e,jsonInput:i,tooltip:o}):this.deckGL=this.createDeck({mapboxApiKey:t,container:e,jsonInput:i,tooltip:o}),this.el.appendChild(e)}}o.DeckGLPlotView=_,_.__name__="DeckGLPlotView";class h extends s.HTMLBox{constructor(e){super(e)}static init_DeckGLPlot(){this.prototype.default_view=_,this.define({data:[a.Any],data_sources:[a.Array,[]],clickState:[a.Any],hoverState:[a.Any],initialViewState:[a.Any],layers:[a.Array,[]],mapbox_api_key:[a.String],tooltip:[a.Any],viewState:[a.Any]}),this.override({height:400,width:600})}}o.DeckGLPlot=h,h.__name__="DeckGLPlot",h.__module__="panel.models.deckgl",h.init_DeckGLPlot()},n "064eac2866": function _(e,t,n){n /n This file was adapted from https://github.com/uber/deck.gl/ the LICENSEn below is preserved to comply with the original license.n n Copyright (c) 2015 - 2017 Uber Technologies, Inc.n n Permission is hereby granted, free of charge, to any person obtaining a copyn of this software and associated documentation files (the "Software"), to dealn in the Software without restriction, including without limitation the rightsn to use, copy, modify, merge, publish, distribute, sublicense, and/or selln copies of the Software, and to permit persons to whom the Software isn furnished to do so, subject to the following conditions:n n The above copyright notice and this permission notice shall be included inn all copies or substantial portions of the Software.n n THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORn IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEn AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERn LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS INn THE SOFTWARE.n /n let i,l;Object.defineProperty(n,"__esModule",{value:!0});const o={fontFamily:’"Helvetica Neue", Helvetica, Arial, sans-serif’,display:"flex",flex:"wrap",maxWidth:"500px",flexDirection:"column",zIndex:2};function r(){return document.createElement("div")}function s(e){if(!e.picked)return null;if(e.object===i)return l;const t={html:a(e.object),style:o};return l=t,i=e.object,t}n.getTooltipDefault=s;const c=new Set(["position","index"]);function a(e){const t=r();for(const n in e){if(c.has(n))continue;const i=r();i.className="header",i.textContent=n;const l=r();l.className="value",l.textContent=u(e[n]);const o=r();f(o,i,l),o.appendChild(i),o.appendChild(l),t.appendChild(o)}return t.innerHTML}function f(e,t,n){Object.assign(t.style,{fontWeight:700,marginRight:"10px",flex:"1 1 0%"}),Object.assign(n.style,{flex:"none",maxWidth:"250px",overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"}),Object.assign(e.style,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"stretch"})}function u(e){let t;if(Array.isArray(e)&&e.length>4)t=`Array<${e.length}>`;else if("string"==typeof e)t=e;else if("number"==typeof e)t=String(e);else try{t=JSON.stringify(e)}catch(e){t="<Non-Serializable Object>"}return t.length>50&&(t=t.slice(0,50)),t}function p(e,t){let n=e;for(const e in t)n=n.replace(`{${e}}`,t[e]);return n}n.tabularize=a,n.toText=u,n.substituteIn=p,n.makeTooltip=function(e){return e?e.html||e.text?t=>{if(!t.picked)return null;const n={style:e.style||o};return e.html?n.html=p(e.html,t.object):n.text=p(e.text,t.object),n}:s:null}},n "093eb75864": function _(E,_,R){_.exports={DEPTH_BUFFER_BIT:256,STENCIL_BUFFER_BIT:1024,COLOR_BUFFER_BIT:16384,POINTS:0,LINES:1,LINE_LOOP:2,LINE_STRIP:3,TRIANGLES:4,TRIANGLE_STRIP:5,TRIANGLE_FAN:6,ZERO:0,ONE:1,SRC_COLOR:768,ONE_MINUS_SRC_COLOR:769,SRC_ALPHA:770,ONE_MINUS_SRC_ALPHA:771,DST_ALPHA:772,ONE_MINUS_DST_ALPHA:773,DST_COLOR:774,ONE_MINUS_DST_COLOR:775,SRC_ALPHA_SATURATE:776,CONSTANT_COLOR:32769,ONE_MINUS_CONSTANT_COLOR:32770,CONSTANT_ALPHA:32771,ONE_MINUS_CONSTANT_ALPHA:32772,FUNC_ADD:32774,FUNC_SUBTRACT:32778,FUNC_REVERSE_SUBTRACT:32779,BLEND_EQUATION:32777,BLEND_EQUATION_RGB:32777,BLEND_EQUATION_ALPHA:34877,BLEND_DST_RGB:32968,BLEND_SRC_RGB:32969,BLEND_DST_ALPHA:32970,BLEND_SRC_ALPHA:32971,BLEND_COLOR:32773,ARRAY_BUFFER_BINDING:34964,ELEMENT_ARRAY_BUFFER_BINDING:34965,LINE_WIDTH:2849,ALIASED_POINT_SIZE_RANGE:33901,ALIASED_LINE_WIDTH_RANGE:33902,CULL_FACE_MODE:2885,FRONT_FACE:2886,DEPTH_RANGE:2928,DEPTH_WRITEMASK:2930,DEPTH_CLEAR_VALUE:2931,DEPTH_FUNC:2932,STENCIL_CLEAR_VALUE:2961,STENCIL_FUNC:2962,STENCIL_FAIL:2964,STENCIL_PASS_DEPTH_FAIL:2965,STENCIL_PASS_DEPTH_PASS:2966,STENCIL_REF:2967,STENCIL_VALUE_MASK:2963,STENCIL_WRITEMASK:2968,STENCIL_BACK_FUNC:34816,STENCIL_BACK_FAIL:34817,STENCIL_BACK_PASS_DEPTH_FAIL:34818,STENCIL_BACK_PASS_DEPTH_PASS:34819,STENCIL_BACK_REF:36003,STENCIL_BACK_VALUE_MASK:36004,STENCIL_BACK_WRITEMASK:36005,VIEWPORT:2978,SCISSOR_BOX:3088,COLOR_CLEAR_VALUE:3106,COLOR_WRITEMASK:3107,UNPACK_ALIGNMENT:3317,PACK_ALIGNMENT:3333,MAX_TEXTURE_SIZE:3379,MAX_VIEWPORT_DIMS:3386,SUBPIXEL_BITS:3408,RED_BITS:3410,GREEN_BITS:3411,BLUE_BITS:3412,ALPHA_BITS:3413,DEPTH_BITS:3414,STENCIL_BITS:3415,POLYGON_OFFSET_UNITS:10752,POLYGON_OFFSET_FACTOR:32824,TEXTURE_BINDING_2D:32873,SAMPLE_BUFFERS:32936,SAMPLES:32937,SAMPLE_COVERAGE_VALUE:32938,SAMPLE_COVERAGE_INVERT:32939,COMPRESSED_TEXTURE_FORMATS:34467,VENDOR:7936,RENDERER:7937,VERSION:7938,IMPLEMENTATION_COLOR_READ_TYPE:35738,IMPLEMENTATION_COLOR_READ_FORMAT:35739,BROWSER_DEFAULT_WEBGL:37444,STATIC_DRAW:35044,STREAM_DRAW:35040,DYNAMIC_DRAW:35048,ARRAY_BUFFER:34962,ELEMENT_ARRAY_BUFFER:34963,BUFFER_SIZE:34660,BUFFER_USAGE:34661,CURRENT_VERTEX_ATTRIB:34342,VERTEX_ATTRIB_ARRAY_ENABLED:34338,VERTEX_ATTRIB_ARRAY_SIZE:34339,VERTEX_ATTRIB_ARRAY_STRIDE:34340,VERTEX_ATTRIB_ARRAY_TYPE:34341,VERTEX_ATTRIB_ARRAY_NORMALIZED:34922,VERTEX_ATTRIB_ARRAY_POINTER:34373,VERTEX_ATTRIB_ARRAY_BUFFER_BINDING:34975,CULL_FACE:2884,FRONT:1028,BACK:1029,FRONT_AND_BACK:1032,BLEND:3042,DEPTH_TEST:2929,DITHER:3024,POLYGON_OFFSET_FILL:32823,SAMPLE_ALPHA_TO_COVERAGE:32926,SAMPLE_COVERAGE:32928,SCISSOR_TEST:3089,STENCIL_TEST:2960,NO_ERROR:0,INVALID_ENUM:1280,INVALID_VALUE:1281,INVALID_OPERATION:1282,OUT_OF_MEMORY:1285,CONTEXT_LOST_WEBGL:37442,CW:2304,CCW:2305,DONT_CARE:4352,FASTEST:4353,NICEST:4354,GENERATE_MIPMAP_HINT:33170,BYTE:5120,UNSIGNED_BYTE:5121,SHORT:5122,UNSIGNED_SHORT:5123,INT:5124,UNSIGNED_INT:5125,FLOAT:5126,DOUBLE:5130,DEPTH_COMPONENT:6402,ALPHA:6406,RGB:6407,RGBA:6408,LUMINANCE:6409,LUMINANCE_ALPHA:6410,UNSIGNED_SHORT_4_4_4_4:32819,UNSIGNED_SHORT_5_5_5_1:32820,UNSIGNED_SHORT_5_6_5:33635,FRAGMENT_SHADER:35632,VERTEX_SHADER:35633,COMPILE_STATUS:35713,DELETE_STATUS:35712,LINK_STATUS:35714,VALIDATE_STATUS:35715,ATTACHED_SHADERS:35717,ACTIVE_ATTRIBUTES:35721,ACTIVE_UNIFORMS:35718,MAX_VERTEX_ATTRIBS:34921,MAX_VERTEX_UNIFORM_VECTORS:36347,MAX_VARYING_VECTORS:36348,MAX_COMBINED_TEXTURE_IMAGE_UNITS:35661,MAX_VERTEX_TEXTURE_IMAGE_UNITS:35660,MAX_TEXTURE_IMAGE_UNITS:34930,MAX_FRAGMENT_UNIFORM_VECTORS:36349,SHADER_TYPE:35663,SHADING_LANGUAGE_VERSION:35724,CURRENT_PROGRAM:35725,NEVER:512,ALWAYS:519,LESS:513,EQUAL:514,LEQUAL:515,GREATER:516,GEQUAL:518,NOTEQUAL:517,KEEP:7680,REPLACE:7681,INCR:7682,DECR:7683,INVERT:5386,INCR_WRAP:34055,DECR_WRAP:34056,NEAREST:9728,LINEAR:9729,NEAREST_MIPMAP_NEAREST:9984,LINEAR_MIPMAP_NEAREST:9985,NEAREST_MIPMAP_LINEAR:9986,LINEAR_MIPMAP_LINEAR:9987,TEXTURE_MAG_FILTER:10240,TEXTURE_MIN_FILTER:10241,TEXTURE_WRAP_S:10242,TEXTURE_WRAP_T:10243,TEXTURE_2D:3553,TEXTURE:5890,TEXTURE_CUBE_MAP:34067,TEXTURE_BINDING_CUBE_MAP:34068,TEXTURE_CUBE_MAP_POSITIVE_X:34069,TEXTURE_CUBE_MAP_NEGATIVE_X:34070,TEXTURE_CUBE_MAP_POSITIVE_Y:34071,TEXTURE_CUBE_MAP_NEGATIVE_Y:34072,TEXTURE_CUBE_MAP_POSITIVE_Z:34073,TEXTURE_CUBE_MAP_NEGATIVE_Z:34074,MAX_CUBE_MAP_TEXTURE_SIZE:34076,TEXTURE0:33984,ACTIVE_TEXTURE:34016,REPEAT:10497,CLAMP_TO_EDGE:33071,MIRRORED_REPEAT:33648,TEXTURE_WIDTH:4096,TEXTURE_HEIGHT:4097,FLOAT_VEC2:35664,FLOAT_VEC3:35665,FLOAT_VEC4:35666,INT_VEC2:35667,INT_VEC3:35668,INT_VEC4:35669,BOOL:35670,BOOL_VEC2:35671,BOOL_VEC3:35672,BOOL_VEC4:35673,FLOAT_MAT2:35674,FLOAT_MAT3:35675,FLOAT_MAT4:35676,SAMPLER_2D:35678,SAMPLER_CUBE:35680,LOW_FLOAT:36336,MEDIUM_FLOAT:36337,HIGH_FLOAT:36338,LOW_INT:36339,MEDIUM_INT:36340,HIGH_INT:36341,FRAMEBUFFER:36160,RENDERBUFFER:36161,RGBA4:32854,RGB5_A1:32855,RGB565:36194,DEPTH_COMPONENT16:33189,STENCIL_INDEX:6401,STENCIL_INDEX8:36168,DEPTH_STENCIL:34041,RENDERBUFFER_WIDTH:36162,RENDERBUFFER_HEIGHT:36163,RENDERBUFFER_INTERNAL_FORMAT:36164,RENDERBUFFER_RED_SIZE:36176,RENDERBUFFER_GREEN_SIZE:36177,RENDERBUFFER_BLUE_SIZE:36178,RENDERBUFFER_ALPHA_SIZE:36179,RENDERBUFFER_DEPTH_SIZE:36180,RENDERBUFFER_STENCIL_SIZE:36181,FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:36048,FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:36049,FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL:36050,FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE:36051,COLOR_ATTACHMENT0:36064,DEPTH_ATTACHMENT:36096,STENCIL_ATTACHMENT:36128,DEPTH_STENCIL_ATTACHMENT:33306,NONE:0,FRAMEBUFFER_COMPLETE:36053,FRAMEBUFFER_INCOMPLETE_ATTACHMENT:36054,FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT:36055,FRAMEBUFFER_INCOMPLETE_DIMENSIONS:36057,FRAMEBUFFER_UNSUPPORTED:36061,FRAMEBUFFER_BINDING:36006,RENDERBUFFER_BINDING:36007,READ_FRAMEBUFFER:36008,DRAW_FRAMEBUFFER:36009,MAX_RENDERBUFFER_SIZE:34024,INVALID_FRAMEBUFFER_OPERATION:1286,UNPACK_FLIP_Y_WEBGL:37440,UNPACK_PREMULTIPLY_ALPHA_WEBGL:37441,UNPACK_COLORSPACE_CONVERSION_WEBGL:37443,READ_BUFFER:3074,UNPACK_ROW_LENGTH:3314,UNPACK_SKIP_ROWS:3315,UNPACK_SKIP_PIXELS:3316,PACK_ROW_LENGTH:3330,PACK_SKIP_ROWS:3331,PACK_SKIP_PIXELS:3332,TEXTURE_BINDING_3D:32874,UNPACK_SKIP_IMAGES:32877,UNPACK_IMAGE_HEIGHT:32878,MAX_3D_TEXTURE_SIZE:32883,MAX_ELEMENTS_VERTICES:33e3,MAX_ELEMENTS_INDICES:33001,MAX_TEXTURE_LOD_BIAS:34045,MAX_FRAGMENT_UNIFORM_COMPONENTS:35657,MAX_VERTEX_UNIFORM_COMPONENTS:35658,MAX_ARRAY_TEXTURE_LAYERS:35071,MIN_PROGRAM_TEXEL_OFFSET:35076,MAX_PROGRAM_TEXEL_OFFSET:35077,MAX_VARYING_COMPONENTS:35659,FRAGMENT_SHADER_DERIVATIVE_HINT:35723,RASTERIZER_DISCARD:35977,VERTEX_ARRAY_BINDING:34229,MAX_VERTEX_OUTPUT_COMPONENTS:37154,MAX_FRAGMENT_INPUT_COMPONENTS:37157,MAX_SERVER_WAIT_TIMEOUT:37137,MAX_ELEMENT_INDEX:36203,RED:6403,RGB8:32849,RGBA8:32856,RGB10_A2:32857,TEXTURE_3D:32879,TEXTURE_WRAP_R:32882,TEXTURE_MIN_LOD:33082,TEXTURE_MAX_LOD:33083,TEXTURE_BASE_LEVEL:33084,TEXTURE_MAX_LEVEL:33085,TEXTURE_COMPARE_MODE:34892,TEXTURE_COMPARE_FUNC:34893,SRGB:35904,SRGB8:35905,SRGB8_ALPHA8:35907,COMPARE_REF_TO_TEXTURE:34894,RGBA32F:34836,RGB32F:34837,RGBA16F:34842,RGB16F:34843,TEXTURE_2D_ARRAY:35866,TEXTURE_BINDING_2D_ARRAY:35869,R11F_G11F_B10F:35898,RGB9_E5:35901,RGBA32UI:36208,RGB32UI:36209,RGBA16UI:36214,RGB16UI:36215,RGBA8UI:36220,RGB8UI:36221,RGBA32I:36226,RGB32I:36227,RGBA16I:36232,RGB16I:36233,RGBA8I:36238,RGB8I:36239,RED_INTEGER:36244,RGB_INTEGER:36248,RGBA_INTEGER:36249,R8:33321,RG8:33323,R16F:33325,R32F:33326,RG16F:33327,RG32F:33328,R8I:33329,R8UI:33330,R16I:33331,R16UI:33332,R32I:33333,R32UI:33334,RG8I:33335,RG8UI:33336,RG16I:33337,RG16UI:33338,RG32I:33339,RG32UI:33340,R8_SNORM:36756,RG8_SNORM:36757,RGB8_SNORM:36758,RGBA8_SNORM:36759,RGB10_A2UI:36975,TEXTURE_IMMUTABLE_FORMAT:37167,TEXTURE_IMMUTABLE_LEVELS:33503,UNSIGNED_INT_2_10_10_10_REV:33640,UNSIGNED_INT_10F_11F_11F_REV:35899,UNSIGNED_INT_5_9_9_9_REV:35902,FLOAT_32_UNSIGNED_INT_24_8_REV:36269,UNSIGNED_INT_24_8:34042,HALF_FLOAT:5131,RG:33319,RG_INTEGER:33320,INT_2_10_10_10_REV:36255,CURRENT_QUERY:34917,QUERY_RESULT:34918,QUERY_RESULT_AVAILABLE:34919,ANY_SAMPLES_PASSED:35887,ANY_SAMPLES_PASSED_CONSERVATIVE:36202,MAX_DRAW_BUFFERS:34852,DRAW_BUFFER0:34853,DRAW_BUFFER1:34854,DRAW_BUFFER2:34855,DRAW_BUFFER3:34856,DRAW_BUFFER4:34857,DRAW_BUFFER5:34858,DRAW_BUFFER6:34859,DRAW_BUFFER7:34860,DRAW_BUFFER8:34861,DRAW_BUFFER9:34862,DRAW_BUFFER10:34863,DRAW_BUFFER11:34864,DRAW_BUFFER12:34865,DRAW_BUFFER13:34866,DRAW_BUFFER14:34867,DRAW_BUFFER15:34868,MAX_COLOR_ATTACHMENTS:36063,COLOR_ATTACHMENT1:36065,COLOR_ATTACHMENT2:36066,COLOR_ATTACHMENT3:36067,COLOR_ATTACHMENT4:36068,COLOR_ATTACHMENT5:36069,COLOR_ATTACHMENT6:36070,COLOR_ATTACHMENT7:36071,COLOR_ATTACHMENT8:36072,COLOR_ATTACHMENT9:36073,COLOR_ATTACHMENT10:36074,COLOR_ATTACHMENT11:36075,COLOR_ATTACHMENT12:36076,COLOR_ATTACHMENT13:36077,COLOR_ATTACHMENT14:36078,COLOR_ATTACHMENT15:36079,SAMPLER_3D:35679,SAMPLER_2D_SHADOW:35682,SAMPLER_2D_ARRAY:36289,SAMPLER_2D_ARRAY_SHADOW:36292,SAMPLER_CUBE_SHADOW:36293,INT_SAMPLER_2D:36298,INT_SAMPLER_3D:36299,INT_SAMPLER_CUBE:36300,INT_SAMPLER_2D_ARRAY:36303,UNSIGNED_INT_SAMPLER_2D:36306,UNSIGNED_INT_SAMPLER_3D:36307,UNSIGNED_INT_SAMPLER_CUBE:36308,UNSIGNED_INT_SAMPLER_2D_ARRAY:36311,MAX_SAMPLES:36183,SAMPLER_BINDING:35097,PIXEL_PACK_BUFFER:35051,PIXEL_UNPACK_BUFFER:35052,PIXEL_PACK_BUFFER_BINDING:35053,PIXEL_UNPACK_BUFFER_BINDING:35055,COPY_READ_BUFFER:36662,COPY_WRITE_BUFFER:36663,COPY_READ_BUFFER_BINDING:36662,COPY_WRITE_BUFFER_BINDING:36663,FLOAT_MAT2x3:35685,FLOAT_MAT2x4:35686,FLOAT_MAT3x2:35687,FLOAT_MAT3x4:35688,FLOAT_MAT4x2:35689,FLOAT_MAT4x3:35690,UNSIGNED_INT_VEC2:36294,UNSIGNED_INT_VEC3:36295,UNSIGNED_INT_VEC4:36296,UNSIGNED_NORMALIZED:35863,SIGNED_NORMALIZED:36764,VERTEX_ATTRIB_ARRAY_INTEGER:35069,VERTEX_ATTRIB_ARRAY_DIVISOR:35070,TRANSFORM_FEEDBACK_BUFFER_MODE:35967,MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS:35968,TRANSFORM_FEEDBACK_VARYINGS:35971,TRANSFORM_FEEDBACK_BUFFER_START:35972,TRANSFORM_FEEDBACK_BUFFER_SIZE:35973,TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN:35976,MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS:35978,MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS:35979,INTERLEAVED_ATTRIBS:35980,SEPARATE_ATTRIBS:35981,TRANSFORM_FEEDBACK_BUFFER:35982,TRANSFORM_FEEDBACK_BUFFER_BINDING:35983,TRANSFORM_FEEDBACK:36386,TRANSFORM_FEEDBACK_PAUSED:36387,TRANSFORM_FEEDBACK_ACTIVE:36388,TRANSFORM_FEEDBACK_BINDING:36389,FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:33296,FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:33297,FRAMEBUFFER_ATTACHMENT_RED_SIZE:33298,FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:33299,FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:33300,FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:33301,FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:33302,FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:33303,FRAMEBUFFER_DEFAULT:33304,DEPTH24_STENCIL8:35056,DRAW_FRAMEBUFFER_BINDING:36006,READ_FRAMEBUFFER_BINDING:36010,RENDERBUFFER_SAMPLES:36011,FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER:36052,FRAMEBUFFER_INCOMPLETE_MULTISAMPLE:36182,UNIFORM_BUFFER:35345,UNIFORM_BUFFER_BINDING:35368,UNIFORM_BUFFER_START:35369,UNIFORM_BUFFER_SIZE:35370,MAX_VERTEX_UNIFORM_BLOCKS:35371,MAX_FRAGMENT_UNIFORM_BLOCKS:35373,MAX_COMBINED_UNIFORM_BLOCKS:35374,MAX_UNIFORM_BUFFER_BINDINGS:35375,MAX_UNIFORM_BLOCK_SIZE:35376,MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS:35377,MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS:35379,UNIFORM_BUFFER_OFFSET_ALIGNMENT:35380,ACTIVE_UNIFORM_BLOCKS:35382,UNIFORM_TYPE:35383,UNIFORM_SIZE:35384,UNIFORM_BLOCK_INDEX:35386,UNIFORM_OFFSET:35387,UNIFORM_ARRAY_STRIDE:35388,UNIFORM_MATRIX_STRIDE:35389,UNIFORM_IS_ROW_MAJOR:35390,UNIFORM_BLOCK_BINDING:35391,UNIFORM_BLOCK_DATA_SIZE:35392,UNIFORM_BLOCK_ACTIVE_UNIFORMS:35394,UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES:35395,UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER:35396,UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER:35398,OBJECT_TYPE:37138,SYNC_CONDITION:37139,SYNC_STATUS:37140,SYNC_FLAGS:37141,SYNC_FENCE:37142,SYNC_GPU_COMMANDS_COMPLETE:37143,UNSIGNALED:37144,SIGNALED:37145,ALREADY_SIGNALED:37146,TIMEOUT_EXPIRED:37147,CONDITION_SATISFIED:37148,WAIT_FAILED:37149,SYNC_FLUSH_COMMANDS_BIT:1,COLOR:6144,DEPTH:6145,STENCIL:6146,MIN:32775,MAX:32776,DEPTH_COMPONENT24:33190,STREAM_READ:35041,STREAM_COPY:35042,STATIC_READ:35045,STATIC_COPY:35046,DYNAMIC_READ:35049,DYNAMIC_COPY:35050,DEPTH_COMPONENT32F:36012,DEPTH32F_STENCIL8:36013,INVALID_INDEX:4294967295,TIMEOUT_IGNORED:-1,MAX_CLIENT_WAIT_TIMEOUT_WEBGL:37447,VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE:35070,UNMASKED_VENDOR_WEBGL:37445,UNMASKED_RENDERER_WEBGL:37446,MAX_TEXTURE_MAX_ANISOTROPY_EXT:34047,TEXTURE_MAX_ANISOTROPY_EXT:34046,COMPRESSED_RGB_S3TC_DXT1_EXT:33776,COMPRESSED_RGBA_S3TC_DXT1_EXT:33777,COMPRESSED_RGBA_S3TC_DXT3_EXT:33778,COMPRESSED_RGBA_S3TC_DXT5_EXT:33779,COMPRESSED_R11_EAC:37488,COMPRESSED_SIGNED_R11_EAC:37489,COMPRESSED_RG11_EAC:37490,COMPRESSED_SIGNED_RG11_EAC:37491,COMPRESSED_RGB8_ETC2:37492,COMPRESSED_RGBA8_ETC2_EAC:37493,COMPRESSED_SRGB8_ETC2:37494,COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:37495,COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2:37496,COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2:37497,COMPRESSED_RGB_PVRTC_4BPPV1_IMG:35840,COMPRESSED_RGBA_PVRTC_4BPPV1_IMG:35842,COMPRESSED_RGB_PVRTC_2BPPV1_IMG:35841,COMPRESSED_RGBA_PVRTC_2BPPV1_IMG:35843,COMPRESSED_RGB_ETC1_WEBGL:36196,COMPRESSED_RGB_ATC_WEBGL:35986,COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL:35986,COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL:34798,UNSIGNED_INT_24_8_WEBGL:34042,HALF_FLOAT_OES:36193,RGBA32F_EXT:34836,RGB32F_EXT:34837,FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT:33297,UNSIGNED_NORMALIZED_EXT:35863,MIN_EXT:32775,MAX_EXT:32776,SRGB_EXT:35904,SRGB_ALPHA_EXT:35906,SRGB8_ALPHA8_EXT:35907,FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT:33296,FRAGMENT_SHADER_DERIVATIVE_HINT_OES:35723,COLOR_ATTACHMENT0_WEBGL:36064,COLOR_ATTACHMENT1_WEBGL:36065,COLOR_ATTACHMENT2_WEBGL:36066,COLOR_ATTACHMENT3_WEBGL:36067,COLOR_ATTACHMENT4_WEBGL:36068,COLOR_ATTACHMENT5_WEBGL:36069,COLOR_ATTACHMENT6_WEBGL:36070,COLOR_ATTACHMENT7_WEBGL:36071,COLOR_ATTACHMENT8_WEBGL:36072,COLOR_ATTACHMENT9_WEBGL:36073,COLOR_ATTACHMENT10_WEBGL:36074,COLOR_ATTACHMENT11_WEBGL:36075,COLOR_ATTACHMENT12_WEBGL:36076,COLOR_ATTACHMENT13_WEBGL:36077,COLOR_ATTACHMENT14_WEBGL:36078,COLOR_ATTACHMENT15_WEBGL:36079,DRAW_BUFFER0_WEBGL:34853,DRAW_BUFFER1_WEBGL:34854,DRAW_BUFFER2_WEBGL:34855,DRAW_BUFFER3_WEBGL:34856,DRAW_BUFFER4_WEBGL:34857,DRAW_BUFFER5_WEBGL:34858,DRAW_BUFFER6_WEBGL:34859,DRAW_BUFFER7_WEBGL:34860,DRAW_BUFFER8_WEBGL:34861,DRAW_BUFFER9_WEBGL:34862,DRAW_BUFFER10_WEBGL:34863,DRAW_BUFFER11_WEBGL:34864,DRAW_BUFFER12_WEBGL:34865,DRAW_BUFFER13_WEBGL:34866,DRAW_BUFFER14_WEBGL:34867,DRAW_BUFFER15_WEBGL:34868,MAX_COLOR_ATTACHMENTS_WEBGL:36063,MAX_DRAW_BUFFERS_WEBGL:34852,VERTEX_ARRAY_BINDING_OES:34229,QUERY_COUNTER_BITS_EXT:34916,CURRENT_QUERY_EXT:34917,QUERY_RESULT_EXT:34918,QUERY_RESULT_AVAILABLE_EXT:34919,TIME_ELAPSED_EXT:35007,TIMESTAMP_EXT:36392,GPU_DISJOINT_EXT:36795}},n "c6decbe3f5": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),h=e("@bokehjs/models/layouts/html_box");class r extends h.HTMLBoxView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>this._plot());const{width:e,height:t,renderer:s,theme:i}=this.model.properties;this.on_change([e,t],()=>this._resize()),this.on_change([i,s],()=>this.render())}render(){super.render();const e={width:this.model.width,height:this.model.height,renderer:this.model.renderer};null!=this._chart&&window.echarts.dispose(this._chart),this._chart=window.echarts.init(this.el,this.model.theme,e),this._plot()}after_layout(){super.after_layout(),this._chart.resize()}_plot(){null!=window.echarts&&this._chart.setOption(this.model.data)}_resize(){this._chart.resize({width:this.model.width,height:this.model.height})}}s.EChartsView=r,r.__name__="EChartsView";class o extends h.HTMLBox{constructor(e){super(e)}static init_ECharts(){this.prototype.default_view=r,this.define({data:[i.Any],theme:[i.String,"default"],renderer:[i.String,"canvas"]})}}s.ECharts=o,o.__name__="ECharts",o.__module__="panel.models.echarts",o.init_ECharts()},n "ed08037ce5": function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const n=e("@bokehjs/models/widgets/markup"),a=e("7116a7a602");function o(e){return(new DOMParser).parseFromString(e,"text/html").documentElement.textContent}r.htmlDecode=o;class s extends a.PanelMarkupView{render(){super.render();const e=o(this.model.text)||this.model.text;e?(this.markup_el.innerHTML=e,Array.from(this.markup_el.querySelectorAll("script")).forEach(e=>{const t=document.createElement("script");Array.from(e.attributes).forEach(e=>t.setAttribute(e.name,e.value)),t.appendChild(document.createTextNode(e.innerHTML)),e.parentNode&&e.parentNode.replaceChild(t,e)})):this.markup_el.innerHTML=""}}r.HTMLView=s,s.__name__="HTMLView";class i extends n.Markup{constructor(e){super(e)}static init_HTML(){this.prototype.default_view=s}}r.HTML=i,i.__name__="HTML",i.__module__="panel.models.markup",i.init_HTML()},n "cb7ac8d1fa": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const n=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),d=e("7116a7a602"),l=window.Jupyter;class o extends d.PanelHTMLBoxView{constructor(){super(…arguments),this.rendered=!1}render(){super.render(),this._render().then(()=>{this.rendered=!0,this.invalidate_layout(),this.notify_finished()})}has_finished(){return this.rendered&&super.has_finished()}async _render(){const{spec:e,state:i}=this.model.bundle;let t;if(null!=l&&null!=l.notebook?t=l.notebook.kernel.widget_manager:null!=window.PyViz.widget_manager&&(t=window.PyViz.widget_manager),t)if(null==this.ipyview){const n=(await t.set_state(i)).find(i=>i.model_id==e.model_id);if(null!=n){const e=await t.create_view(n,{el:this.el});if(this.ipyview=e,e.children_views)for(const i of e.children_views.views)await i;this.el.appendChild(e.el),e.trigger("displayed",e)}}else this.el.appendChild(this.ipyview.el);else console.log("Panel IPyWidget model could not find a WidgetManager")}}t.IPyWidgetView=o,o.__name__="IPyWidgetView";class r extends s.HTMLBox{constructor(e){super(e)}static init_IPyWidget(){this.prototype.default_view=o,this.define({bundle:[n.Any,{}]})}}t.IPyWidget=r,r.__name__="IPyWidget",r.__module__="panel.models.ipywidget",r.init_IPyWidget()},n "284504a0cf": function _(e,t,r){Object.defineProperty(r,"__esModule",{value:!0});const s=e("tslib"),n=s.__importStar(e("@bokehjs/core/properties")),i=e("@bokehjs/models/widgets/markup"),o=s.__importDefault(e("18bba7b7e1")),d=e("7116a7a602");class a extends d.PanelMarkupView{connect_signals(){super.connect_signals();const{depth:e,hover_preview:t,theme:r}=this.model.properties;this.on_change([e,t,r],()=>this.render())}render(){super.render();const e=this.model.text.replace(/(\r\n|\n|\r)/gm,"").replace("’",’"’);let t;try{t=window.JSON.parse(e)}catch(e){return void(this.markup_el.innerHTML="<b>Invalid JSON:</b> "+e.toString())}const r={hoverPreviewEnabled:this.model.hover_preview,theme:this.model.theme},s=null==this.model.depth?1/0:this.model.depth,n=new o.default(t,s,r).render();let i="border-radius: 5px; padding: 10px;";"dark"==this.model.theme?n.style.cssText="background-color: rgb(30, 30, 30);"+i:n.style.cssText=i,this.markup_el.append(n)}}r.JSONView=a,a.__name__="JSONView";const l=["dark","light"];class p extends i.Markup{constructor(e){super(e)}static init_JSON(){this.prototype.default_view=a,this.define({depth:[n.Number,1],hover_preview:[n.Boolean,!1],theme:[n.Enum(l),"dark"]})}}r.JSON=p,p.__name__="JSON",p.__module__="panel.models.markup",p.init_JSON()},n "18bba7b7e1": function _(t,e,r){function n(t){return null===t?"null":typeof t}function o(t){return!!t&&"object"==typeof t}function i(t){if(void 0===t)return"";if(null===t)return"Object";if("object"==typeof t&&!t.constructor)return"Object";var e=/function ([^(])/.exec(t.constructor.toString());return e&&e.length>1?e[1]:""}function s(t,e,r){return"null"===t||"undefined"===t?t:("string"!==t&&"stringifiable"!==t||(r=’"’+r.replace(/"/g,’\\"’)+’"’),"function"===t?e.toString().replace(/[\r\n]/g,"").replace(/\{.*\}/,"")+"{…}":r)}function a(t){var e="";return o(t)?(e=i(t),Array.isArray(t)&&(e+="["+t.length+"]")):e=s(n(t),t,t),e}function f(t){return"json-formatter-"+t}function m(t,e,r){var n=document.createElement(t);return e&&n.classList.add(f(e)),void 0!==r&&(r instanceof Node?n.appendChild(r):n.appendChild(document.createTextNode(String(r)))),n}Object.defineProperty(r,"__esModule",{value:!0}),function(t){if("undefined"!=typeof window){var e=document.createElement("style");e.setAttribute("media","screen"),e.innerHTML=t,document.head.appendChild(e)}}(‘.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: "No properties";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: "[]";\n}\n.json-formatter-row .json-formatter-string,\n.json-formatter-row .json-formatter-stringifiable {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: "►";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: "No properties";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: "[]";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string,\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: "►";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n’);var l=/(^\d{1,4}[\.|\\/|-]\\d{1,2}[\\.|\\/|-]\\d{1,4})(\\s*(?:0?[1-9]:[0-5]|1(?=[012])\\d:[0-5])\\d\\s*[ap]m)?$/,d=/\\d{2}:\\d{2}:\\d{2} GMT-\\d{4}/,c=/\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{3}Z/,p=window.requestAnimationFrame||function(t){return t(),0},j={hoverPreviewEnabled:!1,hoverPreviewArrayCount:100,hoverPreviewFieldCount:5,animateOpen:!0,animateClose:!0,theme:null,useToJSON:!0,sortPropertiesBy:null},h=function(){function t(t,e,r,n){void 0===e&&(e=1),void 0===r&&(r=j),this.json=t,this.open=e,this.config=r,this.key=n,this._isOpen=null,void 0===this.config.hoverPreviewEnabled&&(this.config.hoverPreviewEnabled=j.hoverPreviewEnabled),void 0===this.config.hoverPreviewArrayCount&&(this.config.hoverPreviewArrayCount=j.hoverPreviewArrayCount),void 0===this.config.hoverPreviewFieldCount&&(this.config.hoverPreviewFieldCount=j.hoverPreviewFieldCount),void 0===this.config.useToJSON&&(this.config.useToJSON=j.useToJSON),\"\"===this.key&&(this.key='\"\"')}return Object.defineProperty(t.prototype,\"isOpen\",{get:function(){return null!==this._isOpen?this._isOpen:this.open>0},set:function(t){this._isOpen=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,\"isDate\",{get:function(){return this.json instanceof Date||"string"===this.type&&(l.test(this.json)||c.test(this.json)||d.test(this.json))},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isUrl",{get:function(){return"string"===this.type&&0===this.json.indexOf("http")},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isArray",{get:function(){return Array.isArray(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isObject",{get:function(){return o(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isEmptyObject",{get:function(){return!this.keys.length&&!this.isArray},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isEmpty",{get:function(){return this.isEmptyObject||this.keys&&!this.keys.length&&this.isArray},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"useToJSON",{get:function(){return this.config.useToJSON&&"stringifiable"===this.type},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"hasKey",{get:function(){return void 0!==this.key},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"constructorName",{get:function(){return i(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"type",{get:function(){return this.config.useToJSON&&this.json&&this.json.toJSON?"stringifiable":n(this.json)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"keys",{get:function(){if(this.isObject){var t=Object.keys(this.json);return!this.isArray&&this.config.sortPropertiesBy?t.sort(this.config.sortPropertiesBy):t}return[]},enumerable:!0,configurable:!0}),t.prototype.toggleOpen=function(){this.isOpen=!this.isOpen,this.element&&(this.isOpen?this.appendChildren(this.config.animateOpen):this.removeChildren(this.config.animateClose),this.element.classList.toggle(f("open")))},t.prototype.openAtDepth=function(t){void 0===t&&(t=1),t<0||(this.open=t,this.isOpen=0!==t,this.element&&(this.removeChildren(!1),0===t?this.element.classList.remove(f("open")):(this.appendChildren(this.config.animateOpen),this.element.classList.add(f("open")))))},t.prototype.getInlinepreview=function(){var t=this;if(this.isArray)return this.json.length>this.config.hoverPreviewArrayCount?"Array["+this.json.length+"]":"["+this.json.map(a).join(", ")+"]";var e=this.keys,r=e.slice(0,this.config.hoverPreviewFieldCount).map((function(e){return e+":"+a(t.json[e])})),n=e.length>=this.config.hoverPreviewFieldCount?"…":"";return"{"+r.join(", ")+n+"}"},t.prototype.render=function(){this.element=m("div","row");var t=this.isObject?m("a","toggler-link"):m("span");if(this.isObject&&!this.useToJSON&&t.appendChild(m("span","toggler")),this.hasKey&&t.appendChild(m("span","key",this.key+":")),this.isObject&&!this.useToJSON){var e=m("span","value"),r=m("span"),n=m("span","constructor-name",this.constructorName);if(r.appendChild(n),this.isArray){var o=m("span");o.appendChild(m("span","bracket","[")),o.appendChild(m("span","number",this.json.length)),o.appendChild(m("span","bracket","]")),r.appendChild(o)}e.appendChild(r),t.appendChild(e)}else{(e=this.isUrl?m("a"):m("span")).classList.add(f(this.type)),this.isDate&&e.classList.add(f("date")),this.isUrl&&(e.classList.add(f("url")),e.setAttribute("href",this.json));var i=s(this.type,this.json,this.useToJSON?this.json.toJSON():this.json);e.appendChild(document.createTextNode(i)),t.appendChild(e)}if(this.isObject&&this.config.hoverPreviewEnabled){var a=m("span","preview-text");a.appendChild(document.createTextNode(this.getInlinepreview())),t.appendChild(a)}var l=m("div","children");return this.isObject&&l.classList.add(f("object")),this.isArray&&l.classList.add(f("array")),this.isEmpty&&l.classList.add(f("empty")),this.config&&this.config.theme&&this.element.classList.add(f(this.config.theme)),this.isOpen&&this.element.classList.add(f("open")),this.element.appendChild(t),this.element.appendChild(l),this.isObject&&this.isOpen&&this.appendChildren(),this.isObject&&!this.useToJSON&&t.addEventListener("click",this.toggleOpen.bind(this)),this.element},t.prototype.appendChildren=function(e){var r=this;void 0===e&&(e=!1);var n=this.element.querySelector("div."+f("children"));if(n&&!this.isEmpty)if(e){var o=0,i=function(){var e=r.keys[o],s=new t(r.json[e],r.open-1,r.config,e);n.appendChild(s.render()),(o+=1)<r.keys.length&&(o>10?i():p(i))};p(i)}else this.keys.forEach((function(e){var o=new t(r.json[e],r.open-1,r.config,e);n.appendChild(o.render())}))},t.prototype.removeChildren=function(t){void 0===t&&(t=!1);var e=this.element.querySelector("div."+f("children"));if(t){var r=0,n=function(){e&&e.children.length&&(e.removeChild(e.children[0]),(r+=1)>10?n():p(n))};p(n)}else e&&(e.innerHTML="")},t}();r.default=h},n "7a99dba4eb": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const l=e("tslib"),s=e("@bokehjs/models/widgets/input_widget"),o=e("@bokehjs/styles/buttons"),n=l.__importStar(e("@bokehjs/core/properties"));class a extends s.InputWidgetView{constructor(){super(…arguments),this._downloadable=!1,this._embed=!1,this._prev_href="",this._prev_download=""}initialize(){super.initialize(),this.model.data&&this.model.filename&&(this._embed=!0)}connect_signals(){super.connect_signals(),this.connect(this.model.properties.button_type.change,()=>this._update_button_style()),this.connect(this.model.properties.filename.change,()=>this._update_download()),this.connect(this.model.properties._transfers.change,()=>this._handle_click()),this.connect(this.model.properties.label.change,()=>this._update_label())}render(){super.render(),this.group_el.style.display="flex",this.group_el.style.alignItems="stretch",this.anchor_el=document.createElement("a"),this._update_button_style(),this._update_label(),this.model.disabled?(this.anchor_el.setAttribute("disabled",""),this._downloadable=!1):(this.anchor_el.removeAttribute("disabled"),this._prev_download&&(this.anchor_el.download=this._prev_download),this._prev_href&&(this.anchor_el.href=this._prev_href),this.anchor_el.download&&this.anchor_el.download&&(this._downloadable=!0)),this._embed?this._make_link_downloadable():(this._click_listener=this._increment_clicks.bind(this),this.anchor_el.addEventListener("click",this._click_listener)),this.group_el.appendChild(this.anchor_el)}_increment_clicks(){this.model.clicks=this.model.clicks+1}_handle_click(){!this.model.auto&&this._downloadable||(this._make_link_downloadable(),!this._embed&&this.model.auto&&(this.anchor_el.removeEventListener("click",this._click_listener),this.anchor_el.click(),this.anchor_el.removeAttribute("href"),this.anchor_el.removeAttribute("download"),this.anchor_el.addEventListener("click",this._click_listener)),this._prev_href=this.anchor_el.getAttribute("href"),this._prev_download=this.anchor_el.getAttribute("download"))}_make_link_downloadable(){this._update_href(),this._update_download(),this.anchor_el.download&&this.anchor_el.href&&(this._downloadable=!0)}_update_href(){if(this.model.data){const e=function(e){const t=atob(e.split(",")[1]),i=e.split(",")[0].split(":")[1].split(";")[0],l=new ArrayBuffer(t.length),s=new Uint8Array(l);for(let e=0;e<t.length;e++)s[e]=t.charCodeAt(e);return new Blob([l],{type:i})}(this.model.data);this.anchor_el.href=URL.createObjectURL(e)}}_update_download(){this.model.filename&&(this.anchor_el.download=this.model.filename)}_update_label(){this.anchor_el.textContent=this.model.label}_update_button_style(){if(this.anchor_el.hasAttribute("class")){const e=this.anchor_el.classList.item(1);e&&this.anchor_el.classList.replace(e,o.bk_btn_type(this.model.button_type))}else this.anchor_el.classList.add(o.bk_btn),this.anchor_el.classList.add(o.bk_btn_type(this.model.button_type))}}i.FileDownloadView=a,a.__name__="FileDownloadView";class h extends s.InputWidget{constructor(e){super(e)}static init_FileDownload(){this.prototype.default_view=a,this.define({auto:[n.Boolean,!1],clicks:[n.Number,0],data:[n.NullString,null],label:[n.String,"Download"],filename:[n.String,null],button_type:[n.ButtonType,"default"],_transfers:[n.Number,0]}),this.override({title:""})}}i.FileDownload=h,h.__name__="FileDownload",h.__module__="panel.models.widgets",h.init_FileDownload()},n "7b859fb3cf": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const a=e("@bokehjs/models/widgets/markup"),n=e("7116a7a602");class r extends n.PanelMarkupView{render(){super.render(),this.markup_el.innerHTML=this.model.text,window.renderMathInElement&&window.renderMathInElement(this.el,{delimiters:[{left:"$$",right:"$$",display:!0},{left:"\\[",right:"\\]",display:!0},{left:"$",right:"$",display:!1},{left:"\\(",right:"\\)",display:!1}]})}}i.KaTeXView=r,r.__name__="KaTeXView";class s extends a.Markup{constructor(e){super(e)}static init_KaTeX(){this.prototype.default_view=r}}i.KaTeX=s,s.__name__="KaTeX",s.__module__="panel.models.katex",s.init_KaTeX()},n "aded270681": function _(o,e,t){Object.defineProperty(t,"__esModule",{value:!0});const i=o("tslib").__importStar(o("@bokehjs/core/properties")),a=o("@bokehjs/core/view"),n=o("@bokehjs/model");class h extends a.View{initialize(){super.initialize(),this.model.pathname=window.location.pathname,this.model.search=window.location.search,this.model.hash=window.location.hash,this.model.href=window.location.href,this.model.hostname=window.location.hostname,this.model.protocol=window.location.protocol,this.model.port=window.location.port}connect_signals(){super.connect_signals(),this.connect(this.model.properties.pathname.change,()=>this.update("pathname")),this.connect(this.model.properties.search.change,()=>this.update("search")),this.connect(this.model.properties.hash.change,()=>this.update("hash")),this.connect(this.model.properties.reload.change,()=>this.update("reload"))}update(o){this.model.reload&&"reload"!==o?("pathname"==o&&(window.location.pathname=this.model.pathname),"search"==o&&(window.location.search=this.model.search),"hash"==o&&(window.location.hash=this.model.hash)):(window.history.pushState({},"",`${this.model.pathname}${this.model.search}${this.model.hash}`),this.model.href=window.location.href,"reload"===o&&window.location.reload())}}t.LocationView=h,h.__name__="LocationView";class s extends n.Model{constructor(o){super(o)}static init_Location(){this.prototype.default_view=h,this.define({href:[i.String,""],hostname:[i.String,""],pathname:[i.String,""],protocol:[i.String,""],port:[i.String,""],search:[i.String,""],hash:[i.String,""],reload:[i.Boolean,!1]})}}t.Location=s,s.__name__="Location",s.__module__="panel.models.location",s.init_Location()},n "0c21036737": function _(e,t,a){Object.defineProperty(a,"__esModule",{value:!0});const i=e("@bokehjs/models/widgets/markup"),s=e("7116a7a602");class _ extends s.PanelMarkupView{initialize(){super.initialize(),this._hub=window.MathJax.Hub,this._hub.Config({tex2jax:{inlineMath:[["$","$"],["\\(","\\)"]]}})}render(){super.render(),this._hub&&(this.markup_el.innerHTML=this.model.text,this._hub.Queue(["Typeset",this._hub,this.markup_el]))}}a.MathJaxView=_,_.__name__="MathJaxView";class h extends i.Markup{constructor(e){super(e)}static init_MathJax(){this.prototype.default_view=_}}a.MathJax=h,h.__name__="MathJax",h.__module__="panel.models.mathjax",h.init_MathJax()},n "79c41bbf71": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/core/dom"),l=e("@bokehjs/models/widgets/widget");function n(e){e.forEach(e=>e.style.borderStyle="inset")}function a(e){e.forEach(e=>e.style.borderStyle="outset")}class r extends l.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.value.change,()=>this.render()),this.connect(this.model.properties.loop_policy.change,()=>this.set_loop_state(this.model.loop_policy)),this.connect(this.model.properties.show_loop_controls.change,()=>{this.model.show_loop_controls&&this.loop_state.parentNode!=this.groupEl?this.groupEl.appendChild(this.loop_state):this.model.show_loop_controls||this.loop_state.parentNode!=this.groupEl||this.el.removeChild(this.loop_state)})}get_height(){return 250}render(){if(null!=this.sliderEl)return this.sliderEl.min=String(this.model.start),this.sliderEl.max=String(this.model.end),void(this.sliderEl.value=String(this.model.value));super.render(),this.groupEl=o.div(),this.groupEl.style.display="flex",this.groupEl.style.flexDirection="column",this.groupEl.style.alignItems="center",this.sliderEl=document.createElement("input"),this.sliderEl.style.width="100%",this.sliderEl.setAttribute("type","range"),this.sliderEl.value=String(this.model.value),this.sliderEl.min=String(this.model.start),this.sliderEl.max=String(this.model.end),this.sliderEl.onchange=e=>this.set_frame(parseInt(e.target.value));const e=o.div();e.style.cssText="margin: 0 auto; display: flex; padding: 5px; align-items: stretch; width: 100%;";const t="text-align: center; min-width: 20px; flex-grow: 1; margin: 2px",s="text-align: center; min-width: 40px; flex-grow: 2; margin: 2px",i=document.createElement("button");i.style.cssText=t,i.appendChild(document.createTextNode("–")),i.onclick=()=>this.slower(),e.appendChild(i);const l=document.createElement("button");l.style.cssText=s,l.appendChild(document.createTextNode("❚◀◀")),l.onclick=()=>this.first_frame(),e.appendChild(l);const r=document.createElement("button");r.style.cssText=s,r.appendChild(document.createTextNode("❚◀")),r.onclick=()=>this.previous_frame(),e.appendChild(r);const d=document.createElement("button");d.style.cssText=s,d.appendChild(document.createTextNode("◀")),d.onclick=()=>this.reverse_animation(),e.appendChild(d);const h=document.createElement("button");h.style.cssText=s,h.appendChild(document.createTextNode("❚❚")),h.onclick=()=>this.pause_animation(),e.appendChild(h);const p=document.createElement("button");p.style.cssText=s,p.appendChild(document.createTextNode("▶")),p.onclick=()=>this.play_animation(),e.appendChild(p);const c=document.createElement("button");c.style.cssText=s,c.appendChild(document.createTextNode("▶❚")),c.onclick=()=>this.next_frame(),e.appendChild(c);const m=document.createElement("button");m.style.cssText=s,m.appendChild(document.createTextNode("▶▶❚")),m.onclick=()=>this.last_frame(),e.appendChild(m);const _=document.createElement("button");_.style.cssText=t,_.appendChild(document.createTextNode("+")),_.onclick=()=>this.faster(),e.appendChild(_),this._toggle_reverse=()=>{a([h,p]),n([d])},this._toogle_pause=()=>{a([d,p]),n([h])},this._toggle_play=()=>{a([d,h]),n([p])},this.loop_state=document.createElement("form"),this.loop_state.style.cssText="margin: 0 auto; display: table";const u=document.createElement("input");u.type="radio",u.value="once",u.name="state";const g=document.createElement("label");g.innerHTML="Once",g.style.cssText="padding: 0 10px 0 5px; user-select:none;";const f=document.createElement("input");f.setAttribute("type","radio"),f.setAttribute("value","loop"),f.setAttribute("name","state");const v=document.createElement("label");v.innerHTML="Loop",v.style.cssText="padding: 0 10px 0 5px; user-select:none;";const y=document.createElement("input");y.setAttribute("type","radio"),y.setAttribute("value","reflect"),y.setAttribute("name","state");const x=document.createElement("label");x.innerHTML="Reflect",x.style.cssText="padding: 0 10px 0 5px; user-select:none;","once"==this.model.loop_policy?u.checked=!0:"loop"==this.model.loop_policy?f.checked=!0:y.checked=!0,this.loop_state.appendChild(u),this.loop_state.appendChild(g),this.loop_state.appendChild(f),this.loop_state.appendChild(v),this.loop_state.appendChild(y),this.loop_state.appendChild(x),this.groupEl.appendChild(this.sliderEl),this.groupEl.appendChild(e),this.model.show_loop_controls&&this.groupEl.appendChild(this.loop_state),this.el.appendChild(this.groupEl)}set_frame(e){this.model.value!=e&&(this.model.value=e),this.sliderEl.value!=String(e)&&(this.sliderEl.value=String(e))}get_loop_state(){for(var e=this.loop_state.state,t=0;t<e.length;t++){var s=e[t];if(s.checked)return s.value}return"once"}set_loop_state(e){for(var t=this.loop_state.state,s=0;s<t.length;s++){var i=t[s];i.value==e&&(i.checked=!0)}}next_frame(){this.set_frame(Math.min(this.model.end,this.model.value+this.model.step))}previous_frame(){this.set_frame(Math.max(this.model.start,this.model.value-this.model.step))}first_frame(){this.set_frame(this.model.start)}last_frame(){this.set_frame(this.model.end)}slower(){this.model.interval=Math.round(this.model.interval/.7),this.model.direction>0?this.play_animation():this.model.direction<0&&this.reverse_animation()}faster(){this.model.interval=Math.round(.7*this.model.interval),this.model.direction>0?this.play_animation():this.model.direction<0&&this.reverse_animation()}anim_step_forward(){if(this.model.value<this.model.end)this.next_frame();else{var e=this.get_loop_state();"loop"==e?this.first_frame():"reflect"==e?(this.last_frame(),this.reverse_animation()):(this.pause_animation(),this.last_frame())}}anim_step_reverse(){if(this.model.value>this.model.start)this.previous_frame();else{var e=this.get_loop_state();"loop"==e?this.last_frame():"reflect"==e?(this.first_frame(),this.play_animation()):(this.pause_animation(),this.first_frame())}}pause_animation(){this._toogle_pause(),this.model.direction=0,this.timer&&(clearInterval(this.timer),this.timer=null)}play_animation(){this.pause_animation(),this._toggle_play(),this.model.direction=1,this.timer||(this.timer=setInterval(()=>this.anim_step_forward(),this.model.interval))}reverse_animation(){this.pause_animation(),this._toggle_reverse(),this.model.direction=-1,this.timer||(this.timer=setInterval(()=>this.anim_step_reverse(),this.model.interval))}}s.PlayerView=r,r.__name__="PlayerView";class d extends l.Widget{constructor(e){super(e)}static init_Player(){this.prototype.default_view=r,this.define({direction:[i.Number,0],interval:[i.Number,500],start:[i.Number],end:[i.Number],step:[i.Number,1],loop_policy:[i.Any,"once"],value:[i.Any,0],show_loop_controls:[i.Boolean,!0]}),this.override({width:400})}}s.Player=d,d.__name__="Player",d.__module__="panel.models.widgets",d.init_Player()},n "47b5ae5c43": function _(t,e,o){Object.defineProperty(o,"__esModule",{value:!0});const r=t("tslib").__importStar(t("@bokehjs/core/properties")),i=t("@bokehjs/core/dom"),l=t("@bokehjs/core/util/object"),s=t("@bokehjs/core/util/eq"),a=t("@bokehjs/models/layouts/html_box"),p=t("99a25e6992"),n=t("990b5dd5c7"),_=t("7116a7a602"),h=(t,e,o)=>{let r=Array.isArray(e)?[]:{};if("click"===o||"hover"===o||"selected"===o){const o=[];if(null==e)return null;const i=t.data;for(let t=0;t<e.points.length;t++){const r=e.points[t];let l={};for(let t in r){const e=r[t];!r.hasOwnProperty(t)||Array.isArray(e)||n.isPlainObject(e)||(l[t]=e)}null!=r&&(r.hasOwnProperty("curveNumber")&&r.hasOwnProperty("pointNumber")&&i[r.curveNumber].hasOwnProperty("customdata")&&(l.customdata=i[r.curveNumber].customdata[r.pointNumber]),r.hasOwnProperty("pointNumbers")&&(l.pointNumbers=r.pointNumbers)),o[t]=l}r.points=o}else if("relayout"===o||"restyle"===o)for(let t in e)e.hasOwnProperty(t)&&(r[t]=e[t]);return e.hasOwnProperty("range")&&(r.range=e.range),e.hasOwnProperty("lassoPoints")&&(r.lassoPoints=e.lassoPoints),r};class u extends _.PanelHTMLBoxView{constructor(){super(…arguments),this._settingViewport=!1,this._plotInitialized=!1,this._reacting=!1,this._relayouting=!1,this._end_relayouting=p.debounce(()=>{this._relayouting=!1},2e3,!1)}connect_signals(){super.connect_signals(),this.connect(this.model.properties.viewport_update_policy.change,this._updateSetViewportFunction),this.connect(this.model.properties.viewport_update_throttle.change,this._updateSetViewportFunction),this.connect(this.model.properties._render_count.change,this.plot),this.connect(this.model.properties.viewport.change,this._updateViewportFromProperty)}render(){super.render(),this._layout_wrapper=i.div({style:"height: 100%; width: 100%"}),this.el.appendChild(this._layout_wrapper),window.Plotly&&this.plot()}plot(){if(!window.Plotly)return;const t=[];for(let e=0;e<this.model.data.length;e++)t.push(this._get_trace(e,!1));let e=n.deepCopy(this.model.layout);if(this._relayouting){const{layout:t}=this._layout_wrapper;Object.keys(t).reduce((t,o)=>{"axis"===o.slice(1,5)&&"range"in t&&(e[o].range=t.range)},{})}this._reacting=!0,window.Plotly.react(this._layout_wrapper,t,e,this.model.config).then(()=>{var t,e;this._updateSetViewportFunction(),this._updateViewportProperty(),this._plotInitialized||(this._layout_wrapper.on("plotly_relayout",t=>{!0!==t._update_from_property&&(this.model.relayout_data=h(this._layout_wrapper,t,"relayout"),this._updateViewportProperty(),this._end_relayouting())}),this._layout_wrapper.on("plotly_relayouting",()=>{"mouseup"!==this.model.viewport_update_policy&&(this._relayouting=!0,this._updateViewportProperty())}),this._layout_wrapper.on("plotly_restyle",t=>{this.model.restyle_data=h(this._layout_wrapper,t,"restyle"),this._updateViewportProperty()}),this._layout_wrapper.on("plotly_click",t=>{this.model.click_data=h(this._layout_wrapper,t,"click")}),this._layout_wrapper.on("plotly_hover",t=>{this.model.hover_data=h(this._layout_wrapper,t,"hover")}),this._layout_wrapper.on("plotly_selected",t=>{this.model.selected_data=h(this._layout_wrapper,t,"selected")}),this._layout_wrapper.on("plotly_clickannotation",t=>{delete t.event,delete t.fullAnnotation,this.model.clickannotation_data=t}),this._layout_wrapper.on("plotly_deselect",()=>{this.model.selected_data=null}),this._layout_wrapper.on("plotly_unhover",()=>{this.model.hover_data=null})),this._plotInitialized=!0,this._reacting=!1,t=this._layout_wrapper,(e=window.getComputedStyle(t).display)&&"none"!==e&&window.Plotly.Plots.resize(this._layout_wrapper)})}_get_trace(t,e){const o=l.clone(this.model.data[t]),r=this.model.data_sources[t];for(const t of r.columns()){let i=r.get_array(t)[0];if(null!=i.shape&&i.shape.length>1){const t=[],e=i.shape;for(let o=0;o<e[0];o++)t.push(i.slice(o*e[1],(o+1)*e[1]));i=t}let l=t.split("."),s=l[l.length-1],a=o;for(let t of l.slice(0,-1))a=a[t];e&&1==l.length?a[s]=[i]:a[s]=i}return o}_updateViewportFromProperty(){if(!window.Plotly||this._settingViewport||this._reacting||!this.model.viewport)return;const t=this._layout_wrapper._fullLayout;Object.keys(this.model.viewport).reduce((e,o)=>{if(s.isEqual(n.get(t,o),e))return!0;{let t=n.deepCopy(this.model.viewport);return t._update_from_property=!0,window.Plotly.relayout(this.el,t),!1}},{})}_updateViewportProperty(){const t=this._layout_wrapper._fullLayout;let e={};for(let o in t){if(!t.hasOwnProperty(o))continue;let r=o.slice(0,5);"xaxis"!==r&&"yaxis"!==r||(e[o+".range"]=n.deepCopy(t[o].range))}s.isEqual(e,this.model.viewport)||this._setViewport(e)}_updateSetViewportFunction(){"continuous"===this.model.viewport_update_policy||"mouseup"===this.model.viewport_update_policy?this._setViewport=t=>{this._settingViewport||(this._settingViewport=!0,this.model.viewport=t,this._settingViewport=!1)}:this._setViewport=n.throttle(t=>{this._settingViewport||(this._settingViewport=!0,this.model.viewport=t,this._settingViewport=!1)},this.model.viewport_update_throttle)}}o.PlotlyPlotView=u,u.__name__="PlotlyPlotView";class d extends a.HTMLBox{constructor(t){super(t)}static init_PlotlyPlot(){this.prototype.default_view=u,this.define({data:[r.Array,[]],layout:[r.Any,{}],config:[r.Any,{}],data_sources:[r.Array,[]],relayout_data:[r.Any,{}],restyle_data:[r.Array,[]],click_data:[r.Any,{}],hover_data:[r.Any,{}],clickannotation_data:[r.Any,{}],selected_data:[r.Any,{}],viewport:[r.Any,{}],viewport_update_policy:[r.String,"mouseup"],viewport_update_throttle:[r.Number,200],_render_count:[r.Number,0]})}}o.PlotlyPlot=d,d.__name__="PlotlyPlot",d.__module__="panel.models.plotly",d.init_PlotlyPlot()},n "99a25e6992": function _(n,l,u){function t(n,l,u){var t,e,o,a,r;function i(){var c=Date.now()-a;c<l&&c>=0?t=setTimeout(i,l-c):(t=null,u||(r=n.apply(o,e),o=e=null))}null==l&&(l=100);var c=function(){o=this,e=arguments,a=Date.now();var c=u&&!t;return t||(t=setTimeout(i,l)),c&&(r=n.apply(o,e),o=e=null),r};return c.clear=function(){t&&(clearTimeout(t),t=null)},c.flush=function(){t&&(r=n.apply(o,e),o=e=null,clearTimeout(t),t=null)},c}t.debounce=t,l.exports=t},n "990b5dd5c7": function _(t,e,n){Object.defineProperty(n,"__esModule",{value:!0}),n.get=(t,e,n)=>{const r=n=>String.prototype.split.call(e,n).filter(Boolean).reduce((t,e)=>null!=t?t[e]:t,t),o=r(/[,[\]]+?/)||r(/[,[\].]+?/);return void 0===o||o===t?n:o},n.throttle=function(t,e){var n=0;return function(){var r=Number(new Date);r-n>=e&&(t(),n=r)}},n.deepCopy=function t(e){var n;if(null==e||"object"!=typeof e)return e;if(e instanceof Array){n=[];for(var r=0,o=e.length;r<o;r++)n[r]=t(e[r]);return n}if(e instanceof Object){const n={};for(const r in e){const o=r;e.hasOwnProperty(o)&&(n[o]=t(e[o]))}return n}throw new Error("Unable to copy obj! Its type isn’t supported.")},n.isPlainObject=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},n "765e9cea08": function _(e,s,t){Object.defineProperty(t,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/models/layouts/html_box"),r=e("7116a7a602");class l extends o.HTMLBoxView{connect_signals(){super.connect_signals();const e=()=>{this.render(),this.root.compute_layout()};this.connect(this.model.properties.height.change,e),this.connect(this.model.properties.width.change,e),this.connect(this.model.properties.height_policy.change,e),this.connect(this.model.properties.width_policy.change,e),this.connect(this.model.properties.sizing_mode.change,e),this.connect(this.model.properties.active.change,()=>this.setCSS()),this.connect(this.model.properties.bar_color.change,()=>this.setCSS()),this.connect(this.model.properties.css_classes.change,()=>this.setCSS()),this.connect(this.model.properties.value.change,()=>this.setValue()),this.connect(this.model.properties.max.change,()=>this.setMax())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:"inline-block"});this.progressEl=document.createElement("progress"),this.setValue(),this.setMax(),r.set_size(this.progressEl,this.model),this.setCSS();for(const s in e)this.progressEl.style.setProperty(s,e[s]);this.el.appendChild(this.progressEl)}setCSS(){let e=this.model.css_classes.join(" ")+" "+this.model.bar_color;this.model.active&&(e+=" active"),this.progressEl.className=e}setValue(){null!=this.model.value&&(this.progressEl.value=this.model.value)}setMax(){null!=this.model.max&&(this.progressEl.max=this.model.max)}_update_layout(){let e=void 0!==this._prev_sizing_mode&&this._prev_sizing_mode!==this.model.sizing_mode;this._prev_sizing_mode=this.model.sizing_mode,this.layout=new r.CachedVariadicBox(this.el,this.model.sizing_mode,e),this.layout.set_sizing(this.box_sizing())}}t.ProgressView=l,l.__name__="ProgressView";class n extends o.HTMLBox{constructor(e){super(e)}static init_Progress(){this.prototype.default_view=l,this.define({active:[i.Boolean,!0],bar_color:[i.String,"primary"],style:[i.Any,{}],max:[i.Number,100],value:[i.Any,null]})}}t.Progress=n,n.__name__="Progress",n.__module__="panel.models.widgets",n.init_Progress()},n "ff9dd91f7b": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib"),n=e("@bokehjs/core/dom"),l=e("@bokehjs/core/util/types"),o=i.__importStar(e("@bokehjs/core/properties")),c=e("@bokehjs/models/widgets/input_widget"),r=e("@bokehjs/styles/widgets/inputs");class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!1,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.style.backgroundImage="none",this.select_el.addEventListener("change",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=this.model.value;for(const t of this.el.querySelectorAll("option"))t.value===e&&(t.selected=!0);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector("select:focus");let t=null;for(const e of this.el.querySelectorAll("option"))if(e.selected){t=e.value;break}this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.SingleSelectView=h,h.__name__="SingleSelectView";class d extends c.InputWidget{constructor(e){super(e)}static init_SingleSelect(){this.prototype.default_view=h,this.define({value:[o.String,""],options:[o.Array,[]],size:[o.Number,4]})}}s.SingleSelect=d,d.__name__="SingleSelect",d.__module__="panel.models.widgets",d.init_SingleSelect()},n "38b2bc9574": function _(e,t,s){Object.defineProperty(s,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),a=e("@bokehjs/core/view"),o=e("@bokehjs/core/util/array"),c=e("@bokehjs/model"),n=e("@bokehjs/protocol/receiver");class r extends a.View{renderTo(){}}s.StateView=r,r.__name__="StateView";class _ extends c.Model{constructor(e){super(e),this._receiver=new n.Receiver,this._cache={}}apply_state(e){this._receiver.consume(e.header),this._receiver.consume(e.metadata),this._receiver.consume(e.content),this._receiver.message&&this.document&&this.document.apply_json_patch(this._receiver.message.content)}_receive_json(e,t){const s=JSON.parse(e);this._cache[t]=s;let i=this.state;for(const e of this.values)i=i[e];i===t?this.apply_state(s):this._cache[i]&&this.apply_state(this._cache[i])}set_state(e,t){let s=o.copy(this.values);s[this.widgets[e.id]]=t;let i=this.state;for(const e of s)i=i[e];var a,c,n;this.values=s,this.json?this._cache[i]?this.apply_state(this._cache[i]):(a=i,c=e=>this._receive_json(e,i),(n=new XMLHttpRequest).overrideMimeType("application/json"),n.open("GET",a,!0),n.onreadystatechange=function(){4==n.readyState&&200==n.status&&c(n.responseText)},n.send(null)):this.apply_state(i)}static init_State(){this.prototype.default_view=r,this.define({json:[i.Boolean,!1],state:[i.Any,{}],widgets:[i.Any,{}],values:[i.Any,[]]})}}s.State=_,_.__name__="State",_.__module__="panel.models.state",_.init_State()},n "294adeb985": function _(t,e,s){Object.defineProperty(s,"__esModule",{value:!0});const o=t("tslib").__importStar(t("@bokehjs/core/properties")),a=t("@bokehjs/core/util/types"),n=t("@bokehjs/models/layouts/html_box");class c extends n.HTMLBoxView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,this._plot),this.connect(this.model.properties.data_sources.change,()=>this._connect_sources()),this._connected=[],this._connect_sources()}_connect_sources(){for(const t in this.model.data_sources){const e=this.model.data_sources[t];this._connected.indexOf(t)<0&&(this.connect(e.properties.data.change,this._plot),this._connected.push(t))}}_fetch_datasets(){const t={};for(const e in this.model.data_sources){const s=this.model.data_sources[e],o=[],a=s.columns();for(let t=0;t<s.get_length();t++){const e={};for(const o of a)e[o]=s.data[o][t];o.push(e)}t[e]=o}return t}render(){super.render(),this._plot()}_plot(){const t=this.model.data;if(null!=t&&window.vegaEmbed){if(this.model.data_sources&&Object.keys(this.model.data_sources).length>0){const e=this._fetch_datasets();if("data"in e&&(t.data.values=e.data,delete e.data),null!=t.data){const s=a.isArray(t.data)?t.data:[t.data];for(const t of s)t.name in e&&(t.values=e[t.name],delete e[t.name])}this.model.data.datasets=e}window.vegaEmbed(this.el,this.model.data,{actions:!1})}}}s.VegaPlotView=c,c.__name__="VegaPlotView";class i extends n.HTMLBox{constructor(t){super(t)}static init_VegaPlot(){this.prototype.default_view=c,this.define({data:[o.Any],data_sources:[o.Any]})}}s.VegaPlot=i,i.__name__="VegaPlot",i.__module__="panel.models.vega",i.init_VegaPlot()},n "b0c3e9e9c2": function _(e,i,t){Object.defineProperty(t,"__esModule",{value:!0});const o=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("@bokehjs/models/layouts/html_box"),l=e("7116a7a602");class d extends l.PanelHTMLBoxView{initialize(){super.initialize(),this._blocked=!1,this._setting=!1,this._time=Date.now()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.loop.change,()=>this.set_loop()),this.connect(this.model.properties.paused.change,()=>this.set_paused()),this.connect(this.model.properties.time.change,()=>this.set_time()),this.connect(this.model.properties.value.change,()=>this.set_value()),this.connect(this.model.properties.volume.change,()=>this.set_volume())}render(){super.render(),this.videoEl=document.createElement("video"),this.model.sizing_mode&&"fixed"!==this.model.sizing_mode||(this.model.height&&(this.videoEl.height=this.model.height),this.model.width&&(this.videoEl.width=this.model.width)),this.videoEl.style.objectFit="fill",this.videoEl.style.minWidth="100%",this.videoEl.style.minHeight="100%",this.videoEl.controls=!0,this.videoEl.src=this.model.value,this.videoEl.currentTime=this.model.time,this.videoEl.loop=this.model.loop,null!=this.model.volume?this.videoEl.volume=this.model.volume/100:this.model.volume=100*this.videoEl.volume,this.videoEl.onpause=()=>this.model.paused=!0,this.videoEl.onplay=()=>this.model.paused=!1,this.videoEl.ontimeupdate=()=>this.update_time(this),this.videoEl.onvolumechange=()=>this.update_volume(this),this.el.appendChild(this.videoEl),this.model.paused||this.videoEl.play()}update_time(e){e._setting?e._setting=!1:Date.now()-e._time<e.model.throttle||(e._blocked=!0,e.model.time=e.videoEl.currentTime,e._time=Date.now())}update_volume(e){e._setting?e._setting=!1:(e._blocked=!0,e.model.volume=100*e.videoEl.volume)}set_loop(){this.videoEl.loop=this.model.loop}set_paused(){!this.videoEl.paused&&this.model.paused&&this.videoEl.pause(),this.videoEl.paused&&!this.model.paused&&this.videoEl.play()}set_volume(){this._blocked?this._blocked=!1:(this._setting=!0,null!=this.model.volume&&(this.videoEl.volume=this.model.volume/100))}set_time(){this._blocked?this._blocked=!1:(this._setting=!0,this.videoEl.currentTime=this.model.time)}set_value(){this.videoEl.src=this.model.value}}t.VideoView=d,d.__name__="VideoView";class h extends s.HTMLBox{constructor(e){super(e)}static init_Video(){this.prototype.default_view=d,this.define({loop:[o.Boolean,!1],paused:[o.Boolean,!0],time:[o.Number,0],throttle:[o.Number,250],value:[o.Any,""],volume:[o.Number,null]})}}t.Video=h,h.__name__="Video",h.__module__="panel.models.widgets",h.init_Video()},n "3c7145a2fa": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),o=e("@bokehjs/models/layouts/html_box"),h=e("7116a7a602");class a extends h.PanelHTMLBoxView{constructor(){super(…arguments),this.constraints={audio:!1,video:!0}}initialize(){super.initialize(),null!==this.model.timeout&&this.set_timeout()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.timeout.change,()=>this.set_timeout()),this.connect(this.model.properties.snapshot.change,()=>this.snapshot()),this.connect(this.model.properties.paused.change,()=>this.pause())}pause(){this.model.paused&&(null!=this.timer&&(clearInterval(this.timer),this.timer=null),this.videoEl.pause()),this.set_timeout()}set_timeout(){this.timer&&(clearInterval(this.timer),this.timer=null),this.model.timeout>0&&(this.timer=setInterval(()=>this.snapshot(),this.model.timeout))}snapshot(){this.canvasEl.width=this.videoEl.videoWidth,this.canvasEl.height=this.videoEl.videoHeight;const e=this.canvasEl.getContext("2d");e&&e.drawImage(this.videoEl,0,0,this.canvasEl.width,this.canvasEl.height),this.model.value=this.canvasEl.toDataURL("image/"+this.model.format,.95)}remove(){super.remove(),this.timer&&(clearInterval(this.timer),this.timer=null)}render(){super.render(),this.videoEl||(this.videoEl=document.createElement("video"),this.model.sizing_mode&&"fixed"!==this.model.sizing_mode||(this.model.height&&(this.videoEl.height=this.model.height),this.model.width&&(this.videoEl.width=this.model.width)),this.videoEl.style.objectFit="fill",this.videoEl.style.minWidth="100%",this.videoEl.style.minHeight="100%",this.canvasEl=document.createElement("canvas"),this.el.appendChild(this.videoEl),navigator.mediaDevices.getUserMedia&&navigator.mediaDevices.getUserMedia(this.constraints).then(e=>{this.videoEl.srcObject=e,this.model.paused||this.videoEl.play()}).catch(console.error))}}i.VideoStreamView=a,a.__name__="VideoStreamView";class l extends o.HTMLBox{constructor(e){super(e)}static init_VideoStream(){this.prototype.default_view=a,this.define({format:[s.String,"png"],paused:[s.Boolean,!1],snapshot:[s.Boolean,!1],timeout:[s.Number,0],value:[s.Any]}),this.override({height:240,width:320})}}i.VideoStream=l,l.__name__="VideoStream",l.__module__="panel.models.widgets",l.init_VideoStream()},n "c51f25e2a7": function _(e,o,l){Object.defineProperty(l,"__esModule",{value:!0});var V=e("6ed30646d7");l.VTKJSPlot=V.VTKJSPlot;var t=e("087f1e0be6");l.VTKVolumePlot=t.VTKVolumePlot;var a=e("3ae7537200");l.VTKAxes=a.VTKAxes;var r=e("4baab0b7ce");l.VTKSynchronizedPlot=r.VTKSynchronizedPlot},n "6ed30646d7": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const i=e("tslib").__importStar(e("@bokehjs/core/properties")),s=e("021b2a3929"),a=e("6c442cdcb4");class r extends s.AbstractVTKView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>{this.invalidate_render()})}render(){super.render(),this._create_orientation_widget(),this._set_axes()}invalidate_render(){this._vtk_renwin=null,super.invalidate_render()}init_vtk_renwin(){this._vtk_renwin=a.vtkns.FullScreenRenderWindow.newInstance({rootContainer:this.el,container:this._vtk_container})}plot(){if(!this.model.data)return void this._vtk_renwin.getRenderWindow().render();const e=a.vtkns.DataAccessHelper.get("zip",{zipContent:atob(this.model.data),callback:t=>{const n=a.vtkns.HttpSceneLoader.newInstance({renderer:this._vtk_renwin.getRenderer(),dataAccessHelper:e}),i=a.vtk.macro.debounce(()=>setTimeout(()=>{null==this._axes&&this.model.axes&&this._set_axes(),this._set_camera_state(),this._get_camera_state()},100),100);n.setUrl("index.json"),n.onReady(i)}})}}n.VTKJSPlotView=r,r.__name__="VTKJSPlotView";class o extends s.AbstractVTKPlot{static init_VTKJSPlot(){this.prototype.default_view=r,this.define({data:[i.String],enable_keybindings:[i.Boolean,!1]})}}n.VTKJSPlot=o,o.__name__="VTKJSPlot",o.init_VTKJSPlot()},n "021b2a3929": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const n=e("tslib").__importStar(e("@bokehjs/core/properties")),r=e("@bokehjs/core/dom"),s=e("@bokehjs/models/layouts/html_box"),a=e("@bokehjs/core/util/object"),o=e("7116a7a602"),_=e("6c442cdcb4"),d=e("c010237f8b"),c={padding:"0px 2px 0px 2px",maxHeight:"150px",height:"auto",backgroundColor:"rgba(255, 255, 255, 0.4)",borderRadius:"10px",margin:"2px",boxSizing:"border-box",overflow:"hidden",overflowY:"auto",transition:"width 0.1s linear",bottom:"0px",position:"absolute"};class h extends o.PanelHTMLBoxView{initialize(){super.initialize(),this._camera_callbacks=[],this._renderable=!0,this._setting_camera=!1}_add_colorbars(){const e=this.el.querySelector(".vtk_info");if(e&&this.el.removeChild(e),this.model.color_mappers.length<1)return;const t=document.createElement("div");t.classList.add("vtk_info"),_.applyStyle(t,c),_.applyStyle(t,{width:"350px"}),this.el.appendChild(t);const i=[];this.model.color_mappers.forEach(e=>{const n=new d.VTKColorBar(t,e);i.push(n)});const n=document.createElement("div");_.applyStyle(n,{textAlign:"center",fontSize:"20px"}),n.innerText="…",t.addEventListener("click",()=>{"30px"===t.style.width?(t.removeChild(n),_.applyStyle(t,{height:"auto",width:"350px"}),i.forEach(e=>t.appendChild(e.canvas))):(i.forEach(e=>t.removeChild(e.canvas)),_.applyStyle(t,{height:"30px",width:"30px"}),t.appendChild(n))}),t.click()}connect_signals(){super.connect_signals(),this.on_change(this.model.properties.orientation_widget,()=>{this._orientation_widget_visibility(this.model.orientation_widget)}),this.on_change(this.model.properties.camera,()=>this._set_camera_state()),this.on_change(this.model.properties.axes,()=>{this._delete_axes(),this.model.axes&&this._set_axes(),this._vtk_render()}),this.on_change(this.model.properties.color_mappers,()=>this._add_colorbars())}render(){super.render(),this._vtk_renwin&&this._vtk_container?(o.set_size(this._vtk_container,this.model),this.el.appendChild(this._vtk_container)):(this._orientationWidget=null,this._axes=null,this._vtk_container=r.div(),this.init_vtk_renwin(),o.set_size(this._vtk_container,this.model),this.el.appendChild(this._vtk_container),this._vtk_renwin.getInteractor().onEndAnimation(()=>this._get_camera_state()),this._remove_default_key_binding(),this._bind_key_events(),this.plot(),this._add_colorbars(),this.model.renderer_el=this._vtk_renwin)}after_layout(){super.after_layout(),this._renderable&&this._vtk_renwin.resize(),this._vtk_render()}invalidate_render(){this._unsubscribe_camera_cb(),super.invalidate_render()}remove(){this._unsubscribe_camera_cb(),window.removeEventListener("resize",this._vtk_renwin.resize),this._vtk_renwin.delete(),super.remove()}get _vtk_camera_state(){const e=this._vtk_renwin.getRenderer().getActiveCamera();let t;return e&&(t=a.clone(e.get()),delete t.classHierarchy,delete t.vtkObject,delete t.vtkCamera,delete t.viewPlaneNormal,delete t.flattenedDepIds,delete t.managedInstanceId,delete t.directionOfProjection),t}get _axes_canvas(){let e=this._vtk_container.querySelector(".axes-canvas");return e||(e=r.canvas({style:{position:"absolute",top:"0",left:"0",width:"100%",height:"100%"}}),e.classList.add("axes-canvas"),this._vtk_container.appendChild(e),this._vtk_renwin.setResizeCallback(()=>{if(this._axes_canvas){const e=this._vtk_container.getBoundingClientRect(),t=Math.floor(e.width*window.devicePixelRatio),i=Math.floor(e.height*window.devicePixelRatio);this._axes_canvas.setAttribute("width",t.toFixed()),this._axes_canvas.setAttribute("height",i.toFixed())}})),e}_bind_key_events(){this.el.addEventListener("mouseenter",()=>{const e=this._vtk_renwin.getInteractor();this.model.enable_keybindings&&(document.querySelector("body").addEventListener("keypress",e.handleKeyPress),document.querySelector("body").addEventListener("keydown",e.handleKeyDown),document.querySelector("body").addEventListener("keyup",e.handleKeyUp))}),this.el.addEventListener("mouseleave",()=>{const e=this._vtk_renwin.getInteractor();document.querySelector("body").removeEventListener("keypress",e.handleKeyPress),document.querySelector("body").removeEventListener("keydown",e.handleKeyDown),document.querySelector("body").removeEventListener("keyup",e.handleKeyUp)})}_create_orientation_widget(){const e=_.vtkns.AxesActor.newInstance();this._orientationWidget=_.vtkns.OrientationMarkerWidget.newInstance({actor:e,interactor:this._vtk_renwin.getInteractor()}),this._orientationWidget.setEnabled(!0),this._orientationWidget.setViewportCorner(_.vtkns.OrientationMarkerWidget.Corners.BOTTOM_RIGHT),this._orientationWidget.setViewportSize(.15),this._orientationWidget.setMinPixelSize(75),this._orientationWidget.setMaxPixelSize(300),this.model.interactive_orientation_widget&&this._make_orientation_widget_interactive(),this._orientation_widget_visibility(this.model.orientation_widget)}_make_orientation_widget_interactive(){this._widgetManager=_.vtkns.WidgetManager.newInstance(),this._widgetManager.setRenderer(this._orientationWidget.getRenderer());const e=this._orientationWidget.getActor(),t=_.vtkns.InteractiveOrientationWidget.newInstance();t.placeWidget(e.getBounds()),t.setBounds(e.getBounds()),t.setPlaceFactor(1);this._widgetManager.addWidget(t).onOrientationChange(({direction:e})=>{const t=this._vtk_renwin.getRenderer().getActiveCamera(),i=t.getFocalPoint(),n=t.getPosition(),r=t.getViewUp(),s=Math.sqrt(Math.pow(n[0]-i[0],2)+Math.pow(n[1]-i[1],2)+Math.pow(n[2]-i[2],2));t.setPosition(i[0]+e[0]*s,i[1]+e[1]*s,i[2]+e[2]*s),e[0]&&t.setViewUp(_.majorAxis(r,1,2)),e[1]&&t.setViewUp(_.majorAxis(r,0,2)),e[2]&&t.setViewUp(_.majorAxis(r,0,1)),this._vtk_renwin.getRenderer().resetCameraClippingRange(),this._vtk_render(),this._get_camera_state()})}_delete_axes(){if(this._axes){Object.keys(this._axes).forEach(e=>this._vtk_renwin.getRenderer().removeActor(this._axes[e])),this._axes=null;const e=this._axes_canvas.getContext("2d");e&&e.clearRect(0,0,this._axes_canvas.clientWidth*window.devicePixelRatio,this._axes_canvas.clientHeight*window.devicePixelRatio)}}_get_camera_state(){this._setting_camera||(this._setting_camera=!0,this.model.camera=this._vtk_camera_state,this._setting_camera=!1)}_orientation_widget_visibility(e){this._orientationWidget.setEnabled(e),null!=this._widgetManager&&(e?this._widgetManager.enablePicking():this._widgetManager.disablePicking()),this._vtk_render()}_remove_default_key_binding(){const e=this._vtk_renwin.getInteractor();document.querySelector("body").removeEventListener("keypress",e.handleKeyPress),document.querySelector("body").removeEventListener("keydown",e.handleKeyDown),document.querySelector("body").removeEventListener("keyup",e.handleKeyUp)}_set_axes(){if(this.model.axes&&this._vtk_renwin.getRenderer()){const{psActor:e,axesActor:t,gridActor:i}=this.model.axes.create_axes(this._axes_canvas);this._axes={psActor:e,axesActor:t,gridActor:i},this._vtk_renwin.getRenderer().addActor(e),this._vtk_renwin.getRenderer().addActor(t),this._vtk_renwin.getRenderer().addActor(i)}}_set_camera_state(){this._setting_camera||void 0===this._vtk_renwin.getRenderer()||(this._setting_camera=!0,this.model.camera&&JSON.stringify(this.model.camera)!=JSON.stringify(this._vtk_camera_state)&&this._vtk_renwin.getRenderer().getActiveCamera().set(this.model.camera),this._vtk_renwin.getRenderer().resetCameraClippingRange(),this._vtk_render(),this._setting_camera=!1)}_unsubscribe_camera_cb(){this._camera_callbacks.splice(0,this._camera_callbacks.length).map(e=>e.unsubscribe())}_vtk_render(){this._renderable&&(this._orientationWidget&&this._orientationWidget.updateMarkerOrientation(),this._vtk_renwin.getRenderWindow().render())}}i.AbstractVTKView=h,h.__name__="AbstractVTKView";class l extends s.HTMLBox{constructor(e){super(e)}getActors(){return this.renderer_el.getRenderer().getActors()}static init_AbstractVTKPlot(){this.define({axes:[n.Instance],camera:[n.Instance],color_mappers:[n.Array,[]],orientation_widget:[n.Boolean,!1],interactive_orientation_widget:[n.Boolean,!1]}),this.override({height:300,width:300})}}i.AbstractVTKPlot=l,l.__name__="AbstractVTKPlot",l.__module__="panel.models.vtk",l.init_AbstractVTKPlot()},n "6c442cdcb4": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const r=e("@bokehjs/core/util/array");if(n.ARRAY_TYPES={uint8:Uint8Array,int8:Int8Array,uint16:Uint16Array,int16:Int16Array,uint32:Uint32Array,int32:Int32Array,float32:Float32Array,float64:Float64Array},n.vtk=window.vtk,n.vtkns={},n.vtk){n.vtkns.Actor=n.vtk.Rendering.Core.vtkActor,n.vtkns.AxesActor=n.vtk.Rendering.Core.vtkAxesActor,n.vtkns.Base64=n.vtk.Common.Core.vtkBase64,n.vtkns.BoundingBox=n.vtk.Common.DataModel.vtkBoundingBox,n.vtkns.Camera=n.vtk.Rendering.Core.vtkCamera,n.vtkns.ColorTransferFunction=n.vtk.Rendering.Core.vtkColorTransferFunction,n.vtkns.CubeSource=n.vtk.Filters.Sources.vtkCubeSource,n.vtkns.DataAccessHelper=n.vtk.IO.Core.DataAccessHelper,n.vtkns.DataArray=n.vtk.Common.Core.vtkDataArray,n.vtkns.Follower=n.vtk.Rendering.Core.vtkFollower,n.vtkns.FullScreenRenderWindow=n.vtk.Rendering.Misc.vtkFullScreenRenderWindow,n.vtkns.Glyph3DMapper=n.vtk.Rendering.Core.vtkGlyph3DMapper,n.vtkns.HttpSceneLoader=n.vtk.IO.Core.vtkHttpSceneLoader,n.vtkns.ImageData=n.vtk.Common.DataModel.vtkImageData,n.vtkns.ImageMapper=n.vtk.Rendering.Core.vtkImageMapper,n.vtkns.ImageProperty=n.vtk.Rendering.Core.vtkImageProperty,n.vtkns.ImageSlice=n.vtk.Rendering.Core.vtkImageSlice,n.vtkns.InteractiveOrientationWidget=n.vtk.Widgets.Widgets3D.vtkInteractiveOrientationWidget,n.vtkns.InteractorStyleTrackballCamera=n.vtk.Interaction.Style.vtkInteractorStyleTrackballCamera,n.vtkns.Light=n.vtk.Rendering.Core.vtkLight,n.vtkns.LineSource=n.vtk.Filters.Sources.vtkLineSource,n.vtkns.LookupTable=n.vtk.Common.Core.vtkLookupTable,n.vtkns.macro=n.vtk.macro,n.vtkns.Mapper=n.vtk.Rendering.Core.vtkMapper,n.vtkns.OpenGLRenderWindow=n.vtk.Rendering.OpenGL.vtkRenderWindow,n.vtkns.OrientationMarkerWidget=n.vtk.Interaction.Widgets.vtkOrientationMarkerWidget,n.vtkns.OutlineFilter=n.vtk.Filters.General.vtkOutlineFilter,n.vtkns.PiecewiseFunction=n.vtk.Common.DataModel.vtkPiecewiseFunction,n.vtkns.PixelSpaceCallbackMapper=n.vtk.Rendering.Core.vtkPixelSpaceCallbackMapper,n.vtkns.PlaneSource=n.vtk.Filters.Sources.vtkPlaneSource,n.vtkns.PointSource=n.vtk.Filters.Sources.vtkPointSource,n.vtkns.PolyData=n.vtk.Common.DataModel.vtkPolyData,n.vtkns.Property=n.vtk.Rendering.Core.vtkProperty,n.vtkns.Renderer=n.vtk.Rendering.Core.vtkRenderer,n.vtkns.RenderWindow=n.vtk.Rendering.Core.vtkRenderWindow,n.vtkns.RenderWindowInteractor=n.vtk.Rendering.Core.vtkRenderWindowInteractor,n.vtkns.SphereMapper=n.vtk.Rendering.Core.vtkSphereMapper,n.vtkns.SynchronizableRenderWindow=n.vtk.Rendering.Misc.vtkSynchronizableRenderWindow,n.vtkns.ThirdParty=n.vtk.ThirdParty,n.vtkns.Texture=n.vtk.Rendering.Core.vtkTexture,n.vtkns.Volume=n.vtk.Rendering.Core.vtkVolume,n.vtkns.VolumeController=n.vtk.Interaction.UI.vtkVolumeController,n.vtkns.VolumeMapper=n.vtk.Rendering.Core.vtkVolumeMapper,n.vtkns.VolumeProperty=n.vtk.Rendering.Core.vtkVolumeProperty,n.vtkns.WidgetManager=n.vtk.Widgets.Core.vtkWidgetManager;const{vtkObjectManager:e}=n.vtkns.SynchronizableRenderWindow;e.setTypeMapping("vtkVolumeMapper",n.vtkns.VolumeMapper.newInstance,e.oneTimeGenericUpdater),e.setTypeMapping("vtkSmartVolumeMapper",n.vtkns.VolumeMapper.newInstance,e.oneTimeGenericUpdater),e.setTypeMapping("vtkFollower",n.vtkns.Follower.newInstance,e.genericUpdater)}function o(e){const t=Math.min(Math.max(Math.round(e),0),255).toString(16);return 2==t.length?t:"0"+t}function a(e,t,n){return"#"+o(e)+o(t)+o(n)}function k(e){for(var t=new ArrayBuffer(e.length),n=new Uint8Array(t),r=0,o=e.length;r<o;r++)n[r]=e.charCodeAt(r);return t}n.applyStyle=function(e,t){Object.keys(t).forEach(n=>{e.style[n]=t[n]})},n.hexToRGB=function(e){return[parseInt(e.slice(1,3),16)/255,parseInt(e.slice(3,5),16)/255,parseInt(e.slice(5,7),16)/255]},n.rgbToHex=a,n.vtkLutToMapper=function(e){const{scale:t,nodes:o}=e.get("scale","nodes");if(t!==n.vtkns.ColorTransferFunction.Scale.LINEAR)throw"Error transfer function scale not handle";const k=o.map(e=>e.x),v=Math.min(…k),i=Math.max(…k),s=r.linspace(v,i,255),c=[0,0,0];return{low:v,high:i,palette:s.map(t=>(e.getColor(t,c),a(255*c[0],255*c[1],255*c[2])))}},n.data2VTKImageData=function(e){const t=n.vtkns.ImageData.newInstance({spacing:e.spacing});t.setDimensions(e.dims),t.setOrigin(null!=e.origin?e.origin:e.dims.map(e=>e/2));const r=n.vtkns.DataArray.newInstance({name:"scalars",numberOfComponents:1,values:new n.ARRAY_TYPES[e.dtype](k(atob(e.buffer)))});return t.getPointData().setScalars(r),t},n.majorAxis=function(e,t,n){const r=[0,0,0],o=Math.abs(e[t])>Math.abs(e[n])?t:n,a=e[o]>0?1:-1;return r[o]=a,r},n.cartesian_product=function(…e){return e.reduce((e,t)=>e.flatMap(e=>t.map(t=>[].concat(e,t))))}},n "c010237f8b": function _(t,i,e){Object.defineProperty(e,"__esModule",{value:!0});const s=t("@bokehjs/models/mappers"),h=t("@bokehjs/core/util/array");class a{constructor(t,i,e={}){this.parent=t,this.mapper=i,this.options=e,e.ticksNum||(e.ticksNum=5),e.fontFamily||(e.fontFamily="Arial"),e.fontSize||(e.fontSize="12px"),e.ticksSize||(e.ticksSize=2),this.canvas=document.createElement("canvas"),this.canvas.style.width="100%",this.parent.appendChild(this.canvas),this.ctx=this.canvas.getContext("2d"),this.ctx.font=`${this.options.fontSize} ${this.options.fontFamily}`,this.ctx.lineWidth=e.ticksSize,e.height||(e.height=4*(this.font_height+1)+"px"),this.canvas.style.height=e.height,this.draw_colorbar()}get values(){const{min:t,max:i}=this.mapper.metrics;return h.linspace(t,i,this.options.ticksNum)}get ticks(){return this.values.map(t=>t.toExponential(3))}get title(){return this.mapper.name?this.mapper.name:"scalars"}get font_height(){let t=0;return this.values.forEach(i=>{const{actualBoundingBoxAscent:e,actualBoundingBoxDescent:s}=this.ctx.measureText(""+i),h=e+s;t<h&&(t=h)}),t}draw_colorbar(){this.canvas.width=this.canvas.clientWidth,this.canvas.height=this.canvas.clientHeight;const{palette:t}=this.mapper;this.ctx.font=`${this.options.fontSize} ${this.options.fontFamily}`;const i=this.font_height;this.ctx.save();const e=document.createElement("canvas"),a=t.length;e.width=a,e.height=1;const n=e.getContext("2d"),c=n.getImageData(0,0,a,1),o=new s.LinearColorMapper({palette:t}).rgba_mapper.v_compute(h.range(0,t.length));c.data.set(o),n.putImageData(c,0,0),this.ctx.drawImage(e,0,2*(this.font_height+1)+1,this.canvas.width,this.canvas.height),this.ctx.restore(),this.ctx.save(),this.ctx.textAlign="center",this.ctx.fillText(this.title,this.canvas.width/2,i+1),this.ctx.restore(),this.ctx.save();const r=h.linspace(0,this.canvas.width,5);r.forEach((t,e)=>{let s=t;0==e?(s=t+Math.ceil(this.ctx.lineWidth/2),this.ctx.textAlign="left"):e==r.length-1?(s=t-Math.ceil(this.ctx.lineWidth/2),this.ctx.textAlign="right"):this.ctx.textAlign="center",this.ctx.moveTo(s,2*(i+1)),this.ctx.lineTo(s,2*(i+1)+5),this.ctx.stroke(),this.ctx.fillText(""+this.ticks[e],t,2*(i+1))}),this.ctx.restore()}}e.VTKColorBar=a,a.__name__="VTKColorBar"},n "087f1e0be6": function _(e,t,i){Object.defineProperty(i,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),n=e("021b2a3929"),r=e("6c442cdcb4");class o extends n.AbstractVTKView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.data.change,()=>{this._vtk_image_data=r.data2VTKImageData(this.model.data),this.invalidate_render()}),this.connect(this.model.properties.colormap.change,()=>{this.colormap_selector.value=this.model.colormap;const e=new Event("change");this.colormap_selector.dispatchEvent(e)}),this.connect(this.model.properties.shadow.change,()=>{this.shadow_selector.value=this.model.shadow?"1":"0";const e=new Event("change");this.shadow_selector.dispatchEvent(e)}),this.connect(this.model.properties.sampling.change,()=>{this.sampling_slider.value=this.model.sampling.toFixed(2);const e=new Event("input");this.sampling_slider.dispatchEvent(e)}),this.connect(this.model.properties.edge_gradient.change,()=>{this.edge_gradient_slider.value=this.model.edge_gradient.toFixed(2);const e=new Event("input");this.edge_gradient_slider.dispatchEvent(e)}),this.connect(this.model.properties.rescale.change,()=>{this._controllerWidget.setRescaleColorMap(this.model.rescale),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.ambient.change,()=>{this.volume.getProperty().setAmbient(this.model.ambient),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.diffuse.change,()=>{this.volume.getProperty().setDiffuse(this.model.diffuse),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.specular.change,()=>{this.volume.getProperty().setSpecular(this.model.specular),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.specular_power.change,()=>{this.volume.getProperty().setSpecularPower(this.model.specular_power),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.display_volume.change,()=>{this._set_volume_visibility(this.model.display_volume),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.display_slices.change,()=>{this._set_slices_visibility(this.model.display_slices),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.slice_i.change,()=>{void 0!==this.image_actor_i&&(this.image_actor_i.getMapper().setISlice(this.model.slice_i),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.slice_j.change,()=>{void 0!==this.image_actor_j&&(this.image_actor_j.getMapper().setJSlice(this.model.slice_j),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.slice_k.change,()=>{void 0!==this.image_actor_k&&(this.image_actor_k.getMapper().setKSlice(this.model.slice_k),this._vtk_renwin.getRenderWindow().render())}),this.connect(this.model.properties.render_background.change,()=>{this._vtk_renwin.getRenderer().setBackground(…r.hexToRGB(this.model.render_background)),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.interpolation.change,()=>{this._set_interpolation(this.model.interpolation),this._vtk_renwin.getRenderWindow().render()}),this.connect(this.model.properties.controller_expanded.change,()=>{null!=this._controllerWidget&&this._controllerWidget.setExpanded(this.model.controller_expanded)})}render(){this._vtk_renwin=null,this._orientationWidget=null,this._axes=null,super.render(),this._create_orientation_widget(),this._set_axes(),this.model.camera?this._set_camera_state():this._vtk_renwin.getRenderer().resetCamera(),this._get_camera_state()}invalidate_render(){this._vtk_renwin=null,super.invalidate_render()}init_vtk_renwin(){this._vtk_renwin=r.vtkns.FullScreenRenderWindow.newInstance({rootContainer:this.el,container:this._vtk_container})}plot(){this._controllerWidget=r.vtkns.VolumeController.newInstance({size:[400,150],rescaleColorMap:this.model.rescale}),this._plot_volume(),this._plot_slices(),this._controllerWidget.setupContent(this._vtk_renwin.getRenderWindow(),this.volume,!0),this._controllerWidget.setContainer(this.el),this._controllerWidget.setExpanded(this.model.controller_expanded),this._connect_js_controls(),this._vtk_renwin.getRenderWindow().getInteractor(),this._vtk_renwin.getRenderWindow().getInteractor().setDesiredUpdateRate(45),this._set_volume_visibility(this.model.display_volume),this._set_slices_visibility(this.model.display_slices),this._vtk_renwin.getRenderer().setBackground(…r.hexToRGB(this.model.render_background)),this._set_interpolation(this.model.interpolation),this._set_camera_state()}get vtk_image_data(){return this._vtk_image_data||(this._vtk_image_data=r.data2VTKImageData(this.model.data)),this._vtk_image_data}get volume(){return this._vtk_renwin.getRenderer().getVolumes()[0]}get image_actor_i(){return this._vtk_renwin.getRenderer().getActors()[0]}get image_actor_j(){return this._vtk_renwin.getRenderer().getActors()[1]}get image_actor_k(){return this._vtk_renwin.getRenderer().getActors()[2]}get shadow_selector(){return this.el.querySelector(".js-shadow")}get edge_gradient_slider(){return this.el.querySelector(".js-edge")}get sampling_slider(){return this.el.querySelector(".js-spacing")}get colormap_selector(){return this.el.querySelector(".js-color-preset")}_connect_js_controls(){const{el:e}=this._controllerWidget.get("el");if(void 0!==e){e.querySelector(".js-button").addEventListener("click",()=>this.model.controller_expanded=this._controllerWidget.getExpanded())}this.colormap_selector.addEventListener("change",()=>{this.model.colormap=this.colormap_selector.value}),this.model.colormap?this.model.properties.colormap.change.emit():this.model.colormap=this.colormap_selector.value,this.shadow_selector.addEventListener("change",()=>{this.model.shadow=!!Number(this.shadow_selector.value)}),(this.model.shadow=!!Number(this.shadow_selector.value))&&this.model.properties.shadow.change.emit(),this.sampling_slider.addEventListener("input",()=>{const e=Number(this.sampling_slider.value);Math.abs(this.model.sampling-e)>=.005&&(this.model.sampling=e)}),Math.abs(this.model.sampling-Number(this.shadow_selector.value))>=.005&&this.model.properties.sampling.change.emit(),this.edge_gradient_slider.addEventListener("input",()=>{const e=Number(this.edge_gradient_slider.value);Math.abs(this.model.edge_gradient-e)>=.005&&(this.model.edge_gradient=e)}),Math.abs(this.model.edge_gradient-Number(this.edge_gradient_slider.value))>=.005&&this.model.properties.edge_gradient.change.emit()}_plot_slices(){const e=this._vtk_image_data,t=r.vtkns.ImageSlice.newInstance(),i=r.vtkns.ImageSlice.newInstance(),s=r.vtkns.ImageSlice.newInstance(),n=r.vtkns.ImageMapper.newInstance(),o=r.vtkns.ImageMapper.newInstance(),a=r.vtkns.ImageMapper.newInstance();n.setInputData(e),n.setISlice(this.model.slice_i),t.setMapper(n),o.setInputData(e),o.setJSlice(this.model.slice_j),i.setMapper(o),a.setInputData(e),a.setKSlice(this.model.slice_k),s.setMapper(a);const l=r.vtkns.PiecewiseFunction.newInstance();l.removeAllPoints(),l.addPoint(0,1);const d=this.volume.getProperty().getRGBTransferFunction(0),c=t.getProperty();i.setProperty(c),s.setProperty(c),c.setRGBTransferFunction(d),c.setScalarOpacity(l);const _=this._vtk_renwin.getRenderer();_.addActor(t),_.addActor(i),_.addActor(s)}_plot_volume(){const e=this.vtk_image_data,t=r.vtkns.Volume.newInstance(),i=r.vtkns.VolumeMapper.newInstance();t.setMapper(i),i.setInputData(e);const s=(e.getPointData().getScalars()||e.getPointData().getArrays()[0]).getRange(),n=r.vtkns.ColorTransferFunction.newInstance();n.onModified(()=>this.model.mapper=r.vtkLutToMapper(n));const o=r.vtkns.PiecewiseFunction.newInstance(),a=.7*Math.sqrt(e.getSpacing().map(e=>e*e).reduce((e,t)=>e+t,0));i.setSampleDistance(a),t.getProperty().setRGBTransferFunction(0,n),t.getProperty().setScalarOpacity(0,o),t.getProperty().setInterpolationTypeToFastLinear(),t.getProperty().setScalarOpacityUnitDistance(0,r.vtkns.BoundingBox.getDiagonalLength(e.getBounds())/Math.max(…e.getDimensions())),t.getProperty().setGradientOpacityMinimumValue(0,0),t.getProperty().setGradientOpacityMaximumValue(0,.05*(s[1]-s[0])),t.getProperty().setShade(this.model.shadow),t.getProperty().setUseGradientOpacity(0,!0),t.getProperty().setGradientOpacityMinimumOpacity(0,0),t.getProperty().setGradientOpacityMaximumOpacity(0,1),t.getProperty().setAmbient(this.model.ambient),t.getProperty().setDiffuse(this.model.diffuse),t.getProperty().setSpecular(this.model.specular),t.getProperty().setSpecularPower(this.model.specular_power),this._vtk_renwin.getRenderer().addVolume(t)}_set_interpolation(e){"fast_linear"==e?(this.volume.getProperty().setInterpolationTypeToFastLinear(),this.image_actor_i.getProperty().setInterpolationTypeToLinear()):"linear"==e?(this.volume.getProperty().setInterpolationTypeToLinear(),this.image_actor_i.getProperty().setInterpolationTypeToLinear()):(this.volume.getProperty().setInterpolationTypeToNearest(),this.image_actor_i.getProperty().setInterpolationTypeToNearest())}_set_slices_visibility(e){this._vtk_renwin.getRenderer().getActors().map(t=>t.setVisibility(e))}_set_volume_visibility(e){this.volume.setVisibility(e)}}i.VTKVolumePlotView=o,o.__name__="VTKVolumePlotView";class a extends n.AbstractVTKPlot{constructor(e){super(e)}static init_VTKVolumePlot(){this.prototype.default_view=o,this.define({ambient:[s.Number,.2],colormap:[s.String],data:[s.Instance],diffuse:[s.Number,.7],display_slices:[s.Boolean,!1],display_volume:[s.Boolean,!0],edge_gradient:[s.Number,.2],interpolation:[s.Any,"fast_linear"],mapper:[s.Instance],render_background:[s.String,"#52576e"],rescale:[s.Boolean,!1],sampling:[s.Number,.4],shadow:[s.Boolean,!0],slice_i:[s.Int,0],slice_j:[s.Int,0],slice_k:[s.Int,0],specular:[s.Number,.3],specular_power:[s.Number,8],controller_expanded:[s.Boolean,!0]})}}i.VTKVolumePlot=a,a.__name__="VTKVolumePlot",a.init_VTKVolumePlot()},n "3ae7537200": function _(t,s,i){Object.defineProperty(i,"__esModule",{value:!0});const e=t("tslib").__importStar(t("@bokehjs/core/properties")),n=t("@bokehjs/model"),a=t("2f3fd5db07"),c=t("6c442cdcb4");class r extends n.Model{constructor(t){super(t)}static init_VTKAxes(){this.define({origin:[e.Array],xticker:[e.Instance],yticker:[e.Instance],zticker:[e.Instance],digits:[e.Number,1],show_grid:[e.Boolean,!0],grid_opacity:[e.Number,.1],axes_opacity:[e.Number,1],fontsize:[e.Number,12]})}get xticks(){return this.xticker.ticks}get yticks(){return this.yticker.ticks}get zticks(){return this.zticker.ticks}get xlabels(){return this.xticker.labels?this.xticker.labels:this.xticks.map(t=>t.toFixed(this.digits))}get ylabels(){return this.yticker.labels?this.yticker.labels:this.yticks.map(t=>t.toFixed(this.digits))}get zlabels(){return this.zticker.labels?this.zticker.labels:this.zticks.map(t=>t.toFixed(this.digits))}_make_grid_lines(t,s,i){const e=[];for(let n=0;n<t-1;n++)for(let t=0;t<s-1;t++){const a=n*s+t+i,c=[5,a,n*s+t+1+i,(n+1)*s+t+1+i,(n+1)*s+t+i,a];e.push(c)}return e}_create_grid_axes(){const t=[];t.push(c.cartesian_product(this.xticks,this.yticks,[this.origin[2]])),t.push(c.cartesian_product([this.origin[0]],this.yticks,this.zticks)),t.push(c.cartesian_product(this.xticks,[this.origin[1]],this.zticks));const s=[];let i=0;s.push(this._make_grid_lines(this.xticks.length,this.yticks.length,i)),i+=this.xticks.length*this.yticks.length,s.push(this._make_grid_lines(this.yticks.length,this.zticks.length,i)),i+=this.yticks.length*this.zticks.length,s.push(this._make_grid_lines(this.xticks.length,this.zticks.length,i));const e=c.vtk({vtkClass:"vtkPolyData",points:{vtkClass:"vtkPoints",dataType:"Float32Array",numberOfComponents:3,values:t.flat(2)},lines:{vtkClass:"vtkCellArray",dataType:"Uint32Array",values:s.flat(2)}}),n=c.vtkns.Mapper.newInstance(),a=c.vtkns.Actor.newInstance();return n.setInputData(e),a.setMapper(n),a.getProperty().setOpacity(this.grid_opacity),a.setVisibility(this.show_grid),a}create_axes(t){const s=[this.xticks,this.yticks,this.zticks].map((t,s)=>{let i=null;switch(s){case 0:i=c.cartesian_product(t,[this.origin[1]],[this.origin[2]]);break;case 1:i=c.cartesian_product([this.origin[0]],t,[this.origin[2]]);break;case 2:i=c.cartesian_product([this.origin[0]],[this.origin[1]],t)}return i}).flat(2),i=c.vtk({vtkClass:"vtkPolyData",points:{vtkClass:"vtkPoints",dataType:"Float32Array",numberOfComponents:3,values:s},lines:{vtkClass:"vtkCellArray",dataType:"Uint32Array",values:[2,0,this.xticks.length-1,2,this.xticks.length,this.xticks.length+this.yticks.length-1,2,this.xticks.length+this.yticks.length,this.xticks.length+this.yticks.length+this.zticks.length-1]}}),e=c.vtkns.PixelSpaceCallbackMapper.newInstance();e.setInputData(i),e.setUseZValues(!0),e.setCallback((s,i,n)=>{const c=t.getContext("2d");if(c){const r={height:t.clientHeight*window.devicePixelRatio,width:t.clientWidth*window.devicePixelRatio},h=e.getInputData().getPoints(),l=i.getViewMatrix();a.mat4.transpose(l,l);const o=i.getProjectionMatrix(n,-1,1);a.mat4.transpose(o,o),c.clearRect(0,0,r.width,r.height),s.forEach((t,s)=>{const i=h.getPoint(s),e=a.vec3.fromValues(i[0],i[1],i[2]);if(a.vec3.transformMat4(e,e,l),e[2]+=.05,a.vec3.transformMat4(e,e,o),e[2]-.001<t[3]){let i;c.font="30px serif",c.textAlign="center",c.textBaseline="alphabetic",c.fillText(".",t[0],r.height-t[1]+2),c.font=this.fontsize*window.devicePixelRatio+"px serif",c.textAlign="right",c.textBaseline="top",i=s<this.xticks.length?this.xlabels[s]:s>=this.xticks.length&&s<this.xticks.length+this.yticks.length?this.ylabels[s-this.xticks.length]:this.zlabels[s-(this.xticks.length+this.yticks.length)],c.fillText(""+i,t[0],r.height-t[1])}})}});const n=c.vtkns.Actor.newInstance();n.setMapper(e);const r=c.vtkns.Mapper.newInstance();r.setInputData(i);const h=c.vtkns.Actor.newInstance();h.setMapper(r),h.getProperty().setOpacity(this.axes_opacity);return{psActor:n,axesActor:h,gridActor:this._create_grid_axes()}}}i.VTKAxes=r,r.__name__="VTKAxes",r.__module__="panel.models.vtk",r.init_VTKAxes()},n "2f3fd5db07": function _(t,c,a){Object.defineProperty(a,"__esModule",{value:!0});const o=t("tslib"),r=o.__importStar(t("68ca94c15c"));a.glMatrix=r;const _=o.__importStar(t("7c0b8e6048"));a.mat2=_;const e=o.__importStar(t("dc03f0a621"));a.mat2d=e;const i=o.__importStar(t("0285c50a7e"));a.mat3=i;const m=o.__importStar(t("a427635f32"));a.mat4=m;const n=o.__importStar(t("eb06fc032a"));a.quat=n;const s=o.__importStar(t("277615c682"));a.quat2=s;const p=o.__importStar(t("c56d9ff837"));a.vec2=p;const S=o.__importStar(t("2c5eb22089"));a.vec3=S;const f=o.__importStar(t("c1aa33d719"));a.vec4=f},n "68ca94c15c": function _(t,a,r){Object.defineProperty(r,"__esModule",{value:!0}),r.EPSILON=1e-6,r.ARRAY_TYPE="undefined"!=typeof Float32Array?Float32Array:Array,r.RANDOM=Math.random,r.setMatrixArrayType=function(t){r.ARRAY_TYPE=t};var n=Math.PI/180;r.toRadian=function(t){return t*n},r.equals=function(t,a){return Math.abs(t-a)<=r.EPSILON*Math.max(1,Math.abs(t),Math.abs(a))},Math.hypot||(Math.hypot=function(){for(var t=0,a=arguments.length;a–;)t+=arguments[a]*arguments[a];return Math.sqrt(t)})},n "7c0b8e6048": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=r[0],i=r[1],f=r[2],s=r[3];return t[0]=a*c+e*i,t[1]=u*c+o*i,t[2]=a*f+e*s,t[3]=u*f+o*s,t}function e(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}r.create=function(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0),t[0]=1,t[3]=1,t},r.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},r.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t},r.fromValues=function(t,n,r,u){var e=new a.ARRAY_TYPE(4);return e[0]=t,e[1]=n,e[2]=r,e[3]=u,e},r.set=function(t,n,r,a,u){return t[0]=n,t[1]=r,t[2]=a,t[3]=u,t},r.transpose=function(t,n){if(t===n){var r=n[1];t[1]=n[2],t[2]=r}else t[0]=n[0],t[1]=n[2],t[2]=n[1],t[3]=n[3];return t},r.invert=function(t,n){var r=n[0],a=n[1],u=n[2],e=n[3],o=r*e-u*a;return o?(o=1/o,t[0]=e*o,t[1]=-a*o,t[2]=-u*o,t[3]=r*o,t):null},r.adjoint=function(t,n){var r=n[0];return t[0]=n[3],t[1]=-n[1],t[2]=-n[2],t[3]=r,t},r.determinant=function(t){return t[0]*t[3]-t[2]*t[1]},r.multiply=u,r.rotate=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=Math.sin(r),i=Math.cos(r);return t[0]=a*i+e*c,t[1]=u*i+o*c,t[2]=a*-c+e*i,t[3]=u*-c+o*i,t},r.scale=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3],c=r[0],i=r[1];return t[0]=a*c,t[1]=u*c,t[2]=e*i,t[3]=o*i,t},r.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=-r,t[3]=a,t},r.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t},r.str=function(t){return"mat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},r.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3])},r.LDU=function(t,n,r,a){return t[2]=a[2]/a[0],r[0]=a[0],r[1]=a[1],r[3]=a[3]-t[2]*r[1],[t,n,r]},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},r.subtract=e,r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=t[3],c=n[0],i=n[1],f=n[2],s=n[3];return Math.abs(r-c)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(c))&&Math.abs(u-i)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(i))&&Math.abs(e-f)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(f))&&Math.abs(o-s)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(s))},r.multiplyScalar=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},r.multiplyScalarAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},r.mul=u,r.sub=e},n "dc03f0a621": function _(t,n,a){Object.defineProperty(a,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function u(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1],h=a[2],M=a[3],b=a[4],l=a[5];return t[0]=r*s+e*f,t[1]=u*s+o*f,t[2]=r*h+e*M,t[3]=u*h+o*M,t[4]=r*b+e*l+c,t[5]=u*b+o*l+i,t}function e(t,n,a){return t[0]=n[0]-a[0],t[1]=n[1]-a[1],t[2]=n[2]-a[2],t[3]=n[3]-a[3],t[4]=n[4]-a[4],t[5]=n[5]-a[5],t}a.create=function(){var t=new r.ARRAY_TYPE(6);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[4]=0,t[5]=0),t[0]=1,t[3]=1,t},a.clone=function(t){var n=new r.ARRAY_TYPE(6);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n},a.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t},a.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t},a.fromValues=function(t,n,a,u,e,o){var c=new r.ARRAY_TYPE(6);return c[0]=t,c[1]=n,c[2]=a,c[3]=u,c[4]=e,c[5]=o,c},a.set=function(t,n,a,r,u,e,o){return t[0]=n,t[1]=a,t[2]=r,t[3]=u,t[4]=e,t[5]=o,t},a.invert=function(t,n){var a=n[0],r=n[1],u=n[2],e=n[3],o=n[4],c=n[5],i=a*e-r*u;return i?(i=1/i,t[0]=e*i,t[1]=-r*i,t[2]=-u*i,t[3]=a*i,t[4]=(u*c-e*o)*i,t[5]=(r*o-a*c)*i,t):null},a.determinant=function(t){return t[0]*t[3]-t[1]*t[2]},a.multiply=u,a.rotate=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=Math.sin(a),f=Math.cos(a);return t[0]=r*f+e*s,t[1]=u*f+o*s,t[2]=r*-s+e*f,t[3]=u*-s+o*f,t[4]=c,t[5]=i,t},a.scale=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1];return t[0]=r*s,t[1]=u*s,t[2]=e*f,t[3]=o*f,t[4]=c,t[5]=i,t},a.translate=function(t,n,a){var r=n[0],u=n[1],e=n[2],o=n[3],c=n[4],i=n[5],s=a[0],f=a[1];return t[0]=r,t[1]=u,t[2]=e,t[3]=o,t[4]=r*s+e*f+c,t[5]=u*s+o*f+i,t},a.fromRotation=function(t,n){var a=Math.sin(n),r=Math.cos(n);return t[0]=r,t[1]=a,t[2]=-a,t[3]=r,t[4]=0,t[5]=0,t},a.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t[4]=0,t[5]=0,t},a.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=n[0],t[5]=n[1],t},a.str=function(t){return"mat2d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+")"},a.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],1)},a.add=function(t,n,a){return t[0]=n[0]+a[0],t[1]=n[1]+a[1],t[2]=n[2]+a[2],t[3]=n[3]+a[3],t[4]=n[4]+a[4],t[5]=n[5]+a[5],t},a.subtract=e,a.multiplyScalar=function(t,n,a){return t[0]=n[0]*a,t[1]=n[1]*a,t[2]=n[2]*a,t[3]=n[3]*a,t[4]=n[4]*a,t[5]=n[5]*a,t},a.multiplyScalarAndAdd=function(t,n,a,r){return t[0]=n[0]+a[0]*r,t[1]=n[1]+a[1]*r,t[2]=n[2]+a[2]*r,t[3]=n[3]+a[3]*r,t[4]=n[4]+a[4]*r,t[5]=n[5]+a[5]*r,t},a.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]&&t[4]===n[4]&&t[5]===n[5]},a.equals=function(t,n){var a=t[0],u=t[1],e=t[2],o=t[3],c=t[4],i=t[5],s=n[0],f=n[1],h=n[2],M=n[3],b=n[4],l=n[5];return Math.abs(a-s)<=r.EPSILON*Math.max(1,Math.abs(a),Math.abs(s))&&Math.abs(u-f)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(f))&&Math.abs(e-h)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(h))&&Math.abs(o-M)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(M))&&Math.abs(c-b)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(b))&&Math.abs(i-l)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(l))},a.mul=u,a.sub=e},n "0285c50a7e": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function u(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=n[0],b=n[1],l=n[2],m=n[3],v=n[4],E=n[5],P=n[6],S=n[7],d=n[8];return t[0]=f*r+b*e+l*s,t[1]=f*u+b*i+l*M,t[2]=f*o+b*c+l*h,t[3]=m*r+v*e+E*s,t[4]=m*u+v*i+E*M,t[5]=m*o+v*c+E*h,t[6]=P*r+S*e+d*s,t[7]=P*u+S*i+d*M,t[8]=P*o+S*c+d*h,t}function o(t,a,n){return t[0]=a[0]-n[0],t[1]=a[1]-n[1],t[2]=a[2]-n[2],t[3]=a[3]-n[3],t[4]=a[4]-n[4],t[5]=a[5]-n[5],t[6]=a[6]-n[6],t[7]=a[7]-n[7],t[8]=a[8]-n[8],t}n.create=function(){var t=new r.ARRAY_TYPE(9);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t},n.fromMat4=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[4],t[4]=a[5],t[5]=a[6],t[6]=a[8],t[7]=a[9],t[8]=a[10],t},n.clone=function(t){var a=new r.ARRAY_TYPE(9);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a[8]=t[8],a},n.copy=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t},n.fromValues=function(t,a,n,u,o,e,i,c,s){var M=new r.ARRAY_TYPE(9);return M[0]=t,M[1]=a,M[2]=n,M[3]=u,M[4]=o,M[5]=e,M[6]=i,M[7]=c,M[8]=s,M},n.set=function(t,a,n,r,u,o,e,i,c,s){return t[0]=a,t[1]=n,t[2]=r,t[3]=u,t[4]=o,t[5]=e,t[6]=i,t[7]=c,t[8]=s,t},n.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.transpose=function(t,a){if(t===a){var n=a[1],r=a[2],u=a[5];t[1]=a[3],t[2]=a[6],t[3]=n,t[5]=a[7],t[6]=r,t[7]=u}else t[0]=a[0],t[1]=a[3],t[2]=a[6],t[3]=a[1],t[4]=a[4],t[5]=a[7],t[6]=a[2],t[7]=a[5],t[8]=a[8];return t},n.invert=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8],h=M*e-i*s,f=-M*o+i*c,b=s*o-e*c,l=n*h+r*f+u*b;return l?(l=1/l,t[0]=h*l,t[1]=(-M*r+u*s)*l,t[2]=(i*r-u*e)*l,t[3]=f*l,t[4]=(M*n-u*c)*l,t[5]=(-i*n+u*o)*l,t[6]=b*l,t[7]=(-s*n+r*c)*l,t[8]=(e*n-r*o)*l,t):null},n.adjoint=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8];return t[0]=e*M-i*s,t[1]=u*s-r*M,t[2]=r*i-u*e,t[3]=i*c-o*M,t[4]=n*M-u*c,t[5]=u*o-n*i,t[6]=o*s-e*c,t[7]=r*c-n*s,t[8]=n*e-r*o,t},n.determinant=function(t){var a=t[0],n=t[1],r=t[2],u=t[3],o=t[4],e=t[5],i=t[6],c=t[7],s=t[8];return a*(s*o-e*c)+n*(-s*u+e*i)+r*(c*u-o*i)},n.multiply=u,n.translate=function(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=n[0],b=n[1];return t[0]=r,t[1]=u,t[2]=o,t[3]=e,t[4]=i,t[5]=c,t[6]=f*r+b*e+s,t[7]=f*u+b*i+M,t[8]=f*o+b*c+h,t},n.rotate=function(t,a,n){var r=a[0],u=a[1],o=a[2],e=a[3],i=a[4],c=a[5],s=a[6],M=a[7],h=a[8],f=Math.sin(n),b=Math.cos(n);return t[0]=b*r+f*e,t[1]=b*u+f*i,t[2]=b*o+f*c,t[3]=b*e-f*r,t[4]=b*i-f*u,t[5]=b*c-f*o,t[6]=s,t[7]=M,t[8]=h,t},n.scale=function(t,a,n){var r=n[0],u=n[1];return t[0]=r*a[0],t[1]=r*a[1],t[2]=r*a[2],t[3]=u*a[3],t[4]=u*a[4],t[5]=u*a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t},n.fromTranslation=function(t,a){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=a[0],t[7]=a[1],t[8]=1,t},n.fromRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=n,t[2]=0,t[3]=-n,t[4]=r,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromScaling=function(t,a){return t[0]=a[0],t[1]=0,t[2]=0,t[3]=0,t[4]=a[1],t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromMat2d=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=0,t[3]=a[2],t[4]=a[3],t[5]=0,t[6]=a[4],t[7]=a[5],t[8]=1,t},n.fromQuat=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=n+n,i=r+r,c=u+u,s=n*e,M=r*e,h=r*i,f=u*e,b=u*i,l=u*c,m=o*e,v=o*i,E=o*c;return t[0]=1-h-l,t[3]=M-E,t[6]=f+v,t[1]=M+E,t[4]=1-s-l,t[7]=b-m,t[2]=f-v,t[5]=b+m,t[8]=1-s-h,t},n.normalFromMat4=function(t,a){var n=a[0],r=a[1],u=a[2],o=a[3],e=a[4],i=a[5],c=a[6],s=a[7],M=a[8],h=a[9],f=a[10],b=a[11],l=a[12],m=a[13],v=a[14],E=a[15],P=n*i-r*e,S=n*c-u*e,d=n*s-o*e,A=r*c-u*i,x=r*s-o*i,O=u*s-o*c,p=M*m-h*l,I=M*v-f*l,L=M*E-b*l,N=h*v-f*m,R=h*E-b*m,_=f*E-b*v,y=P*_-S*R+d*N+A*L-x*I+O*p;return y?(y=1/y,t[0]=(i*_-c*R+s*N)*y,t[1]=(c*L-e*_-s*I)*y,t[2]=(e*R-i*L+s*p)*y,t[3]=(u*R-r*_-o*N)*y,t[4]=(n*_-u*L+o*I)*y,t[5]=(r*L-n*R-o*p)*y,t[6]=(m*O-v*x+E*A)*y,t[7]=(v*d-l*O-E*S)*y,t[8]=(l*x-m*d+E*P)*y,t):null},n.projection=function(t,a,n){return t[0]=2/a,t[1]=0,t[2]=0,t[3]=0,t[4]=-2/n,t[5]=0,t[6]=-1,t[7]=1,t[8]=1,t},n.str=function(t){return"mat3("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+")"},n.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8])},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t[8]=a[8]+n[8],t},n.subtract=o,n.multiplyScalar=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t[8]=a[8]*n,t},n.multiplyScalarAndAdd=function(t,a,n,r){return t[0]=a[0]+n[0]*r,t[1]=a[1]+n[1]*r,t[2]=a[2]+n[2]*r,t[3]=a[3]+n[3]*r,t[4]=a[4]+n[4]*r,t[5]=a[5]+n[5]*r,t[6]=a[6]+n[6]*r,t[7]=a[7]+n[7]*r,t[8]=a[8]+n[8]*r,t},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]&&t[8]===a[8]},n.equals=function(t,a){var n=t[0],u=t[1],o=t[2],e=t[3],i=t[4],c=t[5],s=t[6],M=t[7],h=t[8],f=a[0],b=a[1],l=a[2],m=a[3],v=a[4],E=a[5],P=a[6],S=a[7],d=a[8];return Math.abs(n-f)<=r.EPSILON*Math.max(1,Math.abs(n),Math.abs(f))&&Math.abs(u-b)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(b))&&Math.abs(o-l)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(l))&&Math.abs(e-m)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(m))&&Math.abs(i-v)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(v))&&Math.abs(c-E)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(E))&&Math.abs(s-P)<=r.EPSILON*Math.max(1,Math.abs(s),Math.abs(P))&&Math.abs(M-S)<=r.EPSILON*Math.max(1,Math.abs(M),Math.abs(S))&&Math.abs(h-d)<=r.EPSILON*Math.max(1,Math.abs(h),Math.abs(d))},n.mul=u,n.sub=o},n "a427635f32": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib").__importStar(t("68ca94c15c"));function h(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function o(t,a,n){var r=a[0],h=a[1],o=a[2],u=a[3],M=a[4],e=a[5],s=a[6],i=a[7],c=a[8],f=a[9],b=a[10],l=a[11],v=a[12],m=a[13],P=a[14],E=a[15],S=n[0],I=n[1],O=n[2],p=n[3];return t[0]=S*r+I*M+O*c+p*v,t[1]=S*h+I*e+O*f+p*m,t[2]=S*o+I*s+O*b+p*P,t[3]=S*u+I*i+O*l+p*E,S=n[4],I=n[5],O=n[6],p=n[7],t[4]=S*r+I*M+O*c+p*v,t[5]=S*h+I*e+O*f+p*m,t[6]=S*o+I*s+O*b+p*P,t[7]=S*u+I*i+O*l+p*E,S=n[8],I=n[9],O=n[10],p=n[11],t[8]=S*r+I*M+O*c+p*v,t[9]=S*h+I*e+O*f+p*m,t[10]=S*o+I*s+O*b+p*P,t[11]=S*u+I*i+O*l+p*E,S=n[12],I=n[13],O=n[14],p=n[15],t[12]=S*r+I*M+O*c+p*v,t[13]=S*h+I*e+O*f+p*m,t[14]=S*o+I*s+O*b+p*P,t[15]=S*u+I*i+O*l+p*E,t}function u(t,a,n){var r=a[0],h=a[1],o=a[2],u=a[3],M=r+r,e=h+h,s=o+o,i=r*M,c=r*e,f=r*s,b=h*e,l=h*s,v=o*s,m=u*M,P=u*e,E=u*s;return t[0]=1-(b+v),t[1]=c+E,t[2]=f-P,t[3]=0,t[4]=c-E,t[5]=1-(i+v),t[6]=l+m,t[7]=0,t[8]=f+P,t[9]=l-m,t[10]=1-(i+b),t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t}function M(t,a){var n=a[0],r=a[1],h=a[2],o=a[4],u=a[5],M=a[6],e=a[8],s=a[9],i=a[10];return t[0]=Math.hypot(n,r,h),t[1]=Math.hypot(o,u,M),t[2]=Math.hypot(e,s,i),t}function e(t,a,n){return t[0]=a[0]-n[0],t[1]=a[1]-n[1],t[2]=a[2]-n[2],t[3]=a[3]-n[3],t[4]=a[4]-n[4],t[5]=a[5]-n[5],t[6]=a[6]-n[6],t[7]=a[7]-n[7],t[8]=a[8]-n[8],t[9]=a[9]-n[9],t[10]=a[10]-n[10],t[11]=a[11]-n[11],t[12]=a[12]-n[12],t[13]=a[13]-n[13],t[14]=a[14]-n[14],t[15]=a[15]-n[15],t}n.create=function(){var t=new r.ARRAY_TYPE(16);return r.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t},n.clone=function(t){var a=new r.ARRAY_TYPE(16);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a[8]=t[8],a[9]=t[9],a[10]=t[10],a[11]=t[11],a[12]=t[12],a[13]=t[13],a[14]=t[14],a[15]=t[15],a},n.copy=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[8]=a[8],t[9]=a[9],t[10]=a[10],t[11]=a[11],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15],t},n.fromValues=function(t,a,n,h,o,u,M,e,s,i,c,f,b,l,v,m){var P=new r.ARRAY_TYPE(16);return P[0]=t,P[1]=a,P[2]=n,P[3]=h,P[4]=o,P[5]=u,P[6]=M,P[7]=e,P[8]=s,P[9]=i,P[10]=c,P[11]=f,P[12]=b,P[13]=l,P[14]=v,P[15]=m,P},n.set=function(t,a,n,r,h,o,u,M,e,s,i,c,f,b,l,v,m){return t[0]=a,t[1]=n,t[2]=r,t[3]=h,t[4]=o,t[5]=u,t[6]=M,t[7]=e,t[8]=s,t[9]=i,t[10]=c,t[11]=f,t[12]=b,t[13]=l,t[14]=v,t[15]=m,t},n.identity=h,n.transpose=function(t,a){if(t===a){var n=a[1],r=a[2],h=a[3],o=a[6],u=a[7],M=a[11];t[1]=a[4],t[2]=a[8],t[3]=a[12],t[4]=n,t[6]=a[9],t[7]=a[13],t[8]=r,t[9]=o,t[11]=a[14],t[12]=h,t[13]=u,t[14]=M}else t[0]=a[0],t[1]=a[4],t[2]=a[8],t[3]=a[12],t[4]=a[1],t[5]=a[5],t[6]=a[9],t[7]=a[13],t[8]=a[2],t[9]=a[6],t[10]=a[10],t[11]=a[14],t[12]=a[3],t[13]=a[7],t[14]=a[11],t[15]=a[15];return t},n.invert=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=a[4],M=a[5],e=a[6],s=a[7],i=a[8],c=a[9],f=a[10],b=a[11],l=a[12],v=a[13],m=a[14],P=a[15],E=n*M-r*u,S=n*e-h*u,I=n*s-o*u,O=r*e-h*M,p=r*s-o*M,L=h*s-o*e,N=i*v-c*l,R=i*m-f*l,x=i*P-b*l,y=c*m-f*v,A=c*P-b*v,Y=f*P-b*m,d=E*Y-S*A+I*y+O*x-p*R+L*N;return d?(d=1/d,t[0]=(M*Y-e*A+s*y)*d,t[1]=(h*A-r*Y-o*y)*d,t[2]=(v*L-m*p+P*O)*d,t[3]=(f*p-c*L-b*O)*d,t[4]=(e*x-u*Y-s*R)*d,t[5]=(n*Y-h*x+o*R)*d,t[6]=(m*I-l*L-P*S)*d,t[7]=(i*L-f*I+b*S)*d,t[8]=(u*A-M*x+s*N)*d,t[9]=(r*x-n*A-o*N)*d,t[10]=(l*p-v*I+P*E)*d,t[11]=(c*I-i*p-b*E)*d,t[12]=(M*R-u*y-e*N)*d,t[13]=(n*y-r*R+h*N)*d,t[14]=(v*S-l*O-m*E)*d,t[15]=(i*O-c*S+f*E)*d,t):null},n.adjoint=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=a[4],M=a[5],e=a[6],s=a[7],i=a[8],c=a[9],f=a[10],b=a[11],l=a[12],v=a[13],m=a[14],P=a[15];return t[0]=M*(f*P-b*m)-c*(e*P-s*m)+v*(e*b-s*f),t[1]=-(r*(f*P-b*m)-c*(h*P-o*m)+v*(h*b-o*f)),t[2]=r*(e*P-s*m)-M*(h*P-o*m)+v*(h*s-o*e),t[3]=-(r*(e*b-s*f)-M*(h*b-o*f)+c*(h*s-o*e)),t[4]=-(u*(f*P-b*m)-i*(e*P-s*m)+l*(e*b-s*f)),t[5]=n*(f*P-b*m)-i*(h*P-o*m)+l*(h*b-o*f),t[6]=-(n*(e*P-s*m)-u*(h*P-o*m)+l*(h*s-o*e)),t[7]=n*(e*b-s*f)-u*(h*b-o*f)+i*(h*s-o*e),t[8]=u*(c*P-b*v)-i*(M*P-s*v)+l*(M*b-s*c),t[9]=-(n*(c*P-b*v)-i*(r*P-o*v)+l*(r*b-o*c)),t[10]=n*(M*P-s*v)-u*(r*P-o*v)+l*(r*s-o*M),t[11]=-(n*(M*b-s*c)-u*(r*b-o*c)+i*(r*s-o*M)),t[12]=-(u*(c*m-f*v)-i*(M*m-e*v)+l*(M*f-e*c)),t[13]=n*(c*m-f*v)-i*(r*m-h*v)+l*(r*f-h*c),t[14]=-(n*(M*m-e*v)-u*(r*m-h*v)+l*(r*e-h*M)),t[15]=n*(M*f-e*c)-u*(r*f-h*c)+i*(r*e-h*M),t},n.determinant=function(t){var a=t[0],n=t[1],r=t[2],h=t[3],o=t[4],u=t[5],M=t[6],e=t[7],s=t[8],i=t[9],c=t[10],f=t[11],b=t[12],l=t[13],v=t[14],m=t[15];return(a*u-n*o)*(c*m-f*v)-(a*M-r*o)*(i*m-f*l)+(a*e-h*o)*(i*v-c*l)+(n*M-r*u)*(s*m-f*b)-(n*e-h*u)*(s*v-c*b)+(r*e-h*M)*(s*l-i*b)},n.multiply=o,n.translate=function(t,a,n){var r,h,o,u,M,e,s,i,c,f,b,l,v=n[0],m=n[1],P=n[2];return a===t?(t[12]=a[0]*v+a[4]*m+a[8]*P+a[12],t[13]=a[1]*v+a[5]*m+a[9]*P+a[13],t[14]=a[2]*v+a[6]*m+a[10]*P+a[14],t[15]=a[3]*v+a[7]*m+a[11]*P+a[15]):(r=a[0],h=a[1],o=a[2],u=a[3],M=a[4],e=a[5],s=a[6],i=a[7],c=a[8],f=a[9],b=a[10],l=a[11],t[0]=r,t[1]=h,t[2]=o,t[3]=u,t[4]=M,t[5]=e,t[6]=s,t[7]=i,t[8]=c,t[9]=f,t[10]=b,t[11]=l,t[12]=r*v+M*m+c*P+a[12],t[13]=h*v+e*m+f*P+a[13],t[14]=o*v+s*m+b*P+a[14],t[15]=u*v+i*m+l*P+a[15]),t},n.scale=function(t,a,n){var r=n[0],h=n[1],o=n[2];return t[0]=a[0]*r,t[1]=a[1]*r,t[2]=a[2]*r,t[3]=a[3]*r,t[4]=a[4]*h,t[5]=a[5]*h,t[6]=a[6]*h,t[7]=a[7]*h,t[8]=a[8]*o,t[9]=a[9]*o,t[10]=a[10]*o,t[11]=a[11]*o,t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15],t},n.rotate=function(t,a,n,h){var o,u,M,e,s,i,c,f,b,l,v,m,P,E,S,I,O,p,L,N,R,x,y,A,Y=h[0],d=h[1],g=h[2],T=Math.hypot(Y,d,g);return T<r.EPSILON?null:(Y*=T=1/T,d*=T,g*=T,o=Math.sin(n),M=1-(u=Math.cos(n)),e=a[0],s=a[1],i=a[2],c=a[3],f=a[4],b=a[5],l=a[6],v=a[7],m=a[8],P=a[9],E=a[10],S=a[11],I=Y*Y*M+u,O=d*Y*M+g*o,p=g*Y*M-d*o,L=Y*d*M-g*o,N=d*d*M+u,R=g*d*M+Y*o,x=Y*g*M+d*o,y=d*g*M-Y*o,A=g*g*M+u,t[0]=e*I+f*O+m*p,t[1]=s*I+b*O+P*p,t[2]=i*I+l*O+E*p,t[3]=c*I+v*O+S*p,t[4]=e*L+f*N+m*R,t[5]=s*L+b*N+P*R,t[6]=i*L+l*N+E*R,t[7]=c*L+v*N+S*R,t[8]=e*x+f*y+m*A,t[9]=s*x+b*y+P*A,t[10]=i*x+l*y+E*A,t[11]=c*x+v*y+S*A,a!==t&&(t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t)},n.rotateX=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[4],u=a[5],M=a[6],e=a[7],s=a[8],i=a[9],c=a[10],f=a[11];return a!==t&&(t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[4]=o*h+s*r,t[5]=u*h+i*r,t[6]=M*h+c*r,t[7]=e*h+f*r,t[8]=s*h-o*r,t[9]=i*h-u*r,t[10]=c*h-M*r,t[11]=f*h-e*r,t},n.rotateY=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[0],u=a[1],M=a[2],e=a[3],s=a[8],i=a[9],c=a[10],f=a[11];return a!==t&&(t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[0]=o*h-s*r,t[1]=u*h-i*r,t[2]=M*h-c*r,t[3]=e*h-f*r,t[8]=o*r+s*h,t[9]=u*r+i*h,t[10]=M*r+c*h,t[11]=e*r+f*h,t},n.rotateZ=function(t,a,n){var r=Math.sin(n),h=Math.cos(n),o=a[0],u=a[1],M=a[2],e=a[3],s=a[4],i=a[5],c=a[6],f=a[7];return a!==t&&(t[8]=a[8],t[9]=a[9],t[10]=a[10],t[11]=a[11],t[12]=a[12],t[13]=a[13],t[14]=a[14],t[15]=a[15]),t[0]=o*h+s*r,t[1]=u*h+i*r,t[2]=M*h+c*r,t[3]=e*h+f*r,t[4]=s*h-o*r,t[5]=i*h-u*r,t[6]=c*h-M*r,t[7]=f*h-e*r,t},n.fromTranslation=function(t,a){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=a[0],t[13]=a[1],t[14]=a[2],t[15]=1,t},n.fromScaling=function(t,a){return t[0]=a[0],t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=a[1],t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=a[2],t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotation=function(t,a,n){var h,o,u,M=n[0],e=n[1],s=n[2],i=Math.hypot(M,e,s);return i<r.EPSILON?null:(M*=i=1/i,e*=i,s*=i,h=Math.sin(a),u=1-(o=Math.cos(a)),t[0]=M*M*u+o,t[1]=e*M*u+s*h,t[2]=s*M*u-e*h,t[3]=0,t[4]=M*e*u-s*h,t[5]=e*e*u+o,t[6]=s*e*u+M*h,t[7]=0,t[8]=M*s*u+e*h,t[9]=e*s*u-M*h,t[10]=s*s*u+o,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t)},n.fromXRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=r,t[6]=n,t[7]=0,t[8]=0,t[9]=-n,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromYRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=0,t[2]=-n,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=n,t[9]=0,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromZRotation=function(t,a){var n=Math.sin(a),r=Math.cos(a);return t[0]=r,t[1]=n,t[2]=0,t[3]=0,t[4]=-n,t[5]=r,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotationTranslation=u,n.fromQuat2=function(t,a){var n=new r.ARRAY_TYPE(3),h=-a[0],o=-a[1],M=-a[2],e=a[3],s=a[4],i=a[5],c=a[6],f=a[7],b=h*h+o*o+M*M+e*e;return b>0?(n[0]=2*(s*e+f*h+i*M-c*o)/b,n[1]=2*(i*e+f*o+c*h-s*M)/b,n[2]=2*(c*e+f*M+s*o-i*h)/b):(n[0]=2*(s*e+f*h+i*M-c*o),n[1]=2*(i*e+f*o+c*h-s*M),n[2]=2*(c*e+f*M+s*o-i*h)),u(t,a,n),t},n.getTranslation=function(t,a){return t[0]=a[12],t[1]=a[13],t[2]=a[14],t},n.getScaling=M,n.getRotation=function(t,a){var n=new r.ARRAY_TYPE(3);M(n,a);var h=1/n[0],o=1/n[1],u=1/n[2],e=a[0]*h,s=a[1]*o,i=a[2]*u,c=a[4]*h,f=a[5]*o,b=a[6]*u,l=a[8]*h,v=a[9]*o,m=a[10]*u,P=e+f+m,E=0;return P>0?(E=2*Math.sqrt(P+1),t[3]=.25*E,t[0]=(b-v)/E,t[1]=(l-i)/E,t[2]=(s-c)/E):e>f&&e>m?(E=2*Math.sqrt(1+e-f-m),t[3]=(b-v)/E,t[0]=.25*E,t[1]=(s+c)/E,t[2]=(l+i)/E):f>m?(E=2*Math.sqrt(1+f-e-m),t[3]=(l-i)/E,t[0]=(s+c)/E,t[1]=.25*E,t[2]=(b+v)/E):(E=2*Math.sqrt(1+m-e-f),t[3]=(s-c)/E,t[0]=(l+i)/E,t[1]=(b+v)/E,t[2]=.25*E),t},n.fromRotationTranslationScale=function(t,a,n,r){var h=a[0],o=a[1],u=a[2],M=a[3],e=h+h,s=o+o,i=u+u,c=h*e,f=h*s,b=h*i,l=o*s,v=o*i,m=u*i,P=M*e,E=M*s,S=M*i,I=r[0],O=r[1],p=r[2];return t[0]=(1-(l+m))*I,t[1]=(f+S)*I,t[2]=(b-E)*I,t[3]=0,t[4]=(f-S)*O,t[5]=(1-(c+m))*O,t[6]=(v+P)*O,t[7]=0,t[8]=(b+E)*p,t[9]=(v-P)*p,t[10]=(1-(c+l))*p,t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t},n.fromRotationTranslationScaleOrigin=function(t,a,n,r,h){var o=a[0],u=a[1],M=a[2],e=a[3],s=o+o,i=u+u,c=M+M,f=o*s,b=o*i,l=o*c,v=u*i,m=u*c,P=M*c,E=e*s,S=e*i,I=e*c,O=r[0],p=r[1],L=r[2],N=h[0],R=h[1],x=h[2],y=(1-(v+P))*O,A=(b+I)*O,Y=(l-S)*O,d=(b-I)*p,g=(1-(f+P))*p,T=(m+E)*p,_=(l+S)*L,q=(m-E)*L,w=(1-(f+v))*L;return t[0]=y,t[1]=A,t[2]=Y,t[3]=0,t[4]=d,t[5]=g,t[6]=T,t[7]=0,t[8]=_,t[9]=q,t[10]=w,t[11]=0,t[12]=n[0]+N-(y*N+d*R+_*x),t[13]=n[1]+R-(A*N+g*R+q*x),t[14]=n[2]+x-(Y*N+T*R+w*x),t[15]=1,t},n.fromQuat=function(t,a){var n=a[0],r=a[1],h=a[2],o=a[3],u=n+n,M=r+r,e=h+h,s=n*u,i=r*u,c=r*M,f=h*u,b=h*M,l=h*e,v=o*u,m=o*M,P=o*e;return t[0]=1-c-l,t[1]=i+P,t[2]=f-m,t[3]=0,t[4]=i-P,t[5]=1-s-l,t[6]=b+v,t[7]=0,t[8]=f+m,t[9]=b-v,t[10]=1-s-c,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.frustum=function(t,a,n,r,h,o,u){var M=1/(n-a),e=1/(h-r),s=1/(o-u);return t[0]=2*o*M,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=2*o*e,t[6]=0,t[7]=0,t[8]=(n+a)*M,t[9]=(h+r)*e,t[10]=(u+o)*s,t[11]=-1,t[12]=0,t[13]=0,t[14]=u*o*2*s,t[15]=0,t},n.perspective=function(t,a,n,r,h){var o,u=1/Math.tan(a/2);return t[0]=u/n,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=u,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=h&&h!==1/0?(o=1/(r-h),t[10]=(h+r)*o,t[14]=2*h*r*o):(t[10]=-1,t[14]=-2*r),t},n.perspectiveFromFieldOfView=function(t,a,n,r){var h=Math.tan(a.upDegrees*Math.PI/180),o=Math.tan(a.downDegrees*Math.PI/180),u=Math.tan(a.leftDegrees*Math.PI/180),M=Math.tan(a.rightDegrees*Math.PI/180),e=2/(u+M),s=2/(h+o);return t[0]=e,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=s,t[6]=0,t[7]=0,t[8]=-(u-M)*e*.5,t[9]=(h-o)*s*.5,t[10]=r/(n-r),t[11]=-1,t[12]=0,t[13]=0,t[14]=r*n/(n-r),t[15]=0,t},n.ortho=function(t,a,n,r,h,o,u){var M=1/(a-n),e=1/(r-h),s=1/(o-u);return t[0]=-2*M,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*e,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*s,t[11]=0,t[12]=(a+n)*M,t[13]=(h+r)*e,t[14]=(u+o)*s,t[15]=1,t},n.lookAt=function(t,a,n,o){var u,M,e,s,i,c,f,b,l,v,m=a[0],P=a[1],E=a[2],S=o[0],I=o[1],O=o[2],p=n[0],L=n[1],N=n[2];return Math.abs(m-p)<r.EPSILON&&Math.abs(P-L)<r.EPSILON&&Math.abs(E-N)<r.EPSILON?h(t):(f=m-p,b=P-L,l=E-N,u=I*(l*=v=1/Math.hypot(f,b,l))-O*(b*=v),M=O*(f*=v)-S*l,e=S*b-I*f,(v=Math.hypot(u,M,e))?(u*=v=1/v,M*=v,e*=v):(u=0,M=0,e=0),s=b*e-l*M,i=l*u-f*e,c=f*M-b*u,(v=Math.hypot(s,i,c))?(s*=v=1/v,i*=v,c*=v):(s=0,i=0,c=0),t[0]=u,t[1]=s,t[2]=f,t[3]=0,t[4]=M,t[5]=i,t[6]=b,t[7]=0,t[8]=e,t[9]=c,t[10]=l,t[11]=0,t[12]=-(u*m+M*P+e*E),t[13]=-(s*m+i*P+c*E),t[14]=-(f*m+b*P+l*E),t[15]=1,t)},n.targetTo=function(t,a,n,r){var h=a[0],o=a[1],u=a[2],M=r[0],e=r[1],s=r[2],i=h-n[0],c=o-n[1],f=u-n[2],b=i*i+c*c+f*f;b>0&&(i*=b=1/Math.sqrt(b),c*=b,f*=b);var l=e*f-s*c,v=s*i-M*f,m=M*c-e*i;return(b=l*l+v*v+m*m)>0&&(l*=b=1/Math.sqrt(b),v*=b,m*=b),t[0]=l,t[1]=v,t[2]=m,t[3]=0,t[4]=c*m-f*v,t[5]=f*l-i*m,t[6]=i*v-c*l,t[7]=0,t[8]=i,t[9]=c,t[10]=f,t[11]=0,t[12]=h,t[13]=o,t[14]=u,t[15]=1,t},n.str=function(t){return"mat4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+", "+t[9]+", "+t[10]+", "+t[11]+", "+t[12]+", "+t[13]+", "+t[14]+", "+t[15]+")"},n.frob=function(t){return Math.hypot(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8],t[9],t[10],t[11],t[12],t[13],t[14],t[15])},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t[8]=a[8]+n[8],t[9]=a[9]+n[9],t[10]=a[10]+n[10],t[11]=a[11]+n[11],t[12]=a[12]+n[12],t[13]=a[13]+n[13],t[14]=a[14]+n[14],t[15]=a[15]+n[15],t},n.subtract=e,n.multiplyScalar=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t[8]=a[8]*n,t[9]=a[9]*n,t[10]=a[10]*n,t[11]=a[11]*n,t[12]=a[12]*n,t[13]=a[13]*n,t[14]=a[14]*n,t[15]=a[15]*n,t},n.multiplyScalarAndAdd=function(t,a,n,r){return t[0]=a[0]+n[0]*r,t[1]=a[1]+n[1]*r,t[2]=a[2]+n[2]*r,t[3]=a[3]+n[3]*r,t[4]=a[4]+n[4]*r,t[5]=a[5]+n[5]*r,t[6]=a[6]+n[6]*r,t[7]=a[7]+n[7]*r,t[8]=a[8]+n[8]*r,t[9]=a[9]+n[9]*r,t[10]=a[10]+n[10]*r,t[11]=a[11]+n[11]*r,t[12]=a[12]+n[12]*r,t[13]=a[13]+n[13]*r,t[14]=a[14]+n[14]*r,t[15]=a[15]+n[15]*r,t},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]&&t[8]===a[8]&&t[9]===a[9]&&t[10]===a[10]&&t[11]===a[11]&&t[12]===a[12]&&t[13]===a[13]&&t[14]===a[14]&&t[15]===a[15]},n.equals=function(t,a){var n=t[0],h=t[1],o=t[2],u=t[3],M=t[4],e=t[5],s=t[6],i=t[7],c=t[8],f=t[9],b=t[10],l=t[11],v=t[12],m=t[13],P=t[14],E=t[15],S=a[0],I=a[1],O=a[2],p=a[3],L=a[4],N=a[5],R=a[6],x=a[7],y=a[8],A=a[9],Y=a[10],d=a[11],g=a[12],T=a[13],_=a[14],q=a[15];return Math.abs(n-S)<=r.EPSILON*Math.max(1,Math.abs(n),Math.abs(S))&&Math.abs(h-I)<=r.EPSILON*Math.max(1,Math.abs(h),Math.abs(I))&&Math.abs(o-O)<=r.EPSILON*Math.max(1,Math.abs(o),Math.abs(O))&&Math.abs(u-p)<=r.EPSILON*Math.max(1,Math.abs(u),Math.abs(p))&&Math.abs(M-L)<=r.EPSILON*Math.max(1,Math.abs(M),Math.abs(L))&&Math.abs(e-N)<=r.EPSILON*Math.max(1,Math.abs(e),Math.abs(N))&&Math.abs(s-R)<=r.EPSILON*Math.max(1,Math.abs(s),Math.abs(R))&&Math.abs(i-x)<=r.EPSILON*Math.max(1,Math.abs(i),Math.abs(x))&&Math.abs(c-y)<=r.EPSILON*Math.max(1,Math.abs(c),Math.abs(y))&&Math.abs(f-A)<=r.EPSILON*Math.max(1,Math.abs(f),Math.abs(A))&&Math.abs(b-Y)<=r.EPSILON*Math.max(1,Math.abs(b),Math.abs(Y))&&Math.abs(l-d)<=r.EPSILON*Math.max(1,Math.abs(l),Math.abs(d))&&Math.abs(v-g)<=r.EPSILON*Math.max(1,Math.abs(v),Math.abs(g))&&Math.abs(m-T)<=r.EPSILON*Math.max(1,Math.abs(m),Math.abs(T))&&Math.abs(P-_)<=r.EPSILON*Math.max(1,Math.abs(P),Math.abs(_))&&Math.abs(E-q)<=r.EPSILON*Math.max(1,Math.abs(E),Math.abs(q))},n.mul=o,n.sub=e},n "eb06fc032a": function _(t,r,a){Object.defineProperty(a,"__esModule",{value:!0});const n=t("tslib"),e=n.__importStar(t("68ca94c15c")),o=n.__importStar(t("0285c50a7e")),s=n.__importStar(t("2c5eb22089")),u=n.__importStar(t("c1aa33d719"));function c(){var t=new e.ARRAY_TYPE(4);return e.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t[3]=1,t}function i(t,r,a){a*=.5;var n=Math.sin(a);return t[0]=n*r[0],t[1]=n*r[1],t[2]=n*r[2],t[3]=Math.cos(a),t}function h(t,r,a){var n=r[0],e=r[1],o=r[2],s=r[3],u=a[0],c=a[1],i=a[2],h=a[3];return t[0]=n*h+s*u+e*i-o*c,t[1]=e*h+s*c+o*u-n*i,t[2]=o*h+s*i+n*c-e*u,t[3]=s*h-n*u-e*c-o*i,t}function M(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=Math.sqrt(a*a+n*n+e*e),u=Math.exp(o),c=s>0?u*Math.sin(s)/s:0;return t[0]=a*c,t[1]=n*c,t[2]=e*c,t[3]=u*Math.cos(s),t}function l(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=Math.sqrt(a*a+n*n+e*e),u=s>0?Math.atan2(s,o)/s:0;return t[0]=a*u,t[1]=n*u,t[2]=e*u,t[3]=.5*Math.log(a*a+n*n+e*e+o*o),t}function f(t,r,a,n){var o,s,u,c,i,h=r[0],M=r[1],l=r[2],f=r[3],v=a[0],m=a[1],q=a[2],d=a[3];return(s=h*v+M*m+l*q+f*d)<0&&(s=-s,v=-v,m=-m,q=-q,d=-d),1-s>e.EPSILON?(o=Math.acos(s),u=Math.sin(o),c=Math.sin((1-n)*o)/u,i=Math.sin(n*o)/u):(c=1-n,i=n),t[0]=c*h+i*v,t[1]=c*M+i*m,t[2]=c*l+i*q,t[3]=c*f+i*d,t}function v(t,r){var a,n=r[0]+r[4]+r[8];if(n>0)a=Math.sqrt(n+1),t[3]=.5*a,a=.5/a,t[0]=(r[5]-r[7])*a,t[1]=(r[6]-r[2])*a,t[2]=(r[1]-r[3])*a;else{var e=0;r[4]>r[0]&&(e=1),r[8]>r[3*e+e]&&(e=2);var o=(e+1)%3,s=(e+2)%3;a=Math.sqrt(r[3*e+e]-r[3*o+o]-r[3*s+s]+1),t[e]=.5*a,a=.5/a,t[3]=(r[3*o+s]-r[3*s+o])*a,t[o]=(r[3*o+e]+r[3*e+o])*a,t[s]=(r[3*s+e]+r[3*e+s])*a}return t}var m,q,d,p,A,g;a.create=c,a.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t},a.setAxisAngle=i,a.getAxisAngle=function(t,r){var a=2*Math.acos(r[3]),n=Math.sin(a/2);return n>e.EPSILON?(t[0]=r[0]/n,t[1]=r[1]/n,t[2]=r[2]/n):(t[0]=1,t[1]=0,t[2]=0),a},a.getAngle=function(t,r){var n=a.dot(t,r);return Math.acos(2*n*n-1)},a.multiply=h,a.rotateX=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c+s*u,t[1]=e*c+o*u,t[2]=o*c-e*u,t[3]=s*c-n*u,t},a.rotateY=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c-o*u,t[1]=e*c+s*u,t[2]=o*c+n*u,t[3]=s*c-e*u,t},a.rotateZ=function(t,r,a){a*=.5;var n=r[0],e=r[1],o=r[2],s=r[3],u=Math.sin(a),c=Math.cos(a);return t[0]=n*c+e*u,t[1]=e*c-n*u,t[2]=o*c+s*u,t[3]=s*c-o*u,t},a.calculateW=function(t,r){var a=r[0],n=r[1],e=r[2];return t[0]=a,t[1]=n,t[2]=e,t[3]=Math.sqrt(Math.abs(1-a*a-n*n-e*e)),t},a.exp=M,a.ln=l,a.pow=function(t,r,n){return l(t,r),a.scale(t,t,n),M(t,t),t},a.slerp=f,a.random=function(t){var r=e.RANDOM(),a=e.RANDOM(),n=e.RANDOM(),o=Math.sqrt(1-r),s=Math.sqrt(r);return t[0]=o*Math.sin(2*Math.PI*a),t[1]=o*Math.cos(2*Math.PI*a),t[2]=s*Math.sin(2*Math.PI*n),t[3]=s*Math.cos(2*Math.PI*n),t},a.invert=function(t,r){var a=r[0],n=r[1],e=r[2],o=r[3],s=a*a+n*n+e*e+o*o,u=s?1/s:0;return t[0]=-a*u,t[1]=-n*u,t[2]=-e*u,t[3]=o*u,t},a.conjugate=function(t,r){return t[0]=-r[0],t[1]=-r[1],t[2]=-r[2],t[3]=r[3],t},a.fromMat3=v,a.fromEuler=function(t,r,a,n){var e=.5*Math.PI/180;r*=e,a*=e,n*=e;var o=Math.sin(r),s=Math.cos(r),u=Math.sin(a),c=Math.cos(a),i=Math.sin(n),h=Math.cos(n);return t[0]=o*c*h-s*u*i,t[1]=s*u*h+o*c*i,t[2]=s*c*i-o*u*h,t[3]=s*c*h+o*u*i,t},a.str=function(t){return"quat("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},a.clone=u.clone,a.fromValues=u.fromValues,a.copy=u.copy,a.set=u.set,a.add=u.add,a.mul=h,a.scale=u.scale,a.dot=u.dot,a.lerp=u.lerp,a.length=u.length,a.len=a.length,a.squaredLength=u.squaredLength,a.sqrLen=a.squaredLength,a.normalize=u.normalize,a.exactEquals=u.exactEquals,a.equals=u.equals,a.rotationTo=(m=s.create(),q=s.fromValues(1,0,0),d=s.fromValues(0,1,0),function(t,r,n){var e=s.dot(r,n);return e<-.999999?(s.cross(m,q,r),s.len(m)<1e-6&&s.cross(m,d,r),s.normalize(m,m),i(t,m,Math.PI),t):e>.999999?(t[0]=0,t[1]=0,t[2]=0,t[3]=1,t):(s.cross(m,r,n),t[0]=m[0],t[1]=m[1],t[2]=m[2],t[3]=1+e,a.normalize(t,t))}),a.sqlerp=(p=c(),A=c(),function(t,r,a,n,e,o){return f(p,r,e,o),f(A,a,n,o),f(t,p,A,2*o*(1-o)),t}),a.setAxes=(g=o.create(),function(t,r,n,e){return g[0]=n[0],g[3]=n[1],g[6]=n[2],g[1]=e[0],g[4]=e[1],g[7]=e[2],g[2]=-r[0],g[5]=-r[1],g[8]=-r[2],a.normalize(t,v(t,g))})},n "2c5eb22089": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(){var t=new a.ARRAY_TYPE(3);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t}function e(t){var n=t[0],r=t[1],a=t[2];return Math.hypot(n,r,a)}function o(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t}function i(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t}function c(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t}function h(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2];return Math.hypot(r,a,u)}function M(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2];return r*r+a*a+u*u}function s(t){var n=t[0],r=t[1],a=t[2];return n*n+r*r+a*a}function f(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}var l;r.create=u,r.clone=function(t){var n=new a.ARRAY_TYPE(3);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n},r.length=e,r.fromValues=function(t,n,r){var u=new a.ARRAY_TYPE(3);return u[0]=t,u[1]=n,u[2]=r,u},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t},r.set=function(t,n,r,a){return t[0]=n,t[1]=r,t[2]=a,t},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t},r.subtract=o,r.multiply=i,r.divide=c,r.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t},r.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t},r.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t},r.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t},r.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t},r.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t},r.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t},r.distance=h,r.squaredDistance=M,r.squaredLength=s,r.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t},r.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t},r.normalize=function(t,n){var r=n[0],a=n[1],u=n[2],e=r*r+a*a+u*u;return e>0&&(e=1/Math.sqrt(e)),t[0]=n[0]*e,t[1]=n[1]*e,t[2]=n[2]*e,t},r.dot=f,r.cross=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[0],i=r[1],c=r[2];return t[0]=u*c-e*i,t[1]=e*o-a*c,t[2]=a*i-u*o,t},r.lerp=function(t,n,r,a){var u=n[0],e=n[1],o=n[2];return t[0]=u+a*(r[0]-u),t[1]=e+a*(r[1]-e),t[2]=o+a*(r[2]-o),t},r.hermite=function(t,n,r,a,u,e){var o=e*e,i=o*(2*e-3)+1,c=o*(e-2)+e,h=o*(e-1),M=o*(3-2*e);return t[0]=n[0]*i+r[0]*c+a[0]*h+u[0]*M,t[1]=n[1]*i+r[1]*c+a[1]*h+u[1]*M,t[2]=n[2]*i+r[2]*c+a[2]*h+u[2]*M,t},r.bezier=function(t,n,r,a,u,e){var o=1-e,i=o*o,c=e*e,h=i*o,M=3*e*i,s=3*c*o,f=c*e;return t[0]=n[0]*h+r[0]*M+a[0]*s+u[0]*f,t[1]=n[1]*h+r[1]*M+a[1]*s+u[1]*f,t[2]=n[2]*h+r[2]*M+a[2]*s+u[2]*f,t},r.random=function(t,n){n=n||1;var r=2*a.RANDOM()*Math.PI,u=2*a.RANDOM()-1,e=Math.sqrt(1-u*u)*n;return t[0]=Math.cos(r)*e,t[1]=Math.sin(r)*e,t[2]=u*n,t},r.transformMat4=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[3]*a+r[7]*u+r[11]*e+r[15];return o=o||1,t[0]=(r[0]*a+r[4]*u+r[8]*e+r[12])/o,t[1]=(r[1]*a+r[5]*u+r[9]*e+r[13])/o,t[2]=(r[2]*a+r[6]*u+r[10]*e+r[14])/o,t},r.transformMat3=function(t,n,r){var a=n[0],u=n[1],e=n[2];return t[0]=a*r[0]+u*r[3]+e*r[6],t[1]=a*r[1]+u*r[4]+e*r[7],t[2]=a*r[2]+u*r[5]+e*r[8],t},r.transformQuat=function(t,n,r){var a=r[0],u=r[1],e=r[2],o=r[3],i=n[0],c=n[1],h=n[2],M=u*h-e*c,s=e*i-a*h,f=a*c-u*i,l=u*f-e*s,v=e*M-a*f,m=a*s-u*M,d=2*o;return M*=d,s*=d,f*=d,l*=2,v*=2,m*=2,t[0]=i+M+l,t[1]=c+s+v,t[2]=h+f+m,t},r.rotateX=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[0],e[1]=u[1]*Math.cos(a)-u[2]*Math.sin(a),e[2]=u[1]*Math.sin(a)+u[2]*Math.cos(a),t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.rotateY=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[2]*Math.sin(a)+u[0]*Math.cos(a),e[1]=u[1],e[2]=u[2]*Math.cos(a)-u[0]*Math.sin(a),t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.rotateZ=function(t,n,r,a){var u=[],e=[];return u[0]=n[0]-r[0],u[1]=n[1]-r[1],u[2]=n[2]-r[2],e[0]=u[0]*Math.cos(a)-u[1]*Math.sin(a),e[1]=u[0]*Math.sin(a)+u[1]*Math.cos(a),e[2]=u[2],t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},r.angle=function(t,n){var r=t[0],a=t[1],u=t[2],e=n[0],o=n[1],i=n[2],c=Math.sqrt(r*r+a*a+u*u)*Math.sqrt(e*e+o*o+i*i),h=c&&f(t,n)/c;return Math.acos(Math.min(Math.max(h,-1),1))},r.zero=function(t){return t[0]=0,t[1]=0,t[2]=0,t},r.str=function(t){return"vec3("+t[0]+", "+t[1]+", "+t[2]+")"},r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=n[0],i=n[1],c=n[2];return Math.abs(r-o)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(u-i)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(i))&&Math.abs(e-c)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(c))},r.sub=o,r.mul=i,r.div=c,r.dist=h,r.sqrDist=M,r.len=e,r.sqrLen=s,r.forEach=(l=u(),function(t,n,r,a,u,e){var o,i;for(n||(n=3),r||(r=0),i=a?Math.min(a*n+r,t.length):t.length,o=r;o<i;o+=n)l[0]=t[o],l[1]=t[o+1],l[2]=t[o+2],u(l,l,e),t[o]=l[0],t[o+1]=l[1],t[o+2]=l[2];return t})},n "c1aa33d719": function _(t,n,r){Object.defineProperty(r,"__esModule",{value:!0});const a=t("tslib").__importStar(t("68ca94c15c"));function u(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0),t}function e(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}function o(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t[3]=n[3]*r[3],t}function i(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t[3]=n[3]/r[3],t}function c(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2],e=n[3]-t[3];return Math.hypot(r,a,u,e)}function h(t,n){var r=n[0]-t[0],a=n[1]-t[1],u=n[2]-t[2],e=n[3]-t[3];return r*r+a*a+u*u+e*e}function M(t){var n=t[0],r=t[1],a=t[2],u=t[3];return Math.hypot(n,r,a,u)}function f(t){var n=t[0],r=t[1],a=t[2],u=t[3];return n*n+r*r+a*a+u*u}var s;r.create=u,r.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},r.fromValues=function(t,n,r,u){var e=new a.ARRAY_TYPE(4);return e[0]=t,e[1]=n,e[2]=r,e[3]=u,e},r.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},r.set=function(t,n,r,a,u){return t[0]=n,t[1]=r,t[2]=a,t[3]=u,t},r.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},r.subtract=e,r.multiply=o,r.divide=i,r.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t[3]=Math.ceil(n[3]),t},r.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t[3]=Math.floor(n[3]),t},r.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t[3]=Math.min(n[3],r[3]),t},r.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t[3]=Math.max(n[3],r[3]),t},r.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t[3]=Math.round(n[3]),t},r.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},r.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},r.distance=c,r.squaredDistance=h,r.length=M,r.squaredLength=f,r.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t[3]=-n[3],t},r.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t[3]=1/n[3],t},r.normalize=function(t,n){var r=n[0],a=n[1],u=n[2],e=n[3],o=r*r+a*a+u*u+e*e;return o>0&&(o=1/Math.sqrt(o)),t[0]=r*o,t[1]=a*o,t[2]=u*o,t[3]=e*o,t},r.dot=function(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]+t[3]*n[3]},r.cross=function(t,n,r,a){var u=r[0]*a[1]-r[1]*a[0],e=r[0]*a[2]-r[2]*a[0],o=r[0]*a[3]-r[3]*a[0],i=r[1]*a[2]-r[2]*a[1],c=r[1]*a[3]-r[3]*a[1],h=r[2]*a[3]-r[3]*a[2],M=n[0],f=n[1],s=n[2],l=n[3];return t[0]=f*h-s*c+l*i,t[1]=-M*h+s*o-l*e,t[2]=M*c-f*o+l*u,t[3]=-M*i+f*e-s*u,t},r.lerp=function(t,n,r,a){var u=n[0],e=n[1],o=n[2],i=n[3];return t[0]=u+a*(r[0]-u),t[1]=e+a*(r[1]-e),t[2]=o+a*(r[2]-o),t[3]=i+a*(r[3]-i),t},r.random=function(t,n){var r,u,e,o,i,c;n=n||1;do{i=(r=2*a.RANDOM()-1)*r+(u=2*a.RANDOM()-1)*u}while(i>=1);do{c=(e=2*a.RANDOM()-1)*e+(o=2*a.RANDOM()-1)*o}while(c>=1);var h=Math.sqrt((1-i)/c);return t[0]=n*r,t[1]=n*u,t[2]=n*e*h,t[3]=n*o*h,t},r.transformMat4=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=n[3];return t[0]=r[0]*a+r[4]*u+r[8]*e+r[12]*o,t[1]=r[1]*a+r[5]*u+r[9]*e+r[13]*o,t[2]=r[2]*a+r[6]*u+r[10]*e+r[14]*o,t[3]=r[3]*a+r[7]*u+r[11]*e+r[15]*o,t},r.transformQuat=function(t,n,r){var a=n[0],u=n[1],e=n[2],o=r[0],i=r[1],c=r[2],h=r[3],M=h*a+i*e-c*u,f=h*u+c*a-o*e,s=h*e+o*u-i*a,l=-o*a-i*u-c*e;return t[0]=M*h+l*-o+f*-c-s*-i,t[1]=f*h+l*-i+s*-o-M*-c,t[2]=s*h+l*-c+M*-i-f*-o,t[3]=n[3],t},r.zero=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t},r.str=function(t){return"vec4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},r.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},r.equals=function(t,n){var r=t[0],u=t[1],e=t[2],o=t[3],i=n[0],c=n[1],h=n[2],M=n[3];return Math.abs(r-i)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(i))&&Math.abs(u-c)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(c))&&Math.abs(e-h)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(h))&&Math.abs(o-M)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(M))},r.sub=e,r.mul=o,r.div=i,r.dist=c,r.sqrDist=h,r.len=M,r.sqrLen=f,r.forEach=(s=u(),function(t,n,r,a,u,e){var o,i;for(n||(n=4),r||(r=0),i=a?Math.min(a*n+r,t.length):t.length,o=r;o<i;o+=n)s[0]=t[o],s[1]=t[o+1],s[2]=t[o+2],s[3]=t[o+3],u(s,s,e),t[o]=s[0],t[o+1]=s[1],t[o+2]=s[2],t[o+3]=s[3];return t})},n "277615c682": function _(t,a,n){Object.defineProperty(n,"__esModule",{value:!0});const r=t("tslib"),e=r.__importStar(t("68ca94c15c")),u=r.__importStar(t("eb06fc032a")),o=r.__importStar(t("a427635f32"));function i(t,a,n){var r=.5*n[0],e=.5*n[1],u=.5*n[2],o=a[0],i=a[1],s=a[2],c=a[3];return t[0]=o,t[1]=i,t[2]=s,t[3]=c,t[4]=r*c+e*s-u*i,t[5]=e*c+u*o-r*s,t[6]=u*c+r*i-e*o,t[7]=-r*o-e*i-u*s,t}function s(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=a[4],t[5]=a[5],t[6]=a[6],t[7]=a[7],t}function c(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=n[4],s=n[5],c=n[6],h=n[7],f=a[4],M=a[5],l=a[6],b=a[7],v=n[0],m=n[1],R=n[2],P=n[3];return t[0]=r*P+o*v+e*R-u*m,t[1]=e*P+o*m+u*v-r*R,t[2]=u*P+o*R+r*m-e*v,t[3]=o*P-r*v-e*m-u*R,t[4]=r*h+o*i+e*c-u*s+f*P+b*v+M*R-l*m,t[5]=e*h+o*s+u*i-r*c+M*P+b*m+l*v-f*R,t[6]=u*h+o*c+r*s-e*i+l*P+b*R+f*m-M*v,t[7]=o*h-r*i-e*s-u*c+b*P-f*v-M*m-l*R,t}n.create=function(){var t=new e.ARRAY_TYPE(8);return e.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[4]=0,t[5]=0,t[6]=0,t[7]=0),t[3]=1,t},n.clone=function(t){var a=new e.ARRAY_TYPE(8);return a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=t[3],a[4]=t[4],a[5]=t[5],a[6]=t[6],a[7]=t[7],a},n.fromValues=function(t,a,n,r,u,o,i,s){var c=new e.ARRAY_TYPE(8);return c[0]=t,c[1]=a,c[2]=n,c[3]=r,c[4]=u,c[5]=o,c[6]=i,c[7]=s,c},n.fromRotationTranslationValues=function(t,a,n,r,u,o,i){var s=new e.ARRAY_TYPE(8);s[0]=t,s[1]=a,s[2]=n,s[3]=r;var c=.5*u,h=.5*o,f=.5*i;return s[4]=c*r+h*n-f*a,s[5]=h*r+f*t-c*n,s[6]=f*r+c*a-h*t,s[7]=-c*t-h*a-f*n,s},n.fromRotationTranslation=i,n.fromTranslation=function(t,a){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=.5*a[0],t[5]=.5*a[1],t[6]=.5*a[2],t[7]=0,t},n.fromRotation=function(t,a){return t[0]=a[0],t[1]=a[1],t[2]=a[2],t[3]=a[3],t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.fromMat4=function(t,a){var n=u.create();o.getRotation(n,a);var r=new e.ARRAY_TYPE(3);return o.getTranslation(r,a),i(t,n,r),t},n.copy=s,n.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.set=function(t,a,n,r,e,u,o,i,s){return t[0]=a,t[1]=n,t[2]=r,t[3]=e,t[4]=u,t[5]=o,t[6]=i,t[7]=s,t},n.getReal=u.copy,n.getDual=function(t,a){return t[0]=a[4],t[1]=a[5],t[2]=a[6],t[3]=a[7],t},n.setReal=u.copy,n.setDual=function(t,a){return t[4]=a[0],t[5]=a[1],t[6]=a[2],t[7]=a[3],t},n.getTranslation=function(t,a){var n=a[4],r=a[5],e=a[6],u=a[7],o=-a[0],i=-a[1],s=-a[2],c=a[3];return t[0]=2*(n*c+u*o+r*s-e*i),t[1]=2*(r*c+u*i+e*o-n*s),t[2]=2*(e*c+u*s+n*i-r*o),t},n.translate=function(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=.5*n[0],s=.5*n[1],c=.5*n[2],h=a[4],f=a[5],M=a[6],l=a[7];return t[0]=r,t[1]=e,t[2]=u,t[3]=o,t[4]=o*i+e*c-u*s+h,t[5]=o*s+u*i-r*c+f,t[6]=o*c+r*s-e*i+M,t[7]=-r*i-e*s-u*c+l,t},n.rotateX=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateX(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateY=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateY(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateZ=function(t,a,n){var r=-a[0],e=-a[1],o=-a[2],i=a[3],s=a[4],c=a[5],h=a[6],f=a[7],M=s*i+f*r+c*o-h*e,l=c*i+f*e+h*r-s*o,b=h*i+f*o+s*e-c*r,v=f*i-s*r-c*e-h*o;return u.rotateZ(t,a,n),r=t[0],e=t[1],o=t[2],i=t[3],t[4]=M*i+v*r+l*o-b*e,t[5]=l*i+v*e+b*r-M*o,t[6]=b*i+v*o+M*e-l*r,t[7]=v*i-M*r-l*e-b*o,t},n.rotateByQuatAppend=function(t,a,n){var r=n[0],e=n[1],u=n[2],o=n[3],i=a[0],s=a[1],c=a[2],h=a[3];return t[0]=i*o+h*r+s*u-c*e,t[1]=s*o+h*e+c*r-i*u,t[2]=c*o+h*u+i*e-s*r,t[3]=h*o-i*r-s*e-c*u,i=a[4],s=a[5],c=a[6],h=a[7],t[4]=i*o+h*r+s*u-c*e,t[5]=s*o+h*e+c*r-i*u,t[6]=c*o+h*u+i*e-s*r,t[7]=h*o-i*r-s*e-c*u,t},n.rotateByQuatPrepend=function(t,a,n){var r=a[0],e=a[1],u=a[2],o=a[3],i=n[0],s=n[1],c=n[2],h=n[3];return t[0]=r*h+o*i+e*c-u*s,t[1]=e*h+o*s+u*i-r*c,t[2]=u*h+o*c+r*s-e*i,t[3]=o*h-r*i-e*s-u*c,i=n[4],s=n[5],c=n[6],h=n[7],t[4]=r*h+o*i+e*c-u*s,t[5]=e*h+o*s+u*i-r*c,t[6]=u*h+o*c+r*s-e*i,t[7]=o*h-r*i-e*s-u*c,t},n.rotateAroundAxis=function(t,a,n,r){if(Math.abs(r)<e.EPSILON)return s(t,a);var u=Math.hypot(n[0],n[1],n[2]);r*=.5;var o=Math.sin(r),i=o*n[0]/u,c=o*n[1]/u,h=o*n[2]/u,f=Math.cos(r),M=a[0],l=a[1],b=a[2],v=a[3];t[0]=M*f+v*i+l*h-b*c,t[1]=l*f+v*c+b*i-M*h,t[2]=b*f+v*h+M*c-l*i,t[3]=v*f-M*i-l*c-b*h;var m=a[4],R=a[5],P=a[6],d=a[7];return t[4]=m*f+d*i+R*h-P*c,t[5]=R*f+d*c+P*i-m*h,t[6]=P*f+d*h+m*c-R*i,t[7]=d*f-m*i-R*c-P*h,t},n.add=function(t,a,n){return t[0]=a[0]+n[0],t[1]=a[1]+n[1],t[2]=a[2]+n[2],t[3]=a[3]+n[3],t[4]=a[4]+n[4],t[5]=a[5]+n[5],t[6]=a[6]+n[6],t[7]=a[7]+n[7],t},n.multiply=c,n.mul=c,n.scale=function(t,a,n){return t[0]=a[0]*n,t[1]=a[1]*n,t[2]=a[2]*n,t[3]=a[3]*n,t[4]=a[4]*n,t[5]=a[5]*n,t[6]=a[6]*n,t[7]=a[7]*n,t},n.dot=u.dot,n.lerp=function(t,a,r,e){var u=1-e;return n.dot(a,r)<0&&(e=-e),t[0]=a[0]*u+r[0]*e,t[1]=a[1]*u+r[1]*e,t[2]=a[2]*u+r[2]*e,t[3]=a[3]*u+r[3]*e,t[4]=a[4]*u+r[4]*e,t[5]=a[5]*u+r[5]*e,t[6]=a[6]*u+r[6]*e,t[7]=a[7]*u+r[7]*e,t},n.invert=function(t,a){var r=n.squaredLength(a);return t[0]=-a[0]/r,t[1]=-a[1]/r,t[2]=-a[2]/r,t[3]=a[3]/r,t[4]=-a[4]/r,t[5]=-a[5]/r,t[6]=-a[6]/r,t[7]=a[7]/r,t},n.conjugate=function(t,a){return t[0]=-a[0],t[1]=-a[1],t[2]=-a[2],t[3]=a[3],t[4]=-a[4],t[5]=-a[5],t[6]=-a[6],t[7]=a[7],t},n.length=u.length,n.len=n.length,n.squaredLength=u.squaredLength,n.sqrLen=n.squaredLength,n.normalize=function(t,a){var r=n.squaredLength(a);if(r>0){r=Math.sqrt(r);var e=a[0]/r,u=a[1]/r,o=a[2]/r,i=a[3]/r,s=a[4],c=a[5],h=a[6],f=a[7],M=e*s+u*c+o*h+i*f;t[0]=e,t[1]=u,t[2]=o,t[3]=i,t[4]=(s-e*M)/r,t[5]=(c-u*M)/r,t[6]=(h-o*M)/r,t[7]=(f-i*M)/r}return t},n.str=function(t){return"quat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+")"},n.exactEquals=function(t,a){return t[0]===a[0]&&t[1]===a[1]&&t[2]===a[2]&&t[3]===a[3]&&t[4]===a[4]&&t[5]===a[5]&&t[6]===a[6]&&t[7]===a[7]},n.equals=function(t,a){var n=t[0],r=t[1],u=t[2],o=t[3],i=t[4],s=t[5],c=t[6],h=t[7],f=a[0],M=a[1],l=a[2],b=a[3],v=a[4],m=a[5],R=a[6],P=a[7];return Math.abs(n-f)<=e.EPSILON*Math.max(1,Math.abs(n),Math.abs(f))&&Math.abs(r-M)<=e.EPSILON*Math.max(1,Math.abs(r),Math.abs(M))&&Math.abs(u-l)<=e.EPSILON*Math.max(1,Math.abs(u),Math.abs(l))&&Math.abs(o-b)<=e.EPSILON*Math.max(1,Math.abs(o),Math.abs(b))&&Math.abs(i-v)<=e.EPSILON*Math.max(1,Math.abs(i),Math.abs(v))&&Math.abs(s-m)<=e.EPSILON*Math.max(1,Math.abs(s),Math.abs(m))&&Math.abs(c-R)<=e.EPSILON*Math.max(1,Math.abs(c),Math.abs(R))&&Math.abs(h-P)<=e.EPSILON*Math.max(1,Math.abs(h),Math.abs(P))}},n "c56d9ff837": function _(n,t,r){Object.defineProperty(r,"__esModule",{value:!0});const a=n("tslib").__importStar(n("68ca94c15c"));function u(){var n=new a.ARRAY_TYPE(2);return a.ARRAY_TYPE!=Float32Array&&(n[0]=0,n[1]=0),n}function e(n,t,r){return n[0]=t[0]-r[0],n[1]=t[1]-r[1],n}function o(n,t,r){return n[0]=t[0]*r[0],n[1]=t[1]*r[1],n}function c(n,t,r){return n[0]=t[0]/r[0],n[1]=t[1]/r[1],n}function i(n,t){var r=t[0]-n[0],a=t[1]-n[1];return Math.hypot(r,a)}function f(n,t){var r=t[0]-n[0],a=t[1]-n[1];return r*r+a*a}function s(n){var t=n[0],r=n[1];return Math.hypot(t,r)}function h(n){var t=n[0],r=n[1];return t*t+r*r}var M;r.create=u,r.clone=function(n){var t=new a.ARRAY_TYPE(2);return t[0]=n[0],t[1]=n[1],t},r.fromValues=function(n,t){var r=new a.ARRAY_TYPE(2);return r[0]=n,r[1]=t,r},r.copy=function(n,t){return n[0]=t[0],n[1]=t[1],n},r.set=function(n,t,r){return n[0]=t,n[1]=r,n},r.add=function(n,t,r){return n[0]=t[0]+r[0],n[1]=t[1]+r[1],n},r.subtract=e,r.multiply=o,r.divide=c,r.ceil=function(n,t){return n[0]=Math.ceil(t[0]),n[1]=Math.ceil(t[1]),n},r.floor=function(n,t){return n[0]=Math.floor(t[0]),n[1]=Math.floor(t[1]),n},r.min=function(n,t,r){return n[0]=Math.min(t[0],r[0]),n[1]=Math.min(t[1],r[1]),n},r.max=function(n,t,r){return n[0]=Math.max(t[0],r[0]),n[1]=Math.max(t[1],r[1]),n},r.round=function(n,t){return n[0]=Math.round(t[0]),n[1]=Math.round(t[1]),n},r.scale=function(n,t,r){return n[0]=t[0]*r,n[1]=t[1]*r,n},r.scaleAndAdd=function(n,t,r,a){return n[0]=t[0]+r[0]*a,n[1]=t[1]+r[1]*a,n},r.distance=i,r.squaredDistance=f,r.length=s,r.squaredLength=h,r.negate=function(n,t){return n[0]=-t[0],n[1]=-t[1],n},r.inverse=function(n,t){return n[0]=1/t[0],n[1]=1/t[1],n},r.normalize=function(n,t){var r=t[0],a=t[1],u=r*r+a*a;return u>0&&(u=1/Math.sqrt(u)),n[0]=t[0]*u,n[1]=t[1]*u,n},r.dot=function(n,t){return n[0]*t[0]+n[1]*t[1]},r.cross=function(n,t,r){var a=t[0]*r[1]-t[1]*r[0];return n[0]=n[1]=0,n[2]=a,n},r.lerp=function(n,t,r,a){var u=t[0],e=t[1];return n[0]=u+a*(r[0]-u),n[1]=e+a*(r[1]-e),n},r.random=function(n,t){t=t||1;var r=2*a.RANDOM()*Math.PI;return n[0]=Math.cos(r)*t,n[1]=Math.sin(r)*t,n},r.transformMat2=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[2]*u,n[1]=r[1]*a+r[3]*u,n},r.transformMat2d=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[2]*u+r[4],n[1]=r[1]*a+r[3]*u+r[5],n},r.transformMat3=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[3]*u+r[6],n[1]=r[1]*a+r[4]*u+r[7],n},r.transformMat4=function(n,t,r){var a=t[0],u=t[1];return n[0]=r[0]*a+r[4]*u+r[12],n[1]=r[1]*a+r[5]*u+r[13],n},r.rotate=function(n,t,r,a){var u=t[0]-r[0],e=t[1]-r[1],o=Math.sin(a),c=Math.cos(a);return n[0]=u*c-e*o+r[0],n[1]=u*o+e*c+r[1],n},r.angle=function(n,t){var r=n[0],a=n[1],u=t[0],e=t[1],o=Math.sqrt(r*r+a*a)*Math.sqrt(u*u+e*e),c=o&&(r*u+a*e)/o;return Math.acos(Math.min(Math.max(c,-1),1))},r.zero=function(n){return n[0]=0,n[1]=0,n},r.str=function(n){return"vec2("+n[0]+", "+n[1]+")"},r.exactEquals=function(n,t){return n[0]===t[0]&&n[1]===t[1]},r.equals=function(n,t){var r=n[0],u=n[1],e=t[0],o=t[1];return Math.abs(r-e)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(e))&&Math.abs(u-o)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(o))},r.len=s,r.sub=e,r.mul=o,r.div=c,r.dist=i,r.sqrDist=f,r.sqrLen=h,r.forEach=(M=u(),function(n,t,r,a,u,e){var o,c;for(t||(t=2),r||(r=0),c=a?Math.min(a*t+r,n.length):n.length,o=r;o<c;o+=t)M[0]=n[o],M[1]=n[o+1],u(M,M,e),n[o]=M[0],n[o+1]=M[1];return n})},n "4baab0b7ce": function _(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});const s=e("tslib").__importStar(e("@bokehjs/core/properties")),r=e("@bokehjs/core/util/object"),i=e("021b2a3929"),o=e("6c442cdcb4"),_=e("11e0707a8f");class a extends i.AbstractVTKView{initialize(){super.initialize(),this._promises=[],this._renderable=!1,this._arrays={},this._decoded_arrays={},this._pending_arrays={},this.getArray=e=>this._arrays[e]?Promise.resolve(this._arrays[e]):new Promise((t,n)=>{this._pending_arrays[e]={resolve:t,reject:n}}),this.registerArray=(e,t)=>(this._arrays[e]=t,this._pending_arrays[e]&&this._pending_arrays[e].resolve(t),!0),this._synchronizer_context=o.vtkns.SynchronizableRenderWindow.getSynchronizerContext("panel")}connect_signals(){super.connect_signals(),this.connect(this.model.properties.arrays.change,()=>this._decode_arrays()),this.connect(this.model.properties.scene.change,()=>{if(this.model.rebuild)this._vtk_renwin=null,this.invalidate_render();else{const e=r.clone(this.model.scene);Promise.all(this._promises).then(()=>{this._sync_plot(e,()=>{this._on_scene_ready()})})}}),this.connect(this.model.properties.one_time_reset.change,()=>{this._vtk_renwin.getRenderWindow().clearOneTimeUpdaters()})}init_vtk_renwin(){this._vtk_renwin=_.FullScreenRenderWindowSynchronized.newInstance({rootContainer:this.el,container:this._vtk_container,synchronizerContext:this._synchronizer_context})}plot(){this._vtk_renwin.getRenderWindow().clearOneTimeUpdaters(),this._decode_arrays();const e=r.clone(this.model.scene);Promise.all(this._promises).then(()=>{this._sync_plot(e,()=>this._on_scene_ready()).then(()=>{this._set_camera_state(),this._get_camera_state()})})}_decode_arrays(){const e=new o.vtkns.ThirdParty.JSZip,t=this.model.arrays,n=this.registerArray,s=this.model.arrays_processed,r=this.model;Object.keys(t).forEach(i=>{this._decoded_arrays[i]||(this._decoded_arrays[i]=!0,this._promises.push(function(i){return e.loadAsync(atob(t[i])).then(e=>e.file("data/"+i)).then(e=>e.async("arraybuffer")).then(e=>n(i,e)).then(()=>{s.push(i),r.properties.arrays_processed.change.emit()})}(i)))})}_on_scene_ready(){this._promises.length>0||(this._renderable=!0,this._camera_callbacks.push(this._vtk_renwin.getRenderer().getActiveCamera().onModified(()=>this._vtk_render())),this._orientationWidget||this._create_orientation_widget(),this._axes||this._set_axes(),this._vtk_renwin.resize(),this._vtk_render())}_sync_plot(e,t){this._renderable=!1,this._promises=[],this._unsubscribe_camera_cb(),this._synchronizer_context.setFetchArrayFunction(e=>Promise.resolve(this._arrays[e]));const n=this._synchronizer_context.getInstance(this.model.scene.dependencies[0].id);return n&&!this._vtk_renwin.getRenderer()&&this._vtk_renwin.getRenderWindow().addRenderer(n),this._vtk_renwin.getRenderWindow().synchronize(e).then(t)}}n.VTKSynchronizedPlotView=a,a.__name__="VTKSynchronizedPlotView";class h extends i.AbstractVTKPlot{constructor(e){super(e),this.outline=o.vtkns.OutlineFilter.newInstance();const t=o.vtkns.Mapper.newInstance();t.setInputConnection(this.outline.getOutputPort()),this.outline_actor=o.vtkns.Actor.newInstance(),this.outline_actor.setMapper(t)}getActors(e){let t=this.renderer_el.getRenderer().getActors();if(e){const n=this.renderer_el.getSynchronizerContext("panel");t=t.filter(t=>{const s=n.getInstanceId(t);return!!s&&s.slice(-16)==e.slice(1,17)})}return t}static init_VTKSynchronizedPlot(){this.prototype.default_view=a,this.define({arrays:[s.Any,{}],arrays_processed:[s.Array,[]],enable_keybindings:[s.Boolean,!1],one_time_reset:[s.Boolean],rebuild:[s.Boolean,!1],scene:[s.Any,{}]}),this.override({height:300,width:300})}}n.VTKSynchronizedPlot=h,h.__name__="VTKSynchronizedPlot",h.__module__="panel.models.vtk",h.init_VTKSynchronizedPlot()},n "11e0707a8f": function _(e,n,o){Object.defineProperty(o,"__esModule",{value:!0});const t=e("6c442cdcb4");if(t.vtk){const e={containerStyle:null,controlPanelStyle:null,listenWindowResize:!0,resizeCallback:null,controllerVisibility:!0,synchronizerContextName:"default"},n={position:"absolute",left:"25px",top:"25px",backgroundColor:"white",borderRadius:"5px",listStyle:"none",padding:"5px 10px",margin:"0",display:"block",border:"solid 1px black",maxWidth:"calc(100vw - 70px)",maxHeight:"calc(100vh - 60px)",overflow:"auto"};o.FullScreenRenderWindowSynchronized={newInstance:t.vtk.macro.newInstance((o,r,i={})=>{Object.assign(r,e,i),t.vtk.macro.obj(o,r),t.vtk.macro.get(o,r,["renderWindow","openGLRenderWindow","interactor","rootContainer","container","controlContainer","synchronizerContext"]),function(e,o){o.renderWindow=t.vtkns.SynchronizableRenderWindow.newInstance({synchronizerContext:o.synchronizerContext}),o.openGLRenderWindow=t.vtkns.OpenGLRenderWindow.newInstance(),o.openGLRenderWindow.setContainer(o.container),o.renderWindow.addView(o.openGLRenderWindow),o.interactor=t.vtkns.RenderWindowInteractor.newInstance(),o.interactor.setInteractorStyle(t.vtkns.InteractorStyleTrackballCamera.newInstance()),o.interactor.setView(o.openGLRenderWindow),o.interactor.initialize(),o.interactor.bindEvents(o.container),e.getRenderer=()=>o.renderWindow.getRenderers()[0],e.removeController=()=>{const e=o.controlContainer;e&&e.parentNode.removeChild(e)},e.setControllerVisibility=e=>{o.controllerVisibility=e,o.controlContainer&&(o.controlContainer.style.display=e?"block":"none")},e.toggleControllerVisibility=()=>{e.setControllerVisibility(!o.controllerVisibility)},e.addController=r=>{o.controlContainer=document.createElement("div"),t.applyStyle(o.controlContainer,o.controlPanelStyle||n),o.rootContainer.appendChild(o.controlContainer),o.controlContainer.innerHTML=r,e.setControllerVisibility(o.controllerVisibility),o.rootContainer.addEventListener("keypress",n=>{"c"===String.fromCharCode(n.charCode)&&e.toggleControllerVisibility()})},e.delete=t.vtk.macro.chain(e.setContainer,o.openGLRenderWindow.delete,e.delete),e.resize=()=>{const e=o.container.getBoundingClientRect(),n=window.devicePixelRatio||1;o.openGLRenderWindow.setSize(Math.floor(e.width*n),Math.floor(e.height*n)),o.resizeCallback&&o.resizeCallback(e),o.renderWindow.render()},e.setResizeCallback=n=>{o.resizeCallback=n,e.resize()},o.listenWindowResize&&window.addEventListener("resize",e.resize),e.resize()}(o,r)})}}},n }, "4e90918c0a", {"index":"4e90918c0a","models/index":"c4b9651916","models/ace":"abb1112c2c","models/layout":"7116a7a602","models/audio":"66d52165db","models/card":"0106b0a1bf","models/comm_manager":"684c940c17","models/deckgl":"d0d2aafca0","models/tooltips":"064eac2866","models/echarts":"c6decbe3f5","models/html":"ed08037ce5","models/ipywidget":"cb7ac8d1fa","models/json":"284504a0cf","models/file_download":"7a99dba4eb","models/katex":"7b859fb3cf","models/location":"aded270681","models/mathjax":"0c21036737","models/player":"79c41bbf71","models/plotly":"47b5ae5c43","models/util":"990b5dd5c7","models/progress":"765e9cea08","models/singleselect":"ff9dd91f7b","models/state":"38b2bc9574","models/vega":"294adeb985","models/video":"b0c3e9e9c2","models/videostream":"3c7145a2fa","models/vtk/index":"c51f25e2a7","models/vtk/vtkjs":"6ed30646d7","models/vtk/vtklayout":"021b2a3929","models/vtk/util":"6c442cdcb4","models/vtk/vtkcolorbar":"c010237f8b","models/vtk/vtkvolume":"087f1e0be6","models/vtk/vtkaxes":"3ae7537200","models/vtk/vtksynchronized":"4baab0b7ce","models/vtk/panel_fullscreen_renwin_sync":"11e0707a8f"}, {});n })nnn /* END panel.min.js */n },n function(Bokeh) {} // ensure no trailing comma for IEn ];nn function run_inline_js() {n if ((root.Bokeh !== undefined) || (force === true)) {n for (var i = 0; i < inline_js.length; i++) {n inline_js[i].call(root, root.Bokeh);n }} else if (Date.now() < root._bokeh_timeout) {n setTimeout(run_inline_js, 100);n } else if (!root._bokeh_failed_load) {n console.log("Bokeh: BokehJS failed to load within specified timeout.");n root._bokeh_failed_load = true;n }n }nn if (root._bokeh_is_loading === 0) {n console.debug("Bokeh: BokehJS loaded, going straight to plotting");n run_inline_js();n } else {n load_libs(css_urls, js_urls, function() {n console.debug("Bokeh: BokehJS plotting callback run at", now());n run_inline_js();n });n }n}(window));”
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“n”, “if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {n”, ” window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}n”, “}n”, “n”, “n”, ” function JupyterCommManager() {n”, ” }n”, “n”, ” JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {n”, ” if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {n”, ” var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;n”, ” comm_manager.register_target(comm_id, function(comm) {n”, ” comm.on_msg(msg_handler);n”, ” });n”, ” } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {n”, ” window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {n”, ” comm.onMsg = msg_handler;n”, ” });n”, ” } else if (typeof google != ‘undefined’ && google.colab.kernel != null) {n”, ” google.colab.kernel.comms.registerTarget(comm_id, (comm) => {n”, ” var messages = comm.messages[Symbol.asyncIterator]();n”, ” function processIteratorResult(result) {n”, ” var message = result.value;n”, ” console.log(message)n”, ” var content = {data: message.data, comm_id};n”, ” var buffers = []n”, ” for (var buffer of message.buffers || []) {n”, ” buffers.push(new DataView(buffer))n”, ” }n”, ” var metadata = message.metadata || {};n”, ” var msg = {content, buffers, metadata}n”, ” msg_handler(msg);n”, ” return messages.next().then(processIteratorResult);n”, ” }n”, ” return messages.next().then(processIteratorResult);n”, ” })n”, ” }n”, ” }n”, “n”, ” JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {n”, ” if (comm_id in window.PyViz.comms) {n”, ” return window.PyViz.comms[comm_id];n”, ” } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {n”, ” var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;n”, ” var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);n”, ” if (msg_handler) {n”, ” comm.on_msg(msg_handler);n”, ” }n”, ” } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {n”, ” var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);n”, ” comm.open();n”, ” if (msg_handler) {n”, ” comm.onMsg = msg_handler;n”, ” }n”, ” } else if (typeof google != ‘undefined’ && google.colab.kernel != null) {n”, ” var comm_promise = google.colab.kernel.comms.open(comm_id)n”, ” comm_promise.then((comm) => {n”, ” window.PyViz.comms[comm_id] = comm;n”, ” if (msg_handler) {n”, ” var messages = comm.messages[Symbol.asyncIterator]();n”, ” function processIteratorResult(result) {n”, ” var message = result.value;n”, ” var content = {data: message.data};n”, ” var metadata = message.metadata || {comm_id};n”, ” var msg = {content, metadata}n”, ” msg_handler(msg);n”, ” return messages.next().then(processIteratorResult);n”, ” }n”, ” return messages.next().then(processIteratorResult);n”, ” }n”, ” }) n”, ” var sendClosure = (data, metadata, buffers, disposeOnDone) => {n”, ” return comm_promise.then((comm) => {n”, ” comm.send(data, metadata, buffers, disposeOnDone);n”, ” });n”, ” };n”, ” var comm = {n”, ” send: sendClosuren”, ” };n”, ” }n”, ” window.PyViz.comms[comm_id] = comm;n”, ” return comm;n”, ” }n”, ” window.PyViz.comm_manager = new JupyterCommManager();n”, ” n”, “n”, “n”, “var JS_MIME_TYPE = ‘application/javascript’;n”, “var HTML_MIME_TYPE = ‘text/html’;n”, “var EXEC_MIME_TYPE = ‘application/vnd.holoviews_exec.v0+json’;n”, “var CLASS_NAME = ‘output’;n”, “n”, “/n”, ” * Render data to the DOM noden”, ” */n”, “function render(props, node) {n”, ” var div = document.createElement("div");n”, ” var script = document.createElement("script");n”, ” node.appendChild(div);n”, ” node.appendChild(script);n”, “}n”, “n”, “/n”, ” * Handle when a new output is addedn”, ” /n”, “function handle_add_output(event, handle) {n”, ” var output_area = handle.output_area;n”, ” var output = handle.output;n”, ” if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {n”, ” returnn”, ” }n”, ” var id = output.metadata[EXEC_MIME_TYPE]["id"];n”, ” var toinsert = output_area.element.find("." + CLASS_NAME.split(’ ‘)[0]);n”, ” if (id !== undefined) {n”, ” var nchildren = toinsert.length;n”, ” var html_node = toinsert[nchildren-1].children[0];n”, ” html_node.innerHTML = output.data[HTML_MIME_TYPE];n”, ” var scripts = [];n”, ” var nodelist = html_node.querySelectorAll("script");n”, ” for (var i in nodelist) {n”, ” if (nodelist.hasOwnProperty(i)) {n”, ” scripts.push(nodelist[i])n”, ” }n”, ” }n”, “n”, ” scripts.forEach( function (oldScript) {n”, ” var newScript = document.createElement("script");n”, ” var attrs = [];n”, ” var nodemap = oldScript.attributes;n”, ” for (var j in nodemap) {n”, ” if (nodemap.hasOwnProperty(j)) {n”, ” attrs.push(nodemap[j])n”, ” }n”, ” }n”, ” attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });n”, ” newScript.appendChild(document.createTextNode(oldScript.innerHTML));n”, ” oldScript.parentNode.replaceChild(newScript, oldScript);n”, ” });n”, ” if (JS_MIME_TYPE in output.data) {n”, ” toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];n”, ” }n”, ” output_area._hv_plot_id = id;n”, ” if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {n”, ” window.PyViz.plot_index[id] = Bokeh.index[id];n”, ” } else {n”, ” window.PyViz.plot_index[id] = null;n”, ” }n”, ” } else if (output.metadata[EXEC_MIME_TYPE]["server_id"] !== undefined) {n”, ” var bk_div = document.createElement("div");n”, ” bk_div.innerHTML = output.data[HTML_MIME_TYPE];n”, ” var script_attrs = bk_div.children[0].attributes;n”, ” for (var i = 0; i < script_attrs.length; i++) {n”, ” toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);n”, ” }n”, ” // store reference to server id on output_arean”, ” output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE]["server_id"];n”, ” }n”, “}n”, “n”, “/*n”, ” * Handle when an output is cleared or removedn”, ” /n”, “function handle_clear_output(event, handle) {n”, ” var id = handle.cell.output_area._hv_plot_id;n”, ” var server_id = handle.cell.output_area._bokeh_server_id;n”, ” if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }n”, ” var comm = window.PyViz.comm_manager.get_client_comm("hv-extension-comm", "hv-extension-comm", function () {});n”, ” if (server_id !== null) {n”, ” comm.send({event_type: ‘server_delete’, ‘id’: server_id});n”, ” return;n”, ” } else if (comm !== null) {n”, ” comm.send({event_type: ‘delete’, ‘id’: id});n”, ” }n”, ” delete PyViz.plot_index[id];n”, ” if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {n”, ” var doc = window.Bokeh.index[id].model.documentn”, ” doc.clear();n”, ” const i = window.Bokeh.documents.indexOf(doc);n”, ” if (i > -1) {n”, ” window.Bokeh.documents.splice(i, 1);n”, ” }n”, ” }n”, “}n”, “n”, “/*n”, ” * Handle kernel restart eventn”, ” /n”, “function handle_kernel_cleanup(event, handle) {n”, ” delete PyViz.comms["hv-extension-comm"];n”, ” window.PyViz.plot_index = {}n”, “}n”, “n”, “/*n”, ” * Handle update_display_data messagesn”, ” */n”, “function handle_update_output(event, handle) {n”, ” handle_clear_output(event, {cell: {output_area: handle.output_area}})n”, ” handle_add_output(event, handle)n”, “}n”, “n”, “function register_renderer(events, OutputArea) {n”, ” function append_mime(data, metadata, element) {n”, ” // create a DOM node to render ton”, ” var toinsert = this.create_output_subarea(n”, ” metadata,n”, ” CLASS_NAME,n”, ” EXEC_MIME_TYPEn”, ” );n”, ” this.keyboard_manager.register_events(toinsert);n”, ” // Render to noden”, ” var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};n”, ” render(props, toinsert[0]);n”, ” element.append(toinsert);n”, ” return toinsertn”, ” }n”, “n”, ” events.on(‘output_added.OutputArea’, handle_add_output);n”, ” events.on(‘output_updated.OutputArea’, handle_update_output);n”, ” events.on(‘clear_output.CodeCell’, handle_clear_output);n”, ” events.on(‘delete.Cell’, handle_clear_output);n”, ” events.on(‘kernel_ready.Kernel’, handle_kernel_cleanup);n”, “n”, ” OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {n”, ” safe: true,n”, ” index: 0n”, ” });n”, “}n”, “n”, “if (window.Jupyter !== undefined) {n”, ” try {n”, ” var events = require(‘base/js/events’);n”, ” var OutputArea = require(‘notebook/js/outputarea’).OutputArea;n”, ” if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {n”, ” register_renderer(events, OutputArea);n”, ” }n”, ” } catch(err) {n”, ” }n”, “}n”
], “application/vnd.holoviews_load.v0+json”: “nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}n}nnn function JupyterCommManager() {n }nn JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;n comm_manager.register_target(comm_id, function(comm) {n comm.on_msg(msg_handler);n });n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {n comm.onMsg = msg_handler;n });n } else if (typeof google != ‘undefined’ && google.colab.kernel != null) {n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {n var messages = comm.messages[Symbol.asyncIterator]();n function processIteratorResult(result) {n var message = result.value;n console.log(message)n var content = {data: message.data, comm_id};n var buffers = []n for (var buffer of message.buffers || []) {n buffers.push(new DataView(buffer))n }n var metadata = message.metadata || {};n var msg = {content, buffers, metadata}n msg_handler(msg);n return messages.next().then(processIteratorResult);n }n return messages.next().then(processIteratorResult);n })n }n }nn JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {n if (comm_id in window.PyViz.comms) {n return window.PyViz.comms[comm_id];n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);n if (msg_handler) {n comm.on_msg(msg_handler);n }n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);n comm.open();n if (msg_handler) {n comm.onMsg = msg_handler;n }n } else if (typeof google != ‘undefined’ && google.colab.kernel != null) {n var comm_promise = google.colab.kernel.comms.open(comm_id)n comm_promise.then((comm) => {n window.PyViz.comms[comm_id] = comm;n if (msg_handler) {n var messages = comm.messages[Symbol.asyncIterator]();n function processIteratorResult(result) {n var message = result.value;n var content = {data: message.data};n var metadata = message.metadata || {comm_id};n var msg = {content, metadata}n msg_handler(msg);n return messages.next().then(processIteratorResult);n }n return messages.next().then(processIteratorResult);n }n }) n var sendClosure = (data, metadata, buffers, disposeOnDone) => {n return comm_promise.then((comm) => {n comm.send(data, metadata, buffers, disposeOnDone);n });n };n var comm = {n send: sendClosuren };n }n window.PyViz.comms[comm_id] = comm;n return comm;n }n window.PyViz.comm_manager = new JupyterCommManager();n nnnvar JS_MIME_TYPE = ‘application/javascript’;nvar HTML_MIME_TYPE = ‘text/html’;nvar EXEC_MIME_TYPE = ‘application/vnd.holoviews_exec.v0+json’;nvar CLASS_NAME = ‘output’;nn/n * Render data to the DOM noden */nfunction render(props, node) {n var div = document.createElement("div");n var script = document.createElement("script");n node.appendChild(div);n node.appendChild(script);n}nn/n * Handle when a new output is addedn /nfunction handle_add_output(event, handle) {n var output_area = handle.output_area;n var output = handle.output;n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {n returnn }n var id = output.metadata[EXEC_MIME_TYPE]["id"];n var toinsert = output_area.element.find("." + CLASS_NAME.split(’ ‘)[0]);n if (id !== undefined) {n var nchildren = toinsert.length;n var html_node = toinsert[nchildren-1].children[0];n html_node.innerHTML = output.data[HTML_MIME_TYPE];n var scripts = [];n var nodelist = html_node.querySelectorAll("script");n for (var i in nodelist) {n if (nodelist.hasOwnProperty(i)) {n scripts.push(nodelist[i])n }n }nn scripts.forEach( function (oldScript) {n var newScript = document.createElement("script");n var attrs = [];n var nodemap = oldScript.attributes;n for (var j in nodemap) {n if (nodemap.hasOwnProperty(j)) {n attrs.push(nodemap[j])n }n }n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });n newScript.appendChild(document.createTextNode(oldScript.innerHTML));n oldScript.parentNode.replaceChild(newScript, oldScript);n });n if (JS_MIME_TYPE in output.data) {n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];n }n output_area._hv_plot_id = id;n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {n window.PyViz.plot_index[id] = Bokeh.index[id];n } else {n window.PyViz.plot_index[id] = null;n }n } else if (output.metadata[EXEC_MIME_TYPE]["server_id"] !== undefined) {n var bk_div = document.createElement("div");n bk_div.innerHTML = output.data[HTML_MIME_TYPE];n var script_attrs = bk_div.children[0].attributes;n for (var i = 0; i < script_attrs.length; i++) {n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);n }n // store reference to server id on output_arean output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE]["server_id"];n }n}nn/*n * Handle when an output is cleared or removedn /nfunction handle_clear_output(event, handle) {n var id = handle.cell.output_area._hv_plot_id;n var server_id = handle.cell.output_area._bokeh_server_id;n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }n var comm = window.PyViz.comm_manager.get_client_comm("hv-extension-comm", "hv-extension-comm", function () {});n if (server_id !== null) {n comm.send({event_type: ‘server_delete’, ‘id’: server_id});n return;n } else if (comm !== null) {n comm.send({event_type: ‘delete’, ‘id’: id});n }n delete PyViz.plot_index[id];n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {n var doc = window.Bokeh.index[id].model.documentn doc.clear();n const i = window.Bokeh.documents.indexOf(doc);n if (i > -1) {n window.Bokeh.documents.splice(i, 1);n }n }n}nn/*n * Handle kernel restart eventn /nfunction handle_kernel_cleanup(event, handle) {n delete PyViz.comms["hv-extension-comm"];n window.PyViz.plot_index = {}n}nn/*n * Handle update_display_data messagesn */nfunction handle_update_output(event, handle) {n handle_clear_output(event, {cell: {output_area: handle.output_area}})n handle_add_output(event, handle)n}nnfunction register_renderer(events, OutputArea) {n function append_mime(data, metadata, element) {n // create a DOM node to render ton var toinsert = this.create_output_subarea(n metadata,n CLASS_NAME,n EXEC_MIME_TYPEn );n this.keyboard_manager.register_events(toinsert);n // Render to noden var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};n render(props, toinsert[0]);n element.append(toinsert);n return toinsertn }nn events.on(‘output_added.OutputArea’, handle_add_output);n events.on(‘output_updated.OutputArea’, handle_update_output);n events.on(‘clear_output.CodeCell’, handle_clear_output);n events.on(‘delete.Cell’, handle_clear_output);n events.on(‘kernel_ready.Kernel’, handle_kernel_cleanup);nn OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {n safe: true,n index: 0n });n}nnif (window.Jupyter !== undefined) {n try {n var events = require(‘base/js/events’);n var OutputArea = require(‘notebook/js/outputarea’).OutputArea;n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {n register_renderer(events, OutputArea);n }n } catch(err) {n }n}n”
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “text/html”: [
“n”, “<div class="logo-block">n”, “<img src=’data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzn”, “AAAB+wAAAfsBxc2miwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAA6zSURBn”, “VHic7ZtpeFRVmsf/5966taWqUlUJ2UioBBJiIBAwCZtog9IOgjqACsogKtqirT2ttt069nQ/zDztn”, “tI4+CrJIREFaFgWhBXpUNhHZQoKBkIUASchWla1S+3ar7r1nPkDaCAnZKoQP/D7mnPOe9/xy76n3n”, “nFSAW9ziFoPFNED2LLK5wcyBDObkb8ZkxuaoSYlI6ZcOKq1eWFdedqNzGHQBk9RMEwFAASkk0Xw3n”, “ETacDNi2vtvc7L0ROdw0AjoSotQVkKSvHQz/wRO1lScGModBFbDMaNRN1A4tUBCS3lk7BWhQkgpDn”, “lG4852/+7DWr1R3uHAZVQDsbh6ZPN7CyxUrCzJMRouusj0ipRwD2uKm0Zn5d2dFwzX1TCGhnmdGon”, “G62Nna+isiUqhkzuKrkQaJlPEv5mFl2fvGg2t/VnzkEV8F5ioioOEWkLG86fvbpthynjdhXYZziQn”, “x1hC9J2NFyi8vCTt91Fh04KGip0AaG9zuCk2wQCVyoNU3Hjezee9bq92duzzTmxsRJoy+jEZZZYon”, “GTKJ6SJngdJqAfRzpze0+jHreUtPc7gpBLQnIYK6BYp/uGhw9YK688eu7v95ysgshcg9qSLMo3JCn”, “4jqLKQFBgdKDPoQ+Pltb8dUyQLpeDjeVgI6EgLIQFT5tEl3rn2losHVsexbZ3EyT9wE1uGdkIPcyn”, “BGxn8QUq1QrA5nqW5i2tLqvrrM9NK6AdkVIvL9E9bZL/oyfMVd/jqvc8LylzRBKDJSzIExwhQzuLn”, “QYGQj4rHfFTc8mUdu3E7yoLtbTe9gI4EqVgVkug2i5+uXGo919ixbRog+3fTbQ8qJe4ZOYNfMoTIn”, “OoshUNosgO60AisX15aeI2PSIp5KiFLI9ubb1vV3Qb2ltwLakUCDAkWX7/nHKRmmGIl9VgYsUhJmn”, “2NXjKYADtM1ygne9QQDIXlk49FBstMKx66D1v4+XuQr7vqTe0VcBHQlRWiOCbmmSYe2SqtL6q5rJn”, “zsTb7lKx3FKOYC4DoqyS/B5bvLPxvD9Qtf6saxYLQGJErmDOdOMr/zo96km1nElr8bmPOBwI9COvn”, “HnFPRIwmkSOv9kcAS4heRsidOkpeWBgZM+UBrTFAXNYL5Vf2ii9c1trNzpYdaoVil3WIc+wdk+gQn”, “noie3ecCcxt9ITcLAPWt/laGEO/9U6PmzZkenTtsSMQ8uYywJVW+grCstAvCIaAdArAsIWkRDDs/n”, “KzLm2YcjY1Lv0UdW73HabE9n6V66cxSzfEmuJssTpKGVp+0vHq73FwL46eOjpMpbRAnNmJFrGJNun”, “Ukf9Yrz+3rghiumCKNXXWPhLYcjxGsIpoCMsIRoFITkW8AuyM8jC1+/QLx4bozCEJIq38+1rtpR6n”, “V/yzb8eBlRb3fo5l783N0CWolAzJHaVNzkrTzlEp2bQ2q3TC5gn6wpnoQAmwSiGh2GitnTmVMc5On”, “UyfKWUKCIsU7+fZDKwqdT6DDpvkzAX4/+AMFjk0tDp5GRXLpQ2MUmhgDp5gxQT8+Y7hyPsMi8uxFn”, “71H0oebujHALECjFKaW9Lm68n18wXp2kVzIcABytD5iXFzg+WVXkegpAsOOYziqo0OkK76GyquC3n”, “ltZAzMhhqlSNmmWTE5T6e3IN05ITFLM4GdN0vtZ3ob8Jh1NAKXFbm5PtLU/eqTSlGjkNAJjdgn/Nn”, “aedXa0tdi7+t9G0FIF49rtMSEgAs1kDLkTPO7ebm4IUWeyh1bKomXqlgMG6kJmHcSM0clYLJ8XtRn”, “1GTnbV3F6I5wCGikAb402npp1h1s7LQUZZSMIfALFOuL3UUrfnS8+rez7v9qcold5tilgHbO1fjKn”, “9ubb17u9oshxzMiUBKXWqJNxd+fqb0tLVs4lILFnK71H0Ind7uiPgACVcFJlrb0tV6DzxqqTIhUMn”, “CwDf1/rrVhTa33/3pGPxJYdQ2l2cbgVcQSosdx8uqnDtbGjh9SlDVSMNWhlnilfqZk42Th2ZpLpfn”, “xrHec5e815zrr0dfBZSwzkZfqsv+1FS1KUknUwPARVvItfKUY+cn57yP7qv07UE3p8B2uhUwLk09n”, “e0SCOrK+hbdYHYLjRIl71wWzv9jpEoeOHhGRrJAzyEyNiJuUqX0g2sBN5kGK6y2Blp5M3lsB9Qh4n”, “y2Ja6x6+i0ucmKgwMATwhSjdUu49tKrQ/pvN5d53ml2CGwCmJipmKjgmyuaXzNeL2a0AkQ01Th5jn”, “2DktO3Jyk8f9vcOBQHV94OK+fPumJmvQHxJoWkaKWq9Vs+yUsbq0zGT1I4RgeH2b5wef7+c7bl8Fn”, “eKgoHVVZa8ZPEORzR6sT1BzDUAD/d9F78e2Tzv99v8D+fLVTqAKAsbGamKey1Mt9Ann4eH3gTXTzn”, “idWtAJ8PQWOk7NzSeQn/OTHDuEikVF1R4z8BQCy+6D1aWRfY0tTGG2OM8rRoPaeIj5ZHzJxszElNn”, “VM8K8JS5WOfv8mzRnQAKoEhmt8gyPM4lU9SmBK1MCQBnW4KONT86v1hZ1PbwSXPw4JWussVjtH9Yn”, “NCoiL9UoH/6PSu8jFrfY2t36erQHXLIEakMi1SydmzB31h3GGXFDFNPaK8Rme9B79Ixrd0WN+1ijn”, “NRQ/doRmuFLBkHSTOm5GruG+pFjFdAmorG4IXH1Qua6ASniclfFtDYt+oUjKipPrCQB7QBQ2lrgPn”, “fFzm+9XWUtcqJ3/5vDLDpJ79XHZk3u8nGZ42qlj1+ydtbxysCezrydp6ugmipNJ7WBPB5tydY0jPn”, “HaVNzs3QzeE4ZpTbI+ZbnSFPbVOw9vsfnVvqWnirPyCNGD08IlqtYkh2hjZ5dErEQzoNm+6ykyOtn”, “Lt5/PQEuSRRKo22VkydK+vvS1XEKlhCJAnsqvcVvH7f/ZU2R67eXbMEGAMiIV5oWZWiWvz5Fv2xGn”, “sjqNJQRvn3Rs2lji/lNP19VjAQDgD7FHhujZB9OGqYxRkZxixgRDVlqS6uEOFaJUVu0rPFzctrnFn”, “JqijImVp8dEKVWyUXDk92zAuMZ6bFwpBU1HrOw6AdhQgUooChb0+ItMbWJitSo5Ws3IAOGEOtL53n”, “0vHZih9sC4vtofZ7Qu6523V/fmGcds1TY3V36pUsBwAbSlxnVh2xLfAD/IAIMDf7XYIkNmXfpp2ln”, “18rkAJAy9HKFaIr/qULkeQQKy9zf1JgDB2uaeFNGijo5QsUyacNUUTOnGO42xSnv4oOwpDi1zYkcn”, “efUc3I5Gk6PhyTuVKaOGyLUAYPGIoY9Pu/atL/L92+4q9wbflRJ2Trpm/jPjdBtfnqB/dIThcl8An”, “KG7hbRuKnb8qsQsVvVlTrwQAQMUlf3kwJI24Z4JhPMtcfng5GcH49GsrxJpGvvHIaeem2ma+KSjQn”, “lIwUdYyCY8j4dE1KzijNnIP2llF2wcXNnsoapw9XxsgYAl6k+KzUXbi2yP3KR2ecf6z3BFsBICdWn”, “nvnIaG3eHybqX7vbpEqUMT+9OL4Qpe8VON7dXuFd39v19FoAABRVePbGGuXTszO0P7tu6lghUonEn”, “llRdrhArLvmKdh9u29jcFiRRkfLUxBiFNiqSU9icoZQHo5mYBI1MBgBH6wMNb+U7Pnw337H4gi1Yn”, “ciWs+uks3Z9fztUvfzxTm9Ne8XXkvQLHNytOOZeiD4e0PgkAIAYCYknKUNUDSXEKzdWNpnil7r4pn”, “xqkjTarZMtk/K8TQ6Qve78qqvXurGwIJqcOUKfUWHsm8KGvxSP68YudXq4pcj39X49uOK2X142O0n”, “Tz5/u/7TVybqH0rSya6ZBwD21/gubbrgWdDgEOx9WUhfBaC2ibcEBYm7a7x+ukrBMNcEZggyR0TEn”, “T8zUPjikQ4VosQZbTpS4vqizBKvqmvjsqnpfzaZyx9JPiz1/bfGKdgD45XB1zoIMzYbfTdS/NClBn”, “Gct0USiY3YL/g0LHy/uq/Ef6uo5+n0R/vyhp17Klpge763f8rMu6YU/zrn2nml+2WtH+Z+5IAAFcn”, “2bUTdTDOSNa9+cQY7YLsOIXhevEkCvzph7a8laecz/Un/z4/Ae04XeL3UQb57IwU9ZDr9UuKVajvn”, “nxp1+1UVIo/LjztZkKH59fO3G/JemqCfmaCRqbqbd90ZZ8FfjtkfAyD0J/9+C2h1hDwsSxvGjNDcn”, “b4zk5NfrSwiQblLHzZhg+Jf4aPlUwpDqkQqa9nimbt1/TDH8OitGMaQnj+RJS6B1fbF7SY1TqO5vn”, “/v0WAADl1f7zokgS7s7VT2DZ7pegUjBM7mjtiDZbcN4j0YrHH0rXpCtY0qPX0cVL0rv5jv/ZXendn”, “0u/EESYBAFBU4T4Qa5TflZOhTe7pmKpaP8kCVUVw1+yhXfJWvn1P3hnXi33JsTN6PnP3hHZ8Z3/hn”, “aLHzmkNPuPj7Bc/F/Q38CwjTpSwQXgE4Vmwry9tpfq/ZFgqFMy4AVDtCvi8rvMvOmv0N4YwbVgEAn”, “sPM72/KVnzfspmH7HQGCRLG2yL1+z8XwvPcdCbsAANh+xPzstgMtxeGKt+6MK3/tacfvwhWvIwMin”, “oKEBtm0H7W+UVfkc/Y1V0BhoPlDr/w1w/eu1vjIgAgDg22OtX6/eYfnEz/focrZTHAFR+PSs56/7n”, “q32nwpjazxgwAQCwcU/T62t3WL7r6/jVRa6/byp1rei+Z98ZUAEAhEPHPc8fKnTU9nbgtnOe8h0ln”, “9hcGIqmODLQAHCy2Xti6v/XNRivf43f4fFvIteu854+VHnR7q9tfBlwAAGz+pnndB9vM26UebAe8n”, “SLHujPOTPVW+rwY+sxskAAC2HrA8t2Vvc7ffP1r9o+vwR2dcr92InIAbKKC1FZ5tB1tf+/G8p8svn”, “N/9Q5zd/XR34LYCwV5JdccMEAMDBk45DH243r/X4xGvqxFa/GNpS7n6rwOwNWwHVE26oAADYurf1n”, “zx/utOzt+DMKYM0p17YtZZ5VNzqfsB2HewG1WXE8PoZ7gOclbTIvynZf9JV+fqZtfgs/8F/Nu5rBn”, “EIBmJ+8QRMmpU7EzGRsf2FzuePqYRbzh/zE26EwdrT10f6r6o8HOYzCJB9Dpff8tbnGLG8L/A/WEn”, “roTBs2RqAAAAAElFTkSuQmCC’n”, ” style=’height:25px; border-radius:12px; display: inline-block; float: left; vertical-align: middle’></img>n”, “n”, “n”, ” <img src=’data:image/png;base64,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’n”, ” style=’height:15px; border-radius:12px; display: inline-block; float: left’></img>n”, ” n”, “n”, “n”, “n”, “n”, “</div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “text/html”: [
“n”, ” <div class="bk-root">n”, ” <a href="https://bokeh.org" target="_blank" class="bk-logo bk-logo-small bk-logo-notebook"></a>n”, ” <span id="1001">Loading BokehJS …</span>n”, ” </div>”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“n”, “(function(root) {n”, ” function now() {n”, ” return new Date();n”, ” }n”, “n”, ” var force = true;n”, “n”, ” if (typeof root._bokeh_onload_callbacks === "undefined" || force === true) {n”, ” root._bokeh_onload_callbacks = [];n”, ” root._bokeh_is_loading = undefined;n”, ” }n”, “n”, ” var JS_MIME_TYPE = ‘application/javascript’;n”, ” var HTML_MIME_TYPE = ‘text/html’;n”, ” var EXEC_MIME_TYPE = ‘application/vnd.bokehjs_exec.v0+json’;n”, ” var CLASS_NAME = ‘output_bokeh rendered_html’;n”, “n”, ” /n”, ” * Render data to the DOM noden”, ” */n”, ” function render(props, node) {n”, ” var script = document.createElement("script");n”, ” node.appendChild(script);n”, ” }n”, “n”, ” /n”, ” * Handle when an output is cleared or removedn”, ” /n”, ” function handleClearOutput(event, handle) {n”, ” var cell = handle.cell;n”, “n”, ” var id = cell.output_area._bokeh_element_id;n”, ” var server_id = cell.output_area._bokeh_server_id;n”, ” // Clean up Bokeh referencesn”, ” if (id != null && id in Bokeh.index) {n”, ” Bokeh.index[id].model.document.clear();n”, ” delete Bokeh.index[id];n”, ” }n”, “n”, ” if (server_id !== undefined) {n”, ” // Clean up Bokeh referencesn”, ” var cmd = "from bokeh.io.state import curstate; print(curstate().uuid_to_server[’" + server_id + "’].get_sessions()[0].document.roots[0]._id)";n”, ” cell.notebook.kernel.execute(cmd, {n”, ” iopub: {n”, ” output: function(msg) {n”, ” var id = msg.content.text.trim();n”, ” if (id in Bokeh.index) {n”, ” Bokeh.index[id].model.document.clear();n”, ” delete Bokeh.index[id];n”, ” }n”, ” }n”, ” }n”, ” });n”, ” // Destroy server and sessionn”, ” var cmd = "import bokeh.io.notebook as ion; ion.destroy_server(’" + server_id + "’)";n”, ” cell.notebook.kernel.execute(cmd);n”, ” }n”, ” }n”, “n”, ” /*n”, ” * Handle when a new output is addedn”, ” /n”, ” function handleAddOutput(event, handle) {n”, ” var output_area = handle.output_area;n”, ” var output = handle.output;n”, “n”, ” // limit handleAddOutput to display_data with EXEC_MIME_TYPE content onlyn”, ” if ((output.output_type != "display_data") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {n”, ” returnn”, ” }n”, “n”, ” var toinsert = output_area.element.find("." + CLASS_NAME.split(’ ‘)[0]);n”, “n”, ” if (output.metadata[EXEC_MIME_TYPE]["id"] !== undefined) {n”, ” toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];n”, ” // store reference to embed id on output_arean”, ” output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE]["id"];n”, ” }n”, ” if (output.metadata[EXEC_MIME_TYPE]["server_id"] !== undefined) {n”, ” var bk_div = document.createElement("div");n”, ” bk_div.innerHTML = output.data[HTML_MIME_TYPE];n”, ” var script_attrs = bk_div.children[0].attributes;n”, ” for (var i = 0; i < script_attrs.length; i++) {n”, ” toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);n”, ” toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContentn”, ” }n”, ” // store reference to server id on output_arean”, ” output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE]["server_id"];n”, ” }n”, ” }n”, “n”, ” function register_renderer(events, OutputArea) {n”, “n”, ” function append_mime(data, metadata, element) {n”, ” // create a DOM node to render ton”, ” var toinsert = this.create_output_subarea(n”, ” metadata,n”, ” CLASS_NAME,n”, ” EXEC_MIME_TYPEn”, ” );n”, ” this.keyboard_manager.register_events(toinsert);n”, ” // Render to noden”, ” var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};n”, ” render(props, toinsert[toinsert.length - 1]);n”, ” element.append(toinsert);n”, ” return toinsertn”, ” }n”, “n”, ” / Handle when an output is cleared or removed /n”, ” events.on(‘clear_output.CodeCell’, handleClearOutput);n”, ” events.on(‘delete.Cell’, handleClearOutput);n”, “n”, ” / Handle when a new output is added /n”, ” events.on(‘output_added.OutputArea’, handleAddOutput);n”, “n”, ” /*n”, ” * Register the mime type and append_mime function with output_arean”, ” /n”, ” OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {n”, ” / Is output safe? /n”, ” safe: true,n”, ” / Index of renderer in output_area.display_order */n”, ” index: 0n”, ” });n”, ” }n”, “n”, ” // register the mime type if in Jupyter Notebook environment and previously unregisteredn”, ” if (root.Jupyter !== undefined) {n”, ” var events = require(‘base/js/events’);n”, ” var OutputArea = require(‘notebook/js/outputarea’).OutputArea;n”, “n”, ” if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {n”, ” register_renderer(events, OutputArea);n”, ” }n”, ” }n”, “n”, ” n”, ” if (typeof (root._bokeh_timeout) === "undefined" || force === true) {n”, ” root._bokeh_timeout = Date.now() + 5000;n”, ” root._bokeh_failed_load = false;n”, ” }n”, “n”, ” var NB_LOAD_WARNING = {‘data’: {‘text/html’:n”, ” "<div style=’background-color: #fdd’>\n"+n”, ” "<p>\n"+n”, ” "BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \n"+n”, ” "may be due to a slow or bad network connection. Possible fixes:\n"+n”, ” "</p>\n"+n”, ” "<ul>\n"+n”, ” "<li>re-rerun output_notebook() to attempt to load from CDN again, or</li>\n"+n”, ” "<li>use INLINE resources instead, as so:</li>\n"+n”, ” "</ul>\n"+n”, ” "<code>\n"+n”, ” "from bokeh.resources import INLINE\n"+n”, ” "output_notebook(resources=INLINE)\n"+n”, ” "</code>\n"+n”, ” "</div>"}};n”, “n”, ” function display_loaded() {n”, ” var el = document.getElementById("1001");n”, ” if (el != null) {n”, ” el.textContent = "BokehJS is loading…";n”, ” }n”, ” if (root.Bokeh !== undefined) {n”, ” if (el != null) {n”, ” el.textContent = "BokehJS " + root.Bokeh.version + " successfully loaded.";n”, ” }n”, ” } else if (Date.now() < root._bokeh_timeout) {n”, ” setTimeout(display_loaded, 100)n”, ” }n”, ” }n”, “n”, “n”, ” function run_callbacks() {n”, ” try {n”, ” root._bokeh_onload_callbacks.forEach(function(callback) {n”, ” if (callback != null)n”, ” callback();n”, ” });n”, ” } finally {n”, ” delete root._bokeh_onload_callbacksn”, ” }n”, ” console.debug("Bokeh: all callbacks have finished");n”, ” }n”, “n”, ” function load_libs(css_urls, js_urls, callback) {n”, ” if (css_urls == null) css_urls = [];n”, ” if (js_urls == null) js_urls = [];n”, “n”, ” root._bokeh_onload_callbacks.push(callback);n”, ” if (root._bokeh_is_loading > 0) {n”, ” console.debug("Bokeh: BokehJS is being loaded, scheduling callback at", now());n”, ” return null;n”, ” }n”, ” if (js_urls == null || js_urls.length === 0) {n”, ” run_callbacks();n”, ” return null;n”, ” }n”, ” console.debug("Bokeh: BokehJS not loaded, scheduling load and callback at", now());n”, ” root._bokeh_is_loading = css_urls.length + js_urls.length;n”, “n”, ” function on_load() {n”, ” root._bokeh_is_loading–;n”, ” if (root._bokeh_is_loading === 0) {n”, ” console.debug("Bokeh: all BokehJS libraries/stylesheets loaded");n”, ” run_callbacks()n”, ” }n”, ” }n”, “n”, ” function on_error() {n”, ” console.error("failed to load " + url);n”, ” }n”, “n”, ” for (var i = 0; i < css_urls.length; i++) {n”, ” var url = css_urls[i];n”, ” const element = document.createElement("link");n”, ” element.onload = on_load;n”, ” element.onerror = on_error;n”, ” element.rel = "stylesheet";n”, ” element.type = "text/css";n”, ” element.href = url;n”, ” console.debug("Bokeh: injecting link tag for BokehJS stylesheet: ", url);n”, ” document.body.appendChild(element);n”, ” }n”, “n”, ” const hashes = {"https://cdn.bokeh.org/bokeh/release/bokeh-2.2.3.min.js": "T2yuo9Oe71Cz/I4X9Ac5+gpEa5a8PpJCDlqKYO0CfAuEszu1JrXLl8YugMqYe3sM", "https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.2.3.min.js": "98GDGJ0kOMCUMUePhksaQ/GYgB3+NH9h996V88sh3aOiUNX3N+fLXAtry6xctSZ6", "https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.2.3.min.js": "89bArO+nlbP3sgakeHjCo1JYxYR5wufVgA3IbUvDY+K7w4zyxJqssu7wVnfeKCq8"};n”, “n”, ” for (var i = 0; i < js_urls.length; i++) {n”, ” var url = js_urls[i];n”, ” var element = document.createElement(‘script’);n”, ” element.onload = on_load;n”, ” element.onerror = on_error;n”, ” element.async = false;n”, ” element.src = url;n”, ” if (url in hashes) {n”, ” element.crossOrigin = "anonymous";n”, ” element.integrity = "sha384-" + hashes[url];n”, ” }n”, ” console.debug("Bokeh: injecting script tag for BokehJS library: ", url);n”, ” document.head.appendChild(element);n”, ” }n”, ” };n”, “n”, ” function inject_raw_css(css) {n”, ” const element = document.createElement("style");n”, ” element.appendChild(document.createTextNode(css));n”, ” document.body.appendChild(element);n”, ” }n”, “n”, ” n”, ” var js_urls = ["https://cdn.bokeh.org/bokeh/release/bokeh-2.2.3.min.js", "https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.2.3.min.js", "https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.2.3.min.js", "https://unpkg.com/@holoviz/panel@^0.10.2/dist/panel.min.js"];n”, ” var css_urls = ["/static/extensions/panel/css/alerts.css", "/static/extensions/panel/css/card.css", "/static/extensions/panel/css/widgets.css", "/static/extensions/panel/css/markdown.css", "/static/extensions/panel/css/json.css", "/static/extensions/panel/css/dataframe.css"];n”, ” n”, “n”, ” var inline_js = [n”, ” function(Bokeh) {n”, ” Bokeh.set_log_level("info");n”, ” },n”, ” function(Bokeh) {n”, ” n”, ” n”, ” }n”, ” ];n”, “n”, ” function run_inline_js() {n”, ” n”, ” if (root.Bokeh !== undefined || force === true) {n”, ” n”, ” for (var i = 0; i < inline_js.length; i++) {n”, ” inline_js[i].call(root, root.Bokeh);n”, ” }n”, ” if (force === true) {n”, ” display_loaded();n”, ” }} else if (Date.now() < root._bokeh_timeout) {n”, ” setTimeout(run_inline_js, 100);n”, ” } else if (!root._bokeh_failed_load) {n”, ” console.log("Bokeh: BokehJS failed to load within specified timeout.");n”, ” root._bokeh_failed_load = true;n”, ” } else if (force !== true) {n”, ” var cell = $(document.getElementById("1001")).parents(‘.cell’).data().cell;n”, ” cell.output_area.append_execute_result(NB_LOAD_WARNING)n”, ” }n”, “n”, ” }n”, “n”, ” if (root._bokeh_is_loading === 0) {n”, ” console.debug("Bokeh: BokehJS loaded, going straight to plotting");n”, ” run_inline_js();n”, ” } else {n”, ” load_libs(css_urls, js_urls, function() {n”, ” console.debug("Bokeh: BokehJS plotting callback run at", now());n”, ” run_inline_js();n”, ” });n”, ” }n”, “}(window));”
], “application/vnd.bokehjs_load.v0+json”: “n(function(root) {n function now() {n return new Date();n }nn var force = true;nn if (typeof root._bokeh_onload_callbacks === "undefined" || force === true) {n root._bokeh_onload_callbacks = [];n root._bokeh_is_loading = undefined;n }nn nn n if (typeof (root._bokeh_timeout) === "undefined" || force === true) {n root._bokeh_timeout = Date.now() + 5000;n root._bokeh_failed_load = false;n }nn var NB_LOAD_WARNING = {‘data’: {‘text/html’:n "<div style=’background-color: #fdd’>\n"+n "<p>\n"+n "BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \n"+n "may be due to a slow or bad network connection. Possible fixes:\n"+n "</p>\n"+n "<ul>\n"+n "<li>re-rerun output_notebook() to attempt to load from CDN again, or</li>\n"+n "<li>use INLINE resources instead, as so:</li>\n"+n "</ul>\n"+n "<code>\n"+n "from bokeh.resources import INLINE\n"+n "output_notebook(resources=INLINE)\n"+n "</code>\n"+n "</div>"}};nn function display_loaded() {n var el = document.getElementById("1001");n if (el != null) {n el.textContent = "BokehJS is loading…";n }n if (root.Bokeh !== undefined) {n if (el != null) {n el.textContent = "BokehJS " + root.Bokeh.version + " successfully loaded.";n }n } else if (Date.now() < root._bokeh_timeout) {n setTimeout(display_loaded, 100)n }n }nnn function run_callbacks() {n try {n root._bokeh_onload_callbacks.forEach(function(callback) {n if (callback != null)n callback();n });n } finally {n delete root._bokeh_onload_callbacksn }n console.debug("Bokeh: all callbacks have finished");n }nn function load_libs(css_urls, js_urls, callback) {n if (css_urls == null) css_urls = [];n if (js_urls == null) js_urls = [];nn root._bokeh_onload_callbacks.push(callback);n if (root._bokeh_is_loading > 0) {n console.debug("Bokeh: BokehJS is being loaded, scheduling callback at", now());n return null;n }n if (js_urls == null || js_urls.length === 0) {n run_callbacks();n return null;n }n console.debug("Bokeh: BokehJS not loaded, scheduling load and callback at", now());n root._bokeh_is_loading = css_urls.length + js_urls.length;nn function on_load() {n root._bokeh_is_loading–;n if (root._bokeh_is_loading === 0) {n console.debug("Bokeh: all BokehJS libraries/stylesheets loaded");n run_callbacks()n }n }nn function on_error() {n console.error("failed to load " + url);n }nn for (var i = 0; i < css_urls.length; i++) {n var url = css_urls[i];n const element = document.createElement("link");n element.onload = on_load;n element.onerror = on_error;n element.rel = "stylesheet";n element.type = "text/css";n element.href = url;n console.debug("Bokeh: injecting link tag for BokehJS stylesheet: ", url);n document.body.appendChild(element);n }nn const hashes = {"https://cdn.bokeh.org/bokeh/release/bokeh-2.2.3.min.js": "T2yuo9Oe71Cz/I4X9Ac5+gpEa5a8PpJCDlqKYO0CfAuEszu1JrXLl8YugMqYe3sM", "https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.2.3.min.js": "98GDGJ0kOMCUMUePhksaQ/GYgB3+NH9h996V88sh3aOiUNX3N+fLXAtry6xctSZ6", "https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.2.3.min.js": "89bArO+nlbP3sgakeHjCo1JYxYR5wufVgA3IbUvDY+K7w4zyxJqssu7wVnfeKCq8"};nn for (var i = 0; i < js_urls.length; i++) {n var url = js_urls[i];n var element = document.createElement(‘script’);n element.onload = on_load;n element.onerror = on_error;n element.async = false;n element.src = url;n if (url in hashes) {n element.crossOrigin = "anonymous";n element.integrity = "sha384-" + hashes[url];n }n console.debug("Bokeh: injecting script tag for BokehJS library: ", url);n document.head.appendChild(element);n }n };nn function inject_raw_css(css) {n const element = document.createElement("style");n element.appendChild(document.createTextNode(css));n document.body.appendChild(element);n }nn n var js_urls = ["https://cdn.bokeh.org/bokeh/release/bokeh-2.2.3.min.js", "https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.2.3.min.js", "https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.2.3.min.js", "https://unpkg.com/@holoviz/panel@^0.10.2/dist/panel.min.js"];n var css_urls = ["/static/extensions/panel/css/alerts.css", "/static/extensions/panel/css/card.css", "/static/extensions/panel/css/widgets.css", "/static/extensions/panel/css/markdown.css", "/static/extensions/panel/css/json.css", "/static/extensions/panel/css/dataframe.css"];n nn var inline_js = [n function(Bokeh) {n Bokeh.set_log_level("info");n },n function(Bokeh) {n n n }n ];nn function run_inline_js() {n n if (root.Bokeh !== undefined || force === true) {n n for (var i = 0; i < inline_js.length; i++) {n inline_js[i].call(root, root.Bokeh);n }n if (force === true) {n display_loaded();n }} else if (Date.now() < root._bokeh_timeout) {n setTimeout(run_inline_js, 100);n } else if (!root._bokeh_failed_load) {n console.log("Bokeh: BokehJS failed to load within specified timeout.");n root._bokeh_failed_load = true;n } else if (force !== true) {n var cell = $(document.getElementById("1001")).parents(‘.cell’).data().cell;n cell.output_area.append_execute_result(NB_LOAD_WARNING)n }nn }nn if (root._bokeh_is_loading === 0) {n console.debug("Bokeh: BokehJS loaded, going straight to plotting");n run_inline_js();n } else {n load_libs(css_urls, js_urls, function() {n console.debug("Bokeh: BokehJS plotting callback run at", now());n run_inline_js();n });n }n}(window));”
}, “metadata”: {}, “output_type”: “display_data”
}
], “source”: [
“import ren”, “n”, “import numpy as npn”, “import pandas as pdn”, “n”, “import cmdstanpyn”, “import arviz as azn”, “n”, “import bebi103n”, “n”, “import holoviews as hvn”, “hv.extension(‘bokeh’)n”, “n”, “bebi103.hv.set_defaults()n”, “n”, “import bokeh.ion”, “bokeh.io.output_notebook()”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The bebi103 package contains a set of convenience functions for use with [Stan](http://mc-stan.org/). Much of the functionality is included in [ArviZ](https://arviz-devs.github.io/arviz/), and indeed the bebi103.stan module depends on ArviZ and extensively uses its InferenceData data type. Furthermore, the bebi103 package offers visualization functions for MCMC results which we will introduce as we go through a Bayesian workflow example below. Again, much of this functionality is present in ArviZ, but with modifications. Specifically, at least in my experience, there are some problems with the Bokeh backend with ArviZ.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“## Model and sample datan”, “n”, “To demonstrate the usage of the Stan utilities of bebi103, we will consider the following hierarchical generative model.n”, “n”, “\begin{align}n”, “&\theta_i \sim \text{Norm}(5, 5),\;\;i\in\{1, 2\},\\[1em]n”, “&\tau_i \sim \text{HalfNorm}(0, 10),\;\;i\in\{1, 2\},\\[1em]n”, “&\sigma_i \sim \text{HalfNorm}(0, 10),\;\;i\in\{1, 2\},\\[1em]n”, “&\rho \sim \text{Uniform}(-1, 1),\\[1em]n”, “&\mathsf{T} = \begin{pmatrix}\tau_1^2 & 0 \\ 0 & \tau_2^2\end{pmatrix}, \\[1em]n”, “&\mathsf{\Sigma} = \begin{pmatrix}\sigma_1^2 & \rho\sigma_1\sigma_2 \\ \rho\sigma_1\sigma_2 & \sigma_2^2\end{pmatrix}, \\[1em]n”, “&\theta_{1, i} \sim \text{Norm}(\theta, \mathsf{T}) \;\forall\,i\in\{1, 2, 3\},\\[1em]n”, “& \begin{pmatrix} x_{i, j} \\ y_{i,j} \end{pmatrix} \sim \text{Norm}(\theta_{1,i}, \mathsf{\Sigma})\;\forall\,i \in \{1, 2, 3\}, \; j \in \{1, \ldots, n_i \}. n”, “\end{align}n”, “n”, “This is a hierarchical model in which the three vector-valued parameters $\theta_{1,1}$, $\theta_{1,2}$, and $\theta_{1,3}$ are conditioned on the vector-valued hyperparameter $\theta$. We will use a fabricated data set generated from this model with parameters described in the [Using the user guide](using_user_guide.ipynb) section. It is useful to understand the data set, so let’s look at the data frame.”
]
}, {
“cell_type”: “code”, “execution_count”: 2, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“<div>n”, “<style scoped>n”, ” .dataframe tbody tr th:only-of-type {n”, ” vertical-align: middle;n”, ” }n”, “n”, ” .dataframe tbody tr th {n”, ” vertical-align: top;n”, ” }n”, “n”, ” .dataframe thead th {n”, ” text-align: right;n”, ” }n”, “</style>n”, “<table border="1" class="dataframe">n”, ” <thead>n”, ” <tr style="text-align: right;">n”, ” <th></th>n”, ” <th>x</th>n”, ” <th>y</th>n”, ” <th>trial</th>n”, ” </tr>n”, ” </thead>n”, ” <tbody>n”, ” <tr>n”, ” <th>0</th>n”, ” <td>1.762886</td>n”, ” <td>11.955616</td>n”, ” <td>1</td>n”, ” </tr>n”, ” <tr>n”, ” <th>1</th>n”, ” <td>4.364957</td>n”, ” <td>11.136633</td>n”, ” <td>1</td>n”, ” </tr>n”, ” <tr>n”, ” <th>2</th>n”, ” <td>3.457626</td>n”, ” <td>12.301267</td>n”, ” <td>1</td>n”, ” </tr>n”, ” <tr>n”, ” <th>3</th>n”, ” <td>-0.839319</td>n”, ” <td>10.401899</td>n”, ” <td>1</td>n”, ” </tr>n”, ” <tr>n”, ” <th>4</th>n”, ” <td>4.694602</td>n”, ” <td>11.925334</td>n”, ” <td>1</td>n”, ” </tr>n”, ” </tbody>n”, “</table>n”, “</div>”
], “text/plain”: [
” x y trialn”, “0 1.762886 11.955616 1n”, “1 4.364957 11.136633 1n”, “2 3.457626 12.301267 1n”, “3 -0.839319 10.401899 1n”, “4 4.694602 11.925334 1”
]
}, “execution_count”: 2, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“df = pd.read_csv(‘sample_data.csv’)n”, “df.head()”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“Each trial (there are three, numbered 1, 2, and 3) has an x measurment and a y measurement.n”, “n”, “To begin our analysis, we will use the following Stan model, which directly follows from the above generative model.n”, “n”, “
`stan\n", "data {\n", " // Total number of data points\n", " int N;\n", "\n", " // Number of entries in each level of the hierarchy\n", " int J_1;\n", "\n", " //Index array to keep track of hierarchical structure\n", " int index_1[N];\n", "\n", " // The measurements\n", " real x[N];\n", " real y[N];\n", "}\n", "\n", "\n", "transformed data {\n", " // Data are two-dimensional, so store in a vector\n", " vector[2] xy[N];\n", "\n", " for (i in 1:N) {\n", " xy[i, 1] = x[i];\n", " xy[i, 2] = y[i];\n", " }\n", "}\n", "\n", "\n", "parameters {\n", " // Hyperparameters level 0\n", " vector[2] theta;\n", "\n", " // How hyperparameters vary\n", " vector<lower=0>[2] tau;\n", "\n", " // Parameters\n", " vector[2] theta_1[J_1];\n", " vector<lower=0>[2] sigma;\n", " real<lower=-1, upper=1> rho;\n", "}\n", "\n", "\n", "transformed parameters {\n", " // Covariance matrix for hyperparameters\n", " matrix[2, 2] Tau = [\n", " [tau[1]^2, 0 ], \n", " [0, tau[2]^2]\n", " ];\n", "\n", " // Covariance matrix for likelihood\n", " matrix[2, 2] Sigma = [\n", " [sigma[1]^2, rho * sigma[1] * sigma[2]], \n", " [rho * sigma[1] * sigma[2], sigma[2]^2 ]\n", " ];\n", "}\n", "\n", "\n", "model {\n", " // Hyperpriors\n", " theta ~ normal(5, 5);\n", " tau ~ normal(0, 10);\n", "\n", " // Priors\n", " theta_1 ~ multi_normal(theta, Tau);\n", " sigma ~ normal(0, 10);\n", " rho ~ uniform(-1, 1);\n", "\n", " // Likelihood\n", " for (i in 1:N) {\n", " xy[i] ~ multi_normal(theta_1[index_1[i]], Sigma);\n", " }\n", "}\n", "\n", "\n", "generated quantities {\n", " real x_ppc[N];\n", " real y_ppc[N];\n", " real log_lik[N];\n", "\n", " {\n", " vector[2] xy_ppc;\n", "\n", " for (i in 1:N) {\n", " xy_ppc = multi_normal_rng(theta_1[index_1[i]], Sigma);\n", " log_lik[i] = multi_normal_lpdf(xy_ppc | theta_1[index_1[i]], Sigma);\n", " x_ppc[i] = xy_ppc[1];\n", " y_ppc[i] = xy_ppc[2];\n", " }\n", " }\n", "}\n", "`”]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“A few important notes about the Stan file.n”, “n”, “1. The array index_1 keeps track of the dependence of the data on each parameter, which are themselves conditioned on hyperparameters.n”, “2. Posterior predictive checks and the log-likelihood function are calculated in the generated quantities block.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“## A first pass through a simple workflown”, “n”, “We will now proceed through a MCMC workflow, doing the following steps:n”, “n”, “1. Compile the Stan model.n”, “2. Convert the data frame into input data for the Stan model.n”, “3. Convert the samples into an ArviZ InferenceData instance.n”, “4. Check the sampling diagnostics.n”, “5. Create visualizations of the samples.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Compiling the Stan modeln”, “n”, “Starting with the first step making a compiled Stan model that we can use for sampling, we will use [CmdStanPy](https://cmdstanpy.readthedocs.io/en/latest/). Although the bebi103 package supports [PyStan](https://pystan.readthedocs.io/en/latest/), CmdStanPy is preferred because of the simplicity of its interface and shorter model compilation time.n”, “n”, “If we wish to suppress messages to the screen, we can use bebi103.stan.disable_logging() with context management.”
]
}, {
“cell_type”: “code”, “execution_count”: 3, “metadata”: {}, “outputs”: [], “source”: [
“with bebi103.stan.disable_logging():n”, ” sm = cmdstanpy.CmdStanModel(stan_file="sample_model.stan")”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Preparing hierarchical data for Stann”, “n”, “Now that we have a compiled Stan model, we need to supply it data. Referring to the data block in the Stan code above, for this hierarchical model, we need to specify how many data points, what the values of x and y are, the number of different parameters (J_1), and a set of indices the give which of the three $\theta_1$ values upon which each data point is conditioned. This information is already contained in the tidy data frame, df. The ‘x’ and ‘y’ columns contain the data, and the ‘trial’ column determines the level in the hierarchy. The value of J_1 is given by the number of unique entries in the ‘trial’ column, and the number of data points is given by the total number of rows in the data frame.n”, “n”, “The bebi103.stan.df_to_datadict_hier() function converts a tidy Pandas data frame into a dictionary of data that can be passed to a Stan program for a hierarchical model. Furthermore, since the ‘trial’ column could have strings or other entries in them, these need to be converted to integers for use in Stan. A column is added to Stan with a suffix _stan to give the values of that column that are used in the Stan program. This is for reference when analyzing the results.”
]
}, {
“cell_type”: “code”, “execution_count”: 4, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“<div>n”, “<style scoped>n”, ” .dataframe tbody tr th:only-of-type {n”, ” vertical-align: middle;n”, ” }n”, “n”, ” .dataframe tbody tr th {n”, ” vertical-align: top;n”, ” }n”, “n”, ” .dataframe thead th {n”, ” text-align: right;n”, ” }n”, “</style>n”, “<table border="1" class="dataframe">n”, ” <thead>n”, ” <tr style="text-align: right;">n”, ” <th></th>n”, ” <th>x</th>n”, ” <th>y</th>n”, ” <th>trial</th>n”, ” <th>trial_stan</th>n”, ” </tr>n”, ” </thead>n”, ” <tbody>n”, ” <tr>n”, ” <th>0</th>n”, ” <td>1.762886</td>n”, ” <td>11.955616</td>n”, ” <td>1</td>n”, ” <td>1</td>n”, ” </tr>n”, ” <tr>n”, ” <th>19</th>n”, ” <td>4.245374</td>n”, ” <td>12.896902</td>n”, ” <td>1</td>n”, ” <td>1</td>n”, ” </tr>n”, ” <tr>n”, ” <th>18</th>n”, ” <td>2.495358</td>n”, ” <td>6.278253</td>n”, ” <td>1</td>n”, ” <td>1</td>n”, ” </tr>n”, ” <tr>n”, ” <th>17</th>n”, ” <td>4.847436</td>n”, ” <td>8.901546</td>n”, ” <td>1</td>n”, ” <td>1</td>n”, ” </tr>n”, ” <tr>n”, ” <th>16</th>n”, ” <td>5.585134</td>n”, ” <td>11.772688</td>n”, ” <td>1</td>n”, ” <td>1</td>n”, ” </tr>n”, ” </tbody>n”, “</table>n”, “</div>”
], “text/plain”: [
” x y trial trial_stann”, “0 1.762886 11.955616 1 1n”, “19 4.245374 12.896902 1 1n”, “18 2.495358 6.278253 1 1n”, “17 4.847436 8.901546 1 1n”, “16 5.585134 11.772688 1 1”
]
}, “execution_count”: 4, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“data, df = bebi103.stan.df_to_datadict_hier(n”, ” df, level_cols="trial", data_cols=["x", "y"]n”, “)n”, “n”, “# Take a look at the updated data framen”, “df.head()”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The data frame has been appropriately updated (the trials were numbers, so there is no difference). Let’s look at the data dictionary.”
]
}, {
“cell_type”: “code”, “execution_count”: 5, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/plain”: [
“{‘N’: 63,n”, ” ‘J_1’: 3,n”, ” ‘index_1’: array([1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2,n”, ” 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,n”, ” 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]),n”, ” ‘x’: array([ 1.76288583, 4.24537447, 2.49535766, 4.84743608, 5.58513412,n”, ” 2.46538959, 2.53372498, 3.03556003, 4.1428636 , 3.37291658,n”, ” 1.80757816, 3.86468666, 2.0406895 , 6.10018145, 3.70259613,n”, ” 4.6946018 , -0.83931887, 3.45762554, 4.36495728, 9.02739122,n”, ” -0.90483667, 0.63091768, 2.7511249 , 0.84468249, -1.40832682,n”, ” 0.97071434, 1.65312163, 4.88902665, 4.74467292, 2.00083667,n”, ” 1.5374102 , 5.36558851, 6.03757711, 1.71903739, 1.56783325,n”, ” 0.25157748, 6.76167578, -0.67226419, 3.36289739, 2.17013057,n”, ” 4.03836253, 2.72486749, 3.65771395, 4.59028926, 1.40245352,n”, ” 4.34252071, 4.1146886 , 0.79938752, 0.72094663, 3.19538556,n”, ” 0.58176677, -0.01108818, -0.10906546, 2.37188306, 4.88494459,n”, ” -0.35811241, -0.85531719, 2.62235591, 0.71487182, 1.38188117,n”, ” 1.82837862, 0.16000891, 4.81184826]),n”, ” ‘y’: array([11.95561574, 12.89690196, 6.27825302, 8.90154585, 11.77268772,n”, ” 8.9978501 , 6.16475102, 10.64184364, 10.74399897, 8.71908946,n”, ” 9.63231343, 13.00236894, 9.47857277, 10.97263645, 11.46520631,n”, ” 11.92533427, 10.40189925, 12.30126673, 11.13663316, 16.78665286,n”, ” 4.11289192, 5.32907863, 7.82030839, 3.75238271, 3.89596763,n”, ” 1.37792381, 6.55489775, 9.7609403 , 10.03251758, 6.26665374,n”, ” 5.62577914, 5.84795532, 8.14624991, 9.12145582, 5.94521903,n”, ” 4.34204882, 12.30037908, -0.52873034, 4.3659075 , 9.05879288,n”, ” 8.84628724, 9.95807796, 5.07513802, 10.37096513, 3.73211647,n”, ” 5.8037337 , 5.02628689, 3.61882617, 6.98712067, 11.21360732,n”, ” 4.31478889, 4.40895773, 4.73065621, 8.95402277, 8.31905359,n”, ” 7.80920144, 5.92093593, 4.84087256, 3.43491574, 5.78404006,n”, ” 8.04955064, 5.29564007, 8.64743679])}”
]
}, “execution_count”: 5, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“data”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The dictionary has all of the entries necessary to pass into the Stan program while sampling.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Sampling and conversion to ArviZ InferenceDatan”, “n”, “We can now go about our sampling and get the results. We will again suppress logging. Note that this is in general not a good idea. I do it here to manage space in the documentation.”
]
}, {
“cell_type”: “code”, “execution_count”: 6, “metadata”: {}, “outputs”: [], “source”: [
“with bebi103.stan.disable_logging():n”, ” samples = sm.sample(n”, ” data=data, chains=4, iter_sampling=1000, adapt_delta=0.95, seed=3252n”, ” )”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The bebi103 package works with the excellent ArviZ InferenceData data type. ArviZ can be used to convert samples from Stan, PyMC3, emcee, PyTorch, and many others into a well-defined universal data format.”
]
}, {
“cell_type”: “code”, “execution_count”: 7, “metadata”: {}, “outputs”: [], “source”: [
“samples = az.from_cmdstanpy(n”, ” samples, posterior_predictive=["x_ppc", "y_ppc"], log_likelihood="log_lik"n”, “)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Converting InferenceData to a Pandas DataFramen”, “n”, “Now that the samples are stored as InferenceData, we can go about using them. Before we do that, we may want to convert the posterior samples into a Pandas data frame to do our own analysis.”
]
}, {
“cell_type”: “code”, “execution_count”: 8, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“<div>n”, “<style scoped>n”, ” .dataframe tbody tr th:only-of-type {n”, ” vertical-align: middle;n”, ” }n”, “n”, ” .dataframe tbody tr th {n”, ” vertical-align: top;n”, ” }n”, “n”, ” .dataframe thead th {n”, ” text-align: right;n”, ” }n”, “</style>n”, “<table border="1" class="dataframe">n”, ” <thead>n”, ” <tr style="text-align: right;">n”, ” <th></th>n”, ” <th>theta[0]</th>n”, ” <th>theta[1]</th>n”, ” <th>tau[0]</th>n”, ” <th>tau[1]</th>n”, ” <th>theta_1[0,0]</th>n”, ” <th>theta_1[0,1]</th>n”, ” <th>theta_1[1,0]</th>n”, ” <th>theta_1[1,1]</th>n”, ” <th>theta_1[2,0]</th>n”, ” <th>theta_1[2,1]</th>n”, ” <th>…</th>n”, ” <th>Tau[0,1]</th>n”, ” <th>Tau[1,0]</th>n”, ” <th>Tau[1,1]</th>n”, ” <th>Sigma[0,0]</th>n”, ” <th>Sigma[0,1]</th>n”, ” <th>Sigma[1,0]</th>n”, ” <th>Sigma[1,1]</th>n”, ” <th>chain__</th>n”, ” <th>draw__</th>n”, ” <th>diverging__</th>n”, ” </tr>n”, ” </thead>n”, ” <tbody>n”, ” <tr>n”, ” <th>0</th>n”, ” <td>2.37476</td>n”, ” <td>7.46285</td>n”, ” <td>0.923329</td>n”, ” <td>1.45192</td>n”, ” <td>3.54939</td>n”, ” <td>10.05800</td>n”, ” <td>2.82881</td>n”, ” <td>5.95545</td>n”, ” <td>1.88787</td>n”, ” <td>7.08742</td>n”, ” <td>…</td>n”, ” <td>0.0</td>n”, ” <td>0.0</td>n”, ” <td>2.10808</td>n”, ” <td>4.43857</td>n”, ” <td>3.29286</td>n”, ” <td>3.29286</td>n”, ” <td>6.81653</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>False</td>n”, ” </tr>n”, ” <tr>n”, ” <th>1</th>n”, ” <td>2.49195</td>n”, ” <td>7.91184</td>n”, ” <td>0.950101</td>n”, ” <td>1.31911</td>n”, ” <td>3.02827</td>n”, ” <td>9.84365</td>n”, ” <td>2.50844</td>n”, ” <td>5.71521</td>n”, ” <td>1.82827</td>n”, ” <td>7.40473</td>n”, ” <td>…</td>n”, ” <td>0.0</td>n”, ” <td>0.0</td>n”, ” <td>1.74006</td>n”, ” <td>5.15723</td>n”, ” <td>3.68042</td>n”, ” <td>3.68042</td>n”, ” <td>7.61829</td>n”, ” <td>0</td>n”, ” <td>1</td>n”, ” <td>False</td>n”, ” </tr>n”, ” <tr>n”, ” <th>2</th>n”, ” <td>2.63931</td>n”, ” <td>6.99427</td>n”, ” <td>1.222190</td>n”, ” <td>3.59020</td>n”, ” <td>3.73759</td>n”, ” <td>10.63330</td>n”, ” <td>2.68387</td>n”, ” <td>6.89852</td>n”, ” <td>1.75886</td>n”, ” <td>5.94173</td>n”, ” <td>…</td>n”, ” <td>0.0</td>n”, ” <td>0.0</td>n”, ” <td>12.88950</td>n”, ” <td>3.58365</td>n”, ” <td>3.20140</td>n”, ” <td>3.20140</td>n”, ” <td>8.82983</td>n”, ” <td>0</td>n”, ” <td>2</td>n”, ” <td>False</td>n”, ” </tr>n”, ” <tr>n”, ” <th>3</th>n”, ” <td>3.25652</td>n”, ” <td>7.09316</td>n”, ” <td>0.787648</td>n”, ” <td>3.52398</td>n”, ” <td>3.61098</td>n”, ” <td>10.10210</td>n”, ” <td>2.60675</td>n”, ” <td>6.98456</td>n”, ” <td>1.97803</td>n”, ” <td>6.58115</td>n”, ” <td>…</td>n”, ” <td>0.0</td>n”, ” <td>0.0</td>n”, ” <td>12.41840</td>n”, ” <td>3.25437</td>n”, ” <td>3.20632</td>n”, ” <td>3.20632</td>n”, ” <td>8.44636</td>n”, ” <td>0</td>n”, ” <td>3</td>n”, ” <td>False</td>n”, ” </tr>n”, ” <tr>n”, ” <th>4</th>n”, ” <td>2.80134</td>n”, ” <td>7.91179</td>n”, ” <td>0.739557</td>n”, ” <td>1.10262</td>n”, ” <td>2.39642</td>n”, ” <td>9.66203</td>n”, ” <td>2.63468</td>n”, ” <td>6.75522</td>n”, ” <td>2.13054</td>n”, ” <td>6.64004</td>n”, ” <td>…</td>n”, ” <td>0.0</td>n”, ” <td>0.0</td>n”, ” <td>1.21576</td>n”, ” <td>5.09825</td>n”, ” <td>3.26933</td>n”, ” <td>3.26933</td>n”, ” <td>5.90262</td>n”, ” <td>0</td>n”, ” <td>4</td>n”, ” <td>False</td>n”, ” </tr>n”, ” </tbody>n”, “</table>n”, “<p>5 rows × 24 columns</p>n”, “</div>”
], “text/plain”: [
” theta[0] theta[1] tau[0] tau[1] theta_1[0,0] theta_1[0,1] \n”, “0 2.37476 7.46285 0.923329 1.45192 3.54939 10.05800 n”, “1 2.49195 7.91184 0.950101 1.31911 3.02827 9.84365 n”, “2 2.63931 6.99427 1.222190 3.59020 3.73759 10.63330 n”, “3 3.25652 7.09316 0.787648 3.52398 3.61098 10.10210 n”, “4 2.80134 7.91179 0.739557 1.10262 2.39642 9.66203 n”, “n”, ” theta_1[1,0] theta_1[1,1] theta_1[2,0] theta_1[2,1] … Tau[0,1] \n”, “0 2.82881 5.95545 1.88787 7.08742 … 0.0 n”, “1 2.50844 5.71521 1.82827 7.40473 … 0.0 n”, “2 2.68387 6.89852 1.75886 5.94173 … 0.0 n”, “3 2.60675 6.98456 1.97803 6.58115 … 0.0 n”, “4 2.63468 6.75522 2.13054 6.64004 … 0.0 n”, “n”, ” Tau[1,0] Tau[1,1] Sigma[0,0] Sigma[0,1] Sigma[1,0] Sigma[1,1] \n”, “0 0.0 2.10808 4.43857 3.29286 3.29286 6.81653 n”, “1 0.0 1.74006 5.15723 3.68042 3.68042 7.61829 n”, “2 0.0 12.88950 3.58365 3.20140 3.20140 8.82983 n”, “3 0.0 12.41840 3.25437 3.20632 3.20632 8.44636 n”, “4 0.0 1.21576 5.09825 3.26933 3.26933 5.90262 n”, “n”, ” chain__ draw__ diverging__ n”, “0 0 0 False n”, “1 0 1 False n”, “2 0 2 False n”, “3 0 3 False n”, “4 0 4 False n”, “n”, “[5 rows x 24 columns]”
]
}, “execution_count”: 8, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“df_samples = bebi103.stan.arviz_to_dataframe(samples)n”, “n”, “# Take a lookn”, “df_samples.head()”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Variables/parameters naming conventionn”, “n”, “Note how multdimensional variables are named in the above data frame. They are zero-indexed, and use brackets with different axes of the index separated by a comma with no spaces. Note also that the last three columns are chain__, draw__, and diverging__, which specify which chain the sample comes from, which of the successive draws it was, and whether or not it had a divergence, respectively. This nomenclature is used throughout the bebi103 MCMC parsing functions.n”, “n”, “Some functions in the bebi103.stan and bebi103.viz modules use parameters as an argument. In those cases, the entries of multidimensional properties are expected to be entered one-by-one. Other functions use var_names as an argument. For multidimensional parameters, only the base name (with no indexing) is expected. This var_names format is congruent with that of ArviZ. As an example, consider a scalar parameter a, a vector parameter b with three entries, and a 2×2 matrix parameter c. The following shows how the respective keyword arguments should be used.n”, “n”, “- parameters=[‘a’, ‘b[0]’, ‘b[1]’, ‘b[2]’, ‘c[0,0]’, ‘c[0,1]’, ‘c[1,0]’, ‘c[1,1]’]n”, “- var_names=[‘a’, ‘b’, ‘c’]n”, “n”, “Using parameters allows omission of some elements of multidimensional parameters.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Checking diagnosticsn”, “n”, “We may check the following diagnostic features:n”, “n”, “1. The effective sample size (ESS).n”, “2. The rank-normalized Gelman-Rubin statistic, Rhat ($\hat{R}$).n”, “3. Divergences.n”, “4. Tree depth.n”, “5. Energy-Bayes fraction of missing information (E-BFMI)n”, “n”, “The functions to check these diagnostics are based on some of the functionality in ArviZ and from the [work of Michael Betancourt](https://github.com/betanalpha/jupyter_case_studies/blob/master/pystan_workflow/stan_utility.py).n”, “n”, “We can start by checking the effective sample size. The bebi103.stan.check_ess() function checks for both the effective sample size and the "tail" effective sample size, as defined in [Vehtari, et al., 2019](https://arxiv.org/abs/1903.08008). “
]
}, {
“cell_type”: “code”, “execution_count”: 9, “metadata”: {}, “outputs”: [
- {
“name”: “stdout”, “output_type”: “stream”, “text”: [
“Effective sample size looks reasonable for all parameters.n”
]
}, {
- “data”: {
- “text/plain”: [
“True”
]
}, “execution_count”: 9, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“bebi103.stan.check_ess(samples)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The function returned True, indicating that all variables have an effective samples size and tail effective sample size greater than the rule of thumb of 100 per chain. We can adjust the rule of thumb, if we like. If use the total_ess_rule_of_thumb=400 kwarg, then any parameter with fewer than 1600 effective samples (since we had four chains) is flagged a failure of the ESS check.”
]
}, {
“cell_type”: “code”, “execution_count”: 10, “metadata”: {}, “outputs”: [
- {
“name”: “stdout”, “output_type”: “stream”, “text”: [
“tail-ESS for parameter theta[0] is 1465.951659584542.n”, “tail-ESS for parameter theta[1] is 1426.717666604798.n”, “ESS for parameter tau[0] is 1235.1932445709374.n”, “ESS for parameter Tau[0,0] is 1235.1909291436552.n”, ” ESS or tail-ESS below 100 per chain indicates that expectation valuesn”, ” computed from samples are unlikely to be good approximations of then”, ” true expectation values.n”
]
}, {
- “data”: {
- “text/plain”: [
“False”
]
}, “execution_count”: 10, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“bebi103.stan.check_ess(samples, total_ess_rule_of_thumb=400)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The function now returns False, and also prints diagnostic information about the parameters for which the test failed.n”, “n”, “Now let’s turn to Rhat. The Rhat value is a rank-normalized, folded Rhat, as described in [Vehtari, et al., 2019](https://arxiv.org/abs/1903.08008).”
]
}, {
“cell_type”: “code”, “execution_count”: 11, “metadata”: {}, “outputs”: [
- {
“name”: “stdout”, “output_type”: “stream”, “text”: [
“Rhat for parameter Tau[0,1] is NaN.n”, “Rhat for parameter Tau[1,0] is NaN.n”
]
}, {
- “data”: {
- “text/plain”: [
“False”
]
}, “execution_count”: 11, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“bebi103.stan.check_rhat(samples)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The function returned False, meaning the that Rhat check failed. It informed us that two of the Rhat values were NaN, which causes a failure of the check. It is often the case that variables in the generated parameters block have NaN Rhat because they are not in any way manipulated by the sampler. In this case, the off-diagonal terms in the matrix Tau are both always zero. We can omit these using the omit kwarg.”
]
}, {
“cell_type”: “code”, “execution_count”: 12, “metadata”: {}, “outputs”: [
- {
“name”: “stdout”, “output_type”: “stream”, “text”: [
“Rhat looks reasonable for all parameters.n”
]
}, {
- “data”: {
- “text/plain”: [
“True”
]
}, “execution_count”: 12, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“bebi103.stan.check_rhat(samples, omit=["Tau[0,1]", "Tau[1,0]"])”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“Next, we can check for divergences.”
]
}, {
“cell_type”: “code”, “execution_count”: 13, “metadata”: {}, “outputs”: [
- {
“name”: “stdout”, “output_type”: “stream”, “text”: [
“53 of 4000 (1.325%) iterations ended with a divergence.n”, ” Try running with larger adapt_delta to remove divergences.n”
]
}, {
- “data”: {
- “text/plain”: [
“False”
]
}, “execution_count”: 13, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“bebi103.stan.check_divergences(samples)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“We failed the divergence test because we had 53 total divergences. We will deal with these momentarily.n”, “n”, “We can also check if the sampler was hitting the maximum tree depth. By default, the tree depth used in a sampling call by CmdStanPy is 10, which is the default max_treedepth kwarg value for bebi103.stan.check_treedepth(). You need to set this kwarg to match whatever tree depth used in the sampling. In our case, we can use the default.”
]
}, {
“cell_type”: “code”, “execution_count”: 14, “metadata”: {}, “outputs”: [
- {
“name”: “stdout”, “output_type”: “stream”, “text”: [
“0 of 4000 (0.0%) iterations saturated the maximum tree depth of 10.n”
]
}, {
- “data”: {
- “text/plain”: [
“True”
]
}, “execution_count”: 14, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“bebi103.stan.check_treedepth(samples)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“We have passed this test.n”, “n”, “Finally, we can check the E-BFMI.”
]
}, {
“cell_type”: “code”, “execution_count”: 15, “metadata”: {}, “outputs”: [
- {
“name”: “stdout”, “output_type”: “stream”, “text”: [
“E-BFMI indicated no pathological behavior.n”
]
}, {
- “data”: {
- “text/plain”: [
“True”
]
}, “execution_count”: 15, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“bebi103.stan.check_energy(samples)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“We have also passed this test.n”, “n”, “For convenience, we can perform all tests at once using the bebi103.stan.check_all_diagnostics() function.”
]
}, {
“cell_type”: “code”, “execution_count”: 16, “metadata”: {}, “outputs”: [
- {
“name”: “stdout”, “output_type”: “stream”, “text”: [
“Effective sample size looks reasonable for all parameters.n”, “n”, “Rhat looks reasonable for all parameters.n”, “n”, “53 of 4000 (1.325%) iterations ended with a divergence.n”, ” Try running with larger adapt_delta to remove divergences.n”, “n”, “0 of 4000 (0.0%) iterations saturated the maximum tree depth of 10.n”, “n”, “E-BFMI indicated no pathological behavior.n”
]
}, {
- “data”: {
- “text/plain”: [
“4”
]
}, “execution_count”: 16, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“bebi103.stan.check_all_diagnostics(samples, omit=["Tau[0,1]", "Tau[1,0]"])”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The return value of this function is a number that, when converted to binary, each digit in the code stands for whether or not a test passed. A digit of zero indicates the test passed. The ordering of the tests goes:n”, “n”, “- essn”, “- r_hatn”, “- divergencesn”, “- tree depthn”, “- E-BFMIn”, “n”, “For example, a warning code of 12 has a binary representation of 01100, which means that R-hat and divergences tests failed. Our warning code of 4 has a binary representation of 00100, which means that the divergence test failed.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Visualizing resultsn”, “n”, “The bebi103 package allows for three visualizations of MCMC results.n”, “n”, “- Trace plots: bebi103.viz.trace()n”, “- Parallel coordinate plots: bebi103.viz.parcoord()n”, “- Corner plot: bebi103.viz.corner()n”, “n”, “Each of these takes as their first six arguments:n”, “n”, “- samples: ArviZ InferenceData instance of containing the samples. (Note that corner() also accepts other data type for samples, such as in [display of bootstrap replicates](bootstrap.ipynb#Graphical-display-of-a-confidence-region).)n”, “- parameters: List of the names of variables to include in the plot.n”, “- palette: List of colors to use.n”, “- omit: List of variable names or regular expression patterns for variables to omit in the plot.n”, “- include_ppc: If True, include variables ending in _ppc, which denotes posterior predictive checks, in the plot. Default is False.n”, “- include_log_lik: If True, include variables starting with log_lik or loglik. These denote log-likelihood contributions. Default is False.n”, “n”, “samples is the only required argument. “
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“#### Trace plotsn”, “n”, “We will begin with a trace plot of the hyperparameters θ and τ.”
]
}, {
“cell_type”: “code”, “execution_count”: 17, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“n”, “n”, “n”, “n”, “n”, “n”, ” <div class="bk-root" id="0fd24748-a623-4c5b-a7ef-b812aafc6938" data-root-id="1273"></div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“(function(root) {n”, ” function embed_document(root) {n”, ” n”, ” var docs_json = {"870486cc-6ef5-4bce-81c6-9de4b4ed614a":{"roots":{"references":[{"attributes":{"children":[{"id":"1272"},{"id":"1270"}]},"id":"1273","type":"Column"},{"attributes":{},"id":"1177","type":"HelpTool"},{"attributes":{},"id":"1176","type":"ResetTool"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1267"},"selection_policy":{"id":"1266"}},"id":"1201","type":"ColumnDataSource"},{"attributes":{"source":{"id":"1196"}},"id":"1200","type":"CDSView"},{"attributes":{},"id":"1234","type":"UnionRenderers"},{"attributes":{},"id":"1235","type":"Selection"},{"attributes":{"data_source":{"id":"1196"},"glyph":{"id":"1197"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1198"},"selection_glyph":null,"view":{"id":"1200"}},"id":"1199","type":"GlyphRenderer"},{"attributes":{},"id":"1211","type":"BasicTickFormatter"},{"attributes":{"line_alpha":0.1,"line_color":"#d62628","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1203","type":"Line"},{"attributes":{"text":""},"id":"1222","type":"Title"},{"attributes":{"line_alpha":0.1,"line_color":"#2ba02b","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1198","type":"Line"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"1127","type":"BoxAnnotation"},{"attributes":{},"id":"1172","type":"PanTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"1178","type":"BoxAnnotation"},{"attributes":{},"id":"1225","type":"BasicTickFormatter"},{"attributes":{},"id":"1160","type":"LinearScale"},{"attributes":{},"id":"1158","type":"DataRange1d"},{"attributes":{"line_color":"#1f77b3","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1136","type":"Line"},{"attributes":{},"id":"1162","type":"LinearScale"},{"attributes":{},"id":"1212","type":"UnionRenderers"},{"attributes":{},"id":"1213","type":"Selection"},{"attributes":{},"id":"1227","type":"BasicTickFormatter"},{"attributes":{"line_color":"#ff7e0e","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1141","type":"Line"},{"attributes":{"text":""},"id":"1238","type":"Title"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1245"},"selection_policy":{"id":"1244"}},"id":"1135","type":"ColumnDataSource"},{"attributes":{"toolbars":[{"id":"1026"},{"id":"1077"},{"id":"1128"},{"id":"1179"}],"tools":[{"id":"1019"},{"id":"1020"},{"id":"1021"},{"id":"1022"},{"id":"1023"},{"id":"1024"},{"id":"1070"},{"id":"1071"},{"id":"1072"},{"id":"1073"},{"id":"1074"},{"id":"1075"},{"id":"1121"},{"id":"1122"},{"id":"1123"},{"id":"1124"},{"id":"1125"},{"id":"1126"},{"id":"1172"},{"id":"1173"},{"id":"1174"},{"id":"1175"},{"id":"1176"},{"id":"1177"}]},"id":"1271","type":"ProxyToolbar"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"1172"},{"id":"1173"},{"id":"1174"},{"id":"1175"},{"id":"1176"},{"id":"1177"}]},"id":"1179","type":"Toolbar"},{"attributes":{"line_alpha":0.1,"line_color":"#1f77b3","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1137","type":"Line"},{"attributes":{"line_color":"#2ba02b","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1146","type":"Line"},{"attributes":{"line_color":"#1f77b3","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1187","type":"Line"},{"attributes":{},"id":"1214","type":"UnionRenderers"},{"attributes":{"data_source":{"id":"1135"},"glyph":{"id":"1136"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1137"},"selection_glyph":null,"view":{"id":"1139"}},"id":"1138","type":"GlyphRenderer"},{"attributes":{},"id":"1241","type":"BasicTickFormatter"},{"attributes":{},"id":"1215","type":"Selection"},{"attributes":{"source":{"id":"1135"}},"id":"1139","type":"CDSView"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1247"},"selection_policy":{"id":"1246"}},"id":"1140","type":"ColumnDataSource"},{"attributes":{"line_alpha":0.1,"line_color":"#ff7e0e","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1142","type":"Line"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1249"},"selection_policy":{"id":"1248"}},"id":"1145","type":"ColumnDataSource"},{"attributes":{"line_color":"#ff7e0e","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1192","type":"Line"},{"attributes":{"data_source":{"id":"1140"},"glyph":{"id":"1141"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1142"},"selection_glyph":null,"view":{"id":"1144"}},"id":"1143","type":"GlyphRenderer"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1261"},"selection_policy":{"id":"1260"}},"id":"1186","type":"ColumnDataSource"},{"attributes":{},"id":"1216","type":"UnionRenderers"},{"attributes":{"source":{"id":"1140"}},"id":"1144","type":"CDSView"},{"attributes":{},"id":"1217","type":"Selection"},{"attributes":{"line_color":"#d62628","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1151","type":"Line"},{"attributes":{"line_alpha":0.1,"line_color":"#1f77b3","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1188","type":"Line"},{"attributes":{},"id":"1228","type":"UnionRenderers"},{"attributes":{},"id":"1229","type":"Selection"},{"attributes":{},"id":"1243","type":"BasicTickFormatter"},{"attributes":{"line_color":"#2ba02b","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1197","type":"Line"},{"attributes":{"line_alpha":0.1,"line_color":"#2ba02b","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1147","type":"Line"},{"attributes":{"data_source":{"id":"1186"},"glyph":{"id":"1187"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1188"},"selection_glyph":null,"view":{"id":"1190"}},"id":"1189","type":"GlyphRenderer"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1251"},"selection_policy":{"id":"1250"}},"id":"1150","type":"ColumnDataSource"},{"attributes":{"source":{"id":"1186"}},"id":"1190","type":"CDSView"},{"attributes":{"data_source":{"id":"1145"},"glyph":{"id":"1146"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1147"},"selection_glyph":null,"view":{"id":"1149"}},"id":"1148","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"1178"}},"id":"1174","type":"BoxZoomTool"},{"attributes":{},"id":"1218","type":"UnionRenderers"},{"attributes":{"source":{"id":"1145"}},"id":"1149","type":"CDSView"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1263"},"selection_policy":{"id":"1262"}},"id":"1191","type":"ColumnDataSource"},{"attributes":{},"id":"1219","type":"Selection"},{"attributes":{"axis_label":"step","formatter":{"id":"1259"},"ticker":{"id":"1165"}},"id":"1164","type":"LinearAxis"},{"attributes":{},"id":"1230","type":"UnionRenderers"},{"attributes":{},"id":"1209","type":"BasicTickFormatter"},{"attributes":{},"id":"1231","type":"Selection"},{"attributes":{"line_alpha":0.1,"line_color":"#ff7e0e","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1193","type":"Line"},{"attributes":{"line_alpha":0.1,"line_color":"#d62628","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1152","type":"Line"},{"attributes":{"axis":{"id":"1164"},"ticker":null},"id":"1167","type":"Grid"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1265"},"selection_policy":{"id":"1264"}},"id":"1196","type":"ColumnDataSource"},{"attributes":{"axis":{"id":"1168"},"dimension":1,"ticker":null},"id":"1171","type":"Grid"},{"attributes":{"data_source":{"id":"1191"},"glyph":{"id":"1192"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1193"},"selection_glyph":null,"view":{"id":"1195"}},"id":"1194","type":"GlyphRenderer"},{"attributes":{},"id":"1165","type":"BasicTicker"},{"attributes":{"data_source":{"id":"1150"},"glyph":{"id":"1151"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1152"},"selection_glyph":null,"view":{"id":"1154"}},"id":"1153","type":"GlyphRenderer"},{"attributes":{"source":{"id":"1191"}},"id":"1195","type":"CDSView"},{"attributes":{"source":{"id":"1150"}},"id":"1154","type":"CDSView"},{"attributes":{"line_color":"#d62628","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1202","type":"Line"},{"attributes":{},"id":"1173","type":"WheelZoomTool"},{"attributes":{"axis_label":"tau[1]","formatter":{"id":"1257"},"ticker":{"id":"1169"}},"id":"1168","type":"LinearAxis"},{"attributes":{},"id":"1232","type":"UnionRenderers"},{"attributes":{},"id":"1169","type":"BasicTicker"},{"attributes":{},"id":"1233","type":"Selection"},{"attributes":{},"id":"1175","type":"SaveTool"},{"attributes":{"data_source":{"id":"1201"},"glyph":{"id":"1202"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1203"},"selection_glyph":null,"view":{"id":"1205"}},"id":"1204","type":"GlyphRenderer"},{"attributes":{},"id":"1244","type":"UnionRenderers"},{"attributes":{"source":{"id":"1201"}},"id":"1205","type":"CDSView"},{"attributes":{},"id":"1245","type":"Selection"},{"attributes":{},"id":"1259","type":"BasicTickFormatter"},{"attributes":{"axis_label":"step","formatter":{"id":"1243"},"ticker":{"id":"1114"}},"id":"1113","type":"LinearAxis"},{"attributes":{"source":{"id":"1094"}},"id":"1098","type":"CDSView"},{"attributes":{},"id":"1246","type":"UnionRenderers"},{"attributes":{},"id":"1247","type":"Selection"},{"attributes":{"overlay":{"id":"1025"}},"id":"1021","type":"BoxZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"1076","type":"BoxAnnotation"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1213"},"selection_policy":{"id":"1212"}},"id":"1033","type":"ColumnDataSource"},{"attributes":{"line_alpha":0.1,"line_color":"#1f77b3","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1035","type":"Line"},{"attributes":{"line_color":"#1f77b3","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1034","type":"Line"},{"attributes":{"axis":{"id":"1113"},"ticker":null},"id":"1116","type":"Grid"},{"attributes":{"children":[[{"id":"1002"},0,0],[{"id":"1053"},1,0],[{"id":"1104"},2,0],[{"id":"1155"},3,0]]},"id":"1270","type":"GridBox"},{"attributes":{"line_color":"#ff7e0e","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1039","type":"Line"},{"attributes":{"line_alpha":0.1,"line_color":"#d62628","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1101","type":"Line"},{"attributes":{},"id":"1024","type":"HelpTool"},{"attributes":{"axis":{"id":"1117"},"dimension":1,"ticker":null},"id":"1120","type":"Grid"},{"attributes":{},"id":"1248","type":"UnionRenderers"},{"attributes":{"axis":{"id":"1015"},"dimension":1,"ticker":null},"id":"1018","type":"Grid"},{"attributes":{"data_source":{"id":"1033"},"glyph":{"id":"1034"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1035"},"selection_glyph":null,"view":{"id":"1037"}},"id":"1036","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"1094"},"glyph":{"id":"1095"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1096"},"selection_glyph":null,"view":{"id":"1098"}},"id":"1097","type":"GlyphRenderer"},{"attributes":{},"id":"1249","type":"Selection"},{"attributes":{},"id":"1260","type":"UnionRenderers"},{"attributes":{},"id":"1261","type":"Selection"},{"attributes":{"source":{"id":"1033"}},"id":"1037","type":"CDSView"},{"attributes":{"line_alpha":0.1,"line_color":"#2ba02b","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1096","type":"Line"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1235"},"selection_policy":{"id":"1234"}},"id":"1099","type":"ColumnDataSource"},{"attributes":{"line_color":"#2ba02b","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1044","type":"Line"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1215"},"selection_policy":{"id":"1214"}},"id":"1038","type":"ColumnDataSource"},{"attributes":{"line_alpha":0.1,"line_color":"#ff7e0e","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1040","type":"Line"},{"attributes":{},"id":"1250","type":"UnionRenderers"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1217"},"selection_policy":{"id":"1216"}},"id":"1043","type":"ColumnDataSource"},{"attributes":{},"id":"1251","type":"Selection"},{"attributes":{},"id":"1020","type":"WheelZoomTool"},{"attributes":{},"id":"1262","type":"UnionRenderers"},{"attributes":{},"id":"1005","type":"DataRange1d"},{"attributes":{"data_source":{"id":"1038"},"glyph":{"id":"1039"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1040"},"selection_glyph":null,"view":{"id":"1042"}},"id":"1041","type":"GlyphRenderer"},{"attributes":{"line_color":"#ff7e0e","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1090","type":"Line"},{"attributes":{"source":{"id":"1038"}},"id":"1042","type":"CDSView"},{"attributes":{"line_color":"#1f77b3","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1085","type":"Line"},{"attributes":{},"id":"1263","type":"Selection"},{"attributes":{},"id":"1109","type":"LinearScale"},{"attributes":{"line_color":"#d62628","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1049","type":"Line"},{"attributes":{"data_source":{"id":"1099"},"glyph":{"id":"1100"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1101"},"selection_glyph":null,"view":{"id":"1103"}},"id":"1102","type":"GlyphRenderer"},{"attributes":{},"id":"1074","type":"ResetTool"},{"attributes":{},"id":"1056","type":"DataRange1d"},{"attributes":{"data_source":{"id":"1089"},"glyph":{"id":"1090"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1091"},"selection_glyph":null,"view":{"id":"1093"}},"id":"1092","type":"GlyphRenderer"},{"attributes":{},"id":"1124","type":"SaveTool"},{"attributes":{"line_alpha":0.1,"line_color":"#2ba02b","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1045","type":"Line"},{"attributes":{"end":999},"id":"1156","type":"Range1d"},{"attributes":{"below":[{"id":"1011"}],"center":[{"id":"1014"},{"id":"1018"}],"frame_height":150,"frame_width":600,"left":[{"id":"1015"}],"renderers":[{"id":"1036"},{"id":"1041"},{"id":"1046"},{"id":"1051"}],"title":{"id":"1206"},"toolbar":{"id":"1026"},"toolbar_location":null,"x_range":{"id":"1156"},"x_scale":{"id":"1007"},"y_range":{"id":"1005"},"y_scale":{"id":"1009"}},"id":"1002","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"1111","type":"LinearScale"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1219"},"selection_policy":{"id":"1218"}},"id":"1048","type":"ColumnDataSource"},{"attributes":{},"id":"1121","type":"PanTool"},{"attributes":{"data_source":{"id":"1043"},"glyph":{"id":"1044"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1045"},"selection_glyph":null,"view":{"id":"1047"}},"id":"1046","type":"GlyphRenderer"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"gjl6/N4mCUDidf2C3TASQBrdQexMMSFAqiuf5XmwHUDVJk7ud8gcQNXPm4pUmBxA+KV+3lS0IUCTHRuBeL0fQGfttgvNtSBAyTzyBwNPGkDv4ZLjTikgQMaFAyFZoCBAo68gzVh0FkBI4XoUrocbQA5nfjUHSCFAAYdQpWbvIEDGihpMw5AeQGNi83FtyCJADM11GmnJFUBSSZ2AJmIkQGNi83FtKBdA0XmNXaJKIkBdp5GWyrsZQD+MEB5trCJAvTWwVYIFGUCztb5IaMsTQOGX+nlTkSJAdxA7U+icGEDXwFYJFscfQGtlwi/18xZAUtUEUffhGEBKmGn7VxYgQHgLJCh+7BVAwmnBi76iF0AD7KNTV/4OQJT7HYoCPRVAFeP8TSh0IECbj2tDxfgbQA2mYfiIeBFA5fIf0m+PIECDbi9pjLYaQEmil1EsZyBAPgXAeAZ9IEAoDwu1pvkkQBHHuriNRiRAXCBB8WMMF0DO/GoOEGweQL/xtWeWpB1A11HVBFHXH0CiKNAn8uQWQN9sc2N6AgtAo3VUNUG0FkAhk4ychT0XQH8TChFwaBZAn47HDFSmIUDEmV/NAYIgQFlpUgq6/SBAO8eA7PWOF0AqkUQvo1gjQGItPgXAuBBAPPceLjmuCEDL+PcZF24eQLEWnwJg/B9AeqpDboYrIEABamrZWl8fQDgQkgVMABJAu9Vz0vvG3j+8eapDbsYWQETAIVSpGR5AE2ba/pWVHkCwOJz51dwjQPSJPEm6NiJA0a5Cyk/qGkACSG3i5B4fQPq4NlSM8x1A+MJkqmCUGUAw2A3bFjUhQK98lufBfR1A3sg88gdDG0B/3lSkwpgcQBgmUwWjshxARWRYxRsZGEBd3EYDeEsWQMqmXOFd7hdATihEwCFEIkBfRrHc0qoYQFlpUgq6vRpAb7vQXKfxHkDnjCjtDR4iQH9N1qiHmCBAsCDNWDQdIEACK4cW2Y4KQE8eFmpNEyVAN1SM8zcBG0DufD81XnogQDxmoDL+XRpAqfbpeMxAF0CBlUOLbIclQKkwthDkgB1A2/l+arwUEUDChqdXynIYQHEDPj+McCBA1q2ek95XHEAUXKyowbQiQLYtymyQiRdA3SQGgZVjJkAr3sg88rcgQAPPvYdLjhtA0ZFc/kMaIEDbiv1l94QkQOLMr+YAIR1An+V5cHc2FEBQx2MGKpMgQMSZX80Boh1AGRwlr87BIUBcA1slWFwaQG7dzVMdEhZAnYAmwoZnJEDY8PRKWQYTQJ612y40VxhAmUf+YOD5HECFQgQcQgUgQMI0DB8RcxxALuI7MeulH0CTqYJRSZ0TQH5S7dPxGB1AF5rrNNJSDEBMVG8NbFUSQPgZFw6EpB9A95LGaB31HkAEyqZc4X0eQMYzaOifABlAkst/SL9NIUC1pnnHKZoZQA74/DBCiCBA0m9fB855JUDGpwAYz2AXQPZ698d7NR5AuvdwyXFHHEAibHh6pcwfQDI9YYkHFBxAKVyPwvWoH0BJumbyzVYjQEP/BBcrKhpAE0n0MooFI0DOpbiq7LscQKIo0CfypBtAKh2s/3O4HkALtaZ5x7kiQABvgQTFjxlAWK1M+KV+EUAtJjYf14YKQJp3nKIjGSRASFD8GHMXEEAp7Q2+MMkiQH3LnC6LSSJAeHqlLEOcFUDajxSRYQUjQG3/ykqTshFAwARu3c3TFkDACYUIOITzP+CEQgQc4hVADk+vlGVoJUCLNzKP/MEiQHrCEg8oyyJA6s9+pIhsIECBW3fzVOceQARWDi2yHRpAm+Ydp+hoJkABTYQNT28lQOLMr+YAQR9AMuauJeRjHEB+Uu3T8fgeQM4GT9fJz6w/Afvo1JVPFkAzxLEubqMmQDVeukkMwh1AVg4tsp1vIEAldQKaCNsbQIAr2bERqCBA1VsDWyWYFkASFD/G3HUgQFDfMqfLQh5AfsaFAyFZ/j9AGHjuPVzsP0vJchJKX+E/PtAKDFldG0DImLuWkM8IQNr+lZUmJSNAMUJ4tHGEIUAaho+IKXEiQKg1zTtOUR1AER5tHLEWGEDiWBe30QAaQJpfzQGCqSBAIF7XL9htGkBd3EYDeGspQCeloNtL+hhAYOXQItt5F0DBbti2KJMXQOUK73IRXyBA5X6HokC/HkCE8GjjiLUeQKJdhZSfNB1AZhTLLa0WIUDsUbgehcsfQGIQWDm06BtAK9mxEYgHIUB0XmOXqF4eQB8uOe6UriFAE0n0MorVIUB8REyJJKojQFKbOLnfIRVAfzDw3HtYHUDZJaq3BlYeQHqqQ26GGxpAyTzyBwMfI0CoNc07TjEhQNGuQspPahxA6KT3ja/9IEAHX5hMFawlQGBZaVIK+hdAjNZR1QTxHECUap+Ox+wcQNGuQspPeiNA7bYLzXVaHECPcFrwoq8gQN8yp8tiYhNAKdAn8iRJH0AYeO49XDIWQA4QzNHj1xhA0egOYmdKG0D4wmSqYFQlQME5I0p7oyZAsp3vp8ZLJED1LXO6LPYiQM9OBkfJqxxACr/Uz5uKG0AtIR/0bBYUQCGwcmiR7SRANrBVgsWhFECWIY51cfskQA4tsp3vZyNAlzldFhN7G0B5dY4B2UsfQHfzVIfcLBFAA+yjU1e+GkDJ5T+k374OQMUgsHJoMRBAeGLWi6EsIEDbM0sC1DQXQB/0bFZ9LhdArrt5qkNeIUBqh78ma3QYQKJ/gosVVRdAOUVHcvlPJEDdmJ6wxHMjQOaRPxh4Th1A2xZlNsjUIECt3XahuW4gQAUXK2ow7RtAXTP5ZptbIUB+GCE82ggjQMjqVs9J7xVAATW1bK1PGkB3EDtT6EwiQIiAQ6hS0xdAJ2a9GMopHkBvEoPAymEZQDl/EwoR0BZAHqfoSC5/H0Aychb2tMMGQPUtc7oshhJAgLdAguJHHEBNhA1PrzQlQEMc6+I2GihAJLn8h/Q7KECSlsrbEY4cQMKjjSPWQiBARyBe1y+YG0Ab2CrB4pAfQM/3U+OluxxAJEVkWMV7HEB6GcVySwsaQL1SliGOtR1A7xtfe2bJEED+mqxRD3EaQOXVOQZkbx5AM1AZ/z6jHUBIG0esxYccQOf7qfHSTShAbLJGPURjGECsVib8Ul8dQOyjU1c+qyFAl8rbEU4LEUCVYHE48ysRQCUGgZVDyw1AOq+xS1SPHkBmMbH5uJYaQKD9SBEZdhhAXdxGA3grF0CvsUtUbw0VQExPWOIBZR5AqcE0DB8xE0AqOpLLf2gkQAnh0cYRixpAt2J/2T1ZHUB0e0ljtI4hQHCZ02UxsR5A3zKny2ICGEBcIEHxY6wTQOPHmLuW0BFAOe6UDtaPIkDGounsZFATQPxSP28q0hNAZQETuHVHIUC7fsFu2LYcQObo8XubjiFAMIFbd/MUHECfAmA8g4YeQDLmriXksyNA78nDQq0pJ0DvycNCrSknQKyL22gADyZA+YOB597zIkB7FK5H4QohQMDnhxHCoxlAd9Zuu9CMIEC/t+nPfuQUQA4QzNHjtyFAea9amfBbIEDfFcH/VrIcQOcdp+hIjhZAe0ljtI4qIUAMdsO2RfkeQHtJY7SOahtAPiKmRBJ9IUB1yM1wA14cQPm9TX/24yBApPyk2qcDHUB1jgHZ610cQKZ+3lSkoiJAWKg1zTvuJEC0jqomiFoiQHEgJAuYgCNAYtaLoZwIIkBCQ/8EF6sWQKgd/pqs8RxAlX1XBP9LI0AcfGEyVbAYQPIHA8+9xxZAS+oENBGWHEDMRXwnZr0WQIKtEiwOJxhANnaJ6q0RIEDWVuwvu0cgQEgbR6zFpxxABOeMKO3NIEBpOjsZHLUgQIyhnGhXYRxAmC8vwD5aHEA3p5IBoIrkP77BFyZThfk/MzMzMzPzJ0DnOo20VF4SQJOMnIU9TRdAfPKwUGsaIEDDDfj8MBIgQCkiwyreqCBAJH8w8NzbGkCinGhXITUjQDS/mgMEUxVAKVyPwvXIIkB4KAr0iQwgQFRSJ6CJkB1ATRB1H4AUCUBB1H0AUlscQPkP6bev4xtAv2VOl8UEIEAId2fttmseQLnfoSjQNyBAZmt9kdBWGkBjKCfaVWggQFX2XRH8TxlAon+CixV1HkAZyol2FRIeQEgbR6zFtyFAtHHEWnyqHUCDL0ymChYgQAzqW+Z0mSFAyAc9m1VfHkAr2bERiBcfQIy+gjRj0SFAX3tmSYD6G0A+XHLcKb0YQGFPO/w1KSJARiV1ApqIHUBzS6shcQ8cQKYPXVDfwiBAgIKLFTU4GEAqkUQvo7geQIhGdxA78xVAXb9gN2ybF0Dn49pQMZ4hQFzJjo1AnB5A8S4X8Z1YIEDxLhfxnVggQEYIjzaOWB9AOC140VcwHkD27o/3qjUfQDnWxW00YBpAp3nHKTqSKUC/K4L/rXQhQBrAWyBBcRxAArwFEhQ/BUD7rZ0oCQnuP6rx0k1iMBBA+Um1T8fTIUA/qfbpeEwbQGkAb4EEpSVA7fXuj/dqFUB2cRsN4I0lQASQ2sTJjSNAFR3J5T9kJECZKhiV1IkfQF2nkZbK+xxA5dAi2/k+IUBmZmZmZjYhQHQMyF7vriBAO420VN6uHEBUxr/PuPAaQIPAyqFFdiRAVG8NbJVgFkA9Sbpm8t0gQCBGCI82bhxATYQNT6/UFUAfgNQmTl4jQHIW9rTDnxdAbf/KSpMyHUCi7gOQ2mQdQINMMnIW9iBAXtcv2A17GEC8kXnkDyYgQI1/n3Hh8CBAG55eKcuwFUBUVz7L8wAWQAFqatla/xVAB7Ezhc4LI0B1jgHZ610PQD0K16NwvShAXeFdLuIbIUAeFmpN814gQH7GhQMhWR9ApBmLprPzGUAMzXUaaWkbQA5KmGn7lyBAXDgQkgVMF0D8xteeWSIgQPFo44i1eB5AwcWKGkwDIUAmjdE6qrofQG+70FynUR1AHm0csRa/FkD/W8mOjeAdQH5S7dPxWBxAQE0tW+trEkCxUGuadzwkQKgAGM+gIR9A+wW7YdsCGkCgT+RJ0vUaQIs3Mo/8gRtA3xrYKsECIUDqz36kiKwUQHZPHhZqDSRAMEymCkYFJkBdM/lmm5seQOQUHcnlHxdABp57D5fcHUAYfQVpxiIUQFQdcjPcIBdAW86luKocIUDJyFnY054gQCSX/5B+WyRAJqq3BrYKHUDVITfDDXgNQIv9ZffkYRJAm8k329wYB0AZOQt72oEaQHrf+NozixRA+1xtxf7yHkB8m/7sR+ocQO2ePCzU2iFAuaXVkLgnH0Bl/PuMC0cMQDblCu9y8RhASbpm8s3WHUDHLlG9NfAhQEdVE0TdhxxArthfdk+uIECjdVQ1QXQgQMwLsI9OXSFA3bWEfNBTFkCW58HdWasgQO/hkuNOSRxAZyeDo+SVG0A/UkSGVXwaQOscA7LXCyBAUiegibChHUA5Yi0+BQARQEVkWMUbGf8/HsAiv34I6T/oMF9egF0cQMsQx7q4bSRA4q/JGvUQAUAczvxqDhAdQLNBJhk5qxxAUORJ0jWzI0AkfzDw3DsgQJEKYwtBLhxAKxN+qZ9nIUAYYB+duvIcQPzjvWploiFAf03WqIfoGEDp8Xub/nwgQM7HtaFifBZA/pqsUQ+RHkA10lJ5O6IdQGRYxRuZRxlASYWxhSDHIkB/MPDce0gjQILix5i7lh1AHVVNEHWvIEC3nEtxVbkdQG6LMhtk4iBA626e6pB7GkCOHr+36Q8dQFpkO99PTR1ATb7Z5sb0HUDECOHRxqEhQG3i5H6HwhtAu37BbtiWH0CeJF0z+WYYQNnr3R/v9RNAvp8aL93UIkBSflLt07EXQHpTkQpjSyJA+tAF9S3DIUCRCmMLQQ4fQPaX3ZOHRR9AAJF++zpQHUDUSEvl7egTQIzzN6EQ4SJAMJ5BQ/8EHkAyA5Xx74MiQKmfNxWpsBdAZjGx+bjWHUC/K4L/rWQhQEkRGVbxFiNAvhOzXgzlH0AdOGdEaW8hQJCIKZFEr/K/IXTQJRx6xz+J0t7gC9MHQLX9KytNyhJAXW3F/rK7JkDLoUW2890aQJynOuRmGBpAvTrHgOyVHkCUMNP2r8weQI82jliLzxlAOIQqNXtwI0DHndLB+j8eQF1txf6yOxtAfm/Tn/0IFEDCL/XzpqISQMMN+PwwgiFAjbRU3o7QHkCr56T3jW8gQN6Th4VaMyRAisiwijfyAkAtz4O7s/YKQP/sR4rI0BxAsCDNWDT9HEDyDBr6J9gbQO/hkuNOqSFA9aEL6lsmHUAgJAuYwF0gQKqaIOo+YB1A0QX1LXO6F0Bgdk8eFmolQAfOGVHa2xNAb0c4LXiBI0DGihpMwzAUQKkwthDkIB1ATODW3Tw1HkAbR6zFp0AeQOQs7GmHPxpAINJvXwdOFECrPldbsb8jQCQofoy5axJA9ODurN02GkDWqIdodGceQMXJ/Q5F4RpAjUXT2cmgHkBslWBxOHMgQKRwPQrXIyhAAd4CCYrPIUBOnNzvUJQVQPEpAMYzqCFAumsJ+aAHIkCAK9mxEegbQFN5O8JpMSFAJ07udyi6IEAP0egOYucfQENWt3pOCiJA8MSsF0NpIUC3Yn/ZPRkkQJ57D5cc5yNAfdCzWfXZIEBqEyf3O5QaQM6qz9VWjCtARwN4CyTIKUDQm4pUGFv/P2UZ4lgXNxhAE2HD0ytFHkDbUDHO3+QUQDDw3Hu4pBdAEk4LXvT1IEASvYxiuZUgQFu21hcJ7RdAoRABh1DFFEA/dEF9y3wTQIl7LH3ooh5ARwN4CyToG0BUxr/PuLAiQLmI78Ssdx1AIF7XL9htIkAxlBPtKsQaQLk2VIzzVxpAT0ATYcOzHUAu/yH99mUgQN1B7EyhgyBAJ2a9GMrJHEATRN0HIFUZQFZ9rrZiLyJASZ2AJsJGHkDf+NozS6IeQMQlx53SgR5AIHu9++P9HkCq8dJNYnAeQNF0djI4yhZA3h/vVSvTG0DFOH8TCpEgQCF2ptB5rR1AaAWGrG7lIkD6RJ4kXZMTQHu9++O9yhxAwaikTkCTHkCwIM1YND0dQH2utmJ/OSRA3rBtUWbDGUAW+8vuyYMOQErvG197xhxAd2fttgsdIEDwMy4cCOkgQJs90AoMWRxAe0563/j6I0DMlxdgH/0WQE6XxcTmQyNA4Sh5dY6hGkB5QNmUKwwjQPXzpiIVphZAvw6cM6L0JkBH5pE/GGggQHkB9tGpCxJAQkP/BBerI0A7cM6I0l4jQLecS3FVeRVA+U7MejGUEkByio7k8n8gQNuF5jqN9BpAKPIk6ZqpF0ADste7P14aQHK/Q1GgTxpAmrFoOjvJIEBNSkG3lzQZQFrwoq8g/SBA3V7SGK0DG0BtrS8S2vIfQManABjPICBAYeC593CpGUA+syRATe0bQHkGDf0TbCFALLe0GhI3GUAplltaDckZQGjQ0D/BlSBAqBjnb0JBGEB8m/7sR2oYQGowDcNHBBhAdZMYBFZuIkBh4Ln3cAkRQFInoImw4RhA3bWEfNBTJ0CfWRKgphYXQL9IaMu5JCNAxAjh0caxIEAeigJ9It8hQGuad5yiAyVA7xtfe2aJF0Bt/8pKkwIjQKH4MeauxSVA+3Q8ZqAyDkD5oGez6nMkQCJPkq6ZHBtAaQBvgQQVIkBzaJHtfM8gQBJOC170hSBAOlj/5zBfIUDC+j+H+VIbQKgAGM+gYRtAnWNA9nq3DUCs/3OYL28ZQGPRdHYyOAdAsAPnjCgtEEA7wmnBiz4SQHB87ZklgRxA5SfVPh0vEkAvbqMBvKUdQADGM2jo/yBAoFT7dDwGGkDri4S2nGsZQLsKKT+p5iFAZhTLLa2mIUBg6udNRTogQP+VlSal0CBAjNtoAG8hHUC+amXCL+UgQLddaK7TCBxATpfFxOZjHkDiAWVTrhAgQOXyH9JvHxtAteBFX0Ga9L/BqKROQNMDQFwgQfFjTANA/aTap+MxEkCG5jqNtHQRQAisHFpkmyRAAHSYLy+wIEDdzVMdcgMgQOJYF7fRQChAuOS4UzroIUC4BrZKsLgKQFgczvxqDhpACObo8Xt7GEAjoS3nUjwjQCOhLedSPCNA/iYUIuBwIkA/HY8ZqKwcQOGX+nlT8RtAdv2C3bB9IUCMuWsJ+UAgQPIk6ZrJFyFAuvdwyXGHGUBTP28qUoEgQKwcWmQ7fxNAGsBbIEEhIkCad5yiI/klQOQUHcnl/yZA0ZFc/kOaJkA3/dmPFJEiQN6OcFrwohlA+KqVCb+0HkB9s82N6YkfQB6n6Egu3xxAtDwP7s56GEAYQznRrgIiQKMBvAUSRCFAcQM+P4xQG0Bzol2FlB8eQKd5xyk6MiFAP4wQHm38HkA1QdR9ALIdQPwdigJ9EiJAJ4Oj5NUZHkC5xJEHIgvmP662Yn/ZPfM/IqtbPSe9CUBQ3zKny2IKQBZqTfOOcyZAODKP/MGgE0D8qfHSTSIkQJAxdy0hHw5Am+Ydp+hIJkByio7k8j8kQHIz3IDPjxRAqyaIug8wIUB07+GS484YQPzepj/7wSNAN091yM3AIkBT0O0ljcEjQAiUTbnC2x9AFqQZi6ZTIECU+x2KAp0fQNnO91PjZSdAtvP91HjpEUAKou4DkJoWQGXfFcH/9hdA/Knx0k2iFUAtPgXAeGYUQLd6TnrfeA5AhZm2f2UlGUA0ETY8vRIbQMpPqn06/iBA4XoUrkcBGkARNjy9UjYkQNobfGEylSVAjNtoAG8BJEADfSJPkk4dQKg1zTtO0RxAVACMZ9DQH0Auc7osJrYaQNV46SYx6CFA+tAF9S2TF0BYkGYsmg4dQKZh+IiYMh1ARwN4CyRoAUCI9NvXgfMJQJhMFYxKqgjA6spneR5c/L/2JLA5B8/Ev52dDI6S9yBA/isrTUoxIUDeH+9VK3MdQAOy17s/fh5AlWWIY12cIEDXhopx/lYhQADGM2joPxpANWPRdHYSIECcM6K0NxgkQPOOU3Qk1xlA2ubG9ISVIUBG66hqgogbQGFUUiegyRxAS+XtCKfFGEDSGK2jqkkdQG6LMhtksiJAf4eiQJ9IEkDjNhrAW8AkQIczv5oDRANASaKXUSxXHUBQU8vW+oIfQGl0B7EzBRtAFeP8TSgkG0AkufyH9BsDQBEBh1Clpg9ALxfxnZj1GkCKWS+GcqIdQHe+nxov/R5AnPnVHCA4HkBkXdxGA9giQNBhvrwACyBAe2tgqwTrGkAk1uJTAOwTQLCPTl35rBVA3SQGgZXDF0BFZFjFG7kgQBk5C3vaoSNAzywJUFNLF0D/7EeKyLAgQO5aQj7omSRAxyk6ksufE0CMZ9DQP+EWQANgPIOGTiNAkQpjC0EuIUDwbfqzH6kfQK3AkNWtnhdAYFlpUgraF0Af9GxWfW4hQA2reCPzCBdA88gfDDyXHkAfaAWGrI4cQFpkO99PPSBAK2owDcNXIUDSNZNvtpkfQDKs4o3MoxlAAfvo1JVPGED99nXgnHEUQO8bX3tmGSFAUtUEUffBD0B/3lSkwlgQQEXY8PRKOSNA6xwDste7FUDqz36kiIwdQBPyQc9mNRdAM/59xoXjI0Df/fFetdIdQHDrbp7q8BpAcr9DUaBPG0CNKO0NvnAbQB04Z0Rp3yFAA+yjU1feHEB+jLlrCbkfQFLt0/GYQR5Ar84xIHsdIkBL6gQ0EYYiQGA8g4b+KSBAur2kMVqnHEB1q+ek9w0SQB9LH7qgnhpAgSbChqcXGkCM+E7MerEYQKIo0CfydCFArMq+K4IPI0A1e6AVGNIXQM1YNJ2dTBZArUz4pX7+HUAB3gIJin8dQInqrYGtsh9AyAc9m1VPIECojH+fcWEaQGmM1lHVBB9AJxQi4BDKH0BEUaBP5AkdQLJLVG8NzB5Asp3vp8ZbIUAjEK/rF0wbQITYmULndRxAu/JZngf3HkAnFCLgELogQCx96IL6lvY/GCZTBaOSBkCOdXEbDWATQNatnpPedx5ANGjon+AiG0AZyol2FeIhQAX6RJ4k/RhAJLTlXIprIECAfXTqykccQI/8wcBzLyNAV1uxv+xeF0BJY7SOqsYbQF4u4jsxKyBAglZgyOo2G0B+GCE82hgfQG40gLdAIiRA28TJ/Q7lHUBV+3Q8ZjAhQMKGp1fKYiFAa4Ko+wAkI0AxCKwcWoQmQHyb/uxHKh1AxEKtad5RJkCyaDo7GXwSQKJdhZSfNBxAjukJSzxAGUCQTl35LE8eQFkXt9EAvh9Ar3yW58E9G0BS7dPxmKEcQFA25Qrvkh1ApWsm32zzH0D7eVORCkMcQEAYeO49fCNAL4Zyol0lFkCjO4idKRQaQFFmg0wyUhdAIv32deAMIUDZmULnNVYiQIv9Zffk4RxAzqrP1VasGED5g4Hn3uMfQF5LyAc9OxNAIF7XL9hdIkCZ9WIoJxobQJFhFW9kniFAGm7A54fRGkBRg2kYPiIcQGq8dJMYJCFAGedvQiEiI0Aep+hILq8jQDI9YYkHVBpAgQTFjzG3JkDVsrW+SOgWQJ6Y9WIoZw9A/MbXnlnyEUCsi9toAC8ZQMjqVs9JbxdA9u6P96p1GUBiLT4FwNgcQGXfFcH/1h1Ap5GWytuxIEDcY+lDFzQiQAYSFD/GPB1AgIKLFTX4HEBSLLe0GrISQJYhjnVx+xpAzt+EQgQcF0ATDyibcgUiQDNt/8pKMxNAsHJoke2sIUA=","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1233"},"selection_policy":{"id":"1232"}},"id":"1094","type":"ColumnDataSource"},{"attributes":{},"id":"1264","type":"UnionRenderers"},{"attributes":{"source":{"id":"1043"}},"id":"1047","type":"CDSView"},{"attributes":{"source":{"id":"1099"}},"id":"1103","type":"CDSView"},{"attributes":{},"id":"1265","type":"Selection"},{"attributes":{},"id":"1007","type":"LinearScale"},{"attributes":{},"id":"1009","type":"LinearScale"},{"attributes":{"toolbar":{"id":"1271"},"toolbar_location":"above"},"id":"1272","type":"ToolbarBox"},{"attributes":{"line_alpha":0.1,"line_color":"#d62628","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1050","type":"Line"},{"attributes":{"axis_label":"step","formatter":{"id":"1211"},"ticker":{"id":"1012"}},"id":"1011","type":"LinearAxis"},{"attributes":{},"id":"1107","type":"DataRange1d"},{"attributes":{"axis":{"id":"1062"},"ticker":null},"id":"1065","type":"Grid"},{"attributes":{},"id":"1012","type":"BasicTicker"},{"attributes":{},"id":"1114","type":"BasicTicker"},{"attributes":{},"id":"1122","type":"WheelZoomTool"},{"attributes":{"axis":{"id":"1011"},"ticker":null},"id":"1014","type":"Grid"},{"attributes":{"axis":{"id":"1066"},"dimension":1,"ticker":null},"id":"1069","type":"Grid"},{"attributes":{},"id":"1063","type":"BasicTicker"},{"attributes":{"axis_label":"theta[0]","formatter":{"id":"1209"},"ticker":{"id":"1016"}},"id":"1015","type":"LinearAxis"},{"attributes":{"data_source":{"id":"1048"},"glyph":{"id":"1049"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1050"},"selection_glyph":null,"view":{"id":"1052"}},"id":"1051","type":"GlyphRenderer"},{"attributes":{"source":{"id":"1048"}},"id":"1052","type":"CDSView"},{"attributes":{"source":{"id":"1089"}},"id":"1093","type":"CDSView"},{"attributes":{},"id":"1266","type":"UnionRenderers"},{"attributes":{},"id":"1071","type":"WheelZoomTool"},{"attributes":{},"id":"1267","type":"Selection"},{"attributes":{"axis_label":"theta[1]","formatter":{"id":"1225"},"ticker":{"id":"1067"}},"id":"1066","type":"LinearAxis"},{"attributes":{},"id":"1016","type":"BasicTicker"},{"attributes":{},"id":"1067","type":"BasicTicker"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"1019"},{"id":"1020"},{"id":"1021"},{"id":"1022"},{"id":"1023"},{"id":"1024"}]},"id":"1026","type":"Toolbar"},{"attributes":{},"id":"1075","type":"HelpTool"},{"attributes":{},"id":"1118","type":"BasicTicker"},{"attributes":{"text":""},"id":"1254","type":"Title"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"1121"},{"id":"1122"},{"id":"1123"},{"id":"1124"},{"id":"1125"},{"id":"1126"}]},"id":"1128","type":"Toolbar"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"1070"},{"id":"1071"},{"id":"1072"},{"id":"1073"},{"id":"1074"},{"id":"1075"}]},"id":"1077","type":"Toolbar"},{"attributes":{"axis_label":"tau[0]","formatter":{"id":"1241"},"ticker":{"id":"1118"}},"id":"1117","type":"LinearAxis"},{"attributes":{},"id":"1060","type":"LinearScale"},{"attributes":{},"id":"1070","type":"PanTool"},{"attributes":{"axis_label":"step","formatter":{"id":"1227"},"ticker":{"id":"1063"}},"id":"1062","type":"LinearAxis"},{"attributes":{},"id":"1019","type":"PanTool"},{"attributes":{"overlay":{"id":"1076"}},"id":"1072","type":"BoxZoomTool"},{"attributes":{},"id":"1073","type":"SaveTool"},{"attributes":{"overlay":{"id":"1127"}},"id":"1123","type":"BoxZoomTool"},{"attributes":{},"id":"1022","type":"SaveTool"},{"attributes":{},"id":"1125","type":"ResetTool"},{"attributes":{"below":[{"id":"1113"}],"center":[{"id":"1116"},{"id":"1120"}],"frame_height":150,"frame_width":600,"left":[{"id":"1117"}],"renderers":[{"id":"1138"},{"id":"1143"},{"id":"1148"},{"id":"1153"}],"title":{"id":"1238"},"toolbar":{"id":"1128"},"toolbar_location":null,"x_range":{"id":"1156"},"x_scale":{"id":"1109"},"y_range":{"id":"1107"},"y_scale":{"id":"1111"}},"id":"1104","subtype":"Figure","type":"Plot"},{"attributes":{"line_color":"#d62628","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1100","type":"Line"},{"attributes":{},"id":"1023","type":"ResetTool"},{"attributes":{"line_alpha":0.1,"line_color":"#1f77b3","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1086","type":"Line"},{"attributes":{"below":[{"id":"1164"}],"center":[{"id":"1167"},{"id":"1171"}],"frame_height":150,"frame_width":600,"left":[{"id":"1168"}],"renderers":[{"id":"1189"},{"id":"1194"},{"id":"1199"},{"id":"1204"}],"title":{"id":"1254"},"toolbar":{"id":"1179"},"toolbar_location":null,"x_range":{"id":"1156"},"x_scale":{"id":"1160"},"y_range":{"id":"1158"},"y_scale":{"id":"1162"}},"id":"1155","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"1257","type":"BasicTickFormatter"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1229"},"selection_policy":{"id":"1228"}},"id":"1084","type":"ColumnDataSource"},{"attributes":{},"id":"1058","type":"LinearScale"},{"attributes":{"line_color":"#2ba02b","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1095","type":"Line"},{"attributes":{"below":[{"id":"1062"}],"center":[{"id":"1065"},{"id":"1069"}],"frame_height":150,"frame_width":600,"left":[{"id":"1066"}],"renderers":[{"id":"1087"},{"id":"1092"},{"id":"1097"},{"id":"1102"}],"title":{"id":"1222"},"toolbar":{"id":"1077"},"toolbar_location":null,"x_range":{"id":"1156"},"x_scale":{"id":"1058"},"y_range":{"id":"1056"},"y_scale":{"id":"1060"}},"id":"1053","subtype":"Figure","type":"Plot"},{"attributes":{"data_source":{"id":"1084"},"glyph":{"id":"1085"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1086"},"selection_glyph":null,"view":{"id":"1088"}},"id":"1087","type":"GlyphRenderer"},{"attributes":{"text":""},"id":"1206","type":"Title"},{"attributes":{"line_alpha":0.1,"line_color":"#ff7e0e","line_width":0.5,"x":{"field":"x"},"y":{"field":"y"}},"id":"1091","type":"Line"},{"attributes":{"source":{"id":"1084"}},"id":"1088","type":"CDSView"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"1025","type":"BoxAnnotation"},{"attributes":{"data":{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"1231"},"selection_policy":{"id":"1230"}},"id":"1089","type":"ColumnDataSource"},{"attributes":{},"id":"1126","type":"HelpTool"}],"root_ids":["1273"]},"title":"Bokeh Application","version":"2.2.3"}};n”, ” var render_items = [{"docid":"870486cc-6ef5-4bce-81c6-9de4b4ed614a","root_ids":["1273"],"roots":{"1273":"0fd24748-a623-4c5b-a7ef-b812aafc6938"}}];n”, ” root.Bokeh.embed.embed_items_notebook(docs_json, render_items);n”, “n”, ” }n”, ” if (root.Bokeh !== undefined) {n”, ” embed_document(root);n”, ” } else {n”, ” var attempts = 0;n”, ” var timer = setInterval(function(root) {n”, ” if (root.Bokeh !== undefined) {n”, ” clearInterval(timer);n”, ” embed_document(root);n”, ” } else {n”, ” attempts++;n”, ” if (attempts > 100) {n”, ” clearInterval(timer);n”, ” console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");n”, ” }n”, ” }n”, ” }, 10, root)n”, ” }n”, “})(window);”
], “application/vnd.bokehjs_exec.v0+json”: “”
}, “metadata”: {
- “application/vnd.bokehjs_exec.v0+json”: {
“id”: “1273”
}
}, “output_type”: “display_data”
}
], “source”: [
“bokeh.io.show(n”, ” bebi103.viz.trace(samples, parameters=["theta[0]", "theta[1]", "tau[0]", "tau[1]"])n”, “)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The traces are color-coded by chain.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“#### Parallel coordinate plotsn”, “n”, “For a parallel coordinate plot, we want to omit all four entries of the matrices Tau and Sigma because the entries are either zero or determined uniquely by other parameters. We can specify regular expressions in the omit list to conveniently omit all of the entries in these matrix parameters.”
]
}, {
“cell_type”: “code”, “execution_count”: 18, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“n”, “n”, “n”, “n”, “n”, “n”, ” <div class="bk-root" id="839e8f5c-0dea-441c-bf26-43e861ec5483" data-root-id="1635"></div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“(function(root) {n”, ” function embed_document(root) {n”, ” n”, ” var docs_json = {"8f0ea4dc-4b6e-4408-909b-05ae431b6c9d":{"roots":{"references":[{"attributes":{"below":[{"id":"1643"}],"center":[{"id":"1645"},{"id":"1649"}],"frame_height":175,"frame_width":600,"left":[{"id":"1646"}],"renderers":[{"id":"1667"},{"id":"1672"}],"title":{"id":"1734"},"toolbar":{"id":"1657"},"toolbar_location":"above","x_range":{"id":"1634"},"x_scale":{"id":"1639"},"y_range":{"id":"1637"},"y_scale":{"id":"1641"}},"id":"1635","subtype":"Figure","type":"Plot"},{"attributes":{"data":{"xs":[["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"]],"ys":[{"__ndarray__":"Rl9BmrEoAUCu00hL5b0hQOwX7IZti9M/JV0z+Wb7FkDFrBdDOZEDQBmto6oJ8iNAT8x6MZRTAEB+HThnREkaQNkIxOv6Bfo/6Ugu/yF9FUCH/gkuVlQDQHl1jgHZKwdAYAK37uap5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zSN/MPCcAkCpE9BE2JAaQAQ5KGGm7fM/y7kUV5U9AUCbcoV3uQgFQPZdEfxvtSJANIC3QIKiAkBi83FtqPgaQIFDqFKzRwVAujE9YYnnG0DjcOZXc4ACQARz9Pi9TQtAUyXK3lLO5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2nIuxVXlBUAnZr0YyskQQAeZZOQsbPA/wt1Zu+3yIkCS6GUUy+0HQMzuycNCXSNAcr9DUaDPBUCe0sH6P0caQEdVE0TdhwBAcjPcgM/PHUCSlsrbEc7/P7dif9k9eQZAkPmAQGdS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tvgUAONZBUBnmxvTE3YbQCI3ww34fPA/MdP2r6y0B0CMFTWYhiEOQMUgsHJoESdATkUqjC0EAEAsgv+tZAcaQPtcbcX+MgRAWmQ730+NGUCyS1RvDewDQC1DHOvi9gRA9nmM8szL4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FqQZi6azBkDjqrLvioAdQHqp2JjXEds/t3pOet+4DEAC2evdH28IQMZtNIC34CRA1XjpJjHIA0AMdsO2RXkXQEj+YOC5dwVA8SkAxjNIHEAlQE0tW2v/PxdlNsgk4wVAmBdgH5065D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9DehEAGHBUAH8BZIUFwQQBSuR+F6FNM/EHo2qz5nIEDH155ZEmAHQHLEWnwKkCJASl6dY0D2AkDCFyZTBeMaQD6uDRXjfARAjL6CNGOxHkCBsilXeJcFQBCv6xfsxghAut3LfXKU5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mqt3uB2a7T/xY8xdS2gnQHzysFBrmvY/Ag6hSs2+H0BZi08BMJ4QQJ2AJsKGRyZAqTC2EOQgBkD7P4f58sIZQB2OrtLd9eA/GvonuFgxFUD4a7JGPYQAQOcdp+hILgRALskBu5o83z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lPsdigK9BkA8vVKWIS4mQPRQ24ZRENk/qwmi7gPQFEA6WP/nMJ8KQFg5tMh2fiRA8RExJZLoBEAdIJijxw8bQMBbIEHxowRAvQD76NQ1HEC8P96rVqYBQP5g4Ln3cAVA4nK8AtET5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3nahuU4jCUD/lZUmpWAWQOQUHcnlP9s/R6zFpwAYD0ABpDZxcv8IQDhnRGlvECRAHY8ZqIz/BkClSSno9lIaQJ8fRgiP9gdA8bp+wW74GkC+TX/2I8UAQKrU7IFWoANANSkF3V7S4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W86luKrsBEB5knTN5PshQARY5NcPsdU/5KCEmbZfE0B56SYxCKwFQEn0Morl9iNAHHxhMlXwBkB/wW7YtkgbQJ0ui4nNRwJAxXJLqyExHEBJY7SOqmYDQAGkNnFy/wRApMaEmEuq2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TwZHyauzCkCPNo5Yi48fQBsN4C2QoNc/8rBQa5r3+T8yj/zBwPMNQGKh1jTv2CVA6pWyDHHsB0CwVYLF4WwaQOWzPA/uTglAHHxhMlXwGUCP5PIf0u8BQLraiv1lNwZA+FPjpZtE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gnNGlPaGA0CcvwmFCPgSQGZrfZHQlvI/y2d5HtwdHUBmiGNd3EYKQPfHe9XK1CNA2nIuxVXlBEAF3V7SGM0YQH5S7dPxWANAyXGndLD+G0BOC170FSQEQNRIS+XtyAJAXhPSGoNO5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gGCOHr+3CEBUUiegiRAoQG9kHvmDwQRA73IR34kZDEDQ7SWN0XoLQLIubqMBXCRArir7rgg+AkBQjZduEsMYQEljtI6qJvw/nrXbLjTXGkD0piIVxhYBQGTMXUvIhwNAG76FdeNd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kj8YeO59BECJmBJJ9JIcQJ30vvG1Z/w/E/BrJAnC7T+eew+XHLcKQAu1pnnHaSNAnMQgsHIoBkBKe4MvTAYcQGzPLAlQU/w/1ouhnGi3GUAm32xzY3r+Py7/If32tQNAvYqMDkjC4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n8iTpGtmBkB/2T15WAgdQC6thsQ9Fvk/N4lBYOUQBEC+MJkqGBUMQLIubqMBvCRAyHvVyoSfAkDt8NdkjZoZQLL0oQvqWwFA8+UF2EdHG0AouFhRgykBQLO1vkhoiwVAxXWMKy4O5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LpCg+DHmA0DQJ/Ik6ZoYQOli00ohkMs/SnuDL0wm8D8IlE25wrsGQG5pNSTusSJATaHzGrtEBUBGtvP91FgaQNc07zhFBwFALLe0GhJ3G0DnAMEcPX4BQORO6WD93wJAda+T+rI05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1zTvOEVHC0DVBFH3AUgeQMSUSKKX0f0/R4/f2/TnIkBTrvAuF3EOQJMYBFYO7SRAu9Vz0vtGBkC2uTE9YWkaQFOWIY518f4/sTOFzmvsGUChvmVOl8UBQNszSwLU1ARAX5ULlX+t5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WoEhq1t9B0BpdAexMwUhQBeCHJQwUxlAoMN8eQFWHECKsOHplfILQBdIUPwY0yRAgT6RJ0nX/z+VtyOcFjwZQIfEPZY+dPY/EqW9wRfmGECKjuTyH1L/P96OcFrwogRAtoZSexHt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sYo3Mo88B0DhfyvZsfERQDBHj9/bdPs/845TdCTXHkBi26LMBlkLQPLSTWIQ+CRAXVDfMqeLBEBzhXe5iC8bQO/+eK9a2QJAp8tiYvMxHEAlI2dhT7v7P3ugFRiyegVAW1t4Xio25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PiKmRBL9BEBGtvP91BgkQM9pFmh3SOU/Gy/dJAbBAUBATS1b68sDQNGWcymuyiFAwi/186biBkA1DB8RU0IeQOlg/Z/D/P8/8WPMXUtIHEBnRGlv8AX/PzHT9q+sdARAbR6HwfwV4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/reSHRsBBUAGEhQ/xrwmQP9BJEOOrck/Lq2GxD1WBUCBsilXeFcFQDeJQWDlUCVA9gt2w7ZFA0BFDaZh+GgbQN5xio7kcgZAAfbRqSt/HEDwMy4cCAkDQMAma9RDdAZA2SYVjbU/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U67wLhcxA0CYF2AfnTojQE/N5QZDHd0/gez17o83AUAzUBn/PuMIQEa28/3UGCRAKETAIVQpA0AWwf9WsuMaQEBNLVvrywJA6BN5knRtHkAdd0oH678BQNszSwLUFAVAZHWr56R35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q1s9J72vA0A429yYnnAfQGCRXz/EBs0/jPLMy2H36T8W+8vuyYMEQAnh0cYR2yJAvJaQD3q2BkBXPsvz4A4aQF4u4jsxqwJAvFzEd2L2HECZ8Ev9vKn/P/Wc9L7xNQVASaKXUSy35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MA3DR8TUAUCU+x2KAj0VQNOiPskdNtg/2J5ZEqAmH0CKWS+GciIDQLR224Xm6iFAsp3vp8YLAUDJAiZw624YQOV+h6JAXwFAUYNpGD5iG0Ct3XahuQ4DQHva4a/JWgVAKjv9oC7S4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kuhlFMstBkB/3lSkwpgcQC3r/rEQHcw/XD0nvW98B0Add0oH678GQNxoAG+BxCRAdEF9y5wuBkBp44i1+DQZQHE9CtejcAVAbvqzHynCGkANN+Dzw8gAQBhbCHJQAgdAaEKTxJJy3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pvJ2hNNCBECiKNAn8qQbQPAWSFD8mP0/KNU+HY/ZAEBmMbH5uHYKQJCg+DHmriRAYXE486s5AkAw8Nx7uKQWQFjKMsSxrgFApI0j1uKzGECXkA96Nqv/P7dif9k9eQVA1zOEY5Y94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pYP1fw7zA0CE8GjjiLUeQNdtUPutneE/tmeWBKip9z825QrvclEGQNEi2/l+KiNAeAskKH7MA0DVeOkmMQgdQA+5GW7ApwdAlMFR8uqcHUAb9RCN7uAAQDNt/8pKkwVA6L6c2a7Q4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FAX6RJ5kBkAb2CrB4pAfQNkkP+JXrNs/3UHsTKHz8z9NSkG3l7QFQHqlLEMcCyRARz1EoztICEAMsI9OXbkdQCR/MPDcuwBAl631RULbG0CmCkYldQIDQLYQ5KCEGQdAurw5XKu95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ttsuNNepBEDl1TkGZG8eQDc5fNKJBM8/rVEP0egO+j+K5ZZWQ+IHQHiXi/hODCNAIqZEEr1MBEArajANwycbQDv8NVmjXgJAIy2VtyN8H0ALJCh+jHkAQJaVJqWgGwJAw2fr4GDv4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hlW8kXkkBUAlBoGVQ8sNQAMK9fQR+M8/YOXQItu5C0BSuB6F6xEHQP7UeOkmESVAXmOXqN5aBkATfqmfN5UbQF35LM+DewdAPUm6ZvLtGkAgJAuYwK0BQFLVBFH3QQNAtBzoobaN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Rs7Cnnb4/j9mZmZmZjYhQM5THXIzXPo/uB6F61F4DUDecYqO5HIHQLkZbsDn9yNALxfxnZg1AUD7V1aalIIbQNmUK7zLRQRAnYAmwoaHHECojH+fcWEAQNj1C3bDdgJAwW9DjNc84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w7tcxHeiA0D8471qZaIhQLe0GhL3WNc/cvkP6bcv+z8FqKllaz0DQObLC7CPziNAmzi536EoAkBOC170FWQYQKlqgqj7gANAWP/nMF9eHECg/UgRGVYAQPwApDZx8gJAniPyXUpd4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2XdF8L8VA0Ao8iTpmqkXQGe0VUlkH98/VTAqqRMQAUBvnuqQm+EFQFK4HoXrkSNA+1dWmpSCA0Daci7FVYUWQManABjPYABA7KNTVz7LGUCoUrMHWgEBQGlv8IXJ1AVAHw4SonzB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LNSa5h1nBkBmFMstraYhQCjXFMjsrOI/dnEbDeCt/j98D5ccd8oIQITTghd95SNAY9F0djJ4BECCrRIsDmccQO317o/3qgJA0QX1LXN6G0DVlc/yPPgBQFUwKqkTkARArmTHRiDe4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f/s6cM4IBkAjoS3nUjwjQIp2FVJ+Us0/43DmV3NAAUC71XPS+8YGQEjhehSuJyVAvCL430r2A0A8g4b+Ce4bQDgVqTC2UAZAJemayTebHUC5NlSM8/cCQP8EFytq8ARAg+Dx7V2D4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s7W+SGhLAkD83qY/+8EjQGVwlLw6x9A/w9hCkIOSAkBb64uEtpwBQHfWbrvQLCFAV0PiHksfA0ABMJ5BQz8XQCTusfShywBAlYJuL2msHUA730+Nl24AQJOMnIU9LQhAk4ychT3t5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3EYDeAtkBUAtPgXAeGYUQE2iXvBpTt0/DFnd6jmJEkAXZTbIJCMHQPjfSnZsRCNAhZSfVPs0BUDtmSUBauoWQMl2vp8a7wJAKzV7oBX4HEDCTNu/slICQOJ1/YLdsAVAVaGBWDZz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zHoxlBNtA0CduvJZnscUQIRGsHH9u9Y/m8k329w4E0DPLAlQU0sEQMDsnjwsFCRAGJXUCWgiA0DZX3ZPHrYdQC+ob5nTJQJAGoaPiClxHUCeXinLEEcAQOoJSzyg7AVA7Bfshm2L4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HQOy17s/BUAaqIx/nzEUQDIge73748k/IJijx+/tB0AX2c73U+MFQLvtQnOdNiNAJQaBlUOLBkCBPpEnSZcdQKsmiLoPwARAgEi/fR1YHkBHcvkP6bcAQAwCK4cWmQhAg/dVuVB55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfViKCcaB0BGlPYGX/gkQMR6o1aYvsc/t39lpUkpEUB2VDVB1P0HQJYhjnVxGyVAmG4Sg8DKBUDnAMEcPZ4YQFa3ek56HwhAKpFEL6NYHEAdlDDT9u8AQLzLRXwnZgJAQbyuX7Ab4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DJOpglHJBkBRa5p3nAIkQCNOJ9nqctE/Vz7L8+COEUB/Tdaoh+gIQLAD54wo7SRA1hwgmKOHBkD0piIVxtYaQHfzVIfczAVAWg2Jeyx9HEAsSDMWTWcAQKuVCb/UTwJAOzquRnYl4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aOif4GJF/T+Do+TVOQYcQBZNZyeD4wNA9YQlHlA2AUAoDwu1prkBQAqFCDiEOiNAQE0tW+sLBUBz9Pi9TX8WQBYYsrrVMwBALSY2H9emF0BdUN8yp0sBQLyWkA96NgRAXTP5Zpsb5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qyaIug/A/z80uoPYmSIcQLhbkgN2Ncs/LJ/leXD3+z/w+WGE8KgBQGjLuRRXtSNATODW3TxVAEAZBFYOLZIZQBGq1OyBlgFAZ7gBnx9GG0ALQQ5KmKkAQM3MzMzMjARAh+C4jJsa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZCMQr+vXAEBeonprYAsgQDY7Un3nF8s/kL3e/fFe+D//eK9amTACQMh71cqEzyNAuMzpspjYAEAuc7osJvYZQCGwcmiRbf0/0hito6oJG0AAV7JjIxAAQC1gArfuZgNAU7DG2XSE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LUMc6+I2AkBYxRuZR24gQEg0gSIWseQ/j6omiLrPD0Be9BWkGUsHQNXnaiv2VyRAcQM+P4zQAkBOKETAIVQZQHam0HmN3fw/rWnecYruGUALQQ5KmCkBQADjGTT0DwRAidS0i2mm4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"orQ3+MJkA0Cto6oJoq4bQIMvTKYKxvQ/EjElkuhlAEAsK01KQXcIQLAD54wojSVAvjCZKhhVBkDGbTSAtyAeQFoNiXssPQJA93XgnBHFGUCNeohGd5ABQLDmAMEcPQZA9Kj4vyOq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X+/+eK9aAUB56SYxCMwcQHIz3IDPD/I/PE7RkVy+AkA0v5oDBPMJQDBMpgpGxSRA+tUcIJgj/j8AUps4ud8WQMl2vp8ar/s/cJS8OsegF0AX1LfM6TICQIiFWtO8IwZAlWQdjq7S4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZJKRs7DnBUDBOSNKeyMeQGDkZU0s8Mk/zZIANbXs+j8KhQg4hOoGQDj4wmSqkCNAGFsIclACBUBkWMUbmScdQAT/W8mOTQVAumsJ+aBnGUBBmrFoOvsBQOjewyXHXQZAZ9R8lXzs4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UHCxogbTA0Bpb/CFyVQmQEtZhjjWJSZAD5wzorR3IEDzH9JvX0cLQMcpOpLLXyVAwt1Zu+2CAEBbXyS05RwbQG05l+Kqsvo/Gw3gLZCgGkCtUQ/R6I7+P3eE04IXPQVAS+SCM/j75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iZgSSfQyBUDkZrgBn38iQJjArbt5qvk/RBfUt8zpBUAge7374/0JQOQUHcnl3yVAgy9MpgrGC0D6YYTwaKMcQNgN2xZltvE/fJv+7EcKGEDo3sMlx10BQCnLEMe6eARACrlSz4JQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/iYUIuCQBkC5jQbwFmguQFEWvr7Wpdo/WTSdnQxOGUAabsDnh1EIQADjGTT0fyNAFNBE2PD0A0BbQj7o2cwbQOjZrPpc7QZATGw+rg31HkBqvHSTGEQEQLprCfmgZwNAzgAXZMty4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3QcgtYnTBUCZ8iGoGr3vP+OJIM7DCdY/XW3F/rIbJUDbv7LSpNQFQP+ye/KwkCRAKLhYUYOpCEBzol2FlJ8dQCbfbHNjOghALhwIyQIGHEClZg+0AoMDQEG8rl+w2wZA2spL/id/5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B7Ezhc4rB0D0wwjh0QYgQEDBxYoazOI/626e6pDbDkAsn+V5cPcJQEa28/3UuCVAhslUwagkBEC3Yn/ZPfkaQBYYsrrV8wdAwW7YtigzGkDu68A5I4oBQLWmeccpugNA0v9yLVoA4D8=","dtype":"float64","order":"little","shape":[13]}]},"selected":{"id":"1743"},"selection_policy":{"id":"1742"}},"id":"1669","type":"ColumnDataSource"},{"attributes":{},"id":"1742","type":"UnionRenderers"},{"attributes":{},"id":"1743","type":"Selection"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"orange"},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"1671","type":"MultiLine"},{"attributes":{"data_source":{"id":"1669"},"glyph":{"id":"1670"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1671"},"selection_glyph":null,"view":{"id":"1673"}},"id":"1672","type":"GlyphRenderer"},{"attributes":{"source":{"id":"1669"}},"id":"1673","type":"CDSView"},{"attributes":{},"id":"1641","type":"LinearScale"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"1650"},{"id":"1651"},{"id":"1652"},{"id":"1653"},{"id":"1654"},{"id":"1655"}]},"id":"1657","type":"Toolbar"},{"attributes":{},"id":"1647","type":"BasicTicker"},{"attributes":{"line_color":{"value":"orange"},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"1670","type":"MultiLine"},{"attributes":{},"id":"1654","type":"ResetTool"},{"attributes":{},"id":"1650","type":"PanTool"},{"attributes":{},"id":"1739","type":"CategoricalTickFormatter"},{"attributes":{"overlay":{"id":"1656"}},"id":"1652","type":"BoxZoomTool"},{"attributes":{"formatter":{"id":"1737"},"ticker":{"id":"1647"}},"id":"1646","type":"LinearAxis"},{"attributes":{"source":{"id":"1664"}},"id":"1668","type":"CDSView"},{"attributes":{},"id":"1655","type":"HelpTool"},{"attributes":{},"id":"1737","type":"BasicTickFormatter"},{"attributes":{},"id":"1637","type":"DataRange1d"},{"attributes":{"text":""},"id":"1734","type":"Title"},{"attributes":{"line_alpha":{"value":0.02},"line_color":{"field":"line_color"},"line_width":{"value":0.5},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"1665","type":"MultiLine"},{"attributes":{},"id":"1651","type":"WheelZoomTool"},{"attributes":{},"id":"1644","type":"CategoricalTicker"},{"attributes":{"data_source":{"id":"1664"},"glyph":{"id":"1665"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1666"},"selection_glyph":null,"view":{"id":"1668"}},"id":"1667","type":"GlyphRenderer"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"field":"line_color"},"line_width":{"value":0.5},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"1666","type":"MultiLine"},{"attributes":{"axis":{"id":"1643"},"ticker":null},"id":"1645","type":"Grid"},{"attributes":{},"id":"1653","type":"SaveTool"},{"attributes":{"formatter":{"id":"1739"},"major_label_orientation":0.7853981633974483,"ticker":{"id":"1644"}},"id":"1643","type":"CategoricalAxis"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"1656","type":"BoxAnnotation"},{"attributes":{},"id":"1740","type":"UnionRenderers"},{"attributes":{},"id":"1639","type":"CategoricalScale"},{"attributes":{},"id":"1741","type":"Selection"},{"attributes":{"factors":["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"]},"id":"1634","type":"FactorRange"},{"attributes":{"axis":{"id":"1646"},"dimension":1,"ticker":null},"id":"1649","type":"Grid"},{"attributes":{"data":{"line_color":["black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black"],"xs":[["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"]],"ys":[{"__ndarray__":"rMq+K4L/AkB90LNZ9dkdQClZTkLpi+0/e4hGdxA79z/a/pWVJmUMQARWDi2yHSRANsgkI2ehBkBR2ht8YdIXQKKXUSy3NP4/thDkoIRZHECYUSy3tNoAQMIXJlMF4wRAAyfbwB0o4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OiNKe4PvA0ASvYxiuaUfQF+zXDY6Z+4/lzldFhMb9T/SqSuf5TkIQHKKjuTyryNAb9Of/UgRBECxFp8CYNwWQHEgJAuYQP0/H9eGinGeHUBCz2bV5yoCQL9IaMu5FAZAC2MLQQ7K4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zAuwj04dBUBgkzXqIfobQMv49xkXjvM/KcsQx7q4DEBm2v6VleYNQBUdyeU/RCVAY7ml1ZB4BUArNXugFZgbQIfhI2JKJPw/+KV+3lTEF0C1FfvL7kn+PxKDwMqhxQdAtiv0wTI24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zCiWW1oNCkBzLsVVZV8cQFlQGJRpNOk/jBAebRwxDEClFHR7SeMMQNzXgXNGNCRAtMh2vp/aBECOzCN/MPAbQC4cCMkCpv8/F0hQ/BhTGkAF+kSeJN38PzliLT4FQAdA7G0zFeKR4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KdAn8iRpBkCERxtHrKUfQFTkEHFzquc/+KV+3lSk8T+y17s/3isDQBfxnZj1UiNA+WabG9MTBUD2I0VkWAUbQAiPNo5YCwFAAYdQpWaPGkAcQpWaPRACQAE1tWytbwNAYp0q3zMS4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JNbiUwCMAkBsCfmgZzMgQPp/1ZEjneQ/ECOERxtHCUB6cHfWbvsEQA8LtaZ59yJA2CrB4nDmBkDDtkWZDVIaQPpEniRd8wRA9zsUBfrEGkCQoPgx5u4CQBDM0eP3NgJABOJ1/YLd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7dgIxOu6AEAeigJ9Io8iQEdy+Q/pN/Q/0qkrn+X5CkCUvDrHgOwBQCF2ptB5zSJAJUBNLVsrCECw/s9hvjwaQNWytb5IaANAuOS4Uzr4GkA012mkpbICQHWTGARWzgJApaSHodXJ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n+V5cHfW9z96pSxDHEshQGKE8GjjiO4/Qs9m1eeqB0DkDwaee48CQBGN7iB2NiJAPWGJB5QNCUBw626e6vAcQFzmdFlMbABAl631RULbGEDIJCNnYQ8BQE2+2ebGNARAiqw1lNqL3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VIzzN6EQDUDYKsHicOYLQFTGv8+4MAtAHThnRGmvDEAEHEKVmj0NQL3jFB3JRSRAYhBYObTICEBgArfu5ukZQG4Xmus0Uvk/bHh6pSxDGEAQr+sX7IYAQKfoSC7/IQVAcM/zp43q4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gosVNZiGDUDy0k1iEHglQBSzXgzlRAlAp3Sw/s/hBkC+h0uOO6UNQAwCK4cWmSRAe2ZJgJoaA0D1LXO6LAYXQJqZmZmZ2QJA3dJqSNxjG0BXPsvz4G4CQNejcD0KFwZAC170FaSZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yR8MPPeeBkDXo3A9CtcTQKqc9pScE+c/o5I6AU2EBUBbsb/snvwHQIofY+5aAiVAhNiZQuc1+z8lzLT9K6sWQMA+OnXl8wJAt+7mqQ5ZHkCKq8q+K4ICQKVOQBNhgwZAthMlIZG24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0hito6qJ9z9ma32R0HYfQPXb14Fzxvs/Fva0w1+TBkDmriXkg54MQJhuEoPAKiVArtNIS+XtCUD1LXO6LCYdQBH8byU7tvI/hJ7Nqs9VFkDAJmvUQ7QAQGZrfZHQFgRA1ZKOcjAb4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H7+36c/+8j/HKTqSy18eQEPnNXaJKgFA1NSytb5IAUDPTgZHySsJQIofY+5aQiVAcy7FVWXfCEDqlbIMcYwdQDwx68VQTvE/IchBCTMNF0A5nPnVHCAAQIGVQ4tspwNAFR3J5T8k4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KLhYUYPpB0CSlsrbEY4aQMwLsI9O3QBA2/l+arw0GEDqz36kiEwMQAAAAAAAgCVACFqBIatb/z9Ty9b6IgEWQGVwlLw6xwdAfuNrzywpG0D/z2G+vAAAQOZciqvK/gNA7UeKyLAK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KxN+qZ/3BUDWxW00gJcgQC2Y+KOos+k/0NVW7C/7FkBEqFKzB5oMQBE2PL1SViVACFVq9kBrAUCCHJQw09YWQCBGCI82jv0/9dvXgXNGHkBP6WD9nwMAQOKS407pIAZAghq+hXVj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"097gC5Mp+T/l0CLb+f4fQGk1JO6xNAJAmBdgH536A0Dqymd5HhwOQJvmHafoaCVAx0s3iUHg/z/arPpcbQUXQH46HjNQGf8/tDwP7s66G0BDyk+qfbr8P0JD/wQXKwdAu0ihLHx93D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jGfQ0D+BCUBlx0YgXochQLFQa5p33ABAkpbK2xHuEkC1pnnHKXoJQMUgsHJocSVAUDblCu/yAkDgufdwyVEWQHqNXaJ6a/Y/i3H+JhTiFkB1djI4Sl79P3RGlPYGHwNAzJvDtdrD3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O/w1WaMeB0CgibDh6fUeQETdByC16RJAeGLWi6FcB0DQ8jy4O2sKQA8LtaZ5hyZAFhObj2vD/j/KN9vcmF4XQK71RUJbzvQ/mdh8XBsqGECJ0t7gC5P7P5+wxAPKpgJA5Gn5gas83D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LCtNSkG3GEDW/znMl2cgQLGnHf6avCNAfGEyVTDqDEDrVs9J77sRQN/gC5OpQiZAsRafAmA8A0CpvB3htGAZQJtyhXe5CP4/F9nO91MjFkAr3sg88of/P/3BwHPv4QJAshAdAkcC2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uvWaHhSU3r+u2F92Tx4hQDSAt0CC4gFAQWX8+4wL+j91yM1wA34FQJT2Bl+YjCJAe0563/gaA0D9ag4QzLEbQDDYDdsWJQBA6+I2GsA7HUAoDwu1prkBQATidf2CXQZAq7NaYI+J5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3gN0X85sx78Nw0fElAgTQAsMWd3qOfs/KQXdXtLYEkBhTzv8NdkIQHGsi9toACZAVcGopE6ABEDJPPIHA+8ZQP8h/fZ14PE/EDtT6LxmEkCYhuEjYkoBQAU0ETY8fQhAC9XNxd/24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zv3V477V2j9I4XoUricWQJ4MjpJXZwdAoFT7dDyGEkCDhv4JLhYKQJF++zpwbiVA4BCq1OwBBUDr/xzmy0sZQCoCnN7F++U/beLkfodCEUD99nXgnBEAQEWeJF0zOQdAIsMq3sg85j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B+v/HOYrEEAz/n3GhSMXQOoJSzygbPQ/TUpBt5c0CUDa/pWVJqULQM9m1edqCyVAvtnmxvTEA0AUs14M5SQbQCHIQQkz7fg/t9EA3gJpGkDS4/c2/VkCQAKfH0YIjwRAeLeyRGeZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a/EpAMYz8z+e76fGS0ciQFaCxeHMrwpAhNiZQue1AEBNofMau8QNQET67evAWSVALexph7+mBEDqPgCpTXwZQNwuNNdpJPs/VRhbCHKwF0Djx5i7lhACQKXap+MxwwVAfPMbJhqk5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CCKLNPEO6z+KPEm6ZkIhQAnE6/oFOwBA1VsDWyUYAED5SbVPx6MOQEaU9gZfWCVAl4v4Tsw6AUBMpgpGJbUZQJKzsKcd/gBAIVnABG49GEBgzQGCOboAQFqeB3dnbQdAyTzyBwPP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jPhOzHqREED0/dR46WYUQHBfB84Z0RBAmwMEc/RYFUD186YiFUYOQA+cM6K0dyVABhIUP8ZcAkA2yCQjZ6EYQPsioS3nEgFAgLdAguJHF0Co4zEDlbEBQOzAOSNK+wVAeT9uv3wy5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WwhyUMLMBUA2PL1SlgEbQI4B2evdHxFAsyRATS2bBkDBqKROQBMKQAwCK4cWuSRAEoPAyqGFBUB0QX3LnC4cQKq3BrZKsAJAKH6MuWupGkDZfFwbKgYAQAq6vaQx2gFAmUf+YOC54z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ymyQSUZOAEAWGLK61SMhQNkJL8Gpj+Q/ahMn9zsUCUDl7QinBe8GQDSAt0CCIiRAD2JnCp3XAkAkl/+QfjsaQJHQlnMpLvo/wW7YtijTE0BLWYY41oUBQIsaTMPwkQpA6X5OQX624z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"exSuR+F6BUA7GRwlr84VQJV9VwT/2/A/ucfShy6oAkCwj05d+WwEQINpGD4itiJA7uvAOSPKAEAkRWRYxVsZQEBNLVvri/0/NC4cCMliGUCE9X8O86UBQGdEaW/wxQlA+3jou1tZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P3RBfcuc+z++amXCL7UYQKvMlNbfEtQ/0NA/wcUKBEBKRs7CnnYBQFqeB3dn/SFAhjjWxW10AkC6SQwCK4cYQKYKRiV1gvo/uDtrt13IGUBBZfz7jAsCQGLzcW2oGApAlDR/TGtT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yr68APuoFkBh/Z/DfFkYQDcawFsgARVAd6G5TiPtCEBtHLEWn2IQQHo2qz5XeydAkElGzsJeCEAvaYzWUZUaQED2evfHe/o/8gwa+ic4HECHbYsyGyQEQCJUqdkDLQdA4iAhyhe06D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uECC4seYFkBkkpGzsDciQA1xrIvbqANA/3ivWpmwEUCFmbZ/ZcUTQHrHKTqSqyZAz72HS447BEDlJ9U+HQ8bQHrf+NoziwBAlYJuL2ksGEBKRs7CnjYDQL8OnDOi9AZAZTTyecVT6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cty6m6faEUBr1EM0uoMjQFovhnKiXQVABARz9Pj9BECBW3fzVMcSQNSa5h2n6CZAVFInoInwA0BLzR5oBaYbQJ7vp8ZL9wBA0JuKVBj7GEDDgZAsYMIDQH1cGyrGeQZAUfUrnQ/P5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eqpDboYbE0Blwi/18xYgQLdif9k9+QdABCFZwASuA0DxY8xdS4gIQE3bv7LSZCFAHLYtymyQBkC9jGK5pdUcQIqO5PIfEgJA3xXB/1byGUBBZfz7jAv/Py140VeQ5gVAISBfQgWH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l631RULbCEBFKowtBHkfQGmNQSeEjuY/ZMxdS8gHDECMoZxoV6EJQJdWQ+IeSyJA1H0AUpv4B0BXYMjqVq8bQOWzPA/uzv4/T5KumXzTG0C5GW7A5wf/PwVR9wFIrQVAgAwdO6hE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ILWJk/tdAkDo9pLGaP0dQM6I0t7gi/E/+1xtxf7yBEBcrKjBNIwIQDGZKhiVFCRApfeNrz3zCkCCxeHMryYcQC3saYe/pgFAEqW9wRfmGUDTTWIQWDn/P71vfO2ZJQZAGHsvvmiP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"escpOpJLEEBZTGw+ri0fQPLqHAOyFwBApz/7kSKy+D/gZ1w4EJILQFD8GHPXUiVAkWEVb2ReBEAOoUrNHugbQNXnaiv2F/o/zR5oBYbsGECjBtMwfMT/P0UNpmH4SAZACaaaWUuB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3o5wWvBiC0A6I0p7g68eQDwUBfpEHv4/TTJyFvY0+j9agSGrW70IQOQUHcnlHyRA4dHGEWtxBUCTqYJRSZ0aQFxV9l0R/Pg/+tAF9S1zGEAzxLEubiP/P4I5evzepgVAv5tu2SF+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TS1b64vEB0DrVs9J7zsfQALxun7BLhZAvTrHgOx1CED3AUht4uQNQCbkg57N6iVAT1jiAWWTAkD4cMlxp/QZQGe4AZ8fRv4/8S4X8Z2YGEAeUDblCq8BQDSFzmvskgJA4nX9gt2w4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d76fGi9dBkBl/PuMC8cNQJsg6j4AqQZAIjfDDfg8EEAdIJijx68NQDm0yHa+3yRADOVEuwrpBkAOT6+UZegbQJAUkWEVb/4/ZCMQr+s3G0CzJEBNLdsDQO9yEd+J2QJAKGTnbWz24T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"at5xio7kB0AAb4EExW8nQBEBh1ClZtk/T8x6MZSTCkCnkZbK2xEKQOLplbIMUSVAA0NWt3pOBECTV+cYkJ0ZQOBKdmwEogFAWaMeotH9GEDLuRRXlf38PwrXo3A9igRAGoums5PB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QUgWMIHb8r/ZPXlYqDUKQHUCmggbHhBAnzws1JpmJkD9gt2wbVELQM3MzMzMLCVAak3zjlN0BkCto6oJog4ZQEFl/PuMi/w/N+DzwwjBFkDf+NozS0IBQD+RJ0nXjARA2e4eoPty4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4BKAf0oV5T+IRncQOxMWQBrdQexM4Q1AOdbFbTRAJ0A/kSdJ14wIQBNhw9MrRSVAjV2iemvgAEAHsTOFzssaQPonuFhRA/c/K/aX3ZPHGEBUxr/PuHABQJhuEoPAygFAMzffiO7Z5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I4RHG0fsBECfdvhrsoYiQGq8dJMYBABAysNCrWleDUBegH106ioQQD/G3LWEXCVA61bPSe/bBkA6BmSvd38YQIwQHm0ccQBAWtjTDn9NGkBPO/w1WaP7P3C2uTE9oQFAARk6dlCJ2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2NMOf00WB0B00vvG1/4bQO3T8ZiByuA/A3gLJCj+8T9AwcWKGowIQBgmUwWjciRAFoczv5qDBUDPvYdLjpsdQB8RUyKJXvw/lfHvMy7cGUCHFtnO91P+PwE1tWytLwNAkl1pGal34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RWRYxRuZA0BwXwfOGTETQOy+Y3js5+U/ctwpHay/I0AMB0KygMkNQNBE2PD0qiVAY3/ZPXnY/D981cqEXwoXQFIst7Qakvw/OwFNhA1vG0CGrG71nPT/P5CDEmbaPgVA+wRQjCwZ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qaROQBNhCkDbv7LSpDQhQMx/SL99HfY/o66196kq7z+U2SCTjFwFQAYSFD/GHCRAXD0nvW+8CEAKEXAIVeocQIBlpUkp6ANA4C2QoPgRHkBmZmZmZmYCQBx8YTJVsARA7bq3IjHB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+aBns+pz/D8Dste7P44hQB2PGaiMf+0/cTjzqzlA/j8xfERMieQNQIC3QILi5yRAnuqQm+GGBUDhQEgWMOEbQBRcrKjBtP8/LNSa5h2HGUCzKVd4l4v8PzdsW5TZYAJAvjCZKhiV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"elORCmMLDEADPj+MEC4gQAcI5ujx+wNAZyyazk7mIkA3T3XIzTAQQFD8GHPXkiRA7FG4HoUrAEBWt3pOet8XQNCbilQYW/0/MBLaci4lGEBzY3rCEo8BQDtT6LzGLgVAwqONI9Zi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4C2QoPgxB0D9gt2wbbEbQC9uowG8hfE/Wd3qOemdEUA6QDBHj18JQO58PzVe2iVALLzLRXznBEBkdavnpNcZQNrhr8kadQJA6fF7m/6MGkCKPEm6ZnICQL/Uz5uKFAVApPs5BfnZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CYofY+6aCkCPGaiMf/8eQHkGDf0T3OE/kzXqIRrdBkAFacai6QwQQK1p3nGKTiZAAvG6fsGuBUCB7PXuj5caQEj+YOC5twZAFZFhFW+kHEBdUN8yp0sCQCgPC7Wm+QVAe/gyUYRU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FakwthCkBkAYz6Chf8IiQA034PPDiPg/KbNBJhlZFEBmTpfFxCYLQJp3nKIjmSRARWRYxRsZ/D9uUWaDTNIZQC6QoPgxJgZAxTh/EwqRH0CsVib8Uv8DQJwWvOgrCApA4ba28LxU5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1JrmHacoB0BQNuUK78IiQACpTZzc7/A/iIBDqFLzEUDwhclUwegKQCbkg57NKiRAoFT7dDzm/D+jHqLRHQQaQHUCmggbXgZAsHJoke18HkBRvTWwVUIEQMh71cqEHwpA2PULdsO25z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i/1l9+ShCUAfv7fpz14eQF3cRgN4i/E/6xwDstc7FUCtwJDVrd4LQM07TtGRfCRAiXssfeiC/z+9UpYhjlUZQB7EzhQ6LwRAfT81XrpJHkDnjCjtDb4EQMtneR7c3QlAxmzJqgg36D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qfsApDaxAkCnXOFdLoIcQPAw7Zv7K+k/f8Fu2Lao/T8vUb01sNUJQIcW2c73syVAX9IYraMqBkB7vfvjvaoaQA1slWBxOPo/iSmRRC/jF0AD7KNTVz4AQANbJVgczgVAV+wvuycP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ctwpHaw/EEB798d71XogQEW7Cik/6RJAvD/eq1YmAUAHJcy0/asIQOQUHcnlzyNAGJXUCWgiA0CP5PIf0o8cQMh71cqEX+w/GFsIclCCFkAYPiKmRBICQD5cctwpXQRAV5QSglX14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5pZWQ+LeCkAJxOv6BfseQBghPNo44vQ/oUrNHmjlEkAWak3zjlMLQDPEsS5uIyVAAz4/jBCe+D8oJ9pVSLkWQP8JLlbUYAFAXANbJVh8GUBWt3pOel8AQIVf6udNhQhAuJOI8C8C5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+fcZFw4E8z8cti3KbMAiQPILryR5ru0/LlbUYBoGEEAuc7osJjYNQKabxCCwsiVAz2bV52qr+T9gH5268lkWQBeCHJQwU/0/qFKzB1qhGkBPr5RliOMDQBnKiXYV0gVA4syv5gDB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pj+MEB5tFUDri4S2nEsWQHnMQGX8OwxALsVVZd91HED3ksZoHVUQQPd14JwRhSVAT8x6MZST/z/B4nDmV9MWQE3WqIdotAFA2c73U+OFG0DKw0KtaV7/PwRz9Pi9jQdASDSBIhYx4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B/AWSFD88z9N845TdOQnQD1JumbyTfU/UYiAQ6gyH0BMN4lBYOUHQB3J5T+k/yRArW71nPQ+AUAipkQSvWwYQEPnNXaJ6gBApKXydoRTHECJtfgUAKMAQMiYu5aQDwRA7tCwGHUt5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aTo7GRylBUAgQfFjzD0nQE3WqIdoNABA58b0hCX+E0A25QrvcpEPQAA6zJcX4CNAskY9RKM7AkA+BcB4Bi0YQAZHyatzTAFA0csollt6G0AIclDCTNv/P8Ama9RDNAVARrOyfchb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6LzGLlH9BkCWW1oNiTscQHeGqS11kNQ/MnIW9rQDFkCQ2sTJ/Y4GQDEIrBxaJCZAQrKACdx6CED68gLso5MdQCxIMxZNZwNAKa4q+66IGkCVmj3QCswAQOM2GsBboAZAF5zB3y/m5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J8KGp1eKCkCFfNCzWZUYQLbZWIl51uA/A+yjU1f+DEC8IvjfSvYMQJRqn47H3CNAexSuR+G6BUBvu9Bcp5EZQD90QX3LXAhAAfvo1JXPHkAAdJgvLwAAQNcS8kHP5gJA8nnFU4804j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SkbOwp42A0D2fw7z5UUfQHKndLD+z+Q/uJIdG4E4BkByxFp8CkAGQLRZ9bnaCiRA2jhiLT6FAkD1nPS+8XUaQELPZtXnav8/Wd3qOekdHEDk9zb92U8AQLvyWZ4HdwVA+1ksRfIV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"74/3qpWJBkDswDkjSrsbQGpQNA9gkeo/tyizQSYZCEAOvjCZKpgEQB+i0R3ETiNAe4MvTKaKAEDGxObj2tAaQLRxxFp8ivs/lPsdigJ9HEAh6j4AqU0AQMPwETEl0gVAvALRkzIp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5e0IpwWv/T9YkGYsmo4YQBKDwMqhxfY/vYxiuaUVBUB+NQcI5igGQGOcvwmF+CNAXdxGA3iLB0AwuycPC3UbQPp+arx0EwZASP5g4LmXGkDj/E0oRIAAQOIeSx+6IAZA275H/fUK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BaipZWu9CUB0XmOXqI4jQO+P96qVCQBAH7qgvmUOE0BcWg2Je+wGQCqpE9BE2CRACrq9pDGaAkDxRuaRP1gXQAzIXu/+eAFAkdCWcymuGkDQJ/Ik6VoDQJz51RwgGARAyuAoeXWO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zNHj9zY9BUCad5yiIxklQEBPAwZJH+s/CTNt/8rKHkALmMCtu3kIQD/jwoGQrCNAQ+c1donqAEBI4XoUrqcZQDQuHAjJAgNAj41AvK7/GUADWyVYHM4BQCRiSiTRywRAqySyD7Ks4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ghyUMNM2B0Bv05/9SHEfQP+vOnKks+s/djdPdcjN/j/rc7UV+4sMQNzXgXNG9CVAp8tiYvMxBUDiBnx+GAEbQPFG5pE/WABAhbGFIAcFGkBNLVvri4T7PzI4Sl6dIwVA8ZwtILSe4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jX+fceFAAkDEd2LWiwEhQGw/GePD7NY/64uEtpwLA0C6oL5lTtcDQInS3uALkyRAVryReeQPBUBTkQpjC0EaQCkF3V7SGANAlNkgk4wcG0D8GHPXEvICQKD9SBEZVgdALT9wlScQ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0SLb+X4qC0BdiqvKvtsiQOjZrPpcbQFAjZduEoMABUD8byU7NoINQIlBYOXQoiVA+N9KdmwEB0BFgT6RJ8kbQHEbDeAtUABALudSXFWWGkAU7Sqk/CT/P9DVVuwv+wNAc2iR7Xw/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fAqA8QxaBUBPO/w1WUMfQP/nMF9eAPI/eH+8V62MBUBcGyrG+VsKQIEExY8xNyRA9Wc/UkSGB0DYtiizQSYbQMAJhQg4RABAIc1YNJ29G0B06spneR79P4BIv30dOANAuhKB6h/E4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JLTlXIqrA0CdLouJzcceQMnogCTs29s/e9rhr8naCUADste7Px4GQIj029eBEyRAjxmojH+fAkCPNo5Yi+8bQMU9lj50QQBA5NpQMc6/F0BUjPM3oRD+P091yM1wAwNA7wOQ2sTJ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e0ljtI6qAkCRD3o2qz4fQAb2mEhpNu4/7zhFR3K5AEDqIRrdQSwLQK+UZYhj/SRA7MA5I0q7AUCZKhiV1MkaQGfttgvNdf4/uw9AahMHG0BjKCfaVUgDQJdWQ+IeiwZAoDaq04Es5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0AoMWd1qDECXi/hOzLofQGnGouns5PI/uoPYmUJn8D8tIR/0bNYQQL99HThnJCRAL6NYbml1CUC9++O9aoUaQJyiI7n8xwBAJ/c7FAVaHEAHfH4YIfwCQHK/Q1GgzwdAdQMF3smn5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u7iNBvAWD0BAahMn9wshQCno9pLG6Po/e2tgqwQL+D/ovMYuUX0LQNuK/WX3pCVA51JcVfadB0BSSZ2AJkIdQEht4uR+RwJADMhe7/54G0C1bK0vEloCQL0d4bTghQZAzSN/MPDc5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8piByvj3AUAibHh6pSwWQMmqCDcZ1e8/syRATS1bB0CUap+Ox4wLQOPHmLuWUCRAWOcYkL3e/T8yrOKNzGMZQF97ZkmAGvQ/yQImcOvOFUCBzw8jhEf8P5TBUfLqHARA/n+cMGE04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KowtBDkoDUBxWvCir1AgQEesxacAGAZAbef7qfHyFED9gt2wbZENQJhMFYxKCiZAUgq6vaRxBkAGDf0TXAwaQMKGp1fKMgNA5/up8dJtHUAnvW987RkFQJC93v3xnghAgczOoncq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E5uPa0MFC0BgsBu2LQohQFCNl24Sg94/N1SM8zeh8j+cxCCwcqgJQARWDi2yHSRAWcAEbt3NAkBTIoleRjEZQJGb4QZ8fgRApaDbSxrjHECb5h2n6AgBQNl3RfC/1QdAvmn67IBr5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"liGOdXGb8D8O+PwwQggiQPiImBJJFBFA3ZiesMTDBUDM7snDQu0GQG5pNSTuwSFAHvmDgefeB0BeS8gHPTsdQBGq1OyBFgZAsktUbw2MH0BN+KV+3hQBQJWaPdAKzAZAFK5H4XoU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jhx6i4d34z/ZsRGI1xUgQI20VN6OcPs/xEKtad5x/j8I5ujxexsCQFOu8C4XsSFAh6dXyjKEBEC+h0uOOwUaQIiAQ6hScwNA10y+2eYmHEAicY+lD90BQMjShy6orwZAsfz5tmAp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qoJRSZ2AAEBLsDic+RUgQM6luKrsO/I/r+sX7IZt+j+TUtDtJc0CQH6pnzcVuSFA/kgRGVZxAkATChFwCBUZQFwDWyVYnAVAhPBo44g1HEChZ7Pqc/UAQIY41sVttAVAKPG5E+y/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V5V9VwR//j+jAbwFEpQdQF8pyxDHOuo/1pC4x9KH+D8/qfbpeMwCQFExzt+EwiFADJOpglGJAkDu68A5IyoZQLivA+eMaAVA3C4012nEHECSkbOwpx0BQKBsyhXepQVA8DDtm/ur4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7YFWYMhq+j+pwTQMH7EcQHEDPj+MkPI/zH9Iv31dKECmuKrsu6INQGN/2T15OCdA/bypSIVxBkDeyDzyB+MbQBWpMLYQ5PU/sYo3Mo/cFEBivrwA+6gAQME5I0p7gwZAHLPsSWBz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BcB4Bg0dE0BqMA3DRwQAQCDSb18HDhBAICkiwyoeCkCoqWVrfZEIQFwgQfFjjCRA6glLPKDs/j/2evfHe9UXQEinrnyW5/0/6dSVz/IcGkDlRLsKKX8AQLml1ZC4BwRAZOqu7IJB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2XdF8L81FUAKEXAIVSoWQP3ZjxSR4QtA3gIJih9jKkBAGHjuPRwKQBb7y+7JQyRA/mX35GFhAUCfyJOka0YYQHFV2XdF8Pc/Ieo+AKkNF0Auc7osJvYAQO2ZJQFqKgRA4xbzc0PT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CmgibHi6BUBF9dbAVtkgQOSghJm2fwdANuUK73IxF0Bc5nRZTGwJQFioNc077iRAcLGiBtOwAkD+1HjpJtEaQJIiMqziDQlAQdR9AFKbHUAna9RDNDr/P+nUlc/yvAZA275H/fWK5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5KCEmbZ/EUDSUnk7wjkiQH0FacaiqQlAbef7qfGyHkDZ690f75UMQLIubqMBnCRASBtHrMUnBEDIXu/+eO8XQOPCgZAsIAFALH3ogvp2HkAKLlbUYJr+P99PjZduEgZArVEP0egO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9aEL6ltm+z9YrUz4pb4bQAKaCBueXvE/juVd9YB56T+xogbTMLwHQMOBkCxgsiNANLqD2JkCAEAbEvdY+nAaQDdPdcjNcAVACp3X2CVKG0AYITzaOOICQFzmdFlMrAZAs5YC0v6H4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fAqA8Qwa4D+fzarP1SYiQFovhnKi3QBABRcrajAN9T+mCkYldQILQEVHcvkPaSRAzsKedvgrAEDv/nivWvkbQFXBqKROAABA/U0oRMBhHED0bFZ9rjYCQPOrOUAwhwdAOnZQiesY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HooCfSLP9j+wIM1YND0YQAq6vaQxGhVA1ZXP8jz4AUBLH7qgviUMQM0Bgjl6zCNAPGu3XWhuAkAtJjYf18YXQJJ0zeSbrQNAbkxPWOIBGkDZ690f71UDQNB+pIgMawdAi6iJPh/l5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kfKTap8OEUD6m1CIgOMYQJ/leXB31v4/TGw+rg0VBUDbFmU2yCQPQECH+fIC/CNAsp3vp8ZLCED8NVmjHuIaQEDBxYoaDAFA8SkAxjNoF0DWc9L7xtf9P6bVkLjHEgNAkSbeAZ604D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4V0u4jtxAECif4KLFdUWQPCFyVTBqOU/cY+lD12QEkCdRloqbwcOQKqCUUmdgCNAsi5uowF8BUCD3bBtUcYZQD7t8NdkjQFAM9yAzw+DGkDdJAaBlcP7P1ioNc07zgJAnuv7cJAQ3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q/8EFyvqD0C536Eo0AcjQElL5e0I5wxAH5268lmeAUAHX5hMFcwFQDEIrBxaRCVA4gZ8fhjhAUCqQ26GG5AYQHlYqDXNO/k/nkFD/wS3GUBCsoAJ3LoAQLahYpy/CQZAhVypZ0Go4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/YLdsG1R8j8SwqONI7YTQBVXlX1XBOg/7IZtizJbEEBLyAc9m9UGQKW9wRcmEyRAukkMAivHAEA17zhFR7IVQKVrJt9sc/w/SkG3lzQmF0CJeyx96AIAQF5jl6jeGgNArUuN0M/U3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eHqlLEOc9T/RrkLKT6oNQDnWxW00AAtAPtAKDFldFUB2/YLdsC0MQKRwPQrXYyRArWnecYqO/T+CVmDI6tYVQBTQRNjwdPE/1v85zJf3GUAVHcnlP6T9P+FiRQ2m4QNAguSdQxmq3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FvvL7smDEUCUE+0qpFwgQLdFmQ0yyfo/oMN8eQF2C0D0bFZ9rjYPQM6qz9VWTCZATI47pYP19z9g5dAi23kWQKG5TiMtlf0//bypSIURFkCPcFrwoi8BQAMmcOtuXgVAnbmHhO995D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5SfVPh1PAUB24JwRpd0XQFtfJLTlnANAJTs2AvG6C0AtIR/0bNYJQBZqTfOOEyRALQlQU8sWCEDDZKpgVBIbQNTUsrW+SPU/Zmt9kdDWGkBjl6jeGlj/P7STwVHyKgVANuSfGcQH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X0ax3NJqB0A2WaMeotEbQGu3XWiu0xpA0gDeAgnKHEBmMbH5uDYJQIC3QILixyRA2bERiNf1A0Dm6PF7mx4aQDC7Jw8LtQFAr3yW58GdGkA4FakwtlAAQJEKYwtBTgRArprniHyX3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oaF/gosVCUCkU1c+y5MeQPtz0ZDxKOk/UfcBSG3i9T8U6BN5krQNQNzXgXNGtCRA2J5ZEqAmAkDIzXADPh8YQOiHEcKjTQJAr7FLVG9tHUATm49rQ0X9P/jCZKpgFAVAwM+4cCAk5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xAjh0cYRA0BF8L+V7BgfQI18XvHUo+Q/CyQofoy59T/uQnOdRtoJQGEyVTAqKSRAONvcmJ6wAkBwd9Zuu9AZQHkGDf0TnAFAs0EmGTmrH0Bn7bYLzfX+PwpoImx4OgNAELBW7ZqQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t7QaEvcYB0DG4cyv5sAdQLJoOjsZHNI/AtTUsrU+/T8dA7LXuz8JQJT2Bl+YrCRAJh5QNuUKBUB8D5ccd0oZQNhkjXqIxgdAxEKtad5xHEARNjy9Upb9P420VN6OMANAPdaMDHIX5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Q2+MJnqAUCaX80BgokhQOXtCKcFr+8/ZVOu8C6XCEBUUiegiTAMQMGopE5AsyRAcY+lD11QBUDACYUIOMQbQK93f7xXrfw/KSLDKt7oGkBenWNA9joAQLBVgsXhzARAdQMF3smn2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gPEMGvrnAkCUMNP2r4wgQNAKDFnd6vg/vK5fsBv2AEBoXDgQkkUKQEMc6+I2WiVA626e6pCbAkDajxSRYbUYQIZVvJF5ZP0/wjQMHxHzG0DMC7CPTp0AQHGPpQ9dkAdAiJ6USQ1t4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vhOzXgzlAkDI0ocuqC8gQB+i0R3ETuI/VisTfqkPIkAU7Sqk/KQGQGa9GMqJ9iNAxcn9DkWBA0AJih9j7poWQK5H4XoULv4/6dSVz/LcGEA+syRATS0BQNwpHaz/cwZAZeHra13q5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v5oDBHO0BECAK9mxEYgZQLgBnx9GCNw/Io51cRvtHUDzWZ4HdycIQMSxLm6jYSRAe4hGdxC7AUCfPCzUmoYXQC6QoPgx5v0/EF1Q3zLnG0DzVIfcDLf+P85THXIzXAlAQfLOoQxV5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gA7z5QVYBkB+AFKbODkTQOI7MevFEABAR3cQO1MIG0CoqWVrfZEKQBniWBe3sSRAy0qTUtDtA0AlkuhlFGsaQITwaOOINfk/V0PiHks/GEA/OnXls7wAQMQlx53SwQhAguLHmLuW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cLGiBtPwDEBkWMUbmUcXQCsTfqmft/M/zVg0nZ2MFUBuNIC3QAILQMx/SL993SVAVB1yM9yAAkCD3bBtUcYaQM8sCVBTS/s/k8ZoHVWtFkBTeTvCaUEBQDv8NVmjHgpAXFfMCG+P5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zw+0AkPWAUAAAAAAACAYQHqqQ26GuxRAtHHEWnwKD0CKPEm6ZvIOQNQrZRnimCRAgPEMGvonBUAHzhlR2nsZQEyJJHoZRfo/08H6P4f5GUBblNkgk8wCQN7IPPIHAwZAzv5AuW1f5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HlA25QpvCEBwzojS3uAVQGzPLAlQkwlAAK5kx0bgEUDuPVxy3CkKQKMjufyH1CRAGhcOhGSBAUDiOzHrxfAYQGiWBKip5f8/ObnfoSgQGkCOrz2zJMABQN21hHzQMwdAx0yiXvBp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yJi7lpDPDUAom3KFd1kbQN4f71UrcxZAFXR7SWNUEUAx68VQTnQKQNxoAG+BRCVAS7A4nPnV/z89Sbpm8o0YQCntDb4w2QBAH7qgvmXuGEAawFsgQbEBQIf58gLsYwZAJCU9DK3O5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TGw+rg0V9j+i0R3EzvQbQG5qoPmcu+0/WMoyxLEu/z9pVyHlJxUIQHEgJAuYYCNAAG+BBMXPBEDuWkI+6NkZQG2QSUbOAgBAKETAIVSpG0Didf2C3fAAQBHkoISZdgJAiIBDqFKz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qAAYz6ChC0DnUlxV9r0gQPj578FrF+k/ngyOkldn9T/qeMxAZbwGQDvfT42XbiRABFYOLbKdBECLTwEwnqEaQI/8wcBz7/4/1JrmHaeIF0Dja88sCVACQMUbmUf+4AJANQwfEVMi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BkfJq3MM+T8FxY8xd00ZQGyyRj1EUyFA0NVW7C+bE0Cxijcyj7wLQC0+BcB4xiNAbCHIQQnzB0Aa3UHsTMEcQG5MT1jiAf8//FI/byoyHUDjwoGQLCABQAisHFpk+wVA3uaNk8I84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"98ySADW1/r/id9MtO8TRP+uLhLacyxNAqaROQBOhJEAsn+V5cJcQQHbgnBGlfSZA0H6kiAwr+z+M+E7MenEYQOMZNPRPcO8/eZJ0zeS7GUBm9+RhoVYBQMBbIEHxYwVAuoeE7/2N4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g24vaYxWCEAXvOgrSLP0vzCBW3fzVPs/0jqqmiBqFkA7AU2EDc8MQFafq63YHyVA5IOezaqPBEDoMF9egF0XQIy8rIkFvu8/F58CYDzDF0BbXyS05RwAQAHBHD1+rwRA0LhwICSL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZHWr56R3DECDUUmdgIYoQBYvFobI6e4/46qy74rgD0BCPujZrPoLQAwCK4cWeSVA6X3ja8/sCEA4LXjRV9AYQKyt2F92TwJAB7Ezhc5rHEDq7GRwlDwAQNO84xQdiQRA0XZM3ZVd4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wARu3c1T9T9VwaikTkAlQAEYz6Ch//k/VisTfqlfHkDIDFTGv48OQOauJeSDfiVAEFg5tMh2/z8yychZ2LMbQF4R/G8lOwBAO6qaIOpeG0CTOgFNhM0BQJn1YignWglApg9dUN+y5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W3wKgPGMDUALYwtBDmoQQEfmkT8YePI/QkP/BBeLEUBUOlj/57ANQC2yne+n5iVAyJi7lpDPCEDKMsSxLu4XQALU1LK1vgNAURToE3nyGkCBzw8jhAcBQFFOtKuQMgZAWYl5VtKK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uVM6WP8nCkAVOq+xSzQYQD1Jumbyzf0/Cf63kh2bF0DuJY3ROmoPQDAqqRPQpCZAwJXs2AjE/D90RpT2Bv8aQBHfiVkvhvo/XkvIBz0bGkDT3uALk2kBQBsqxvmbEAhAxZEHIos05D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xTh/EwqREUDjjcwjf3AcQLw/3qtWZgJAOC140VdQAkB/wW7YtmgNQJHtfD81XiZANQcI5uhxAkCZR/5g4JkdQDxmoDL+/fw/zt+EQgScGEDtKqT8pNoAQHBfB84ZEQZAqrcGtkqw5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SBtHrMUnAkB7Tnrf+MohQPlJtU/HYwNAOiNKe4NvDkDSjEXT2UkQQMdLN4lBgCVAj8L1KFxPBUC+9sySAPUWQJNS0O0lDfI/GGAfnbqSFkALKT+p9ikAQFZl3xXBfwVA+tUcIJij5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CeHRxhGrAUBD5zV2iQohQGH6XkNwXOU/83FtqBhnC0B15bM8Dy4HQBea6zTSkiNA5fIf0m/fCUA7AU2EDf8gQFX2XRH87wRAGqiMf5/RHUCTGARWDu0AQPiqlQm/lARAu5hmutfJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IsMq3sh8C0BMpgpGJVUuQPJ7m/7sxwRAyY6NQLzuGkDNkgA1tWwOQMbctYR80CZANs07TtFRCUDo3sMlx50ZQIqw4emVsvs/zLT9KyuNGUBoeR7cnXUAQAhVavZAawNA7IZtizIb4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t9EA3gLJCUBZhjjWxc0nQO9yEd+JmQNAPL1SliGuLEC9++O9aqUNQK7YX3ZPfiZA9aEL6ltmBkBos+pztTUaQPCK4H8rGQRAW18ktOWcGkBOl8XE5uP+P8ucLouJjQRAw0maP6Y14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NnaJ6q3BAUBaZDvfT+0uQOaRPxh47vQ/1xcJbTmXE0AsZRniWHcRQMuhRbbzvSZA7YFWYMgqAEAVxhaCHBQYQPiImBJJNAVAglZgyOr2HkDV7IFWYEgCQM11GmmpfAVAluttMxXi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LLe0GhI3DUD8GHPXErIwQNxoAG+BRAFA3bWEfNCjMECLVBhbCPIPQLHh6ZWyrCVAeNFXkGYsA0CGONbFbdQWQDqSy39IPwBAIxCv6xeMGUC4dTdPdcgAQC7/If329QNAqVDdXPxt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rMq+K4L/+z/r4jYawJskQJDAH37+++U/Oq+xS1RPFUCfceFASJYIQGPuWkI+yCRAEF1Q3zInAEDK4Ch5dY4aQHtJY7SOKvk/Z+22C821GEDp1JXP8rwAQC7/If32NQRAF0hQ/Bjz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zvxqDhBMBECbj2tDxXgOQEKz696KxOU/xxFr8SmAF0Ah6j4AqU0KQAvvchHfqSNAbLJGPUSjA0CWBKipZWsWQOYF2Een7gBAU+i8xi6RHEBnLJrOTgYAQPAWSFD8mAZABdzz/Gmj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t5xLcVWZBUCKPEm6ZrIeQBZqTfOO0/Y/b9Of/UgRBEC4I5wWvOgMQHnpJjEIbCVA5EnSNZOvCEB9XBsqxtkZQEUSvYxiOfs/32xzY3riGED+mqxRD9EAQM+9h0uO+wNAi6azk8HR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iGNd3EaDAEAHQrKACXwdQOik942vPfg/5Ga4AZ8f/j+PcFrwoi8MQLdif9k9eSVAMlUwKqmTBUBegH106uoaQM+9h0uOO/s/66hqgqibFkCcilQYW0gBQFNcVfZdkQJAiC09murJ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YHZPHhbq/T9SflLt05EbQBqjdVQ1QfM//cHAc++hAEAVjErqBPQNQC9uowG8JSVApMfvbfqzAkALQQ5KmAkaQMuEX+rnTfg/DY6SV+cYGED+Q/rt6wADQOfj2lAxTgNA85Nqn45H4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dXYyOEpeA0A0ETY8vfIaQGzsEtVbwwNALjnulA6WCECsrdhfdk8MQMP1KFyPQiVAZqAy/n3GA0CYUSy3tLoXQGgFhqxu9QBADM11GmlpGEBmg0wychYDQEpenWNANgRAQRGLGHaY4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n5PeN772BEAaho+IKZEhQCDSb18HTgBAAfvo1JXPB0DNzMzMzMwMQMe6uI0G0CRA4Zf6eVPRAkCeKXReY1cYQEurIXGPpfw/qtTsgVZgF0DBVgkWh/MAQIPdsG1RZgJAzEQRUrez5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"deWzPA8uCUBLqyFxj6UXQOCBAYQPJe0/h78ma9TDDED8NVmjHuIMQAisHFpk2yRAH/RsVn2uAkBZ3eo56d0XQPAWSFD8mPg//fZ14JwxF0CTNeohGp0AQOrPfqSIjANADAOWXMXi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MxZNZycD+T/BOSNKe2MeQFFmg0wycgJA4Sh5dY6BC0ARHm0csdYNQBZqTfOOsyVAjErqBDSRAUC+pDFaR7UZQGMoJ9pVSPg/z4O7s3YbGEBkdavnpHcDQGr7V1aaVAZAHvtZLEXy5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zt+EQgQc+T8awFsgQfEfQKW9wRcmUwhArg0V4/wNA0AdjxmojL8OQMPTK2UZgiZAgq0SLA6nBECwA+eMKC0ZQH7GhQMhWfM/tvgUAOMZF0AaUdobfCEDQNfdPNUhtwZAcjeI1oo25T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M/lmmxvT/T96cHfWbnsQQKTC2EKQA/A/t11ortNIG0B0JJf/kH4AQHYyOEpeTSJAhLuzdtvFAkDO34RCBBwYQFwgQfFjTPw/8S4X8Z3YG0D+JhQi4BD/P7UaEvdY+gVACrq9pDHa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fERMiSR6/D+oNc07TvERQLhYUYNpGPc/rhIsDmfeF0BPdcjNcEMCQIP6ljldZiNAXdxGA3iLAEDKw0KtaZ4ZQBv1EI3uoPw/MA3DR8RUHEBaZDvfTw0AQNTxmIHKeAZAX9TuVwG+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P1dbsb8MFUBE+u3rwLknQOGX+nlT0QhAKxiV1AmYMECxpx3+mswRQBPyQc9mNSdApTFaR1UTAkDtmSUBakoaQHb9gt2wLQBArRdDOdGOGUBzEd+JWa/+P/n3GRcOhAZAqpuLv+2J5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XMmOjUA8CUCjO4idKfQfQFr1udqK/fw/m6xRD9Ho+D9FEr2MYlkQQJ5eKcsQxyZAL4uJzcc1BUBjf9k9eXgaQGk6OxkcJfo/l8XE5uMaGUBqvHSTGAQAQF3hXS7iuwNA4ng+A+pN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"85Nqn46HBEBCeLRxxPocQCv2l92TB/A//tR46SaxCkAn9zsUBfoOQPjCZKpg9CRAqAAYz6DhA0DyDBr6J7gZQMAEbt3NU/0/c4V3uYhvGUAXmus00tL+P2aDTDJy1gBAEcMOY9Lf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"avtXVpqUDECr56T3jV8iQB6KAn0iT/Y/K01KQbeXAUBzaJHtfD8PQMuhRbbzXSVAqG+Z02UxBUCwOJz51RwXQNGuQspPagBAPL1SliEuGUDsTKHzGnsBQEPnNXaJqgVAF9S3zOky4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RWRYxRvZBECvd3+8V+0dQNB/D167tOI/GCE82jiSIECad5yiIzkIQJhuEoPAKiVAR8mrcwyIAEBAE2HD0ysbQKbVkLjHkgBAwVYJFodzHEBt/8pKk1L+PxR5knTN5ARAj1IJT+h14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TmIQWDk0A0CUpGsm36waQJ91jZYDPeY/OQt72uHvB0DdzVMdcrMEQFABMJ5BcyFA0LhwICTLBECKPEm6ZnIYQBx8YTJVcAFAgNQmTu5XGUDarPpcbUX/P+auJeSDHgdASFLSw9Dq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v9TPm4qUCUD1EI3uIFYfQIXq5uJve9U/SfQyiuX2EEBNSkG3l/QOQFg5tMh2XiVA4WJFDaYhCkC+wRcmU2UaQKMeotEdBAdAi3H+JhRiG0A89x4uOe4CQCS5/If0WwJAf2q8dJOY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q8/VVuzvA0ACgjl6/D4hQAb1LXO6rPI/UBn/PuPiIUCDo+TVOUYGQLbz/dR4iSRADYl7LH0oA0AlI2dhTxscQB4zUBn//gBAmG4Sg8CKHEB7vfvjvWr9P3+kiAyr+ARAHuBJC5dV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0jWTb7b5BEC4rwPnjDgjQC4aMh6lEt4/QiECDqG6IkClSSno9hINQLdif9k9OSVACr/Uz5sKAEBPWOIBZXMZQPC/lezYCP8/uDtrt11IG0AoCvSJPMn/P0m6ZvLN9gFAdZMYBFaO4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ayv2l91TAEDkTulg/Y8jQIVCBBxCVQVAZY16iEaXHkC70FynkRYKQEcDeAskCCRAxy5RvTWwA0DW/znMl7caQLml1ZC4x/8/B84ZUdq7G0AxQni0cUT9P9AKDFndagRAixcLQ+T04T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8fRKWYY4AECtNCkF3c4iQI+qJoi6zwJAylTBqKQOJ0CUvDrHgOwKQMoyxLEuziVAwM+4cCCkBECoqWVrffEZQMAJhQg4BANAlfHvMy6cHEAeG4F4Xb/8P07udygKNAVAU3dlFwyu3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EsKjjSOWCEBrmnecovMjQG9JDtjV5OQ/YLAbti1KAEDufD81XjoOQM9m1edqyyVAlgm/1M9bBECjHqLRHaQcQNuizAaZJARABfpEniSdHEB/2T15WKgCQJusUQ/RqARAEOz4LxAE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hXzQs1k1DUCLNzKP/KEVQDHO34RChP4/+grSjEWTFEDA7J48LJQKQLMMcayLWyVAxY8xdy3hB0D2l92Th2UYQG+e6pCb4fU/l6jeGtgqF0DS4/c2/dn9P4/C9ShcTwZA+bt31JgQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Atnr3R/vDkAMsI9OXfkIQDtT6LzGLgVAnBa86CsIGUDhehSuR6EPQFJJnYAmQiVAol2FlJ+UAkBhMlUwKqkcQAcI5ujx+/Y/nx9GCI82FUDCo40j1iIAQAZHyatzDAhAfLjkuFO65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k4ychT3t/z9angd3Zy0JQKYnLPGAMus/AK5kx0YgFUDVsrW+SCgLQP+ye/KwUCVAUWuad5ziA0AJM23/ymobQJ2dDI6S1/c/XHfzVIc8GECOrz2zJMAAQJRNucK7nAVAHt5zYDnC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fCx96IK6AkCe76fGS7cjQDMWTWcng/I/YY4ev7dpA0AHfH4YIbwNQDxO0ZFcniRAwvo/h/nyAkDw3Hu45PgXQK2jqgmi7vs/5Ga4AZ8/GkDsL7snD4v+P5V9VwT/2wJAwTdNnx1w3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i+B/K9lxB0A3jliLTwEeQFhWmpSC7uk/Dmd+NQeICEA1Y9F0dvIJQATnjCjtbSZAozuInSl0AkAg71UrE94aQNlCkIMSZv8/AU2EDU/vGkCvfJbnwZ0BQOepDrkZ7gFAC0J5H0dz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OPOrOUCwAUCmCkYldUIeQCtR9pZyPu4/3xrYKsFiB0BWvJF55A8QQDAqqRPQZCVA4e6s3Xah/z84+MJkqmAXQJQw0/avLANACD2bVZ/LGECV1AloIqwBQOqymNh8nAJAxyk6ksv/4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jkC8rl+wBUAAjGfQ0L8WQPAzLhwISQNATYQNT6+UDkA26iEa3YEIQBpR2ht84SRAuCOcFrxoAkB7vfvjvcoaQHgLJCh+jPc/h22LMhskGkBJhbGFIIcAQKPMBplkZAJAcT0K16Nw3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nPnVHCAYDkBY/+cwXx4eQJZbWg2J+wtAsKw0KQVdFkDRkVz+QzoNQDbNO07R0SVAasGLvoI0AkB7vfvjvQoaQKp9Oh4z0P0/PBQF+kQeG0Dl7QinBe8BQOlg/Z/DfAhAyw7xD1v64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EvdY+tAFBkCNnIU97XAZQHrHKTqSiwVAe2tgqwRLAUD5Zpsb0xMPQFJJnYAmQiZAmyDqPgCpA0CVZYhjXZwYQOFASBYwQQJAu37BbthWGkCi7gOQ2oQBQCv2l92TBwdAqYWSyakd6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iBHCo42DEkBfB84ZUVolQP0wQni08fs/QuxMofP6FkABMJ5BQ78MQBdIUPwYcyRA1H0AUps4A0AhWcAEbh0ZQO5Cc51GGgFAvjCZKhi1GkBJS+XtCKf/P1Ou8C4XcQRAidFzC12J4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xyx7Etgc4z8oRMAhVKkiQCwOZ341h/0/sRafAmB8EECG5jqNtJQMQINRSZ2ARiZA9Wc/UkRGA0AQr+sX7GYYQC7/If329QFAttsuNNcJG0A/kSdJ1wwAQFr1udqKPQVA1nPS+8ZX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"54wo7Q2+D0CADvPlBVgdQKBU+3Q8pgdAmyDqPgDpAUCns5PBUTISQCNKe4MvjCZATpfFxOajBEApBd1e0lgbQPcdw2M/C+0/gVt381SnFkCoGOdvQiH/PycxCKwcWgNA5WTiVkEM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xf6ye/JwDkCJB5RNuaIhQAx2w7ZFmf8/6KT3ja+9AUABGM+goX8MQMx/SL993SRANh/XhopxBEC4I5wWvIgcQAjm6PF7m/U/XTP5ZptbGEDNBplk5Cz+PxH8byU7dgVACjAsf76t4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dOrKZ3ke/z/NHmgFhowZQHR5c7hWe+0/27+y0qQUAkDo9pLGaJ0LQM9m1edqCyVAp3Sw/s/hA0Byv0NRoM8bQEjElEiiF/s/IjfDDficF0C1FfvL7okCQI4j1uJTQAZAajLjbaXX3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9dbAVgk2EkDNBplk5EwhQIT1fw7zJQlAidLe4AsT/T8k1uJTAIwGQN4CCYofAyRAcOtunupQBEBZi08BMB4bQCb8Uj9vqvs/NgLxun4hGUCrCaLuAxD9PxppqbwdoQdA0GT/PA2Y4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qRPQRNjw+j81Y9F0dnIbQB9LH7qgvvM/x/SEJR5QE0AB++jUlc8LQLByaJHtnCdAFLNeDOUEBUALtaZ5xwkbQDC7Jw8Ltf8/is3HtaGiGUBZwARu3U3/PxPyQc9m1QVAx/SEJR5Q5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iGh0B7GzBECkx+9t+vMjQP1qDhDM0RVA7j1cctxpBUDQJ/Ik6XoQQCgPC7WmWSRAx4Ds9e6PA0C/mgMEcxQZQHfWbrvQnAdAjZyFPe0QH0BLzR5oBQYDQMSxLm6jQQZApN++Dpyz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mj1hiQcUDUB3EDtT6FwaQHY4ukp3194/ryXkg55NA0ATuHU3T7UNQMuhRbbzfSZAFYxK6gR0AkC3Yn/ZPVkXQMX+snvyMAdAf4eiQJ/IGEB2cRsN4K0DQLfRAN4CSQZAqaJ4lbVN4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"71UrE34pAEBZhjjWxY0fQN7lIr4T8wdA7WRwlLy6AUAeUDblCi8KQJJc/kP6bSVA0lJ5O8Lp/z8iiV5GsTwYQO5fWWlSivs/0LhwICTLGUDg88MI4ZEAQFc+y/Pg7gRAwqONI9bi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m6xRD9EoBEDJAiZw644dQE0tW+uLhPg/Brth26JM9j/Xo3A9ClcLQAMJih9jriRA6s9+pIjMAUDeq1Ym/FIaQDmc+dUcIP0/wVYJFocTGkBg6udNReoBQEfmkT8Y+ANACRoziXrB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PE7RkVx+CUDUK2UZ4pghQH0/NV66Sfk/veMUHcnFJkCgGi/dJIYPQPjCZKpgtCVAQ+IeSx/6AUACK4cW2S4XQDsZHCWvzvo/0CfyJOl6F0Df+NozS8IBQACMZ9DQ/wpAaYtrfCZ75z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"knnkDwZeBkDMf0i/fZ0kQORO6WD9n/0/8gcDz71HBUCZKhiV1MkHQI/C9ShcDyVA2qz6XG1FBkC9UpYhjjUdQNi7P96rVvg/tf0rK02KGkCdaFch5WcCQLJLVG8NbARAMEj6tIp+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KETAIVSpCEDlC1pIwOjuv8/26A33EeQ/x7q4jQawK0Asgv+tZIcOQLpJDAIrtyNAp+hILv9hBEB+dOrKZ1kZQDm0yHa+3wFAk2+2uTFdGEAgmKPH723+P6J/gosVdQdAyHxAoDNp3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WmQ7309NAkBpqbwd4bTxP1kXt9EA3g1AICQLmMBNIEA012mkpfINQM/3U+OlWyRAbef7qfFSA0CQ2sTJ/c4ZQOp4zEBl/PM/zywJUFNrGkDDtkWZDbL9P+nxe5v+7AhAaFpiZTTy3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6xotB3oo7b/1oQvqW2b2P0BNLVvrSwNAtYmT+x1qFUAwEtpyLsUIQCcxCKwcOiVA4bTgRV/BBEDLnC6LiW0cQL7BFyZThfc/y74rgv+tGEDVCWgibHj+Pz6uDRXjvARA+YTsvI1N5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kzXqIRpd4b8Zc9cS8oEKQFRSJ6CJcAtAe6AVGLKaEUCbPdAKDJkHQLFQa5p3XCVABTQRNjw9BEBaEqCmls0cQEImGTkL+/U/ZHWr56T3GEBdFhObj+v9P4ts5/upMQVAYYvdPqtM5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DMwKRbqf27+amZmZmdkSQCsYldQJyBBAAiuHFtkOIUAE54wo7a0RQBB6Nqs+lyVA2xZlNsjkAUBvnuqQmwEWQDI9YYkH1AFArcCQ1a3+GUCb5h2n6MgDQEJ4tHHEmgpAtK7RcqCH5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fPFFe7yQxL8jFcYWgvweQED7kSIyjBNA9wFIbeLEIEBbQj7o2SwJQLyWkA96NiZAHQOy17t/AEA+P4wQHm0bQKUUdHtJY/w/wOeHEcIjGkArTUpBt9cBQLPNjekJSwdAuwuUFFgA6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hEcbR6xF4T9DOdGuQqodQHrkDwaeewNAuMzpspjY8T/saYe/JusOQGsOEMzRYyNAaQBvgQQFCECemPViKKcYQJVgcTjzqwFA1T4djxmIG0C/YDdsW9QAQNxoAG+BxAdAXJNuS+SC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YAK37ubJEEA2donqrQEcQPTDCOHRxv0/GAltOZdiCUAvhnKiXQUGQKfoSC7/QSRAFYxK6gR0B0AHQrKACbwbQEYldQKaiP0/Vdl3RfDfGEDkMQOV8S8DQF8ktOVcygJAMzZ0sz9Q4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XI/C9Sjc9j/wv5Xs2HggQJjdk4eF2vE/Tdu/stKk8T9KmGn7VxYNQGEyVTAqCSRA3CkdrP8zBUA/bypSYewbQCApIsMqXvg/IsMq3si8GkDayeAoeTUAQDS/mgME8wZA8BmJ0Ag24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dsO2RZmNCUBQ3zKny0IeQH41Bwjm6PQ/eo1donqrEkCcoiO5/EcEQHo2qz5XOyVA+Um1T8ejDEAS2nIuxbUeQD6zJEBNrQRAkfKTap8uGkCH+fIC7GMBQLSTwVHy6gJAgxPRr62f4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RbsKKT/pA0DWOQZkr3fNP7h1N091CA1AJa/OMSB7HEB4l4v4TswIQArXo3A9qiRAxJlfzQEC9D8yychZ2PMUQHi5iO/ELPk/c2N6whIvFkBKtU/HY4b/P1Ou8C4XMQlAqJAr9SyI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y0qTUtAtC0DuCKcFL/r1P38TChFwiAFAMIFbd/NUIEC1pnnHKfoLQM9m1edqCyVAM8SxLm4j/j9i83FtqFgVQM9OBkfJq/Q/14aKcf4mFUCEEmba/lUDQDZZox6i0QlAHhZqTfMO6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7MGk+PgE7T8e3J212y7Qv8/abReaa/4/Vn2utmJfJEAr+64I/vcNQPyp8dJN4iVA74/3qpWJ+z9ubkxPWIIXQHQprir7rvA/kL3e/fF+F0DJq3MMyF4DQHwKgPEM2gZASz/h7Nay5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N1SM8zfBEUARx7q4jQYOQMVVZd8Vwfc/4e6s3XYxI0BlNsgkI+cSQBSuR+F61ChAsb/snjxsBUBiZwqd1xgaQHfWbrvQnAJAuaXVkLhnG0DIJCNnYc8BQCp0XmOXaAhAGELO+/845j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6/8c5ssLAkAP0egOYscUQIkpkUQvI/8/JLn8h/S7EkDbFmU2yCQOQC6QoPgxJiVAKLhYUYMpAEBSJ6CJsGEYQJ+rrdhfNgVAmRJJ9DIKHkAqUmFsIYgDQDZ2ieqtQQdAf4XMlUE15z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KVyPwvXoB0C2SrA4nPkEQF8JpMSubeU/X7Uy4ZfaEkCOQLyuX/AIQET67evAWSVAMc7fhEKE+j8aho+IKVEZQKyQ8pNqHwZANuohGt2BHEADeAskKP4CQKAVGLK6FQhA4KKTpdb75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mbuWkA86BUCzQSYZOUsFQGQhOgSOBOw/NrBVgsXhE0D99nXgnNEIQDy9UpYhjiVAkSdJ10w++j8J+aBns6oYQAcI5ujxewZADAdCsoApHEDxLhfxnVgDQL7Z5sb0RAhANc8R+S4l5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S+XtCKeFB0CZ8Ev9vCkIQAExCRfyiOQ/1sVtNIC3LkAaNPRPcHEOQPfkYaHWNCRAIR/0bFb9BEAp0CfyJOkVQLUaEvdYegJA+Db92Y8UHUDCwHPv4ZIDQHxETIkk+gZAFeXS+IVX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d0oH6/8cBkACZVOu8I4YQJ0OZD21euM/CVBTy9Y6AkBHOC140VcDQKMBvAUSdCNAC5jArbt5AkD68gLso3McQAPPvYdLDgVA3EYDeAskH0CbrFEP0egBQPQyiuWW1ghA1HyVfOyu5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XaeRlsobBUCMhLacS7EgQIc0KnCyDd8/aK7TSEulAUB9eQH20WkOQGuad5yi4yRAQni0ccQaAkC5pdWQuIcYQD0s1Jrm3QBAbosyG2RyHEBtyhXe5SIFQM1YNJ2djAZAuk24V+Yt6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rIvbaABvCkD129eBcyYiQCI3ww34fOM/ZDvfT41XAEBx5ldzgGAOQCfChqdXyiRAXp1jQPa6AkBgH5268nkYQF2/YDds2wBALSEf9Gy2HEAychb2tMMEQO7O2m0XWgZAsyPVd35R6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dOygEtex4z8Cnx9GCE8SQESoUrMHmg9ATI47pYN1FED8HYoCfaIFQHPXEvJBDyRAF58CYDzDAkBYObTIdj4aQEbOwp52eAFAb2Qe+YNBGUCreCPzyJ/9P6fLYmLzMQZAV+pZEMr74D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GCZTBaMS+D8j+N9KduwBQB1aZDvfTxdA5+PaUDHuH0DysFBrmlcRQNEi2/l+aiZAGHjuPVxyBEAUlnhA2ZQZQLOY2Hxcm/c/51JcVfY9GEC0q5Dyk2oBQGrecYqOpAJAjNtoAG8B5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2PD0SlkG8j8uHt5zYDndP7PviuB/K/Q/vR3htODFGkAbL90kBsENQHL5D+m3TyZA9u6P96oV/T8lkuhlFOsYQLVPx2MGKvM/5Pc2/dnPFUDn49pQMU7+P6Io0Cfy5ANAoDaq04Es4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xT2WPnSBCUAGLLmKxW/YP9ejcD0K1/k/OQt72uFPGED2RUJbzmUNQE2EDU+vVCRAXwfOGVFaA0AEkNrEyf0YQNFXkGYsmvc/vtnmxvTEFkD6sx8pIsP6P1CNl24SAwJAqb7zixJ05D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lnhA2ZQr/z9B1H0AUtsdQOjYQSWu4+g/n3HhQEiWEkB4eqUsQ5wKQKpgVFInoCVAUU60q5CyAECgGi/dJMYXQEjhehSuR/0/44i1+BQgG0A5ud+hKFD+PyoAxjNoaAVAWkbqPZXT3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kej2ksboAkDXL9gN21YHQD90QX3LXAFAMevFUE5UFEAwR4/f2zQLQHo2qz5XOyZAieqtga0S/j/CL/XzpiIYQFnd6jnpffg/l6jeGthqGkBhiQeUTbn9P5pC5zV2CQRA+P9xwoTR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H/RsVn2u+D99kdCWc6kSQGgibHh6pQFAW7bWFwmtC0CLic3HtWEMQG40gLdAYiZAGhcOhGQB/j8Mk6mCUWkYQOELk6mC0fg/g8DKoUX2GkB2bATidf39P9KMRdPZyQJA1nH8UGlE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7fDXZI16BECoABjPoAEcQOTAq+XOTOM/B7Ezhc4rDkAps0EmGfkMQO58PzVeGiVAzCiWW1rNAUDB4nDmV3MYQI0o7Q2+sPw/EXAIVWp2GkB0QX3LnK79P2dEaW/wBQRAw5s1eF+V3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RFGgT+RJBEALRiV1AhoQQFSsGoS5Xe0/SYWxhSCHD0C2oWKcv8kGQJm7lpAPOiRAu/JZngd3AkACmggbnr4ZQGpN845TdAFAamrZWl8EGkDfT42XbpIAQPtcbcX+cgdAUFYMVwfA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LJrOTgZHBkBBfcucLssMQKXbErngjOI/N+DzwwiBF0ATRN0HIDUHQJFhFW9k7iJAWP/nMF/eB0BkQPZ690cbQFluaTUkrgFAeLmI78SsHkAexM4UOi8AQOwvuycPiwVAq5Se6SVG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fQVpxqJp9D+DL0ymCgYjQAt72uGvyQdAqDrkZrgB/T+oUrMHWoEOQKrx0k1iMCZAMSWS6GVUBEABGM+goT8cQORJ0jWTb+8/GjT0T3AREkDp8Xub/iwAQA/uztpt1wNAhnZOs0C74D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h+EjYkpkCkDNBplk5Cz9Pwkbnl4pS/Y/acai6ez0IkDAPjp15XMJQOjZrPpcDSRAD5ccd0oHAkBkXdxGA/gWQNI6qpogavw/8WjjiLVYHECp3hrYKgEBQH6MuWsJuQdA7zhFR3L55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"euQPBp77BkBXsmMjEG8FQP1NKETAofk/mGn7V1b6GkCskPKTap8NQJLLf0i/XSRAHCWvzjFgAkDzH9JvX8cWQGK+vAD7aP4/xM4UOq9RHUDL8+DurN0AQPbuj/eqFQhA323eOClM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"11HVBFG3AUBq9kArMGT6P/QyiuWWVtI/6N7DJcfdIkDmkT8YeC4FQPtcbcX+8iNAGqN1VDVBBEBmSYCaWlYcQFDfMqfL4gJA28TJ/Q5lGUA1KQXdXlIBQA2mYfiI2AdAWMUbmUd+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rS8S2nIuAUDYR6eufBb5P2Sw4lRrYdY/3GgAb4GkH0Dzk2qfjkcIQME5I0p74yNApRR0e0ljAUAUrkfhelQcQNOkFHR7CQJAmWTkLOypHEBCz2bV52oBQIQNT6+UJQhA/N8RFaqb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RIts5/upB0CN7iB2plD/P92VXTC45tw/X3tmSYDaGEAbL90kBoEIQNcS8kHPBiRAdc3km23uA0Aj88gfDJwdQD7QCgxZXQNAjC0EOSjhHEBpOjsZHGUBQExsPq4N1QdAycovgzEi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N/3ZjxSRAEAa+ie4WPEcQJMYBFYO7QNA/bypSIUxBUCE04IXfcUOQAAAAAAAQCZAJ2a9GMrJAEB9BWnGoqkbQCU7NgLxuvE/o0CfyJMkF0BDc51GWuoBQH46HjNQmQNAjZqvko/d4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jNZR1QTRBkCPNo5Yi28aQKYLsfojDOw/owG8BRL0EEBPIy2Vt2MLQD/G3LWEXCVAO8eA7PWuAEAL73IR3wkXQIXOa+wSlQRAwsBz7+GSHkCQ96qVCT/+P7STwVHyagZA0/avrDSp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"43DmV3OABkAdrP9zmC8VQMcTQZyHE+8/aR1VTRDVHkB1jgHZ650NQOF6FK5HISRA+BkXDoQkAkAAdJgvL+AWQPGAsilX+ANAzTtO0ZEcH0DZfFwbKsYAQGQjEK/rlwhAlPqytFNz5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YviImBLJB0AJ4dHGEcsaQAmlL4Sc9+4/nu+nxku3G0BrDhDM0eMNQILix5i7ViRAXynLEMf6BUBhMlUwKgkZQF/SGK2jKgFAkzXqIRp9HUDVlc/yPLj+P/jfSnZsxAVAED6UaMlj5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b9Of/UjRBUB6GcVyS8sQQHXmHhK+9+g/iIBDqFLzBkATLA5nfvUNQEATYcPTCyZATrSrkPKTBEBnD7QCQ3YYQO2ePCzUmvw/CI82jlhrGEDNAYI5evwAQAXFjzF3rQZAGO5cGOnF4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/N6mP/sRBECZu5aQD7omQF8pyxDHuvE/BOeMKO1NGEAqjC0EOSgQQMX+snvy8CRARbsKKT9pAEAgDDz3Ho4YQPmDgefeAwBAHxFTIoleGUAtCVBTyxYBQAhyUMJM2wRAqoHmc+525j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bkxPWOKB/z9OYhBYObQlQINpGD4i5glAQlvOpbhqDUBA3qtWJnwMQPs6cM6IUiVAo1huaTXkBUAAjGfQ0P8bQCPzyB8MvPo/Nqs+V1vRG0CIEcKjjWMAQMmwijcyzwRAE2OZfon45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fWAiOfRxiL+5jQbwFmglQL9gN2xbFAtAuCOcFrzoEkD7y+7JwwIMQOf7qfHSzSRA6fF7m/4sBkCPcFrwou8aQO5aQj7oWQdAHXdKB+sfHUAldQKaCBsCQFExzt+EAgZAJ71vfO0Z4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e2ZJgJpaAEBHrMWnAHgiQCx96IL61gJAP6n26XjsEECvX7Abtm0LQNEi2/l+iiRAgA7z5QXYAkBlx0YgXlcZQGGnWDUIc+E/4V0u4juRFEBWDi2yna8AQDGUE+0qpARA5bhTOlj/3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZED2evcHBEBbJVgczvwgQIm2Y+qu7OU/bXNjesLSG0BNhA1Pr1QMQDbNO07RkSRATI47pYO1AkDCEg8omzIbQPsioS3n0v0/Dwu1pnmnFkCY+nlTkQoCQL5Nf/YjBQRA/0KPGD233z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5lyKq8o+DEDluFM6WG8jQNsWZTbIJPE/Ik+Srpn8EkD186YiFcYKQGrecYqOhCVA2IFzRpR2CEA+BcB4Bs0bQJUrvMtFfAFANqs+V1tRHkAQXVDfMqf7P7LXuz/eKwVA2SPUDKmi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vfvjvWolA0AlXTP5ZhseQEA08+Saguk/hxbZzvezEkBOucK7XIQQQGUZ4lgXNydASwLU1LK1A0AyA5Xx7zMdQEOtad5xigBAAKlNnNzvGEA/AKlNnFz9P/YoXI/C9QJAPC0/cJUn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l8XE5uPaBkDL2xFOC54hQO84RUdyOQhAg1FJnYCm/j9N27+y0uQHQNHLKJZbGiNANdJSeTsCBkDRlnMprkoXQHGsi9towAJAJZLoZRRLHUC77UJznYYAQBB6Nqs+VwVAnPwWnSy13z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5L1qZcLvAEBZwARu3S0VQOTXD7HBQuM/l8XE5uMaBkBl/PuMCwcJQC7/If32dSRA0JuKVBjb9z9E3QcgtQkWQEmFsYUgh/Y/h+EjYkqkF0B/9iNFZBgBQKeWrfVFQgRAyecVTz1S5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Njy9UpZhBUClg/V/DtMdQNPB+j+HefI/bkxPWOLBBkDs3R/vVWsKQDJVMCqpsyRANUHUfQCSB0BYc4Bgjt4dQBb7y+7JQ/s/jBAebRwxGUA9RKM7iB3+P8gHPZtVHwVA9G4sKAxK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B9MwfEQMA0AqV3iXiygiQPLqHAOyV/I/Cty6m6d6EEARGVbxRqYHQNc07zhFZyRA0ZFc/kN6CECkwthCkAMeQKQ2cXK/Q/4/CRueXilLHEBJumbyzbb+P+cdp+hILgRA4qyImujz4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dAzIXu8+CEAdyeU/pP8fQKPp7GRwFOc/W7G/7J58BECqQ26GG/AEQNJvXwfOOSRAcoqO5PLfBkB3oblOI+0dQIasbvWc9Pk/jjulg/V/HUAjLZW3I5z9P4kHlE25QgRArYbEPZa+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M6fLYmLzD0DFjzF3LcEaQPEuF/GdOBZAwhcmUwWjCkAIVWr2QCsHQMv49xkXziJA1QRR9wEIB0Ch+DHmrsUbQCECDqFKDQZAXtcv2A1bHUBClZo90Ir8P1mGONbF7QRAKSUEq+rl2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UmFsIcgBAECOAdnr3Z8KQG3/ykqT8hVA/Z/DfHmBE0DLEMe6uI0KQKPMBplk5CNAJ/c7FAU6CEBM4NbdPNUcQLfu5qkO+QBA5zV2iertG0AZVvFG5lEAQPYoXI/C9QVAz04GR8kr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uw7VlGSd4j/aVUj5SZURQKuy74rg/wJA4JwRpb3hJkD8Uj9vKhIJQDAqqRPQRCVASMSUSKIX/j82PL1SlgEXQOLMr+YAwf8/WfrQBfXNGECE9X8O82UAQGcKndfYJQNAU1ipoKJq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9bhvtU5c2z/rVs9J7xsaQG8Sg8DKIQ5Abm5MT1giEkALe9rhr+kQQMIXJlMFYyZAF7zoK0jzA0DRlnMprgoaQCDT2jS2V+s/f/s6cM4oF0DtmSUBamr+P5NX5xiQfQNA98snK4ar4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bLQc6KE24L9ClZo90IoZQP7UeOkmMRFA9KYiFcYWBUDWc9L7xhcMQKmkTkAT4SVASx+6oL5lA0BseHqlLKMaQCNnYU87fPg/y74rgv8NFkDmdFlMbD7/P6bVkLjH0gRANZpcjIH14D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0jWTb7Z5C0BubkxPWBIiQESoUrMHuhBAIhrdQezM/T8qAMYzaCgOQCEf9GxWvSRAjpJX5xjQBEAy5q4l5IMZQKGhf4KLFfs/jnVxGw1AHEDSqSuf5Xn8P3ldv2A3LAVAyR8MPPee4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pvJ2hNOC9j8DJnDrbj4UQFZ9rrZif/g/p1zhXS4CFkDZPXlYqPUKQEhQ/BhzlyVAGCE82jhiBkDw3Hu45HgbQCU7NgLxuvc/wARu3c2TFUBS1QRR90EAQOvFUE60qwJAx/SEJR5Q3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8gwa+ic4C0DzdoTTgvcYQGWqYFRSp+c/irDh6ZWyCECe6pCb4QYOQHam0HmNjSNAV5V9VwR/AUAS2nIuxTUWQATKplzhHQJA7s7abReaHECp2QOtwJAAQGVwlLw6hwdAJSTSNv7E5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v9TPm4pUAkDLnC6Lic0aQJC93v3x3gBAHAjJAibwCUBIxJRIohcLQCqpE9BEGCRAw2SqYFTS/D/NO07RkfwVQP0wQni08QJA8gwa+icYH0Cu8C4X8Z38P+utga0SLAlAIJc48kDk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aD9SRIYVBEAsfeiC+tYjQFBSYAFMGeA/gufewyWHCEBTkQpjC8EKQK1p3nGKLidAxFp8CoCxBEANjpJX51gYQEuTUtDtpQNApmH4iJgyG0CFJR5QNmUDQDeJQWDl0ANATkUqjC0E2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DjLJyFk4EUBqMA3DR8QWQG8Sg8DKYQpAI6Et51Lc/z+DaRg+ImYQQOoJSzygzCJAgosVNZiGBECZnrDEA+oaQETAIVSpmQBAZED2evfnG0DD0ytlGeL/P7wFEhQ/xgVAga/o1mv64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VOOlm8TgAkBau+1Cc90iQL06x4Ds9fQ/6MHdWbvt9j+ns5PBUbIIQAYSFD/GfCVAcqd0sP5PCED7rgj+tzIbQJHyk2qfzgFA6pWyDHFsGUCT407pYD0BQCe9b3ztmQRAgzP4+8Xs4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/isrTUrBDEDoMF9egL0UQDJyFva0w/M/FZFhFW/kBUC/SGjLudQKQKN1VDVBtCJARpkNMsmIAkCoABjPoOEaQF70FaQZCwFAf9k9eVioG0B8CoDxDBr8P+G04EVfQQFAQZqxaDo74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cclxp3SwA0C3f2WlSbkhQFjFG5lHfus/y9sRTgteA0AtCVBTy5YJQI4G8BZIUCZAYi0+BcC4BEDHYwYq4x8ZQAaeew+XHPk/xAjh0cbRFkAyj/zBwPP7P+o+AKlN3ANA6dZrelBQ3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XkvIBz3bAkBRvTWwVaIUQOi8xi5RPfg/2qz6XG0FBUDS+8bXnhkPQIkpkUQvIyNAVB1yM9yA/D/4wmSqYPQXQEdVE0TdB/Y/U1xV9l1xFUAipkQSvQwBQBhDOdGuggdA422l12Zj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ik+Srpl8A0C9++O9aqUjQLLXuz/eK/o/f4eiQJ/IEkDEJced0sEGQBdIUPwYsyRAGZC93v3x/z9a9bnaiv0XQDIDlfHvM/g/jbRU3o7wFEDFILByaBEAQMpskElGDgRAy52ZYDjX3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kDF3LSGfBkC9NbBVgjUgQHOAYI4evxhA98d71coEC0CrCaLuA7AQQOVhodY0byRAbXNjesISCEArTUpBtzcbQFtCPujZLPk/iUFg5dCCF0DS4/c2/Vn8Pz4/jBAebQhAOLpKd9fZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nBa86CuoEEBeS8gHPTskQC+jWG5pNfM/IJijx+/tFkDnHafoSG4GQPW52or95SRATwZHyavzCECVtyOcFlwcQCTW4lMADP0/KNU+HY9ZFEDKw0KtaR4AQM1YNJ2dzAhAJA7ZQLrY4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pyIVxhYCBUCXkA96NkslQKrSFtf4zO4/vyuC/63EG0DcnbXbLjQIQISezarPNSRA5ujxe5s+CEDGpwAYzwAeQILix5i7Fvo/sylXeJfrFEDSNZNvtnkAQPilft5UZAlAOzWXGwz14T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pz/7kSLyAkBOtKuQ8hMaQA/QfTmz3eo/b/Wc9L4xAUDImLuWkI8LQL6fGi/dJCVAm1q21heJAkB/9iNFZNgYQPt0PGagMv0/RIZVvJHZG0C8s3bbhWYBQKmkTkATIQFAZacf1EUK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hEcbR6zFBECsrdhfdq8jQLHh6ZWyjPE/YXE486t5EkC3KLNBJlkMQAIrhxbZDiVAy2d5HtwdBEBcd/NUh/wZQFYOLbKd7/g/0egOYmeqGkBYHM78ao7+P/fkYaHWdAJAE7cKYqDr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"guLHmLtWBUCJJHoZxbIVQO1kcJS8egFAGt1B7EwhBkD3Bl+YTFUMQAWjkjoBrSVApn7eVKRCAUAcQpWaPXAYQIzbaABvgfc/aoe/JmtUF0CfceFASBYBQKTk1TkGZAdAxcn9DkUB4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NEsC1NTyCkCiRbbz/ZQlQB4bgXhdP/I/EVMiiV5mGkCyS1RvDWwJQBghPNo4ciJAhEcbR6wFBEAjvhOzXqwdQAAd5ssLMABA7kJznUa6GECZZOQs7KkBQABvgQTFTwRA6pEGt7WF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CJRNucK7/z8+6Nms+lwlQPaWcr7Ye+c/qz5XW7F/DUBLk1LQ7eUGQJayDHGsKyVA2XxcGyqGAUDR6A5iZ8oYQJMdG4F4HQFA8u8zLhzIG0Cc4QZ8fhgDQEq1T8djhgNApp2ayw2G5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ngyOklenBEC4QILix1gnQAbUm1HzVeY/PIidKXReEEBwlLw6x4AJQERpb/CFiSVAkIgpkUTvA0BXPsvz4A4ZQH3Qs1n1eQNAlialoNuLGkDRdHYyOIoBQJ7Swfo/RwRA61OOyeJ+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MuauJeQDB0A+BcB4Bp0hQNaPTfIj/uI/VoLF4cxvFECif4KLFfULQIBIv30dWCVAZHWr56T3A0AUyy2thgQaQGItPgXAeAJAYhVvZB4ZHED6fmq8dJP+P7w/3qtW5gVA7fFCOjyE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NbVsrS8SCUBkQPZ696cjQINRSZ2AJgVAUyKJXkbxA0AVb2Qe+UMRQHZxGw3g7SZAuRluwOdHB0BpHVVNEFUbQKp9Oh4z0P4/xm00gLfAG0C0dtuF5noEQObo8Xub/ghAf03WqIdo5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZhTLLa0GB0AQI4RHG2cWQOSh725lCeo/gXhdv2C3DkB6whIPKNsLQHxhMlUwqiRAb0c4LXgRBUD9n8N8eYEbQNiBc0aUtgFAYf2fw3x5GEBgsBu2Lcr+PwIOoUrNHgVA9fHQd7cy5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s14M5UQ7BEC8P96rVoYUQA7z5QXYx/A/S8gHPZsVEkB5dY4B2esLQInS3uAL8yRAgq0SLA7nBUC7YduizAYbQFZl3xXBf/8/rK3YX3ZPF0B/vFetTDgAQLdif9k9eQRAPUfku5S65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6znpfeNrAUBcVfZdEawgQHO+2HvxRds/T3XIzXDDAkAiq1s9J30FQLMMcayLOyRA8+UF2EcnA0AE/1vJjq0ZQG/whclUAQNAhXzQs1nVHECafLPNjWn/P3OiXYWUnwRAdF34wfnU3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M/lmmxtTA0CuR+F6FG4eQCNMUS6NX+Y/zGJi83Ft/T9WvJF55A8FQBdIUPwYEyRATpzc71DUAkACvAUSFB8aQCHNWDSdHQRAiC6ob5lzHED8xteeWRL+PxJr8SkABgVAFsH/VrJj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hbacS3HVAEADlfHvM84cQG05l+KqsgNAL90kBoGVAkCFd7mI74QOQMnlP6TfHiVAjPM3oRDBBUCOklfnGDAbQI/8wcBzb/Q/o1huaTWEFkCkNnFyv0MAQDUk7rH0YQJA+3jou1vZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BfpEniRdB0B5QNmUK9wcQH9OQX42cuI/GvonuFgRBUBdFhObj+sJQHo2qz5XuyVAwcWKGkwDA0BK7xtfe6YZQA+0AkNWdwRAH2gFhqwuHUAiq1s9Jz3+P+MZNPRPcAVAxJYeTfVk4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oblOIy1VB0B4uYjvxKwKQPwYc9cScvU/1GAaho/IGEBlpUkp6HYMQLbWFwlt2SNASphp+1eWBECtbvWc9L4cQJPjTulgffk/WMUbmUc+GEDtnjws1NoBQCO+E7NejAZAGsOcoE0O5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vFzEd2LWAkD83qY/+7EcQEGd8uhG2O8/Z2FPO/w1EEBJY7SOquYHQG/whclUASVAR8mrcwwIBECWPnRBfesXQNcXCW05l/0//mX35GGhGEBeukkMAiv9P7QfKSLD6gRAAknYt5MI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AMYzaOif8D8OEMzR4+cjQPonuFhRQwBAgsXhzK+mBUCsyr4rgn8QQAyTqYJRCSRAfoy5awm5BkAziuWWVkMcQHXN5Jtt7vk/PwCpTZz8F0BKQbeXNMYAQLpOIy2V9wJAXcMMjScC4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i1QYWwgyAUBrgqj7AAQXQFcm/FI/bwZA2NMOf03W+z8aaam8HSENQNUJaCJs2CVAduCcEaV9AUCKjuTyH3IYQFDCTNu/svg/QSswZHWLGUANpmH4iJj9P3mvWpnwCwdAQgqeQq5U4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LH3ogvoWC0A9CtejcK0jQLg6AOKuXuQ/OsyXF2CfE0A8g4b+Ca4OQEp7gy9MxiVAF7zoK0gzBEDC3Vm77QIZQKjGSzeJAQJAN091yM1wGkDZzvdT4yUCQL5qZcIvNQZAza57KxKT4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UU60q5By9T/gEKrU7JEgQM8UOq+xiwpAcr9DUaBvGECERxtHrIUJQCsYldQJiCRAQbeXNEarA0CN0TqqmgAbQH/eVKTC2Po/vFetTPglGkBvu9BcpxH/P2PuWkI+6ARAidS0i2km5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vk1/9iNFAkDLviuC/+0AQFVNEHUfAPY/cY+lD12QE0DIDFTGvw8NQESLbOf7aSVAgpAsYAI3BEBcrKjBNIwZQHi5iO/ErAVAn47HDFRGGkAiN8MN+PwBQBVXlX1XxAVAcf+R6dBp4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m1Wfq61YCkAQdR+A1OYAQHrHKTqSiwNAHhZqTfPuFkDaA63AkBUOQKmkTkAT4SVAQQ5KmGk7BUCp9ul4zCAaQJp8s82NKQdA5e0IpwXvGkAmcOtunioDQJBrQ8U4PwVAV19dFajF4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lbcjnBb8B0C+vAD76PQWQPaaHhSUouE/GLK61XOyGECUE+0qpLwPQLmNBvAWaCZAZohjXdyGBUC7D0BqE2cbQAEYz6ChvwVAt+7mqQ75HkBUUiegiTAAQHeE04IXvQZAG/FkNzP65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Iv32deBcAECVgm4vaYwKQFUYWwhyUOM/vw6cM6L0H0CBBMWPMXcIQFGDaRg+ciNACRaHM7+a/z/nxvSEJb4aQGXHRiBe1/I/nOEGfH74FkBgArfu5qn9P+XQItv5vgFAWwuz0M5p4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rthfdk8eCUA3ww34/HAFQPsFu2HbYghAA5Xx7zPeIUBMT1jiAaUMQFZ9rrZinyVA2nIuxVVlCkBT0O0ljfEZQFQ1QdR9APk/bsDnhxEiF0DyXrUy4dcBQKXap+MxgwdAfA+XHHdK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Irgfyu5EECBCdy6m2cDQInS3uALk/g/eVioNc1rM0AjSnuDLwwOQBe30QDegiVAIchBCTOtCUCeJF0z+cYbQBlz1xLywfY/GoaPiCkRF0AmHlA25UoAQCQofoy5qwhA8DSZ8bbS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LIL/rWTHD0Axsfm4NpQBQMo329yYHvE/Iv32deA8LUDtnjws1NoNQJ88LNSaxiVAB84ZUdrbCUDLSpNS0M0cQOcdp+hIrvY/z9ptF5qrF0AIrBxaZDsBQM7HtaFiXAlA41MAjGfQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OkAwR4/fAUAc0xOWeOAZQDVeukkMAvw/9wZfmEyVBEB3Z+22C+0QQF3+Q/rtqyZAz72HS467BEDcRgN4CwQZQGdhTzv8tQVArtNIS+UtHUB0QX3LnC4AQCGwcmiRrQJAkEsceSAy4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lc+Du7P2B0DIDFTGv/8jQCaqtwa2Sv8/5ldzgGBOCkB+Uu3T8dgHQAzIXu/+2CNAA8+9h0sOBkBfmEwVjOocQHwnZr0Yyv4/QBh47j38GEASwqONI9b/P6jjMQOVMQVA81gzMshd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dmd+NQcICUCIaHQHsZMQQPIGmPkOfug/5Pc2/dnPCUAMzXUaaWkRQKabxCCwEiRABDkoYabtBkBS8uocA7IaQNf6IqEtZ/4/2GSNeogmGEDmriXkg94AQHS1FfvLLgZAxysQPSkT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fbPNjekJBUDBHD1+b/MRQHHmV3OA4Po/7Eyh8xo7CEAwR4/f2zQTQIzbaABvwSRARrHc0mqIA0CgVPt0PEYbQLk2VIzzN/k/xAjh0cYRGEDYZI16iIYBQPCiryDNmAVAr3yW58Hd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iuWWVkOiCUDlRLsKKZ8iQAYq499n3Pc/AfbRqStfCkA9fm/Tn30KQDvfT42XjiVAzH9Iv30dA0BK7xtfe4YXQGFPO/w12QJALXjRV5AmHEC8lpAPejYAQHWr56T3TQVAgQhx5eyd5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m+Ydp+iICEBmMbH5uLYfQGWlSSnodv0/KSLDKt4ICUDcEU4LXvQRQPkx5q4lZCdAVG8NbJXgAUCq1OyBVsAaQEkw1cxaCu0/+N9KdmwkFkBDHOviNloCQHx+GCE8WgVAj4r/O6LC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f/YjRWTY/D/3OxQF+iQeQBBYObTI9vM/kSdJ10x+CkBUxr/PuDAKQNO84xQdySRAoWez6nM1A0DxgLIpVxgWQKA3FakwNv8/pdqn4zFjGUDVz5uKVNgBQJHQlnMpbgdAQ1ciUP2D5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qrcGtkqwBUCh8xq7RJUeQLJoOjsZHOM/AoI5evze+j8EkNrEyX0HQDNQGf8+YyNAryXkg56NAUCOAdnr3R8cQG1zY3rC0gFAtcNfkzUqHEBcVfZdEXz/P1jKMsSx7gJA+mNam8Z24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r84xIHu9BkCWCb/Uz/sXQOJ0kq0up94/iGh0B7FzEUDBqKROQNMEQOm3rwPnrCVAw9MrZRmiBkBsW5TZIPMaQDGUE+0qZAJAFTqvsUs0GUCskPKTah8CQJusUQ/RqAVAWeAruvWa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"63O1FfuLCkATuHU3T5UTQOxrXWqEftQ/r7FLVG/NBkD/PuPCgVAKQGIQWDm0qCVAInGPpQ9dC0C6oL5lTrcaQDXvOEVHsgZAE0n0MopFHEDNkgA1tewBQCwrTUpBtwNA6Ih8l1KX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iV5GsdzSAEBq9kArMNQjQGrC9pMxPuk/hXe5iO9EHEBp44i1+JQIQISezarPFSRAsDic+dUc/z/sL7snDysaQIbJVMGopP0/g8DKoUU2GUCL/WX35KEAQIzbaABvQQZAXRq/8EoS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WfrQBfWtBEDS+8bXnhkcQL0d4bTgxe4/eqUsQxwrAUC22y401ykMQA4tsp3vZyVA6xwDste7CUDQRNjw9CoZQDrMlxdgH/4/by9pjNbxGUCg/UgRGdb+P9ydtdsu9ARAK4cW2c535T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CyQofox5A0Ab2CrB4rAeQKeVQiCXOOU/ea9amfBLCEAqUmFsIcgMQJhuEoPAyiVAOnXlszyPB0DcaABvgaQaQLxXrUz4Jf8/rUz4pX6eGkBcA1slWJz+P5nwS/286QNAoBfuXBhp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZOlDF9Q3DED7dDxmoDIeQCBB8WPMXfw/8YCyKVd4B0Ak1uJTAIwPQBzr4jYagCVAi1QYWwgyBkAYPiKmRDIdQD4/jBAebQNAIbByaJFNHEB1sP7PYb4CQNb/OcyXVwZAuvQvSWWK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vCL430r2/z+28/3UeOkfQJo/prVpbNk/DtsWZTZIBUD1EI3uIDYGQIDUJk7u1yNAF/GdmPWiA0CI9NvXgVMYQBMsDmd+tfk/HJlH/mDgGECDTDJyFvb/P8A+OnXlswVAEk2giEWM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O420VN5OBEBAh/nyAmwfQMHicOZX8/I/95LGaB1V/z/0piIVxhYOQKH4Meau5SVA66hqgqg7AkBiEFg5tGgcQBmQvd79MQVAbHh6pSyjGkDkZrgBn58DQPZFQlvOZQVAboeGxahr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D9HoDmKHF0DymIHK+GchQJhMFYxKiiRAozuInSn0/j/8qfHSTSIOQEi/fR04ByVA/pqsUQ/RCkC28/3UeMkbQFa8kXnkDwNAZF3cRgM4HkCafLPNjSkAQISezarPFQdAfJv+7EeK5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iQyreCOzFEAnFCLgEJogQCtqMA3DRwRAp+hILv+hAEAfuqC+ZQ4MQGRd3EYDWCVAYf2fw3w5CEB9y5wuiykcQLfRAN4CSQFAu2HbosymGkARAYdQpeb/PwKaCBuengZAcHmsGRnk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q1Thz/Dm5D/g1t081WEZQAqd19glqghABmSvd3/8CkB0e0ljtM4LQIEmwoantyRAPfIHA889AUBVGFsIcjAZQDBl4ICWLuk/fqmfNxXJFkARx7q4jcYBQPsFu2HbogRAMEYkCi3r5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cqd0sP6PB0CQ2sTJ/R4gQFQdcjPcgO8/u37Bbtj2AkBUbw1sleAMQEYldQKaaCVA/OO9amVC/z/gEKrU7CEWQP4rK01KQfs/Ece6uI0mF0Dw+WGE8CgAQFQAjGfQEAVAT+s2qP3W4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3eo56X1jAED/PuPCgXAZQCAMPPceLvM/L8A+OnVlDkC8y0V8J6YQQHQkl/+Q3iVAenB31m57BUBmZmZmZkYdQAOV8e8zrv4/jgbwFkjQGEBIFjCBW7cAQNnO91PjpQVAL8GpDyTv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NNdppKVy/D9xOPOrOcAaQAdfmEwVzABA+U7MejEU9j825QrvcpEFQD24O2u3/SJAxoUDIVkAA0CQa0PFOP8aQCHNWDSd3QFASl6dY0DWGkCD+pY5XRYBQNXPm4pUmANAQfLOoQzV4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x7q4jQYwA0B8YTJVMPoiQFtCPujZrPc/gnNGlPZmEUBhbCHIQckGQIts5/up0SRAKgDGM2joA0Ce76fGS7cYQIvgfyvZsQJAmfBL/bxJG0C9HeG04MUAQPJBz2bV5wBAh6OrdHcd4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/kP67euABEBXPsvz4K4dQPiNrz2zJNs/JGJKJNELF0Bq3nGKjmQLQKorn+V5QCNAGedvQiECBUCNeohGdxAYQA2mYfiI2AFAcm2oGOfPGkDbheY6jXQAQIlBYOXQIgNAN/+vOnKk3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6MHdWbvtBEBOC170FYQTQNHoDmJnivU/Io51cRutF0CbPdAKDFkGQC9uowG8hSRAaam8HeG0BUB65A8GnhsbQM8sCVBTywJAbCHIQQkTHEBtOZfiqrIAQB/0bFZ9bgJA/iyWIvlK3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UiegibDhAkD4cMlxp3QSQF1txf6y+/A/wXPv4ZJjEUC5cCAkCxgJQIdQpWYPpCNAsHJoke08A0DxS/28qQgYQK5kx0Yg3vk/0A8jhEd7F0DRBfUtc7r+P3zysFBrWgZAG4S53ct94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kdWtnpPeBUA/AKlNnNz9P4rlllZDYgBADaZh+Ii4H0B4l4v4TowNQEw3iUFgxSZAlWBxOPMr/T8ziuWWVkMXQBDM0eP3tvY/pIgMq3jDF0Dd71AU6FMBQMkfDDz3ngdAyf/k797R4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yol2FVK+C0Am5rQCng+Kv+s3E9OF2Oo/w552+GuCIkDuX1lpUkoKQACMZ9DQnyNAAyZw625eBkA09E9wsaIaQIyhnGhXofs/GCZTBaPyGUB+qZ83Fan+P4wVNZiGYQNAEQAce/Zc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aCJseHqlBkA0aOif4MIdQEUNpmH4yABAr84xIHu9E0DePNUhN0MPQAKaCBuePidAEF1Q3zIn/j9NEHUfgPQYQCxIMxZNZ/4/SzygbMpVGUCWlSaloFv9PzXvOEVH8gJAhT/DmzV43D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xjNo6J+gA0A+P4wQHo0dQMnp6/ma5eo/V3iXi/jO/j/SxhFr8akOQARWDi2yHSZAWVGDaRi+AkCbyTfb3JgVQO2BVmDIavs/NuohGt0BHEDRP8HFipr8P81YNJ2dTANAI7pnXaPl3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oaF/gosVAUA6deWzPI8eQPM8uDtrt/c/FMstrYaEA0B2w7ZFmQ0JQE8eFmpNcyRAjliLTwEw/D9bmfBL/RwbQJbnwd1ZO/o/z72HS467GEBPO/w1WaP9P8R8eQH20QFADtdqD3sh4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bsDnhxECAECQ2sTJ/Y4gQEZDxqNUwu0/nG1uTE9YBEApeXWOAZkFQIy+gjRjsSNAIEHxY8zd/D963/jaM6saQCBj7lpCvvY/0sYRa/HJGUBdp5GWyhsAQOfG9IQlHgJAUdmwprKo4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6DBfXoD9C0BkO99PjbcdQKfMzTei++Y/W18ktOXcEUAVxhaCHFQRQCxlGeJYVyZAJTs2AvG6BUAaqIx/n7EaQGN6whIPaAJAjX+fceEAG0BHVRNE3Yf+P1uU2SCTjARAWKoLeJlh4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/aTap+OREEDGbTSAt1AjQBrAWyBB8QhAcy7FVWXfBEALJCh+jPkOQMoyxLEuziVAJZLoZRTLA0AM6lvmdJkXQPkx5q4l5ABAvYxiuaX1G0BHA3gLJCj8P7vQXKeRFgNAfUELCRhd3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h22LMhskEEBMiSR6GYUbQM7HtaFi3BFAQgkzbf9K9D8K16NwPUoPQEMc6+I2uiRAoE/kSdJ1A0DnGJC93j0ZQJn1YignWgFAvHSTGAR2HEDAIVSp2YP7P+j2ksZoHQNADmYTYFj+1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yVnY0w7/BkC+MJkqGBUeQP9byY6NwPY/wHgGDf0T+T8QBp57D5cLQLRxxFp8GiNArwj+t5IdAkCNf59x4eAXQN3Sakjc4/o/i3H+JhRiG0BpxqLp7CQCQL1SliGOtQ1AWksBaf+D5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wsBz7+GSD0AvhnKiXaUYQHDrbp7qkAVA7fXuj/cq/D+IaHQHsbMCQHL5D+m3ryJAxhaCHJSw+T8i4BCq1GwVQNkIxOv6BQFAoblOIy1VGEAgJAuYwK0DQDTXaaSlsglAQuxMofMa6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zk6XxcTmE0D5LM+DuzMgQNttF5rrdABAJ9pVSPkJBUBUdCSX/zAQQBb7y+7JwydAdZMYBFaOCECunpPeN54dQJzhBnx+mP0/SNxj6UO3GEAsn+V5cPf6P/NUh9wMNwJA38SQnEzc3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qTC2EOQg/D9ivrwA+2gaQMuEX+rnzfc/d0oH6/+cC0CVK7zLRTwQQHRGlPYGPyZAZAYq499nBUDBOSNKe8MZQLivA+eMqPk/0NVW7C+7GkCnP/uRInIBQC2VtyOc1gRA3Vz8bU8Q5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RpT2Bl8Y8j8uxVVl31UUQNo4Yi0+RQ1AoWez6nNVLED/lZUmpWAIQAyTqYJRSSRAY3rCEg+o9D9AwcWKGuwVQKUUdHtJY/4/ujE9YYlHF0Dqz36kiMwAQKAy/n3GRQRAdR2qKck65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M+GX+nlTAkCfk943vgYjQAvvchHfCfI/hnKiXYXUFUCDo+TVOcYLQHQkl/+QfiVA/8pKk1LQAkBqvHSTGCQZQILix5i7FvE/mN2Th4V6GEAsZRniWBcBQI/C9ShcjwpAmwRvSKMC2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bXNjesISBkDwxKwXQ4khQHFV2XdFcPE/EAaeew83HUBxj6UPXZALQJMYBFYOjSRAzsKedvirBUDVBFH3AUgcQM6N6QlLvABAe737471KGkAvbqMBvAX+P2hcOBCSxQFACr/Uz5uK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RrHc0moIBkBwlLw6xwATQM6N6QlLvPE/gQTFjzH3B0CUh4Va0/wKQBZqTfOOUyVA5nRZTGy+A0CRYRVvZJ4YQJ268lmehwBAWp4Hd2eNHEAP1v85zJf9P6+ZfLPNTQZA06I+yR224j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p+hILv+hBkBHj9/b9IcUQMI0DB8R0/Y/tcNfkzXqGEDri4S2nAsMQGdEaW/wZSVADYl7LH3oAUCmD11Q3xIcQKpIhbGFoPc/zF1LyAc9G0A4vvbMkgD9P6GEmbZ/ZQZA9GxWfa625D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g1FJnYDmBEDiHksfugAfQBE5fT1fM+s/AiuHFtnOFUApyxDHuvgLQEaU9gZfOCVAg24vaYwWBEBrfZHQlrMaQAVpxqLpbPw/CfmgZ7OqGEDI7236s5/8PwKCOXr8HgZAibX4FABj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Imx4eqUsCkCgw3x5AdYdQGFUUiegyQBA/tR46SaxAkCFd7mI7wQNQMP1KFyPAiZAWcAEbt3NB0AhdqbQeY0aQBsS91j6kAJAB7Ezhc5LHEBsW5TZIFMDQF3Ed2LWywJAOJ7PgHqz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"27+y0qRUAkCNeohGd/AgQLu4jQbwlvM/VOOlm8Qg9z+7RPXWwFYPQAyTqYJRKSVAmggbnl5pCUAAkX77OtAbQF8pyxDHugJApu1fWWlyG0Df+NozSwICQExxVdl3xQVAP+Hs1jKZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oaF/gouVAkCEZAETuNUfQF5ortNIS/M/WHOAYI4e9z+bcoV3ucgNQEYldQKayCRAxEKtad6xCUAW+8vuyUMcQG6LMhtk0gJAOpLLf0hfG0DwiuB/KxkCQJ+rrdhf9gVAb6DAO/l05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XrpJDAKrCUDtKqT8pDocQFHYRdEDn+E/3GgAb4GEAEBD4h5LH/oIQINRSZ2ARiZAAkht4uR+BUDRP8HFipocQPKwUGuatwBAZY16iEa3G0DlRLsKKb8BQOi8xi5RvQVArFJ6ppeY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9wZfmEyVBECfjscMVGYiQBNm2v6VlQpAjKGcaFfhAUDVsrW+SCgRQOauJeSDfiVAGqiMf5+xAUDVJk7ud2gYQM0jfzDwHAdAMlUwKqlTH0CvzjEge30DQCyC/61khwZA6PaSxmgd6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YHZPHhZq/z9gWWlSCtoSQIpZL4ZyIv8/CeHRxhHLFUBxyXGndDAJQHh6pSxDXCZAsP7PYb68/j+CHJQw0xYXQOLkfoeiwPY/jC0EOSghF0CSdM3km+3+P3Tqymd5HgdA0qsBSkON3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"07zjFB1JDEANVMa/z7jsv4s3Mo/8wfI/3bWEfNBTLEDd6jnpfaMNQP5D+u3rQCRAvodLjjulBUD4qpUJv5QaQPDErBdDeQFAcqd0sP7PGkAcJa/OMSD+P+YivhOzXgBArOY5It8l4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xb9gN2ybAUCGAraDEXvgP25MT1jigeA/Ci5W1GBaFUCSBUzg1l0IQGEyVTAqCSZAcHztmSVBAkDVWwNbJTgZQK5kx0YgXgBAgIKLFTX4GEAgmKPH720AQH/eVKTCmAJA/vDz34PX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B5lk5CzsA0D4cMlxp3T7vxBdUN8yZwBAiIVa07zDMUAvaYzWUTURQAXFjzF3zSRAcLGiBtOwAEDp1JXP8nwWQOVEuwopv/o/12mkpfKWGEDmeXB31m7+P0GasWg6OwVA1Cr6QzNP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lWBxOPNrAkC1MuGX+nn6v7ZMhuP5jOc/JLTlXIpLGUDqW+Z0WQwDQNc07zhFJyRADvj8MEJ4AUAWhzO/mmMZQChJ10y+Wf0/H6LRHcRuGUA6deWzPE8AQHGsi9toQARAjQ3d7A8U4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VwkWhzO/BUCNXaJ6a2D4PywOZ341B/E//n3GhQNhIECs/3OYL+8MQKd5xyk6UiVAAU2EDU8vBUCiKNAn8sQaQJc5XRYTm/w/F5rrNNISGkDdQexMofMAQPGdmPViaAdAmG2nrRHB5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x0s3iUGgAEAB++jUlU8dQOmayTfbXPY/A5Xx7zMuBECBeF2/YHcNQEku/yH9lidAiNf1C3aDA0CzXgzlRDsZQBdlNsgkI/A/B7Ezhc7LGUCTjJyFPa0AQDUHCObocQZAeQYN/RPc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/WoOEMyRB0BagSGrW50gQDTbFfpgmeI/uDtrt10oCkBtrS8S2rINQAjJAiZwmyNAz9ptF5orB0BO7ncoCjQdQMO7XMR34gNAy7kUV5W9GEAdA7LXuz//P2H9n8N8OQVAlGsKZHaW4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gy/dJAYBBkDsL7snD6sgQOUqFr8prN4/gEi/fR14AUD5oGez6rMKQJeQD3o2CyVAT3XIzXDDB0BQ3zKny0IcQBGN7iB2JgJAKm9HOC34GUAmHlA25UoAQAjJAiZw6wVAiq92FOco4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hIHn3sOlA0AQBp57DzccQDMzMzMzs+o/xawXQzkRBEC9NbBVgkULQAdfmEwV7CVA9DehEAHHA0DKN9vcmF4YQA4yychZWARAKlJhbCGoGUDsaYe/Jmv+Pw2reCPzyANA1nCRe7o64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xxFr8SlABkBKe4MvTMYkQM11GmmpvPc/5pZWQ+IeEkC8P96rVmYKQN9PjZduciRAguLHmLtWAEDU8ZiBypgYQFA25Qrv8vI/Zd8Vwf9WG0A6deWzPA/+P6zKviuCPwJAIVfqWRDK1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YLAbti3KB0CuKvuuCF4gQHKndLD+z/0/6znpfePrGED129eBc0YKQO84RUdyuSRA+zpwzohSB0B+dOrKZ3kcQGwm32xz4/8/uAGfH0aIHkBvgQTFjzEEQCxIMxZNZwlAoPoHkQw56D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hj3t8NfkA0D430p2bOQbQBU2A1yQLdM/V5V9VwT/FEDsNNJSeXsGQFdbsb/sPiZAbhea6zQSBEBWSPlJtc8aQIleRrHcUgRALlbUYBpmGEDiOzHrxRAEQIl7LH3ogghAWFnbFI+L5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CTiEKjW7AkBq+1dWmjQZQGjmyTUFsuE/BTQRNjx9EkBPQBNhwxMJQJOpglFJXSZASREZVvHGBUDzPLg7axcaQP1NKETAofk/jQsHQrIAF0DEWnwKgPEBQPonuFhRgwhAZCE6BI6E5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QQ5KmGl7CUB5AfbRqUsUQJRqn47HDPg/D2JnCp33FUBlU67wLvcQQKjGSzeJ4SRA1T4djxkoCEBDHOviNpobQDAS2nIuRf4/o3VUNUG0HEDp8Xub/mz/Py7KbJBJBgVAxy5RvTUw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uDtrt10oAUCkiAyreJMgQHCUvDrHgOs/SMSUSKLXCkCetdsuNFcIQA5Pr5RlyCVALhwIyQImBkAcfGEyVZAeQMAma9RD9AJAJjYf14bKHEAuxVVl35X+P+I7MevFEAVAsqGb/YFy4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O6qaIOq+A0A6OxkcJe8XQD6zJEBNrfE/AfbRqSsfCECgT+RJ0jUPQHlYqDXNOyVAWd3qOem9CEBD5zV2iQoaQMISDyibcv4/YhVvZB7ZGkCRuMfShy77P2FUUiegSQJAwygIHt/e3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RGlv8IVJBUCNnIU97RAjQMUDyqZcYe0/pkQSvYwiAUCutmJ/2T0KQIofY+5aoiVAiNf1C3aDAkDWOQZkr7ccQDIge737IwFAxuHMr+ZAGkCCyvj3GRf+P+if4GJFzQJASb4SSInd4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MxZNZydDCkBlARO4dfcbQFu21hcJ7QtASMSUSKIX/j9I+Um1T4cJQMo329yYjiNAjXqIRnfQCEAAjGfQ0D8bQCh+jLlriQJAls/yPLjbGUCqQ26GG3ABQGlXIeUnVQZAFCUhkbZx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"saIG0zCcEECDF30FaSYiQLgehetRmBJAJuSDns3qA0C4O2u3XegKQNxGA3gLpCRAD5wzorQ3/z9Q/Bhz11IaQLly9s5oK+U/HNMTlnhAF0A+P4wQHu3/P6uVCb/UDwVAppnudVJf3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DDz3Hi65/T8s8YCyKTcZQLMj1Xd+0eQ/HSCYo8fvF0C6ZvLNNjcNQCNKe4MvzCVAQSswZHUrAUB0JJf/kJ4XQE8eFmpN8/4/RBfUt8xpFEDxaOOItXj9P3HJcad0cAJAQ8U4fxMK4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4/xNKERAC0C/K4L/rSQRQIBIv30dOP0/bTmX4qpyCUCXHHdKB2sHQGb35GGhdiVABaOSOgFNBECRYRVvZB4aQGNi83FtqPw/hbGFIAdlG0ADJnDrbh79P6cFL/oK0gRAzEbn/BTH2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uK8D54woBUCVn1T7dHwLQHbj3ZGxWuY/Ece6uI2mJUAnTu53KKoQQMl2vp8aDyVA5bhTOlj/AUDmkT8YeC4YQDBHj9/bNAJAe0ljtI5KGUDGFoIclLD+Pye9b3zt2QFAyOwseqcC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fPKwUGvaB0BOl8XE5iMRQGR1q+ekd/Y/8KfGSzepKEBxGw3gLZAMQHctIR/0TCVA48eYu5aQ/j8gDDz3Ho4XQPLvMy4cCPo/mFEst7R6GkAmcOtunioAQEX11sBWSQNATYbj+Qwo4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9aEL6ltmCEBQx2MGKmMGQEZ8J2a9mPI/08H6P4dZFkBgH5268hkMQNGRXP5DeiRAZF3cRgN4B0DAIVSp2YMcQHCZ02Uxsf4/GD4ipkTyGkDJsIo3Mo8AQE0tW+uLxAZAsOQqFr+p5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XHfzVIecBkDecYqO5BIRQOasTzkmi+M/8IXJVMEoJEDq501FKgwPQNV46SYxCCdAXyS05VxKA0ATZtr+ldUZQBAGnnsPlwFAcuFASBZwGkCjdVQ1QVQAQHRBfcuc7gVApHGo34Wt3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VyHlJ9X+AEDI7236s58PQPgZFw6E5OQ/dsO2RZlNH0BL5e0Ip8UOQKCJsOHptSZAk2+2uTE9A0AGR8mrc2wZQB/0bFZ9rgFAtRX7y+6pGkBLWYY41oUAQAvvchHfyQVAyFuufmyS3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GqN1VDUBDUDrHAOy17sfQPg2/dmPFBJAmnyzzY3pBkBQjZduEgMOQAXFjzF3LSVAERlW8UamAEAlr84xIBsYQJmesMQDSvk/ZqAy/n2GGEC8rl+wGzb/P2rZWl8kdANA56kOuRlu5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i/1l9+ThBUDiOzHrxRAeQLHbZ5WZUuc/YcPTK2VZDkCoqWVrfVENQP5D+u3rYCZA2XxcGyoGBEBvZB75gyEcQGLzcW2oGPs/JNHLKJb7F0CO6QlLPOAAQOpb5nRZDAdAI7w9CAF54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ox6i0R3EBEBEaW/whVkiQHb9gt2wrQdAAKlNnNzvEEAPKJtyhXcOQFuxv+yefCRABARz9Pj9AkAVjErqBHQbQJ2AJsKGZwFA1xLyQc/mG0CA8Qwa+qf8P6Fns+pz9QRA+kUJ+gu94D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZMxdS8gHAECpMLYQ5CAeQGlv8IXJFARAzojS3uALDUA7x4Ds9W4NQMnlP6TfXiRAI/jfSnZsBEAjSnuDL8waQODb9Gc/0gFAs0EmGTmrG0BDHOviNpr9P7Uy4Zf6OQNARL+2fvrP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"izcyj/zBB0DmkT8YeK4ZQJdV2AxwQeE/CI82jlhrE0Dn49pQMY4KQNBE2PD0aiVAKej2ksaoBEBNofMau0QdQEX11sBWif8/Rl9BmrHIHUAlXTP5ZhsAQJVliGNdXAZAUU1J1uFo4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"trxyvW2m0D+6oL5lTlcfQOuLhLacyyJAdEaU9gafAUDwFkhQ/NgQQGuad5yioyZAWaMeotFdAUC78lmeB9cVQATnjCjtjfY/mnecoiMZFkBP6WD9n8P/P1IKur2kMQVA5nlwd9Zu5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G7tE9dYAC0C536Eo0GcCQO4IpwUvevc/V1uxv+xeI0BBfcucLgsMQL8OnDOiNCVAHsTOFDovAUDcupunOkQaQHTv4ZLjzvA/cRsN4C0wGED/5zBfXoABQLjpz36kiANAk5BI2/gT4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9wFIbeLkCEDq501FKswNQAB0mC8vwPM/j9/b9Gf/DkAplltaDYkKQPCnxks3SSVA3BFOC160A0DUQzS6g5gYQJ+T3je+NgNApriq7LviG0CYaftXVhr+P4CaWrbWFwVAJCu/DMYI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JEVkWMWbA0AP0egOYqciQHMR34lZr/M/izcyj/zBE0A7jbRU3g4NQNnO91PjpSRAREyJJHpZBEBfJLTlXGocQITwaOOItfI/bCbfbHPDGEBiodY07zj+Px/0bFZ9rgNA+PwwQni04D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PiKmRBL9BkAFqKlla10eQHcQO1PoPPc/y/j3GRduEUALYwtBDkoKQBKlvcEXxiRAXwfOGVHa/D817zhFR3IbQOLkfoeiQPY/RKhSswd6F0ASwqONI1YAQMmOjUC8bgJASdbh6Cpd4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"626e6pAb/z8cJa/OMbAgQOBpMuNtJe8/VKnZA60AB0CygAncutsLQPKwUGuaFyVAFvvL7slDBkCTADW1bO0XQA5KmGn71/w/5pE/GHiuGUA34PPDCOEAQFGgT+RJ0gRAgT/8/Pfg2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"znADPj8MDUATuHU3T9UYQOviNhrAWwpAeLRxxFr8CUB5WKg1zTsLQPT91HjpJiRAahMn9zuUBEBkQPZ694caQFitTPil/vo/N6YnLPGAGUA3N6YnLPH+P91e0hitIwNApZ9wdmuZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y74rgv+tBUB87ZklAaoeQFQ6WP/nMPA/rJDyk2of/D+BPpEnSZcLQGx4eqUsYyVA1zTvOEWHAkCBeF2/YJcYQK/OMSB7Pfg/hA1Pr5SlF0CjI7n8h7QBQCbfbHNjugRAn3WNlgM94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7FG4HoXr8D8AkX77OnAgQIo8Sbpm8vo/PDHrxVDOBECV8e8zLhwLQNEi2/l+KiZAcTjzqzmABEDp1JXP8lwaQOlDF9S3TPs/vTrHgOyVF0CCHJQw0/b/P/3BwHPv4QNA+KV+3lQk4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MlpHVRNE8T+5GW7A5xcjQI1iuaXVkPg/R+aRPxi4E0B+Oh4zUFkPQNQrZRni+CVAfm/Tn/3IBECDTDJyFhYZQJCDEmba/v8/ZqAy/n0mF0CNnIU97XAAQOV+h6JAHwRA+1dWmpQC4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QZqxaDq7B0BOucK7XGQVQOpb5nRZTPs/6N7DJcfdB0CbOLnfoegLQA4tsp3vxyRALhwIyQImAEBnuAGfH8YYQKEt51JcVdQ/eTvCacHLE0DCL/XzpqIDQFLVBFH3gQdAFqdaC7NQ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dR+A1CaOAEC0k8FR8socQOqymNh8XPM/0h3EzhT6EUDEX5M16uEJQBpR2ht8QSVAliGOdXHbA0BOf/YjRQQZQIOj5NU5BvE/5X6HokDfEkDUK2UZ4hgDQE9Y4gFl0wZAdXgI46fx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EhQ/xtw1AkAN/RNcrHggQLByaJHt/PE/mbuWkA86EUBxICQLmIAJQCnLEMe6eCRAL90kBoFVBEBi1ouhnEgZQPWc9L7xtQZA+Q/pt69DH0CXi/hOzHr+P/SJPEm6JghAxa7t7ZZk4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KCfaVUi5AEASiNf1C3YgQEG3lzRGa/E/ba0vEtoSFEDRItv5fuoIQLMMcayLWyRATP28qUgFBEAgRgiPNu4YQIl7LH3oAgdA0QX1LXO6HkBIp658lmf+P4L/rWTHRghA5sx2hT5Y4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KjqSy39IDkBFgT6RJ3kjQOLplbIMcec/BTQRNjydHkB+dOrKZ1kQQEp7gy9MRiRA98d71cqEBkDo2az6XM0ZQDVj0XR28gVA2jhiLT41IEA1mIbhI+L/P/8JLlbUIAZAI7pnXaPl3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/MbXnlkSDEAYldQJaJIgQGmpvB3htPA/b2Qe+YMBHUAyrOKNzOMOQLbz/dR4ySRACcTr+gU7BUBi+IiYEskaQOwX7IZtSwZAeqUsQxxLIECYLy/APrr+P+ZciqvK/gVAS1ewjXiy4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vHSTGAQWCkB0tRX7y44aQA5KmGn71/8/uycPC7U2OUB9s82N6UkMQKmkTkATISVAwD46deXzA0B00vvG154bQDfDDfj8cAFAjL6CNGPRG0As8YCyKRcAQExPWOIB5QZAV0J3SZyV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RDS6g9i5EEBau+1Cc/0VQE5/9iNFZPg/HtydtdtuF0DIJCNnYQ8NQCBj7lpCXiVALc+Du7M2CkDon+BiRW0bQHRGlPYG3/Y/N+DzwwhBGEBKXp1jQPYAQLByaJHtvAVA7WRwlLw65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QMHFihqMB0DAIVSp2eMdQE1KQbeXNPI/9pfdk4eVIEAIjzaOWMsIQJayDHGsyyRAOX8TChGwBEDQs1n1uQogQK1RD9HoDgBA/Yf029dhGEAyPWGJBxQBQFcE/1vJTglAEqPnFrqS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DLCPTl05CEASwqONI7YaQD2bVZ+rLfc/30+Nl24SJEAdlDDT9q8IQPOOU3QktyRAkNrEyf3OBUDP2m0XmssfQHQHsTOFzv4/XRYTm48rGEB3LSEf9CwAQAWjkjoBDQpARu9UwD3P4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nbryWZ4HDEA2WaMeojEVQCrKpfELr+w/C0YldQI6JECuKvuuCD4HQELPZtXnSiVAlPYGX5hMBkCaCBueXqkfQOMZNPRP8Po/asGLvoJ0GEBpHVVNEHX+P7JjIxCvKwpARrQdU3fl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AFKbOLlf8D/TE5Z4QLkRQAK37uapjvU/kxgEVg7tJkAVjErqBPQIQGU2yCQjdyJAQN6rViY8BkADJnDrbn4dQKM7iJ0p9PM/JCh+jLnLF0BgArfu5qkAQE3WqIdoNAhAZAeVuI7x5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mus00lJ5+j+nIhXGFqIbQN3qOel9Y/M/FD/G3LXEGEDwv5Xs2MgPQKrx0k1ikCVAtvgUAOMZ/T9JLv8h/VYZQL37471qpQFAZOlDF9S3HUA/NV66SYz9P4I5evzeJgRAllzF4jeF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OdGuQsrPBUC5pdWQuIcKQFafq63Ynw1AAoI5evxeGUDgZ1w4EBIKQDtwzojSPiVALA5nfjVHBECoOuRmuAEXQPMC7KNTV/4/x/SEJR6QF0AtCVBTyxYAQK0XQznRrgNA4X1VLlT+2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oN0hxQCJ5T8fuqC+ZY4RQBx8YTJVsP8/kElGzsI+FUC28/3UeKkPQDXvOEVHciVAdv2C3bAtAEBYc4Bgjh4aQBtHrMWnAP4/hjjWxW30G0A+BcB4Bg39P57qkJvhRgVA4WBvYkjO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NxrAWyBBE0D2I0VkWMUcQM4ZUdobPCRARkJbzqV4C0DDu1zEdyIJQGgibHh6ZSRAR+aRPxg4A0BXIeUn1f4VQHmvWpnwiwBAJCh+jLnLGED9pNqn4zECQEfmkT8YeARA76tyofIv4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/TBCeLSxFEAXZTbIJAMYQN5UpMLYIhZA7Eyh8xq7AEAG9S1zumwEQD2bVZ+rrSRAsOYAwRw9/z/Bbti2KBMWQJ1LcVXZd/w/KQXdXtJ4GECYNEbrqCoCQMi1oWKc/wRApDZxcr/D4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qj7o2aw6DUBMcVXZdwUgQEax3NJqyApA6znpfeOrAkBi1ouhnCgPQJHtfD81HiZAml/NAYI5/z9yM9yAz88WQI/C9Shcj/g/O/w1WaMeFEA3GsBbIEH/P0i/fR045wJATg00n3O33z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MQisHFpkAED3WPrQBZUUQBGq1OyBlghARDS6g9gZCkAU0ETY8PQIQLWmeccpGiRA9YQlHlD2BUDUghd9BckbQDBHj9/bNAhAkzXqIRq9HUAUs14M5QQFQD7t8NdkzQhAjNzT1R0L6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/mDgufdwAUBO0ZFc/mMcQGU2yCQjpwFAKh2s/3MYDECdRloqb0cJQEjhehSuhyRA7ZklAWoqBEBXQ+IeS/8cQPs6cM6I0gdAk1fnGJA9HkAQdR+A1OYEQOJYF7fRwAlA3NrC81Kx6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n6ut2F92+T+eXinLECcYQIF4Xb9gdwFAIVnABG7dBECBzw8jhEcFQGHD0ytlWSVA6rKY2HxcBUCfPCzUmiYbQFuxv+ye/AVAr5RliGPdHECcbW5MT1gEQP94r1qZMAhAnSrfMxIh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wmnBi76CBkAdrP9zmG8KQM0iFFtB0+Y/zF1LyAe9K0DxgLIpV3gNQIY97fDXhCNAuAa2SrA4AEBEF9S3zIkXQHgLJCh+TAJA+BkXDoTEH0BBmrFoOrv/P1NcVfZdEQdAhSUeUDZl4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dNL7xteeAUAFqKlla70BQABvgQTFD+E/vqQxWkeVHkAabsDnh1ELQAr0iTxJyiNAEhQ/xtw1/D8IVWr2QGsYQD4ipkQS/QFAhNOCF31FHkC1bK0vEhoAQGb35GGhlgZAGQPrOH4o4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g4b+CS5WDUDIBtLFppXAv/kx5q4l5AdA5ldzgGCuHUDVBFH3AQgGQD0s1JrmPSRAApoIG57eBkAJ/reSHdsWQM/abRea6wNA+aBns+rTGkCJKZFEL6MAQGGOHr+3aQhAFOrpI/CH5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AU2EDU8vBkB53a7ZwtplP1TiOsYVF+k/8WPMXUtIL0CkjSPW4pMNQJpfzQGC+SNAHcnlP6RfAkCgw3x5ATYcQCo6kst/yARAW5nwS/18HUBseHqlLEMBQPW+8bVnlgVAluttMxXi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"12mkpfL2CUD9+EuL+iTXv/IMGvonOPY/0ETY8PR6MEC4zOmymNgGQN21hHzQEyZAGOyGbYvyBECJmBJJ9HIbQKuVCb/UjwVAv0hoy7l0HUA1e6AVGLIAQDkoYabtnwRAnN7F+3F75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zr0Yyom2B0BRpWYPtAL+v19BmrFoOuI/bsDnhxECIEAplltaDckMQKQZi6azsyNAQ+IeSx/6AUCfzarP1dYXQEQX1LfM6fo/6udNRSqsGEAzbf/KSpP8PxdIUPwYswNAks7AyMua2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s82N6QnLBUBORSqMLQTxP53X2CWqN+4/4iNiSiQRFEDKbJBJRs4GQMSxLm6joSRAC170FaSZBEB40VeQZgwaQBDM0eP3tvQ/A5Xx7zMOG0CbOLnfoSgEQIwVNZiGoQdAzsXf9gQJ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SG3i5H4HCECvsUtUb80iQIYDIVnABPI/IAw89x4OIECFsYUgB+UMQJeQD3o2yyRAgA7z5QXYAkCO6QlLPOAaQFKbOLnf4QFA3Xu45LiTF0D4a7JGPYQDQAywj05dOQdAH/KWqx8b5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mZ6wxAOKAEDTpBR0e+keQJVIopdRLPY/SKeufJYnA0AEVg4tsh0OQH2utmJ/uSZA5zV2ieptAUAxzt+EQoQXQGfyzTY3Jvs/TUpBt5dUHUA3bFuU2SAAQC+GcqJdxQRAK4arAyBu4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JV0z+WZbCkBszywJUNMgQChGlsyxPOY/e/fHe9XK+j/Ed2LWi+EPQELPZtXnKiVATRB1H4AUAkD0+L1Nf7YYQNYcIJijBwFAQ/8EFytqHECERxtHrMX/P2HD0ytlmQhA/zwNGCR93T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HThnRGkvCEChvmVOl4UfQNS3zOmymPs/YhBYObTIAECcilQYWwgHQHWTGARWTiRA1m670FwnCkB5zEBl/NsdQGL4iJgSiQRA9aEL6lvGG0BGmQ0yyYgFQCyazk4GRwZAx0s3iUFg6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WmQ7308NBEDZfFwbKqYgQCdok8Mnndg/eekmMQjsAED6RJ4kXbMIQCtNSkG3NyNAGCE82jhiCUB8YTJVMEocQORO6WD9n/8/44i1+BTgGUBrK/aX3RMGQLjkuFM6GAdAsp5afXVV4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8u8zLhwI/D82donqreEeQGSSkbOwJ/A/C9KMRdNZ9D+MLQQ5KGEFQBQF+kSeZCNA8KKvIM1Y+j/pYP2fwzwZQJdzKa4quwBAGcqJdhWyGkANw0fElMj/P+LplbIMMQdAaRmp91RO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n3b4a7JGEECGj4gpkXQgQJMANbVsLfk/BOeMKO39IEBb64uEttwNQEVHcvkP6SRArW71nPQ+BkC1bK0vEvoXQJSHhVrTfAdAK9mxEYg3HUBGmQ0yyQgDQPZdEfxvJQVAofgx5q4l5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bOwS1VsDBUBSCrq9pEEiQCejyjDuhuE/EHUfgNQGHEDJHww8954HQBzr4jYaQCRAEoPAyqGFBUBYyjLEsW4bQE7RkVz+QwBA7KNTVz4LGEDyQc9m1ecCQKJ/gosV9QJAstR6v9EO4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ATCeQUN/BkAfgNQmTk4cQChEwCFUqfE/qpog6j6AEkAc8PlhhPAIQKLRHcTOdCNAzvxqDhDMAkC/Q1GgT+QWQHXN5JttbgRACacFL/qKHUA1Bwjm6HEBQHY3T3XITQdAHzF6bqGr5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7lpCPuiZA0AgRgiPNn4gQIV4JF6ezuQ/4Ln3cMlx/T/RyyiWWxoKQEi/fR04ByRAU+i8xi5R+z9Bt5c0RisXQN2YnrDEAwVAJLTlXIqLHEAwKqkT0IQDQApoImx4+ghAexLYnINn5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x0s3iUGgA0C6SQwCK0ckQGSQuwhTlM8/1T4djxloDEDarPpcbQUCQJT2Bl+Y/CJA5BQdyeV/AkBG66hqgkgXQPH0SlmGuARAB0KygAncHkCk5NU5BqQDQPOrOUAwhwhA5ssLsI/O5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B/AWSFA8AkBaDYl7LP0QQIEiFjHsMNc/BFYOLbKdFEDKMsSxLq4HQIHPDyOE5yJAD39N1qgHBUAX1LfM6bIbQAtBDkqYaQNAFMstrYakHUDufD81XroEQMSUSKKX0QdAmmA41zDD5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ICQLmMDtA0BHcvkP6XchQKfK94xE6Oc/KVyPwvUo/T/r/xzmy4sLQKs+V1uxfyVAVMa/z7iwBEBGQlvOpZgXQBh9BWnGYgRArtNIS+UNGkCil1Est3QCQCy3tBoS9w1AeR7cnbVb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qbwd4bQgB0DYDdsWZdYbQKfJjLeV3uM/bhea6zRS+z9FuwopPykKQIV80LNZdSRAKSLDKt4IBUBbzqW4qgwbQF2/YDds2/0/Oul942tPHEAyWkdVE8QCQIC3QILixwZAucfShy4o5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IEHxY8zd8D+EKjV7oCUgQCtqMA3DNyJAZaVJKej2BUBN845TdOQFQOlDF9S3fCNAngd3Z+22B0B/vFetTHgaQAgDz72HS/Q/OsyXF2CfE0BiodY073gDQCdO7ncoigdAVTAqqRNQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TMPwETEl/D8UBfpEniQcQELPZtXn6vU/mFEst7Sa/T8Facai6WwOQJ+rrdhfliRACty6m6d6AUBFEr2MYnkaQCGvB5PiY+4/a0jcY+nDF0CInSl0XmMBQAJlU67wbgZAu+6tSEzQ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TTJyFva0A0DmXIqryn4bQFpkO99PjfY/F7fRAN4CA0Av3SQGgZUKQMx/SL99fSRA1CtlGeKYB0DkTulg/X8aQITTghd9hfc/CmgibHg6F0CL/WX35CEBQIf+CS5WFAVAh2u1h71Q5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pics8YAyCECxpx3+mswfQCV1ApoIG/Y/OPOrOUAwAUDEzhQ6r3EJQKVOQBNhwyRAjIS2nEtxB0BEhlW8kVkbQLmq7LsiePQ/HCWvzjHgFUB+b9Of/QgBQG6LMhtkkgVA/TGtTWN74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l6jeGtgqA0CCxeHMr+YTQCo4vCAitek/DqFKzR7oE0AXghyUMNMKQMdLN4lBICVAHooCfSJP/j+1/SsrTYoWQHZPHhZqTQVASgfr/xwGHEDkFB3J5X8DQEesxacAWAlAxJRIopdR5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uB6F61G4AkAoRMAhVMkdQAPso1NXvvQ/2ht8YTJVCEAukKD4MaYNQDtwzojSPiVAPUSjO4jdBEBW1GAaho8YQLU3+MJkKvc/hc5r7BK1GUDxaOOItXgBQC+jWG5pNQlARUYHJGHf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lYJuL2nMB0CbIOo+AEkeQBLaci7F1fM/wqONI9ZiBUDFjzF3LaEJQFtCPujZjCRAbt3NUx1y/T/aG3xhMhUaQNbFbTSAt/0/4gZ8fhhhFkCxogbTMDwEQI/k8h/SrwdAXd+Hg4Qo5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hQg4hCr1CECMFTWYhqEeQHlYqDXNOwNAlX1XBP9bCECaX80BgjkNQKabxCCwkiZAuTZUjPN3B0Bq2VpfJFQZQE0VjErqBPY/ujE9YYmnGEC0ccRafIr+P/C/lezYyARA3Esao3XU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QkP/BBerCEAnTu53KEohQMxG5/wUx+8/nu+nxkv3DUAofoy5a0kOQFpkO99PjSZAQIf58gLsBkDfpj/7kUIaQM0jfzDw3P0/lX1XBP+7FkBTBaOSOgH/P4oCfSJPEgRAhZfg1AcS4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VryReeQP/z9KQbeXNHYgQCcXY2AdR+8/lMFR8ur8G0AHJcy0/WsOQPLSTWIQWCZARs7Cnna4BEBN27+y0qQZQMXJ/Q5Fgf0/qrcGtkqwGUD+1HjpJjH/Pw5Pr5RlCAVAEce6uI0G4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3J212y50BkAFbt3NUy0gQLxcxHdilg9A7Sqk/KS6EkC45LhTOrgQQCEf9GxWHSdA6+I2GsDbBEBxAz4/jDAdQBMn9zsUBfs/RWRYxRu5G0A89x4uOe77PwrcupunugRABW1y+KQT4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+HDJcae0D0BzhXe5iM8VQPn3GRcOBPE//Bhz1xJyBUBqGD4ipsQOQHe+nxovPShAv/G1Z5bEBkDNkgA1tWwZQP59xoUD4QBAgjl6/N6GHUAvi4nNx7X9P5ccd0oHqwdA6zh+qDRi4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OdbFbTTAD0CUap+Ox0wjQBB6Nqs+1xVAWi+GcqJ9FkBRZoNMMnIPQEGC4seYOyZAUMJM27/yAUAabsDnh5EbQKp9Oh4zUABA6BN5knTtGkAUlnhA2RT7P1a8kXnkDwVAAHSYLy/A2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A5Xx7zOuEECBBMWPMRchQI82jliLT/Q/uY0G8BaICED35GGh1nQOQG3n+6nxciZA8x/Sb19HBUAEIVnABO4bQGFPO/w12QFApU5AE2HDGUAgmKPH723+P3Qkl/+Q/gNALliqC3iZ3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aVIKur0k9j/L1voioQ0UQE/MejGUkwBA1SE3ww14B0AFo5I6Aa0QQPvL7snDIiRAUPwYc9eSBkDmllZD4p4aQEmil1EsN/U/5Pc2/dlvGEArMGR1q2f/P4P6ljld1gRA/KcbKPBO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gCvZsREoF0BpjNZR1aQUQFFrmnecYgpAd76fGi9dKUB4KAr0ifwKQPaX3ZOHBShA9+l4zEClB0Btc2N6whIfQI51cRsNYP4/3C4012nEF0CmD11Q37IBQFrY0w5/jQhAibZj6q7s5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CwxZ3ep5B0D9MEJ4tDEUQG6GG/D5Yf8/aFw4EJIFA0BxWvCir6AMQOrnTUUqPCNAAG+BBMWPCED7ljldFjMaQBxfe2ZJAPk/Tb7Z5sYUGUAE54wo7c0CQFH3AUhtIgRAs0RnmUUo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BJDaxMk9BkBZaVIKuv0TQENxx5v8FuI/V89J7xvfBkC/SGjLudQDQDnWxW00oCVAEsKjjSPWBkANVMa/z5gaQOChKNAncv0/YDyDhv5pGUBlx0YgXhcAQAk4hCo1uwVAjnVxGw3g4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mZ6wxAPK9z/7Bbth24IdQKWg20saYwBAvW987ZllE0Aj2/l+arwLQOscA7LXSyNANpNvtrmxBEDsL7snD0sbQP28qUiFsfE/dc3km22OFUCp+wCkNrEBQJCDEmbafgVA6pRHN8Ii4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aTo7GRwlAUALKT+p9lkiQC+jWG5pNfY/W3wKgPHMAkC4dTdPdQgNQMrDQq1p3iRAqpog6j4AA0D9wcBz7wEaQEs8oGzKVQNAjWK5pdWwHUAlBoGVQ0sAQLgjnBa8aANAGQKAY88e4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3PRnP1JECUDsTKHzGvseQPCK4H8r2fo/m/7sR4rIBkBjf9k9edgOQP+ye/KwECZAJSNnYU87B0BF2PD0SnkbQOIGfH4Y4QRAhXzQs1mVG0BmiGNd3AYBQCodrP9zWAZAiGaeXFMg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gosVNZjGA0COI9biU2AgQE/pYP2fQ+E/xJlfzQGC/T/rVs9J79sKQH3Qs1n1+SRA2EenrnxWAUD8HYoCfcIZQJ57D5cc9/4/arx0kxjEHUCfdvhrssb/P3ReY5eoHglAMgBUceMW6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T+lg/Z/DBUCeKXReY/cbQOoENBE2PPk/aTUk7rF0/j/11sBWCZYKQBdIUPwYQyNAeJeL+E5MBkDYDdsWZZYXQMAJhQg4RANAqdkDrcCQG0A1e6AVGHIAQIAr2bERCAVAJ6PKMO6G4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NKK0N/jCDUDsF+yGbYsZQLdFmQ0yCQBAGCE82jjiCkCyutVz0vsLQIqO5PIfEiRAkSdJ10x+CUDRdHYyOEocQJkSSfQyCv8/FXR7SWM0F0Dm6PF7mz4DQKA3Fakw9gdApN++Dpyz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T1jiAWXT/D9PIy2Vt0MeQIfhI2JKpPE/SBtHrMWnCUAeFmpN844QQPrt68A54yZAsb/snjzsAUB5AfbRqcsWQF+YTBWMyv4/zGJi83EtGEDt8NdkjXoCQIV3uYjvRAlAqIsUysJX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZY16iEb3DkBJhbGFIIcXQA74/DBC+A5AozuInSl0DUCXrfVFQhsNQC0hH/Rs1iRAdZMYBFYO/D9c5nRZTKwYQFoO9FDbhuk/yQImcOuOF0DLoUW28/0EQDVG66hqwghA7BhXXByV6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RiV1ApqIBUDXUdUEUTciQA+5GW7A5/k/xVVl3xVBCECdEaW9wRcNQPhT46WbxCZAUfcBSG2iBUBXsmMjEA8gQFjKMsSxrvk/HtydtdtOGkCEEmba/pX/PwdfmEwVzARA0o2wqIjT4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"46qy74rgBUAipkQSvcwZQDPeVnptNuw/MqzijcyDHkB00vvG1z4QQPs6cM6IciVADeAtkKA4AkAge737410UQFcm/FI/b/w/y0qTUtBNF0CH/gkuVlT8P0xxVdl3BQJA7FG4HoVr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Uu3T8ZjBBkBWKxN+qR8fQM++8iA9Rds/wvo/h/nyEECLcf4mFCIKQNBE2PD0iiRA3+ALk6nCA0CJXkax3FIbQAK37uapjgdAUg/R6A5SIEBQjZduEsMCQPhT46WbRAZAqYk+H2XE5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OBCSBUzAEkCm0HmNXZIiQJW3I5wWPAhAuycPC7XmB0B1WUxsPs4RQPaX3ZOHhSZAL6NYbmk1BEAe4bTgRZ8bQIT0FDlEXO4/jIS2nEtxFUADPj+MEB4CQDAqqRPQRAVAzXUaaam85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KpFEL6MYBkAsvMtFfFcgQLpL4qyImtI/eHqlLEPcEECNRdPZySAIQMFz7+GSkyJANPRPcLEiA0DT3uALk2kXQF8pyxDHegNAMbYQ5KBEHUArTUpBtxf7P8l2vp8arwVABD3UtmEU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zczMzMzMAkAXt9EA3kIUQEd3EDtTaPA/A7LXuz9eCUAX8Z2Y9WIKQEATYcPTiyVAAJF++zpwBUDI0ocuqO8bQJS8OseA7AZAlLw6x4CMHkCYwK27eSoDQCe9b3ztWQRA41MAjGfQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jKGcaFehCEBRoE/kSZIPQDUNiuYBrOk/D+7O2m33HEDN5JttbswIQIlBYOXQgiRAv5oDBHP0AEBfKcsQx1oYQEuwOJz5VQZANdJSeTsCHkD7kSIyrKIAQFzmdFlMbANA6UfDKXNz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qg65GW7A/j+9OseA7DUaQOI/3UCBd9g/ychZ2NNOFkDde7jkuJMEQC7/If32NSJAw/ARMSWSAkC21hcJbVkYQCBj7lpCPv8/NzemJywxGEDKT6p9Ot4AQGlSCrq9JAhAM4ekFkom4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d6G5TiNtBUDaA63AkNUYQIDTu3g/buQ/OGdEaW8wBUBXlX1XBP8GQD+p9ul4nCFA9aEL6ltmAkAZ529CIUIZQOtWz0nvG/k/7l9ZaVIqGUBA9nr3xzsAQCpXeJeLeAlAOE4K8x7n5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vhOzXgzlEUAT8kHPZsUgQESoUrMH2v8/9S1zuiymCUAL73IR3ykRQJyiI7n8ByZAQ8pPqn16A0DOx7WhYvwaQOwvuycPSwRAGeJYF7exG0AHQrKACVwBQG2oGOdvwgJAEayql9/p4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eO49XHLcAEBWt3pOeu8iQP4rK01KQec/L1G9NbDVE0CGVbyReSQKQCDSb18HDiVAfhghPNp4BEC1/SsrTWoaQC7FVWXfVQBA7IZtizJ7GkAT1VsDW6X9P667eapDrgVAuKzCZoCL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6PaSxmidAECz74rgf6seQPryAuyjEwFACacFL/qK9D8vi4nNx7UHQFRvDWyV4CJAa32R0Jbz+D+wcmiR7RwUQDjb3Jie8AZACHJQwkzbH0CcxCCwcmgCQNUhN8MNuAdAJv+Tv3tH5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vjCZKhhVA0D3r6w0KUUcQGFwzR39L9c/Fw6EZAGTCkB06spneV4DQIwtBDkocSJAfCdmvRgKAUBpdAexM+UVQP/sR4rIcAdABcB4Bg39H0CXqN4a2KoBQAqFCDiEqglAaeTziqce6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HLYtymyQCUD/lZUmpYAhQGSUZ14OO+c/0vvG155Z+z/LoUW28/0OQIhjXdxGAyZAfPKwUGuaC0D8GHPXEpIfQNpyLsVVZQFAz4O7s3b7GUBMjjulgzUBQK5kx0Yg3gRArmcIxyx74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FCLgEKpUDEBCPujZrNohQNP2r6w06QNApkQSvYxiC0CunpPeNz4OQNCzWfW5GiZAQE0tW+uLCkAvi4nNxzUgQDy9UpYhTgFAEsKjjSOWF0CbyTfb3BgAQFG9NbBVAgZABKxVuyak5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9Wc/UkSGCUDKplzhXc4fQKqCUUmdQAJALUMc6+K2B0AJUFPL1roOQLN78rBQ6yVALzTXaaSlC0DvIHam0BkgQJzc71AUaAFAZaVJKei2GEDWbrvQXOcAQMgkI2dhDwZAP+PCgZAs5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VYfcDDfgCUAv3SQGgRUmQHE5XoHoSek/ODKP/MGgF0CILqhvmZMOQG/whclUgSZAzojS3uALD0DkvWplwo8gQETAIVSpWfw/d/NUh9ysGkCdaFch5ecBQGaIY13cxghAzJvDtdrD5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XVDfMqdLBkC0WfW52ioiQLPSpBR0OwxAcY+lD13QBEAawFsgQfEMQF+YTBWMSiRAXeFdLuJ7B0AaFw6EZGEdQOC593DJ8QNAY5eo3hqYGUA3N6YnLPEDQPiqlQm/lAZAzH7d6c4T5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HNMTlniABEDGv8+4cJAiQMJM27+y0v0/xHx5AfZR/j+KPEm6ZjIOQPkx5q4lJCVA5nRZTGz+BUC8rl+wG7YbQOi8xi5RPQNA7Q2+MJkqGkA+BcB4Bo0EQKVJKej20gZAc9anHJNF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l8rbEU6LBkC/ZU6XxeQYQBcOhGQBE/A/b/Wc9L4xBkCHFtnO91MEQMiYu5aQTyNAe0563/jaBkAPYmcKnTccQMyXF2AfHfc/eVioNc1bFkBBDkqYaXv+Px1VTRB13wVAUS0iiskb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mC8vwD76CEDVWwNbJXgYQAzNdRppaQJA1bK1vkhoHEDrxVBOtOsNQOqVsgxxzCVABK3AkNUtAEDohxHCo80XQHmvWpnwy/M/AKlNnNzvGEDvG197ZgkBQJM16iEaXQRAxD4BFCNL3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qiuf5Xlw9j/HSzeJQQAkQAzqW+Z0WfI/DeAtkKD4GkByM9yAz88JQFHaG3xhciRAzR5oBYZsAkC3tBoS91gaQONw5ldzwAVA/fZ14JxRHEDeVKTC2EIAQJf/kH77egNAaCJseHql5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vodLjjslC0AhPNo4Yj0gQLUV+8vuSfI/1cqEX+pnE0BuF5rrNFIIQBR5knTNZCNAKcsQx7q4BECV8e8zLlwbQKhSswdaQQJAwkzbv7ISHUBxyXGndLD9PyXpmsk3mwVA0xHAzeJF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VG8NbJXg/T+NeohGd5AZQE3bv7LSpOI/rwj+t5LdA0APtAJDVjcGQDqvsUtUryJAbxKDwMphBEBnCp3X2GUZQPdY+tAF9QJAnl4pyxAHGUBAMEeP39v7P6Zh+IiYEgVAA0TBjClY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H2gFhqwuBEClSSno9rIeQFLt0/GYAQZAGOyGbYuyBUASMSWS6KUQQBx8YTJVcCZA1GUxsfm4AUDt8NdkjTocQHgoCvSJPPo/wJXs2AiEGkCgVPt0PKYBQHRBfcucrgJAwJMWLqsw4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wjQMHxFT9j9gkzXqITocQMDPuHAgpP0/IF7XL9gNA0BhGoaPiCkRQGQ730+NFyRA6spneR7cAUDMQGX8+0wZQFslWBzOfPE/Z5sb0xNWGUC7D0BqE2cBQDP+fcaFAwFAA0GADB274j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xM4UOq9xBUAx0/avrJQdQOfj2lAxTv4/qd4a2CrB/T83jliLTwEIQGfV52orViRAxFp8CoDxBEAKur2kMToaQA+XHHdKBwNAYcPTK2X5GUC4zOmymFj/P034pX7e1AdArROX4xUI4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f6SIDKs4BkCX4qqy76ofQHh6pSxDnAFAgQncupvnAEA5tMh2vl8HQDojSnuDDyRAa5+OxwwUBEBkr3d/vDcaQDUk7rH0oQFA+PwwQnh0G0CFX+rnTQUAQL5qZcIvNQdA/7J78rBQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VoLF4cyvDECDwMqhRaYgQAYq499nnAZAtyizQSZZEkD9pNqn4zENQLbz/dR4qSVAWTSdnQzOAUBzaJHtfF8XQLUy4Zf6efs/1CtlGeJ4GUCDF30FaUYAQCeDo+TVuQNAxTcUPluH5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F7zoK0iz8T8gtYmT+x0XQMO7XMR34vM/yO9t+rPfBUDBc+/hkqMOQCL99nXgXCVAgpAsYAJ3BECH3Aw34DMdQAx2w7ZFGfI/Zyyazk7GFUC9HeG04IUBQOOItfgUwAlAU+knnN3a5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cks8oGwKC0AUs14M5aQbQGmM1lHVhAhAms5OBkepHkAuc7osJrYNQEvqBDQR1iVA/fZ14JyRBEAsK01KQdcXQKpgVFIn4AJAETY8vVJ2G0DzcW2oGOcEQPjfSnZshAhA5iSUvhDy6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HQOy17u/AkAR5KCEmRYVQFj/5zBf3vg/Yf2fw3z5BkBpOjsZHGUKQOauJeSD3iNAzqW4quw7CECHvyZr1CMdQKqaIOo+gAJANEsC1NSSG0AOFeP8TWgAQM7Cnnb4qwhAYhQEj2/v4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"shGI1/VLBEBnfjUHCEYXQKt4I/PIH/A/nbryWZ6HB0B3FVJ+Ui0KQJJc/kP6TSRAATW1bK0vCEB0QX3LnK4dQIFbd/NUBwNA4syv5gAhGkADfSJPkm4AQBZqTfOOEwlAhbAaS1gb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O6qaIOp+A0CoV8oyxDEjQNRDNLqD2P8/7MA5I0obFkCP5PIf0q8MQBKlvcEX5iRAba0vEtryBkCYNEbrqOocQI4G8BZIUPk/QpWaPdAqGkBnJ4Oj5JUBQDDw3Hu4ZAZA2LYos0Em5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nqs+V1ux/j+GIAclzDQhQFSrr64K1OE/42vPLAnQBEC9APvo1NUIQH3Qs1n1WSRAJ71vfO0ZAkDsF+yGbYsYQBaHM7+aQwFADRr6J7gYGUCkwthCkAP/P5Z4QNmUKwdAg1FJnYAm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CTiEKjX7CEAZraOqCUIYQJ2dDI6SV/0/AyZw626eA0BvRzgteFENQP5l9+RhwSRAEarU7IHWBECfWRKgplYbQILF4cyvZvw/7uvAOSOKGkCDTDJyFjYAQCYBamrZmgFAN8E3TZ+d4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oYSZtn9lBUD5MeauJZQjQKev52uWS+k/JXoZxXKrEECTOgFNhA0NQAn5oGezCiZAFOgTeZL0AkByUMJM238bQH15AfbRKQRAW9O84xT9GUBaR1UTRN3/P18pyxDHugdAD5wzorS34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oKaWrfUFBkCUvDrHgOwVQDvCacGLvuQ/oOBiRQ0mCUAwTKYKRmUHQNlfdk8eNiRAofMau0Q1BEDCacGLvkIZQPT4vU1/9gFAat5xio6EG0DM7snDQm0BQH/eVKTCWAJAmSuDaoMT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gy9MpgqGCkB7a2CrBMsZQMwmwLD8+d0/O99PjZfuCUDwhclUwSgNQMgHPZtVnyVAm6xRD9GoB0A82jhiLZ4aQK7wLhfx3QJAoDcVqTC2G0DQJ/Ik6VoCQHIW9rTDHwJAuk24V+at4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cjPcgM8PBUARje4gdkYYQA7cgTrlUeI/at5xio5k/z+7YduizAYKQODb9Gc/8iFA9UpZhjjWAUDzPLg7a9caQN/42jNLAvo/uJIdG4H4G0AZ/z7jwgH/P2Dl0CLbeQdAOLwgIjVt4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1v85zJeXAkBwfO2ZJeEeQF03pbxWQuY/ZohjXdxG8z9mSYCaWrYJQCUGgZVDqyJAkX77OnCOAEAp6PaSxigcQMVVZd8VgQNA48KBkCygGUDfpj/7kSL8P9uF5jqNtAVAdoh/2NKj4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q61p3nEK/z+VYHE486scQNqs+lxtxQ9AzLT9KytNBUCtUQ/R6I4CQHRGlPYGjyJAVKnZA63AA0AEOShhpq0cQDUMHxFT4gFAlialoNvLHEAmGTkLexoAQA7bFmU2CAZARs1Xycdu4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ehowSPq06T8/xty1hJwcQF3Ed2LWCw1AbVZ9rrbi+z8XDoRkARMDQEEOSphpCyNAyol2FVJ+BEAPnDOitPcYQAMJih9j7gFAZXCUvDpHHUBm2v6VlSYAQLlwICQLmANAeLgdGhaj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rrt5qkNu8L915bM8D44dQFoqb0c47QZAexSuR+H68j8vhnKiXYUBQG6LMhtkMiNAjpJX5xgQA0AdOGdEae8ZQONTAIxnUAZA+5Y5XRazHUB3oblOI20AQBdlNsgk4wRAxCYyc4FL5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j2/vGvSl1j/PZtXnatsiQMWPMXct4SdAKgDGM2hIFECU9gZfmMwMQJynOuRmSCNAyhr1EI3uAUB1PGagMj4ZQAN4CyQofvE/TIkkehmFFkBlcJS8OscCQBh9BWnGYgZAa9eEtMYg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7IZtizI7IEDX3TzVIbcYQItUGFsIkh1ADvj8MEL4/j9gArfu5qkKQKBsyhXe5SNAk1LQ7SWNAUA/UkSGVdwaQJ4Hd2fttgVAfLjkuFMaH0Cxpx3+miz9PwouVtRgGgRAAOMZNPRP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XW3F/rJ7+j8cCMkCJrAbQMPTK2UZghpAexSuR+F6E0AtCVBTyxYOQM6qz9VWjCVAmUf+YOA5AUA3bFuU2cAbQO0OKQZINOI/QdR9AFKbFED36XjMQCUAQM7Cnnb4awZA8piByvj35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7+GS405pBEBYyjLEsW4YQPjCZKpgVPY/IF7XL9iNEUD2KFyPwnUMQHrHKTqSSyVA26fjMQOVCkAOMsnIWTgbQKgY529Cof4/inYVUn4SFUAr+64I/jcBQGh5HtydNQVAkUJZ+Pra4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LSEf9Gw2FUAe4bTgRd8ZQGmpvB3h9ANAAfbRqSufDEApyxDHuvgKQKCJsOHp9SRANJ2dDI6SB0DTvOMUHekbQJ0ui4nNx/o/yAc9m1WfFUBeaK7TSEsCQL68APvoFAZAza0QVmMJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9Pi9TX+WFkAw2A3bFkUSQCWS6GUUCyFAeTvCacGLE0BdUN8yp8sLQOjZrPpcrSRAEsKjjSPWB0DONjemJwweQIKQLGACN/M/umsJ+aBHFkDu68A5I8r+P1rwoq8gjQRAQPz89+C14T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Sl6dY0B2DEDtDb4wmUokQNFcp5GWigZA4pLjTulgD0Dv4ZLjTukJQFuxv+yefCRAG0esxafABUA4Z0Rpb3AZQIeKcf4mFABA7bsi+N9qGUCWIY51cdsBQB1aZDvfzwZAPC6qRUQx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0zO9xFim3L/2l92Th0UXQHEbDeAt4CJAATCeQUN/EkC2EOSghFkJQESjO4idqSNAcqd0sP4PA0DvchHfiXkYQGKE8GjjCAJAYqHWNO/4GkD8qfHSTeIBQDoeM1AZ/wZAxCXHndJB5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Bhz1xKyDkAH0zB8RMwYQKMeotEdxPY/EqCmlq0VGUAjoS3nUtwLQMgHPZtV/yVAZapgVFIn+j990LNZ9fkWQHztmSUB6v4/Q61p3nEKG0CDNGPRdLYBQOEoeXWOAQZAJNBgU+dR5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uMzpspjYBUAlQE0tW6seQMWsF0M50Q5Apn7eVKRiH0BxrIvbaMARQN/gC5OpQiZAdCmuKvuuAkDtgVZgyIoaQG2QSUbOQgNAF0hQ/BjzGECnrnyW58EBQLaEfNCzmQZAV0EMdO2L5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cp3X2CUqCUAfLjnulM4dQAgDz72HywxAx/SEJR5wIUA3bFuU2YARQNcS8kHP5iZAVOOlm8RgA0A7AU2EDW8aQPCnxks3SQNAfbPNjenJFkDT3uALk+kCQCY2H9eGigdAI6Et51Lc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Z/DfHmhEEAJih9j7vocQKZh+IiYkvU/bVZ9rrZi/z8wDcNHxFQQQFuxv+yenCdA3rBtUWbDBkBlpUkp6BYaQEIhAg6hSvA/3LqbpzpkGEBeEfxvJfsCQLCPTl35bAlAHeOKi6Ny5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dO/hkuPO/j9FuwopP3kjQGg/UkSGFQRAX3tmSYAaBkB7FK5H4VoQQGlv8IXJ9CRA96+sNCnFBkAm/FI/b6obQNu/stKklP0/Q+c1donKGEDnGJC93j0CQMDPuHAgJAxA9PkoIy4A5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mN2Th4WaCEDkvWplwk8XQNUEUfcBSO8/QZ/Ik6QLF0B7a2CrBIsQQOXQItv5nidAxRuZR/5gAkCW7NgIxKsbQO+s3XahOf8/SgwCK4c2GEDcY+lDF5QDQMPYQpCDEgpAdlJflnbq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mpmZmZmZA0BlcJS8Osf+P3eE04IX/QFAI/jfSnYMHkARNjy9UpYKQFmGONbFLSRAUaVmD7TCAkB6GcVyS8scQMOBkCxggvU/DAIrhxZZG0DUK2UZ4tj+P9UhN8MNuAJAzZAqildZ3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fXkB9tEp+z9kkpGzsEccQEW7Cik/KfI/JvxSP28KHUDU8ZiByjgJQLaEfNCzeSRAqtTsgVagA0DrkJvhBhwXQHZsBOJ1fQRAnNzvUBQoGkDVITfDDXj6P7MMcayLmwJAWDofniXI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eSPzyB/MCkAE4nX9gh0bQBIxJZLoZfQ/c2N6whJPIEDNdRppqXwPQNlfdk8eFidACTiEKjX7/z/ZfFwbKuYaQIvDmV/NAfo/jh6/t+lPGkBCsoAJ3HoAQJyiI7n8RwRAn5JzYg9t4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZeQs7GknEUDtnjws1PomQLCsNCkFfRFAjV2iemtgC0APf03WqEcLQA1xrIvbiCRAZK93f7xXAkCunpPeNx4YQPRPcLGiBv8/Q8pPqn16GUAzbf/KSpP9P75qZcIvtQRAiUShZd0/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5+PaUDFODUADeAskKO4iQE4oRMAhVPQ/RKM7iJ0pDUCpnzcVqfANQCzUmuYdpyVAeSPzyB+MAkCsVib8Uj8WQKg1zTtOUfY/jgbwFkjwGED7XG3F/jL/P8L6P4f5sgNA7x01JsRc3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hQg4hCr1A0BpOjsZHDUhQGMLQQ5KmPc/e0563/gaCECq1OyBViAQQHo2qz5XOydA4dHGEWsxAkB00vvG174ZQJRNucK7XARAwyreyDwSGkAVkWEVb+T9P8PTK2UZYgVAherm4m973j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n8iTpGsm9T8XvOgrSJMdQHLEWnwKgP4/bZBJRs5iEUDNO07RkdwDQAYSFD/GbCNAVwT/W8mOBEBhTzv8NTkZQLbbLjTX6fs/DTfg88OIFEDeq1Ym/JICQESoUrMHmghACDvFqkEY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cHfWbruQAEBI3GPpQ5cZQLKACdy6mwpAf4eiQJ9ID0BeY5eo3loHQI/C9ShcryNANgLxun6BBUDgSnZsBAIcQFhzgGCOHvU/4V0u4jvxGECsxacAGI8CQAwCK4cWmQVAKEhsdw/Q5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8rBQa5r3/D/z5QXYRwcfQLeXNEbrqA5A2uGvyRp1DkB4KAr0ibwKQCPb+X5q3CRA+vIC7KNTCUB1djI4Sj4bQEuTUtDtpfo/e/fHe9WKGEBgsBu2LUoCQPNZngd3pwdAZ2X7kLfc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f03WqIfoAkAN4C2QoOgiQHOAYI4efwRAHY8ZqIx/BECJmBJJ9PIHQJM6AU2ELSRAU5YhjnWxAEA1DB8RU4IaQLivA+eMKPU/Ne84RUeSG0A51sVtNIAFQEX11sBWyQZAVoMwt3u55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/+cwX17AAkDK4Ch5dU4aQKg1zTtO0fw/nKIjufxHA0CAmlq21hcJQAGkNnFy/yNAL4Zyol0FBkAdWmQ7388YQHC2uTE94QBA9b7xtWeWGUC6vaQxWgcFQPIHA8+9hwdAycuaWOAr5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dLUV+8tuAUD9MEJ4tDEaQBCv6xfsxgFApOTVOQZk/z/pfeNrzywIQGoYPiKm9CNAhuY6jbRUBUARGVbxRuYYQJ2FPe3wFwFAkSxgArduGkBd4V0u4nsEQGU2yCQjZwdAPrSPFfw25j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zsKedvjrA0ACnx9GCA8VQCXMtP0rqwVA3lSkwtgiFEB5HtydtZsKQEYldQKa2CJA5NpQMc7fA0DIDFTGvy8ZQEzD8BExpQBAqG+Z02XxFkBDyk+qffoAQPCnxks3CQZAUitM32uI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S3ZsBOJ1CUAQO1PovKYbQLu4jQbwFuk/IQIOoUqtEUBGCI82jtgJQJFEL6NYviFAhPBo44j1A0AfEVMiif4ZQFw9J71v/Po/8zy4O2sXGUCBJsKGp5cCQI7pCUs84ARAmlshrMYS4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mEwVjEpqDkCASL99HbgjQIhJuJBHcO4/kdCWcymOGkC7RPXWwPYTQJT2Bl+Y7CZACeHRxhHrA0AhWcAEbh0aQK6BrRIsjvw/Sl6dY0D2GUDkSdI1k68BQG9HOC14UQVAJ07udyiK4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TOFBs+te4b8z+WabG9MaQCBB8WPMvSFAUfcBSG0iBkC3ek5633gLQLWmeccpWiZASnuDL0ym/j/hRV9BmhEXQAggtYmT+/g/AG+BBMVvF0DmriXkg57/P7prCfmgJwVAWp9yTBb35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OkAwR49fCEBmvRjKiRYiQB0ibk4lg+k/umsJ+aBnB0CiYpy/CeUQQOQUHcnlfyVAUmFsIcjBAEAz/n3GhaMYQMf0hCUeEANAHhZqTfMOHkBJhbGFIAcBQNjYJaq3RgVAFf93RIXq2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wf9WsmOjCUBn7bYLzYUhQBgLQ+T09es/4nX9gt3wEkAAjGfQ0P8QQMZtNIC3gCVA8UbmkT8YAECVgm4vaSwaQCrG+ZtQyAFAy9b6IqGNHkA7AU2EDQ8AQLJLVG8NbAVADHVY4ZaP3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aYzWUdWECUA7jbRU3k4dQHuDL0ymigVA1QloImy4FkAAUps4uR8QQB1aZDvfryZAO99PjZduAUCmD11Q3/IYQHy45LhT+gFAAU2EDU/vH0DEX5M16uEBQN0MN+DzAwZAccyyJ4HN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zsKedvjrBkCk374OnLMeQGx7uyU5YNw/zhlR2ht8BUBGlPYGX9gNQNiBc0aUNidAHT1+b9OfA0Ana9RDNJoZQGfttgvNNQVAD7QCQ1Z3G0DdmJ6wxIMAQCmWW1oNCQZADLJl+bqM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cxHfiVmv/T+XytsRTgsfQHuIRncQO/A/mggbnl4pB0BHVRNE3YcLQFA25Qrv4iJAEr2MYrklAkBU46WbxMAZQMhe7/54r/U/2XxcGypmHEA6r7FLVG//P/ksz4O78wJAs5quJ7ou4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jC0EOSjhAEDarPpcbYUgQJet9UVC2+M/C3va4a/JAUAIclDCTBsGQF3+Q/rtiyRA8FAU6BO5AUApP6n26bgWQOBnXDgQEgVAhZm2f2WlF0BEhlW8kXn/P19GsdzS6gVAzY+/tKjP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f7xXrUw4CECkNnFyv4MSQGWNeohG9/s/gXhdv2BXFkAPC7WmeecQQIqw4emVkiVA98d71cqEA0A26iEa3YEaQDRLAtTUsvI/SG3i5H7nGkADeAskKH4AQOyGbYsymwVAotXJGYq75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qxzr4jaa9T/EJced0iEeQINpGD4ipgpAyZOkayYfD0BNMnIW9rQRQCDSb18HjidAbATidf0CBECDTDJyFjYbQNF5jV2ievk/StI1k29WF0AGZK93f3wBQOOItfgUgAZAZXJqZ5ha5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ieo+AKlNDUA4vvbMkuAbQCR/MPDc+/I/yXa+nxrvA0AmcOtunqoPQFK4HoXr8SVA3xXB/1byAEAe/pqsUW8WQLK61XPSe/g/lxx3SgcLGUDKVMGopM4AQIY97fDXJARAVHB4QURq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YwtBDkoYAUAAV7JjIwAiQHQHsTOFTvk/2ZQrvMuFB0A4+MJkqqAJQEdy+Q/pVyRAQN6rVia8BkCuZMdGIH4dQEF9y5wui/0/QrKACdx6G0CXrfVFQtv/P6m8HeG0oAVA/N8RFaqb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MV9egH30+D9TswdagWEhQHfbheY6DQxAylTBqKTOCEA9D+7O2m0JQOviNhrA+yRA83FtqBjnBUAP7s7abZcaQP/nMF9eAAFAC5jArbu5GUApIsMq3sj/P7pm8s02NwRAW7Iqwk1G4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iBHCo40j+j9NvtnmxpQQQFVNEHUfQBFAnOEGfH6YC0BuNIC3QIIHQOXQItv5PiRAnIpUGFsI/j+PjUC8rj8XQM/3U+Olm/k/08H6P4dZGkDI0ocuqG//P3tmSYCa2gRATTJyFva05D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iSmRRC8j+z9wd9Zuu3AbQBJr8SkARvM/ZjGx+bh2EED0wwjh0YYOQABvgQTF7yRA2ZQrvMvF/T/qIRrdQWwXQMXJ/Q5FQQNAzEBl/PsMG0Bx5ldzgCADQLdif9k9uQNAW3heKjZm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lKRrJt9s+T+NnIU97QAgQOyGbYsyG/I/EY3uIHZmEUDByqFFtnMMQOxRuB6FCyVApRR0e0lj/z/+ZffkYSEXQFFOtKuQsgBABkzg1t08GUDxS/28qQgDQNKMRdPZSQNAAWxAhLjy4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rJDyk2qfEEB+Uu3T8dgfQARWDi2ynfw/yatzDMje/T8EVg4tsl0QQAisHFpkmyZAS6shcY8l+T+K5ZZWQ4IVQA74/DBC+AVAXwfOGVH6H0CI9NvXgbMAQA7bFmU2yAlA6SlyiLi55z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J71vfO35EUCYaftXVvofQPaX3ZOHBRRAMqzijcyjBUDbp+MxAxUMQKwcWmQ7fyRA1T4djxnoAkDqCUs8oAwYQFOWIY51cfk/rKjBNAx/GEAL0oxF05kBQHIW9rTDXwdAzEV8J2Y95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5nRZTGy+BkAoJ9pVSKkgQAXB49u7Bts/Ieo+AKmNCUAw8Nx7uGQLQMzuycNCrSVAm49rQ8U4BEBHdxA7UygcQNejcD0KVwJA5ldzgGAuHECCHJQw03YCQKK0N/jC5AlAcegtHt5z6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j6omiLrPBkBUjPM3oTAgQMKKU62FWdk/iqvKvisC/D9mg0wyclYJQMU9lj50gSNAMj1hiQcUBECSy39Iv70ZQBAjhEcbxwRALjnulA52HEAsgv+tZEf/P4wVNZiGYQFA0JhJ1As+3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jkC8rl8wAUA5fxMKEdAVQCTusfShC9c/6MHdWbstBUCgMv59xkUDQILix5i7ViRAavtXVpoUAkBI4XoUrmcaQFx381SHHABAotEdxM6UGEA34PPDCGEAQMHKoUW2MwVAZi/bTlsj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iGNd3EYDA0CkU1c+y9MWQPuw3qgVptM/Y9F0djL4CEBO7ncoCnQEQCJseHqlTCRA09nJ4Ch5AkBRvTWwVYIaQHBCIQIOIQFA0oxF09npGEB1PGagMr4AQNrmxvSEJQVABTI7i96p5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AoI5evweBUDuX1lpUnoiQKPp7GRwVAVAarx0kxgEEkADz72HS44LQEz9vKlIpSNAhXzQs1m1BUDUQzS6g7gaQL/Uz5uKVPg/FmpN844TGED52jNLAhQAQOl942vP7AVAOPbsuUzN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cayL22gABUAnFCLgEAogQP5l9+Rhodw/Oq+xS1QvAkB00vvG1x4NQGUZ4lgX9yRAeqpDbobbAUD3OxQF+qQYQHxhMlUwKv8/IEYIjzbuHEAj88gfDHwBQEgzFk1npwRA/FBpxMw+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2jhiLT5FCUCKsOHpldIjQFlMbD6uzRFAn+V5cHdWFkCJtfgUAOMJQLN78rBQKyVAS6shcY9lCECZu5aQDxodQDW1bK0vEgVA+8vuycNCGkA8a7ddaC77PxZNZyeD4wBAM1LvqZx24D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vcYuUb11EUDLSpNS0C0jQIczv5oDBPs/Gy/dJAYBF0CM+E7MerEKQDbNO07R0SRAxuHMr+YA/j/NWDSdnUwWQB04Z0RprwFAtyizQSY5HkDri4S2nEsFQKJ/gosVNQxAPSr+74iK5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8IrgfyuZAEADz72HSx4gQPfkYaHWNPw/sOYAwRy9HUB7oBUYsroKQBKDwMqhZSRAwcqhRbbz/z/ACYUIOOQXQKsJou4DkANABARz9PidGkAofoy5a4kDQPAzLhwICQlABDkoYaZt6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J6CJsOEJFUC8IvjfSvYaQIP6ljldVgRABaOSOgFNAEDo2az6XG0LQCeDo+TV2SNAujE9YYlHCkCx3NJqSFweQPsFu2HbIgFA9aEL6lvGGUCWlSaloJsAQMcRa/EpgAZAd9mvO9354T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n+V5cHeWAMD0bFZ9rhYWQC7KbJBJphZA6s9+pIgMCkBihPBo44gNQEw3iUFgxSVAeNFXkGYs/j8gQfFjzD0XQAn5oGez6vk/PNo4Yi1eF0BAwcWKGswBQBzr4jYaQAVAxHqjVpi+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gbOULCehrD8yVTAqqVMqQNmxEYjXVRBASIrIsIp3FkAe3J212y4QQBgmUwWjEiZAJQaBlUNLB0DYuz/eq9YaQHZsBOJ1/QRAxhaCHJRQH0CQFJFhFW8AQFcE/1vJjgdAkPY/wFq15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q1a3ek76D0C/1M+birQeQKdc4V0uYvk/XwfOGVGaBEAbTMPwEfEQQNbFbTSA9ydAZRniWBd3AkBlqmBUUscbQI82jliLDwRAc9cS8kHPHECalIJuL+n/P6eufJbnQQRAApzexftx4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MgOV8e8zAEAN4C2QoHgfQJ+T3je+9gBAbRyxFp+CCUCTHRuBeJ0RQPKwUGualyVAIAw89x6uDUBDBBxClTodQOzdH+9VK/c/g6Pk1TlGGUCAK9mxEUgAQLpm8s029wVAYAX4bvNG4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S1mGONaFCkCoGOdvQvEgQLwi+N9KNgpA/3ivWpkwCUCuDRXj/A0PQIlBYOXQwiRAls/yPLj7CkAQO1PovGYdQEZCW86lOPk/5nRZTGzeGkCalIJuL+n9P40o7Q2+cAVAHF2lu+ts4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TpfFxOajDUB5I/PIH8wgQFYo0v2cguY/E2HD0yvl9T+bG9MTljgOQHNoke183yVAJxQi4BAqB0Dc9Gc/UoQcQOiC+pY5nQFAdc3km22uFUDQ1VbsL/sAQJ8fRgiPNgZAIhecwd8v4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KxiV1AmoAEDfFcH/VlIVQAqi7gOQ2vU/9dvXgXPGEEAq499nXDgLQH6MuWsJmSVATfilft7UAUDLSpNS0G0ZQNxj6UMXVP4/WP/nMF8+GECcoiO5/McAQFmGONbF7QZASBlxAWiU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U9DtJY3REUC7uI0G8AYiQFfPSe8bvxRADAIrhxaZB0AeG4F4XR8QQCntDb4w+SVA04cuqG+ZCUDQRNjw9KocQGZrfZHQVgBA0CfyJOlaG0BVpMLYQhD+P54MjpJXpwFA8yGoGr2a4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4Nv0Zz+yEUDwhclUwcgYQGq8dJMYhBRAlgm/1M9bAEDxLhfxndgIQARWDi2yfSRA8Z2Y9WIoAEDNkgA1tawVQF2/YDdsW/Y/E/JBz2b1F0CRCmMLQQ4CQJeQD3o26wVAvhdftMeL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hjjWxW00AECqYFRSJ6AcQOkOYmcKnd4/lSu8y0U8CkCVtyOcFnwHQL4wmSoYVSRA5nlwd9Zu/T8SwqONI/YZQHQprir7rv0/qd4a2CpBGEDDR8SUSKL/P1bUYBqGjwVAPnWsUnqm5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Q5iZwodBEDzdoTTgjccQDp15bM8j/c/jIS2nEsxAEDPFDqvsYsIQHQMyF7vHiNAc7osJjYfBkAkufyH9BsZQLQCQ1a3ev4/3nahuU7DGkAqkUQvoxgDQEMc6+I2WgZAns+AejNq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VRNE3QdgB0BybagY5w8cQEpenWNAduw/kIMSZtr++z8l6ZrJN1sIQBe86CtIYyNA8kHPZtUnCEAFi8OZX00cQL4wmSoYFfk/K6T8pNonF0DogvqWOR0BQFX7dDxmIAdAf74tWKoL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PSzUmuadBUB/arx0kxgeQGPshJfgVOw/hbGFIAelD0DIDFTGv48KQCUGgZVDayVA7yB2ptC5AECIug9AajMYQDuqmiDqPglA/3ivWpkgIEBYc4Bgjp4AQFOu8C4XcQRAIeaSqu0m5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"04cuqG8Z/j+emPViKEcbQIp2FVJ+0vA/kQpjC0GOBEB4eqUsQ1wGQGH9n8N86SJAUn5S7dNxAkAMdsO2RRkbQFLVBFH3gfQ/Oh4zUBkfGEAjvhOzXowBQNjw9EpZhghAR1hUxOkk4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+Uz2z9MA6T9SSZ2AJoIZQOkrSDMW7R9Al4v4Tsy6AkBClZo90AoJQEa28/3UuCJArKjBNAyfCkALtaZ5x8kcQI6vPbMkwP4/hXzQs1n1F0DYDdsWZbYCQLU3+MJk6gxAGxL3WPpQ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lfHvMy78FEBz1xLyQU8aQHdKB+v/HBBAm6xRD9EoA0CYNEbrqCoSQA5Pr5RlKCVAyy2thsR9AEBu3c1THRIVQD4ipkQSfQBAPIidKXS+F0CcM6K0N3j8PwskKH6MOQNAEFmkiXeA2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RDS6g9j5EUAArmTHRuAiQB/0bFZ9Lg5AGy/dJAYBC0BxGw3gLVANQOC+DpwzAidA1nPS+8YXBECNYrml1bAbQHBfB84ZUfg/iuWWVkPiGkBK7xtfe2YBQKsmiLoPgAJAFvw2xHjN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5pZWQ+JeAkB4f7xXrWwgQOYivhOzXtc/pb3BFyazGEDJq3MMyN4GQAx2w7ZFSSNA7N0f71UrAkCoNc07TlEaQBb2tMNf0wFAmWTkLOwpHUAps0EmGTkBQOhNRSqMbQpALxUb8zri5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5US7Cim/9z9yv0NRoH8hQMQlx53SQfU/LA5nfjUnEkAjZ2FPO/wOQEp7gy9MhiZApz/7kSLyA0AId2fttosZQP28qUiFsfU/dXYyOEpeGUAqxvmbUAgAQOviNhrA2wJAk+F4PgPq2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/7J78rBQEUAtJjYf14YYQERRoE/kiQNAq1s9J71vDkDD0ytlGSIOQGsr9pfd0yRAEmvxKQDG/z/vrN12oZkaQGK+vAD7aPk/Oe6UDta/GEAXmus00tL9P/ZAKzBk9QNAFxBaD18m4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rd12oblO8T+duvJZnmceQGE3bFuU2f0/fJv+7EeK9z9IMxZNZ2cLQDPEsS5uAyVAHM78ag6QDEAZ4lgXtzEcQDc3pics8fw/atlaXyRUFkCkiAyreCP9P+T3Nv3ZjwVAbOhmf6Bc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oRABh1ClCEB5r1qZ8CseQDZ2ieqtgQVAYvNxbajYCEDb+X5qvHQPQPFjzF1LKCRA4Ln3cMlxBUBQU8vW+sIbQPm9TX/2o/s/W+uLhLZcG0DCFyZTBSMEQPiImBJJtANARImWPJ6W3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HLEWnwKgDkDon+BiRS0gQJkqGJXUCfY//1vJjo3A+T/de7jkuBMHQNjw9EpZhiRA3uUivhPzC0DkFB3J5b8bQDojSnuDL/0/RIts5/tJG0AN4C2QoHgAQDSdnQyOUgZAPIcyVMXU4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6IL6ljldBECE9X8O8yUfQPZGrTB9L+8/ww34/DBC/T8mcOtunioMQMZtNIC3gCRATYQNT69UB0CzQSYZOQsdQCEHJcy0/fs/dv2C3bCNHEDt2AjE6/r9P2k1JO6xNAVAS633G+244T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GTkLe9qhBUAB9tGpKx8ZQEd3EDtT6PU/kiIyrOItE0COO6WD9f8LQPW52or95SRA5Pc2/dnPAEDfpj/7kcIWQFM/bypS4fo/is3HtaEiGUD9ag4QzJEBQAfTMHxEzARA4ltYN96d4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MUJ4tHFE/z8+BcB4Bk0fQBXGFoIcFAFAxm00gLdA/T8mqrcGtooOQERpb/CFKSZAjxmojH+fAUDmeXB31m4ZQKgY529CIfo/5CzsaYefF0DKplzhXS7+P878ag4QjAVAnfaUnBN74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QZ/Ik6QrBEDesG1RZoMcQIpZL4ZyIvo/3eo56X1j9z9N+KV+3hQRQDSitDf4wiRA5QrvchGfAkCA1CZO7jcYQCbfbHNj+vY/65Cb4Qa8GUAzUBn/PuP8P16iemtgKwZAl6lJ8IY04T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cty6m6f6CkDf/fFetZIhQAzlRLsKqfc/QuxMofMaFUB8J2a9GAoQQPT91HjpRiZA02pI3GNpAUA0SwLU1DIYQL3jFB3JZfw/JxQi4BDqFkBdbcX+svv+P69Cyk+q/QJASmHe40yT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+fcZFw4EBED+ZffkYeEgQDF5A8x8h+E/LzTXaaQl+j8YITzaOGIHQJusUQ/ROCJAOKEQAYdQBkAeUDblCu8bQL0A++jUVQRA95LGaB3VGkA7jbRU3g7/P671RUJbDgZAfJxpwvaT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KT+p9un4BUCMuWsJ+cAdQJyIfm399NI/ixpMw/CR+D97iEZ3EDsJQPKwUGuaNyRADLCPTl25BECRm+EGfJ4aQB1yM9yADwBA4Ln3cMnRGUAqqRPQRNj/P9xLGqN1VAVA/gsEATL04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uOnPfqRIB0AqUmFsIagUQAM+P4wQHvA/qTC2EOTgGEDRlnMprioGQOCcEaW9MSNACr/Uz5sKB0CBeF2/YNcaQNwpHaz/8wNAUKp9Oh5zG0DBHD1+b1MAQCdmvRjKSQNAzxWlhGDV4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dOrKZ3neBEDedqG5TkMRQMSWHk31ZNU/XCBB8WO8I0BpNSTusTQHQMRafAqAcSNAj8L1KFzPBkCnrnyW58EbQGpN845TNARAOl0WE5sPGUAQ6bevA2f/P74wmSoYlQRAkxywq8lT4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XBsqxvnbB0CM22gAbwEUQNSdJ56zBdw/fGEyVTAKKUD0bFZ9rvYHQPLNNjem1yNACoDxDBp6BEDizK/mAGEaQDIDlfHv8wVA2NMOf03WGUBOucK7XMT/P0TAIVSpGQRAoik7/aCu4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cVXZd0WwBkBmiGNd3MYoQNkIxOv6hec/ArwFEhQfKUBTrvAuF/EMQDsBTYQNryVA3NeBc0ZUBkBVpMLYQhAZQFa8kXnkj/s/XyS05VwKHEBEboYb8Pn/P5KWytsRzgJAlDKpoQ1A5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SkG3lzSGBkADlfHvM+4NQHmsGRnkru4/ob5lTpfFDUACZVOu8O4HQL7BFyZTxSRAP28qUmHsBEBSuB6F6xEZQEiKyLCKt/k/EeSghJm2G0DfwyXHndIAQOHurN124QdAOSf20D7W5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2PD0SlkGA0BPdcjNcEMSQGuCqPsAJOA/kuhlFMudIUDSjEXT2YkJQKyt2F92DyZAgsXhzK8mBUBkr3d/vJcZQH+8V61MeAJAFcYWghxUGkDZd0Xwv5UDQII5evze5gZA31FjQsyl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zSN/MPD8EUAvhnKiXcUZQKbQeY1dIgtATGw+rg31EUAAdJgvL0ANQD9XW7G/bCVAKe0NvjCZBEAZc9cS8iEbQC+jWG5ptfw/6DBfXoBdG0BMGqN1VPUAQHhF8L+VrAZA8wUtJGB05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M/59xoWD+T8mcOtungofQFTgZBu4g+0/Uz9vKlJh+D8Dste7P14MQNjw9EpZZiRAZMxdS8gHAkDKplzhXS4ZQOqymNh8XP4/mUf+YOA5G0CskPKTah8BQCegibDhaQRAWmYRiq0g5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JZLoZRQLAEC0jqomiLodQK/NxkrMM+s/bM8sCVDzFkDU1LK1vsgKQM2v5gDBzCNAmN2Th4XaBUCcvwmFCBgYQBMPKJtyBQBA3Esao3XUGkCskPKTap8AQPKYgcr4NwVARE30+Sgj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WMUbmUe+B0DG+ZtQiCATQAnh0cYR6wFARKhSswd6FECdEaW9wZcMQCBB8WPMfSZAWMUbmUd+CEActi3KbFAaQIY97fDXZAJAu+1Cc52GGkC1/SsrTcr8PxaHM7+aAwNAN23GaYgq4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rhIsDmf+A0B2w7ZFmW0WQAbzV8hcmeM/LbKd76eGJEBt4uR+h6IOQJVliGNd3CVAV5V9VwR//z8iiV5GsRwaQCsYldQJ6Pk/o+nsZHD0GUC46c9+pIj9P1qBIatb/QNAFRxeEJEa4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PdUhN8MNBkCB7PXuj7cOQH8TChFwCPw/qtTsgVbAGUDNkgA1tSwQQNqs+lxt5SVAseHplbIM/z/HSzeJQcAYQHh/vFetzPc/mbuWkA+aGkBYc4Bgjp78P7L0oQvqWwRAFJfjFYie4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C0J5H0fz7T/MKJZbWm0UQI7MI38wcPs/aVch5SdVCEDaci7FVWULQCsYldQJKCVA8rBQa5r3/T+0q5Dyk2oXQPceLjnuFPc/HT1+b9PfGEBUjPM3oZD8Pz7QCgxZXQJA5iMp6WHo5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IQIOoUoNEUAMHxFTIjkjQKA3FakwtvU/G/UQje5gA0AGEhQ/xtwMQGDl0CLbGSVAknnkDwaeBUAtQxzr4lYaQKGhf4KLFQNAjKGcaFchG0DHndLB+j8AQOmayTfbnAVA91YkJqjh3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/n3GhQOh9j/NAYI5ehwZQGk6Oxkcpf4/WoEhq1v9C0A4hCo1e6AMQCzUmuYdZyVAEAaeew+XAUAXK2owDcMZQJlk5Czsaf0/e4MvTKYKG0CD+pY5XZb+Pw+0AkNWNwRAlWbzOAzm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZCMQr+sX/j/PoKF/ghsjQPYoXI/CNQpAhjjWxW20DEDfwyXHndIKQOeMKO0NPiVA1H0AUpv4AkDgvg6cM6IZQIwVNZiG4f4/v5oDBHN0GkAKndfYJar/PyAMPPcergRAlzeHa7WH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l+Kqsu8KAUAQWDm0yHYhQITVWMLamOw/ppvEILByDkA1Bwjm6DEHQEcDeAskSCVAXmOXqN7aBEAwgVt381QYQDpAMEePnwJAEojX9Qt2GEA1DB8RU+IBQHaJ6q2BbQVASDMWTWcn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sdzSakicA0DRlnMprqohQEI+6Nmseuo/uAa2SrD4AUCFtpxLcTUQQJ4kXTP5xiNAVIzzN6GQBED+DkWBPjEcQCPb+X5qvAFA/5WVJqUgGUDGv8+4cCD/P1PovMYuEQRAsHYU56ij3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jGfQ0D8BCUA3/dmPFJEeQIp2FVJ+UvU/Q+IeSx+6AEAD7KNTVz4KQEATYcPTyyVA0egOYmeKBUApyxDHurgaQNF0djI4yvU/URToE3nSF0B4uYjvxKz9P7MHWoEhawNAFOrpI/CH3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mKPH7216BUBEi2zn+6kcQL+5v3rct+A/N6YnLPFAB0AIjzaOWMsGQBiV1AloIiVARSqMLQT5AkDeyDzyB8MbQNcXCW05VwVANXugFRjyGkDoMF9egD0AQMAEbt3NkwNAy7xV16Ga2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"priq7LviCEDVlc/yPDghQMTuO4bHfuM/bTmX4qqy9j+X4qqy7woKQDP+fcaFgyNAecxAZfz7BkCbVZ+rrRgZQDRLAtTUMgNAwD46deXzHEAu51JcVXYBQLYtymyQiQZAzxPP2QLC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gVt381RHBECBlUOLbEcbQNttF5rrNNg/QDBHj9/b9T87cM6I0p4FQPtcbcX+ciRAIGPuWkL+AUAQO1PovGYXQIC3QILixwJA9S1zuizmGkDir8ka9ZACQCv2l92TxwVADi2yne+n5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jzaOWIvPBUBxOPOrOTAjQNyhYTHqWt8/WfrQBfXNE0AzG2SSkbMLQG3n+6nx0iVALlbUYBqGA0CMLQQ5KMEaQFRSJ6CJ8AFAX3tmSYDaHEDEQq1p3nEBQK2GxD2W/gVAtVGdDmQ95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tzv8NVljC0AnoImw4ckjQLjn+dNGdeY/wcWKGkxDGUA4Mo/8wYAIQGrecYqOxCVAho+IKZGECUB0B7EzhY4dQBbe5SK+UwRA3xrYKsFiGkCfsMQDyqYBQLUV+8vuCQVAX0NwXMbN4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c0urIXGPB0B2VDVB1L0hQH2VfOwu0Oc/F0hQ/Bhz+z+uu3mqQ+4NQKjGSzeJISRA1EM0uoMYAkCUvDrHgEwZQJ+T3je+9vo/vVKWIY41G0B9eQH20an9P3rf+NozSwRAqrpHNlfN4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h9wMN+DzBEBSYWwhyDEiQDuKc9TRcek/d/hrskb9B0DrxVBOtCsOQMBbIEHxwyNAr+sX7IYtAkATRN0HILUYQJxQiIBDqPk/ZQETuHW3G0CP39v0Zz/+P5rrNNJSuQRA9N+D1y5t4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vp8aL93kBkAX8Z2Y9YIbQNOf/UgRmQdAsKw0KQUdAkAuOe6UDhYKQOxRuB6FSyZAS5NS0O3lCUATRN0HIFUdQKCJsOHplf4/9rTDX5P1FkAGgZVDi+z+Pz2bVZ+rbQJAeVioNc074D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pvJ2hNMCA0Aq499nXPgZQIHs9e6P9wlAXKyowTTMAkD8Uj9vKpIKQKMBvAUSNCZAzR5oBYasCECGVbyReWQdQLMkQE0t2/8/LudSXFUWF0CPU3Qkl//+P42XbhKDQAJAoUs49BYP3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gzRj0XR2/j9LsDic+bUfQJGb4QZ8/vo/YRqGj4iJEUDcRgN4C6QMQDarPldbESRA5WGh1jRvCkA57pQO1p8bQDawVYLF4fg/D0WBPpFHG0BaDYl7LP38P1Ou8C4XsQNAe8A8ZMqH3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nx9GCI92A0A3VIzzN6EjQO9VKxN+KfA/r5l8s82tFkBXsmMjEG8IQM/3U+OleyVAxVVl3xXB/z/Kw0KtaR4aQKSIDKt4I/w/dsO2RZntFUCSs7CnHb4AQEmdgCbCxgJALGLYYUz64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sP7PYb68/j/+1HjpJhEoQKWfcHZrmec/0VynkZaqIkBmMbH5uHYKQK62Yn/ZPSNAGTkLe9rh/j/TTWIQWNkWQIdQpWYPtPU/8Z2Y9WIoGEBmSYCaWnYCQCXMtP0rawRAXrwft18+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ApoIG57eAEDUmuYdpwglQFIKur2kMfM/klz+Q/ptGUBAahMn97sAQE1nJ4OjpCJAatlaXyT0BUCVZYhjXbwZQNbgfVUu1O8/+kSeJF0zGEBhTzv8NZkEQJLoZRTLrQNA44xhTtCm4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qFfKMsTxAUByM9yAzx8gQDW1bK0vEvE/bsDnhxFiFkAWTWcng+MLQGfV52ordiRAD0WBPpEnBUD8xteeWRIZQAT/W8mODfM/2XdF8L+VFUC9qUiFsQX9P8u+K4L/LQZAZCMQr+uX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lWWIY13cBEC/Q1GgTwQZQPsFu2HbIvA/Zmt9kdBWDkBPXfkszwMJQBfZzvdTwyRAyM1wAz4/AkBBDkqYaVsbQEbOwp52+Po/l8rbEU7LFkDH9IQlHlABQLddaK7TyAJAQBTMmII14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zmt9kdDWA0AWak3zjlMZQPlmmxvTk/s/dc3km23uC0DrrYGtEmwJQKSNI9bikyNAt9EA3gKJCEAuVtRgGiYaQLsoeuBjMOc/INJvXwdOFUAMsI9OXfn8P1G9NbBVggZA2H4yxodZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ICkiwyoeCECmCkYldaIhQPbTf9b8+Oc/HOviNhpA+z8wgVt389QLQD0s1JrmvSVArJDyk2pfA0DVsrW+SEgdQG5RZoNMsgRAHqfoSC6fGkB0B7EzhQ4CQCh+jLlrCQRAI4YdxqS/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DRr6J7gYBEAEOShhpq0cQOY8Y1+y8ds/miUBampZ8T9vEoPAyiEJQN17uOS4kyNAiEZ3EDtTBkAjMqzijawbQPphhPBoY/0/ZJKRs7BHGUAteNFXkCYAQJqxaDo7GQdAesVTjzS44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oblOIy2V/D+iXYWUn4QhQCJPkq6Z/AdA3EYDeAskA0DXwFYJFscIQEP/BBcr6iNAkUQvo1guBUBENLqD2JkcQKH4MeaupQJABi/6CtJMHkBlx0YgXtcAQK67eapDrglA8l61MuEX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ychZ2NMOAEAvaYzWUTUYQMu5FFeV/f0/qWqCqPtADEC1/SsrTUoLQAKaCBueniRAlQ7W/zkMCkBpb/CFydQcQNrJ4Ch5dQNAUtUEUfcBGEDfbHNjesIAQKyL22gA7wJAZJXSM73E5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hUAuceSBzr8bEvdY+iAiQOPHmLuWEB1A1GUxsfm4AUCFJR5QNmUQQLraiv1lNyZA0jqqmiAqAkDv5qkOubkZQJ+OxwxUxvQ/sp3vp8ZLG0CoUrMHWgH/PyJxj6UPHQZAxAq3fCQl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MjhKXp3jDEAErcCQ1e0XQKdc4V0uYvA/QBNhw9PrEED2QCswZLUKQFtCPujZDCRA/Knx0k0iCEAt7GmHvyYaQBO4dTdPdQdAVKnZA62AGkASpb3BF2YAQKAVGLK6lQJAXp1jQPb64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7+GS406pBEB0RpT2Bv8WQP578NqlDdA/I6Et51JcBkBXlX1XBL8HQEi/fR045yRAQkP/BBfrBEBNZyeDo4QcQPC/lezYiANAwZDVrZ6zHUCC/61kxwYDQGfyzTY35gRAeJeL+E7M4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7+GS406pBEB0RpT2Bv8WQP578NqlDdA/I6Et51JcBkBXlX1XBL8HQEi/fR045yRAQkP/BBfrBEBNZyeDo4QcQPC/lezYiANAwZDVrZ6zHUCC/61kxwYDQGfyzTY35gRAeJeL+E7M4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yZOkayYfBEDByqFFtnMlQIp0P6cgP9Y/HPD5YYTwBECMoZxoV6EEQEs8oGzK1SJAWrvtQnMdBUDqlbIMcSwbQCXpmsk3GwNAzNHj9zadG0DRyyiWW5oBQIcW2c73UwZAJsRcUrVd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"11HVBFH3AUBH5pE/GJgfQKZfIt46/9M/Hm0csRa/EUDhQEgWMIECQDUpBd1egiNAWYY41sVtAUAR/G8lO5YZQBuBeF2/IAJAfERMiST6HkBQ5EnSNZP/P5VliGNd3ANAZXH/kenQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H6LRHcSOAkC9++O9arUhQPcfmQ6dnsc/kBSRYRUvBkClSSno9pIGQEgWMIFb1yNA2bERiNf1A0Cm0HmNXaIZQGuad5yiYwJAM/lmmxtTGkBTXFX2XREBQAwfEVMiiQNAyv55GjBI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q+ek942vA0CjAbwFEvQWQHL5D+m3r90/eH+8V60sEUDKN9vcmJ4CQKyt2F92ryRA+KV+3lQkA0Ckx+9t+lMYQK7YX3ZPXgBAL6hvmdNlGUCrz9VW7O8AQEbrqGqCqANAEVSNXg1Q5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"68VQTrTrBECalIJuLwkYQO5BCMiXUNo/XeFdLuKbFkAsSDMWTWcFQEJg5dAiWyRA9GxWfa62AkDm6PF7m74YQPmDgefew/4/FYxK6gRUG0D8jAsHQrIBQFXBqKROgANAm+PcJtwr5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lGqfjseM9z9NLVvri9QgQJIiMqziTQVAKh2s/3MY+D/DgZAsYEIOQKJFtvP9dCRArP9zmC+vAEBDc51GWqoYQN83vvbMEv8/NnaJ6q1hGUDbxMn9DkX8P/LqHAOy1wRAPUm6ZvJN4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"priq7Lui9D+wG7YtyiwaQFmGONbFrQRAGcqJdhWSB0CafLPNjekPQOjZrPpczSVAzQaZZOTsA0Au/yH99vUYQGOcvwmFiAZA/RNcrKgBHUCasWg6O5n/Px9oBYas7gFAXKs97IUC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oTGTqBd83z8yA5Xx71MeQH6pnzcVqRFA6udNRSrMBkCb/uxHikgMQLTIdr6fOiRAbw1slWDxBkAxCKwcWoQbQDoGZK93f/Y/rrZif9ldFUATRN0HIPUCQP4ORYE+EQlAEEBqEyd35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NWPRdHYyD0DHuriNBjAXQJbP8jy4u/E/8rVnlgToDUDl7QinBW8DQIvgfyvZ8SFAdeWzPA/uBUDpYP2fwxwdQGXfFcH/Vvw/GZC93v0RGkCWQ4ts5/v/P0/MejGUUwhAtmgB2lYz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TS1b64tkEUBvL2mM1lEgQIWZtn9lJfY/D9HoDmIXIECns5PBUTIMQFCNl24SAyZAaYzWUdUEAEBmMbH5uHYXQPc7FAX6RPU/GFsIclBiGEAlBoGVQ0sCQEku/yH9NgRAQWSRJt4B5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YOXQItu5AUBbQj7o2UwbQDblCu9yERBAX9IYraMKFkBF8L+V7DgQQGb35GGhFiZAtHHEWnwK/z84EJIFTGAXQLCsNCkF3QBA1ouhnGjXGEBRiIBDqJIDQFFrmnecogNASwLU1LK15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fPKwUGtaCkAp6PaSxogdQGkdVU0Q9fs/wXPv4ZLzIkDkSdI1kw8QQM/3U+OleyVApFNXPstz/z+9++O9agUXQF/v/nivmgBA3nahuU5DGEAEIVnABK4CQLubpzrkZgVA0hqDTgid5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2/l+arx0/T/arPpcbeUXQBJr8SkAxvQ/AHSYLy9AAkDxaOOItfgJQDcawFsgYSdAwARu3c2TA0AhdqbQeW0XQIiFWtO84/s/cQM+P4yQGUDh0cYRa/EBQGhcOBCSBQhA5/1/nDDh5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"feiC+pa59z9lpUkp6JYVQMhBCTNtf/I/GFsIclDC/z8KaCJseHoLQPW52or9JSdAbAn5oGezAkBkBirj30cYQDrpfeNrz/k/z72HS46bGEDgufdwyfEBQItUGFsIcgdA95Dwvb9B5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"davnpPeNDUAdyeU/pH8oQHRBfcucrhJAk6mCUUk9JUAo8iTpmskSQKhXyjLEESZAfCdmvRgKAkBnfjUHCCYZQIXrUbgeBQJA9UpZhjh2GUCLTwEwnoEBQNjTDn9NFgZAvQFmvoMf5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DJOpglHpFUBrYKsEi+MUQPCFyVTBiBFAkrOwpx0+CkCcoiO5/KcQQN4CCYof4ydADDz3Hi75A0A6r7FLVK8YQCs1e6AVmPI/wTkjSntjF0Dm6PF7m74DQMKjjSPWIgdAwt1Zu+1C5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gy/dJAYBBEBYyjLEsW4eQLD/OjdtxuY/4Ln3cMlx+z8QWDm0yLYBQK/rF+yGbSNAArwFEhT/BUBCCTNt/6oZQI0o7Q2+sP8/MevFUE5UGUBXJvxSP2//PyGTjJyFvQRAvFruzATD3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"001iEFg5AUD7OnDOiDIdQB/2QgHbQeE/C+9yEd/JAECTxmgdVY0BQBU6r7FLNCNAQznRrkIKBkD1nPS+8TUaQA9/Tdaoh/0/QbyuX7C7GUBqvHSTGAT/PwtGJXUC2gRACqGDLuHQ3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ww34/DBCBkBzY3rCEq8eQBCtFW2Oc98/1ZXP8jw4BUAAkX77OjAKQDvfT42XDiRAo+nsZHCUAEBIxJRIovcYQKezk8FRMgZAx0YgXtevGUBeY5eo3hoBQLk2VIzzNwNAeF4qNub14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CAPPvYfLAUACZVOu8I4WQO19qgoNROw/3xrYKsEiC0Btc2N6wlIKQE0VjErqxCVAdQKaCBveAkDmP6Tfvk4XQA6EZAETuARAVmXfFcEfH0Az3IDPDyMAQCeIug9AagZAHQWIghnT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UdobfGFyBkCiYpy/CeUdQKxY/KawUus/vTWwVYKFEkAouFhRg6kPQAXFjzF37SVAJQaBlUMLBUBN+KV+3tQaQLA4nPnVXANAWrvtQnNdGUBpUgq6vaQBQIV3uYjvBARA4nMn2H8d4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nqs+V1sxAkAqkUQvo/gbQIjYYOEkTec/4pLjTumAE0DDnnb4a7IPQF1txf6y+yVAI4RHG0dsBUA4LXjRV3AaQCZw626eqgNA0GG+vAA7GUCCHJQw03YBQE9d+SzPAwRAg9xFmKLc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZJKRs7BHEEDowd1Zuy0HQJynOuRmOARAqaROQBNBKkAiq1s9Jz0JQHr83qY/+yNAdNL7xtfeAUBW1GAahk8ZQBtkkpGzsPE/4IRCBBwCGEAaNPRPcDEAQE563/jaMwdAtU/HYwYq5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9wZfmEyVBkA2yCQjZ+H6P/0TXKyoQf0/0ETY8PRKDkAhByXMtD0JQNxGA3gLZCRAqU2c3O+QA0BcA1slWNwYQGcPtAJDVvk/J07udyjKFkDFA8qmXGECQIums5PBkQRAdqbQeY3d5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3Qw34PMDBkD0NjY7Un3pP4GXGTbKeuc/K/aX3ZMHKED/7EeKyLAKQAg9m1WfSyRAthDkoITZBkB+qZ83FWkaQNOkFHR7yfc//wkuVtSAF0BivrwA+ygBQLSTwVHyKgVAnS/2XnzR5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c4V3uYgvAEA3jliLTwH3v39N1qiHaPA/24r9ZfdUIkCneccpOlIHQI4G8BZIUCRAis3HtaFiBUBhVFInoGkaQAx2w7ZFGf0/gGCOHr8XGkDhQEgWMEEAQAhagSGr2wVAIVwBhXr65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SgwCK4dWBUAyIHu9+8MSwM8sCVBTy+4/XkvIBz0bJ0CLMhtkkhEJQKSqCaLuEyNAp3nHKTrSAEDQuHAgJOsXQDG2EOSghPY/RYE+kScpF0A5tMh2vl8DQF8pyxDHegdAFOy/zk0b5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s+pztRW7CkCTGARWDk0ZQCXpmsk329M/VaTC2EIwGkA3VIzzNyEPQAYSFD/GfCRAV89J7xvfBkDtgVZgyEobQDUHCOboMQVAf9k9eVgIH0B1kxgEVo7/P6xWJvxS/wZAEMzR4/c24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PE7RkVx+BUCqYFRSJ8AjQIAsRIfAEek/1zTvOEUnHUBAwcWKGswDQH/ZPXlYaCRAhZSfVPv0BEDYnlkSoIYbQH/7OnDOyANALxfxnZh1HEBEozuInSkBQMo329yYHgVAhc0AF2RL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fQVpxqIpA0Dg88MI4VEAQHsxlBPtqvE/igJ9Ik9yF0CXOV0WExsHQFZ9rrZi3yVAboYb8Pnh/T8BGM+goX8YQCO+E7NejPo/YJM16iG6F0CfzarP1Vb7P3h/vFetzAVAMlncf2Q63T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6WUUyy2tA0D0GrtE9RYIQEQYP417898/xY8xdy0BGEA+lj50QT0LQHicoiO5/CRAmUf+YOC5A0AzUBn/PiMZQMYzaOifYP0/eGLWi6E8F0DBVgkWh/MAQKzijcwjvwRA93ghHR5C4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mMCtu3mqBUBgsBu2LYoMQFH4bB0cbOs/odY07zglJkBD5zV2ieoGQHlYqDXN+yRA2Ls/3qsWBEBZTGw+rq0ZQFDCTNu/sgFAlialoNtLHEBDVrd6TnoBQGlv8IXJlARAKT3TS4xl4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BkfJq3OMA0B2MjhKXq0jQEzEW+ffrus/Z341Bwhm/z/EJced0sEIQJM6AU2ETSRAl3Mpriq7AUAlBoGVQ0sZQNaoh2h0xwNAEmvxKQDmGkDmXIqryr7/P8gkI2dhzwFA71aW6Cwz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QpWaPdBKCED7ljldFrMSQIGYhAt5BOs/LJ/leXC3DkAOoUrNHqgOQOVhodY0ryVAxAjh0caRBUC/8bVnlsQaQKTfvg6cs/4/a32R0JbzG0BHrMWnAJj+P3ehuU4jLQZAiZtTyQDQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cOtunuoQBUCZ8Ev9vGkjQHjQ7Lq3IuE/jliLTwEwA0ClZg+0AkMJQPkx5q4lBCRAqdkDrcCQAkAmUwWjktoYQFXZd0Xwv/k/RMAhVKl5GkAv3SQGgdUAQEPnNXaJqgVAxmzJqgg34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h9wMN+CzBkA0v5oDBJMZQImzImqiz+Q/pgpGJXWCDUCxogbTMHwIQDDYDdsWpSJAOZfiqrKvAEBfKcsQx/oYQE563/jacwFA3nahuU6DGUDP91PjpZv/PxyZR/5g4AVAscHCSZq/5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ur2kMVrH/j/uPVxy3Kn7P1nbFI+Lauc/mpmZmZnZJEBATS1b60sEQPcGX5hMdSRAGhcOhGRBAUC4I5wWvIgaQCMVxhaCnABADMhe7/64HUD8byU7NkIAQEaZDTLJiAVA3smnx7YM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d/hrska9CEA2donqrYHfv4LEdvcA3e0/lZo90ApMHkC78lmeB7cJQJSkaybf3CJAwW7YtijzBkDNBplk5EwZQK/rF+yG7QJAM/59xoWjF0Dgvg6cM6IBQD/G3LWEvAdAOlrVko5y5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iSmRRC+jAECBsilXeBcLwNYBEHf1Kto/9GxWfa52MkA1RuuoasIEQHctIR/0rCRAz72HS477AkDVsrW+SIgbQK0vEtpy7gBAzt+EQgS8G0CdgCbChucAQK36XG3FvgdAlUT2QZYF5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sI9OXfmsBkA3/kRlw5rov/W4b7VOXNQ/1QloImz4IUCRJ0nXTL4KQOXyH9JvvyNAZjGx+bj2BkDLoUW28x0aQAEwnkFDvwVAFCLgEKr0G0CXHHdKB6sBQKoOuRluQAdAHAsKgzIN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NSTusfThB0DTM73EWKbgvxB39Soyuuc/3NeBc0Z0GEBVpMLYQtAHQD0s1JrmfSRAgy9MpgrGA0AX8Z2Y9WIaQKCJsOHplQZAIXam0HmtG0BZi08BMJ4BQBK9jGK5JQZAKH/3jhqT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"68VQTrQrBkBQNuUK77IJQB2vQPSkTN8/pHA9CteDKkAz3IDPD6MLQP5D+u3rwCRAQdR9AFKbBUCunpPeN54aQE1nJ4OjZPw/5xiQvd59GkAMzXUaaSkCQBbB/1ayowVAowVoW8265T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0qkrn+U5B0Bt4uR+h3IjQGSQuwhTlOY/0jWTb7Y59T+hSs0eaMUPQIZa07zj9CRAi3H+JhTiA0DQ0D/BxSobQN5Zu+1C8/8/1c+bilT4GkDw3Hu45Dj+P4QqNXug1QNALGLYYUz64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r5l8s81NCEA8MevFUC4RQIOj5NU5BuQ/D7kZbsAHGECKk/sdisIJQBTQRNjw9CVAiC6ob5nTAkB0JJf/kD4YQDjzqzlAcAdAWYY41sXtHkAr3sg88gf/PxqojH+fcQNACTICKhzB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4umVsgzxA0AdOGdEaY8QQDfF46JaxOg/izcyj/zRIkDq501FKswKQFvTvOMUvSRAq7LviuB/AkAYYB+duhIaQOZ0WUxsfgBA+5Y5XRazG0BL6gQ0Ebb/P0RuhhvwuQJAqRJlbynn4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NJ2dDI6SBUBa2NMOf40TQEH0pExq6O4/bjSAt0BCK0B88rBQa9oMQPXb14FzhiVAipP7HYoCAkD+DkWBPhEbQM2v5gDB3ABA+PwwQnj0G0Af14aKcf7+P4E+kSdJFwNArd12oblO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n1kSoKaWBEDY2CWqt6YcQHUCmggbHuY/6MHdWbtt+D8IclDCTBsLQIY41sVt9CRA8Nx7uOR4BUBN+KV+3tQYQNHoDmJnivc/Wd3qOen9FUCp9ul4zIAAQEop6PaSxgVAEFmkiXeA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hxbZzvfTAkDI6lbPSW8cQN83vvbMkvc/JemayTdb/D8gRgiPNg4JQLn8h/Tb1yRAQX3LnC7LBUAvaYzWUXUcQHjuPVxy3Pk/uY0G8BYoF0A6kst/SH8AQL9IaMu51ARASFLSw9Dq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vK5fsBv2AEDhehSuRyEbQBzw+WGEcPs/RS+jWG7p/D+8BRIUPwYJQGlv8IXJ1CRA3xXB/1ayBkDTvOMUHYkcQAQ5KGGm7fY/yol2FVJ+FkABGM+goX8AQEPiHksf+gRA325JDtjV4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UMJM278yBUCxxAPKppwaQJj6eVORCuA/5E7pYP1PIUA+XHLcKZ0MQATnjCjtbSRAlltaDYk7BEBeaK7TSKsYQHtrYKsEC/0/ie/ErBfjGkAdjxmojH8CQKpla32RUAlApgwc0NIV5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NIC3QIKiA0Csi9toAO8VQEwao3VUtec/1T4djxnIFUBBZfz7jEsKQHDrbp7qgCNAsBu2LcosAEBKDAIrh7YYQJ7qkJvhhv8/7ncoCvSJG0BuF5rrNBIBQPsioS3n0glAr+yCwTV35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ww34/DCCBEBFuwopP0kVQEHV6NUApeU/IzKs4o2MFkCl2qfjMUMLQPzG155ZkiNABwjm6PH7A0A6QDBHj78YQI7pCUs8oPs/pkQSvYzCG0B7oBUYsrr/P4WxhSAHZQdAK4nsgywL5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GeJYF7cRA0BnD7QCQ3YWQB4YQPhQIug/Oe6UDtZfEUD/z2G+vAAIQDPhl/p5wyJA2v6VlSYlAUAna9RDNNoYQAnE6/oFuwJACmgibHgaH0DXL9gN29YBQADGM2joHwhAq5Z0lIPZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K8HicObXBEAv3SQGgTUoQJ4pdF5jF/o/LpCg+DEmBUDWqIdodIcHQJVIopdR/CNA11HVBFE3BUAlWBzO/IobQCKJXkaxHAlA0LhwICRLH0BQwkzbv3IAQBzr4jYagAVAPLznwHIE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tvP91HipCkAqqRPQREggQManABjPIPI/zojS3uBLCkD4qpUJv1QPQKMjufyHlCZAcHfWbrvQA0DvA5DaxAkZQJ612y40VwFATRWMSuqEG0DedqG5TqMAQKBsyhXeJQNAL00R4PSu5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YoTwaOMIB0Bgdk8eFqoSQJsDBHP0ePQ/fm/Tn/0oEEA6BmSvd38PQEVHcvkPKSVAZd8Vwf9WAUCyEYjX9esYQENWt3pOOgNAw/ARMSWyG0BJERlW8Ub/P2SSkbOw5wRAM8SxLm6j4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I74Ts15MBEAyOEpencMVQH0kJT0MreA/cY+lD13QC0CtbvWc9L4MQGRd3EYDmCRAbm5MT1giBkAlWBzO/CocQC2yne+nRvw/+fcZFw4EGEAvbqMBvMUCQFDHYwYqIwZA0ZUIVP8g5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JzEIrBzaBkDymIHK+NcaQDdxcr9D0f0/54wo7Q2eFEAmqrcGtsoIQJMYBFYO7SRAVrd6TnofBEAu4jsx68UZQFmGONbFbf4/9P3UeOkGGEDeVKTC2IIAQJkNMsnI2QVA5Lop5bWS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ntLB+j9nFkBOf/YjRZQiQCeloNtLehpATihEwCEEIUAhWcAEbt0OQJm7lpAP+iVAmfViKCcaBkDk9zb92Y8bQN2YnrDEQwFAYabtX1mJHUAzG2SSkfMAQJjArbt56gRAU+xoHOp35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kQ96NqveF0CiC+pb5vQaQCUjZ2FPuwxAGCZTBaPSDkAwZHWr56QOQOVhodY07yRAteBFX0FaAUAdIJijx28WQHAIVWr2gAJAx53SwfpfHEAZ529CIQIAQGcPtAJDFghA3uhjPiBQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PujZrPrcDkBnCp3X2CUUQMgkI2dhzwhA07zjFB1pEUBQwkzbv/IKQOf7qfHSLSRAPDHrxVBOCUB/MPDce3gXQK00KQXdHgBAMevFUE40HEAbTMPwETEAQFIKur2kMQhAoS3nUlxV2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2GSNeogGDUBftTLhlzoXQMPYQpCD0gpARGlv8IXJCUBGsdzSakgLQFjKMsSxjiRAg8DKoUU2BEDWVuwvu+cWQJbnwd1ZO/0/9n8O8+XFGkDtgVZgyCoAQALZ690fbwdA/mMhOgQO4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"220Xmus0+D9MiSR6GYUUQKTfvg6cs/M/dcjNcAM+IUB3LSEf9GwMQB0Dste77yNA++jUlc9yAkDVBFH3AYgZQOc6jbRUXvc/OkAwR4/fF0D2Yign2tX9P3Drbp7q0AFAIsfWM4Rj4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mz3QCgzZB0BybagY568ZQLn8h/Tb1+w/AHSYLy+AGECYbhKDwEoMQP8h/fZ1oCVA48KBkCzgA0DN6bKY2LwaQPlOzHoxFPQ/sylXeJdrFEBFDaZh+IgCQHzVyoRfKglAKqio+pXO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NNdppKVyC0Csi9toAE8TQLraiv1lFxBAfZHQlnNpEkDzyB8MPPcNQPp+arx0kyVAQ+c1dokqBUAqV3iXizgbQFTjpZvEYARAGJXUCWgCIEC4I5wWvGj7P2rBi76CdAVAq1lnfF9c4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uw9AahMnEkCaQuc1dgkVQBakGYums/8/SP5g4Ll3CUCAt0CC4gcQQNc07zhFpyVA5DEDlfEvBUA3ww34/BAdQOrKZ3keXAJAwhIPKJsyHEBwtrkxPeH7P4tUGFsI8gVAm6vmOSJf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r5l8s80NA0AhH/RsVn0hQB04Z0Rp7/E/xyk6kst/EkB4uYjvxOwHQIJWYMjq9iNAuK8D54yoCUDikuNO6QAcQGDq501Fqv8/ngd3Z+22GUBl3xXB/xYBQAq/1M+bygJAY0M3+wPl3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QQ5KmGl7B0A5tMh2vu8jQHCxogbTsABAPNo4Yi2+BkBxICQLmIANQMDsnjwsZCNA86s5QDCHCEBFKowtBLkbQP4mFCLgkAJANjy9UpbBGEDlYaHWNK8CQNDVVuwvOwNAz6Pi/46o4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3ZiesMTDA0BOnNzvUHQjQN+j/nqFBeI/znADPj/sEkA3GsBbIIEFQPyp8dJNAiZA+HDJcae0CkDFjzF3LaEgQHcQO1PoPPc/igJ9Ik9yGUBwsaIG0zD+P/ceLjnu1ARAONpxw++m3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Olj/5zDfAkC1VN6OcDogQLecS3FVWfY/9E9wsaLmGUAC2evdH68GQGiz6nO1lSVAPBQF+kTeB0BxrIvbaOAbQEurIXGPpfk/cr9DUaDPGkDHndLB+v8BQFeyYyMQrwRAXrpJDAIr3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q5CDEmbaAEDKVMGopI4ZQKWg20sao/E/aYzWUdXEGkAH6/8c5gsLQDvfT42XriVAZCMQr+uXAEAeigJ9Io8XQC7iOzHrRQBAAp8fRgjvHkBTP28qUmEBQEJD/wQXqwdABiy5isVv3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/PuMCwfCCEA3iUFg5XAkQPj8MEJ4tOw/VRhbCHJQA0B0JJf/kH4MQDyInSl03iNAroGtEiwOAkC9OseA7DUWQKG+ZU6XRQRAKA8LtaZZHECCixU1mMYAQOLkfoeiAAVA1zTvOEXH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kUQvo1juBUCWJqWg22sVQK71RUJbTu8/S+oENBH2C0Aps0EmGbkMQK7YX3ZPHidARIZVvJF5AkBBDkqYafsbQAe2SrA4HPo/KCfaVUi5GEDTwfo/h7kAQPdY+tAFdQNAxO3QsBj15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AAAAAAAACUDgoSjQJzIjQH9rJ0pCIuo/PKBsyhU+E0A/48KBkGwHQIdtizIbBCJAy/j3GRfOBUA6r7FLVE8YQDyDhv4Jrvs/F5rrNNKyGED1oQvqW2YBQNXPm4pUGAdAsK91qRH64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XCBB8WNMA0CiRbbz/ZQlQK1u9Zz0vvA/C3va4a/JFUA3iUFg5RAGQF2nkZbKGyNADwu1pnkHA0BHA3gLJCgXQKRTVz7LcwBAaD9SRIaVGUCwG7YtyuwAQJCDEmbafgZAdjbknxnE4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O8JpwYu+BUBMpgpGJXUmQGfyzTY3pgZA1JrmHaeIEEAL0oxF05kNQMPTK2UZIiRAQmDl0CIbAkBxyXGndLAZQEnXTL7Z5gBATwZHyatTGkC70FynkZYAQP59xoUDYQNAay3MQjsn4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MZkqGJUUDUD83qY/+/EiQGoTJ/c71AJAb/CFyVSBCEAXt9EA3kIOQNV46SYxiCVANUHUfQASAkCzzY3pCQscQHNjesISDwFA2J5ZEqBmGEBg5dAi2zkBQERuhhvweQVAOdbFbTQA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MXxETIlkAkAdrP9zmE8fQFzmdFlMbP0/rg0V4/zN/j8R5KCEmTYNQKJFtvP9NCVAlgm/1M/bBUCk5NU5BgQcQHSYLy/Avv8/Jcy0/SvrGED7dDxmoDL/P32W58Hd2QVARDaQLjYt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M6fLYmIzCUCTqYJRSU0gQH8TChFwiPg/FTqvsUtU+z/EmV/NAcIOQC6QoPgxxiVAhj3t8NdkBUAAAAAAAKAZQA6EZAETOAFAhXe5iO9EGUCoV8oyxDEAQFbxRuaRPwNAl3SUg9kE3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2PD0SlkGAEC6oL5lTlchQFPr/UY77u8/9zsUBfrE+T8n2lVI+YkMQAfOGVHaWyRAqyFxj6UPBEBcctwpHUwcQMhBCTNtf/s/B/AWSFD8HEDfwyXHndL7P32utmJ/mQRAXWxaKQRy4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QZ/Ik6TrCkBIxJRIohcjQONsOgK42eQ/nx9GCI+2BkA9YYkHlM0KQHQkl/+QviRAM1AZ/z6jCEBlNsgkI6caQMP1KFyPwgFAmKPH722aG0ClTkATYUP9P/ZiKCfaFQNATPvm/urx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hnKiXYUU7D9YHM78am4SQPn3GRcOBPo/ur2kMVpHE0DF5uPaUDEJQO58PzVemiVAbXNjesKS+D9bzqW4quwWQIs3Mo/8Qfo/+KqVCb+0FkBpVyHlJ9UBQJ5BQ/8EFwZAHv0v16KF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EtpyLsVVCUD2fw7z5SUhQJ5BQ/8El/o/41MAjGfQ/j9ZwARu3c0MQM3MzMzMLCRA/DVZox6i/D9k6UMX1PcUQMhcGVQbnOY/vvbMkgCVF0DIXu/+eC8BQL0A++jU1QVAvmplwi/14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8piByvh3C0AH8BZIUPweQFlRg2kYHhJAQBh47j2cCkCnBS/6ChILQDMzMzMzEyRA5nRZTGw++j9AGHjuPdwYQAwHQrKACfM/9nr3x3uVF0CIS447pcMAQEdVE0TdRwRA7bYLzXWa5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BYasbvVcC0Ce6pCb4SYdQMcuUb01UBNA3zKny2IiBUCPNo5Yiw8LQHzysFBreiRAjErqBDSR+T9HcvkP6fcXQPJetTLhF/M/S1mGONYFFkB4nKIjuXwAQCo6kst/SAVAHekMjLys4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZvfkYaFWEECBsilXePcXQE34pX7eFApAxVVl3xVB/z/bxMn9DsULQIC3QILiByVAJNbiUwAM/j/5D+m3ryMWQBRa1v1jIes/cTjzqzlAFUCILqhvmdP9P+JYF7fRAANA7IhDNpAu4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v30dOGfEC0DKMsSxLq4ZQDojSnuDLwNAQdR9AFL7GkAiN8MN+LwJQK5H4XoUziRAIxCv6xdsB0DSAN4CCSocQBh47j1csgNApMLYQpADG0BoP1JEhtUBQOFFX0GaMQZA+oBAZ9Im5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5Ga4AZ+fCUBnD7QCQ3YXQJimCHB6F+o/RRK9jGL5DEAFo5I6AU0NQCUGgZVDCyVAOUVHcvkPBED3AUht4gQaQCodrP9zmABAtTLhl/oZHECalIJuL+kAQCaqtwa2ygRAwmosYW2M5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E7h1N0/1BUBNhA1Pr1QdQB09fm/TH/k/i1QYWwhyAkADPj+MEJ4LQOXQItv5HiVABaipZWs9AkAJ4dHGEUscQBgJbTmXYv8/by9pjNZRG0CLGkzD8NEAQA4QzNHjNwVAkzmWd9UD5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5/up8dKNAkCi0R3EzhQbQCV32ERmLuA/UYiAQ6jS/z9+Oh4zUFkIQCxlGeJYFyRArK3YX3ZP/T8+lj50QT0aQDZZox6iUf0/nUZaKm8nGkARje4gduYAQIpZL4Zy4gJAWRMLfEW34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SG3i5H5HBEDlszwP7g4gQBMNUvAUcuA/OgZkr3f/AEB8m/7sRwoFQHo2qz5XWyRAWyVYHM78BEA6zJcXYD8XQBQ/xty1BAFAOzYC8breGEBGJXUCmgj9P4yEtpxL8QFAKCuGqwMg2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0AoMWd0qBEDR6A5iZzogQFX2XRH8LxdAkj8YeO49+z96xyk6kssLQO3YCMTr+iNAon+CixU1/T80LhwIyeIbQK62Yn/ZPfk/mMCtu3lKGkB6GcVyS6sAQD7QCgxZ3QRAM2spIO3/4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TihEwCHUCUCRLGACt94hQLEWnwJg3BRA02pI3GPp/j/0bFZ9rrYMQNEi2/l+qiRAQpWaPdDKAEDtuyL438oZQD4FwHgGDfc/4C2QoPhxGUBmZmZmZmb/PwmKH2Pu2gVA5zi3CffK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IZOMnIV9C0ByFva0w78dQFxy3CkdrARAH5268lkeD0B72uGvydoLQLWmeccpeiRA9S1zuiwmBkBXCRaHM58YQDeOWItPgfU/KjqSy39IF0B+dOrKZzkAQL6HS4475QRAv9cQHJfx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1T4djxkoDUAg71UrE34gQGdEaW/whfo/PnlYqDXN9T/mkT8YeK4NQIEExY8xFyZAuAa2SrD4AUAAjGfQ0N8cQBg+IqZEkgNAOPjCZKogHEByUMJM2z/+P3Gsi9togARAeJeL+E5M4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zQaZZOQsDEDHndLB+k8hQAqd19glqvI/8gwa+ic4AUBh4Ln3cIkMQIcW2c738yNAmfViKCcaBkBYHM78ao4YQIBlpUkpqAdA+dozSwJUG0CtLxLaci7/P34YITzauAFACwvuBzyw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7zhFR3L5/z8WMIFbd4MhQMVztoDQet0/5BQdyeU/CUB+qZ83FekGQNV46SYxCCVA+MJkqmAUAEDImLuWkO8aQK7YX3ZPnvA/FZFhFW/EGEDTTWIQWHkBQGFPO/w1GQZATFRvDWyV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zhlR2hu8BEDZX3ZPHpYWQKuVCb/UTwJA0/avrDQpCECGrG71nDQJQNUmTu53WCJAKgDGM2hoA0BbJVgczjwXQJIFTODWXQNAXdxGA3iLGEC8kXnkD0YAQEloy7kUVwRA7FBNSdbh4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G/UQje7gBEDrxVBOtAsRQPiqlQm/VOA/j6UPXVCfDkCHp1fKMgQHQEmdgCbChiRA4PPDCOERAUDkFB3J5d8YQBVvZB75A/8/iGNd3EZDGECtLxLacm4BQDoeM1AZPwZA2xX6YBmb4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rVEP0eiOB0ACK4cW2e4fQLdGBOPg0uQ/Oh4zUBmfEkBlNsgkI6cIQM/abReayyNAoyO5/Ie0BUBKDAIrhxYaQABvgQTFj/8/3C4012kkGUBR9wFIbaIAQKH4MeauZQZAiskbYOa74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D5ccd0pHBEB7Tnrf+DogQHL6er5mudc/ZQETuHX3EEAsgv+tZIcGQOkmMQisXCZAKcsQx7o4AUCWBKipZQsbQCUGgZVDi/8/HxFTIomeGEA34PPDCGH9P+/Jw0KtqQRA21Gco44O4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5bM8D+7OAUAQXVDfMscfQAU0ETY8vdk/DXGsi9sIEkD5MeauJaQHQIEmwoanNyZA+aBns+rzAkAhdqbQea0aQK98lufBHQBA2NglqrdGGUCsyr4rgn/9P+DW3TzVoQRAmdh8XBuq4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"10y+2eYGDEDkLOxph+8hQDxmoDL+/fc/CTiEKjXbEkBZbmk1JK4IQHrHKTqSyyVAGjT0T3AxAUDBc+/hkoMaQJVIopdRLP0/Vp+rrdh/GkArNXugFZj9P7t+wW7YNgVAyZHOwMjL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H0sfuqA++D/xKQDGM2geQAw89x4uuQVAD0WBPpGn/z8om3KFd9kSQGIQWDm06CVAZAYq498nA0C+MJkqGLUXQJ+rrdhftgJA14aKcf5mGkCS6GUUy20CQPVKWYY41gVAxjGSPULN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jZyFPe2wBkCC/61kx+YbQPyMCwdCMglAvhOzXgxlBEC0PA/uzjoQQKpgVFInYCZAImx4eqWs/D+d19glqrcZQI4j1uJTgPk/BcWPMXdtG0DzH9JvX0cDQAuYwK27eQVAZ3xfXKpS5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AFeyYyMQBEDyXrUy4VccQD0s1JrmHfw/DAdCsoAJBkAMyF7v/vgLQIhjXdxGYyVAzF1LyAe9A0BSmzi534EYQNuizAaZ5AFAfSJPkq75GkBwlLw6x8AAQKpla32REAdAs+4fC9Eh5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vVKWIY51B0AjSnuDLxwgQBR7aB8r+OA/Hm0csRY/FEB06spneR4OQG3n+6nxMiVA+ie4WFGDBUBSYWwhyAEXQOFiRQ2moQRASx+6oL6lHEAVxhaCHBQBQNvcmJ6whARANPRPcLGi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Imx4eqUsB0DRItv5fiodQACPqFDdXOs/D2JnCp3X9T+Qa0PFOD8KQO0NvjCZKiVAZMxdS8gHA0AKndfYJeocQKNYbmk1JP8/on+CixUVGUDtR4rIsAoAQKzFpwAYzwZAqio0EMtm4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HThnRGkvBEAxmSoYlXQgQBISaRt/otI/cJS8OsfAD0A/jBAebZwGQHzysFBrmiRAvvbMkgB1BECGONbFbTQWQFjKMsSxbgNAINJvXwfOGUBXW7G/7N4AQMSxLm6jgQVAotPzbiwo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7lpCPujZBkDZd0Xwv5UgQFn3j4XokO0/W3wKgPEMAUB6GcVyS+sIQHWTGARWjiNAiGh0B7FzAkC0AkNWtxoaQH2zzY3pCQFAj41AvK7fHkBSLLe0GlIAQPs/h/nywgNAfv578Nql2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"16NwPQpX9T8fEVMiid4ZQK8GKA01iug/Xb9gN2zbBECCrRIsDmcGQNk9eViolSRAyxDHurgN/z8k1uJTAEwYQLiSHRuBePI/z2bV52orGECGAyFZwMQBQFPovMYukQRAl3Mprip74D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QQ5KmGm7AUCbVZ+rrQghQGmQgqeQK+8/n47HDFSGAEDHLlG9NTAHQAtGJXUC+iRAIqZEEr3MA0BXIeUn1d4YQLyzdtuF5vQ/S3ZsBOKVGUDM0eP3Nr0BQFw9J71vPAVAYCLeOv/24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xHdi1ouh9j9juaXVkLgdQGRd3EYDeOw/rYbEPZb+AED8GHPXErIHQMUgsHJocSRAN+DzwwghBkA0LhwIyWIYQNuF5jqNtPc/kIMSZtoeGUAx68VQTjQBQFJ+Uu3T8QRAvAZ96e3P4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Di2yne+n/z+k374OnFMbQA1slWBxOPk/bRyxFp9CFEDw+WGE8KgQQDVeukkMoiVAUtUEUffBAkBoy7kUV7UcQEUvo1huKQdAUu3T8ZghHUC+MJkqGJUAQPIMGvoneARA24XmOo005D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gGCOHr83/T8yOEpenWMbQL4wmSoYlfg/OKEQAYcQBkCwyRr1EE0OQNZW7C+7RyZAiqvKvitCBkAG9S1zumwcQDMWTWcnAwhA9kArMGS1HkCADvPlBdgAQH46HjNQmQdAKChFK/eC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3o0FhUGZ2T/SjEXT2ekdQGIQWDm0CAhA7bYLzXXaBEDDu1zEd+ILQLFQa5p33CRAkX77OnBOAkD0bFZ9rlYaQGB2Tx4WavA/nu+nxkv3FEBJnYAmwsYAQNMwfERMCQVAJc/1fThI4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ox6i0R2ECEBd+SzPgzseQCF00CUc+u4/yR8MPPee9D/HndLB+j8IQEdaKm9HuCNASWjLuRSXBUDgufdwyTEaQBJOC170VQNAA+yjU1e+HkBFL6NYbukAQFuU2SCTDARAKH0h5Lz/4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tyizQSZZDUAu/yH99nUgQICaWrbWlwJAwa27eaoDAUBo6J/gYsUIQLD+z2G+7CNAc2iR7Xw/B0BUUiegiRAcQNhkjXqIxgBApn7eVKSCH0BBSBYwgRsBQMQI4dHGkQNAduJyvALR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PKBsyhUeBkAE/1vJjk0gQN2YnrDEg/w/f03WqIdo/T/tKqT8pFoNQD7o2az6HCVAYAK37uZpBUC7RPXWwFYbQAclzLT9awJApPyk2qfjGEA/NV66SQz8P8gMVMa/zwhAH5268lme5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mFEst7QaBEDTakjcY2kcQLSPFfw2ROA/Oul942vP+j8kYkok0QsIQOPfZ1w4QCNAFXR7SWO0A0DONjemJwwbQD1+b9Of/fQ/glZgyOqWGUBk6UMX1Df9P2fyzTY3JghAx549l6lJ3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"662BrRLsDUAlWBzO/FoiQMxiYvNxbfI/w/UoXI/SIUARGVbxRqYMQEYldQKaKCdAlxx3SgfrA0AukKD4McYZQKn26XjMQABAwJXs2AiEHEC+h0uOO6UAQKneGtgqwQFA9Z1flKA/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V1uxv+zeBUBPQBNhw7MnQJVIopdRrPU/ghyUMNP2E0DmP6Tfvo4MQFkXt9EAPiVAhZSfVPv0AEAu51JcVdYYQCJxj6UPXQBA/3ivWpkQGED/7EeKyHAAQLL0oQvqWwJAjV4NUBpq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W3wKgPEMBkCqYFRSJwAbQIiAQ6hSM+g/2GSNeoiGFUBYHM78ag4NQM6I0t7gyyNAFva0w1/TBUAeigJ9Iq8aQNO84xQdSf4/6njMQGUcGkA+syRATa3/P8AhVKnZwwRA3e7lPjkK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wyreyDyyBEB7FK5H4XoWQDUHCObo8eo/UKp9Oh5zBEBd3EYDeAsHQBpR2ht8ISVAF5rrNNLSA0BBDkqYaTsZQClcj8L1aANAGlHaG3xBG0DHLlG9NbABQOBnXDgQUgVAWwuz0M5p5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gbIpV3hXA0AxthDkoKQbQBnL9EvEW+M/TRB1H4BUCUCXcymuKvsLQOm3rwPnDCRAjZduEoNA/D96Nqs+VxsaQJMYBFYObQFA/pqsUQ/RHEC8y0V8J+YAQJFEL6NYbgZA0NOAQdKn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8KKvIM3Y/D/yzTY3pqcdQG8Sg8DKASNA48KBkCygA0By/iYUIqANQOm3rwPnTCVAHJlH/mCgAUAn9zsUBboYQPNZngd3Z/w/xVVl3xXBFkDxETElkigAQGsr9pfdkwRA1As+zckL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K/uuCP5XE0BnRGlv8EUkQL7Z5sb0RABAu37BbtjWGUCTV+cYkD0MQAK8BRIUXyZAIF7XL9jNAkAps0EmGTkZQLTIdr6f2gJASBtHrMVnHECo4zEDlXEBQCV1ApoImwVAl5F6T+U04z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Er2MYrklE0DP91PjpfsiQJG4x9KH7gFA6fF7m/6MHUD/lZUmpSALQKfoSC7/QSZALA5nfjXHBEAEIVnABO4YQK8l5IOeDQJATrnCu1yEHkB5dY4B2esAQN5Zu+1CswVA5bUSukvi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EY3uIHam2T93LSEf9OwkQK/OMSB7vfg/B1+YTBUMKEDJAiZw664NQOm3rwPnbCVAjQsHQrIA/j8FwHgGDV0aQAFqatla3wNARMAhVKnZHEAdPX5v05//P3/eVKTCGARAN2+cFOY94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f2q8dJM4EkB+jLlrCXkkQNJvXwfOGQRAHv6arFFPEUDwiuB/K9kMQEGC4seYuyVA4X8r2bERBEB3Sgfr/3wWQCMyrOKNTPc/KSLDKt7IGEAYITzaOGL+P0ax3NJqCAZAECIZcmy94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h1ClZg+0B0B/arx0k0ghQEjcY+lDF/c/CRueXimLBkA10lJ5O0IPQG3n+6nx8iRA5L1qZcLvAUD0bFZ9rnYcQBakGYumcwVA3V7SGK0DHEBKXp1jQPYAQJ9x4UBIVgJA5/wUx4HX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MV9egH10CECcM6K0NwghQJlnJa34hu0/OxkcJa9O+z/ZX3ZPHpYKQMGopE5AUyVA12mkpfI2CUDjqrLvigAbQEKygAnc+gBAezGUE+0KHECh8xq7RLUBQOutga0S7ANAB33p7c9F4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lX1XBP9bB0CVYHE487shQOc4twn3yt0/DJOpglHJ+z8GDf0TXGwKQDtwzojS/iRAYU87/DXZBEDN5JttbowbQBObj2tDhQNAEsKjjSP2HkBGCI82jhgBQE9AE2HDkwhAbD6uDRVj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"29yYnrBEDEB2ieqtgb0hQP6Y1qaxPeQ/ER5tHLEW/D9VE0TdByALQAU0ETY8vSRABARz9Pj9BUA8MevFUE4bQJNS0O0ljQNANuohGt1hH0BBDkqYaTsBQBjshm2L8glAweRGkbUG5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Bhz1xJyD0CEKjV7oFUXQB8uOe6UjgFAw7ZFmQ2yEEBF2PD0ShkNQBrAWyBBESVA06QUdHsJBkAKaCJsePoYQKacL/ZefO0/Gy/dJAYhF0DTwfo/h/n9P1PQ7SWNkQJA3NYWnpcK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LlbUYBqGEkD27o/3qpUZQOP8TShEgAVADat4I/OIAkDYuz/eq5YKQNzXgXNGVCVAiqvKvivCB0BUxr/PuBAaQEdVE0TdB/U/SZ2AJsImFEAqAMYzaGgAQLx5qkNuBgJA5geu8gTC4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VKnZA61AA0CbVZ+rregiQPc7FAX6ROg/I9v5fmpcEEBGtvP91LgNQKUsQxzrQiZAzjY3picsAUAtlbcjnPYYQFuZ8Ev9vAZARkJbzqV4HkAEkNrEyf3+PxiV1AloYgdAnIh+bf305D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eO49XHJ8FEAaUdobfAEjQOY/pN++TglABBxClZq9B0D9wcBz7wEQQA1xrIvb6CVAV3iXi/gOBkD0iTxJuqYaQJfiqrLvygRALGUZ4liXHkBmoDL+fcYAQAE1tWytrwdAtoZSexFt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5A8GnnuPAUCcpzrkZtgWQERMiSR6mQpAVRhbCHKQGkDWHCCYo8cJQD2bVZ+rbSRAA0NWt3pOBUCiKNAn8iQbQOElOPWB5Og/gH106sonE0Do3sMlx50AQHxhMlUw6gNACYfe4uG95j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K8HicOYXAEBYrUz4pX4MQLhbkgN2Neo/Zmt9kdBWCkBRZoNMMrIKQBueXinLkCVAcEIhAg7hA0CZR/5g4JkaQAGHUKVmj/o/3+ALk6lCGUC7Jw8LtWYBQB4zUBn/PgVAPfNy2H1H4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xHx5AfbRA0Dso1NXPrsjQGQ730+Nl/U/H0sfuqBeE0CGAyFZwAQOQJCg+DHmDidA05/9SBFZA0DpSC7/If0YQD1+b9Of/f0/63O1FfsrGEDd6jnpfeMDQNAKDFnd6gNAlwFnKVnO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"thDkoIQZB0B0JJf/kD4kQEloy7kU1/E/2bERiNc1D0DjNhrAW+ANQJqZmZmZmSZAOlj/5zCfAkCKdhVSfrIYQIums5PBUfY/x0YgXtcvGUAnTu53KAoEQNWytb5IKANAai43GOqw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"27+y0qQUAUDUDn9N1vgiQF+YTBWMyvY/jnVxGw3gGkCR0JZzKQ4QQC2yne+n5iVA/5WVJqWg/T+iKNAn8mQbQBWpMLYQ5PQ/Km9HOC24G0C4rwPnjGgBQPDce7jk+AJAuTmVDABV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"skY9RKN7BUBmg0wycnYhQNr+lZUmJfQ/rp6T3je+AUC6SQwCK8cKQCibcoV36SJAvR3htOCFAEBMGqN1VNUbQAXFjzF3rfo/z/dT46WbGkDH9IQlHlAAQAK37uapTgdAbarukc1V4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vJaQD3r2DEBRFOgTeeIhQOS9amXCrwJA3EYDeAsk+T/ElEiil5EMQDhnRGlvMCVAufyH9NuXBEAcfGEyVRAZQEmFsYUgB/s/rmTHRiBeGUCbrFEP0SgAQImYEkn08gVA3PY96q/X5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RMAhVKnZ/D8ibHh6pQwUQK8l5IOeTfA/dmwE4nXdFEDaci7FVWUJQHzysFBrGiRACI82jliLBEBI4XoUrgccQFslWBzO/P4/PNo4Yi1eGEBHOC140VcAQC140VeQpgNABrr2BfTC4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"48eYu5ZQCkBHWipvR5gaQA6hSs0eaPI/vtnmxvQkEUBlwi/18yYOQPfkYaHW1CRAd4TTghc9CEAKhQg4hIodQHxhMlUwKv0/8KfGSzfpGUDhYkUNpiEBQKz/c5gvLwZAmiSWlLtP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GZC93v1xAUAMPPceLrkhQOwvuycPywVAXMmOjUD8BEDB4nDmV/MLQDXvOEVHUiVA9fOmIhWGAkC+2ebG9OQZQE7udygK9Ps/UFPL1vrCFkBqvHSTGEQAQK36XG3FfgRAoYZvYd344D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"beLkfociCEBrDhDM0RMhQPNxbagY5wlAO3DOiNKeBEDsTKHzGnsOQMKGp1fKEiVAh22LMhskAEA3bFuU2WAaQKhvmdNlMf0/SkbOwp72F0CzJEBNLZsAQCKrWz0nvQRAMv/omzSN4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Sqk/KTaCEC/mgMEc/QgQLgBnx9GCAtAdNL7xtdeAkCR1a2ekx4PQH/7OnDOyCRAysNCrWkeAUCzmNh8XBsaQCXMtP0rqwBAkGtDxTifGUAwKqkT0ET+P/1NKETAIQVAi/uPTIfO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c6JdhZTfCEDtmSUBamoZQIV80LNZFRBAPKBsyhUeAkAAdJgvLwALQPW52or95SRA7yB2ptC5AEDL2xFOC94WQA+0AkNWN/U/0zB8REypGUBDHOviNloAQHJQwkzbfwNAaOvgYG9i5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L4uJzce19T9zol2FlJ8cQCTW4lMAzABAw0fElEhiEUBy+Q/ptw8QQPs6cM6I0iVAjBU1mIbhBkB4l4v4TowaQMEcPX5vEwBAPiKmRBL9GEAP7s7abZf+P9Of/UgRmQRAxm6fVWZK3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+rg2VIwzE0BETIkketkTQKs+V1uxv/0/PGagMv79CkDwv5Xs2MgNQJhuEoPAKiVA/kP67esAA0BxICQLmIAbQPGdmPViqPY/gT6RJ0nXFkAgY+5aQr4AQGlv8IXJlAJA6MHdWbvt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ECBDxw6q6z+/SGjLuXQcQHtOet/4mhBAjX+fceEABkCIaHQHsTMKQCzxgLIpdyNAxHdi1ouhBEBZ+tAF9W0ZQLnfoSjQp/o/JuSDns0KHEChuU4jLdUBQGq8dJMYxANAW7bWFwlt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XwzlRLvKCUCztb5IaMsdQDYC8bp+QfU/xooaTMOwAECSlsrbEc4JQNlfdk8eliVAkIgpkUSvA0BO0ZFc/mMbQCyf5Xlw9/U/MSWS6GV0FECQZiyazg4AQPVnP1JEBgZAMZbpl4i35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CAPPvYfLAUA/qfbpeHwhQMISDyibcghA8KfGSzeJAUBPr5RliCMKQJwzorQ3WCdAcM6I0t4gBEBHdxA7U0gaQECk374OnPg/WwhyUMKsFUAaaam8HSEAQEqYaftX1gZAhXr6CPxh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NuUK73LRC0DyXrUy4TcgQL4wmSoYlfE/3BFOC170+z+TjJyFPS0NQAn5oGez6iRAQxzr4jZaBEDQuHAgJAsaQHDrbp7qkPM/EDtT6LzmGEDQs1n1uZoBQKXap+MxgwRAAkcCDTZ15T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mWTkLOzp9T+LNzKP/EEWQNl3RfC/lfU/GM+goX9CDEBkIxCv65cHQJkqGJXUCSRA8piByvj3A0A6r7FLVM8aQEvIBz2b1f8/O/w1WaNeF0CSs7CnHb4AQCdmvRjKCQdAT62+uipQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A7LXuz+eBEBClZo90OofQJRNucK73Pw/g2kYPiLmB0DMejGUE20KQKDDfHkBliNAbATidf0CBkDUK2UZ4rgaQA2OklfnmPQ/dxA7U+jcGUDQYb68APv/P8xdS8gHPQJA64zvi0tV2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f6SIDKv48j8gmKPH760cQB4bgXhdP/U/IxCv6xdsAkAU0ETY8DQHQHuDL0ymSiVAbkxPWOLBAUAv+grSjAUbQNC4cCAkSwFA3PRnP1KkGEBcPSe9b3wAQACpTZzcLwdAw0SDFDyF3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VpqUgm4vAUDJHww8964hQOPHmLuWEPE/NSkF3V6SAUAJpwUv+soGQJAxdy0hXyRA1EM0uoPYAEAFbt3NU50aQE4oRMAhFAFAyk+qfTp+F0AFo5I6AQ0BQGwhyEEJcwhAN/+vOnKk4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w/UoXI8CBkD4wmSqYFQgQN3sD5TbduY/3GPpQxeUBUBdiqvKvqsLQC2yne+nZiVAY7SOqiYIBECJ6q2BrRIaQPRPcLGiBv0/zjY3pifsGUAKhQg4hKr9P9iBc0aU9glAn1voSgQq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sAPnjCitBEAziuWWVkMeQEpCIm3jz+0/nNzvUBToBUBmMbH5uHYMQIbJVMGoBCVAWKg1zTuOBEBS1QRR9+EZQBHfiVkvhvs/FAX6RJ4EGUDboswGmeT9P7h1N091yAdA6GfqdYtA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"knTN5JutBUAPf03WqDchQC7HKxA9KeY/Q5CDEmba+j8K3Lqbp3oKQK/OMSB73SNA9fOmIhUGB0DtDb4wmeoXQNMTlnhA2fw/SS7/If12F0Dv/nivWtkAQGfV52or9gNAkl7U7lcB4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TaHzGrtEAUD9gt2wbaEhQJmByvj3Gdk/Onr83qY//T+q8dJNYlAGQNcS8kHPJiRAJzEIrBwaBECzKVd4lysZQOepDrkZbvw/OBCSBUwgGECLTwEwnoEAQFjiAWVT7gJAyY/4FWs44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JXUCmghbEEDpJjEIrOwgQMTOFDqvcQpALhwIyQKmF0A3VIzzN+EKQO58PzVe2iRA86s5QDAHAkDPTgZHySsZQBFTIolehgNAW+uLhLYcGUA2qz5XW3EAQLqgvmVOFwlADK8kea5v5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m49rQ8W4/D9z9Pi9TZ8bQOOqsu+KIAVAjdE6qpqg+z9fKcsQxxoQQPRsVn2udiZAGqN1VDVBA0BuaTUk7vEaQEM50a5CigBAEXAIVWqWF0DACYUIOEQBQMdoHVVNUAVAeNUD5iFT4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yk+qfToeCUBp44i1+MQhQErvG1975vk/mN2Th4UqIEBgqwSLw1kLQGuad5yiIyVALJ/leXB3BkAIlE25wrsaQHXlszwPbvM/WFaalIJuGEA9fm/Tn339Pz8AqU2c3ANAu9HHfEAg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9Bq7RPUWCkB+HThnREkeQPRTHAdeLeo/qU2c3O9Q+T9wXwfOGVEKQBWMSuoEtCRAvFzEd2IWAkDGUE60q7AbQPq4NlSM8wRAOBCSBUxAGkBvZB75g4EBQGACt+7mqQRApp2ayw0G4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"guLHmLtWDECNCwdCsuAeQNjXutQI/eU/FMstrYZE/T8Plxx3SocJQJAxdy0hnyRAHlA25QpvAUDuPVxy3OkbQLbbLjTXqQVAybCKNzKvGkC6g9iZQucBQKPp7GRw1ARA6q7sgsG14j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/OO9amXC9z86HjNQGV8fQAjm6PF7G/g/Tn/2I0VkB0Cu9UVCW04EQKmkTkATkSNAumbyzTb3C0D0FaQZi+YbQF97ZkmAGgBAlYJuL2msGkDbbRea63QAQFoSoKaWLQVA9fQR+MNP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ugq6vaQREEBPr5RliEMRQLlwICQL2ABAzt+EQgTcCkAXK2owDcMCQKciFcYWoiJAL8A+OnUlCEDWqIdodAceQN83vvbM0gJAWkdVE0QdHED20akrn6UBQH5XBP9bCQZA3Qw34PND5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"21Axzt8EAEDLSpNS0G0YQEjElEiil/s/Ag6hSs3+E0CR7Xw/NZ4CQIDUJk7udyJA0H6kiAyrB0B3Sgfr/5wbQDIDlfHv8wNAC170FaT5GUC45LhTOtgDQEF9y5wuiwRAd2fttgvN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pdqn4zHDAEAo1T4dj2kgQGbBxB9Fnew/CTiEKjX7/j8q499nXDgLQDMWTWcncyNA9fOmIhVGBkCx+bg2VCwZQIzWUdUE0fU/WOcYkL0eGUAdOGdEaS8CQM9J7xtf+wRA0cq9wKxQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zt+EQgScAEDwoq8gzSghQGvxKQDGs/A/fjUHCObo9T9CJhk5CzsIQIeiQJ/I0yJANEsC1NQyBEB2cRsN4A0YQOj2ksZonfA/wCZr1EOUGkBdiqvKvisCQL9gN2xblARArIvbaADv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5zV2ieqtAEDpZRTLLQ0XQDFCeLRxxPc/ho+IKZHECEDhRV9BmjEJQArXo3A96iVAwhcmUwWj/j/f/fFetTIaQORO6WD9H/4/CObo8Xt7GEDPTgZHyesCQJjdk4eFWgZAtmYrL/mf5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"niRdM/lmCUAqkUQvo+ghQP0TXKyowfs/wXPv4ZJjDEBUVz7L8+ANQFR0JJf/8CRAs7W+SGiLCEBjl6jeGjgZQCvZsRGIVwdAQfFjzF0rHkCQSUbOwl4BQJtyhXe5CAdAi/m5oSk75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QKTfvg5cBkBpUgq6vSQfQMh5/x8nzOo/6njMQGV8+D8e3J212y4NQPcGX5hM9SVAQNmUK7xLA0DGounsZJAdQL2pSIWxBQRARZ4kXTNZHkCkqgmi7gMDQPIHA8+9BwhAJXmu78NB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oDcVqTC2/D9MGqN1VOUiQJEnSddMPgBAF58CYDwDCkDl0CLb+b4KQN0kBoGVwyRAmFEst7SaAkC8s3bbhQYZQCVATS1ba/8/Plxy3Cm9GUBxVdl3RbABQLyWkA96tgdA9bnaiv1l5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OPOrOUAwFUCVmj3QCkwJQFg5tMh2/gNAZB75g4EnHEAuVtRgGsYMQGWlSSno9iNAaLPqc7WVAUDF5uPaUDEaQJfFxObjWvk/e9rhr8maGEAu51JcVXYAQAspP6n2aQRAxEFClC/o4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w9MrZRmiDkD6NN2hF6SPPxe86CtI8w5AuB6F61F4LkDdzVMdcrMOQFafq63YXyRAveMUHcklAUAsgv+tZGcZQKTC2EKQA/c/Nh/XhorxF0A5l+Kqsi8AQDm0yHa+HwVAJLcm3ZZI4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HZQw0/ZvCEAH8BZIUPwOQAmnBS/6ivA/BHP0+L1tFEAc8PlhhHAOQHPXEvJBzyRArOKNzCN/AEBRa5p3nOIZQBLaci7FFQBA8s02N6ZHGEDn49pQMQ4CQDXSUnk7QgdARga5izBF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EqCmlq31BkAnwoanV3oiQKRTVz7LkxVAcSAkC5hABEC6g9iZQqcJQHUCmggbniVAsyRATS0bA0AhWcAEbh0YQCUGgZVDCwJAs+pztRV7HUCJDKt4I7MAQNGWcymu6gRAHAdeLXdm5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IHu9++M9DkDizK/mAAEBQEta8Q2FT+k/yR8MPPe+HkA0LhwIycIMQG+BBMWPcSRAOiNKe4MvBkA9uDtrt10bQKG+ZU6XRQdA6X3ja8/sG0ALRiV1AtoCQA+0AkNW9wVAv0aSIFwB3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T135LM/DCkAlI2dhT3sRQCV6GcVySwNAat5xio5kJ0D5g4Hn3kMNQARWDi2yHSZAXBsqxvlbAUBV9l0R/M8ZQHTOT3EceO0/eO49XHI8GUDdXtIYraP6P0aZDTLJiANA2bRSCOQS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XTP5ZptbCUAjoS3nUtwZQJ3YQ/tYQe4/nYU97fCXAEC7uI0G8JYKQDlFR3L5byRAmRJJ9DJKBECHokCfyJMaQHHmV3OAoAVAKEnXTL6ZGUCm7V9ZaZIDQNFXkGYs2gRALUKxFTQt2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3SQGgZVDCEBuUWaDTNIcQAyP/SyWItk/T0ATYcMTCEDL2xFOC14PQMpUwaikTiRAvOgrSDOWBEBRFOgTeTIbQHfzVIfcDARAtLCnHf5aHUBwd9Zuu5ACQODzwwjhUQZARpkNMsnI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mQ0yycjZBkCk5NU5BiQUQM9m1edqq/Y/Z/LNNjdGFUD+SBEZVjEQQJ/Nqs/VFiRAWyVYHM78A0AqjC0EOYgYQAZHyatzzAFA5KCEmbbfHUB8CoDxDBoCQFfsL7snzwdA4KC9+njo5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4PPDCOFRBkASTgte9JX/P1Yo0v2cgus/s++K4H+LGkDc14FzRpQLQFR0JJf/MCdAZapgVFLnAkBbJVgczvwaQIV3uYjvxAJAtcNfkzWKGEBP6WD9nwMBQEuTUtDt5QNAHLeYnxsa5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4pLjTulgBkA3bFuU2aAVQL0A++jUlfg/Nh/XhophIUCOWItPAfAJQFioNc07ziJAZyyazk7GCEBqh78ma5QbQIFDqFKzRwJAZd8Vwf+WHEALRiV1Ahr9P/aX3ZOHxQRAETXR56OM2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RiV1ApqIAUCxM4XOaywdQGB2Tx4WKgBAbjSAt0CiE0A1Y9F0drIMQLG/7J48TCRAt3pOet/4BECjkjoBTWQcQB1VTRB1H/4/OiNKe4OPHUBUOlj/5zD+P1pHVRNE3QVAdhvUfmsn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xRuZR/7gAEAfEVMiiX4fQJYkz/V9OO4/JuSDns1qA0CXOV0WE5sHQFYOLbKdLyVAWg2Jeyz9AkCdRloqb4cXQA3gLZCgOAFAZF3cRgP4GUCcxCCwcuj/P+IeSx+6oAZALuV8sfdi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uDtrt12oAEA9m1Wfq20dQJbRyOcVz+c/Uiy3tBoS+z+4AZ8fRsgFQPkP6bevwyRAmWTkLOypA0AZyol2FVIYQP/PYb68gPk/RbsKKT9pG0BcWg2Je2wAQP3ZjxSRIQdAIcoXtJCA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NpNvtrmxCkBHdxA7U8gbQHqp2JjXkeo/8Uv9vKmIA0C70FynkVYKQMf0hCUecCFA4lgXt9FAA0B/9iNFZDgbQM07TtGRHARAXVDfMqdrGUCI1/ULdgMBQKp9Oh4zUAVAy0xp/S2B4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LzTXaaSlBkBo0NA/weUdQGSSkbOwp+k/jdE6qpqg/T+UTbnCu9wJQCwrTUpBRyFAvYxiuaXVAkALYwtBDkocQO2ZJQFqKgRAlgm/1M/bGECjO4idKbQAQBuBeF2/4ARAjpCBPLv84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sRafAmB8B0Aa3UHsTCEcQMgHPZtVH/A/nil0XmMX+z8jvhOzXkwKQCqMLQQ56CJAp7OTwVHyBED+YOC593AZQLml1ZC4hwJALhwIyQImHEAHX5hMFYwAQGUBE7h1NwVAxw+VRsxs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wD46deUzB0Dv4ZLjTjkgQPrVHCCYo/s/9b7xtWcWBkDsTKHzGrsEQKipZWt98SJA1v85zJdXB0AipkQSvWwdQDMzMzMzswBAehnFcktLGUAgtYmT+90BQJW3I5wWPAZAyatzDMje4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"odY07zgFA0CrBIvDmb8UQH7k1qTbkuU/y6FFtvOdFkBlU67wLlcIQMe6uI0GkCRAgufewyUHBUB6jV2iessZQIl7LH3ogvo/CRueXimLGkCM1lHVBJEAQBBYObTI9gRAIa8Hk+Jj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Ugu/yF9A0CeXinLECcbQGx4eqUsQ+U/lpUmpaC7HkCyYyMQrysLQNxGA3gLBCVA6MHdWbstA0DMejGUE60eQFmGONbFLQVA6lvmdFnsHEDl8h/Sb58AQKA3FakwtgdAnwWhvI+j4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dmwE4nV9AEAeigJ9Ik8TQFg5tMh2PvI/QbyuX7DrIkCvX7Abtm0LQPaX3ZOHhSRAguLHmLuW+z8Gu2HbouwWQNcS8kHP5vY/0qkrn+VZFkAkYkok0cv/P+5aQj7oWQRArBkZ5C7C4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YHZPHhZqBkCuKvuuCF4QQLdgqS7gZeo/I2dhTzt8DkAfSx+6oD4MQDXvOEVHEiZAy/Pg7qxdA0AOLbKd70cWQLvQXKeRlvw/C3va4a9JF0A7AU2EDY8DQOFFX0GaMQNAq+rld5pM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"12mkpfJ2BEAbDeAtkDAhQNIBSdi3k+g/wsBz7+GSAkCeew+XHPcFQJqUgm4vCSNAPGu3XWhuAECZ2HxcGyobQEWeJF0z+QFABHP0+L2NG0BeaK7TSEv9P4Vf6udNRQVAFAfQ7/s34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t5xLcVWZBkDg88MI4bEcQCi2gqYlVuM/n47HDFSGE0BQ/Bhz1xIIQBZqTfOO8yRA/1vJjo1A/z+/Q1GgT8QXQDJVMCqpE/4/Mo/8wcATGkBivrwA++j+P5V9VwT/GwNA+wW7Ydsi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZeQs7GkHB0Ae4bTgRR8VQC/6CtKMxeY//pqsUQ9REECSeeQPBl4LQA6+MJkqGCRATRB1H4CUAUCVgm4vaQwXQH7ja88syQFALT4FwHjGGkCLGkzD8JH+P1VNEHUfwAJAZapgVFKn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"12mkpfK2AECjAbwFEiQgQKpDboYb8PI/svShC+obBUCoUrMHWsEKQME5I0p7gyZAMC/APjr1AUD+mqxRDxEaQOQs7GmHv/c/oBov3SSmFkBKRs7CnvYCQJYhjnVxGwVAVTTW/s524j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/+xHisgw/j+5jQbwFsgfQHZxGw3gLfU/S7A4nPlVAUD4ja89syQMQJ88LNSaRiVA0LhwICTLA0DoMF9egN0aQDcawFsgwfY/kxgEVg7tGkAYeO49XDIBQMdLN4lBYAVAnyEcs+zJ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CwxZ3er5B0Cn6Egu/2EfQC457pQO1gFA+I2vPbMkAUAnoImw4ekLQDcawFsgwSRAzCiWW1rNB0DcnbXbLvQcQN481SE3Q/o/sCDNWDS9F0BrmnecoqMBQIM0Y9F0dghAAoOkT6to5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"48eYu5ZQB0DuztptF1ofQMFTyJV6Ftk/UORJ0jUT/j8+0AoMWR0HQDy9UpYhDiVABARz9Pi9/j/G+ZtQiOAWQM2SADW17AVArwj+t5IdHEDRV5BmLJr+P7IRiNf1SwNA4nSSrS6n3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LJrOTgbHBkBvKlJhbPEgQJQzFHe8ydk/dQKaCBue/j+1w1+TNaoGQN9PjZduciVAsTOFzmts/j+il1EstxQXQIWUn1T79ARAMZQT7SqEHEAL0oxF01n/P54pdF5jVwNAv/T256Ih4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nl4pyxCHCkBnJ4Oj5JUaQAouVtRg2gxAgGCOHr83B0DRlnMpruoMQP5D+u3rACRA4XoUrkdhBEC8s3bbhUYbQF3Ed2LWi/E/61bPSe+bFUD7P4f58gL+PxGN7iB2pgFA2gQYlj9f4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FZFhFW8kEUDSb18HzhkbQDl/EwoR8P0/valIhbHFBEBI+Um1T8cMQJtVn6utOCZACRueXinL/D+gppat9eUaQA+XHHdKhwJASKeufJYnGkAAV7JjI5D+P4eiQJ/IUwdAxhnDnKBN3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"thDkoIRZAUBFuwopPzkhQKUUdHtJ4/w/wAmFCDhEFkCiKNAn8uQOQEoMAiuHtiVAJ07udyhKBkAB3gIJit8YQLSOqiaIuvs/rthfdk8+HEClg/V/DvMBQM07TtGRHARAoidlUkMb5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6gQ0ETa89z9tVn2utmImQJ8fRgiP9gFAZ2FPO/y1IECbyTfb3NgPQOoENBE2XCdADhXj/E1oBUBtkElGzqIeQML6P4f58gFAp5GWytsxGUCy9KEL6hsBQM9m1edq6whApIy4ADTK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q1s9J73vAEAqAMYzaKgfQDMzMzMzUy9AM8SxLm6DHEAXghyUMNMQQC2yne+n5iZAjbRU3o4wBUDidf2C3dAZQM78ag4QDABAvHmqQ25mGkAoSddMvhkBQDxO0ZFcPgZA0qdV9Ifm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VWr2QCswvD+DL0ymCoYRQKQ2cXK/QwRAtTf4wmTqB0AeM1AZ/34IQMuhRbbzXSRAHtydtdtuAUDv4ZLjTqkYQDoGZK93fwBA30+Nl24yGkD7rgj+txL8P6eRlsrb0QBAqMR1jCsu3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y9sRTgseEUB8YTJVMKomQIAr2bERCABAWmQ730+ND0C2+BQA43kRQMcpOpLL3ydAd/NUh9zMAkCoHf6arLEYQD1+b9OffQBAvMtFfCeGGkARx7q4jYYBQE60q5DyUwdA31LOF3uv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hA1Pr5TlFEAT8kHPZpUkQFVNEHUfAPo/jgbwFkjQEUBkQPZ698cRQJeQD3o2aydA2PD0SlkGA0A2PL1SliEYQN/gC5OpwgBAB/AWSFB8G0DJAiZw6y4CQBaHM7+agwdA7DAm/b2U5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7N0f71Ur+j+aCBueXgknQHBfB84ZkQtAX+/+eK/6HEDQ1VbsL3sNQKMjufyHFCZA+5EiMqyiAUDONjemJ4wZQJ9x4UBIlvw/vhOzXgxlGkDQm4pUGBsAQPiImBJJNAZATYbj+Qwo5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+FPjpZtE7j/MXUvIB90oQElL5e0IJ/0/1H0AUpsYFEBXz0nvG18OQOOlm8QgMCVA2IFzRpT2BEBsPq4NFUMcQLu4jQbwlgJAiEZ3EDszGEBCIQIOoUoAQDdPdcjN8ARAnS0gtB4+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A7ABEeLK6T96Nqs+V1spQPCnxks3CQFAyhr1EI2uFUBBvK5fsNsOQFHaG3xhUiRA6lvmdFkMBEA50a5Cys8bQGmpvB3h9ABAs+pztRU7GkCcxCCwcigBQEXY8PRK2QRAqkca3NYW4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xb9gN2xb+D+jHqLRHcQLQP1qDhDMkQBATI47pYO1E0CIaHQHsfMOQK62Yn/ZHSRApz/7kSIyAUDDgZAsYEIZQMA+OnXls/8/0a5Cyk9qF0BJnYAmwob/P9fdPNUh9wVAkBK7trfb4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5xiQvd59B0DTvOMUHSkQQHx+GCE8WvI/3pOHhVrzFED7P4f58kILQLx0kxgEliVA0H6kiAwr/z/zPLg7a9cYQMFWCRaHs+0/26LMBpkEGEDtKqT8pBoAQIlBYOXQIgRA0bLuHwtR4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HZQw0/bvCkDmV3OAYK4YQGcKndfY5RZAdqbQeY2dCUAjMqzijYwJQOqVsgxxbCRAP1JEhlV8AEDo3sMlx/0WQHEbDeAtkPg/fPKwUGu6GEC3C811GqkAQPXWwFYJlgRASnzuBPuv4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0jWTb7a5BUBIFjCBW/cZQDdxcr9D0RFAb9Of/UjRB0Cr56T3jS8OQBbB/1ay0yNAsaIG0zB8AkDaG3xhMpUYQI5Yi08BMPk/jgbwFkhQFkBR9wFIbWL/P7xcxHdiFgFA3Qw34PND4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7PoFu2EbAUB+VwT/W4kgQGwm32xzY/4/Zw+0AkNWAUATuHU3T7UNQJm7lpAPuiVACHJQwkzbAkBwtrkxPaEZQDbNO07Rkfc/avtXVppUGkCbj2tDxbj/P0+Srpl88wVAuCBblq/L0D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xawXQzmRC0DSb18HzrkXQInt7gG6L+M/oYSZtn+lDUBbsb/snjwLQPKwUGuaNyRAXwzlRLvKBEA3N6YnLHEaQEa28/3UeAJAwhcmUwUDGUA3N6YnLPH8P41iuaXV0AJAh22LMhtk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k1LQ7SUNBUAQWDm0yJYWQBr6J7hYUeA/LNSa5h3nDUDjGTT0T7AIQEp7gy9MZiRAavZAKzBkA0CpvB3htCAZQFc+y/Pgbvw/raOqCaJOGUBfKcsQx7r7P0dVE0TdxwJABitOtRZm5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Oe6UDtb/FUBRFOgTedIhQGjLuRRXJSJAiPTb14Hz9T/5FADjGfQMQFpkO99P7SRAXmOXqN7aBkD7IqEt53IdQIkHlE25wvo/cy7FVWV/GEA/V1uxv+z9PzMzMzMz8wJAbApkdha92z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JCh+jLkrDkCjBtMwfAQgQJ/leXB3VvU/gq0SLA7HFkAEIVnABK4NQEku/yH9diVAvw6cM6I0AEATChFwCPUWQLRxxFp8SgBAZcIv9fOmGkDAWyBB8SMCQI16iEZ3UAlAvqHw2To45j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TihEwCEUDUD7kSIyrJIjQIBgjh6/t/0/42vPLAlQBkAzbf/KShMHQNszSwLU9CNAN3Fyv0MRCUAbu0T11gAdQDlFR3L5D/A/SfQyiuW2GEBN845TdKT/P6LRHcTOFARAoPmcu10v5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cVXZd0WwAEC5pdWQuAcgQPjDz38PXuk/QX3LnC7LFUA75Ga4AR8NQJhuEoPAaiRA7IZtizIbBkBSD9HoDoIcQJRqn47HjP0/9pfdk4elGUBbmfBL/bwBQFw4EJIFTAVAK8O4G0Rr5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0a5Cyk/qCEDayeAoefUbQLxXrUz4JfQ/G4F4Xb8gG0DhC5OpghEJQBe30QDeoiRAn3HhQEjWAkCeQUP/BHcbQPHXZI16CPk/tOVciqsKGUDMYmLzcW0AQOauJeSDHgVACXB6F+9H5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aoe/JmtUAkCaX80BgrkDQPfpeMxA5QlAKPIk6ZppHUAoLPGAsukHQGaIY13c5iRALsVVZd9VA0AsSDMWTacYQAq/1M+bCvw/eAskKH7sF0AhPNo4Yu0AQMPwETElkgNAEhPU8C2s4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AaQ2cXK/AUBnCp3X2CUDQNjTDn9NFhxAbm5MT1jCIUC0AkNWtzoJQJCg+DHmTiVAeJeL+E5MA0C3XWiu02gYQDAvwD46df4/kL3e/fG+GEAFxY8xdy3+PzhnRGlvMAFAl3DoLR7e3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dvj8MEL49j/2KFyPwhUVQN4CCYofYwlAls/yPLibI0Ch1jTvOEUKQDJVMCqp8yRAsi5uowH8AUDKbJBJRm4YQF+1MuGX+vk/zvxqDhBMGUCc3O9QFGj8P8gkI2dhDwRAEmxc/67P4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VU0QdR+ABUC1/SsrTeoRQPg2/dmPFP4/gnNGlPYGHEBl3xXB/xYOQBsv3SQGYSVA29yYnrAEAEAFqKlla10aQAexM4XOa/o/7Z48LNR6GUCndLD+z+H8P+KS407pIANAd0gxQKIJ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bVZ9rrbiBkCeB3dn7fYbQKRwPQrXYwBAuTZUjPO3B0BPXfkszwMPQAu1pnnHqSRAofgx5q4lBkCPcFrwoi8bQNS3zOmymP4/Oq+xS1TPGkDayeAoeTUCQPcBSG3iJAZASWWKOQg65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0VeQZiwa+T9S7dPxmHEhQHnMQGX8e/M/izcyj/xB/T8dyeU/pF8MQIZa07zjNCZARpkNMslIA0CInSl0XiMZQFFrmnecYgJAtB8pIsNKGkDjiLX4FID/PzQRNjy9EgRAr7SM1Huq5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hNiZQuc1CEBy4UBIFjAaQGagMv59Rvc/BP9byY4NCUAfotEdxA4HQHwKgPEMWiJAwcWKGkzD/T+qSIWxhUAYQNlaXyS0ZfQ/+IiYEkn0GUCaQuc1dokCQAfr/xzmSwdAa0jcY+nD4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f2399J81wT9P6WD9n0MZQAN4CyQoPgdApn7eVKTiEUAexM4UOi8LQLTIdr6fmiVAnu+nxkt3BECp2QOtwDAYQGCrBIvDmfo/0JuKVBh7FEAyj/zBwPMAQJXUCWgi7AZApFAWvr7W5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+WabG9OT9j/HgOz17u8fQNb/OcyXFwlA+1dWmpQCD0BRa5p3nOIMQHgLJCh+rCRA9BWkGYvmBUCkx+9t+hMcQHLEWnwKAPs/PZtVn6vtG0AjoS3nUpwAQNcXCW05FwRAER5tHLEW4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IeUn1T4dBUDEfHkB9sEhQMfVyK60jOk/G0esxadADECuDRXj/I0HQE8eFmpNUyRAvCL430q2AEDw+WGE8IgaQGcPtAJDFgJALEgzFk0HGkC+E7NeDGUAQC+jWG5pdQRAoYSZtn9l5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r1+wG7YtBkANq3gj82gfQEPk9PV8Te0//3ivWplw9D/A7J48LBQAQE5FKowtFCNAg4b+CS7WBEALKT+p9gkaQHE9CtejMABALPGAsil3GEBhVFInoMkAQP94r1qZMAVAXtvbLcmB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"acai6ezk+j/8+4wLB0IdQJNuS+SCs+o/5SfVPh0PAkAJih9j7toDQHqlLEMcGyNAHaz/c5jvA0BGCI82jlgZQJYEqKll6/k/e9rhr8laGkBFgT6RJ0n/Py3Pg7uzNgNAf/j578Hr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7MA5I0p7/z9aEqCmlu0dQPJh9rLttOQ/svShC+obCEBUqdkDrUAKQJZDi2znOyRAGGAfnbpyAEAe/pqsUU8YQMzuycNCrQJAZB75g4GHGUAyj/zBwHMBQJusUQ/RqAVAuDtrt11o4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"18BWCRYHBkAbL90kBhEjQIT1fw7z5es/A1slWBwOAEAw9fOmIlUHQOcdp+hIjiVALgQ5KGGmBUDJdr6fGq8XQLCPTl35LPk/30+Nl24yHECOdXEbDWD+P10WE5uPKwRAkjtsIjMX4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zzEge717C0DBi76CNMMeQAaeew+XHPE/R8mrcwzID0BXlX1XBH8MQN8Vwf9WMiNAvQD76NSV/T+/8bVnlqQaQD6zJEBNLQNAOl0WE5tvGECdgCbChicDQH4YITzauAdAQbtDigES4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bRyxFp/CBkAhsHJokW0hQFdD4h5LnwFAwCZr1EO0EEAWGLK61TMKQNfdPNUhNyNA5ZttbkwPAUDXNO84RWcaQGsOEMzR4wFAUPwYc9dyGEDJHww8954DQETdByC1SQhAoffGEAAc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wg2Jeyz9/T8C2evdH28fQPN1Gf7Tjew/2T15WKg1/z9bQj7o2WwCQBx8YTJVkCRA8Uv9vKlIAUCKAn0iT/IZQM+9h0uOu/4/YKsEi8M5GED2KFyPwrUAQDdxcr9DUQZAEEHV6NUA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G55eKcsQCEAE54wo7W0fQDiCVIodjeY/cRsN4C2Q+T9wlLw6x8ALQJy/CYUI+CJArWnecYoOBkAhzVg0nV0ZQNi7P96r1gRAMdP2r6w0HkC3RZkNMgkCQNDQP8HFCgdA+ir52F2g5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DtsWZTaIBkBmZmZmZoYfQIjWijbHudE/SP5g4Ll39T+kiAyreGMIQCegibDhuSNAy0qTUtDtB0BTrvAuF/EZQCkF3V7SWARAclDCTNs/HkAf9GxWfS4BQMmwijcyzwZAqvQTzm4t5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z04GR8nrCUB/pIgMq9ggQCRgdHlzuM4/SL99HTjn9j9ZUYNpGL4KQE3zjlN0xCRAGeJYF7fRB0Bqh78ma1QaQOXVOQZkLwtAhGQBE7jVH0D4ja89s2QCQGPuWkI+aAZAI9xkVBlG5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QBNhw9Mr9j9qGD4ipqQcQIm1+BQA4/0/qyFxj6VPDUAs1JrmHacLQJ2FPe3wxyNA+3lTkQpj/D8hByXMtP0bQIGSAgtgSu0/5/up8dJNFUAOoUrNHmj+PxkEVg4tsgNA34eDhChf3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oBUYsrrV/j/yDBr6J3gfQOOItfgUgAFAyjfb3Jh+HkCAmlq21pcNQEvIBz2blSVAA30iT5LuBEC4I5wWvKgZQMwLsI9OXfc/Px2PGagMFkBSJ6CJsGH/PyibcoV3eQNA3uUivhOz3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U7ExryMO6z+0ccRafLojQJsb0xOWeANAsyRATS1bD0ANGvonuFgPQMxdS8gHHSZAQSswZHWrA0Bn1edqK1YbQF2mJsEb0u4/q7LviuCfFUBaZDvfTw0AQK6BrRIsTgZAKNU+HY8Z4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x7q4jQbw9D+Fd7mI78QjQEUSvYxi+QRA+b1Nf/YjDkAYJlMFoxIOQKg1zTtOUSZAsKw0KQUdA0BgkzXqIfoZQEvIBz2bVfM/mKPH7236FUCe76fGS7cAQGtI3GPpgwZAoMIRpFLs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jnVxGw1gBUB5WKg1zVskQDqvsUtULwxA7s7abReaHUBaEqCmlm0OQPVKWYY4NiZAPbg7a7fdAkD/If32daAZQN7lIr4T8wNArrZif9ndG0AfuqC+ZU4CQJYEqKll6wJAOPWB5J1D4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0jqqmiDqAUDJ5T+k314mQBsN4C2QIPc/ZOlDF9S3C0ArpPyk2mcNQJM6AU2EbSZAHm0csRZfAkAUyy2thmQZQMrDQq1p3gNA51JcVfa9G0BTIoleRjEBQJCIKZFELwNA7mDEPgEU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qcE0DB+REEBQwkzbv9IWQHReY5eo3v0/OL72zJKA+D/uJY3ROuoNQBE2PL1SViRAUDblCu+yBEBtrS8S2tIaQLt+wW7Ytv0/mIbhI2LqGUC2vkhoyzn+PxxClZo90AFAtr+zPXpD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M4rlllZD/T+BBMWPMdckQCScFrzoK/A/MlUwKqkzEkDnAMEcPT4DQNbFbTSAFyRALv8h/fa1AkDdtYR80BMZQMnlP6TfPvs/PWGJB5StGECyutVz0rsAQExUbw1s1QVAU5EKYwtB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gbIpV3jXAUCg4GJFDUYXQOfG9IQlHtU/4XoUrkdh8z8uymyQSYYGQFsIclDCjCJAFVJ+Uu2TBEDkMQOV8U8aQBSzXgzlRAFAQGoTJ/dbG0Drc7UV+8sBQOqymNh8HANA6NuCpboA5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LpCg+DHmA0DQJ/Ik6ZoYQOli00ohkMs/SnuDL0wm8D8IlE25wrsGQG5pNSTusSJATaHzGrtEBUBGtvP91FgaQNc07zhFBwFALLe0GhJ3G0DnAMEcPX4BQORO6WD93wJAda+T+rI05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vw6cM6K0BUAPRYE+keceQP1pozodyNU/PbmmQGZn7z9v2LYos4EHQDm0yHa+TyJAkDF3LSFfBUAuxVVl33UbQLxcxHdi1v0/6Q5iZwo9G0DFA8qmXCEBQOpb5nRZzAJADkqYafvX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0xOWeEBZ9T+Wz/I8uEsgQG05l+Kq8g1AOsyXF2DfAUCLTwEwngEGQPVKWYY4ViRAti3KbJCJBkCGG/D5YUQaQIWxhSAH5QRA+U7MejH0GEBSCrq9pLH+P1GIgEOoUgNAsTOFzmvs2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jGfQ0D9B9z8urYbEPfYXQB+6oL5ljgtAxEKtad4BIkAcfGEyVbAJQHQMyF7vriNAVaTC2EJQA0AQr+sX7MYcQCdO7ncoCgRA+rMfKSLDGkBYqDXNO84AQDihEAGHUARADat4I/PI3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x/KuesC85T9PQBNhw+MiQM78ag4QzAxAGmmpvB3h/T9ubkxPWKINQNxoAG+BRCdAJNbiUwBMBkAep+hILl8YQEi/fR045/M/c/T4vU2fGUCf5XlwdxYAQEG3lzRG6wVAYK+w4H7A4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Di2yne/nB0DxKQDGM6gDQFO0ci8wK+E/wJXs2AjEFkA0aOif4OIJQGXfFcH/ViNAipP7HYrCBEALYwtBDooYQOgTeZJ0DQJANLqD2JniGkA6zJcXYB8AQFWkwthC0ARAzZTW3xIA4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qKlla31RA0DFOH8TCtEGQCfChqdXCghALexph78mIkA2sFWCxaEGQDEIrBxaZCRAEAaeew+XBUBSflLt0/EaQIiFWtO8Y/s/TrnCu1yEHECc4QZ8ftgBQJDaxMn9jgRA1zOEY5Y94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0vvG154ZCEBIp658ltcgQCQmqOFbWNc/81SH3Az3B0AFFytqME0LQIfEPZY+NCNAizcyj/xBBEDQm4pUGFsYQJzEILByqAZAqvHSTWIwGkBzgGCOHv8BQE9Y4gFlkwhA2gJC6+HL5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SiTRyyhWB0C0jqomiBoaQJZ5q65DNec/ERlW8UbmB0D7P4f58gIKQGFUUiegySVAHm0csRafCEDw+WGE8MgcQE1nJ4OjZARAxAjh0cZRH0COHr+36U8CQJKumXyzjQdAYp8AipEl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D7kZbsCnBUCn6Egu/yEjQEUqjC0Euek/h+EjYkqkBUCt+lxtxb4MQEGC4seYuyVA/wkuVtSgBUDq7GRwlDwdQC/APjp15QNACmgibHj6GED/eK9amXACQHdn7bYLzQtAi/okd9jE5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S6shcY9lCUDtgVZgyGoiQG5pNSTucQZA1EhL5e0IAEA5nPnVHKAIQA1xrIvbKCRAVwT/W8lODUCX/5B++xofQAe2SrA4HPY/TKYKRiUVG0A2zTtO0dEEQBcrajANwwdAUKp9Oh4z5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w9MrZRliAEBS7dPxmOEhQBVYAFMGDuk/2T15WKj1D0CcM6K0N7gNQFvTvOMUPSZAQiYZOQt7CUDayeAoeXUcQJF++zpwjgNAw0fElEjCGkAj88gfDHwEQAQEc/T4fQdAzHucacL26D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yf2fw3w5DUCEns2qzzUkQJQw0/avLBdAx0YgXtfPEECRuMfSh24RQINRSZ2A5idAptWQuMeSB0CXVkPiHmsdQCLDKt7IvPY/9rTDX5M1GUDrbp7qkNsAQCV6GcVySwZAC/FIvDyd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qmBUUidgAECKyLCKNzIWQL2NzY5UX+A/JO6x9KFLBEAnMQisHJoHQLpJDAIrZyRAzywJUFOLAECqSIWxhQAaQN21hHzQs/c/6/8c5strFkAHX5hMFQz/P+JYF7fRwARA6E1FKoyt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g8DKoUX2B0DqspjYfHwhQAexM4XOawtAlSu8y0V8+D/zH9JvX0cJQO5fWWlSiiJAwhcmUwWjCEDSjEXT2QkbQOXyH9Jv3/Y/vTrHgOyVGkDmeXB31m7+P/3BwHPvYQRAISOgwhEk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9S1zuiwmBkAtIR/0bPYfQDZ4X5ULFeQ/X1yq0hbX7j+PpQ9dUF8IQL0Yyol2RSNAuVM6WP/nBEAZ529CIcIdQG+70Fynkfs/6IL6ljl9GECze/KwUKsAQFDkSdI1EwVAiQtAo3Rp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Oe6UDta/BkD0GrtE9SYgQL76eOi72+k/k2+2uTE9FkCHM7+aA8QKQPCFyVTBaCVA5L1qZcIv+z/GhQMhWeAVQJT7HYoCvQFAv9TPm4o0G0CBPpEnSVcAQFGgT+RJEgVAUWnEzD6P4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MbYQ5KDEDkANpmH4iPgbQE9AE2HDUwRAGGAfnbryEEBDc51GWqoJQHuDL0ymqiRA6gQ0ETb8AEDS+8bXnrkWQFjFG5lHfgBApKoJou5jGEAzG2SSkbMAQBkEVg4tcgZAtksbDkuD5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uJIdG4F4/T+if4KLFUUhQB5ssdtnlds/Ugq6vaSx9T/2KFyPwnUGQEmil1EsVyNAwD46deUzAkBNLVvriwQYQNOf/UgRGQBAKowtBDnIG0BNMnIW9rQBQJccd0oH6wRAuTR+4ZWk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"81meB3dnAEBblNkgkwweQJOmQdE8gOE/YYkHlE059j/HuriNBnAGQH0iT5KuqSNAWrvtQnPdAUB40VeQZiwYQGPRdHYy+ABA8nub/uxHG0CjAbwFEtQBQJMANbVsrQRAusDlsWbk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s3vysFCrCkBmiGNd3OYkQISezarPVfo/G9gqweLAIUBenWNA9noIQP5D+u3roCVAjq89syTAAkD7XG3F/hIVQJOMnIU97fM/76zddqEZGUDv5qkOuZn/P4tx/iYUYgVAF35wPnWs2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v9TPm4oUA0BnRGlv8CUaQIenV8oyxPA/Lv8h/fa1KUDU8ZiByngIQKMBvAUSVCZAiIBDqFIzBkAzxLEubuMUQF5LyAc9m/Q/kKD4MeYuG0CcxCCwcmj+P9Of/UgRmQRAUInrGFdc3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m+Ydp+hIB0C/mgMEcxQQQGms/Z3t0es/96+sNCllH0BkO99PjZcLQHo2qz5XeyVAGqN1VDXBBEAhByXMtF0VQDc3pics8fw/KxiV1AmoG0BSflLt0/H9P/s/h/nywgZAVkRN9Pko1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uVM6WP+nAEBdxeI3hZXOPwKCOXr8XvM/Ece6uI0mF0BBn8iTpCsOQO58PzVeWiZATaHzGrvE/D/SxhFr8YkYQKgAGM+gIfo/WYY41sXNE0AH8BZIUPz/P+GX+nlTkQZAbhXEQNe+2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1SE3ww24A0BZF7fRAJ4TQCBB8WPM3QRAOkAwR49/G0C86CtIM9YLQNRIS+Xt+CJA86s5QDDHBkCGWtO84zQXQMLdWbvtwvg/hSUeUDYlGEAyychZ2JMBQB2UMNP2rwZASMX/HVGh4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iQeUTblCBkBi26LMBhkLQMhhMH+FzNs/soAJ3Lq7G0DmV3OAYI4LQNc07zhFZyVA4QuTqYJRA0AabsDnhxEYQCUjZ2FPu/w/bTmX4qoyGUBNSkG3l7QBQGDNAYI5+gZAMSb9vRSe4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eSPzyB9MCkBlwi/187YiQEBNLVvrywJAzqW4qux7CEAYz6Chf4IPQJ+rrdhf9iRAz4O7s3ZbA0D/eK9amfAaQPOOU3QklwBAvHmqQ26GGkBortNIS2UBQDtwzojSngVA6BTkZyPX5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bRyxFp8CCEAdlDDT9k8aQOaWVkPinvM/Bi/6CtKMAkD5oGez6hMQQOM2GsBbACZAF/GdmPUiBEDDR8SUSOIZQJ+T3je+9vg/SP5g4LnXHEDRV5BmLJoBQI/f2/RnfwdASrVPx2MG5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gy/dJAYB/D9Bt5c0RgscQI1F09nJ4PI/U7MHWoHhBEA3jliLT0ENQHDOiNLeICdAHsTOFDpvBEBeLuI7MUsaQN8yp8tiYvY/H7+36c/+GkBKQbeXNEYAQAqFCDiEKghAoiqm0k845j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2SWqtwZWEUA/48KBkEwTQBHfiVkvZhBAOgZkr3cfGUCz6nO1FfsMQBNhw9MrpSRApyIVxhYC/z875Ga4AX8ZQAhagSGr2/Q/7Sqk/KRaGkDarPpcbUUAQEG3lzRG6wFAswjFVtC03T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s0EmGTnrEUB7FK5H4eohQJ9ZEqCmVgZAvTrHgOw1B0D7ljldFpMMQCBB8WPM3SVAgT6RJ0mXBUBL5e0IpyUZQI+qJoi6DwJA3bWEfNBTGECPcFrwoi/9P6foSC7/YQRAfERMiST64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x4Ds9e6PE0Ct+lxtxR4lQPT4vU1/NghAaR1VTRB1C0CQiCmRRC8IQCnLEMe62CRASP5g4Ln3CkAHzhlR2hscQAZHyatzDP4/VwkWhzPfG0DsL7snDwsBQH2zzY3pyQJAhlW8kXnk2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AFKbOLlfE0CoV8oyxFETQMmwijcyDwtAKdAn8iTpBkAf9GxWfS4MQOtztRX7CyZA1EM0uoPYAUD1udqK/cUXQMe6uI0G8PY/ahMn9zt0G0CLMhtkkhEAQGJKJNHL6AZAW9O84xSd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aJHtfD/1AEBzol2FlF8JQPeSxmgdlQpAxf6ye/LQLkCrsu+K4J8RQOoENBE2vCZA/IwLB0JyAUDrrYGtEmwaQJkSSfQyigFAmGn7V1Z6GEBI/mDguTcBQAOy17s/3gNAaRzqd2Hr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ZQrvMvFB0AYITzaOKIIQCGsxhLWxuo/qYdodAcRFED186YiFUYPQBzr4jYaQCZAcjPcgM+PAEC3KLNBJlkYQPRsVn2uNvw/yqZc4V1OGkCygAncutsAQOi8xi5RfQNACOi+nNku5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n47HDFTGBkAgY+5aQh4gQBHfiVkvBvY/lltaDYlbH0Ck374OnDMOQPLSTWIQGCZAKuPfZ1x4BUC0yHa+nzobQNEi2/l+6v8/s5jYfFzbGUDvVSsTfin+PwSQ2sTJ/QRAOQzmr5C51z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rTQpBd2eAUDAz7hwIOQOQFGDaRg+wh5A0h3EzhQaFEDoaiv2lx0QQHnpJjEIzCVAXDgQkgVMBEBrZcIv9bMYQPNxbagY5/U/zLT9KystHUCP39v0Zz8AQPeSxmgdVQRAR3GOOjqu3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ICQLmMCtDkAz3IDPDyP6P4C3QILiR/c/gQTFjzFXIECM1lHVBBEOQPaX3ZOHJSdAAfvo1JWPAkBo0NA/wYUYQHCZ02Uxsfs//DVZox7CGkCf5Xlwd9b+P9Lj9zb9WQVAH/ZCAdvB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bef7qfGSD0DecYqO5DIIQDoeM1AZ//U/EK/rF+xmGEAdOGdEaW8IQH2utmJ/eSRApmH4iJhSC0CI1/ULdsMcQMuhRbbzPQFAaTo7GRyFG0Ae4bTgRR8CQOyGbYsymwZAlKRrJt9s5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FCLgEKpUCkC9xi5RveUhQJ8cBYiCmeQ/pKXydoTTEUDFILByaHERQEvIBz2b1SdAjXqIRnfQBUBhcTjzq7kdQOONzCN/cANAZED2evdnH0DL2xFOC54FQDdPdcjN8AtAa2PshJdg5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yy2thsT9A0DByqFFtnMkQBdlNsgkowxATmIQWDl0DkA50a5Cyo8NQPcGX5hM9SRAiUFg5dAiCED59xkXDoQaQOviNhrAW/k/FytqMA1DFUCYaftXVhoBQK/OMSB7PQRAEZAvoYJD5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yi0+BcD4/z+si9toAO8kQD9XW7G/rA1A5EnSNZPvBUCwVYLF4cwOQDhnRGlvsCVAJo3ROqraC0CKPEm6ZlIbQIfEPZY+9Pw/kzoBTYRtF0CoGOdvQuEAQNXKhF/qJwZAVG6ilubW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wVYJFocz+j8kl/+QfhsmQA8LtaZ5x/c/gsr49xkXBkA2H9eGivENQBsN4C2QgCVA/OO9amXCCUAZc9cS8gEcQG0csRafAgBAqcE0DB+xGkDhXS7iOzEBQB+A1CZOLgdA51CGqphK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"02cHXFfM6D86r7FLVG/7PyIa3UHsDAhAaTUk7rEUFUACvAUSFH8MQFafq63YvyRA7PoFu2Fb9z+UvDrHgEwVQHhF8L+VbPc/UTHO34SCGUBwXwfOGVH/P0GfyJOkKwRADtlAuti04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2o8UkWFVBkBj7lpCPqgZQDnulA7WfwhAQs9m1edqGECM8zehEMEKQNobfGEy9SRA9Zz0vvE1AEA0nZ0MjrIWQOw00lJ5+wBA+Db92Y90GUBfe2ZJgJr/P6jGSzeJAQVAv/T256Ih4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EF1Q3zJnBEAhWcAEbj0iQAqd19glagNA0JuKVBi7EEAWhzO/miMQQJAxdy0hfyRAgc8PI4RHAUA+syRATW0ZQKc/+5EiMvg/pPyk2qfDHEATZtr+lRX+P6kwthDkIANA8SvWcJF75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"thDkoITZB0CwrDQpBf0gQHZR9MDHYOY/rrt5qkPu+j/Thy6ob1kGQMsQx7q4bSVAcM6I0t5gA0Ab2CrB4nAZQPLNNjemJwVAVvFG5pF/GkBseHqlLMP/P315AfbR6QJAVFOSdTi64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o3VUNUGUAkAgDDz3Hq4aQD84nzpWqeE/DAdCsoAJBkAmjdE6qtoKQPaX3ZOHhSRAOlj/5zDf/T8i/fZ14NwXQPKYgcr4d/k//Knx0k2CGUBpNSTusbQAQPtXVpqUAgZA9+XMdoW+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0LNZ9bmaAUDpJjEIrNwbQGaIY13cxvI/esISDyhbCEC1FfvL7kkGQMzuycNCbSVAIk+Srpn8/z+lFHR7SaMXQPOTap+OR/4/GcqJdhXyF0BA3qtWJjwEQMI0DB8REwVAyM1wAz4/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jxmojH8fEkCf5XlwdxYaQELsTKHz2gtAVg4tsp2vCECnIhXGFkIIQGiz6nO1dSRA+kSeJF0zBUCZZOQs7IkbQPM8uDtrt/Q/AOMZNPSvGUDY9Qt2wzYDQLX9KytNSgZA5C8t6pNc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UWaDTDJy/j/p1JXP8vwiQLivA+eMKOk/GcqJdhXS+j/ysFBrmvcLQA5Pr5RlaCRASino9pLGAED+fcaFAwEYQE9d+SzPAwFAEvdY+tCFGUCbPdAKDFkCQPDErBdD+QZAbosyG2SS5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O6qaIOq+BEDaOGItPgUHQGa8rfTabOk/p7OTwVGSIEBV3o5wWlAQQLraiv1lNyZAEHUfgNQmCEDJHww8934cQNxj6UMXlABAKSLDKt5oGUBnJ4Oj5JUAQDzaOGItPgVAvK/Khcq/4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BvUtc7psB0DDu1zEdwISQG4Xmus0UgFA+KV+3lTEEkB4uYjvxOwMQPwYc9cS0iRApU5AE2GDA0DcnbXbLtQaQEAwR4/f2/s/8BZIUPzYGkAfSx+6oD4AQImYEkn0sgVATimvldDd5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8+UF2EfnAUBuUWaDTHIRQMqmXOFdrus/63O1FfuLEUCp+wCkNvEKQKhXyjLEESVAUYiAQ6iSA0AVOq+xS9QXQFdD4h5LXwRAuB6F61HYGUBI4XoUrocDQHUCmggb3gVAK78MxohE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GqN1VDUBC0BNofMau+QXQHhi1ouhnN4/mQ0yyciZEECJQWDl0CIKQD0K16NwfSRAC5jArbv5A0DPSe8bXxsXQIVCBBxCFQhAGoaPiCkRHEChvmVOl0UCQJNX5xiQvQdA6INlbOjm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cyk/qfZpBEAwTKYKRqUUQJPkub4PB+A/bFuU2SBzFkAIPZtVnysLQFwgQfFjzCRA7zhFR3I5A0BETIkkepkXQC1DHOvitgdAZ341BwimH0DBVgkWh7MCQHfWbrvQnAdAodefxOdO5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BCFZwATuCUAIrBxaZHsPQGlXIeUnVfo/xqLp7GSQGEDBHD1+b1MGQM3MzMzMbCVAi/1l9+QhA0Ao8iTpmkkYQOQPBp57DwRAw9MrZRkCH0BAGHjuPZwBQOP8TShEAAdAskeoGVLF6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y0qTUtCtBkAKLlbUYNoTQESmfAiqRtw/w/ARMSVSHkAE/1vJjs0OQJoIG55euSNASu8bX3smA0ANbJVgcTgYQDS6g9iZwgdAKQXdXtK4HUDmBdhHp+4AQDP+fcaFwwRA31D4bB2c4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"isiwijdyBkC5UzpY/6cNQFvOpbiqzBZA16NwPQqnIEBlGeJYF/cKQEGC4seYOydAc6JdhZRfBEAhyEEJM+0aQJ0Rpb3BVwRAwCFUqdmjG0CHM7+aAwQEQB13SgfrPwVA/ijqzD2k5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vw6cM6L0C0AuHAjJAgYSQHZxGw3gjRdAf9k9eVgoD0AkKH6MuasQQG/whclUYSRAkPeqlQn/B0AIWoEhq5sbQHOAYI4eP/0/EVMiiV4GGkC9jGK5pZUBQMuhRbbz/QVAGLMlqyJc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0gDeAgnqFkCbPdAKDHkTQCMVxhaCHAJAK4cW2c5XJkA0LhwIyYIJQFafq63YvyZAD9b/OcxXAkDpSC7/IR0cQJtVn6utWP8/ls/yPLibHED2Yign2tUBQAGkNnFyPwVACoMyjSYX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rMWnABgvEUCs4o3MI58XQGLboswG2QlAUiegibBhJkAKgPEMGroIQP5l9+RhwSVAKCzxgLKpBUCduvJZnmcYQJccd0oHqwRA/7J78rAwGEDdXtIYrSP/P0G3lzRGqwRAuiwmNh/X5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eZJ0zeSbD0DMQGX8+wwXQA8LtaZ5ZxFArBxaZDsfKUCiemtgqwQKQJ+rrdhfNiVAf/YjRWQYBkAX2c73UyMZQKNAn8iTJANAdY4B2es9GUCzKVd4l4v/P3x+GCE82gRAUaT7OQX54z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WvCiryDtEUCgNxWpMBYeQGZrfZHQFvs/hJ7Nqs/1EUAUrkfhevQQQJtVn6utGCVALXjRV5AmA0AVxhaCHBQaQICfceFASP0/I6Et51LcFUCMZ9DQP8H+P8ai6exkcARAd9Zuu9Bc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ibX4FABDEEBYVpqUgm4fQIj029eBcxFALWACt+5mC0B7iEZ3ELsKQMRCrWneESdAXrpJDAKrAUCxM4XOa8wYQIfEPZY+dPc/iPTb14FzGUAVHcnlP6T9P6KXUSy39AFA3xgCgGPP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RgiPNo4YAkAVV5V9V+QbQM6I0t7gSwZAMZkqGJWUA0AnZr0YykkOQJp3nKIjWSZAFt7lIr7TAkBpNSTusfQYQNDVVuwvu/Q/6njMQGW8E0CJmBJJ9LL8PznulA7W/wJA2v6VlSal3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MNl4sMVu7D9aKm9HOB0gQCmuKvuuSARA3zKny2Li/D8mNh/XhooNQAisHFpkeyRAYhVvZB65BkBJnYAmwkYcQN6wbVFmg/s/qWqCqPsAF0APC7WmeUf9PzBkdavnZAJAVKnZA61A4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3SQGgZUDC0BI/mDguVcYQFXcuMX8XOM/SWO0jqqmBUA5KGGm7d8IQBsN4C2QQCVA8KKvIM3YBUD0wwjh0aYaQBKlvcEXJvg/RuuoaoLIGEBvKlJhbCEAQAe2SrA43ANAAvBPqRJl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Sgfr/xxm/T8xsfm4NtQbQAJlU67wLvA/81meB3cnCEBxyXGndDALQKCJsOHpNSVAjzaOWIvPBUBkO99PjfcZQB04Z0Rp7/8/mzi536HoGUDZCMTr+kUBQF2/YDdsGwVAeqUsQxxr5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"syRATS1bDUAHtkqwOFwjQPnZyHVTyu0/H6LRHcSuFEANjpJX59gMQEMc6+I2+iVAYTdsW5SZA0BcyY6NQLwaQIZVvJF5JAJATtGRXP6jHUCbPdAKDJkAQPRsVn2utgVAEVMiiV5G4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fCx96II6AEB4YtaLoZwgQOjB3Vm7beM/EEBqEycXGEDdQexMobMFQIbmOo209CNA1VsDWyXYAkBv8IXJVKEYQMvW+iKhLQRAHcnlP6SfHUBN845TdKT9P/onuFhRwwVAy2d5Htwd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nqs+V1sxBkCMLQQ5KGEgQEUQ5+EEpuk/TS1b64tEFUB0mC8vwD4HQCEf9GxW/SRA5BQdyeX/A0B8uOS4UxoZQGNi83FtqABApWYPtAKDHUDHuriNBvD9P+VEuwopPwRA8wGBzqRN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DkqYafvXBUAnvW987dkfQPg404TtJ9w/zxQ6r7HL+j+xFp8CYLwGQD6uDRXjTCNAsktUbw3sBEDCacGLvkIbQCpvRzgtuAFAevzepj+bG0BNZyeDo6QDQC/dJAaBFQhAh913DI/95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m3KFd7lIAUCKq8q+K4IdQE3zjlN0JAFA7Z48LNR6FEBi1ouhnIgRQDsBTYQNzyhACFVq9kArA0BiEFg5tEgYQAtBDkqYaQRA2V92Tx72G0CPNo5Yiw8AQDCBW3fzlARAiudsAaH14T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G0esxaeA/D+u9UVCW44eQBGN7iB25gFAMlUwKqnTEEBihPBo46gRQOm3rwPnjClA499nXDhQBED83qY/+zEaQNyAzw8jRARAHXIz3IAPHEBc5nRZTOwAQH9N1qiHaARAvJS6ZByj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DW0ANiBC3z+vCP63kt0hQOkmMQisXB5AgpAsYAI3B0B9y5wui8kRQPkP6bevYyZA1sVtNID3A0BGQlvOpfgZQGnDYWngR+4/hZm2f2VlFkAiT5KumTwBQAaBlUOLLAhAFVeVfVcE5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nu+nxku3EECFJR5QNoUUQJwwYTQrW+w/CTNt/8qKDkBSCrq9pHEJQGAfnbryCSNA8Z2Y9WKoCUAdVU0QdT8dQOhqK/aXXf8/nil0XmOXHEC4zOmymFgBQCeloNtLGgVAIc1YNJ2d3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hxiveVVn4j/wv5Xs2MgeQPK1Z5YEaANAQGoTJ/f7FkDVeOkmMYgKQEI+6NmsOiVAv5oDBHM0CEC9b3ztmSUeQPZFQlvOJQFABHP0+L3NGUCjHqLRHUT7P9rJ4Ch59QNAEd+JWS8G5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8IrgfyuZDkCcvwmFCFgbQHb9gt2w7fk/M/59xoUD/D8EIVnABE4QQAWjkjoBLSZAYeC593DJ/T/8xteeWTIXQCmuKvuuCPk/+grSjEXTFkDoMF9egP0CQCgs8YCyaQZAJ9wr81bd5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i/1l9+QhCEAdd0oH678eQEuwOJz5FQJAJ8KGp1cqJUCbj2tDxfgKQPOOU3QktyRAlj50QX2LB0Cp+wCkNnEcQHLEWnwKAPY/1q2ek953F0A/bypSYez/P1VNEHUfAAVA1uJTAIxn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FAX6RJ7kA0C/ZU6XxcQUQDzAkxYuq9o/EOm3rwPn+T/cLjTXaaQJQBTQRNjwdCRA+KV+3lTkA0A/AKlNnLwZQOChKNAnsgBAZJKRs7AHGkAMsI9OXXkBQAskKH6MuQNAWi2wx0TK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iQeUTbkCAkDc14FzRvQlQK0vEtpyrgNACcTr+gXbEUAFNBE2PD0IQLjM6bKYaCNAoDL+fcaF/T9q+1dWmpQXQHhF8L+V7Pg/L/oK0ozFGUCvX7Abti38PzfDDfj88ARA1Cr6QzNP3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qFKzB1oBCkAaaam8HWEiQBWqm4u/7eQ/E0TdByB1GUDesG1RZsMNQC/dJAaB1SRA6pWyDHGsBkAH6/8c5sscQEjElEiilwRA4BCq1OzhHUAr2bERiBcDQLPviuB/6wdAFmpN847T5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lialoNsLA0CcFrzoKzghQEBPAwZJH+4/w4GQLGDiEUAouFhRg2kJQF3+Q/rtayZAq8/VVuxvBEA6I0p7g88bQHXN5Jttbvs/9rTDX5P1GkAdrP9zmK/9PxR5knTN5AdASbpm8s025T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RuuoaoJoBkAnoImw4ckcQBlW8Ubmkfg/e4hGdxC7+j8noImw4WkOQAU0ETY8fSNAJ/c7FAV6BkC/YDdsWzQbQJT7HYoCPQBA0A8jhEf7GUBAMEeP31sHQKHzGrtENQhAwTkjSnuD5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vmplwi+1BECX/5B++yohQMiZJmw/Gd4/BcB4Bg09EECu00hL5a0NQOqVsgxx7CNA+vIC7KPTA0AVxhaCHNQZQC4EOShh5gJAAvG6fsFOH0A2donqrYH9P6LRHcTOFAZAAWn/A6zV4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TRWMSuoEA0AOT6+UZSgkQLZKsDicefo/hj3t8NdkC0B1ApoIG54IQMGopE5AEyZAM9yAzw9jA0DzAuyjU3cZQH8w8Nx7eANAukkMAitHGkD2Yign2tUAQCy8y0V8JwRAUdmwprIo5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pU5AE2FDA0ABpDZxcq8jQNRDNLqD2Pc/uY0G8BbIBUDEQq1p3rELQL8OnDOiFCVA7WRwlLx6BEAnFCLgEGocQD/jwoGQrPc/R6zFpwA4GECOBvAWSNAAQAN9Ik+SbgRAVHB4QURq5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C5jArbu5AkCalIJuL2kYQJyk+WNam+4/xJlfzQHCA0AaNPRPcDEHQC0hH/Rs5iNArRdDOdEuAUAiT5KumTwcQKBsyhXeZfw/oGzKFd6FG0Cp+wCkNjEBQMPTK2UZIgRAD/Ckhcsq5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BARz9Pi9AUAbDeAtkBAhQOi9MQQAR+o/YcPTK2XZDEBjesISD6gJQCbkg57NqiNA6WD9n8P8AkBPBkfJqxMaQH2R0JZzKQFA1y/YDdsWG0BbttYXCa0AQJJ0zeSbbQNA6KT3ja895D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F7fRAN4C/T/HuriNBvAkQJc48kBkEeM/O420VN4OBkC+amXCL7UIQGN/2T152CZAQ+c1dolqAkAVqTC2EAQaQJzc71AU6Pk/EXAIVWrWGUDEX5M16iEBQKdc4V0uYgVAinYVUn7S5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7ginBS+6CkDXL9gN2/YgQLDJGvUQDfc/0LhwICSLCEAEc/T4vU0IQEi/fR045yVA5e0IpwUv/z9DVrd6TnoZQIBgjh6/twBAkpbK2xGOF0C8P96rVib/P+IjYkokEQdAY/GbwkoF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tKuQ8pNqBUCXxcTm47oYQDfCoiJOp+w/x0YgXtfvBEAK9Ik8SfoMQMRCrWne8SVAFw6EZAHTAkC8y0V8J2YZQDi+9sySgAFA1bK1vkgIGkCZ02UxsfkBQE2+2ebGtAVANlZinpW05D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LnO6LCb2BUCgibDh6VUjQJ+rrdhfdvE/PIidKXReAUDxS/28qUgFQCyf5XlwxyFAx0YgXtcvCkDtKqT8pNoeQN5xio7k8v4/EY3uIHYmHUDoTUUqjK3/P8pPqn06XgRARS3NrRBW4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RRK9jGJ5BUCfsMQDyuYGQBR5knTNZP4/4BCq1OxBFECz0qQUdNsSQDarPldbsShAZK93f7xX+T80LhwIyaIWQJz51RwgGPg/Zmt9kdDWGUCR1a2ek97+PzI4Sl6dYwZAXI/C9Sjc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vHSTGARWCUA7/DVZox4KQPc7FAX6RPY/+WabG9PjI0BWDi2ynW8LQISezarPdSVATDeJQWBlB0AU0ETY8PQZQEF9y5wuiwJADMhe7/44GUC0AkNWt3r/PwK37uapTgNArcPRVbq74D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XyS05VwKAkC0q5Dyk0oWQJP8iF+xBuI/Q61p3nFKIUBYkGYsmk4LQBWMSuoElCRAY7ml1ZD4AkCxogbTMFwbQJKWytsRTvw/RuuoaoJoG0BL5e0Ip4X8P+RJ0jWTrwJAwhTl0vgF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RtPZyeDoCUDzWZ4Hd+cWQNcXCW05lwFAPdUhN8MNEkDrc7UV+4sJQAKCOXr8biNAKEnXTL5ZA0B0QX3LnK4aQFjFG5lHfvk/KLhYUYMJGEAvhnKiXQX/PwXdXtIYLQVAPZl/9E2a3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PpY+dEF9+j9Cz2bV5+ocQDCd1m1Q++g/aqSl8naE+T+k/KTap6MIQBvYKsHiYCNAWwhyUMLMAEAYQznRrmIaQKTk1TkGZPg/Vg4tsp2vFkB9BWnGoikAQHrkDwaeewVAyNKHLqhv4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I2dhTzscEkBfB84ZUZofQJRqn47HzAJAd9uF5jrtH0CNtFTejnARQKg1zTtOUSdAwhIPKJvyBEAsms5OBqcXQPLqHAOy1/Q/kx0bgXj9GUDQ7SWN0br+P4NpGD4ipgRA2scKfhvi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B3x+GCE8/z/GihpMwzAWQCNli6TdaO0/CFqBIaubIUBENLqD2BkJQNlfdk8eFiVABRcrajANBEDwFkhQ/JgdQHmvWpnwCwVAPZtVn6utGkCGONbFbTQBQL9DUaBPZARARSxi2GFM3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IeUn1T5dCEC/8bVnlgQQQB+i0R3ETvs/OdbFbTTgHUAhPNo4Yi0OQDUpBd1e8iNA0jWTb7Y5BEAh5SfVPn0ZQAAAAAAAgP0/io7k8h/yGkDgvg6cM6L/P5ZbWg2JuwRAFqdaC7NQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V3iXi/gOB0BXCRaHM58cQPZFQlvOpQtA9nr3x3tVHECJ6q2BrZIQQOhqK/aXXSVAbXNjesKSBEDHaB1VTTAaQP0TXKyowfo/5SfVPh0vGkBQx2MGKiMAQCF2ptB5zQNAnStKCcEq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Oul942vPBkBWZd8Vwb8UQHoZxXJLq+g/SaKXUSx3DkCbj2tDxTgOQLx0kxgEdiZAHvmDgeeeBEBY5xiQvR4ZQEIhAg6hSvY/FR3J5T+kFUCmRBK9jGL+P7xcxHdiFgRAox03/G664z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5ZttbkwPBkCKH2PuWoILQPLqHAOylxlA48KBkCzgEkC3KLNBJhkOQMuhRbbz3SZAWMUbmUe+A0BEi2zn++kXQDNt/8pKE/A/+yKhLedSGEAG9S1zuqwBQHtOet/4mgVA3gGetHBZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zLT9KyvNC0Cn6Egu/yENQNXnaiv2FydABi/6CtJsEUDOwp52+CsOQCntDb4weSVAFakwthDkAUDJjo1AvI4YQLPSpBR0+/8/1H0AUpu4FUAXZTbIJCMAQNhkjXqIBgNANzemJyzx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ZlC5zW2AEASTgte9FURQLKACdy6G+c/Cp3X2CWKHkB9y5wui4kOQDcawFsgQSZAUu3T8ZgBAkCxijcyj5wXQDiEKjV7oP0/CObo8Xu7HUAtsp3vp0b7P4o8SbpmMgVAXmbYKOs33T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0A8jhEebCkCQSUbOwl4DQJUrvMtFfP4/TI47pYPVFkBlGeJYF/cPQDsBTYQNDyZAWd3qOek9AECSkbOwp50VQE91yM1wA/w/RrHc0mqoGkDohxHCow38P37GhQMh2QRATrNAu0OK4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+vIC7KNT8z9CIQIOoUrxP5268lmexwpAJ8KGp1fqJUC6SQwCK8cNQCGwcmiRLSZAY7SOqiYIA0A5C3va4S8bQCjyJOmayfI/cJS8OsegFEDrOel946sCQGTpQxfUdwRAlBEXgEZp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+U7MejGU4j8HfH4YIfwKQAhyUMJMWwJAT6+UZYijKEBPQBNhw1MPQINRSZ2AhiVA/kgRGVaxA0DLnC6Lie0ZQAdfmEwVjP0/qFfKMsTRGUBPdcjNcMMAQAeZZOQsLAZABRbAlIGD5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3LqbpzpkDUAnwoanV0r9vwkzbf/KuiBAK4cW2c5XH0ALmMCtu/kLQPmgZ7PqcyVAPKBsyhUeCECnP/uRIlIcQEsC1NSyNfo/xr/PuHBgF0BjnL8JhYgAQFVNEHUfwARAmggbnl4p4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EOm3rwPnBkBVh9wMN2AJQAdCsoAJ3Ns/mWTkLOwpG0D7IqEt51IMQDhnRGlvcCRANnaJ6q1BBEAvNNdppIUaQPIk6ZrJtwFAKh2s/3OYGkCOdXEbDSAAQOkmMQis3AZA5zki36VU5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cSAkC5iABEDS4/c2/VkHQFWmmIOgo90/WmQ730/9IkDpK0gzFo0GQP8h/fZ1oCRAPIidKXReAkC/YDdsW7QaQO8gdqbQ+QNA4Ln3cMmxGUDBc+/hkuP/P772zJIANQhA5KCEmbZ/6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MuauJeTDEUCBzw8jhMcdQExUbw1sFRRAoP1IERkWBUCFlJ9U+/QQQCgPC7WmWSVARuuoaoLoCUBXIeUn1f4eQF3hXS7iO/k/jzaOWItPF0Dq501FKoz/P/H0SlmG+AVAp+fdWFCY4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SNxj6UNXBUAFacai6fwiQG2umueI/OQ/LA5nfjUnFUAFxY8xd60LQCUGgZVDqyRASkbOwp72AEA2sFWCxWEYQKSl8naE0/8/HPD5YYTwGkBzgGCOHj8BQL0Yyol21QNAgQhx5ewd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SL99HThnBkCr7Lsi+E8jQM2U1t8SgOA/a2XCL/VzC0DHYwYq498NQBe30QDe4iVAFXR7SWO0BEBdM/lmmxsZQFmLTwEw3gFABhIUP8b8HEDv5qkOuZkAQLaEfNCz2QNAtHOaBdqd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cLa5MT3h9z8tPgXAeGYTQN/DJcedUv8/Cks8oGwKCEBgqwSLw1kKQGaIY13chiRA5zqNtFQeA0DK4Ch5da4aQFaalIJur/c/uK8D54yoGEBp44i1+BQAQAStwJDVLQdAPGpMiLkk4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"taZ5xym69T8fotEdxO4WQD0P7s7abfc/YMjqVs/JCEBq3nGKjiQLQIxK6gQ08SVA7+GS404pAECfWRKgpvYaQCvB4nDmV/c/soAJ3Lq7GEDwMy4cCAkAQHhF8L+VrAdAQ+T09XzN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+MJkqmD0EEDshm2LMrsjQM0C7Q4pBu0/Bwjm6PH7DEA8FAX6RB4OQOM2GsBbICRAHv6arFGPBkA0v5oDBHMcQIV3uYjvxARAxqcAGM+gGkDI0ocuqO//PxKDwMqhhQRAusDlsWZk2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nL8JhQg4CECoxks3iUEkQNIdxM4Uuv4/OZz51RzgCUBXQ+IeS58NQKFns+pzdSVALZW3I5xWB0BBvK5fsFscQJ4pdF5j1wNAxcn9DkXBGkDj32dcOBD+P4kMq3gjMwRAUS/4NCcv2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KxiV1Ano9z/koISZtt8WQBakGYumM/M/OShhpu1fBEA57pQO1j8NQNv5fmq8tCVAgH106spnAkDuX1lpUkoYQGaDTDJyFv0/JemayTf7GUBHIF7XL9j+P+4ljdE6KgNAOzQsRl3r4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bFuU2SDTDkBBt5c0RrsiQJ+wxAPKpvw/HNMTlnjAEUCvsUtUbw0OQKK0N/jChCVARs7Cnnb4AkDLoUW2850aQDmc+dUcoPs/EHo2qz73GEC2hHzQsxkBQCScFrzoawdAKv7viArV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8WPMXUtIBEAlr84xILsTQHaLwFjfwOc/M9yAzw+jCEDJPPIHA88MQKMBvAUSlCVAptWQuMfSBUAurYbEPXYaQMTr+gW7IQJA1jkGZK9XHECNtFTejnD+PxZNZyeD4wNA7NlzmZqE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yhr1EI3uAUARx7q4jaYkQDp15bM8j/A/u+1Cc52GD0DwbfqzHykMQI51cRsNICVAVwT/W8mO/T/TpBR0e+kWQOPfZ1w4kABAMxtkkpFzGUAYQznRrgICQIGVQ4tsZwZAFt7lIr4T4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/ACkNnFyAECSs7CnHT4YQFpLAWn/A+I/h/nyAuxjAEAbu0T11kAIQKRwPQrXoyVAjLlrCfkgAkBAMEeP3xsYQFluaTUkrgFAGZC93v1xHkDj/E0oRED9P6qaIOo+AAJAx2KbVDTW3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7wOQ2sSJBEBG09nJ4IgiQHLChNGsbOc/T1jiAWUzE0Bx5ldzgKANQIiFWtO8YyRAsBu2LcpsA0B5HtydtdsXQDT0T3CxogdAi3H+JhTiHED6uDZUjHP/PzAvwD46NQVA3smnx7aM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QIf58gIsH0CTV+cYkO0iQL37471q5SFA1v85zJfXC0BwJTs2AnEPQPW52or9JSZAnZ0MjpLXAkCJ78SsFwMbQCk+PiE77+s/P+PCgZBMFkA3N6YnLDEBQLVsrS8SWgVAYvnzbcHS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5ujxe5suIECYTBWMSrogQKuVCb/UDxpA9wFIbeJkBEB6pSxDHGsOQOPHmLuWMCRA1v85zJfXAEDzH9JvXycaQJF++zpwTvE/Z5sb0xNWF0Bo6J/gYsUBQLnH0ocu6ARAY9F0djI45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ykok0ctIH0A+lj50Qb0hQKZ+3lSkwhdA9bnaiv0lDkCQFJFhFS8KQATnjCjtzSRAWYY41sXtCkCuga0SLA4fQEcgXtcv2P4/GXPXEvIhGUCKdhVSflIBQJhuEoPAigZA0csollva4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q/Nea6XGsL/qBDQRNnwYQManABjPoAdAKQXdXtJ4EkBKRs7CnvYJQM/3U+Ol+yJAvLN224WmAkBOnNzvUDQaQEZfQZqx6PM/6/8c5surGUDcupunOiQBQDp6/N6mPwRAdAgcCTTY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"opxoVyGFEEDSAN4CCeoeQC/APjp15fE/J4Oj5NW5+D8xQni0cYQKQJayDHGsyyZA6lvmdFlMBEBZi08BMH4ZQDNt/8pKUwRAYtaLoZxoGkARqtTsgVYBQEtZhjjWRQdAP6vMlNbf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wjQMHxFT1T/2evfHezUUQPXzpiIVxv8/dHtJY7SeIEBNLVvri0QIQHBfB84ZUSVAS8gHPZuVBUBoke18P3UbQEiKyLCKt/w/WP/nMF+eGEBG66hqgqgAQNfAVgkWxwNA/nxbsFSX4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VRhbCHJQ5j88vVKWId4hQGwhyEEJM/w/luzYCMRr9j9RiIBDqFIIQMUgsHJo8SNAEFg5tMi2AEAvi4nNx1UaQPxSP28qUv8/8wLso1MXHkD+YOC59/AAQESGVbyRuQdAEANd+wL65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0egOYmeKBUDaA63AkBUYQBueXinLkP4/Vkj5SbVP+j/pmsk329wHQAmKH2PuOiRAJLn8h/SbAEBUAIxn0PAaQPwApDZxcgRASFD8GHOXGUDo3sMlx90BQCJUqdkDbQdAW5caoZ8p5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O99PjZeuA0BbJVgczgwiQEcFTraBO9M/FVJ+Uu1TFUBKKej2ksYFQPzjvWpl4iJAml/NAYJ5B0DPTgZHycsYQLG/7J48rPs//aTap+NxG0CwrDQpBd0AQNI1k2+2uQRA5iMp6WHo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F2U2yCQjEEAIPZtVn+sXQLHEA8qmXAlAtvgUAOOZDEAQejarPlcKQGSvd3+81yNAGmmpvB1hBUC2LcpskMkcQEwao3VUNQNACeHRxhHLGUAfLjnulA7+P1FrmnecIgRAa9RDNLoD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"43DmV3MAB0AJih9j7noaQKsi3GRUGd4/bmk1JO5xEkCJJHoZxfIJQBQ/xty1RCRAgGCOHr93BkD36XjMQEUbQN6rVib80vw/SIrIsIq3HEDlm21uTI8EQChhpu1fmQxAfzScMjff5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y7SOqiZIAUCtTPilfs4hQBr6J7hYkQ9Ax4Ds9e6P/T+SXP5D+u0IQInS3uAL0yRAnKc65Gb4AUDIBz2bVf8aQDuqmiDqPvw/lMFR8urcGUBSJ6CJsKEGQEp7gy9MJg1ABI9v7xp05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a32R0JZzAEBkr3d/vKcgQHugFRiymhVAyk+qfTqe+j+7D0BqEycMQDsBTYQNjyRARuuoaoJoA0AFo5I6Ac0aQMkfDDz3nvs/B9MwfETsGUCCxeHMryYGQDbIJCNn4QtAurvOhvwz5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QiYZOQt7/z8RGVbxRsYdQLe0GhL32Pc/fCx96IL6DkBkr3d/vJcKQJM6AU2EDSVADf0TXKzoBEAz/n3GhYMZQDm536EoUPk/dJgvL8C+FkDWHCCYo8f9Pybkg57NKgVAdEUpIVjV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GlHaG3zh/j/CFyZTBSMlQJ5BQ/8E1xRAl631RUL7FEAkKH6MuasIQJeQD3o2CyVALVvri4R2AkAyIHu9+yMfQHSYLy/APvI/U+i8xi4xFkCTV+cYkH0AQPSmIhXG1gZAWrqCbcST3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xtcv2A3bC0B1kxgEVq4hQGOcvwmFiPE/L/oK0oxFB0BSflLt0zENQHGsi9toICRA+N9KdmxECEDvj/eqlUkYQBKgppattQBAHQOy17s/GkALDFnd6nkAQGPuWkI+6ANAq1lnfF9c5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6xwDstf7AECns5PBUbIfQLPTD+oiBeY/CeHRxhHrA0D8+4wLB4IIQHqlLEMcqyRAxM4UOq8xA0By/iYUIuAbQDRLAtTUMgBAeVioNc2bGUBZox6i0V0BQMDnhxHCYwdAkGtDxTh/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HLEWnwLgBkBxyXGndDAhQCy5isVvCt0/KNU+HY9ZBEBdv2A3bBsIQC6QoPgxpiRA2A3bFmV2A0CyYyMQryscQPWc9L7xtQBAJh5QNuVKGEBWvJF55E8BQG9HOC14kQdAPgYrTrWW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VYfcDDdg/j8eG4F4XV8gQPPkmgKZnd4/8S4X8Z3YBUDYgXNGlHYHQPXb14FzBiVA3ze+9sySAUC/t+nPfoQbQIwtBDko4fo/5A8GnnsvGUDA54cRwiMCQPcGX5hMVQhABHY1ecpq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bLJGPUTjA0CTGARWDi0eQAfvq3Kh8to/0XR2MjiKC0BGzsKedjgGQJf/kH77uiVAavZAKzAkBEB0RpT2Br8bQDSdnQyO0gFAo68gzVi0GEAoYabtXxkDQFGIgEOoEghAqOLGLeZn5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PKWD9X/OAkBzol2FlF8TQC7nUlxV9vc/HVVNEHUfEkDQCgxZ3aoIQAskKH6MiSJA30+Nl26SCECvd3+8V80bQHO6LCY2n+M/vR3htOBlFUAldQKaCBsEQNEi2/l+qgZARDaQLjat5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KdAn8iTpBUCdLouJzQcXQOIjYkokUfU/cr9DUaCPCEDoaiv2lx0IQGHD0ytlWSVAj1N0JJc/BkBn1edqK9YdQNKMRdPZSfs/uarsuyI4FEBCYOXQIhsCQL9lTpfFRAhAhEvHnGfs5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lIeFWtM8AkCny2Ji8/EfQNDQP8HFCv4/6dSVz/K8CEDhfyvZsZEOQDJ3LSEfNCVAxqcAGM9gCEDkLOxph98ZQHv3x3vVyv4/Mo/8wcDzGkC4O2u3XagBQNmZQuc19gVACKwcWmQ74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gIKLFTXYBEBH5pE/GPghQIy5awn5YABADJOpglFJ+j8wgVt381QLQIqw4emVkiVAOsyXF2CfAkD1vvG1Z/YbQB+F61G43gRAfT81XroJGkCIgEOoUvMBQH4dOGdEKQdA6E6w/zo35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P4wQHm3cBUBVpMLYQpARQA2OklfnGO0/Bwjm6PFbE0BeLuI7MasIQPW52or9pSVA9bnaiv2lAEDdByC1ibMZQLth26LMBgFA9aEL6lvGFUBJ10y+2eb/P1RSJ6CJ8ARAz/kpjgOv2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x7q4jQbwDECiRbbz/TQfQMFz7+GS4xlAEtpyLsUVDUAyVTAqqdMPQOauJeSDHiVA4Zf6eVPRAUDsF+yGbSsYQLYtymyQSfE/FjCBW3fTGEAgmKPH7+3+PxrdQexMoQNAyhr1EI3u5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"38Mlx52SCUBkO99PjRckQJ/Ik6RrpgNAUg/R6A6iIUAEkNrEyb0PQKMjufyHlCdASBtHrMWn+j85ud+hKNAWQKcFL/oK0vg/MevFUE5UFED/7EeKyLD/PwTKplzh3QRAdovAWN/A3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5e0IpwVvBUCndLD+zwEaQBr35jdMtO8/fQVpxqLp9T8r9pfdkwcLQLAD54wobSRA4Sh5dY5BCECp+wCkNrEbQO7O2m0XWgFAi08BMJ6hHkC/ZU6XxYQAQKyQ8pNqXwZA9FFGXACa5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AcEcPX6vB0C9b3ztmXUjQBfZzvdTY/k/Wg2JeyxdFkCcM6K0N7gKQPrt68A5oyRAW18ktOWcB0D5LM+Du9MeQMR8eQH2kQJAwi/186aiGEAVUn5S7VMBQFu21hcJrQVAwRvSqMDJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kIMSZtreE0C5jQbwFoggQH/eVKTC2Ps/BvUtc7rsFEClTkATYUMNQBQ/xty1xCRAptB5jV2iBUCWz/I8uPscQLoUV5V9FwBA7yB2ptC5GkBZUYNpGH4BQLRZ9bnaigZADd/CuvHu4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xRuZR/7gBcAjFcYWgjwgQOm3rwPnTBdAQ/8EFyvqB0CU9gZfmAwKQMrDQq1pviRA8u8zLhyI/j9Dyk+qfToWQLXgRV9BmvM/xvmbUIjAGEBYxRuZR/7+P5yKVBhbyARAqfbpeMzA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GsOcoE0O0T90Ka4q+44eQB7cnbXbrgtAi3H+JhQiBkCIS447pSMRQGsr9pfdsyVA73IR34mZCEBWKxN+qT8dQP2fw3x5gf4/TwZHyasTF0DulA7W//kBQECk374OnAVAf1AXKZQF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AvG6fsEuDUBGX0GasSgZQD8AqU2cXPk/wjQMHxGTBkA6OxkcJW8OQMIXJlMFoyVAn6ut2F/2/z/HuriNBhAaQDo7GRwlbwBAbsDnhxGiGECze/KwUGv/P0JbzqW4qgNADD84nzrW4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aAWGrG718j/lm21uTH8gQMR8eQH2UQFATGw+rg0V9j8Fi8OZX00OQCntDb4wGSVABcWPMXdtAEBoImx4eiUZQDuqmiDqvvk/oGzKFd4lGUD2C3bDtkUBQGDNAYI5ugNAAhHiytm74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I/PIHwy8AkDw3Hu45PgdQGSSkbOwpwhADhXj/E0IFkCwOJz51ZwIQDqSy39IvyRAfZHQlnPpB0B06spneb4bQB3mywuwjwJATihEwCEUGkBjC0EOShgAQELsTKHzWgVAr9LddTZk4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pI0j1uJTDkDI7236s78XQCpSYWwhyPk/8piByvi3EEDX3TzVITcLQKJFtvP9NCVA+z+H+fLCBEBlNsgkI8caQODzwwjh0QBA9dbAVgmWG0B9BWnGomn9P0cgXtcvmAJARgvQtpr14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ufyH9NtX+j+k5NU5BpQhQAN64c6FEeg/2NMOf03WDEBau+1Ccx0HQC/6CtKMBSNAR1oqb0c4AUCnIhXGFoIZQDXvOEVHcvk/Zw+0AkMWGECsqME0DJ8AQCB7vfvjvQVAL9y5MNKL3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gxd9BWlGCUCutmJ/2d0kQNOFWP0Rhu4/fCx96IKaG0C0PA/uzpoPQD9XW7G/bCZAh+EjYkok/z+8s3bbheYaQO0qpPyk2gFAoijQJ/LEG0AmGTkLe5oCQFBwsaIGUwRAz79d9uvO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M/lmmxvTC0DFA8qmXKEhQBH8byU7tvM/FD/G3LXEDEDAstKkFPQMQFUwKqkTkCVAxebj2lCxB0Cfq63YXxYZQD4/jBAebf8/s7W+SGiLGUA7qpog6r77P+zdH+9VqwNARiOfVzx14T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"07zjFB2JAEAQI4RHG4cgQBGo/kEkQ+0/AoI5evxeC0AwuycPC7UNQAn5oGezyiVAMZQT7SrkAUB56SYxCKwaQKuVCb/Uz/w/ECOERxsHGUDf/fFetbL/P4WxhSAHpQJAxvfFpSpt3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G7tE9daADUCI9NvXgZMgQFch5SfVfgJA/g5FgT7RGUBBvK5fsJsLQNQrZRniGCVAJZLoZRSLAUCSBUzg1t0ZQNjTDn9NVv0/Pj+MEB5tGkCBsilXeBf9P/rt68A5YwZAhEnx8QlZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WOIBZVMuAEAEOShhpq0gQB3jioujctw/24r9ZffkAEDxaOOItTgIQE2EDU+v1CRAAYdQpWZPAkD1oQvqWyYbQKn26XjMQP8/R4/f2/QHGUCVK7zLRTwBQATKplzhnQRAPYGwU6ya5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EoPAyqHF+T+iYpy/CeUgQCMQr+sXjBRAYkok0cuoAkDPLAlQU4sHQJYhjnVxOyRA56kOuRnuAkB+Uu3T8TgYQH8w8Nx7uPw/yF7v/njPGUA6evzepj/+PzMWTWcnAwZADr4wmSoY4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q1a3ek56BkCto6oJou4VQPImv0UnS+w/RUdy+Q8pDUB5Bg39E9wPQAFNhA1PbyVA7fXuj/eqBUBUVz7L86AbQKvnpPeNL/o/ZK93f7zXGEB+GCE82vgCQPceLjnuVANAlQuVfy0v5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EHo2qz6XCkBvRzgteLEcQG7A54cRAgFAX9IYraMqCUAoRMAhVGkNQLFQa5p33CVAak3zjlP0AEBwXwfOGXEZQPsioS3nUvY/ijxJumYSFEBXYMjqVg8AQJccd0oH6wdAMuNtpdfm4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"niRdM/kmCkCYNEbrqAogQGHCaFa2D+c/YvNxbaiYAEAQr+sX7EYKQAVR9wFIfSNAZr0Yyol2CkAOEMzR47cdQMP1KFyPAgFAI9v5fmr8HEClvcEXJhMEQCAMPPcergdATI47pYP15z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gLdAguIHDECm1ZC4xxIaQGg/UkSGVfw/nrXbLjRXFUBd3EYDeKsRQE2EDU+v9CZA0zB8REyJA0CPNo5Yi48YQO1kcJS8uu8/l3Mprip7FUAuBDkoYWYAQNFXkGYsGglAYrt7gO7L4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SBtHrMXnAEBM/bypSHUgQBIUP8bcNf8/gEi/fR34D0CgNxWpMFYQQCSX/5B+uydAS1mGONZF/z/68gLso9MXQIvgfyvZMf8/S3ZsBOIVGkD7y+7JwwIAQM8UOq+xywNAqfbpeMxA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vp+rrdhf8T+9APvo1PUbQHuDL0ymShxAdavnpPdNF0BPIy2Vt6MPQGrecYqOBCRAl4v4Tsx6A0CW7NgIxIsaQO/hkuNOqQFA4QuTqYKxHEA1XrpJDMIAQB+i0R3EjgVAQL6ECg6v4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lbcjnBY8/b8HCObo8dsaQPZ/DvPlRSBAKT+p9uk4DEDqz36kiIwOQOqVsgxxrCVAbXNjesKSBEDrVs9J75sXQMYzaOifIAhA+RQA4xm0HUAJ+aBns+r+PwLZ690frwRA4pLjTulg2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LT4FwHgGAsAIA8+9h1shQLUaEvdYmhRAste7P94rA0DEsS5uo4EPQDQRNjy9EiZAKCzxgLJpAkAiVKnZA00bQHIW9rTDX/4/0jWTb7ZZG0AcCMkCJjADQDnWxW00AAZABRiWP98W6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tx4Wak3zEEB9y5wui8kRQB+6oL5lzv4/TGw+rg0VEkBvRzgteNEMQJ0Rpb3BFyZABhIUP8YcCkBSuB6F65EbQOjZrPpc7fM/3Xu45LhzFkBrgqj7AKQAQAeZZOQs7AVAZXCUvDrH4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YLAbti3K/z9/EwoRcBgjQHY3T3XITfk/TmIQWDl0BEBDc51GWqoOQJqZmZmZeSVALspskElGAkBrgqj7AOQaQIwQHm0cMfQ/xqcAGM/gF0CZnrDEA4oBQC0hH/RslgVAc77Ye/FF5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nWNA9nr38z+6MT1hiacjQCzUmuYdp/c/NuUK73LRCEDRdHYyOEoNQPCnxks3qSRAMc7fhELEAUAJ4dHGEYsbQKt4I/PIn+Y/at5xio7kF0C8P96rVqYBQFCNl24SwwRAs7J9yFsu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V2DI6lbPBEClLEMc66INQAYQPpRoSe4/JuSDns0qEEDv/nivWhkNQFuxv+yePCVAs++K4H+rBUBuTE9Y4gEZQIMXfQVpRgRAby9pjNaRGkBhpu1fWen7P98Vwf9W8gNA0jdpGhTN1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sb/snjzsAUBL6gQ0EQYiQH7hlSTPde0/tFn1udrqFUCU3je+9swHQFyPwvUoPCRAJ/c7FAW6A0CPGaiMf58dQCfaVUj5Sf0/2QjE6/plGkANbJVgcfgBQCntDb4w2QNAchk3NdD85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HVpkO99PAUCBBMWPMTckQHqM8szL4eo/cY+lD11wGUAj2/l+avwNQMnlP6TffiVAT6+UZYgjAECRCmMLQQ4VQDJaR1UTxPg/KdAn8iQJFkBSSZ2AJsL8P70d4bTgRQZA+Wncm9+w4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zjY3picsBEBS7dPxmKEeQH/eVKTCWPw/opxoVyFFEkCcbW5MT9gOQLAD54wobSZA4JwRpb0BBEC4kh0bgXgXQKEQAYdQJfs/QBNhw9OrF0DVCWgibPj7P1IP0egOIgZARFGgT+RJ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iC6ob5kTBUDv5qkOufkdQIE+kSdJ1+Y/I0p7gy9M9T/Az7hwIKQFQDKs4o3McyNAHSCYo8dvA0D8Uj9vKpIaQA2Oklfn2AFArrt5qkMOG0DwMy4cCAkBQF5ortNISwNAnb0z2qok5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B+v/HObLBEDf4AuTqTIhQAJnKVlOQtA/OKEQAYfQ9T/IQQkzbf8IQPp+arx0MyRAArfu5qlOBUAJbTmX4sobQFlMbD6uDQNADRr6J7iYHkC1GhL3WHr/Pzz3Hi45LgZA1ZY6yOvB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cLa5MT2hB0CEDU+vlMUcQO9TVWgglto/UYiAQ6jS/j+loNtLGuMGQKyL22gA7yNAyhr1EI0uBkAlzLT9K+sZQGl0B7EzhQJACW05l+IqHkCOQLyuXzD/Pz6zJEBNLQZAY1+y8WCL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4UVfQZqxAkD/z2G+vGAjQCCYo8fvbew/IqZEEr0M/D86QDBHj18JQMX+snvyUCRAIEHxY8ydA0CYhuEjYuoaQCS5/If02wNAqyaIug+gGkCOdXEbDWD9Pz+MEB5tXARAuYrFbwqr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zQGCOXr8DkBvEoPAygEYQCS05VyKaw1ATGw+rg3VD0AcsRafAuAPQH/7OnDOyCVA3nGKjuQyAkCwVYLF4cwYQEG8rl+wG/c/valIhbGlGkCJeyx96IIAQH3LnC6LyQNA54pSQrCq3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5US7Cik/CkAr3sg88gcdQBToE3mS9AZA6lvmdFmMHUCrWz0nvW8OQMNkqmBUMiVAKgDGM2ho8z8RcAhVanYVQI0o7Q2+MPw/c4V3uYgvGEAzG2SSkTMCQIasbvWcdARAa9WuCWmN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M6fLYmKzFEBqvHSTGMQcQPg2/dmPVAlAQKTfvg4c+D+dgCbChgcQQHBfB84Z8SVASNxj6UOX+D8/V1uxvywUQIB9dOrKpwFAiUFg5dDiGUCGcqJdhRQBQF9BmrFoOgVACAQ6kzZV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hlW8kXlkB0BBDkqYaXsfQOkmMQis3ABAYr68APvIHUDLhF/q540QQLsnDwu1xiZAWoEhq1s9/z/eAgmKHwMYQI/f2/RnPwJAUYiAQ6iSHEAzFk1nJ4MAQBdIUPwYMwZAC7PQzmmW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3J212y60+j8yVTAqqfMdQLFQa5p3nPM/zsKedviLEkBu3c1THbIOQKyL22gALydAfxMKEXBIAkBvZB75g0EZQDQRNjy9UgRAzo3pCUu8HEBFR3L5D2kBQMAma9RDdARAOGqF6XsN5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XaeRlsrbC0Csyr4rgg8gQAexM4XOa/E/JnDrbp5qBECgibDh6RUNQLPqc7UV+yRAorQ3+MLkA0CzzY3pCcsaQNSCF30F6fc/DOpb5nTZGEDGounsZLAAQAqd19gl6gVAUHCxogbT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e6AVGLK69z9GfCdmvdgeQBqjdVQ1wf4/HT1+b9NfC0CTGARWDu0KQEXY8PRKOSVAmrZ/ZaXJCEA4oRABh1AdQIS7s3bbRQBApkQSvYxiGkBVE0TdByD9P3ke3J21mwJAHa7VHvbC4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"54wo7Q3+DEAe3J212w4eQPfpeMxA5fQ/fH4YITzaCkBq+1dWmhQOQHE9CtejcCZASZ2AJsJGAUBSCrq9pNEXQIczv5oDBAJAN/3ZjxSxGUCu8C4X8Z3/P+P8TShEgARAyVht/l914D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3e9QFOizEUBFKowtBNkgQEJbzqW4qgBAVwkWhzM/9z9ATS1b64sIQIF4Xb9gRyNAjnVxGw0gBEA6zJcXYF8aQC0mNh/XBgBAUWaDTDIyHkBvu9Bcp5H+Px2PGaiM/wRAZXH/kelQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UFPL1vriCUCoV8oyxFEdQGuCqPsABBJAl1ZD4h5LCkDiWBe30cAPQP3BwHPv8SNA7WRwlLx6BUC2SrA4nJkZQMoyxLEu7gRAXcR3YtZrHkAAkX77OnABQJc5XRYTGwZAX3tmSYCa5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J6CJsOFp+D9+qZ83FbkhQLVPx2MGKvY/AIxn0NA/AEA09E9wseIKQGZmZmZmxiZA3zKny2IiAUDZzvdT48UYQB0Dste7vwVAH/RsVn2OHUAAjGfQ0P8AQD9XW7G/bAlAe/Xx0He35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NLqD2JmiEECBPpEnSXcdQNGWcymuqvA/4q/JGvWQ+T8bnl4py7AQQBb7y+7JIyVAtHbbhea6AEA6OxkcJe8XQB3J5T+knwNAJSNnYU9bHUDAPjp15XMBQFGIgEOoEghA4UIewY2U5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"opxoVyGlBEBKB+v/HIYaQBkEVg4tMvM/hPBo44g19z9q9kArMOQPQPVKWYY4FiZAK2owDcMHAkDQ8jy4O2sXQPmgZ7PqMwJALspskEnmHUDek4eFWpMBQOjB3Vm7LQZA/686cqSz5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bXNjesKSC0A8a7ddaE4jQOwX7IZti/E/v0NRoE8kCEDYZI16iMYOQM4ZUdobXCRAWUxsPq7NA0Cyne+nxusaQK+xS1RvTQJAU+i8xi7xG0DlszwP7k4AQEWBPpEniQZAUtUEUfeB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MXxETInkA0DOx7WhYjwgQPt5U5EKY/Q/OUVHcvmPD0BVGFsIclALQO84RUdyWSRA2QjE6/qFBEBQx2MGKoMaQBbe5SK+kwBAahg+IqakG0DyDBr6J7j/P78rgv+t5AVAzGPNyCB35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y4Rf6ufNAkAo8iTpmvkgQACuZMdGIPw/xCXHndLhEUAk7rH0oYsNQKrx0k1iMCRAmrZ/ZaVJA0DJWdjTDv8ZQCy3tBoS9/4/TWcng6OkHED52jNLAlT/P3Iz3IDPDwZAigESTaAI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wcqhRbZz+j88oGzKFf4bQMJR8uocA/A/SrVPx2MGCEAmUwWjkroNQCApIsMqviNAYwtBDkrYAUDmkT8YeA4aQLbz/dR4af4/C2MLQQ5qG0CpMLYQ5KD+P1cm/FI/bwRAxqaVQiCX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wD46deWzA0A/jBAebfwaQBxeEJGa9ug/RuuoaoLoBEA0v5oDBDMFQGfV52orViRA7Bfshm2LB0DFILByaNEcQPW52or9JQJAk1fnGJBdGkCVSKKXUawAQHgoCvSJvApASYEFMGVg5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iUFg5dCiC0ADQ1a3en4hQFoqb0c4LfY/jnVxGw3g+j8sK01KQbcPQME5I0p74yRASOF6FK4HCkDN6bKY2FwdQI4G8BZI0P4//reSHRtBGkBbXyS05RwCQEBNLVvrCwRA6Sec3Vom4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HVpkO9/PBUBZwARu3Q0ZQAqBXOLIA+0/cJS8OsdAE0C1bK0vEloJQBlz1xLy4SVAtHHEWnyKBUBFR3L5D8kaQL0A++jUlf8/qmBUUicAGUCPGaiMfx//P0ImGTkL+wRA9tTqq6uC4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7IZtizKbBkAnTu53KMoWQGO5pdWQOPY/NV66SQxCDEDhYkUNpiENQJSHhVrTHCVAliGOdXFbBUB2N091yK0bQPm9TX/2o/U/cAhVavYgG0CIhVrTvGP+P6Zh+IiYEgZA2CyXjc555D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rd12oblOAkBjnL8JhcgfQJkqGJXUiQBARMAhVKnZB0CcbW5MT5gLQPhT46WbxCRAmus00lI5A0Cns5PBUfIaQBK9jGK5JfY/ZRniWBd3G0AJ/reSHZv+P+3w12SNugVAdJmaBG/I5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oblOIy1VB0AXvOgrSFMeQOC+Dpwz4gdA3/3xXrWyAUD+ZffkYaEPQLByaJHt/CNA6njMQGU8AkDEzhQ6r5EbQEKVmj3QCvo/lGqfjsdsHEAi4BCq1Oz9Py/APjp15QZAdChDVUyl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P28qUmFsF0D3zJIANVUZQOhqK/aXHQxA3o5wWvCiB0BzS6shcU8GQDhnRGlvUCRAIqZEEr2MBEAdcjPcgI8aQEmAmlq2FgJAJ07udyhqGUCIEcKjjWMBQK71RUJbjghAYTWWsDZG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2xZlNsikGUCM+E7MelEiQNDtJY3RmhVAt+7mqQ55B0AyychZ2BMNQIY41sVtVCRAnDOitDf4BEA2H9eGitEZQAPPvYdLDv8/9ODurN1WGkAtPgXAeAYFQDgQkgVMoAdAo5Ol1vuN4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lQ7W/zlM/D+KjuTyH7IRQNl8XBsqxvE/ZQETuHV3E0DzyB8MPDcKQIGVQ4tspyVAl4v4Tsw6BkDxLhfxnVgbQMPwETElEgRAkElGzsKeHECXrfVFQtv/P8VyS6sh8QVAUP2DSIac5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wkzbv7LSAECF61G4HuUbQKJdhZSf1Ps/je4gdqbQ/j/ye5v+7AcMQOlILv8hvSVAW0I+6NksAkDs3R/vVUsXQO8DkNrESfU/JCh+jLkrFUDcEU4LXnT8PwH76NSVTwVAem02VmIe4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CYofY+7aBEC3lzRG60gdQN83vvbMkvE/nuqQm+FGHkCkqgmi7sMOQMnlP6TfHiVAd4TTghd9BEClLEMc6+IbQOXyH9Jv3/4/8wLso1OXGUCgVPt0POb/P0q1T8djBgJAhNVYwtoY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4gFlU66wB0DiWBe30YAkQK3ddqG5zvE/g2kYPiIGFUCUh4Va0/wPQB+F61G4fiRAM23/ykpTAEDnHafoSE4ZQPfpeMxA5fk/+tAF9S0TGkAJ4dHGESsBQA034PPDyAFAVp5A2ClW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gy/dJAbBAUBvEoPAykEmQBH8byU7NgFADVTGv89YE0BJLv8h/TYNQPvL7snDYiVAWKg1zTuOAkD20akrnyUZQJmesMQDyvw/bt3NUx1yGUDhl/p5U5H/P8f0hCUeUAJA7N0f71Ur4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1y/YDduWAkAK16NwPcofQGqF6XsNweU/OpLLf0gfE0CKjuTyH9IIQPRsVn2uliRASDMWTWfnBkDKFd7lIj4cQCyf5XlwtwFA+Um1T8djGkAEyqZc4d39P7tE9dbAFgRA98391eO+4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2UKQgxKmEkDDgZAsYAIXQF5LyAc9m/0/hj3t8NdkDEBWKxN+qR8PQG3n+6nx0iVAAG+BBMXPBEA0uoPYmaIXQHh/vFetTAJA6Nms+lxtGUAfSx+6oP4BQHgLJCh+jAlAYvay7bQ15T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vTrHgOy1AUAVjErqBAQiQOI7MevFkAFA+ie4WFFDE0DvOEVHcnkKQISezarPVSVAIeo+AKnN/z8Gu2HboqwXQJ7qkJvhBvo/OWItPgUgGEBVpMLYQtAAQHqNXaJ66whALZW3I5wW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9pfdk4fFBkDZmULnNZYeQLhZvFgYouw/qOMxA5VxDUD7ljldFpMOQLwFEhQ/JiVAPZtVn6ttAUC+TX/2I+UXQOvFUE60K/8/uhRXlX2XGkC9OseA7LUAQK6BrRIszgNARGlv8IXJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZkmAmlp2B0Dy7zMuHAgbQC/5n/zdO+0/6znpfeNLEkAk7rH0oUsMQKpgVFIngCZAhqxu9Zz0AEBLH7qgvgUYQLOY2Hxc2wFAR4/f2/RnG0BvnuqQm6EAQCECDqFKjQRA9N4YAoDj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jgbwFkgQC0COklfnGEAgQGWqYFRSpwRAsTOFzmtsBUCh+DHmriURQI/C9ShcryVANzemJyzxAUB6pSxDHOsYQBsN4C2QoPI/yol2FVL+FUBQcLGiBlMCQJNX5xiQfQdAn7DEA8om5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XFoNiXssAUAlQE0tW8sdQHlYqDXNu+8/38Mlx50SAUB1WUxsPq4SQLAD54woTSZA0GG+vAD7AED1EI3uIFYXQIFDqFKzh/A/mDRG66iqFUCmCkYldQIDQJBmLJrODghA9aCgFK3c5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vft0PGYg8T9IisiwihcZQFFrmnecwiJACW05l+KqI0ClMVpHVdMEQOCcEaW9QSRAdO/hkuMOAkDVeOkmMSgZQPYoXI/CdfY/XkvIBz0bGECcxCCwcugAQHqlLEMcKwVAT5XvGYlQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6BN5knTN+D94tHHEWtwaQDrpfeNrT/w/VKnZA61A/D8YfQVpxgIQQMuhRbbz/SRAwOeHEcLjAkBv9Zz0vjEZQA4V4/xNqAJAY+5aQj5oG0BQ/Bhz1xL/P8o329yYHgRACJChYweV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GvfmN0w0yD+bcoV3ucgNQCrj32dceBRAGXPXEvKhKED8GHPXEjIPQJm7lpAPGiVAj6omiLqPB0CPGaiMfx8bQFvTvOMUnfI/vTWwVYIFE0D0N6EQAQcCQGMoJ9pVCAhAHhuBeF2/5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QGzp0VRPwD/CFyZTBWMNQJyKVBhbyBRAdEaU9gZ/J0Ay5q4l5IMPQIv9ZffkISVAdVlMbD7uB0Dqymd5HhwbQAIOoUrNHvM//Bhz1xLSEkBMGqN1VDUCQMcpOpLLfwdA8fW1LjXC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cSAkC5hA9D/7XG3F/nIHQM/3U+Oley9AT6+UZYijB0D1vvG1Z1YEQPJBz2bVJyRAbmk1JO4xA0As1JrmHYcYQEgzFk1np/Y/PKWD9X+OE0AOoUrNHugDQM/abRea6wZApvCg2XVv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TfOOU3SkEUDIBz2bVd8mQDLmriXkg/Q/zEBl/PssFUD8AKQ2cXIKQAMmcOtuLiNAIO9VKxO+BUDQ0D/BxSocQDHT9q+sNABA4Nv0Zz9yH0CGj4gpkYQCQKFKzR5oxQpAfJ3Ul6Wd5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fA+XHHeKAUCKk/sdiuIdQEbT2cng6AVAL90kBoFVBUAijnVxG80HQHgLJCh+DCVAQPZ698d7BkCIgEOoUlMcQBbB/1ay4/k/7Eyh8xqbHED0piIVxhYDQBGN7iB25glAz4HlCBnI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rJDyk2of9D9ZNJ2dDG4gQN4f71Urk/s/RYE+kSfJ+j82k2+2uXEJQHo2qz5XuyRA4QuTqYIRBEAvF/GdmJUcQOscA7LXO/4/UWuad5ziGUBv05/9SFEDQNuK/WX35AhADveRW5Nu5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2T15WKi19z9JgJpatnYfQBGN7iB2Jvw/FmpN844TGUDCEg8omzILQIEExY8xtyZA48KBkCxgBUCKsOHplRIaQNdR1QRRtwVA/vFetTKBHUBeLuI7Mev9Pwg9m1WfawNAM8UcBB0t4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xb9gN2w7FEDXFwltOacjQNrJ4Ch5NRBAaCJseHrlCUAq499nXHgTQCS5/If0uyVAqiuf5XkwAEA8FAX6RB4YQG/YtiizwQBAEd+JWS8GGUAjhEcbRywCQLxXrUz4ZQRARZ4kXTP53D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lN43vvbMGEDXwFYJFjcgQDGUE+0qZAJA8SkAxjOoA0D1SlmGOFYSQIC3QILiByZAomKcvwkF/z+7D0BqEwcXQL01sFWCxQBAzGJi83EtGEDGv8+4cCACQCHNWDSd3QNAynA8nwH12j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NLqD2JmCGEAAqU2c3L8gQCU7NgLxOgpAX16AfXTqAUBznUZaKu8RQHuDL0ymCiZA2/l+arz0/z/Nr+YAwRwYQHRGlPYGnwFAOul942vvF0AWpBmLpjMCQFYrE36pnwNAp11MM93r3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lZo90AosGUBV3o5wWgAgQO/Jw0KtKQ1AjukJSzxgAUDBVgkWh7MRQNO84xQdCSdAatlaXyS0AUCuR+F6FA4ZQJ2dDI6SVwBAqmVrfZEQGUAMdsO2RZkCQNdppKXytgRAMILGTKJe3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0a5Cyk/KEUCFsYUgBwUgQHlYqDXNOxNAV1uxv+yuNUDye5v+7IcRQHQkl/+QniZAPpY+dEH9/j/1oQvqWwYXQBWscTYdgew/3J212y4UFkAIILWJk/sAQDD186YiFQdAo5V7gVmh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PdUhN8NdI0Bjf9k9ebglQJ4MjpJXBxlATn/2I0WkD0ANq3gj8wgLQJSHhVrTXCVAVcGopE5ABUAXSFD8GNMZQD1+b9Of/QNAHEKVmj0QGkCeQUP/BBcDQAZHyatzzAlAQDOID+z45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IQIOoUpNBUDbiv1l9+QYQFrwoq8gzQtAHEKVmj0QD0BCJhk5CzsQQPcGX5hMtSVAmkLnNXaJAUAai6azk8EZQLqgvmVO1wFAste7P94LHkAW3uUivtMAQCE82jhi7QNACjGXVG235D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+IiYEkk0EEBIMxZNZ+cUQEhQ/BhzlwVAq8/VVuyPEUBYrUz4pb4HQNb/OcyXxyNA/TBCeLTxBkAfgNQmTg4cQAAd5ssLMPI/+KV+3lTEF0DG4cyv5gABQO8DkNrEyQVAsKpefqfJ3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rir7rgg+DkB2bATidR0ZQI51cRsN4AZAxjNo6J9gFEBoXDgQkkULQPYoXI/CFSRAUHCxogbTAEBjl6jeGngbQJpC5zV2iew/1c+bilQ4GECGyVTBqKT7P8tKk1LQbQVA+l5DcFxG4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w/ARMSXSBkBATS1b6+shQPa2mQrxSNo/NKK0N/iCB0B4YtaLodwMQL8OnDOiFCZAZMxdS8iHBkBuwOeHEWIaQGZOl8XEZgBArIvbaABvG0C1FfvL7kkDQO7O2m0XWgNAiX0CKEaW4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NC4cCMnCDUAU0ETY8OQhQKOSOgFNRApAH0sfuqD+D0BjnL8JhYgLQKs+V1ux3yRAEXAIVWr2/j+UpGsm34wZQLvQXKeRlgRA8uocA7I3HUCzKVd4l4v9P9U+HY8ZaAVACg+aXfdW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PwCpTZzc/z/jjcwjfxARQFqeB3dnbRFA9bnaiv3lFEA/UkSGVXwNQBpR2ht8QSZA3GgAb4FEBUAdcjPcgG8aQFvOpbiq7P4/zR5oBYbsF0AEIVnABC4CQIwtBDkoYQZAGEM50a5C5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+THmriVkBkCQiCmRRI8bQErSNZNvNvg/M/59xoWjEUCp3hrYKkEOQCZTBaOSWiVAWyVYHM68AUCD+pY5XTYYQAQcQpWaPf0/bTmX4qoSHEDG3LWEfBAAQLmI78SslwZASkG3lzTG5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JAuYwK07AkAuBDkoYWYVQG/Tn/1IEfM/Uu3T8ZihH0Cxv+yePCwOQDarPldbkSVAizIbZJIRAkAnMQisHPoYQL1vfO2Zpfc/2LYos0GmGkAGTODW3XwBQFSM8zehUAZAl/+Qfvu65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LWACt+7mAkAwL8A+OjUUQAdCsoAJ3P4/EQGHUKU2IkBLPKBsyhUSQCZTBaOS+idAXvQVpBlLAkBTrvAuF9EYQNvEyf0OxQVAokW28/20GkBjKCfaVQgBQOc6jbRUHgVA72/QXn085T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GD4ipkTSDUCMuWsJ+WApQJsg6j4AqfM/h78ma9STIUCZ8Ev9vEkRQNuK/WX3xCZAuRluwOcHBEClZg+0AqMbQLAbti3KbABAx4Ds9e4vHEBTrvAuF7EAQN3vUBTokwVAp+fdWFAY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5zqNtFQeC0CmCkYldYImQL+CNGPRtBFAq5UJv9QPIECPwvUoXI8KQBQ/xty15CRAEarU7IHWAkDK/Q5Fgf4bQJv+7EeKSPk/n8iTpGsGGUDOcAM+P8wAQJBmLJrOjgVA2Lyqs1rg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0egOYmfKA0BqvHSTGMQpQKa5FcJqLOE/HXIz3IAPEkAnvW987VkNQBzr4jYaQCRAYr68APtoB0BK0jWTbzYdQANDVrd6zvo/Bkzg1t08GEAKv9TPmwoCQO6x9KEL6gRAdv2C3bDt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"klz+Q/qtCUDi6ZWyDJEmQN6Th4Va0+4/V3iXi/ieIUDYgXNGlDYNQAaBlUOLDCZAKXl1jgFZA0Catn9lpYkYQL1vfO2Z5QBAk1LQ7SVNGEDnb0IhAk4CQKd5xyk6UgNAh4px/iaU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jPhOzHqxBEALRiV1AnokQAQEc/T4vfs/jdE6qppAF0CC597DJQcFQLTIdr6fOiRAM4rlllbDAkABwRw9fi8aQEloy7kU1/0/nkFD/wTXGUD3deCcESUCQHOdRloq7wRA4dOcvMgE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qFfKMsTxAECfq63YXxYeQFeVfVcEfwVAlMFR8urcGkAU6BN5krQOQBniWBe3kSZAtLCnHf5aA0BvKlJhbAEaQOoENBE2vP0/5nlwd9ZOGkCX/5B++zr6Py140VeQpgNATYI3pFGB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vFzEd2KWAkC5x9KHLmgeQDmX4qqybwNAOKEQAYdwHECGG/D5YYQOQCBB8WPMvSZAskY9RKM7A0D7kSIyrAIaQJTBUfLqnPw/WfrQBfUtGkCMEB5tHDH6P/evrDQpxQNAaLPqc7WV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zGJi83HtAkC+amXCL/XNPzCeQUP/hPQ/64uEtpwrHEA7x4Ds9S4KQGiz6nO1dSRAAIxn0NB/AkCcilQYWwgbQMlZ2NMO//0/3e9QFOgzGUBH5pE/GPgBQINRSZ2A5gRA9G3BUl3A5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfBL/bwp9j/IzXADPv8HwP8h/fZ1YPw/aW/whcn0KEAr2bERiJcGQMIXJlMF8yNArRdDOdHuAkBoP1JEhhUZQJ6Y9WIoJ/Q/2LYos0HmGUC70FynkdYAQDF8REyJpAdAQBL27SQi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lbcjnBa89D/lJ9U+Hc8IwCswZHWr5/0/OGdEaW+wKUBfKcsQx7oGQDBMpgpGBSRAlLw6x4DsAkB4RfC/lSwZQHgoCvSJvPI/H/RsVn3uGUDmriXkg54AQC+ob5nT5QdAVpkprb+l4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"luzYCMRrBEAqrb8lAP+ov3hGW5VE9us/omKcvwn1IkAhdqbQeU0KQJvmHafoKCRAnbryWZ7HBEDOjekJS3wZQMb5m1CIgPE/vLN224XGFUA5KGGm7V8CQEGfyJOk6wNAUWaDTDJy4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1m670FxnAUDJjo1AvK7Jv9An8iTpGgNADTfg88PoGkC7Jw8LtaYIQL1SliGO1SVACyk/qfbpAUBDBBxClToZQLr3cMlxJ/Q/xy5RvTWQFkBI3GPpQ1cDQDmX4qqybwRAR+Umamnu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"klz+Q/rtA0DeVKTC2IIjQDc4Ef3a+us/H5268lme/T80uoPYmYIHQFK4HoXr0SVAzQaZZOQsBUAAHebLC7AaQJusUQ/R6ANA2uGvyRpVHEDmllZD4p4BQI/HDFTGfwJAKe0NvjCZ3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B84ZUdqbBkCGWtO847QUQMODZte9leQ/jzaOWIsPEUB40VeQZuwLQJxQiIBDqCNAdTxmoDI+BEBS1QRR96EZQDnWxW00gPw/tMh2vp/aF0BHj9/b9Of8P9c07zhFBwRA83aE04KX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lE25wrvcB0A98gcDz70ZQCQrvwzGiOg/GmmpvB3hCUAKv9TPm4oNQJvmHafoSCVAlGqfjsfMBEBcA1slWHwaQNUJaCJsOAFA26LMBpnEG0D2XRH8b+UCQIdtizIbJAdA/N6mP/uR5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Di2yne/nAUCnBS/6CpIcQIz0ona/iuk/Haz/c5jvCUB3+GuyRn0EQHY3T3XI7SJAJUBNLVsrBEC71XPS+yYZQGZOl8XEJgBAa0jcY+mjGkAQ6bevA+f+P/PIHww8NwRAY7ml1ZA44T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N4lBYOWQAkDYKsHicEYZQGg/UkSG1fU/Ol0WE5tvE0AmAWpq2boQQLN78rBQiydAlZo90ApMAkAz4Zf6eVMZQIHs9e6P9/E/g24vaYz2F0CEgefew+UAQMrDQq1pHgZAoP1IERnW5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9Pi9TX+2D0APRYE+kZciQJp8s82N6QtA845TdCSX+z+8rl+wG7YKQOFiRQ2m8SNAox6i0R0EBkD67evAOaMbQEATYcPTawVAAiuHFtluHEBJgJpathYAQNIA3gIJSgVALiC0Hr5M4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C3va4a9JBkBT6LzGLjEaQIbLKmwGuNU/NQwfEVNiAkDzAuyjU1cOQPyp8dJNgiZA2QjE6/rFAkAgY+5aQv4aQAWLw5lfDQBAKowtBDmoGECXrfVFQtsAQEWeJF0zOQVAsmSO5V314D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aw4QzNEjCEDy7zMuHKghQK98lufB3fs/HLYtymwwEEAQQGoTJ3cIQIqO5PIf8iVA9dvXgXMGBUCoOuRmuCEbQP7UeOkmMQRATgte9BXkFkD9ag4QzFH/P1BwsaIG0wNAEqRS7Ggc2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iSmRRC+jBkBpb/CFyfQlQDiDv1/Mltk/N2xblNkgCUBBDkqYaZsQQPKwUGuatyVAjZyFPe2wBEDTakjcY2kdQAX6RJ4kXQNAur2kMVqnGEC2hHzQs9n9Pyy3tBoSdwBAsW8nEeFf1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rK3YX3bPCkCDL0ymCpYjQA/uztptF/w/2A3bFmW2EECN0TqqmuALQLdif9k9GSVAt3pOet84BUDsTKHzGjsdQED2evfHuwFADf0TXKwoGkBXQ+IeS5/+P1zmdFlMrAFAXmQCfo0k0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CD2bVZ/rBEDMtP0rK60fQNXpQNZTK+o/YYkHlE1ZIUDUYBqGj8gPQCuHFtnOdyZA+n5qvHTTA0Bz1xLyQQ8aQHFV2XdF8AFACMkCJnCrGkDzqzlAMEf7P+viNhrAWwNAtJPBUfLq3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dNL7xtfeCUB381SH3KwTQIBh+fNtwdw/vJaQD3rGMUAgRgiPNs4QQBDpt68DhyZAjXqIRndQBUCbyTfb3PgXQOAQqtTsQQFADwu1pnkHGkA6r7FLVO/6P2FUUiegSQNAVBwHXi132z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cQUU6umj4z+DaRg+IgYYQM7HtaFiPB5Aa5+OxwzU/T+/YDdsWxQIQPCFyVTBKCRA5nRZTGw++j9lpUkp6DYXQB9LH7qgPv8/X0ax3NJKG0DuX1lpUgoAQLn8h/Tb1wRA2qm53GCo5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"71UrE37pA0BAwcWKGlwiQOhNRSqMjRVAFTqvsUsUAkBPHhZqTfMHQBBYObTIViNA4Zf6eVMR/z/Gv8+4cKAYQAvvchHfyQFAr1qZ8Es9HUAHzhlR2psBQE2h8xq7RAVA6dSVz/K84D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lialoNtLAUAVjErqBJQhQMvW+iKh7QFAwYu+gjRjAkBBZfz7jMsIQEVkWMUbySNAHlA25QovAUDOpbiq7NsZQCy8y0V8JwBADaZh+IgYHEBAh/nyAuwAQKyL22gArwRAtyqJ7IOs4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qBjnb0Kh/D9MpgpGJfUZQA/W/znMF/A/ngd3Z+02BUCkcD0K1+MFQG3/ykqTQiNAceZXc4CgAED6m1CIgEMbQFpkO99Pjfs/l631RUJbGUBZhjjWxa0BQB7htOBFXwZAgT0mUprN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aw4QzNFj/T/R6A5iZ8oeQBZLkXwlEOY/HVpkO9/P+j/RyyiWW5oHQLRxxFp8SiNAcY+lD12QBkBpHVVNEJUYQP5g4Ln38Pg/TGw+rg3VGUCBQ6hSs0cDQFQ1QdR9gAZAmZ6wxAPK5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XD0nvW/8/T+lTkATYYMdQHBBtixfF+w/MJ5BQ/8E+z81mIbhI2IJQOpb5nRZXCNApwUv+goSB0DFA8qmXKEXQNWVz/I8OPU//OO9amXiGEBSD9HoDuIDQCnQJ/IkaQZAVDiCVIod5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HhuBeF1/BUDwMy4cCEkeQAYwZeCAlu4/Qgkzbf8KCEC9HeG04MUJQODW3TzVMSJADeAtkKA4AUDoE3mSdC0eQPNZngd35/k/ceZXc4DgGUBenWNA9joAQNk9eViodQZAyv55GjDI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VryReeQP/j98LH3ogroeQOBkG7gDdeM/XKyowTTsGUBWn6ut2N8EQAn5oGezqiVAWJBmLJrO/T+tUQ/R6E4cQIqryr4rgv8/hQg4hCr1FUAWak3zjlMCQEkRGVbxxgZA3Xwjumdd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KSLDKt4IBkA1KQXdXjIhQA2mYfiImABA2xZlNsgkFEBSuB6F65EJQFj/5zBf3iJAK/uuCP73AUBmiGNd3IYVQPFG5pE/mPc/GvonuFixGEAOvjCZKtgAQGzPLAlQUwZAqP3WTpSE5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z/LNNjemBEDNWDSdnewgQPilft5U5ANAn47HDFRmHUBG66hqgmgPQLHh6ZWyzCVAgT6RJ0mXB0DoE3mSdE0bQI3ROqqaIABAHVVNEHUfHUCTUtDtJQ0BQJEnSddM/gRAMZkqGJVU4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qOMxA5VxA0DKw0Ktab4nQFqBIatbPf0/MEeP39u0DUBh4Ln3cAkQQLKd76fGiyZAmkLnNXaJAkDr/xzmy8sZQItPATCegQhAqBjnb0IBHEBOl8XE5iMBQOgTeZJ0jQNAR8Zq8/+q5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pTFaR1UT+j+fzarP1XYQQEHUfQBSG/I/51JcVfadE0DmriXkg94JQDj4wmSqoCRAQxzr4jbaAUD4ja89s4QYQCoAxjNo6Po/wqONI9YCGUD7dDxmoDL9P5M6AU2ETQZA68n8o29S4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FCLgEKpUA0BTXFX2XeEjQP5IERlWcfE/+z+H+fJCBEBsJt9sc6MLQBfZzvdT4yRAthDkoISZ/T+p+wCkNtEaQMjNcAM+P/E/uDtrt11oG0BeS8gHPRsBQBDM0eP39gVAi90+q8yU2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0NA/wcVKAEA0v5oDBHMiQJs4ud+hqPE/tOVciquKC0D7Bbth2yIMQEI+6NmsOiVAm8k329yY/z/MRXwnZh0ZQBB1H4DUpvs/eQYN/RPcGkDXFwltOZcCQBWpMLYQpAZA3bQZpyGq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e0ljtI5qA0BCIQIOoTogQE0ychb2tPk/mN2Th4Xa/D9ENLqD2FkLQEJg5dAiOyVA/+cwX14A/j/3zJIANTUYQJGb4QZ8vgFALzTXaaRFG0AB9tGpK98BQNXsgVZgSAZA8Pj2rkHf4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GTkLe9phBEAj88gfDDweQOEH51PHKtc/fAqA8QyaFUBtxf6ye3IHQBfZzvdTAyRAaNDQP8HFBkDKN9vcmD4bQCAMPPceLgFAbCbfbHPDGkBT6LzGLtH8P2k1JO6x9AFABRbAlIGD4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f03WqIeoCEDx9EpZhjglQPnWh/VGrdg/Ieo+AKnNEkB0tRX7y+4JQB04Z0RpbyRADDz3Hi65B0AWE5uPa2MaQBdIUPwY8wNAB7ZKsDj8G0CBQ6hSs4f+P4s3Mo/8wQFANQpJZvUO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X0GasWg6CkBWn6ut2N8hQEt2bATi9fE/eJeL+E4MB0AWhzO/mkMNQNlfdk8e9iRAaW/whcnUA0D36XjMQMUZQF6dY0D2ugNAPj+MEB4tHkACt+7mqc4AQBEebRyxlgdAOe//44SJ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"deWzPA/uBUAiT5KumdwaQPsEUIwsmdk/5dU5BmQvAEBMVG8NbFUKQIiFWtO8IyVA7fXuj/cqC0C7uI0G8BYdQNnr3R/vVQFAUps4ud/hFkDa/pWVJiUCQPtXVpqUAgZAJo3ROqoa5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+SzPg7vzBkDdmJ6wxIMfQL0BZr6Dn+8/LJ/leXD3/T8yA5Xx73MHQFfsL7snTyVAsVBrmnfcCUDj32dcOFAeQDsZHCWvzvw/xuHMr+bgF0CcM6K0NzgDQAywj05d+QdAZavLKQEx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ipP7HYqCDkAMPPceLjkbQDzaOGItPv4/2Ls/3qvWCEAsK01KQbcLQHlYqDXNWyZA5bM8D+6OBEAKLlbUYJoYQCe9b3ztmQFAC7WmecdpGUD4Nv3Zj9QBQKnZA63AkARAxqNUwhN64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WyVYHM48BED59xkXDuQeQJQUWABTBt0/eXWOAdnrAkAmHlA25YoIQEZCW86leCNAy/Pg7qzdAECil1Est/QYQGHD0ytlmf8/n+V5cHfWGUCpwTQMH5H+PyLgEKrU7AJAhjdr8L6q4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iLoPQGoTBECxFp8CYLwYQAxZ3eo5afE/xxFr8SkACUDRXKeRlsoNQBTQRNjwtCVAbATidf0CBUDluFM6WJ8bQFOWIY518fo//1vJjo3gGECwrDQpBZ0AQF2nkZbK2wVAfnGpSltc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ajANw0fEAUADeAskKP4fQA6IEFfO3tQ/i2zn+6nxB0Drc7UV+0sGQISezarPZSNANJ2dDI4SBED7kSIyrGIaQLvVc9L7BgJAI9v5fmr8GkAKou4DkNr+P8RCrWne8QJAE/BrJAlC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sVBrmndcCEBfDOVEu8oeQFfsL7snD/4/vLN224UmAUCjI7n8h5QQQLPqc7UV2yZA1edqK/bXBkDSHcTOFFocQAkWhzO/GgBAD9b/Ocz3GkDZCMTr+oX/P6QZi6azUwVAjSRBuAKK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"66hqgqh7CECcxCCwcogbQEOu1LMgFOk/n82qz9UWAUB81cqEX6oGQNC4cCAkGyNAmus00lK5BkAArmTHRuAcQLWmeccpOgRAw552+GvSGkD9ag4QzFEBQP/KSpNSEAVAV+4FZoUi5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kQ96Nqs+BUBhiQeUTRkcQLx5qkNuhtc/4BCq1OwB9j9d+SzPg7sJQDEIrBxaBCRAH6LRHcQOBkAqxvmbUOgWQCYeUDblygBAXKyowTQMGUAXK2owDYMBQJHVrZ6TXgRAJqsi3GRU3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lSu8y0U8AkDVlc/yPJgfQMYwJ2iTQ+w/swxxrIv7F0BMbD6uDVULQMIXJlMFAyRAWmQ7308NBkCrCaLuA7AVQLsKKT+pdvs/IlSp2QONFkCMuWsJ+WABQKeRlsrbUQVAiEhNu5hm3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PiKmRBJ9AEA9D+7O2q0ZQD+Ne/Mbpuk/n3HhQEiW9D+BJsKGp9cHQE3zjlN0ZCRA7xtfe2ZJAkCC597DJWcVQOuLhLaciwJAW5TZIJOsGEBm2v6Vlab/P0CH+fICbAZAF/Ayw0ZZ3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nu+nxkv3CEDZJaq3BlYgQMiYu5aQzwZAgZVDi2xHEEBYkGYsmg4MQGXfFcH/tiNA3dJqSNyjAUDMC7CPTh0aQEmFsYUgh/E/8s02N6aHGUBWZd8Vwf/8P4qryr4rQgJAqKrQQCwb5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5pE/GHhuEkDMlxdgH70aQJet9UVCGwVAfVwbKsZ5+j/cLjTXaSQKQJZDi2znmyVA6spneR6cA0DYuz/eq5YYQEZfQZqxaABAtMh2vp+aFUBQNuUK7/IAQMv49xkXDgpAdhppqbyd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gpAsYAL3BkB4uYjvxIweQNPe4AuTqf8/yhXe5SJeEkBQ3zKny+IOQIenV8oy5CRAwOyePCwUBUD6fmq8dJMcQKpgVFInIPM/twvNdRrJFkAQdR+A1Kb+PzGUE+0q5ARA7PgvEARI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"beLkfodiAkC4dTdPdYgeQLcos0EmGfE/Rrbz/dT4+T95dY4B2SsNQHh6pSxDPCZAsvShC+obBkCxpx3+mkwZQKxWJvxSP/o/lialoNvrFUAgJAuYwK3/P9zXgXNGVANAX7Uy4Zf64D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1GAaho+IBkAT1VsDWyUaQK3ddqG5zvE/5dAi2/n++j8YPiKmRBINQE9AE2HDMyZAJvxSP2/qBUDEJced0gEaQBniWBe30fo/7rH0oQtKFkBRZoNMMnL/P5nTZTGxeQNAEqRS7Ggc4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5dAi2/n+AkDttgvNdYohQFJJnYAmwvE/uw9AahMHEUA1tWytLxIMQAU0ETY8vSRAMnIW9rTDAkBXIeUn1b4aQHNLqyFxD/w/+Q/pt69jG0AhByXMtD0AQBWpMLYQ5AVAgZTYtb1d5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ed+JWS+GAEAF3V7SGO0IQNYcIJijx/Q/isiwijfyFEDU8ZiByngJQOM2GsBbgCRAJxQi4BBqAkB1ApoIG14YQMO7XMR3Yvw/weJw5lezFkBmZmZmZub9P/BQFOgTOQRAjKIHPgar4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"teBFX0EaBEBCz2bV56omQNjYJaq3BvA/lYJuL2lMCEANpmH4iJgPQFioNc07riVA96+sNCnFCUBOKETAIVQdQFjiAWVTrv4/eEXwv5WsGEDeH+9VK9MAQOif4GJFzQVAujE9YYkH5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b9QK0/ea7z+6MT1hiYcRQBqojH+fsRtAv9TPm4r0FEDCo40j1iIIQEHxY8xdqyRAsW1RZoOMB0CfzarP1bYcQJ7Swfo/h/c/f4eiQJ9oF0CWCb/Uzxv/P5/Ik6RrpgNAPX5v05/94T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nUtxVdn3C0DEzhQ6r/EFwEClSpS9pd8/HOviNhrgJkD99nXgnLEQQPVKWYY4FiZAf7xXrUy4BUAtIR/0bJYaQHl1jgHZ6/o/Zd8Vwf+2FkCinGhXIWX+P+W4UzpYfwJAKv7viArV4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m1Wfq61YBUAvwD46dWX3vyv7rgj+N/M/RIts5/upKkC1FfvL7skQQDy9UpYhziVAO8eA7PWuBkAoDwu1prkZQIfhI2JKJABAJt9sc2MaFkCitDf4wuT+PwLZ690fbwNAbAVNS6yM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zzKLUGwF3j+to6oJoq4BwAB0mC8vYBdAKVyPwvWIMUActi3KbBALQIy5awn5ACZA4Nv0Zz9SA0BOl8XE5kMbQCBj7lpCvvI/fbPNjekJGUCw/s9hvnwAQDvfT42XLgVATtNnB1xX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QFHZsKYy5r/+JhQi4BAVwEzD8BExJQ9AoRABh1AlHUCwyRr1EI0NQF8pyxDHWiRAdy0hH/QsBEDcnbXbLtQbQOi8xi5RPfQ/XkvIBz0bFkAiN8MN+Pz+P8uhRbbzPQZAiuQrgZTY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6SYxCKx8EUBEqFKzB+oiwGKE8GjjiPc/PujZrPo8LEDO34RCBBwJQDC7Jw8LlSVA+mGE8GhjA0C0PA/uznoYQKVmD7QCw/g/f9k9eVjIF0CqSIWxhSAEQGQe+YOBJwpAN1DgnXz65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jqq3BrbKBUDnHafoSI4pwGIVb2QeuQ9A3bWEfNCDNEDRlnMprooRQDGZKhiVFCdAUHCxogYTAUDSAN4CCWoZQDz3Hi457vM/OpLLf0i/F0Ce6pCb4cYCQNWVz/I8eAhAmWa610n95z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zVg0nZ3MCkAP0egOYocYQFcE/1vJjvM/TUpBt5d0HECUMNP2rywJQOqVsgxxDCRAfnTqymd5/j9WSPlJtU8UQPkx5q4l5ANAIhrdQeyMHECnXOFdLiIAQA2Jeyx9qANANiIYB5eO4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3UHsTKHzC0Bc5nRZTCwgQLgehetRuBFAQmDl0CJb8T9NMnIW9rQLQGiz6nO1FSRAnL8JhQh4DkCjWG5pNSQeQNaQuMfSRwFAgPEMGvonGUAW9rTDX5MDQFvTvOMU3QVAsky/RLz15T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HjNQGf/+CUAm/FI/b1ojQGHD0ytlmfA/S6shcY8lEkAVkWEVb+QIQFwgQfFjDCRATFRvDWzVBkCkiAyreAMfQDAS2nIuxf4/4V0u4jvRHEAzUBn/PiMAQCApIsMqngdAmNpSB3m95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"443MI39wBkDGM2jon5AgQAsMWd3qOQlAa9RDNLoDBEB2GmmpvF0NQDqSy39I3yRA+SzPg7szA0DAz7hwIEQXQEzD8BExpfY/VpqUgm4PGEAYWwhyUAIAQNPB+j+HOQJANbQB2ICI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FXR7SWN0DEAPYmcKnVcaQCTRyyiWW/w/6J/gYkXNHEAAdJgvL4AMQKabxCCwMiVA6SYxCKxcA0DpDmJnCh0cQNIdxM4Uuvs/VDpY/+dwFkAMyF7v/vj9P5Cg+DHmLgVA3Qw34PPD4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bypSYWyh8z9szywJULMYQFoNiXssfQpAlN43vvaMDkD/If32dWALQO7rwDkj6iRAhj3t8NdkBkAuOe6UDvYZQGOXqN4a2Pk/HsTOFDrvGkCYTBWMSmr9PzMbZJKRswVA71TAPc8f4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J2a9GMqJAkDUghd9BekXQN3vUBToE/A/fJv+7EeKHEBrgqj7AOQKQMP1KFyPYiVA4Ep2bAQiAUDSUnk7wokaQE+Srpl8s/c/jzaOWItvF0AldQKaCJv/P1TGv8+48AJAmC8vwD465D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MQisHFrkBkD7ljldFhMcQCMyrOKNjABAoDcVqTC2BUABwRw9fk8QQCQofoy5CydAW9O84xSdAUBYObTIdv4XQMTOFDqvMfs/jh6/t+nvGkCnrnyW50H/P+ik942v/QVA7/54r1qZ3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BvUtc7rsA0BwzojS3mAgQBY0LbEyGtQ/1nPS+8ZXCUBxOPOrOcAGQPIHA8+99yNAQ3OdRlqqBkBszywJUHMbQF5ortNICwJAKJtyhXd5GkAP1v85zJf/P4GyKVd4FwNAqIsUysJX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d9uF5joNBUC8s3bbhcYeQJ2dDI6SV/Q/fqmfNxWp+z8DPj+MEF4OQKJFtvP99CVAW+uLhLacA0CGj4gpkYQZQHfbheY6jQJAIEYIjzaOHECUE+0qpLwAQCNnYU87PAhAoyO5/If03z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aoe/JmsUB0BD5zV2iaogQDwRxHk4gek/jXqIRneQ/D9QwkzbvzIOQJYhjnVxeyVAOPOrOUBwAUA+lj50QV0aQDyDhv4JLv0/L26jAbzlG0DDR8SUSKL/P4ums5PB0QRA5rD7juGx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"duCcEaU9AkC4HoXrUZgZQA3jbhCtFeA/dAexM4VOB0DjiLX4FIALQIenV8oypCRAjL6CNGPRAkAMzXUaaUkaQLbbLjTXafs/83FtqBinF0Cif4KLFfUAQIPdsG1RpgNAuJTzxd6L4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WvCiryANC0C+vAD76FQPQDz3Hi457g5AdnEbDeAtFEBx5ldzgAAQQIhjXdxGoyVAF/GdmPUiBkCkqgmi7oMZQDMbZJKRs/Y/EEBqEydXGUBqvHSTGAQAQJYhjnVxmwNAAimxa3s74D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pu3w12QNEUCPU3Qkl/8GQOT3Nv3ZjwpAbm5MT1jCFkB8LH3ogjoJQGFUUiegSSVAeV2/YDesBUDpfeNrz8wZQAYN/RNcLPg/PdUhN8NtGUCP/MHAcy8AQKJdhZSfVAVAJPJdSl0y5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tdaoh2i0C0Ct3XahuU4JQDxO0ZFc/gFAhqxu9Zz0FkAtz4O7s7YMQISezarPtSVASnuDL0ymBEDsF+yGbasYQLjM6bKY2Ps/lMFR8uq8GEAktOVciqv+PzdPdcjN8AVADD7NyYvM5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VryReeQP/T+PqiaIui8WQCv2l92TB/k/ak3zjlP0F0BivrwA+wgTQIzbaABv4SZAaFw4EJIFBEA+6Nms+jwXQGBZaVIK+gBABthHp65cGkAQejarPtf8P6n7AKQ2sQRA2O+Jdar84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ptWQuMfSDECiC+pb5jQWQE4oRMAh1PA/NpNvtrnxEkAlXTP5ZnsTQNGRXP5DOidAyJi7lpBPAUAWak3zjjMZQKKXUSy3dAJA5WGh1jSPGEBV2XdF8D/9P88xIHu9uwNAAfp9/+ZF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E9VbA1vlEUCuZMdGID4YQJF++zpwDi1A0NVW7C9bG0Dek4eFWpMPQDsBTYQNbydA9E9wsaIGAEDsNNJSeXsYQDW1bK0vEvc/gEi/fR14GkBFR3L5DykAQP1qDhDM0QJASkIibeNP3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zR5oBYbsHECVgm4vaQz7PymuKvuuiARAgEi/fR14K0Dowd1Zu+0JQJp3nKIjeSRAH0sfuqA+BUD7Bbth2yIZQCqpE9BE2PU/BYasbvX8F0DkoISZtn/9PycxCKwcmgJA2T15WKg15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WcAEbt2tEEAeM1AZ//4GQE5iEFg5NCtAeekmMQhMHUDDZKpgVNIJQPMf0m9fJyRAke18PzVe9z+OklfnGDAWQI1iuaXV0ABAmEwVjEpqGEBeS8gHPdsAQEp7gy9M5gZArdug9ls75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JCh+jLmrEUD5g4Hn3kMFQLd8JCU9DOY/1xcJbTk3FkCnkZbK21ELQDj4wmSqwCZAol2FlJ8UCkBYxRuZRx4cQKMG0zB8xAdAxooaTMNQHEDDZKpgVJIBQPWEJR5Q9gZAW2H6XkNw4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"78nDQq1pAUDuPVxy3IkXQIxK6gQ0kfw/4gFlU66wGkBslWBxOPMFQGwm32xz4yJADoRkARN4CEB63/jaM6sbQIrNx7WhYgZA+WabG9NTHECWJqWg2wsBQFslWBzOvAVAa9JtiVzw5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jSjtDb6w/D98uOS4U3oJwL6kMVpHVfk/+n5qvHRTJUCOO6WD9T8RQFRSJ6CJECdAlgSoqWUrB0BuaTUk7jEbQO49XHLcqfE/IO9VKxMeGEB2w7ZFmY0AQB+A1CZOrgVAc0wW9x+Z4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p658lufBAkAaho+IKZH5P/Xb14FzBiZABFYOLbKtMkDmXIqryn4OQI/k8h/SjyZAz2bV52prAUCCHJQw0/YZQNI6qpog6vI/cr9DUaAPGUCbWrbWF4n/P2CTNeohGgZA3sg88gcD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C3va4a8pEECE04IXfcUiQJzhBnx+WApAL6hvmdNlCkDfbHNjeoIFQBrdQexMoSNA+Um1T8ejBEBIMxZNZ8ccQNWVz/I8uP4/63O1FfsLHUCM22gAbwECQOrsZHCUfANADFcHQNxV4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GqiMf58xDkCkjSPW4hMhQG5MT1jigfY/bm5MT1jiE0CGIAclzHQPQAIrhxbZ7iRAVtRgGoaP/j9fDOVEu8oYQPwApDZx8vY/6J/gYkVNFkCif4KLFTX8PwQcQpWa/QVAbvdynxwF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C5qWWBmN5z+WQ4ts50shQABXsmMjkPg/aOif4GLFC0Dl7QinBW8HQCL99nXgHCVADVTGv884A0Bl3xXB/3YXQBueXinLkPg/3EYDeAtkGEA+syRATa3/Px0Dste7vwJAWeAruvUa4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BYnt7gE65T8wTKYKRsUdQPVKWYY4tixASbpm8s12AEAIA8+9hwsIQDdsW5TZMCNA0qkrn+X5AkBJnYAmwmYXQL7Z5sb0hP4/Z/LNNjemGkDSGK2jqokBQMAma9RDNARAsYf2sYLf3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vt798V61/z+Kq8q+K0IdQI1F09nJ4PE/GTkLe9qhAUCD3bBtUeYLQFyPwvUoPCVAhZSfVPv0+z9zuiwmNn8YQKBsyhXeZfI/8tJNYhDYF0C78lmeBzcBQOz6Bbth2wJAamrZWl8k5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iEZ3EDsTBEAeFmpN804WQGKGxhNBnO4/iEZ3EDvTCkAlehnFcssIQAYSFD/G3CRAXtcv2A2bAEBD4h5LH3oYQKc/+5Eisv0/mC8vwD46GEByp3Sw/o8AQFX2XRH8LwRAWoEhq1s94D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PDHrxVBuGECalIJuLwkdQPp+arx0ExZAPKWD9X8O/z+lTkATYYMOQG3F/rJ7ciVAHLYtymxQBUD8jAsHQvIaQJijx+9tev0/aTo7GRxlG0Cqtwa2SrD/Pxr6J7hYEQVAgzEiUWjZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R6zFpwCYC0AgY+5aQm4hQEdaKm9HuP8/BcB4Bg19AkAj88gfDHwNQAKaCBuefiVAfZHQlnPpBEDnUlxV9p0aQDHO34RCBPs/hQg4hCrVGUCzJEBNLVsDQHkGDf0TnAdAw0ZZv5mY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GmmpvB0hAkAdA7LXu38eQH/eVKTCWPc/CTNt/8rK+z9A+5EiMmwLQF5LyAc9OyZAb9i2KLNBBEBgkzXqIVocQIbmOo20FABA3LqbpzrkGUDsL7snD8sDQDyInSl0HghAFmu4yD1d5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gUOoUrOHBkDjwoGQLPAgQGrZWl8kNOw/JLTlXIprB0CWIY51cVsMQGFUUiegKSRA7bYLzXVaAkD76NSVzxIcQNZuu9Bc5wJA48eYu5ZQGUC1MuGX+nkBQN481SE3AwtAbvdynxwF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rMq+K4K/BUAjFcYWgnwcQDz3Hi45buA/58b0hCVeDUCitDf4wiQKQInS3uALcyVAFk1nJ4NjCECbyTfb3FgbQJYJv9TPG/s/6dSVz/KcGkBg5dAi2zkAQCDvVSsTfgNA51QyAFRx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N45Yi08B+j92bATidf0aQGFxOPOrKSNACwxZ3ep5C0CTHRuBeJ0LQGk1JO6x5CNAU5EKYwvBAkDcnbXbLlQbQHCZ02UxsfI/OShhpu2/FUBNSkG3l7T8P1TGv8+4sANAL1BSYAFM3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nOEGfH7YE0CmuKrsu+IiQDYC8bp+AQRAbD6uDRVjB0DN5JttbkwLQFJJnYAmQiZAFsH/VrLjAUBhMlUwKikZQD7o2az63ANASl6dY0CWHEBxcr9DUeAAQPqzHykiQwRAzcggdxEm5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TODW3TzVAUDOjekJS/whQCBfQgWHF+s/O3DOiNIeCUBAMEeP35sKQNv5fmq8VCVACwxZ3eq5CEDRBfUtc5ocQCBGCI82Dv4/3/jaM0uiGEA3VIzzNyEAQOc6jbRUngVAs3ixMERO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NIC3QIJiDUDAJmvUQxQfQDElkuhlFAhAhZSfVPt0/D9jtI6qJogMQBb7y+7JoyVAG55eKctQA0D3ksZoHVUYQHtmSYCamgNAc2N6whJvG0BCCTNt/0oAQNEi2/l+6gRA4KEo0Cdy5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l4v4Tsy6C0BybagY5+8bQCgs8YCyKQhAdVlMbD6uBUBf0hitoyoPQPcGX5hMNSRAZk6XxcRmAkCtNCkF3T4YQBLCo40j1gFAbCHIQQnTHkCSdM3km23+P9V46SYxSAhA0lRP5h/95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XynLEMd6BEDKVMGopA4cQBJr8SkAxvU/TrSrkPITA0BmoDL+fYYCQGe4AZ8fBiNAPGu3XWjuAkAzFk1nJ6MaQKJ6a2CrhPk/6DBfXoAdFUAId2fttssDQEd3EDtT6AJAX2Is0y8R4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G9gqweLwAkAcX3tmSRAgQLyUumQcI+c/hgMhWcAEBkB7gy9MpsoDQNpyLsVVtSJAvHSTGAQWBUCQ2sTJ/U4aQIfhI2JKpPc//wkuVtQAFkCr7Lsi+J8CQDQRNjy9EgNAIJbNHJLa4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VIzzN6HQBUCc3O9QFEghQGwFTUusjOA/8KKvIM3Y/T9a2NMOf80JQHqlLEMcCyRASphp+1fWAED8xteeWfIWQMOedvhrsgJAvQD76NTVG0BrYKsEi0P/P0op6PaSBghAdej0vBuL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OzYC8bp+/T8FxY8xd00QQGWqYFRSJ/0/WUxsPq7tIkDxaOOItXgGQB6KAn0ivyNAVHQkl/8Q/T/SNZNvtlkWQL/xtWeWhPQ/ayv2l90zGEAxX16AfTQCQGZOl8XEpgRAm3KFd7kI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n82qz9VWD0Dl1TkGZM8cQPQVpBmLJvQ/7Bfshm0LAUBEboYb8HkNQPhwyXGnhCNAymyQSUYOA0CQvd798R4aQIB9dOrK5/k/XwfOGVHaF0Dg1t081SECQAK8BRIUPwlAt0QuOIM/5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YRqGj4hpAEDZWl8ktNUiQFG9NbBVgvo/b57qkJthAkAJ+aBns6oMQNZW7C+75yVAqIx/n3EhA0CCVmDI6nYbQGJnCp3XWPk/0qkrn+VZGUBYqDXNO04CQI3uIHam0AdAIVZ/hGFA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fdCzWfV5CkAEHEKVmh0YQAZjRKLQst8/YcPTK2WZBEC6vaQxWgcKQHGsi9toACRABvUtc7qsB0Bb64uEtvwaQFExzt+EQgVAnuqQm+GmG0DWrZ6T3ncBQBjshm2LcgVAbFuU2SAT5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lLw6x4BsBED0piIVxhYcQG8Sg8DKof4/rwj+t5Id+j9iZwqd19gKQPkx5q4lZCVAoBov3SQGCUDGxObj2rAeQABSmzi53/s/XwzlRLvKGkBUHXIz3ID/P61p3nGKzgNAFmh3SDHA4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XFX2XRG8EEAwTKYKRkUpQMbhzK/mgPg/mSoYldSJG0DHuriNBvAQQJm7lpAPWiZAHLYtymzQBkCMLQQ5KKEZQEDeq1YmPAFALuI7MetFGkAcsRafAmAAQBe30QDeggVAQWfSpuoe5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WfrQBfUNFEC94xQdycUoQG40gLdAwg1AYcPTK2X5F0DDR8SUSEIQQPH0SlmGGCZAvJF55A+GBUBlARO4dRcaQOXQItv5fv4/FOgTeZJUHEBAE2HD0ysCQPG6fsFu2ARABabTug3q4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nnsPlxy3B0B06spneZ4PQFSM8zehUAFAj41AvK7fBECe0sH6P0cLQIY41sVtVCVAxY8xdy2hAkCWJqWg26sYQC8X8Z2Y9fg/C+9yEd+pFUBfe2ZJgJr8P+5fWWlSigNAR1oqb0e44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7l9ZaVLKAkCvlGWIYz0gQBXj/E0ohANA4C2QoPgRJECjAbwFErQQQEaU9gZfWCZA76zddqE5/z+t+lxtxd4WQBtkkpGzsPI/ufyH9Ns3GEBPdcjNcAP/Pw5Pr5RliARALJs5JLVQ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UYNpGD4iCUCaX80BgnkaQN/eNehLb+4/SKeufJZn/z/F5uPaUPEMQFD8GHPX8iVAArwFEhS/A0B1q+ek960aQKhvmdNlsf0/fQVpxqIJGkBOYhBYOTQCQDliLT4FAARAMxgjEoUW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Akht4uR+A0Cc3O9QFCgFQMKGp1fKsvc/nBa86CtoIEANbJVgcfgIQKg1zTtOESVAZDvfT40XBkB90LNZ9fkaQJYEqKlla/o/uOS4UzoYG0CkcD0K16P9P9yAzw8jxAVAaFpiZTRy5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7ginBS/aEEALRiV1AhoaQCHNWDSdnQBA6+I2GsBbB0AUrkfhetQOQI2XbhKD4CRAkZvhBny+BUBpVyHlJzUaQJkNMsnI2f0/tTLhl/qZF0BftTLhl/r/P47pCUs8YARAwARu3c3T5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bsDnhxHCCkCXytsRTmsgQIkkehnF8vQ/YY4ev7dpAUDUQzS6g5gJQPJBz2bVJyVA8fRKWYY4BkB+HThnROkYQBqjdVQ1gQFAG9gqweJwG0CTUtDtJU0BQPZ/DvPlBQRAtB8pIsOq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4BCq1OwBA0CitDf4wqQeQAx2w7ZFmf4/oDL+fcaF+T/OcAM+P8wKQDVeukkMwiZAh1ClZg80B0BFL6NYbukaQN8Vwf9WMv8/KpFEL6P4G0AHmWTkLKwCQBvYKsHi8ARAC12JQPUP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lPsdigI9CkDKFd7lIu4gQMsTCDvFKuU/FhObj2sDCkDYuz/eqxYQQJM6AU2EbSVAaYzWUdVEBEBi1ouhnAgaQK8I/reSXQFAx/SEJR5wGkCbVZ+rrVgBQG5uTE9YogNAG/M64pAN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WBzO/GqOCEB798d71eohQG3/ykqT0uM/dmwE4nW9A0AC2evdH28QQM9m1edqiyVAIQclzLT9BEAeM1AZ/54aQFYOLbKdrwJA1bK1vkhoGkAvF/GdmHUBQEPFOH8TigNA3C4012mk4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0egOYmcKBEDwv5Xs2LghQC4cCMkCJvs/0lJ5O8LpAEATZtr+lZUHQGQe+YOB1yNA0O0ljdG6B0DnUlxV9p0bQACRfvs68AFAqwmi7gNQG0BD5zV2ieoAQM/3U+OlWwlAyt3n+Gjx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K9mxEYiXBEC0q5Dyk4ogQCApIsMq3vI/ZJKRs7DnAUAsSDMWTScLQBKDwMqhxSVAdqbQeY0dBkDh7qzddmEZQCKrWz0nvfs/Cyk/qfapF0BjRQ2mYXj/P/ERMSWSaAJArVCk+zmF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cXK/Q1FgAkAmx53SwRocQEPFOH8TCvE/h1ClZg+0/z9381SH3IwJQAyTqYJRKSZA8rVnlgQoBUB2cRsN4C0ZQO0NvjCZqvs/QbeXNEbrFkAbR6zFp4D/P0cDeAskKANAeeblsPuO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QDBHj99bAkCbOLnfoaggQBkAqrhxi9w/qtTsgVbg+T/Yuz/eqxYJQCsYldQJCCZAd9uF5jpNBEAZc9cS8uEZQGowDcNHBARArBxaZDvfHEBl3xXB/9b/P+tztRX7iwdAVkRN9Pmo5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l3Mprir7AEAQXVDfMqcgQHwNwXEZN88/MEeP39v08D9OucK7XAQHQGfV52orNiVA2J5ZEqAmBEDxRuaRPxgaQPiImBJJtAFA/Knx0k3iG0CneccpOhIBQBTtKqT8ZAZAsFdYcD/g5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K2owDcNHCEBCIQIOoWodQAxZ3eo56fc/ILWJk/sdB0A9fm/Tnz0OQCh+jLlraSRACCC1iZN7BUDEJced0gEbQGLboswGmQVA4UVfQZqxGUCW58HdWfsBQM3km21uzAFAHm6HhsWo4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"thDkoIRZBEAUeZJ0zQQgQMjrwaT4eOc/8x/Sb1+HAEDhl/p5U9EJQCZTBaOSeiVA/7J78rAQBkCm8naE02IbQOBKdmwEYvE/QrKACdyaGkB5Htydtdv7P/Z/DvPlBQZAEHUfgNQm3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y+5aQj7oCECY3ZOHhTogQPSpY5XSM+M/4GdcOBCS+z+c4QZ8flgKQHBfB84ZMSRATDeJQWDlBEAAjGfQ0P8ZQKYnLPGA8gtAbCHIQQnTG0DH9IQlHtACQHCZ02UxcQNAFhQGZRpN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JEVkWMUbBECNl24Sg4AYQGaIY13cxv4/dY4B2evdD0Atsp3vp8YIQDm0yHa+/yRACHJQwkzbA0BybagY528cQMQlx53SQf4/C+9yEd/JGUBgyOpWz0n9PzlFR3L5TwVAmNwostZQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D39N1qjHBEDXo3A9CqcjQJboLLMIReU/Y0UNpmH4+z9oImx4euUHQGuCqPsAtCNAZapgVFLnA0AEHEKVmr0YQCtqMA3DhwBAmMCtu3mqHUDNdRppqbz9P3wPlxx3CgZA7dgIxOt64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"on+CixU1/j+2SrA4nDkOQM78ag4QzPA/RbsKKT+ZIkBTXFX2XVEHQIj029eBMyRAejarPldbA0Cb5h2n6IgaQGtlwi/1swNAnOEGfH74GEDXwFYJFof/P9wuNNdpZAJAMBLaci5F4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UaVmD7QC/j+LVBhbCPL2P0AYeO49nAdAlKRrJt+cIkC+pDFaR5ULQFjKMsSxziRA1hwgmKMHCUBB1H0AUvsYQMbctYR8EANAhXzQs1lVHEA8oGzKFd7+P/8JLlbUYARApZ4FobyP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kIMSZtr+9z9znUZaKu8hQK/OMSB7PfU/e/fHe9XKA0AYsrrVc1IGQFD8GHPXMiVAOX8TChEwAkAo8iTpmukbQJeo3hrY6gBA0csollvaGEAG9S1zuuwAQFAZ/z7jwgNA10//WfNj4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6WUUyy2tBkD3Bl+YTCUiQNrJ4Ch59fU/eSPzyB8ME0AGKuPfZ1wGQE60q5DyoyNAJCh+jLlrBUAC1NSytV4bQJPjTulgvQFAjL6CNGNxHEDQYb68APv+P2xDxTh/0wZAwjHLngQ24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dR+A1CaODUAMHxFTIlkgQCRiSiTRSwxAi/1l9+QhBkCNtFTejrAKQIkkehnFciNAFcYWghyUBEAr9pfdk2cbQMqmXOFdLgJAaFw4EJJFG0DluFM6WH8AQKw5QDBHjwVAbY/ecB+55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g6Pk1TmG+j/dXtIYrQMYQIPeG0MA8OI/oOBiRQ0mE0DmriXkg54FQEaU9gZfuCVARKM7iJ2p/T/+8V61MuEWQEFJgQUw5eE/SL99HThnE0AjZ2FPO/z+P/IMGvon+AJAogip29nX4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qvHSTWIwEkCBeF2/YBcdQFNcVfZdERxAAU2EDU8v9D+e0sH6P8cMQAHeAgmKXyRAPNo4Yi0+CUAZxXJLq2EeQFbUYBqGjwZAI/PIHwycG0BsBOJ1/YIBQG7dzVMd8gZAT3l0Iywq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+wW7YdtiAkArajANw/cgQMuEX+rnTec/FK5H4Xo0FkCrBIvDmd8HQEATYcPTqyRAwTkjSnvDBUDo3sMlx10YQJAUkWEVrwBAVOOlm8TgHUCXqN4a2OoCQLnfoSjQJwhAF/TeGAIA5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aLPqc7XVBUAUlnhA2RQgQL5Nf/YjRfQ/m/7sR4pI/T8J/reSHTsRQIy5awn5oCRAgEi/fR24BECZZOQs7MkaQM7Cnnb4a/o/G7tE9dbAF0BsBOJ1/YL8P9Zuu9Bc5wFAqn6l8+FZ2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"elORCmNrEUBnmxvTE5YeQDMbZJKRcw9Ak1fnGJB9DUD2RUJbzqULQFFrmnecwiZAopxoVyHlBkA/qfbpeMwbQKhSswdagfI/lgm/1M/7FUCInSl0XiMBQAAAAAAAAAZAWRMLfEW35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6SYxCKwcGUDwMy4cCOkgQBBYObTIthBA+I2vPbOk/D8B3gIJil8NQFjFG5lH3iJATYQNT6/UBUDPZtXnausaQIqO5PIf0vc/pfeNrz1zGEAUyy2thsQAQCbHndLB+gRA0v9yLVoA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tVTejnAaGECVZYhjXXweQOrnTUUqjAhAZTbIJCPn9D84LXjRV1ANQELsTKHzCiNA0VeQZiyaBUDxRuaRP1gaQAh3Z+22C/c/TRB1H4DUGUBtyhXe5SIBQOo+AKlNHAZAuvjbniCx4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6PaSxmg9GUB4RfC/lYwZQBueXinL0BRAE2HD0yslB0C/K4L/reQNQCsTfqmfhyNA6StIMxZNBkDjGTT0T/AaQJ+T3je+9vY/Tu53KAo0F0ChvmVOl4UAQKPMBplkJAVAgxjo2hfQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/g5FgT4RBECad5yiI1kbQH46HjNQmfE/uRluwOcHBEDzk2qfjkcMQET67evAOSVA9wFIbeKkBUCGPe3w1wQYQK98lufB3fo/JLTlXIorGEC5wrtcxLcAQM1YNJ2dzAJArptSXish5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wXPv4ZIjBEBqwYu+ghQgQESkpl1MM9g/XoB9dOqKAEBg6udNReoGQFRvDWyVoCNADHbDtkUZAUBehZSfVFsbQBJr8SkAhgFA5KCEmbafGkBBguLHmLv7P9dppKXy9gVAWB6kp8gh3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z+22C801BEDNkgA1tawcQAGHUKVmjwRAiBHCo40DFECZR/5g4DkRQAu1pnnHySRAseHplbKMA0BR2ht8YTIcQCJPkq6Z/P4/gqj7AKR2G0BEhlW8kTkDQN+mP/uRogRAEarU7IFW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7j1cctxpEkBIv30dOKclQHCZ02UxMfo/escpOpIrKUAaUdobfAESQD9XW7G/7ChA6StIMxYNCkDEmV/NAWIaQLXDX5M16v8/ATCeQUP/GUBSuB6F61H+P76HS4475QJA12g50ENt4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zH9Iv30dAkBpAG+BBEUoQD5ZMVwdgO4/L1G9NbCVDEBBDkqYaXsJQP5D+u3r0CNAvcYuUb31A0DXaaSl8rYdQOp4zEBlfPw/3e9QFOhTGEDBqKROQJP/P8qJdhVSPgdA9dvXgXPG4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Su8bX3umCEA6evzepr/6P8f2WtB74+w/ahg+IqakIUCIEcKjjeMNQLgehetReCVAPzVeukkMAUAkRWRYxbsUQCvB4nDm1wZAdTxmoDJ+HkA6deWzPI8AQM78ag4QjANAINEEilhE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZvfkYaEWDEDFrBdDOVEiQKK0N/jCZPw/4QuTqYLR/z/iHksfuqAKQG8Sg8DK4SVAsFWCxeHMBUCSrpl8s+0aQCLgEKrUbPM/qtTsgVZAFEC4WFGDaRgBQECH+fICbAVAEoPAyqFF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pb3BFyZT/z8F+kSeJN0CQDNS76mc9uI/sp3vp8ZLDEDL1voioW0HQOcdp+hI7iRA2SWqtwZ2AUAtIR/0bPYXQLw/3qtWpgNAvk1/9iOFGkCoABjPoKECQEpenWNANgZAwR4TKc3m4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Imx4eqUsAUAb9RCN7mAWQAn9TL1uEec/7FG4HoWLJEDv4ZLjTukJQIeiQJ/IcyNAFJZ4QNnUAkDAJmvUQ1QZQIyhnGhXIQBANIC3QIJCGECgNxWpMDb7P2FsIchByQVALINqgxPR4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iGNd3EYD9D/HKTqSy38WQExxVdl3xQJAi/1l9+ThGUCk374OnDMJQB6n6Egu3yZADmd+NQdIB0CM1lHVBDEZQDzaOGItPuY/cEIhAg4hFUDzPLg7azcDQJ92+GuyxgRAjC0EOShh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GqN1VDUBAUDqIRrdQSwWQIDyd++oseY/Ap8fRgjPF0CneccpOlIHQNGRXP5DOiZAeGLWi6FcBEDqPgCpTVwZQBQ/xty1BAVA4IRCBBwCHUDXUdUEUff8P0mdgCbCxgNAmwRvSKMC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HlA25QovBUC2uTE9YWkhQLxXrUz4pec/tTaN7bUg6z+Amlq21tcNQPCFyVTB6CNAdEF9y5xuBUBKDAIrh5YdQPJBz2bV5/8/Rs7CnnYYHEAGTODW3bwAQACuZMdGYAVAotCy7h8L4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Z/DfHlBA0BCW86luIogQNnO91Pjpfg/DeAtkKAoIUCdRloqbwcHQLN78rBQKyVAtHbbheZ6BUAuBDkoYQYZQFXejnBa8PQ/hV/q501FFUCXOV0WE5v/P/M8uDtrtwRAqFZfXRUo5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OWItPgVAA0BSRIZVvBEcQC140VeQphdAgy9MpgrGJEBAahMn93sIQCZTBaOSiiNAGf8+48KBAkAlQE0tW2saQAzohTsXxug/L4uJzcfVF0D+t5IdG4EBQBwIyQImMANAVffI5qp55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sCDNWDRdBUC3ek563xgRQBh9BWnGIv8/4zYawFtgCkB8LH3ognoJQEmdgCbCRiRAdbD+z2F+BEBUNUHUfQAdQAb1LXO6rPc/MXxETIlkF0AZ4lgXt5ECQOONzCN/MAhA3o5wWvCi4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"32xzY3rCCEALKT+p9hkjQGTMXUvIB9A/VFc+y/PgA0CCVmDI6hYJQHe+nxovvSRAWfrQBfVtBkBMcVXZdyUaQEnXTL7ZJgdAkq6ZfLOtHkDDR8SUSKL+P02EDU+vlANAsryrHjCP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JGJKJNFLBUCns5PBUbIhQG6l12ZjJdY/PfIHA889CUCnXOFdLiIIQFmGONbFrSRA65Cb4QZ8BUBqEyf3O7QaQJqUgm4vqQZAMZkqGJU0H0BeukkMAiv/Pwu1pnnH6QJAI7pnXaNl5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+mGE8GjjBUBXW7G/7F4kQJRnXg6779U/GJXUCWii/T9lpUkp6LYHQKn7AKQ2cSNAfm/Tn/2IBkBpNSTusTQaQB5tHLEWnwVA2UKQgxLmHEDBVgkWhzP+P7vtQnOdhgRA7GmHvybr5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HF97ZkmAB0Cx4emVsgwkQIVE2safqNU/845TdCTXAEBlNsgkIycHQDGZKhiVFCRA5nlwd9auB0A7jbRU3m4ZQC+Lic3H9QRAYeC593CpG0BgsBu2LUr9Py8X8Z2YdQRAqmVrfZHQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YvNxbaiYAEB00vvG1x76P3o2qz5X2/U/GeJYF7fxJEClTkATYUMJQFdbsb/sXiRAzjY3pics+D+Vn1T7dPwZQNatnpPeN/Q/5+PaUDHOFkDulA7W//kEQH4dOGdEaQdAHjf8brrl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bef7qfESDUAw9fOmIlUFQMSxLm6jAfg/qiuf5XmQG0AoJ9pVSPkKQK8l5IOeTSRAqfsApDZx+T+SeeQPBp4XQF3+Q/rta/I/gT6RJ0l3FkBETIkkehkDQHWr56T3TQhAGELO+/+45j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HAjJAibw5T8mOWBXk6e8v6t4I/PIXwBA10y+2ebGIkDiBnx+GGELQHGsi9toQCVAmpmZmZnZAkBrSNxj6SMWQJVliGNdXPU/rWnecYquFUCze/KwUCsAQPryAuyj0wdAjiPW4lOA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IchBCTONFEAUrkfhevQVQHE9Ctej8A1AuMzpspj4FkDSAN4CCYoMQIj029eBEyVAdAzIXu8+AkBmFMstrWYcQLth26LMhvE/Q3OdRlqqFkBy+Q/pt+8BQDvHgOz1LgRAjGSPUDMk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pHA9CtejBUDrbp7qkFsfQMGtu3mqQ/g/gv+tZMdG/D++pDFaR5UHQBzr4jYagCRA5ldzgGCOBECUE+0qpPwWQHbDtkWZDfk/M6fLYmLTF0ARAYdQpSYBQECH+fICbAdALv62J0hs5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yZOkayYfB0C2+BQA47kbQPyp8dJN4uo/wvo/h/ly/D/CEg8omzIPQA1xrIvbaCRAObnfoSgQBkBvZB75g8EXQGFPO/w1Wfc/MNgN2xYlFkAknBa86Kv/P49TdCSXPwpAe4hGdxC74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bHh6pSzD+j99kdCWc6keQGwE4nX9gvU/LsVVZd91EkD52jNLAtQHQPMf0m9fpyRAUWuad5yiAkA7NgLxun4bQEOQgxJmWgBAfnTqyme5FEBfB84ZURoAQESjO4idKQdAiCr8Gd6s4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"18BWCRZHEUAJxOv6BYsgQLlTOlj/5whAFZFhFW+kAUAJbTmX4qoOQF8HzhlRuiZAQBh47j1cC0CZgcr493kcQLq9pDFaR/4/izcyj/yBGkAYldQJaGIBQEc4LXjRFwRAuyU5YFcT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VG8NbJUgC0ACZVOu8A4cQE5iEFg5dABApTFaR1UTA0Bg6udNRaoNQG40gLdAYiRAmggbnl6pBEARje4gdoYaQHv6CPzhZ+8/EvdY+tCFFECbyTfb3NgAQJW3I5wWfAdA4UIewY2U5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xty1hHzQ+j+zJEBNLVsaQJzgm6bPju4/MsnIWdhzFECc4QZ8fhgLQDlFR3L5DyZAavZAKzBkAUAFwHgGDT0YQAhagSGr2/s/H/RsVn1OGEBRvTWwVQL/Pz+MEB5tHARA4jlbQGg94T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UAEwnkGjF0AvbqMBvBUhQNi2KLNB5gVAJhk5C3va8j/PvYdLjrsIQJtVn6utuCVAXTP5ZpvbCEDt2AjE61oeQPhwyXGndANAHVVNEHVfHEDBqKROQBMAQMNHxJRIogZA/+xHisiw4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ke18PzVe8j92/YLdsG0SQFGgT+RJUvo/vhOzXgwlG0DiAWVTrvAPQCS5/If0uyVA9P3UeOmmAkDuCKcFLxoYQM9OBkfJq/Y/mggbnl4pGECzmNh8XJv+P9klqrcG9gFAU67wLhfx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hNiZQud1BkA4Mo/8wQAYQO1kcJS8OvU/dv2C3bDtF0Dbv7LSpNQMQIE+kSdJ5yNAmUf+YOB5AUAbZJKRsxAZQI4ev7fpjwFAeUDZlCscGEBY5xiQvZ4BQFqeB3dnrQdAiNhg4SRN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F4IclDDT8L+lSSno9lIfQFK4HoXrMRFAsp3vp8aLB0Coxks3iYEOQIV80LNZtSRAZXCUvDpHAUDm6PF7mx4aQEs8oGzKFfU/pKXydoQzG0D/PuPCgZD9Py8012mkJQJAj6UPXVDf3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tdaoh2h0BsCduvJZnkcYQOS9amXCrwlAt3pOet94CUD/ykqTUtANQFg5tMh2PiVALCtNSkG3AkBN+KV+3jQaQIJzRpT2BvM/bVZ9rrZCGkD67evAOaP8PzNt/8pK0wJAUYcVbvlI3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YJM16iFaDECFtpxLcTUVQK93f7xXbRlAsW1RZoOMF0DcSxqjdRQIQK5H4XoUTiRAc0urIXGPBUAsK01KQdcaQFc+y/Pg7v8/BhIUP8Z8FkBxcr9DUaD/P2iz6nO11QNATMRb59+u4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qWis/Z3tvT8NGvonuNgfQEj+YOC5dwJAmrZ/ZaUJAEDI0ocuqI8QQCsYldQJyCVAh1ClZg+0+T8Yz6ChfyIVQC3Pg7uzdvE/eEXwv5WsGECnkZbK2xEBQIUIOIQqNQZAxYzw9iAE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pKXydoRTD0CL/WX35AElQFAZ/z7jwgFAQmDl0CK7HEABpDZxcj8MQBKDwMqhRSVAzGJi83EtA0ASwqONI3YZQLA4nPnVHPk/5j+k375uF0BwfO2ZJYH9P3uDL0ymigNARkWcTrJV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eCgK9IlcGkC+amXCL/UXQLdif9k9OSZAVHQkl/8Q+z+Fd7mI70QMQAu1pnnHiSRAYOrnTUUq/z8OEMzR4zcXQBIUP8bctf8/SNxj6UN3G0CfWRKgplYAQBL3WPrQBQRA3nL1Y5P82z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fA+XHHfKDkDEJced0uEhQEI+6Nmsevc/56kOuRnuC0DJyFnY084OQIJzRpT25iVArg0V4/xNBEC8rl+wG7YbQBIxJZLoZf8/arx0kxiEG0BSJ6CJsGH/P8OedvhrcgZAYHR5c7jW5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ajANw0eECkBV3o5wWpAVQLPviuB/q/k/8x/Sb1+HCkCQa0PFOL8KQEHxY8xd6yVAMNgN2xZlA0BnCp3X2GUXQE7udygK9ABAGVbxRuZRGEAFwHgGDX0AQMi1oWKc/wNAPrMkQE2t4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FvvL7smDEEA6QDBHj18TQAexM4XO6/U/tRoS91j6DkCWW1oNifsJQPrt68A5AyZArYbEPZZ+AUCHokCfyPMWQKmkTkATYf4/Foczv5pjGkDcaABvgYT/P8ai6exk8ANA7WZGPxpO3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NQnekEYF7j8TLA5nfoUhQIidKXReY/o/NEsC1NRyCECnlq31RQIMQOVEuwopfyNA1hwgmKNHA0CYUSy3tDoeQA7z5QXYRwFAM1AZ/z7jGkCGWtO845T/P1n60AX17QRAlLw6x4Ds3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ba0vEtry9T/iAWVTrsAhQK9Cyk+qffo/Jqq3BrYKCED430p2bAQMQNuizAaZlCNAlkOLbOd7A0Cmm8QgsNIeQJM16iEanQFAJJwWvOgrG0BVE0TdB6D/P5nYfFwbqgRAoOHNGryv3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cclxp3Qw9z9miGNd3LYhQHv3x3vVygBAUPwYc9fyK0Bd/kP67WsNQMrDQq1pHiZA5iK+E7Ne+z/5g4Hn3qMXQPIMGvonOPs/WKg1zTsOFkBt/8pKk1IBQJ+T3je+dgZAEi7kEdxI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2qz6XG2FCUDeAgmKH+P9PzF4mPbN/e8/7Bfshm1LDEC7RPXWwBYNQEku/yH9NiVAxRuZR/7gAkDhl/p5U5EXQFg5tMh2Pvw/Ka4q+66oG0DZQpCDEuYAQB4bgXhdvwVAyAbSxaYV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6bevA+cM/z+6awn5oOcpQN7lIr4Ts/g/kE5d+SwvGEDUK2UZ4tgIQCGwcmiRbSRAL/oK0ozFAkAk7rH0oSsbQEpBt5c0xvg/B+v/HOZLFUAxQni0cUQBQATidf2CnQhA6bga2ZWW5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bAn5oGfzCkBgH5268lkLQGQ730+NF/o/lBPtKqR8D0CsVib8Ur8JQCsYldQJqCRAAWpq2VrfBUBoBYasbhUcQMVyS6sh8f0/KxN+qZ83G0DarPpcbUUBQKm8HeG0oANA1nCRe7q65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"smg6OxlcAUCi0R3EztQMQEVKs3kcBtk/isiwijdyFkDwhclUwagHQD55WKg1LSVASYCaWrYWBUAjFcYWglwaQAB0mC8vQAFA30+Nl26yHEAO+PwwQvgAQB7cnbXbrgRAlSwnofSF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b/CFyVTBAEDX3TzVIcciQE0QdR+A1Pk/6fF7m/6sBkDj/E0oRMAIQNAKDFndOiNAenB31m77BEANGvonuPgbQByZR/5goAVAc9cS8kHvGkBL6gQ0EfYAQI5Yi08BsAZAJCcTtwri5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RtPZyeAoCUCfH0YIj7YfQAtCeR9H8+I/JVgczvzKFUBWKxN+qZ8IQJqZmZmZeSRAyXa+nxqvCEDWbrvQXOcdQAd8fhghvP4/EtpyLsW1G0A6zJcXYJ8AQJKRs7Cn3QRAuVFkraHU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Crq9pDGaEEDt8NdkjRoYQHOFd7mIDxJA7dPxmIEKAkBQU8vW+uIKQKabxCCwEiRAbATidf3CAkBxyXGndBAaQMSZX80BAvg/rrZif9m9FUA2H9eGinH9PzarPldbsQRAwOrIkc5A4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aqSl8nYkEEB/TdaohygXQBHfiVkvhv4/MLsnDwu1KEBXz0nvG18MQBQ/xty1xCVA5lyKq8p+AUBFEr2MYnkXQHBCIQIOIfk/tFn1udqqGUB7MZQT7ar/P3LEWnwKwANA+ptQiIDD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"swdagSHrA0AnMQisHBofQCmvldBdku4/qFKzB1qBAkCLMhtkkhEOQF3cRgN4qyRAAz4/jBCeBED5vU1/9iMbQKRTVz7Lc/4/y6FFtvN9GUBubkxPWOL+PxsqxvmbUARAOltAaD183j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"exSuR+G6C0BcPSe9b3wWQJPjTulgfQRANIC3QIJiAUDyBwPPvccLQLivA+eMiCRADi2yne9nAkAqdF5jlygbQOIGfH4YIf8/5L1qZcJvGUA8MevFUA4AQPfMkgA1tQVAN8XjolpE3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yXa+nxovDkBSLLe0GhIMQJnwS/286QZAp658lueBG0BjKCfaVUgKQG1Wfa62YiVAOPjCZKpgBkBC7Eyh8zoaQI16iEZ3EPg/Ns07TtFRGUBOet/42vMAQA4QzNHj9wNAifAvgsZM5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fZHQlnPpAkC6v3rct1rnP9ZUFoVdlOM/zojS3uBrGUB8fhghPJoLQFkXt9EAHiVAMxtkkpHzBkCvlGWIYx0aQG5MT1jigf4/ea9amfBLGUBYHM78ak4BQAjm6PF72wJAzVzg8liz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pPyk2qfjBEApr5XQXZLiP1OzB1qBofI/6gQ0ETbcJ0BhVFInoIkLQJwzorQ3WCVAgosVNZhGBkC+pDFaRxUaQAT/W8mOzQJAOh4zUBnfGUCk/KTap2P+P4guqG+ZkwRAchb2tMPf4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I9v5fmo8BEChZ7PqcxUTQFmGONbFbQVArcCQ1a1OIEArpPyk2ucQQOlILv8hfSZAU1xV9l3RAkDsUbgehcsaQH1cGyrGefc/HooCfSKPGUC37uapDvkBQGtlwi/18wRA0LhwICSL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aMu5FFeVCEABpDZxcr8TQC7/If32dfM/OxkcJa9uGUBOC170FeQPQEOtad5xyiVAoGzKFd5lAEDJ5T+k394YQBg+IqZEkv0/IjfDDfg8GkAjSnuDL8wBQE9Y4gFlEwZAcLA3MSQn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VFc+y/NgAUC+vAD76LQeQMwLsI9OXfc/6pWyDHGME0A9uDtrt30QQLprCfmg5yVAQPZ698c7AECdEaW9wfcYQPg2/dmPFP8/K8HicOZ3GUAiiV5Gsdz/P4JzRpT2RgZA2NMOf03W4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LNSa5h1nCkCWBKipZQsfQBzw+WGE8P0/8RExJZLo/j+6LCY2H1cMQNv5fmq81CVAEce6uI3GAkDRBfUtc7oXQLx0kxgElgFAbXNjesKyHEBhMlUwKmkBQJeo3hrYKgZA8u7IWG3+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rir7rgg+DUBjYvNxbWgVQDMbZJKRs/s/FjCBW3fzCEB1sP7PYT4LQPOOU3QkdyVAZHWr56R3BkArMGR1q8cZQAOy17s/3vQ/IjfDDfh8E0BJhbGFIIf/PzdUjPM3IQRAP4wQHm2c4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rKjBNAwfCkD1udqK/cUmQL3GLlG9Nds/WtjTDn8ND0BKRs7CnnYKQBpR2ht8oSZAGVbxRuZRA0CxxAPKphwYQL72zJIAdQVAwvo/h/lyH0D5SbVPx2P/P5huEoPASghA+Ki/XmFB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SnuDL0ymDEAVUn5S7dMiQL4Ts14M5f4/irDh6ZXyLEBIp658lmcMQFMFo5I6QSRACfmgZ7NqA0Cfk943vhYdQGNi83FtKABATu53KApUGkArNXugFZj9P636XG3FvgZA1GTG20ov4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RtPZyeCoCkDwp8ZLN6kcQOzctBmnIe4/Z+22C8317j8zbf/KStMJQEjhehSuJyVAEr2MYrklCEDUDn9N1ugcQJq2f2WlSfU/rW71nPR+FkBiZwqd15gAQIOG/gkulgdACM2ueyuS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/IwLB0KyC0B3EDtT6BwYQOeO/pdrUek/+KV+3lSkGEDv4ZLjTmkNQO84RUdyOSZATS1b64uE/j/LLa2GxF0XQHC2uTE9IQRAKSLDKt6IG0BbXyS05Vz7P530vvG1pwZALzNslPWb4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tTf4wmRqBkBUbw1slaAeQCXMtP0rK/w/XBsqxvkb+z/EQq1p3vELQCfChqdXaiRAHjNQGf++BEAlI2dhT7sYQPXWwFYJlvY/wYu+gjTDGUCph2h0B3EAQF/SGK2j6gRAMC3qk9xh4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0/avrDTpBkDzyB8MPHccQFoNiXss/e8/xqcAGM9AEECcilQYW4gLQAwCK4cW+SVA/n3GhQNhA0B0QX3LnC4bQIHs9e6P9/4/a0jcY+ljF0CndLD+zyECQL+CNGPRtAlASRCugEI96D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WK1M+KV+AEDSb18HzrklQKJ6a2CrhPA/xqcAGM8AF0A4LXjRV1AJQLByaJHt/CVAtTf4wmRqBEA+P4wQHg0YQNFcp5GWSvo/12mkpfJWFkDWi6GcaFcBQJpC5zV2SQVAbqXXZmOl5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OGdEaW+wE0DR6A5iZ8oWQJijx+9tugRALspskEmGAECDL0ymCoYMQLbz/dR4KSZAYMjqVs9JBUChZ7Pqc1UcQPQ3oRABhwVAuMzpspj4G0DEWnwKgPH/PyCYo8fv7QVAMhzPZ0C94D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EAaeew+X/T/2KFyPwlUmQEsfuqC+ZfU/W9O84xRdJ0Aa3UHsTKEOQDeJQWDlECVAICQLmMDtAUAaho+IKbEXQOkOYmcKnfw/ih9j7lpiG0C4HoXrUTj/P/5l9+RhYQNAJqjhW1g34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t39lpUkp+j96pSxDHCsnQGCrBIvDmfI/Qxzr4jb6I0BZF7fRAF4LQJEPejarfiVAPIOG/gluAkBwzojS3gAaQCLDKt7IvP0/ZF3cRgO4G0CQZiyazk7/P9aoh2h0BwNA7iWN0Toq5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MXxETIkk/j84+MJkqsAmQBppqbwd4fU/qMZLN4lBJEAcsRafAqAKQNUJaCJsmCVAtVTejnAaAkAjEK/rF2waQETdByC1if4/bm5MT1iiG0DqspjYfNz/P2WlSSnoNgNAi6ceaXDb4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"07zjFB2JB0BfmEwVjMooQH0FacaiafY/L6NYbmkVEEBj0XR2MngKQJpC5zV2mSNAFO0qpPxkCEAsvMtFfKcdQC457pQO1vY//5WVJqWAFkCJ6q2BrZL8Pw+XHHdKBwVAaqFkcmpn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l+Kqsu8KDkCYaftXVpoOQNS3zOmymPc/EvdY+tBlEUCze/KwUGsPQOVhodY0DyZAeUDZlCs8C0CAmlq21pccQOQUHcnlPwJAsYo3Mo/cGUBeY5eo3poEQOQUHcnl/wdAHccPlUbM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gA7z5QWYAUBkO99PjVchQBqjdVQ1gQxA+1dWmpSiEUClLEMc6yIJQCuHFtnOdyRAWDm0yHa+CUCDo+TVOUYeQIasbvWc9P4/I6Et51L8GEBa9bnaij0DQGwJ+aBnMwdAEJTb9j3q5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Il1qnzPkD+aX80BgokgQCKmRBK9TAZA5C1XPzZJ7z857pQO1r8LQJ+wxAPK9iNAIoleRrGcBUDTpBR0e6kbQDkLe9rhr/k/zVg0nZ3MGkA98gcDz/0AQA1Uxr/PeAhABYcXRKQm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pb3BFyZT+T8hWcAEbm0gQNmZQuc19g5A5Pc2/dmPD0B0JJf/kD4IQNfdPNUhRyNAv4I0Y9F0/j+77UJzneYXQD7o2az63PQ/r5l8s83tF0ArhxbZzrcAQDhnRGlvcAVAvK302mws4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TMPwETHlB0CEns2qz1UOQPT4vU1/9vY/ICkiwypeD0DRkVz+QzoJQJAxdy0hvyVAibX4FAAjBkBa2NMOf40YQFZI+Um1TwBAnfS+8bXHGUAnpaDbS5r9P0mdgCbCBgRAcTlegehJ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SG3i5H5HBEBhiQeUTXkgQFtCPujZrO8/TMPwETHlEkAxCKwcWuQLQLu4jQbw9iVALA5nfjUHBkAMk6mCUYkYQN5UpMLYQv8/y/Pg7qydGkBHrMWnABgBQGsOEMzRowNAo5Ol1vuN1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wZDVrZ7TBkDLuRRXle0iQBe4PNaMjOo/RtPZyeAIEUBsskY9RKMKQGPuWkI+yCZA1SE3ww14BkDL1voioS0ZQCy8y0V8J/o/2o8UkWGVGkAYz6Chf4IAQGKE8GjjyANA5C8t6pPc2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AiuHFtlOAUD0bFZ9rhYmQCpvRzgtePQ/aLPqc7VVJUATJ/c7FEUNQB+F61G4/iVAliGOdXHbAUAgXtcv2I0YQD9XW7G/bPo/+IiYEkkUGkAkl/+Qfvv/P72MYrml1QFA1LZhFASP2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nbryWZ4H/T/ek4eFWnMkQCwOZ341h/o/cjPcgM/PEEDxRuaRPxgNQMUgsHJosSVACD2bVZ+rAkDzqzlAMOcZQGMLQQ5KGP8/qkNuhhtQGEDcEU4LXrQCQABXsmMjUAxAfgIoRpbM6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TtGRXP5D/z8012mkpTIZQPQ2NjtS/ec/aW/whck0FEBmFMstrYYHQIts5/upcSRAY0UNpmH4AUCbyTfb3DgZQFjKMsSxrv4/hNiZQuc1GUCazk4GR0kBQECk374O3AJAn48y4gLQ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jiPW4lMAC0ARAYdQpeYaQLnfoSjQJ/U/GoaPiCmR/D8GgZVDi2wOQKg1zTtOMSVAtAJDVrf6BEA7cM6I0h4bQFjFG5lHfv0/xuHMr+ZAGkAxQni0cUQAQAHeAgmKHwlA5IOezarP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uhRXlX2XBkBNhA1PrxQfQHV3nQ355+I/jPM3oRCBEEAZOQt72uEJQAIrhxbZTiVAI6Et51KcBUA9fm/Tn50aQJtattYXCfw/lialoNsrGkC6FFeVfRcCQDp15bM8DwZA4ezWMhmO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NWPRdHYyDEDZJaq3BtYfQKkwthDkIPE/+5EiMqyiAkDUghd9BekLQNzXgXNG1CRAIEYIjzaOBECUap+OxywaQC2yne+nhgBAxJlfzQHiGEDKbJBJRs79P75qZcIvdQRAcvkP6bev4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JetwdJXu1b8Ab4EExU8YQCh+jLlriRBAdcjNcAM+C0AzMzMzM3MLQAWjkjoBrSRAIEHxY8xdAEAJG55eKcsXQKEt51Jc1fc/TkUqjC2EF0D/If32dSAAQByxFp8CYAVAz57L1CR44T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sylXeJcLDUDAIVSp2UMUQBXGFoIcFOk/c4V3uYgvEkAeFmpN804JQPrt68A5QyVAjIS2nEsxAEBrfZHQlhMZQHwPlxx3igFAescpOpKLF0D9E1ysqIEBQJsDBHP0eARA2El9Wdqp3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rtUe9kIB5j8wL8A+OjUbQCF2ptB5jfE/g8DKoUX2CUDUK2UZ4pgFQCfChqdXqiRAgIKLFTUY/z9EaW/whSkbQFdgyOpWTwFA2LYos0FmGEC0jqomiHoCQAdfmEwVjAVA+Ddorz4e4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kgVM4NZd+L9angd3Z+0fQHicoiO5/CVA2evdH+/VAkDAIVSp2YMPQPAWSFD8OCdAms5OBkeJBUD36XjMQAUaQPWhC+pbZgFAc4V3uYjvHEB8uOS4Uzr+P2Dq501FagdAs+veisSE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hleSPNf35z+wG7YtyqwdQLYtymyQyQFA6PaSxmgdDkBxcr9DUaAKQI/C9ShcLyRAF9S3zOkyAUAKhQg4hCoZQMRafAqAcfs/mfViKCf6GEDcLjTXaaT/PzY8vVKWIQJA3CxeLAwR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"chb2tMMfA0D+Q/rt6wASQPnzbcFS3es/mN2Th4U6FUDgufdwyXEOQPW52or9hSZAAIxn0NC/C0D4U+OlmyQeQCO+E7NejAZAX0ax3NJKHkAQBp57Dxf/P2pq2VpfJAZAjPM3oRAB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P3RBfcsc8j/67evAOeMhQCMVxhaCHAlA+Db92Y/UBUA5nPnVHOAJQJrrNNJS2SNA++jUlc+yAEDkZrgBn58YQEc5mE2AYdw/e2tgqwQLE0DvycNCrSkBQGoYPiKmhAJABmNEotCy4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fSJPkq5ZCECcxCCwcqgfQDhKXp1jwO0/jLlrCfmAJEC5iO/ErJcFQDPEsS5uIyRAGTkLe9ohAUBeEfxvJRsYQPXb14FzRvY/5ZttbkyPF0BA2ZQrvMsAQMpUwaikzgdAi1BsBU1L4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CmgibHj68z8L0oxF03kYQP+z5sdfWu8/PQrXo3BdKkARx7q4jcYIQERpb/CFCSRAaXQHsTOFAkBTBaOSOuEWQMbE5uPa0PY/enB31m67F0ApP6n26fgAQB1VTRB1HwdAZ0Rpb/AF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6ZrJN9vc8z/Sb18HzjkbQAYSFD/GnAxABcWPMXet+D/Oqs/VViwPQGkAb4EE5SVAm1Wfq61YC0BzuiwmNt8eQLsnDwu1Jvc/rKjBNAx/GECpE9BE2HD/P4nS3uAL0wRAmiSWlLvP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Nx7uOQ4C0DIJCNnYQ8iQEvqBDQRNvM/CyQofox5KUDfGtgqwcIQQCZTBaOS+iZAJAuYwK27/j/eq1Ym/FIXQK+xS1Rvjfs/DvPlBdjHF0COHr+36U8BQO58PzVeegRAw/ARMSUS5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/8pKk1IQCUAAkX77OvAcQPrQBfUtMxBAZ5sb0xMW9z+RJ0nXTP4MQE0VjErq5CVAwOyePCzUAUBMpgpGJfUZQNaQuMfSh/0/Atnr3R8vG0Dm6PF7m37+P4MXfQVphgVAd9oaEYwD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o0CfyJMkB0Dlm21uTB8iQKPKMO4GUeI/3nGKjuQSKkC9OseA7HUKQEdy+Q/p9yRAh+EjYkrkBEDdQexMoTMZQB7htOBFnwVAfm/Tn/1IHUDNzMzMzEwCQMJpwYu+AgVAvth78UX75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O8JpwYs+BUD4ja89s0QhQI1donprYNQ/WRe30QCeHEDoTUUqjK0JQCbkg57NaiVALEgzFk3nBUB6Nqs+V5sdQOXVOQZkbwFAZaVJKehWFkAipkQSvQwBQCpSYWwhSAdAf6MdN/zu4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OX8TChHwAUBJaMu5FFcZQFjiAWVTLgZA9aEL6ltm+j9O7ncoCnQNQHPXEvJBryRA/RNcrKiBAUCGj4gpkeQXQLMMcayLW/4/7KNTVz4LHUAJM23/ygoAQP2k2qfjcQVAT+j1J/G55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d2fttgtN+T/3Bl+YTGUiQNhkjXqIxvg/KowtBDkoC0DMC7CPTt0LQBniWBe3sSRAjdE6qppgAEB07+GS444bQGzPLAlQUwFAEoPAyqEFGEAa+ie4WNEBQMtKk1LQbQdAAmISLuSR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+MJkqmCUEEDZWl8ktGUcQBgmUwWjkvM/omKcvwmFA0AfSx+6oB4SQOzAOSNKWydAL26jAbyFCUBNofMau0QcQBfZzvdTIwRAfERMiST6HEAijnVxGw0EQOhqK/aX3QhA0xOWeEDZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L1G9NbAVDEASg8DKoYUkQH5XBP9biQFASl6dY0D2A0DsEtVbA7sRQPs6cM6IsihAQYLix5i7BkAao3VUNaEdQMSxLm6jwQdAS3ZsBOI1GkDCL/XzpmIDQAKCOXr8XglAWDuKc9RR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"knTN5JttDkCE8GjjiDUYQBaHM7+ag+E/KdAn8iSpBkC4dTdPdQgNQN/gC5Op4iNAL6NYbmm1D0CnP/uRIvIdQOjewyXHnQJA8MSsF0N5H0B7MZQT7eoDQF3hXS7iuwRA/p3t0Rvu4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wJXs2AiEB0CVtyOcFvwJQOI7MevF0PY/wa27earDGkD6uDZUjHMKQCKOdXEbDSVA9nr3x3tVDUAMk6mCUQkeQHtJY7SOagVA8PlhhPBoGkAbDeAtkKAEQMdjBirjHwRA8xsmGqRg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T5KumXyzBUAVxhaCHHQjQDXvOEVH8uQ/jq89syTA/D+OzCN/MPALQOC+DpwzIiVAKxiV1AloA0DZPXlYqFUaQPKwUGua9/w/sI9OXfmMGUAKSzygbEr6PzHrxVBO9AVAiLoPQGqT4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CeHRxhGrAUAjZ2FPO4whQLfPKjOl9ek/tKuQ8pMqB0AwL8A+OnULQGKh1jTv2CVANrBVgsWhBEDj32dcOHAaQJuPa0PFOPo/1H0AUps4G0DtmSUBaur4PyVdM/lm2wVAym37HvVX4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+Q/pt68DDUAXK2owDcMcQG8qUmFsYQFABkzg1t08AUATYcPTK2UQQCSX/5B++yVARuuoaoJoAUCU3je+9mwZQP94r1qZcP4/QwQcQpU6GEAb2CrB4vABQLnfoSjQZwNAUl+Wdmou4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wi+GcqKdCEC4AZ8fRlggQMjqVs9J79Q/Ek4LXvSVDEBG66hqgqgHQDBMpgpGRSVAxF+TNerhA0DaVUj5SdUWQB5tHLEWnwRAWTSdnQyOHUAXSFD8GLMAQE8jLZW3YwZAlpUmpaBb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rWnecYoO/T+Do+TVOWYaQMAma9RDNPI/nG1uTE/YCkCXHHdKB+sGQN5Zu+1CkyJAke18PzUeA0DCNAwfEXMdQCNnYU87fAJAtHbbheZaGUB/+zpwzkgDQPC/lezYCAdA6kFBKVq55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tcNfkzVqCkBEF9S3zIkgQPAzLhwISfU/JNHLKJabA0BPXfksz8MPQJtVn6uteCZAdeWzPA8uAUASTgte9BUXQDbIJCNnIQFAq+ek940PHEAuxVVl35X9P+hqK/aXnQNAzv3V477V2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d0oH6//cBEArMGR1q0cSQNHq5AzFHes/2LYos0HmHkAdPX5v018IQJ/Nqs/VNiNAjNZR1QQRBUANjpJX53gaQIj029eB8/c/atlaXyS0FkDK4Ch5dQ4AQHK/Q1GgDwRAp7BSQUXV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i+B/K9mxBUArhxbZzhcgQCIa3UHsDABAYFlpUgo68D9A3qtWJvwHQOm3rwPnPCNAbCHIQQkzBUCCHJQw0xYaQD/G3LWEfPo/IhrdQezsF0ASwqONI9b/P1M/bypS4QRA8ItLVdri4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p3nHKTrSAkBFgT6RJxkjQOtU+Z6RCNI/Q/8EFyvKEkBMiSR6GcUFQE2EDU+vdCVASIrIsIp3BUAD7KNTV14ZQIFbd/NUhwVA/MbXnllSHUAsfeiC+hYAQOP8TShEwARAVdriGp9J4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ahg+IqZE+T/WOQZkr5cUQL6fGi/d5B1AKEnXTL7ZBUAbu0T11gANQA8LtaZ5ByVAwM+4cCAkBkBI4XoUrmcaQFRvDWyV4P0/nWhXIeVnG0C3lzRG6+gAQGfyzTY3pgVAFF/tKM7R4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XHfzVIdcCUDnGJC93r0WQO1HisiwCvM/a32R0JYzDEBR9wFIbSIHQF/v/niv2iNArkfhehTuBEDa4a/JGhUZQFafq63YnwBAvodLjjslGUB/+zpwzggCQGuad5yiowhAx/Xv+szZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0qkrn+V5BkDG3LWEfPAjQHB7gsR2d+o/zsKedvirEkDfwyXHndIJQNDVVuwv+yRAHPD5YYRwBEBZUYNpGN4aQJhMFYxK6vU/+aBns+rzF0A5Yi0+BQABQILK+PcZlwJA0GT/PA2Y5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DYl7LH0oAEAc6+I2GuAlQFcm/FI/b/E/WMUbmUceE0DwbfqzHykHQHDOiNLeACZAKe0NvjAZBkDJHww89z4aQBsv3SQGAfk/ObTIdr7fGEAc6+I2GgACQCzUmuYdJwNA3nTLDvGP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bCbfbHPjBUBkr3d/vDcZQPiNrz2zpOk/h6JAn8iT/T+GcqJdhRQLQOMZNPRPUCNADaZh+IiY/T9I3GPpQ3cYQF3Ed2LWSwJAaXQHsTMFGkBvu9Bcp5H+Pw1Uxr/PuANAKCmwAKYM4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4uR+h6IABEBa8KKvIL0hQK+zIf/MIOQ/uiwmNh8XB0Dz5QXYR2cIQIlBYOXQAiZAaw4QzNEjBUBFL6NYbikYQPJBz2bVZ/0/kPeqlQnfGkB15bM8D+78P4Zyol2FlARAtoMR+wRQ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N3Fyv0PRAkBJopdRLIchQL7e/fFeteM/uwopP6n2CUBe1y/YDdsHQG+BBMWPESZA3jzVITfDBUA/kSdJ18wXQF+YTBWMyv0/Oul942vPGkDV52or9hf9P/G6fsFu2ARAtOidCrjn3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zQGCOXp8/j8g0m9fB64UQBYwgVt38/U/Rdjw9ErZAkCYwK27eaoMQGEaho+I+SNAlfHvMy4c/D8L0oxF05kZQGzsEtVbA/c/PQ/uztptFkBhVFInoAkCQOeMKO0N/gNAW+m12VgJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kGYsms7O8j8icY+lD90PQEUNpmH4iCNAXdxGA3jbNUCSdM3km40QQKHWNO84pSVAVrd6TnofA0BsskY9ROMXQMSUSKKXUQFAx53SwfrfHEAAV7JjI5AAQCO+E7NejAlAwHYwYp+A5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sMka9RAN9z/04O6s3RYZQLQfKSLDag9AJlMFo5K6KEDSNZNvtvkQQOVhodY0ryVABOJ1/YKdA0CzmNh8XLsXQIdQpWYPtAJA1nPS+8YXHUDzWZ4Hd2cDQEX11sBWyQlARuuoaoKo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OPjCZKpgA0BCW86luIobQONrzywJsBBAsi5uowFcKUDlm21uTE8RQJHtfD81viVA1hwgmKNHA0BWt3pOeh8YQDpdFhObTwVAr0LKT6o9HUAJpwUv+goDQFRXPsvz4AtABrr2BfTC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1ZXP8jx4EkD6fmq8dHMmQPTg7qzddhNAMo/8wcBTG0D4Nv3ZjzQRQA4tsp3vxyZAChFwCFXq+z/4wmSqYHQZQAzlRLsKqQBAe737472aIEB2ieqtge0CQEGasWg6+wtAEqCmlq114j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g/qWOV0W+T9I4XoUrkcbQEGC4seYu/c/OwFNhA1PBUBZi08BMD4QQH9qvHST2CVApHA9CtfjAEDhXS7iO3EWQC7iOzHrxQFAZqAy/n0GF0B5HtydtVv/P5p3nKIjuQJAOL9hokEK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J8KGp1eKBkBV+3Q8ZvAgQFdgyOpWzwRAeO49XHKcBkDiOzHrxdAOQCApIsMq/iNAZqAy/n2GBEAtW+uLhBYdQNiBc0aU9vk/JUBNLVuLHEC4rwPnjGgAQBpR2ht84QdAxHdi1ouh2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7iWN0TqqCUAzMzMzM1MZQNbFbTSAN/c/jq89syQABkBxrIvbaGAQQLG/7J48LCRAKPIk6ZpJCUDyQc9m1acaQFQB9zx/2us/0egOYmfqGEAXSFD8GHP9P+QxA5XxLwZAiPaxgt+G2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bxKDwMphAkA3cXK/Q/EgQICaWrbWF/4/UvLqHAMy+T82qz5XW7EGQDVeukkMIiVAnIpUGFuIA0AHX5hMFUwaQFQ1QdR9APw/NKK0N/jCGEBA2ZQrvMv/P84ZUdobPANA4pLjTung4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gc8PI4RHBkC6TiMtlXcLQFg7inPU0ew/O1PovMYuH0CvCP63kt0JQLByaJHtPCZADVTGv8+4AEAfaAWGrK4XQBkcJa/OMfU/3ze+9szSFUAz/n3GhYMBQGaDTDJyFghAh4xHqYSn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oDL+fcaFDED7kSIyrNIiQNy6m6c6ZPA/o0CfyJPkAUAw9fOmIlULQLdFmQ0y6SNATRWMSuoEBkBI/mDguZccQLZKsDicuQFAL8A+OnWlGkDB/1ayY6P/PxV0e0ljdAJAKlWi7C1l5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/OO9amVCDEBMcVXZd0UWQK1u9Zz0PgRAguLHmLuWDECny2Ji8/EMQKJFtvP99CVASKeufJbnBkDrxVBOtOsaQN6OcFrwIvI/kWEVb2T+FkDP91PjpRv/P4tx/iYUogVA7pdPVgxX2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jpJX5xiQDEB/MPDce5gfQLe1heel4uU/ByXMtP3rBECWW1oNiTsIQCZTBaOSGiRA5pE/GHjuBUB6qkNuhvsbQMvW+iKhrQNAObnfoShQHEDh7qzdduEAQFGlZg+0ggRAhGIraFpi5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"29yYnrBE8z/76NSVz7ITQIZa07zjBDBArcCQ1a0+FUDJjo1AvO4KQAn5oGez6iRA9dvXgXOGBUBIbeLkfucaQBKgppat9fk/8YCyKVd4GUD6RJ4kXTMBQMdLN4lBIAZA93e2R2+43z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q+c1dolq+z8EIVnABG4TQPp+arx0cytAJh5QNuWqEkA5ud+hKFALQBQ/xty1RCVAHcnlP6TfBECze/KwUGsaQKkwthDkIPk/nrXbLjT3GUDQ1VbsL/sAQPfpeMxAJQZA0qxsH/KW3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a7ddaK4TDkD+fcaFAwEfQOW4UzpYf/M/4e6s3XYBEkCQMXctIR8NQLIubqMBvCVA2uGvyRp1BUDw+WGE8EgbQHke3J21mwBA6IcRwqNNFUB+Oh4zUNkBQHoZxXJLqwVAK0t0llkE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rkfhehSuCkBUHXIz3CAaQCtNSkG3l/M/S+oENBHWGEAF3V7SGO0PQELPZtXnKiVAyJi7lpCPBEDJAiZw664aQNaoh2h0h/0/95LGaB3VF0CjQJ/Ik+QAQJsDBHP0eAVAbHcP0H054T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"14aKcf7mBkB4f7xXrZwjQA/R6A5iZ/8/bZBJRs5CFUClg/V/DvMLQDbNO07RMSVAp3nHKTpSAkCLbOf7qTEXQLqD2JlC5/c/BK3AkNWtGEDri4S2nIsAQKX3ja89cwZAPSmTGtoA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v2A3bFsUBECVDtb/OdwgQJz4akdxjt4/xAjh0caRDUDvOEVHcnkIQPOOU3QktyRAmbuWkA+6AUDejnBa8GIaQCE82jhirfk/NNdppKUSF0APuRluwCcEQCuHFtnO9wdAOQmlL4Sc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hA1Pr5RlBEDV7IFWYAgdQAnBqnr5ndk/jjulg/UfE0DgoSjQJ3IIQN5xio7kciVAYM0Bgjk6BEDFrBdDOTEYQBWMSuoEtP0/qTC2EOTAF0Atz4O7s/YCQGNFDaZheAVAaVa2D3nL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GH0FacZiAkBlARO4dTceQBu+hXXjXes/A8+9h0uO9j8HX5hMFUwLQOwvuycPuyFAQ3OdRloq+z+/DpwzotQXQDY8vVKWIfw/IO9VKxPeGUC6ZvLNNjf/P/MC7KNTVwZA4V8EjZlE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4xk09E8wBUCfq63YXyYhQMGopE5AE/k/MGR1q+dkEUAQ6bevA+cIQIBIv30dWCRACD2bVZ/rA0DOwp52+MscQFdbsb/sXgRA9+l4zECFGkAdVU0Qdd8CQJQT7SqkvAVAfnGpSlvc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yF7v/nivBEBWmpSCbs8hQDDWNzC5Udg/RSqMLQS5C0C6FFeVfRcIQL99HThnZCRAE7h1N081BEBbttYXCc0XQF8M5US7iv8/0VynkZZqGkCfk943vnYBQNjYJaq3RghAR5BKsaPx4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Knx0k3iBUAXt9EA3gIUQKT6zi9KUOA/rDlAMEffIEDIBz2bVZ8JQJtVn6uteCVArwj+t5IdBUD+KytNSqEXQL+36c9+JAVAQs9m1eeqHEDttgvNdVoBQGDl0CLbuQZAJxQi4BCq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2evdH+8VA0BK7xtfe8YdQD3yBwPPPek/MV9egH20A0C1pnnHKXoKQACRfvs6kCVA/tR46SYxBEBd4V0u4jsaQMAhVKnZg/A/sacd/ppsFkC1/SsrTcoAQLt+wW7YdgdAcegtHt5z2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bVZ9rrYiAEBMbD6uDTUeQEAYeO49XPQ/zqW4quw7BUC+wRcmUwUHQPs6cM6IMiVAza/mAMFcBUDSAN4CCWodQIsyG2SSkfc/KQXdXtI4FkCKk/sdisIAQNMwfERMSQhA3CqIga593j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xi7iOzFrBkC22y4012kVQBQmjGZl++Q/R+aRPxhYHUC8y0V8J6YNQFwgQfFjDCZAQiECDqHKBUCk374OnHMbQIqO5PIfUvg/rd12oblOGUD7ljldFpP9P6Tk1TkGJAVAzZAqilfZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mdh8XBsqAEAnFCLgEEoaQCcUIuAQKhNAiNf1C3ZDBkBcd/NUh5wNQArXo3A9aiVAgNQmTu43BEBblNkgk+wZQI2XbhKDQPg/TODW3TxVFkAcJa/OMeACQKMBvAUSFAVAlSh7Sznf5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gxd9BWlGEkCOQLyuX5AbQDojSnuDr/8/nbryWZ4H8j8cX3tmScAHQAwHQrKAmSJAS80eaAXGAUDhKHl1joEcQDy9UpYhjgRANIXOa+wyG0B9eQH20Sn/P6g1zTtO0QVALzatFAK54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0ETY8PTK+z8012mkpaIgQC0hH/RsVvY/dqbQeY1dBEB06spneR4MQJHtfD81HiVAbXNjesKS+T/kLOxph78VQOfG9IQl3gBAAoI5evyeHEAwR4/f27QAQCno9pLGaAVAlGk0uRgD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ic1YNJ0dBkBJgJpatlYOQHMR34lZL/U/0LNZ9bl6HkAOEMzR47cIQPRsVn2uFiVAOShhpu3f/T93FVJ+Uq0WQDwUBfpEnvs/gNQmTu43F0DfGtgqwaIBQJf/kH77OgVAYTdsW5TZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"32xzY3qCBkCaCBueXkkiQJXUCWgibPY/HM78ag4Q/D/eWbvtQjMQQLwFEhQ/hiVAoMN8eQF2AkA2sFWCxSEcQCDSb18HjgBAE/JBz2YVHEDe5SK+EzP9Pyh+jLlrCQVAOgX52ch14D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hNiZQud1AkCDaRg+IoYbQIMxIlFoWdY/1T4djxloDkB2VDVB1H0GQEi/fR04ByZAB5lk5CxsBkDWc9L7xvcYQJzc71AUKAJAZ+22C80VHkAOoUrNHuj7P5olAWpq2QFA7kCd8uhG4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KETAIVTpB0DlfoeiQL8eQCScFrzoK90/WvW52op9DUBCYOXQIhsKQPRsVn2u9iVAjWK5pdXQAkAibHh6pWwZQGDq501FKv8/SNxj6UMXHkDqPgCpTZz7P9tQMc7fhAFANdHno4w44D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WipvRzgNEECp3hrYKkEbQEiKyLCKNwxAgVt381QHAUA0uoPYmcIKQDV7oBUYoiNAZ2FPO/x1BEB6whIPKJsYQFrwoq8gTfw/fXkB9tHJFUDlm21uTI8CQFwbKsb5GwhAiGcJMgIq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RfC/lexYB0AoSddMvvkhQMrFGFjH8d8/YB+duvKZAkDOUx1yM1wJQEI+6Nms2iRAbcoV3uWiAUA/48KBkKwaQJq2f2Wlyf8/0oxF09nJHUAPRYE+kaf8P/uWOV0WUwNAOKJ71jVa4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TRWMSuqE/z9VavZAK2AjQL/XEByXceY/2uGvyRo1AkDqCUs8oGwIQMx/SL99PSRARdjw9EoZA0ABNbVsrW8bQDlFR3L5zwBAtB8pIsNKHUCqglFJnYD9P+bLC7CPzgJAf/s6cM6I4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i/1l9+ThFkBVwaikToAaQOOlm8QgUB5A5DEDlfEPHUATm49rQ0UNQJYhjnVx2yRAfLjkuFN6BkD2l92Th0UbQOqVsgxxrPs/J6CJsOFJFkDZQpCDEub/P4V3uYjvRAdAibSNP1HZ3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cY+lD11wGED2tMNfk3UXQE0ychb25CFAMsnIWdgTHEA0orQ3+AINQHZPHhZq/SNAdJgvL8D+BkC0dtuF5tobQM9OBkfJK/k/M8SxLm6DFkAAb4EExQ/+P95Zu+1CcwZAWJHRAUnY3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3PRnP1IkHEDT2cngKLkRQEeP39v05w9AjiPW4lMAIkBGQlvOpTgQQKH4MeauRSdAs82N6QlLAkDOUx1yMzwaQP8JLlbUYPM/ieqtga0yFkAZHCWvzrH9PwWGrG71HP8/cQUU6umj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cXK/Q1HgHUCGWtO845QIQBhbCHJQUiFA0ETY8PSqJUBuhhvw+SERQOcdp+hILiZAIR/0bFY9BUAxfERMiUQYQMnlP6Tfvvg/MXxETIlkF0CXxcTm41r+P7prCfmgJwRA9UnusIlM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CtejcD0K9z/0iTxJumb6v6MeotEdxO0/EEBqEyc3G0D0bFZ9rnYNQIMvTKYKhiZAN1SM8zchBECXkA96NsscQMAJhQg4hPg/S6shcY8FGUBtrS8S2rICQPEuF/GdmAVAB7ZKsDgc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a4Ko+wAEEEAj2/l+atwrQGlSCrq95A9AHhZqTfOuEEAoRMAhVOkKQNzXgXNG9CRA06QUdHtJAUDvOEVHctkYQDYC8bp+AQBApMLYQpAjGkCi0R3EzhT9PyBe1y/YTQZA9KW3PxcN3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cF8HzhlRA0CYpZ2ayw3MPwrYDkbsE+U/jIS2nEuRFUDfFcH/VrILQBHHuriNBiVABWnGouksAUAsfeiC+vYWQIrIsIo3MvY/I/PIHwxcGEBsJt9sc+MAQItUGFsIcgJAFvcfmQ4d4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EmvxKQAGA0Cp9ul4zMALQKYPXVDf8gtAmSoYldSJJ0CSXP5D+m0JQHuDL0ymKiRAAB3mywswAkDwFkhQ/JgYQKhvmdNlsfY/AIxn0ND/FkCbVZ+rrVj8P30iT5KuWQZAdhiT/l4K4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z/dT46WbA0DWbrvQXGcDQFNcVfZdkec/ZK93f7wXHUAXSFD8GDMQQEGC4seYeyVA+u3rwDmjBUBy/iYUIgAZQH46HjNQGfg/58b0hCXeFED60AX1LfMAQEvqBDQR9gVAzSGphZLJ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mxvTE5a4AkAxQni0cWQiQAKaCBuevhFAhA1Pr5RlCEB1jgHZ690OQBPyQc9mtSRAIR/0bFZ9/z/LSpNS0K0YQNjTDn9N1vg/qIx/n3GBG0AbKsb5m1ABQFjFG5lHvgZA7j1cctyp5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gf8+48KBGUCbcoV3uXgiQCTRyyiWmwhA3QcgtYmTFEDbheY6jbQGQOcdp+hITiRAuHU3T3WIBkB1kxgEVk4aQOaWVkPingFAtvgUAOP5GUCuga0SLM4BQEUvo1huKQVAk/5eCg+a4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yVnY0w5/GkAPYmcKnfcgQM0eaAWGrApA/aTap+NxBkClLEMc6+ILQMxdS8gHbSJAtwvNdRqpBUBApN++DjwaQKUUdHtJYwFA24XmOo10G0A9RKM7iB0BQP0TXKyowQRAIT1FDhG34T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tsu0onK4tb8+XHLcKR0eQP7xXrUyoQZAvTWwVYJFAEAe4bTgRd8FQFJJnYAmIiVApIgMq3ijBEAIlE25wpscQO+P96qVCfA/aJHtfD81FkCqDrkZbkACQLHEA8qmHAdAXaPlQA+15j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WYY41sXt/T+Dbi9pjLYbQCKJXkaxHA1Aj9/b9Gc//D9Vh9wMNyAHQMKjjSPW4iFA7YFWYMhqBEBUjPM3oRAbQF9BmrFoOvg/I4RHG0eMFUAr+64I/rf+P9JSeTvCaQNAqmbWUkDa3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0lJ5O8Jp+j9f0hitozohQFGgT+RJkhtAfJv+7EeKBECDaRg+IqYIQNj1C3bDliFArvVFQltOBkDjUwCMZ5AaQMZQTrSrEPs/pmH4iJiyFUAYeO49XHL7P32zzY3pyQNArwW9N4YA3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HNMTlnjA4b9zLsVVZd8ZQOiHEcKjzQJAy9b6IqGtF0AHX5hMFYwKQN6Th4Va0yZAkGYsms6OAEB7oBUYstoYQL37471q5fs/ipP7HYpCHEAYWwhyUMIDQOMZNPRPMAVAhGQBE7h15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SgwCK4eWGkCTxmgdVY0aQBefAmA8Yx9AxAjh0cYR8z+3RZkNMokKQCyC/61kVyJAAiuHFtlOBUCTNeohGl0aQGcKndfYZQFA4gFlU65QGUCmft5UpEL8P5KRs7CnXQVABYcXRKQm4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M6fLYmLz/D8xmSoYlbQXQMRfkzXqoQRA8bp+wW6YE0ABwRw9fg8SQBUdyeU/xCVAsTOFzmtsAUBftTLhl/oXQKYKRiV1AgFArvVFQluuFkALmMCtuzkBQDkLe9rhrwVAObh0zHnG5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lLw6x4BsCUCNCwdCsoAMQBoXDoRkQQ9AVoLF4cxvFEB8CoDxDFoQQIbJVMGoZCdAKQXdXtLYA0C8IvjfShYaQEOQgxJm2vU/AJF++zqwGkA0hc5r7JICQBCv6xfsxgRAIVwBhXr64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CHdn7bYL9r8bL90kBqEkQP2H9NvX4SBA5+PaUDHOCkD27o/3qtULQCxlGeJYtyZA9ODurN22AEDiI2JKJHEYQCECDqFKzf0/K2owDcNHGUCiemtgq4QAQD81XrpJjAZAQwQcQpUa4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8aDZdW/F4D/oTUUqjM0ZQOLMr+YA4RBABkzg1t38DUANcayL2ygMQA+cM6K0FyRAPGu3XWiuAkB5zEBl/NsbQC5zuiwmtv8/za/mAMG8F0DYDdsWZTYBQOtztRX7CwZALQd6qG3D5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GArYDkbs1b8LDFnd6vkcQOoJSzygTCFApN++DpwzEkDbFmU2yOQKQFD8GHPXciVAgSbChqfXA0AAHebLC7AZQPzepj/7EQFAOShhpu3fF0BhMlUwKmkCQPiqlQm/FARA3h/vVSuT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tu53KAo0B0BcrKjBNDwiQGVtUzwuqus/EEBqEyc3AUD2tMNfk3UOQCKOdXEbzSRAfNXKhF/q/D+LMhtkkrEXQEcDeAskqPg/Zd8Vwf/2GkDx9EpZhjgBQP/nMF9egAZAONpxw+8m5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YHZPHhbq+T+ojH+fccEZQDPhl/p5Ew1AqAAYz6ChAUALRiV1ApoKQFioNc07ziVAV1uxv+weCUAO2xZlNigbQB/Xhopxfvs/clDCTNvfGUBegH106sr6P9oDrcCQlQVAIhtIF5tW1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HXIz3ICvFUDCUfLqHAMhQOC+Dpwz4iVAon+CixX1GUDONjemJ0wSQBE2PL1S9iRAjdE6qpog/z+/t+nPfoQYQLzoK0gzlvY/cuFASBaQF0CNXaJ6ayAFQIOG/gkuVgZAB+xq8pTV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rW71nPR+GkCP5PIf0j8hQEdy+Q/p1ypA5nRZTGy+IkAX8Z2Y9aIPQF66SQwCKyVAeTvCacGL+T8FxY8xd80XQIyEtpxL8fE/OEpenWMgF0D0GrtE9dYFQHWw/s9hPgZAdVq3Qe235T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dvj8MEK4F0Cu2F92T14fQC3Pg7uzdhhAhQg4hCo1AUDcgM8PI8QOQJXUCWgiLCZAyv0ORYG+/D9324XmOi0WQNxoAG+BhPQ/E2ba/pU1GUD7OnDOiJIBQJqZmZmZGQVAkUdwI2UL5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A7LXuz/e779Zbmk1JE4ZQBObj2tDxQBA8s02N6YnDUDuPVxy3KkMQL4wmSoYtSRA1CtlGeLYAkDxKQDGMygaQIkMq3gjc/4/5A8GnnvvFkCiKNAn8mQBQLNBJhk5CwdAMSb9vRSe4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yqZc4V3uDECR7Xw/NT4eQBEebRyx9h9Ak4ychT3tEEBL5e0Ip4ULQMzuycNCDSVASNxj6UMX/T9Zi08BMN4VQDSitDf4wvQ/+N9KdmxkGUCcpzrkZrj+P8H/VrJjIwNA7nppigAn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/ACkNnFyEkByio7k8t8lQOs56X3ja/Y/opdRLLcUIkDek4eFWhMLQC1DHOviliRAR4/f2/TnBUCP39v0Zz8cQC4EOShhpvs/d0oH6/88FkDRkVz+Q3oBQEdaKm9HOAdAsAPnjCjt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E/QXesTo5j/129eBc2YcQGRYxRuZBwxA2uGvyRp1A0BEozuInakGQBuBeF2/cCNA8KfGSzcJBUDKGvUQjc4ZQHctIR/07ABAtr5IaMv5HECQZiyazk4CQHfWbrvQHAVAHy3OGOYE5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oP1IERlWEUBCz2bV5+oVQKVKlL2lHO4/B7Ezhc6rD0CwPbMkQM0OQFwgQfFjTCZAjZyFPe0wCEBolgSoqUUcQAPPvYdLDv4//+xHisiQGUC3KLNBJpn8P4nS3uALkwVArOY5It+l3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QPuRIjKs+D+UvDrHgOwbQBfxnZj14vE/DjLJyFnYBkDzWZ4Hd+cLQMl2vp8a7yRAkuhlFMttCECIS447pQMcQLnH0ocuKP8/+I2vPbNEGkBD/wQXK2r/P8v49xkXzgZAJh3lYDaB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H5268lm+HUBiLT4FwCghQF0WE5uP6xtAwt1Zu+0CDEB24JwRpf0QQC0hH/RsNidA2GSNeohGA0ARcAhVajYaQB3J5T+kX/M/+Um1T8cjFkDMejGUE+3+P4/8wcBz7wFA/yPTodNz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"91j60AX1EkBIp658lgcYQDbIJCNnYQRAvVKWIY5VHkB2ptB5jd0JQN5xio7kciRAHQOy17t/CEABamrZWj8cQIhLjjulAwNAJemayTc7HUDEsS5uo4H9P5EPejarvgRAwVJdwMuM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ml/NAYL5FUCSeeQPBp4XQNKpK5/leRRA3EYDeAvkH0CXVkPiHgsGQFr1udqKHSZA2uGvyRq1CEBORSqMLYQaQBB1H4DU5gBAujE9YYmHGkA3pics8UAAQDJaR1UTBAVAV12Hakoy4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4syv5gAxIEAa3UHsTAEjQOQUHcnlPxNAdy0hH/QsCkBjYvNxbcgUQG1Wfa62YiZAdqbQeY1dAkBegH106mobQPZAKzBk9fk/ryXkg56tGUAbR6zFpwABQCpXeJeL+AZAS5ARUOEI4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"okW28/3UGUAbDeAtkKAiQLcLzXUa6RFACW05l+LKEkCTV+cYkL0HQOwvuycPKyVAF9nO91PjBEBkkpGzsOcYQDAS2nIuRQRAzGJi83FNHECE04IXfcUBQHgoCvSJ/ARA4KC9+nho5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uw9AahOn8D+itDf4wiQhQCb8Uj9vKgRA34lZL4aSEUDMRXwnZr0JQBgmUwWjIiNA4Nv0Zz+SAUCZ8Ev9vOkbQMSxLm6jAfo/9fOmIhVmF0Cm0HmNXaIAQG5RZoNM8gRAaw4QzNHj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"znADPj+MBEAfuqC+ZR4gQD7QCgxZXfA/bkxPWOLBBEBUbw1sleAOQGiz6nO1lSZAFsH/VrIjB0ACmggbnr4YQIenV8oyxPQ//ACkNnHSF0AHfH4YITwDQFvri4S2HAdA58OzBBmB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eGLWi6Gc/z+5iO/ErJcgQDVG66hqgvA/t5xLcVWZCUCwA+eMKO0KQGb35GGhtiRArBxaZDsfA0CL/WX35AEaQC7KbJBJRvw//DVZox7iFkDV52or9hcCQEMEHEKVGghAKbNBJhk55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"duCcEaU9BEBzLsVVZQ8gQP4rK01KQes/ysNCrWneA0ApP6n26bgKQGQ730+N5yNAn7DEA8rmAkCGG/D5YaQZQEyJJHoZxfs//1vJjo3AF0BhcTjzqzkBQGufjscMVAZAJQNAFTdu4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3CkdrP/zBEDttgvNdTobQL+AXrhzYeI/z6Chf4LLAEBUUiegibAHQL3jFB3JZSRAeuQPBp47BECE2JlC55UZQAYN/RNcrAFAjKGcaFeBGUA5C3va4S/+P/T91HjppgJAza0QVmMJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VB1yM9zAA0BEUaBP5AkgQHcRpiiXRuY/nWhXIeXnAkCmRBK9jOIJQGrecYqORCRABMqmXOGdB0ACmggbnn4bQNWVz/I8OPs/vcYuUb11GEAbL90kBoECQBkcJa/OMQRAG/M64pAN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EmvxKQBGAUD1oQvqW2YfQHdOs0C7Q+E/8kHPZtVnDUB6U5EKYwsFQNobfGEyNSRADYl7LH2oA0AD7KNTV/4bQNYcIJijR/0/QKTfvg7cGUB72uGvyRoAQOw00lJ5ewNA85Nqn47H3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1ouhnGiXBUD76NSVz1IgQOdvQiECDvQ/MgOV8e+zC0CzDHGsi9sNQAtGJXUCGiZAuCOcFryoBkCxogbTMJwaQNydtdsutANAFNBE2PA0HkB5dY4B2SsBQI51cRsNoAVAuM6/Xfbr5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y9F0djJ4D0AGZK93fzz1P+auJeSDngxATYQNT68UJUBnYU87/DUPQLIubqMBvCVARN0HILUJAEASvYxiuaUYQCh+jLlriQBAFva0w19TGEDn49pQMU4BQDMbZJKRMwVA6BIOvcVD4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jNtoAG8B+z8Z529CIQIMQHIYzF8hc+M/8l61MuFXDUBRFOgTeZIKQCZTBaOS2iRAIF7XL9iN/T9hN2xblHkXQHsxlBPtKvc/tkqwOJwZGEAMdsO2RVkCQIT1fw7zJQRARiI0go1r5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X7Uy4Zd6/j+Cc0aU9mYkQBBYObTI9vs/aCJseHplAkDa5sb0hGUDQOLkfoeiECNAQfFjzF2LAkD7V1aalOIaQP7xXrUyYfU/UN8yp8siFkB9lufB3dkAQNcS8kHPZgRA1Xsqpz0l4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PUSjO4jdBkDqBDQRNrz8P9TUsrW+SPE/niRdM/lGGUBZ+tAF9e0NQM6qz9VWjCVAmMCtu3lqBUCskPKTal8ZQHY3T3XITfo/sBu2LcqMGEB4KAr0iXwAQDj4wmSqoAZA64uEtpxL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6lvmdFnMC0A1tWytL3IRQKFJYkm5++s/vYxiuaVVDkAJ/reSHRsOQMnlP6Tf/iRAXmOXqN6aBkDPoKF/gisaQOjewyXHHf0/lQ7W/zlMGUAcsRafAuAAQL/xtWeWRAdA0SAFTyHX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y7kUV5U9DECuKvuuCO4jQIAO8+UF2P4/eAskKH5MAUBeEfxvJfsGQLaEfNCzWSRA3GgAb4GEBkD9vKlIhTEcQDUpBd1eUv8/+aBns+pTG0CQZiyazo4EQFCNl24SAwVA2ClWDcJc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JjYf14YKAkCp9ul4zAAeQGA8g4b+CfA/CfmgZ7OKFEDUmuYdpygOQO7rwDkjiiVAMo/8wcBzA0D83qY/+zEaQAETuHU3zwBAkpGzsKddHUDmriXkg94BQLyReeQPRgRAn+QOm8hM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8wLso1MXA0AE54wo7Y0RQFFpxMw+j+c/42vPLAlwEEABTYQNT68JQJVliGNdPCZAzCiWW1pNAUAq499nXFgaQNEi2/l+KgNAJEVkWMW7GEACK4cW2Q4BQMRfkzXqIQhAuatXkdGB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nh/Xhopx9z/ayeAoeRUhQLe0GhL32ANACyk/qfZpAkAjMqzijcwJQLmNBvAWCCVA/ACkNnFyBUBjf9k9eZgVQKd0sP7P4fw/Vg4tsp3vGUBYqDXNO44AQIhjXdxGwwVAFCUhkbbx3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CRueXinLA0BFR3L5D2kaQAZHyatzjPU/J07udygKA0CBlUOLbKcKQBSuR+F61CRA0uP3Nv0ZAkCoV8oyxPEWQHXlszwPbv4//3ivWplwGUAnFCLgEKoAQOKS407pIAVAccrcfCO63D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f7xXrUx4AECg4GJFDYYXQHtLOV/sve0/V1uxv+yeBEBpUgq6veQIQN/gC5OpIiVA5nlwd9auAEAVHcnlP+QXQLpOIy2VN/o/LEgzFk1nGUAibHh6paz+P5M16iEanQZAbFuU2SCT2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bwjm6PH7/T9hpu1fWYkaQBb2tMNfE/A/yM1wAz5/CEB0tRX7yy4MQFMFo5I6YSRAUyKJXkYxAkAS2nIuxbUXQBWMSuoENPo/zF1LyAc9GEC8rl+wG7b+P2DI6lbPCQhABkt1AS8z3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+b1Nf/YDEUBgqwSLw/kYQPDErBdDuQxA626e6pB7EUCJDKt4I/MLQH4dOGdESSVAT+lg/Z9DAkDqymd5HvwZQAa7YduizPQ/UPwYc9cSFkCd19glqncBQKrx0k1iEARAZan1fqOd5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uB6F61EYFECWeEDZlKsdQLubpzrkZg9AJjYf14aKCECBBMWPMdcRQJoIG55eiSVAMevFUE50AkDswDkjShsYQNttF5rrtP4/O8JpwYteGkAQ6bevA+f+P6uy74rgvwZAAwr19BH42z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XhH8byW7AEBBvK5fsBsiQFFrmnec4gVAEk4LXvQVAEBQNuUK77IJQOSDns2q7yVAk6mCUUndA0DBbti2KLMbQGGm7V9Z6QBA8BZIUPx4HUDL2xFOCx4AQPFG5pE/2AVAU+knnN1a5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MPDce7hk+z8uBDkoYYYUQL3jFB3JZQNAHM78ag6QG0AZxXJLq6EQQG40gLdAIiZA7ZklAWrq/D/hYkUNpuEUQNfAVgkWBwZAwaikTkDzG0A/xty1hLwBQITYmULndQlATcCvkSQI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FakwthBkAEC+E7NeDIUbQEjdzr7yIO8//z7jwoHQCEBkkpGzsCcKQM6qz9VWLCRAWTSdnQzOBkD1Zz9SRGYbQNIA3gIJCvo/kQpjC0HuGEAQr+sX7IYEQI3uIHamUAdAYr68APto6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gJpattbXB0DPLAlQUwsUQKfoSC7/Ifg/46WbxCBwBkBIFjCBW/cGQNAKDFnduiNA7j1cctxpB0CIS447paMaQLSOqiaIOv0/StI1k282F0CCc0aU9oYEQGQGKuPf5wdAjdR7Kqe95z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9mIoJ9pVCkA8iJ0pdN4YQJ+tg4O9CeY/QZqxaDq7EkBUOlj/5zANQNuK/WX3JCdAS+oENBH2A0DCNAwfEfMXQDBMpgpG5QNAC7WmecfpGUAqV3iXizgBQFXBqKROAANAqknwhjSq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YM0Bgjl6D0Cg4GJFDYYeQI6vPbMkwANAIZOMnIX9A0AMWd3qOWkIQDhnRGlvsCNA8+UF2EenBEDidf2C3TAcQGmM1lHVhPY/uqC+ZU7XGkDY9Qt2w7b7P5T2Bl+YjARAKV36l6Qy3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wavlzkyw7j+GyVTBqIQeQD1EozuIHQ1Ab0c4LXjRDUB4l4v4TowNQFR0JJf/ECZAQ8pPqn06AkDWc9L7xvcZQFdbsb/sXgBAzzEge73bHEDNzMzMzIwCQCyf5XlwdwRAGsOcoE2O5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5bM8D+5OCEAC2evdH68gQESoUrMHWvU/GXPXEvLBBECPNo5Yi+8RQLHh6ZWyjCZA6udNRSoMAUAIILWJk7sWQNF5jV2i+gVASrVPx2MGG0B0B7EzhU4CQJUO1v85TAdACoMyjSYX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yQImcOsuA0C6awn5oKcaQAIOoUrNnvo/xlBOtKtwEEBoXDgQkgUSQKwcWmQ7XydAnWNA9nr3AEB/3lSkwtgWQGLWi6Gc6AVAml/NAYI5G0CPNo5Yiw8CQP2H9NvXQQdAvwrw3eYN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q1s9J73vE0A3bFuU2eAZQHS1FfvLjhFAkZvhBnz+DEB/wW7YtigRQDqSy39IfyVALc+Du7N2A0AId2fttmsaQNlfdk8eVgFAu/JZnge3HkDiI2JKJBEBQFbUYBqGTwVANqs+V1ux5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SFD8GHPXC0Ar9pfdk8chQHsUrkfhevA/PGagMv79+z81DB8RUyIHQFpkO99PbSVA12mkpfJ2DUBUbw1slQAfQGXfFcH/FgNAat5xio7kGEBwfO2ZJYECQMDnhxHCIwdADAHAsWdP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/8pKk1IQBUAd5ssLsO8RQDrnpzgOvOE/CKwcWmR7GECNKO0NvjAOQFCNl24SYyRALq2GxD3WAUCqfToeMxAYQPYjRWRYRQJAfa62Yn+ZG0Avo1huaTUAQB+A1CZO7gRAf/YjRWRY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/B2KAn2iAUAwDcNHxDQhQL+36c9+JPY/HhZqTfOO+T/+1HjpJvEHQI/k8h/SDyVAIF7XL9jNBEBWKxN+qT8bQBppqbwdYfo/RIts5/tJGEDVz5uKVJj+P+V+h6JA3wJAMepae5+q3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K9mxEYgXAkC+nxov3XQgQIidKXRe4/M/3GgAb4EE9z95Xb9gN6wGQKabxCCw0iRAvFzEd2LWBED129eBc6YaQMvbEU4LXvc/AB3mywtwF0BR9wFIbWL+P3506spneQNA58b0hCUe3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qKlla32RBEAdOGdEaQ8bQFx0stR6v+A/OZfiqrIPE0B1yM1wA74IQKTfvg6ccyVAqfbpeMyABEDJsIo3Mm8YQK+ZfLPNDf4/fGEyVTCqG0Dd6jnpfaMAQBxfe2ZJAAhAHsakv5dC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rDlAMEcPBUDsL7snD2skQOlILv8hffA/YVRSJ6CpGkDi5H6HogALQNGRXP5DeiRAOe6UDtb/A0AEkNrEyZ0bQA8om3KFd/0/k+NO6WC9HEAYsrrVc1ICQNI1k2+2+QlAQwOxbOaQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GGAfnbry+j/D9Shcj8IsQPceLjnulPQ/oBUYsrq1HUBZi08BMB4MQOf7qfHS7SRAlnhA2ZQr/z9cWg2Je6wVQI47pYP1/wRAAvG6fsEOHEBGX0GasWj/P0Jg5dAiWwNA81gzMshd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kQ96Nqu+8D8Sg8DKocUJQBtkkpGz8AhA+N9KdmxEBkAoSddMvpkJQBSuR+F61CRAgZVDi2ynBEC0q5DykwocQPs6cM6I0vc/f95UpMJ4GEC0k8FR8ioBQOXyH9Jv3wZA4uR+h6JA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QWMmUS/44T8FxY8xd+0LQPT91Hjp5gtAL2mM1lEVC0Bhjh6/t2kJQGrecYqOpCRAiLoPQGpTBUDmkT8YeK4cQMLAc+/hEvg/yatzDMi+GECGVbyReSQBQJ0ui4nNBwdA3PP8aaM64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lIeFWtOcFkBoXDgQkrUiQNlCkIMS5gFAARjPoKE/A0CgFRiyupUMQEoMAiuHNiZAYhBYObQIB0C0sKcd/joaQKezk8FR8vw/0LhwICSLF0CSBUzg1l39P42XbhKDAAVAK/pDM0+u5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PKBsyhUeBEBjuaXVkLgeQIE+kSdJVwhAGCZTBaOSK0B4f7xXrYwSQLByaJHt3CVArcCQ1a1eA0Ae3J212+4aQFCNl24SAwRAvodLjjulHEAA4xk09A8CQAU0ETY8/QRAJhqk4Cnk1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ij+KOnMP5z/7ljldFvMUQHNjesISj/g/lPYGX5jsF0D/ykqTUtAPQJF++zpwTiVAkGYsms7OAUDIJCNnYW8cQG9kHvmDQQFAJAuYwK27G0BnD7QCQxYBQKVmD7QCwwNApiiXxi+83j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yf2fw3wZEED6YYTwaCMfQLzLRXwnhhRA4Sh5dY4BCECSy39Iv30IQE2EDU+vtCRApriq7LuiA0CkiAyreMMWQH7ja88sifY/gGWlSSmoFkDQ8jy4O6sBQH2R0JZzaQZAEeFfBI2Z5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BhIUP8acAUDpK0gzFi0dQLOz6J0KOOY/QKTfvg5cAUArGJXUCYgQQE8eFmpN0yVAixpMw/AR/T8Nw0fElIgZQFoqb0c4rfw/YOrnTUXKGUAz+WabG9P/P0hQ/BhzlwZA/iyWIvlK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c4Bgjh6//T8DYDyDhk4hQMI0DB8RUwNAREyJJHqZDECvzjEge30HQBSuR+F61CRA/cHAc+9hBkA4oRABhzAZQC6QoPgxJgRAyjLEsS4uHUB3oblOI60AQP3BwHPvIQVAvY3NjlRf5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qRPQRNgwCkApyxDHuvgeQBRf7SjOUeI/FD/G3LXEGUB/9iNFZJgKQC1DHOviliRAlPYGX5jMBUAijnVxGw0ZQDP5Zpsb0wJAWtjTDn+tGkBRpWYPtIL9P+mayTfbHAVA3GeVmdL64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+grSjEVTA0B5I/PIH8wYQKta0lEOZu4/fm/Tn/1ICkC7Jw8LtSYNQBTQRNjwVCRAmpSCbi9pA0ByxFp8CoAaQPYjRWRYRQBA4iNiSiTRFkBI3GPpQ5cAQAKfH0YIzwVARZ25h4Rv4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J2vUQzT6B0BhVFInoBkhQPpEniRds/c/JUBNLVtr9T+Orz2zJIAMQCxIMxZNRyNAGRwlr85xBEAUBfpEnsQaQBWMSuoEtP8/LLe0GhLXFUD92Y8UkSEAQPWc9L7xNQRAZJXSM73E4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IlSp2QOtCkDulA7W/xkXQLdFmQ0ySfc/UWaDTDIyFkCfk943vnYRQBE2PL1S1iVAjkC8rl8wAUDbxMn9DmUYQFAZ/z7jAgRAOEpenWMAGUCKH2PuWgICQGlSCrq9pAhAB0MdVrhl5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5DEDlfGvB0AEkNrEyb0XQNP2r6w0KfQ/rOKNzCP/FkCmuKrsu2IGQNuK/WX35CRAYWwhyEFJBkA10lJ5O6IaQDLLngQ25+0/ZMxdS8hnGUBBZfz7jMsAQKSIDKt4owJA8L4qFyp/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u2HbosyG/T+F61G4HkUkQEEOSphpe/Q/7KNTVz6LHEByio7k8h8KQEoMAiuHliRATdu/stLkBUCppE5AEwEaQPGdmPViqPs/JTs2AvG6GUDghEIEHML/P89m1edqqwRAbeaQ1ELJ3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+wW7YdtiAEAu51JcVbYBQBKI1/UL9vQ/OUVHcvkPJ0D1hCUeUPYKQBTQRNjwtCRA6bevA+fMBECvQspPqh0XQLsPQGoTp/0/8WPMXUuIGkDJcad0sH4AQE2EDU+vFANADD1i9NxC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rYbEPZZ+AEBCQ/8EF+sIQMdoHVVNEO4/n8iTpGvGGEBY/+cwXx4PQLTIdr6fWiVAYTJVMCqpA0AUrkfherQeQHEgJAuYwPo/ZjGx+bgWGEAAqU2c3G/+P6mfNxWpsAZAJgD/lCpR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"umbyzTb3CUC6MT1hiUccQA+0AkNWN/E/kQpjC0GOA0CkpfJ2hBMJQNobfGEylSRA0H6kiAyrBkCoqWVrfZEcQBmQvd798fk/ARO4dTcvFUDkDwaeew/+P7x5qkNuBgdALzArFOl+3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7j1cctzpB0C8dJMYBBYgQPfMkgA1Nek/lN43vvaMAEAv+grSjMUJQKUUdHtJYyNAyAxUxr+PA0CTOgFNhM0ZQPW52or95f0/LIL/rWSHG0DPZtXnamsBQDxO0ZFcPgZAG7yvyoXK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kej2ksboAECOI9biU8AeQInOMotQbOw/6+I2GsDbA0BFL6NYbikGQFR0JJf/oCNAoFT7dDxmBkAjhEcbR+wcQCFZwARu3fs/PpY+dEF9GECAt0CC4ocBQFPQ7SWN0QZAysNCrWne5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aVch5SeVC0B7ZkmAmioiQKp9Oh4zUNQ/djI4Sl4dBkCMEB5tHPENQPfkYaHWFCZAVWr2QCswBUAe+YOB554cQIj029eBMwdAthDkoIQ5HUCatn9lpckAQHL5D+m3bwVA3LdaJy7H5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QGoTJ/f7EEDCacGLvqIfQHlYqDXNewBAsdzSakjc8T+gMv59xoUHQLMHWoEheyNAT8x6MZRTCkALRiV1AroaQI/f2/RnvwRAuY0G8BYoHkAom3KFdzkAQI/HDFTG/wJA/14KD5rd4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hm0csRZfAEDaci7FVTUgQNRfr7Dg/uA/x0YgXtev+T+RCmMLQU4HQFZ9rrZiryNA81SH3Az3AkDb+X5qvBQdQMxAZfz7zANAAwmKH2NOHEDFckurIXEAQK1u9Zz0fgRA16NwPQpX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jdE6qpog+j/r/xzmy+scQINqgxPRL+M/j6omiLoP9z8LJCh+jDkBQMpskElGriFADcNHxJQIBUDNWDSdncwZQHLEWnwKAP4/oMN8eQFWFkDbFmU2yCQBQJYmpaDbSwVA2UP7WMFv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9x4uOe4U/z//W8mOjaAcQMufbwuW6tU/LESHwJFA6z9W1GAahg8GQHsUrkfhGiJAVtRgGoZPAkBQwkzbv1IbQLdFmQ0yyfw/7yB2ptD5GUCBeF2/YPcAQNvcmJ6wxAVAvY44ZAPp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c4Bgjh4/7z9RvTWwVaIeQDHT9q+sdBFA41MAjGeQGkDQfqSIDOsHQJM6AU2EzSRA6KT3ja89BEB8fhghPBoYQEUNpmH4yARAvHmqQ25GHEAUlnhA2ZQDQB7+mqxRjwhA+nspPGh25z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cy7FVWXfDEATDyibcmUiQIdQpWYPtPM/z04GR8nrAUCc4QZ8flgNQLyWkA96NiRAOh4zUBn/AkBIUPwYc7caQC4cCMkCpgBA7DTSUnk7GkB2Tx4Wag0BQKd0sP7PoQdAb72mBwWl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"626e6pCb/T+2hHzQs5kUQJkSSfQySgNA6BN5knQNGkCTADW1bC0LQDbNO07RESVAGlHaG3xh/z9WmpSCbo8WQGagMv59RvQ/thDkoIQ5GEBxOPOrOQACQNcS8kHPpgVA32qduByv4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UMdjBiqjBECG5jqNtLQSQKCJsOHple4/1eyBVmBIBUBrK/aX3dMFQDJ3LSEflCRAMZkqGJXU8j/aci7FVeUVQMfXnlkSIPs/Foczv5qjFUBtyhXe5eICQHi5iO/EbARALEgzFk3n5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cLa5MT0BGECJmBJJ9PIWQLBVgsXhzApAvFetTPhlFEAVV5V9V4QPQFfsL7snryZA3xrYKsEiCkCPpQ9dUA8gQHzysFBrWgFAYviImBJpGUBl3xXB/1b+Pw/uztptVwhAkPXU6qsr5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B5lk5CxMGUD8Uj9vKtIdQIbJVMGoxBZA8PlhhPBIEUD0bFZ9rhYQQD7o2az6fCZA/reSHRvBBkAvUb01sJUaQN8a2CrB4vM/R1oqb0dYGEBnuAGfH4YFQMAhVKnZwwZAd2SsNv8v6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SL99HTgnF0CBCdy6m0cTQML6P4f5UhBA/fZ14JxRD0Cz74rgf2sHQOQxA5XxnyNAj6omiLrPBkD67evAOWMcQPZdEfxvpQBAQwQcQpX6GUArajANw8f/P25RZoNMMgZAaFiMutZe5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LUMc6+I28D8L73IR30kYQFNcVfZdkQRAY2LzcW0oAkBK0jWTb/YJQF1Q3zKnGyNA5DEDlfEvBkDcgM8PIwQcQBQi4BCq1PM/4zYawFuAGkDHLlG9NbAAQKyowTQM3wRAQe+NIQA44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4V0u4jvxAkBM4NbdPPUdQEOtad5xivY/onprYKsECUAuVtRgGgYKQJMYBFYOLSVAL1G9NbDVB0AoRMAhVOkbQO6x9KELauc/LQlQU8s2E0BsBOJ1/cIAQPYjRWRYhQVAyjUFMjuL2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cqd0sP5PBkCP39v0Z78aQCy8y0V8p/A/wa27earDC0DulA7W/3kOQDEIrBxaJCZAHSCYo8cvCUDvj/eqlakaQPFjzF1LyPI/p658ludBE0DLoUW28/3+P/tXVpqUAgdAqDY4Ef1a4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2o8UkWGVAkAbL90kBsEgQH6pnzcVqQNA4Sh5dY7BBEAwL8A+OrUJQOwvuycPKyRA8+UF2Een+D+mJyzxgHIYQOXyH9Jv3/g/R6zFpwB4G0AAHebLC/ABQO2BVmDIKgRAhnKiXYWU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hy457pSOCUCamZmZmTkiQJ+rrdhfdv0/2gOtwJDVAkA1JO6x9CEKQA6+MJkq2CNAVFc+y/Pg9z/BVgkWh7MYQLe0GhL3WPU/1QRR9wEIHEA0nZ0MjpICQGEyVTAq6QNAChLb3QP04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/OO9amXC/z+eXinLEGccQIW1MXbCy+s/B/AWSFA8A0Crsu+K4P8LQH2utmJ/2SRAz2bV52orA0BszywJUDMZQFDCTNu/8gBAKxiV1AkIFkAWak3zjlMAQEurIXGPZQRAZkrrbwlA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2NMOf00WDEAz3IDPD8MdQNv5fmq8lBJA16NwPQoXBEDS+8bXnpkMQBiV1AlooiRASZ2AJsIGA0BwsaIG05AdQFd4l4v4zvg/lWBxOPMrHUCp+wCkNvH9PwLZ690fLwRAaXBbW3he2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sP7PYb6MIEAOhGQBE9gRQDcawFsgYRtAUDblCu9yHkDD2EKQg1IKQJVliGNdXCRAu+1Cc51GBUCmft5UpKIYQKJ/gosVtQBAuAGfH0aoFkCX/5B++7r8P1G9NbBVAgVAlN43vvbM5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xcn9DkXxIUAv+grSjMUTQGUZ4lgXNwlAD2JnCp0XG0BEboYb8PkNQPwApDZx8iNAKuPfZ1z4BEDytWeWBMgXQDiEKjV74ABAOpLLf0i/FkCEZAETuPX9P76kMVpHVQRA5Nwm3Ctz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MdP2r6x0H0BhVFInoEkRQDtwzojSLjVAYB+duvK5EUDrVs9J7xsIQMv49xkX7iJAluzYCMQrAEAFxY8xdy0YQDgQkgVMoAFAWUxsPq4NGUDQm4pUGNv/PyTW4lMAjAhAj6m7sgsG3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6LzGLlH9C0Bu3c1THRIhQFu21hcJrSJACFqBIavbEEA7/DVZo94LQHh6pSxD3CVAMxtkkpEz/T9zLsVVZR8YQDwx68VQzvs/n3b4a7ImG0C37uapDrkCQObLC7CPTgFAEqRS7Ggc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f7xXrUy4DkAkufyH9JshQNO84xQdSRNAjbRU3o5wDkDqPgCpTXwQQDY8vVKWASZA+3Q8ZqByAUA7wmnBi94XQBVvZB75QwFA/Yf029dhGECcxCCwcugAQPJ7m/7sxwJAF/Ayw0bZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VmXfFcH/8j8P7s7abbcZQEKygAncuhdARuuoaoKoC0DJHww8994PQOepDrkZ7iNAZVOu8C4XAUCOAdnr3T8ZQA3gLZCgePg/rvAuF/GdG0A7jbRU3k4BQAtjC0EOygRA/yH99nXg4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cqd0sP7PC0BGlPYGX9gkQO7rwDkjyv0/cXK/Q1EgBECFCDiEKvUNQPp+arx08yZA1q2ek943/j981cqEX6oXQJGb4QZ8vgJAQni0ccTaGkD/W8mOjcD/PzgQkgVMYAVALINqgxNR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"05/9SBGZ/j+N0TqqmiAYQD9ya9JtieQ/0ZZzKa6qAUCnrnyW58ENQFmGONbFjSZAJh5QNuWK/j/KMsSxLs4UQMmwijcyj/w/UAEwnkEDHEBlU67wLpf/PyEf9GxWvQNAqKlla32R5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x0YgXtcPEEBj7lpCPoghQF5ortNISxRAjUXT2cnAEkAdyeU/pN8IQI1iuaXV0CJAkpbK2xHO/j/B/1ayY2MZQCI3ww34/Pk/uqC+ZU7XFECi0R3EzlQCQGjon+BiBQtAVDasqSyK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c6JdhZSfDEDmllZD4r4TQHldv2A37Ps/xRuZR/7gE0AnTu53KEoFQHxhMlUwqiVAdxA7U+i8A0CxijcyjxwcQFDkSdI1k/k/i8OZX81BGkChoX+Ci9UCQPOOU3Qk1whAFoczv5oD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uTZUjPNXEUBSCrq9pLEWQNNNYhBYuQtAuycPC7UmJ0ChoX+CixUPQJm7lpAPGiZAkDF3LSEfAkCd19glqjcZQO8bX3tmCQFASiTRyyhWHEAzFk1nJ0MCQAQEc/T4vQdAP8bctYT84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ik+Srpn8/z/hl/p5U9EhQBNjmX6JeOg/vFzEd2JW+T9AE2HD02sJQGb35GGh1iVAZapgVFLnAEA0hc5r7PIbQMvz4O6s3fE/wVYJFocTF0CFX+rnTQUAQE8GR8mrswNAH031ZP7R4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nfS+8bUnAkDuCKcFL7oZQH1cGyrGuQhAbef7qfFSBUAktOVciusLQBLaci7F5SNA1c+bilRYAUCqtwa2ShAYQLx0kxgEVvU/NIC3QILCGkBi26LMBhkAQOPfZ1w40AZAh/4JLlbU4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1JrmHacoJkDgoSjQJ9IYQDElkuhldBlAtKuQ8pOqAkDPoKF/gosHQIoCfSJPwiNA8SkAxjPo/j8z/n3GhWMXQNZW7C+75wBAOEpenWNgGEAGu2HboswBQCC1iZP7XQZA4978homG5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4JwRpb2hJ0CC4seYuzYXQPMf0m9ftzJAcCU7NgIxHEA5RUdy+Y8EQNJvXwfOeSRAzhlR2hu8AECiemtgq6QUQG76sx8povQ/OwFNhA1vGkDV7IFWYEgAQIWUn1T7NAVAWDhJ88e04z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iIVa07wDJkDM7snDQo0oQPVKWYY4Vi1A6lvmdFnMF0D9wcBz76EKQEG3lzRGayJA2J5ZEqCmAkAGDf0TXKwcQIKQLGACdwFAucK7XMQXGEDeWbvtQvMAQBqjdVQ1AQVAvY44ZAPp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A5Xx7zOOHEAG9S1zuowbQGQe+YOBJxFAArfu5qkODkC1w1+TNeoJQHrHKTqS6yZAbcX+snsyBUAeM1AZ//4WQKeRlsrbkQFAYeC593AJHUDjjcwjf3ACQOgwX16AvQdAu0bLgR5q5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mSoYldRJE0CQ96qVCV8WQCO+E7NeLBNAqwSLw5lf/j8SwqONI5YLQO8DkNrEOSJAcSAkC5hA/z/jUwCMZzAbQIuJzce1of4/6glLPKBsGECQMXctIR8AQHwnZr0YSgVAoUliSbl75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kx0bgXj9EEDPg7uzdhshQDMzMzMzUyRAEqW9wRem9T+l942vPXMGQGaIY13cJiRA0zB8REyJBkCxogbTMHwaQOQs7GmHv/o/Z2FPO/wVG0B0tRX7yy4AQIKo+wCk9gNApztPPGcL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CRueXimLCEC2EOSghFkZQBa+vtalxuE/Jhk5C3uaD0CHM7+aA0QMQNEi2/l+KiRAqmVrfZFQB0CC4seYu3YdQBqjdVQ1gQVAX5hMFYxqG0DYDdsWZbYAQLOY2HxcGwZArtf0oKAU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tcNfkzXqBEDBVgkWhzMdQMjNcAM+v/M/smg6OxkcBkAZc9cS8kEKQOviNhrAGyZAYkok0cuoB0CvlGWIY70bQCwOZ341BwBAQj7o2axaGkAydy0hH7QAQOcAwRw9PglAwmuXNhwW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y6FFtvP9BkBFuwopP2khQMxdS8gHLSJAgufewyVHBEAOvjCZKrgQQPRsVn2udiZAkElGzsIeBkB5knTN5FscQI2XbhKDwP0/CW05l+KqF0CCkCxgArcEQEaU9gZfWAVAinJp/MKr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NuUK73IRBEBpVyHlJ9UXQJnZ5zHKM+I/ARO4dTcPDEBzuiwmNp8KQACRfvs6ECVAlBPtKqQ8BEC9qUiFsUUZQHNjesISj/I/sHJoke28GED68gLso1P5P1JEhlW8kQRAnWSryymB4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VwT/W8mOCEBIisiwilcaQOCEQgQcQv4/RBfUt8yJEkCo4zEDlXEHQIcW2c734yNA9aEL6lsmA0CZEkn0MuoZQKshcY+lDwFAi3H+JhSiF0B5r1qZ8IsCQIYb8PlhBANAujE9YYkH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OQt72uEvBUAdyeU/pB8cQLn8h/TbFwBAZMxdS8jHD0B/2T15WCgFQEs8oGzKhSNAyol2FVI+A0CAt0CC4scZQJ2FPe3wFwFA5bM8D+5OF0DopPeNr30BQHK/Q1GgDwRAwEF79fFQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ml/NAYI5B0DcRgN4C4QhQNk9eVioteU/XKyowTSM+D+X/5B++/oKQE+vlGWIQyRAEY3uIHamA0B/h6JAn0gZQIts5/upcfo/d/hrskb9G0AqjC0EOWgBQMiYu5aQDwlAjV4NUBrq5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RrHc0moIFEAgY+5aQh4hQOVEuwopPw9A0a5Cyk9KFkCjdVQ1QRQKQB3J5T+kHyVAcVrwoq8gA0CUpGsm38wYQL68APvo1Pk/3CkdrP+TGEDkg57Nqk/8P2YUyy2tBgJAFCAKZkxB4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gq0SLA7n/z80nZ0MjpIhQAFtq1lnfOg/JCh+jLkrCEBAwcWKGowOQAkbnl4payVAfoy5awl5A0Dc9Gc/UsQaQMtneR7c3QFAl8XE5uM6G0BWgsXhzG8AQD4ipkQSvQNAYwys4/gh4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eEXwv5WsD0D+JhQi4LAfQGuCqPsAJPE/hjjWxW20AkAe4bTgRV8NQBKDwMqhxSVA3e9QFOiTAkD4U+Olm0QaQLwi+N9K9gNAgy9MpgrmHEAq499nXDj/P/6arFEPEQVAAb7bvHHS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E7h1N081CEBvL2mM1jEgQEUNpmH4iAJAB7ZKsDic+T9y4UBIFjAOQEHxY8xdayVAvsEXJlMFBEDoTUUqjK0bQHnpJjEI7ABAkrOwpx1+HUAMsI9OXTkAQHAlOzYCMQZAWU5C6Quh4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5DEDlfHv7z9XCRaHM78bQJp8s82NmSBA+ie4WFFDGkAlOzYC8XoIQAskKH6MmSRA54wo7Q3+CUAGTODW3ZwbQPvo1JXP8vI/NEsC1NQSFkC+amXCL7UBQO8DkNrEyQVAbcg/M4gP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"luzYCMRLEUCHp1fKMiQvQFOWIY51cfE/qDXNO05RFkBFR3L5DykPQE0VjErqhCRAPlxy3CldB0DVlc/yPLgdQN8a2CrBYuo/W18ktOWcFUCXVkPiHsv+P4vDmV/NgQdA/Io1XOQe4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VoLF4cwvBUBOYhBYOVQqQPnaM0sCVPw/I/PIHwz8GkDWqIdodAcOQLByaJHtfCRAG9gqweJwBUAgY+5aQt4cQNXPm4pUmPo/URToE3lyFUBq2VpfJDT+P5xQiIBDKAZAZan1fqMd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kIgpkURvBUDHSzeJQQApQNKsbB/yluE/jGfQ0D8hFkCKk/sdisIKQBgmUwWjUiZAUMJM27/yB0C1iZP7HYocQLAbti3K7Pc/f/YjRWQ4F0A3jliLT0EAQJ9x4UBIlgNAJ4bkZOLW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FTqvsUsUAkD20akrn9UjQKA3FakwtvM/81SH3AzXFEAg71UrE/4KQMKGp1fKMiZAP6n26XjMBkBBSBYwgXsbQMU9lj50Qf4/5zqNtFReF0BgPIOG/gn/P/ksz4O7cwRAnMO12sNe4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Yf029fBB0CR8pNqn44aQLsmpDUGHek/RzgteNGXFEAawFsgQXEOQLIubqMBXCVAlrIMcawLDEDiOzHrxfAdQNzXgXNGFPw/WUxsPq4tF0AEBHP0+P0AQOiC+pY53QNAtykeF9Wi4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fnTqymc5CkBlU67wLrcYQA2mYfiIGPM/DTfg88PIA0DWkLjH0gcQQDxO0ZFc/iVAL/oK0ozFB0DXNO84RUccQPOOU3QkF/0/7PoFu2E7GkDkSdI1k+8AQIAr2bERCARAaCRCI9g44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZcdGIF5XBUChLedSXDUhQDzZzYx+tOk/42vPLAkQFUCBPpEnSZcKQL4wmSoYdSVAZyyazk6GAEDHSzeJQYAYQEEOSphpOwFAy4Rf6ufNGkDSHcTOFPoAQPzjvWplggZAi8QENXwL5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GTkLe9rhBkClLEMc65IgQErvG197ZtU/zlMdcjPc/T9lU67wLlcIQIEmwoanFyRAYf2fw3z5BEA34PPDCIEZQGHD0ytlWQJAj6omiLqPG0BslWBxOLMAQCl5dY4BWQVA48PsZdtp5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eV2/YDdsAUBuNIC3QMIcQP0yGCMShd4/FsH/VrKDG0AuHAjJAiYHQC7iOzHr9SNA7kJznUbaAkDVPh2PGSgaQPevrDQpRQBAxjNo6J+AF0BszywJUFP/P/WhC+pb5gJABVJi1/Z21j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y9F0djL4BUBwzojS3kAaQPK1Z5YEqPA/DkqYafu3FkB87ZklAeoFQEGC4seY2yRAgQTFjzH3AkDTn/1IEbkZQCe9b3ztmfg/KlJhbCGoGUD/ykqTUpAAQKQZi6azUwRAavrsgOuK3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uHU3T3VIBUAebRyxFr8YQMvapnhcVO0/kxgEVg4tGEBNSkG3l7QGQHWTGARWriRAbM8sCVCTBUAAb4EExc8ZQFaalIJur/c/bRyxFp8iGEAPlxx3SkcBQJvmHafoCAZADi4dc56x3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ogvqW+Z0AUDwiuB/KzkSQH+FzJVBteY//1vJjo1AC0An9zsUBfoHQNO84xQduSNA9wZfmExVA0DIQQkzbZ8ZQPqzHykiw/0/ak3zjlN0G0AJ/reSHRv/PxzO/GoOkANAxHdi1osh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I4RHG0dsCkDB/1ayY+MgQL68APvo1N8/b57qkJvhE0BT0O0ljdELQG1Wfa62wiVAmus00lL5BEDqIRrdQawaQErvG197pgNA2PULdsMWGUCV1AloIiwCQHZUNUHUfQRAwr0yb9V14D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfViKCfaB0CUh4Va0xwlQEm6ZvLNNuU/KcsQx7roIEDvchHfiRkJQFOWIY51cSZAM6fLYmJzBUDXwFYJFqcZQJMYBFYOLQBAIQclzLQdGED6fmq8dBMCQK0vEtpy7gNAUil2NA713T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hNOCF33FAUAknBa86KshQJ2dDI6SlwRAkpGzsKedDECTxmgdVU0KQBpR2ht8ASVAw9hCkIMS/j+lMVpHVfMXQCdO7ncoivU/4KEo0CdSGECSeeQPBp78PwLU1LK1/gVAiIOEKF9Q5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5wDBHD0eFEA+rg0V43wbQHgLJCh+TABAlufB3Vn7A0CpMLYQ5CAQQFioNc07ziVA6IL6ljmdC0DqlbIMccwcQB3J5T+k3/o/huY6jbT0F0Ang6Pk1bkDQIrNx7WhogNAMCk+PiG74T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"48eYu5YQB0DWHCCYoxcgQPhUTntKTu4/ZoNMMnIWHUAQQGoTJ3cKQHRGlPYGfyRAlKRrJt/sA0BHcvkP6dcaQIWUn1T7dPo/7nw/NV7aGkBeonprYCv+P0SoUrMHGghANj/+0qI+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OsyXF2AfDEBlNsgkI+cZQMOBkCxgQg1AhjjWxW30DUD9vKlIhbEJQEw3iUFgRSVAxxFr8SnABEBNLVvri+QZQMmrcwzIHgJAKA8LtabZGkCkqgmi7sMCQAoRcAhVqglAHa7VHvZC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"81meB3fnCUC70FynkXYfQMUcBB2tauk/AHSYLy+AAEBUOlj/53AGQNejcD0KlyZAy4Rf6ufNBECmRBK9jAIbQOVEuwopP/8/PE7RkVyeF0AurYbEPdYAQHWTGARWDgRAJ77aUZwj4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kwA1tWwt/j+Yo8fvbXocQM43onvWteI/CI82jliLAUCRLGACty4LQCfChqdXKiVA3xXB/1ayBUBMjjulg1UZQF7XL9gN2/g/4iNiSiQxF0CfyJOkayb+Pw/W/znMVwRAUwWjkjoB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LzTXaaQlBUCBeF2/YFcbQDyfAfVmVOI/pKXydoQTBEBhiQeUTTkLQGx4eqUsoyVAcqd0sP4PBUCOdXEbDcAZQHQprir7rvU/KCfaVUgZF0Dy7zMuHIj+P+IeSx+6YARAXeFdLuI74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R3L5D+k3A0BcrKjBNIweQPVKWYY41iVAaam8HeE0EkDjcOZXcwAQQF5LyAc9eyVAvt798V61BkBL6gQ0EZYcQDXvOEVH8vA//OO9amUCFkB2VDVB1H3/Pz5cctwpnQNA9wZfmEyV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fjUHCOYoBUAVV5V9VwQeQL4UHjS77s8/5ldzgGAO+D+8y0V8J6YGQCJseHqlbCRAorQ3+MLkAkAxthDkoMQZQOlDF9S3DANA9S1zuizGG0DX+iKhLWf+P96rVib8kgNAVRhbCHLQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h1ClZg90BEBVwaikTqAaQOXQItv5/v0/IhrdQewsHUBagSGrW70NQBueXinL0CRAcVXZd0UwA0Dshm2LMlsaQAwHQrKAifY/lWBxOPPrF0CWQ4ts53sAQAhyUMJMWwNAe9y3Wieu4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jswjfzCwA0D+JhQi4JD2vwcJUb6gBec/by9pjNYBIUB6/N6mP/sNQFOWIY51kSZA4uR+h6KABEAW9rTDX1MYQFPovMYu0fg/EoPAyqHlGECHinH+JtQBQEc4LXjRFwdAKbSs+8dC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9nr3x3vVA0ByDVf6FdpFP/iNrz2zpPk/J8KGp1eqKEATfqmfN9UOQIts5/upsSdAAd4CCYpfAEC9UpYhjlUZQJlk5CzsqQFAAwmKH2NuGkDBkNWtntMAQP8JLlbUIAhAkX77OnBO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"orQ3+MLkAkAKou4DkNoJwEQ0uoPYGfQ/UPwYc9dyJkBjnL8JhUgNQAXFjzF3LSdAarx0kxiEBUBT0O0ljTEZQNlaXyS05fk/NEsC1NTyGkDEsS5uo8EAQG/YtiizgQZA3Xwjumfd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OPjCZKrgDkCZu5aQD/r9P4NMMnIWdvI/umsJ+aBHJEC1bK0vEroQQC6QoPgx5iVASx+6oL7lBEAK3Lqbp7ocQMP1KFyPAgNAhj3t8NckGkAXnwJgPMMBQGBZaVIKugZAdHy0OGMY5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F/GdmPVi+j8Cmggbnh4lQKX3ja89M/A/A30iT5JuCEC8rl+wG7YGQH9qvHSTCCNA001iEFg5/D/qeMxAZVwWQOJ1/YLdsPI/3eo56X0jFkBdv2A3bFv+P/aX3ZOHRQJAChLb3QP04D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ml/NAYK5C0BDrWnecYrzP7gjnBa8qANAW9O84xR9JED5LM+Du/MQQPRsVn2uViZA2nIuxVVlA0C/ZU6XxcQcQN9PjZduEgFAkPeqlQl/G0CwPbMkQE0BQO3T8ZiBSgpA9RH4w8//5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3lm77ULzD0DaVUj5SbX3P1g5tMh2Pv4/OQt72uEfIUAsvMtFfOcQQKmkTkAT4ShAu37Bbth2AkBa8KKvIK0aQHuIRncQu/s/YhVvZB4ZHUA8a7ddaO4BQC9pjNZRVQhAcAnAP6VK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FMstrYbEBkCXcymuKhscQCU7NgLx+gZA3h/vVSsT+j/aOGItPsUMQHf4a7JGPSNAa0jcY+nDBUC1/SsrTcoYQB4zUBn/vvc/JnDrbp7qFkBI3GPpQ5f+P6zijcwjfwJAkUdwI2WL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DvPlBdhHAUAVdHtJY1QdQCVYHM78qhJAkgVM4NbdBUCJ0t7gC5MJQIhjXdxG4yRA5Ga4AZ8fAkDBc+/hkuMWQBbe5SK+E/M/6StIMxbtFEBr1EM0uoP/P4eiQJ/IUwJA9wX0wp2L4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w552+GvSEEBGtvP91AghQChJ10y+Wfo/EHo2qz6XAkDy6hwDshcKQCBB8WPMPSRA8FAU6BN5BkCAYI4ev9cdQCZTBaOSegRACoUIOISqHECoNc07TpEAQNzXgXNGFAdAvr1r0Jfe5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SZ2AJsIG9T+etdsuNHcbQHXIzXADvvo/hZm2f2VlFECDTDJyFrYNQOhqK/aX3SRAqWqCqPsABEAwR4/f21QYQGfttgvNNQVAjQsHQrKAHUAGEhQ/xhwDQKp9Oh4zEAhA51QyAFRx5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ILWJk/vdBUCJQWDl0EInQBFtx9Rd2eU/zqrP1VbsDEA5Yi0+BYAGQGaIY13c5iRA1CtlGeIYA0CR7Xw/NX4bQFVNEHUfQAZAlSu8y0UcHUBjC0EOStgBQDpdFhObTwZAi96pgHue4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bw1slWBxA0D0+L1NfyYhQH3O3a6Xptg/lLw6x4BMEkAC1NSytf4IQOF6FK5HgSRAXwfOGVEaBUCY+nlTkYoZQBzO/GoOUAFAf6SIDKu4GkADJnDrbl4AQGgibHh6ZQZASicSTDWz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j8L1KFzPB0C8dJMYBFYkQCQMA5ZcxeY/yeU/pN8eF0BUNUHUfYAMQG40gLdAoiVABYasbvXcAEDmXIqryv4YQC+GcqJdhQdAJ6CJsOEpHUCM22gAb4H/P3XIzXAD/gNAB5lk5Cxs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xvmbUIgABEBtyhXe5WIaQObLC7CPTvQ/N2xblNkgA0C6awn5oCcNQL6fGi/d5CVAKAr0iTzJBUAzG2SSkZMaQIih1ckZCuk/nUZaKm/HF0AVOq+xS1T/P2aDTDJyVgNAzGH3HcPj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"64uEtpwLDEAbu0T11nAjQK8l5IOeTfg/hjjWxW30FUCz0qQUdLsMQG3n+6nxUiRAbagY528CAkCpvB3htMAaQGMoJ9pVyAFAUMJM27+yF0CM22gAb0EAQOYivhOzXgVAsHCS5o9p4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zxQ6r7GLCUA4Mo/8weAjQJ612y40FwlAsOYAwRy9D0D0piIVxhYJQDQRNjy98iRAGD4ipkSSA0Bs7BLVWwMZQHh/vFetzP8/GCE82jhiHEBos+pztZX+P6Io0CfyZAZAkQ2ki00r3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S7A4nPlV/T/Twfo/h1kWQEdy+Q/pt/Y/SS7/If12BEC5cCAkC1gJQHZxGw3gTSRA+n5qvHRTA0DmeXB31k4aQJvJN9vcGP0/yjfb3JjeG0BClZo90EoAQFVq9kArsAZACACOPXsu5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2bERiNc1CUDiWBe30ZAiQDDYDdsW5fI/IQclzLT9BkAMyF7v/jgIQMiYu5aQ7yRAxty1hHzQAEAaFw6EZCEXQERRoE/kSQJAm6xRD9HoF0Ag71UrE/7+PzUpBd1eEgJAeh1xyAbS3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5e0IpwUv/z9JumbyzQYgQLyWkA96Nv4/DY6SV+e4H0BnJ4Oj5BUNQOhNRSqMzSNAEoPAyqHF/j9PHhZqTTMaQGpq2VpfpP4/b/Wc9L7xGUAS2nIuxdX+P4vgfyvZ8QVAcHhBRGpa5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bAn5oGdzAUCJeyx96AIeQKWg20sa4wNA0zB8REyJAkA5fxMKEfAEQDUMHxFTciNAutqK/WU3AkCinGhXIcUWQB+F61G4Hv4/U8vW+iIhG0AAdJgvL0AEQMI0DB8R0wdAak/JObGH5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l8XE5uPaDkD2I0VkWCUTQNU+HY8Z6A1AK/uuCP5XEkDjNhrAW0ARQE3zjlN0RChASrVPx2OGB0ATDyibckUZQOnUlc/yPPY/Y3rCEg9IGUDMf0i/fZ3+P/fpeMxAZQZAqU2c3O/Q4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WFaalIKOEECyutVz0lsSQPw1WaMeIgdATpfFxOajF0Drbp7qkPsRQDxO0ZFcPihAhSUeUDblBUAs8YCyKXcZQNQrZRniWPY/HVVNEHU/GUD5FADjGbT+P3sxlBPtKgZANSVZh6Mr4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wM+4cCAkBkDgLZCg+LEWQI/f2/Rn3xJAy9b6IqEtH0CcxCCwcugUQHgLJCh+bChAX9IYraOqAUBQATCeQQMcQCgPC7Wm+fo/2LYos0GGGECX4qqy7woAQIS7s3bbBQRA6x9EMuRY4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IGPuWkL+CUAF+kSeJF0iQHCUvDrHAPQ/qn06HjNQG0BiFW9kHjkJQAHeAgmKvyRA8uocA7KXAkC5quy7IlgVQE9AE2HDEwJAvvbMkgBVG0C/1M+bitT/PyUjZ2FPewRAVMiVehaE4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Q2+MJkqBUCfPCzUmsYlQJxQiIBDqPc/4Zf6eVOREUAg0m9fB44KQFuxv+yeHCRA9kArMGT1BUDwbfqzH8kYQKVrJt9sMwdACFVq9kDLG0Bt5/up8VL+P6Tfvg6ccwRAoG8LluqC4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MiB7vfsDEEBxAz4/jNAjQNatnpPeNwBAmN2Th4V6EUAGTODW3XwLQIqO5PIfkiVATnrf+NqzAUB5r1qZ8IsZQI4ev7fpzwJA0zB8REyJGEDr/xzmywsAQEFl/PuMCwNAPusaLQf64D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f2q8dJMY+j9AwcWKGuwVQBHHuriNhvc/qfsApDZxD0DghEIEHEIOQArXo3A9CiVAP+PCgZCs+D8O2xZlNsgVQKMG0zB8xPw/J07udygKHECI9NvXgXMBQIpZL4Zy4gRAtoR80LNZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O+RmuAGfCECWeEDZlJshQD+RJ0nXTPQ/N45Yi09BCkC0yHa+n1oOQMx/SL99/SVA56kOuRkuBECZZOQs7EkaQGGJB5RNufo/waikTkCTFkA5tMh2vh/+P6yQ8pNqXwRAHQHcLF4s4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ke18PzVe/z9oke18PzUaQG/whclUQfQ/7Sqk/KSaAUBmiGNd3EYQQAskKH6MuSZAF0hQ/BizA0B3vp8aL50aQDqvsUtUb/0//aTap+PRFkD9pNqn4zH9PxqGj4gp0QNAwqT4+IRs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"02pI3GMJEkCWW1oNieshQJmByvj32QBA5A8GnntvGUAJ+aBnsyoNQM6qz9VWTCVAipP7HYqCBkCxUGuad3waQIRkARO4dfo/VG8NbJXgGkAwZHWr5yQAQCKJXkaxHANAbVhTWRR23T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q+ek942vAECY3ZOHhTolQGOXqN4a2PA/mIbhI2IqHEBBvK5fsBsIQCQofoy5iyVAtRX7y+7JBUAQXVDfMscaQFInoImwoQBAvMtFfCcGGUDLnC6LiU3+P2FUUiegyQRAvvbMkgA10j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n8iTpGvmBkCx4emVsownQJHVrZ6TXuE/6fF7m/5MH0DJWdjTDv8JQPp+arx0MyZAyuAoeXWOBkA6r7FLVG8bQAd8fhghPPg/1qiHaHQHG0BM/bypSIX9P2ZJgJpatgJAqDl5kQn42D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RUdy+Q/pC0Bv9Zz0vlEdQB0gmKPHzxJA6pWyDHEsCEDcaABvgUQLQHctIR/07CVACcTr+gU7AEC9GMqJdrUXQNPB+j+H+fs/iuWWVkOCFkCCixU1mEYAQHjRV5Bm7AVAzlFHx9VI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jWK5pdWQEUA6deWzPE8bQDBHj9/bdP0/uY0G8BaIAkAiGt1B7MwLQCJseHqlzCRAOh4zUBn/9D/9gt2wbXEVQJHQlnMpLvo/Z/LNNjemGEBlNsgkIycAQJfiqrLvigZASaEsfH0t4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aAbxgR3/4j/D2EKQg1IcQMSxLm6jgfk/dAzIXu/+BkCUTbnCu1wGQDeJQWDlICJAgSGrWz3nAkCR7Xw/NR4WQBQF+kSeZABAHVpkO9+vGkC05VyKq8oBQPLqHAOyFwlA1m8mpgux5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xhaCHJRwEUDWqIdodKcaQKCJsOHpVQFAh/nyAuxjDkAQXVDfMicFQDgyj/zBYCNAeUDZlCv8AECaX80BgtkaQL3GLlG9Nfw/uk4jLZWXGUBbsb/snrwDQJNS0O0ljQlAjSYXY2Cd5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HT1+b9MfA0BXeJeL+G4fQL4xBADHHuA/M+GX+nmTHkDI7236s18MQAu1pnnHKSZA3/3xXrWyBUAJih9j7voaQAnE6/oFO/0/C0EOSpjJG0BhiQeUTTn5P/8+48KBkAFAA8x8Bz9x4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R3L5D+l3BEDkDwaeey8bQDqvsUtUrwRA6pWyDHGs+D8AAAAAAIAMQCJseHqlbCRAuDtrt11oAUD8Uj9vKtIZQC7nUlxV9vw/yatzDMj+GECrIXGPpc8FQO5aQj7oGQhAkSqKV1lb4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OBCSBUxgC0DyzTY3picbQEVmLnB5LOQ/fPKwUGtaGUCPjUC8rt8JQLaEfNCz+SRApmH4iJiSCEBIMxZNZ+ccQH/ZPXlYaAFAwHgGDf3TG0A/jBAebZz9P1mjHqLRXQRARfZBlgUT5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"whcmUwUjBEDfN772zPIZQOc6jbRU3uE/AYdQpWbPFkDxRuaRP1gKQKUsQxzr4iRAKld4l4s4CECNYrml1XAdQFrY0w5/DQBA4PPDCOERHECqZWt9kdD9P+xRuB6FKwVAeNSYEHPJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XTP5ZpsbB0DHuriNBoAiQHjuPVxy3No/k4ychT2NHkA1mIbhIyIKQLn8h/TbNyVAzywJUFMLA0AW9rTDX7MZQLx5qkNuRgNAlbcjnBY8GUAUlnhA2ZQAQBKgppatNQRApgpGJXWC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I/jfSnasA0CTb7a5Mb0XQFiQZiyaTvI/mQ0yyciZAEDW4lMAjOcOQOlILv8hnSRAhIHn3sOlAUAWak3zjlMZQIQqNXugVQBAucK7XMRXHEBqTfOOUzQBQA2mYfiImAdA521sdqR64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SkG3lzSGAkCJDKt4I7MZQLoxPWGJB/A/9+RhodZ0AUDQfqSIDKsPQCo6kst/SCRAl8rbEU4LAkDDR8SUSGIZQFQ6WP/ncABADY6SV+eYG0CQFJFhFS8BQGOcvwmFiAdA9gmgGFky4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n3HhQEhWEUA0v5oDBDMbQPFG5pE/WApALexph79mDUC8kXnkDwYLQFmGONbFzSZAyhr1EI1uBUAUIuAQqnQbQCzxgLIp1/0/48eYu5ZwG0B0DMhe774BQKZh+IiYEgdAZQETuHU35z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/kgRGVZxBEDUt8zpstgaQGsMOiF0UO8/6udNRSpMFEDlRLsKKT8QQGWqYFRSZyVATpzc71DUA0AziuWWVqMZQK8I/reSXQBAmyDqPgCJGUCfAmA8g4YAQCKJXkaxHAdATTCca5ih5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aK7TSEvFE0CFQgQcQiUgQB7htOBFXw5AnFCIgEOoBEBzgGCOHr8PQGPuWkI+aCdAdqbQeY0dBUCrBIvDmV8aQDjb3Jie8AFAsVBrmne8HUAhdqbQeY0CQAt72uGvyQlAcvikEwmm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6glLPKBsFUC9++O9anUgQBEBh1Clpg5AmMCtu3kq/z80SwLU1HIHQGkAb4EEZSRA3pOHhVoTCEC/YDdsW/QaQJKzsKcdfv0/UWaDTDISGUCemPViKCcAQCQLmMCtewNA1H0AUpu44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l6jeGtgKGUBDyk+qfYogQA9/TdaopxNA2J5ZEqCm+D9ClZo90AoKQFXBqKROYCRAL26jAbyFCUBwQiECDmEbQCe9b3zt2QFAwvo/h/nSGkDFckurITEAQGkAb4EEhQRA1lQWhV0U5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"46qy74rg+j9angd3Z+0hQCgOoN/3b+o/kQ96Nqs++T9xGw3gLRAHQI2XbhKDoCRAjBAebRxxBUD/5zBfXkAcQHlYqDXN+wBArVEP0eiOH0AvbqMBvAUEQOF6FK5HYQlApyVWRiOf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/8pKk1IQAEDUSEvl7egfQMZpiCr8Geo/eGLWi6EcAUA0v5oDBDMIQGaIY13cxiRAb57qkJuhBkB00vvG114cQDXSUnk7AgFACoDxDBr6GECVYHE486sEQBMsDmd+NQhA18IstHMa5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rvAuF/EdCECZKhiV1KkdQBXHgVfLHeg/donqrYEtAUCxv+yePOwLQPonuFhR4yNAw4GQLGCCBkCmYfiImJIaQBO4dTdP9QBAxF+TNephHUBpUgq6vST/P8iYu5aQzwVA93e2R2+45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+1dWmpRCBECpMLYQ5OAdQHst6L0xBOI/0SLb+X6qJ0DC+j+H+fIHQDJVMCqpEyVApBmLprNTAUCbG9MTlvgZQNRDNLqDmAFADf0TXKzIGUCp+wCkNnEAQCno9pLGKAVAs9E5P8Vx3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qYdodAexBUAiN8MN+BwVQH0/NV66SfY/Kej2ksZo+z/KbJBJRs4LQGgibHh6RSVA8Uv9vKkIBEBgH5268tkXQLL0oQvqWwFAr1qZ8Es9GkAHtkqwOFwBQGebG9MTlgtArJFdaRkp5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PKWD9X8OA0BYObTIdj4kQAA8okJ1c+Y/RN0HILVpEEDjwoGQLGAJQMAJhQg4tCNA2NMOf03WAUArTUpBtzcZQBBdUN8yp/8/jkC8rl/QGkCNYrml1RACQBtMw/ARsQZA8DUEx2Xc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"flcE/1vJBEBU46WbxFAjQOjAcoQM5OM/zzEge737CUD4a7JGPUQKQCZTBaOSuiRAJTs2AvE6/j9FZFjFG7kXQGRA9nr3BwRAS5NS0O1lGkBPIy2Vt2MCQHzysFBr2gZAxt/2BInt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JTs2AvF6EECUTbnCu/wWQLwFEhQ/RgtAVTAqqROQBkD1LXO6LCYMQMUgsHJoMSZAqBjnb0IhB0BFKowtBFkaQBDM0eP3Nvc/NsgkI2ehGUChuU4jLdUAQOaRPxh4rgVA9G+X/bpT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SDMWTWcnEkDMQGX8++wdQBqLprOToRZAMdP2r6x0DED92Y8UkeENQDBMpgpGpSZA2IFzRpT2A0Bv05/9SJEbQA4tsp3vJ/c/xoUDIVmgGEBJopdRLPcAQHYyOEpenQRATWiSWFJu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KGGm7V8ZDUC7fsFu2BYfQALxun7B7gpA9Zz0vvF1D0ChoX+CixUQQPjCZKpgNCdA02pI3GNpA0CYF2AfnbobQP9byY6NwPw/S7A4nPmVF0AIrBxaZDsBQPt0PGagcgRAWg2Jeyz95j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x/SEJR5QAkBkIxCv61caQJZ4QNmUq/o/zQaZZORsBUDjiLX4FEAJQDdUjPM3ISNAEce6uI2GAUA2donqrYEXQG6jAbwFkvg/9Wc/UkSmGkBBn8iTpOv9P9EF9S1zOgZArWwf8par1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qwmi7gOQB0CrBIvDma8hQAclzLT9q/Y/yv0ORYE+FECEgefew+UPQJqZmZmZWSZABYasbvUcCkBhw9MrZbkZQDIDlfHvcwVA9nr3x3vVGUCqDrkZbkACQCTusfShSwVACOV9HM2R5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wW7YtigzBUBKDAIrhzYgQIKtEiwOZ/E/SiTRyyjWAED7ljldFpMPQDeJQWDl0CVADi2yne8n/T9fKcsQx7oaQK1p3nGKjgZAu0T11sD2H0CzQSYZOQsFQOp4zEBlvAdAl/4lqUwx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X+/+eK9aAUDKw0KtaZ4eQO19qgoNROI/HXIz3IAPE0A8FAX6RF4HQPvL7snDgiRAyhXe5SK+AUBA+5EiMmwbQGX8+4wLB/c/Bd1e0hgNGUC5x9KHLij/P5FhFW9kngJAQYLix5g74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NV66SQzCA0BiFW9kHnkhQAdF8wAWeeA/WOcYkL1eIEDgEKrU7MEJQAHeAgmKXyRANL+aAwSzA0A+y/Pg7iwaQP7UeOkmsfs/a4Ko+wCkGUACK4cW2Q4AQDnRrkLKDwNAFAfQ7/u34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dVYL7DER7z9GlPYGX5gSQFfsL7snLyhAAmVTrvCuCEBv9Zz0vjEOQH/ZPXlYqCRAXvQVpBkLB0BENLqD2BkbQFG9NbBVAgFAOQt72uEvGkAh6j4AqU39P6DgYkUN5gNA7BSrBmFu3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N1SM8zch7j8u51JcVbYRQJkSSfQyCgBAmpmZmZlZJkDaIJOMnMULQL8OnDOi9CRAGt1B7ExhAEAqUmFsISgWQHVZTGw+7gBArMq+K4IfGkBuowG8BVIDQAdCsoAJnAdAxQPKplxh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"enB31m57AUDDgZAsYMIbQKCJsOHpdSVAFM0DWORX7D+kpfJ2hBMCQLRxxFp8CiJAQmDl0CJbAUCXi/hOzHoZQDKP/MHAc/c/kbjH0ocuFkDAPjp15TMAQOrnTUUqzARAaRoUzQNY4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EywOZ341AEB5r1qZ8AsdQHYaaam8/RdAMLsnDws19D8Rx7q4jYb/PxkEVg4tUiJAxvmbUIiAA0Byv0NRoO8ZQERRoE/kSfw/lX1XBP97GEDeyDzyBwMBQHIz3IDPjwRAEMtmDkkt3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EAUzpmAN6T+gbMoV3iUgQEdaKm9HGBJAVMa/z7jw+z8zbf/KStMBQM07TtGR3CFAejarPldbA0CjO4idKXQaQGrecYqOZP4/aR1VTRAVGkDtKqT8pFoCQHTS+8bXHgRAaverAN/t4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+SzPg7vzAEAVV5V9V9QjQOtztRX7KxdAW7bWFwntDUBh4Ln3cIkQQCJseHql7CZAJCh+jLnrA0BNofMau2QaQC0JUFPL1gJAVpqUgm7vHEBfQZqxaLoBQINRSZ2AJgVAr3d/vFct4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gbIpV3g3EUChEAGHUAUgQPW52or95fU/Z+22C82VE0At7GmHv2YHQEgzFk1ndyNA/U0oRMBhBECOzCN/MNAZQFlRg2kYPv0/wHgGDf2zGUAN/RNcrGgAQPHXZI16CAZAs/D1tS615j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YYkHlE25/T9ZhjjWxY0eQInvxKwXQw9AzywJUFNLDkCny2Ji87EPQPkP6bevoydAmWTkLOxpDUCIgEOoUlMeQKDDfHkBNgFAdk8eFmpNFkAx0/avrHQAQE3bv7LSJAdAwac5eZEJ1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iV5GsdzS9j90JJf/kP4fQJn1YignmgRA0XR2MjhqEECSrpl8s00PQFwgQfFjjCdAL8A+OnXlDECjQJ/IkwQfQNKpK5/leQBApriq7LuiFkCS6GUUyy0BQMQlx53SgQZAZyrEI/Hy1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6fF7m/7swb+z0qQUdAshQJW3I5wW/AdAo3VUNUFU/z+rIXGPpQ8GQGFsIchBuSNA3+ALk6kC9j9ortNISwUUQK00KQXdHgJAxFp8CoCRGEBgArfu5ukCQIfhI2JK5AdADwpK0co94D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Rs7Cnnb4DEDZlCu8y6USQP5g4Ln38PQ/q7LviuA/EED6uDZUjPMHQMGtu3mq0yNAvw6cM6K0+T91H4DUJq4XQCBB8WPMXfU/fzDw3HuYGUBqMA3DR4QBQCY2H9eGygNANE3YfjJG6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vqQxWkcVAEDO/GoOEOwjQDT0T3CxIgJAie/ErBeDGEBos+pztZUGQB2PGaiMXyNAI2dhTzv8BkAFwHgGDV0ZQCi4WFGD6fo/THFV2XdlFkCQZiyazk7/P+v/HObLywhAQgddwqG34T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7dPxmIGKAEAkKH6MuSsnQH7GhQMhGQNAMJ5BQ//kHEC3tBoS95gPQFafq63YPyZA24XmOo00+j+zzY3pCWsaQO84RUdy+QBATpzc71C0GEAmGTkLexoBQHva4a/JmgRAs5quJ7ou4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uFhRg2mY/T8SFD/G3LUoQI/C9ShcD/U/zVg0nZ3MGkDgSnZsBOIQQJF++zpwTidA9Zz0vvF1AECEZAETuBUZQL+CNGPR9ABAw9MrZRmCGkCBsilXeBcAQJZbWg2JewZAizOGOUEb4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OsyXF2C/EEDyQc9m1eciQLbbLjTX6QRAQ+c1domKF0B1jgHZ6x0QQEOtad5xaiZASrVPx2OGAkAvwD46dUUZQDSAt0CCogFAUHCxogYTG0A+rg0V4/wAQCi4WFGDKQRAFwyuuaN/5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KSMuAI3S3z8vi4nNx7UiQN6wbVFmA/s/X5hMFYwKBkCvJeSDno0MQGlv8IXJ1CVA9aEL6lvm/j/KT6p9On4ZQD24O2u3HQNAWYY41sVNGEAIyQImcOsAQErvG197ZgZARDUlWYej4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f9k9eVgoCEA2k2+2uUEhQHfzVIfcDP4/vyuC/62kBUBBSBYwgZsLQPzepj/7ISNArS8S2nKuAUAp6PaSxsgXQBN+qZ83Ff8/9wZfmEwVHEAs1JrmHacAQFc+y/Pg7gVArmLxm8LK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qgkzbf9KAEDBrbt5qkMdQDnSGRh5Wes/oyO5/If08D8wKqkT0EQMQMRCrWne8SVAtHHEWnwKAkBuowG8BdIYQBxfe2ZJgP8/uk4jLZX3GUBMcVXZd4UBQHDOiNLeYAZAl/26050n5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1H0AUpt4BkATDyibctUgQMOcoE0On9s/2UKQgxImFUDqlbIMcSwIQNzXgXNGFCRAf95UpMKYA0DRItv5fooZQENWt3pOugNAFw6EZAGzGECto6oJou7+P3JQwkzbvwNAMZqV7UNe4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eTvCacGLBEDTMHxETMkFQLr2BfTCnds/J2vUQzR6FUBBKzBkdWsGQCPb+X5qXCRAVmXfFcH/BEApeXWOAdkZQPWEJR5QNgFAsp3vp8arHkBe9BWkGYsAQBKgppattQVArtNIS+Vt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ICQLmMBtB0AHJcy0/esSQAxAo3TpX9s/GVbxRuZRH0B5knTN5NsKQBHHuriNZiVAfzDw3Hs4CECb5h2n6IgbQOjZrPpc7QNAPZtVn6stGkDIJCNnYY8AQCk/qfbpuANAymsldJfE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WkdVE0TdBkDImLuWkI8sQL00RYDTu9E/DhXj/E24IUDXNO84RUcHQK2GxD2W7iNAzxQ6r7GLBEAWE5uPa6MaQA034PPDiAZAJGJKJNErH0D+SBEZVnEAQJzhBnx+WAVA1EhL5e0I5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bsDnhxGCBEA3VIzzN2EUQC0kYHR5c+M/KjqSy39IAkCS6GUUy+0HQHicoiO5PCRABARz9Ph9BEBnYU87/LUZQHgoCvSJfABAEqCmlq31GUBJ9DKK5dYCQN+JWS+GcghA95MxPsxe5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U5YhjnXxBEDHKTqSy18lQJ9ZEqCmlvw/luzYCMSrBECbcoV3uQgMQBpR2ht8gSNAOBCSBUzgAkCb/uxHisgYQIYb8PlhxABAW0I+6NnMGUA1DB8RUyICQIy5awn5YApAborHRbUI5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JH8w8Nx7+j9kHvmDgccUQKNYbmk15AtAH4XrUbheFUBslWBxOPMHQFr1udqKHSVAjKGcaFehAUApBd1e0lgZQB7htOBFnwRAMnIW9rRjH0CVDtb/OQwCQC+GcqJdBQZAYW9iSE6m5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zqW4quy7A0Df+NozS6IdQAh3Z+22i/U/pMfvbfqzCEAOEMzR4zcHQJWCbi9pDCNAbcX+snuyBUBrt11orpMaQGNFDaZh+Pk/DcNHxJToGEAr2bERiJcBQNNNYhBYOQZAhjyCGylb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c0urIXHPAUAYldQJaLIiQPhQoiWPJ+s/eLmI78QsCkCamZmZmRkDQAFNhA1PLyJAx4Ds9e5PCEDXhopx/iYaQHrCEg8om/s/rWnecYoOGUAVkWEVb6QAQIyEtpxL8QVAVkRN9Pko5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EXAIVWr2CkA8iJ0pdJ4hQA034PPDSApAt2J/2T0ZE0Dso1NXPqsQQBZqTfOOcyZALlbUYBoGAkAuHAjJAqYXQDf92Y8UkQVAAmVTrvAuHUCDF30FaYYAQBkEVg4tsgRApN5TOe0p4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hZm2f2WlD0Av3SQGgRUmQIkpkUQvI/A/ZK93f7x3GUCM8zehEKEQQE+vlGWIYydA6dSVz/K8BECu2F92Tx4bQFwbKsb5GwdAf7xXrUw4G0B+NQcI5uj/P1Ou8C4X8QJAgXfy6bEt4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LPGAsilX/T/xRuaRPzggQGFQptHk4u0/oijQJ/Kk/D9ihPBo4wgFQM0eaAWGTCJANjy9UpahAUBgsBu2LQoaQLoxPWGJB/E/2ZlC5zX2F0AzMzMzM7P/P7VsrS8SWgVAl3DoLR7e3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1/oioS3nCECp+wCkNvEiQE60q5Dyk84/InGPpQ9dEEC1VN6OcFoLQEOtad5xaiVAbXNjesJSBkD+KytNSqEbQKUsQxzrIgdAd76fGi+dIEA/OnXls/wBQIY97fDX5AdAB7MJMCx/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RGlv8IUJCkC28/3UeCkkQM3Ji0zAr8k/JZLoZRTLD0BwsaIG07AKQPFjzF1L6CRA2uGvyRq1B0D+YOC597AaQBQF+kSepAlA8KfGSzeJIEDcgM8PI4QCQBdIUPwYMwhAXOSeru7Y4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RGlv8IUJCkC28/3UeCkkQM3Ji0zAr8k/JZLoZRTLD0BwsaIG07AKQPFjzF1L6CRA2uGvyRq1B0D+YOC597AaQBQF+kSepAlA8KfGSzeJIEDcgM8PI4QCQBdIUPwYMwhAXOSeru7Y4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kQ96Nqs+CUCH+fIC7KMVQHNLqyFxj/c/UmFsIcjhEEA0nZ0MjjIQQLTIdr6feiVAAKlNnNzvA0DZQpCDEsYbQAh3Z+22i/4/RUdy+Q+pGEAw2A3bFuUAQKJdhZSf1AVAfevDeqNW5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3UHsTKGzB0B6U5EKY4sXQEQX1LfM6fQ/76zddqH5G0DWc9L7xtcPQJ5eKcsQJyhAbHh6pSwDB0CXOV0WE5sZQJg0Ruuoavg/sp3vp8aLGECuR+F6FG4BQFoSoKaWbQdAT8x6MZST4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dEaU9gafBUDkFB3J5b8lQBBYObTI9vA/PGu3XWjuDUBaDYl7LD0HQFmGONbFDSVAs3vysFDr/D/ghEIEHAIaQG6GG/D54QBAhxbZzvfzGECl942vPXMBQJCDEmbafgRAEOfhBKbT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N/3ZjxRRCUCjryDNWHQSQGXkLOxph/U/0ZZzKa4qDEBdM/lmm5sQQArXo3A9yiVAAHSYLy+AAkDkMQOV8W8WQJsb0xOW+Po/ByXMtP1LGkCQTl35LM/+P2KE8GjjiANATBx5ILJI4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zO7Jw0It/T/7ljldFnMSQO7O2m0XGuw/8+UF2EenCUB+HThnRCkPQPmgZ7PqcyVAAWpq2VrfAUBbttYXCW0YQMdGIF7X7wBA2V92Tx52GUA7/DVZox4AQMqmXOFdbgNAtI6qJoi64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rhIsDmceGEDVCWgibBgkQNwpHaz/UxBAmUf+YOC5CkDUDn9N1qgLQAZkr3d/zCNAl1ZD4h4LAkBlx0YgXpcZQAZHyatzjP0/t2J/2T2ZGECNf59x4YAAQOf7qfHSDQVAmj+mtWns4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IbHdPUD34L+77UJznYYbQBMPKJtyZRJAnbryWZ5HD0D6CtKMRRMOQN5xio7kUiRA9RCN7iB2/z+S6GUUy40XQCs1e6AV2ABAqAAYz6CBG0Br8SkAxjMBQKAaL90khgVA4J7nTxvV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HPD5YYRwDECP39v0Z78XQBx79lympus/2o8UkWGVHkD+1HjpJnEOQEI+6NmsuiVAww34/DDCAECLw5lfzWEWQNuK/WX3ZPc//B2KAn2CFkDk9zb92Q8AQKHbSxqj9QVAZan1fqMd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4Niz5zI16z+ztb5IaKsXQJ1LcVXZtwJAucK7XMQ3DkBUxr/PuPAOQPKwUGuaNyZABHP0+L1N/j/I0ocuqK8YQL7Z5sb0hPg/yhr1EI3uGUBwsaIG0zD/P+ZXc4BgDgVATIv6JHfY4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N+DzwwghBUC/fR04ZwQWQDLp76XwoOU/GqiMf5/xDUCoHf6arBEHQKHWNO84RSVA5/up8dINAkChhJm2fyUZQPm9TX/2o/s/h+EjYkokGUAZBFYOLbL/P8O7XMR3YgRAwHebN04K3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f03WqIcoCkBtVn2utlIiQOy9+KI93uI/YhVvZB55AEDopPeNr70KQGMLQQ5K+CJAXkvIBz1bBEDzqzlAMAcbQB+/t+nP/gRAsylXeJdrGkCq1OyBVuD8P+rnTUUqDAZAjexKy0g95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HJlH/mDgCUB2cRsN4E0kQMjNcAM+v/Y/HVpkO9+PFEAzbf/KSlMFQJAxdy0hPyRAbosyG2SSBUAEc/T4vY0aQBR7aB8reO4/6njMQGUcGUDRBfUtc/oDQLbz/dR4KQNANQwfEVMi4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hNiZQuc19D+afLPNjRkiQMh71cqEXwJAiPTb14GzKUAjvhOzXmwRQLAD54woLSZADaZh+IgYB0D6J7hYUQMaQMtKk1LQbfc/6IcRwqPtFkDYDdsWZbb9P4xK6gQ0UQJAFR+fkJ234z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xJRIopcRDUBnCp3X2OUjQOPfZ1w4kPA/rRdDOdFeIUAEBHP0+P0NQAu1pnnHqSVAscQDyqZcA0BMN4lBYOUcQDaTb7a5sfc/6N7DJcf9FkA7x4Ds9e7/P9GRXP5DegNAzXLZ6Jwf4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XHaIf9jS0b9hbCHIQYkXQNuF5jqNtA5A+rg2VIwzAECl2qfjMYMJQMe6uI0GcCRAvalIhbEFA0DwMy4cCKkWQOllFMstrfs/T5KumXyTGUBUbw1sleACQNiBc0aUdghAFQFO7+L95z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LEgzFk0nCkDv4ZLjTrkhQNyhYTHqWuY/rg0V4/wND0BHIF7XL5gKQDtwzojSPiRAOwFNhA0PAEBBguLHmNsZQJhp+1dWGgBAuXAgJAtYG0AMWd3qOen/Pyuk/KTa5wNAIxKFlnV/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K01KQbdXDUC0yHa+nxooQHk7wmnBi/o/R3cQO1PoGEDc14FzRlQJQIEmwoantyRAyCQjZ2GPCECWsgxxrKsaQBmto6oJIgBA5e0IpwXPG0Bjf9k9eVj/P2/YtiizgQNAIZIhx9Yz3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WYY41sVtC0C+nxov3YQZQO2ePCzUmiRAoBUYsroVBUDKiXYVUj4RQMx/SL99nSZAKld4l4v4/z8Fi8OZX80WQI/C9ShcD/c/HEKVmj3QGUAteNFXkOYEQKCmlq31hQlAYTPABdky5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"74/3qpVJBkBcd/NUh3wZQOoJSzygnCNAbCbfbHOjD0DHndLB+j8QQOSDns2qrydAJNbiUwCM/z9kkpGzsGcWQDRo6J/g4vo/R4/f2/QnGkDq7GRwlPwEQHnpJjEILApABrmLMEU55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dqbQeY3d/j8+y/Pg7owfQGa9GMqJduo/UaBP5EkSCkBcctwpHewNQMdLN4lBgCRA5US7Cin/AUDK4Ch5dQ4aQD+p9ul4zPw/GQRWDi3SGECPGaiMfx8CQMa/z7hwoAZAqU4Hsp5a6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u9Bcp5EWCUD3ksZoHVUiQJMYBFYOLQRAVkj5SbVPEUA4hCo1e6ALQNnO91PjhSZAGhcOhGSBBEARqtTsgdYYQHIz3IDPD/k/TP28qUilGEBivrwA+2gAQO3T8ZiBCgZAAoI5evze3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HLYtymwQA0D/z2G+vMAfQAZKCiyAKdE/IqtbPSe9AUCzJEBNLdsGQM4ZUdob/CRAJa/OMSD7A0ByUMJM2x8bQMGLvoI0YwNAeR7cnbUbGECWCb/Uzxv+P3/2I0VkGAZAqyLcZFSZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IbByaJHtAkA6OxkcJd8hQJDaxMn9DgNAKzV7oBVYCECSrpl8s80MQECk374O/CVAMnIW9rTDAEAnoImw4ckaQLa+SGjLufA/YDyDhv4JGkAQzNHj97YBQMrDQq1pXgNAA1/Rrdf03z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"boYb8Pnh/j9vRzgteHEeQNFXkGYsmvA/7KNTVz5LBEDwMy4cCMkNQGTMXUvIByZAKh2s/3PYA0CNtFTejlAbQBqLprOTwfk/+5Y5XRbzGEBubkxPWCIBQOdSXFX2nQJAnprLDYY62D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0XmNXaJ6BUAQejarPnceQD6XqUnwBu0/T8x6MZQjIkA5RUdy+Y8HQKK0N/jCJCVA2qz6XG3FBUA3cXK/Q/EYQCk/qfbpeARAk4ychT2tGUD8xteeWZIAQPcBSG3iZAVAzGH3HcNj4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Rl9BmrFoA0DajxSRYVUgQBL3WPrQhfc/b2Qe+YMB+z82k2+2uTEGQIeKcf4mBCNAEsKjjSPWBEBZi08BMJ4aQC457pQOVgJAEeSghJmWHECTxmgdVU0BQDGZKhiVVARA3WCowwq34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l5APejZrAUARUyKJXoYbQMIYkSi0rNc/lPsdigL9AEAR/G8lO/YHQHE9CtejECRA8L+V7NgIAUBZwARu3Y0YQDygbMoV3vk/TMPwETElF0ADQ1a3ek4AQKnZA63AUAZAjq7S3XW25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O3DOiNJeCEAZHCWvzhEdQC5weawZGdo//kP67esAA0DUSEvl7cgNQJZDi2zneyZAgVt381SHBkCmCkYldWIbQFoNiXssPQRAHZQw0/aPG0BWSPlJtU//P7snDwu1ZgZAHmyx22cV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+KV+3lSkA0Dm6PF7m84gQMjShy6o7+s/J71vfO0Z/j+Nf59x4QAIQDUMHxFTciNAU67wLhdxBEAFacai6UwZQADjGTT0DwRAxyk6kstfHEC0sKcd/loAQFaalIJu7wVARRDn4QQm5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N091yM0wBkBgqwSLw5kfQDElkuhllOg/c4V3uYhPFEBtc2N6wtINQKyt2F92byZAZRniWBd3A0AsK01KQVcYQFCNl24Sg/s/hPV/DvMlFUDKMsSxLu7/P/+ye/KwEARAKZXwhF7/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L/oK0owFA0BsCfmgZ3MgQBtLWBtjp+s/u+1Cc53GD0DOwp52+CsOQNc07zhF5yVANQcI5uhxAUDHaB1VTXAZQIi6D0BqE/g/mdh8XBvKF0CtLxLaci7/P/CK4H8rGQVAmKdzRSmh4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jpJX5xgQCkD9h/Tb16EWQD4/jBAeLQ9AaD9SRIYVFEAKur2kMZoHQEOtad5xSiRAsCDNWDSdBEB4CyQofuwXQFCqfToes/Q/qyFxj6UvF0B3Z+22C00BQEM50a5CSgVAoMN8eQH24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vHSTGAQWAEDhtOBFXwEfQD3UtmEUhOg/DDz3Hi658j/ufD81XnoOQH/7OnDOSCVAswxxrIsbBkDN6bKY2NwaQERuhhvw+QJAAmVTrvCOG0BbQj7o2ewBQOxph78mawVAFi8Whshp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K4cW2c739z8yOEpenQMgQOjewyXH3RZA8Z2Y9WJ4IUAXDoRkAVMHQGK+vAD7uCNAsmg6OxmcAUBvu9Bcp9EVQJiFdk6zwOw/zCiWW1otFUBaL4Zyol3/P+0qpPykmgRAzXaFPlhG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n6ut2F+2DEABamrZWm8hQM7fhEIEHPc/xM4UOq/xDkCZ2HxcG4oRQA1xrIvb6CZA2QjE6/qF/T/4a7JGPYQZQJiG4SNiigFAJXoZxXIrGkB8fhghPNoBQKVrJt9scwRAxHk4gek04z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RwN4CyToBkDB/1ayY4MbQNI6qpogavc/dY4B2etdAED186YiFQYJQOjZrPpczSRAT6+UZYjjAkDzcW2oGIcVQL2pSIWxRQBAJ9pVSPnJHUDbp+MxAxX+P6NYbmk1JAlAKQZINIGi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/N6mP/vRDkCNf59x4YAaQI1F09nJ4P8/FTqvsUu0F0Ah5SfVPt0KQEcDeAskyCVAmnecoiO5+z9e9BWkGcsYQKjjMQOVcfk/Cks8oGyqFUBwfO2ZJYEDQAwfEVMiSQNAF9f4TPbP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HjNQGf++A0BZ3eo56T0eQLqD2JlCZ/E/g0wychZ28j8KndfYJSoLQHZPHhZqnSNAr3d/vFctB0DymIHK+PcZQNdppKXy9vs/x9eeWRKAG0Dy6hwDslf6P2iz6nO1VQVASddMvtnm4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5+PaUDFODEAJ4dHGEcsdQCyC/61kR+8/RZ4kXTN5+j8jEK/rF+wMQAFNhA1PbyRAfjUHCOboBEBa2NMOfy0aQHjRV5BmrP4/cjPcgM+PGkC2Z5YEqCn9P1q77UJznQRApOL/jqhQ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8piByvi3AkAf9GxWfU4fQPGAsilXeP4/18BWCRaH+T8E54wo7c0NQO7O2m0X+iNAIhrdQexMAkAU7Sqk/CQYQFLVBFH3QQBASiTRyyg2GUDmeXB31u7/P5bs2AjE6wNA/rW8cr1t4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bagY52/CDUD2C3bDthUjQJLsEWqG1O4/UwWjkjqBC0ApyxDHujgOQNxGA3gLBCZA7xtfe2YJBkDJsIo3Mi8dQJmesMQDSgRA0GG+vAD7HkC0AkNWt7oAQHpwd9Zu+wZAYtnMIakF6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZJKRs7CnC0B5zEBl/HsXQG5MT1jigfg/PX5v0599A0DxnZj1YigMQBKDwMqhRSRAd0oH6//cCEA+P4wQHk0YQIct4uB3eLY/ppvEILDyE0CJXkax3FIEQBu7RPXWAAZAuHh4z4Hl4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lialoNvL+r9VwaikTgAnQM11GmmpfBtAn8iTpGvGH0BH5pE/GDgGQDAqqRPQhCRAWMUbmUf+9z8J4dHGEesZQE1lUdhFUe0/1pC4x9KHFEDOiNLe4Av/P9RgGoaPCARAYmU08nlF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pmH4iJhyEUD67evAOUMnQE34pX7eVP8/fSJPkq55HEDX+iKhLecQQB+F61G43iRA/wQXK2pwBEDUZTGx+ZgSQPtXVpqUgvw/lWBxOPOLF0APRYE+kScBQDZZox6ikQpAns4VpYRg3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Birj32e8EUDJdr6fGu8ZQCY2H9eGKhhAA8+9h0tODUBRiIBDqNINQGIQWDm0qCdAQE0tW+sL+z8jhEcbR+wZQK8l5IOeTfM/+RQA4xkUFkBrt11orlMAQEBNLVvriwZAfF9cqtKW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"svFgi90+1z/i6ZWyDBEgQNI6qpog6gNAvW987Zml/T+ZEkn0MooRQPCFyVTBSCVAnwJgPIMGBEAe/pqsUS8WQJeo3hrYqvc/vAUSFD+mFUA0v5oDBDMBQJIiMqzizQdAfSO6Z10j5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ychZ2NNOBUByM9yAz48aQI1donproAxAFTqvsUtUDkBXCRaHM38KQMGopE5A8yZAdTxmoDK+AEDX3TzVIRcXQN/42jNLgvI/+Q/pt6+DFkD99nXgnBEAQFhzgGCOngdAM+IC0Chd4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MlUwKqkTAUCJJHoZxRIfQFEzpIri1eE/A+yjU1c+A0Doaiv2l10LQL3GLlG99SJAvYxiuaXVAUDLviuC/+0XQHAIVWr2QPg/UkSGVbwxF0DMtP0rK83/P6tbPSe9bwRAo3kAi/z64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dc3km22uCEAcmUf+YEAjQFGlZg+0Avs/QIf58gKsCkD9n8N8eWEQQKvP1VbsjyVAeqUsQxxrBUBS7dPxmGEbQAWjkjoBjQFAGy/dJAbBHECk374OnLP/PyWS6GUUywNAPx767lYW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sTOFzmusDUALe9rhr6khQHEDPj+MkP0/dAzIXu9+9T8I5ujxe5sRQDlFR3L5ryZAgez17o+3AUD8Uj9vKrIZQBMn9zsUBQJAox6i0R3EH0CAfXTqyuf6P/VnP1JEhgRAo1uv6UFB4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eqUsQxwrDEB8fhghPHofQNszSwLUVARAWK1M+KWOI0BNMnIW9vQNQN4CCYofYyZANV66SQwCBUDGhQMhWaAZQKw5QDBHTwFAOxkcJa/uF0DEfHkB9tECQP4mFCLgUAZAHch6avXV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZF3cRgN4C0DsF+yGbesbQEOtad5xygFAzhlR2hu8CEB4KAr0ifwPQPW52or9xSVAWoEhq1u9A0DP91PjpRsbQAn5oGez6vc//+xHisjwGkDUK2UZ4pgCQCZTBaOSeglACRaHM7+a6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kwA1tWytCkBHdxA7U+gTQD0nvW98bQBAY5eo3hrYCUD7ljldFlMPQAyTqYJR6SRAhhvw+WFEAUD8NVmjHqIYQK+xS1Rvjf4/EEBqEydXF0AWTWcngyMCQO5fWWlSygdAUd7H0RzZ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SZ2AJsIGAED6CtKMRYMiQD//PXjtUug/rW71nPR+AkD4ja89s+QGQAisHFpk2yRA/dmPFJHhAEAl6ZrJN/sXQOUn1T4dj/E/jV2iemuAGEBfDOVEuwoBQFvOpbiqbAZApBgg0QQK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6UMX1LdM/z86BmSvd58dQP63kh0bQQRANpNvtrmxDEBh4Ln3cAkOQOepDrkZ/iNAxHx5AfaRCEB00vvG1x4dQPW+8bVnVgRA3GPpQxc0GkDt0/GYgYoAQKzFpwAYDwRANGd9yjFZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TGw+rg01FkBlARO4ddcdQHiXi/hOjAFARUdy+Q9pAkDJyFnY084LQGUZ4lgXlyZAOsyXF2AfBEBmFMstrQYZQATKplzhXQJAAp8fRggvHUBpOjsZHGUCQEbT2cngKAZAY30DkxtF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dOrKZ3keDkDvIHam0KkjQHgoCvSJPBtAuVM6WP9HGkA+rg0V43wOQG+e6pCb8SNA+ptQiIDD+j+NeohGd7AXQKhSswdaQQNAGRwlr84xHEDSHcTOFDoAQGd+NQcIpgVAYM0Bgjl64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rhIsDmf+/j/8qfHSTSIiQJeo3hrYKg1A5BQdyeW/FUC1T8djBioNQPmgZ7PqcyZANPRPcLGi+T85Yi0+BYAUQBCv6xfsxgFA6PaSxmj9GkAf14aKcb4AQFJJnYAmAgRAY3yYvWw70z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1A5/TdbIEECU+x2KAj0XQNNNYhBYOfM/DoRkARN4C0AwR4/f2/QLQLyWkA969iVApI0j1uITBUB+xoUDITkcQLPqc7UV+/c/pTFaR1XTFUB2GmmpvB3/P3eE04IXfQdAjXvzGyaa4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U13Aywyb7z+jQJ/Ik0QYQL9gN2xbFAJAVft0PGZAFECzzY3pCQsRQDMzMzMzcyZAFD/G3LUEBUAI5ujxe/saQK1p3nGKjvw/fh04Z0QpGEDGihpMw3D+P0T67evAOQJADOiFOxdG4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jSeCOA8n7T9YrUz4pb4bQIDxDBr6xxBAOPjCZKqgG0AxthDkoIQPQPyp8dJNQiZAJ2vUQzS6BUADfSJPkq4aQDBMpgpGZQFA74/3qpWJHEDjUwCMZ1D/P1rY0w5/DQNAQBL27SSi4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yygn2lXIA0BvRzgteFEbQJ27XS9NEeg/O3DOiNJe9T+22y401ykIQELsTKHz6iJAZvfkYaHWAkDnUlxV9j0XQCqRRC+jWPY/GHjuPVySF0AC2evdH68AQPqbUIiAQwZAPL69a9CX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hj3t8NfkBEAMAiuHFnkdQP0ubM1WXtc/u9Vz0vvGCkCkU1c+yzMCQISezarPNSRAVn2utmJ//z+3ek5635gXQIrlllZDogNA6X3ja88sGUC1T8djBuoCQJHVrZ6T3ghAZk0s8BXd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r1qZ8Eu9EEDyXrUy4ScgQDAqqRPQhBNA3e9QFOjTAkAhyEEJM60JQCJseHqlrCVAZaVJKej2BkAmNh/XhmocQNBhvrwAe/M/SOF6FK4nF0DSUnk7wmn+P4e/JmvUgwJADvlnBvGB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jZduEoNAAkAVWABTBg7aP3VyhuKOt+w/4C2QoPjRL0Ck5NU5BmQNQMmrcwzI3iNA+5Y5XRaTAEDYZI16iIYXQCgn2lVIOQFAe9rhr8k6GkCR8pNqn04AQFmjHqLRnQRAXVMgs7Po2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WFaalIIuCEDU67vHPm21PzIBv0aSIOI/XynLEMdaLUCIhVrTvKMNQNXnaiv25yNAHooCfSIPAUDQDyOER9sWQE1nJ4OjZAFA24XmOo2UGUDzVIfcDDcAQIidKXReowNAE/HW+bfL2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OC140VeQ9j8l6ZrJN5sdQFrY0w5/LRJA0csollsaBEAOvjCZKlgMQGrecYqOhCZA+Q/pt6+DAEDECOHRxtEYQPrQBfUt8/U/+yKhLeeyF0AM6lvmdFn+P0mil1Es9wNAhllo5zSL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+FPjpZvEBEC2SrA4nHkhQA3gLZCg+P8/KXl1jgFZCkDi5H6HooAKQCmuKvuu6CNATx4Wak3z/z9jf9k9eZgZQL3jFB3JZf4/xFp8CoBxGEBjKCfaVYgBQKPp7GRw1AJADFpIwOjy3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ag6hSs3eD0CWeEDZlCshQOKS407pYAVA6N7DJcc9EkDJPPIHAw8LQO5aQj7oOSRAtVTejnCaAUB+HThnRGkaQJfK2xFOiwFA5Pc2/dmvFkAEkNrEyX3/Pw034PPDCARAFjHsMCZ94T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DFnd6jnpDkDq501FKgwHQGWNeohGdwNAndfYJaq3D0CqQ26GGxAQQGwJ+aBncyRARRK9jGK5AUA8iJ0pdL4aQEaZDTLJCARARzgteNHXFkD7kSIyrGIAQJD3qpUJvwRArwrUYvAw4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZED2evfHC0AFxY8xd+0UQLH5uDZU7BBAIsMq3si8FEBVMCqpE5AMQGiR7Xw/dSVA0SLb+X5q/z+0PA/uzloVQA+XHHdKh/s/vrwA++hUGkA1RuuoaoL+P+j2ksZoHQRAoMGmzqPi4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iqvKviuCA0BIFjCBW1ciQP63kh0bAeI/0QX1LXM6BEDSHcTOFLoKQOjZrPpcrSRAk1LQ7SUN+D/9vKlIhfEWQOoJSzygrAVAaVch5Se1HEB5Xb9gN6wBQHr83qY/+wdAu+8YHvvZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vK5fsBu29j8iiV5GsfwVQNydtdsuNP8/RbsKKT+p+z9zuiwmNl8KQMuhRbbzPSRASiTRyygWAECtF0M50S4WQMFWCRaHM/Y/B+v/HOYLGkD0iTxJuqYDQAouVtRgGghA7NtJRPiX6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6glLPKCsEECBBMWPMccjQB04Z0RprwNAhZSfVPsUEkAkl/+QfvsLQDxO0ZFcviVAHM78ag4Q/z8sgv+tZCcYQGufjscMFAFAl/+QfvuaF0CHp1fKMsQBQF7XL9gNWwhAuvPEc7YA6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6J/gYkWNCkCLMhtkkhEeQEKVmj3QygxAi08BMJ5B8z96qkNuhlsOQJtVn6utOCVASYWxhSAH/D81JO6x9OEVQBu7RPXWQPg/JEVkWMXbGEDMKJZbWs0BQLa5MT1hyQpA7kPecvXj5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WhKgppatAkAnpaDbS/oYQMUgsHJokfA/b9Of/UiRH0ASwqONI5YOQFvTvOMUvSRA/7J78rDQ+z9PzHoxlFMVQExPWOIBZfY/z2bV52pLFUBCz2bV5yoCQNdMvtnmBghAUfUrnQ9P5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OxkcJa9O9T93Z+22Cw0XQL68APvoFAFA05/9SBF5F0CzmNh8XBsKQBNhw9MrpSZAu9Bcp5EW9z9EhlW8kdkWQMR8eQH2UfU/PE7RkVxeF0Ctad5xig4CQLAbti3KbAZAUMb4MHvZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/PuMCwdC/z/D0ytlGcIiQKlQ3Vz8beM/g24vaYyWCkC0sKcd/loIQBkEVg4tEiVAP4wQHm0c9D9iZwqd1xgVQORO6WD9n/k/vodLjjtlGkDF/rJ78vACQA2mYfiIWARARSxi2GHM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M8SxLm5jAkCJDKt4IxMZQMyXF2AfXQtAf95UpMJYAUCFCDiEKnUHQKfoSC7/QSVAs7W+SGhL+j9mSYCaWtYVQJDaxMn9jv4/B/AWSFC8G0CQoPgx5i4AQL4Ts14MZQVA61OOyeJ+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tWytLxLawD/M0eP3Ng0gQLRxxFp8qhpAVp+rrdgfDkDyQc9m1ecIQPMf0m9f5yRAx53Swfq/+j9OtKuQ8jMXQAEwnkFD//c/ArwFEhR/GkCgGi/dJEYAQLvVc9L7hgVAFr1TAfc85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NsgkI2dh8D/s3R/vVVshQGCTNeohGgBAmEwVjEpqA0D5oGez6vMJQK5kx0YgPiNAJxQi4BAqB0C/DpwzotQbQGPRdHYyOABAXoWUn1TbFkC8kXnkDwYAQIUIOIQqtQRAeawZGeSu4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4pLjTukgDcCsVib8Us8iQJM6AU2ELSRAfzDw3Hu4D0DZCMTr+oUQQLn8h/Tb1yVAUAEwnkHD/T9angd3Z40XQBbe5SK+UwJAZB75g4EnGkAPYmcKndcBQIIclDDTtgRA0jdpGhTN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Z2Y9WIo+r8+6Nms+vwlQE65wrtcRBJAVvFG5pH/FUBMbD6uDRUMQOLplbIM0SVA7MA5I0q7BkBiFW9kHjkbQOwX7IZtC/g/845TdCR3GUBQGf8+48L9P2xblNkgkwNA9poeFJSi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yO9t+rNfAkDXFwltORcTQFa3ek56nwVAizcyj/zBB0AnwoanVwoJQI4B2evdfyNAF9nO91MjAkBCeLRxxFoaQEUvo1hu6f0/cm2oGOdvF0A0uoPYmcL+P/4rK01KAQRAdZMYBFYO4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4iNiSiTR+j/67evAOUMUQGtgqwSLww5A499nXDjQBkBrZcIv9TMJQL4wmSoYNSVA2VpfJLTl/z+tTPilft4ZQKmHaHQH8QFAdF5jl6jeFkDKbJBJRk79P9uF5jqNdARAc7osJjaf4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r+RTlfBjYL+xogbTMLwYQGR1q+ek9wRA3nahuU5jCkCfjscMVEYLQAisHFpkmyRA5j+k377OAEBuUWaDTPIZQFUYWwhy0P4/ih9j7lqiGUBmFMstrYb9P/5D+u3rgARAtcagE0IH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B/AWSFD8yj+oHf6arJEdQEmFsYUghxFAuDtrt12oAkBKJNHLKFYMQF9GsdzS2iNAXRYTm4/rBECpTZzc71AXQN2YnrDEA/k/m/7sR4rIG0B9eQH20Sn+PxniWBe3UQRAU5W2uMZn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ox6i0R0EE0Aw2A3bFrUgQJ7Swfo/BwJAkBSRYRXvBEBIG0esxacMQPwYc9cSciVAQNmUK7zLAUAPtAJDVlcZQIgRwqONo/4/MNgN2xZlF0ANq3gj80gBQLMpV3iXywRApI0j1uLT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"odtLGqNVEUAJ/reSHZsgQHPXEvJBzwNA097gC5MpC0CKsOHplXIMQCUGgZVDSyRAdeWzPA8uAECbPdAKDDkZQFbUYBqGjwFAqRPQRNgQFUDttgvNdVoBQAk4hCo1+wNAEHUfgNQm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W311VaAW5j97ZkmAmhodQAg9m1Wfq/c/pUkp6PZSBkBangd3Zy0EQMDsnjwsFCRAn1kSoKbWB0BszywJULMaQEIJM23/SgBAD0WBPpFXIED+1HjpJjECQJgXYB+degVAUn3nFyXo4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B84ZUdobD0DmV3OAYO4aQLGKNzKPPBVAYqHWNO84+z/9TShEwKEQQJVliGNd/CRAWWlSCrq9AkCDwMqhRRYcQFch5SfVPv0/ud+hKNCnF0Dd0mpI3GMAQBH8byU7NgVAIZT3cTTH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gQTFjzE3EUA9D+7O2k0iQBkEVg4tciVAZK93f7xXAUDSGK2jqkkPQESLbOf7SSdASkbOwp52BkA4vvbMkiAaQHDOiNLeIAFAk1LQ7SVNGkBsIchBCTMAQMAma9RDdAJAgBE0ZhL15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DAdCsoCJCUA7cM6I0n4aQB0gmKPH7+c/oKaWrfVFHECfk943vjYLQCQofoy5CyVAhslUwahkAEBWgsXhzM8ZQKnBNAwfEfk/rir7rgg+GUDswDkjSvv9P6hvmdNlMQVAUADFyJI52T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mFEst7SaEECDUUmdgEYeQOKS407poAJAs+pztRX79T8RqtTsgVYJQGYxsfm4xiNAaJHtfD/1AkAi/fZ14LwXQAbYR6euvAJAUYNpGD7CG0CPpQ9dUF8CQPKYgcr4NwdA2ozTEFX46D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PX5v05/9BUCjkjoBTVQgQFwbKsb5m/I/DAIrhxZZ+T/5SbVPx2MGQIFDqFKzpyNAB9MwfEQMAUAHCObo8VsYQCV6GcVyCwVANEsC1NTSGUASiNf1C/YCQG/whclUAQdAgUI9fQR+6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dcjNcAO+BUBWgsXhzK8hQIE+kSdJ1/A/bHh6pSxD+T/C+j+H+TIGQDJ3LSEftCNApFNXPstz/z8C2evdH+8YQJ88LNSaZgRAZw+0AkN2GUBYyjLEsa4DQMbE5uPaEAdA4bVLGw5L6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3xXB/1byC0B40VeQZowXQNaQuMfShwZAOpLLf0i/A0C/K4L/raQGQLNeDOVE6yJAE5uPa0PFAEA4Sl6dY8AXQK5H4XoUbgFApTFaR1WTHUC+pDFaR1UCQOkrSDMWzQhAZRcMrrmj5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F7t9Vpkp5T/aIJOMnCUdQNpyLsVVZQ5Aho+IKZFE/D/aci7FVSUHQFch5SfVviJAQDBHj9/bA0DBi76CNOMZQHfbheY6Dfc/HHxhMlUwFkB7Tnrf+BoAQJLLf0i/PQRAkkHuIkxR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mggbnl7pBUCP5PIf0o8cQOwzZ33KMeY/JzEIrBxa+T9hiQeUTbkKQOcdp+hIDiRAdY4B2esdAECMZ9DQP6EZQC5W1GAaBvM/CI82jljrGUCgT+RJ0rX8PxQF+kSeJARAceKrHcW54D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yJi7lpCP8j/92Y8UkcEcQPN2hNOCFxZArthfdk8e+D9LPKBsypUJQAg9m1WfSyRA5CzsaYc/AkCk/KTap6MYQHxhMlUwqvk/LbKd76fGFkD+Q/rt60D9P8ISDyibMgVACRUcXhAR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NZiG4SMCEEBDOdGuQgodQHIW9rTD3/0/CYofY+7aF0BcrKjBNAwQQA4tsp3v5yVARpkNMskIAkBx5ldzgGAZQOz6BbthW/A/9kArMGSVFUCb/uxHikj/PxqojH+fMQRAgo3r3/WZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gQTFjzH3C0AJFoczv/obQPkx5q4lZPs/PfIHA8+9C0BNvtnmxnQIQNI6qpogGiNAsylXeJdLA0DpfeNrz4waQDblCu9yUQJA9mIoJ9q1HUCxpx3+mmwBQOC+DpwzYgZAejnsvmP45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ychZ2NOOB0CalIJuLykbQGfyzTY3pvg/u7iNBvBWDUBjtI6qJsgIQOKvyRr1QCNAYWwhyEGJA0B4nKIjubwaQJXUCWgirAJAngd3Z+12HUAnoImw4WkBQAk4hCo1OwZAzhjmBG1y5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fdCzWfV5BUCoOuRmuOEcQEnYt5OI8Ng/i/1l9+SBH0Ab9RCN7uAGQDGZKhiVtCRAxQPKplxhAkD6m1CIgMMYQNszSwLU1AVAA8+9h0suHkBmFMstrQYCQPT4vU1/NgVAkl1pGal35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DOVEuwppAkBAwcWKGnwiQB75g4HnXuw/2UKQgxKWIUDzH9JvX8cIQO2ePCzUmiRA5nRZTGw+AUBxOPOrOcAZQPYLdsO2Rf4/CObo8Xu7H0ALe9rhr4kCQAqA8Qwa+gVASwSqfxDJ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J07udyhKD0CRLGACt64dQGzsEtVbA/M/k+NO6WD9/j95O8JpwQsJQCbHndLBmiNAFhiyutWzBEAfhetRuL4ZQIuJzce1IQNAbTmX4qqyF0CkGYums5P9P1OzB1qBYQVAnQ35Zwbx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"blFmg0wy9j/p1JXP8lwWQI4B2evdn/o/wOyePCxUEkDiWBe30cAJQHE9CtejECVA5e0IpwUvBkAoSddMvlkbQC9RvTWwVfo/QuxMofN6GUBJLv8h/XYBQNIdxM4UegJAsn+eBgyS4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9UpZhjiWCkDNr+YAwfwZQISCUrRyL+g/EEBqEyf39T9u+rMfKSIKQM+goX+CmyJA5ldzgGAOA0DSNZNvtlkbQKXap+MxQwNABwjm6PEbG0C9xi5RvbX8P1DHYwYqYwZA08H6P4d54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cr/Uz5tKA0A7GRwlr84gQLh4eM+B5cw/ajANw0fE+T+1/SsrTcoEQCZw626euiJA9fOmIhVGBkBwd9ZuuxAZQMAEbt3NkwJAvJaQD3pWG0AtQxzr4rb8P5rrNNJSuQZAezApPj4h5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cr/Uz5tKA0A7GRwlr84gQLh4eM+B5cw/ajANw0fE+T+1/SsrTcoEQCZw626euiJA9fOmIhVGBkBwd9ZuuxAZQMAEbt3NkwJAvJaQD3pWG0AtQxzr4rb8P5rrNNJSuQZAezApPj4h5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Sgfr/xwmCUC2EOSghEkjQJzCSgUV1eY/GedvQiECC0BBfcucLksMQKs+V1ux3yVA4Ep2bAQiBEBDOdGuQqobQNOkFHR7yQRAvfvjvWqlG0AFFytqMI0DQGyyRj1EowNAH4XrUbge4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bqMBvAUSC0BXPsvz4A4VQIpZL4Zyov0/cTjzqzkAEEBNZyeDoyQQQBTQRNjw9CVAVTAqqROQBkA3N6YnLDEbQLn8h/TblwdAhbacS3H1H0CZ8Ev9vCkAQBQF+kSe5AhAN8R4zau65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rtNIS+WtBkAjLZW3I/wbQPCFyVTBqPo/D9b/OcyXEkB6GcVyS+sQQMsQx7q4LSVAcxHfiVmvBUD1EI3uIJYaQFvOpbiqLAZAp1zhXS4SIECqK5/lefAAQJwWvOgrSAhABP9byY4N5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EwoRcAhVDEDesG1RZsMbQKXAApgycOY/Jsed0sHaEUCdLouJzccOQNDVVuwvmydAMEymCkZlBUCZ2HxcGyobQKipZWt9kQJAY3/ZPXlYHUDiBnx+GKH+P8iYu5aQjwdAOpShKqbS5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D39N1qiHCkAvNNdppCUaQHlA2ZQrPPI/TGw+rg0V+j8nZr0YyokFQErvG197tiNAVaTC2EKQAkCmD11Q35IYQIaPiCmRhABAWRe30QC+GUAlBoGVQ4sCQLpOIy2VtwNAdArys5Hr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nYU97fBXAUDikuNO6QAaQHrHKTqSS/I/A2A8g4Y+B0DqCUs8oOwLQF3cRgN4KyVAYkok0csoBEB7gy9MpgoXQJMdG4F43f8/SZ2AJsLGGkC3f2WlSSn/P5LLf0i//QVA3ncMj/2s5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MKAX7lwY5T+MEB5tHGEgQJpfzQGCuQZAZ7gBnx8GBkDQfqSIDKsGQLahYpy/2SJA9ihcj8K1AECTV+cYkL0aQONw5ldzgPo/n3HhQEiWFkCppE5AE2EBQJ6Y9WIoJwVAV3bB4Jo74T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kYE8u3zryT/vchHfiXkgQHDrbp7qkAlAkGYsms4OCEDwbfqzHykKQBxfe2ZJACNALEgzFk0nAkC3lzRG6wgZQEQ0uoPYGfg/umbyzTa3F0DtZHCUvDoCQC2VtyOc1gRAAfbRqSuf3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vtnmxvREEkCL/WX35GEaQEbu6eqOxe4/SOF6FK5H8T9sQ8U4f1MOQPkx5q4l5CRA0h3EzhQ6BkCR0JZzKa4aQI6vPbMkwP8/3o5wWvCiGEBF9dbAVskCQKtbPSe9bwNA0Vj7O9sj4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kSdJ10x+E0A10lJ5O+IfQCs1e6AVGAJA2J5ZEqAm9z84EJIFTOAOQAskKH6MOSVAF/GdmPXiBUDUmuYdp2gaQCKrWz0nvf8/idLe4AuTGUCvmXyzzY0DQAKCOXr8ngNA0NIVbCOe3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rTQpBd3e/z/xLhfxndgaQALU1LK1vvk/pdqn4zGDEkCkNnFyvwMNQLyWkA96diVAdHtJY7QOBEBUbw1sleAaQKBsyhXeZfU/GD4ipkSSF0BnmxvTE5b9P79IaMu51AdAI7w9CAH55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kSxgArdu9j9nJ4Oj5FUdQA2reCPzCAVA2xZlNsikAUB8J2a9GMoLQJAxdy0hfyVA9KYiFcYWAECGVbyReUQZQM78ag4QjABAXHLcKR2sHEBjf9k9eVgCQGwE4nX9AgNASmHe40wT4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZcdGIF6XBkBRoE/kSfIeQEPhs3VwMOQ/tOVciqtKCkBlcJS8OscKQDtwzojSPiRAqOMxA5Xx/j+xogbTMNwVQHP0+L1NPwFATnrf+NqTGUBQcLGiBhMAQPj8MEJ49AdATmIQWDm05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xFp8CoDxAUD4qpUJv3QbQPTDCOHRBhFAvw6cM6K0DEC14EVfQRoMQIiFWtO8AyVAr5l8s83NA0CWPnRBfesZQF2Kq8q+q/Y/5fIf0m8fGUDi6ZWyDPH/P7h1N091iAZAP1bw2xDj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9dvXgXNGBEB47j1cctwcQFtCPujZLO4/Yp8AipGl7T+XcymuKvsIQOZ5cHfWviNAYLAbti3KBkC3lzRG6wgdQGCTNeoh2gBAIsMq3sjcGkAtIR/0bNb9Px8uOe6UzgNAfA4sR8jA4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ldQJaCLsBEDdQexMoSMgQAwjvajdr9s/ybCKNzIPCkArhxbZzjcHQIhGdxA7EyNATP28qUgFBkC3f2WlSakZQLqgvmVOFwRAl/+QfvuaHkBcVfZdEbwBQIkpkUQvowdAr2Ab8WS35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vrd6TnqfBkB5QNmUK/wcQG8qUmFsofg/gq0SLA5n7T+LGkzD8NEHQKVOQBNhoyVAEHUfgNSm/z/xS/28qUgZQFvOpbiqLARA48eYu5YwHkC0HykiwyoBQO6UDtb/+QNA4Cwly0ko5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yR8MPPceCECGIAclzBQgQAexM4XO6/A/9iNFZFhF+z8gXtcv2I0HQAfOGVHaOyRArYbEPZa+/z9WDi2ynU8YQFWH3Aw3YANAGeJYF7dxHEBwsaIG07ABQPd14JwR5QRA12zlJf+T5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i4nNx7WhBUBseHqlLEMnQFSp2QOtQP0/QKTfvg6cJ0BXsmMjEC8OQLG/7J48zCVAgEi/fR04AUDaci7FVSUaQAiwyK8fYu8/HPD5YYRQFED52jNLAhQAQNTxmIHKuARAP/7Soj7J3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hc5r7BIVBUAX8Z2Y9RIjQIkK1c3FX+U/Zd8Vwf8WAEAmqrcGtsoIQKrx0k1i0CNAF9nO91MjBkATuHU3T7UZQIwtBDkoYQJARgiPNo64H0Dri4S2nMsAQBrdQexM4QJAX38SnzvB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rFYm/FL/CUCfk943vvYeQEFiu3uA7tA/Q+c1dokKFUC536Eo0GcMQJm7lpAPOiZAyatzDMheCEBJaMu5FDcdQJeo3hrYqghA7bsi+N8KGkDogvqWOR0AQHzVyoRf6gVAC0W6n1MQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GD4ipkTSCECyEYjX9WsZQM4AF2TL8s8/J07udyi6IUCyhSAHJQwJQO58PzVeOiZAnkFD/wQXCUC8lpAPejYcQPRPcLGixgdA0SLb+X6KGUA/V1uxv+z/PxYYsrrV8wZALjnulA5W4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WTSdnQxOBkBRFOgTeTIbQN4f71UrE9M/zzEge70bF0BLk1LQ7WULQHNoke183yZAste7P96rBUCneccpOtIaQIY97fDXJAJAGoums5MBFkAT1VsDWyX/PyDvVSsTPgZAVRUaiGWz4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BW7dzVNdB0B9Ik+SrukgQBVSflLt0wVAWWlSCro9+T+duvJZngcRQPMC7KNTdyNAAfbRqSufAUDcgM8PI4QaQHrf+NozywFA/+cwX16AH0B2bATidf0AQFTGv8+4sARAsW1RZoNM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qiuf5XlwB0CQ2sTJ/S4gQKpla32R0Pk/w0fElEjiHEA8oGzKFR4OQA8LtaZ5RyRAls/yPLi7AUC8BRIUP0YbQGt/Z3v0BuQ/URToE3myFUCNCwdCsgAAQEIJM23/CgRAfXkB9tEp4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RPrt68A59z+GWtO845QWQMMN+PwwQgVAuw9AahPnAkC28/3UeKkMQEYldQKaaCRA5NpQMc4fAEDbxMn9DgUaQJM16iEaXfA/H9eGinG+FEASg8DKoYUAQNo4Yi0+hQNAb37DRIMU3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NSTusfRhAUA1QdR9ALIgQD52FygpsOE/EMzR4/d2DkB/Tdaoh2gHQPLSTWIQeCVAMuauJeQDAkBy4UBIFpAVQIrlllZD4vY/MnIW9rRjFkDECOHRxpH9P06c3O9QlAdAeR7cnbVb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HF97ZkmACECfPCzUmgYiQJp9HqM88+w/Ft7lIr6T9z9T0O0ljRENQESLbOf7ySVAoP1IERkWB0DdzVMdcjMbQJ+OxwxUxgNAms5OBkeJHEAPKJtyhff+P5T7HYoCvQFA5nYv98lR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nuqQm+GGAkDaG3xhMvUbQHKKjuTyn+Q/ChFwCFVqA0AhH/RsVv0KQApoImx4miRAZ7gBnx/GBUDbUDHO3+QcQNieWRKgJv0/nYU97fBXGECTOgFNhI3+P51jQPZ6NwRAbVfog2Vs3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rhIsDme+BkDSOqqaIAoZQHVyhuKON+Q/XoB9dOpKCUBxAz4/jNALQIj029eBEyRAtf0rK02KAUBq3nGKjoQXQD7L8+DurABAJ9pVSPnJHUD5g4Hn3kMAQKTk1TkGZAZAHlIMkGiC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IXam0HkNBEDSqSuf5bkeQH9N1qiH6PI/QZqxaDq7+j9d4V0u4jsNQHZxGw3gjSRAjZyFPe1wBkAqOpLLf6gbQBkcJa/OMfU/uJIdG4F4GEAc8PlhhPD7PxJr8SkABgRAx2Xc1EBz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"whIPKJuSEUDJHww8974eQOAtkKD4MQRA2gOtwJDVAEAp7Q2+MBkOQHBfB84ZkSVAKzV7oBXYA0ApXI/C9SgcQBmQvd79cQBArP9zmC8PF0CgT+RJ0rX9P8kfDDz33gNASyL7IMuC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HooCfSJPE0AKou4DkLocQM3MzMzMTPY/mSoYldQJ9z8hzVg0nX0QQN/gC5OpYiVABK3AkNVtBECOdXEbDQAcQNvEyf0OBQRAKH6MuWupGEA0gLdAgmL/P83pspjY/AJAbJOKxtpf4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5BQdyeW/DUBlpUkp6MYgQI0o7Q2+sPc/MJ5BQ/+E+D9MT1jiAQUQQGiz6nO1tSRAz04GR8lrBkDAz7hwIOQbQKOSOgFNxARAnbryWZ4HGkD5FADjGTQAQKq3BrZK8ANAfsSvWMNF4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qB3+mqwRBUC2Z5YEqGkgQKJdhZSfVNg/8ddkjXoICkBBDkqYabsHQEI+6NmsOiVAfVwbKsb5A0Ab2CrB4nAaQMlZ2NMO//0/OZz51RzAHECKdhVSftL7P2aIY13cBgNAd0gxQKIJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hiAHJcxUEUAz/n3GhSMhQPt0PGagcg9AoBov3SRGAECskPKTap8MQABvgQTFDyVAAfbRqSufBEA0uoPYmSIaQJiG4SNiSvY/MUJ4tHGkG0CGPe3w12QCQL99HThnhAVAR3U6kPVU4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o68gzVh0B0CL/WX35IEaQOfG9IQl3g5AmZ6wxAPK9j9A9nr3x3sPQIQNT6+URSRAPnlYqDXNA0DuCKcFL5oYQDV7oBUYMvY/c7osJjafGUDACYUIOIQBQNS3zOmymAZAI9xkVBlG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qz5XW7H/AEBT6LzGLjEfQIE//Pz3YOc/Q3OdRlqqDUA9YYkHlI0OQBkEVg4tUiVAhXzQs1m1AUDo9pLGaL0XQGSSkbOwp/Q/DWyVYHG4GUAbEvdY+hAAQDC7Jw8L9QFAofZbO1GS4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CTiEKjW7AkBcd/NUh3weQGjQ0D/BBQdAgsr49xkX+T/2Yign2hUIQIC3QILiByRAfNXKhF8qBUA0uoPYmWIbQCVdM/lm2wFAXCBB8WOMGEBGsdzSasj8P5C93v3xngdAOnr83qY/4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NBE2PL1SCEBwtrkxPcEfQJVliGNdXPI/4/xNKESgEEAMzXUaaWkRQJ+rrdhf1iZA8ddkjXrIBUCXHHdKB6saQLRZ9bnaCv8/VWr2QCtwHEDrbp7qkJv9P4Emwoan1wNAn8coz7wc2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dc3km20uB0DulA7W//kcQDAqqRPQRPQ/jswjfzDw/z+qtwa2SjAMQAMJih9jDiVARN0HILVJA0DRV5BmLJoaQNDVVuwvO/8/opdRLLe0F0CrBIvDmd8AQBv1EI3uoAVAfJqTF5mA5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v/G1Z5bEBUDEzhQ6r5EeQI9uhEVFnN0/ZQETuHU3B0BkIxCv61cJQIv9ZffkgSRAODKP/MGAAkDSAN4CCcoXQLDJGvUQTQdAUBn/PuNCIEBDHOviNloAQJayDHGsiwZAk6ZB0TwA4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yAc9m1UfCUD4pX7eVNQhQCnPvBx23+o/EFg5tMh2AkDQDyOER9sOQPXb14FzZiVANh/XhopxBUBhGoaPiCkbQJeL+E7MOghAPUm6ZvLNHkBNofMau4QBQPhrskY9BAZAXKs97IWC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HM78ag4Q/T8QXVDfMicZQHU90XXhh+Q/Pzp15bP8BUBd/kP67esDQPYoXI/CFSVAN45Yi08BAECgMv59xmUbQAywj05d+fg/R3L5D+kXGEC8IvjfSvb+P5nTZTGxOQJAcHmsGRnk4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3IDPDyPEBkCPqiaIuj8iQCWyD7IsmNw/xawXQznR+j/n+6nx0k0MQJT2Bl+YzCRAN1SM8zfhBUCQTl35LG8aQH5XBP9bCQVAdnEbDeAtHUCXqN4a2Cr+P8dLN4lB4ANAeawZGeQuzD8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3o5wWvAiBUCQTl35LG8bQOVgNgGGZeM/e9rhr8ka/D8Tm49rQ4UIQE9AE2HDUyRAHv6arFFPA0DJk6RrJj8aQNRlMbH5uP8/WcAEbt2tGkAaNPRPcLH7P9iBc0aUNgRAtklFY+3v3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eTvCacHLBEBmZmZmZkYeQCoCnN7Fe+s/BhIUP8acE0CCkCxgAvcKQHXlszwPXiNAmpmZmZmZ/z/V7IFWYEgYQL3jFB3J5f8/YB+duvL5GEA82jhiLb7/Pw8LtaZ5xwRA6e+l8KBZ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vyb8Uj8vB0DI0ocuqO8fQA6+MJkqmO0/Onr83qY/AUBpOjsZHCUQQI9TdCSXHyVA0AoMWd3qAkAyVTAqqZMYQKDgYkUNpgBAuVM6WP+nGkDCTNu/slIBQJv+7EeKSAZAtCCU93E06D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CAPPvYdL/z+rBIvDmf8TQJF++zpwLiBAEqW9wRcWIEDHgOz17g8MQOY/pN++jiZAq5UJv9RP8j9bCHJQwgwVQL6HS447pfw/NQcI5uiRGUDlYaHWNO8BQCZw626e6gVA86/llett4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2XxcGyoGCUBv9Zz0vrENQDGx+bg2NBhAEk4LXvT1GUDL+PcZF04HQLFQa5p3/CRApics8YDyBEDDR8SUSEIcQBFTIolexv4/8tJNYhAYHUAPtAJDVncEQAaBlUOLbAdAaHizBu+r5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aNDQP8GFBkAvbqMBvMUoQAFNhA1Pr+A/M1AZ/z5jCUCz74rgfysOQN4CCYofoyRA8SkAxjMoBUCzQSYZOYsZQDdUjPM3If4/vTWwVYKlFUBegH106goBQD7L8+Du7ARAxy3m54am5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E0n0MoqlCUC8+OzKeKWiv8ucLouJzQFAMJ5BQ/8kH0CNRdPZyeALQG1Wfa62wiVA/FI/byoSA0DpDmJnCl0bQNttF5rrdAJAUwWjkjqhH0CgVPt0PGYBQF9GsdzSKgdAHXIz3IDP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OpLLf0h/BUAsfeiC+hb+P9+mP/uRohJA4iNiSiTRIEAQzNHj9zYNQKfoSC7/oSRAGOyGbYvyAkAvhnKiXaUZQHLEWnwKgAJA/TBCeLSRFkB90LNZ9bkBQHQprir7LgRABP9byY4N5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Nms+lztCUCMuWsJ+cAoQPFL/bypyP0/Xf5D+u3rBkBBt5c0RmsKQHZPHhZqjSVA7Eyh8xq7AkCQTl35LO8bQEiKyLCKN/o/JzEIrBz6HUDzAuyjU1f9P3DOiNLeIARAO44fKo2Y4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aMu5FFdVB0AX2c73U8MYQNEHy9jQTeg/9UpZhjgmNEBo6J/gYkUIQPAWSFD8eCRAtvP91HjpA0CUvDrHgCwaQBYwgVt3MwRA7DTSUnmbGEC/Q1GgT6QEQHOdRloqLwVAYOemzTiN4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4JwRpb0BAkAw8Nx7uGQgQJcaoZ+pV+s/jPhOzHox8j+ns5PBUbIHQLu4jQbwViRAEqCmlq31AEBlwi/18wYZQDMzMzMzs/0/j1N0JJcfHEATuHU3T3X6PxQF+kSeJAVAPnjt0oZD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Atnr3R9vBUBXCRaHM38bQNBFQ8ajVNk/RpkNMslI+z9K0jWTb/YJQKcFL/oKwiNAyHvVyoTfBUAEIVnABM4bQNJSeTvCaf8/FO0qpPyEGEB3LSEf9Oz9P3B87ZklAQhAi+B/K9mx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cy7FVWUfAkBbzqW4qgwWQN4CCYof4wlA81SH3Aw3BkBTy9b6IiEHQK+UZYhjrSNADhXj/E3oA0D+DkWBPrEaQMR3YtaLofQ/PSe9b3yNGEDpmsk329wAQFNcVfZd0QJAMT83NGWn4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aoe/JmtUEkCfsMQDyuYjQN+JWS+G8vo/GvonuFiRFkDTwfo/h/kPQEVHcvkPiSVA4xk09E/wAUAHsTOFzqsYQCL99nXgHANArfpcbcU+GkB06spneZ78P3/eVKTCmARA2cwhqYUS4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YviImBKJAECwcmiR7bwYQINMMnIWdvs/JEVkWMWb+z+t+lxtxX4GQFuU2SCTrCNAEDtT6LxGAUCygAncujsbQARz9Pi9zfw/NV66SQxiGkCNl24Sg4ACQLGKNzKPPAZANQhzu5d75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ik+Srpm8CECcbW5MT0giQLqilBCsqtU/kIgpkUT/IkCGAyFZwAQIQJXUCWgivCNAMlUwKqlTA0DDtkWZDfIYQKa4quy7IgJANC4cCMkCGkDVITfDDXj/P5hMFYxKqgJA7pOjAFEw4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bCbfbHMjAUAKSzygbGoiQLFvJxHhX9k/XBsqxvmbIECBeF2/YLcJQJvmHafoSCRALnO6LCa2A0CCHJQw0/YYQFInoImwIQJAw9MrZRliGUBi1ouhnCgBQDihEAGHUAJA3SVxVkRN3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fPKwUGsa/T8uHAjJAsYWQJnYfFwbKgRAo3VUNUFUAEBOnNzvUJQKQOXyH9JvvyRAuOnPfqTIBkD52jNLAvQbQDBHj9/btABATDeJQWBFGEDjqrLvimD/P/2H9NvXgQdA4A7UKY9u4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vk1/9iMFBUAW+8vuycMkQPM8uDtrdwVAkdWtnpN+EUCkqgmi7iMQQMZtNIC3gCZA/U0oRMDhBkB6pSxDHMscQGsr9pfdE/g/jliLTwFQGUAaFw6EZIEEQOHurN12oQZAg1K0ci8w6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pwUv+gqSFED7IqEt55ISQB3mywuwTwtAFHmSdM3EEUB5AfbRqasQQHPXEvJBDyZAIzKs4o2MBkCD+pY5XdYZQDbNO07REQBAUKp9Oh4zGECInSl0XmP+P2vxKQDGcwVAks1V8xyR2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QiYZOQubFEBo6J/gYsUNQGDNAYI5Gh5AuycPC7VmEEAmqrcGtgoLQKFns+pz9SRAmfViKCeaA0Df4AuTqUIbQDylg/V/Dvw/nuqQm+GmGUAxsfm4NlT9P4TTghd9hQVARIoBEk0g4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aNDQP8HF9T8cCMkCJtAjQOcYkL3eDSNAyeU/pN++GUDBVgkWh/MOQKMjufyHVCZACwxZ3ep5AUC14EVfQToXQLsKKT+p9vM/kBSRYRVvFkBfKcsQx7r/P/rt68A5IwZA6znpfePr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/MbXnlnSAkB3Sgfr/xwCQGCUoL/QI+E/gNQmTu43EkBbXyS05dwNQEvl7QinpSNAUg/R6A4iAkCZZOQs7IkaQMnlP6TfvvM/rkfhehRuF0CXcymuKrsBQBUdyeU/ZAVAH/et1olL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UvLqHAOyA0B4YtaLoRwDQF5MM93rpOI/vD/eq1bmD0BYrUz4pb4NQA5nfjUHiCNAdavnpPeNAUCSs7CnHX4aQMLdWbvtQvQ/CcTr+gU7F0AfaAWGrK4BQGRYxRuZhwVAI/PIHww85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IHu9++O9BEDrkJvhBtwSQEJD/wQXaxNAgSbChqcnIkD3OxQF+gQKQG8Sg8DKwSVADTfg88OIAkAxmSoYlTQZQKjjMQOVcQJA5iK+E7N+HEBA+5EiMiwCQDliLT4FgAZA3LxxUph35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jSjtDb5wAEAFo5I6Aa0XQD0K16NwPQNAzemymNj8IEDRBfUtczoKQIMvTKYK5iRA097gC5MpBkBHIF7XL1gZQGcKndfYpQFAkElGzsL+GkDesG1RZsMBQAzlRLsKaQdA5bSn5JxY5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P+PCgZAsBkAAV7JjI8AgQO3ShsPSQOI/LWACt+4GEEAR/G8lO3YLQGRd3EYDuCVA0ETY8PSKAUDx12SNesgbQKoOuRluwP8/zywJUFOrG0B6pSxDHGv+P+1HisiwigNAyAp+G2I84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tu53KAp0C0CFmbZ/ZVUgQI6vPbMkwPk/PPceLjnu9D/U1LK1vkgNQNPe4AuTCSZAdk8eFmoNCkBCJhk5C9sdQDGx+bg21P4/ud+hKNDHGEBMiSR6GcX7P8mwijcyzwVAFHe8yW/R3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JTs2AvH6AEBw626e6uAjQBr6J7hYUeQ/z6Chf4LrFkCsVib8Uv8OQFHaG3xhkiVAqvHSTWKQBEDOjekJS9wcQMDnhxHCI/c/81SH3Ax3G0CvmXyzzQ39P/eSxmgdlQVANLxZg/fV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5bM8D+7OB0DpK0gzFu0WQGXHRiBe1/8/yuAoeXWOAUAjSnuDLwwJQOJYF7fRgCVAwD46deXzBUA6kst/SF8ZQKpla32REARAc9cS8kHPGUCOI9biU0ABQAnE6/oFuwZAJEVkWMWb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z6Chf4ILDkDl8h/Sbx8kQChEwCFUqf0/gjl6/N7mFEAt7GmHvyYOQKJFtvP9FCRAjiPW4lNABUCcUIiAQ8gcQC/dJAaBlfU/NGjon+DCGkCZR/5g4LkAQFN5O8JpAQZAUkfH1cgu5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hCo1e6AVAUBgsBu2LQoZQHsy/+ibtOo/CCC1iZM7B0DFyf0ORcENQJf/kH77OiVAGyrG+ZvQBUB+HThnRGkVQCS5/If0GwFAvsEXJlNlG0DrHAOy17v/P4m1+BQAowRAEqCmlq313D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BWnGouksCkATuHU3TxUXQEax3NJqyPc/ZOlDF9T3DkDeq1Ym/NIMQGuad5yigyVAJ07udygKBUAOLbKd7wcXQM9m1edqK/0/vtnmxvTEGUCa6zTSUnkAQEurIXGPZQRAO3MPCd/73j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vD/eq1amDEBaEqCmlq0XQGU2yCQjZ/Q/ogvqW+YUEUD430p2bMQIQMKGp1fKciVA9fOmIhVGA0AC2evdHw8YQLbbLjTXafs//OO9amViGkCw5gDBHL0AQGWNeohG9wVAGt8Xl6o04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9gt2w7ZF/T/ZWl8ktGUhQFLUmXtI+O0/0VynkZYaIUAV4/xNKAQOQM8UOq+xiyNAG0esxadAAkA/qfbpeCwZQJ7vp8ZLNwFAlKRrJt/MGEASoKaWrXX9P/CK4H8rWQVABkoKLICp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dLUV+8suDkCFQgQcQvUaQAwCK4cW2QVA2iCTjJwFGkCw/s9hvrwLQKAaL90k5iRACFVq9kBrAUBYObTIdl4bQDOny2Ji8/Q/LH3ogvo2GEDNWDSdnQz8P7JoOjsZXANAlpS7z/FR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YTJVMCopBkAMAiuHFnkbQJKzsKcdfvg/6j4AqU28GUAyIHu9++MLQHsUrkfhWiVAA2A8g4Z+AECmuKrsu8IaQAskKH6MOfQ/b9i2KLOBGUB9s82N6Yn8PwKfH0YIDwRAkuumlNdK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jSjtDb6w/D/Z690f79UdQIeKcf4mVAlAwFsgQfHDF0BA3qtWJvwKQLpJDAIr5yRAVoLF4cwvA0CgibDh6dUZQCfaVUj5SfI/2sngKHl1GUBTrvAuF/H9PwclzLT9KwRA1y/YDdsW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/kP67etAAEAYCW05lwIUQNDx0eKM4e8/NSTusfRhGEDL1voioW0KQKmkTkATgSRAtHbbheY6BEAa3UHsTKEbQK1u9Zz0vvk/IF7XL9hNFUDeq1Ym/NL+PzOK5ZZWwwVA/5Hp0On54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+3lTkQrjAkDs3R/vVWsXQJ8CYDyDhvI/0gDeAgnqHUDh0cYRazEJQEtZhjjWZSRAjpJX5xhQBEBslWBxOJMZQJOMnIU97fk/3Xu45LjTFUDReY1donr9Pw4V4/xNaAVAQzwSL09n4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dTxmoDJ++z+2LcpskAkhQIQNT6+UJQZA8+fbgqU67D89uDtrt50MQBKDwMqhpSRAeQH20anrAkCYF2AfndobQI9wWvCi7wRATn/2I0VEIEA+rg0V4/wAQAXdXtIYrQlA3ZiesMQD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zQaZZOQs+T+MuWsJ+TAhQH3ogvqWOfw/+3Q8ZqAy+D/KGvUQje4OQAisHFpkmyRAu37Bbtg2AUDlYaHWNG8cQLth26LMxgNAou4DkNpEIUAZkL3e/TEBQNszSwLUVAtAl8rbEU4L5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bi/6CtKMC0Bt5/up8dIgQF7XL9gN2/M/hzO/mgNkEUDaVUj5SXUMQHuDL0ymiiRA8Uv9vKlI/z9a2NMOf00cQIy5awn5oPg/j41AvK7fFUA1e6AVGPIDQN5xio7kMgJApIriVdY23j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jh5QNuWK+z9ehZSfVHsXQE1KQbeXNPw/9ihcj8JVF0AVUn5S7RMOQHsUrkfh2iZAXrpJDAIr/z+0PA/uzhoVQDY8vVKWYQZAeQH20alLHUCzB1qBISsBQHYyOEpeXQVAPx2PGaiM5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vft0PGYAEEAFi8OZX00WQLyzdtuFZvs/orQ3+MIELEDrqGqCqPsRQO58PzVe2iZAOq+xS1Rv/z84Sl6dYyAZQKd5xyk6Evk/5L1qZcLPGUBlU67wLpf/PwvSjEXTmQVAHec24V6Z5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O3DOiNJe9T8SwqONI1YcQMB4Bg39EwdARQ2mYfgIAkC3KLNBJtkOQCSX/5B+WyZAmGn7V1YaAkBZTGw+rm0XQJLoZRTLLfQ/KqkT0ERYFUAAb4EExc8CQOCEQgQcQgNAEYqtoGmJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v/G1Z5bEAUAr+64I/hccQLH5uDZUDPs/LGUZ4ljXB0DkFB3J5b8NQAMJih9jTiZANnaJ6q2B/T+MFTWYhiEZQD8djxmoDP8/Xtcv2A07F0C6FFeVfRcDQC1gArfuJgNAzNB4Iohz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hZm2f2WlB0Dq501FKuwfQB8uOe6UDuk/yF7v/ngv/D88MevFUI4MQLdif9k92SRAkx0bgXjdAUA+6Nms+lwaQBwlr84x4ARAHlA25QqPHEC5pdWQuEcBQCmWW1oNiQVA2xg74SU45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Sqk/KQaBUDWVuwvu4cfQLXBiejX1t8/E9VbA1sl+D9KRs7CnvYFQOutga0SbCNALT4FwHiGBED2fw7z5QUaQLKFIAclDAJAldQJaCJsG0CTOgFNhE0CQGzPLAlQkwRAL6UuGcfI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tzv8NVmjBEAlXTP5ZpsTQA9eu7ThsOU/5e0IpwUvFEC1/SsrTYoKQDarPldb8SRABMqmXOHdAkDT9q+sNGkZQO1kcJS8uv4/qoJRSZ0gGUD6m1CIgMP9P3npJjEI7AVA1Cr6QzNP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PQrXo3A9EEA/UkSGVXwaQHlA2ZQrvAdAJemayTebBkAw8Nx7uCQKQOSDns2qvyJA7+apDrlZA0DmeXB31m4ZQF1txf6y+/4/+PwwQnjUGkD7OnDOiFL/P4hjXdxGAwZADw2LUdfa4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vLN224VmB0B7gy9MpooeQCxkrgyqDec/rrZif9m9AUAvwD46dSUOQHWTGARWLiZAnMQgsHLoA0BaDYl7LH0YQFch5SfVPgFAb0c4LXjRGkBVMCqpExAAQOc1donqrQJAeeV620yF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ubG9ITlBUBtc2N6wrIQQA4sR8hAnuo/QPZ698dbHkCkpfJ2hBMHQMR8eQH24SNAuECC4sfYBkBkIxCv65caQPgZFw6EZPs/fA+XHHfKGED7XG3F/jIDQDz3Hi45rgZAC7Q7pBgg5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jZduEoMAA0CW58HdWUsgQC6NX3glydc/yXGndLA+DkBpVyHlJ5UGQG3i5H6H0iNAZB75g4HnAkBwsaIG07AbQPtXVpqUQgFAbVZ9rrbiGEB65A8GnrsDQBZqTfOOUwdARrHc0mrI5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F4IclDBTCED5MeauJaQeQBkcJa/OMdA/NsgkI2ehA0DImLuWkE8IQMcRa/EpICNACf63kh0bBUC/t+nPfqQbQEbT2cng6AdAuiwmNh/3G0DJHww8994CQNlfdk8e1gZA2xg74SU44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oaF/gouVA0Dt8NdkjcogQDV/TGvT2N8/QwOxbOYQ7j9ClZo90EoHQMcpOpLLHyRAhbGFIAelB0AsSDMWTecbQL7BFyZTRQJAGRwlr85xHkAqV3iXizgCQAexM4XOawdACHWRQln45z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+ie4WFGDB0BLqyFxj2UeQKeyKOyi6NE/AWn/A6xV6j+UpGsm3ywHQBBYObTIFiRAvfvjvWolCEBDkIMSZpobQGCTNeoh2gJAjBU1mIaBHUCWJqWg2wsCQGRYxRuZBwlAgc6kTdW96D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ww34/DCCCEDUK2UZ4igiQDLjbaXX5uk/GOyGbYuy9D9ljXqIRrcJQHZPHhZqjSRAmfViKCfaA0Bw626e6nAdQEgWMIFbtwNAaK7TSEuFHUBgyOpWz8kAQACpTZzcrwZAgA7z5QXY5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yqZc4V0u/T9d+SzPg1sYQCYeUDblCvQ//+cwX17AHkDo9pLGaN0IQK7YX3ZPHiVAghyUMNN2AUD3deCcEUUZQE4LXvQVpP0/NIC3QIICGEBWZd8VwT8AQBWpMLYQ5ANAhpM0f0xr1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z+22C801AkABwRw9fs8eQDI9YYkHlPQ/idLe4AuzJUCIhVrTvOMHQGwJ+aBnkyVApwUv+gqSAUDajxSRYVUZQGXCL/Xzpv0/S3ZsBOJVF0DHLlG9NfAAQFrY0w5/zQJAjbPpCOBm0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oS3nUlyVAUDmP6Tfvm4eQOHurN12ofE/PIOG/gm+IUAZ4lgXt5EIQHKKjuTy3yVAEF1Q3zJnAkA/dEF9y5wZQLNBJhk5i/4/9Bq7RPVWFkBsQ8U4fxMCQIBlpUkpaAVAE38UdeYe0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bsDnhxECCED67evAOcMcQAXFjzF3rfA/XI/C9ShMIkDhKHl1joEKQKkT0ETYkCZAY3rCEg/oA0DBc+/hkqMZQL+CNGPR9P8/QUgWMIF7GEDiAWVTrjACQMVVZd8VwQRAT1sjgnFw0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BBxClZr9AUDFVWXfFQEYQLKhm/2BcuE/UPwYc9eyGEDOcAM+P4wJQBIUP8bc1SRAKnReY5co/D+KsOHplRIYQMVyS6shMQZAhzO/mgOkHUB6cHfWbrsCQFH3AUht4gNAMPXzpiIV2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7BLVWwObCEANiXssfagZQKJ6a2CrBP8/TMPwETGFEEA+lj50Qf0KQJjdk4eFOiZAX+/+eK8aAEC1/SsrTeobQNCbilQY2wFAejarPlc7G0AxJZLoZdQAQMTr+gW7YQRA0LcFS3WB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gsr49xlXB0Dd71AU6HMhQO1kcJS8miFAHOviNhrAB0CdgCbChicRQNO84xQdCSZAEOm3rwNnCEBx5ldzgKAYQG5uTE9Y4vQ/QZqxaDqbF0DY0w5/TVb+P04LXvQV5ANAS1gbYye83j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VG8NbJXAEEChEAGHUOUTQBb2tMNfE/M/X0ax3NLqCkA4hCo1e6AGQCZTBaOSGiRAoblOIy0VBUB5Xb9gN4wfQO84RUdy+fg/96+sNCklF0AkfzDw3HsBQNQrZRniWAdAp3aGqS315D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pKXydoRTAECFX+rnTcX5P8RafAqAkRFA2NMOf03mIED7ljldFhMKQKCJsOHplSRA8DMuHAhJBUCxijcyj5wfQB1yM9yAz/E/QfFjzF3rFUD6RJ4kXXMAQH+kiAyrOAhAPGnhsgob4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M+GX+nkTBUCthsQ9ln4hQKZiY15HnOA/at5xio5k+T9yxFp8CoAIQNO84xQdySRAAFKbOLlf+j8VUn5S7fMXQOc6jbRUngZA5gXYR6cOH0BGtvP91LgAQPIHA8+9RwVAVtKKbyj84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xJlfzQHCDUAKEXAIVeoWQHNjesISj/8/rrZif9k9D0Bb07zjFB0LQK36XG3FHiRAFJZ4QNmUBUB4YtaLoTwZQDvCacGLvvk/Vg4tsp3PF0DvA5DaxMkBQHZsBOJ1vQRAFeRnI9fN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cks8oGxKCUCP5PIf0k8oQOilYmNeR+M/O3DOiNLeEkBBZfz7jAsLQFioNc07ziZAgc8PI4RHBEAm/FI/bwocQIhjXdxGAwFAl8rbEU6LG0ASa/EpAIYBQETdByC1yQdAsMka9RCN5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"58b0hCUeEEDYtiizQQYUQN3qOel9Y/I/V5V9VwS/CECSs7CnHT4PQIdtizIbtCNAyk+qfTqeDEBwCFVq9mAfQHdKB+v/nAJAZcdGIF43HUDja88sCRABQKJ6a2CrBAVAE0VI3c6+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4C2QoPjxDECsqME0DF8UQNZz0vvGV+4/lnhA2ZTrCEB3vp8aL10OQKjGSzeJASRAw552+GuyDUDxLhfxnbgfQLjM6bKYmAJAEAaeew+3HECL4H8r2TEBQKjGSzeJQQVAEeM1r+qs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZTbIJCOnBkDtnjws1DoVQG743XTLDuo/XkvIBz37FEBHPUSjO8gIQCbkg57NaiRApics8YCyCEAJ/reSHdseQHHmV3OAoANAgq0SLA7nHkAW+8vuyYMBQHgLJCh+zAhAFqdaC7PQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y4Rf6ucNCEACvAUSFF8oQMucLouJzfk/9tGpK59lGUCwj05d+ewIQDhnRGlvcCRAxFp8CoAxAED2tMNfkzUWQCKOdXEbTQFAO6qaIOr+GkC2vkhoyzkCQBCv6xfsRgRAZkmAmlo25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"34lZL4Zy/z/MC7CPTp0SQO/+eK9aGfA/M/lmmxvT/T82k2+2ufEIQERpb/CFSSRA0PI8uDvr/z8fv7fpz34aQN21hHzQM/4/ZRniWBe3GUAkC5jArTv/PwouVtRgmgNAjUKSWb1D4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BaOSOgGNBkAxmSoYlfQlQDNt/8pKEwJAroGtEiwuFkD/snvysJAIQDS/mgME4yJAR3cQO1OoBUCu00hL5e0ZQDhnRGlv8Pc/Tdu/stJEGUCVSKKXUewAQL7BFyZThQZAgEQTKGKR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TIkkehnFCUA9LNSa5j0nQAywj05duQFAMuauJeSDHECGAyFZwIQEQOvFUE60myNAXMmOjUC8/z92GmmpvL0aQBVSflLtU/k/IEYIjzZuGUDbiv1l9yQBQOFiRQ2m4QRA5Nu7Bn3p4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2nIuxVVlAUD/5zBfXoAjQHy45LhTOvE/CFqBIasbIkA1Y9F0dvIIQOQUHcnl3yRA/Yf029cB/z+e0sH6P6cYQOG04EVfQfs/l+Kqsu+KG0ALYwtBDsr8P6ipZWt9kQNAjsu4qYHm4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lZ9U+3Q8AkDgSnZsBMIYQBKlvcEXpvI/JCh+jLmLKEDhRV9BmjEJQGB2Tx4WiiRA/n3GhQOh/j8YsrrVc7IZQA2reCPzSPc/coqO5PK/G0B3Z+22C80AQKVrJt9s8wNAo+VAD7Vt4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8wLso1OXAkA9J71vfG0NQOSCM/j7ReM/kpGzsKdtIkAXK2owDUMLQIiFWtO8QyVA/8pKk1JQAUDsTKHzGjsXQFcJFoczvwJAhV/q500lHEDoE3mSdE3+P50ui4nNhwVAB9Fa0eY44D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fGEyVTCq+D8yVTAqqWMiQHjRV5BmbA9ARiV1ApqI+T+77UJznYYJQJ5eKcsQByVA2J5ZEqDmAUC+pDFaR1UZQJEPejarPv0/xyk6ksvfGEAvo1huabX/P5MdG4F43QJAl5F6T+U05D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9P3UeOlmBUDgvg6cMwIWQP9eCg+a3eM/Bkzg1t0cF0AXSFD8GDMMQFInoImwASVAnOEGfH7YAEB6Nqs+VxsWQO3YCMTrevo/XqJ6a2BrF0DdDDfg8wMCQHNjesISTwdAYeKPos5c4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gJ9x4UDIBEBWfa62Yp8XQO22C811mvo/jSjtDb5AI0CutmJ/2Z0QQBb7y+7JIyVAURToE3kSAEA3ww34/HAVQCnLEMe6OPs/h78ma9QjGEDSxhFr8ekBQE7RkVz+AwdAlu1D3nL13z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WYtPATCeAkCDTDJyFnYZQKc/+5EisgFAacai6ezk/j9+HThnRKkMQNv5fmq8NCVAP1dbsb9sAkCFJR5QNiUbQDo7GRwlL/k/OX8TChGwGUDf/fFetTL+PxNhw9Mr5QNA0EICRpe34T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BDkoYaZtD0BgWWlSCnohQLyzdtuF5vk/+yKhLedSDUAEOShhpu0MQAtGJXUCOiVAN4lBYOUQBkDVBFH3AcgYQLddaK7TyPw/E5uPa0OlF0AjEK/rF+z/P1DCTNu/cgNAB7e1hecl4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q+c1dokqAUCL/WX35AEkQNtQMc7fhPg/wOyePCz0GkBdv2A3bLsSQCBB8WPMHSdA6UMX1LdMBkB7a2CrBIsaQGH9n8N8efQ/yHvVyoTfF0B6pSxDHCsAQNf6IqEtpwNAj3Ba8KKv4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N6YnLPEABEB4uYjvxCwXQBZQqKePQO0/LVvri4S2/D91PGagMj4JQHxhMlUwGiJA46WbxCCwAkBuizIbZJIaQCbfbHNj+vc/wqONI9aiGUCADvPlBZgCQDemJyzxAAtAWFUvv9Nk5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2Ls/3quWAkAyWkdVE8QcQDs5Q3HHm+w/WFaalIJuDEDecYqO5DIKQEdy+Q/pVyZAI9v5fmq8/z+qDrkZboAWQMI0DB8RUwFAUu3T8ZhhF0AIjzaOWAsDQDMWTWcnwwRAx4SYS6o25j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GedvQiHCBkAVOq+xS1QMQChJ10y+2f0/o+nsZHDUFUAZOQt72iERQHGsi9to4CRADeAtkKD4+T9mg0wycrYXQLVsrS8SWvM/rS8S2nKOGUA5nPnVHKAAQA4V4/xNaARAb7w7MlYb4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bLJGPURjCEAR5KCEmRYSQNQrZRniWP0/MxZNZydjFkDiAWVTrhASQCxlGeJY1yRAMsnIWdgTAEB9PzVeuqkbQHh6pSxDnPg/fzDw3HvYGUDC3Vm77cIAQOgwX16AfQNAcv27PnPW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iIBDqFIzCEA2zTtO0TEWQLb4FADjGfw/Nh/XhoqxDUCHvyZr1EMIQMIXJlMFwyVA3/jaM0tCDEBTliGOdREdQG+70FynkfY/3eo56X0jGECr7Lsi+F8CQCYBamrZmgdAbeNPVDYs5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S3ZsBOL1DEDEmV/NAdIgQP/PYb68AABAZqAy/n3GAUCH4SNiSmQOQJp3nKIjySNAkrOwpx3+AEB7SWO0jooZQKTH7236s/s/OxkcJa8uF0C/8bVnloQBQPlmmxvTEwVA8+UF2Ecn5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S+XtCKdFBkDyDBr6J3geQKGFBIwub+E/MNgN2xblFkDB4nDmV7MKQAWjkjoBLSdAkQpjC0FOAkByv0NRoM8XQMh71cqEnwRAcRsN4C0QH0C5cCAkC1gCQDJaR1UThAdARDUlWYej5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c4V3uYivC0BJopdRLAcgQNxLGqN1VPM/kzoBTYQN9z+zzY3pCcsMQKUsQxzroiRAgnNGlPaGB0Be1y/YDVsaQO3T8ZiBygVAF5rrNNJyG0AsDmd+NYf/PzLJyFnYEwVAIY/gRsqW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5gXYR6fuCUDWbrvQXGcaQH2W58HdWfE/Brth26LMEEBXz0nvG98JQD81XrpJDCVA7rH0oQvq/z/nHafoSA4ZQFkXt9EAXvU/dY4B2eu9GkCDo+TVOYb+P2Q730+N1wRAjE0rhUAu4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/kRlw5rKzD/NHmgFhmwTQG3F/rJ7sgBAM1AZ/z6jCUBWt3pOel8FQLUV+8vuCSRAww34/DACAEAIrBxaZFsXQMO7XMR3ogBAKNU+HY/ZF0DUQzS6g5gBQMGLvoI0YwJAZr6DnziA3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sf1kjA8z5L9/wW7YtsgRQB+duvJZXgdAARjPoKG/GEAbL90kBoEIQNejcD0K9yRAT5KumXwz/z+Jeyx96EIXQKRwPQrXo/s/ba0vEtryFkCvsUtUbw0DQHS1FfvLLgVAN8R4zau64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hPI+jubI1L9SJ6CJsGEKQHh6pSxDHApAPUm6ZvItFkAW9rTDXxMFQHTS+8bX3iNAC0YldQIa/j8k0csolnsYQLK61XPSe/s/zqW4quwbF0BBZfz7jAsCQATidf2C3QRALV+X4T/d4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ug/R6A4CF0C86CtIM3YhQCtqMA3DBwZA4xk09E9w+z/APjp15fMFQHr83qY/GyNAxF+TNerhAEDesG1RZmMYQNMwfERMCfM/niRdM/nmFUCy9KEL6tsCQEa28/3UOAdAHcnlP6Tf5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1bK1vkioAkBHA3gLJCgSQOxRuB6FqxBAJhk5C3vaBkALXvQVpBkHQAPso1NXbiJAHv6arFFPA0C8P96rVuYYQKzijcwjf/Y/7iWN0TpKGECj6exkcBT/P6d5xyk6UgZAGqTgKeTK5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pvJ2hNOCBUA+7fDXZA0jQN49QPflTOE/L1G9NbAVCkAwZHWr5+QLQNGRXP5D2iZAbef7qfFS9j/K/Q5FgV4VQBNE3Qcgtfg/Bi/6CtLsFkA2k2+2ufEDQBy2LcpsEAVALNSa5h0n4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F+3YpZkwYr+693DJcYcWQBeCHJQwcxVAwkzbv7JSA0A57pQO1r8FQCpvRzgtOCNA9iNFZFhF+D9E3QcgtSkYQCjyJOmaSfI/PE7RkVx+GECcxCCwcugAQL1SliGOdQVAzNO5opQQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5bM8D+5OBkAW3uUivnMXQA8om3KF9/s/6znpfePLGkBlcJS8OkcSQHh6pSxDvCZAjdE6qpqgAkDXL9gN21YZQMqJdhVSfvM/+BkXDoQEF0BTBaOSOkEDQJq2f2WlCQpA9s5oq5LI5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LzTXaaSlCkCMZ9DQPyEeQDUpBd1e0uo/Q5CDEmbaBUAz4Zf6eZMFQKqCUUmdgCRAjZduEoMACUCJB5RNueIbQI/C9ShcjwJA+tAF9S0THUDOx7WhYhz9P4WxhSAH5QNAM4gP7Pgv4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2Eenrnx2EUD9ag4QzFEbQL06x4Ds9RxATfilft6UCUCrIXGPpc8NQBb7y+7JgyVAf4eiQJ9IAEDQ7SWN0ToWQIFDqFKzh/Y/pyIVxhYCGkDoMF9egD0BQFGDaRg+ogZA5qxPOSYL6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1qiHaHRHD0CtF0M50S4WQIqw4emVkhRA8gcDz71HCUD2I0VkWIUNQK5H4XoUDiZA/mX35GEh/z/U8ZiByvgWQHTqymd5nvE/MsnIWdhTGkDkTulg/V8BQNdMvtnmBgZAkXu6umMx6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"amrZWl+k6j8fnbryWb4XQNBDbRtGwe0/NXugFRhyDEA57pQO1j8GQEQ0uoPYuSJAS+XtCKcFA0Bvu9Bcp9EZQKBU+3Q85vE/+Db92Y/UFEBblNkgkwwBQGr2QCswJAhANA9gkV8/3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xAjh0cZxFEAfotEdxC4ZQBAjhEcbhxFA26fjMQMVDkDF/rJ78lATQC7/If32FShAM/59xoWDBEDEsS5uoyEXQMUDyqZc4QVAFR3J5T8kHECdnQyOktcCQIxK6gQ0UQVAJt9sc2N65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AWpq2VovI0CKsOHplYIgQJrrNNJSGRpAGVbxRubRHUDFyf0ORcEPQAfOGVHauyVAox6i0R3E/z9xVdl3RXAbQHDOiNLeoABAvVKWIY51G0CP39v0Zz8BQMuEX+rnjQVAqgt4mWEj4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PX5v058dFkC4AZ8fRsgcQDMzMzMzEyVA96+sNCmF9j+dgCbChqcNQBWMSuoE9CVAiqvKvitCA0BpVyHlJ1UWQMtKk1LQ7f0/PL1SliHOGUBTeTvCaUH+P47MI38wsARAEJNwIY9g5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6ZrJN9vcE0Boke18P/UlQMvbEU4LXgxAQs9m1edKL0DXaaSl8jYGQGEaho+I6SNAzGJi83GtBUD6YYTwaAMZQMqmXOFdLvs/3Xu45LgTG0DKMsSxLi4DQOjB3Vm7rQVAABx79lym3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WJBmLJrOFkBRa5p3nKIfQDm536EoEApAvvbMkgBVF0BJgJpatlYGQBPyQc9mdSRAU7MHWoEhBkABpDZxcl8YQEGfyJOk6/s/DXGsi9sIG0AIjzaOWIsCQPvL7snDggNAr8xbdR2q4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NKK0N/jCC0DePNUhNwMXQIHs9e6P9/4/XOZ0WUwsAEAKgPEMGvoMQIts5/upkSVAqwmi7gMQ/j/GUE60q5AZQHkj88gfDABA/IwLB0KyF0BiSiTRyyj+Pwa7YduizAZAcclxp3Qw5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F5rrNNKSBUDjGTT0T8AiQPFiYYicvuc/M23/ykozGkAa3UHsTCEJQPRsVn2u1iRAyR8MPPfeBUAOSphp+7cYQHFyv0NRIPs/E5uPa0OFGkAY7IZtizIBQPFL/bypCARA/S5szVZe4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b9Of/UhRBEBaZDvfT60pQFQbnIh+7eU/PujZrPocJEBa9bnaiv0HQHPXEvJBzyJA7iWN0TpqCEDUYBqGjwgYQHehuU4jLf4/zhlR2hu8F0A7wmnBiz4AQFbxRuaRfwZA3q8CfLd54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xF+TNeohA0BWvJF55I8AQP28qUiFsfE/nu+nxkt3EkDZWl8ktOUPQD81XrpJLCZAhlrTvOMU/T+ojH+fcUEZQJVIopdRrPg/E36pnzd1GkBNvtnmxvQAQKg65Ga4AQRA6+QMxR1v4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"miUBampZE0D2fw7z5YUXQLU3+MJkyh5AIsMq3si8IkCyLm6jAfwNQDY8vVKWgSVA+tUcIJijAECasWg6OxkWQE91yM1wA/w/e2tgqwQLGEDo3sMlx50AQMmTpGsmHwRA91eP+1br5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fm/Tn/0IF0A012mkpbIPQNpyLsVVZQ1A2PULdsNmIUBHrMWnAJgLQC/dJAaB1SRAvodLjjslAkCJXkax3FIcQAWGrG713AFAMEymCkZlHEBYrUz4pX4AQE9AE2HDUwZAiPTb14Fz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D7QCQ1aXIEC6SQwCK2cUQISezarPZSNA7l9ZaVJqFUBy/iYUIiANQD0s1JrmnSRAOxkcJa9OBUD5Tsx6MXQYQCmuKvuuCPo/j41AvK6/GECWlSaloBsAQMbE5uPa0ANA7zmwHCGD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gQncupunH0Axzt+EQsQMQMSxLm6jQS5AjZduEoOAEkAyVTAqqZMNQFr1udqKPSVA4Nv0Zz+SB0CamZmZmfkYQMB4Bg39k/s/ozuInSkUGUD2XRH8byX+P6pgVFInoANA7+TTY1sG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7C+7Jw8rGEBp44i1+JQIQJHtfD81niVAQIf58gKMFkAgKSLDKh4OQEoMAiuHViVAXcR3YtZLB0BehZSfVJsaQHmSdM3km/o/hIHn3sMFGkAlr84xIPv/P1UTRN0H4AJA1V5E2zH14j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l+Kqsu+qGkCfAmA8g4YVQLIRiNf1CxBALudSXFUGIEAOoUrNHugNQOM2GsBbQCZAWtjTDn9N+j8sK01KQZcXQMIXJlMFowRAJNbiUwAMHECNXaJ6a+D+PwXAeAYNvQNANgUyO4ve3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lMFR8uq8GECqZWt9kdAIQH4dOGdECRNAyol2FVL+DUDv/nivWlkOQOJYF7fRgCVAbcX+snvy/j+aX80BgnkXQLr3cMlxpwRA/wkuVtSgG0DuCKcFL3r/P2OcvwmFSAFA3C+frBiu5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7YFWYMjqFkA91SE3w40QQDvHgOz17hRAl3Mprio7FECeB3dn7fYNQJSHhVrTfCVAp3Sw/s9h/j86QDBHj38XQMucLouJTQVACcTr+gWbG0DtgVZgyCoAQB/0bFZ9rgJAKIBiZMmc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KA8LtaZ5D0DY8PRKWUYQQBbB/1ayIwJA6BN5knQtEUBBguLHmHsHQLWmeccpmiRAjC0EOSihBUC/SGjLuZQbQNcv2A3bFvQ/24r9ZffkFUC+wRcmU4UAQI9TdCSXfwdA2bW93ZKc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"36Y/+5Gi/D9XCRaHMz8iQGXfFcH/dhJAuOnPfqSICECvQspPqn0RQNNNYhBY2SRABmSvd398BUCVtyOcFlwZQBtMw/ARsf8/6njMQGX8GUCiRbbz/dT+P13cRgN4ywVAx/KuesC84D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EsKjjSPWD0CS6GUUyy0hQF7XL9gN2/o/NV66SQxCGUBagSGrW70JQFOWIY51MSZAK9mxEYjXA0DfN772zFIcQEJ4tHHE2vg/dNL7xteeGEDGbTSAt4ABQKz/c5gvLwRAeO3ShsPS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ujE9YYmHBUBY5xiQvT4ZQICCixU1mAFAnpj1YigHFEDVBFH3AUgJQAwCK4cWuSRAIoleRrHcBEBvEoPAyoEbQIi6D0Bqk/c/lWWIY108FkD3OxQF+oQBQPn3GRcORAJA+P9xwoRR4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mZ6wxAOKBEDyDBr6J7gUQLBVgsXhzPQ/fzDw3Hu4DkDtgVZgyCoNQI51cRsNACZAG0zD8BHxAkBA+5EiMiwYQBSWeEDZFPc/AG+BBMWPGEBBSBYwgdv7P3Tv4ZLjzgZAhbTGoBNC4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RiV1ApoIBUCCOXr83iYJQH0DkxtF1tU/InGPpQ/dD0DMtP0rK00GQP0wQni0YSJARFGgT+TJBEDq501FKswaQE563/jaMwVAUFPL1vrCHEAgmKPH7+0CQPhrskY9RARAW3ufqkKD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UTHO34RCBkDidf2C3TASQDNQGf8+gxdAa2XCL/WzCEB+jLlrCfkRQIlBYOXQ4iZAJV0z+WYbA0Am5IOezQoZQL5Nf/YjhQBArcCQ1a0+FkAldQKaCBsCQGdEaW/whQVAj8TL07ki5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R+aRPxh4+T8a3UHsTDEhQFxy3CkdrApAqtTsgVYAEkDt0/GYgQoPQEtZhjjWhSZA5dU5BmQvAkCwj05d+YwYQG40gLdAAv8/DRr6J7i4HUAOFeP8TWgBQHztmSUBqgNAuw1qv7WT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YcPTK2WZAkCqK5/lebAdQO2ePCzUGvQ/gsXhzK9m/D9miGNd3CYQQPYoXI/CtSVAcv4mFCKgAUB15bM8D+4ZQOjZrPpcrQVArrZif9n9GkBJERlW8cb8P9An8iTp2gNAUmStodTe4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oFT7dDzmAEDVJk7ud8gcQEGfyJOk6/Y/JJf/kH7bIEBrK/aX3VMJQOC+DpwzIiRAAB3mywtwBkCwA+eMKE0aQDGZKhiV1PA/ho+IKZFkFUAq499nXPgBQD4ipkQS/QNAVvMcke/S5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WVGDaRh+AEDVz5uKVJgcQMxiYvNx7fU//ACkNnFy/j9BguLHmHsNQDvfT42XTiVAW18ktOWcAUAoDwu1pvkWQGVTrvAulwFAl/+Qfvu6HECsqME0DJ/7P0yOO6WDdQRA6gjgZvFi2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qd4a2CrhFkD4pX7eVLQhQMxAZfz7LBNAr3d/vFetGUC1T8djBqoNQFFrmnecoiVAt5c0Ruuo/z9xWvCir+AXQKsmiLoPwPw/x2gdVU1wGkAFwHgGDf0CQJwzorQ3uAVA8ItLVdpi5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B3x+GCFcGECTHRuBeL0fQDXSUnk7Ag1A3NeBc0a0JkAtQxzr4jYKQGrecYqOxCVARSqMLQT5AUD20akrnwUaQJ6Y9WIopwFALXjRV5DmGEBSLLe0GhICQFFmg0wycgVARBZp4h1g5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t9EA3gLJB0Bn7bYLzbUgQJWCbi9pTAhAqWqCqPtgF0Dt9e6P9yoIQNlfdk8e1iRAqiuf5XlwBUB7ZkmAmjobQF+YTBWMyvs/g/qWOV1WGkCqZWt9kdD/Pwfr/xzmCwFAY30DkxvF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yCQjZ2HP+T/JPPIHA08aQNvcmJ6wxOw/4/xNKERA+z/kg57Nqs8PQAXFjzF3TSVAsCDNWDSdAkCVSKKXUcwYQKiMf59x4QBAQuxMofN6GEDY2CWqtwb8Pxk5C3vaoQRAvY44ZAPp2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RPrt68B5DUDv4ZLjTikgQJMYBFYOLQlAucfShy4oDEAeUDblCu8JQL7BFyZTZSRAyLWhYpy/AEB1djI4Sp4YQEF9y5wuC/g/h6dXyjIEG0C693DJcScBQOJ1/YLd8ANAuvWaHhQU4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o3VUNUHUD0DGhQMhWaAgQCwOZ341RwpAzQGCOXo8BkDCacGLvoIGQA+cM6K01yRAnPnVHCAYA0CIY13cRoMaQE8eFmpNc/g/TTJyFva0FkD4/DBCePQBQPfMkgA1dQNAai43GOow4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aeOItfgUDECjryDNWHQWQCmuKvuuSABAj3Ba8KIvDkAk1uJTAAwMQCfaVUj5aSNAFVeVfVfEAUBbsb/snhwYQKOvIM1YNPg/DhXj/E0oGUArweJw5lf/PxCv6xfsRghAsTBETl/P5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mdh8XBvqCEBI4XoUrocbQLmNBvAWSPw/4e6s3XahAUDYR6eufFYHQJjdk4eFuiJA1v85zJfXAEBseHqlLGMYQHBfB84ZUfo/g1FJnYAmGECLic3HtaEAQNjYJaq3BgZAZYwPs5ft5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A5Xx7zOuBkAOZ341B0ghQKsEi8OZX/k/E36pnzcV/D/KMsSxLq4NQD81XrpJjCVAA30iT5KuAUBmiGNd3GYXQLlTOlj/5wFABYasbvUcHUCazk4GR8n8P64q+64IvgZAN6rTgawn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xF+TNephBUABh1ClZu8gQNKMRdPZSfI/WHOAYI7eAUCM8zehEIEMQJyiI7n8RyVA0T/BxYqa/D+u2F92Tx4XQDarPldbsQBAvcYuUb31HUAep+hILn/9P/32deCcEQZADtqrj4e+3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dAexM4VOA0DGihpMw5AeQMbhzK/mgPM/D9HoDmLnBkD9E1ysqIEIQOxRuB6F+yNAiIVa07yjBEDLhF/q520aQBAGnnsPVwNAnOEGfH44HEAVxhaCHBQAQHx+GCE8WgJAr30BvXDn5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"exSuR+E6CEBjYvNxbcgiQPiNrz2zpPA/d6G5TiNtG0A0nZ0MjjIQQF8pyxDHuiZAgXhdv2A3CkAmcOtunqodQAN9Ik+SLvU/1QloImzYFkDeVKTC2AIBQH6MuWsJ+QRAp+mzA66r4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NKK0N/hCAEAMzXUaackVQDF8REyJpPU/Vn2utmL/BkBWDi2ynS8HQE7udygKNCNAnbryWZ4H/T9seHqlLAMYQCqRRC+j2P8/nx9GCI+2GEBq9kArMOT8P3QHsTOFjgJAQ48YPbdQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mpmZmZnZAkBSSZ2AJmIkQANd+wJ6YeI/Tdu/stLEGEC2oWKcv4kMQDQRNjy9kiVA8L+V7NiIBUCGONbFbRQZQMAhVKnZAwJA36Y/+5EiG0CYo8fvbXoBQAIrhxbZzgRA4gM7/gsE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"odtLGqO1DkBjYvNxbSgXQC140VeQZvY/1edqK/YX/z9yv0NRoI8NQPOOU3QkNydA5zV2ieotCEDACYUIOCQdQApLPKBsCgRAKjqSy39IHUDs+gW7YRsBQLIubqMBPARAF2U2yCSj5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cclxp3SwGEDReY1dokoiQCL99nXg3BNA+tUcIJijFECCrRIsDqcQQC0hH/RsNiZAUWaDTDJyB0CH4SNiSkQbQN9PjZduEv4/+aBns+pTGED3zJIANXUBQHRGlPYG3wVA2jf3V4/75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9DKK5ZY2IEBdp5GWyrsZQBfxnZj1IiJA6pWyDHGs/j+5wrtcxPcMQFdbsb/sviRAOQt72uFvAkDBbti2KLMXQCmWW1oNyQRAmN2Th4WaHUCb5h2n6IgAQFysqME0jAdAdZDXg0nx4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qn06HjOQF0A/jBAebawiQEdy+Q/p9xJAuaXVkLgHF0BGX0GasSgMQAtGJXUCeiVAw9hCkIOSBECRm+EGfJ4bQIKLFTWYhvs/5+PaUDHuGEDSqSuf5XkAQA+5GW7AJwNA8gwa+ie45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+1dWmpSCBkC9NbBVggUZQKnZA63AkPM/6ZrJN9tcFEDj/E0oRIAHQJOpglFJXSRA+5Y5XRaT/T9Z3eo56R0YQKVrJt9scwFATHFV2XflG0DqlbIMcewAQLx0kxgElgNAaJJYUu4+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U5YhjnXx/D+ztb5IaMsTQK+WOzPB8O4/n3HhQEhWC0AJFoczv9oJQGiz6nO1tSRARWRYxRuZAEDo2az6XM0ZQM0GmWTkbABAIc1YNJ3dGkA1Bwjm6DEAQAqd19glqgRAyERKs3kc2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NdJSeTvCEEDhl/p5U5EiQDnulA7Wvw9Ae/fHe9XKCUCPxwxUxv8OQHE9CtejcCVAXMmOjUA8AkBjYvNxbagXQDarPldbMfQ/mRJJ9DKqFUD+fcaFA6H+P33LnC6LiQNA+Uz2z9OA5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"smMjEK+rD0B3EDtT6JwYQMZtNIC3QAJAMPXzpiKVBkBoXDgQkoULQLn8h/Tb9yRAOShhpu0fA0BHWipvR9gbQHOFd7mIb/g/fZbnwd2ZGUAJFoczvxr+P1UwKqkTUANAeuI5W0Bo2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ka4q+64I9j/XwFYJFscfQIoCfSJPEvc/+U7MejEU/z9ORSqMLYQLQM6I0t7g+yNAlkOLbOf7/z8DYDyDhj4XQO1Hisiwivk/xT2WPnQBF0B3LSEf9GwCQHcQO1PofANAArhZvFgY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pU5AE2GDA0BrZcIv9fMWQEbT2cngqPI/kZvhBnw+EUDir8ka9RANQH2R0JZzKSNAJ6CJsOFpBkBRa5p3nMIaQCYBamrZ2gFAIlSp2QOtHUAv+grSjMUAQH0Facai6QhAMsueBDZn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ObTIdr6fAEBS1QRR9+EYQIzWUdUEUdE/bw1slWDx9z/N6bKY2PwDQBYYsrrVoyNAXcR3YtaLBUDejnBa8AIYQIC3QILix/4/6IcRwqPNGkC1GhL3WDoDQHkGDf0TnARA64uEtpzL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QKTfvg6c/z9KmGn7VxYgQEbvVMA9T+E/8fRKWYa4A0BTswdageEFQO6x9KELOiNAzSN/MPDc/D8AOsyXF4AaQBSWeEDZVANAH7qgvmVOG0CyhSAHJQwCQGwhyEEJ8wVAKNGSx9Ny5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CTNt/8rK/D94CyQofuwVQD55WKg1jQVABkfJq3OMB0CdhT3t8BcEQABXsmMjwCJAYMjqVs8JAkBT0O0ljZEYQDRLAtTUsgBA6KT3ja/dGUCm1ZC4x1ICQE60q5DykwVAZ9Xnaiv25T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Rdjw9ErZ+D/CacGLvqIXQOFiRQ2m4f0/mRJJ9DKKB0DFOH8TClECQBJr8SkApiJAYB+duvLZAkDBkNWtnnMXQBZqTfOO0wJAJV0z+Wa7GkDlfoeiQN8CQAStwJDVLQVATaCIRQw75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h/nyAuxjAkAD7KNTV/4OQAStwJDVrfQ/K6T8pNoHEUDUYBqGjwgBQBGq1OyBxiJA3lSkwtjC/j+Vn1T7dBwZQLnCu1zEd/4/TfOOU3SEHEDZ690f79UAQHi5iO/ErAVAnb6er1mu5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ecxAZfy7BUAV4/xNKHQgQDpY/+cwPxJAtTf4wmQqEEDOcAM+PwwPQCGwcmiRTSVAvMtFfCcmBEDidf2C3TAcQHoZxXJLq/k/fLjkuFMaGkAYQznRrsIAQBfZzvdTowdAameY2lKH5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w2SqYFTS6z+bj2tDxfgbQOY/pN++DghAyY6NQLwuBECy17s/3qsNQDAqqRPQZCVAjX+fceFABkChLedSXFUbQO317o/3Kvs/f/s6cM5oF0Bpb/CFyVQBQF8HzhlRGgRAgeuKGeFt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MnIW9rSDBkANpmH4iHgRQOSghJm2f/M/5A8GnnvPEUCl942vPTMIQOnUlc/yHCNASOF6FK6HBUAxzt+EQsQZQBQi4BCq1PE/UHCxogYTFkC8IvjfSvb9P4TwaOOI9QVAsVOsGoS54z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s9KkFHR7A0Dl8h/Sb48gQFTgZBu4A+Y/f/YjRWTYAEArMGR1q6cIQHWTGARWDiVA2ZlC5zX2AEBbttYXCe0ZQKyowTQMH/Q/SgwCK4eWE0BcA1slWJwCQCegibDhKQZAbVfog2Xs5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xT2WPnQBCECDbi9pjLYaQOJ0kq0uJ+U/kdCWcykuAkB63/jaM0sNQA1xrIvbaCVA9YQlHlC2BUCY+nlTkcoZQPdY+tAF9QFAJQaBlUPrFkB1yM1wAz4CQH8TChFwyAdA53Pudr005j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PSe9b3zt/z9JopdRLGcgQNmUK7zLBQBAE5uPa0NlGkBqEyf3O5QHQNttF5rr1CJA/vFetTLhAUAYsrrVcxIZQCTTodPz7uk/OxkcJa+uF0BTXFX2XZEBQHB31m670AVAsaiI00m24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DqFKzR5oA0A+BcB4Bn0gQGN/2T15WPA/YWwhyEHpEUDghEIEHEIMQDvfT42XDiZAQ3OdRlrqAEDizK/mAOEXQDZZox6ikQBAD5ccd0pHF0ATChFwCNX+P8jvbfqz3wVAL/fJUYAo5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p3Sw/s+hBUAoDwu1pvkkQF+3CIz1Deg/LspskElGA0BYObTIdv4MQPmgZ7PqMyZA7BLVWwObBEA0nZ0MjtIaQMed0sH6P/k/+dozSwLUHUB8YTJVMCr7P+ZXc4BgjgdAMV9egH103z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"097gC5NpAEARx7q4jUYkQLCsNCkFXfA/WhKgppatAEA17zhFR7IMQHgLJCh+bCZAzXUaaam8BUAJ4dHGEYsZQGcPtAJD1v0/gqj7AKQ2HUDO/GoOEEz7P5uPa0PFOAdAblLRWPs73j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BVH3AUjtC0BcIEHxYwwXQIBIv30dOPA/h6dXyjKEA0BK7xtfe2YMQG3n+6nxciVAEwoRcAjVAkA2AvG6fsEaQFFrmnecYgJAzemymNi8GEAyrOKNzCP/P6iMf59x4QJAXwzlRLuK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+vIC7KPTCEDO/GoOEGweQL+7lSU6y+Y/BMqmXOFd/T8ijnVxGw0JQOOlm8QgkCRA2lVI+Ul1AUCPpQ9dUP8ZQM2SADW17ABAFVeVfVdkF0Bg6udNRSoBQPs6cM6IUgRALWACt+5m5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VKnZA61A9j+/8bVnlqQdQOZXc4BgjvQ/yM1wAz7fF0D1LXO6LKYLQP2H9NvXgSRA5ZttbkyPAkC4AZ8fRigYQCrG+ZtQiPo/wt1Zu+2CGkB9lufB3dkAQNZuu9Bc5wVA3KFhMepa4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/n3GhQOhBkDXUdUEUdcfQNDtJY3ROvY/G/UQje4g/D8nFCLgECoJQAfwFkhQHCRA05/9SBEZAkAr9pfdkycZQFu21hcJ7fs/IlSp2QMNF0A7AU2EDQ8AQB+duvJZngRAZtr+lZUm4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BWnGouksB0CiKNAn8uQWQD8BFCNLZuU/vMtFfCcmFkCIEcKjjSMOQIGVQ4tsJyZA4lgXt9FABEAe3J212w4aQGFxOPOruQJAJemayTfbHUBtc2N6wtIAQLkZbsDnRwdAZOWXwRiR5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4lgXt9GAAkDfbHNjegILQLt7gO7Lmeg/E7h1N0/1EEBgdk8eFioMQH6MuWsJmSZAhPBo44j1A0DhXS7iO3EYQKvnpPeNLwJAK8HicOaXGUCjdVQ1QdT+P+49XHLc6QVAsaVHUz2Z5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5ssLsI8OCkCjdVQ1QbQWQDVj0XR2cgdAw7tcxHeiI0B7ZkmAmhoPQAg9m1Wf6yRAC170FaRZA0CeJF0z+YYaQFExzt+Ewv0/j/zBwHMPG0AXvOgrSDMCQGDl0CLbeQRAsmK4OgBi4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WUxsPq4N/z8hk4ychT0XQNqNPuYDguo/7PoFu2FbFEBV+3Q8ZuAQQGN/2T15OCRA2VpfJLRlBECiemtgq0QaQPBt+rMfqQJAFJZ4QNn0F0AKhQg4hOoBQErSNZNv9gZAeEFEatrF4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qfbpeMxA/z9/EwoRcGgWQKTH7236s/A/GvonuFjRFEA+eVioNS0QQLG/7J48bCRA+Um1T8ejBEBZF7fRAP4ZQB6KAn0ijwJAfoy5awm5F0BZF7fRAJ4BQMX+snvycAZA+yKhLefS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XKyowTTMC0CfjscMVKYhQFjiAWVTrvM/oDL+fcaFEEDmywuwj04IQCJseHql7CRA0h3EzhT6A0BF2PD0SrkXQCdr1EM0uvY/gIKLFTV4HUCYF2AfnToBQGu3XWiukwZAC7Wmecep5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x2gdVU3QCUDEmV/NAYIgQFRSJ6CJ8AFAhNOCF30F9D8H6/8c5ksMQBSuR+F6dCNA09nJ4Cj5AkCuEiwOZ/4cQEPFOH8TygJA/7J78rDQF0C86CtIM5YAQERMiSR6mQhAYcWp1sIs5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q1s9J73v/T9ZaVIKuv0gQFEVU+knHOQ/G/UQje6gEEBcVfZdEfwBQCqMLQQ5GCNAd76fGi9dA0BMiSR6GcUaQEMEHEKVGvI/WVGDaRgeGUCJKZFEL6MDQA39E1ysqAVA2gOtwJDV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rg0V4/yNBUA7x4Ds9Y4XQGWqYFRSJ/M/C170FaSZ+j9egH106goMQIleRrHc0iNAXeFdLuI7BUCoHf6arBEaQN9PjZduEvw/bhea6zRyFkDi5H6HokD7P9gN2xZlNgVAqFfKMsSx3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ObnfoShQBkAqkUQvo1gjQN/foL36+O0//vFetTIhAkANq3gj88gMQG1Wfa62IiVAb57qkJshBkBZ+tAF9U0cQHtmSYCaWv0/ryXkg56tGkCVK7zLRXz+P4y5awn5YAVA3QvMCkU64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xty1hHyQCEBiLT4FwLgQQJ58emzLAO4/aYzWUdWkFkCVn1T7dLwLQNQrZRni+CVAQfFjzF3LBkAlehnFcmsaQFJ+Uu3T8QFANpNvtrlRG0BZbmk1JK4CQGXkLOxpxwVAMpHSbB6H5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rwj+t5KdAEA89x4uOa4IQODzwwjhUfQ/d76fGi+9GUAFNBE2PH0JQET67evAGSRA2jhiLT4FA0BuaTUk7nEZQBHkoISZNgRAJTs2AvH6G0BlARO4dfcDQOhqK/aXHQZAX7cIjPUN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WhKgppYtFEDL+PcZF24eQACMZ9DQXxVAR+aRPxh4BkBF8L+V7JgOQB4Wak3zDiZAETY8vVKWBEDpQxfUtywbQIfhI2JKJPY/D7QCQ1a3GUD2C3bDtsX8P6ezk8FRsgRAJ6Wg20sa3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ub01sFUiFECxFp8CYPwfQBQ/xty15BdAyM1wAz5/AkAvNNdppOUOQKs+V1uxvyVA7+apDrkZBEAWTWcng4MbQLGiBtMw/PY/5+PaUDFOGUCDF30Facb7P29kHvmDAQVAaDwRxHk43z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NSTusfShCEB6qkNuhisgQEusjEY+r9Q/ZCMQr+s3FEAw9fOmIhUGQE8eFmpNUyRACD2bVZ9rBkC+2ebG9GQdQDKP/MHAswFAQrKACdz6GUAOFeP8TagBQCEHJcy0/QNAzeodboeG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ijxJumZy/T8BamrZWl8fQJdWQ+IeSwtAduCcEaVdJUDg2/RnP9IMQOJYF7fRoCRACwxZ3er5BkD1nPS+8TUZQNI6qpogKgFAD9b/OcwXGkCmD11Q37L/P/rVHCCY4wRA9kArMGT14T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dc3km22uA0A4EJIFTAASQCHkvP+PE+o/P5EnSddsEkBYObTIdv4MQKyL22gADyZAWUxsPq5NAUCTb7a5Md0aQCv7rgj+t/g/+rMfKSIDGUCCqPsApDYAQAfOGVHamwZAS+oENBG25T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gEi/fR04BUC71XPS+8bePzeKrDWU2uE/8BZIUPzYJ0Aom3KFd/kKQNDVVuwvOyRAF7fRAN7CAkCYo8fvbfoXQIQSZtr+lQFA+PwwQnjUGkA+syRATS0CQCmWW1oNiQZAnwH1ZtR84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KT+p9un4AEC8eapDbsYWQDRkPEolPOU/M/lmmxtzGEDir8ka9dAEQM4ZUdobfCRAqkNuhhuwAUBLzR5oBUYbQCdO7ncoiv4/O420VN4uGEAQI4RHG0f8P79lTpfFxAFAdcjNcAM+3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c51GWirvBkBEwCFUqRkeQBniWBe3Ufg/umbyzTY3A0CbrFEP0QgQQOM2GsBb4CdAqMZLN4kBAkCzDHGsixsbQHnMQGX8OwFAxuHMr+aAGUAyOEpenaMBQKiMf59xIQtAy2d5Htyd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Uu3T8ZjBBUATZtr+lZUeQOAQqtTsAfo/OQt72uFPEEC1w1+TNaoPQHzysFBrGiVA6BN5knRNAkDb3JiesOQWQOwS1VsDW/o/MqzijcyDGkA+lj50Qf0CQPC/lezYiARASKgZUkXx5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lrIMcawLA0CwOJz51dwjQAmKH2PuWtc/2V92Tx6W+D/VBFH3AQgDQLpOIy2VlyNAb2Qe+YPBB0DOUx1yM7wdQGXkLOxpxwdAgQTFjzHXHEAO2xZlNggAQArXo3A9SgdAq15+p8mM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wlHy6hzDC0D0iTxJujYiQCQLmMCtu98/9KYiFcYW+T90B7EzhQ4FQCmWW1oNiSNAvmplwi81B0DA7J48LDQdQOQPBp57jwhAfLjkuFOaHECFzmvsEhUAQC7/If32tQZAXFZhM8AF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qfsApDZx+z/RrkLKT+oaQFnd6jnp/QJAvRjKiXaV+T9moDL+fcYOQIczv5oDpCNASx+6oL4lBUCnkZbK23EeQIFbd/NUh/w/vW987ZnFGkA9D+7O2i0CQE9d+SzPQwZAdO52vTTF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IOwUqwbh7D8CSG3i5B4fQMQlx53SwQpACJRNucJ7D0B40VeQZiwKQBsv3SQGoSRAUBn/PuOCBEAfv7fpzx4aQCHIQQkzbQJAmbuWkA/aGkCC/61kx0YCQC6thsQ9VghAiPNwAtNp5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0ETY8PRK9D/6uDZUjPMdQLNBJhk5Sw1AcJS8OsfADkD2C3bDtkUJQAtGJXUCuiRANLqD2JlCBEDXaaSl8hYZQKciFcYWQgJAWoEhq1v9GUATLA5nfnUCQNhHp6581ghAZQETuHU35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GeJYF7dR9D/4wmSqYJQZQHRGlPYGX/U/fVwbKsY5BECiC+pb5rQIQF8HzhlRWiRActwpHay/A0CvlGWIY10XQODW3TzVIQNAwkzbv7KyHUDcY+lDF1QAQK1p3nGKDghAGTp2UInr4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GZC93v0xBUAw2A3bFjUhQI20VN6OsAFARpT2Bl+Y9D/G+ZtQiIAFQPLSTWIQuCNAat5xio5kAkDYR6eufHYaQF9egH10qgFAnKIjufynGkAj+N9KdiwAQKyt2F92DwdAzZVBtcEJ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OZz51Rwg/j+vfJbnwX0dQMoV3uUiPgxAdY4B2evd9j9EhlW8kfkFQM2SADW1PCNAyXGndLC+A0Csyr4rgv8XQIleRrHcEgBA8tJNYhC4GkD99nXgnBEAQK4NFeP8jQdAqvBneLOG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r3yW58EdBkDeyDzyB0MbQLH5uDZUjOA/YabtX1kpC0DD8BExJRIJQGgibHh6BSVAA0NWt3pOA0DVITfDDTgYQMU9lj50gQRAEmvxKQCGGkBmSYCaWvYAQE8GR8mrswVAmRJJ9DKK3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rwj+t5IdB0AYJlMFo7IcQB7gSQuXVc4/51JcVfZdB0BQATCeQQMHQK7YX3ZPfiRALVvri4R2BUBK0jWTb7YYQCkF3V7S2AVAvR3htOClGkA8iJ0pdJ4AQAnE6/oFOwdAk45yMJsA3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kIMSZtr+BkBFZFjFGxkYQMyyJ4HNOdg/bRyxFp+CDkC9b3ztmaUKQDsBTYQNjyRABthHp668AUDV52or9pcXQNXKhF/q5wNAJlMFo5K6GUDn49pQMY4AQP9byY6NQAZAQ5JZvcPt3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lzldFhPbBkBd3EYDeEsWQATo9/2bF+E/8l61MuEXCEBq+1dWmpQKQIC3QILiZyRA/pqsUQ/RAkDL2xFOC34YQODW3TzVIQJA1eyBVmAoGUBTIoleRrH/PxeCHJQw0wVALZPheD4D3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q/8EFyvq9T/KplzhXe4XQJ30vvG15/s/FHmSdM3kA0COzCN/MLAOQILix5i7FiVAtDwP7s4aA0A3/dmPFFEZQLR224XmugVAaYzWUdWEGkAk7rH0oQsAQO+s3XahuQNAuVM6WP/n2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vsEXJlMFAkBOKETAIUQiQNHLKJZbWvY/xvmbUIhAB0B0Ka4q+24IQEn0MorlxiNAtcNfkzVq/j/edqG5TmMZQBuBeF2/YPY/r1+wG7aNGEDKw0Ktad7+P3Qprir7rgRAj8U2qWgs5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yqZc4V2u+z9fRrHc0qoYQEUqjC0EufA/tcNfkzXq/D9uUWaDTHIMQDGZKhiVFCNARSqMLQT5AEA+IqZEEn0ZQI4G8BZIUPk/p8tiYvORGUDAstKkFHT+PxCv6xfsxgVAHeOKi6Py4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"98d71cqEBUBZaVIKur0aQGZOl8XE5vQ/eXWOAdlr+D8dIJijx68JQNlfdk8exiNAVFc+y/MgA0By+Q/pt48ZQFk0nZ0Mjvo/rmTHRiAeF0CWeEDZlKv/P9LGEWvxKQRAxqS/l8KD3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1/oioS3n9z9vu9Bcp/EeQPIHA8+9B/s/ObTIdr7fAECE04IXfcULQHh/vFetjCNASWO0jqqmBECbOLnfoWgbQHOAYI4eP/c/MEeP39vUE0B+qZ83FSn+P+bo8XubfgVA/YaJBil43T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bhea6zTSDEDnjCjtDR4iQIY97fDXJABAwyreyDyyCkAexM4UOq8LQPtcbcX+siVAIXam0HlNBkCfH0YIj1YbQIkMq3gjc/I/xty1hHzwGECKzce1oSIBQNxoAG+BBAZAwsJJmj8m5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lX1XBP+bAkB/Tdaoh5ggQObLC7CPzuY/EVMiiV6GCkAcmUf+YOAMQFYOLbKdbyRAtRoS91j6BUAdjxmojP8aQI+qJoi6TwdAf6SIDKu4GkCv6xfshu0AQLhYUYNpWAVAdELooEs45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tVTejnAaBUCwIM1YNB0gQElIpG38ieM/6ZrJN9scEEC/DpwzonQIQJbnwd1Z+yNAr+sX7IZtB0DNBplk5GwaQOV+h6JAn/w/RpkNMsmoHEAzFk1nJwP9PzZ2ieqtwQdA3xeXqrRF4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5x2n6EiuA0ACK4cW2Y4KQAiUTbnCu/Q/4GdcOBCyEkAo8iTpmgkMQLbz/dR4CSVAPsvz4O6sAUBLqyFxj0UbQHjuPVxyXP4/FytqMA3DF0Dm6PF7m74AQJ+wxAPK5gVAoYFYNnNI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"88gfDDx3AkBPHhZqTRMlQI2XbhKDwPc/w0fElEjiB0DCo40j1mIIQAfOGVHauyRA2XxcGyqGBkBrK/aX3bMXQCk/qfbpePo/SREZVvHmF0DvA5DaxAkCQNJSeTvC6QdAxjGSPUJN5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xr/PuHCgB0A3VIzzNwEbQM6I0t7gyydA220XmuuUEECjAbwFEpQPQOm3rwPnrCVAeZJ0zeQb/T9d/kP67esZQEt2bATidfo/L26jAbwFGUAqV3iXi7gCQIW2nEtxlQlAq+0m+Kbp5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BoGVQ4usAUDufD81XnogQItx/iYUou4/l1ZD4h7LB0DNBplk5OwIQCKOdXEbLSVAvtnmxvREA0BGsdzSaggbQLn8h/Tb1wNAXb9gN2y7F0CFtpxLcdX+PxxClZo90AFAD9b/OcyX2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MC/APjp1BEA8ZqAy/l0aQFsLs9DOadQ/sCDNWDR9EUBFuwopP6kIQHL5D+m3TyVAk4ychT2tBkBortNIS0UbQGK+vAD76ANAgnNGlPYmHUDWrZ6T3jf9P+hqK/aXnQFAcAhVavZA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UN8yp8vi+z+p9ul4zEAXQDkLe9rhLxFASgfr/xymAECm1ZC4x1IPQG40gLdAoiRAuFhRg2kYAkDxaOOItTgXQO9VKxN+Kf8/3nahuU5DGUAzbf/KSlMBQFw4EJIFTAhAYTYBhuVP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2lVI+Ul1CkCBlUOLbIclQJbP8jy4u/A/5IOezaqPEUDmV3OAYE4PQPW52or9BSZA+3Q8ZqAyCkDfFcH/VpIeQCDSb18HjgNA/DVZox7CHUCU2SCTjNwCQAGHUKVmTwNAZVBtcCL64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jQsHQrKACUCpMLYQ5IAdQP/sR4rIsPU/QPZ698c7AUB56SYxCGwNQET67evAOSVAjC0EOShhBkC7Cik/qdYaQK7wLhfxnQJAeQH20alLHUCsHFpkO18BQOviNhrAGwRAeTwtP3CV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C3va4a8JAEDb+X5qvBQRQBb2tMNfk/E/4NbdPNUhG0CsVib8Uj8MQDC7Jw8LNSVAmYHK+PcZ+T9rK/aX3VMUQEVkWMUbGQJAVdl3RfC/H0D3AUht4iQAQOM2GsBbYAhAAW4WLxYG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WMoyxLEu7D/ChqdXynIYQO2ePCzUGiRAJV0z+WbbDUB1jgHZ690PQHsUrkfhOiZAgsXhzK8mB0AhAg6hSi0cQA1slWBxOAFAuOnPfqSIGEBrZcIv9bMCQBK9jGK5pQVAsW68OzLW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kQ96Nqv+CkBxAz4/jHAgQHrkDwaee/Q/tB8pIsMq9z84EJIFTKAPQOhqK/aXfSVAgXhdv2A39z/mkT8YeA4VQABvgQTFj/g/JO6x9KHLGUDzk2qfjgcAQNtQMc7fBAhAs+xJYHMO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rBkZ5C7C6z/WrZ6T3lccQA3gLZCg+AJA5BQdyeX/H0BHA3gLJKgOQPkx5q4lJCdATfilft7U/T9CIQIOoUoVQGnjiLX4FAVA+BkXDoSEHEA+rg0V47wAQAte9BWk2QRA7X2qCg3E5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YhVvZB75CUAUXKyowbQiQA/W/znMVwdALzTXaaQl/D+P/MHAc68QQHctIR/0DCZAmkLnNXaJ+T9rZcIv9ZMVQF3Ed2LWSwNAexSuR+F6HEDmriXkg54BQEvNHmgFxgZA/UtSmWIO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ldQJaCIsBEC2LcpskIkXQOJ1/YLd8ANAWtjTDn/tEUDEd2LWi2ENQK+UZYhjfSZArYbEPZa+AkDqspjYfDwZQFgczvxqTgBAuK8D54zIHEA8pYP1f04CQMr9DkWB/gdAIGPuWkI+5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hbGFIAel9z/dJAaBlWMmQNZz0vvGV/U/x4Ds9e4PD0D3zJIANTUMQC6QoPgxJiZAtwvNdRppBEAxfERMiQQcQBR5knTNZPo/Uz9vKlKBHUA0v5oDBPMAQMCy0qQU9AZAn67uWGyT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hslUwaikCUAr3sg88rcgQNIYraOqCfo/ZyeDo+RVBECVtyOcFvwNQMRCrWnesSVA+wW7YdsiCECr7Lsi+L8bQA74/DBCOAJABkfJq3MsGkBIisiwircCQIkMq3gj8wNAFakwthBk4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WipvRzjtB0ADz72HS44bQK98lufBXf0/mYHK+PdZBUDhC5OpghEPQIPAyqFFliZA3+ALk6nCBEDhtOBFXyEbQCbHndLBevY/HxFTIok+GEAMHxFTIgn+P7mq7Lsi+AVAcm4T7pV55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+rg2VIxzCEDRkVz+QxogQAxZ3eo5afg/ufyH9NtXBEDhfyvZsdEOQNCzWfW5uiZAl4v4Tsw6BEBsskY9ROMaQI0LB0KyAPY/nOEGfH5YGEALXvQVpJn+PyWvzjEguwVAV3ptNlbi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J6CJsOHp/T/biv1l94QkQK7wLhfxnfQ/Sx+6oL7FEEBRZoNMMvINQE5iEFg5NCZApDZxcr8DBECojH+fcWEdQMaKGkzD8P0/aXQHsTOlFkCV8e8zLhwAQAqi7gOQmgZAYW73cp8c5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oFT7dDymDEDizK/mACEdQHV2MjhK3vM/jBAebRwxBkCqSIWxhSANQJT2Bl+YbCZARwN4CyToBECJDKt4IzMbQIIclDDTtgBAufyH9Nu3GEApP6n26fj/P52dDI6SFwZA7C+7Jw+L4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RYE+kSeJAkCf5XlwdzYUQDGZKhiV1Pg/CTNt/8pKB0DtKqT8pBoKQADGM2jovyNAjPhOzHoxBEDlszwP7i4aQOl942vP7AFAcCU7NgKxG0BxAz4/jFABQBLCo40jlgZA1m8mpgux3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+GuyRj3EEUBQx2MGKpMgQNRgGoaPiANACW05l+KqE0Ar2bERiBcMQOviNhrAuyVAQNmUK7yLA0DZCMTr+iUcQJusUQ/RqANAzGJi83ENHEBN845TdCT+PzkLe9rhbwNA4uZUMgDU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NnaJ6q0BAUDEmV/NAaIdQIAMHTuoxOE/Q+IeSx86/z8aaam8HWEOQAskKH6MeSVARfXWwFYJA0CamZmZmdkYQMJM27+yEgdAFmpN846THkBxyXGndHAAQHi0ccRafARA9phIaTYP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0a5Cyk+qFEAZHCWvzsEhQLfRAN4CKRtAofMau0S1FEAoLPGAsukMQBniWBe30SVAsmg6OxncAkCZgcr491kaQEAwR4/fW/M/xRuZR/5AF0CxFp8CYDz/P1WkwthC0AZAVdriGp9J4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qIx/n3HBG0BcA1slWFwaQHlYqDXN+xtAdc3km21OEUC2vkhoy7kOQM9m1edq6yRAFjWYhuGjA0BWfa62Yh8XQFwbKsb5m/k/ZXCUvDoHFkBPWOIBZdP/PznulA7W/wVA2NMOf03W4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5X6HokDvIEBu3c1THRIWQFA25QrvEhhAysNCrWleBkBhGoaPiOkOQN6Th4VasyVAMuauJeSDAUA4Mo/8waAZQOW4UzpY//A/qfsApDaRF0Cvd3+8Vy0DQABvgQTFzwVA8s8M4gO74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ks8rnnqk1T+dgCbChmckQH5S7dPxWAZAr7FLVG+NE0CCxeHMrwYQQHPXEvJB7yVAuJIdG4H4A0CrWz0nve8XQHtOet/42v8/uB6F61E4GUAbR6zFp4D/PxnKiXYVkgRAweJw5ldz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+MJkqmDU9z/Y8PRKWQYTQK3AkNWt3gdAPrMkQE0NFUBuaTUk7jEKQBB6Nqs+FyVAA8+9h0uO+z8wR4/f2/QZQAH20akrn/s/NlmjHqLRGkBwCFVq9sAAQCqpE9BEmANA3UCBd/Jp4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bw1slWBx7D+etdsuNFcYQOUK73IRfxlAgQTFjzFXF0Ar+64I/rcNQAAAAAAAgCZA4bTgRV/B/D8kRWRYxdsWQPIk6ZrJdwNAVyb8Uj8vG0BegH106kr+P9rmxvSEZQJA2SYVjbW/3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yXTo9Lwb7D+ZR/5g4PkcQElL5e0IJx5AOIQqNXvgEkCfAmA8g0YJQB6n6EgufyRAfgBSmzi5BUBSflLt05EYQIKLFTWYBvs/IJijx+9NGUAgJAuYwK39P3ldv2A3bANA2o0+5gMC4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DkqYafvX/z+FQgQcQgUgQOfj2lAxDhVAenB31m47+j8hPNo4Yq0MQPXb14FzRiZA08H6P4f5A0BG66hqgmgZQLdif9k9+fM/cT0K16MwGUAvF/GdmHUBQLKd76fGSwdAoI1cN6W85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E36pnzfVCkDCNAwfEXMcQHQoQ1VMJec//+xHisgQFUBYkGYsmg4OQIenV8oyhCVAyk+qfTpeAUDoaiv2lz0ZQOZ5cHfWbvw/oRABh1BFFkArMGR1q+f+Pz81XrpJzAVARS44g7/f4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0VeQZiwa/j8u4jsx66UfQFxV9l0RPARAdAexM4VOAEDu68A5I0oOQGWqYFRShyVAMnctIR90BkDZlCu8y6UcQBqLprOTQf4/zNHj9zbdHEDuCKcFL3r/P1xaDYl7rAJA/fZ14JwR3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8RExJZKoC0CTqYJRSZ0TQDSdnQyOkgRATaHzGrsEDEDde7jkuFMLQCUGgZVDKyRAie/ErBfD/D90mC8vwN4VQGXfFcH/VvE/rvVFQlvuGEDX+iKhLecBQOZ5cHfWbglAY2TJHMs75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iqvKvitCCkB+Uu3T8RgdQHXIzXADPv8/YqHWNO+4DEBt5/up8ZIMQNcS8kHPRiRA2UKQgxJm/T8IVWr2QOsXQLxcxHdi1vc/HhuBeF1/GEAVkWEVb6QBQIleRrHcUglAIehoVUu65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3gIJih/jAUAXmus00lIMQEF9y5wuOyFARpkNMsmIAECQoPgx5g4QQBueXinLMCRAZ9Xnaiv2AkBbJVgczvwWQGmpvB3htPA/ZJKRs7AHGEDpt68D50wCQEUqjC0EuQpA1EUKZeFr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"io7k8h8SBkBMVG8NbFUSQGhcOBCS5RtAUYiAQ6jSCkCafLPNjQkQQC/dJAaB9SNAS+oENBG2A0BSJ6CJsIEXQDylg/V/jvI/+dozSwJUF0AfotEdxE4DQALU1LK1PgpAVaTC2EIQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fERMiSQaGED4GRcOhKQfQC6thsQ9VghAbhea6zTSCkBau+1Ccx0GQHKKjuTy/yNAcoqO5PJfAUCdaFch5QccQAtjC0EOyvg/ATCeQUM/GUBeonprYCsBQFSp2QOtAAZA170ViQnq5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j+TyH9LvEED3ksZoHfUeQKOSOgFNxBxAXp1jQPZaFkDbbRea63QHQD0s1JrmLSNAcHfWbruQAkAEkNrEyX0WQIiFWtO84/s/OX8TChGwGEAU7Sqk/GQBQORO6WD9HwRAjbRU3o7w5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y9b6IqHNEEAEyqZc4X0eQEgWMIFbNyFAqB3+mqyxF0Age7374z0HQLyzdtuFNiNAP5EnSddMAkBK0jWTb1YWQOAtkKD4Mfk/2ZlC5zXWGED1SlmGOBYBQH506spnOQRA24ZREDy+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S7A4nPm1FUDGM2jonwAZQC8012mkJQBAu/JZngf3CkDc14FzRlQIQDeJQWDlkCRA46qy74pgAkCa6zTSUtkZQAMmcOtunv8/HY8ZqIwfGkBAMEeP3xsBQOIBZVOusARAnb6er1ku4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KcsQx7r4CUCSy39Iv00hQPNUh9wMNwZArcCQ1a0eAUAtW+uLhLYHQBniWBe3ISNARIZVvJG5BUChLedSXDUZQJYEqKllawBAVMa/z7gQGUC6FFeVfZcAQNDtJY3RugVAsW1RZoPM5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JNbiUwBMAEC1pnnHKZoZQAn/ImjMpOA/gGCOHr93GUDu68A5I8oHQCsYldQJKCRAHThnRGmvB0B9eQH20ekdQLgGtkqwuPU/veMUHcmFGECEZAETuDUDQOlDF9S3TAhAbHak+s4v5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ja/OMSD7CEAO+PwwQoggQFjFG5lHfv8/Ap8fRghPAEDuX1lpUooBQM5wAz4/DCNA8S4X8Z0YCECpE9BE2DAcQO5aQj7o2f0/D9HoDmInFkCoGOdvQmEDQAe2SrA4nAZAnbryWZ6H5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"duCcEaU9/T/Sb18HznklQJdWQ+Iey/c/b4EExY8RGkDAIVSp2cMIQCHIQQkzHSNARSqMLQQ5BkAZHCWvzvEcQAyUFFgAU+8/8x/Sb1+nGkAa+ie4WBECQNDVVuwvuwZAdji6SnfX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OUVHcvmPA0DGpwAYz2AXQMTr+gW7YfI/y9b6IqHtB0BNLVvri0QJQDcawFsgwSRA4jsx68WQB0BzhXe5iC8aQM7HtaFinPE/FcYWghyUGUAJM23/ygoBQDj4wmSq4AZAr2Ab8WS34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qaROQBPhAUD2evfHezUeQPON6J51Deo/vLN224Xm8z8mjdE6qtoJQJjdk4eFGiRAl8rbEU5LBUDX+iKhLecaQLbz/dR4afU/E/JBz2aVGEAAdJgvL4AEQL72zJIAdQVAL/zgfOrY4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OZfiqrJvAkC693DJcUccQJw24zREFek/ARO4dTfP9z+gVPt0PGYDQEi/fR04NyNA6udNRSqMAkAGEhQ/xtwcQFQdcjPcAPo/1hwgmKPnFkAhk4ychb3/P8A+OnXlMwNAQ+c1donq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iuWWVkPi/T8ibHh6pcwfQAVR9wFIbec/Ka4q+66I9j91ApoIGx4GQGGOHr+3+SJAptWQuMdSCEBdUN8yp0sbQPNZngd3Z/Y/J6CJsOGJGUDeAgmKH6MAQMo329yYXgNAKuEJvf6k4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1lbsL7vnAUAyPWGJBxQcQMGRQINNne4/0h3EzhQ6+D+uKvuuCP4FQDGx+bg2NCNAgIKLFTUYBUAKSzygbOocQH+8V61M+Po/owbTMHxEGUC5jQbwFogAQBlz1xLywQRA4j/dQIF34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7zhFR3I5A0ApXI/C9agfQHbDtkWZjeM/ByXMtP0r9z8drP9zmG8HQLd/ZaVJeSJAMZkqGJXUBUAr+64I/pcbQAouVtRgGgBAs14M5UTbGEDkSdI1k2//P0WBPpEnyQNAqP5BJEMO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mdh8XBtqBUBJumbyzVYjQKvOaoE9JuU/rkfhehQuJUCiYpy/CYUKQLx0kxgEFiRAGhcOhGRBAkDrVs9J7zsYQH/ZPXlYaARAY0UNpmG4HkBYyjLEse4DQJ1jQPZ6twlAuTmVDABV5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ptWQuMcSA0BD/wQXKyoaQM/3U+OlG+Q/avZAKzBk9T9dM/lmm9sDQIZa07zjVCRAUYNpGD7iAUCtUQ/R6I4YQN/DJcedUgBAE/JBz2Y1GEBPr5RliGMBQHYaaam8HQZABaVo5V5g5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Iy2VtyMcA0ATSfQyigUjQPLSTWIQWNs/0CfyJOk6HEAai6azk0EIQDBMpgpGZSRA+WabG9MT+z/M0eP3Nr0XQOfj2lAxDgBAxAjh0cZRG0DcgM8PI4QBQChEwCFUKQVA4BEVqpsL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1c+bilQYBEDOpbiq7LscQOv9Rjtu+OE/4gZ8fhihB0C7Jw8LteYFQI5Yi08BECNANe84RUeyBEDUZTGx+fgVQKmHaHQHsQNAwoanV8oSG0C45LhTOhgBQJKWytsRjgRAS633G+045D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sdzSakjcC0AqHaz/c7geQIwQHm0csfI/VIzzN6HQDUCtUQ/R6A4PQEHxY8xdyyRAUTHO34RC/j8qb0c4LXgWQNwpHaz/MwBAVcGopE4gG0BW8Ubmkf8BQLiSHRuBeARAsWoQ5nav4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d9Zuu9CcB0ALtaZ5x7kiQHlYqDXN+xFAcLGiBtOwCEB4eqUsQ9wPQL8OnDOiFCdALSEf9GyWAEAVxhaCHDQZQEQ0uoPYWQRAol2FlJ8UHEAmNh/XhooBQBiyutVzUgZA2SJpN/qY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xM4UOq8xB0AAb4EExY8ZQFOWIY518QZA4syv5gCBDkAk0csoltsNQGx4eqUsYyVAXwzlRLsKB0DkMQOV8Y8cQHL5D+m3L/E/P6n26XisFkDOx7WhYlwAQOAQqtTsAQVAFviKbr2m5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h1ClZg+0/D9YrUz4pX4RQLIRiNf1SwFAXaeRlsq7HkBrYKsEi8MPQFuxv+yeHCdArS8S2nJuBUCPjUC8rh8ZQDyInSl0ngFAuECC4sd4G0AiwyreyLz/PzBMpgpGpQRAY2LzcW2o2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OEpenWNA8j8tJjYf14YKQJuPa0PFOANAJQaBlUOLJkBJaMu5FBcQQIy5awn5ICZAZ341BwimBEBy4UBIFvAXQNxGA3gL5ABAKSLDKt4oHEBUAIxn0JAAQPDce7jkeANAE0VI3c6+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fZbnwd3Z5z+ad5yiIxkkQBx8YTJVMPw/hj3t8Ndk/D9Dc51GWqoHQE7RkVz+8yNA+KqVCb+UAkBd/kP67csbQN+mP/uRYgBAyLWhYpz/F0D8Uj9vKtL+P917uOS4kwVA11BqL6Jt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tvP91HgpDkBIUPwYcxcQQJ56pMFtbe4/AFKbOLnfFEAom3KFd/kKQFpkO99PLSVAWW5pNSQuCECWsgxxrAsbQJzhBnx+GP0/wvo/h/myGkDdXtIYrWMAQCUGgZVDCwVAiPGaV3XW4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BK3AkNXtD0Ap7Q2+MMkiQHTv4ZLjzvg/hnKiXYXUA0Ar2bERiNcLQE3zjlN0pCVAPBQF+kReAUCY+nlTkUoWQABSmzi5X/w/p658lueBGUBWt3pOet//P9y6m6c6JAZAwHebN06K4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GyrG+ZuQDEB9y5wui0kiQNlCkIMS5hRAtLCnHf6aE0DJcad0sF4RQIJzRpT2xiZATyMtlbcjAEBCz2bV56oaQA+5GW7AZ/k/AJF++zpQGUAG2EenrjwAQGCwG7YtCgNAaTum7sou5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DtsWZTaIAUB4eqUsQ5wVQGwE4nX9Avs/vTrHgOy1CEDUDn9N1mgMQOC+DpwzQiZA7xtfe2bJCEBy+Q/pt68YQA2Jeyx96AZA9b7xtWf2HUDLnC6LiU3/Pw4tsp3vJwRAVDcXf9sT3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"32xzY3pC+z/ajxSRYQUjQLa+SGjLOeU/pMLYQpDDA0CalIJuLykLQL4wmSoYNSRAWYY41sVtAUA6evzepn8ZQLSTwVHyavk/QZ/Ik6RLF0AYITzaOOICQGJnCp3XGARArd12oblO2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BthHp658EkBt/8pKk7IRQLwFEhQ/xg9AT135LM9DCkBLsDic+dUMQNobfGEyFSVA51JcVfbdCUCM+E7MevEbQG3F/rJ78v8/xHdi1otBGUApeXWOARkBQFM/bypS4QVAnnjOFhBa5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q3OdRlqq+j/ABG7dzdMWQAG9cOfCyOM/5DEDlfEPIUCIS447pYMKQKs+V1ux/yRALv8h/fZ1+T+FsYUgBwUZQOF/K9mxkfU/FqQZi6YzGEDwoq8gzVgCQOviNhrA2wZAY7SOqiaI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h22LMhukCkDACYUIOITzP7JoOjsZnAdA/89hvryAIkAp0CfyJGkQQHZPHhZqrSdAf/s6cM4IAEDPMSB7vdsVQG/YtiizQf8/rHMMyF5vGEAIPZtVn2sBQKq3BrZKsARAjxg9t9AV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8+UF2EfnCUDghEIEHOIVQLO1vkhoywRA+GuyRj1EDEBYc4Bgjl4OQBkEVg4tsiZAqvHSTWKQ9T8fnbryWZ4WQPm9TX/2IwBAYtuizAa5GEDd71AU6NMAQET67evAOQVAEd+JWS+G5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2IFzRpR2BkAOT6+UZWglQN8zEqERbO4/ZDvfT433IUCp+wCkNrELQJm7lpAP2iRA5ujxe5t+A0DJdr6fGg8XQCMQr+sXbPs/MnctIR/UGkCjQJ/Ik2QBQGFUUiegyQZAYDqt26D24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TP28qUiFAkCLNzKP/MEiQK93f7xXres/r0LKT6odHECYNEbrqCoJQH6MuWsJySNAH9eGinH+AECiC+pb5tQYQHCxogbT8ANARyBe1y/4HEDDR8SUSCL9PwtGJXUCWgVADDohdNCl4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OgZkr3d//z96whIPKMsiQLFQa5p3nPw/bEPFOH8T+T9XCRaHMz8QQCgPC7Wm2SVAbm5MT1iiCUB90LNZ9ZkbQDoGZK93f/s/5ujxe5v+GUABTYQNT68AQCveyDzyxwBANUbrqGqC3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r1+wG7YNEEDqz36kiGwgQMfXnlkSIPA/b4EExY+RHEAyychZ2JMMQIqw4emVMiVAHXdKB+v/B0DHuriNBnAbQOjB3Vm77f8/EeSghJk2FUDgvg6cM+ICQPCnxks3iQRAURVT6Scc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KQXdXtLYBkCBW3fzVOceQBNlbynnC+k/CtejcD0qJEAQkgVM4NYJQCBB8WPMXSVAfLjkuFO6B0A2zTtO0bEbQBzTE5Z4wP8/cclxp3TwE0BXPsvz4C4CQPZAKzBk9QRAZHjsZ7EU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HqfoSC6/AEAEVg4tsh0aQJt2Mc10L+8/jXqIRncQ+D9D/wQXK6oHQEsC1NSy9SJABMqmXOFdAUDgEKrU7KEZQBSuR+F6FPk/eJeL+E7MHEAtlbcjnJb6P4f58gLs4wJAnBTmPc403z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qaROQBNhBECb5h2n6GgmQBXhJqPKMNk/dcjNcAN+GUADWyVYHM4GQG40gLdAgiVAtJPBUfJqCEBZbmk1JI4bQKeufJbnQQJAcM6I0t6AFkCQgxJm2r4BQF6dY0D2ugRAz2irksi+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f7xXrUz4C0ABTYQNT28lQLzLRXwn5vY/izIbZJKRD0BKDAIrh1YJQEOtad5xKiZAq5UJv9RPCEBpNSTusRQbQM+9h0uOewNAJNHLKJYbGkCQgxJm2j4BQOFASBYwAQRA1zGuuDgq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xhaCHJRwBUDizK/mAEEfQKhSswdawQVAk4ychT1NEUCSIjKs4k0OQApoImx4OiRAfLjkuFO6/j/hRV9BmvEYQAu1pnnHqf4/on+CixVVG0CtwJDVrZ7+P/Bt+rMfqQJAbeNPVDas4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZmZmZmZm8D8y5q4l5GMcQJSHhVrTfAFAzXUaaam89z9/9iNFZBgKQDEIrBxapCVAfERMiSR6B0BmvRjKiVYaQJOpglFJHQJA1CtlGeIYHEBcGyrG+ZsAQNo4Yi0+BQdAYd7jTBM24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7PoFu2GbC0B+Uu3T8fgeQKM/NPPkmug/M/59xoXDEkAktOVciisHQILix5i7piNAr1qZ8Ev9BUDWxW00gBcdQFZl3xXBf/4/1IIXfQXpGkAYCW05l+L/P346HjNQWQZAY5gTtMnh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+k0XGGgttz/OBk/Xyc+sPxefAmA8AxZA3ZiesMQjH0Dowd1Zu60FQPmDgefekyNASREZVvGGAEBiLT4FwHgWQFhWmpSC7vc/5e0IpwUPFkDnb0IhAg4AQJ0ui4nNBwVA+Q/pt6+D4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8IrgfytZFEAB++jUlU8WQKfoSC7/ISlAn3b4a7LmEkDPa+wS1dsQQNv5fmq81CdAwCZr1EM0CUDg1t081aEbQAskKH6MOQRA9UpZhjiWG0D6m1CIgEMCQD0nvW987QZAr0Sg+gcR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t+7mqQ65DkAzxLEubqMmQE1nJ4Oj5ARAzemymNh8FUDmXIqryv4NQIczv5oDVCNAmFEst7QaBUBpxqLp7MQcQIy+gjRj0f8/3nGKjuTyGkC/YDdsW1QAQAg9m1Wf6wVAuVD51/JK5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sYo3Mo98CUA1XrpJDMIdQInUtItpptk/GRwlr84xDED2fw7z5YULQIqO5PIf0ihAkDF3LSFfBUDtuyL43+oXQHrHKTqSywJAIXam0HntGkAjLZW3IxwDQOtztRX7iwdAxOkkW11O4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jErqBDRRCEBWDi2ynW8gQCo6kst/SAFALLe0GhL3/T8Wak3zjlMMQBpuwOeHkSNAqdkDrcBQCEBnLJrOTgYdQGWqYFRSp/s/8L+V7NhIG0CcilQYW0gBQO/Jw0KtaQZAtteC3hvD5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bi/6CtJMBEAldQKaCNsbQKWfcHZrmd0/aNDQP8FFA0CQZiyazk4IQH/ZPXlYSCVAZhTLLa2GB0D6CtKMRZMbQGlXIeUn1fs/hnKiXYWUFkArTUpBt5cAQPp+arx00wJAcQLTad0G3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WMUbmUd+CECAK9mxEaggQGEaho+IKfE/74/3qpUZIEBiodY07/gNQOzAOSNKWyVAR4/f2/SnBkCeXinLEKcaQFmGONbFLQBAqiuf5XnwGkC4O2u3Xej8P8Xm49pQcQJAArwFEhQ/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Arfu5qkOBkDVWwNbJZgWQHlA2ZQrvP4/rP9zmC8vFkA429yYnnAJQNuK/WX3RCZAeJyiI7n8A0C2hHzQsxkdQBvYKsHi8ANABARz9PjdGUC/Q1GgT+T/P0m6ZvLNdgRAFMyYgjXO3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HjNQGf++B0ASFD/G3HUgQCIcs+xJYOU/2A3bFmX2BUC5quy7IngPQPkx5q4lxCRAmFEst7SaB0B1ApoIG74cQKd0sP7PYQNAS+XtCKdlGkBtc2N6wpL+P34AUps4+QNAf6ZetwgM5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qBjnb0JhDUBQ3zKny0IeQA+XHHdKxwlAq+y7IvhfD0BY5xiQvZ4NQIy5awn5ACdAqvHSTWKQAkDHEWvxKWAYQPuRIjKs4vw/P5EnSdeMG0BehZSfVHsCQBFwCFVq9gRA8ppXdVaL4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yygn2lXICUB+xoUDIVn+P166SQwCK/8/8DMuHAiJHEDnqQ65Ga4IQJ88LNSahiVAS3ZsBOK1BECgNxWpMNYZQBiyutVz0vU/XVDfMqfrFkCgT+RJ0rX9P0esxacAWARAzZVBtcGJ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MPDce7hkC0BAGHjuPVzsP/vL7snDAgZAzhlR2hscG0CNYrml1ZAKQIBIv30deCRAFCLgEKpU/z+KPEm6ZjIcQESjO4idqfU/tmeWBKipFUCd19glqjf9Pyy8y0V8ZwVAglSKHY3D4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jsh3KXXJ1D9LyXISSl/hP6a4quy7ovg/3nGKjuSSFkDGhQMhWQAMQG3n+6nxEiRAsP7PYb48AUDWHCCYoycYQJZdMLjmjuo/zHoxlBONE0AQdR+A1CYCQDliLT4FQAhAEk4LXvSV4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a4Ko+wBEEEA+0AoMWV0bQAg9m1WfK/4/gPEMGvpHHkBfe2ZJgBoJQPtcbcX+8iRAb9Of/UjRBEDJWdjTDp8aQA6jIHh8++o/gXhdv2BXE0CVDtb/OYwAQNwpHaz/cwZAv0NRoE9k5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SYPb2sJz7z/ImLuWkM8IQIjX9Qt2AwdAokW28/3UH0AwR4/f2/QQQFjKMsSxLiZAvOgrSDPWA0Dp8Xub/mwaQGR1q+ekd/A/fZHQlnNJFECAmlq21hf/P76fGi/dpAVAVffI5qp54D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8kHPZtXnB0Da/pWVJiUjQBWL3xRWKt8/kwA1tWwt+z9XPsvz4C4GQOrnTUUq7CJAp8tiYvPxBEC+2ebG9CQaQLVPx2MGqgdAZAYq49+HH0BW1GAahg8DQB5tHLEWXwZAaM2Pv7So5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E2HD0yulBEAxQni0cYQhQBFtx9Rd2dQ/8PlhhPBo/T9XPsvz4O4HQGwJ+aBnUyRAvyuC/62kA0D4qpUJv/QYQK+ZfLPNTQdAMBLaci6lH0D8xteeWVIBQOzdH+9V6wZAajF4mPZN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n1kSoKaWBkAaho+IKXEiQJX0MLQ6Ods/IQIOoUrNBUDyzTY3picGQDfg88MI0SNALc+Du7N2AUDEfHkB9rEXQPuRIjKsYghAjiPW4lNgIUDiAWVTrnABQCodrP9zGAdA/p5Yp8r35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ARjPoKF/BUCoNc07TlEdQGNeRxyygdo/yXGndLB+9z/8471qZYINQHctIR/0rCRAzczMzMwMB0CA8Qwa+occQNWVz/I8uAFAUrgeheuxGUBcVfZdEXwAQLK61XPSewRA+P4G7dXH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jPM3oRABBEARHm0csRYYQPEpAMYzaAxATBqjdVS1FkDb3JiesAQMQIXrUbgeJSVAKA8LtaY5A0AVHcnlP8QZQF8M5US7SgJAavtXVpr0HEAZyol2FVL9P+5Cc51GWgNALBA9KZOa4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hc5r7BLVAkDiWBe30QAaQD55WKg1Tf4/4V0u4jtxH0AmUwWjkvoMQCv2l92TpyVAeUDZlCt8AEAqOpLLf+gZQObo8XubvgJApIgMq3iDHkAy5q4l5IP/P2whyEEJ8wNAIqev52sW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3C4012mkBkCaX80BgqkgQGJKJNHLKBZAjjo6rkb27j/g2/RnP9IJQFeyYyMQfyNACoDxDBp6C0BRa5p3nKIdQMDPuHAgZAFA5BQdyeX/F0AOT6+UZYgAQCkiwyreiARAUBiUaTQ54D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GAltOZdiAkAgXtcv2G0aQD230JUI1OY/ur2kMVpHI0CTGARWDm0JQEtZhjjWpSRAJcy0/StrAkASwqONIxYbQJayDHGsi/Q/C170FaS5GEBApN++Dpz9P7x5qkNuRgRAzzEge7174z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P1JEhlU8BEBd3EYDeGspQNP2r6w0Keg/HooCfSLPHUBjl6jeGlgKQCsYldQJaCVARpkNMsmIB0AKEXAIVWocQEeP39v0Z/4/14aKcf7GHEBseHqlLIMAQI+qJoi6DwdALei9MQQA5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U+i8xi4RBEAnpaDbS/oYQAucbAN3IOM/UrgehevBIUCF61G4HkUHQKNYbmk1RCNAWaMeotGdAkBbzqW4quwZQKSIDKt4IwBANLqD2JnCF0CfPCzUmmYAQGSvd3+8FwhAU5PgDWlU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rkfhehRuAUBg5dAi23kXQH1cGyrG+eQ/DVTGv88YE0DytWeWBGgHQNPe4AuTiSRAR8mrcwxI/j97iEZ3ENsWQBQ/xty1BPU/teBFX0G6FkB0QX3LnK7/Pye9b3ztWQNAknajj/mA4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+rMfKSJDBEDBbti2KJMXQFXa4hqfydU/BARz9Pi9CUBuUWaDTLIFQNpyLsVVxSNAcm2oGOevA0AM5US7CskYQN7lIr4TswJAigJ9Ik8yGkDVyoRf6mcBQK4SLA5n/gZAceMW83PD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UPwYc9cSBUDlCu9yEV8gQL7e/fFetdU/4syv5gCBA0DT2cngKHkHQHrkDwaeKyNAKzV7oBVYBUB+42vPLCkcQGHgufdwiQNAD5ccd0pnHUCAmlq21pcAQHkGDf0TnAVAeGLWi6Ec5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3+ALk6mCBkDlfoeiQL8eQCE7b2OzI80/fH4YITxa/j987ZklAWoIQEFl/PuMiyNAtHHEWnzKBEAKaCJseDocQEP/BBcrqgRASS7/If02HUCoUrMHWgEBQIJWYMjqVgVAi+B/K9kx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/7J78rCQAkCiXYWUnzQdQGiu00hLZek/mWTkLOypEUCXcymuKrsIQOCcEaW9ASRA+HDJcad0A0BbzqW4quwWQFslWBzOfPs/dlQ1QdQ9GkCUpGsm32wCQJUO1v85DAhAai43GOow5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P5EnSdeMCUBmFMstrRYhQBzTE5Z4QNQ/PgXAeAYNAUA5C3va4S8LQHL5D+m3LyRA58b0hCWeCkBKJNHLKLYbQA4V4/xNqARAeCgK9Ik8IEBsIchBCTMDQObLC7CPTgZASkONQpLZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tRoS91h6/D/sUbgehcsfQFuZ8Ev9PPU/eo1donrr9j+oV8oyxHEGQAu1pnnHKSRA4L4OnDNiBkC8s3bbhWYdQKG5TiMtVQhAa5+Oxwz0H0CGVbyReWQCQIgRwqONIwdAyzDuBtFa5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bRyxFp8CAkBiEFg5tOgbQNi2KLNBpg9A9rTDX5N1CUCtUQ/R6A4RQL8OnDOiVCVAH/RsVn3uAUCiXYWUn1QYQBVXlX1XhABABaipZWs9G0C1VN6OcNoAQCU7NgLxOgVAyLH1DOEY4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kiIyrOKNBUAr2bERiAchQO/GgsKgTNg/+yKhLefSAUCMvoI0Y9EIQME5I0p7gyVACtejcD2KBEAxthDkoCQbQKK0N/jC5P4/Njy9UpZBGUBQwkzbv3IAQDgyj/zBwANA2ZWWkXpP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oOBiRQ1mA0B0XmOXqF4eQIWxhSAHpQ5Ap5GWytsR+T8yWkdVE0QNQNO84xQdKSRAWi+GcqKdBUAW3uUivlMbQKt4I/PIXwFAC5jArbv5HUC78lmeBzcAQDpdFhObzwJAzLOSVnxD3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m8k329yYB0AfLjnulK4hQN+I7lnX6Ok/gQncuptnDkDGbTSAt4APQMRCrWnekSdAKQXdXtJYA0Ac6+I2GkAaQACpTZzcbwFAj8cMVMb/GEDcY+lDF5QAQEG3lzRGawZAoBhZMsdy5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kej2ksboAUATSfQyitUhQFXejnBacOc/mPp5U5FKDEC0PA/uzloQQJ7vp8ZLtydASnuDL0ymA0B5knTN5DsbQPRPcLGixgJAIO9VKxN+GkABE7h1N8//Py/6CtKMRQRALh7ec2C55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4dHGEWvxAkB8REyJJKojQNAPI4RHmxVAH7+36c/+AUBwfO2ZJWEQQDeJQWDlcCZAXf5D+u3rAUD+SBEZVhEYQL01sFWCxf4/PwCpTZycHUCYUSy3tNoBQDOK5ZZWwwVApKfIIeJm5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oFT7dDzm+T9Smzi53yEVQAg9m1Wf6wlA/Bhz1xIyEEC1bK0vEloGQPDErBdDeSJAgpAsYAK3B0CC/61kx6YaQKyQ8pNqH/o/Tnrf+NqzGkAtJjYf14YAQPZAKzBktQRACeHRxhFr4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AaQ2cXJ/CEB/MPDce1gdQAH76NSVT/Y/e/fHe9UKB0ArNXugFVgIQIlBYOXQwiVArrZif9m9AUArpPyk2scZQOepDrkZ7vA/NKK0N/iCFkBPzHoxlJMDQJkNMsnIGQVAfzFbsipC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T5KumXyz9D/ZJaq3BlYeQA8om3KF9/w/9UpZhjhWDEAyPWGJB5QLQPJBz2bVhyVAMA3DR8QUAkBEqFKzBxoaQBhDOdGuwvs/lLw6x4CMFkBjf9k9edgAQB04Z0RprwVAGlHaG3xh4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EheARulS7b96qkNuhhsaQEJg5dAiWzFA4iNiSiRR8z9qpKXydoQIQIrlllZDIiNAWTSdnQxOA0CQ96qVCZ8ZQC7nUlxV9vo/OiNKe4MPGkDvVSsTfin8P1DCTNu/cgRAsfhNYaWC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/wQXK2ow87/JPPIHAx8jQFXBqKRO4BBA4BCq1OwhFkCwcmiR7TwPQAskKH6MeSZABhIUP8YcBEAEyqZc4Z0aQII5evzepvw/xy5RvTWQGECA1CZO7rcCQHy45LhT+gVAqMZLN4nB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ijve5Ldo4b+oNc07TjEhQNklqrcGVhxAq7LviuB/+z9+HThnRCkOQDJ3LSEfdCZAETY8vVIWBkDPTgZHycsYQDojSnuDL/0/Ztr+lZWGGEDZlCu8y8X9P7vyWZ4H9wRAlFD6Qsj54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gjy7fOvD3L/RrkLKT2ocQJM6AU2EjQhApwUv+grSBUCAYI4ev/cIQGVwlLw6FyNA3nahuU7jBEDXNO84RYceQJTZIJOMnAFAWJBmLJquHUACmggbnp4BQN4f71Ur0wdAknU4ukr35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p0BmZ9G74L/opPeNr/0gQNIA3gIJig9A5nlwd9YOGECmJyzxgLIGQNhHp658tiNAnx9GCI+2BUAvaYzWUdUYQJOMnIU97QFAhc5r7BK1G0BuNIC3QMICQB0Dste7/whA+P2bFye+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XKVgMvp2sT8HX5hMFawlQCPb+X5qPBxARuuoaoKoFEDzdoTTghcLQN9PjZdukiVAIc1YNJ1dB0CHbYsyG2QZQMSUSKKXkQZAEK/rF+ymHUCBJsKGp9cBQMbE5uPakAdAeQJhp1g15j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nRGlvcEX9D9gWWlSCvoXQEOtad5xivc/28TJ/Q6FAkAHQrKACRwOQHGsi9towCVA+n5qvHQT9D/9n8N8eUEXQB+duvJZHvc/GRwlr86RGECTV+cYkH0BQL72zJIA9QRAVp5A2CnW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VU0QdR8ACECM1lHVBPEcQPTg7qzd9vs/fZHQlnOpGEB4YtaLoRwOQHh6pSxDvCRAe2ZJgJqaBEBN+KV+3nQZQCpXeJeL+PE/s++K4H/LFUBxVdl3RXABQBbB/1ayIwNAehnFckur4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0jqqmiAqBkCUap+Ox+wcQE8g7BSrBuc/a32R0Jbz/j9bttYXCe0NQEtZhjjW5SZAtLCnHf6aAkCFd7mI7wQZQDS6g9iZwgVAHooCfSJPHkBYVpqUgu79P+qymNh8XAZAcVrwoq8g4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eO49XHLcBUDRrkLKT3ojQFX7dDxmIOQ/hhvw+WHEAkDEJced0gEMQBNhw9Mr5SVAenB31m67BUB6qkNuhpscQGr7V1aaVAZAVkj5SbVPH0Bhjh6/t2kBQLsKKT+p9gRADcaIRKFl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LWACt+4mCkDttgvNdVocQOPiqNxEreU/9bnaiv3l+z9+b9Of/QgLQOVhodY0TyVAglZgyOrWB0DLZ3ke3B0aQNu/stKk1AlADat4I/N4IECwA+eMKO3+P3ctIR/07AJAxLMEGQEV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kWEVb2TeCECPcFrwoq8gQOLl6VxRyuA/83aE04JXB0Bos+pztZUIQFfsL7snzyRAilkvhnIiBkBtxf6ye/IdQAWLw5lfzQFAfuNrzyzJGEDluFM6WL8CQGoYPiKmxAZAcRx4tdyZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZmZmZmYmA0DfMqfLYmITQMXJ/Q5FgQ5AomKcvwmFGEBmg0wyclYQQNxoAG+BBCZA1XjpJjEIAkC0PA/uznoWQHf4a7JGvf0/6J/gYkXNGUCc+dUcIJj8P9BE2PD0igJANSkF3V7S4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c51GWiovDEAp0CfyJEkfQKipZWt9kfY/kX77OnDO+D93Z+22Cw0HQBNhw9MrVSNAgH106sqnBkDuCKcFL/oZQPs/h/nyAvA/y5wui4nNFUCbPdAKDJkCQMXJ/Q5FAQlArFPle0Yi5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gsr49xkX8j8YeO49XDIWQL/xtWeWBPY/7s7abRdaEkDhl/p5UxEGQN3NUx1ysyNA10y+2eYGBUDI0ocuqK8bQKJFtvP91Ps/t5xLcVV5GECmJyzxgHIBQOnxe5v+LAdA3BK54Az+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Q2+MJkq/z8OEMzR49cYQGoTJ/c7FA5AFOgTeZL0AUAvqG+Z02UJQM0Bgjl6fCJAJsed0sG6B0AhsHJokc0bQLGnHf6abABAlLw6x4DsGUB798d71cr8P1zJjo1A/AdAkZ23sdkR5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1PGYgcq4B0DR6A5iZ0obQE0QdR+AVPs/cT0K16OwAkBzhXe5iK8IQHR7SWO0TiNAQN6rViZ8B0APKJtyhZcaQNRDNLqD2P8/FHmSdM2EGUAuHAjJAqb8PwzIXu/+OAdA7kPecvXj4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KpFEL6OYA0D4wmSqYFQlQKX0TC8xFug/zlMdcjM8HkBCsoAJ3LoMQFfsL7snbyVArmTHRiAeBUBYyjLEsQ4bQCeDo+TVeQBAHM78ag7wHEBOYhBYOfQCQAYv+grSzANAlq/L8J/u4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pyIVxhYCDEDBOSNKe6MmQHf4a7JGvfE/1sVtNICnMUCWCb/UzzsQQDEIrBxahCZA8u8zLhyIBEDvj/eqlekWQMkCJnDr7gJAi/1l9+QhGUC21hcJbTkBQDTXaaSlMgRAgzXOpiMA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"27+y0qQUCECyne+nxkskQH1cGyrGOQVAu9Vz0vumH0DjiLX4FAAQQLhAguLHOCRAN1SM8zfhBEBeY5eo3toaQKq3BrZKMARAC+9yEd+pGUCneccpOhICQEcgXtcvGARAHxMpzeZx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lPsdigI9AUD1LXO6LPYiQM9r7BLVmwBA/wkuVtRgE0CPNo5Yiw8IQE3zjlN0pCVArvAuF/GdAkAgmKPH700cQASQ2sTJfQFAC2MLQQ5KHECuR+F6FC7+P2vxKQDGcwJAw2LUtfa+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D+7O2m1XAUDPTgZHyascQCy3tBoSNwBAnDOitDf49j/nHafoSC4PQOMZNPRPkCNANxrAWyDBA0BBZfz7jAsaQJjArbt5Kvo/QE0tW+urFkAiVKnZA20BQAtBDkqYaQZAmiUBampZ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WRe30QDe+z8Kv9TPm4obQMfXnlkSIANAqbwd4bRQIkAPRYE+kWcJQIlBYOXQYiZA1c+bilSYBkBPHhZqTfMaQJBOXfksz/0/6IcRwqMNGkAKur2kMVr/P03zjlN05AJAnfS+8bVn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6iEa3UEsAkAtIR/0bBYUQE65wrtchANAL26jAbwFDkBiSiTRy8gQQJMYBFYOzSZAr5RliGNdA0BN1qiHaFQZQJEKYwtBzgBAY+5aQj7IGEAwnkFD/0QDQAN4CyQoPglAXHfzVIdc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h6JAn8gTEkAhsHJoke0kQE0VjErqhPU/eQYN/RPcCUAabsDnh3ERQOeMKO0NniZA0/avrDTpBEDT9q+sNCkbQHr83qY/OwFAObTIdr7/G0B4CyQofswCQPuuCP63UgRAO8Q/bOnR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DOVEuwqp+z82sFWCxaEUQMBbIEHxYwpAEojX9Qs2BUDGUE60q5AJQLHh6ZWybCRAthDkoITZBkCTV+cYkN0aQBcOhGQBk/g/FCLgEKo0FkCoV8oyxDEBQJaVJqWgmwdAbATidf0C5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w4GQLGACCECWIY51cfskQCTVd35Rgt8/6ZrJN9ucB0AT1VsDW+UKQKMBvAUS1CRAf4eiQJ8IBkCsqME0DJ8dQNatnpPet/w/tTLhl/rZGUB3+GuyRn0CQD8AqU2cHAdAMT83NGUn5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C+9yEd8JA0AOLbKd72cjQDFCeLRxxPA/IAw89x4eIEBhcTjzq/kKQPMC7KNThyNA+1xtxf7yB0DHYwYq4x8aQKSl8naEEwFAo8wGmWTEG0D430p2bAQEQNF5jV2iugVAGyrG+ZtQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+THmriWkDkCXOV0WE3sbQKJ9rOC3oeE/IO9VKxM+A0DnxvSEJR4MQOtztRX7iyZA4zYawFvgCUA6HjNQGQ8gQItUGFsI8gdAWJBmLJpuHUCiYpy/CUUBQHtmSYCamgdA+7FJfsQv6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cJS8OscADEB5dY4B2UsfQKn26XjMwPY/rMWnABgvGEChEAGHUCUPQEtZhjjWRSRAyJi7lpCPA0DhXS7iO/EVQJ92+GuyRvQ/T3XIzXADFkDvchHfidn9P0j+YOC59wNA3+F2aFiM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SyGQSxx55z9381SH3CwRQO49XHLcKf4/ba0vEtoyDkCKPEm6ZjIKQP8h/fZ1wCVAQPuRIjKs/j8U0ETY8LQaQPsioS3n0vY/+GuyRj3kGEBBvK5fsFsCQLPSpBR0OwZA9+XMdoU+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LCtNSkG36j8D7KNTV74aQC+jWG5ptfM/kdWtnpPeC0BfJLTlXEoLQLIubqMB/CVAtHHEWnyKAECQTl35LA8bQCibcoV3Ofk/cVXZd0UQGECGIAclzLQDQM0eaAWGLAdA+s+aH39p5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pg9dUN+y/j/J5T+k374OQI+lD11QvxRAGlHaG3yBF0D0/dR46aYLQPfkYaHW1CRAcVXZd0VwAEBaDYl7LL0WQA0a+ie42Pw/7MA5I0pbG0AVHcnlPyQBQDVB1H0AkgZACTiEKjX75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GZC93v0xA0DFILByaDEQQLHdPUD3ZeM/x2MGKuO/FkAX2c73UyMOQHZxGw3g7SVARG6GG/C5AUCWCb/UzxsZQNi2KLNB5gBAdOrKZ3leGkDt0/GYgcr/P/uRIjKsIgZAdcdim1Q05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fjUHCOYoAEB4YtaLoSwgQOs56X3j6/c/1T4djxloC0ApBd1e0lgIQOQUHcnlXyRAlQ7W/zmMAkD+DkWBPrEYQNnr3R/v1fI/xJlfzQHCFUDKplzhXa4DQLJjIxCvKwRAl8lwPJ+B5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OjsZHCUvBUDbM0sC1DQXQGlVSzrKweo/ryXkg54NDkCTNeohGl0KQE7RkVz+IyVAI4RHG0fsAEDzdoTTglcZQN9sc2N6AgJAqd4a2CohF0B2N091yE0BQJ7vp8ZLNwVAvqHw2Tq44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wkzbv7JSAEAf9GxWfS4XQMJLcOoDSes/UAEwnkGjEEB2ptB5jR0KQBUdyeU/BCVAHZQw0/bvAkCKk/sdioIaQCWvzjEg+wFAbxKDwMpBF0DG4cyv5oABQPJ7m/7sBwVANV1PdF144z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jjulg/V/+D+uu3mqQ14hQDnVWpiF9uo/9pfdk4eF9D9TIoleRjEJQKg1zTtOcSRAXD0nvW88BECBQ6hSs8cZQLfu5qkOOfw/qBjnb0IBGkDNWDSdnUwBQPQau0T1FgRADeTZ5Vuf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XRYTm49rEkBqh78ma3QYQIcW2c73kxBAls/yPLh7AEAEyqZc4d0PQAaBlUOLTCRArd12obnOA0BxPQrXo/AWQPQVpBmLZgJAlnhA2ZRLG0B7oBUYsroAQI/f2/Rn/wRAj8cMVMa/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QYLix5hbEkCif4KLFVUXQFaalIJu7wxACObo8XubAUCSy39Ivz0QQPd14JwRJSRAJZLoZRQLA0C9APvo1BUXQLSrkPKTKgJAfa62Yn95G0AUBfpEnuQAQMOedvhrMgVA3J4gsd094T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HsTOFDoPFkA5RUdy+U8kQKMeotEdRAtAuDtrt11IEEBSJ6CJsKELQN/gC5OpQiVA6uxkcJQ8/D+hZ7Pqc/UWQLgehetROPo/PWGJB5TNGEDUSEvl7QgCQEZCW86lOAZAYaWCiqrf5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"opdRLLfUF0DdmJ6wxHMjQKFns+pzNQZAU1xV9l2RDkCze/KwUGsMQLhAguLHeCVAD9HoDmJn/D9sJt9sc2MXQCodrP9zGPw/Q5CDEmb6GEDiI2JKJNEBQPPIHww8dwZAVg+Yh0z55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h9wMN+CzDUDmkT8YeE4dQKPMBplkRCNAZF3cRgM4DUD+t5IdG6EQQGsr9pfdUyZAPj+MEB5tAkD0iTxJuiYYQBQF+kSeZABAX0GasWgaG0C1FfvL7sn/P1TGv8+4cAVA3j1A9+VM5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y7ml1ZB4BkDbFmU2yNQgQP5g4Ln3MABA8gwa+ifYEUA25QrvcnESQCntDb4wOSZADr4wmSrYAUDXo3A9CvcXQL4Ts14M5fs/2UKQgxKmGUB/wW7YtqgBQILix5i7lgVAYJD0aRV94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LLe0GhJ3D0Ct3XahuW4gQCpvRzgtOAdArOKNzCP//T+ZDTLJyFkKQKbydoTTkiJAG0zD8BHxBUAoYabtX/kbQFD8GHPXEv8/mSoYldSpG0DfT42XbpL/PyHqPgCpDQZAEvbtJCJ84T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JQaBlUMLC0AFFytqMO0bQP3ZjxSR4fg/EK/rF+zGAUBwtrkxPWEKQOXQItv5XiVAdEaU9gZfA0AoCvSJPGkZQAT/W8mOTQRAhslUwahEG0CPwvUoXA8BQGWqYFRS5whAC+vGuyPj5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h/4JLlaUC0BdM/lmm1shQGPuWkI+6P0/LhwIyQIm+j/8AKQ2cXIOQOSDns2q7yRAAz4/jBBeAEAP1v85zBcYQFjiAWVT7gFALuI7MeuFHUCFfNCzWTUBQKbVkLjHEgdAwELmyqDa5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M+GX+nkzEUB+GCE82ggjQIjX9Qt2AwRA/Knx0k1i/j9AwcWKGkwMQG6jAbwFciRAq8/VVuzvAkCOHr+36Q8ZQDi+9sySgP8/WOIBZVMOHUCXHHdKBysAQFLVBFH3wQdAV3xD4bP15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QmDl0CKbDUDI6lbPSe8VQBnFckurIQ1AiEZ3EDuTDECRfvs6cA4FQKrx0k1iMCNA529CIQJOBUBcd/NUh5wbQHqqQ26GGwRA3EYDeAtEG0CJDKt4I/MBQPH0SlmGuAVAMIDwoUTL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iC6ob5lTBkABNbVsrU8aQJYmpaDby/A/PUSjO4idCUDBc+/hkuMCQGYUyy2tRiNA7uvAOSPKA0Dg88MI4dEbQHxhMlUwagJA0a5Cyk8qGUDikuNO6WACQARWDi2ynQRATRWMSuqE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NuohGt0BCEB3EDtT6EwiQPcGX5hMlQBAHPD5YYTw+z86QDBHj58RQDtwzojS/iVAwOyePCxUAUDBkNWtnpMWQHmSdM3kG/s/Ups4ud+BG0DmXIqryr7/PxYTm49rAwZAY3st6L0x5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WK1M+KV+EECIgEOoUtMXQOF6FK5HIQZAzSN/MPDcDkBGsdzSakgKQKOSOgFNxCVA/B2KAn0iA0C4HoXrUfgaQDQuHAjJwgBAQiYZOQsbGkBXCRaHMz//P9hkjXqIBgVA/I9Mh05P5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GOyGbYsyCkAnZr0YyikeQF6dY0D2eglA2nIuxVUlFEAZraOqCWINQKYKRiV1YiRA8gwa+ic4A0BxICQLmGAXQL1SliGOdQVAnKc65GbYHUBJgJpatlYBQB2s/3OY7wdAH9lcNc8R4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lzldFhOb9D9vEoPAymEZQJ9x4UBIlgpAqDrkZrjBFUBHPUSjO4gKQG8Sg8DKISRAJXoZxXILCEBsskY9ROMZQAAd5ssLMPY/ayv2l92zF0BT6LzGLlH/P/iNrz2zJAVAlN43vvbM2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IEHxY8xd8T85fxMKEdAWQKxWJvxSP/w/wf9WsmOj/j+5quy7IvgQQEw3iUFgxSVA4iNiSiQRA0Bt5/up8TIbQNMTlnhA2fs/jKGcaFfBGED5D+m3rwP8P5HQlnMprgNAe6Lrwg/O5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NPRPcLGiDUAep+hILn8fQD8AqU2c3AxARiV1ApqYIUAKLlbUYFoGQDvfT42XziRA4IRCBBxC+j9txf6ye5IWQFlMbD6ujfc/VFc+y/PAFkDKw0KtaR4CQGrecYqOpARA5IdKI2b23T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hLuzdtsF8z8ychb2tMMGQL9gN2xblPI/4syv5gBBE0ByM9yAz88MQBIUP8bcFSRAuoPYmUKnBkBGX0GasegaQB5QNuUK7/k/+u3rwDmDGEB3LSEf9Oz+P6JinL8JhQVAZtzUQPO55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1QRR9wEIAkD1LXO6LIYSQDoeM1AZ3xNAexSuR+GaEEBjl6jeGhgOQL6fGi/dBCZAEEBqEyc3B0AFUfcBSO0bQLmLMEW5NOk/hbacS3HVFECqmiDqPkABQKshcY+ljwZAcCL6tfXT4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lX1XBP+bDkCAt0CC4kccQNr+lZUmJQtA6dSVz/I8C0DTMHxETIkJQBpR2ht8gSRA9DKK5ZbWA0DvchHfiVkYQJWfVPt0vARAEoPAyqGlHUDSNZNvtrn+P420VN6OcAVABMk7hzJU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gq0SLA7nDUBNhA1PrzQlQL9jeOxnse4/O+RmuAG/HUDbxMn9DkUMQBsN4C2QQCZAcOtunupQBEDsEtVbA9sZQDhnRGlvsAFAZED2evcnG0AxCKwcWqQCQJp8s82NKQZAX+0ozlFH5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/vFetTLhBkBDHOviNhooQM1YNJ2djPI/OgZkr3cfFkABh1ClZg8QQHbgnBGlPSZAmPp5U5FKA0BwsaIG01AYQDtT6LzGLgNAsi5uowF8G0B3Z+22C80AQKvnpPeN7wRAz4HlCBnI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G2SSkbMwCEAkufyH9DsoQLrzxHO2AO4/JLTlXIrrEkB8D5ccd8oQQIPAyqFFdiVAfO2ZJQGqAUB0Ka4q+y4aQHsxlBPt6gBAOdGuQspvG0CPjUC8rh8BQAJIbeLk/gNAkgThCihU4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lDDT9q8sEUCSlsrbEY4cQMbhzK/mAA1AbJVgcTgzG0CqglFJnQARQDy9UpYhridAduCcEaV9CEC46c9+pGgbQDfg88MIoQFA1zTvOEUHF0AuOe6UDtYBQHIW9rTDHwVArORjd4ES4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xXJLqyGxEkDCo40j1kIgQCKOdXEbLRBAKa4q+64I8T+fq63YX7YPQGx4eqUsIyVAFFysqMF0AUBOet/42hMaQKVJKej2kvk/xvmbUIhAG0CFfNCzWbUAQHldv2A3rAZARztu+N304z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jq89syRAAUBHIF7XL5gbQCWS6GUUS/4/AWpq2VofBkAouFhRg+kJQLpJDAIrZyRALc+Du7O2B0Dzk2qfjicbQMGopE5AE/U/gGWlSSnoFkBlU67wLpcAQNvEyf0ORQhAbeUl/5M/5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z6Chf4KLA0DP91PjpbscQIOhDivccuk/QMHFihpM8z9aKm9HOO0GQI2XbhKDACRARl9BmrHoBkA3ww34/JAaQLIRiNf1SwNAngyOkleHGUBPO/w1WSMBQLkZbsDnRwdAj3IwmwDD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MA3DR8RUB0AkRWRYxXscQIQNT6+U5fQ/n82qz9VW9j9i1ouhnOgGQDxrt11oviNAsAPnjChtBEB+GCE82pgaQD90QX3LHANA3nGKjuRyF0Ap0CfyJGkBQP5l9+Rh4QZA2J5ZEqCm4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D7QCQ1b3DEB6GcVySwsaQJmByvj3Gf0/FW9kHvkDE0Am5IOezWoKQPJBz2bVJyRAat5xio7kBUCqDrkZbuAbQJ3X2CWqdwFACKwcWmS7HkAp0CfyJCkCQCp0XmOXKAZAyERKs3mc5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XdxGA3iLB0C9UpYhjrUdQGk3+pgPiOE/7PoFu2H7E0Bdp5GWytsPQFGIgEOo8iNASu8bX3umBEBv2LYosyEaQMpPqn06ngRAfnTqymdZGUBPkq6ZfHMAQKyowTQMHwlA6BN5knTN3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t3pOet84AkDvG197ZskQQGZqErwhDeg/soUgByXMCEBYHM78ao4GQOC+DpwzgidAM/lmmxuTAUDWxW00gNcYQPAzLhwISf8/e/fHe9VKGUC1iZP7HUoBQDkoYabtXwZA3e9QFOgT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RIts5/vpBUD+mqxRD3EaQLZkVYSbjNI/QrKACdw6C0B5knTN5BsLQF5LyAc9OyZAF9S3zOnyA0BT0O0ljREZQNTxmIHKeANAwmnBi74CGEB31m670JwBQOS9amXCLwhAqKj6lc6H4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0m9fB86ZBUAzUBn/PqMdQFd5AmGnWOA/wVYJFocz+T/qlbIMcWwGQDAqqRPQJCRANPRPcLFiA0A012mkpdIZQJCIKZFE7wJACyQofoy5HEB5Htydtdv/P51oVyHlJwNAeJrMeFtp4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2PULdsN2C0BIG0esxYccQDY8vVKWoQFAECOERxvHEECzJEBNLbsQQAskKH6MGShAYviImBJJAkAAOsyXF0AaQOuQm+EGPABATn/2I0UEHECmJyzxgPICQBYwgVt3swhAzzC1pQ5y5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EfxvJTt2BUDn+6nx0k0oQKJinL8JpRpAMCqpE9CED0CWz/I8uFsTQBx8YTJV0ChAuOS4UzpY+z/KVMGopO4WQFaCxeHMr/8/7zhFR3LZGkBzuiwmNp8CQJCg+DHmLgpA3PXSFAHO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UdobfGHyBUBsskY9RGMYQPBPqRJl7+g/LnO6LCb2BEDHSzeJQYAQQKMBvAUSVCZAK6T8pNonAUApeXWOAXkZQPkUAOMZtPw/I/PIHww8HECFJR5QNuUBQJ2dDI6SlwZAG9R+ayfK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ece6uI0GCkCsVib8Ul8dQEht4uR+B/o/v4I0Y9G0DEAwDcNHxNQOQGN/2T15OCVA/FI/bypSAkDhXS7iO/EVQC2VtyOcVgZAG0esxaegG0BXsmMjEC8AQEvIBz2bVQhAznADPj8M5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DHbDtkWZCkDso1NXPqshQJtattYXCfc/n6ut2F/2+j/60AX1LTMMQOF6FK5HISZAu7iNBvAWAUCWQ4ts5zsYQLK61XPSOwFAGxL3WPqwHEA0gLdAgiICQIvDmV/NAQlAkrHa/L/q4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6pWyDHFsAECXytsRTgsRQCLDKt7IPPU/NlmjHqIxHUDH155ZEuAKQAdfmEwVTCRADi2yne9nAECHinH+JhQZQBFUjV4NUOM/SgwCK4e2FUD92Y8UkeH9P3qlLEMcqwNAYASNmUQ94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zHoxlBMtB0CVYHE48ysRQPg0Jy8yAdQ/XHfzVIfcC0Daci7FVaUGQIcW2c738yRAxawXQzkRBkCWJqWg2wsbQKMjufyHdAdAXBsqxvk7GkBnJ4Oj5JUBQBdlNsgk4wJArKksCrso4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfBL/bzpCEA6r7FLVI8eQLqD2JlC5/U/VFInoIkQIkDWqIdodCcQQJ5eKcsQpyVAIk+Srpk8BEDsL7snD4sYQB0Dste7PwBA64uEtpzLG0AdVU0Qdd8DQITYmULndQdAeQPMfAe/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fGEyVTAqCEBmMbH5uJYaQApq+BbWjeo/myDqPgAJIkAzMzMzM5MQQAdfmEwV7CRAY3rCEg+oAUD8NVmjHsIaQJJ0zeSbbf0/VOOlm8SAG0BHdxA7UygCQHBCIQIO4QRA5nlwd9bu5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QBNhw9PrAkCg/UgRGXYYQKsJou4DkPs/bOwS1VtDFEA5ud+hKJAPQHbgnBGlnSRAXMmOjUA8+z8BTYQNTy8XQL5Nf/Yjxfw/ol2FlJ/0GUD2C3bDtkUBQJHQlnMpbgdA83FtqBjn2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3/3xXrVyBEBd3EYDeCsXQDIdOj3vRuI/TWcng6PkDEA/jBAebVwKQCSX/5B++yRATaHzGruECUDkFB3J5f8aQA2Jeyx9KARAxFp8CoBxHUCx4emVsgz/PyQLmMCtOwJAZjGx+bi25j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mPp5U5FKCUCvsUtUbw0VQDHvcaYJ2+c//Yf029dhEUCmm8QgsPIIQCUGgZVDiyRAMqzijcxjB0Bkr3d/vHccQHmvWpnwywJA4xk09E9QHEBT6LzGLtH+P6Wg20saowFABr6iW69p5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1GAaho+I/z9MT1jiAWUeQC0hH/RslgFAgZVDi2ynC0AbR6zFp0ANQGFUUiegySRAjKGcaFdhA0B8D5ccd4oYQIXOa+wSVfc/xEKtad4RF0DVz5uKVBgAQGWqYFRSpwdAZsHEH0Ud4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m49rQ8X4C0CpwTQMHzETQOOqsu+K4Pk/11HVBFH3B0ADz72HS44PQFZ9rrZiPyZAEDtT6LxGAUA2zTtO0dEYQNFXkGYsmvQ/c2N6whLvFUDMtP0rKw0BQAH20akrXwZAbhXEQNc+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+U7MejGU9j8qOpLLf2gkQATnjCjtjfg/n+V5cHcWDUD0N6EQAQcIQGKh1jTv2CRAB84ZUdrbBkB/EwoRcAgaQNFXkGYsmvw/omKcvwllG0BF8L+V7Nj7P/IHA8+9BwNAsW1RZoNM3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dnEbDeBtC0AJ4dHGEYsaQEPiHksfOvI/Vg4tsp3vC0BslWBxOLMNQOC+Dpwz4iVAnOEGfH6Y/T9zuiwmNp8XQB3J5T+kX/s/Gf8+48KBF0D1nPS+8fUBQP3ZjxSRYQVAsDxIT5FD5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gIKLFTUYB0C3Yn/ZPVkdQLKFIAclLBBAi08BMJ6BDkCu8C4X8R0JQD7o2az6/CRAwARu3c1TA0CnIhXGFgIYQDHO34RCRARA2sngKHkVGkCZ8Ev9vOkCQL4wmSoY1QZAFjJXBtWG6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"krOwpx2+DkB0e0ljtI4hQCAKZkzBmu8/gy9MpgpG/z+1w1+TNaoSQF3+Q/rtaydAKsb5m1BICECZu5aQD3obQEBqEyf3u/s/NnaJ6q2BHkB5zEBl/DsBQFD8GHPX0ghArOEi93R14T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hNOCF32F6D9wmdNlMbEeQBBdUN8yZwpAUu3T8ZgBD0BZNJ2dDM4DQNfAVgkWpyNA81SH3Aw3AEAg71UrE54aQMyXF2AfnQJA3LqbpzqkGkBS7dPxmAEBQHYyOEpe3QFA0SFwJNBg4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3UQtza0Qtr/fMqfLYgIYQEymCkYlVRZAeEXwv5VsBECZ8Ev9vKkMQDY8vVKWoSRAJEVkWMXbCEC71XPS++YaQOnxe5v+7Pw/bFuU2SCzG0D8+4wLB0L8P4fEPZY+NARA3QcgtYmT3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s9KkFHR7BEBcIEHxY6wTQAb1LXO6rApAG55eKctwGUCQZiyazs4NQJhMFYxKqiRABMqmXOHdA0B9kdCWcykXQBSuR+F6lPw/1NSytb5IGUDjGTT0T/ABQP63kh0bwQZAfCb752nA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cQM+P4xQDkDjx5i7ltARQHiXi/hOzPw/vLN224UmFkDh0cYRa/EKQKnBNAwf4SNAcRsN4C2Q/D9rn47HDLQWQKVOQBNhQ/k/HF97ZkmAFkCzzY3pCYsBQA3DR8SUSAZAmaCGb2Hd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MbYQ5KCEAEA57pQO1o8iQAvvchHfifQ/+mGE8GijAEAq499nXPgPQKyt2F92rydAr0LKT6p9AkD0/dR46eYZQEj5SbVPx/4/5X6HokDfGEDNO07RkRwBQEGC4seYewVAVyHlJ9W+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J4Oj5NVZEkDGounsZFATQHkGDf0T3P8/9pfdk4dFKEBSD9HoDqIKQMGopE5AEyRAGFsIclDCCkCGj4gpkaQdQEaU9gZfmP0/tyizQSaZG0Ac8PlhhLAAQCJseHqlrAVAiNUfYRgw5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pb3BFyYTAUD8Uj9vKtITQAiUTbnCO/I/C170FaTpIkDNdRppqXwKQH2utmJ/mSRA3LqbpzqkBUAkl/+QfvsbQCYBamrZWvw/G/UQje7AGUBqatlaX+QAQCcxCKwcGgZABK+WOzNB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dqbQeY3dCUBlARO4dUchQHf3AN2Xs+0/tWytLxJa9T/sF+yGbUsPQIhjXdxGIyZAT135LM/DAkCt+lxtxf4XQIOj5NU5hv8/2o8UkWF1GkBJ10y+2SYCQGMLQQ5KGAdAiCr8Gd6s5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QQ5KmGl7CUC7fsFu2LYcQIi6D0Bqk/A/QPuRIjJsAEAZVvFG5hEOQI2XbhKDYCVA7fXuj/dqA0Bs7BLVW6MWQL0d4bTgBQBAv4I0Y9FUHEC3XWiu0wgCQLQ8D+7OGgdAP+PCgZAs5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5E7pYP3fBkDm6PF7m44hQITTghd9BfI/BW7dzVNdDEC2hHzQsxkKQHzysFBreiVADYl7LH3oAEA2yCQjZ0EaQBLCo40jlgJA5pE/GHhOG0CSXP5D+u3+P4EJ3Lqb5wZAPdF14Qdn4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OZz51RygCkAwgVt38xQcQJMANbVsrfc/27+y0qQUAkC9OseA7JUQQLG/7J48jCZAjWK5pdXQB0AT1VsDW2UYQILn3sMlx/8/GHjuPVzyGEDO34RCBBwBQJ57D5cc9wFAeOxnsRTJ3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IzKs4o1MBECfAmA8g4YeQNvbLckBO+Y/rcCQ1a3+EUAtIR/0bFYKQOVhodY0jyRAv30dOGdEAkByUMJM278cQIF4Xb9gt/o/aD9SRIaVG0B0QX3LnK7+P5ccd0oHawdARpiiXBq/5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e4hGdxC7A0Ay5q4l5LMjQLRzmgXaHd4/HsTOFDovHkCrJoi6D0AGQEtZhjjWJSRA9UpZhjiWBEC4dTdPdcgWQKVOQBNhgwJAn47HDFQGGECHbYsyG6QAQJTZIJOMHAJALNMvEW8d4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L/oK0oxFA0DvycNCrSknQHFyv0NRoMc/F7zoK0hTH0CnP/uRIjIFQGNFDaZh2CNAl8rbEU4LAEC/ZU6XxcQZQEyJJHoZBQNAclDCTNt/GUDHuriNBvD+P+NTAIxnEAJAhsjp6/ma3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L/oK0oxFA0DvycNCrSknQHFyv0NRoMc/F7zoK0hTH0CnP/uRIjIFQGNFDaZh2CNAl8rbEU4LAEC/ZU6XxcQZQEyJJHoZBQNAclDCTNt/GUDHuriNBvD+P+NTAIxnEAJAhsjp6/ma3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZFjFG5kHA0Csi9toAA8mQD48S5ARUOs/HqfoSC7fEkAXK2owDcMHQCzUmuYdpyRAMPDce7hkB0CIgEOoUhMZQI4ev7fpz/w/qbwd4bQgGkDBc+/hkiMAQCLgEKrU7ANAlrTiGwqf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G0zD8BExB0D5g4Hn3vMiQE5HADeLF8s/6BN5knTN9z9vRzgteJEJQGwJ+aBnIyJAn1kSoKZWBEADz72HSw4eQF0z+WabWwRAnx9GCI9WG0B5dY4B2SsCQEWeJF0zOQhASWk2j8Pg4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IzKs4o1MB0B7FK5H4QohQFEU6BN5kgZAcOtunuoQ+T/esG1RZsMDQBmto6oJwiNAxRuZR/6gCUBAahMn95sbQF5LyAc9GwJAXfksz4NbHUAVxhaCHJT/P2dhTzv8NQRA8fW1LjVC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uTZUjPP3BEDA54cRwqMZQMbAOo4fquQ/z2vsEtUbBEAsDmd+NUcJQPwApDZxIiJAGAltOZeiAUCrsu+K4J8YQC4cCMkCJvw/jL6CNGNRF0BhTzv8NZkBQLivA+eM6AVAraI/NPPk4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rTQpBd3eA0B31m670IwgQEchyaze4eE/qKlla32RDkDaci7FVSUFQIenV8oyRCRAyEEJM21/AkCAn3HhQCgZQBMKEXAI1f4/63O1FftrGUDU1LK1vsj7P+FASBYwQQVAADs3bcbp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lq2GxD0WBUC/t+nPfuQUQEVHcvkP6eg/ychZ2NOODEDjx5i7lpAOQCMQr+sX7CNAM+GX+nlTBECVmj3QCqwbQMXJ/Q5FgQBAKa4q+66IG0ArajANw0f+P9FXkGYsWgZAie/ErBdD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CTiEKjW7D0AOEMzR47chQHMR34lZ7wpA+wW7YdsiAUCiYpy/CYUOQG+BBMWPkSZAFD/G3LWEB0CAZaVJKQgcQAWLw5lfTQJAcsRafArAHECOAdnr3R8BQP7UeOkmcQdAT5FDxM2p5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HXdKB+u/EkB5r1qZ8FsgQH8TChFwKB1AaMu5FFdVBUBCIQIOoUoRQAg9m1WfSyZA2uGvyRo1B0Bq9kArMAQcQLAD54wobf4/huY6jbR0HEDGhQMhWQABQHlA2ZQrPAZACoSdYtWg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d/hrskYdFEDfFcH/VrIcQN/gC5OpQiVANxrAWyBBAEBzuiwmNn8RQNv5fmq8tCVAzeSbbW7MCEC45LhTOjgcQJY+dEF9ywNAh/4JLlYUG0D7y+7JwwIAQEs8oGzK1QRAy4Y1lUXh4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+8vuycPCBsDnHafoSI4WQCdr1EM0OiBAFVeVfVeE/D82WaMeotEHQNlCkIMSxiNAEoPAyqFF/j987ZklAQoXQAK8BRIUv/I/cxHfiVkPGEDfN772zBIAQOTaUDHOXwRAdO0L6IW75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4NVyZyaY4r97SWO0jiohQEM50a5CyghA2nIuxVXlAEBxICQLmEALQNZW7C+7pyRAmbuWkA96+j8r2bERiDcZQHYyOEpenfg/AK5kx0ZAGEBa2NMOf40CQOz6BbthmwRA6BTkZyPX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7PoFu2Hb+b8MdsO2RfkeQF6AfXTqihRAF2U2yCTjDUD2tMNfk/UNQGuad5yiIyVAgosVNZjGCUDrxVBOtEsbQOFdLuI7Mfk/oOBiRQ3GF0A3ww34/DD7P/uRIjKs4gJAd0oH6/+c4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FCLgEKoUAkB7SWO0jmobQPEvgsZMIu8/wlHy6hyjH0CQa0PFOL8KQERpb/CFaSRAOGdEaW/w/j8486s5QHAUQCoAxjNo6P4/mDRG66hqGUCwPbMkQI0CQGcPtAJDlghA7dYyGY7n6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HZQw0/bvAEA+IqZEEn0hQIjyBS0k4OI/001iEFg5HECKH2PuWgIJQCh+jLlriSRAGoaPiCmR/j8wZHWr5yQUQE563/jas/8/twvNdRqpGECH4SNiSqQBQLmq7LsieAhAHEMAcOxZ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yM1wAz6//z91yM1wA14cQDcAGxAhrt4/TP28qUjlGUCk/KTap6MGQG40gLdAAiRAr1qZ8Et9AUCs4o3MI38YQNvcmJ6wxP4/LxfxnZjVF0Bd+SzPg/sCQLbz/dR4KQZA0bGDSlzH4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ufyH9NuXDUD5vU1/9uMgQAk4hCo1e/w/0CfyJOma/T9UNUHUfYAOQCGwcmiRbSVAV5V9VwQ/BUAAjGfQ0D8bQD24O2u3nQJAzGJi83EtG0A0uoPYmQIAQKG5TiMtlQJAmFEst7Qa4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MUJ4tHFEAkCk/KTapwMdQGppboWwGt8/mRJJ9DLKBkDgLZCg+LECQGFUUiegaSRA4XoUrkfhAEDgvg6cMwIZQGXfFcH/Vvs/2/l+ary0GUD8byU7NgL+P+Qs7GmHPwVAAaJgxhSs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YFlpUgo6AEB1jgHZ610cQIo73uS3aOk/mpmZmZkZ+z8k1uJTAIwJQC7nUlxVxiNA7pQO1v+5AkCmRBK9jIIZQPz7jAsHQvo/3ZiesMTjGUC/DpwzorT/PzIge737YwRAxeI3hZUK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+kSeJF2zAUCmft5UpKIiQF9egH10au4/Eyf3OxQFC0D4Nv3ZjxQIQLDmAMEcHSNACoUIOISqAkCrCaLuA3AaQHmSdM3kG/4//wQXK2rQGEA8vVKWIY78PxqGj4gpUQFATwXc8/xp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KNU+HY/ZBEBYqDXNO+4kQLmrV5HRAdQ/MJ5BQ/9EDUDUDn9N1igGQJYEqKllmyNAVfZdEfyvAEAX2c73U4MXQJolAWpqmQVAjdE6qpogH0AnTu53KIoAQGqHvyZrVAdAQbgCCvV04D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FTqvsUuUBUC0jqomiFoiQJcaoZ+p19U/RgiPNo64F0D4iJgSSXQHQP1qDhDMYSNAWHOAYI6eAkCRD3o2q14YQLN78rBQ6wNApdqn4zGjIEB2/YLdsC0AQCAMPPcergdAr+yCwTX34D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bosyG2TSBEBxICQLmIAjQOtU+Z6RCNc/w7ZFmQ1yDUB31m670JwHQJgvL8A+miNAtvgUAOOZAUAG9S1zuswVQPyp8dJN4gRAXMmOjUBcIECUMNP2r+wAQC+ob5nTJQhA58b0hCUe3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WkdVE0QdCEBi1ouhnAgiQL0d4bTgRfs/UmFsIchhF0AwR4/f2/QPQN4CCYofYyRA3nahuU7jCECbVZ+rrVgZQCkiwyreyPA/VaTC2EIwF0BT6LzGLhECQJxQiIBDaARAs14M5US74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lDDT9q+sBUBCQ/8EF6sWQJ7Swfo/RxJAu/JZngd3/D9GCI82jhgFQDqSy39IfyRAUkSGVbwRAUDNHmgFhmweQKyL22gA7/4/evzepj/7FkDFrBdDOdEBQM6qz9VW7AZAZJC7CFMU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+MJkqmDUA0CoHf6arPEcQDbNO07RcRpA8l61MuGXA0COdXEbDeAEQGFUUieg6SRA+b1Nf/ajA0CJXkax3LIcQFiQZiyazv8/HF97ZkngGEBlx0YgXhcCQCegibDhqQdAWI/7VuvE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8piByvh3AUCVfVcE/0sjQF2/YDds2xtAPu3w12SNBECsHFpkOx8KQNSCF30F+SJAT135LM/DBUBj7lpCPogeQACMZ9DQv/g/DeAtkKDYF0AXghyUMJMAQB+i0R3ETghAMZqV7UPe5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tb7Z5sZ0+z8cfGEyVbAYQPceLjnuFPo/EsKjjSOWBkB3LSEf9CwIQN/gC5OpgiRA43DmV3PABkDjx5i7ljAaQB2UMNP2L/w/D2JnCp33GUB5knTN5NsBQABXsmMj0AhAK4VALnFk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"et/42jNLBEDyBwPPvccWQOdvQiECju8/WrvtQnN9GkBX7C+7J08HQPvL7snDwiRAV3iXi/hOBEDvA5DaxEkZQNF0djI4CgFA+SzPg7uzGUBb07zjFB3/PzMzMzMz8wJAmuleJ/Vl4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Er2MYrml+z9L6gQ0EZYcQDUk7rH0ofE/HjNQGf/+G0A75Ga4AZ8FQA+5GW7ANyNA/8pKk1JQBUCwA+eMKO0ZQAkWhzO/mgNATHFV2XdlF0DiBnx+GKH/P4GVQ4tsJwNAH/et1onL4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tKuQ8pMqCEDMRXwnZr0WQDElkuhllPs/Sino9pJG/z/M0eP3Nj0LQMBbIEHxAyVAqpog6j5AAkBm9+RhoZYaQM6qz9VW7Pg/8SkAxjOIG0CYo8fvbToAQOONzCN/MARAbeF5qdgY4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OsyXF2BfBkCCrRIsDicYQNjw9EpZBvo/jQsHQrIA/T9rn47HDJQLQD/G3LWE3CRAMbH5uDYUAkDSqSuf5RkbQBR5knTNZPk/K9mxEYh3G0AH0zB8RAwAQBlz1xLywQRAOzquRnYl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nYU97fDX/T82donqrREgQOik942vve8/VU0QdR8AAEBuaTUk7jEJQDAqqRPQJCRAsTOFzmvsA0Bo0NA/wWUaQH2utmJ/WQBAqyFxj6XvHED9h/Tb14H8P81YNJ2dzAJA4pS5+UZ03T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PIOG/gku9z/WVuwvu0cgQPBt+rMfqfE/y5wui4lN/j/QYb68ADsKQD9XW7G/LCRA5E7pYP1fAkC4kh0bgbgYQHYaaam8nfs/8RExJZJIF0B2Tx4Wag0CQJhRLLe0WgpACwqDMo2m5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tDwP7s4aAkBIG0esxaccQGqHvyZr1A1ApMLYQpAjE0C8kXnkD0YOQNejcD0K1yVA2qz6XG1FBUAiT5KumTwaQHFa8KKvoPY/UI2XbhIDGEAqHaz/c1gCQPd14JwRZQVAyEW1iCgm5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9RCN7iB29D8E54wo7c0gQM6I0t7gi/0/GH0Facai+j+o4zEDlbEOQArXo3A9yiVA85Nqn45HA0D5g4Hn3uMaQL0A++jUlQVAMLsnDwsVHUDY8PRKWYb+P5WfVPt0vAZAdVWgFoMH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6dSVz/I8B0BpOjsZHLUgQH7ja88sCf8/ls/yPLg7BkC3ek5633gJQBe30QDeoiRANs07TtFRA0B65A8GnvsbQJ2FPe3wFwVAR4/f2/THGUCmft5UpML8P1xy3CkdbANAXw1QGmqU4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xmiu00iLAUCMoZxoV2EcQBV0e0ljNPI/iGh0B7Gz+z/JWdjTDn8KQAKaCBueviRA6SYxCKxcAkAO2xZlNqgWQJdV2Axwwew/aMu5FFcVGECFX+rnTQUFQKTk1TkGZAdAkPY/wFo15z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hIHn3sNlAECYLy/APlocQLNeDOVEu90/1v85zJdXD0CqSIWxhSAJQGKh1jTvuCVAUg/R6A5i/T/9ag4QzFEaQLw/3qtWpvo/ZmZmZmZmGUAldQKaCFsCQOvFUE60qwZAaNDQP8FF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pSxDHOuiAkA3p5IBoIrkP7ivA+eMqAFAMlUwKqnzJUDHndLB+j8IQKpla32RMCNAFOgTeZJ0A0BMiSR6GaUWQMqmXOFdrv8//tR46SbxGED/ykqTUtAAQF5LyAc92wRAH4Kq0auB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GcVyS6sh/z++wRcmU4X5P+Qs7GmHvwBAMuauJeTjK0DSjEXT2YkHQFCNl24S4yRAGeJYF7eRAUCnXOFdLqIXQJEOD2H8NOU/XHfzVId8GEDLviuC/63/P7O1vkhoiwRASs6JPbQP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fERMiSR6CkAzMzMzM/MnQGmM1lHVhPI/Qs9m1ecqDEASvYxiuSUKQPmgZ7PqsyVAHM78ag5QB0Cv6xfshu0bQLnH0ocuqAFAVisTfqkvIEBNMnIW9jQAQPRPcLGixgZAVObmG9G95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XI/C9SgcDkDnOo20VF4SQGLzcW2oGPs/5wDBHD2+HUDsEtVbAxsKQAskKH6MeSRAmUf+YOB5BUClTkATYUMYQFTGv8+4MAJAO420VN5OGUCmuKrsu+ICQO1HisiwygRADDuMSX+v5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f03WqIfo9T+TjJyFPU0XQJS9pZwvduk/UkmdgCZCHEAIclDCTBsHQP2H9NvXASZA3CkdrP/zAkBn1edqK3YZQDJVMCqpkwJAMPXzpiK1GkDUK2UZ4hgBQFn60AX17QRAYfpeQ3Bc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"02pI3GPpFkB88rBQaxogQP5IERlWMQxAdavnpPcN+z/HKTqSyx8QQDSAt0CCIiRA+5EiMqwiBUDqIRrdQQwaQOF/K9mxEQBA6njMQGX8GUABwRw9fu8BQIZVvJF5JAdA4GOw4lTr4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J8KGp1cKF0DDDfj8MBIgQNMwfERMaR9AescpOpKLA0CSrpl8s40KQBx8YTJVsCVAt+7mqQ75AkCEZAETuDUYQIRHG0esRQNA9Ik8SbqGHkAjMqzijcwBQHMR34lZ7wlAnRA66BIO6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PrMkQE1tHEApIsMq3qggQIP6ljldFgtAGyrG+ZvQAEBKQbeXNGYQQKwcWmQ7/yRAbAn5oGczAUC+E7NeDIUZQIts5/upcQJApaDbSxrjGkCPqiaIuk8CQHXIzXADvgZAIc7DCUwn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"INJvXwceIEAkfzDw3NsaQEkRGVbxRhtApMLYQpDDCUAW3uUivpMGQJeL+E7MiiJA6Q5iZwrdA0DUghd9BSkYQMmOjUC8LgNAgqj7AKTWG0D+fcaFA+EBQIQSZtr+FQdAK01KQbeX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XhH8byVbEECinGhXITUjQCCYo8fvbQVA8BZIUPyY+z9yM9yAz48NQFwgQfFjjCVAyJi7lpDPA0D5Tsx6MRQcQDpY/+cwnwBADXGsi9sIHEBcyY6NQDwAQBHHuriNBgVAfnIUIApm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cHztmSWBB0A0v5oDBFMVQLXAHhMpzeY/rg0V4/xNCUBy/iYUIqAKQJVliGNdvCRAY+5aQj7oBkDReY1doroaQD90QX3LnPw/vt798V71GEDVITfDDfj+P7A9syRAzQNAwOrIkc7A4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bcoV3uWCFUApXI/C9cgiQBiV1AloYgNAJuSDns3qBUC5wrtcxDcPQIv9ZffkoSVAml/NAYL5BEBa2NMOf80WQH+8V61MeP8/S3ZsBOJ1GkBVpMLYQlABQKshcY+lTwRAc2N6whIP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ol2FlJ9UEUB4KAr0iQwgQDemJyzxQA1AWaMeotEd/D9VpMLYQpAKQKrx0k1iMCVAwM+4cCCkBEBY4gFlU64aQA1Uxr/PuAFATn/2I0WkGEDWc9L7xpcDQGw+rg0VowVA8u8zLhyI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RwN4CyRIEEBUUiegiZAdQPOTap+OR/w/NrBVgsWhD0CLw5lfzYEPQJCg+DHmjiVAnrXbLjRXBEB87ZklASoaQGLWi6GcaABA2PULdsO2HEDvG197Zsn9P/YoXI/CtQRARz1EozuI5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TBdi9UcY0T9NEHUfgBQJQAEYz6ChfwZAUrgeheuRJEAFxY8xdy0NQIQNT6+UJSZAHXdKB+t//j8TfqmfNzUXQJ1GWipvxwFAKa4q+65IGUAlehnFcgsAQKyQ8pNqnwJAfa62Yn/Z3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iPTb14HzCEBB1H0AUlscQF68H7dfvuk/F/GdmPUiA0BFgT6RJwkIQFqeB3dnXSNASNxj6UOXAkAXt9EA3kIYQCEHJcy0ffs/09nJ4Ch5GUBvu9Bcp5EBQH/2I0Vk2AVAgxQ8hVyp5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U8vW+iKhBED5D+m3r+MbQNWVz/I8uNg/9b7xtWdWCUBehZSfVDsEQBBdUN8y5yNAat5xio5k/z/f4AuTqaIWQMUbmUf+oANA/5WVJqVgGkD7Bbth2yIDQD6WPnRBfQhAyVnY0w7/5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/bypSIWxB0C/ZU6XxQQgQKa4quy74gZAowbTMHxE+D8NcayL2+gIQGNi83FtSCNAOQt72uHvA0BpHVVNEPUdQMBbIEHxY/s/p8tiYvMRHEBL5e0Ip8UAQGt9kdCWcwZAf4gNFk7S5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4PPDCOERCEAId2fttmseQK98lufBXfw/5NpQMc5f+z+6awn5oKcIQLWmeccpmiNAx0s3iUEgCECJ6q2BrVIaQJijx+9tegFAFjCBW3fzGkDtmSUBaqoCQLmq7Lsi+AZA9rTDX5M14j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"08H6P4e5DEC536Eo0DcgQE2EDU+vVAJAzo3pCUu88z8FUfcBSK0JQIEhq1s9dyNAL4uJzce1BEBpUgq6vYQZQE4LXvQVJARAP4wQHm38HEAf14aKcT4CQAKfH0YIDwVApWWk3lO54z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zr0Yyol29D9ma32R0FYaQDUpBd1eUgRAvt798V71BkAawFsgQbELQLU3+MJkqiVAOq+xS1SvBECwyRr1EG0cQDP5Zpsb0wBAN6YnLPFAG0B6pSxDHKsCQIxK6gQ00QVAIy4AjdIl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"flcE/1tJ/T9jKCfaVWggQDHrxVBOtPY/w/ARMSXSCUBEUaBP5MkFQEWeJF0z6SNAUps4ud8hB0AOSphp+zccQO/hkuNO6f8/glZgyOq2HUC/SGjLuVQBQNv5fmq8dAdAPnsuU5Pg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kPeqlQm/CEBV9l0R/E8ZQAEYz6Ch//Y/bmk1JO7REUBLdmwE4rUNQCV1ApoIeyRAz4O7s3ZbBkDWc9L7xpcaQBXGFoIcFABAuECC4sfYF0CpvB3htKABQEmAmlq2VgRAUduGURA83j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lfHvMy7cC0Cif4KLFXUeQPWhC+pb5vo/f4eiQJ8IBUCr56T3je8NQHBfB84Z0SRADYl7LH1oBkDZX3ZPHrYbQBFwCFVq9vs/BoGVQ4ssGUB0JJf/kD4CQLn8h/TbFwZAc4V3uYjv4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LudSXFV2AkAZyol2FRIeQMlxp3Sw/vQ/CoUIOISqAUBEwCFUqRkQQNobfGEydSZAkDF3LSFfA0A0hc5r7BIZQEBqEyf3u/c/xyk6ksufF0B5AfbRqSv8PyBe1y/YDQVAtMu3Pqw34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ObTIdr6fAUBIG0esxbchQEinrnyWpwRA2ubG9IRlD0DVsrW+SMgQQIBIv30d2CZAFakwthDk+j8gJAuYwG0XQPuRIjKsYvg/LEgzFk3nGUBfQZqxaPoAQAYN/RNcbAhAJVgczvxq3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vJaQD3q2EUC0ccRafKodQKpgVFInIANAlSu8y0V8+z/eAgmKHyMNQC0hH/RsliVAMEeP39s0BEDsL7snD+sbQFCNl24Sg/g/kX77OnDOGEBjC0EOShgAQPuWOV0WkwJAu4CXGTZK4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QN6rViZ8EECDL0ymChYgQFInoImwARJA0ETY8PRKCEDY2CWqt8YHQED7kSIy3CNAKJtyhXd5AkBangd3Zw0bQOdSXFX2XQRAkdWtnpN+IEBgqwSLw5kEQM8UOq+xiwpALNMvEW8d5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dTxmoDK+AkAM6lvmdJkhQNrLttPWiOE/3PRnP1LE9z9UOlj/5/AGQNXnaiv2dyRAJ9pVSPkJCECR7Xw/NZ4bQGXkLOxphwFA8RExJZJoH0DB4nDmV3MCQFG9NbBVAgZAEOz4LxCE4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SkbOwp62BkDIBz2bVV8eQEc82c2MftA/jgHZ690f/z8XZTbIJKMIQHKKjuTyHyRASL99HThnBEA0SwLU1BIbQDSAt0CCYgdAQNmUK7yLHkAR5KCEmbb+P7raiv1ltwRAdzHNdK+T5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IEYIjzYOAkAr2bERiBcfQAX4bvPGSeU/1c+bilQY+j9RoE/kSZIHQKmkTkATASRAuqC+ZU5XAkC9OseA7HUYQBB6Nqs+1/g/FVeVfVdkHUC9b3ztmaX9PzmX4qqybwNAGLSQgNFl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lv8h/fb1/D+MvoI0Y9EhQCHIQQkz7fY/9kVCW86l+T/Opbiq7DsKQCh+jLlrSSVA4PPDCOGRA0ANjpJX5zgbQMLdWbvtQvg/nuqQm+FGGkAdcjPcgE/9P2tI3GPpwwRA598u+3Wn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3jzVITeDC0Bfe2ZJgPobQGtI3GPpAwlAbjSAt0AiIEBc5nRZTGwQQKUsQxzrwiRAlbcjnBb8B0A4vvbMkgAcQMU4fxMK0QBADcNHxJSoF0AzMzMzM/MAQNI1k2+2OQZAlNkgk4yc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NIC3QILiBkA+XHLcKb0YQMFz7+GSIwZAhSUeUDaFGkBpOjsZHAUQQGQ730+NNyVAqFfKMsRxBEAIjzaOWKscQHu9++O96vo/wf9WsmPjF0AMyF7v/ngBQL1SliGONQZAejcWFAbl5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CcTr+gX7BkBhTzv8NSkiQIOG/gkuVt0/H9eGinF+9D8g0m9fBw4LQFMFo5I6QSZAMA3DR8RUA0Deq1Ym/JIYQL9DUaBPZAFAfsaFAyFZHEChuU4jLVUAQD6zJEBNrQRAuJVem40V4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZMxdS8gHAEBGJXUCmogdQLqD2JlCZ/Q/PIidKXTeDEASMSWS6KUNQPCnxks3KSZAX5hMFYzKBUAr+64I/rcbQNmUK7zLxfw/Yf2fw3yZGkAsDmd+NYf+P9tQMc7fRAJA7x8L0SFw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RPrt68D5BEBzS6shcQ8cQJDcmnRbIu0/FOgTeZI0AUA/jBAebRwIQLd6Tnrf6CNAIo51cRsNAEA3iUFg5ZAXQN5UpMLYwvw/BK3AkNVtGEAQQGoTJ7cCQDDw3Hu4ZAVAwD3PnzYq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+PwwQni0CECmD11Q38IgQL/zixL0F+U/8BZIUPyYAUBwQiECDiEGQEtZhjjWRSRAzCiWW1oNAEAVqTC2EOQXQKshcY+lj/w/fZbnwd0ZGECSeeQPBt4BQI3uIHam0AZAFK+ytime5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F5rrNNLS8z+AgosVNTgYQICfceFASPY/OnXlszyP+z8wnkFD/wQKQDxmoDL+jSNAYY4ev7dp/j/ghEIEHOIWQKp9Oh4z0PY/RG6GG/C5GUBvDWyVYHECQBgJbTmXYgZAxooaTMNw5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xp1jQPY6BEAqkUQvo7geQH5yFCAK5uU/MnctIR/0BUA7jbRU3k4GQGlXIeUn5SNAwcWKGkzDAUCoUrMHWmEZQMucLouJzfQ/LXjRV5DmE0DDu1zEd+IBQD0K16NwvQdARWYucHks6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"98ySADU1+D+IRncQO/MVQHxETIkkOgVAVDpY/+cwBUBIMxZNZ2cIQCgPC7Wm2SJAby9pjNZRAUAP7s7abZcXQIBlpUkpaPE/5US7Cin/GkAYYB+durIDQLD+z2G+PAZA5BQdyeW/5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rTQpBd3e+T9dv2A3bJsXQK9Cyk+qPQVAke18PzUeHECh1jTvOIULQE7RkVz+4yVA4uR+h6KAA0BHWipvR7gaQLGnHf6abARA04cuqG8ZGUAvqG+Z0+X/P75Nf/YjxQZAhnMNMzSe5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m/7sR4rIA0Dn49pQMZ4hQK67eapDbvc/vW987Zml8T+fAmA8gwYOQMzuycNCLSRAO8eA7PUuBUD8+4wLB+IZQKg1zTtOEQFA6udNRSrMHkDwiuB/K1kDQM9m1edqKwNAO3DOiNLe5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SUvl7QinB0BcyY6NQJweQIZxN4jWitw/iC6ob5nT9j8bL90kBoEJQCZTBaOSOiVAPNo4Yi2+BUB00vvG114dQA9FgT6RJwRAFjWYhuFjG0AZxXJLqyECQOpb5nRZDAVAKEaWzLE85j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5bM8D+6OBkDxLhfxnVggQCCZDp2ed9Q/Y9F0djK49j+iYpy/CYUJQLnCu1zEVyNAKjqSy3+IB0BoXDgQkmUbQDbNO07RUQJAp1zhXS7CG0BHOC140VcBQD8AqU2cnAVAXDgQkgVM5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5bM8D+6OBkDxLhfxnVggQCCZDp2ed9Q/Y9F0djK49j+iYpy/CYUJQLnCu1zEVyNAKjqSy3+IB0BoXDgQkmUbQDbNO07RUQJAp1zhXS7CG0BHOC140VcBQD8AqU2cnAVAXDgQkgVM5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x2MGKuMfAUBGCI82jlgfQFvNOuP74uE/6fF7m/7s/j9d3EYDeEsBQNcS8kHPxiRAMlpHVRNEBUAAdJgvLyAcQAVR9wFILQNAoP1IERlWHUCgbMoV3qUDQM6qz9VW7ARANJ9zt+sl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TyMtlbejCEA4LXjRVzAeQIP26uOh790/DOpb5nQZAEDIzXADPr8MQEok0csoliJA5ssLsI8OAkCZ2HxcGwoXQIE+kSdJVwRAYmcKndfYHEBVTRB1HwD9P2/1nPS+sQZA5xvRPesa5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/tR46SbxC0D27o/3qjUfQEQ0uoPYmfM/dHtJY7ROFkAWE5uPawMQQIY41sVt1CRASDMWTWcnBUCERxtHrOUYQPyMCwdCMv8/VWr2QCsQFUCmuKrsuyIBQE/pYP2fgwVAS1zHuOJi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"umsJ+aDnAUA51sVtNGAaQBnL9EvE2+8/c/T4vU1fFkCX/5B++7oFQGrecYqORCVAq1s9J71vBED5FADjGdQcQEPFOH8TCvk/JH8w8NybHUBAE2HD06sAQJ8fRgiPdgVAwVJdwMuM4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sOYAwRz9B0CneccpOpIpQG2rWWd8X9A/x7q4jQawJ0CYUSy3tBoMQM/3U+Ol+yRAhJ7Nqs+VBkBzaJHtfF8bQBtMw/ARMQVAgH106sqHFUC+9sySALX7P3L+JhQi4AhAaD18mSjC4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QGoTJ/f7A0C/K4L/rXQhQAgcCTTYVO4/DJOpglGpKEDCL/XzpqIHQK+UZYhjfSZAvCL430q2BkA1JO6x9MEeQC/6CtKMxfw/+MJkqmB0GED0piIVxpb+P44ev7fpzwRArIvbaADv4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/dmPFJHhBEAawFsgQXEcQEHXvoBeOO4/Q+c1dolqDkAtsp3vp4YNQGrecYqO5CRASnuDL0ymBEDuQnOdRpoaQPT4vU1/9vY/BaOSOgGtF0DVJk7udyj+P7bz/dR46QRAOLwgIjXt3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nzws1JrmB0ACvAUSFD8FQC7iOzHrhQZAER5tHLEGIkB3+GuyRj0JQB2PGaiM7yNA8MSsF0N5A0CA1CZO7hcaQB0gmKPH7/8/fCdmvRhqGEDEJced0kH7P33Qs1n1eQVAdY4B2evd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q8/VVuwv7j/7rZ0oCQnuP67TSEvlbfk/XCBB8WMMHkB2N091yA0NQFTjpZvEgCRAuoPYmULnAECFzmvsEjUYQAZM4NbdvPI/fm/Tn/1IGkDUghd9BekBQK/rF+yGrQRATyLCvwga4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AK5kx0Yg/T+q8dJNYjAQQPceLjnulABAwJXs2AjkHEC6awn5oOcLQCUGgZVDayZAgPEMGvrnAUCppE5AE4EXQEd3EDtT6Pk/iuWWVkMiGUAfaAWGrC4FQFOWIY51cQZA1TxH5LsU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oaF/gosVCUD5SbVPx9MhQIU+WMaGbuw/D7QCQ1YXEUA012mkpTIMQK5H4XoUziRAqFfKMsTxBUAktOVciqsbQD7QCgxZXQFAiqvKvivCHEDQDyOERxsBQJJ55A8GngFAgBDJkGPr3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xyk6kss/CUA/qfbpeEwbQAKfH0YIzwBA9KYiFcaWDUCASL99HXgNQDxO0ZFcniZA5iK+E7MeAEAVOq+xSxQaQAaBlUOLbPA/u7iNBvCWGUC+2ebG9AQAQLpOIy2VtwdARE30+Sij5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LspskEnG8j9pAG+BBKUlQI/f2/Rnv/k/TRWMSuokK0DuX1lpUooLQOELk6mCUSRAZaVJKej2/D81JO6x9EEWQLCPTl35rPk/jLlrCfkAFEBxPQrXo/AEQHi5iO/EbAJATzv8NVmj3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rW71nPR+CUDt9e6P92oVQLEWnwJgvABAmQ0yycjZ/j8n9zsUBToIQEJg5dAieyVAjIS2nEuxA0DF5uPaUNEaQLzK2qZ4XO0/e6AVGLLaG0DRItv5fur/P2g/UkSGFQdA3lhQGJRp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EQGHUKVm+T92cRsN4I0lQPryAuyj0/s/HxFTIoneFEA1DB8RU4IQQGfV52orNiVACp3X2CVqBkB1ApoIG54aQOo+AKlNHPs/qmBUUifAEkAb2CrB4jAEQP2k2qfj8QNABdzz/Gmj5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6s9+pIgMDkAEkNrEyY0jQF70FaQZC/4/hetRuB5lLEC70FynkZYMQE+vlGWIAydAGZC93v0xAEDF5uPaULEZQKuX32kyY+c/2EenrnwWGUDC+j+H+XL9P7jkuFM62ARAeAskKH4M4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cCU7NgJxC0AVHcnlP2QkQPceLjnutBBAhiAHJczUHEDuX1lpUgoOQMbctYR80CVA0T/BxYoaBUDhXS7iO9EXQDNt/8pKk/w/C0EOSpjJGkDwv5Xs2Aj+P/xSP28qkgRAV3cstklF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fuNrzyxpEUCZKhiV1IkfQCeIug9AagZA18BWCRZHBUBETIkkelkLQGEyVTAqCSZAcxHfiVmv/D/yJOmayRcZQEm6ZvLNdgFA9UpZhjj2GECCixU1mMYBQIKo+wCk9gdAFvcfmQ6d4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8iyc/7LWo79dp5GWyvscQPH0SlmGOANAlpUmpaDbDkAVUn5S7XMQQHnpJjEIjCVAtB8pIsOqAkB+GCE82tgXQG9HOC140fs/6Nms+lxtG0BslWBxOHMDQK8l5IOezQRAeJeL+E5M6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"luzYCMRr+z/l0CLb+T4hQPTg7qzdNgRAO420VN6OCECiYpy/CYUIQNUEUfcBeCNAxCXHndJBAUAq499nXBgcQI1donpr4AJAgT6RJ0nXG0ArNXugFVgAQNXKhF/qZwFAN8XjolpE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XHLcKR1sBEB0DMhe764gQDbLZaNz/u0/YB+duvLZAUDXFwltOVcLQINRSZ2AZiRAZB75g4HnA0DeyDzyByMaQN6Th4VaEwVAP3RBfcvcHkDAPjp15bP+P4NpGD4iZgRAdqVlpN7T4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PUm6ZvJNA0A7jbRU3q4cQJKvBFJi19k/98ySADU1/z9j7lpCPigIQJvmHafoWCNAchb2tMOfAkBQNuUK7zIZQGIVb2QeeQNARdjw9EpZG0BBKzBkdav7PzBHj9/btAFAr0LKT6p94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Oe6UDta/BkBUxr/PuPAaQGWKOQg62uI/knnkDwbeA0BKJNHLKJYLQFYOLbKdryRAdTxmoDI+A0BY/+cwX14ZQNrmxvSEJQBA/TBCeLRRGkD3OxQF+sQCQDm0yHa+nwdAb4Jvmj676D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NV66SQyCBECDwMqhRXYkQBLAzeLFQuM/f9k9eVjoB0Coxks3iQEFQH9qvHST6CJAVft0PGZgAUCbAwRz9BgZQN3qOel9owNA9n8O8+VFHECLbOf7qXEDQLNeDOVE+wZA3/lFCfoL6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mPp5U5EKA0BUbw1slWAWQA4uHXOesck/UYiAQ6jS+z9wXwfOGdEBQGK+vAD7KCNAjnVxGw3gBECAgosVNdgbQOc6jbRUHgFAHXIz3IDPGkBOl8XE5mMFQOZXc4BgTgpAcHfWbrtQ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xb9gN2xbA0A9Sbpm8t0gQDkLe9rhL/U/cv4mFCKgCUBY/+cwX54FQFj/5zBfDiJAcQM+P4xQBEAJih9j7poYQMstrYbE/QFA19081SFXG0DPg7uzdhsCQHWOAdnrHQhA+Z6RCI3g5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TRWMSuoEA0AgRgiPNm4cQJ87wf7r3Mg/p+hILv8h+j/9n8N8ecEDQHE9CtejECRAA3gLJCg+AkD6YYTwaKMYQIZVvJF5JAFALXjRV5DmHUDVJk7ud6gBQM9J7xtfewZAR6zFpwAY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n+V5cHcWBUBNhA1Pr9QVQM5Q3PEmv+Q/16NwPQpXBECbcoV3ucgIQDv8NVmjHiNAKGGm7V+ZBUAPf03WqMcaQB7+mqxRjwFA8rBQa5pXGEBqvHSTGAQAQKsEi8OZ3wRAU84Xey8+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1lbsL7snCUAfgNQmTl4jQFa3ek56nxpA7KNTVz5L/j9WDi2ynS8NQJoIG55e6SVAkPeqlQm/BUBRa5p3nIIcQKWD9X8O8/c/Lexph78GG0Aqb0c4LXj+P12nkZbK2wVAOUIG8uzy3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ol2FlJ9Uw79yFva0w58XQMSxLm6jQQFAzvxqDhBMD0DO/GoOEMwLQCEf9GxWHSRA7+apDrkZB0A4FakwtrAcQBYTm49rgwJA8tJNYhA4GkDAeAYN/ZP+PwtBDkqYqQRACFbVy+804z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Z2Y9WIo9j9t/8pKkzIdQEp7gy9MhhNAlMFR8uocAUBIisiwircIQE8jLZW3oyNAtHHEWnzKB0B2N091yK0bQG40gLdAwgFA/g5FgT6xGUAbL90kBoH+P+BnXDgQUgJA+G2I8ZpX2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aam8HeF0BUCi7gOQ2mQdQM7EdCFW/+I/mpmZmZkZ+D9A2ZQrvIsLQIy5awn5YCRAxFp8CoAxAEAlWBzO/GoZQEpBt5c0xvQ/8l61MuE3GkD/ykqTUlAAQHJQwkzbvwVAHy3OGOaE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IuAQqtRs9z+DTDJyFvYgQKyQ8pNqH/Y/3Qw34PND+T9ivrwA+2gKQCntDb4wGSVAUu3T8ZgB+j8bEvdY+tAXQMkCJnDrbv8/Q+IeSx96GkCKdhVSftL/P70Yyol2VQdA+1xtxf4y5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GOyGbYsy/j9e1y/YDXsYQF66SQwCawVAtrkxPWGJEEC6vaQxWscOQAWjkjoBjSVA8Nx7uOT4BUBtqBjnb4IYQCb8Uj9vKvg/BK3AkNXtF0Ctad5xik4DQGIVb2QeeQRAklz+Q/rt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fjUHCOboB0C8kXnkDyYgQNmUK7zLxeE/R3cQO1No/T+qDrkZboAJQPOrOUAwtyJANPRPcLFiAEBvDWyVYPEXQHwKgPEMGgJAq8/VVuwvH0A+IqZEEr0BQFWH3Aw3IARAC12JQPUP2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CJRNucL7A0CNf59x4fAgQJZ4QNmUK/0/AfbRqSt/EEA/kSdJ10wOQNc07zhFxyRAdEF9y5xuB0CD+pY5XbYbQIhLjjulA/0/KLhYUYNJGUAvUb01sFUBQGKh1jTveAdA5PVgUnx86D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YYkHlE15CEAbnl4py7AVQMXL07miFOo/Imx4eqVsDUCob5nTZbEGQKxWJvxSLyNAVmXfFcH/AECUwVHy6nwYQFLt0/GYAQJAM6fLYmKTHEDZlCu8y8X/PxTtKqT85ARAcXUAxF294T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kSdJ10x+B0BUVz7L8wAWQAb1LXO6bA1A/8pKk1IwIUC3Yn/ZPXkRQKCJsOHp1SZACvSJPEk6CEDOUx1yM3wcQPDce7jkOPM/OsyXF2A/GUDT3uALk2kCQILix5i7VgZAs0P8w5ae4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dlQ1QdT99D8BamrZWv8VQMh71cqEPxFAAG+BBMUvFEAxfERMiSQOQCbkg57NSiZASYCaWrbWAUD7OnDOiHIZQNwuNNdppPg/RRK9jGKZGEDVCWgibDgAQNZW7C+7pwZAbhea6zRS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m1q21hcpG0AHsTOFzgsjQAuYwK27+QRAB/AWSFB8CEBLqyFxj6UNQEATYcPT6yRAeTvCacELAUBLyAc9m5UZQIo8SbpmsgBAvYxiuaVVG0ATm49rQ0UCQOzAOSNKOwZASdbh6Crd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"58b0hCWeBkB1jgHZ610PQMxFfCdmHRxAnYAmwoYnDEBTswdageEJQMX+snvykCRAAkht4uT+AEBJLv8h/VYYQOJ1/YLdsPg/RIZVvJE5GEA6r7FLVG/7P/rQBfUt8wJAySB3Eaao4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"niRdM/mmDEA9CtejcL0oQA9iZwqddxFAXMmOjUA8FEBA+5EiMqwLQPs6cM6IMiZAFAX6RJ4kB0C14EVfQbobQPD5YYTwaABAc4V3uYjvGUDajxSRYdUCQLVU3o5wGghAYajDCrd85z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XAGFevoI2z9d4V0u4hshQHrf+NozS/c/z4O7s3ZbGEDhl/p5UxEKQOAtkKD4USVAn5PeN772/j850a5Cyo8YQKHbSxqj9fs/QDBHj987GEDGv8+4cKD8P0HxY8xdSwJA4UBIFjCB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"euQPBp67CEAeFmpN814gQKbtX1lpwiBA/kgRGVaxAED52jNLAlQMQE9AE2HDUyVAB1+YTBXMBUChZ7Pqc3UbQCrj32dcOP8/jpJX5xgwGUCdLouJzUcBQC1b64uEdghAEkw1s5aC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rTQpBd2+EkB+xoUDIVkfQFRSJ6CJ8BBAqAAYz6Ch/z/ulA7W/3kHQNcS8kHPBiVAHXdKB+u/AkBl3xXB/7YYQLJjIxCv6/0/6IcRwqNNGUCi7gOQ2sT9P4bmOo20VANAPpKSHoZW4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sRafAmA8DkCkGYums/MZQJayDHGsi/Q/aw4QzNHjCkCQ2sTJ/Q4LQKFns+pzVSVAfVwbKsb5BUC/ZU6XxcQbQNAn8iTpGgBAKA8LtaZ5HEA+BcB4Bo0AQD7t8NdkDQRAFcYWghyU4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NC4cCMnCAUAMzXUaaWkbQAMJih9j7vg/XRYTm4/r9z/Y8PRKWUYKQJLLf0i/HSVAyXGndLD+/j8rweJw5vcaQDf92Y8UEfU/xty1hHywGkCmm8QgsPIAQM9OBkfJqwZAhIJStHIv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pzp15bN8AkAOSphp+5cgQCv2l92Th9o/EVMiiV5G/T9J9DKK5dYIQLu4jQbwtiJACAPPvYfLAEBEboYb8FkaQLYQ5KCEGf4/3+ALk6miF0DmllZD4t4AQCeloNtLWgZA/iyWIvnK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vR3htODFAkBcOBCSBUwXQLn8h/TbV/w/z2bV52qr/z/1vvG1Z9YFQMjvbfqz7yFAOlj/5zBfA0Aychb2tMMWQLivA+eMqPQ/2gOtwJB1GEB6jV2ieuv+P69amfBLfQVA4ezWMhmO4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H5268lleD0D8xteeWSIgQPWhC+pbZgBAjX+fceEACEA8g4b+CQ4QQBWMSuoEtCVAEsKjjSMWBEBtxf6ye/IcQKHbSxqjdfA/VpqUgm6vFEABNbVsra8BQGZrfZHQ1gVAIzDWNzC54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CObo8XvbCkDxaOOItXgeQFhZ2xSPi+Q/C3va4a8JAECr56T3jW8KQPJBz2bVByZAx0YgXtcvBkCTADW1bM0bQKM7iJ0p9AlAQMHFihpsH0Blx0YgXpcBQEUqjC0E+QZAMX4a9+a35z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bLJGPUSjCEDBxYoaTAMhQJ1Jm6p75OI/TS1b64vEBEAmAWpq2VoLQAHeAgmK3yVAMQisHFpkBkDi6ZWyDFEbQIYDIVnAhAlA6iEa3UHsH0A7U+i8xi4CQFioNc07TgdAzzC1pQ7y5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7/54r1rZCUAmjdE6qrofQI4j1uJTAPQ/vW987Zml9D9KJNHLKJYMQDvfT42XLiRAI0p7gy8MCECvsUtUb+0cQEbT2cngKAFAVfZdEfyPG0AEkNrEyX0BQHFyv0NR4AVAv/BKkuf65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OzYC8bp+DEBvu9Bcp1EdQJtattYXCfs/Olj/5zCfAUBMVG8NbBUNQLN78rBQCyRAKAr0iTxJCEBCW86luOodQN0HILWJEwBAz04GR8nLGkB2/YLdsK0AQNUmTu53KAZAwqT4+ITs5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"feiC+pY5BUAebRyxFr8WQDARb51/u+4/KgDGM2ioFED6YYTwaKMNQKOSOgFNJChAirDh6ZUy/D8dPX5v0z8YQFBTy9b6YgBAcHfWbrvwGkDElEiil9H+P4iAQ6hSswJAccyyJ4HN2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RMAhVKmZCED/W8mOjeAdQMb5m1CIgPE/vsEXJlMFDkAYWwhyUIIOQGgibHh6JSZA/Z/DfHlBCUDMXUvIB90YQCkF3V7SmPY/OKEQAYewF0C70FynkZb/P4tUGFsIsgNABD3UtmGU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ITzaOGIt/D9+Uu3T8VgcQOBKdmwEYgBAnWhXIeWnCEBfB84ZUdoPQIenV8oypCZA5j+k376OBkAydy0hH3QaQBXFq6xtiu4/YtaLoZyIFUCv6xfshq0AQB0Dste7fwNAaVVLOspB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q8U4fxPKBUBATS1b62sSQIgRwqONo+E/uiwmNh+XDkBUjPM3oZAHQMx/SL99fSRAliGOdXFbA0BkXdxGA3gcQKYPXVDf8gFAH6LRHcTuHEDa/pWVJiUDQIzbaABvgQdAPL1SliEO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ER5tHLGWAUCxUGuadzwkQM1YNJ2djPM/C170FaRZBkAY7IZti/IMQJ0Rpb3BFyZAA30iT5JuAkD129eBcyYcQFQ1QdR9gPg/u+1Cc53mGECTHRuBeB0AQECH+fICLAVAWWsotRdR4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pWYPtALDA0CoABjPoCEfQBAk7xzK0Og/P+PCgZBsDEDwp8ZLN4kDQB4Wak3zjiRAxsTm49pQAUApXI/C9SgZQA+5GW7A5wJAj3Ba8KIPG0DYKsHicGYAQOif4GJFTQVAd2hYjLrW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1H0AUpu4BkD7Bbth2wIaQNZVgVoMHuA/2GSNeojGBUD5MeauJSQEQMlZ2NMO7yNAwOyePCwUA0BLzR5oBSYYQCgs8YCyaQFA+HDJcafUGUD27o/3qpX9PwvvchHfSQRA/TBCeLTx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3lm77UJzAkCgT+RJ0vUaQAVQjCyZY9c/PfIHA8+9AUC1/SsrTcoHQI0o7Q2+MCRApDZxcr/DBUBCz2bV52oYQNrJ4Ch5dfw/AOMZNPQPGkCE9X8O82UAQIEExY8xdwRAUp0OZD014z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aFw4EJLFA0CLNzKP/IEbQIaqmEo/Ye4/CqLuA5CaCEC5jQbwFggIQGzPLAlQIyNAdCSX/5D+A0ClZg+0AqMYQMai6exkcP0/6ZrJN9u8GkDWxW00gDcAQEgbR6zF5wNAnlxTILOz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BaOSOgENAkDfGtgqwQIhQEHUfQBSm+Y/bsDnhxFCBkAUrkfhehQIQNhkjXqIBiNA+Q/pt69DAEAoYabtXzkaQFVq9kArsP4/+rMfKSKDHEA1DB8RUyIBQJvmHafoSANAhgSMLm8O5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fa62Yn/ZAUDqz36kiKwUQOxRuB6Fa/E/ZHWr56T3CUBmTpfFxOYGQMDnhxHC4yJAms5OBkdJ/z+8V61M+AUbQIm1+BQA4wBALq2GxD0WGUCIY13cRsMAQCcxCKwcWgRA/P1itmTV4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SMSUSKLXBUB2Tx4Wag0kQASr6uV3mtM/k2+2uTG9DkD35GGh1nQJQEOtad5xSiVAHThnRGkvCECe6pCb4UYZQKXap+MxwwFAOdGuQsrPHECM8zehEIH+PzsZHCWvDgRAxXJLqyFx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DXGsi9voAUAwTKYKRgUmQBCVRszs8+g/ZMxdS8iHJUDboswGmaQGQAMJih9jniNA4lgXt9EA/T/2KFyPwhUbQFMFo5I6gQFA0XmNXaKaFkB1kxgEVo7+P4QNT6+U5QJAWRmNfF7x1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"igJ9Ik/SAUBdM/lmm5seQNBiKZKvhOM/ZF3cRgN4JEACgjl6/N4IQG6jAbwFUiVAthDkoIQZ/D/ja88sCTAaQC7nUlxVdvs/O1PovMauGECmCkYldUIAQC140VeQpgNA9ODurN123T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KCfaVUg5CUDkFB3J5R8XQPAWSFD8GPE/aW/whcmUEUCqmiDqPoAMQOtztRX7CyVAs9KkFHQ7CkArMGR1q4cZQPbuj/eqlQFAzEBl/PvMGUAp0CfyJCkBQEymCkYldQFAEvdY+tAF4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rp6T3jf+BEAGnnsPl9wdQGmM1lHVhPM/u9Vz0vtmFUBv05/9SJEHQBzr4jYaYCRAlZ9U+3S8BUCUE+0qpDwaQPmDgefegwBAUkmdgCYCHEBGJXUCmsgAQPpEniRdMwVAhGdCk8SS4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NWPRdHZyBEAYfQVpxiIUQF6hD5axodI/IHu9++NdGkBeLuI7MesHQHhF8L+VXCNAt5c0RuuoB0DG4cyv5kAdQE563/jaswBAX5hMFYzqGEDZd0Xwv5UAQEWBPpEnSQRAtYtppnsd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aLPqc7WVA0BUHXIz3CAXQLD/OjdtxuQ/Plxy3CndAEC6vaQxWscCQFovhnKiPSNAJxQi4BBqBUC78lmeB1cbQO4IpwUvOgJARYE+kSdpHEBdUN8yp0v/P2l0B7EzxQVAd4U+WMYG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3lm77ULzCUBbzqW4qhwhQCBfQgWHF9o/aeOItfg0HUC/gjRj0TQOQIbJVMGopCRAWvCiryANCEB5Bg39E5wcQFNcVfZdEQJAhslUwaikF0DrHAOy17sBQNDVVuwvOwVAAoQPJVry5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"opdRLLd0AkDJyFnY054gQDUMHxFTIvo//wQXK2owE0DT3uALk6kGQNEi2/l+iiVA+n5qvHSTB0BKKej2kqYcQCb8Uj9v6gBAy5wui4lNG0AniLoPQOoBQGEyVTAqqQVADRzQ0hXs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dVlMbD7uBkAkl/+QflskQGACt+7mKfE/REyJJHoZA0Ahk4ychT0LQCv2l92TByVAyZOkayYfCkBFniRdM5kcQAZHyatzDP0/36Y/+5EiG0BK0jWTb7YAQBefAmA8wwZAwjHLngQ24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cks8oGzKA0AmqrcGtgodQEnajT7mA9Y/WYtPATAeEUAKaCJsePoFQBtMw/ARwSNArDlAMEfPAUD5SbVPx2MYQFjiAWVTrgNA0LNZ9bnaGkAZ/z7jwoH+P86N6QlLvAFAUInrGFfc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n5PeN752AkDVITfDDXgNQG7dzVMdcvQ/0a5Cyk+KHUCdnQyOkhcMQOPHmLuW0CVASKeufJbnAkCl942vPRMaQCtNSkG3F/s/FytqMA0jGEBAwcWKGowAQAa7YduijAVAnzws1Jrm4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YmcKnddYDUCL/WX35GESQF8M5US7Cvw/eJyiI7ncFUDzk2qfjocNQGHD0ytl+SRAt5c0RuvoAkDABG7dzXMaQOqymNh8XPc/8UbmkT+4GkCfdvhrsoYAQCdr1EM0OgZAIQVPIVfq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YU87/DWZAkCbyTfb3BgHQHhDGhU42e8/fdCzWfUZIkCmYfiImBIPQB1aZDvfbydA/cHAc++hCEANjpJX57gcQCfChqdXCgJA/G8lOzYiGUCM8zehEMEAQArXo3A9igZAq1/pfHiW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"odtLGqN19z8ZOQt72oEaQPn3GRcOhBVAtoR80LPZH0Dl1TkGZG8PQL4wmSoYlSRApOTVOQYkCUCN7iB2ptAdQFEU6BN5EgRAVtRgGoavHEBSflLt07EBQKJFtvP9lARATIxl+iXi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P6n26XjM8j963/jaM4sUQHTS+8bXnvs/Pj+MEB6NHUAUBfpEnqQMQKJFtvP9VCRAeUDZlCu8CEB87ZklAYodQMZQTrSrkAJATIkkehlFHUAt7GmHv6YDQMhe7/547wVAehubHak+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vvbMkgC1FED7XG3F/vIeQF9GsdzS6v4/5bhTOlifFEAv3SQGgdUJQBb7y+7JAyVAiIBDqFKzBkAYWwhyUOIaQHqlLEMc6/4/NV66SQxCGUBmiGNd3EYBQMSxLm6jgQdAE9Iag04I5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zfz7jAsHuj98m/7sR+ocQNrhr8ka9f0/OgZkr3d/+T/O/GoOEAwPQA1xrIvbiCRAHooCfSJP/z8TYcPTK6UYQI47pYP1//0/CI82jlgLGkCV1AloIiwBQFIst7QakgZAn+QOm8jM5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H4DUJk4uBkDtnjws1NohQGLboswGWRZA4Ep2bARiC0AuymyQScYHQCSX/5B+GyVAE0n0MorlA0Dq501FKiwaQNKpK5/l+f4/J6Wg20saHEAWMIFbd3MBQHzVyoRfKgRA4+E9B5Yj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"duCcEaV9BUC5pdWQuCcfQOwS1VsDW/M/BmSvd398CUC9qUiFsaUQQEymCkYltSVAf4eiQJ+IBEAK16NwPYoaQHJtqBjnb/4/7dgIxOvaFkC2SrA4nPkAQKabxCCw8gRAGArYDkbs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+1xtxf4yBUBl/PuMC0cMQCJxj6UP3fI/Z9Xnait2K0AB9tGpK58LQIqO5PIfMiZAcxHfiVmvBkDd6jnpfWMbQOuQm+EG/Pc/ak3zjlNUGUA17zhFRzIAQHuIRncQewNAG9gqweLw4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0zJS76mc4T825QrvcvEYQOVhodY0rytAQ1a3ek76FkBTP28qUgEQQNNNYhBYGSVA9dbAVgmWAUBvgQTFjxEZQMaKGkzDsAJAjBAebRyxGkBSLLe0GtIBQNWytb5IqAZAk+UklL4Q5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wg2Jeyz9/r9JumbyzdYdQEYIjzaOWA1ASaKXUSz3BkC5UzpY/6cFQN9PjZdukiRAr3d/vFftAEB7MZQT7aoWQAvvchHfifg/Gf8+48KBG0CXi/hOzPr9P+/+eK9a2QRAu0IfLGND3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uw9AahOn9T/HLlG9NfAhQH1cGyrGORBAOnXlszxPCECGG/D5YcQKQCsTfqmfJyNAP8bctYT8AkCpvB3htOAaQPJBz2bVpwNAWi+GcqLdGUDVWwNbJdj/P8jqVs9JbwNA/rW8cr3t5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dk+vlGXICUBHVRNE3YccQHrejQWFQd8/jErqBDSR8z8DWyVYHA4IQFUYWwhy8CNAnPnVHCBYA0D27o/3qlUcQK1RD9Hojv0/5Pc2/dlPHUDNWDSdnYz9PzYf14aKsQRAMdP2r6y04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pKoJou6jEUCu2F92T64gQF8pyxDHegxAet/42jMLFEAe3J21264GQMsQx7q4bSRAFXR7SWP0AkBnD7QCQzYYQPa0w1+TNQJAlkOLbOebGEBGtvP91LgCQDI9YYkH1ARABoVBmUaT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1EM0uoP4EkCjdVQ1QXQgQOrKZ3ke3A9AVoLF4cwvDUDfT42XbpIIQEMc6+I2WiRA8SkAxjOoAkA2sFWCxeEYQBNhw9MrZQFA4nX9gt1QGUBR9wFIbeIBQFDHYwYqowRAfxKfO8F+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S3ZsBOLVE0DMC7CPTl0hQDHT9q+sNAtA8G36sx+pDUDJyFnY044GQKqCUUmd4CRAB1+YTBUMBEAEOShhpo0YQLNBJhk5CwNAe2tgqwSLGkAhsHJoke0AQAPso1NXPgVAup7ouvAD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KgDGM2hoBUDdtYR80FMWQLR224XmOgVAKcsQx7p4CUD/lZUmpWAOQN6Th4VasyRAYi0+BcA4BEBZF7fRAN4cQORmuAGfH/w/fcucLovJGkAmGTkLe9r7PwAd5ssLcANAnrXbLjTX3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/PuMCwcCA0CW58HdWasgQEUTKGIRw8o/s0EmGTmLB0C/DpwzovQDQLwFEhQ/RiRA3rBtUWbDAEA10lJ5O4IWQOS9amXCLwJAwZDVrZ7zGEBZF7fRAF4CQI3uIHamEAZAOjsZHCUv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ykok0cuoAUDv4ZLjTkkcQDawVYLF4dE/4L4OnDOiEkAdIJijxy8EQMe6uI0GMCRAtWytLxLaAUAv3SQGgfUXQEAYeO493Pw/pyIVxhYiGkBhcTjzqzkBQHkGDf0TXAZAeQWiJ2XS4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eHqlLENcAEBnJ4Oj5JUbQI2ACkeQStE/K/aX3ZPHE0DmV3OAYE4EQNB+pIgM+yNAe4MvTKbKAkC77UJznQYXQMnIWdjTjvw/WaMeotHdGkDmXIqryj4BQDoGZK93PwZAc/c5Plqc4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9pfdk4cFB0A/UkSGVXwaQFvOpbiqbPo/Zmt9kdCWDUBUUiegiXALQF3cRgN4CyZAQiECDqHKBEASa/EpAGYdQK7TSEvlLQJASOF6FK5HGECvCP63kt0AQH6MuWsJOQVAAfxTqkRZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VrsmpDUGyz/rHAOy1wsgQGCrBIvDGQhAQrKACdw6/z9gPIOG/kkJQGFUUiegiSVARdjw9ErZ+j8lXTP5ZlsYQFXejnBasAFA6LzGLlGdF0Bw626e6tACQMx6MZQTrQJAsiyY+KOo4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aD9SRIYVFEBSJ6CJsKEdQPq4NlSM8wZAeXWOAdkrAEBKQbeXNIYPQOauJeSDPiRASl6dY0C2BUCC/61kx2YaQDKP/MHAc/k/TKYKRiUVHECc3O9QFOj9P0HUfQBSmwZAXaPlQA815D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OPOrOUCwAEA5Yi0+BQARQG8qUmFsYQNAejarPlfbE0CGWtO845QLQC/dJAaBVSVAYOXQItv5AkBZox6i0X0aQPJetTLhFwNAHv6arFEPHkBwzojS3uD+Pxwlr84x4AVAnMHfL2bL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aVch5ScVBUBFZFjFGxn/P7YwC+2c5uI/626e6pB7FED9wcBz72EJQF3Ed2LWeyNAFt7lIr6T/T/zdoTTghcYQJq2f2Wlyf8/sI9OXfmsGED8GHPXErIAQNWytb5IKAVAiUFg5dCi4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XaeRlsobAkAewCK/fgjpP/OOU3QkF+E//mX35GFhB0ASwqONI1YIQDojSnuDbyNAPgXAeAYN/T95WKg1zZsWQFGIgEOoUv8/jNtoAG+hGEB3Sgfr/1wAQH4dOGdEKQVAwD46deUz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DYl7LH0oBEDoMF9egF0cQPlmmxvTE/c/3EYDeAvENEA2donqrcEKQNSa5h2nKCVAu7iNBvAWAUCs/3OYL88XQPnaM0sCVAJAv2A3bFv0HEBpOjsZHKUCQDsBTYQNzwdAG/M64pCN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"81meB3fnBEDLEMe6uG0kQLvtQnOdxvQ/1A5/TdaoAUBbsb/snjwKQIv9ZffkASRA5gXYR6fuAUDBi76CNAMaQAa5izBFOew/Bd1e0hjNE0DiI2JKJBEAQLSOqiaIugNAUP2DSIYc4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9wFIbeLk/z/ir8ka9RABQIZa07zjlOw/+5EiMqxCH0D8qfHSTaIIQOOlm8QgkCRATnrf+NqzA0CvsUtUb20ZQOxMofMaO/4/lDDT9q/MGkAyIHu9++P9P3b9gt2wLQNAtRt9zAcE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GJXUCWgiBUAczvxqDhAdQKTH7236M/s/aFw4EJLFDEDzPLg7a7cNQKMjufyHFCVAqB3+mqyRAUA2PL1SloEYQLRZ9bnaivs/Y5y/CYWoGUCwA+eMKG0BQEpGzsKe9gRAXrneNlMh3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EAaeew9XBUCzQSYZOascQNMTlnhAWfI/kx0bgXidCUCCixU1mIYQQPCFyVTBqCdAGH0FacaiAkDOjekJSxwaQJlH/mDguQBAq+y7IvjfGkAVdHtJYzT8P2LWi6Gc6AJAP5C8cyhD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z7gBnx/GCEBQ5EnSNbMjQKSLTSuFwO8/PDHrxVDO/z/430p2bMQOQDSitDf4QiZAFYxK6gQ0AUCu9UVCWw4bQDW1bK0vEgFAjWK5pdVwF0DO/GoOEMz5P2kAb4EERQNARZvj3Cbc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pBmLprNTBkAkfzDw3DsgQM1WXvI/eeY/NgLxun4BB0DgoSjQJzIPQLraiv1lNyVApvJ2hNPCBEDqlbIMcYwZQAwCK4cWWQVApgpGJXViGkB5zEBl/Hv+P7SOqiaI+gFAETXR56MM4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZcdGIF6XCkCRCmMLQS4cQO0NvjCZagNAtFn1udoK/z+s4o3MI/8LQG40gLdAIiZA6gQ0ETb8A0CKzce1ocIaQCcxCKwc2v0/4nX9gt1wGEBfJLTlXAr/P7lTOlj/pwRAD0OrkzMU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EvdY+tAFAEArE36pn2chQCU9DK1OTuM/w7ZFmQ1yBkBLPKBsyhUKQMRCrWneMSRArhIsDme+A0D61RwgmMMbQLMpV3iXi/c/RrHc0mpIGEApP6n26bgAQJM16iEanQZADmYTYFj+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OC140VeQA0AYYB+duvIcQJCEfTuJiO0/gnNGlPaG9j/Du1zEd+IEQL2MYrml5SJACVBTy9Z6AUAZxXJLqwEXQLMMcayLWwJAYMjqVs9pGkCRCmMLQU4AQDIge737owJAP6vMlNZf5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hA1Pr5TlBEB/Tdaoh+gYQMcOKnEd49A/LNSa5h3nB0B5Xb9gN2wKQAKaCBuePiVARpkNMslIBEDL+PcZF84YQLWmeccpOgNARpkNMsmoGkBDBBxCldoBQFdgyOpWjwRAOSuiJvp84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ob5lTpfFB0Dp8Xub/nwgQNGuQspPqgpA6rKY2HzcCUAbL90kBoELQIPAyqFFFiVA6X3ja89sBUBkr3d/vHccQJpC5zV2ifg/3o5wWvAiGED8NVmjHqIAQLpm8s029wZAweRGkbUG5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZhTLLa2G9T/Ox7WhYnwWQKyowTQMH/8/5wDBHD0+I0Af9GxWfa4RQAwCK4cWuSZAfNXKhF9qBEAMdsO2RbkYQG/Tn/1IkfU/zXUaaamcGECJeyx96EICQHFyv0NRoANAVmKelbRi4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0JuKVBjb/z/+mqxRD5EeQBzO/GoO0AJA3rBtUWYD9j9ORSqMLYQJQCSX/5B+uyRAuqC+ZU7XA0DLuRRXld0aQD1hiQeUjQRAs++K4H/rG0Cu00hL5e36P7JjIxCvKwNA+PwwQng04T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EF1Q3zJHEUA10lJ5O6IdQHIz3IDPj/4/Yi0+BcA4AkCFmbZ/ZSUIQESjO4idmSNA9UpZhjhW/z+Cc0aU9oYYQCl5dY4B2fs/5ldzgGDOG0CSy39Iv33/P8oyxLEubgVAsCDNWDQd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T5KumXwz+D9kWMUbmUcZQAXdXtIYLQlAofMau0Q1A0AyA5Xx77MLQPVKWYY4NiVAa5+OxwwUBUDO/GoOEOwZQKd5xyk6kvg/tvP91HhpF0CoNc07TpECQBZqTfOO0wZA32qduByv5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dXYyOEpe+z9JhbGFIMciQF3+Q/rtKxBAL90kBoHVCUDpt68D50wLQEdy+Q/pVyVAVwkWhzO/AkB4nKIjuRwZQPrVHCCYYwFA7N0f71XrG0BXeJeL+M78PzCBW3fz1AJAfuGVJM/13j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GVbxRuYRAkB/MPDce0gjQOOqsu+K4AdAnMQgsHKoCEANjpJX5xgKQHgLJCh+DCVA8RExJZLoA0DrOel94+sYQHrCEg8om/0/J6CJsOGJG0Cs/3OYLy/8P5UrvMtFPANANLqD2JlC3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4Ep2bATi/j+C4seYu5YdQHLhQEgWcAhA6WD9n8N8+D8VjErqBFQQQBHHuriNxiZA6bevA+fMBkAydy0hH5QbQLh1N091yAFAvjCZKhgVHED6sx8pIkP9PyYZOQt72gFALNUFvMww5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sVBrmnecBEAdVU0Qda8gQMhBCTNt//Y/zQGCOXo8BUAU7Sqk/GQQQN0kBoGVIyZAU9DtJY2RBUDU8ZiByhgbQJyKVBhbSABA4uR+h6LgGEC9++O9auX/P6orn+V5cARAbtqM0xBV4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/yH99nWgBUC3nEtxVbkdQJ4MjpJX5/Q/q7LviuB//D/tR4rIsMoPQI/k8h/SjyVAN3Fyv0PR/z+/1M+birQYQNEF9S1zugRAH6LRHcSOHUDFVWXfFcH/P+wX7IZtCwJAG0esxaeA4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YB+duvKZB0BuizIbZOIgQIEiFjHssOM/wsBz7+FSAUDayeAoebUIQMX+snvyUCVAsmMjEK8rA0Dk9zb92Y8aQH7GhQMh2QVAYDyDhv4JG0BVGFsIchACQAlQU8vWOgVACw4viEjN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5bM8D+6OBEDrbp7qkHsaQHHLR1LSQ+w/MuauJeSD/j9SYWwhyIEIQK7YX3ZPHiRAh/4JLlYUAkAhk4ychf0YQN8a2CrB4gBAs3vysFBrGkDDu1zEdyIAQCyf5Xlw9wNAp86j4v+O5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e6AVGLI6/T+OHr+36Q8dQARXeQJhp+w/nl4pyxBH+D8qxvmbUIgIQBUdyeU/9CNAuOS4UzpYAUCvX7Abtq0YQO3YCMTregFAflLt0/F4G0CndLD+z+H+P3ke3J212wJA3gTfNH325D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sRafAmC8CkBaZDvfT00dQEc+r3jqEec/kQ96Nqu+/z8xthDkoEQIQFcJFocz7yJACtejcD0KA0Dhl/p5U/EbQEOtad5xygNAiUFg5dACHUDrkJvhBvz9P6d5xyk6UgZAsb/snjws5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PZtVn6utAkBNvtnmxvQdQKimJOtwdN0/OiNKe4Ov9z9EozuInakJQA8LtaZ5JyRAKPIk6ZoJBkAqjC0EOYgcQBU6r7FLlAVAJH8w8Nz7G0B+GCE82rj8P5KWytsRjgdA2nOZmgTv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T3XIzXADC0DECOHRxqEhQAn+t5IdWxRAg92wbVFmAkChuU4jLRUGQHoZxXJLiyNAVOOlm8QgBEDEJced0gEZQD55WKg1zfw/dnEbDeAtHEDW4lMAjKcCQKrU7IFW4AZAMewwJv295D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JTs2AvF6BEBt4uR+h8IbQDVEFf4Mb98/1ZXP8jx4DUCNKO0NvnAIQBNhw9MrRSRAFK5H4XrUBkDfbHNjeqIdQDDw3Hu4pAFA6znpfePrF0BubkxPWOL/P2rBi76CNAdAIGKDhZM05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eGLWi6HcC0C7fsFu2JYfQCDvVSsT3hNARfC/lexYAEAfSx+6oB4QQH2utmJ/GSVA/aTap+Mx/T8Fo5I6AY0WQEFl/PuMC/M/OxkcJa9uGUAw9fOmItUCQMai6exk8ANAU8+CUN7H4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BhIUP8YcC0CeJF0z+WYYQPJBz2bVhxZAfH4YITyaFUDb3JiesMQSQMx/SL99PShAnpj1Yign9j9HyatzDAgXQLFQa5p3nPo/KpFEL6OYFUCRLGACt+7/P0PFOH8TigNA5POKpx5p4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O6qaIOr+BkDZ690f7/UTQAK8BRIUP/U/W5TZIJMMFUDxRuaRP1gSQIts5/up0SZAfzDw3Hs4/j/9pNqn47EVQHam0HmNXfk/foy5awl5GUAipkQSvcwCQJijx+9tugZA/tE3aRqU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1ZXP8jw4CUC+nxov3dQiQB2SWiiZHOk/KPIk6ZpJAUCfAmA8gwYMQKAaL90kBiRAXb9gN2wbCkDA54cRwsMeQJsDBHP0eP0/WrvtQnOdGEBe1y/YDdv/Pwqd19glagZAqtbCLLTz5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"umbyzTY3AkBSflLt07EXQL1vfO2ZJQBAFjWYhuFjBkDpmsk32xwKQInS3uALUyRAzEV8J2Y9CkDHLlG9NZAcQNdR1QRRd/w/CI82jljLG0ANjpJX51gAQCxlGeJYVwZAqtctAmN95j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mc7fhEIEA0B6U5EKY0siQDIge737Y/o/+FPjpZukGECyhSAHJWwQQH2utmJ/GSdAgosVNZiGB0DpDmJnCh0eQPcGX5hM1QBAYHZPHhbqGECwVYLF4cwCQD9XW7G/7ANAPGnhsgqb4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"avtXVpoUDkD60AX1LcMhQF3Ed2LWi/I/AU2EDU+vCkCzDHGsi1sPQKYKRiV1QiVAieqtga2SCECcpzrkZngbQJm7lpAPev0/+vIC7KOTHUBiLT4FwPj8PxqjdVQ1gQZAFFlrKLUX3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hbGFIAflAECRCmMLQQ4fQAOzQpHu5+8/Tnrf+NpzAUAB3gIJil8IQLjkuFM6+CNAvodLjjtlAkDr4jYawBsZQPvo1JXP8gBAmbuWkA8aGUC5cCAkC5gCQIguqG+ZUwNAxsA6jh+q5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k6mCUUldEUD2l92Th0UfQJSHhVrTvP8/N3Fyv0PR/D/yzTY3pucIQPRsVn2u9iRAqAAYz6BhB0ADPj+MEF4aQO+P96qVif8/ptB5jV0iG0AjFcYWghwAQBdIUPwYcwNAW+7MBMO54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Un5S7dMxB0AAkX77OlAdQH7GhQMhWfI/d2fttgvN/D8vUb01sNUKQFGgT+RJsiNAXW3F/rJ7/T889x4uOW4ZQE8jLZW34wBAbagY528CG0BEi2zn+6n9P/t5U5EKIwRASDKrd7gd3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XynLEMe6A0DUSEvl7egTQGEaho+IKfc/v0NRoE8kEkBRTrSrkLIPQM4ZUdobnCRAdk8eFmrNBkBYVpqUgk4eQOXVOQZkr/s/Pzp15bO8GED7IqEt51IBQAJlU67wbgdAY2NeRxwy5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LNSa5h2nB0CM8zehEOEiQIYb8PlhBOU/LlbUYBrGCkAwEtpyLkUMQMdLN4lBICVA1qiHaHQHAEA4hCo1eyAYQNFXkGYs2gRAwD46deVzG0BVTRB1H4AAQLDmAMEc/QRAFMstrYbE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AvG6fsEuC0AwnkFD/wQeQEKVmj3QCgBAKxN+qZ/XGkCN7iB2ptALQFtCPujZrCZAaFw4EJJFBkAkKH6MuescQH2W58HdWfc/vmplwi8VGUAdyeU/pF8BQCkiwyreSAZA/S0B+KdU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hjjWxW00CEAyA5Xx74MiQMmrcwzIXvI/duCcEaW99z+U+x2KAr0QQC7/If321SRAl1ZD4h5LB0C0PA/uztoZQBU6r7FLVANAkst/SL/dG0Di5H6HokABQKvP1VbsrwZAwcjLmlhg4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"73IR34lZAUCpnzcVqbAXQKVquwm+6eo/E/JBz2bV/z9nLJrOTsYFQONTAIxncCJAVvFG5pE//D9/Tdaoh6gZQFJ+Uu3T8fY/rFYm/FL/HEAFwHgGDX0CQAvvchHfCQdAEeD0Lt6P4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"blFmg0xyBkBmMbH5uNYdQJDBilOthdc/et/42jPL8j/7ljldFtMGQD9vKlJhrCNA46WbxCAwBEA/NV66SQwZQOTaUDHO3wNA9E9wsaIGGUCSs7CnHf4AQHqlLEMc6wJATGw+rg2V4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B7ZKsDgcBEC/K4L/rWQhQNWytb5IaNs/0egOYmdKCUBFDaZh+IgGQOif4GJFjSNAsmg6OxmcBEDwv5Xs2KgcQLoUV5V9lwJAuJIdG4FIIEAHmWTkLOz6P0yJJHoZhQdAS5ARUOGI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fJv+7EfKBUBJERlW8RYjQDfF46JaRNw/qB3+mqwxEUBUjPM3oZAKQDemJyzxoCNAcM6I0t6gB0BtqBjnb+IZQJwzorQ3+P0/5Pc2/dkPGkD3ksZoHdX8P3lYqDXNewZA0sWmlUKg4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OdGuQsrPAEC+E7NeDOUfQPM8uDtrdwJAeqpDboa7EUBZ3eo56X0LQAWjkjoBLSZAiZgSSfTyBECu00hL5W0fQMoyxLEurgBAt5xLcVX5G0CsOUAwRw8AQHwPlxx3igRARDNPrikQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R1UTRN0H+D8dOGdEaW8hQKvP1VbsLw5A9+l4zECFEUCTxmgdVQ0MQC1DHOviliVAWwhyUMLMAkCKdhVSfpIeQFpkO99PTQJAv0NRoE/EGkC/gjRj0fQAQDm536EokARAHAsKgzKN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l8rbEU7LB0CQiCmRRK/yv8hBCTNt/+E/EhQ/xty1JUDo9pLGaJ0IQLMMcayLuyRA7kJznUbaAUCNtFTejhAYQPzepj/7kQZAyAxUxr9vGECDbi9pjFb/P060q5DyEwZAUORJ0jWT4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IHu9++M9AEAhdNAlHHrHP1n5ZTBGpOg/g6Pk1Tn2IkD6sx8pIgMIQOlILv8h/SRAnUtxVdl3/T84hCo1e8AUQAGHUKVmTwFAICkiwyp+GEAQXVDfMmcAQACMZ9DQfwhAhCo1e6AV4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N8MN+PywAkCJ0t7gC9MHQGebG9MTFv0/DkqYafuXGkB5O8JpwasQQMGopE5AsyZAOkAwR48fAUCMSuoENJEXQEjElEiiF/4/IeUn1T4dG0CYTBWMSqoAQOzdH+9VqwRA1dAGYAMi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NJ2dDI5SDkC1/SsrTcoSQNPB+j+H+fM/vmplwi8VGUATYcPTK2UGQCgs8YCy6SNAE/JBz2aVCkAAUps4uT8eQHnpJjEILAVA43DmV3PgGkAKur2kMVoAQIYDIVnAxAVA/OQoQBTM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VtRgGobPCUBdbcX+srsmQDfg88MI4QFA4Ep2bASCFkC6ZvLNNrcNQDsBTYQNTydARs7CnnZ4/j8vi4nNx3UYQC7/If32dfU/jZyFPe2wF0BZTGw+ro0DQG8qUmFsoQhACVOUS+MX5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SREZVvEGCEDLoUW2890aQBYTm49rw/0/ZvfkYaGWI0DZJaq3BhYRQKvP1VbsLydARz1EozuIAkDFA8qmXCEWQMP1KFyPwvk/ou4DkNrkFkAqOpLLf0j+P8bctYR8kAxAqhCPxMvT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r3d/vFctBECcpzrkZhgaQCqsVFBR9e0/4L4OnDPCEkDL1voioe0KQLivA+eMaCVA4uR+h6JAA0C0ccRafIocQM+9h0uOO/Y/S5NS0O3FF0DkSdI1k28DQODW3TzVoQNAM8NGWb+Z5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O8eA7PUuBEC9OseA7JUeQJjdk4eF2vY/EHUfgNSm/z+/YDdsW9QNQBniWBe30SRAYf2fw3z5AUDDgZAsYAIXQKFKzR5oRQBANEsC1NSSGUBH5pE/GHj/P7WmeccpugRA8KSFyyrs5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bw1slWDxB0CUMNP2r8weQMYzaOif4Ok/chb2tMMfCkBzEd+JWU8QQO84RUdy+SVAR+aRPxh4AUD/7EeKyPAZQOQxA5Xxb/s/gufewyWHGED9h/Tb14H/Pxea6zTS0gNAy0qTUtDt4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jh5QNuUK/T+PNo5Yi88ZQBNJ9DKKZfg/Ad4CCYofBUDBkNWtnpMIQBQ/xty15CRAMLsnDwv1A0A/kSdJ18wYQMYzaOifYPg/DOpb5nR5GEBIMxZNZ6f/PxgmUwWjUgJAEhWqm4s/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XOZ0WUwMFEA4hCo1e3AjQLbWFwltOQZAWmQ730+NA0CN7iB2plAKQPMC7KNT9yJAEAaeew8XBkCk/KTapwMdQMXJ/Q5FAf0/t2J/2T0ZGUA/AKlNnBwCQCPzyB8M/AlANNk/TwOG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o+nsZHA0EkDHndLB+j8eQHlA2ZQrvApAZk6XxcTGEUDhfyvZsdEQQNO84xQdCSZA7zhFR3J5AUBfe2ZJgHoYQP9byY6NQPs/JXUCmggbGUATJ/c7FAX/P94f71UrEwFA+aI9XkgH4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RZ4kXTP5A0BdbcX+sjsbQF5jl6jemvk/8ddkjXqICkA9Sbpm8s0PQI4G8BZIECZAfQVpxqIpAkDiHksfuqAYQIJWYMjq1gFAaK7TSEtFGEDFrBdDOdH7P3BfB84ZUQJAONkG7kCd3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RS+jWG5pBEB+b9Of/QgUQJj8T/7uHdg/FqQZi6YzDUAP1v85zBcMQGKh1jTv+CVAizIbZJIRBUAvF/GdmDUaQGDq501F6gRANBE2PL2SHUDUghd9BWn9P1Vq9kArcARAnYAmwoYn5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qkiFsYUgB0DCL/XzpqISQFGgT+RJ0vU/Bd1e0hjtDEAnwoanV8oNQJhMFYxKaiZAYFlpUgq6AkCoV8oyxDEbQJ7vp8ZLN/4/SDMWTWdnGUDwFkhQ/Jj/Pz7t8NdkTQVA7SsP0lNk4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+kSeJF3zFEDDDfj8MIIhQE/MejGUkxRAdavnpPcNIUDZCMTr+qUSQI/k8h/S7yZACYofY+4aBEAna9RDNFoaQLQCQ1a3evs/sI9OXfmsGEBUAIxn0FABQIidKXReowVA/S/XogXo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"08H6P4e5AECNtFTejtAeQHqNXaJ6a/Q/Ft7lIr6T9T9BvK5fsFsLQBfZzvdTIyZAGjT0T3BxBUAQI4RHG6cdQA39E1ysqP8/mnyzzY3pGUAvi4nNx/UBQE0VjErqxAZASPq0iv5Q5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2jhiLT5FDkCr56T3jW8gQJVliGNd3PQ/r3yW58FtIUAIyQImcMsQQBx8YTJVcCVAvCL430r2C0AfhetRuF4cQGjLuRRXFf4/kUQvo1huGUCKjuTyHxIBQIGVQ4tspwRA+E83UOAd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ZQrvMvF/z/ek4eFWjMkQB3J5T+kX/A/E2HD0yulAEAnTu53KIoKQJVliGNdfCVAFVeVfVdEAkCCOXr83oYYQAXAeAYNPQJAg92wbVEGG0BEhlW8kTkBQCJseHqlrAdAZr/udOeJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hCo1e6AVB0CKyLCKN/ICQLQevkwUoeg/FW9kHvnDGUD68gLso1MHQE91yM1wYyNA+ie4WFEDAkBoeR7cnTUZQBH8byU7tvs/1XjpJjHoGEAyj/zBwPMAQLyuX7AbtgRANXo1QGmo5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GZC93v0xBEAtz4O7s/YKQORO6WD9H/Q/vAUSFD/GL0C/ZU6XxQQIQL6fGi/dRCJAfgBSmzi5A0B2N091yA0ZQLA4nPnVHANAv30dOGeEGkDRP8HFipr/PzZ2ieqtAQVA8DUEx2Xc4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/U0oRMCh/T//7EeKyNAcQLJoOjsZ3ANAMevFUE6UFECcpzrkZrgGQP2k2qfj4SJARfC/lewYBED6sx8pIqMYQCHqPgCpzfo/ijxJumYyHUBd3EYDeAsAQDPEsS5uowlAtFn1udqK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0VynkZZK/T+wIM1YNP0cQLDJGvUQDfk/H5268lneCUBRTrSrkLIKQPyMCwdCgiNALc+Du7N2BECFd7mI7yQcQJjdk4eFmgJA1bK1vkgIGkCAfXTqyucBQP6arFEPEQhAY3st6L0x5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9DKK5ZbW+j/yDBr6J9gbQPGAsilX+PQ/+zpwzoiSAECgibDh6RUQQOeMKO0N/iVAz9ptF5orAkAai6azk2EZQA2Jeyx9aP0/CKwcWmRbGEDk9zb92Q/+P6z/c5gvrwFAixu3mJ8b4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yOpWz0kvAUDv4ZLjTqkhQGFUUiegKRVACHJQwkwbE0C7fsFu2LYMQBueXinLsCVAveMUHcklBECoABjPoCEaQML6P4f5cvo/hXe5iO9kGkBtHLEWn4L+P2owDcNHhAJAzxJkBFS44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"205bI4JxxD/1oQvqWyYdQN3SakjcIwZA+ie4WFGDCUATfqmfN5URQH/7OnDOqCVAJV0z+WbbBUC0sKcd/toZQKEQAYdQpfs/i8OZX83hF0DnqQ65Ge75P2wE4nX9QgNAbOo8Kv7v3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6X3ja88s9D8gJAuYwF0gQF5ortNICwtAoKaWrfVF9T9v05/9SNEGQOF6FK5HoSVADOpb5nQZAUBUxr/PuPAZQC4cCMkCJvg/WtjTDn9tGkDNkgA1tWwAQFHaG3xh8gJA5J6u7lhs3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ie/ErBfDCUCqmiDqPmAdQGr2QCswZPE/vqQxWkfVCUDqW+Z0WcwMQFyPwvUofCRAMNgN2xZlAEDgnBGlvaEZQGfV52ordgVAQE0tW+srG0BBt5c0RqsDQAoRcAhVagJA4UbKFkm74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WJBmLJoOCEDRBfUtc7oXQBuC4zJuauY/I6Et51KcDkAzG2SSkbMLQDJVMCqp8yRAxEKtad7xAECCrRIsDocZQCY2H9eGSgVA/isrTUoBHEBEozuInekDQPBQFOgT+QRAavrsgOsK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zH9Iv32dBUBgdk8eFmolQNOgaB7AIuo/eNFXkGasD0DM0eP3Nv0LQGuad5yigyVA5KCEmbY/AkCtwJDVrV4XQFQ6WP/nsANAhqxu9Zw0HUChoX+Ci1UDQLu4jQbw1glAnMHfL2ZL6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uXAgJAuY3D8HzhlR2tsTQJHQlnMprghA7Sqk/KQaBkC70FynkVYMQHKndLD+fyNA56kOuRluAEDqlbIMcawYQD81XrpJDPk/3gIJih9DGEA82jhiLb4AQA6EZAETeANAIGCt2jUh2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wTkjSnuD8D9vRzgteIEjQJ1GWipvRxlAAFeyYyNQB0DQJ/Ik6ZoOQMpUwaik7iZAnKIjufyHA0DxaOOItfgYQDdPdcjN8Pk/zsKedviLGUCx+bg2VAz7P0q1T8djhgRAN/qYDwh05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x0YgXtfvCEDGihpMwzAUQH4dOGdEafM/qTC2EORgCkA8MevFUE4KQHxhMlUwKiRAU9DtJY2RAEABNbVsrQ8bQICCixU1GP4/Cks8oGzqGUDUt8zpshgCQCeIug9AqgJAXVFKCFbV1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7ginBS/6AkCpMLYQ5CAdQLgehetRuPQ/T+lg/Z8DB0D2evfHe5UMQM4ZUdob3CVA5BQdyeU/AkDpmsk323wWQIQNT6+UZfw/wW7YtiiTGECnrnyW58H8P0ljtI6qpgRA9gt2w7ZF3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"95LGaB3V/z9M4NbdPDUeQGebG9MTlv0/W7bWFwntAUC8s3bbhSYKQPp+arx0UyVAiC6ob5nT/z9B1H0AUhsZQPiNrz2zpPk/JV0z+WabF0CF61G4HgUAQKHzGrtEtQNAuTgqN1FL1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3UHsTKEzCkAbR6zFp0AeQEJg5dAiexNAmz3QCgxZCEDPFDqvsUsQQF8pyxDHeiVATrnCu1wEBkCUMNP2r0waQCxIMxZN5/0/AAAAAACgGkDzdoTTghf/P23F/rJ7MgNAcLIN3IE65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gQncupunC0DkLOxphz8aQJzc71AUqAdAXKyowTQMCEAP0egOYucOQIPAyqFFtiRAVyHlJ9V+A0BUjPM3oVAZQORmuAGfH/0/nKIjufzHGkBAGHjuPdz9P1a8kXnkjwJAKZZbWg0J4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Px2PGajMAEAg0m9fB04UQAisHFpk2xRAeekmMQjsAUCeew+XHHcOQE+vlGWIoyVA9+RhodY0/T/gZ1w4EJIZQFa8kXnkD/U/HcnlP6QfGEA4vvbMkgD9PxL3WPrQBQJARbjJqDIM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QPZ698d7AkCrPldbsb8jQOKS407pIAtAmBdgH536BUA8MevFUI4LQN0kBoGVAyVAyY6NQLwuBECy9KEL6rsXQDUk7rH0IfQ/owG8BRI0FkDaIJOMnIX/P+wS1VsDmwJAPBVwz/On2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+wW7YduiC0AkKH6MuWsSQNBE2PD0yvI/S1mGONaFEkBwzojS3qAPQEXY8PRKuSZAD9HoDmJnA0BvDWyVYJEbQJNvtrkxvQNAxJRIopexGkD0+L1Nf/b9P7yzdtuFZgRAUcHhBRGp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a4Ko+wCkDUD04O6s3TYaQLjM6bKYWApA1lbsL7vHEUCsrdhfdk8QQOeMKO0NfiZAnUZaKm9HAUD3AUht4oQZQL9gN2xb1AFAe4MvTKYqHEBTy9b6IqEBQJg0RuuoKgVAYfvJGB9m3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mus00lKZFUDWqIdodGceQP0TXKyoAQNAv/G1Z5YEAUD0+L1Nf3YRQMP1KFyPwiZAd/hrska9+z+OzCN/MHAYQGZrfZHQVgFAUrgehesRGkA6HjNQGf/8P64SLA5n/gVAlWbzOAxm4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xT2WPnTBD0DFyf0OReEaQIE+kSdJFwVATkUqjC0EBkB4uYjvxEwQQBWMSuoElCZAnUtxVdn3AEC05VyKq8oXQJXUCWgibABAn1kSoKYWGED1nPS+8bX/P5ccd0oHKwVAJlEv+DQn4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bAn5oGfzDECNRdPZyaAeQDkLe9rhbwhAUKp9Oh6zBkBZUYNpGF4QQPLSTWIQmCZAVTAqqRPQ/z9RvTWwVeIXQDDw3Hu4ZPw/K9mxEYh3GUCp9ul4zMD/Py/APjp15QVABi6PNSOD3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qg65GW6ABkBslWBxOHMgQJHT1/M1y+w/YOrnTUXqCkBd/kP67QsQQKrx0k1iECZA1EhL5e0IAkBwCFVq9qAXQE60q5Dy0wBA/mDgufeQGUBlGeJYF7f9P+4IpwUvOgNADHcujPQi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B/AWSFC8AUCkcD0K1yMoQK+ZfLPNDfQ/ZkmAmlo2IUDePNUhN4MDQN5xio7k4iNA78nDQq0pBUALYwtBDuobQDXvOEVH8v0/2XxcGyoGGUDGFoIclDABQNj1C3bDdgVA0zB8REwJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R+aRPxh4BEAB3gIJis8hQCZWRiOfV9Y/L6NYbmkVEED+YOC59/AKQMzuycNCnSNAQNmUK7xLAEB1jgHZ6/0ZQAkWhzO/WgVAOjsZHCVPHEB4RfC/lSwAQOTaUDHOHwZA6zU9KCjF4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5nlwd9ZuBkBOnNzvUJQVQKlsWFNZFOs/7FG4HoXrBkCd19glqjcIQCSX/5B+myVASPlJtU8HC0D9MEJ4tLEbQJn1YignWv0/OL72zJJgGUBm9+RhoRYEQOIjYkokUQZAll6bjZUY6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GRwlr84xAkDxKQDGM6ghQBo1XyUfu+U/i+B/K9kxAEBCz2bV5+oKQFInoImwQSRAXwzlRLsKBkAc6+I2GuAdQBea6zTSUvw/RMAhVKm5GkAmNh/XhsoEQBnFckurIQdAqKePwB9+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VB1yM9yAD0C6awn5oAciQDP5ZpsbU/s/1T4djxmoC0C/ZU6XxcQLQAKaCBuePiVA+u3rwDnjAkBPzHoxlNMXQDsZHCWvjgBABp57D5ccGkA7wmnBi/4AQPcBSG3iZAhAMzUJ3pDG5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZCMQr+uXC0CAK9mxEegbQCcUIuAQKgdAPKBsyhXeA0AdjxmojN8SQGx4eqUsQydAQxzr4jaaA0CFd7mI7+QZQPsioS3nUgFAgSGrWz2HGUDw+WGE8OgCQICCixU1mARArn/XZ8764j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GJXUCWiiCUBTeTvCaTEhQD6yuWqeo+A/qwmi7gPQBEAm5IOezeoHQCgPC7WmWSRAl5APejarBUAh5SfVPn0cQLbbLjTX6f8/Nqs+V1sxF0B3Sgfr/xz/P6RTVz7LMwVArfvHQnQI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xHdi1ovhAUAnTu53KLogQN46/3bZL+o/7zhFR3J5B0B3Sgfr/xwNQMe6uI0G0CVAI2dhTzu8A0BXPsvz4O4YQFj/5zBf3vo/D7kZbsBnF0DhXS7iO/EBQC+jWG5pNQhAVi3pKAez5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FytqMA3DAkAP0egOYucfQDbIJCNn4fI/L2mM1lFVAEDF5uPaUDEMQEmdgCbC5iRA1GAaho8IBkDSOqqaIKoaQFxy3CkdbAJAcLa5MT2hHED0iTxJuub9Py1b64uE9gNAEqJ8QQsJ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lIeFWtO8BEBDVrd6TgoiQIXOa+wS1fo/X+/+eK9aAkB81cqEX2oMQPKwUGuadyVA/pqsUQ+RAkCZEkn0MqoaQC3Pg7uzdv0/TDeJQWAFH0C4QILixxj/P3QMyF7vfgdAfPKwUGua3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GqN1VDXB+z/wxKwXQ2khQJv+7EeKSPY/IoleRrEcBEDfwyXHnRIMQNSa5h2naCVAyTzyBwPPAkBJaMu5FLcaQIHPDyOER/w/NQcI5ujRHkB1djI4St79P/tcbcX+sgdA0h3EzhQ63j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dAzIXu/+9T+3Yn/ZPRkkQLA4nPnVnAJAP5EnSdcMEUAhyEEJMy0KQL1SliGOFSVAmdh8XBvqBEDtR4rIsIoZQHkGDf0TnANAb7vQXKdRHUBORSqMLYT9P9Fcp5GWCgVAelT83xGV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8WjjiLW4B0Ceew+XHOcjQLkZbsDnh/4/5lyKq8peE0BPHhZqTfMHQPRPcLGiBiNAYY4ev7dp/T/WxW00gPcVQM11GmmpvPo/fbPNjekJG0CK5ZZWQ2L/P4xn0NA/AQZAeeblsPsO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JAuYwK07B0B90LNZ9dkgQIhodAexs/M/XBsqxvnbA0Cztb5IaMsKQAtGJXUCWiVA0XmNXaK6AECTGARWDu0UQLh1N091SPw/sD2zJEDtGECoV8oyxLH/PxUA4xk09AZAWrqCbcST4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nUtxVdk3BEBqEyf3O5QaQGBWKNL9HOA/EywOZ34VEUDVCWgibLgJQBsv3SQGISRARKhSswdaAkAqkUQvoxgbQLe0GhL3WP8//tR46SaRFUCp2QOtwJD/Px8uOe6UTgVADwpK0co94T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UkmdgCbC+T/Oqs/VVowrQMR8eQH2EQFAHOviNhoAJ0AhWcAEbh0KQPd14JwRBSRAd4TTghd9BUAn2lVI+YkZQOZ0WUxsPvM/ejarPlebG0CNKO0NvjAAQBYTm49rAwVAVoDvNm8c4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lo9J6xRQjb9HA3gLJMgpQE0ychb2dBBA3Qw34PMDHEC7D0BqE4cQQGN/2T15OCdA0XR2MjjKAkCtwJDVrR4ZQLyWkA96Nv4/+rg2VIwTF0BL5e0IpwX8PyZTBaOSegZAkZp2Mc304T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+fcZFw5EEkDQm4pUGFv/P9IdxM4Uuvk/FR3J5T/EFUCDL0ymCkYMQNlfdk8eFiRAEqCmlq11AUDL+PcZF24YQE87/DVZI/k/U5YhjnUxGkAQI4RHG4cCQIY41sVtdANAINWw3xNr4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EqCmlq1VFEBlGeJYFzcYQKX3ja89ExxAdR+A1CYuH0D8HYoCfeIQQLprCfmgZyZAMbH5uDbUAEAlQE0tW+sZQK6ek943vvw/evzepj9bGkBMVG8NbBUAQIp2FVJ+UgJA71NVaCCW3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rFYm/FJ/FUATYcPTK0UeQLx0kxgENipAHY8ZqIx/GUCRuMfSh+4PQMRCrWneUSdAHThnRGlvAUBEaW/whakXQBQi4BCq1Pc/ozuInSmUF0Bm9+RhoZYAQLNBJhk5CwVAey++aI+X4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"izIbZJKRHUDbUDHO3+QUQDKs4o3McyBA8nub/uzHA0AAUps4uR8JQDI4Sl6d0yJAMZkqGJXUAUDhfyvZsfEXQM/abReaa/c/fA+XHHfKF0DT3uALk6n/PwYSFD/GXARA8KSFyyrs5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KXl1jgGZFkAw8Nx7uKQXQFvTvOMUjSBAxyk6ksv/AUAlQE0tW2sIQNEF9S1zGiNA6uxkcJQ8/T8F3V7SGI0YQFafq63YX/k/BWnGoumMFUBgqwSLwxn/P8bE5uPa0ANAN091yM3w5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0QX1LXO6G0ASTgte9PUgQHxETIkk+gpAhc5r7BLVAkCWPnRBfcsGQEvIBz2bdSRAat5xio4kCECQvd798R4ZQN3Sakjc4/E/N2xblNmAGUB798d71YoBQCjyJOmayQVALEfIQJ5d4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RgiPNo44GEASvYxiuZUgQBMPKJtyNSFAl+Kqsu+KAUAVjErqBHQHQBSuR+F6NCVAUn5S7dOxCkDuPVxy3OkcQOaRPxh4bvI/wVYJFocTF0Dr/xzmy4v/P3WOAdnr3QVA0xHAzeLF4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c6JdhZSfGkBbttYXCe0XQDDw3Hu4hBZAO1PovMZuEEC3lzRG6wgQQJLLf0i//SZAeUDZlCs8/T8AdJgvL4AWQKqCUUmdAAFAu37Bbtj2HUAC2evdHy8BQFN5O8JpQQdAhqktdZBX4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PSr+74gK3T+hEAGHUMUUQCUGgZVDi/s/NlmjHqKRGkAydy0hH3QPQEdy+Q/p1yZAbZBJRs5CCkAn2lVI+UkfQHwKgPEMGvc/ngyOkldHFUBkWMUbmUf/Px+/t+nPPglAYFrUJ7lD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ijxJumZy8j8/dEF9y3wTQAaBlUOLbCZAWi+GcqK9FkDZmULnNbYMQIv9ZffkwSRAYTJVMCqpB0DwhclUwageQFExzt+EQvg/tOVciqvKF0CVgm4vaYz/PznRrkLKDwVAk9+ik6XW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ox6i0R2EAUCJeyx96KIeQCwrTUpBFyJAlPYGX5hMAEDxS/28qUgMQKrx0k1ikCRAQSswZHUrBEBzhXe5iO8ZQCjyJOmayQFAsylXeJfrHECXOV0WExsBQJhp+1dWmgVA9yFvufqx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ol0WE5sP8j9HA3gLJOgbQLVPx2MGagVAWJBmLJrO+D8/V1uxv+wKQOcdp+hIziNAezGUE+1qA0D3r6w0KUUbQAr0iTxJegJAEw8om3JFHECSeeQPBl4CQKQZi6azEwZAFqJD4Eig5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1edqK/YX/j9Uxr/PuLAiQHBfB84Z0fU/Eyf3OxQFBUCP5PIf0m8KQDJ3LSEfdCVAhPBo44i1AkBeS8gHPfsYQMJpwYu+QgFA8FAU6BN5GkBDc51GWioAQPIMGvonOAdA04iZfR4j5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9P3UeOnmCEC5iO/ErHcdQOOItfgUAOc/uMzpspjY8D8HX5hMFcwKQGKh1jTvOCVAu2HboszGB0AQr+sX7KYaQNklqrcGtv4/VB1yM9xgHUDUSEvl7YgAQGcKndfYpQVAWFhwP+AB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RIts5/upAkAgXtcv2G0iQEPFOH8Tiu4/9dbAVgmWCkCBIatbPacKQGagMv599iNAz2vsEtVbB0CUh4Va0/wcQPT91Hjppv8/5xiQvd7dGkB6/N6mP3v9P2EyVTAqKQRAmsx4W+k14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2GSNeojGDUAxlBPtKsQaQIwtBDkoYfY/G0esxaeAAUAldQKaCNsNQL99HThnxCVAf/s6cM5IBEAGKuPfZzwaQFslWBzO/Pw/4GdcOBCSGEDIQQkzbf/+Pw4V4/xN6ANAnGuYofFE3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"INJvXwdOAUC5NlSM81caQC/gZYaNMuo/Tu53KAp0/D+fjscMVEYIQNRlMbH5qCNAJ71vfO1ZAUBUxr/PuPAZQOJ1/YLdsAJAkPeqlQm/F0Bf0hitoyoCQAx2w7ZFWQZA8l1KXTKO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"91j60AV1C0BPQBNhw7MdQNl8XBsqxvU/m49rQ8W47T/2Yign2pUJQCpvRzgtqCJAAfbRqSufB0DcRgN4C4QbQO6UDtb/uf8/TS1b64ukHkCbj2tDxTj+PzuNtFTeDgZAe5+qQgMx5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IAw89x7uAUAu/yH99mUgQO1I9Z1flOU/FsH/VrKjAED9wcBz7yEEQIBIv30d+CJAP3RBfcvcBUCrBIvDmV8dQPfpeMxAJQhA6SYxCKz8GkAHCObo8TsDQKgAGM+g4QVA+MWlKm1x3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p3nHKTrSCEDdQexMoYMgQIwPs5dtp+o/7wOQ2sTJ/j98LH3ognoGQMUDyqZcUSNAeo1donorCED9ag4QzDEcQLGnHf6a7AdAA1slWBxOHEAouFhRgykCQOhqK/aXnQVAf9qoTgey4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WfrQBfVtBUAnZr0YyskcQECH+fICbPA/zHoxlBNt+z8I5ujxexsFQE6c3O9QhCNAVFc+y/PgB0AlOzYC8ZocQCxIMxZN5/Y/0QX1LXN6GUCVtyOcFnwCQCl5dY4BmQVALzArFOn+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HT1+b9OfAkATRN0HIFUZQNPe4AuTKe0/DFnd6jnpAUAoDwu1prkJQDeOWItPcSJA/TBCeLQxA0BPO/w1WcMZQHke3J21W/8/Bwjm6PEbG0AQQGoTJ3f+P0D7kSIyrARApkdTPZl/3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V7JjIxBvBkBWfa62Yi8iQKClK9hGPOk/DyibcoX3EkCvJeSDng0QQJM6AU2EbShA1IIXfQVpBEDohxHCo00ZQNf6IqEtpwRA/iYUIuAwHEB7oBUYsroCQA6+MJkqWAhA14aKcf6m6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6SYxCKwc/D9JnYAmwkYeQFRTknU4uug/CoDxDBp69z+6SQwCKwcDQFpHVRNEvSNAfPKwUGuaA0AmGTkLe5oZQAT/W8mODfU/XFoNiXvMFUDBkNWtnhP+P44B2evdnwFAt+wQ/7Cl4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z04GR8mr/T/f+NozS6IeQO/hkuNOaes/gGCOHr/3AkBzaJHtfP8CQD1+b9Of7SNAZB75g4EnAEC7RPXWwNYYQN8a2CrB4vM/Y7ml1ZDYFED9wcBz7+H/PwXFjzF3LQJAZK4Mqg1O4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bCbfbHPjCEDEJced0oEeQF2Kq8q+qwhAcEIhAg4hCUDWrZ6T3pcSQJvmHafoKCZAS+oENBG2CUAyj/zBwHMcQLL0oQvq2/c/gIKLFTXYGUCyEYjX9UsDQPQ3oRABhwlACi3r/rGQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ryXkg55NAEAge7374/0eQJaVJqWg+yBA+Db92Y8U/z+Xi/hOzHoNQOhqK/aXfSRA+PwwQnh0B0ALQQ5KmCkXQLQCQ1a3evc/AOMZNPTPFkDOqs/VVmwEQM+9h0uO+wZA26LMBpnk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p3Sw/s+hAECq8dJNYnAeQAVpxqLpjB5A5QrvchFfBEDvA5DaxEkOQL7BFyZT5SRAI4RHG0csBkDjpZvEIHAYQIvDmV/NAfo/2bERiNcVF0AMAiuHFpkEQIF4Xb9gNwZApS4Zx0h25T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kWEVb2SeCEDRdHYyOMoWQCsYldQJqChAW3wKgPEMA0DdtYR80DMPQBiV1AloQiRAUYNpGD4iAEAR5KCEmZYZQN/gC5OpAvo/eo1donprGUCWPnRBfYsDQAg9m1WfawdAN3Fyv0PR5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R3L5D+m3+b/eH+9VK9MbQJHyk2qfThBABaOSOgGNDkC7YduizEYNQE9AE2HD0yRASbpm8s32BEAdcjPcgG8bQEoMAiuHFvo/fQVpxqJpG0BEaW/whcn9P5BJRs7CXgNAbmk1JO6x2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OIYA4Niz3j/FOH8TCpEgQLHh6ZWybCZA3o5wWvCiBkCmD11Q37IMQBlz1xLyISVAv2A3bFsUAEDvVSsTfqkaQAiUTbnCOwJAtDwP7s76GUBnJ4Oj5FX+P8a/z7hwoARAyy4YXHPH4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gV64c2Gk778hdqbQea0dQHpwd9ZuyyBAVoLF4cwvD0C7uI0G8FYRQLpJDAIrhyRASWO0jqrmBUDw3Hu45JgZQM6N6QlL/AJATaHzGrukG0BWSPlJtc8BQDF8REyJZAZA4pLjTung4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qni0ccRa979oBYasbuUiQEMc6+I2Oh1AJZLoZRTLDkBLzR5oBYYNQNzXgXNG1CZAXp1jQPZ69T/7ljldFlMXQBGq1OyBVvY/2PD0SlnmGUD9pNqn4zH/P6n7AKQ2sQVABAKdSZsq4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WYY41sWtCUD6RJ4kXZMTQG+70FyncRpAGOyGbYsyB0D+mqxRD5EKQA6+MJkqGCRAP6n26XjMCEDJcad0sB4eQMvbEU4L3vo/uk4jLZW3F0Dye5v+7Ef/P4hLjjulwwRA0qdV9Ifm4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GHjuPVxSFEB7vfvjvcocQKyQ8pNqnw5AC170FaT5E0ACvAUSFD8NQPLSTWIQ2CVAbAn5oGdzBUAhdqbQeY0dQNMTlnhAWfU/v/G1Z5akFkBTliGOdTEAQKbVkLjHEgZAwjBgyVWs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"weJw5lfzDkDBqKROQJMeQNuK/WX3ZPc/6J/gYkUN/j940VeQZmwKQDy9UpYhziRAp3Sw/s9h/D9b07zjFD0YQPRPcLGiRgJAkzXqIRodG0C2SrA4nPn/P3+HokCfyANAOzQsRl1r5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OsyXF2CfBkCwIM1YND0dQHwKgPEMmvc/donqrYGNFECI9NvXgfMMQET67evAmSVAmrZ/ZaXJA0ArajANw4cZQF6iemtgK/s/vHmqQ25mGUAabsDnh5H/P4p2FVJ+UgNAn1c89UiD4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0lJ5O8IpBUB9rrZifzkkQCQLmMCtu/s/N+DzwwghCUDa/pWVJiUOQLRZ9bnaiiZAlWBxOPPrBUA2H9eGinEbQIQqNXugFfs/uwopP6m2GkDN6bKY2Pz8P4QNT6+UZQJAvqQxWkfV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SYCaWraWA0DesG1RZsMZQBam7zUER+E/8WPMXUtI+T8zp8tiYvMJQIV80LNZ1SRA9b7xtWdWAkBFKowtBBkZQF3Ed2LWiwBA9wFIbeKEGkCoNc07TlH/P2Ni83FtaANARu1+FeC74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+yKhLeeSAkAW+8vuyYMOQHzVyoRfKg5AQfFjzF3LLUDG+ZtQiEAOQPd14JwRBSVABoGVQ4vs+T8Wwf9WssMWQHAIVWr2QP8/2Eenrny2GkDSNZNvtnkBQE563/jaMwVAn8vUJHjD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O1PovMYu+T9K7xtfe8YcQJ/leXB31u8/i/1l9+Rh+j/7eVORCiMKQAn5oGezSiVAKEnXTL4ZAEAe4bTgRT8XQD86deWzvPk/2zNLAtS0F0By3CkdrD8CQDygbMoVngRAqFFIMqv35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ups4ud+hBUB3Z+22Cx0gQP2C3bBtUQhA7yB2ptB5G0BRZoNMMhIQQIZa07zj9CVA7BLVWwNb/D/wp8ZLN2kWQOuoaoKo+/E/5ZttbkzvFkBBfcucLov8Pw2OklfnGARAFQFO7+J94D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nrXbLjRXBkDwMy4cCOkgQOWbbW5MTxNAKT+p9uloIEBzol2FlB8OQOOlm8QgMCZAgT6RJ0lX+z8wZHWr58QVQHx+GCE8WvI/SFD8GHM3FkC3tBoS91j8P/kx5q4lpARAIQTkS6hg4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bosyG2SyFECbPdAKDFkcQHC2uTE9Yf0/Yf2fw3z5/T/kvWplwu8HQJYEqKllqyNAfcucLovJAkBKRs7CnnYbQHtJY7SOagVAB9MwfETMHUBZbmk1JC4BQIdtizIb5ANAOj/FceBV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WfrQBfVtBkB7Tnrf+PojQOIjYkokEQVA8u8zLhwICECSPxh47r0JQDEIrBxaBCRAs5jYfFxbBkDuQnOdRhoZQOW4UzpYfwBASG3i5H5HGkBUUiegiTD/P97IPPIHAwVAFmniHeDJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uAa2SrC4AUDMlxdgH/0WQKm8HeG04Pk/VKnZA63A/D+eew+XHHcIQI6vPbMkoCNAuvdwyXGnA0Abnl4py/AcQEDBxYoaTPg/ou4DkNrkGEArpPyk2qf/P3JQwkzbPwVAW11OCYjJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4gFlU64wCUBOl8XE5kMjQGJnCp3XWPM/lZo90AqMB0DOUx1yM1wMQFwgQfFjLCVAXcR3YtaLAkBXeJeL+K4ZQCmWW1oNCf0/Km9HOC34F0CSPxh47v0BQD2bVZ+rrQRAdOs1PSgo4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A2A8g4Z+BUDhKHl1jqEaQOPjE7LzNtg/zt+EQgQcA0DUfQBSm7gJQJp3nKIj2SRA/aTap+MxBUC6oL5lTvcZQDkLe9rhbwVABhIUP8YcHUCyaDo7GVwAQBKDwMqhxQNAmDEFa5xN5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FQDjGTQ0BEB5QNmUKwwjQPOS/8nfPeI/KCfaVUj5B0BMw/ARMaUHQAwCK4cWmSRAW9O84xQdBED8Uj9vKjIbQH7GhQMhmQBAnWhXIeUnGkDUmuYdp+j+P4V3uYjvxARA2UKQgxJm4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oWez6nP1BUD186YiFaYWQAcpeAq50uw/xqLp7GTw+z+77UJznYYKQGN/2T15mCRA8tJNYhDYA0CWIY51cdsbQNtQMc7fxAJAwt1Zu+3iGkBj0XR2Mrj8P4v9ZffkIQZAq3mOyHcp3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DB8RUyJJBkC/DpwzovQmQHtmSYCa2vE/JQaBlUMLJUBUdCSX/xAPQBe30QDeIiZAF/GdmPUiAkDY0w5/TdYXQMoV3uUivvQ/8s02N6YHGECp3hrYKoEAQLJoOjsZ3AFA4xdeSfLc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cVrwoq+g9j9H5pE/GGggQFDHYwYqYwBAT0ATYcMzJ0BortNISyULQNXnaiv2FyVAxawXQzlRBECUMNP2rwwbQKLuA5DaRPM/EfxvJTs2FkDmP6Tfvo78P2wm32xzYwNAnff/ccIE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfViKCdaCkB5AfbRqQsSQPfMkgA1NfM/10y+2ebGDkAJ+aBnsyoNQF8HzhlRGiVAAJF++zqwA0ArweJw5pcYQOxph78m6/M/9RCN7iD2FUDBOSNKe8MCQGlXIeUn1QZAvHoVGR2Q4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f/YjRWQYC0BCQ/8EF6sjQF7Ymq285OY/Df0TXKxoBUAPlxx3SscLQB/0bFZ9TiVAlYJuL2nMBEBq2VpfJLQZQJ2FPe3wlwJAADrMlxegG0D+YOC593D7PwhVavZAqwRAYRdFD3wM2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vFzEd2JWC0A7cM6I0l4jQDCeQUP/hOk/001iEFh5A0DrkJvhBjwMQJVliGNd3CRAtAJDVrc6BECC4seYu7YZQJYhjnVxmwJAZhTLLa2GG0CV1AloIuz7P5F++zpwjgRAPNujN9xH2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4nX9gt2wBEC3nEtxVXkVQGVvKeeLve4/48eYu5bQCkArTUpBtxcNQGuad5yiIyZAbxKDwMphBUDnjCjtDZ4YQEinrnyW5wNA/vFetTIBG0CT407pYL0AQFjiAWVTrgRAYLAbti1K4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hm0csRY/EED5Tsx6MZQSQDpdFhObj/o/rmTHRiD+FkDh7qzddmENQKW9wRcmkyZARBfUt8ypBUDc9Gc/UoQaQIJzRpT2xgRAWRe30QCeHUCbj2tDxXgBQIBlpUkpaARAMo6R7BFq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6/8c5suLBEByio7k8n8gQL9gN2xbFP0/kQpjC0GOFkApyxDHungEQMtKk1LQbSNAU7MHWoGhAED8NVmjHqIaQMnlP6TfvvQ/zse1oWJcGUBUAIxn0FD9PwT/W8mOTQRAaXOc24T74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3h/vVStTBkDbheY6jfQaQAoTRrOyfdc/q1s9J73v9T+InSl0XuMKQAK8BRIU3yRAAU2EDU8vBUANGvonuLgXQHkj88gfDANAT6+UZYhDGUDnHafoSC4BQCfaVUj5SQVASWO0jqqm4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5pZWQ+IeA0ADste7P14aQLYvoBfuXN4/097gC5Op/z/VyoRf6icCQI2chT3toCNAjh6/t+kPAkBvZB75g+EXQN4CCYofIwVA5NpQMc6/F0CnP/uRInICQPYLdsO2hQVAkNlZ9E6F5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dnEbDeAt/j9yv0NRoE8aQF8IOe//4+E/Uz9vKlIhC0ADlfHvM24IQEoMAiuHZiNAclDCTNu/AEC6vaQxWscXQIsaTMPwkfs/2iCTjJxlHUC37uapDrn/P51LcVXZNwVAuHTMeca+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lX1XBP8bAUCasWg6O8kgQH9rJ0pCous/kj8YeO69/j9qTfOOU3QJQCGwcmiRDSVAptB5jV3iAUAvwD46daUYQHTv4ZLjjgJAmkLnNXZpF0BgPIOG/skAQLlTOlj/ZwVACcA/pUqU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kst/SL/9CkBNSkG3lzQZQAjm6PF7G/Y/LbKd76cmMEAfgNQmTq4PQCgPC7WmOSVAz0nvG1+7A0AjEK/rF2waQBfZzvdTY/0/Tdu/stKkHkAHtkqwOJz7P/ceLjnu1AJAtyqJ7IOs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"26LMBpkkBEBa8KKvIP0gQM/0EmOZ/uI/V+wvuydPD0Cr7Lsi+F8FQDJVMCqpsyRAuOS4UzpYBEDNO07RkVwZQFRXPsvz4AhAvjCZKhjVGUCeKXReYxcCQBtMw/ARsQNAXAAapUt/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Km9HOC14BUDdXtIYrQMbQL2MYrml1fM/Uu3T8ZiB/T8sSDMWTScNQGWqYFRSpyRATFRvDWwVBEBT0O0ljbEaQNHLKJZbWvA/sCDNWDT9GUDI6lbPSe/9P96rVib8kgVAXhH8byW75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Nx7uOS4CkBtrS8S2vIfQEn1nV+UIOY/s++K4H/rC0AmjdE6qpoKQCEf9GxWPSVAEoPAyqFFBUBM/bypSMUbQEyJJHoZBQVA4BCq1OwBGkBUUiegifACQEUvo1huKQRAqAGDpE8r4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b/CFyVRB9T/GpwAYzyAgQFoSoKaWbQlAQlvOpbhqHEAErcCQ1a0JQBK9jGK5xSNA7WRwlLw6B0BEaW/whUkaQItPATCewfk/xuHMr+ZgHEDB4nDmV/P+PwTidf2CXQVAZmZmZmZm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZB75g4EnEUBh4Ln3cKkZQHRBfcucbgtA2/l+ary0CUDKGvUQje4KQOSDns2qjyZAtRX7y+5JAkAwKqkT0AQbQN/98V61sv4/wCFUqdmjFkCEDU+vlKUAQIwQHm0ccQRAwf2ABwYQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u9Vz0vsGEEA+syRATe0bQA74/DBCeABAFcYWghwUBUCunpPeN/4HQL1SliGONSNARtPZyeDoAkBQ3zKny+IXQLPviuB/K/0/aam8HeH0GUD4ja89syQBQJFhFW9kXgFAu2OxTSoa3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kBSRYRVv/D95Bg39E2whQAT/W8mODfE/FNBE2PB0+j8B9tGpK58LQPkP6bevQyVApkQSvYxiBEAouFhRgwkcQKqCUUmdAPk/gv+tZMeGF0CkNnFyv0P7P1lMbD6uTQFAij+KOnMP3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2T15WKh1B0Ast7QaEjcZQJVliGNdXPY/QwQcQpVaC0AOSphp+xcOQCKOdXEbLSZAuiwmNh9X+z8plltaDYkVQN/42jNLAvs/PKWD9X/uG0DElEiil5EAQN0HILWJUwRAy2jk84qn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H4DUJk6uCUAplltaDckZQEc9RKM7iPc/euQPBp47GEDjGTT0TzAHQERuhhvw2SNA8l61MuGXBkAUXKyowZQbQKgd/pqs0f0/8u8zLhxoFUBJY7SOqqb8P5fK2xFOiwNAuK0tPC8V4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yeU/pN/+EkBo0NA/wZUgQIyhnGhXoQpA91j60AX18T+UMNP2r2wIQAsMWd3qOSNAw552+GvyBEBVGFsIcvAaQLahYpy/ifc/UAEwnkEDGEDBxYoaTMP8P4z4Tsx6cQRA/3ivWplw4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LQlQU8v2EUCoGOdvQkEYQDs2AvG6fgNAdxA7U+h8BUCDaRg+ImYJQKvP1VbsjyRAFqQZi6bzBkC+wRcmU2UaQPt5U5EKY/g/JO6x9KGLGUAJ4dHGEWv+PwWoqWVrPQNA0SSxpNx94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QBh47j3c/T98m/7sR2oYQMhgxanWwuY/wZDVrZ4zIED6RJ4kXTMMQKHWNO84BSVAx0YgXtfvA0DW4lMAjIcbQKbVkLjH0v8/34lZL4ZSGECGj4gpkQQDQGEyVTAqqQZAOSnMe5zp5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8UbmkT+4EUBqMA3DRwQYQHdn7bYLzQZARiV1ApooEUCxijcyj3wNQLaEfNCz+SRAuB6F61E4BEAVHcnlP6QZQMxiYvNx7f0/AcEcPX7PGkCnrnyW58ECQLvtQnOdRghAsoNKXMe45j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ahMn9zvUAUB1kxgEVm4iQLHdPUD3Zes/32xzY3pC/z8QXVDfMucJQB1aZDvf7yRAhslUwajkA0C/ZU6XxcQZQIsyG2SSEQBAhhvw+WHkG0CPU3Qkl//8P4T1fw7zpQVAN94dGavN4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"26LMBplkA0Bh4Ln3cAkRQOQUHcnlP/Q//89hvryAD0DRItv5fuoKQDkLe9rh3yNA64uEtpwLA0CgGi/dJMYZQKiMf59xYf4/G9gqweIQGUDohxHCo00EQNaLoZxolwZA3iBaK9qc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DTfg88MIBEBSJ6CJsOEYQJoklpS7T+w/9E9wsaKGCkAk7rH0oQsKQD2bVZ+rDSRAqfsApDbxAkBUUiegibAZQC9uowG8Bfw/rwj+t5IdGkAOEMzR4zcBQMlZ2NMOPwZAkUJZ+Ppa6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ne84RUfyAkDdtYR80FMnQKgY529CIfU/kGtDxTh/FEDWbrvQXGcJQMZtNIC3QCVA+b1Nf/ajBEA429yYnlAaQA4V4/xNKPs/PSe9b3zNF0CJJHoZxTIDQK62Yn/ZPQZAzJasinCT4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fJv+7EcK9D+fWRKgphYXQBO4dTdP9fg/l8rbEU7LEEDpDmJnCh0NQKHWNO84hSRARfXWwFZJBEBzhXe5iC8aQCB7vfvjPf0/Tu53KAp0GkAsn+V5cHcAQHL5D+m37wNAlSu8y0V84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"64uEtpyLBUC/SGjLuSQjQKA3FakwtvI/mggbnl6pAkDeAgmKH2MKQIqw4emV0iVAW86luKrsAEA/NV66SUwaQM8xIHu9e/8/YTJVMCrpGkDT2cngKHn+PwcI5ujxOwRAKsWOxqH+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2V92Tx7WA0DECOHRxrEgQIp2FVJ+UvU/OBWpMLbQDkCvQspPqv0HQL5Nf/YjhSNAVg4tsp1vBED3zJIANRUXQOQxA5XxrwFAHlA25QpvGUDxY8xdS8j/PwQ5KGGm7QNAH4XrUbge3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bRyxFp/CAUAeigJ9It8hQB+g+3Jmu+4/GD4ipkRSFUBjl6jeGpgEQGsOEMzRAyNALJ/leXB38z9vu9Bcp3EVQEbrqGqCKPo/F/GdmPWCGkCjkjoBTYT/P9Pe4AuT6QRAuW3fo/765D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9+l4zEBl+j9rmnecogMlQAbYR6eu/PQ/GeJYF7exJ0C8lpAPejYEQLN78rBQCyRAWOIBZVPuCEDJk6RrJj8bQG7A54cRQvI/c6JdhZR/FkC8kXnkD4YGQNiBc0aU9gxAOUVHcvmP5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KH6MuWsJBkDvG197ZokXQDuNtFTeDvQ/Z7eWyXC87j96cHfWbnsKQNiBc0aUpiJAWvCiryBNA0DY0w5/TdYbQJmesMQDSuw/gT6RJ0kXE0D0wwjh0UYCQDnRrkLKzwlAT1d3LLZJ6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K4cW2c73AEBt/8pKkwIjQJYmpaDby/Q/dnEbDeCtEkB8REyJJPoFQOf7qfHSTSRAWi+GcqIdBkB0tRX7y44ZQAnE6/oFu/M/JLTlXIorGUC9jGK5pdUFQF2/YDdsGwlAZHjsZ7EU6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KGGm7V9ZAECh+DHmrsUlQMZtNIC3AAtAw9hCkIMSH0AHsTOFzusDQBzr4jYagCRA28TJ/Q7FAEBTy9b6IgEYQPCK4H8rWfg/3jzVITeDF0BwfO2ZJUEGQMuEX+rnzQdA34rEBDV86D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9wFIbeLk9T/7dDxmoDIOQB9LH7qgPgRAuhRXlX0XAkA+6Nms+twNQHxhMlUwWiJA71UrE36pB0AYWwhyUOIbQL4wmSoYFfQ/fGEyVTBKFkBa2NMOf83+P2O5pdWQOAdAOh4zUBn/4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JLn8h/TbCED5oGez6nMkQOTaUDHO3wxA71UrE36pE0AVb2Qe+cMPQK62Yn/ZXSRAdhppqbwdAUA89x4uOQ4aQGWlSSno9gVAOL72zJIAH0Ap0CfyJOkAQM0Bgjl6PAZAprT+lgD84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hv6arFGPBEAiT5KumRwbQBWpMLYQZA5AZY16iEb3/j+dLouJzQcIQIPAyqFF9iRAjkC8rl9wA0BIv30dOIcZQF3hXS7i+wVACwxZ3eopIEDLSpNS0G0BQNvEyf0OxQhAea2E7pK44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MIFbd/PUBUBpAG+BBBUiQKmj42pkV+I/2PD0SlmGCkAzFk1nJ4MPQE0VjErqBCVAlj50QX3L+j+afLPNjWkVQIAr2bERyABApn7eVKTiGkBjesISDyj+P00ychb2NANAuagWEcVk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NSTusfRhA0BzaJHtfM8gQHV2MjhK/hJATgte9BXkH0CHokCfyFMLQCPb+X5qHCZADWyVYHE4A0B3hNOCF30dQMdoHVVNkPU/VDVB1H2gFUDarPpcbQUAQLH5uDZUjAZA7kEIyJdQ2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j9/b9Gc/B0ASTgte9IUgQFt8CoDxDP4/Dr4wmSo4E0AVOq+xS9QPQOf7qfHSTSdAylTBqKTOAkAPnDOitNcdQDxO0ZFc/vQ/oBUYsrr1FUBJ9DKK5VYBQHwPlxx3igNA6lil9Ewv1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r+sX7IbtCEA6WP/nMF8hQOBnXDgQEvg/QZqxaDqbE0BtkElGzoILQPfkYaHW1CdA6Q5iZwodA0DajxSRYdUZQK8/ic+d4Os/VYfcDDegGED9ag4QzNH+P5ZDi2znOwFA2SYVjbU/4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wsBz7+GS5z/C+j+H+VIbQNTUsrW+yP0/jkC8rl8w/D9d3EYDeAsRQNGRXP5DGiZARMAhVKnZBEBMw/ARMcUXQCl5dY4BWfo/ntLB+j8HGkDOcAM+P4z7P+49XHLcqQNAbjXrjO+L4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aCJseHrlCECoABjPoGEbQHctIR/0jBFA0VynkZbaIED4GRcOhKQKQJXUCWgiTCVArkfhehQu/z/BOSNKeyMbQNLGEWvxqQFANe84RUeSGUB8CoDxDJoAQNuK/WX3ZAVAipRm8ziM4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5fIf0m8fCECdY0D2ercNQP/nMF9egN4/ttYXCW3ZGECm0HmNXSIMQD2bVZ+r7SRAYY4ev7epBkC6oL5lTtcXQNEF9S1zOvo/4WJFDabhGkDThy6obxkAQBJOC170VQRAlzldFhOb4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xb9gN2xbAUCs/3OYL28ZQG2oGOdvwg1ATMPwETFVIUDRItv5fioLQI2XbhKD4CVA6ZrJN9vc8z85RUdy+a8XQDo7GRwl7wNAumsJ+aBHG0BS1QRR9wH/P0z9vKlIBQRA/dzQlJ1+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eSPzyB+M9D9j0XR2MjgHQAxZ3eo5KQJA626e6pC7FUD9MEJ4tHELQJzEILBySCVAdF5jl6je/D8O8+UF2GcVQB1aZDvfzwBAmRJJ9DLqGkB0QX3LnO4BQKPp7GRwVAVAWFTE6SRb5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hZZ1/1gI7L+wA+eMKC0QQIxK6gQ08SlAfERMiSSKIEDoTUUqjC0JQEMc6+I2GiVA+64I/reS/T9n8s02N8YYQHWTGARWjvM/XTP5ZptbGkD2Yign2tUBQA7z5QXYBwZA9N+D1y7t5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MiJRaFn3zb87wmnBiz4SQDnWxW00wBVA2ht8YTJVJkBEF9S3zOkJQOeMKO0NviRApMfvbfqz/D9XYMjqVg8aQI3uIHamUPI/U3k7wmlBG0BNSkG3l7QBQA8LtaZ5BwZALUFGQIWj5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"weJw5ldz+z9wfO2ZJYEcQN0HILWJEwxAL1G9NbBVCUDdXtIYrSMHQGO0jqomGCNAho+IKZGEBUDCacGLvuIXQNS3zOmyGPg/1/oioS1HFUAOMsnIWZgCQBSzXgzlxAdAeAyP/SyW5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LCtNSkE35D/lJ9U+HS8SQPVKWYY41v8/esISDyi7GUDjGTT0TxAQQJp3nKIj+SVAtB8pIsOqAkC78lmeB5cZQEinrnyW5/Q/XFX2XREcGUC8XMR3Ytb9P+rPfqSIzAJAN4lBYOXQ3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lPYGX5jM9z8vbqMBvKUdQO7rwDkjyvg/jPM3oRAB/z9kr3d/vNcGQANbJVgcriNA8L+V7NgIBUBbXyS05ZwcQG/1nPS+sQFAZED2evdnHEBCPujZrDoDQF6dY0D2ugdAlYJuL2mM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hxbZzvfTAUAAxjNo6P8gQC9uowG8BfE/gez17o/3+z+EEmba/lUGQNun4zEDxSNAjErqBDRRAEDjpZvEIFAbQAoRcAhVqgBAfERMiSTaHUDr4jYawNsAQLsnDwu1ZgZA1sdD393K3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bATidf1CAkCgVPt0PAYaQIARNGYS9eQ/CTiEKjX7A0DCL/XzpqIKQOtztRX7iyRA5lyKq8q+A0Ah5SfVPr0WQO/Jw0KtKQBAnWhXIeWnGUAsfeiC+lYAQGsr9pfdUwdA/dtlv+505j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1hwgmKPHA0Dri4S2nGsZQLjLft3pTuY/3ZiesMRDBEDYDdsWZfYKQP7UeOkmcSRAlX1XBP9bBECzQSYZOSsXQBPyQc9mlQFAPSzUmuZ9GUCA1CZO7vf/P9PB+j+HOQdAIchBCTNt5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TODW3TwVA0C7Cik/qeYhQPZ698d71fU/IoleRrGcBkAUIuAQqhQLQCV1ApoIeyRAM6fLYmJzBUC2Z5YEqOkeQL4Ts14M5fs/jswjfzAwG0CXVkPiHssAQMA+OnXlMwNAwAZEiCtn3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K/uuCP43BUBg6udNRTogQFJ/vcKC+98/NdJSeTvC+j+dEaW9wRcGQOPCgZAskCNA3Esao3VUB0DNdRppqbwcQNuizAaZ5AVAZ5sb0xO2HUCJmBJJ9LIAQFM/bypSYQRA9kIB28EI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fAqA8QzaBED/lZUmpdAgQBXikXh5uuU/+BkXDoRk+j87U+i8xm4LQOfG9IQljiNAA8+9h0tOBEB8D5ccdyoZQEHxY8xdSwdA9Zz0vvE1HkAdd0oH678AQMKGp1fKcgdAymsldJfE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7bsi+N9KA0CM22gAbyEdQFoO9FDbBuk/whIPKJsyBkBZF7fRAJ4KQGPuWkI+KCVAKJtyhXf5BkDP91PjpRsdQMucLouJzQNAujE9YYlnHUCnXOFdLuL/P/t0PGagMgRAEticg2dC4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dEF9y5yuBEC+amXCL+UgQACrI0c6A9U/4QuTqYIRAkDcEU4LXnQGQPZ698d7pSNAyO9t+rMfBUALDFnd6hkcQGsr9pfdUwJA0VeQZizaGUAHmWTkLOz/Pw9FgT6R5wVAbHnletvM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dVlMbD6uAUC3XWiu0wgcQNo4Yi0+hfk/NpNvtrmx+j80hc5r7BIIQP7UeOkmMSRA4e6s3XYhAkCAYI4ev9cYQODzwwjhUfg/T+lg/Z+jGUCLNzKP/EECQLjkuFM6GAdA2a873Xli5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xoUDIVnABUBOl8XE5mMeQKWEYFW9/OQ/a7ddaK5T/T89uDtrtx0IQE5iEFg5NCVANlmjHqLRAUAw2A3bFqUZQNOkFHR7Sfg/d6G5TiMtGkBEwCFUqVkCQEs8oGzKlQZAwac5eZGJ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NV66SQyC9T/iAWVTrhAgQGGJB5RN2SNAG0esxacA/z8Gu2HboswOQFK4HoXr8SRAsKw0KQVdBUA3GsBbIGEbQI6SV+cY0ABAqrcGtkowGECppE5AEyECQG/1nPS+sQRALSeh9IWQ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3xXB/1byDEDl8h/Sbx8bQPmjqDP3EOc/nYU97fA3FEBRpWYPtEIKQPOOU3QkNyVA9DehEAHHBUCrJoi6D2AYQAH20akrn/4/et/42jMrHUCJB5RNuUL/P9UEUfcByAZA4PdvXpz44D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dJgvL8BeEUC14EVfQZr0vzjzqzlA8ANAcLGiBtMAI0AzFk1nJ8MMQEI+6NmsOiVAblFmg0yyAUDzVIfcDFcbQEbOwp52+Pg/kuhlFMvtFkCzKVd4lwsAQAJIbeLkPgJA2bRSCOSS4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6fF7m/7s8z/BqKROQNMDQG2oGOdvQvA/ZmZmZmZmJkCoV8oyxHEJQJVliGNdHCRAqMZLN4lBB0Asms5OBocZQK+UZYhj3fU/7xtfe2apGEBDc51GWir8PyV6GcVySwVAIxKFlnX/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2SWqtwY2DkBcIEHxY0wDQNfAVgkWRwNAy9b6IqGNFEDCNAwfERMJQLraiv1l9yRAUgq6vaSxAUBqTfOOU7QXQOCEQgQcwvk/DM11GmkJGUBqGD4ipkQCQBEZVvFGZgVABoNr7uj/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QMHFihpME0D9pNqn4zESQBQF+kSehBdAmdh8XBuqFUDyQc9m1acLQDarPldbsSRAoKaWrfVFBkDkoISZth8bQNOf/UgRmf0/R1oqb0fYGUAwR4/f23QAQEvqBDQR9gVAMA4uHXMe5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"INJvXwfuEUCG5jqNtHQRQGcng6Pk1fo/O/w1WaNeCkBxj6UPXVAEQI2chT3tACJAZ2FPO/z1AkCo4zEDlVEbQKbydoTTgv8/Lexph79GGkCx3NJqSJwCQAq6vaQxmgRA93MK8rMR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P1bw2xDj0r8IrBxaZJskQHDOiNLe4ARAvyuC/62kCUAO+PwwQvgPQLWmeccpGidAqFKzB1qBAUAknBa86OsVQNXPm4pUGPo/UvLqHAMSGUC2+BQA45kBQHXN5Jtt7gZAOWQD6WJT5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VB1yM9zAFkAAdJgvL7AgQOZciqvKfgdAyv0ORYG+IEDbFmU2yAQQQEVHcvkPCSZAzH9Iv31dBkBaKm9HOA0eQC7FVWXflf0/sKw0KQUdGUDXEvJBz2YCQH5XBP9bCQhAAaYMHNBS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xqcAGM/gGUDdzVMdcgMgQMFu2LYoswhAJa/OMSCbIkBegH106ooPQB4Wak3zDiZAN1SM8zdhBkBFgT6RJwkeQE7udygKdP4/Dvj8MEIYGEDbp+MxA5UCQE8jLZW3IwhAl+ZWCKsx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FW9kHvkD8z/iWBe30UAoQBA7U+i8RhBAZF3cRgMYKECU3je+9kwIQPFjzF1LaCRA0gDeAgkK+T+aJQFqajkYQHBfB84Z0fs/mFEst7T6F0AQdR+A1Kb+P5EPejarPgNAdqp8z0gE4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CoDxDBr6+T+45LhTOughQLJoOjsZHP4/mN2Th4WaLUAaNPRPcPEMQM07TtGRXCRAL6hvmdPl+D+t3XahuS4YQE1qaAOwge4/OKEQAYcwGEA5C3va4a//PziEKjV7IAJAR3GOOjqu4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cf63kh1bCUC4BrZKsLgKQJKzsKcdfus/yatzDMgeAkDi6ZWyDDEKQHBfB84ZsSVAkfKTap/OA0B7MZQT7YoXQG5uTE9YIgRA+N9KdmwkGUB7SWO0jioAQOG04EVfAQZAqruyCwZX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jnVxGw2gBUBYHM78ag4aQFzHuOLiqOM/H0sfuqD+BUAtQxzr4nYLQPhT46WbZCVAmus00lL5AUC5GW7A5ycYQJYmpaDbSwdAM/lmmxuTGUBpNSTusfT/P6neGtgqAQZADW0ANiBC3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lZo90AqMB0AI5ujxe3sYQPhxNEdW/uc/G0zD8BHhIUDaA63AkJUKQP5l9+RhASRAQX3LnC4LB0CoGOdvQoEaQFeVfVcEvwBA07zjFB2pHUBMVG8NbFUCQBwIyQIm8ARAXI3sSsvI4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f/s6cM4IBkAjoS3nUjwjQIp2FVJ+Us0/43DmV3NAAUC71XPS+8YGQEjhehSuJyVAvCL430r2A0A8g4b+Ce4bQDgVqTC2UAZAJemayTebHUC5NlSM8/cCQP8EFytq8ARAg+Dx7V2D4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jNZR1QQRA0D+JhQi4HAiQMwNhjqs8Oc/fsaFAyFZGEAp0CfyJKkJQLPqc7UV2yVAMNgN2xZl/j+jHqLRHaQWQAexM4XOa/k/wOeHEcJjGECwVYLF4UwDQC0JUFPLVgRA0Amhgy5h4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+1xtxf6yBEA/HY8ZqKwcQM42N6YnrPg/wf9WsmOj+z/xLhfxnVgPQEtZhjjW5SRAa0jcY+kDBECg4GJFDQYdQJC93v3x3vw/02pI3GMJG0CYo8fvbfr6PwmKH2Pu2gRAvvc3aK8+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YHZPHhaqAUDhl/p5U/EbQF/waU5e5OQ/LIL/rWRH9D+/mgMEc3QFQAdfmEwVLCNA6StIMxZNB0AJG55eKWsaQPW+8bVnlgRAdqbQeY2dHUAWak3zjlMCQIHPDyOEhwZApfj4hOy84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JjYf14aKDEB2/YLdsH0hQKqaIOo+gPQ/DM11GmnpAEBnLJrOTsYIQG5uTE9YsiJA2gOtwJDVCECZgcr495kZQNPB+j+HOQhAsrrVc9K7HEDhYkUNpmECQBPyQc9mVQRA5fBJJxLM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"klz+Q/ptB0CMuWsJ+UAgQCzxgLIpV9M/Ja/OMSBLIED2XRH8byUJQDP5ZpsbgyNAon+CixX1CUCoUrMHWmEaQP4rK01KAQFAie/ErBdjHEBbttYXCS0AQEdaKm9HuARAritmhLeH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J4i6D0CqAkDyJOmayRchQBWMSuoE9BJAT+lg/Z/DH0BzS6shcY8IQG3n+6nxUiVANQwfEVPiA0D3x3vVyuQcQKs+V1uxfwBAyqZc4V2OGkDiWBe30YD9P2SSkbOw5wJAh8CRQINN4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5IOezarPGUC693DJcYcZQP6arFEPUQlA6njMQGX8+D+5wrtcxPcKQNjw9EpZViNAmBdgH506C0Dowd1Zu+0YQEbrqGqCKPQ/sRafAmCcFkA89x4uOS4DQFFOtKuQcglAYi0+BcD45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eLmI78TMEUBTP28qUoEgQDpAMEeP3xRA1ZXP8jy4DUAb2CrB4lARQMBbIEHxAyZAO+RmuAGfAkD+1HjpJnEdQAdCsoAJ3Pw/I9v5fmqcG0DTE5Z4QFkDQHke3J212wdAj1IJT+h15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jh6/t+lP+T+sHFpkO38TQAMF3smnx+c/UMdjBirjA0BY/+cwX94GQJtVn6utGCRACRaHM78aBEC9qUiFsYUYQIyEtpxL8fo/6spneR7cF0DRkVz+Q3r8P++s3Xah+QJAPsqIC0Aj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bTmX4qoyDkAawFsgQSEiQDz3Hi457h5AP5EnSdeMB0BtVn2utqIGQBiV1AloIiJAjPM3oRCB/D++nxov3QQXQIasbvWcNAFAdAexM4UOG0D6CtKMRdP+P2YUyy2thglAiUD1DyIZ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tnrf+NrzCkCad5yiI/klQFwAGqVL/9A/yCQjZ2FvE0CrWz0nvU8QQHS1FfvLzidAjSjtDb6wCEALmMCtu1kcQERRoE/kyQhAkL3e/fHeGUCSlsrbEc4CQNRgGoaPSAZAyjZwB+oU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TODW3TzVC0DkFB3J5f8mQIOmJVZGI9g/K4cW2c43FEBeukkMAksQQA8LtaZ5ByhA1EhL5e1ICEC9++O9aiUcQMVVZd8VwQdAP6n26XgsGkCcvwmFCHgCQIAO8+UF2AVAMuVDUDV65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8bp+wW5YCUDRkVz+Q5omQCoCnN7Fe+Y/jKGcaFchD0BUqdkDrcAPQKW9wRcmMydA+n5qvHRTCUBqwYu+ghQbQLyWkA96tgNAz6Chf4KrG0CndLD+z2ECQPonuFhRwwRAkkHuIkxR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UBn/PuNCBUA3/dmPFJEiQEzD8BExpQ5A5DEDlfHvCkBfKcsQx/oQQFioNc07ziVA9KYiFcbWBUDOpbiq7NscQHwPlxx3CgNAnNzvUBRIHEDWxW00gLf/P9cS8kHP5gVAaoR+pl434z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jbRU3o5w8z/ejnBa8KIZQOQPBp57D/8/x2gdVU2QAUA/48KBkCwIQEOtad5xiiVAi/1l9+RhAkCIhVrTvGMYQMdLN4lB4Pc/2uGvyRrVF0B1PGagMv4BQHxhMlUwagVAPZl/9E0a4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8zy4O2t3AkD4qpUJv7QeQMBbIEHx4wpAucfShy6oAUAJUFPL1joOQG/whclU4SRA9Ik8SbqmA0Cy17s/3qsZQDdsW5TZoPU/iV5GsdySGEDlRLsKKf8AQC6thsQ9FgRADI/9LJai4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T+lg/Z8DCEB9s82N6YkfQK/MW3UdquQ/HLEWnwIgCkCXVkPiHksNQCDSb18H7iVAOe6UDta/AkAfnbryWb4ZQAqd19gl6gBAPIidKXSeF0Dh7qzddqH7PwmKH2Pu2gJAQPz89+A14T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wlHy6hyD/z8ep+hILt8cQLZnlgSoKRJAKe0NvjBZAEBSCrq9pPEOQJLLf0i/fSVA1GAaho8IBECoV8oyxPEZQDG2EOSgBO4/VMa/z7hwGECYwK27eSr+P7L0oQvqmwJAiJ6USQ1t4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1bK1vkjoAkC0PA/uznoYQAx4mWGjrOU/QUgWMIGbDEBOtKuQ8pMIQDqSy39IPyVA4BCq1OwBBUCu00hL5Y0XQLzLRXwn5v8/+rg2VIwTFkC6FFeVfdf8P3ZPHhZqjQRAyJi7lpCP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AfbRqSufCUAYQznRrgIiQI47pYP1fwBA5A8GnnuP/T/JsIo3Ms8OQKyt2F92zyVAuAa2SrD4BEA4vvbMkuAdQOnUlc/yPPo/Zw+0AkN2GkCKAn0iT1IAQKMBvAUSlARAzVoKSPsf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lxx3SgfrA0CjAbwFEkQhQDrP2JdsPOM/cLa5MT3hDEC1T8djBmoNQKmkTkATISVAJ8KGp1dKBECZDTLJyHkdQJwWvOgryABA9DehEAFnF0BLWYY41gUAQJRNucK7XAZAiZenc0Up4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OkAwR48fAkBxAz4/jFAbQJYEqKlla/I/LSY2H9fGAkDSjEXT2UkKQG3F/rJ7siRA6dSVz/K8B0CSeeQPBp4bQPevrDQphfw/j8cMVMbfGUAYJlMFo5L9P0s8oGzK1QRAZf1mYroQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ObnfoShQAEBzol2FlB8eQIm1+BQAY/I/0GG+vAD7AEC9b3ztmWUHQAIrhxbZriRAjPhOzHqxB0AiiV5GsXwcQHGPpQ9dUP4/vjCZKhg1GkAjFcYWghz9P/zepj/7UQVAqOSc2EN74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V2DI6lZPCECneccpOjIhQLL1DOGY5eY/iV5GsdySAkCkU1c+y/MMQD81XrpJTCVA65Cb4QY8CkDhehSuR0EfQLIubqMBvP8/JJwWvOjrGUAg0m9fB84AQPYoXI/CNQNAsFbtmpBW5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZcdGIF5X+z8/jBAebfweQDKs4o3Mo/M/OBCSBUygBkAtPgXAeEYKQAU0ETY8/SRAKld4l4t4+T85l+Kqss8VQM0jfzDw3P8/AIxn0ND/F0CJmBJJ9LICQM8xIHu9uwNABabTug1q5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1y/YDduW+z81QdR9ALIdQNyAzw8jBPg/sBu2LcpsBEDiBnx+GGELQOELk6mCESVAcM6I0t5g9z8MWd3qOYkVQLNeDOVEu/4/9YQlHlA2GECVmj3QCowCQKPp7GRwFARAVVBR9Ssd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Njy9UpahA0D8HYoCfRIiQFTDfk+s0+Y/wkzbv7JS+D+1w1+TNSoNQIcW2c73cyRAJSNnYU87CEDHgOz17k8dQK7TSEvlLQFAMXxETIlEGECCixU1mEYCQDfg88MIYQNAY7fPKjOl5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hJ7Nqs9V/D8ng6Pk1RkeQCtNSkG3F/k/CfmgZ7OqBkAQ6bevA2cFQNhkjXqI9iNA48eYu5YQCEAP1v85zHccQNP2r6w0qf4/h8Q9lj6UG0CD+pY5XZb/Pz6WPnRB/QdAroBCPX0E5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aYzWUdXEBUC5xJEHIgvmP/usMlNaf+8/FYxK6gR0LUD61RwgmGMSQPvL7snDgiZAF4IclDDT/z8jFcYWglwWQIjX9Qt2wwFAZDvfT41XGUAdWmQ73w8DQCY2H9eGSgRAMlUwKqmT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zemymNg8DkCutmJ/2T3zPwZkr3d/vABAeJyiI7lMIUBCCTNt/woTQInS3uALEyZABRcrajANAEA4FakwtlAZQNaQuMfSxwJADi2yne/nGkAwKqkT0EQCQOQs7GmHPwVAlEvjF15J5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JLTlXIqrAkAiq1s9J70JQC6thsQ9lvk/ERlW8UaWIEDL2xFOC94MQHh6pSxDPCdA86s5QDDHAkBi1ouhnIgXQHlYqDXN+wJA/5WVJqWgG0AIPZtVn6sAQKWg20sa4wVA46Qw73Gm4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R6zFpwBYAUBQ3zKny2IKQLfT1ohgHOo/fH4YITy6IUCUh4Va07wKQM4ZUdobHCdA56kOuRkuAkB2bATidf0XQEZfQZqxKAJAK9mxEYg3GkD0MorllpYCQBnKiXYVUgZArYVZaOe04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sb/snjwsDEAWak3zjnMmQDWYhuEjYvs/LSEf9Gw2EEBdp5GWylsGQGMLQQ5KyCJA7iWN0TpqB0Ct+lxtxX4bQJKRs7Cnnf4/XcR3YtaLGEA6r7FLVG/9PyCYo8fvrQRAvhb03hgC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QpWaPdCqFEA4Mo/8waATQAiUTbnC+wpA2PULdsM2CUADeAskKF4RQJYhjnVxGyhA1LfM6bKYBkAd5ssLsO8cQDSitDf4AgFAqU2c3O/wHECqQ26GG7AAQMoyxLEu7gRAhetRuB6F3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pDZxcr8DBUD8qfHSTSIkQDgR/dr66ek/pHA9CtfjEECTGARWDi0EQK9amfBLXSJA2J5ZEqCm/D9AMEeP35sXQOOlm8QgMPI/fAqA8QwaF0Ae+YOB5179P/T91Hjp5gZAx2Xc1EBz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"++jUlc/yAUCQMXctIR8OQJPjTulgffA/jErqBDRRCkD4cMlxp7QJQHzysFBreiVAxSCwcmgRCUDIBz2bVV8cQBiyutVzkgRA2c73U+NFHUDxETElkugBQKgd/pqskQNAWksBaf8D4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wJXs2AgEA0Cb5h2n6EgmQBzw+WGE8OE/AtTUsrU+DECR1a2ek54OQNGRXP5DmiRA32xzY3qCA0CrBIvDmb8YQOJ1/YLdsARApPyk2qeDGECXcymuKvv/P+YivhOzngZAGohlM4ck4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0LNZ9bkaEUByio7k8j8kQGcPtAJDVvM/y/Pg7qydAEC3tBoS99gNQCnLEMe6eCRAzVg0nZ0MA0Bh4Ln3cKkYQNGRXP5DegRAY+5aQj5IGUBV2XdF8L8AQMIv9fOm4gZALlkV4SYj4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hbGFIAdlAEByM9yAz48UQBIUP8bctfk/nIpUGFuIAkCkGYums1MMQHctIR/0LCVACacFL/pKAkDhQEgWMEEYQN1e0hitIwFAH2gFhqwOG0A/HY8ZqMwAQP6arFEPUQVAVcA9z5+24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d/NUh9yMA0CrJoi6DzAhQHTTZpyGKOo/RGlv8IVJJEB4l4v4TswMQKabxCCwciVAyatzDMheAkAJih9j7poXQNcv2A3blv0/Q+IeSx+aGkAQWDm0yPb7Pzxrt11orgNA6dMq+kMz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dOrKZ3neBEB07+GS484YQB+BP/z899o/IJijx+/tAECNtFTejnAHQDI9YYkHZCJAou4DkNrEAUAxCKwcWgQcQCGTjJyFvQJAZk6XxcQmG0DxETElkigBQPNxbagY5wxAOnZQiesY6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C0EOSpipA0A3T3XIzcAiQArYDkbsk+M/IJijx+8tBUCeJF0z+WYBQMai6exkECJASOF6FK7HBEC2hHzQs1kYQGwhyEEJM/4/CFqBIau7G0BpVyHlJ9UBQOjZrPpcrQZA7zmwHCGD5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nMQgsHJo/z9T0O0ljcEjQGtmLQWk/eM/aw4QzNFjDUBblNkgkwz5PzHrxVBOFCJAsmMjEK9rA0Ch20sao5UYQDAqqRPQRAJAigJ9Ik8SHECthsQ9lr4AQJHQlnMpbgVAR8hAnl0+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UFPL1voiBUAIlE25wtsfQO53KAr0qRFAilkvhnIiFEAe3J21264OQDsBTYQNrydAPx2PGahMB0CdLouJzecZQIasbvWcdPk/LLe0GhI3F0CcpzrkZrgAQEax3NJqyAdAADeLFwvD5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vCL430p29z8WpBmLplMgQNjw9EpZhvs/KgDGM2gIF0A1e6AVGHIOQEOtad5xCiRABYasbvWc/j+H+fIC7EMaQBgmUwWjUgBA7YFWYMiKGkCuDRXj/E38PyPzyB8MvP8/RP0ubM1W2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5SfVPh3PAECU+x2KAp0fQH3LnC6Lifg/0JuKVBibH0AjLZW3IxwNQGN/2T15WCRAkQpjC0GOAEB72uGvydoaQOXtCKcFL/s/Plxy3Cl9G0BnD7QCQ1b6P1X2XRH87wFALjiDv1/M2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vk1/9iPFCkDZzvdT42UnQEBqEyf3O/E/Mj1hiQcUD0DKT6p9Op4LQPJBz2bV5yRArMWnABgPCkDzVIfcDDcdQOJ1/YLdMP8/flcE/1upFkAqdF5jl2gEQB09fm/THwdAkE5d+SzP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vn2utmK/B0C28/3UeOkRQIz4Tsx6Mfg/weJw5ldzCkDFjzF3LWENQLN78rBQSyZA7uvAOSOKAUBlNsgkI+cYQGXCL/XzJv4/odY07zgFHECF61G4HoX/Pw5nfjUHyAVAy4XKv5ZX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LT4FwHiG/D8Kou4DkJoWQOG2tvC8VO0/vMtFfCemA0CSy39Ivz0QQEdy+Q/ptyVABOJ1/YJd/j9ehZSfVLsYQG3KFd7lIgBAZk6XxcTGGkBYObTIdr4BQC7KbJBJBgVA9bpFYKzv4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5KCEmbb/BEBl3xXB//YXQB5rRga5i+8/QDBHj99bBEARcAhVajYOQGkAb4EEhSVAqpog6j4AAECiKNAn8oQZQN0MN+DzAwBA1eyBVmBoGkCDaRg+IiYBQGoTJ/c7lARA9YJPc/Ki4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XaeRlsrbAkD8qfHSTaIVQAd+VMN+z+Y/bFuU2SDzI0BBKzBkdesHQF8pyxDHmiVAxhaCHJRwAUBXBP9byY4XQCHIQQkzrQBA5e0IpwVvHEAMk6mCUQkCQCRFZFjFGwdAPgXAeAaN4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HVpkO9+PBUC3ek5633gOQDvGFRdHZe0/aCJseHoFJUD0piIVxhYKQH6MuWsJ+SZA0O0ljdE6AECHvyZr1OMZQJijx+9tegNAZhTLLa1GGkCxbVFmgwwDQPsioS3nUgVA0v4HWKv24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QSswZHWrCkCFmbZ/ZSUZQH41Bwjm6PQ/JzEIrBw6LECSrpl8s80GQFSp2QOtMCNAXOZ0WUysAkDuWkI+6JkXQLVsrS8SWvQ/AK5kx0YAGkDjUwCMZxAAQDNQGf8+owRAlfPF3ouv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qrcGtkrwCEA0ETY8vRIbQMJR8uocAwRAdEaU9gYfMECzKVd4l4sHQBHfiVkvtiNA4X8r2bERAkAxfERMiYQWQNXKhF/qZ/E/YqHWNO+YG0A+P4wQHm0AQBSzXgzlxAVAbOo8Kv5v4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kKD4Meau8z/KT6p9Ov4gQCqMLQQ5KPA/RDS6g9jZAEALRiV1AhoIQH/Bbti22CNAYKsEi8MZ/D/bM0sC1PQYQNbiUwCMJwVAdF5jl6jeGECg4GJFDSYAQA+0AkNWNwVAiWGHMenv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YhBYObTIB0DhehSuRwEaQL5qZcIvdQhAw9MrZRniBkD+1HjpJlEQQH/7OnDOaCZAHXdKB+u/CEDI7236sx8aQNb/OcyXl/I/1cqEX+qnG0AWNZiG4WMAQNvEyf0OBQNAX0Av3Lkw3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ghyUMNP28z8RNjy9UjYkQIKo+wCkdgBAIuAQqtRsC0B7iEZ3EHsPQMe6uI0G8CZAukkMAisHAEBftTLhl9oZQHv3x3vVSv0/5wDBHD3eFkAFacai6awAQIiFWtO8IwRA4/viUpU25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aAWGrG61AEDaG3xhMpUlQGowDcNHRP8/umbyzTY3GECR7Xw/Nf4RQOwvuycPCyVA/cHAc+/hAkBPIy2Vt+MYQNpVSPlJtfg/1CtlGeL4F0De5SK+E3MBQPBQFOgTeQNAPGwiMxc44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S5NS0O2FFECM22gAbwEkQI8ZqIx/3wNAidLe4AsTHUDw3Hu45HgIQG8Sg8DKoSVAMZkqGJWUBkB9XBsqxhkbQBh47j1c8vM/vk1/9iPlFkCQ2sTJ/Q77P9/gC5OpAgRArrzkf/J33D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VU0QdR+A+T8DfSJPkk4dQFnd6jnpPRFACfmgZ7MKFUBKXp1jQLYLQGq8dJMYBCRAFO0qpPxkAkCcilQYWwgaQOYCl8eake8/OzYC8boeFkChuU4jLVUCQKQZi6az0wRAHHv2XKam4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2c73U+MlCECoNc07TtEcQFcm/FI/7+0/wCZr1EM0/j/ONjemJ6wOQOLplbIMMSVA11HVBFE3AkBFgT6RJ+kXQHE9Ctej8Pg/c2iR7XxfGEDgnBGlvUH8PwoRcAhVagRAxD9s6dHU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HvmDgeeeAUBUAIxn0NAfQBWMSuoENPM/9Wc/UkRGA0DfwyXHnRIJQCnLEMe6uCVASFD8GHPXBUDzAuyjUzcZQL37471qZfw/xTh/EwrxF0D5oGez6nP8P+9yEd+JWQRAvJAOD2H84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yeNp+YEr6T8uc7osJrYaQJyKVBhbCAFAcT0K16MwBUDDKt7IPPIKQIy5awn5YCVAHXdKB+t/AkAR5KCEmfYbQAIrhxbZTvk/bf/KSpOyHEDnUlxV9h0AQH9N1qiH6AJAn6pCA7Hs4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4uR+h6KADUDVeOkmMeghQEATYcPT6yRAnu+nxksXF0Ckqgmi7sMMQL4wmSoYdSRAiLoPQGqTB0DiOzHrxVAdQKfoSC7/oQBAe9rhr8k6GUAsvMtFfKf9P2k1JO6xdANA/+xHisiw2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VB1yM9xAEkD60AX1LZMXQDY8vVKWIQtADXGsi9voFEDufD81XjoMQPjCZKpgdCVAkSdJ10w+BUAeigJ9Ik8cQErvG197ZvY/vAUSFD+GGUAeigJ9Ik/6P+UK73IRHwRA3NrC81Ix4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZapgVFLnBEBYkGYsmg4dQE+Srpl8M/4/GcqJdhUyGUDAIVSp2YMLQE+vlGWI4yVACeHRxhHrCEB4uYjvxMwZQGzPLAlQ0/k/LWACt+4GFEDq501FKswAQCdO7ncoygNApfj4hOy84D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lgSoqWUrCkCmYfiImDIdQIWZtn9lJfg/S3ZsBOJ1GkApeXWOAdkLQGEyVTAqiSVAy5wui4nNCkC/8bVnlsQZQDW1bK0vEvo/rJDyk2pfFEDbheY6jXQBQO1HisiwCgRAhh4xem4h4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ATCeQUN/AkBHA3gLJGgBQAN9Ik+SLvQ/C2MLQQ6KCEAsms5OBkcOQOSDns2qbyVAZoNMMnLWA0CLprOTwfEbQBtkkpGzsPs/g24vaYx2GkD5oGez6jMAQIi6D0Bq0wJAAad38X5c4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"arx0kxgEB0CI9NvXgfMJQCDVsN8T69g/lWWIY11cJkBXJvxSP+8IQC7/If32dSRAg2kYPiLmBkCrlQm/1A8cQBZNZyeDYwFA+SzPg7uzGkCw/s9hvjz9Pxwlr84xYANAQgWHF0Qk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a4Ko+wDkC0CYTBWMSqoIwF+1MuGX+gRA2VpfJLQlIUBnmxvTE9YNQDMzMzMzEyVAsaIG0zB8AECWlSaloHsYQMbctYR80Pk/hxbZzvdzF0CZ02UxsbkBQHi0ccRavAVAuhKB6h9E4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P6n26XhMFEDqymd5Hlz8v2LzcW2ouBZAbVZ9rraiJ0BgWWlSCnoKQNPe4AuTSSdA48eYu5bQBUBkQPZ698cYQDAvwD46dfI/KzV7oBU4FkBtxf6ye7IAQPQVpBmLpgRAc9u+R/313D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1bK1vkjIGkD2JLA5B8/EvxkEVg4tEiVAoBov3SSGJEDxRuaRP1gLQEtZhjjWBShAol2FlJ9UCkBrDhDM0SMZQHJQwkzbv/Q/dQKaCBs+FUD4Nv3Zj5T9P3mSdM3kmwRAM/0S8db53T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e0563/gKIECdnQyOkvcgQGjQ0D/BxQtAtr5IaMsZGUCV8e8zLhwSQMKGp1fK8iRAjgbwFkjQ/z82PL1SluEbQEbrqGqCqPw/bATidf3iGkCGAyFZwMQBQP32deCckQRAQwHbwYh95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h4px/iZUHkD+KytNSjEhQKH4MeaupRRASWjLuRRXG0Cs/3OYL28RQP5D+u3rgCVAfZHQlnNpAUDek4eFWnMbQM0GmWTkLP0/J4Oj5NU5G0CR8pNqn44BQOZ5cHfWbgVA2UKQgxJm5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"soAJ3Lq7FkDeH+9VK3MdQMZtNIC3gBBAJCh+jLkrC0CBIatbPScLQH2utmJ/GSVA0XmNXaI6BkBxOPOrOYAYQLtE9dbAVvc/PIOG/gluG0CD3bBtUSYDQNNNYhBY+QZA0c3+QLlt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VDVB1H2gE0ADste7P34eQEQX1LfMKQ1A5QrvchGfAkCyLm6jAXwOQIBIv30d+CRADf0TXKxoB0CW7NgIxAsYQJWCbi9pDPQ/AK5kx0aAGUBENLqD2BkDQLYQ5KCE2QVAECGunL2z4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PX5v0599BUCVZYhjXZwgQLRxxFp8ivE/M/lmmxtTCkAC2evdHw8SQJp3nKIjuSZALnO6LCa2AUAFbt3NUx0ZQE/pYP2fQwBAxY8xdy2BGEBvnuqQm+H/P5M16iEaHQVAARk6dlAJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+IiYEkl0BEDXhopx/lYhQGOXqN4aWPg/JLTlXIor/j9ZaVIKur0LQClcj8L1aCVAVpqUgm6vAkDsL7snD+sZQB2s/3OYL/4/ymyQSUZOHUCJ6q2BrZIAQOC+DpwzogNA0nKgh9q25j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PKWD9X9OBUAAxjNo6D8aQKuuQzUlWdo/XdxGA3iL+j9nD7QCQ5YJQL3jFB3JBSVAH5268lleBUC2+BQA4zkaQDVj0XR2cgFAhBJm2v4VHEDPSe8bX/v+P8oa9RCNbgNAYkok0cso4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zeSbbW4MBUA1Y9F0dhIgQL8n1qnyveA/twvNdRrp/T9n8s02N6YKQE0VjErqhCVAYr68APsoB0D5LM+Du9MZQAr0iTxJOgFA8uocA7K3G0CUap+Ox4z+P7G/7J48LANAW2CPiZTm4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hXe5iO/EBUCcM6K0NxgkQAjL2NDN/uw/ArwFEhQ//j+wyRr1EI0JQCL99nXgnCVAm+Ydp+hIA0Cs4o3MI18aQB/0bFZ9LgRABYvDmV9tGkAPlxx3Sgf/PykiwyreiAJAInGPpQ/d4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gT6RJ0lX/D/zjlN0JNcZQCs1e6AVWANAARO4dTePDUB7ZkmAmloQQEa28/3U2CVA83FtqBgnBUAEOShhpu0bQCXMtP0rq/U/rHMMyF7vGkBslWBxODMBQF66SQwCqwJAH9lcNc8R4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lc+Du7M2A0Da5sb0hJUhQG6GG/D5Yec/E0TdByD1BkAUP8bctQQIQPVKWYY4ViRAB5lk5CysAkBu3c1THfIXQDj4wmSq4P8/e9rhr8n6FUBg6udNRSr7P58CYDyDRgRAMq1NY3st4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+aBns+pzAUBG66hqgogbQGcmGM41zOU/paDbSxojA0CU3je+9kwLQB8RUyKJXiNAthDkoISZ/z/r/xzmy0sYQIZa07zjFPQ/2NglqrdmGEDtnjws1Jr9P4TTghd9xQJATgmISbiQ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jxmojH9fDUBhVFInoMkcQPWc9L7xdR1AbxKDwMoh/z8TuHU3T7UGQINRSZ2AliNAkBSRYRWvBEB6xyk6kqsZQN8Vwf9Wsvw/o+nsZHBUF0BpVyHlJ1UAQEJ4tHHEWghAtFpgj4kU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l+Kqsu+KCUBL5e0Ip8UYQFXbTfBN098/M9yAzw+DGUDQDyOERxsKQPyp8dJN0iNAB84ZUdobBUC9OseA7HUcQNGuQspPqvw/QuxMofO6G0BwCFVq9oAAQBAjhEcbRwRATfc6qS/L4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BMqmXOEdAUDSGK2jqkkdQPs726M3XOk/QUgWMIEbCEDQCgxZ3WoEQJPGaB1V/SNAeLmI78QsBkBIFjCBW3cZQIwVNZiG4f0/11HVBFGXHkC2Z5YEqOkBQFK4HoXr0QRA6StIMxZN3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GeJYF7dR/z9uizIbZLIiQApoImx4+vc/J6CJsOFp9T8P7s7abRcKQIj029eBkyRA34lZL4byAEDCo40j1kIcQKgd/pqs0fU/lSu8y0VcGkCQMXctIZ//P2iu00hLJQRAq+ek940v4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eUDZlCt8BUB/h6JAn0gSQCqMLQQ5KNk/pu1fWWmSEkCYTBWMSuoIQOHurN120SNAQBNhw9MrCEAurYbEPdYXQNXnaiv2FwlAoKaWrfXlHUBTy9b6IiH/P8Tr+gW7YQVA/1vJjo3A4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4/xNKESABkDjNhrAW8AkQKOvIM1YtPM/XANbJVh8H0APlxx3SscEQF3cRgN4iyRAOjsZHCVvAUA4Z0RpbzAcQCTW4lMADPw/9kArMGS1GkCYbhKDwEoDQOj2ksZoHQdARZ4kXTN55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gGCOHr+3CECHM7+aA0QDQOSDns2qz/M/B5lk5CxsEUB1djI4Sr4QQGiz6nO1tSVAY7SOqiaIA0BuwOeHESIYQHKKjuTyn/c/U+i8xi5RFUDXo3A9Ctf/P7xcxHdi1gVAteBFX0Ga4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2UKQgxJmBkBJopdRLFcdQIenV8oyxP8/OKEQAYcQEUA4oRABhxAEQH15AfbRaSNAPQrXo3A9/T82donqrYEXQPTg7qzddvs/iUFg5dBiF0BY/+cwX179P2+BBMWP8QNASl6dY0D24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HHxhMlUwDkBQU8vW+oIfQNGWcymuKvo/FVJ+Uu0TCUCfk943vnYIQCL99nXgrCNALhwIyQIm+z9GJXUCmigYQCF2ptB5jfo/RtPZyeBIGUDM7snDQq39P5et9UVCWwRA8MSsF0O54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GxNiLqla4D9pdAexMwUbQLHEA8qmXAZAGHjuPVwyAUCSXP5D+i0PQBniWBe3cSZAs0EmGTnLA0DY0w5/TfYXQCMQr+sXLANAN+DzwwgBHUA1KQXdXpIBQMl2vp8abwVAiA6BI4EG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"19081SEXEEAV4/xNKCQbQBdJu9HH/Ok/5WGh1jTPF0AtlbcjnBYMQHQkl/+QviVAflLt0/EYAkBw626e6pAZQGQGKuPfZ/4/xyk6kss/GUB5QNmUKzz8P8ed0sH6vwdAmpmZmZmZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WG95UWCmoj8kufyH9BsDQO1Hisiw6hBA5nlwd9YuFUBxj6UPXVAQQLFQa5p3PCZApUkp6PYSCEDMQGX8+2wdQJNvtrkxvfw/XdxGA3jrGUANGvonuNgAQCV1ApoIGwdAzqlkAKji5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qmBUUieg1D8RAYdQpaYPQN481SE3AxFAYkok0cvIFkCDhv4JLtYPQPCFyVTByCVAiSmRRC/jCECEKjV7oLUbQKJdhZSfVP4/7dgIxOsaG0A/48KBkCwAQL4Ts14MJQRAlE+PbRlw5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4q/JGvWQ/D8vF/GdmPUaQKMG0zB8xPQ/08H6P4fZGUARcAhVanYNQE0VjErqZCZAV0PiHkufA0A82jhiLR4dQINRSZ2Apv8/SfQyiuU2F0AGgZVDiywCQDAvwD469QVAsFjDRe7p4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"deWzPA+uCkCKWS+GcqIdQBH8byU7NgtAoUrNHmiF8T8+XHLcKR0NQJ/Nqs/VFiRABfpEniQdCUD6CtKMRZMaQERMiSR6mfw/IHu9++N9HECG5jqNtNQAQEiKyLCKtwdA1NaIYBxc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BJDaxMn9D0B3vp8aL/0eQMvz4O6sHQlAT3XIzXCD+z8z+WabG5MEQGyVYHE4kyNAEK/rF+yGCUA7jbRU3o4aQKpIhbGF4ANAo8wGmWTEG0A730+Nl64BQMVyS6shsQRAcCL6tfVT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"097gC5NpDkCc+dUcIDgeQGN/2T15GABAp+hILv/hA0BBfcucLksQQAAAAAAAQCVABK3AkNUt+z/TTWIQWDkZQK6BrRIsDvg/5BQdyeX/GECfk943vvb+P2UZ4lgXtwVA/b5/8+JE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k1fnGJA9BUBkXdxGA9giQHNjesISD/A/uw9AahPnEkDuX1lpUkoJQB1aZDvfLyZAZAYq49+nDkCs4o3MI38dQMlZ2NMOf/8/vTWwVYKFGUAUP8bctYQBQA74/DBCOARAUiegibDh2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y5y/CYUIBkDQYb68AAsgQOOlm8QgMPg/0VeQZiya8D/b+X5qvPQNQJM6AU2E7SRA6/8c5suLA0D9h/Tb1+EfQE/pYP2fQ/A/tWytLxI6HUCtwJDVrR7+P6X3ja898whAlzrI68Ek4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B84ZUdo7FkB7a2CrBOsaQO/Jw0Kt6QZAvOgrSDN2H0Cazk4GR4kLQNk9eVio1SVAbqMBvAVSAkD7ljldFhMWQHqlLEMcKwdAdOrKZ3l+GUCLprOTwRECQKciFcYWAgJASs/0EmOZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bxKDwMrBEkAk1uJTAOwTQEht4uR+hwtAiNf1C3aDC0B6qkNuhtsLQHZPHhZqDSVA1IIXfQVp/z/EQq1p3lEXQIkMq3gjMwJALudSXFW2GkDyQc9m1WcAQDxmoDL+vQFAjURoBBvX4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u0T11sBWC0Cwj05d+awVQBIUP8bctfw/++jUlc/yB0CyaDo7GVwHQHDOiNLegCRAidLe4AuTBUCLbOf7qfEbQHhF8L+VbPg/nx9GCI8WF0AId2fttssAQJRqn47HzAhACTauf9dn5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2xZlNsgkCEDdJAaBlcMXQKURM/s8xu4/hlW8kXlkDUBuizIbZBINQLN78rBQqyZAeEXwv5XsAUAYITzaOAIZQKiMf59x4QJAq+y7Ivg/G0CCkCxgAjf9P5kqGJXUCQNA3C3JAbsa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jBU1mIZh/z9FZFjFG7kgQDnWxW00AAFAq+ek941vC0DGounsZHAOQBUdyeU/BCRAWJBmLJpOCEDo2az6XI0bQGr2QCsw5PQ/IoleRrH8GEA1KQXdXtL/P3XN5Jtt7gNAWoC21awz3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/B2KAn0iA0AZOQt72qEjQBHfiVkvhuo/RfC/lezY9T9KRs7CnrYOQJtyhXe5KCNAAOMZNPTPAkDtR4rIsMobQJKRs7CnnfU/MLsnDws1G0D35GGh1rQAQJY+dEF9iwVAHooCfSJP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J/c7FAV6B0DPLAlQU0sXQGDI6lbPSfs/MXxETInkBEA7qpog6v4LQHuDL0ymyiRAlgm/1M+b/j9dp5GWyjsaQBXj/E0ohABAStI1k2/2HEALe9rhr8kAQEVkWMUbGQdAOgK4WbxY3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q8/VVuwvA0D/7EeKyLAgQEM9fQT+8OA/ICkiwyqeFUB324XmOk0MQOqVsgxxzCZA7Z48LNRaBEDnGJC93t0XQBfZzvdTYwBACD2bVZ8LGUBqpKXydoQAQEKVmj3QigVAXcKht3j45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dQKaCBseA0DuWkI+6JkkQHkGDf0T3PI/o3VUNUE0IEActi3KbNANQIV80LNZ9SZADat4I/PIBUDt8NdkjdobQC0+BcB4RgBA14aKcf5mGkAZBFYOLbIBQMPTK2UZIglAck2BzM6i4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CyQofow5/D/HKTqSy58TQCI3ww34HBlAje4gdqaQBkCdS3FV2fcMQCKOdXEbTSRA7pQO1v85BUAurYbEPdYbQFWkwthCkAdAMEymCkbFHUAiVKnZA20CQG/whclUgQRAurpjsU2q6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NJ2dDI7SAECMZ9DQP+EWQGr7V1aatBlA4syv5gBBBED4iJgSSbQLQF8HzhlROiRANKK0N/hCBUBoXDgQkqUZQJFEL6NYLgVAje4gdqawHEAp7Q2+MJkCQNpyLsVVpQRAuoRDb/Hw5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ieo+AKlNAEADYDyDhk4jQMCuJk9ZzeU/QkP/BBdLFkAgXtcv2M0GQBhbCHJQ4iNAyXGndLD++z8lehnFcmsXQIi6D0Bqk/g/ghyUMNO2F0B00vvG157+P7Swpx3+mgZAHCjwTj694j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4gZ8fhjhAkCRCmMLQS4hQO5dg770duI/1IIXfQVpDkBDc51GWioHQEmdgCbCBiRA7UeKyLAKBUBY5xiQvV4YQONTAIxnUP8/m1q21heJGECfq63YXzYBQGK+vAD7qANAoG0164zv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2A3bFmV2A0DwbfqzH6kfQCk8aHbdW9s/FjWYhuFjAkBIbeLkfkcIQPSmIhXGhiNAEOm3rwOnBkCuZMdGIF4YQHC2uTE94fo/sYo3Mo+cGEBdv2A3bJsAQJOpglFJnQJAeqhtwyiI4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YFlpUgo6BECtwJDVrZ4XQGBY/nxbsN0/XdxGA3gLBEBOet/42vMIQJm7lpAP+iRAFw6EZAETA0CGWtO843QaQPAzLhwIiQNASwLU1LJVGUAMk6mCUcn+P1q77UJzHQRAgjekUYET4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SG3i5H4HCUBgWWlSCtoXQKyQ8pNqn+0/VryReeTPEEB7a2CrBIsNQLfRAN4CySVAfgBSmzh5CUC0k8FR8soZQPKYgcr4twJAUmFsIchBGkALDFnd6rn+Pyy8y0V85wVAZf88DRgk4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aOif4GJFAUAf9GxWfW4hQE7RkVz+wwdAQrKACdw6/D9GlPYGXxgKQMIXJlMFYyRAvJF55A8G/T88g4b+CS4aQLVPx2MGqvo/QiECDqGKGUATChFwCNUBQEKVmj3QSgJAJ/p8lBGX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZeQs7GnHBUANq3gj8wgXQGK6EKs/wtk/GcVyS6shA0C22y4016kFQCNKe4Mv/CJAlSu8y0U8BkAKndfYJWoYQPZAKzBktQFA+N9KdmwEG0ALKT+p9mn9P3npJjEIbAZACf63kh0b4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HxFTIoneBUDzyB8MPJceQF7acFga+N8/3bWEfNCz+z9qh78ma1QHQD81XrpJbCJAzO7Jw0ItBUCKk/sdiuIZQEWBPpEniQJAwYu+gjRDGUAVOq+xS1T+P+6UDtb/eQdABhA+lGjJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jErqBDTRA0AfaAWGrI4cQBCVRszs8+I/7dPxmIGKCECeJF0z+SYHQH5S7dPxyCJArcCQ1a0eAkCscwzIXq8YQNZuu9BcJ/o/KqkT0ETYFkAvi4nNxzX/Px09fm/TXwZA0SFwJNBg5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ETY8vVJWBkBaZDvfTz0gQC5W1GAaBvA/NgLxun7B+D8icY+lD50MQLyWkA96liRATgte9BUkAUCW58HdWdsaQP1qDhDM0fw/Bp57D5c8G0BSuB6F65ECQJdWQ+IeSwVAoffGEAAc4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6spneR6cA0ArajANw1chQCC3Xz5ZMew/S3ZsBOJ1BECTqYJRSR0KQN9PjZduUiVAyhXe5SK+AkAXK2owDcMYQGr7V1aaVABAAYdQpWZPGkDzqzlAMMf9P30/NV66CQRAcjEG1nH80T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SDMWTWenCEDSNZNvtpkfQAzLn28Lltc/Cp3X2CUqCkDwhclUwWgMQO/Jw0KtCSZA4Ep2bAQiBkBa9bnail0aQIm1+BQAYwVAiSmRRC9jG0BmvRjKiXb/PyzUmuYdJwRAMLq8OVwr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wd3qOem9BkAyrOKNzKMZQFLy6hwDMvI/1XjpJjGIB0DmP6Tfvg4KQKMBvAUS1CRAHEKVmj3QAUD1LXO6LKYZQJ7vp8ZLt/M/SOF6FK6nFkB1WUxsPq4BQO6UDtb/OQVAAFMGDmjp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yv0ORYG+AEAB++jUlU8YQBaHM7+agwJA+u3rwDkjEkAfv7fpz/4MQGN/2T152CRAhetRuB6FC0C+vAD76JQdQJXx7zMuHAFAKzBkdavnGUC3RZkNMokAQPhrskY9BARAspsZ/Wg45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WMUbmUe+B0D99nXgnHEUQIHLY83IoOs/P4wQHm0cDkDLZ3ke3B0LQJHtfD81niRAVYfcDDfgC0CinGhXISUdQDZZox6i0fc/9tGpK5+lGECoHf6arNEBQFUTRN0HIAVANXo1QGko5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lNkgk4xcCEDvG197ZhkhQNOHLqhvGfw/ceZXc4AAEUBhTzv8NVkOQJeQD3o2yyVAw7tcxHfiC0BA2ZQrvGsfQDwx68VQzvg/wFsgQfGDFkBCPujZrDoCQNQOf03W6AVAHuIftvTo5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uhEWFXE62j9S1QRR98EPQBqjdVQ1AQRAofMau0TVFkAiN8MN+PwMQEGC4seYOyVAHHxhMlUw9j940VeQZmwUQFRXPsvz4P4/2ht8YTKVGEBl3xXB/9YAQA2reCPzyAVAqrcGtkqw5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2PULdsO25r9/3lSkwlgQQOc6jbRU3hpAlfHvMy58GUCmD11Q33IQQJZDi2zneyZA5ujxe5t+AkDwMy4cCIkaQNOf/UgRmfc/6spneR6cGUAJOIQqNbsEQIhodAex8wdAZOYCl8ca5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bCHIQQmzDEBF2PD0SjkjQGPuWkI+aPg/ppvEILCyAUCi0R3EztQMQIY41sVtdCZAlUiil1FsBED2QCswZNUYQODb9Gc/0vk/L6NYbmnVGkC/ZU6XxcT9P3OdRloqrwNAEYsYdhgT4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+vIC7KMTAkDrHAOy17sVQAdhbvdyn+o/opdRLLe0/T/1udqK/aUNQDIge737YyNAe4MvTKZKB0A7qpog6n4bQH15AfbRqQBA2bERiNcVGEAO2xZlNkgBQEc9RKM7SARAbhXEQNc+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u7iNBvDWDEDqz36kiIwdQCJRaFn3j+k/QiECDqHqFEAsDmd+NUcJQEtZhjjWxSRA4BCq1OzBCkCmuKrsuyIaQDDYDdsWZf4/5SfVPh0vGUB3Z+22C00CQIFDqFKzBwRAJJur5jki4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q1s9J70vFEAT8kHPZjUXQAVu3c1TjSNAYB+duvJZBUBUdCSX/1ANQBx8YTJVcCVA/MbXnlkSA0BlU67wLvcaQMPYQpCDEgBAjjulg/VfG0Cf5Xlwd9b+P4WUn1T7NARA7dgIxOt65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qDrkZriBC0Az/n3GheMjQDNrKSDtf+4/A7LXuz8+H0DHndLB+j8PQFr1udqKvSVAQ+c1dokqBkAz+WabGzMaQBHfiVkvRgJAevzepj/7G0BiFW9kHnkAQPyMCwdCcgRAaJHtfD815D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+u3rwDljAEDf/fFetdIdQM0Bgjl6fPI//wkuVtQgGUCG5jqNtJQMQEYldQKa6CVA5+PaUDGOAUBNSkG3l/QbQDojSnuDL/o/aVIKur2EGkC0WfW52goBQCTW4lMAjARASSpTzEHQ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Brth26JMBUBw626e6vAaQP1qDhDMUfE/sFWCxeFsFEA+syRATa0NQC0hH/RsliRAgosVNZjGA0CjBtMwfKQaQB2UMNP2r/k/qMZLN4kBFkBpqbwd4TT/P6LuA5DaxARAcAZ/v5it4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QmDl0CIbA0Byv0NRoE8bQEloy7kU1/E/aVIKur3kD0CyRj1Eo7sKQHqlLEMcSyZAM9yAzw8jBUCTGARWDu0XQC457pQO1vE/w7ZFmQ2yFkA0SwLU1LL7P+AQqtTsQQJAYyr9hLNb3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"swxxrItb9T+NKO0NvnAbQE9Y4gFlUwdAyTzyBwOPCkAzG2SSkRMQQELPZtXnCiVAEyf3OxRFAED+JhQi4PAaQCsYldQJaAFALpCg+DHmGkCph2h0BzEAQE34pX7e1AJASz0LQnkf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+1dWmpSCDUAdOGdEad8hQMmOjUC8ruc/npj1Yign+j/D8BExJRIGQM0eaAWG/CNA5L1qZcKvCEC4rwPnjOgZQP5g4Ln38ANANe84RUfSHEAPtAJDVjcBQOlDF9S3jAdA11BqL6Jt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VHQkl/+QCEAD7KNTV94cQJaTUPpCyOQ/6Q5iZwqd8z/wiuB/K9kDQHOFd7mILyJAObnfoSiQAUB3oblOIy0cQK98lufB3f4/c4Bgjh6fHUAOT6+UZYgAQLU3+MJk6gVAbHh6pSxD3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XkvIBz0bDkB+jLlrCbkfQIiFWtO8YwFAhuY6jbRUDUAxzt+EQoQNQAyTqYJRSSRAb/CFyVSBA0B0XmOXqB4aQFLVBFH3gQNAr3yW58GdGkCRD3o2q/4AQJM6AU2EDQZAaTaPw2D+5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N1SM8zfhD0BS7dPxmEEeQPsioS3n8hRAnWNA9nr38z8Xmus00pIPQNCzWfW5GiVABK3AkNWtBUDAlezYCAQcQB0gmKPHb/0/bXNjesKyG0ATDyibcoUAQM3km21uzAZA/TBCeLTx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cQM+P4zwEkCvzjEgex0iQIv9ZffkoQVAmIbhI2LK+T+WW1oNiTsIQH/7OnDOqCVAliGOdXEbBkA6r7FLVM8aQAskKH6MOQRADWyVYHGYHkAJG55eKcsCQJpfzQGCeQZA+3lTkQrj5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rVEP0ejuEkBL6gQ0EYYiQHVZTGw+rgpA+8vuycPC8j/eWbvtQrMIQGiR7Xw/1SVALexph7+mBkDgnBGlvWEaQA+0AkNWtwNA3lSkwtjCHkBznUZaKm8CQNlaXyS05QVADveRW5Pu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oBov3SQGCEBgPIOG/ikgQCk/qfbpeABAvMtFfCfmBUDtDb4wmSoPQJeQD3o2iyRAxsTm49rQA0ADYDyDht4cQFwgQfFjzABAVOOlm8RAG0DLuRRXlf3/P952oblOowhASOAPP/+95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dy0hH/RsEUC6vaQxWqccQLDmAMEcvQpAgnNGlPbGG0BxWvCir6AOQE0VjErqRCRAXynLEMc6AUB+xoUDIRkaQCVdM/lmm/s/MJ5BQ/9kGEDR6A5iZ4oAQOJYF7fRgAJAHEKVmj1Q4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kh2s/3PYFUB1q+ek9w0SQAH76NSVjxBA/dmPFJEhC0BBmrFoOrsOQDQRNjy9cidAWYY41sWtBkAaUdobfOEZQB6n6Egu//w/PDHrxVCOGUBhw9MrZdkAQGaDTDJyFgdAxQJf0a3X5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LzTXaaSl/D8fSx+6oJ4aQOrsZHCUvPI/CMkCJnCrH0DgoSjQJzIOQBzr4jYaYCRA/8pKk1KQAkBrgqj7AAQbQOWzPA/uzvM/QSswZHWLFkBZTGw+rg3+P+o+AKlNXAJACU/o9Sdx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UYNpGD4i+D+BJsKGpxcaQBppqbwd4e4/sW1RZoOMIEARHm0csZYNQB+F61G4fiRALhwIyQImAkCZ9WIoJ/oaQG40gLdAgvM/WMUbmUf+FkBegH106sr9P5WCbi9pTAJAXaj8a3nl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IhrdQeyMDECM+E7MerEYQD1EozuIHRxAswdagSGr/D8012mkpXIJQArXo3A9aiVATMPwETFlA0DjqrLviuAXQA3DR8SUyP0/5QrvchF/GEDFILByaBH9P2tgqwSLQwNAgxWnWgsz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WmQ730+NDkCiKNAn8nQhQFSp2QOtgAdAQBNhw9PrDEDqlbIMcWwLQHe+nxovPSVAEtpyLsXVBUDLnC6LiS0ZQLivA+eMqPs/jBU1mIaBGEBWDi2ynW/+P8uhRbbz/QJAbF7VWS2w4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eNFXkGYMGkCsyr4rgg8jQCo6kst/2DRAtJPBUfLKFkCCc0aU9kYKQHo2qz5X2yRANqs+V1vxAUCPNo5Yi48XQD3VITfDjfs/6N7DJcfdGECwPbMkQM3+PzGZKhiVFARAxqNUwhP64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QBNhw9MLG0A1e6AVGNIXQMcRa/EpQAFAx9eeWRLgE0BfJLTlXIoMQM6qz9VW7CRAC9KMRdMZAEAJ4dHGEYsYQAU0ETY8PQBATtGRXP4DG0AE54wo7Q3/PziEKjV7YARAKh2s/3MY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m49rQ8W4FkDNWDSdnUwWQHNLqyFxnyNAM8SxLm7DFkD9h/Tb14ENQNuK/WX3BCVA95LGaB1VAkBvnuqQm+EXQGkAb4EEhQRAiNf1C3YDG0BqwYu+grT9PzvkZrgB3wRAYD5ZMVyd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DYl7LH2IFkCtTPilfv4dQHrHKTqSKyVAc6JdhZR/GkA2sFWCxSELQAhVavZA2yNA3UHsTKHzAkAgDDz3Hk4ZQJWCbi9pDP0/davnpPeNG0CtwJDVrR7/PxbB/1ayIwNAoaLqVzof5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kq6ZfLMtGEAB3gIJin8dQGU2yCQjhxJAc9cS8kEPB0B06spneZ4JQNNNYhBYmSRAzqW4quy7AkDaOGItPmUXQOC+DpwzIv8/BcWPMXeNG0CqglFJnQAAQHCZ02UxMQNADM7g7xez4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R3cQO1OoEkCJ6q2BrbIfQMAEbt3N0wtAQs9m1edq/j+8dJMYBBYLQCECDqFKzSNALpCg+DFmAECDhv4JLvYaQPz7jAsHwvw/KJtyhXd5GEBI+Um1TwcCQIhjXdxGAwdAfGRz1TzH5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uvdwyXFnCkDIBz2bVU8gQJusUQ/RKAFAx2gdVU2gIEDH155ZEmAPQCGwcmiR7SVAopdRLLe0CEAiq1s9J30aQNSCF30FaQFAKh2s/3O4H0Be1y/YDZsBQIQSZtr+FQZAXU4JiEm44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yZOkayZf/z+ojH+fcWEaQEP/BBcravI//z7jwoEwH0BgPIOG/okOQD55WKg1bSZAEr2MYrnlCED9MEJ4tPEaQBNJ9DKKZQVA3Esao3V0HkDbiv1l9yQCQKTk1TkG5AZAzLIngc255z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kj8YeO49DUBpjNZR1QQfQBfZzvdTY/I/Z2FPO/y19T+zQSYZOYsGQDgteNFX0CNAGJXUCWiiAUCmJyzxgLIaQDSFzmvsEgFANxrAWyBhHED99nXgnBEEQFFrmnec4glAHM2RlV8G5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vFzEd2LW+j8nFCLgEMofQDvGFRdHZeY/eAskKH4M9D8+7fDXZE0LQCKmRBK9fCNAgCvZsRFIAkDRyyiWW9obQBh47j1cMgJAOsyXF2A/HEBq9kArMGQCQBzw+WGEsAdAC+4HPDCA6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bJVgcTjzB0BEUaBP5AkdQG1y+KQTCe0/BBxClZo98z+AgosVNZgHQOuQm+EGjCNAGf8+48JBA0CADvPlBRgbQFUTRN0HoP4/zQGCOXqcHEBSflLt0/EBQD0nvW98LQhAq7AZ4IJs6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eQH20akr/j+yS1RvDcweQFuU2SCTjPc/Yr68APvoA0CdgCbChicQQHe+nxov3SVApriq7LviAkD/If32dSAaQGnGounsZPo/dc3km23OG0Dt9e6P96r7P+bLC7CPjgJANpIE4Qqo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l6jeGtgqDECyne+nxlshQO0t5Xyx9+w/LNSa5h0n/z9nuAGfH4YIQHnpJjEIrCRAd4TTghf9BkDZzvdT4+UaQLgjnBa8aAlAxuHMr+bAG0BO7ncoCnQBQG3/ykqTkgNAb7ckB+xq3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QGoTJ/c7AEAjEK/rF0wbQM1YNJ2djPE/S6shcY/lBUBTP28qUqEMQAbYR6euvCNAcsRafAoAAkCgNxWpMFYYQG76sx8p4gRAP1dbsb8MGkANpmH4iJgAQDVj0XR2MgJAblD7rZ0o4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"atlaXyQ0CECE2JlC53UcQLde04OC0uU/JNbiUwBMD0Akl/+QfvsJQGrecYqOxCRAyM1wAz4//D9xWvCir8AYQEnXTL7ZJgRA7+apDrl5G0Au51JcVXb9P0Q0uoPYGQFAxty1hHzQ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dLUV+8tuBEC78lmeB/ceQL7bvHFSGOs/6MHdWbutEEAAUps4ud8IQDarPldbkSRA8tJNYhAYAEAEyqZc4T0YQBefAmA8g/8/0PI8uDvrG0ABamrZWl/9PxniWBe3EQJAuvQvSWUK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7lpCPuhZA0AnFCLgELogQMwLsI9O3eU/Bd1e0hhNGUCC/61kx4YKQGk1JO6x5CJAlgSoqWVrAkB5O8JpwWsZQDVB1H0A0gJAxRuZR/7gGEBCCTNt/woBQD8djxmozANA+Um1T8fj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hQg4hCr1AkAsfeiC+pb2P4iFWtO8owVAf8Fu2LYIGkAlXTP5ZlsOQE3zjlN0hCZAU1xV9l3RBUB4tHHEWhwbQGDI6lbPyfM/X3tmSYAaG0AzFk1nJ4P/P4ts5/upsQRAqRWm7zWE4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VFInoIkw/z8YJlMFo5IGQENVTKWf8OE/Nqs+V1sRJUAWE5uPawMKQHKKjuTy3yRABd1e0hit/z8HtkqwOPwXQI82jliLDwNAzH9Iv31dHUBxOPOrOcD/P/Qau0T1FgVAKCob1lQW4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4Ln3cMnxCUCOdXEbDWATQAx2w7ZFmfA/8PlhhPBIFkAhzVg0nR0NQP32deCc8SRA6gQ0ETa89z+4zOmymHgXQL06x4DsNQNA/FI/byrSGkD0T3CxogYAQPlmmxvTUwVAHLRXHw/94D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6StIMxbNBEDWrZ6T3nceQGnGounsZANAbOwS1VtDDUD+1HjpJjELQIBIv30dyCNAD9HoDmKnBUDFILByaDEcQKiMf59xoQBAtKuQ8pPqF0ATChFwCFX+PxGq1OyBlgpAHAsKgzIN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xXJLqyHxDUA0aOif4CIbQJ4kXTP5Zvw/28TJ/Q7F+z8VOq+xSxQJQKd5xyk6siRAyM1wAz6/A0B0RpT2Bj8aQNS3zOmymPg/K4cW2c43HEA/NV66SUwDQBhgH526sgJAoIobt5if5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iJ0pdF4jBUAZyol2FeIhQGGL3T6rzOI/vmplwi+1BkDjiLX4FIAHQL4wmSoY1SRAqfsApDZx/j+rlQm/1G8YQLyuX7Abtv4/JTs2AvGaF0BZF7fRAJ4AQHNoke18/wVAVp3VAntM3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5/up8dINCkAF+kSeJP0YQEi/fR045/c/DY6SV+eY/z809E9wsaINQKhXyjLEESRAK8HicOaXBED5Zpsb09MXQEmdgCbCBvw/IxXGFoL8GUCXytsRTov7PzNt/8pKkwRATwKbc/BM5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QWX8+4zLA0AktOVcimsgQMdjBirjXxBAVdl3RfA/EUAH0zB8RMwJQGsr9pfdEyZAysNCrWleA0BcVfZdEbwbQKa4quy7IvM/dCmuKvtuFUC8y0V8JyYCQBefAmA8wwNAn6wYrg4A4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rP9zmC+vBUCAfXTqykccQHzSiQRTTeY/8iTpmsn3B0BPO/w1WaMRQGHD0ytluSZAZwqd19gl+z8KhQg4hCoUQFk0nZ0MDv8/cY+lD12wG0Ac6+I2GkAAQJKWytsRDghAprVpbK+F5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yNKHLqivCUCP/MHAcy8jQKZEEr2M4hNArFYm/FI/DUAWak3zjtMQQA1xrIvbKCdAOZz51Ryg/j90XmOXqP4XQEBNLVvrCwJACMkCJnBrGUCZKhiV1AkAQOscA7LX+wNA8UqS5/o+3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p1zhXS6iBEBXW7G/7F4XQJp7SPje3+c/RDS6g9hZAkCmuKrsu2IKQIiFWtO8QyRAqbwd4bQgBUDlszwP7i4ZQOChKNAn8vc/6pWyDHHMGUAC8bp+we79PxnKiXYVEgVAKsdkcf+R4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+8vuycMCAUBJY7SOqsYbQFn60AX1rfQ/lZo90AoM/T/nNXaJ6m0GQMNkqmBUUiRAcHztmSVBBkCMFTWYhsEaQH0iT5KuGQRAOC140VfQFkDImLuWkI//Pyb8Uj9vKgRAYMsr19vm4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zywJUFNLA0BeLuI7MSsgQO3w12SN+vQ/PGu3XWjuAUCGVbyReaQGQESLbOf7CSRA4nX9gt1wA0AoLPGAsikbQOY/pN++Dvw/cvkP6bePGUBcWg2Je6wAQKJ/gosV9QJApdsSueAM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JEVkWMUbB0CCVmDI6jYbQEc7bvjddN0/AMYzaOif+z/0GrtE9ZYHQEuTUtDt5SJAODKP/MFAA0BKJNHLKBYZQF0WE5uPawFAon+CixWVGkDG4cyv5kABQDwUBfpEngdAWRMLfEU35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ih9j7lpCDkB+GCE82hgfQPwApDZxcv4/YFlpUgr6A0DlRLsKKV8RQHPXEvJB7yVABW7dzVMdAkDdzVMdclMWQLMHWoEhK/o/qn06HjMQGUCnBS/6ChIAQLX9KytNCgRAGm1VEtmH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gNQmTu43CEBuNIC3QCIkQLecS3FV2fY/7Q2+MJnqCEBBDkqYaTsOQFCNl24SoydA/cHAc++hBUBOucK7XEQaQHjRV5BmLARAjX+fceHgGkCZ9WIoJ9oAQBy2Lcps0AVAfa62Yn/Z4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7BLVWwP7EkDbxMn9DuUdQAiPNo5Yiw1A1SE3ww34DkCJKZFEL4MTQOhqK/aXvSZAkdCWcykuAkCgVPt0POYXQKM7iJ0ptAJAG/UQje4AG0BbfAqA8UwAQMoa9RCNLgNAaqZ7ndQX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W9O84xSdFkBV+3Q8ZjAhQPEuF/GdmBpAIchBCTPNFECNCwdCsgAKQN5xio7kkiZAWK1M+KW+AECy17s/3usYQJYmpaDbS/o/mpSCbi+JGkDUDn9N1igAQANgPIOGvgZA85Nqn45H4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oBUYsrrVFkDChqdXymIhQL2pSIWxZR9Aol2FlJ+0FUDW/znMl5cLQCuHFtnONyZAZyyazk4GAUBTliGOdZEZQG3i5H6HIvo/7uvAOSNKG0B324XmOo3/P3zVyoRfKgZAvAhTlEtj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m1Wfq60YGkBrgqj7ACQjQOmayTfbvBlAEqW9wRemFkAjFcYWglwLQP2H9NvXISdArRdDOdHuAUBd4V0u4vsYQPHXZI16CPc/7MA5I0o7GkAJbTmX4ir+P1dD4h5LHwZAZcdGIF7X4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vtnmxvRkH0AxCKwcWoQmQD9XW7G/7BlAZOlDF9QXGkDBc+/hkmMOQBUdyeU/ZCZArtNIS+XtB0AhyEEJMw0ZQPfkYaHWNP0/sCDNWDSdGUDcRgN4C6QAQH8w8Nx7+ARAur2kMVrH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f03WqIeoDEB8m/7sRyodQDojSnuDDxFAAd4CCYq/EkCfWRKgptYOQPvL7snDIiZAwAmFCDjECEBJY7SOqiYaQCNKe4MvTPg/niRdM/lGGEB+dOrKZ/kAQG6jAbwF0gZA14S0xqAT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5zV2iertBUDEQq1p3lEmQNxlv+505+g/8rBQa5oXEUA2AvG6foEOQBPyQc9mdSVAonprYKvEDECcxCCwcigfQEUNpmH4CAFAqFKzB1phG0B2cRsN4K0DQNqPFJFh1QhAMbPPY5Rn5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PiKmRBI9AECyaDo7GXwSQLckB+xqcuY/PUSjO4jdIkDYZI16iEYEQIGVQ4tsByRAJzEIrBza/z+thsQ9lr4VQPfpeMxA5f0/W86luKoMGkC0sKcd/hoAQBgmUwWjUgNArp0oCYm04T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jBAebRyxBUCiXYWUnzQcQANckC3LV+Q/O4pz1NFx5j/92Y8UkWEGQPlOzHoxtCJAJAuYwK07A0DuWkI+6DkbQG5RZoNMsgJA/B2KAn1CG0BLPKBsyhUAQBdIUPwYMwZAyRzLu+qB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gJ9x4UAIBkCO6QlLPEAZQM3mcRjMX+M/pWYPtAJDB0DcRgN4C6QKQEuTUtDtlSJAwCZr1EN0BkBhTzv8NZkaQLa5MT1hCQFATwZHyavzGEAfhetRuF4AQO2ePCzUGgVA+x711yss3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jhk5C3taBkCQTl35LE8eQGX7kLdc/eI/PSe9b3xt+D9MiSR6GUUKQO4IpwUveiNAd9Zuu9BcBEB9eQH20YkYQE3zjlN0pP4/Lc+Du7M2G0BLzR5oBYb+P5T7HYoCPQJA+RVruMg94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1jkGZK+3A0BZF7fRAL4fQHmSdM3kG/g/RyBe1y9YAUAm32xzY3oGQI51cRsNoCRAA+yjU1f+AEBbJVgczlwaQHb9gt2wbfo/IeUn1T59F0AGR8mrcwz+P4V80LNZtQJAR1UTRN2H4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y+5aQj7oCUCvfJbnwT0bQKg65Ga4YRdAyVnY0w6fEUC1bK0vEhoRQOY/pN++riZAA8+9h0sOCUCrsu+K4F8ZQIYgByXMdAFAznADPj+sG0A5tMh2vt8CQPqbUIiAAwhAk9+ik6XW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qDXNO05RBEBS7dPxmKEcQDauf9dnTuw/0VynkZbKDEAMk6mCUckKQOAtkKD4USVACvSJPEm6AUA+IqZEEt0WQEEOSphp+/k/QPuRIjJMGEB1sP7PYb78P/5g4Ln3MAJAo+nsZHAU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p3nHKToSAEBQNuUK75IdQD90QX3LXABAoDcVqTC2/j+to6oJoi4LQBHHuriNJiRA9GxWfa52BED2C3bDtsUcQDhnRGlvcPE/4iNiSiRxFkAa3UHsTOEAQE+Srpl8swRAyy+DMSLR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vFzEd2KWBkClaybfbPMfQP7UeOkmMfE/gosVNZiG9D/H155ZEiANQGgibHh6xSRAeCgK9In8C0CIaHQHsbMbQFAZ/z7jwvk/XynLEMcaGkCJB5RNuUL/P/Xb14FzhgFApfljWptG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ApoIG56eA0D7eVORCkMcQEDeq1Ym/OI/MQisHFokCEAQejarPtcFQPRsVn2uNiNAXyS05VyKAEC62or9ZVccQJXx7zMuHAJAGGAfnbqSGkABGM+gof//P9Sa5h2nqAhAOgX52cj14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hslUwajkA0BAGHjuPXwjQEWduYeE790/yR8MPPee/z/A7J48LBQIQHctIR/0jCRAwOyePCxUA0CamZmZmXkZQJwzorQ3OARAuaXVkLgHHED0iTxJuiYEQLCsNCkFnQZAOGivPh564j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OZfiqrIvBEAvhnKiXSUWQKyrArUYvOw/KxN+qZ83B0B+AFKbOLkKQP32deCcMSVA+FPjpZtEAUAZyol2FXIYQPlOzHoxFP0/zojS3uCLG0Abnl4pyxD/P3f4a7JGvQNAHThnRGnv4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dxVSflJtBUCjO4idKRQaQL71Yb1RK9c/p7OTwVFyDkCzKVd4l8sJQCfChqdXKiRA+N9KdmxEBEDyDBr6J1gXQLK61XPSe/4/jjulg/WfG0CGrG71nPT+P1PovMYuEQNAvf4kPncC4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sAPnjCjtAUBRZoNMMlIXQET67evAueQ/5/up8dIND0BuaTUk7vEIQEM50a5CqiNAe2tgqwQLBEA486s5QDAWQBe86CtIM/k/pSxDHOtiHEAXZTbIJOMAQLCPTl35rANAUKp9Oh4z3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+Um1T8dj/T8i/fZ14AwhQIWUn1T7dBtAJ6CJsOEJHUB8CoDxDBoNQNDVVuwvGyZAgH106spn+z+Jeyx96EIaQFwDWyVYnAVAc4V3uYhPGkAJpwUv+or9PxWMSuoE9AJAN/qYDwh04z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hzJUxVT62D/ZmULnNVYiQD0K16NwPQtA3pOHhVrTJEB96IL6lvkLQDbNO07RUSRAFCLgEKpU/z/yDBr6J1gaQEYldQKaCPo/6KT3ja+dG0CwyRr1EM0AQB+A1CZOrgJAtRmnIapw5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yuAoeXUO5D+L/WX35OEcQB09fm/THwRAXrpJDAILJEDfiVkvhnIHQB/0bFZ9riRAVd6OcFqwAED8+4wLB6IaQL/xtWeWBPs//iYUIuDQGkDD2EKQg1IBQL72zJIAtQNAouvCD84n4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nPnVHCCYAEDOqs/VVqwYQKRwPQrXo/Q/owG8BRL0LkBfB84ZUVoQQOauJeSD3iRA6WD9n8P8BEBTIoleRvEYQKHzGrtE9fQ/hA1Pr5SFG0CzmNh8XBsAQNF0djI4ygRAqkNuhhvw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W5nwS/08AUD5g4Hn3uMfQL/09ueioek/B/AWSFAcEUCxpx3+muwHQAtGJXUCOiZASl6dY0B2/z/L2xFOC74YQIUlHlA25QJA61bPSe+7F0ABNbVsrW8BQJfiqrLvigZAQPflzHYF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R3cQO1MoA0BeS8gHPTsTQBbB/1ay4/c/r3d/vFetB0DSAN4CCQoJQFitTPiljiJAbcX+sntyBEBHIF7XLxgZQCveyDzyB/U/b/Wc9L7RGEDHuriNBvABQMpUwaikzgdA7gp9sIyN5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"48KBkCzgBUAgXtcv2F0iQLZKsDicefA/kElGzsLeAUBAh/nyAqwKQI4G8BZIUCVADAdCsoCJ/j+8lpAPevYWQF8ktOVcCgJAKPIk6ZrJGkAKhQg4hOoAQPsioS3nkgpAvAUSFD/G5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZF3cRgM4A0CZ9WIoJxobQGowDcNHRP8/wcWKGkwDBUAUrkfhelQRQKCJsOHp9SVApU5AE2HD8D8lkuhlFOsUQCKOdXEbjfc/vRjKiXaVGkCvmXyzzU0DQEc9RKM7CAZATiuFQC7x5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uVM6WP9nDUCRYRVvZJ4hQG1Wfa62YghAgUOoUrMHGEALKT+p9qkIQJM6AU2EbSZA5ssLsI9OBkActi3KbJAZQKfNOA1Rhe8/IO9VKxN+E0CxUGuadxwCQLraiv1ldwpAGqN1VDVB3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ndfYJar3AkAabsDnh9EaQEWg+geRDNs/BhIUP8acBkACK4cW2Y4LQBrAWyBBESVA4UBIFjCBAEC5UzpY/ycYQM/abReaawJAWRe30QAeGkA7x4Ds9a4AQOIBZVOu8ARAkdJsHofB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U67wLhfxA0BRg2kYPiIcQMjShy6o7/g/vR3htODF+j8mqrcGtsoLQIBIv30dOCVAXaeRlspbAEApXI/C9egWQLprCfmgZ/o/tB8pIsNKF0AQQGoTJ3cAQDnWxW00QARAYHglyXP94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eSPzyB/MCEBqvHSTGCQhQNqqJLIPstE/YMjqVs9JD0CwrDQpBR0KQN6Th4VasyRAzvxqDhCMCEC9xi5RvVUdQHUfgNQmjgVA7FG4HoXLG0A0orQ3+IIBQKWg20saIwVAVDpY/+ew4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fm/Tn/3IAkAZ529CISIjQCmWW1oNieQ//+xHisjwD0DFA8qmXKEGQG3F/rJ7EiRAqtTsgVZgBEBI4XoUrqcaQE0tW+uLRAFAm1q21hepG0C3ek563/gAQCegibDhKQNAhnZOs0C74T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j9/b9Gc/BEAep+hILq8jQMefqGxYU9U/9l0R/G/lC0B6jV2iemsIQPCnxks3iSRAhPBo44g1A0CvQspPqt0ZQJC93v3xXgJANpNvtrmRHUC77UJzncb8P61RD9HoTgVAuqEpO/0g4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+Um1T8cjBkAyPWGJB1QaQCMVxhaCHPY/qcE0DB+RDkASvYxiuQURQPd14JwRxSVAjGfQ0D8BAEAeigJ9Ig8YQPOrOUAwR/4/Pu3w12TNGEA6BmSvd38DQD/G3LWE/ANAqg8k7xxK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CTNt/8qKBUCBBMWPMbcmQNz0Zz9SRPM/2c73U+OlF0CNYrml1VANQCv2l92TBydAl+Kqsu9KB0AXSFD8GHMbQKDDfHkBdgBAT+lg/Z+DGkBO7ncoCnT8P48ZqIx/XwZAWOatug5V4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ga2jqgkiBUDVsrW+SOgWQNZUFoVdlOU/BRcrajCN/T92ieqtgW0IQBqLprOTASNAEywOZ351AECtwJDVrV4YQDBMpgpGZQBA1sVtNIB3GkBdxHdi1ssAQD6uDRXjfAFAdeYeEr734D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OKEQAYeQAkCemPViKGcPQIWUn1T79OQ/KEnXTL7ZCEC/ZU6XxQQIQME5I0p7YyRAJJwWvOirAEAS91j60GUYQFfPSe8bXwBAzojS3uArG0BftTLhl/oAQMdoHVVNEAJA3GRUGcbd3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ilkvhnJiBED8xteeWfIRQPPlBdhHp9U/wt1Zu+0CIUD7OnDOiBIJQJJc/kP6TSVA097gC5PpAkDlCu9yET8bQI/C9ShczwJAoRABh1CFGkDzVIfcDLcAQGebG9MT1gFACmXh62td4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Akht4uT++j+si9toAC8ZQBQi4BCqVPA/V0PiHkufIEBF2PD0StkHQEI+6NmsmiRAHhuBeF2//z/MlxdgH90VQG+70FynEf4/yjfb3JjeGkB56SYxCCz+PzEIrBxaJARA4dOcvMgE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dhppqbzdAkDI6lbPSW8XQBsN4C2QIPM/kX77OnBOJEDl1TkGZO8KQDhnRGlvUCRAUiegibBh+T8+0AoMWR0VQKmfNxWpsPU/VvFG5pF/GkBN845TdKT9P4zbaABvwQRAvfxOkxnv4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2gOtwJCVA0D27o/3qnUZQOELk6mC0QJAT135LM/DHUBBmrFoOjsIQGdEaW/wBSVAaw4QzNHj8T9wJTs2AvEVQAA6zJcXYPw/csRafAqAGUA4EJIFTKAAQLDmAMEcfQVAE51lFqHY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZeQs7GmH/j9iLT4FwNgcQPNYMzLI3eQ/oMN8eQE2FkC0yHa+n5oLQG/whclUASRA1xLyQc9m9D/HYwYq4x8TQOp4zEBl/Pk/QkP/BBeLGUAYQznRroIAQJGb4QZ8/gRAYVW9/E6T5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iIBDqFKz/j9l3xXB/9YdQHYaaam8HQZAq1s9J72vCkDQ7SWN0boIQOLplbIM8SRAyXa+nxpvA0By4UBIFjAaQMISDyib8v8/NxrAWyABGUBTliGOdbECQPphhPBoowhAgZVDi2xn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OdGuQsoPCECnkZbK27EgQDygbMoV3t8/UAEwnkFDCEBwXwfOGZEMQMgHPZtVfyVAjNZR1QTRBUDf/fFetbIbQL8OnDOi9ABARpT2Bl84HUDv5qkOuRkAQBV0e0ljNARAlnoWhPK+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZkmAmlr2BEDcY+lDFzQiQIf+CS5WVOQ/Ek4LXvTVBUC7fsFu2HYMQJCg+DHmDiVAnwJgPINGBkAfgNQmTk4bQEOtad5xygBAg8DKoUUWHkCuKvuuCP7+P0JD/wQX6wNADOcaZmi84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZFjFG5kHCEAGEhQ/xjwdQKT8pNqnY/8/6xwDstd7A0DCwHPv4dIPQN21hHzQMydAxcn9DkXBCECOklfnGHAdQOIBZVOu8AJAthDkoISZGUCC597DJUcAQF6iemtgqwRAGRwlr86x5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UAEwnkEDDkCAgosVNfgcQNwpHaz/8/I/VYfcDDeAEUCC597DJecRQMIXJlMFQyZAHHxhMlVwDkCVYHE481sgQHS1FfvL7vY/4syv5gBBGUDcEU4LXrQDQNB+pIgMqwhAJm4VxEBX5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K/aX3ZMH/j9SLLe0GrISQL2MYrmlVfo/GqiMf58xGkDChqdXyvIHQHKKjuTyXyVAUKp9Oh4zBEBcVfZdEXwaQEoH6/8cZgRA8Uv9vKkIGEDgufdwyXEDQJ/Ik6RrJghAuqP/5Vq05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HJlH/mDgBkCWIY51cfsaQLNg4o+izus/pPyk2qdjCEDhl/p5U5ELQGq8dJMYlCNAIv32deCcCUA5C3va4e8bQOcAwRw9/vI/EF1Q3zLnGkAmcOtunur+P5J55A8G3gRA3IE65dEN4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KjqSy38IAEDO34RCBBwXQCVYHM78avw/Ft7lIr4DI0CSrpl8s80KQELPZtXniiZAk1fnGJB9AkAc8PlhhJAbQLb4FADj2QBAI6Et51K8FkAOEMzR4zcAQLK61XPSewNAADrMlxdg3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0vvG156ZAEATDyibcgUiQEj+YOC5dw9A3QcgtYlzF0DHRiBe1+8MQJvmHafoaCVAAyZw626eAUAdOGdEaQ8ZQP1qDhDM0f8/3nahuU7jGEDkMQOV8a8AQKorn+V5MANAtw2jIHh83j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"je4gdqYQCUAzbf/KSjMTQGr2QCsw5PU/XI/C9SicHUCPcFrwoi8LQBQ/xty1RCRAcM6I0t5gA0CPjUC8rt8YQJtyhXe5CPU/DOpb5nRZF0BGX0GasWj8P/0TXKyogQVAycwFLo+15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AyZw624e/z+wcmiR7awhQAZHyatzjPA/LCtNSkH3EUB65A8GnnsKQKhXyjLEUSRA2V92Tx7WAECnkZbK27EZQAfr/xzmiwBAtTLhl/p5GkCCyvj3GVcAQLnH0ocuqARAQPomTYOi4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N4lBYOWwFUBEhlW8kZkZQD1EozuIHQtAqYdodAcx/T/+fcaFA2ELQNlfdk8etiVAhlW8kXlk/j9WmpSCbu8ZQKxWJvxSv/g/P8bctYR8F0BAGHjuPdz8P5yKVBhbCARAaJJYUu4+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g2kYPiIGEkDxY8xdS4gWQPd14JwR5Q5AmIbhI2LKCUDaOGItPgUNQF+YTBWMSiVAqU2c3O+QA0CLVBhbCBIZQJvmHafoSPk/xqLp7GRwF0DzWZ4Hd+f/P9kIxOv6hQVAAizy64dY4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VACMZ9BQEEAqHaz/c7ggQLaEfNCzWfw/zCiWW1oNDkCm7V9ZabISQIv9ZffkgSZAY7SOqiZIAUCmYfiImDIZQIS7s3bbBfU/GEM50a5CF0DbFmU2yKT9Pxxfe2ZJwAZAuwm+afrs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KxN+qZ+38D9N1qiHaFQSQJp8s82N6QBAm6xRD9EIFkD5LM+DuzMMQBiV1AlooiZAOiNKe4PvB0AgDDz3Hu4bQMpskElGTvk/by9pjNZRF0DZX3ZPHpYCQFQAjGfQEANArDsW26Si4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UrZI2o2+5z9aKm9HOA0TQFGIgEOoEgNA6DBfXoDdE0DAWyBB8SMMQEYldQKa6CNAw4GQLGDCA0AZraOqCUIYQMJM27+yUvg/o1huaTXEGEB6GcVySysEQBLCo40j1gVAo5I6AU2E5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S5NS0O1lAUDl0CLb+d4lQBnKiXYV0vg/5nRZTGw+AkAwKqkT0IQIQMl2vp8azyVAqTC2EOQg/z9IxJRIovcYQPZFQlvOpQFAeNFXkGbMGkAJxOv6BXsEQHkj88gfjAZAJZS+EHJe5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d/hrskZ9A0Ba9bnaii0jQA5nfjUHCP4/9u6P96rVCkC4dTdPdcgHQP2H9NvXgSZAeLRxxFr8+z+oxks3iSEYQCS05VyKqwBAQuxMofO6GkDVeOkmMQgEQLVPx2MGqgZAk+LjE7Lz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XCBB8WMMBEAyVTAqqYMiQB+i0R3ETvU/S80eaAXGCkDIXu/+eK8OQIbJVMGo5CVAx9eeWRKg/z/HYwYq4/8XQGWlSSnodvo/KbNBJhl5GUDogvqWOR0EQC7/If32dQdAk6espuuJ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oFT7dDxmCUASiNf1C3YbQIdtizIbZPY/n47HDFQGFkA6kst/SD8OQFTjpZvEwCRAHuG04EXfAEBseHqlLKMZQOuLhLacS/o/TE9Y4gGlGUDogvqWOR0EQO1HisiwighAk/5eCg+a5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N8MN+PywBED3deCcEUUbQJ1jQPZ69/0/xCXHndLBF0CN0TqqmgARQDSitDf44iRAjZduEoNAA0CNYrml1XAYQCS5/If02/0/VDVB1H2AGEBgArfu5qkCQM+9h0uO+wdA1uQpq+l65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ttsuNNfp9z9FR3L5DykgQOLMr+YAQfk/aoe/JmvU+T/0MorlllYHQGgibHh6BSVAkIgpkURvAkAK9Ik8SZoaQC7FVWXflQBAGRwlr85RHEBfKcsQxzoDQIL/rWTHBgdAic4yi1Ds5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s82N6QnLDUC0dtuF5loZQLK61XPSe/c/6gQ0ETb8A0DF5uPaUHEHQIxK6gQ0USRAZyeDo+RVBUBmFMstrUYYQG9HOC14UQBAuaXVkLinF0Bma32R0Jb8PyqRRC+j2ANAILdfPlmx4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I0p7gy/MDUD35GGh1rQYQP63kh0bQQFAQj7o2ay6DUDl8h/Sbx8KQK8l5IOejSRAL1G9NbDVAkBLH7qgvoUZQJf/kH77uv4/0jqqmiBqGUCFCDiEKjX7P768APvoFARAn5JzYg/t3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z9Xnais2CkDFG5lH/uAeQNbh6Crd3eQ/Ztr+lZWm9j9GX0GasSgKQKyL22gAbyRAFVJ+Uu1TB0A/jBAebdwcQAuYwK27ef0/Vdl3RfB/GkBCQ/8EF2sCQOs56X3j6wVARWYucHks5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WK1M+KX+9D/WkLjH0jcgQDUMHxFTov8/Gf8+48IB9j9DBBxClZoBQKPp7GRw5CJAscQDyqacB0B2VDVB1F0bQIQSZtr+FQJAzAuwj04dHUCR8pNqn04AQFr1udqKPQdAj1VKz/QS6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q/8EFytq8j9T6LzGLrEcQH/2I0VkWPk/7Z48LNSa9z8GKuPfZxwFQB75g4HnXiJAIbByaJGtB0BCQ/8EFwsbQDLJyFnYEwFApyIVxhYCG0A3VIzzN2EAQGO5pdWQOAdAyAc9m1Wf5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lNkgk4yc+j/cEU4LXvQcQOF/K9mx0QtAYOrnTUUqDUBg5dAi29kRQOcdp+hIridAZ2FPO/z1CEDyDBr6J/gaQO4ljdE6Kvc/2XdF8L/VFkCe6pCb4cYAQOIBZVOu8AVA9x3DYz8L4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xf6ye/LwBkAX1LfM6RIhQKIL6lvmdANAtcNfkzWqB0AUlnhA2VQJQOzAOSNKGyRAGlHaG3zhAkDPSe8bX1sZQIyEtpxL8f8/ZhTLLa2GF0AxthDkoEQBQK6BrRIsDgZA2c73U+Ol5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bef7qfFS7T+i7gOQ2uQcQEBqEyf3ewxA8+UF2Een9D8M5US7CikIQPjCZKpgFCRAXmiu00gLAUAnpaDbSzoYQMLAc+/hUgJAZr0YyolWGUCnlq31RYIBQD7o2az6HAdAtRfRdkzd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1LfM6bIYAUAU6BN5ktQdQI8zTdh+Mu0/pWYPtAIDDUDfpj/7keIEQA2Jeyx9+CNAHJlH/mBgBEA0uoPYmcIZQEXwv5XsWP0/k1fnGJD9F0BEhlW8kfkAQKOvIM1YtAVAge1gxD4B3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2J5ZEqAmA0DG3LWEfNAcQMk+yLJg4t8/u37Bbth2CkBLk1LQ7WUGQPYoXI/C9SRATrnCu1zEBUAkRWRYxfsaQG6GG/D5Yfk/xJlfzQFCFkAzUBn/PqMAQEax3NJqCAZAE7ngDP5+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eQH20alrAUATuHU3TwUjQOOqsu+K4AxA8kHPZtVnJ0BnCp3X2MUQQD55WKg1rSVAGoums5MBBkDKplzhXS4cQHHmV3OAoAFAsDic+dV8HEDU8ZiBynj9P3qNXaJ66wJA+1dWmpSC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zCiWW1qN/D+q8dJNYrAcQC/6CtKMRfI/jBU1mIZh/T/9vKlIhbEIQI51cRsNYCVApmH4iJjSBUBK0jWTb5YaQLosJjYfFwFAaqSl8naEGUAQ6bevA+cDQHXN5Jtt7glAXcE24snu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bAn5oGdzCUDrOel94zsgQF+X4T/dwOg/kGYsms6OAUCDTDJyFrYLQP4rK01K4SNAeuQPBp67BUBvRzgteHEaQKipZWt9Efc/shGI1/WrGkCEZAETuDUBQFuZ8Ev9vAdAfjmzXaGP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Bfshm1LAUDWxW00gLcVQMxAZfz7jPM/8KfGSzeJLUDDZKpgVJINQIPAyqFFViVAFCLgEKqUAkDRdHYyOAoZQOKS407pYPc/Ups4ud9BGUDXL9gN2xb8P5+OxwxUhgVACOOncW/+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ka4q+67IAEAoDwu1plkVQBSYTus2qNg/i8OZX81BDkCKk/sdikIFQMsQx7q4TSRA7dPxmIHKBEB2N091yA0cQLCPTl35LAFAnNzvUBQIHkC8eapDbsYBQJp8s82NaQVAtRg8TPtm5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WWlSCro9AUCtbvWc9J4QQKSpnsw/+t8/OKEQAYcQCkDpSC7/IX0GQOgTeZJ03SNAlX1XBP/bA0DbM0sC1PQbQMUbmUf+oABASUvl7QgnHkBlGeJYF7cBQH+8V61M+AVAK6G7JM4K5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QwQcQpXaDEATJ/c7FPUjQI7pCUs8IPc/+Um1T8cjHUBGCI82jngQQDsBTYQNLyZAgIKLFTWYAUBXlX1XBL8XQN6wbVFmAwFAOjsZHCUPFkBJnYAmwob7P6JdhZSfVANAXHfzVIfc4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"igJ9Ik+S9z9CCTNt/2oXQL7e/fFedQZAaw4QzNFj/T/g1t081SEKQDAvwD46dSNAXVDfMqdLA0AebRyxFj8cQJnYfFwbKvM/z4O7s3Y7FkCDaRg+IuYDQKCmlq31RQVAvTlcqz1s4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/iYUIuAwEEBR2ht8YSIhQDvkZrgB3wBALJrOTgbHFkCcvwmFCFgRQBueXinL0CVAUrgehetRAUCFmbZ/ZSUYQLLXuz/eawVA8WPMXUsIGUD3Bl+YTBX/P5Qw0/avLARAVK2FWWjn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gw3gLZAgCUDFOH8TChEZQGACt+7mKf0/wD46deXzFkBApN++DhwQQKmkTkAToSZANxrAWyBBAUClLEMc6wIaQHi0ccRafPg/I/jfSnbsGUA09E9wseIAQAq/1M+bSgRAU82spYA05D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GHjuPVzyBECLTwEwnlEhQBsv3SQGAfE/KNU+HY+Z9j/FVWXfFQEHQJKzsKcdriNAG0esxaeABEAwnkFD/wQZQMFWCRaHcwFAI9v5fmr8GED2KFyPwvX/P8ai6exkcAVAGTp2UIlr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UvLqHAOy8z9juaXVkHgZQIZWJ2co7uo/VRNE3Qeg8D9fDOVEuwoEQOXyH9JvXyNAMPDce7ikAkB4tHHEWjwXQD3VITfDTQFA/pqsUQ/RGUAkKH6MuWv+P64NFeP8zQVAn1inyveM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I74Ts16MCUBqMA3DRwQfQNRIS+XtCAtA7MA5I0rbKkApyxDHuvgQQAaBlUOLLCZAymyQSUZO/z/vycNCrakZQHva4a/JmvI/HxFTIomeF0BbfAqA8QwCQKm8HeG0oANAmgtcHmvG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rrZif9m98D/tnjws1PojQBx8YTJVsPU/ZB75g4GHH0D+t5IdGwEKQLKd76fGayVAeQH20anrBkCnIhXGFgIaQLA4nPnVHPE/Qxzr4jY6FkDAPjp15TMDQG5MT1jiQQdAEarU7IFW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"omKcvwmF8z+Q2sTJ/c4bQJsg6j4ACRlARGlv8IVJ9D+ns5PBUTIOQEYldQKayCRAHaz/c5jvAUCzXgzlRLsaQEmil1Est/Y/vTrHgOx1GEAArmTHRuAAQLTIdr6fGgRASP31Cgtu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dEF9y5zuCUCCkCxgAocjQFyq0hbX+NU/d2fttgsNFUB+Uu3T8VgKQC7/If32tSVAVyb8Uj+vBECph2h0BzEZQBLCo40j1gNAiLoPQGpzG0BcyY6NQLz+PwtjC0EOCgRA4Nv0Zz/S4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zNHj9zb9/z/ItaFinB8eQAWGrG71nPU/JuSDns0qDkAfaAWGrK4IQObLC7CPbiNAXMmOjUD8BECDo+TVOeYZQAw89x4uOfY/xebj2lDxGEBEF9S3zGkAQAw89x4u+QRAvp8aL90k4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yjLEsS5u/T+9++O9anUgQKeWrfVFAglA08H6P4c5CECpvB3htOANQNZW7C+7RyVA05/9SBFZBkCu9UVCWy4bQLw/3qtWZgJAEtpyLsX1G0CneccpOlIBQEpGzsKedgRAj+IcdXTc5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ece6uI2GCkANcayL2wgeQHctIR/0TBBAh22LMhtk/j8DQ1a3ek4OQD81XrpJTCVA2qz6XG2FBECkjSPW4jMbQGGOHr+3aQFAPZtVn6sNG0BKJNHLKFYBQI6SV+cYkARAzy7f+rBe4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d/hrskbdEkBn1edqK5YkQI3uIHam0Pg/y9sRTgueFEBIbeLkfscNQNBE2PD0yiRACJRNucK7AkDNHmgFhqwXQLQfKSLDqgJAIchBCTPNG0BrDhDM0eP/PwBSmzi5HwRA3SObq+a54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3CkdrP9zEUCR7Xw/NT4gQDojSnuDbwhA1LfM6bKYC0AFo5I6AY0NQOM2GsBbICRAhhvw+WEEA0BolgSoqQUcQOik942vfQFArmTHRiB+G0BxPQrXo/D9P8X+snvysAdAt0Htt3ai3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KbNBJhk5CUCGAyFZwAQHQJq2f2WlyQZAoYSZtn9FGkA89x4uOe4HQAWjkjoBbSRANXugFRgyCUB8CoDxDLobQI1iuaXVEP8/vsEXJlNFGkC9++O9amUBQLecS3FVmQJAMC/APjr15j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WoEhq1s9BkAtlbcjnJYGQOGVJM/1fdk/UdobfGFSLUD8+4wLB0IPQF+YTBWMyiVAjKGcaFfhBECrBIvDmd8bQPrt68A5YwNA6dSVz/JcG0BeaK7TSEsAQMAEbt3NEwhAMzMzMzOz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4gZ8fhghCkDL8+DurB0DwJlH/mDg+QZAInGPpQ8dHUBtrS8S2jILQGx4eqUsIyVA3e9QFOhTBUAbTMPwEZEZQMFu2LYoM/8/XwfOGVFaGkBos+pztZUCQORJ0jWTrwNAxanWwiw05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"duCcEaW9E0BWvJF55A/5PzRo6J/gIglAHThnRGlvMkAUrkfhelQMQE3zjlN0pCRAho+IKZGEAEDD0ytlGSIYQBlW8UbmUQBAx2gdVU0QG0CSlsrbEQ4BQHOiXYWUHwZA3lflQuXf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pmH4iJiSCkCyYyMQr+vmv6Tk1TkGpAJAcRsN4C2QLEAl6ZrJN9sKQJVliGNdPCdAyM1wAz7/AUDzcW2oGAcZQO6UDtb/uQFAp+hILv/BG0CwcmiR7bwCQNmUK7zLRQRAx0rMs5JW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HjNQGf++CUDsoBLXMa7bP2MMrOP4oe0/qz5XW7GfLUClMVpHVTMRQLfRAN4C6SRAt5xLcVUZBUClg/V/DlMZQL3jFB3J5QRAnpj1YihHG0ADWyVYHM4AQGKE8GjjCAZA5E7pYP2f5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LUMc6+L2AUA5Yi0+BUASQE87/DVZo8Y/enB31m47FkCCHJQw0/YAQI0o7Q2+UCRAFhObj2tDBUDbv7LSpJQdQKzKviuCPwFApg9dUN8yHUB/pIgMq/j/PwrcupunOgZA64uEtpzL4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfViKCcaB0BGlPYGX/gkQMR6o1aYvsc/t39lpUkpEUB2VDVB1P0HQJYhjnVxGyVAmG4Sg8DKBUDnAMEcPZ4YQFa3ek56HwhAKpFEL6NYHEAdlDDT9u8AQLzLRXwnZgJAQbyuX7Ab4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NzemJywxA0AgXtcv2D0jQBTtKqT8pPk/2PULdsM2CEDjNhrAW+AJQFmGONbFLSVA34lZL4YyAkBDrWnecYoZQFKbOLnfofU/gZVDi2yHF0DgnBGlvQEBQLSOqiaIOghA2PM1y2Wj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wsBz7+GSCUBFgT6RJ4kWQEvNHmgFBvU/FQDjGTR0GkAfSx+6oD4NQJqZmZmZOSRAA7LXuz/eA0A429yYnjAZQM2v5gDBXAFAJsed0sEaHUBfQZqxaHoDQHrCEg8oGwZA5+CZ0CSx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L26jAbwFB0COAdnr3V8NQAWLw5lfTfg/XDgQkgXsIEBgWWlSCjoPQPhT46WbhCVApaDbSxqjBkAGEhQ/xhwbQGYxsfm4tvQ/J2a9GMrJFUCNl24Sg0D8PyveyDzyxwVA8l1KXTKO4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aOif4GLFDEAyychZ2JMCQNaLoZxoFwhArvVFQltuF0BLyAc9m1UPQC2yne+n5iVAIjfDDfj8BkDmriXkgz4cQGw+rg0V4/g/uwopP6l2F0BSRIZVvBH+PysTfqmfdwZAq0AtBg9T4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"izcyj/xBBEAVHcnlPwQkQB7EzhQ6r88/iJ0pdF4jDkBApN++DtwEQFUTRN0HECNAM/59xoXDBEBdM/lmmzsaQB0gmKPHLwJAY0UNpmE4G0DRyyiWW9oBQC140VeQZgNAS3UBLzNs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wARu3c3TAUCx4emVsvwjQOdu10tTBMo/PGagMv69DkB3EDtT6LwFQC5zuiwmhiNAC9KMRdPZBECxpx3+miwaQIdQpWYP9ABAi08BMJ7BGkA2donqrcEBQHXIzXAD/gJAk3GMZI9Q4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hxbZzvdT9j8Kou4DkJofQEGfyJOka/8/TUpBt5f0A0CPqiaIuo8IQB5tHLEWHyJAnx9GCI92B0Cw/s9hvtwYQMr9DkWBPvo/dR+A1CZOG0D+1HjpJjEAQAMmcOtungZAqBq9GqA04z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ilkvhnIiEECif4KLFVUXQIenV8oyxPI/eekmMQjsC0ANiXssfWgMQOeMKO0NPiZAwyreyDzyAUBFZFjFG1kcQL4Ts14MpQBAY3rCEg8oGECLGkzD8JH9P/hrskY9xANAy9qmeFzU4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ttsuNNdpDUBqvHSTGEQYQOpb5nRZjAFA6j4AqU0cAUAnMQisHFoMQFCNl24SAyZA2CrB4nBmAEABTYQNTy8bQOlILv8hvQBA09nJ4CgZGkC+TX/2I0UAQMoyxLEurgRA2uTwSScS4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SDMWTWfnAkA7jbRU3t4hQLJGPUSjO/w/sVBrmnfcDECRLGACt24RQAU0ETY8PSZAPx2PGagMDED6J7hYUaMdQPXb14FzRvc/mN2Th4W6F0DkTulg/R8BQE87/DVZowdAmBjL9EtE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WwhyUMKMBUCiemtgqwQeQEsC1NSyNQpA1XjpJjGI/T9qvHSTGMQJQDxO0ZFcviRAJH8w8Nz7BEC/ZU6XxYQbQI0o7Q2+MPk/fjUHCOboFkAlWBzO/GoAQGFPO/w1WQJAmntI+N7f4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HVVNEHWfAkBlwi/188YfQN/+XDRkPOc/j3Ba8KKvBUDedqG5TqMNQDojSnuDjyVAumbyzTY3A0AbgXhdv6AbQMQlx53SQfY/kKD4MeZOGUCrPldbsT/9P6bVkLjHUgVAsTTwoxr22T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mggbnl5pCUDUmuYdp4gbQKIo0CfypAFAis3HtaFi+z/IBz2bVV8KQLByaJHtHCRAd/NUh9wMCEB3vp8aL50aQMAhVKnZg/c/GXPXEvKBFEBJ10y+2eYAQKYPXVDf8gNAYCNJEK4A4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D7QCQ1a3+T89RKM7iD0bQG40gLdAgvw/+z+H+fICAEBJLv8h/XYJQINRSZ2ABiVA3LqbpzokCEASFD/G3HUcQEgWMIFbd/s/yuAoeXUuFUDzWZ4Hd6cAQDkoYabtnwNA0Jfe/ly04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kX77OnBO+D+oV8oyxHEpQLhAguLHmABA38Mlx53CIUD1vvG1Z9YHQIXrUbgehSRAO8eA7PWuBEBY4gFlUy4aQKuVCb/UT/s/N+DzwwhBHEBAE2HD02sAQHh6pSxDnANAJv4o6sw94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"smMjEK9r9T+RD3o2q54WQAJIbeLk/gJAychZ2NOuEkDCEg8omzIRQGwJ+aBn8yZAXHLcKR3sAUCPU3Qkl58aQMQI4dHGEf4/mGn7V1aaF0A2AvG6fsH9P3GPpQ9dEARA7zmwHCED4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VoLF4cxvDUDkLOxphx8dQD3yBwPPPfE/iPTb14GzDUBiEFg5tEgOQAisHFpk2yZAZwqd19glBUCzzY3pCesaQGagMv59Rvo/jNZR1QRxHEAMAiuHFpkBQOIGfH4YoQNAns+AejNq3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NLqD2JniGUC6oL5lTpcKQEErMGR1qyBACRaHM7/6H0CQZiyazg4OQAHeAgmKnyRAEce6uI3GBUA4hCo1e2AdQMr9DkWB/gRA/MbXnlnyG0BtOZfiqrIAQL72zJIANQdANiIYB5cO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JNbiUwCMEUDGbTSAt+AkQM9r7BLVW/8/YtuizAaZ+D8+BcB4Bg0FQLsnDwu1BiRAhQg4hCr1CEAVHcnlP8QaQL8OnDOi9ABA24r9ZfcEHED9vKlIhfECQPvL7snDQgVAtksbDkuD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dsO2RZkNDkDOwp52+PsiQC7FVWXfNRlAWUxsPq6N+z8Dz72HS44GQCLDKt7IrCNATIkkehlFBUA4hCo1ewAbQKSqCaLugwBAFJZ4QNn0GkBKtU/HY8YCQC8012mk5QVAdVjhlo+k5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T0ATYcPTDECMFTWYhuEQQO58PzVeuvA/EywOZ371DUARUyKJXkYJQN8Vwf9WoiNAEr2MYrmlAUB+dOrKZ5kYQMNHxJRIov0/LXjRV5BGGUC0ccRafAoAQLdif9k9eQVA9IdmnlxT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NrBVgsWhA0AZyol2FXIcQH3Qs1n1uQxAHJlH/mBgAEA0v5oDBHMKQPDce7jkiCJAnuqQm+FGAkAmx53SwToaQL5Nf/YjRQJAqYdodAcRGkBpb/CFyVQAQFOWIY51sQVAgh/VsN8T5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AWpq2VofCEAbZJKRs9AaQEFl/PuMi/Q/k6mCUUkd/z8Le9rhrwkIQGZmZmZmpiRArRdDOdEuAEALmMCtu3kXQOMZNPRPcPU/fO2ZJQHqGUA+P4wQHu39P6c/+5EicgNARdREn48y4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yjfb3JgeCkDXwFYJFlchQAhyUMJM2wFAh22LMhtkA0DLSpNS0C0LQMHKoUW2syRAtyizQSZZAkCq1OyBVsAaQBeCHJQw0/4/qrcGtkrwF0DA7J48LJQBQBJOC170VQRA63JKQExC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6KT3ja8dEEDI0ocuqA8iQIkpkUQvo/o/uDtrt10oA0CnP/uRIrIHQG8Sg8DKYSRATaHzGruEBEBaZDvfT60aQB4zUBn/Pvo/s14M5UQbF0BvL2mM1lH/Pw6EZAET+ARAYW73cp8c5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DypxHeOK0b9e1y/YDTsgQM/abReaqwJACoDxDBp6AUD+fcaFA6EGQCkiwyreCCJA7rH0oQsqBUDU8ZiByrgaQMO7XMR34vM/PzVeuklMGUB7MZQT7SoBQJwzorQ3uANADqK1os3x4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Un5S7dPx/T+KWS+GcsIeQHfWbrvQ3Pw/FLNeDOVE+j+wIM1YNB0JQIBIv30dmCNAou4DkNqEBUCamZmZmTkZQJ57D5cc9/g/jNZR1QRRGUAJ/reSHVsAQJgvL8A+OgNA1v7O9ugN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7kJznUZa9j8Ec/T4vS0iQA6hSs0e6PY/Bkzg1t1cEECnXOFdLiIIQNQrZRniGCVAB/AWSFD8AkA+eVioNc0YQEGfyJOka/o/atlaXyS0GEDL2xFOC979P+7O2m0XGgRA+N9KdmyE4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RIZVvJH58L87/DVZo/4eQJIiMqziLRFAD2JnCp0XA0CtF0M50W4MQOCcEaW9ASdAbRyxFp9CAECBBMWPMRcZQPAWSFD8GPY/Y9F0djL4GEDUmuYdpygBQBK9jGK55QVAxcVRuYna4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cJS8OseAxj+NYrml1SAgQFvTvOMUnRpAmIbhI2LKEEC693DJcScSQIenV8oyBCZA4IRCBByCAUBKXp1jQHYXQNKpK5/lefA/k1fnGJC9FECpE9BE2PABQDl/EwoRMAZA3CxeLAyR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VpxqLcxC6j8EVg4tso0gQJKzsKcdvgZA4C2QoPjxCUDCFyZTBWMLQISezarPNSdAECOERxvH+j8noImw4SkWQNB+pIgMK/M/v0NRoE/EFkDTwfo/h3kCQOCEQgQcAghAZMvydRn+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MC/APjp11L/G3LWEfEAgQOc6jbRUHgVA4PPDCOHRAkCX4qqy7woMQG6jAbwFsiRAWi+GcqLd/z95HtydtfsXQLAgzVg0HQBArTQpBd2eGUAZyol2FZIBQAzlRLsK6QdAI2qiz0cZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WWlSCro9+D98uOS4U1ocQLqgvmVOl/U/HsTOFDqvEEBU46WbxOALQOAtkKD4USVALudSXFU2BEDXL9gN2/YZQC4cCMkCJv8/GZC93v1RGECi0R3EzhQAQOLkfoeiwARAWBr4UQ174j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T8x6MZQTA0C/DpwzojQYQKIo0CfypP0/vJaQD3o2AkDUQzS6g5gMQOVhodY0DyZAbEPFOH/TAkAmGTkLe3oZQBL3WPrQhfw/xHdi1ovBF0Bd/kP67ev/P0TAIVSp2QNArDqrBfYY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qYdodAfxAEBvKlJhbAEjQLgjnBa8aPI/RWRYxRuZC0A9YYkHlM0OQDPEsS5uoyRA/OO9amWCAUCmJyzxgJIZQMUbmUf+4Pc/mSoYldRJGEDi6ZWyDPEAQJf/kH77egRAUOPe/IYJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ZlC5zW2CECm1ZC4x8IgQE3WqIdodPE/LUMc6+L2DUAm/FI/b2oMQLx0kxgE9iRAR3cQO1PoAkAvo1huadUZQERMiSR6mfY/MBLaci7lF0Bd4V0u4rsAQJBJRs7CngJAysStghho4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YvNxbagY9z8SiNf1CxYdQD+p9ul4jA9ARQ2mYfgICUDiI2JKJBEHQAfwFkhQPCRA/vFetTLhAkA51sVtNKAZQCp0XmOXKPI/NlmjHqLxFUDHgOz17o//PwmKH2PuWgdAwVjfwORG5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wsBz7+ES/z9eEfxvJZsfQNpZ9E4F3Ok/ms5OBkdJ+z8Fi8OZX40KQPuWOV0W0yNAQkP/BBfrAkAZxXJLq4EYQFXZd0XwP/k/sYo3Mo/8GECh8xq7RDUAQN5xio7ksgVA98lRgCgY5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PGagMv79CkDXTL7Z5oYXQCHNWDSdnfQ/+aBns+pzA0Abnl4py9AKQHS1FfvLriRAXqJ6a2CrA0Dwv5Xs2AgXQKSl8naEEwBAwi/186YCF0B9XBsqxnkDQE2h8xq7xAdAIApmTMEa5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T3XIzXCDA0DKiXYVUt4YQCdmvRjKCfk/HM78ag5wHkC28/3UeKkMQCsYldQJaCVAmzi536GoBkAcQpWaPXAaQLpOIy2VN/8/oUrNHmjFGUAbL90kBoEAQFwDWyVYHAJAIeo+AKlN4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ey15PC2/6z/AJmvUQxQYQEfmkT8YWBNAPlxy3Ck9E0CGrG71nHQIQPOOU3Qk1yRAXvQVpBmLBEDEsS5uo8EbQK6ek943Pvg/jpJX5xhwGEDswDkjSvv+P4MXfQVpBgZAZFdaRuq94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tAJDVre6BUA1e6AVGFIhQPWgoBSt3Ns/si5uowG89j+yutVz0vsKQLwFEhQ/piRAkQpjC0EO/j8teNFXkOYYQNrJ4Ch5dfs/yLWhYpw/GkBVwaikTgACQBakGYum8wNAeo8zTdj+4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OsyXF2Af+z931m670BwgQKLsLeV8Me0/XHfzVIecAEDHRiBe168IQAisHFpkeyRAIZOMnIU9/j9fDOVEu+oYQKzFpwAYz/s/pyIVxhaiGUAwuycPC7UCQKt4I/PIHwVAajANw0dE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m1q21hfJCUCLcf4mFEIXQDBK0F/oEeA/529CIQIuEUCz6nO1FXsKQPXzpiIVZiNAG4F4Xb/gAUBa9bnaip0ZQG+e6pCboQJA3IDPDyMkHEACDqFKzZ4AQGe4AZ8fhgdAuJVem42V5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fERMiSS6AkASpb3BF+YWQGoy422lV+Q/QZ/Ik6QrC0Cns5PBUfILQOqVsgxxbCRASx+6oL7lBUCaX80BghkZQORO6WD9XwRAEEBqEyd3GUCuu3mqQ+4AQO53KAr0CQZA3QvMCkU65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ups4ud+h/z+X/5B++9obQLPqc7UVe/M/zZIANbXsDUABwRw9fq8KQESLbOf7CSZARYE+kSdJBkDBc+/hkgMdQCpXeJeL+Pc/3xXB/1aSGECP5PIf0m8AQA4tsp3vpwVAxt0gWita4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u5unOuTmEUBPO/w1WUMbQO/Jw0KtqRJAbCHIQQnzBEA6XRYTmw8LQMPYQpCD8iJAXwfOGVHaAkBX7C+7J08ZQJRNucK7XPE/U5YhjnURFUC2Z5YEqGkBQD1+b9Of/QVAhlRRvMpa5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HCWvzjHgHkALRiV1AhoTQKhvmdNl8RRAvyuC/62EE0B1PGagMr4HQMIXJlMFgyVAFMstrYYEBkBWmpSCbk8bQOuQm+EG/PM/qaROQBOBF0Btxf6ye7IAQEiKyLCKNwVA8ppXdVaL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N8MN+PxwFEB1ApoIG54hQHztmSUBahJAzXUaaak8/T+wVYLF4QwPQBfZzvdTAyRASnuDL0wmAkBDkIMSZtoZQGg/UkSG1fY/CYofY+5aGEDzdoTTghcBQD4ipkQSvQRAq7LviuD/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0LNZ9bk6FEAlQE0tW6sWQPaX3ZOH5RNAQ3OdRlqKEEAuVtRgGsYMQIGVQ4tspyZADcNHxJRIAEBV3o5wWlAWQFrY0w5/Tf8/HQOy17tfGUAUP8bctYT+PzANw0fE1ARA9N4YAoDj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cvkP6bcv+j85ud+hKEAgQCh/944ak+Y/QznRrkJK/z8j2/l+arwLQD90QX3LbCNAcv4mFCJgBEB8D5ccd2obQNi7P96rVvU/skY9RKPbF0AnMQisHBoCQN481SE3AwVABTQRNjy94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HF97ZklACUCJXkax3LIaQEeP39v05/8//wQXK2qw9z9TliGOdXEGQLHh6ZWyjCRA6KT3ja89AUBVh9wMNyAaQH2utmJ/Wew/yy2thsR9FUATDyibcoX9P9lCkIMSpgRAvAhTlEtj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7KNTVz5LAECI9NvXgVMbQC+Lic3Htf8/7Z48LNQ6EkAH6/8c5ssQQHEbDeAtsCRAHy457pROBEDgZ1w4EHIXQKmHaHQHsfk/HSCYo8fvFkAVOq+xS9T/Px8RUyKJXgVA6Po+HCRE3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AvG6fsHu9z9c5nRZTLwhQCPb+X5qPPo/OBWpMLaQIEBrYKsEi4MEQLaEfNCzeSVA6Ugu/yF9+j/vA5DaxCkXQKOSOgFNBPQ/nRGlvcE3GUB5Bg39E9z9P1xy3CkdLAVAVMkAUMWN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3+LhPQeWzT9p44i1+FQQQEQ0uoPYmQ5AtvP91HhpDkAUIuAQqpQOQBV0e0ljxCJAYeC593CJA0B/EwoRcGgXQArcupunuvo/0sYRa/GpFUD5SbVPxyMCQCEHJcy0/QVAGoo73uS34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n5PeN772EsC6opQQrKrnP6Ghf4KLNRxAlWBxOPNrI0DvOEVHcvkPQLIubqMBfCZA6bevA+fMBUA6QDBHj/8ZQK+UZYhj3QNAATW1bK3vFkBSD9HoDmL/P66BrRIsjgJA1xTI7Cx63T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VcGopE4AF8BWSPlJtc8WQO5fWWlSuiFAS+oENBHWJECzQSYZOYsPQHGsi9toACVAWOcYkL1eBEBvL2mM1pEbQO7rwDkjyv0/IVnABG59GkBwJTs2AvH+PyBj7lpCPgNA3J212y404z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vYxiuaX1EcAuBDkoYUYZQL1vfO2ZZSNArMWnABiPFEADYDyDhj4KQMuhRbbzvSVABcB4Bg19B0BrZcIv9dMbQH+kiAyrePg/6lvmdFlMFkAAjGfQ0L//PxqLprOTAQVA3gAz38HP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xy5RvTVwC0AHsTOFzsscQKHzGrtEdQNAm49rQ8W49j8tCVBTy5YKQD0s1JrmfSRAcxHfiVkv+j8IILWJk1sVQEVkWMUbmfY/OzYC8bpeGkDZzvdT4yUBQC2yne+nxgNAmL9C5sog5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"27+y0qQ0HkBn8s02N2YeQNDyPLg7SxFACr/Uz5uKE0AAb4EExY8PQPp+arx0cyZA28TJ/Q6FC0DedqG5ToMdQIdQpWYPtP0/UORJ0jWTG0BN27+y0uQAQD55WKg1jQVA8lt0stT64D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5Pc2/dkPDEB6xyk6kvsgQNeGinH+hhBA95LGaB1V/j+yRj1Eo/sOQJ5eKcsQRyVAERlW8UYmBUA/V1uxvywcQJhp+1dWWgBADLCPTl0ZGEAqAMYzaCgBQBTLLa2GBAZA+l+uRQvQ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7WRwlLx6EUCcilQYW2gfQHL+JhQiYPk/IuAQqtTs/j8u4jsx6wUOQGFUUiegySZA2GSNeoiGBkCsHFpkOx8cQJhMFYxK6vg/Sl6dY0C2F0DQ7SWN0foAQFFmg0wysglAKbSs+8fC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nrXbLjTX+j98LH3ogqohQLxXrUz4Jfw//5WVJqWgB0DYnlkSoGYPQJAxdy0hXyVA+ie4WFEDB0A8a7ddaI4cQOQUHcnlfwBANBE2PL3yG0CAZaVJKegEQOIGfH4YIQdAnOCbps+O5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UwWjkjoBAUAg0m9fB+4cQO5aQj7oWQdAlLw6x4Ds/z+4HoXrUbgMQIqO5PIfMiZA529CIQLOAkByv0NRoO8YQBK9jGK5JQBAMIFbd/MUGUDLSpNS0G39P5G4x9KHrgVARs7CnnZ45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QBh47j3cD0BW1GAahg8gQAZkr3d/vPs/64uEtpxLDkB3LSEf9GwJQNqs+lxtJSVADjLJyFkYBEBg6udNRaoYQLMMcayL2wBAIJijx++tFkAX1LfM6bL+P6JinL8JxQNAzGCMSBRa2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FhiyutUTE0A/jBAebRwbQACuZMdGwBFAdQKaCBueFUDGM2jon+ALQHBfB84Z0SVAZAYq499nA0BIisiwivcbQG/YtiizQfg/wZDVrZ6TG0AK3Lqbp/oAQF66SQwC6wFADW/W4H1V4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/iYUIuCQFkDWqIdodMcFQK6BrRIs7hVAb/CFyVThF0D/PuPCgdAQQNobfGEyVSRAKxN+qZ93A0D4qpUJv7QbQNWytb5I6Ps/dVlMbD7OGUCOdXEbDSADQJMANbVsLQVAEOfhBKbT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2UKQgxImB0Cd19glqvcQQPUQje4g9vg/j9/b9Gd/FUCKWS+GcuIGQPaX3ZOHRSRAfH4YITxaAkBHdxA7U4gYQFjJx+4CJes/owbTMHykGEAoYabtXxkBQC5zuiwmNgdAUFPL1voi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aJHtfD+1CkDqW+Z0WUwSQMOBkCxgIhJAUb01sFUCDUC7m6c65GYNQGx4eqUsAyZAg4b+CS7WAUB81cqEXyoZQMITev1JfO4/ZJKRs7AnE0AbKsb5m1ABQOVhodY0rwRAv/T256Kh5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jSjtDb5wB0Boke18PxURQHh/vFetDAhA46qy74pgAUD3zJIANbUKQIxK6gQ0sSVAc4V3uYjv/z/HSzeJQaAYQACpTZzcb/Y/l6jeGthKE0D3Bl+YTBUCQIe/JmvUwwRAM9/BTxxA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yXa+nxrvDEAIrBxaZDsmQK+ZfLPNjfY/+FPjpZvkI0C+9sySAHUNQPW52or9JSZAICkiwypeAECHbYsyG0QXQB8RUyKJngJA9+RhodbUGkAcsRafAuABQGDq501FaghA/I9Mh05P5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IQIOoUpNDECvzjEgew0iQCEf9GxW/fs/pWsm32zzF0CKPEm6ZvILQKOSOgFNhCRAWOcYkL1eAkDfpj/7keIZQBKgppatdfw/vmplwi+VFkA/bypSYewBQLMMcayLmwZALQq7KHrg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yhr1EI1OEEAl6ZrJN/shQGNFDaZh+ARAzLT9KyutFUAxzt+EQgQNQJF++zpwDiVAv0NRoE8kAUC/gjRj0ZQbQDSdnQyOEvw/b4EExY/xFkC7D0BqE6cCQLAgzVg03QZAMX2vITiu4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Htydtdsu+T+h1jTvOIUKQAYN/RNcrOw/dEaU9gbfE0Cxv+yePCwLQLmNBvAWaCVAeuQPBp77A0C5UzpY/6cXQJLLf0i/ffA/FvvL7skDGUC5/If025cDQF6AfXTqCgZAQpQvaCEB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jh5QNuWKBED129eBc0YPQLsLlBRYgOQ/U67wLhdRE0BgPIOG/gkHQFJ+Uu3TcSNAb57qkJvh/T9rgqj7AEQbQMB4Bg39kwJATrSrkPJTGED5vU1/9iMCQF6iemtgqwRAwoh9AijG4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l631RUKbBUCwjuOHSiPpP6OTpdb7jek/xSCwcmixJkDkMQOV8a8LQHQkl/+QXiVAm+Ydp+iIBUA6deWzPI8WQFYrE36pn/o/6ZrJN9tcG0Cze/KwUOv+P6W9wRcmkwdASRKEK6BQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vR3htOBF9T/dJAaBlcPxP5gvL8A+uvs/wARu3c2TGkBrmnecouMNQEMc6+I22iVAWvW52or99z/lYaHWNA8ZQDwx68VQjgFAHsTOFDrPFkDbp+MxA1UCQNUhN8MNuAVAo+iBj8EK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mzi536EoCkB0tRX7y+4hQGWNeohGd/A/IeUn1T4dCkAGZK93f7wGQOjewyXHDSNA8IXJVMGoB0CPpQ9dUB8YQA6+MJkqGPU/DhXj/E1IGUCBW3fzVEcAQPDce7jkuAdA0o4bfjdd5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XwzlRLuK+j+vd3+8Vw0XQKVmD7QCw/w/QiECDqFKBEDmkT8YeK4IQD7o2az63CRADf0TXKyo+T+qtwa2SvAZQMed0sH6/wBACi5W1GAaGECSPxh47n0BQEht4uR+RwVAmgewyK8f5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cRsN4C2Q/j9TliGOdfEeQE8GR8mr8+8//iYUIuBQB0ATRN0HILULQPFjzF1L6CVA2EenrnyW/j9UVz7L8+AYQGl0B7Ezhf0/FHmSdM0kF0C1pnnHKToBQCdO7ncoSgRAXTEjvD2I5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DyibcoW3BkAaFw6EZAEhQO5aQj7oWfA/oImw4enVAkD8Uj9vKpIIQFioNc07jiRA+tAF9S2zBECw/s9hvrwdQGwE4nX9wgJAqWqCqPugG0BSmzi536H/P5612y40lwRAGELO+/+45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5ZttbkwPAEAlzLT9K1sgQIleRrHcUvE/qd4a2CrB/D+EKjV7oJUMQHNoke18PyZAUn5S7dMxB0CVK7zLRbwaQCdr1EM0uvo/LVvri4TWGkAj88gfDDz/P8B4Bg390wNAeZPfopMl4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xXJLqyHx/j/5SbVPx0MdQHCUvDrHgAFAR8mrcwyIA0Bn1edqK7YJQHnpJjEIDCVA/mDgufcwBUA6zJcXYL8aQOcAwRw9/uQ/IlSp2QOtGkADste7Px4AQCzxgLIpVwVAB3jSwmUV1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xf6ye/LwA0ANcayL24gfQJzEILBy6Po/L2mM1lHVDECYhuEjYooJQFHaG3xh8iVAMqzijczjAEBCsoAJ3HoZQHFV2XdFcPc/PgXAeAZNHEAqjC0EOSj+P9RIS+XtyAVASZwVURN90j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1JrmHafoDUC693DJcYcdQG6jAbwFUgJAPq4NFeOcGUB1zeSbbW4NQFYOLbKdryZADk+vlGXIAUD67evAOeMYQJDaxMn9DvU/cT0K16PQGUDYnlkSoOYAQGcKndfYpQRAVYfcDDfg3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7+GS405p+j8NcayL2wgaQLVrQlpjUO0/raI/NPNk7T/xaOOItTgGQBkcJa/OMSJAEvdY+tCFB0AAOsyXF4AcQENznUZaagJAeH+8V60MGkBOl8XE5uP/P5FhFW9k3gVA/iyWIvlK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wVYJFofzCEAqHaz/c9ghQFqEYitoWtg/xJlfzQGC9D/Twfo/h7kEQAPso1NXXiNAOIQqNXtgA0Dlm21uTE8aQLKd76fGywBA3dJqSNwDG0BF8L+V7BgBQMucLouJjQVA9bpFYKzv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nWNA9nrXEEClg/V/DpMaQHNoke18XxZAo+nsZHBUFkDQYb68AHsJQAq6vaQxeiNAGa2jqgkiBkACt+7mqW4YQH6pnzcVqfE/ZXCUvDrnF0BOl8XE5iMDQEp7gy9MpglAqrcGtkow4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wTkjSntDA0DqlbIMcQwcQIpZL4Zy4gFAuTZUjPM3/j/WxW00gDcLQIZa07zjFCVA4bTgRV8BBUDGxObj2hAYQGZJgJpatvE/rBxaZDs/F0Crz9VW7K8DQNuizAaZ5AZAJAwDllxF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DXGsi9uoBUBa9bnaim0iQDfF46JaRNs/aAWGrG5VE0Bu+rMfKSIKQECk374O/CVAr1+wG7ZtBEDCUfLqHEMXQJ2dDI6SVwJAWcAEbt2tG0DLnC6LiY0AQEFIFjCBmwVAtoR80LPZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n47HDFTG/T9Qqn06HrMUQDvkZrgBn/Y/at5xio5kEECny2Ji8zEMQPVKWYY49iRAu2HboszGAUAPKJtyhTcaQGKh1jTveAdAVwT/W8muH0BDrWnecQr+P3OiXYWUHwFARBg/jXvz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HhZqTfNOCUCnP/uRIpIYQCJxj6UPXQhA9UpZhjjW/T/W4lMAjKcKQGpq2Vpf5CNAYY4ev7epAEBIisiwincZQLuX++QoQOM/K97IPPLHEUDlfoeiQF8CQJ8CYDyDxghAz2vsEtXb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fZbnwd1Z7L9rmnecoiMfQOFdLuI7sQFAOnXlszzPDkCeQUP/BJcIQJM6AU2EzSRAsCDNWDSdAEDU1LK1vmgXQFsGnKVkOek/aOif4GJlF0DUSEvl7QgEQETdByC1yQZAF3/bEyS25z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lZ9U+3S8+L+xUGuad3weQDEIrBxapCZAahMn9zsUA0DAeAYN/dMKQKK0N/jCBCZAlfHvMy7cA0DP2m0XmgsZQIEExY8xd/g/AmVTrvCOFkAvNNdppKUBQMPwETElkgVArWhznNuE3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OjsZHCWvD0D6fmq8dPMWQLsnDwu1pvE/4gZ8fhhBEEDmllZD4h4JQCx96IL6tiNAT+lg/Z/D/j/sF+yGbUsYQCEf9GxW/fA/4GdcOBBSGEDDR8SUSCIAQENznUZaqgVADHVY4ZaP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"duCcEaU98D+HxD2WPtQWQHSYLy/AvgtASYCaWrbWA0DnjCjtDb4GQO2ePCzUeiRANNdppKUyBECt3XahuY4YQLX9KytNigFAm/7sR4qIFUAxfERMieQEQEaZDTLJiAdA4xx1dFyN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5Q0w8x383z+QFJFhFe8QQCAkC5jALQlAeO49XHLcAkBeS8gHPVsGQFjKMsSxDiRA2bERiNd1A0CoNc07TnEZQJhp+1dWGv8/6spneR4cFkBZNJ2dDI4EQPMf0m9fxwlAo+cWuhIB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ptWQuMdS9796Nqs+V9slQL7Z5sb05BNA4iNiSiSxH0Cob5nTZTEPQPvL7snDYiVAngyOklcnAEAaFw6EZGEZQBNhw9Mr5fc/YhVvZB6ZGkAAdJgvL0D9PwNDVrd6TgJA2EXRAx+D4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"24XmOo30CUBdbcX+spsXQC8X8Z2Y9QxAZtr+lZWmCECZnrDEA4oNQMxdS8gHnSZA+N9KdmzEBkAu51JcVfYaQBzTE5Z4QAJAoFT7dDymGkBxWvCir2AAQJVgcTjzqwVAZacf1EUK3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"teBFX0EaCUC6SQwCKxcgQHBfB84ZUfc/jUXT2clwIUCYhuEjYooIQOv/HObL6yJA48eYu5bQB0CJtfgUAMMXQHrCEg8oGwFAQwQcQpX6GkDZlCu8y8UAQAoRcAhVqgVA8rOR66aU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MlpHVROEAUCGVbyReSQcQIV80LNZdfk/3+ALk6mC9z+5quy7IngNQAYSFD/G/CRAuVFkraHU6T+Wz/I8uPsUQB7cnbXbrv8/at5xio5EG0BRTrSrkHIDQGUBE7h1twRAk6ZB0TyA4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GqN1VDWBAUAGL/oK0gwhQKUQyCWOvOk/ETY8vVIWBkD4U+Olm4QHQHBfB84ZESVAHvmDgefe9j+g4GJFDSYXQCkiwyreyABAol2FlJ+0G0BEqFKzB5oAQCBj7lpCPgJAX9BCAkYX5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jzaOWIsPAUC5x9KHLjgiQGQ730+Nl9M/1qiHaHSHBEBAGHjuPRwFQCUGgZVDSyRAyTzyBwMPAEB3FVJ+Ug0WQIEhq1s9p/8/dv2C3bBNGUBzhXe5iC8BQHZUNUHU/QNAdT48S5CR4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p3Sw/s8hAkBlqmBUUmcfQMYX7fFCOtQ/U1xV9l2R/z9DxTh/E4oCQCSX/5B+uyNA65Cb4QY8AEB381SH3IwZQD2bVZ+r7QFAlxx3SgcLHECBsilXeBcBQA4yychZmARAWrqCbcQT4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CVBTy9b6AkCWQ4ts55scQAwEATJ07Mw/OQt72uGv/j/mP6Tfvg4CQOFiRQ2mgSNA3bWEfNDzAEC0q5Dyk8oZQFJhbCHIAQJAaMu5FFeVG0BnfjUHCCYBQBqLprOTgQRAyLYMOEvJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TGw+rg1VAEBzuiwmNt8bQI2XbhKDwMY/V7JjIxCv/T9N845TdGQCQOj2ksZojSNAYtuizAZZAECVgm4vaYwZQMhBCTNtvwFA71UrE34JG0ANN+DzwwgBQEvl7QinhQRAWr3D7dAw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MlpHVRMEAUBqatlaXwQfQJY+dEF9y8g/UBn/PuPC9z8hByXMtD0CQAmnBS/66iNAmEwVjEoqAUAdA7LXux8ZQF5ortNIy/4/aTUk7rG0GkB2Tx4Was3/PwPso1NXfgNAoRLXMa644z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GEM50a6CAUDk2lAxzj8hQKyRXWkZqck/W86luKps9D+XVkPiHssBQIwVNZiGoSNAiNf1C3aDA0DYuz/eq5YZQMPwETElEvw/HAjJAiYwHEByUMJM278AQG05l+KqsgRA4Ep2bARi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Uu3T8ZiBBkDf+NozS2IVQBJnRdREn+c/zzEge727BUDmywuwj04FQLiSHRuBiCJAj+TyH9Jv+z9K0jWTb7YVQJY+dEF9SwRAMnIW9rTDG0Dr/xzmy4sAQNzXgXNG1AZAtVGdDmQ94T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6WUUyy3tAkAijnVxG40VQCKKyRtg5uc/lYJuL2lMCUBTrvAuF3EIQOZciqvK3iJARS+jWG7p/T9gqwSLw7kWQBk5C3vaoQJA+KqVCb80GkBYc4Bgjh4CQKmkTkAToQdAC9Ri8DDt5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KzV7oBUYAkAMk6mCUakfQN83vvbMkuw/ylTBqKSOBUCatn9lpckDQENznUZa+iNAyQImcOtu/T8sfeiC+rYUQIZa07zjlPw/RyBe1y9YHUD7y+7Jw0IBQMzuycNCLQdAKv2Es1vL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GHjuPVwyBEC22y4012kcQP2Es1vLZN8/MzMzMzMzA0CjHqLRHYQHQJTeN772PCNAdTxmoDL+9T9Ra5p3nMIUQDdsW5TZYAJAn3HhQEgWG0CYwK27eSoCQFHaG3xhcgZAsKvJU1bT6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vK5fsBu2AUA8iJ0pdC4hQICfceFACAtAzR5oBYbsBkAbL90kBgEJQDS6g9iZoiNAKNU+HY+Z+j/5MeauJYQWQEPiHksfOgNA626e6pDbG0A1QdR9AFIEQERRoE/kCQlAbhgFweNb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"THFV2XfF9z/aG3xhMrUoQM0eaAWGLPM/6gQ0ETbcJUAexM4UOm8MQDAqqRPQpCVAmxvTE5b4AUB5Bg39E9wXQOC593DJ8fs/7fDXZI1aGkDwMy4cCAkAQHL+JhQiYAZA6GnAIOlT5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gufewyUHAEBLyAc9m3UsQJdWQ+IeCwJADjLJyFl4GkB3Z+22C40LQIqO5PIf8iRAvrwA++iUAUBpUgq6vUQZQNk9eVioNfo/aXQHsTNlF0DL8+DurB0AQKmkTkATIQVAbw9CQL4E5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DM11GmlpA0DLZ3ke3E0hQNUEUfcByPA/SBtHrMWnAEBPHhZqTXMPQOlILv8hXSRA+vIC7KPTA0A2k2+2uTEbQDgteNFXEAVAWg2Jeyz9G0BTy9b6IiH9P7G/7J48bANAw7gbRGvF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"soAJ3LpbB0DK4Ch5dU4dQJvJN9vcmPk/YOXQItv5+T8AjGfQ0B8QQDSitDf4oiRAvfvjvWqlBkAbKsb5m/AbQDY8vVKWIQZA/MbXnllSHUAqkUQvo1j+P/2fw3x5AQRAtJPBUfLq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iC6ob5kTAkDqz36kiKwZQGoy422l19s/l631RULbCUDlfoeiQJ8IQDfDDfj88CNAngyOklcnA0CX4qqy7+obQPyMCwdCcgNAhzO/mgPkGUB+AFKbOLkBQLUy4Zf6+QhAFto5zQLt5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RQ2mYfgIC0Bg5dAi26kgQFqeB3dn7f4/2Ls/3qsWAkDfT42XbtILQDXvOEVH0iRAtmeWBKjpA0A5Yi0+BaAXQNlfdk8eFvs/iEZ3EDuzG0DyDBr6J7gBQByZR/5gYARAyyvX22aq5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rP9zmC+vCkAlXTP5ZrshQKiMf59xIQJATP28qUgFBkC28/3UeKkNQMNkqmBUMiVAAMYzaOgfA0AHCObo8dsXQEpGzsKe9vc/7UeKyLBqG0Au51JcVXYBQGkAb4EEhQVAEarU7IFW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yVnY0w6/FUB+Oh4zULkfQNTxmIHKuBJA+yKhLecSAUAR/G8lO3YKQKJFtvP9tCRAZK93f7yXBkDFckurIZEdQJBOXfksT/w/yNKHLqjPFkAw9fOmIlUAQIKo+wCktgVA68TleAWi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BaOSOgHND0BYqDXNOw4fQFjnGJC9PhFAZw+0AkMWAUDkLOxph78LQLByaJHtXCVAg92wbVHm/T9N845TdMQXQNBhvrwAOwFAorQ3+MJkGkDtZHCUvLr9P0zg1t08lQRA5dGNsKiI4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3NeBc0a0EUBybagY508fQHi5iO/ETBFAVcGopE4ABUBjtI6qJggMQBsv3SQGwSRAVp+rrdifAEAX2c73UwMXQKVOQBNhAwFASIrIsIqXGkDLoUW28/39P7mI78SsFwRAr7FLVG+N5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9Bq7RPUWCED83qY/+zEZQNTTR+APv+0/KdAn8iRpFED27o/3qhURQOhqK/aXPSdASPlJtU8HBEDEsS5uo6EbQDgVqTC2kPw/YoTwaOOoG0B2bATidT0CQDkLe9rhbwZAJXfYRGYu5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VyHlJ9V+B0CNYrml1TAgQLA4nPnVnABAQZqxaDq7IUAMB0KygAkSQHQkl/+Q/iZAsacd/posBEBPBkfJq/MXQAzlRLsKqf4/J8KGp1cKGkCqglFJnUADQKZ+3lSkggVAtrkxPWEJ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aW/whcnUBEAPKJtyhfcZQOmAJOzbSdw/1lbsL7sn9z+A8Qwa+icGQCswZHWrByFA4lgXt9HABUCXOV0WE5saQOJYF7fRgP4/LjnulA52G0AS2nIuxRUAQLosJjYfVwRA33AfuTXp4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KdAn8iQpA0BB1H0AUtsaQHyb/uxHCvg/srrVc9L7+T9IG0esxacEQM/3U+OlWyRAdavnpPfNA0BzhXe5iO8ZQCEHJcy0/fc/6glLPKBsF0CL/WX35CECQFKbOLnfoQZAG2fTEcBN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bjSAt0CCDkAJFoczvzohQJhp+1dWGgFAEHo2qz43EEASwqONI5YPQCZTBaOS+iVA+Um1T8cjBkDY8PRKWeYYQNQrZRni2Po/mpSCbi/JGECinGhXIWX/P3r83qY/uwNAnP2Bcts+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tvP91HgpCEAPlxx3SmciQE5iEFg5NP0/hUIEHEKVBUAWhzO/moMOQHS1FfvLTiVA7lpCPujZ/z9h4Ln3cMkYQBEBh1ClJgBA02pI3GMJGUBMiSR6GUUCQCyf5XlwdwNAhdBBl3Do3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfBL/bwJEUAT8kHPZjUhQDs2AvG6fgNAi6azk8HRFkCM8zehEAEMQN21hHzQ0yVAL90kBoHVA0C2Z5YEqOkYQCYZOQt72vY/+yKhLefSGEBq2VpfJDQAQANgPIOGPgJAKH6MuWsJ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U9DtJY0RAEC536Eo0KcVQHQprir7rvg/NNdppKVSEkBo0NA/wUUPQEI+6NmsmiVAirDh6ZWyA0DkLOxph58ZQMPwETElkvc/8l61MuGXGECZR/5g4Dn5P/M8uDtrdwJAqI5VSs904T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kej2ksaoAEBXeJeL+K4WQM0gPrDjP+Q/xHx5AfZRCkD8byU7NsIDQNz0Zz9SVCNAmdh8XBtqBEAVqTC2EEQaQCJseHqlrPg/D9HoDmInFkDW4lMAjOcAQPD5YYTw6AFAPZ0rSgnB3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"07zjFB0JBUAJxOv6BZsfQLH5uDZUDPY/5pZWQ+KeBkDBHD1+b9MLQKs+V1uxPyRAXVDfMqcLBECY+nlTkaoaQJCg+DHmbgNA8WjjiLX4HUBzol2FlB/9PzZZox6iEQVAY7SOqiYI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CacFL/rKBUDNkgA1tUweQH7ja88sCe0/PujZrPrc+D8tPgXAeMYIQEp7gy9MBiRAvjCZKhjVAUCvsUtUb40YQIqw4emVsgRAgc8PI4RnHkCWlSaloNv+P/uRIjKsogRAeVxUi4ji4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NzemJywxAkCunpPeN94fQMH/VrJjI+g/46qy74pgCUBUbw1sleAKQLbz/dR4qSRA6StIMxZNCUAc8PlhhLAdQIhjXdxGA/k/cuFASBZQFkA5KGGm7Z8BQDIge737owZAhCwLJv6o4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"liGOdXEbA0DP2m0XmrsgQH3p7c9FQ+k/mWTkLOzpCEDOjekJS/wLQPCnxks36SRAVWr2QCtwCUAge737410dQA1slWBxOPs/Df0TXKzIFkByp3Sw/o8BQKeRlsrbkQZAK1H2lnK+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RGlv8IUJCkBqatlaX2QgQEWeJF0z+eg/zjY3picsAkDkDwaee88KQOELk6mCMSRAs++K4H8rCUDudygK9CkdQJWaPdAKjP4/R1oqb0e4GEAmUwWjkvoAQHYyOEpeHQZAG9ZUFoVd5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UORJ0jVTBUCdhT3t8CcgQFAaahSSTOs/BBxClZq99z8OEMzR4/cJQEvqBDQRliRAqwmi7gNQB0Ag0m9fB+4dQPLSTWIQ2Ps/StI1k2/WGEDUSEvl7UgBQBPVWwNb5QVA71aW6Cyz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kQpjC0HOB0ALDFnd6pkcQH9QFymUBes/CRaHM7+a8z98uOS4UzoKQOm3rwPnTCRAiqvKvitCCED4U+Olm+QeQCVATS1ba/0/hNiZQud1F0B+dOrKZ3kCQJtyhXe5SAVA4biMmxro5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vn2utmJ/CEBsPq4NFQMcQAUYlj/fFuo/rKjBNAy/EED3Hi457hQJQOJYF7fRACVAEY3uIHbmBkD9E1ysqAEaQOAtkKD4cQVAoBUYsrp1H0BfJLTlXEoAQC2VtyOcVgdAaTaPw2D+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X7Uy4Zc6B0DBi76CNHMjQInqrYGtkuk/qfsApDbx+D9+NQcI5ugLQM3MzMzMrCNAwAmFCDjECECbj2tDxbgcQPbRqSuf5QNA+n5qvHRTH0BCPujZrHoBQA+XHHdKBwVAEayql9/p5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ndfYJaq3B0DarPpcbeUaQKa3PxcNGec/1QRR9wFI+z9SflLt07EOQDI9YYkHpCNAaHke3J21BUBSD9HoDiIfQHicoiO5vANAH4XrUbjeHECx4emVsowCQHh6pSxDnAZAuLHZkeq74D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X+/+eK/aBEDxY8xdS8j+P1A25Qrvcv0/M23/ykqzI0BblNkgk8wLQPMC7KNTFyNA/ACkNnHy/D/TE5Z4QLkYQBUdyeU/pPs/BaOSOgFtGEDaVUj5SbX+P+ohGt1BLAVA8KZbdoj/4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MPDce7jk8j+pE9BE2FAkQD9wlScQdu0/m1q21hfJDUAW9rTDXxMEQJXUCWgiLCRAguLHmLsWAkBDyk+qfRoXQE0QdR+AVPU/z9ptF5qrFkCdY0D2ercAQOiHEcKjjQNAa2YtBaR95j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EAaeew9XAUCD+pY5XZYVQAsnaf6Y1ug/ZqAy/n2mE0CNKO0NvjAKQBsv3SQGESNADWyVYHF4A0CfWRKgpjYbQM42N6YnbABAR8mrcwyoGEAuxVVl39UCQOLMr+YAwQxAiITv/Q3a4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dXYyOEreCUDhl/p5U1EjQKVOQBNhgwFAN6YnLPGABEDb+X5qvFQRQNXnaiv21ydAu37Bbtj2B0A/jBAebZwaQB4Wak3zDvk/esISDyjbGEDmV3OAYI79P+3w12SNOgFA0lYlkX0Q5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zR5oBYYs+T/fiVkvhnIYQA39E1ysKPI/HPD5YYSwB0CPjUC8rr8SQBx8YTJVcCZAokW28/0UAkAgDDz3Hu4dQN+JWS+G8vc/kgVM4NadFkBihPBo4wj9P2JnCp3XGAVAxvtx++WT4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"odY07ziFAUC/t+nPfqQXQB9LH7qg/gNA38Mlx51SBkDMYmLzce0OQBE2PL1SFiZAtLCnHf5aBUDqCUs8oMwcQG0csRafAvY/Xb9gN2zbF0BpAG+BBEX+P5jdk4eFmgRAXmOXqN4a4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J2a9GMqJDkAFFytqMO0VQBe30QDe4hFAFw6EZAHTCEBgdk8eFmoJQCgPC7WmWSRAMLsnDwt1AEAGZK93fzwaQAIOoUrNXgFAUKp9Oh5zG0CPwvUoXM8BQABvgQTFjwlA0jQomgew5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E7h1N091AEAuVtRgGoYLQN3qOel9Y+M/L2mM1lHVFEAhH/RsVj0OQA3gLZCgeCRAGZC93v2xAECKk/sdiiIZQCGTjJyFvQJAnZ0MjpK3G0BhiQeUTbn/P2fttgvNtQRA1UDzOXc75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1EM0uoP4EUBEi2zn+2kUQJZDi2znuwJAf/s6cM7oEEA6I0p7g28PQOSDns2qLyVAgSbChqfX/D990LNZ9bkYQIwQHm0cMf4/FD/G3LXkGkBiFW9kHvkBQOVhodY07wRAL4hITbuY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HvmDgeeeEUC2+BQA47kRQKzFpwAY/yBAg4b+CS7WEECHinH+JhQOQI4G8BZIkCVA1LfM6bLYBEAaUdobfEEXQBnFckurIf0/oDcVqTB2GkBaDYl7LD0CQMqJdhVSfghAAK358ZeW5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5ssLsI/ODUDqeMxAZTwUQGB2Tx4Wqg5A0qkrn+X5FkA98gcDz70OQPaX3ZOHZSVAj9/b9Gc/BECOQLyuXzAZQJBmLJrOzv4/W5TZIJNsF0AicY+lD10BQLJjIxCvKwhABaInZVLD5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5A8GnnsPy7+Y3ZOHhRogQM9r7BLVGwdAmfViKCfaAkCpwTQMH1EKQPtcbcX+EiVAtI6qJoh6B0B0JJf/kJ4aQLd/ZaVJqfM/3ZiesMTDGUCztb5IaEv/P1Lt0/GYQQJA6GZ/oNy22z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PWGJB5RNAUDQ0D/BxVogQMi1oWKcv/w/B3x+GCF8AEB2Tx4Was0LQEp7gy9MhiZAnRGlvcEXBUBIMxZNZ4ccQGoTJ/c7lPA/sW1RZoOMGECalIJuL+n+P0pBt5c0xgFAbTzYYrfP3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5US7Cik/E0DiOzHrxVASQBqjdVQ1QQlA0XmNXaIaHEC8lpAPevYPQKMBvAUSlCRAQYLix5i7CECmft5UpMIZQNk9eVio9QBAC9KMRdO5GECW7NgIxGv9P5jArbt56gBAtr+zPXrD3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"deWzPA8uBkBS8uocA5IQQOjewyXHnQJA2Eenrnx2G0BnCp3X2GULQO58PzVe+iVAMnIW9rQDB0C4AZ8fRmgdQMed0sH6v/Q/Pzp15bNcGUAvo1huaTX9P2gFhqxuNQJAFW9kHvkD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JJwWvOgrAkDp8Xub/mwWQCScFrzo6wBAJlMFo5J6CUAtYAK37iYMQFtCPujZLCRAlE25wrucBUAj2/l+anwdQGO5pdWQuPY/DhXj/E2oFkA7wmnBi77/P5BOXfksjwNA0bAYda094T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S1mGONYFAEC7YduizGYdQCtNSkG3l/c/BaipZWs9BUATYcPTK2UMQCJseHqljCRAHAjJAiZw/D/ayeAoedUWQNJSeTvCKQJAXeFdLuL7HEAai6azk0EBQDLmriXkQwVA7PfEOlW+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OsyXF2DfCkAId2fttgseQDEIrBxaZPY/mYHK+PeZ9T+rWz0nvW8IQCUGgZVDyyRA30+Nl25SBkD3zJIANZUbQBsv3SQGQQFA8Z2Y9WJoGUAxlBPtKqT+P+DzwwjhEQRAYOemzTgN3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"blFmg0wyA0A4EJIFTIAbQBFwCFVq9hBALnO6LCY2HkBOnNzvUFQOQCSX/5B+WyRALgQ5KGEmBUCasWg6OxkbQEjcY+lDF/8/EywOZ37VG0Az/n3GhYP/P+IGfH4YoQRAJH8w8Nx74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v7fpz34kCUB0DMhe774RQCEE5Euo4N0/fNXKhF/qDkDsTKHzGrsJQMx/SL99PSVA6pWyDHEsB0B7Tnrf+NoaQGyVYHE48wJAmyDqPgDJGkCOBvAWSBACQDtT6LzG7gNA+rZgqS5g4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Sqk/KSaBECSkbOwp10cQAOTG0XWGt0/foy5awn5+z8/dEF9y9wHQJCg+DHmziVA8wLso1PXBUBrK/aX3RMdQCRiSiTRSwZA6IL6ljn9HEDFrBdDOREEQCWvzjEgewNAKChFK/eC4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ti3KbJAJCEA3ww34/JAXQJyLv+0JEt0/hiAHJcy0EUBv8IXJVIEJQArXo3A9qiRAEwoRcAgVCUBPdcjNcCMcQMstrYbEfQdAsfm4NlTsGkDc14FzRlQBQE4LXvQVpAVAQyCXOPLA4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V2DI6lZPCEBLqyFxj6UWQMSxLm6jAdA/MGR1q+fEEUDovMYuUb0LQHsUrkfhuiVAsRafAmC8BkD3Hi457pQbQMHKoUW2swVAptWQuMfSG0ApIsMq3kgAQH/Bbti2KAVApwTEJFzI3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K97IPPKHAUBmiGNd3IYJQIgTmE7rNuI/8gwa+ieYHkBGCI82jlgJQACpTZzcryNA8UbmkT9YAUDg2/RnP7IXQJoIG55eqf0/6LzGLlG9HEAWTWcngyMAQPHXZI16iAVAeo1donpr5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yqZc4V3uAkABTYQNTy8RQJYmpaDbS/I/E2HD0yvlKEAxX16AffQLQPMf0m9fxyRAAmVTrvDuA0C77UJznYYYQCzUmuYdJwNAqg65GW4gHEDHuriNBvD/P/Utc7osZgZA+wRQjCwZ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lgSoqWUrB0CQSUbOwp77P5yiI7n8B/k/bypSYWzhEUA5fxMKEfANQHQkl/+Q3iZAeR7cnbXbA0A10lJ5O+IZQLbWFwltOf8/+n5qvHQzGUDZCMTr+oUAQET67evA+QRAvcXDew4s3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8YCyKVd4BUBg6udNRaoRQDI7i96pgN4/i/1l9+RhKEAJUFPL1roMQKjGSzeJwSZANXugFRgyBEBDBBxClfoZQKyQ8pNqn/0/ER5tHLF2GEBd/kP67Wv6Pxzr4jYaAAJAfjZy3ZRy4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7DTSUnn7AkDUfQBSm5gSQBrdQexMIfc/vk1/9iPlGEAaaam8HWELQJeQD3o26yZAb4EExY/xAUA4LXjRV/AZQCpSYWwhSPY/D5wzorSXGEBGJXUCmoj/P2Q730+N1wNA0Amhgy7h2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y9F0djK49D/dtYR80NMQQH+kiAyr+PU/Ed+JWS/2I0B9rrZif9kLQCKOdXEbbSdAAYdQpWYP/D+z74rgfysYQMZP4978huI/lSu8y0V8GkDWkLjH0gf8P4F4Xb9gdwNAJezbSUR44D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RS+jWG7pBECMSuoENPEWQIhodAexM/I/LlbUYBrmH0BEozuInSkLQCGwcmiRrSZAXdxGA3gL/T/rOel94ysYQManABjPIPA/uk4jLZX3GECc4QZ8fpj9PyeloNtL2gRAd7rzxHO22z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a9RDNLoDDUDXaaSl8vYKQBg+IqZEEgFAf/s6cM7IEkCu8C4X8V0KQCZTBaOSuiRA6SYxCKzcCUATJ/c7FIUbQLVPx2MGqgFAkDF3LSFfGUCHp1fKMsQAQG05l+KqsgNAI0vmWN5V5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XhH8byU7BUDIBz2bVV8lQCQLmMCtu/k/bf/KSpNSCEC14EVfQRoKQHO6LCY2vyNAhuY6jbSUAkDSNZNvtnkYQACMZ9DQP/g/jXqIRncwGUCiemtgq0QAQPjCZKpg1AZAWVLuPsfH4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OdbFbTTAAUDsEtVbA/seQE9AE2HDU/M/xTh/EwqR9D/K/Q5Fgf4JQNmZQuc1xiNAEJIFTOBWAkBhjh6/t6kYQCpSYWwhCAFALQlQU8vWGUC9xi5RvbX9P3C2uTE9IQVAnpYfuMqT4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QfFjzF3LBkCuKvuuCB4bQEil2NE4VOM/06QUdHtJDkAGgZVDi2wLQEOtad5xSiRAzojS3uBLBkCJ0t7gC5MYQGLWi6Gc6Po/yR8MPPe+GEB9BWnGoun+PzVj0XR2MglAuVM6WP/n4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iSmRRC9jCEDQ8jy4O0seQO6vHvet1us/uMzpspiYAEB3+GuyRn0LQD0K16NwfSNAtaZ5xyn6AECGVbyReeQXQLvyWZ4H9wFAms5OBkepGEAYJlMFoxL+P//KSpNSEAhAmIi3zr9d4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"27+y0qRUBUA1JO6x9EEeQIvBw7Rv7uI/fA+XHHfK/T/5Tsx6MVQKQF66SQwCiyVAdEaU9gZfBUBBfcucLosaQI3uIHamEAFAMuauJeQjHUDWkLjH0gf/P2kAb4EEhQFAYtf2dkty4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bwjm6PF7AUDZd0Xwv1UeQGtgqwSLw/A/JLTlXIqLH0DL8+DurB0LQPaX3ZOHBSVA9S1zuizmAUA486s5QHAZQJjArbt5qv0/TYQNT680FUD+mqxRD1H9P0dy+Q/pNwNAMXkDzHwH3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eJeL+E5M/D8ZVvFG5lEEQPLqHAOyV/4/rWnecYoODkBGQlvOpfgIQIi6D0Bq0yNA3e9QFOgTA0AmUwWjkpoXQEDeq1Ym/Pc/io7k8h+SF0BeaK7TSEv6P+FiRQ2m4QJAQzunWaBd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3lSkwthC+T8e3J21244TQMAEbt3N0/c/qrcGtkrQGUADQ1a3ek4NQCBj7lpCfiRAdavnpPdNA0DFPZY+dIEZQHfWbrvQ3PQ/cLGiBtMQGUBQ/Bhz15L9P0c9RKM7SAVAs5quJ7ou3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"avtXVpoUDEDxRuaRP8ghQIeKcf4mlPg/klz+Q/rtAUDUYBqGj8gMQCxlGeJYtyZAQX3LnC7LBkCjzAaZZOQbQOIGfH4Yof8/G0zD8BHRF0AYPiKmRJIAQCEf9GxWvQNA95MxPsze5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0ZZzKa4qAkDJcad0sH4YQAK8BRIUP/E/Y3rCEg/oCEAbEvdY+pAFQPd14JwRFSNAbvqzHyniAUDvycNCrQkZQI4ev7fpT/4/Zd8Vwf/2GUD5SbVPx2P/P1XZd0XwPwNA8kOlETP72T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GXPXEvKBBECbIOo+AFkiQNDtJY3ROvU/yAc9m1WfAUBD4h5LHzoFQN21hHzQsyRAtvgUAOMZA0DKVMGopE4YQH4AUps4OQBAXHLcKR3MGkCjHqLRHQQBQIuJzce1oQJAZtmTwOYc4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WipvRzit/D+nkZbK29ESQOif4GJFjfg/BJDaxMkdEEBOYhBYOfQMQI2XbhKDYCRAyNKHLqgvAUB8J2a9GAoZQJHyk2qfDv4/YOXQItu5GEAJM23/yooAQGpN845TtARASBXFq6xt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3SQGgZVDBkAPC7WmeYcdQFw9J71vfPE/fgBSmzjZEUBF2PD0SlkPQLdif9k9mSdAIuAQqtRsAEANN+Dzw2gXQF5jl6jeGvg/HuG04EU/GEAUP8bctYT/P0i/fR045wNALGfvjLYq5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ptWQuMeSCkAzxLEubjMgQJUrvMtF/PU/yM1wAz7fEECoABjPoKEPQIQNT6+UJSdAICQLmMAtAUCrJoi6D6AWQIofY+5aQvk/EDtT6LymGEAQr+sX7Ab+P78rgv+t5ARAKEcBomDG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QkP/BBfrAkC8V61M+GUeQOC+DpwzIg9A8MSsF0M5DUAx0/avrDQLQLN78rBQayRAbM8sCVATB0A6XRYTm88dQIWxhSAHpf4/smg6OxmcGkDOcAM+P8wCQDP5ZpsbUwdAHY6u0t315D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LA5nfjVHCECIEcKjjWMhQC7iOzHrRf4/cJnTZTExB0D11sBWCZYNQO+P96qVmSNANUbrqGqCBUDjqrLviqAaQB0fLc4Y5t8/qmBUUicgFUCO6QlLPCD/PyfChqdXigZAucfShy6o5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AoI5evyeBkD1LXO6LEYgQMVyS6sh8QJAXp1jQPaaE0CndLD+z+ENQEp7gy9MhiVANe84RUcyBkC0HykiwwocQG4Xmus0UvA/0T/BxYr6F0B8m/7sR0oAQNqPFJFh1QRAp7G9FvRe4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m+Ydp+iICkALtaZ5x+kbQHpwd9ZuuwFAt+7mqQ45BEBVavZAK7AFQE6c3O9QJCNAbcoV3uWi/T85tMh2vv8VQKMBvAUSlPw/5ZttbkzPFkBPHhZqTfMAQB4zUBn//gZAKbFre7ul5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sAPnjCgtA0DkLOxph98dQM9IhEawceg/dLUV+8tu/z+bVZ+rrdgEQOEoeXWOgSNAmIbhI2IKAUDrqGqCqFsVQJ8fRgiPNv0/LSY2H9fGGkA34PPDCOECQMeA7PXujwRAE2QEVDgC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"on+CixU1+z/SGK2jqikhQDylg/V/ThZA0lJ5O8KpE0B9Ik+SrhkOQInS3uALUyRABmSvd3+8BkCQiCmRRG8cQOAQqtTsgfw/AyZw625+GkBJS+XtCKf/P6H4Meau5QRAr8+c9SlH5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t9EA3gLJCkB3oblOIz0hQIAr2bERiPo/FR3J5T+kB0B2cRsN4O0NQPT91HjppiVAEFg5tMg2BUD7rgj+tzIbQNAPI4RHmwlAgH106spnHECJB5RNucL/P7IubqMBvANAnN1aJsNx4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zd8Vwf8WAEDUZTGx+RgcQA4WTtL8MdM/rg0V4/xN/T8uOe6UDtb+P2pN845TFCJAEDtT6LyGAEASFD/G3HUYQLyWkA96NgBAiSmRRC8DGkDUt8zpstgBQDUMHxFTogVAy2YOSS2U5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MEymCkblAUAx68VQTrQcQOxq8pTVdMk/l4v4Tsx69j9XlX1XBP8DQFxy3CkdbCNAarx0kxgEBUB3+GuyRj0aQOOqsu+KIAFAK4cW2c73GUBDVrd6TroDQDbqIRrdQQhAiGUzh6QW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MEymCkblAUAx68VQTrQcQOxq8pTVdMk/l4v4Tsx69j9XlX1XBP8DQFxy3CkdbCNAarx0kxgEBUB3+GuyRj0aQOOqsu+KIAFAK4cW2c73GUBDVrd6TroDQDbqIRrdQQhAiGUzh6QW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p+hILv/hBkBN845TdFQgQIVbPpKSnuw/D5wzorS3CUBpAG+BBMUOQFg5tMh2viZA66hqgqg7B0BWmpSCbg8bQBGN7iB25gBAUFPL1voCHEAJpwUv+gr/P5fiqrLvCgRAkWCqmbWU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1qiHaHQHCUBxPQrXo/AbQMTr+gW74fA/2PULdsP2EUBnuAGfHwYPQBkEVg4tEiVAv7fpz37kBkAgKSLDKv4aQM3km21uTAFAHv6arFHvGEApIsMq3kj/P70A++jUVQNAkpVfBmPE4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wg2Jeyw9AUCSkbOwpw0iQO3w12SNeg9Aa7ddaK5zFEBenWNA9noJQLG/7J48rCRA1qiHaHSHAECUh4Va0xwZQEc9RKM7CPE/T1jiAWUzF0CDNGPRdDYBQMbctYR8EAZA8YRefxIf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfViKCcaBUCY3ZOHhRogQH46HjNQ2Q1Abm5MT1jiGUBMcVXZd0UJQCh+jLlraSRAGyrG+ZvQAECbPdAKDJkYQKbtX1lp0vo/O+RmuAH/FkBdM/lmmxv/P8U4fxMK0QVAC3+GN2vw5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kGYsms7O8T8oRMAhVMkeQAqi7gOQ2v8/95LGaB0VDEDKT6p9Ot4QQCgPC7WmuSZA5fIf0m/fAkAhPNo4Ys0ZQDAqqRPQBANA8s02N6anHkBYrUz4pT4CQHhi1ouhnAVAGw3gLZAg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FymUha+vxT+WBKipZUscQPoK0oxFkxxAGLK61XNS+D+EEmba/tUJQFc+y/PgDiNA/7J78rBQBUCxxAPKpjwbQNUGJ6JfW+M/UYNpGD6iGUAvqG+Z02X+P1w9J71vvANAIcms3uF24D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W9O84xTdA0Csi9toAG8kQKIo0CfypPM//B2KAn0iFUClSSno9pIJQFmGONbFLSRAE5uPa0NFBECHFtnO91MbQP3BwHPvoQJAkfKTap9uGEC3C811Gun9P9DQP8HFygJA529CIQIO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Nx7uOT4BkAeigJ9Ii8jQF+3CIz1DeQ/tU/HYwZqFUBi1ouhnGgLQPVKWYY4tiVAmwMEc/Q4BECqQ26GG9AZQHe+nxov3fY/7KNTVz4rGkCcoiO5/If+P33Qs1n1eQJA6+Bgb2JI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/aTap+Ox9j8iwyreyHwVQL6kMVpH1f0/fjoeM1DZFED1nPS+8XUMQCPb+X5qnCRAS80eaAWGAUDIe9XKhH8ZQAiUTbnCOwFA0T/BxYpaGUDd71AU6BMAQJfK2xFOSwVAmdNlMbF54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Sphp+1fWCUAWGLK61RMSQIM0Y9F0dvk/S+XtCKeFHUCuDRXj/M0GQIhjXdxGQyRAgCvZsRFIB0D3OxQF+uQZQIcW2c73UwBA9rTDX5M1HUCDL0ymCsYCQOI7MevFkANAEaeTbHU54D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v2VOl8UEBkDgvg6cM+IWQKlOB7KeWtE/HSCYo8fvEUDSNZNvtvkGQH3Qs1n1OSZArp6T3je+BED0piIVxvYdQHhi1ouhHARAfT81XropGUCfH0YIj3YDQCuk/KTaZwlATUusjEa+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ft7lIr4TBUAyVTAqqdMVQIDY0qOpntE/uoPYmULnEkBYkGYsms4GQMIXJlMFIyZACr/Uz5vKBEBbmfBL/RweQOFdLuI7MQRALH3ogvr2GEBxyXGndDADQBnKiXYV0glAZd8Vwf/W4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1GAaho+IBkD5FADjGRQfQAOy17s/3tQ/UDblCu/SEUB3Sgfr/xwJQHBfB84ZsSVAApoIG56eB0Ba8KKvIO0cQDDYDdsW5QRA1/oioS0HF0DvVSsTfikCQImYEkn0MgpANExtqYO85D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rcCQ1a3eCUAychb2tIMZQBgJbTmXYu8/EfxvJTu2CkCaQuc1dgkJQOm3rwPnjCRAxJlfzQGCAUD0bFZ9rpYXQNpVSPlJtQJAA8+9h0tOF0BaDYl7LP38P8A+OnXlswNATfT5KCMu2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T6+UZYjj9z+wcmiR7VwgQPNxbagYZ/s/t7QaEvdY/D+mYfiImNINQMR8eQH2cSNAtf0rK01KAUBaDYl7LD0XQHh/vFetzPg/xJlfzQEiGUBIUPwYc9f9P8oyxLEubgNA++b+6nHf4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Sgfr/xxmCEDtmSUBasoeQNDyPLg76/0/VWr2QCtwFEBhjh6/tykHQBkEVg4tsiVAQpWaPdCKBEDrOel94wsbQDBkdavn5AFATkUqjC2kG0CgGi/dJAYCQKDDfHkBNgZA9kIB28EI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eNFXkGYs/T+14EVfQQohQIZVvJF5ZPc/C7WmecepBkBMVG8NbFURQGQ730+NVyVAzXUaaak8BEDja88sCVAbQMqmXOFdrvQ/YviImBIpF0BcGyrG+Zv6PyVATS1bawRAIhtIF5tW3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8IrgfyuZA0AYfQVpxsIfQJHQlnMprvc/TyMtlbejAECh20sao3UHQDPEsS5ugyVAduCcEaX9A0AO+PwwQhgdQP/sR4rIMPc/mN2Th4WaF0D8NVmjHmIAQCXMtP0rawZAwf7r3LSZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gez17o/3BEBBn8iTpKsZQBnKiXYVUuE/ZohjXdxmEECjAbwFEhQMQOqVsgxxrCRAg2kYPiLmAUBR9wFIbSIXQEqYaftXVv8/5fIf0m8/GkCNYrml1RACQFDkSdI1kwNA/I123PC74T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LSEf9GxW/z/8qfHSTWIbQFBwsaIG0/M/0qkrn+W5BkDoE3mSdA0JQNnO91PjBSVAqBjnb0Ih/T9wQiECDiEWQItPATCeAQBAh9wMN+BTGEBa8KKvIM3+P2h5HtydNQZAvmplwi914z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xqLp7GQwA0BQqn06HrMhQHh+UYL+wuI/JTs2AvG6+j9j0XR2MvgGQH/ZPXlYSCRAwYu+gjQjCkAW3uUivnMdQP0TXKyoQf8/JvxSP2+KGkBcPSe9bzwBQB+/t+nPPgRAhbUxdsJL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fjUHCOZo+D9JnYAmwsYGQNV46SYxyApApdqn4zEDGEAXt9EA3oIOQGWqYFRSBydA0H6kiAyr/D+1/SsrTcoVQCibcoV3Ofc/y74rgv8NGkD6m1CIgMP/PymuKvuuiANA+yKhLefS4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vHSTGASWBEBa2NMOf+0dQKCH2jaMguI/xAjh0cZRDUDD9Shcj0IMQPs6cM6IUiVApb3BFyaTAECLic3HtUEXQGcsms5OBgFA4e6s3XZBF0Byp3Sw/s/9P3e+nxovnQVAbF7VWS2w4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DOVEuwrpB0BdbcX+shsbQBBYObTI9hNAB5lk5CysCUBbmfBL/fwKQGuad5yiAyVAPUSjO4jdBEBPkq6ZfPMaQPhrskY9xPY/8BZIUPy4GUBPXfksz0MBQEymCkYldQRARlwAGqVL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V1uxv+ye/j+Rm+EGfN4aQHctIR/0TCpAvVKWIY71CUCLGkzD8BEMQINRSZ2AxiRAVHQkl//QAkA7AU2EDS8cQGN/2T152ANADDz3Hi55GkAKur2kMRoBQFA25Qrv8gVA0y07xD9s5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N43ttaD35j8AdJgvLwAfQHjuPVxyXPM/1uJTAIzn+D/zPLg7a7cNQJXUCWgijCRAgSGrWz1nBEBwd9Zuu9AXQLXgRV9Bmv8/Yf2fw3z5GECYUSy3tNoAQJgXYB+d+glAiEfi5elc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vz7L8+DuEkDpZRTLLe0bQOV+h6JAn/4/t+7mqQ4ZEUAB++jUlc8NQDGZKhiVdCVAqmBUUicgAkD7y+7Jw6IbQIBIv30dOPQ/XOZ0WUxsGkBMjjulg3UAQJlH/mDguQRAiJ//Hrz25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HNMTlnhAGEDGv8+4cPAhQEw3iUFg9SBAf4eiQJ9IC0CWQ4ts57sLQB+A1CZO7iNAVG8NbJXgAEAwL8A+OnUYQB4bgXhdP/4/toR80LM5G0D0N6EQAUcBQAT/W8mOTQZANe84RUfy4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5wDBHD2+GECGONbFbQQhQJc5XRYTmwVAmwMEc/T4CEDVPh2PGSgOQMbctYR8sCZAzQaZZOTsBEB0mC8vwP4ZQDvfT42XrgFAn6ut2F+WG0DTTWIQWLn+P/n3GRcOhAZAvTWwVYJF5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"smg6OxmcDUAFo5I6AZ0gQAFNhA1PjydAApoIG56eB0BVpMLYQhAQQKUsQxzrIiZAm/7sR4oIAkDk9zb92e8aQGNi83FtqABAW5nwS/3cGkByFva0w98BQOaRPxh4rgVA38K68e5I4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LLzLRXyHEkB3vp8aLz0eQJZ4QNmUqwBAHaz/c5hvBEDA7J48LBQRQN6Th4VaMyZAqyFxj6UPA0BXJvxSP48XQNEi2/l+6gFAI2dhTzvcGECif4KLFTUCQKIL6lvmtAJA8S+Cxkyi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HlA25QpPGUDxaOOItdggQA3gLZCg2BdA9UpZhjiWAkDd6jnpfYMQQNc07zhFxyZA+RQA4xl0A0AL0oxF05kbQBzO/GoOkAFA/WoOEMwRHUB5AfbRqav/P034pX7elARAwD+lSpQ95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ob5lTpdFFkCJeyx96OIeQK8I/reSnQ1AKuPfZ1x4AEAmNh/XhsoIQGZmZmZmBiRA/U0oRMDhCED67evAOaMaQFkXt9EAngFAmSoYldQpGkBDHOviNhoCQAyTqYJRSQRATpgwmpVt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OPOrOUDQG0Dqymd5HpwhQCSX/5B+OwhAHhuBeF3/AUDl8h/Sb58LQE6c3O9QxCNAxHdi1ovhBkC2vkhoy7kbQEmil1EsNwNAfzDw3HtYGEC1MuGX+nkBQCU7NgLx+gNAYqOs30zM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"83FtqBgnF0BV2XdF8M8gQAN4CyQonhhAh6dXyjJEAEBcWg2Je2wOQKAaL90kRiVAdCSX/5D+BkC77UJznUYcQMhBCTNtf/k/NSkF3V7SG0C+amXCL3X+PwKaCBue3gZA0HzO3a6X3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TWcng6PEFEB4YtaLoVwcQNRIS+XtiA9ADOpb5nTZBEA3iUFg5VANQF8pyxDHOiZA6bevA+eMAEBZ+tAF9S0aQO1Hisiwivw/9+Rhodb0GEAId2fttksAQMf0hCUeUARAzPCfbqBA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v2A3bFvUBUB7a2CrBIseQFDCTNu/Muc/9ihcj8J1/z9WmpSCbu8HQGjon+BihSNATwZHyavzAUDB/1ayY4MbQFdD4h5LXwFAdXYyOEoeGkDhQEgWMAH/P8Qlx53SgQNAhJohVRSv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jt9sc2O6BkCYTBWMSmocQP4rK01Kwfc/e0563/ja/j+693DJcecHQJ7vp8ZLNyRAi+B/K9kxBkCc+dUcIFgZQBFTIoleBgpAt3pOet/YG0CsqME0DB//P9/98V61sgNA8+fbgqW64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dxVSflLtAkCpwTQMH2EhQJlnJa34Bu4/MCqpE9BEBEAU0ETY8PQKQJhMFYxKCiRAOq+xS1QvB0BiodY07/geQGVwlLw6x/U/4iNiSiTxGUABpDZxcv8AQFIKur2kMQNAwhN6/Ul84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A3gLJCi+AEAqxvmbUKgXQPAzLhwISfY/f2q8dJP4EUBHrMWnANgHQMNkqmBUsiRAtI6qJoj6CUCE8GjjiDUcQCuHFtnOd/A/xqcAGM8AG0A26iEa3QECQEcDeAskaAVANBDLZg5J5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aam8HeE0CEDizK/mAIEfQMpOP6iLFOo/N2xblNmAEECfceFASBYRQPYoXI/C1SZAnG1uTE+YA0A1JO6x9KEdQF3cRgN4ywdAvp8aL90kHED5Zpsb05MBQKMBvAUSVARAaEC9GTVf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XcR3YtZLAUDBHD1+b7MfQEBQbtv3qOc/gpAsYAK39D89RKM7iF0BQDm536EocCJAiXssfehCCECPjUC8rt8YQJI/GHjuPfs/9zsUBfqEGkCIug9AapP/P+I7MevFkAZAa2EW2jlN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FHmSdM2kA0B+HThnREkbQBpR2ht8Yd0/h78ma9RD+D+Vmj3QCgwEQHv3x3vV+iJAJAuYwK27/z9yUMJM298bQFlRg2kY/gFA/N6mP/vRGUDBxYoaTIMEQGcPtAJDFgdAG0gXm1aK5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d/NUh9wMBEAC2evdH+8dQIoBEk2giN4/PKWD9X8O/z+UE+0qpDwGQKT8pNqnQyJAtOVciqvKBUAEIVnABO4bQF1txf6ye/o/2Ls/3qs2GkACt+7mqQ4CQCxIMxZNpwhA/686cqSz6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qAAYz6AhAkC1bK0vEnocQNS3zOmyGAZAL4uJzcd1A0Bbsb/snrwHQIMvTKYKhiRAV+wvuycP/j91q+ek980WQNI1k2+2uQNAwyreyDwyGkApBd1e0hgCQNRIS+XtyAVAtVTejnDa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"avZAKzAkBUCp9ul4zCAaQFluaTUkbvQ/LEgzFk2nAUDm6PF7m34KQALxun7BHiJAiGNd3EYDBEAna9RDNFoZQJeL+E7M+vo/tHbbheZ6HEB3+GuyRj3+P9NNYhBYeQdAuFm8WBii5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"atlaXyR0C0BaEqCmli0eQCV1ApoIm/0/LSEf9GwWAkAX2c73U2MGQPaX3ZOHpSJAVfZdEfxvBkBXeJeL+C4ZQA/uztptl/w/gH106sonHUB2/YLdsG3/P3KndLD+zwZATGvT2F6L5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfBL/bzpCkB9BWnGorkgQLgjnBa8aPo/pgpGJXWCAUAKgPEMGjoHQAAd5ssL8CNAtHbbheY6AUD6YYTwaIMZQIofY+5awv4/FjCBW3fTHEC6oL5lTpcAQO/Jw0KtaQZAgSBAho6d5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eTvCacELAUBcd/NUh7wbQDmc+dUcIPM/m3KFd7mIBUB2cRsN4G0LQFdgyOpW7yNAh22LMhtk/j/3Bl+YTJUVQC7iOzHrBQlAs7W+SGgLHEAKur2kMdoAQJp3nKIjeQZA2GSNeojG4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Sino9pJG/j88ZqAy/h0dQC1gArfu5vI/9fOmIhWGBECzKVd4l4sLQFQdcjPc8CNArK3YX3ZPAEBS8uocA/IUQD7L8+DuLAdAQQ5KmGnbG0A4EJIFTOAAQD7o2az6HAZAFQFO7+J94T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6iEa3UFsBkDOpbiq7AshQHB5rBkZZOo/uOnPfqTICkA4EJIFTKAGQIqw4emV0iRAzlMdcjPc/T/DKt7IPPIWQCgK9Ik8CQNAgsr49xmXGkAzp8tiYnP+P33Qs1n1uQRATU7tDFPb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uvdwyXGnBEChZ7Pqc6UgQLhc/dgkP+I/IEHxY8ydC0B5WKg1zbsGQMPTK2UZwiRA7/54r1oZ/z+Ss7CnHZ4WQHfbheY6zQJAyAxUxr8PGkDUQzS6g1j+PwvSjEXTWQVA9FFGXACa4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5dU5BmSv+T8qkUQvo/ggQJMANbVsLfU/iSmRRC/jBkAt7GmHvyYMQLfRAN4CSSRAVDpY/+fwBkDc14FzRpQbQDNQGf8+YwBAL/oK0ozlGUArE36pn7cAQG3n+6nxUglAnN1aJsPx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uwopP6n2CEC0Hykiw+obQP2fw3x5Ae0/f4eiQJ8IFEAJFoczv5oIQH15AfbR6SNARuuoaoKoBEAh5SfVPv0YQOnxe5v+7P0//+xHisiwHEBwtrkxPWECQGKE8GjjyARAUDdQ4J183j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M/lmmxuTDEDjUwCMZ9AVQOjAcoQMZOA/NLqD2JniEEDWrZ6T3vcOQH4dOGdEiSZAYLAbti0KBkDCEg8om5IdQGwE4nX9AgZAu9Vz0vtGHEBgzQGCOXr/PxKI1/ULNgRAJLcm3ZbI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZJKRs7CnCEDBxYoaTNMgQHfWbrvQXPA/jswjfzDw8z8/HY8ZqEwDQKeufJbn8SJAXMmOjUA8CUAep+hILt8aQMvbEU4L3gBAAIxn0NA/HUCjHqLRHcQBQFX2XRH8LwZA845TdCQX4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OC140VfQBEB7FK5H4ZocQDY9KChFK9A//vFetTLh+D+7Jw8LtWYHQPWc9L7xtSNAb/CFyVQBBUDX+iKhLWcdQMMN+PwwwgVAmggbnl4JGkADCYofY64BQHdn7bYLDQZATbwDPGnh4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MlpHVRNEB0DkSdI1kx8gQDhlbr4R3dM/5zqNtFTe9T+0yHa+n5oLQLR224Xm6iNA8Nx7uOS4BUChuU4jLTUdQCsYldQJaAVAlGqfjscsG0AuxVVl39UCQDXvOEVHMghAlj0JbM7B3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U1xV9l2R/D+uKvuuCB4fQMIv9fOmYhFAZMxdS8hHBkBf7/54r5oIQMRafAqA4SNAXkvIBz2bBUAwEtpyLoUaQGOcvwmFiPk/e0ljtI4KG0C1T8djBqr+P6GEmbZ/ZQNAjup0IOup5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rd12obnO/T+eDI6SV3chQDAS2nIuRRtA7FG4HoUrBkDGM2jonyAHQAOy17s/3iNAdbD+z2E+BkCOI9biU8AZQHmSdM3kG/s/kWEVb2Q+G0D5Zpsb05P/P61p3nGKjgRA6DHKMy+H5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BK3AkNVtBkDcnbXbLhQgQDRnfcoxWdo/TihEwCFU+j/hQEgWMAEIQKFns+pzVSNAXtcv2A1bAEDQuHAgJOsZQCegibDhaQNAdonqrYEtG0BfJLTlXEoAQCHIQQkz7QRAeNDsurci3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uDtrt12oDkByxFp8CiAhQIPdsG1R5gNAdZMYBFbOBkBbttYXCS0PQDsBTYQNTyVABmSvd3/8B0BuNIC3QIIaQJ0ui4nNR/4/k6mCUUndF0B2VDVB1H0AQOEoeXWOgQNAGqa21EHe4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vg3WpIBZor+qYFRSJ6AaQFDHYwYq4wBAS8gHPZsVAUDzAuyjU1cLQGFUUiegaSVAsRafAmC8BEAdrP9zmG8bQOAtkKD4MfQ/SFD8GHOXGUA4Sl6dY0D/P6A3FakwdgJAryXkg55N4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LEfIQJ7d6D/pYP2fw3wRQGwhyEEJsxpAn6ut2F/2K0CmCkYldcIPQHE9CtejkCVAqbwd4bTgCUDohxHCo60cQK36XG3Ffvs/J2vUQzS6FUAqUmFsIUgBQIfEPZY+9AZAwhTl0viF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T135LM8D97/jGTT0T/AeQPfpeMxAJQ1A9KYiFcaW+T8bZJKRs3AJQB04Z0RpzyRAUwWjkjpBBEAKhQg4hKoYQBfUt8zpMvs/GoaPiClRHEC4zOmymBgAQOjewyXHHQVAEDy+vWtQ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VTNrKSDt6L/vchHfickhQAT/W8mOzQ1AIlSp2QNtBkB3LSEf9OwHQEOtad5xCiRABthHp668A0C3nEtxVXkZQF5ortNIS/o/ttYXCW2ZG0D9E1ysqMH+P8nlP6TffgdAfotOllrv3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E0n0Mopl5b91djI4Sl4dQB+duvJZ/hlABd1e0hit+z+NeohGd1AKQO/mqQ65aSNACKwcWmQ7BEDxY8xdSwgaQDSitDf4ggFAm6xRD9HoGECsOUAwRw8CQHBfB84ZkQdAH9lcNc8R5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kpGzsKcd0b9UHXIz3AAcQGvUQzS6AxxAADrMlxfg+j9YkGYsmo4LQNWVz/I8WCNAcayL22iABEBW1GAahg8aQEUqjC0EuQBA1GAaho+IGUANbJVgcfgBQG8Sg8DKIQdA0Chd+pck5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uOUjKelh7D/qymd5HvweQEc9RKM7iAVAHlA25QqvCkCXkA96NisLQFJJnYAmIiVAs7W+SGjL+z9P6WD9n2MZQCsTfqmft/U/l8XE5uMaGUD8NVmjHiIDQKkT0ETYcAZA04OCUrTy5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xjNo6J/gA0CuR+F6FG4kQA7aq4+HPu8/ZDvfT41XKECKPEm6ZnIIQJNX5xiQzSNAa2XCL/WzBUAyA5Xx73MYQIVCBBxCFfw/i1QYWwiyFkB8YTJVMKr9P87HtaFi3ANArd12oblO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ODKP/MFABkBSSZ2AJsImQMU9lj50AQdACi5W1GCKIkDrkJvhBrwFQLmNBvAWiCRA+wW7YdviBUBDBBxClXoYQE2h8xq7xPQ/uECC4sfYFkBvu9Bcp5H+P/ilft5UZANAVS5U/rW85D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K97IPPIHB0DKMsSxLu4pQBYYsrrV8/s/d0oH6/9cGkAmjdE6qloOQJ0Rpb3BdyZAr1+wG7ZtAEDwhclUwWgaQDT0T3CxIgJAOe6UDtYfHEB1djI4Sp4BQPonuFhRwwZA3Vz8bU8Q4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UTHO34TCBUBHcvkP6dcrQB+eJcgIqOA/bef7qfHSJEDvOEVHcjkOQN0kBoGVQyVAfPKwUGsaBED1oQvqW0YYQPD5YYTw6AFAGt1B7EzBGUCygAncutsAQAX6RJ4kXQRAjPfj9sun4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QrKACdw6BEBCYOXQInstQGVTrvAuF/Y/K97IPPKHFkC3Yn/ZPXkPQE3zjlN0pCRALCtNSkH3A0BuowG8BZIZQC3Pg7uz9v8/iGh0B7GTGUDPFDqvsYsBQMpskElGDgVAtK7RcqAH4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3eo56X3jAUDSxhFr8Sn4P+CD1y5tOOk/98ySADU1F0Ctad5xik4GQFCNl24SoyVAoaF/gouV/j/B4nDmV5MZQEaVYdwNou0/9+Rhodb0FkDMf0i/fZ39PxgJbTmX4gRA3iBaK9oc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mN2Th4WaCkAGR8mrc2wgQLk3v2GiQdo/gSbChqdX+D+6awn5oOcMQLpJDAIrZyZArMq+K4K/A0AP7s7abdcdQHFV2XdFsAVACJRNucI7H0AYJlMFoxL/Pzj4wmSq4AdApWq7Cb5p5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rtNIS+XtBEDQm4pUGHsgQI2ACkeQyuM/yCQjZ2FP+j88a7ddaK4LQNc07zhF5yZAtMh2vp+aB0D/z2G+vMAeQMxAZfz7zAZA9UpZhjhmIED+KytNSgEAQF3hXS7i+wdA4o+iztxD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4UBIFjDBC0CHFtnO97MjQIh/2NKjqeg/lNkgk4xcAUBmvRjKiTYOQMzuycNCLSVAwARu3c3TB0Clg/V/DpMeQGmM1lHVBP0/HHxhMlVwH0Amx53SwXoAQFR0JJf/EAdAjGZl+5C34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N3Fyv0MRAEAyWkdVE4QeQPWEJR5QdgBAbZBJRs5C/T+zJEBNLZsPQN/gC5OpwidACRueXinLCEAFUfcBSC0dQMlZ2NMOPwRA8iTpmsnXGkDEmV/NAQIAQIF4Xb9gtwVA6nk3FhQG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fT81XrrJ/j9slWBxOIMgQICCixU1WBZAL4uJzcf1CkAyA5Xx73MRQFMFo5I64SVA7Z48LNRaCUD1nPS+8dUaQBtkkpGzcABAUvLqHAMSHEDTwfo/h/n/P6m8HeG0YARAsmfPZWqS5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L4Zyol1FC0DN5JttbswcQJkNMsnImQFAtVTejnBaBUALJCh+jDkOQMNkqmBUkiVARS+jWG5pBUDB4nDmV9MaQICaWrbW1wFAavZAKzAEHkBYc4Bgjt4AQD24O2u3nQNAS65i8ZvC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PGu3XWiuC0BlNsgkIxchQPWhC+pbZuk/Ag6hSs2e+z8RGVbxRgYRQMWPMXctgSZA5iK+E7MeBEAcJa/OMQAcQFBwsaIGUwhAJ6CJsOEJHECFsYUgB+UBQCqpE9BEGAdAGVQbnIh+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iQeUTbmCCUAjhEcbRyweQM3MzMzMjAdAww34/DACBkARqtTsgdYKQJ+rrdhfViVAkSxgArfuBUB5HtydtXsaQGt9kdCWMwVA/IwLB0KyHUAb9RCN7mABQP+ye/KwUARAFEIHXcIh4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SPlJtU/H+T8lQE0tW0sbQPOTap+OR/Q/3J212y60BUBBZfz7jMsIQOrnTUUqzCNA+mGE8GhjBEAq499nXLgaQMHKoUW2cwdA24XmOo10G0AlzLT9KysBQJW3I5wW/ANAwR9+/ntw4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kIMSZtp+A0DIQQkzbX8gQECk374OnAhAwhIPKJty9j9MT1jiAeULQEi/fR04JyRA2V92Tx6WB0A9m1Wfq40dQEgzFk1np/8/lNkgk4zcG0D/7EeKyHADQJDaxMn9jgtASIjyBS0k6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kpGzsKcdA0Az+WabG7MbQFggelImNco/rP9zmC8vAUBnmxvTE1YEQJ5eKcsQtyFAiuWWVkPiAkDsEtVbA7sZQCtNSkG3lwFA5ldzgGAuG0CtTPilfl79P2LWi6GcqAFAuB6F61G44D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BvUtc7qsA0BYkGYsmt4gQCTtRh/zAdU/VB1yM9yA9D9DrWnecUoDQI6vPbMkcCFA9Ik8SbrmAUAhzVg0nR0bQLjpz36kCABAVU0QdR/AGkAi/fZ14Bz9P7O1vkhoiwJAAvG6fsFu3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eo1donpr/z/s3R/vVYseQJikMsUcBNA/DhXj/E2o8j/LZ3ke3J0EQC+jWG5ppSFAavZAKzBkAUA3jliLTwEbQGKh1jTvOP0/7rH0oQvqGUC9UpYhjnX+P3LEWnwKgAJACrq9pDFa3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ujE9YYlHB0CcFrzoK4gdQAmM9Q1MbtY/xOv6BbuBG0CbcoV3uQgKQIj029eBsyRAbJVgcTgzBUC/Q1GgT+QYQJn1YignmgNAIzKs4o3sHECkqgmi7sMDQPWc9L7x9QhAGhU42QZu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HCWvzjGg/j8yVTAqqXMgQM1Xycfuguo/Sl6dY0B2DkCUpGsm3ywEQBmto6oJsiFAlfHvMy4cA0A/NV66SWwYQLb4FADjmfY/v4I0Y9EUGUBd/kP67Wv8P7nCu1zE9wRAeCgK9Im84T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dxVSflLNEUDejnBa8NIhQIfEPZY+dPg/4PPDCOHR+T+ASL99HZgTQC7/If32FSZAhlW8kXmkB0DghEIEHAIdQIPdsG1R5v4/EhQ/xty1HEDsL7snD0sCQCdO7ncoigdALpJ2o4955T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yr68APtoAkAZBFYOLfIeQHzysFBrGvo/kpGzsKddCUAeUDblCm8RQIenV8oyhChAj8cMVMb/BkDwbfqzH2kbQAspP6n2af4/3o5wWvDCGEAMdsO2RVkBQG05l+Kq8gVAL6NYbmk13j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uVM6WP/nC0D2XRH8b6UdQFcm/FI/b/c/cAhVavbAA0BdiqvKvisMQHYyOEpe3SNAGHjuPVxyA0Acti3KbLAZQDgVqTC2EPw/kuhlFMstGkBTliGOdfH+Pwfr/xzmCwRANWCQ9GmV5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GmmpvB3hBEDPLAlQU7sgQLcLzXUa6fI/H0sfuqB+A0D1EI3uILYKQEZfQZqx6CNAX9IYraNqA0CygAncuhsZQJlk5Czsaf4/5QrvchEfGkCWBKipZev+P00ychb29ANAmQ8IdCbt5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5CzsaYd/CEDRV5BmLBoaQAQ8aeGyiuU/SddMvtlmAkAdlDDT9m8IQJCg+DHmriRAUn5S7dOxAkCm7V9ZaZIaQExxVdl3Rf8/2QjE6/qFGkBaDYl7LD0AQD0P7s7arQNAeLmI78Ss1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x0YgXtevAEBybagY5z8jQLtE9dbAVvk/CqLuA5Ba/z+L4H8r2fEMQM4ZUdobvCVAKqkT0ERYBkBjC0EOShgbQEloy7kUlwBANbVsrS/yG0DjGTT0T/D+P5BOXfksTwJATnrf+Noz5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Rz1EozsICEAzbf/KSpMOQOXuc3y0uOM/fXkB9tHJF0C+2ebG9MQIQCzUmuYd1yNA3UHsTKEzAkCjO4idKRQaQK9amfBLvQBASS7/If22GUBVMCqpE1D9P3SYLy/AvgRA4nMn2H+dyz8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j41AvK6fDEDJq3MMyN4NwGZmZmZm5vU/l/+QfvsaKkCDwMqhRbYJQAu1pnnHySRAGM+goX+CBkBCCTNt/2obQIYb8PlhBPc/BOJ1/YJdGECbVZ+rrRgDQERRoE/kyQZAsirCTUaV6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ba0vEtry+j+R8pNqn44VwDOny2Ji8/M/BTQRNjztM0Drbp7qkNsKQN0HILWJcyNA9UpZhjhWBkCN7iB2ppAaQNS3zOmymPU/dOrKZ3keFkBegH106soBQHEDPj+M0AZA95MxPsze4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gH106sqnBUCbWrbWF4kQwFw+kpIeBu0/YviImBLJIEAUs14M5UQKQKyL22gAzyRALT4FwHgGBUDz5QXYRwccQIkpkUQvI/Y/ppvEILBSFkB/+zpwzggCQAfwFkhQ/AdA0jqqmiDq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CCC1iZM7AkCiKNAn8mQFwI1EaAQb1+0/bHh6pSxTI0CUwVHy6pwIQMSxLm6jISRAJCh+jLkrBUDV7IFWYCgdQH8TChFwiPE/Dr4wmSq4F0Dt9e6P92oCQO4ljdE66gdA5SZqaW6F4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"otEdxM4UDEAxCKwcWsQkQP0TXKyoQf0/GoaPiCmR+z+LVBhbCHINQI/k8h/SryZAVYfcDDdg/D/8AKQ2cbIYQAQ5KGGmbQFAeR7cnbW7HUA8iJ0pdF4BQBMPKJtyhQRAZED2evfH4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qmBUUieg+j82donqrUEaQHFzKhkAKu4/48eYu5ZwGUCdhT3t8DcQQNXnaiv2tyVAvR3htODF+T8mx53SwToYQF+1MuGX+vk/LEgzFk3HF0BlU67wLpcBQGSSkbOw5wJAqfsApDbx5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dOrKZ3leBECpwTQMH3EiQJNX5xiQfQBABK3AkNV9IUDWrZ6T3vcMQPT91HjpxiVAzczMzMyMAECZ9WIoJ1oZQAltOZfiKvE/2/l+arw0GUDDtkWZDbIAQCNnYU87/ANAcTrJVpfT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KCzxgLIpDkBseHqlLKMhQE5FKowthPk/DAIrhxY5FEDghEIEHIINQKhXyjLE8SRABTQRNjy9AEBr1EM0usMYQLNdoQ+WMes/ibX4FACDGkCj6exkcBQCQOjZrPpcLQRAqmVrfZFQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yy2thsR9AUDTMHxETMkaQEbrqGqCKAZApMLYQpCDCkCHokCfyFMNQHctIR/0LCZAlLw6x4CsBkB4nKIjufwaQEop6PaSBgJABVH3AUjNFUAhWcAEbt39P9GRXP5D+gVAXCGsxhLW4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TIkkehkFAkDfiVkvhvITQJ30vvG1Z/U/3uUivhNTGEDcRgN4C2QOQPjCZKpgNCdAf8Fu2LboBED9h/Tb12EcQAVu3c1THfU/NsgkI2chG0CYo8fvbXr+P3icoiO5PAJAzApFup9T4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bxKDwMqh/z9gH5268jkfQMy0/SsrTf4/OiNKe4PvAUB7Tnrf+NoHQFHaG3xhciRAeJyiI7k8A0BolgSoqUUZQKmkTkAT4fs/KSLDKt7IF0CQ96qVCX8EQKrx0k1ikAhAFymUha+v4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B7Ezhc5rAkDzWZ4Hd+ccQNwr81ZdB+E/VfZdEfxv/j9xGw3gLZAJQLraiv1lNyRAL6NYbmk1BkB3EDtT6JwaQAOV8e8zLv8/IjfDDfhcGEDFyf0ORUECQOm3rwPnTAtAHmtGBrmL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"utqK/WV3DkBxcr9DUaAjQMUbmUf+oAFAud+hKNAnCECKWS+GciIFQAGHUKVmPyNA/bypSIUxCEBJ9DKK5XYbQMvW+iKhLQVAFt7lIr6zGkABwRw9fu8DQHR7SWO0DglAIJijx+/t5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"foy5awn5F0AFwHgGDd0fQFIP0egO8iFAnPnVHCDYC0AQO1PovMYNQCcxCKwcuiVAYr68APto9T/zVIfcDHcYQKQ2cXK/QwBAiGNd3EYjGkD/7EeKyLD/Pzm536EoEAVAa9JtiVxw5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c2iR7Xx/GkCxM4XOa+wXQAw89x4uORdAcsRafApABUAhByXMtL0NQMuhRbbz/SVAJLn8h/Tb8T+emPViKKcWQMRfkzXq4QFA6fF7m/4sG0ATLA5nfjX/P13hXS7iuwRAkSxgArdu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+KqVCb+UE0DQ1VbsLxshQFPQ7SWNUQhAR1UTRN2HBUCh+DHmruUIQEATYcPTiyRAwFsgQfHjDEBPQBNhwxMfQN/98V61svs/2c73U+NlF0DYKsHicCYBQMU9lj50QQVA/kRlw5pK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P28qUmFs/D+6awn5oGcaQEG2LF+XYeE/1GAaho9IAEClSSno9pIJQFn60AX1LSNAbFuU2SATAEDn49pQMa4YQLnCu1zEd/8/7kJznUbaGkAQejarPlf+Px2PGaiMvwVACmmNQSeE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xVVl3xXBA0CzzY3pCascQH3Qs1n1OfU/Io51cRtNBkAXSFD8GHMGQF5ortNIiyNAqIx/n3HhB0ABh1ClZm8aQKH4MeauJQFA/tR46SaRG0APnDOitPcAQC7/If32NQRAEOz4LxCE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gy/dJAaB+z+w5gDBHB0ZQAXdXtIYLeg/pHA9CtcjBUA8TtGRXH4HQM9m1edquyJAlbcjnBZ8B0Dl8h/Sb58aQK4NFeP8jQFAyatzDMgeG0DJAiZw664AQD90QX3LnARAxeV4BaKn5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hlW8kXnkAEAIjzaOWKsfQDblCu9yEQlAUYNpGD7iBUDe5SK+E3MGQAhyUMJMqyNAr5RliGPdBEDuWkI+6NkcQFGlZg+0QgBAK8HicOa3GkA2H9eGirEBQCEHJcy0vQRA1h2LbVJR4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xqLp7GTwBEDJsIo3Mu8hQCB+/nvw2tQ/NuUK73IR/T/CL/XzpmIMQEYldQKaqCVA6Ugu/yE9BUBK0jWTb7YbQP5IERlWsQBAFt7lIr7TGkBAMEeP31sBQFyPwvUoHAVAvqHw2Tq45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iSmRRC/jBECif4KLFdUhQPzepj/7EfY/3BFOC140B0DoMF9egH0KQNnO91PjxSRATx4Wak3zBEAMHxFTIqkfQNMTlnhAmQFA0SLb+X7qGUBS1QRR94EBQNV46SYxCApADwu1pnlH5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S6shcY+l9D+DaRg+ImYbQFgczvxqzgtAwD46deVzAkDbiv1l9yQHQAisHFpkmyRAqKlla33RB0CRCmMLQQ4cQJHQlnMpLgBAQuxMofN6F0Dv/nivWhkAQEMEHEKVWgVAaLJ/ngYM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yxDHuriNGEBDHOviNoogQAdfmEwVDA5Abt3NUx3y8T9/9iNFZBgOQCVdM/lm+yNAzXUaaak8A0Df/fFetTIcQMRCrWne8fs/rWnecYruGkA1Bwjm6PH+P0Fl/PuMywNA+zvbozfc2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9E9wsaLmF0BbCHJQwqwfQGzsEtVbwwtA7KNTVz7L8T9eukkMAqsNQOXQItv5viRA73IR34kZBkDAWyBB8eMaQJCIKZFErwBAUg/R6A7CHEDZd0XwvxX9P88sCVBTSwJAnMJKBRVV2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qDrkZrgBEkANN+Dzw2gXQLJoOjsZ3AtARkJbzqU4DUCILqhvmVMPQDEIrBxaRCRA7PoFu2Hb/z/FA8qmXGEXQG40gLdAgvM/9Zz0vvHVF0AJOIQqNbsDQKIL6lvmdApApFTCE3r95j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wB8jRQmfmr/Qm4pUGDsYQGRA9nr3hwNAY5y/CYWoEkDsEtVbA9sQQDvfT42XriZAesISDygbAkBDyk+qffoaQKsJou4DkPw/+Um1T8djGkCvCP63kp3/P0sfuqC+ZQRApdjRONRv4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bd1e0hiNEED5MeauJcQlQJF++zpwTgVAvLN224UmD0Crz9VW7A8QQMgHPZtV3yZAh4px/iYUBEAbu0T11iAZQJhp+1dWGvs/YhVvZB65GEDCacGLvoIAQItx/iYUIgVAQrXBiejX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EHUfgNQm+T8bKsb5m7AWQDV7oBUYsu8/DY6SV+f4FkBMjjulg3UOQA4tsp3vByZAliGOdXEb/z8/V1uxvywYQHwsfeiC+vg/mN2Th4VaGEClSSno9hL+P4/HDFTGPwNAmUuqtptg4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"86s5QDCHDUD8xteeWVIBwH506spnefc/DB8RUyJZI0Bos+pztdUIQLTlXIqrqiNAhJ7Nqs9VBUAIjzaOWOsZQLUaEvdYegBA3LqbpzpEGkDYtiizQab8P6lNnNzvEAVA1VqYhXbO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iQeUTbkiEEAHtkqwOFwBwJbs2AjEa/8/5BQdyeUfMEAX2c73U2MKQIRHG0espSNAy/Pg7qwdA0BZhjjWxc0aQKA3FakwNv8/t5c0RutIHUCL/WX35GH6P8SxLm6jQQRArkUL0LYa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YY4ev7cpDUBWKxN+qR8JQAOy17s/ngVAWYtPATDeFED1SlmGOLYQQO58PzVeuiZAEoPAyqGFCkBMN4lBYMUcQDdsW5TZIANAr+sX7IbNGUD9MEJ4tLEDQE2h8xq7BARAcXSV7q6z2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bg39E1xsCEB+jLlrCbkfQBi0kIDRZek/MbH5uDZU+D/3x3vVysQMQPW+8bVnViJARYE+kSfJ/T+p9ul4zAAVQFmGONbFLQNAwFsgQfHDGkAlQE0tW+sEQLWmeccp+gZADi+ISE274T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kElGzsKeCkCwOJz51VwbQLGnHf6abAVAKsb5m1CIAkCndLD+z6EHQDVj0XR24iJAr3d/vFetAkDElEiilxEWQAVpxqLpbPQ/0egOYmdKGUDfN772zBIBQEkRGVbxhghAqYb9nlgn4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IZOMnIV9DECs4o3MIz8eQPW+8bVnFgBAS7A4nPlVAUCRLGACt+4IQEljtI6qRiNAL4Zyol3FAkDPMSB7vRsbQIdQpWYPtP8/Tfilft5UF0BYrUz4pX7/P2a9GMqJdgdAEYqtoGmJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5pE/GHguA0C6MT1hiWccQOdyg6EOK9U/7C+7Jw9rE0BsJt9sc2MAQNrmxvSEpSJA6bevA+fMA0B8uOS4U3oZQKyQ8pNqn/k/DkqYafvXGECBBMWPMXcBQGowDcNHxANA499nXDiQ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1edqK/bXAUCKAn0iT5IfQHrHKTqSS/w/AoI5evweGkD35GGh1nQGQEc4LXjRZyNACObo8Xub/z+TUtDtJU0ZQBRcrKjBNPo/bRyxFp9CGUBv8IXJVEEDQMHKoUW28wRAwOrIkc7A2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PtAKDFmdFUDBqKROQHMdQME5I0p7gwdAfjUHCOboBUBNZyeDo+QPQG3F/rJ78iZA3rBtUWaDBUBjYvNxbcgYQOik942vvfM/B+v/HObrFUC7Cik/qfb/P9cv2A3bVgZAUl+Wdmou6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OnXlszzvFkAEc/T4vR0jQG5MT1jiARpAHVpkO98PF0BhMlUwKikMQPLSTWIQeCRAB7Ezhc7rAECmYfiImFIaQPQ3oRABB/U/LbKd76cGFkCOHr+36Q8CQDrMlxdgXwZAUKvoD8084z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aOif4GKFCUBHrMWnALggQEYldQKaiPU/bqMBvAWSFkDcgM8PI8QKQG1Wfa62AiVA9wZfmEzVAkBYkGYsmo4XQExxVdl3xfk/5nRZTGx+GUA/jBAebRz+Pw4tsp3v5wRAvhJIiV3b5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vp8aL91kBkDpQxfUt6wdQPrt68A5I+Q/QBh47j3cA0CbAwRz9PgFQFXBqKROACVAEJIFTODWBEBYObTIdn4bQIyhnGhXoQNAwRw9fm+TGkCK5ZZWQ+IAQC5zuiwmdgRArizRWWYR3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f7xXrUy4AkAWMIFbd2MgQN1e0hito9o/Bg39E1xsBUB72uGvyVoGQDm0yHa+fyVARpkNMsnIBECQgxJm2j4bQAg9m1Wf6wVAGJXUCWgiGkC/ZU6XxYQAQMvbEU4LngRAGoo73uS33T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PE7RkVw+CEDo2az6XE0gQLBwkuaPadg/3+ALk6nCAEBtHLEWn4IFQPRsVn2uFiZAZ0Rpb/BFBECU+x2KAr0bQHugFRiyegZARuuoaoKoGkA1Bwjm6HEAQIrIsIo38gNANsmP+BVr3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WvW52oq9CEC7YduizGYeQN6Th4VaU/I/lbcjnBY8GEDizK/mACEQQESoUrMH2iNA7+GS404pB0C2+BQA41kYQAltOZfiKgRAM/lmmxsTH0BbCHJQwkwAQPAzLhwIiQRAmDWxwFd04z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SkbOwp62BkBTkQpjC7EgQOntz0VDxu0/tr5IaMv5D0AlBoGVQ4sNQAjm6PF7myNA1SZO7ndoB0Ak1uJTAEwaQMLdWbvtggJAf7xXrUyYGkBwlLw6xwACQKA3FakwNgVA078klSnm3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aTUk7rF0BUBAh/nyAuwgQOjZrPpc7ek/RSqMLQQ5CkAHCObo8TsHQLn8h/Tb9yRAWTSdnQyO/T+vJeSDns0XQJ7qkJvhBv4/vOgrSDN2GUD5Tsx6MRQAQDbIJCNnIQRAam0a22vB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CObo8XsbBUCcM6K0N1ggQH4a9+Y3TO4/XcR3YtbLB0DsL7snD8sHQD0K16NwXSVATIkkehlF/T/kDwaeew8YQIxn0NA/AQBAB3x+GCHcF0B81cqEX2r/P+bLC7CPDgVAUgslk1M74T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tMh2vp+aAkB+dOrKZ/kbQMMstHOaBeg/ZY16iEZHIUAgQfFjzN0MQKfoSC7/4SNA9Zz0vvF1AUDGounsZPAYQMO2RZkNsv8/cVrwoq8AFUDa4a/JGvUAQNGRXP5DOgVAzCcrhquD4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2c73U+NlBUD/CS5W1OAdQMu5FFeVfew/3NeBc0bUHkAUP8bctQQPQKgAGM+gESNASFD8GHMXAEA9YYkHlG0ZQBKgppat9f0/Dvj8MEJ4F0A0SwLU1HIAQCE82jhirQNAtU/HYwYq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QZ/Ik6TrCUCl942vPZMdQD1IT5FDROE/Q+IeSx+aHEDxaOOItbgMQK3AkNWtLiNAApoIG55e/T8TfqmfN3UZQECH+fIC7P8/IO9VKxOeGECdEaW9wZcAQKCJsOHp1QNAjEgUWtZ94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ApoIG54eBkCHFtnO9/MfQKTH7236M/E/on+CixWVHkCk374OnDMKQAb1LXO6TCNAcvkP6bev/z9ZhjjWxa0ZQPsioS3nkgFA0gDeAgkKGUBl/PuMC0cAQIRkARO4dQRALNMvEW+d4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"38Mlx53S/j8xsfm4NrQhQFD/WfPjL+0/Tn/2I0UkAkDysFBrmvcEQLR224XmKiNATE9Y4gFl/z+1FfvL7mkZQAfTMHxETAVAS5NS0O0lGUACDqFKzd4BQKs+V1uxvwVArhIsDmd+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mN2Th4X6E0DhehSuRzEhQMaKGkzDMAdAiNf1C3ajFkCVtyOcFlwRQAIrhxbZbidAV3iXi/jOA0DnqQ65GU4cQG0csRafAvs/OKEQAYfQFkBKe4MvTCYAQJUrvMtFPAVAPWL03ELX4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sDcxJCcT4j8IlE25wlsZQCO+E7NeDPg/ujE9YYnHBUDtR4rIsEoGQE2EDU+vtCRABYasbvVcAkDA7J48LLQYQLPviuB/q/I/HQOy17t/FUDLLa2GxH0BQJnTZTGx+QVAV7H4TWEl5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YZgCiHHtsD/yDBr6J7gXQEDBxYoazAxAaoe/Jms0EEDGbTSAt4AJQFlpUgq6bSNARMAhVKlZBECGrG71nFQZQF1qhH6m3uc/8WPMXUvIFEBPkq6ZfDMBQJVgcTjz6wZAJCu/DMaI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GjIepRKe2z/b+X5qvBQcQEVkWMUbWQJAH4DUJk7uB0BolgSoqeUKQERMiSR6ySJAVrd6TnofBECy9KEL6lsZQC457pQOVvE/NsgkI2fBFEAfnbryWV4AQBh9BWnGoglA4GjHDb8b5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+KqVCb90GkB/9iNFZKghQFXejnBasBlAHtydtduuAkC8kXnkD0YQQDVeukkMYiZAImx4eqXsC0CJXkax3BIdQBFwCFVqtgBACty6m6caHEDOpbiq7LsBQI4ev7fpzwNAJh5QNuUK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3eo56X3jGEDg2/RnP4IhQPOOU3QkhyBA9P3UeOmm/j/HKTqSy/8JQJoIG55eqSVAyLWhYpx/BkDAJmvUQ1QeQCQLmMCtuwNAxHx5AfYRG0DD0ytlGaIAQLTlXIqrCgVA7pi6K7tg4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ucfShy4oG0CAn3HhQGgeQIGVQ4tsByJARS+jWG5p/D8GgZVDiywRQPkx5q4lBCVAGmmpvB2hBUAN/RNcrCgdQAzqW+Z0GQFAguLHmLu2FkBJnYAmwsYAQAqi7gOQmgVAAtTUsrW+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xOv6BbuhFkD2KFyPwhUbQIFDqFKzxwlA5ssLsI9OA0CiC+pb5rQNQKyt2F92ryVAZapgVFKnBkD0wwjh0UYbQGowDcNHRPI/SkG3lzSGFkBUVz7L82D+P4F4Xb9g9wNAECIZcmw94T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t39lpUlpBMBdxHdi1isiQKmkTkATASpA7iWN0TrqAkCloNtLGqMGQDqvsUtU7yNA3nGKjuRyAUAPf03WqCcYQHh/vFetzAJANlmjHqLRHEAo1T4dj1kCQIDxDBr6JwVAEr9iDRc55z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QZ/Ik6QrA8DmllZD4t4fQCntDb4wOTdAEce6uI3GA0AlWBzO/GoKQPCFyVTB6CRAhXzQs1l1AUA3T3XIzZAXQIAO8+UFmANAfh04Z0RpHEBt5/up8dIBQOXQItv5fgVAyXa+nxov5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X3tmSYAKIkCduvJZnocgQDeJQWDl0DJAqcE0DB8R/j80gLdAgqIJQAmKH2PuuiRAfm/Tn/2IBUDg88MI4TEbQGmM1lHVhPM/5ssLsI9OF0ASa/EpAAYAQAq6vaQxmgRAWp9yTBb33j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uRluwOdnGEC71XPS+yYhQM4ZUdobvDFAnIpUGFtIB0C6MT1hiYcOQFOWIY51ESRAyNKHLqhvB0DXL9gN2/YdQD9XW7G/LABAIy2VtyM8GkCyS1RvDez9PxUA4xk0NAZAYoGv6NZr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zhlR2hs8HkB8LH3ogroRQB2UMNP2rw1Aat5xio4kDEDRlnMprioKQCL99nXg/CdAp+hILv/hBEDy7zMuHOgbQGdEaW/whfk/qg65GW4AGEBE+u3rwLn9P8R8eQH2kQVA2jf3V4/74T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jcy0/SsLEkC1FfvL7qkmQGFxOPOrmRhAkst/SL+9KkA2PL1SlgEQQAH76NSVvyJALEgzFk3nCUCIug9AapMcQELsTKHzGvg/AHSYLy8gGEBhVFInoIkBQCSX/5B++wNALBA9KZOa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qIx/n3EBFEByio7k8t8kQABSmzi5fxBAxty1hHxwJEBZox6i0d0NQOY/pN++biVARN0HILVJCkABh1ClZs8eQFDkSdI1E/Q/x2MGKuPfFkBmvRjKiXYAQKg65Ga4AQRAjgJEwYwp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OGdEaW9w8z9miGNd3IYYQLjKEwg7Reo/W3wKgPHMHEDfwyXHnZIKQAaBlUOLLCRA0h3EzhQ69z91djI4Sp4VQGEaho+IaQFA/WoOEMzxGUB4KAr0iTwCQDrMlxdgXwZA8E4+PbZl5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GqN1VDVBEUAxCKwcWmT9P4TTghd9RRBAnu+nxktXGED1SlmGOJYJQBB6Nqs+lyRAc51GWiovAkC0q5Dyk8oWQGk1JO6xdPs/JLn8h/TbGkDowd1Zu60AQEJg5dAi2wdAJXfYRGau5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7fDXZI16EECRLGACt24fQCyC/61khwFA6j4AqU28HkBjuaXVkPgLQBaHM7+awyNAqvHSTWKQAkBuhhvw+cEbQBWpMLYQ5P8/sb/snjzsF0BTy9b6IiEAQALxun7BrgdA7NrebkkO4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wcWKGkwDBEAGu2HbouwbQMhBCTNt/xJAZ5sb0xM2GEBA2ZQrvEsMQBzw+WGEUCNAWi+GcqIdB0DNHmgFhswZQNXKhF/qpwBAxsTm49owFUCoUrMHWoH/P8tneR7cHQhACp+tg4O93T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o+nsZHBUBUDDgZAsYOIXQFInoImwIRdAEtpyLsX1H0Dg1t081aEPQPRPcLGi9iNAdqbQeY2dB0BWSPlJtQ8aQCJPkq6ZfP4/Ic1YNJ29FECm0HmNXWIAQM5THXIznAdACDpa1ZKO3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c4Bgjh6/AEA0nZ0MjtITQNv5fmq8dAJA5L1qZcLvGUBQx2MGKmMOQJT2Bl+YbCVA6KT3ja89A0DPZtXnaksbQGUBE7h1t/g/fsaFAyF5F0DRXKeRlgoBQBLCo40jlgpASBYwgVt33j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ONvcmJ6wBkDudygK9OkfQGhcOBCSBd8/xooaTMNw/z9HIF7XL5gGQJoIG55eiSJAOjsZHCVvA0AeFmpN844bQObo8Xub/gNAKCzxgLKJHUDKMsSxLm7/PzuNtFTezgRA7rPKTGl94D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fsaFAyHZBkCxxAPKppwhQBpQb0bNV9U/Jh5QNuVqEkAp0CfyJGkEQOIGfH4YESNACtejcD3KBUBpb/CFybQbQOj2ksZo3QFA19081SE3GUDVz5uKVBj7P7lwICQL2ARA7xtfe2bJ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZQETuHV3BUD2l92Th6UkQIRHG0esxd4/cv4mFCKgD0AWNZiG4eMIQBzr4jYaYCVAE2ba/pXVBEDDnnb4a/IaQJhp+1dW2gJAkbjH0odOGECgppat9cX9P9f6IqEtJwJA1o9N8iN+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZoNMMnLWA0BaKm9HOI0WQAdEiCtnb+U/Hv6arFFPAEBnLJrOToYKQNXnaiv2dyVANbVsrS/SAUCvd3+8V40YQKxWJvxSP/8/UHCxogZzHEATZtr+lRX/P1pkO99PDQVA2PULdsM24T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vodLjjtlCEBZbmk1JK4eQDgteNFXkOA/vVKWIY4FIkAg71UrE74JQCo6kst/KCRAUAEwnkGDA0ASa/EpAAYaQKQ2cXK/wwlAyCQjZ2EPHkDtZHCUvLoAQJ5eKcsQBwNAumsJ+aDn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X0ax3NKqBEAbu0T11tAgQJIkCFdAoeA/AcKHEi153z+Lw5lfzUEHQN+JWS+GAiNAyXa+nxpvCUBEwCFUqdkfQAeZZOQsrABAlzldFhP7HEDQ0D/BxcoCQLMpV3iXywtAXFSLiGJy5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hEcbR6zFBkBwtrkxPREiQPwdigJ9ovc/d9Zuu9Dc+D8qb0c4LXgEQDtT6LzGPiNAMj1hiQcUC0Btxf6ye/IfQGOXqN4amAFAYFlpUgpaIEDQ7SWN0boCQNatnpPeNwxAYymSrwRS5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ChFwCFVqB0C7Jw8LtdYiQOj4aHHGMOg/bsST3czo6z9gyOpWz8kJQL1SliGOlSRANUbrqGpCC0Bhpu1fWfkhQJKumXyzTQZA+u3rwDmDHkCAgosVNRgFQDYC8bp+gQtArHMMyF7v5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gEi/fR14CkDGpwAYzyAeQMri/iPTodY/SBtHrMWn8j+mCkYldcIIQJBmLJrO7iFAKpFEL6MYC0BCeLRxxDodQLSwpx3+GgZALxfxnZhFIEChSs0eaAUDQLNeDOVEuw1ARdeFH5xP6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gsXhzK/mA0D5MeauJUQgQHl1jgHZ69g/Wb4uw3867j9Bn8iTpKsHQP+ye/KwoCNAoP1IERkWBUC0sKcd/lodQOF6FK5HIQdAlYJuL2lsHUCC/61kx4YDQL+aAwRzNAlAI2dhTzt86D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QpWaPdCKDEAxlBPtKjQhQOtySkBMwt8/VDpY/+ew8z/owd1Zu20LQMRCrWneESRA4L4OnDMiDEBI3GPpQ5ceQHK/Q1GgDwZAIEHxY8zNIEAfhetRuB4CQM1YNJ2dDAlAarx0kxiE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tHHEWnyKDEB+xoUDIckhQFx1Haopycw/dNL7xtce8D84Mo/8wcAMQIzbaABvoSRATGw+rg0VC0B6/N6mP9seQLoUV5V9lwZA+aBns+qzIEATm49rQ4UAQJEKYwtBDglAzemymNh84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+5EiMqyiCkB5Xb9gN5whQH+IDRZO0tM/xRuZR/7g5j+3C811GqkMQKvP1VbsryRAv2A3bFtUCEB7SWO0jkogQFK4HoXr0QZAnDOitDeYH0DxLhfxnVgAQHIz3IDPTwhA8l1KXTIO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fCx96IL6CUDnb0IhAt4gQIi4OZUMANg/QZqxaDp7AUDZCMTr+oUJQDSAt0CCYiRAoMN8eQH2CEAPYmcKnXceQGACt+7maQhA7lpCPuh5HkD6m1CIgMP/PyU7NgLxugpA+kSeJF2z4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OxkcJa8OCECwVYLF4RwiQN7/xwkTRss/LUMc6+I2/z/n49pQMU4KQGRd3EYDeCVA8bp+wW4YB0ADCYofY64bQNF0djI4igZARPrt68ApIEDcaABvgcQBQOm3rwPnjAZA+RBUjV4N3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OxkcJa8OCECwVYLF4RwiQN7/xwkTRss/LUMc6+I2/z/n49pQMU4KQGRd3EYDeCVA8bp+wW4YB0ADCYofY64bQNF0djI4igZARPrt68ApIEDcaABvgcQBQOm3rwPnjAZA+RBUjV4N3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OxkcJa8OCECwVYLF4RwiQN7/xwkTRss/LUMc6+I2/z/n49pQMU4KQGRd3EYDeCVA8bp+wW4YB0ADCYofY64bQNF0djI4igZARPrt68ApIEDcaABvgcQBQOm3rwPnjAZA+RBUjV4N3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CI82jljLCkCXHHdKBzshQOs6VFOSddM/Y2LzcW2o/T9/pIgMq7gKQDSAt0CC4iRAMZkqGJXUB0AwTKYKRgUcQLml1ZC4BwhA9MMI4dG2IEBTIoleRnEBQI9TdCSXvwdAJuDXSBKE3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O6qaIOq+9T+wyRr1EA0dQF6FlJ9UuxJAIQclzLT9+T/XNO84RUcKQNcXCW05VyNABJDaxMm9BECbrFEP0egcQJynOuRmuPg/FQDjGTRUGECWCb/UzxsDQL8OnDOi9AVA5fIf0m9f6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dQBppEo5pD8BMJ5BQz8hQAdfmEwVTAFAB/AWSFC8CUCbcoV3uQgKQP7UeOkm0SRA6KT3ja89CkA4Sl6dYyAbQH2zzY3pif0/qcE0DB9xGUCCOXr83qYCQCKrWz0nPQZAUfhsHRxs5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1H0AUps4CEA/V1uxv2whQI4B2evdXyFAQKTfvg4cA0D4GRcOhKQOQJEPejarviRAImx4eqWsBEBzhXe5iI8bQFnABG7dzfk/ApoIG54eGkDVeOkmMYj8PwltOZfiKgRAhH6mXreI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gLdAguJH/j9NhA1PrxQbQHldv2A37PQ/BkfJq3PMDkBd4V0u4vsLQCQofoy5yyVAtaZ5xym6BUB0DMhe774YQDYC8bp+Qf4/ieqtga0SF0CMSuoENJEAQPg2/dmPVAZAvR3htOBF4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VWr2QCvwBkDmXIqryo4gQNXnaiv2lwBAiQeUTbkCAEDNO07RkdwOQMPTK2UZwiVAXi7iOzGrBkAVHcnlP+QcQMO7XMR34vU/fXkB9tGpF0C9GMqJdhX8PwclzLT96wFAkpbK2xHO4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t5xLcVUZCUDhYkUNpgEdQCJPkq6Z/PA/2sngKHm1BUCOrz2zJIAMQDAqqRPQZCVAR+aRPxi4BEA5C3va4S8cQE2EDU+vlPg/x0s3iUGgFEBRMc7fhEL/P2FsIchBSQhAofKv5ZXr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2J5ZEqAmBkDThy6ob5kXQA4QzNHj9/g/4q/JGvVQCkB2ieqtgQ0QQCv2l92TByZASYCaWrYWBEBa9bnaih0aQLmq7LsieABAWUxsPq4tGUCx+bg2VMwAQGrBi76C9AVAM2/Vdaim4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RQ2mYfiICUAwgVt38xQjQIeJBil4iu0/ilkvhnIi/T9z1xLyQS8QQGIQWDm0CCZAEJIFTOBWBUDqBDQRNjwaQHPXEvJBz/o/eSPzyB8MGkAUlnhA2RQAQIOj5NU5BgVAUfpCyHl/5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NUbrqGoCC0BpHVVNENUgQCfChqdXyhFA4bTgRV+BEkCf5Xlwd3YQQNIA3gIJ6iVAf4eiQJ8IB0AjFcYWgtwaQGqkpfJ2hPk/51JcVfY9GUCa6zTSUvkBQEJD/wQXKwNAvVRszOsI4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"16Avvf254L+FCDiEKhUcQDblCu9y0QVA1VsDWyXY+z9vRzgteJEKQB13Sgfr7yNApBmLprOTAkAH8BZIUNwWQJusUQ/RaPw/FytqMA0jGkAkC5jArXsAQNhkjXqIhgVAZ7XAHhOp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NGjon+Di+D9kXdxGAxgmQCKOdXEbzSVAOX8TChEwD0CSkbOwp90KQHicoiO5PCRAyNKHLqgvAEAAqU2c3E8YQDDw3Hu4ZPs/wJXs2AhEGUBqGD4ipgQCQA/R6A5i5wVA81oJ3SXx4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lN43vvbM9T/GbTSAt+AmQNbFbTSAt/I/eUDZlCt8H0DCEg8om/IPQFpkO99PrSRADhDM0eO3AEDGounsZFAXQPFo44i1+Pc/kUQvo1gOF0Av3SQGgZUAQKezk8FRcgRAdH6K48Cr5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pTFaR1XzGUDysFBrmjcmQBZqTfOO8xJA0T/BxYraDUCgVPt0PKYOQMX+snvyMCRA8rVnlgSoB0CIY13cRgMcQPW+8bVnlgJAQmDl0CIbG0BOf/YjReQAQC5zuiwmtgJAkX9mEB9Y4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"097gC5NJE0AYQznRruIeQH/7OnDOCDBA4C2QoPhxDUBxPQrXo3AMQMWPMXctISRAKXl1jgEZCECSy39Iv70bQJOMnIU9bQBA662BrRJsG0Atsp3vp8YBQMGQ1a2e0wVAJJhqZi0F4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"smg6OxkcEkCatn9lpUkMQFExzt+EQvE/XD0nvW/8EkCfceFASNYHQKUUdHtJQyNAq+ek940vB0AjZ2FPO7wZQEQ0uoPYGf4/vHmqQ25GGUAhAg6hSk0CQA2OklfnWAhALVvri4Q25j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Az4/jBCe67/Bc+/hkoMiQDvHgOz1rgtApSxDHOuiA0D2Yign2hUKQB1aZDvfryRAh4px/iYUAEDLhF/q5w0aQIJWYMjqlgBAvmplwi+VHEAJpwUv+soBQHEbDeAtEAVAHa1qSUc55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R1UTRN0H9b9Uxr/PuDAgQGu3XWiukwxA2SWqtwZ2DkDE6/oFu+ELQMX+snvyMCVAC9KMRdMZAEAAUps4uX8aQGA8g4b+SQBAh+EjYkpEHEAyWkdVEwQCQPhT46WbRAdAUHKHTWTm5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sRafAmA83L8ukKD4MeYfQFtCPujZDCVA+tAF9S1zDUCZR/5g4LkNQFYOLbKdDyVAQ3OdRlqqAEAyWkdVE8QZQF66SQwCawFAxoUDIVmgHEAKhQg4hOoCQBhDOdGuggVAzvv/OGHC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7iWN0Tqq+z+mD11Q3zIhQJv+7EeKCAFAVn2utmJ/+z8TYcPTKyUOQCegibDhiSVAxCXHndJBA0AJ4dHGEUsZQB0Dste7v/s/CHdn7bYrGEDc9Gc/UsQBQGlv8IXJlAVAvCTOiqiJ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K4cW2c53/D9pqbwd4ZQaQFVNEHUfAP8/pvJ2hNNCBEAc8PlhhDANQJf/kH77GiVAjxmojH8fBUDrqGqCqDsYQHZUNUHUffs/fAqA8Qw6GEDOGVHaG/wAQJTeN772zARAyyvX22Yq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bLJGPUTjBECGrG71nJQXQC7FVWXfFfg/2bERiNe1AECqtwa2SjAHQDy9UpYhriRA8Z2Y9WLoBEAbDeAtkOAZQHfWbrvQ3PQ/ak3zjlNUGkDMtP0rK03+P1UwKqkTkAVAKNcUyOws4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E2HD0yvl/z9kXdxGA7gaQI7myMovA+Q/E36pnzcV+j95O8JpwcsFQF1txf6y2yRAWmQ730/NBUDA7J48LDQYQJxtbkxPWPY/11HVBFEXGEDXwFYJFof/P6uVCb/UDwVAvY+jObLy4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"24XmOo30BUAIrBxaZBsmQGU5CaUvBO0/4jsx68WwEkD8xteeWdIIQKGEmbZ/BSNAHy457pTOAUBMGqN1VDUbQOi8xi5RPf4/yM1wAz4/GUAC8bp+wS4AQNvcmJ6whAJAxLMEGQGV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HY8ZqIw/AECd19glqsciQAQAx549l+0/0VynkZbqFkAz3IDPD+MHQFInoImwcSNAOQt72uFvAUCGPe3w1yQaQDW1bK0vEvE/SBYwgVvXFkBKB+v/HCYBQECk374OnAdAaqD5nLvd4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bagY529CAkCYUSy3tBoJQLlvtU5cjtk/Xf5D+u3rCEBXPsvz4G4FQCy8y0V8ByNAoS3nUlwVAUAz3IDPD4MZQECk374OXAJA/1vJjo3AHEB2ieqtgW0CQLivA+eMqAVAjV94Jclz5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dxVSflJt/T/430p2bIQIQGMpkq8EUt4/j9/b9Gf/CEAYeO49XLIFQGTMXUvINyNAYYkHlE25AEBg6udNRYoZQJ5eKcsQhwJA/+xHisiQHEBftTLhlzoCQDCeQUP/xAVAXHfzVIfc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1y/YDduWAEDgvg6cM0IcQNs1Ia0x6Ng/dc3km21OEkDBi76CNCMHQACRfvs6ECRA41MAjGdQA0DQ8jy4O6sYQPvL7snDAgNAn1kSoKZWG0D3ksZoHZUDQO9VKxN+aQdARpc3h2s16j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"paFGIcms2r+XkA96NusXQICaWrbWFx1A7UeKyLBKB0Btc2N6wlIQQOXyH9JvPyZALnO6LCb2CkCMLQQ5KMEeQPmgZ7Pqc/c/oaF/gov1GEBagSGrWz3/P0D7kSIyrANAUd1c/G3P4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Q5iZwod8j825QrvcrEfQPDErBdD2RJAaCJseHqlCUCSs7CnHT4KQOcAwRw9/iJAOe6UDtZ/+j9K0jWTb3YUQLgGtkqwOP4/56kOuRkuGUC3ek563/gAQIEExY8xtwRAfXbAdcWM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EojX9QuWEEAE4nX9gv0WQNtQMc7f5BNAl4v4Tsy6EEADste7P94JQBg+IqZEEiNAgNQmTu539z++vAD76BQVQJ1oVyHlJ/8/ghyUMNNWF0CxogbTMDwAQL+aAwRzNAdAv9alRujn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UHCxogbTA0CgVPt0PLYgQI/C9ShcD/k/iV5GsdzS+D8+XHLcKR0PQGiz6nO1tSVA3Xu45LgTA0DMf0i/fZ0ZQCuHFtnO9/0/Zfz7jAsHGkAF3V7SGC0BQCBB8WPMHQRA+rfLft3p4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1edqK/aX8j/PFDqvsesfQHE9Ctej8P8/iJ0pdF5jB0A7AU2EDQ8OQOCcEaW9gSVAe0ljtI6qAEChSs0eaEUYQDQuHAjJggBA3bWEfNATHUC77UJzncb8P3Fa8KKvYARAjA+zl20n4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QrKACdxaEEC0q5Dyk4oeQP5D+u3rwABASu8bX3smCEBcOBCSBUwNQDj4wmSqQCRAmEwVjEqqCUBjRQ2mYTgdQMNkqmBU0gJAho+IKZGkGUC7fsFu2PYCQECH+fICrAdAfsUaLnJP6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bHh6pSwDCUD1LXO6LOYiQAzIXu/+ePI/DWyVYHEYE0DY8PRKWcYLQIbJVMGoRCVAxJRIopeRAkDvycNCrQkZQOQPBp57TwZAc2N6whIvHEBj0XR2Mjj+PyhEwCFU6QZA9fbnoiFj4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lzldFhObCUCASL99HZgkQJ5eKcsQx/A/EHo2qz7nIUB+Oh4zUFkOQDJ3LSEfVCdANh/XhooxAkCvQspPqn0aQD7QCgxZnQZAFsH/VrLjG0CN7iB2plD/P7VPx2MGKgVAGOsbmNwo3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gEi/fR24BEC7Jw8LtcYmQGDpfHiWINo/PpY+dEF9FUB31m670NwOQDeJQWDlECZAXRYTm48rBEAgtYmT+50aQO+P96qVSQJAehnFckvrFkCC597DJYcAQESjO4idaQRAYTYBhuVP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Nms+lytB0CYbhKDwAosQGoYPiKmxPI/vjCZKhj1F0CrWz0nva8IQCJseHqlDCdAiqvKvisCAkDUt8zpsjgdQBhbCHJQwgJAjnVxGw2gF0C28/3UeKkBQDdxcr9DEQZAJHuEmiFV3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5NpQMc4fAECWIY51cZszQEPJ5NTOMOQ/WmQ7309dOEDvj/eqlckJQEmdgCbCpiRAOL72zJKAA0DSxhFr8akaQC6thsQ9FvA/i+B/K9mxF0AnZr0YykkBQFj/5zBfXgZAI0kQroDC4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g6Pk1TkG+j/sUbgehcsqQD+MEB5tHPA/5+PaUDGuGUC6vaQxWkcDQJM6AU2EzSRANLqD2JnC/j88ZqAy/h0cQMi1oWKcfwBAfCx96IIaG0Az+WabG9MBQGagMv59hgdAXynLEMe62z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PE7RkVx+/D8oDwu1prkpQEYldQKaCABAv2A3bFv0GEDuX1lpUgoCQCBj7lpCfiRARdjw9EpZAEDHYwYq4/8cQCgs8YCyqf8/ZapgVFJnG0D76NSVz7IBQO5aQj7o2QdAcTyfAfVm3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5lyKq8p+EEBhpu1fWekXQI0LB0KywAJAU7MHWoGh9j9sW5TZIFMNQIenV8oypCRAB84ZUdpbA0Axzt+EQoQaQNAn8iTpGvs/DWyVYHE4HEAsn+V5cHf/P01nJ4OjZAJAF0hQ/Bhz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V1uxv+yeDUDgSnZsBMIdQAg9m1WfKw5AuB6F61G4BUD8NVmjHiIJQFtCPujZbCVAdEF9y5yu+z/0N6EQAecZQL72zJIAtQBANsgkI2fhG0Be9BWkGYv9P2E3bFuU2QJAYr8n1qly4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9ODurN32DECAfXTqygcdQFSp2QOtwAJAxxFr8SkAD0DhYkUNpqEIQPFjzF1LCCZAkbjH0ocu+j9XBP9byY4bQFeVfVcE//0/78nDQq3pGkA/dEF9yxz+PwouVtRgGgNAGY7nM6De4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"001iEFg5BUDdByC1iVMaQM0jfzDw3Pk/V+wvuycPEUBmFMstrcYIQDY8vVKWoSVAJuSDns2q9z/mIr4Ts14ZQInS3uALk/w/9n8O8+UFHEAy5q4l5AP/Pwg9m1Wf6wJArROX4xWI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QfFjzF1L/j/Jq3MMyP4cQA2Jeyx96PQ//aTap+ORFUC70FynkZYKQOoENBE2vCVAL90kBoEV/D8IyQImcOsZQM1YNJ2dDPs/4PPDCOHxGUAErcCQ1a0AQCyC/61kRwJAtoE7UKc84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AYdQpWYPBkBm2v6VlcYhQMjqVs9Jb/Y/2xZlNsikCkCHUKVmD7QMQJM6AU2ETSRA/n3GhQNhCUA0aOif4IIaQKq1MAvtnOs/LXjRV5CmE0CitDf4wmT8P1eyYyMQrwRAkC42rRSC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UN8yp8uiAUCPU3Qkl58mQNbiUwCMZ/M/XdxGA3hLJUDcSxqjddQMQJZDi2znuyZA88gfDDz3AUD92Y8UkSEdQObLC7CPTvQ/tqFinL+JFUCs4o3MIz8AQAggtYmTOwVAEJVGzOxz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XBsqxvmbBkABTYQNT48rQI8c6QyMPOo/ZMxdS8hHKEBy/iYUIuAGQPPlBdhH5yNA9kArMGT1BEANjpJX59gXQDV7oBUYMvs/0lJ5O8LJFUAGZK93f7z+P7/Uz5uKVAZAMLyS5Lk+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Un5S7dNxBkC+wRcmU+UrQE57Ss6JPec/ZyeDo+TVHkBJopdRLPcJQM3MzMzMjCRAXfksz4N7BUDN5JttbowYQKz/c5gvL/k/K4cW2c4XF0BolgSoqSUAQGjQ0D/BBQZAVklkH2TZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y7kUV5W9BECjWG5pNZQhQOguibMias4/4umVsgxRJEAgKSLDKh4EQKAy/n3GdSNAY+5aQj7oAkDDtkWZDZIbQDGZKhiVlARAEarU7IG2HUBq2VpfJPQBQI/f2/RnPwRAPDJWm//X4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H0sfuqC+AECq8dJNYvAkQLq9pDFaR+A/8IXJVMHoGEANiXssfagGQKjGSzeJASRAbqMBvAXSAUA+syRATc0ZQEurIXGPJQJAklz+Q/qNHUAwnkFD/wQCQDP+fcaFgwRAE7ngDP5+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wJXs2AiEC0BEaW/whckWQO1kcJS8ugRAW0I+6Nms+T+Z8Ev9vOkLQGKh1jTvGCRADM11Gmmp/j8p0CfyJKkWQPGdmPViKPs/LEgzFk0HFkC+vAD76FT/Pz/jwoGQLAZAyH4WS5F85D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/mDgufewDUCoV8oyxHEnQAfwFkhQfPM/bxKDwMrBJUAxQni0cYQIQP5l9+RhQSVAE0TdByB1CkAfv7fpz74dQCdr1EM0ugFACMkCJnArHEBLsDic+RUAQOik942vvQNA499nXDiQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O/w1WaOeBUCjkjoBTTQhQDm3CffKvOs/ldQJaCJsCUARcAhVavYLQKyL22gAzyRAmBdgH526BkCeDI6SV+ccQIJzRpT2Bvs/YRqGj4jpGEAk1uJTAEwBQCRiSiTRywVAAg8MIHyo5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qOMxA5VxA0DVeOkmMegeQOZY3lUPmNE/YOXQIts5EED7rgj+txIGQAQEc/T4LSNADJOpglHJA0CrIXGPpW8ZQMGopE5A0wFAKowtBDmIGkAAUps4uV8BQHOiXYWUnwRApP56hQX34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"78nDQq0pBkCOBvAWSJAfQGpMiLmk6uk/Su8bX3tmBUAEc/T4vc0OQMgHPZtVnyZA96+sNCkFAkC0q5Dyk4oZQL4wmSoYlQNAYcPTK2W5GkDlRLsKKb//P8bctYR8UAVACtY4m46A4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iBHCo41DE0COQLyuX/AaQBB6Nqs+9xNAIeUn1T4dEUDCL/XzpiIKQLAD54wo3SNAIeUn1T5dCECLw5lfzUEdQLtE9dbAVvU/mRJJ9DIqGEDRyyiWWxoAQPKYgcr4NwNA/aNv0jSo4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ApoIG55eCUAUXKyowZQiQA39E1ysqOo/64uEtpxLCEDYgXNGlDYJQAWjkjoBbSVAvvbMkgC1BECCHJQw0zYbQLMkQE0tW/0/4UBIFjAhF0AIA8+9h8v/PxZqTfOOkwZA7nw/NV464z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dnEbDeDtAED+KytNSgEgQGd/oNy27+8/S8gHPZsVEED9gt2wbZELQH3Qs1n1GSVA1ouhnGgXCEBJhbGFIMcaQCXMtP0r6wBAxr/PuHCAGECjzAaZZOT/P6MBvAUSlAVAWTDxR1Hn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PDHrxVDOBUAfnbryWW4gQDLLngQ25+g/by9pjNYRAkCSeeQPBl4HQCkiwyreaCNAkSdJ10x+AECBIatbPacZQCzUmuYdp/Y/swxxrIvbGEAI5ujxe5v+Pz4FwHgGzQNAH7k16bbE4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yf2fw3w5CkCBCdy6m0cYQGMOgo5WNeY/w/ARMSVSBkAXZTbIJOMJQFCNl24SgyRAcVXZd0UwBUAydy0hH7QYQF2/YDds2wFA6N7DJcddGkDLZ3ke3J0AQBxfe2ZJwAZAL8GpDyRv4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ILWJk/tdCUA6HjNQGZ8fQAtGJXUCmvU/nDOitDf4LkBcctwpHWwKQFFrmnecQiVAJEVkWMVbAUCqmiDqPoAaQGNi83FtKABAgosVNZimG0D4qpUJv5QAQEF9y5wuywNAIVZ/hGHA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZcdGIF4XBkCBPpEnSdcRQBDPEmQEVOk/RWRYxRt5FkAR/G8lO7YPQKRwPQrXoyVAlfHvMy5cA0BCQ/8EFysYQHXIzXADvgFAGLK61XMSGUBe1y/YDRsAQDC7Jw8LtQZA26Sisfb36D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0oxF09kJA0AexM4UOm8IQOpb5nRZzApApPyk2qeDGECNYrml1dAIQHzysFBr+iRAJ71vfO2ZBEC7Jw8LtQYcQBEBh1Cl5v0/6bevA+fsHECInSl0XuMBQEjElEiiVwdAx0s3iUFg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ETY8vVL2FEDnNXaJ6t0hQPmDgefeQwdA7fDXZI26AkAOEMzR4zcRQOC+Dpwz4iZABK3AkNWtAkCE9X8O8wUZQINsWb4uw94/lgSoqWXLFUCy9KEL6tsCQPp+arx0UwRATUnW4eiq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T8x6MZSTE0BENLqD2HkjQNBE2PD0ygRAYTdsW5RZ/T9BvK5fsJsQQHicoiO5HCdAp3Sw/s+hAkDTakjcY0kZQOHs1jIZjuM/OZz51RygFkBPO/w1WSMDQEt2bATidQRA5IIz+PvF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VvFG5pE/CkDtDb4wmar0P1dgyOpWT+M/W5nwS/28IECgGi/dJIYGQAvSjEXTySNAi08BMJ5BA0DzH9JvXyccQA2OklfnmABApics8YByHkCTOgFNhI3/PwyTqYJRiQRArrzkf/J34T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OUVHcvmP8z9Dc51GWmoaQGVwlLw6dyJAfbPNjenpEkCgNxWpMHYNQPyp8dJNAiVAswdagSGrBUAyVTAqqbMYQL5Nf/YjxfY/iQyreCMTFEAK3LqbpzoAQCAMPPceLgRADTUKSWb14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7WEvFLAdxD8qkUQvo0giQGRYxRuZx/0/eo1donprA0B2MjhKXh0PQLivA+eMqCZAEarU7IHW+z8G2EenrjwZQNCc9SnHZO0/Bg39E1yMGUBmiGNd3Mb9P8bctYR8kANAAg02dR4V3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8SkAxjNoAkBcWg2Je6wZQGMoJ9pVaBBALA5nfjUHBkCRD3o2qz4NQFpkO99PDSZAQ1a3ek76BECFd7mI70QXQN3qOel9owJAcr9DUaBPGUApeXWOAdn+P7nH0ocuKARAw9Zs5SV/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tdu/stJkAkBCYOXQItseQGnHDb+b7us/EQGHUKVmEUCqZWt9kVAJQBbB/1ay0yJAKLhYUYPpAkARHm0csZYdQPT4vU1/dvI/QkP/BBfLF0AhyEEJM+3/P+fG9IQlHgRAwxGkUuzo4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z2vsEtWbAUDg1t081eEcQKs+V1uxP/4/qYdodAcx9T9EF9S3zCkJQEYldQKayCRAvLN224VmB0AGEhQ/xpwZQDVG66hqAv0/DLCPTl05GkDh0cYRa/EAQL1vfO2ZZQNA7N6KxAS14j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vw6cM6L0CUAgKSLDKk4hQEvNHmgFhvI/pBmLprNTBUCERxtHrEUOQDqSy39I/yRAHCWvzjFgBUAfLjnulC4ZQNXnaiv2F/g/16NwPQoXHEDhtOBFX4EAQBYwgVt38wNAU5EKYwtB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NL+aAwRzCED2fw7z5cUXQKMjufyHtAJAHLEWnwJAF0ACt+7mqU4GQFuxv+yenCRA7pQO1v95B0An2lVI+ekaQOKvyRr1EPo/E0TdByAVF0DQ7SWN0XoAQERRoE/kyQVAuVFkraFU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q+c1donqCkBvu9Bcp4EhQOdvQiECDvM/8KfGSzcJGEA50a5Cyu8QQCJseHqlrCZAhj3t8NekBkB/9iNFZLgeQDgVqTC2EAFAIxCv6xdsGkB0tRX7y+7/P1pHVRNEnQVAsOjWa3pQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9l0R/G+l/T/k9zb92S8jQDuMSX8vBeE/5wDBHD0+D0C5iO/ErJcDQETdByC12SNAp3nHKToS+D9txf6yezIVQAZHyatzzAFA8WPMXUvIGEDNHmgFhmwAQAAd5ssLMAZAFhdH5SZq5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BcB4Bg09AkAQejarPrcSQNrFNNO9Tus/SkG3lzSGEkCRuMfSh+4MQDXvOEVHkiRAJNHLKJabBEAjvhOzXmwaQM8xIHu9+/o/VwT/W8kuG0AGTODW3bwAQKc/+5EicgJAfnGpSlvc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uHU3T3WIBUCWsgxxrIsKQF8ktOVcCvI/KzV7oBUYEkCU2SCTjFwKQO2ePCzUWiRAea9amfALBEBcctwpHawaQFD8GHPXkv8/KT+p9ul4GkA9Sbpm8g0AQMfXnlkSoAFArDqrBfaY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"10y+2eYGAkBz2lNyTuzHP2VTrvAul/U/jErqBDTRKUBIUPwYc1cMQBSuR+F6dCZAzO7Jw0LtAkCsrdhfdk8ZQBnnb0IhAvg/ndfYJar3FkCvd3+8V20CQDBHj9/b9ANAAad38X5c4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0NVW7C87BUAdcjPcgP8jQESGVbyR+fw/+RQA4xk0C0DvG197ZgkRQNCzWfW5OiZAMZkqGJUUAkCuEiwOZz4aQAbYR6eufPY/BBxClZr9G0AjMqzijUwBQMbctYR80AVAtydIbHeP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q3OdRlrqAUBNhA1Pr1QkQIRHG0esxfY/toR80LOZEEDbxMn9DuUQQFFrmnecIiZAXwfOGVFaAkBJ10y+2aYaQDRo6J/gYvY//fZ14JyRG0Djjcwjf3ABQIrlllZDIgVAPdNLjGV64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"raOqCaKuAUBZox6i0Z0bQLXDX5M1auE/dO/hkuMOEUARAYdQpWYEQL01sFWCVSJAyVnY0w5/AUD4qpUJv9QYQONTAIxn0Po/gv+tZMdGGUCGAyFZwIQAQAmKH2PuWgVA5Smr6Xqi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8fRKWYZ4AkCl942vPTMZQOOqsu+K4M0/h4px/ibUDEDqz36kiMwDQE8jLZW3UyJARuuoaoIoAEAYJlMFo9IYQNqs+lxtRQBAZMxdS8jnGUCHbYsyG+QAQOv/HObLSwZA9mG9UStM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TS1b64uEBUCbAwRz9CgjQBiWP98WLN0/ZF3cRgOYKkAKur2kMRoMQNSa5h2nKCVAn82qz9WWB0D2tMNfkxUaQK1RD9HozgJA0VynkZYqHUCRYRVvZB4AQDblCu9yUQNAW2CPiZRm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gosVNZgGB0CGyVTBqIQrQBKI1/ULNgBAYY4ev7dJEkDAlezYCAQLQBSuR+F61CRATn/2I0VkAEDQuHAgJCscQAqd19glKvw/IR/0bFYdG0AbL90kBoEBQMAEbt3NEwVAzVoKSPuf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SWO0jqpmBUCbOLnfoWgMQO5Cc51GWvI/kBSRYRUPF0AhH/RsVj0MQJzEILBySCZAp7OTwVEyA0CBCdy6m+cYQKuy74rgfwJA4Zf6eVNxGUCjzAaZZOT/PxghPNo4YgVApUv/klQm5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4UVfQZqxBEAdlDDT9u8QQKHzGrtEdfk/pKXydoTTHUBmSYCaWnYJQK8l5IOejSRApWYPtAKDA0A8a7ddaC4aQNWytb5IaABAvrwA++jUGkD5Tsx6MVQAQMMN+PwwwgVATFXa4hqf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KowtBDnoCEAJG55eKQsTQNMwfERMifg/y7kUV5V9IEC3XWiu00gJQBniWBe3USRALNSa5h0nA0B/h6JAn0gaQLpm8s02dwBAuXAgJAuYGkB7MZQT7SoAQL9gN2xblAVAfv/mxYkv5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ICQLmMDtB0Ch20sao/UFQBCRmnYxTeQ/eJyiI7k8GUBdv2A3bFsKQEw3iUFgZSRAUps4ud/hAkCLTwEwnuEbQGiu00hLpQNAqtTsgVYAGkD8+4wLB8L/P0TAIVSp2QVAj3Ba8KIv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"srrVc9K7BUDYDdsWZTYTQIFCPX0E/t8/7WRwlLy6GkDwhclUwSgJQME5I0p7IyVA8FAU6BO5BEAE4nX9gl0XQJj6eVORSgBAJLn8h/SbG0Ap0CfyJKkAQALZ690fLwJAnPurx32r4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HlA25QovBkCzmNh8XIshQGfUfJV87NU/BJDaxMl9+T+YUSy3tFoJQDAqqRPQpCRAyF7v/ngvBUBLsDic+ZUeQJtattYXiQVA6fF7m/5sGEDsUbgehasBQA/R6A5i5wZAd4GSAgvg4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hLuzdtsFCEDRV5BmLNocQM7HtaFinMs/cJS8OsdABkCto6oJoi4IQCBj7lpCPiVA8iTpmsn3B0BXeJeL+C4eQMFu2LYoMwVA1uJTAIzHFUBftTLhl3oCQEzg1t08lQVATUwXYvVH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hLuzdtsFCEDRV5BmLNocQM7HtaFinMs/cJS8OsdABkCto6oJoi4IQCBj7lpCPiVA8iTpmsn3B0BXeJeL+C4eQMFu2LYoMwVA1uJTAIzHFUBftTLhl3oCQEzg1t08lQVATUwXYvVH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hbGFIAflDED04O6s3XYiQCV6GcVyS9k/TDeJQWAFEEAknBa86OsIQMPTK2UZ4iVAuHU3T3WICkD1SlmGOBYdQGSSkbOwZwhAh1ClZg8UF0DnqQ65GS4CQNxj6UMXVAZAVWmLa3ym4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ieqtga1SEECC597DJScXQJnYfFwbah9AaFw4EJJFAkAkYkok0UsQQGiz6nO1VSRAsRafAmC8BED3OxQF+mQYQCzUmuYdJ/0/FCLgEKp0HEDQ7SWN0ToBQA7bFmU2SAlAaAkyAioc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tqFinL8JAkAvi4nNx/UgQDT2JRsPtts/3GgAb4HEFUDTE5Z4QJkHQHPXEvJBDyVAU7MHWoGh+T/pDmJnCt0YQCScFrzo6wZAenB31m47GkCZ8Ev9vCkEQI6SV+cYEAdAnPurx32r5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WcAEbt1N/j+FfNCzWfUfQB+duvJZngRAXhH8byU7CUAknBa86KsIQJZDi2znGyVAWcAEbt3N/T8Sa/EpACYVQJDaxMn9DvI/dR+A1CYOGEBihPBo48gAQFPovMYu0QZAgzEiUWjZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zhlR2ht8AUBWt3pOeh8fQGXIsfUM4e4/QE0tW+urE0AN4C2QoDgKQJayDHGs6yRA9iNFZFjF+j9LAtTUstUWQE6c3O9QFPA/ZkmAmlqWFUB/9iNFZJgCQKRTVz7LcwVADK8kea5v5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y2LzcW2oBUCEEmba/hUXQJg0RuuoqgVAdHtJY7ROBEDy0k1iENgLQJhMFYxKKiVAqkNuhhtwAkARNjy9UlYYQF1txf6y+/E/14aKcf5mFUBortNIS+UAQMtKk1LQ7QdADVUxlX7C5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"swxxrIubAkC+h0uOO6UZQDsBTYQNTw5AzxQ6r7ELA0CUvDrHgGwMQEvqBDQRFiVABmSvd3+8AUCCHJQw0xYYQIhodAexs/A/lQ7W/zkMFUDOiNLe4AsBQHJtqBjnrwdAvobguIwb6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+GuyRj3E7L/E6/oFu0EcQDlFR3L5TwJAUORJ0jXTD0BlcJS8OscKQDPEsS5uoyRA3rBtUWYD+D/XL9gN2/YVQJxTyQBQxdg/BaipZWvdEkCFfNCzWXUBQFc+y/Pg7gNAx5v8Fp0s3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kUQvo1guEkAbEvdY+hAYQORmuAGfn/0/6njMQGV8A0Df4AuTqYIHQCbkg57NiiNAYXE486s5AUBjtI6qJkgYQP3BwHPvYfg/TrSrkPJzGEBIisiwircCQKZh+IiYkgpAEywOZ3416j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nuqQm+GG+D9SuB6F67EkQOPHmLuWEA9ApMLYQpBDDUBtxf6ye7IIQDQRNjy9UiRA0ZZzKa4qA0By4UBIFjAaQF3+Q/rta/4/GsBbIEGxGUDFOH8TCpEEQHlA2ZQrPAVAIhecwd+v4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pWYPtALDB0AcCMkCJmAgQHxhMlUwqvM/+3lTkQpDH0Cazk4GR8kMQAn5oGezSiRAhhvw+WHEBEAQQGoTJ1cZQDliLT4FwAdAIuAQqtRsGUDpmsk321z7Px0Dste7/wRAgQpHkEqx4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LuI7MesFB0B3vp8aL90cQMaFAyFZwNw/PE7RkVz+EkBNMnIW9rQHQNV46SYxSCRAqcE0DB/RBUCDwMqhRXYZQA2reCPzyP8/i4nNx7XBHEDt9e6P9+oDQFKbOLnfIQZAlZ9U+3S84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FLNeDOVEC0DJ5T+k394UQL06x4DsdfU/gez17o+XIkDmdFlMbP4KQGgibHh6BSRAmxvTE5a4B0BsskY9RCMeQL68APvo1Po/2ZQrvMuFFkCnBS/6ChIBQI1donpr4AdAYKsEi8MZ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4Ep2bATi/j+b5h2n6KgbQAaBlUOLbPk/8bp+wW7Y+j8dWmQ73w8KQMpUwaikziRA/DVZox4iA0CNKO0NvhAYQCPb+X5qvPg/+rMfKSIDGUDsF+yGbYsBQOdSXFX2XQhA8656wDxk4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4Ln3cMnxCkBaKm9HOM0fQA7z5QXYx+Y/F9nO91PjDkCxM4XOa+wLQGwJ+aBn0yRAqfsApDYxB0BUNUHUfaAcQJMYBFYOrQBA8Z2Y9WJoGUAydy0hH/QEQKX3ja89swVAzzEge7176D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b9Of/UhRAUDwoq8gzRgfQL0A++jUFf8/7s7abRea9T+oNc07TlELQOeMKO0N3iRAWTSdnQzOBUAdjxmojN8aQC9uowG8hf8/+1dWmpTCGkAgY+5aQv4AQBtMw/ARMQdAUPutnSgJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+tUcIJijCkC+9sySAPUWQFW/0vnwLO0/qcE0DB/RCUDJ5T+k374IQD0nvW98LSNA1qiHaHRHAkAUrkfhenQaQCJPkq6ZvARA85Nqn45HHkDri4S2nMv/P5vJN9vc2AVAG9gqweJw5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kdWtnpMeBkBfQZqxaLoeQOoENBE2POQ/3CkdrP+zBkBrt11orlMMQERpb/CF6SVAuRluwOdHB0B2MjhKXt0ZQKgY529CIQBATwZHyatTGkB6pSxDHKsAQN9PjZduUgVAqOFbWDfe5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hlW8kXnkBEBb64uEttwjQGbdPxaiQ+o/d4TTghc9C0A98gcDz70MQOVhodY0jyVAOxkcJa8OBUCRm+EGfN4aQKq3BrZK8AFA8MSsF0M5GEAqAMYzaCgBQH9N1qiHKAVAj/rrFRbc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BWnGouksBEAr2bERiPcXQE4MycnErek/JZLoZRRLD0CxM4XOa2wJQH/7OnDOaCRA46WbxCBwB0AurYbEPTYbQMv49xkXzgFAX+/+eK+aHEA1Y9F0drL+P0urIXGPJQVA7nw/NV464j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tcNfkzUqCED6YYTwaEMeQCgqG9ZUluE/DAdCsoAJCkByFva0wx8KQJyiI7n85yRApWYPtAKDBkCXi/hOzBocQCe9b3ztWQFAyv0ORYF+HkB8m/7sR0oAQCZTBaOSOgVASwaAKm5c4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sFWCxeHMB0BvL2mM1jEaQM6mI4CbxdM/miUBamrZIECalIJuL2kIQDtwzojSHiVAufyH9NvXBEBN27+y0uQaQFsIclDCzAVAKETAIVRpHUBvDWyVYHH+P79gN2xbFAVAOIO/X8wW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"myDqPgCpA0DFILByaJEpQPzepj/7EfQ/ChFwCFWqFECgppat9cUMQIenV8oyJCZA3LqbpzpkBUAFacai6SwdQNWVz/I8uABA1PGYgcpYHEAGTODW3Tz7Py0JUFPLFgVAr0M1JVmH1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WP/nMF/eBECWIY51cbskQEaZDTLJSPU//5WVJqWgG0DVlc/yPDgNQAU0ETY8XSVAaYzWUdXEAUBPdcjNcKMXQIOj5NU5hgFAWmQ7308NHED8jAsHQjL/P9cv2A3bFgNAAcKHEi155D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dVlMbD4uCEAD7KNTV/4gQImYEkn0Mv0/YLAbti1KFEApeXWOARkMQPfkYaHWlCVAvTWwVYLFAkBaR1UTRB0aQFhzgGCOHv0/wHgGDf0zGECOdXEbDeD9P1hWmpSCLgRAVd/5RQn63z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JvxSP2+qD0AYQznRrmIaQNCzWfW5WgNAQYLix5g7GECxM4XOa2wPQPp+arx0UyZAD39N1qgHA0Bhpu1fWckaQOTaUDHO3/k/uoPYmULHGUDMXUvIBz38P/Fo44i1OARASSwpd5/j4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vodLjjtlBUC5/If02xcTQGvz/6ojR+k/MgOV8e+TFEDO/GoOEMwJQK5H4XoUDiVAYwtBDkoYAUAO8+UF2OcXQMmTpGsm3wFAumsJ+aAnG0DZPXlYqPUAQBn/PuPCgQJAa7sJvml64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XynLEMe6BUBtVn2utsIaQOKvyRr1EPM/dxVSflJtD0AZ/z7jwsEJQDXvOEVHEiVAi+B/K9lxBkBTswdagWEbQMISDyib8vQ/N3Fyv0MxGUAq499nXHgCQPlJtU/HowZA5ZmXw+674T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h6dXyjKEB0BPBkfJqyMgQFjiAWVT7gtAQbeXNEYrBEDvG197ZkkNQDtwzojS3iRAob5lTpcFAkD3x3vVymQYQBea6zTSUvM/+GuyRj0kFkBiZwqd15gBQPLqHAOylwVAOsyXF2Af5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L1G9NbDVB0AmUwWjknodQJjbvdwnR+s/6rKY2HycCkDjx5i7llANQFr1udqKvSZAoDcVqTC2/D9pOjsZHEUXQLO1vkhoiwJAVRhbCHKwGkBblNkgkwwCQM8UOq+xSw5AsU8AxciS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"INJvXwfO9z9KJNHLKGYiQFgczvxqzhBANEsC1NQyGkBPr5RliCMJQHO6LCY2XyNA5+PaUDFOAECbOLnfocgVQIy+gjRjkQNA9Bq7RPU2H0AexM4UOm8CQAk4hCo1+wVA3BDjNa9q5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E2HD0ytl+z/GpwAYz1AjQCgK9Ik8Sfw/uvdwyXHnB0BBn8iTpOsFQL/Uz5uKFCNAG55eKcvQAEA4+MJkqsAaQGQGKuPf5wZALexph7+GHUA/dEF9y9wAQIRkARO4tQdAr7X3qSq05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n6ut2F/2+D85tMh2vp8OQH7ja88sifw/2VpfJLTlG0BgsBu2LUoKQFMFo5I6QSRAKzBkdavnCECbj2tDxbgdQNqs+lxthQFAFoczv5rDHUDcgM8PIwT+P2lSCrq95AVAyVpDqb0I5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8RExJZJo/j/VJk7udygaQNbiUwCM5/0/mIbhI2KqFEAwZHWr5+QRQNEi2/l+CiZAz72HS457AkBjC0EOSpgZQF5jl6jeGv4/F/GdmPWiGkC4QILix5gCQEFl/PuMCwRAttlYiXnW4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jErqBDRRAEDttgvNdXobQIWUn1T7dP4/et/42jMrFEDkTulg/R8SQDcawFsgASZAS5NS0O3lAUBZ3eo56X0aQJQT7Sqk/P4/UmFsIchBGkBoBYasbnUCQE65wrtchARATrSrkPKT4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"waikTkBTBkCxpx3+mqwTQKVJKej2kvY/r5RliGMdFEB/pIgMqzgPQEaU9gZf2CVALjnulA4WBUCeQUP/BNcYQOo+AKlNnPc/N4lBYOVQGUDLLa2GxL3+P4NRSZ2AZgNA7zob8s8M3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H5268lme+z/0/dR46YYhQB3J5T+kPyVAchb2tMPfDkDon+BiRc0JQNEi2/l+iiRASG3i5H7HBUAZraOqCeIaQNUJaCJsePs/Qni0ccSaF0A0LhwIyQL9P0Mc6+I22gBApfW3BOAf5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J2a9GMoJAEAjvhOzXiwbQGJJufscH+I/ILWJk/ud/j8OEMzR4/cKQHlYqDXNWyVA8IrgfyvZ/z/ZfFwbKmYYQOF6FK5HYfU/oBov3SSmGUD+YOC597AAQK3ddqG5zgVAay3MQjun1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v5oDBHO0B0ACZVOu8G4ZQPm9TX/2o/A/izIbZJKRFEDqlbIMcSwNQKVOQBNhIyRAlGqfjsdMBkDshm2LMnscQLeXNEbr6ARAPzVeukmMHECZ02UxsXn+P0PKT6p9egJAByP2CaAY5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UiegibBhBUCEDU+vlCUsQAjKbfse9eE/lufB3VkbIUCGIAclzDQMQJZDi2znWydAcoqO5PKfA0Cl2qfjMcMXQIums5PBkQJAeZJ0zeS7GkCy9KEL6tsBQJet9UVCWwdA2sh1U8pr3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LT4FwHjGDEAJG55eKcsoQEYIjzaOWANAjV2iemvAE0CfWRKgplYLQMZtNIC34CZAoYSZtn+lAUBeY5eo3noXQBg+IqZEUgRAMlpHVRMkGEDpYP2fw/wBQKPMBplkpAZA3q8CfLd55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kSdJ10y+FUC7YduizKYeQINuL2mM1gxAaCJseHrFIkAB3gIJip8PQFXBqKRO4CZA3UHsTKEzBkCFX+rnTSUdQK6AQj19BOs/qFfKMsSRF0CpE9BE2LAAQC0JUFPLFgxAzA2GOqzw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uqC+ZU4XB0Bd/kP67asYQBpR2ht84f8/SS7/If1GIUBn8s02N+YNQBniWBe3MSVAUg/R6A5iAUAnTu53KIoZQHfWbrvQXP4/1bK1vkhIF0Aao3VUNYECQE6c3O9QVARAi1QYWwjy5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S80eaAVGAkA3bFuU2dAgQA39E1ysqPY/rMWnABjP9j8DPj+MEN4GQN0kBoGVsyNA6StIMxaNA0AK9Ik8SZoXQPbuj/eqlfQ/cm2oGOdvF0CYNEbrqGoBQDi+9sySgAdAWW3+X3Vk4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MnctIR/0+z9mZmZmZgYYQN5Zu+1Cc/E/d/hrskY98T8Tm49rQwUJQG4Xmus00iJAAHSYLy9AA0BlqmBUUkcYQDGZKhiV1PM/lX1XBP87FUBq2VpfJDQAQAAd5ssLcAVA7iO3Jt0W5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0hito6qJ/j/xaOOItaggQEc9RKM7CPI/GedvQiECAkAJFoczv5oEQKzijcwjHyNAZ+22C811+z+62or9ZbcZQJhMFYxKavM/1GAaho8oFUCsxacAGI8BQLX9KytNSgVA6wJeZtgo4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eqpDboYbAUC7Cik/qTYZQCuHFtnO9/M/YXE486u5/D9HVRNE3ccLQMuhRbbz3SRAWrvtQnOdAkB4nKIjuRwbQE9d+SzPA/g/Dat4I/OoF0DIQQkzbX8AQFX7dDxm4AdAtHbbhea65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LEgzFk3n/z9dbcX+sksgQIfcDDfg8/s/JuSDns3qDkBmSYCaWrYMQNQrZRniGCVAq+y7IvifBEA0v5oDBDMZQMQlx53Swes/bCbfbHMjFkAvaYzWUdX/P4vgfyvZMQVAMJ+sGK6O4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JSNnYU/7DkBwsaIG09AQQGba/pWVZgVAJAuYwK37AkAibHh6pSwMQKjGSzeJgSVAlLw6x4AsA0D186YiFYYYQPhrskY9xPI/vp8aL93kE0B1djI4Sl77Pwq/1M+bigJAL4fddwwP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fVwbKsa5DUBEi2zn+zkiQAYv+grSjPA/3ZiesMQDAUDb+X5qvPQKQFafq63YnyRA8RExJZLoBEAU7Sqk/IQZQO8DkNrESQZAOxkcJa9OG0DqIRrdQawCQJ5eKcsQhwlAbsK9Mm9V6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OC140VeQBUDYDdsWZeYjQNbIrrSM1O0/3IDPDyPEBkBolgSoqWUJQJ5eKcsQ5yRAbZBJRs4CBUAhsHJokS0bQHLEWnwKwABARIts5/tpHkCe0sH6P0cAQH0/NV66iQRAvkupS8Yx3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MsnIWdiTBkBHOC140ZcdQB3MJsCw/Ms/jswjfzAwCECz0qQUdDsKQN21hHzQkyRAN4lBYOVQCEDChqdXyrIdQBzr4jYagAVAo8wGmWSEHEA10lJ5O8L+Pxk5C3vaYQVAIZOMnIW94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YB+duvJZCUBTIoleRrEfQM5uLZPheNE/YhVvZB65CEBUdCSX/1AKQDC7Jw8LtSRAuHU3T3UICEDEd2LWi6EdQHgLJCh+jAVAXvQVpBmrHEDXUdUEUXf+P89m1edqawVAwVJdwMuM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ogvqW+b0AECbIOo+ACkaQBcuq7AZ4Nc/24r9ZfekI0BtOZfiqnIDQEj5SbVPlyJAB9MwfETM/T+C597DJWcXQJW3I5wWvPc/W18ktOU8FkDePNUhN0MCQAzqW+Z0mQlA6Q5iZwqd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B7Ezhc7r/z9xGw3gLZAZQJYhjnVxm+E/+z+H+fLCF0CgFRiyuhUDQLTlXIqrGiNAkuhlFMvtAEBolgSoqeUYQKLuA5DahAFA7zhFR3IZHEAqOpLLf4gCQLhYUYNp2ANAMc7fhEIE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O3DOiNJeAUAabsDnh7EgQM2wUdZvpug/ctwpHax/FkBhbCHIQQkDQKQ2cXK/0yJAbqMBvAWSAECxUGuad7wYQB75g4HnngBAr1+wG7YNHEB1djI4Sh4CQIy+gjRjkQNAA8x8Bz/x4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DTfg88NIAUB8CoDxDBoYQIjZy7bT1tQ/hJ7Nqs9VAUAMdsO2RRkGQPJBz2bVZyRAWKg1zTtO/z+wVYLF4WwZQCxIMxZNZ/o/PX5v05/9FkAiVKnZAy0AQKpDboYb8ARAD5wzorQ35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sfm4NlTMBUCXOV0WE9sfQNiBc0aU9vQ/9pfdk4cFBEDA7J48LFQIQIS7s3bbJSNAmggbnl5pAkA/jBAebZwVQNwRTgte9P4/AK5kx0agGUCJtfgUAGMAQJHVrZ6TngRAXTXPEfku4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DvPlBdiHDEC3XWiu0ygdQKuVCb/UzwBABYasbvUcCUDjUwCMZ5ALQL1SliGOVSVAzlMdcjPc/z+lFHR7SaMaQBoXDoRkwQFAcclxp3SwHEBqGD4ipgQBQEinrnyWpwVA662BrRIs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"21Axzt/EC0CcM6K0N+ggQF4QkZp2se4/yHvVyoTf+z9Qx2MGKqMLQEp7gy9MpiVA83aE04IX/T/4Nv3Zj7QbQK+ZfLPNTQRAnMQgsHJIG0DD0ytlGeIAQHicoiO5/ANAFVW/0vlw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dcjNcAN+A0CDwMqhRVYfQHctIR/07PA/I/jfSnaMGUDg1t081WEHQKyQ8pNqHyJAFOgTeZJ0BUAHmWTkLOwXQJZbWg2JewJAI74Ts17sG0BSYWwhyMEBQMKGp1fK8gdAh272B8rt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X0GasWi6BUByxFp8CuAhQGrZWl8klBZA3gIJih8DIUAHfH4YIXwLQCL99nXg3CVAmDRG66jqAUDXwFYJFucaQAa7YduiDAFAahg+IqYEGUBmvRjKifb9P5BOXfksDwVAGjVfJR875D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qz5XW7H/BkAbR6zFp8AaQJoJhnMNM9s/TRB1H4DUEUDPSe8bX/sNQJOpglFJfSVA76zddqF5B0CFd7mI78QZQJ57D5ccNwFAlE25wrucHEBCeLRxxFoAQAkbnl4piwNAL9/6sN6o3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qd4a2CpBA0BBfcucLksdQFSNXg1QGuY/m6xRD9Fo/T8cCMkCJrAHQKuy74rg3yNAZeQs7GnHA0BLWYY41oUYQCx96IL6FvY/p+hILv9BGECd19glqncCQOwS1VsDmwVA1J6Sc2IP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b9i2KLPB/z/Qs1n1ufoRQFgbYye8BOk/MXxETIlEHUDxKQDGMygHQJayDHGsSyVAzczMzMxMA0CfAmA8gyYcQLa5MT1hyQFAxuHMr+aAHEAdOGdEae8AQD4/jBAeLQNArWhznNuE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lUiil1HsBUA4+MJkqgAcQEoLl1XYDN4/uycPC7XGGUDgLZCg+DELQBY1mIbh8yNAmyDqPgCpCUCE2JlC5zUbQKpla32RUARACFVq9kBrHECthsQ9lv4DQOP8TShEwAlAXi7iOzHr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ug/R6A4iDEBzS6shcW8RQP8h/fZ14P0/jZyFPe1wCUDpfeNrzywQQCS5/If0+yRAmbuWkA/6/T+Y+nlTkeoUQKZh+IiYkvY/Yr68APuIGEDjpZvEIDD+Pz9vKlJhrARAtmXAWUqW3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nKIjufyH/T/KT6p9Ot4ZQLqgvmVOF/w/J4i6D0CqDkAU6BN5kjQNQG8Sg8DK4SVAXyS05VxKAEB324XmOg0WQJNvtrkxvfQ/ipP7HYpCF0AP1v85zJf/P8NHxJRIIgNAaNDQP8HF2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yatzDMje/z/on+BiRU0PQGQ+INCZtO4/FcYWghy0GEDpt68D58wLQOf7qfHSbSRAJXUCmggbBUCiemtgq+QcQHmSdM3kWwVAsfm4NlRMHUCyutVz0vv/P+M2GsBbIAVAy2Q4ns+A5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wAmFCDgEEUADfSJPks4bQOo+AKlNHAFAx7q4jQYQGkBHWipvR3gMQNEi2/l+yiVAHLEWnwJgBECxijcyj1waQA+0AkNWN/A/097gC5OJF0AQWDm0yHYBQC+Lic3HNQRAQyCXOPJA2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fhghPNq4+j95AfbRqasEQH46HjNQmfA/CFVq9kArDEAKou4DkNoKQNejcD0KdyRA1bK1vkhoAkBo0NA/waUWQHhF8L+VrAJAQpWaPdBKGUAkKH6Muev8P9DtJY3RegJAZkmAmlq25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y3rCEg/oDUAHtkqwOBwfQPlJtU/H4wZA2PD0SlnmKkDluFM6WH8KQEymCkYl9SRAv2A3bFvUAEApXI/C9QgYQA2reCPzSPY/IZOMnIU9GUAIILWJk3v/P6mHaHQHMQVA6xotB3qo4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wp4Hd2ftAEBsIchBCVMcQFhVL7/TZO4/aoe/JmtUAkBhw9MrZVkPQNBE2PD0CiZARYE+kSfJAUAYldQJaMIXQAYN/RNcLPo/uarsuyIYF0BSRIZVvJH/P2N6whIPaAVAHD9UGjGz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eqUsQxzrB0AKLlbUYKogQGLWi6GcaABAL4Zyol1lE0AFxY8xd20LQBiV1AloIiVAdy0hH/Rs/T/Ox7WhYvwVQCAkC5jArf4/D7QCQ1bXG0CZZOQs7CkDQKzKviuCfwVA6e+l8KDZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lWBxOPNrBEDzqzlAMKciQKLw2To4WOg/eXWOAdlrDEDqCUs8oOwKQOJYF7fRgCRAUWuad5yi+j8zUBn/PiMWQAjm6PF7WwRAZCMQr+sXHECDwMqhRfYCQJusUQ/R6AVAfQT+8PPf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yjLEsS7uAkAqb0c4LfgVQNEfmnlyze4/roGtEizOBkDD2EKQg5IGQO1kcJS8+iNAJO6x9KFLB0CX/5B++1oaQPw1WaMeIvU/8gwa+ie4GUBiFW9kHvn9P9Ei2/l+qgVA7bYLzXWa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DVTGv894BEDJcad0sE4iQIHs9e6Pd/Y/CFqBIaubCEDSHcTOFHoPQAu1pnnHqSVARG6GG/B5A0CTUtDtJW0bQMAhVKnZA/s/Jsed0sF6FEBIG0esxecCQJSHhVrTfAVAnWhXIeUn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gv+tZMfGAkCu2F92T94kQCDURQplYeI/+Db92Y+0EkAJbTmX4uoIQJM6AU2ELSRAqfbpeMxABEAFo5I6AQ0aQLGKNzKPPANAa2XCL/XTHEA0orQ3+EL8P9PB+j+HOQNAiWLyBpj53z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M23/ykpTB0D20akrn+UGQD24O2u33fM/1T4djxmIG0Csrdhfdo8MQIMvTKYKRiVA0XR2MjjK/z857pQO1t8XQKshcY+lD/s/ww34/DBiFkAFi8OZX83/Pz5cctwpHQNApMFtbeH54D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xOv6BbshAkBTeTvCaYEcQCHlJ9U+nfM/lfHvMy4cDUBcrKjBNMwLQNPe4AuTaSRA9dbAVgmWAEC5iO/ErBcZQKA3FakwNvs/YM0BgjnaGkDMQGX8+wwAQOC593DJcQJAb4EExY8x3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ap8fRgiPBUBI4XoUrgcbQAk4hCo1e9s/hiAHJcw0BUA0uoPYmcIKQMx/SL99HSNAblFmg0zyAUDkTulg/Z8aQAwfEVMiCQJAngyOkldnGUC8rl+wG3YBQAPso1NXfgdAe9tMhXgk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oijQJ/JkEkADlfHvM24PQDT0T3Cx4gNAg1FJnYCmGED9TShEwKEQQAu1pnnH6SZAEw8om3JFBkCm8naE06IcQJ4MjpJXZwJAKzBkdavHGUBd+SzPg3sCQLg7a7dd6AlATg00n3M35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"06QUdHuJFkAKSzygbMofQHehuU4jLQlAAtTUsrW+C0DnAMEcPX4PQKYKRiV1YihAlBPtKqS8B0CgNxWpMLYbQHldv2A3LAdABwjm6PFbGkBV+3Q8ZiABQBGN7iB2ZgpAo5QQrKqX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r+sX7IYNFkCXOV0WE3sjQLPNjekJCw1AKbNBJhn5DEBIv30dOGcPQLMMcayLuyVAuwopP6l2BUCVmj3QCgwYQOYF2Eenrvs/tDwP7s56F0DgufdwyXEDQGtI3GPpgwZAmdamsb2W4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fNXKhF8KEUCuDRXj/I0QQC/APjp1Zfs/PBQF+kQeAkCL4H8r2fEOQM07TtGRXCVAd9uF5jpNBkAs1JrmHWcZQJMYBFYOrfs/Ieo+AKmtGEBxyXGndLACQKvsuyL4nwFA3q8CfLd53T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BCFZwATuDUDQ1VbsL5smQODzwwjh0QVAf6SIDKu4B0B3+GuyRj0PQNPe4AuTaSRASOF6FK4HB0CBeF2/YLcaQGQGKuPfZ/Y/Df0TXKxoGEDAPjp15bMCQLJoOjsZHANAwf7r3LQZ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Afvo1JVPBUAi/fZ14HwnQJg0Ruuo6uA/Dmd+NQfIFEDRItv5fmoOQC/dJAaBNSZAr1qZ8Et9BEDGUE60q7AdQIOG/gkulgJA5bM8D+4OHEBAh/nyAuz+PwCRfvs68ARAQC/cuTBS5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z/LNNjcmDkAAUps4uV8YQCh+jLlrif8/6j4AqU3cF0C/mgMEc/QQQMGopE5A8yZAlKRrJt/sB0BCW86luAoZQGZOl8XE5gRA+wW7YdsCHUCTOgFNhI3/P+l942vP7AJA2lTdI5ur4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MxtkkpGzCUAk7rH0oQsfQFq77UJznQNA+Q/pt6+jEkBlpUkp6HYGQKbQeY1d0iNAX5hMFYwKBkAWTWcng+MaQL9DUaBP5Pc/MJ5BQ/8kF0B7MZQT7SoDQFIP0egOIglA8icqG9bU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FhObj2vDAkCQTl35LC8bQMbhzK/mgPA/UBn/PuPC+D+aJQFqatkLQE2EDU+vVCRAr+sX7IatAUD+mqxRDzEZQGIVb2QeefI/9YQlHlC2FkCOI9biU8AAQII5evzeJgVAEynN5nEY5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7l9ZaVJqGkBA+5EiMmwiQL99HThnJCdAQDBHj98bG0B+NQcI5igKQJ+rrdhfFiVAGsBbIEGxBkBYrUz4pR4bQCU7NgLxugFAA3gLJCjeGkDpmsk321wAQDgyj/zBQAVAhQoOL4hI3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Bhz1xLSIkCh1jTvOIUkQDpY/+cwPxFAu0T11sB2GUCOO6WD9X8PQMuhRbbzPSVAMjhKXp1jA0C1N/jCZIoaQKVJKej2Evs/Arfu5qkOGkDqz36kiAz+P6J/gosV9QRAGRu62R8o5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WvW52oqdIUDIzXADPv8gQL4wmSoYlSlAxY8xdy0BJ0BQjZduEgMMQIv9ZffkgSZAgPEMGvonBEAbEvdY+lAaQC4EOShhJv8/Brth26JsF0CafLPNjWkBQBe86CtIcwNAwvo/h/ly5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gQncuptnA0Dwv5Xs2NgiQBGq1OyBVvU/YKsEi8OZDkBvZB75g8ENQC0hH/RsdiRAUaBP5ElS+j9zaJHtfL8WQCPb+X5qvPc/KowtBDlIGkBSuB6F61EDQK1M+KV+XglAkrBvJxFh5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y4Rf6udNAUDDR8SUSJIgQGvVrglpDe8//7J78rBQCEAe4bTgRV8JQEVHcvkPaSVAGa2jqgniAkCU3je+9qwYQBueXinLkPo/NZiG4SNCGUCtNCkF3Z4BQAzqW+Z02QhAPulEgqnm5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uDtrt12oCUBslstG5/zGv9NqSNxjqQlAxyk6ksvfKkD0iTxJuqYRQBrAWyBBsSdAI6Et51LcCkD5SbVPx4MbQFfrxOV4hes/UYiAQ6iSFkAIjzaOWEsBQPsioS3nUgZALskBu5o84D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WOcYkL1eB0DzAYHOpE3kPyf3OxQF+gRAnKIjufxHJEDUK2UZ4jgQQF3+Q/rtKydA9aEL6ltmCkCZ9WIoJxocQDJVMCqpE/U/GQRWDi3yFkAXK2owDUMBQJYJv9TPmwZAtK1mnfF93z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hSUeUDZl8D/PZtXnaisIQOo+AKlNXAFAqB3+mqyRFkCH4SNiSqQKQFGgT+RJkiJAbeLkfoeiBEARAYdQpYYfQF+1MuGX+vQ/lialoNtrGkBvnuqQm2H+P8zR4/c2vQVAn69ZLhud4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5pZWQ+Ie8r+IEcKjjUMbQJ8CYDyDBhVAGLK61XMyFEABh1ClZg8JQJqZmZmZ+SRADmd+NQcICkA0ETY8vTIaQAA6zJcXYAZAUb01sFWiHEBeonprYKsCQMDsnjws1ARAttsuNNfp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5X6HokCf8b8N4C2QoEggQC0JUFPL1h5AucK7XMT38D8DQ1a3ek4NQLUV+8vuKSRAxxFr8SlAA0A8vVKWIY4bQDXvOEVH8vk/DHbDtkUZG0DMQGX8+wz+PznRrkLKTwVA5pKq7Sb44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dR+A1CZO9z+E9X8O8+UaQFIP0egO4ghAVpqUgm7vDUDq7GRwlPwJQOcdp+hILiZA/kP67esAA0DJsIo3Mu8XQNr+lZUm5QZAdsO2RZmNHECpnzcVqfABQJp3nKIjOQZAyeU/pN++5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D6IQXEDDqj+dgCbChkcaQEd3EDtTyBlAEoPAyqGFC0AFacai6YwQQOqVsgxx7CRAkPeqlQm//z9Ol8XE5mMYQDKP/MHAMwNAfhghPNpYHkCEEmba/pX9PyWS6GUUCwNAL8GpDyRv4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hA1Pr5RFFUAIclDCTBsbQMNHxJRIwhZAlN43vvbMAkBhpu1fWSkJQFkXt9EAniRAN4lBYOUQB0AlI2dhT7saQAsMWd3qOfk/miUBamq5FkCPxwxUxj8CQDliLT4FgAdABDdStkha5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9tGpK58FEEB6jV2ieqsiQJ2dDI6S1/o/8fRKWYZYJUBUdCSX/9AJQNGRXP5DOiVAFeP8TShEBUAtPgXAeGYYQIums5PBUfc/dAzIXu8+FkCGcqJdhRQEQEJD/wQX6wZA2uOFdHiI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9x4uOe6UCkDk9zb92b8gQBVXlX1XBAFALgQ5KGEGH0D36XjMQOUJQE7RkVz+oyRAsHJoke18/z/JHww89/4WQMRfkzXqIfg/gpAsYAIXFUAfSx+6oL4DQEj+YOC59whA0hvuI7cm4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"roGtEiyO9z/DgZAsYKIcQI1+NJwyt+Y/11HVBFF3/D+TNeohGh0HQF4R/G8lqyNA5US7Cik/+T+OI9biU4AXQA4V4/xNqPs/davnpPetGkCE2JlC57X+PxsN4C2QIAJAqdpugm8a5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ho+IKZEEA0B0DMhe7y4hQJ2AJsKGp/Q/KnReY5foAEDRkVz+Q3oMQA8LtaZ5JyVA7j1cctxpBEAP7s7abbcYQOLplbIM8QBA6bevA+esGUDE6/oFu6EAQD+RJ0nXjAdAnIaowp9h4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4jsx68XQ9z8OFeP8TYgeQNxGA3gLJAlAiV5GsdxSDUDSqSuf5bkIQLsnDwu1ZiRAdv2C3bCtAkA/kSdJ1+wbQERMiSR6mfo/LVvri4S2GEDjqrLviuABQN0kBoGVwwJASKMCJ9vA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gq0SLA5n3L8+syRATU0XQDyDhv4JThhAz2bV52rLEEBpqbwd4VQQQAK8BRIU3yZA+ptQiIDDAUCPpQ9dUP8XQGTMXUvIh/s/lrIMcaxLF0Av+grSjEX7P/oK0oxF0wRA6WLTSiEQ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jpJX5xiQ5b/o9pLGaJ0WQMA+OnXl8wtAryXkg54tF0B1kxgEVo4OQGsr9pfdcyVA8fRKWYb4AUDopPeNr50ZQJKWytsRzvE/pTFaR1XTFEC05VyKq8oAQKJdhZSflANAGysxz0pa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iKBq9GqAzj+8XMR3YnYdQLU3+MJkihZAL6hvmdNl8z+q8dJNYhAFQC457pQOFiNAE7h1N0/1AkB+dOrKZ/kYQH0iT5KuGfo/TIkkehnFGkBjesISDyj+P91e0hitYwVACi3r/rGQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8PlhhPBo8T8rGJXUCSggQFLt0/GYYRFA65Cb4QY8DUB5Bg39E9wGQHnpJjEI3CNAoaF/gosVA0B2cRsN4G0bQGLzcW2omP4/bCbfbHODGkAfhetRuB4BQJPGaB1VDQdAZhGKraDp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E36pnzeVA0B7MZQT7QoiQFMiiV5GsQRAzemymNg8BkD0N6EQAQcLQLoUV5V9VyNAbRyxFp9CAEBtkElGziIbQEGC4seYu/s/mkLnNXbpGUDPg7uzdtv+P9pyLsVVJQVAwTqOHyoN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UTHO34RC+z/KbJBJRr4gQLG/7J48DCtAymyQSUaOA0BVMCqpE9AOQFbxRuaRbyJAV2DI6lbPAUBNofMau8QaQJbs2AjEawFAb9Of/UhxGkCjI7n8h/T9PxpuwOeHEQZA1GTG20qv4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4gZ8fhhhAkBIv30dODciQPn3GRcOBPI/u0T11sBW/T8cJa/OMSAFQCh+jLlraSVAcHfWbrtQB0ABE7h1N+8aQMb5m1CIgPw/HEKVmj3QG0AE4nX9gl0CQHXlszwPrgRAMsueBDZn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l+Kqsu+KBkBEhlW8kRkWQGxDxTh/E/E/h/4JLlbUHkD4Nv3ZjxQKQFr1udqKfSVA8nub/uxHAkDQDyOER/sWQOxMofMau/M/P1JEhlWcFUDwMy4cCMn7P9sWZTbI5AVATpmbb0T34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0NA/wcVKBUBmZmZmZoYtQPGg2XVvxeI/mRJJ9DIqFEBa8KKvIA0IQIRHG0eshSNAgPEMGvpnBECtLxLacg4bQMDnhxHCYwZAsMka9RBNH0AHQrKACRwEQHe+nxovnQNAxNLAj2rY4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RpT2Bl8YBEBXsmMjEG8TQHIycasgBtM/Bg39E1wsD0CAfXTqymcJQAaBlUOLTCZAGZC93v2xBUBj7lpCPsgYQEbrqGqCKANAB/AWSFD8GUDIDFTGv8/+P+IjYkokEQdA+wJ64c6F4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n47HDFQGBECLVBhbCLIWQD7NyYtMwOo/C0YldQKaEEDLnC6LiU0JQGfV52ordiVAX+/+eK9aAUAvF/GdmLUYQEcgXtcv2Pw/kdCWcykuHEBKe4MvTCYAQFABMJ5BAwZAMiB7vfvj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AAAAAADABkC3ek5637gdQJpDUgslk+Y/t3pOet/4+z/EfHkB9lEHQDHO34RCtCJAlE25wrucBUDYDdsWZXYZQMwolltaDfw/DAdCsoBJF0BT0O0ljdEAQF4R/G8l+wZAQe+NIQA45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jgbwFkgQAUBI4XoUrkcWQLpOIy2Vt+k/sOYAwRy9D0ADPj+MEN4KQIlBYOXQwiVAiuWWVkPi+z9KtU/HY+YVQHNLqyFxD/4/+fcZFw6EG0CjHqLRHYQCQCKrWz0nPQdAi+JV1jbF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EoPAyqGFBEDQ1VbsL3skQPZdEfxvJe8/2qz6XG0FAEDUZTGx+fgKQNIA3gIJqiRAmYHK+PeZ/z9NhA1Pr5QXQBEBh1ClpgFAd9Zuu9CcHEDVBFH3AQgAQNAn8iTpGghABduIJ7sZ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LudSXFX2BkD0FaQZi0YSQO55/rRRneI/K9mxEYgXB0B1H4DUJg4JQBQ/xty1RCRAQKTfvg4cA0B0QX3LnA4ZQD4FwHgGzQJA3/jaM0sCHEAFhqxu9RwCQCqMLQQ5KAVASWQfZFkw5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sylXeJfLBkDr4jYawPsnQP7tsl93OuY/MEeP39u0EUCw/s9hvjwNQMsQx7q4jSRAzlMdcjMcAkCdnQyOktcaQDs2AvG6/vo/zemymNi8GUBXsmMjEK/9P1GIgEOokgRAEcXkDTBz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jC0EOSghBkD5g4Hn3qMbQEut9xvtuOg/x2gdVU3QDEB0tRX7y24FQJhMFYxKSiRAcEIhAg4hBkDXL9gN25YaQHy45LhTOgFA9u6P96pVGUB65A8GnrsAQB5tHLEWXwRA+KdUibK33z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w/ARMSVSAECXytsRTsscQM42N6YnrPQ/IqZEEr1MBkCYUSy3tFoFQBSuR+F6FCRAu5unOuRmBEBbJVgczjwcQLtE9dbA1gBAyjLEsS7OGkDNr+YAwRwAQP7UeOkmMQhAuRtEa0Ub4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uYjvxKyXAkDnUlxV9v0gQP0Ux4FXy80/+Db92Y+U+D8hWcAEbp0HQFZ9rrZivyRAJXoZxXJLAkDon+BiRa0bQL0d4bTgxQBAmZ6wxANqGkDUYBqGj4gCQDm536Eo0AVArAMg7urV4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H9rHCn6b5j+/K4L/rcQcQMgHPZtVvytA2QjE6/qFB0Azbf/KSpMNQCo6kst/6CRAXANbJVhcBkDE6/oFu+EZQNdR1QRRd/w/2gOtwJB1GUBSSZ2AJsIBQDzaOGIt/gJAG5sdqb7z4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B7ZKsDgcDsA4Sl6dY8AWQF8M5US7ah5AgSbChqe3IEBLPKBsytUJQBzr4jYaQCVA81SH3Aw3/j9GtvP91BgZQLsnDwu1JvY/zhlR2hu8F0DePNUhN8MAQKCJsOHplQhAyhmKO97k5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PE7RkVz+AcBGJXUCmqghQHyb/uxHqhVAt0WZDTJJ/T/saYe/JmsMQLhAguLH2CNAxjNo6J+gBUBq2VpfJDQZQPphhPBoY/k/nL8JhQj4GECs/3OYL28BQFfPSe8bHwZAZ3xfXKpS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uAGfH0aI/b86I0p7g98gQB2UMNP2rxZA9GxWfa52AUA9CtejcP0LQKyL22gADyRAObTIdr6fBUDm6PF7mz4ZQNjYJaq3hvo/GZC93v0RGUCEDU+vlGUBQMFu2LYoswZAe9egL7395D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xebj2lDxCEAyVTAqqXMkQBA7U+i8xvs/K01KQbdXCEAxzt+EQsQKQMzuycNC7SVAis3HtaFiAkDTE5Z4QNkaQHugFRiyugRAjKGcaFfhHUBBDkqYaTsAQNgN2xZlNgRAqTEh5pIq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mpmZmZkZ/z8JOIQqNfscQCmSrwRSYus/+FPjpZsEB0Ds3R/vVWsKQNZW7C+7xyVAS8gHPZtVBkAYPiKmRBIbQCQofoy5a/c/eJyiI7lcFkC8V61M+GUBQBToE3mSdARAzR/T2jQ25j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Iy2VtyPcC0AcfGEyVdAaQCRFZFjFm/8/6dSVz/L8BEBdiqvKvisLQBKDwMqhlSNAiBHCo40jCEDR6A5iZwodQLecS3FVWfI/Oul942uvF0DHndLB+v8AQBdIUPwY8wVAVMVU+gln5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sfm4NlSMB0DtKqT8pKogQEzD8BExJfI/+mGE8GhjAEAldQKaCNsGQMxdS8gH/SRAi1QYWwjyA0B7a2CrBGsaQEjhehSuR/8/N+DzwwgBGUA1JO6x9CEAQN/42jNLQgNA2EroLokz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nKIjufwHBkBgPIOG/ikaQA2oN6Pmq+Q/kx0bgXidA0B2cRsN4C0IQLfRAN4CiSNALH3ogvoWAEBcd/NUh7wXQJC93v3xXv0/27+y0qT0GkAZVvFG5pH+P2whyEEJMwNAy0qTUtDt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EFg5tMi2AkB5knTN5FsSQKkz95DwvdU/78nDQq1pFUAMB0KygIkAQARWDi2yfSNAkuhlFMut/z80SwLU1LIYQBv1EI3uIP0/EF1Q3zLnGUC37uapDrn9P0n0MorlVgNAx7yOOGQD4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MC/APjr1+z+dEaW9wfciQI+qJoi6jxJAryXkg55NH0BuizIbZBIRQKhXyjLEUSVATODW3TzVAkCIgEOoUhMZQErvG197pgFAxM4UOq9xGEDiOzHrxZABQN4CCYof4wRAU3jQ7Lq34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dnEbDeCtFEA57pQO1n8eQLR224XmWhFA2EenrnwW+T8lI2dhTzsPQLUV+8vu6SZA6X3ja8/sBkC5/If025caQE0ychb2tABAarx0kxgEHkB1zeSbbS4AQABXsmMjEAhAOL2L9+N25T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"blFmg0wyD0Acti3KbBAjQPfMkgA1tfs/QdR9AFIbB0Cz0qQUdPsNQD81XrpJ7CRA8L+V7NgIAUBPIy2Vt+McQOvFUE606wBAZyyazk4GG0AxthDkoMQBQMTOFDqvcQdAl/+Qfvu65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UBn/PuPCDkB/+zpwzlgjQJPGaB1Vzf0/2qz6XG1FB0CLw5lfzQEOQJm7lpAP2iRAHT1+b9MfAUCfceFASJYcQA0a+ie4WAFAiGNd3EZjG0B2MjhKXl0BQBJr8SkARgdADMufbwuW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dHtJY7SuEEAOMsnIWeghQDoGZK93//k/EmvxKQDGBUC/8bVnlsQNQHh6pSxDvCRA9Bq7RPXWAkAv3SQGgVUdQAH20akrH/4/FJZ4QNm0G0C6LCY2H5cBQJLoZRTLbQdAFAX6RJ6k5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5+PaUDGOBEB4YtaLoRwdQEc7bvjddOc/fGEyVTAq8T8/UkSGVXwNQEw3iUFghSVAI2dhTzt8CECamZmZmZkZQL4wmSoYVQBAyhr1EI1OGkCetdsuNNcBQOs56X3jqwVAcAZ/v5gt5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gxd9BWnGDUANN+DzwxggQBnKiXYV0v4/ayv2l91TCkBSmzi532EKQA3gLZCguCRAcvkP6bfvBUCVmj3QCqwbQHx+GCE8WvU/63O1FfsLF0DoMF9egP3/P/wdigJ94gRAaqSl8nYE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9UpZhjhWBkBkXdxGA3ghQMXIkjmW9+o/c4V3uYhvDEAfLjnulI4IQMdGIF7XvyNAeJyiI7l8/T9Oet/42hMYQAu1pnnHqf8/WkdVE0T9G0BgyOpWz0kBQNyAzw8jhANAHXV0XI3s3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y5eo3hqYDUCfjscMVIYgQPH0SlmGOPs/YDyDhv5JCEAWMIFbd/MPQDnWxW004CVA02pI3GPpBkBwmdNlMTEdQL/Uz5uKVPU/Dr4wmSrYGEBWn6ut2F8DQDrpfeNrzwZAYkhOJm4V5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"08H6P4e5D0BMw/ARMcUgQDRLAtTUcgdAUmFsIcjB8j8YsrrVc5IIQD0K16NwvSZAi/1l9+ShBkDZfFwbKiYcQGjLuRRXlfk/hc5r7BL1G0BUbw1slWABQEgbR6zFpwVAnIu/7QkS3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BW7dzVMdDkAdA7LXu08iQFZl3xXBPwZArS8S2nKu/T9SuB6F61ELQC6QoPgxBidAL26jAbwFB0Bf7/54r/obQEzD8BExpfw/je4gdqZwGkBs7BLVW4MCQD+RJ0nXDAVATPxR1Jl73z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qBjnb0LhAEAE/1vJjh0hQJ+OxwxURgtAEVMiiV4GEEDXwFYJFscJQAN4CyQo/iVAZ7gBnx9GAkAwL8A+OvUaQCveyDzyB/8/8fRKWYZ4F0DLoUW28z0CQP2C3bBt0QVAueF30y073z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zLT9KytN9D8fhetRuJ4mQEMEHEKVmgNAr1qZ8Es9FkCPjUC8rp8MQJ7Swfo/ZyNA9zsUBfoEA0B0RpT2Bj8ZQEd3EDtTaPw/ZCMQr+sXG0BszywJUFP/Pwe2SrA4HAJACJChYwcV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qFKzB1oBDEBau+1Ccw0gQBHg9C7ej+c/9u6P96r1HECamZmZmZkJQKvP1VbsryRA0csolltaBED3r6w0KSUYQJzhBnx+GAJADB8RUyIJGEBv9Zz0vvEAQJhuEoPASgJAjPZ4IR2e4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4zeFlQoqyD8qV3iXixgeQJAxdy0hHw1ACi5W1GCa8T9/MPDcezgMQHxhMlUwCiRAucfShy6o/j/bheY6jbQZQPd14JwRJfw/jSjtDb4QHUBA2ZQrvEsAQECk374OXAZAw9MrZRli4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bmk1JO6x9D/wUBToE3khQHV2MjhK3g5ACoDxDBr6+j8zMzMzM3MMQKVOQBNhQyRAjZyFPe3w/z+WCb/UzzsdQMRCrWnecQVA9wZfmEw1HUDNWDSdnUwAQJTeN772zARA7rH0oQvq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QiYZOQs7AkDw3Hu45BgeQPp/1ZEjnec/ngd3Z+22+T8Facai6WwMQLgGtkqwCCNA4UVfQZrxAECKAn0iT/IdQJKRs7CnHQdAOUVHcvlPHkDeyDzyB8MCQF8pyxDHOgVA4J9SJcre4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L/oK0ozFAUBoImx4erUjQPcGX5hMFQlAL6hvmdMlC0DJPPIHAw8IQK+UZYhj3SVAOjsZHCWvAUCIRncQOxMdQARz9Pi9jQVAhzO/mgMkG0AaqIx/n3EBQAiUTbnCewRAxY7GoX4X3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ym+9AcF3uL/ejnBa8JIhQKVrJt9sMwlAwt1Zu+2CDUDhehSuR+EMQOlILv8hXSRAEwoRcAhVBkC5pdWQuGcYQIvgfyvZsfU/ngd3Z+1WHEDRItv5fur9PxfUt8zpsgRAZ9E7FXDP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w/ARMSWS8r9n7bYLzbUXQBYTm49rIxlAdjI4Sl4dAkDdmJ6wxAMMQHZxGw3g7SVAkPeqlQk/A0DjNhrAW2AXQK2GxD2WfgNAisiwijeSFUCgVPt0PKYAQCOhLedSnAZAouwt5Xyx3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TRWMSuqE9T+8kXnkD4YZQPCK4H8r2fo/c4V3uYhPFUBnRGlv8IUKQPp+arx0EyVAD2JnCp3XAEAjvhOzXkwZQDhKXp1jQPM/Xi7iOzGLHkC8rl+wGzb8P5DaxMn9jgVA+SzPg7uz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rMq+K4L/BkCuDRXj/O0TQPhtiPGaV9s/c9cS8kGPFEBszywJUJMJQKMjufyHNCVA4iNiSiRRCECC4seYu9YXQEP/BBcragNAH7qgvmWOGEAijnVxGw39P38w8Nx7+ARA9WVpp+Zy1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d6G5TiOtBUAaFw6EZIEbQMGQ1a2ek9I/+rMfKSIDB0D5Tsx6MZQIQMSxLm6jgSVAnil0XmNXBkA0uoPYmQIaQBDM0eP3tgNAtAJDVrf6F0CC4seYu1YCQPQVpBmLZgJA6IcRwqON3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sdzSakjcAkBKXp1jQKYiQCswZHWr5+k/y/Pg7qwdAkB88rBQa5oIQPW52or9JSVAaJYEqKllB0C9HeG04AUbQGr7V1aa1AJAL4uJzcdVGUCGPe3w1yQBQD0K16Nw/QBArz+Jz51g3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tJPBUfJqCkBRMc7fhIIbQCMQr+sXbPw/yEEJM22/A0BM4NbdPFUHQPwYc9cSciRAsI9OXfnsAUBGJXUCmogaQBx8YTJVsPg/JxQi4BDKHEDNHmgFhqz5P1GlZg+0AgNA7bd2oiQk2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sD2zJEDtFEBgPIOG/nkgQJolAWpq2RJA3c1THXLzB0Dt9e6P92oPQCJseHqlLCVAhslUwaikAEBpjNZR1UQXQNuizAaZJAJA4lgXt9FgGUD0iTxJuiYFQOY/pN++TgZA6LtbWaIz5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mdNlMbG5CUC9UpYhjpUpQOUn1T4dDwNAnKIjufy3NUC9NbBVgoUPQNNNYhBY+SRA2/l+arx0/j8AOsyXF2AbQI8ZqIx/HwRA2UKQgxJGG0DXTL7Z5kYBQMed0sH6vwVAODEkJxM34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2NglqrfGDEAofoy5aykqQEJbzqW46gtAarx0kxhkLkDReY1dojoQQAYSFD/GnCVAXvQVpBmL/D8MPPceLhkcQKciFcYWQgRA48eYu5YQG0Bhw9MrZVkBQK5kx0YgngRAUwYOaOmK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5fIf0m9f8z/7IqEt5xISQG3n+6nxUgFAiIVa07yjA0Bhw9MrZdkIQO58PzVemiRAKld4l4t4CkCm0HmNXQIZQEcDeAskKPw/x2MGKuP/GkCnlq31RcL/P9mUK7zLhQRACHb8FwgC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ofgx5q4l8j/dQexMoVMSQCl5dY4BmQFAqvHSTWJQGkC8eapDboYKQCY2H9eGSiNAGvonuFgRBUDU8ZiBypgaQHhCrz+Jz9M/DLCPTl2ZFUB+AFKbOHkBQEkRGVbxxgZA+5Rjsrj/3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aNDQP8HFDEDV7IFWYFgjQJ/Ik6RrJhVAv2VOl8UkEUAyIHu9++MRQClcj8L1aCVAYwtBDkpYAkCIug9AarMXQCBe1y/YzQlAOnr83qbfHkA4Mo/8wUAAQPtcbcX+8gNAMJ5BQ/+E5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BW7dzVNdEEAebRyxFp8eQFXejnBa8AVAis3HtaFi9T+LprOTwREOQAWjkjoB7SVA7WRwlLy6AUC6oL5lTtcYQLg7a7dd6Pw/NrBVgsWhG0BOnNzvUNQBQC+Lic3HtQNA7fKtD+uN4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yjLEsS5uBEA8pYP1fw4UQMXKaOTziug/OBWpMLbAIEAz/n3GhcMMQGsOEMzREyNATDeJQWBlBUAj+N9KduwXQNR9AFKbeApA5pZWQ+IeHEAaFw6EZAECQEAwR4/fmwRA2QWDa+7o2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IbByaJGtBEAom3KFd/kKQIF4Xb9gN/A/9mIoJ9rlIUBR2ht8YfILQOgTeZJ0fSJANjy9UpZhBEATJ/c7FEUZQAWoqWVrvQVAhiAHJczUHUD0+L1NfzYBQGsr9pfdEwRACmmNQSeE3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MV9egH3UEUCtLxLacm4RQLHh6ZWyDPU/L26jAbzFH0Dg1t081eEIQC9uowG8FSNAYTdsW5RZBkDcnbXbLnQZQEM50a5CigZA2QjE6/qFHEBJERlW8UYBQOviNhrAmwVAw5rKorCL3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KJtyhXcZEUBangd3Z+0bQCRFZFjF2wpAdHlzuFb77z+wcmiR7TwHQBKgppathSNAbZBJRs7CB0BCsoAJ3JoYQJTZIJOMXAFAmC8vwD7aGECXi/hOzHoCQE2h8xq7hARA4zYawFsg3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2Ls/3qvW9j/cSxqjdVQcQM3oR8Mp8+E/kj8YeO69/z97iEZ3ELsCQCVdM/lmuyFA6N7DJcddAEDlszwP7k4bQDNQGf8+Y/o/Njy9UpZBHECJJHoZxfL+P2Qe+YOB5wRAFw0Zj1KJ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VwkWhzM/A0Asn+V5cLcaQMMoCB7f3tg/N45Yi08B/D8czvxqDhADQIV3uYjvJCFA5iK+E7Pe/T89LNSa5t0aQNvEyf0OBQBAyY6NQLxOGkBlx0YgXtf/P2R1q+ek9wRAlddK6C4J5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bagY528CDEDkDwaee88cQHxfXKrSFu8/PUSjO4gdA0DRP8HFitoOQPJBz2bVJyZAU3k7wmlBB0DK4Ch5dc4aQChhpu1fGQFAN+DzwwiBGkACK4cW2Q4BQGdhTzv8NQRA1SE3ww144D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"81SH3Ay3B0AGu2HbogwJQFOzB1qBIfQ/8kHPZtVnJ0AVV5V9V4QNQJjdk4eFGiVAasGLvoJ0CkB2MjhKXp0dQNdppKXy9gBA7MA5I0p7GkArweJw5lf/P9c07zhFxwNAmZ1F71TA5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W5TZIJOMBUAr9pfdkycmQC0+BcB4xgdApI0j1uIzFUAY7IZti3ILQJ0Rpb3BFyVA4Nv0Zz9SAUCSy39Iv/0XQKCJsOHpVQBATFRvDWxVGkCWz/I8uHsAQFSM8zehUAhAHXHIBtLF3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/aTap+PxAkDi6ZWyDLEkQBDM0eP3Ntw/04cuqG95FkD8qfHSTaILQBe30QDe4iVA1ZXP8jx4A0AMsI9OXbkaQF+1MuGXugBASu8bX3sGG0A5tMh2vp8BQDdPdcjN8AVAyqfHtgy44D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jkC8rl8wCED9h/Tb1wElQKAy/n3GBe4/bM8sCVATF0Bm2v6VleYKQOXyH9Jv3yVAxxFr8SnABUBzgGCOHv8bQFTjpZvEYABA14aKcf6mG0Bl5CzsaYcBQA9iZwqdVwZA5rLROT/F4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u7iNBvDWBkDxKQDGMwgjQKEt51JcVek/ujE9YYmnGkCjryDNWLQKQMcpOpLLPyZAgQncupvnBkAWak3zjjMaQNsWZTbI5AJATUpBt5d0G0Bt4uR+h+IAQOnxe5v+LAZAsMivH2KD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"knnkDwaeDEDfN772zBIZQCqMLQQ5qAZAe0563/iaCkDaIJOMnEUQQD/G3LWEnCVABWnGoulsBUDqz36kiOwZQLkZbsDnBwFALEgzFk3HGUBoImx4euUAQNIYraOqyQFA198SgH/K4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rrZif9k9D0CRRC+jWE4XQO9VKxN+qRJAaR1VTRBlIEAUs14M5QQLQECk374OXCVAQX3LnC7LA0D/BBcranAYQEvIBz2bVfc/s3vysFCLGECrz9VW7G8AQGJnCp3XWARAfjZy3ZRy4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j+TyH9KPGkCmm8QgsNImQEGasWg6uw9AkGYsms5uHkDarPpcbQULQIKo+wCkxiNAA+yjU1e+/j9KRs7CnnYYQDsBTYQNDwRAgPEMGvqHHUDcRgN4C2QBQOxph78mKwhABD3UtmEU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xy5RvTUw9j+GWtO841QkQPzjvWplQvo/HhZqTfOOE0BQ/Bhz1xIQQNCzWfW5OidAsAPnjCitAUCKsOHplfIWQOIeSx+6oPs/oijQJ/IEGECHbYsyG6QCQMSZX80BggZAn8ppT8m55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aNDQP8FlFUAyrOKNzGMgQPuWOV0WMxlArmTHRiDeA0BbfAqA8QwIQB6n6Egu3yRArcCQ1a2eAUDnOo20VN4ZQEDBxYoaDAVAlLw6x4DsHUDzjlN0JJf/P2dEaW/wxQRAtd5vtOMG4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S5NS0O3FHkBJS+XtCAcZQJ/leXB3dhRAWipvRzhtBUCc3O9QFKgJQLh1N0916CJA9wFIbeIkBUCyYyMQr2sZQNz0Zz9SxPc/8L+V7NgoGECqK5/leTABQPPIHww8NwdApnud1Jcl5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pu3w12StGUC3Yn/ZPckgQC9RvTWw9RtANSTusfShD0BzuiwmNj8RQNc07zhFJyhAak3zjlN0AUBOet/42hMaQK4SLA5nfvY/4QuTqYKxF0BLyAc9m1UAQK7wLhfxXQJArRQCucSR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4UVfQZpxDUDKFd7lIk4hQMOedvhrsv0/valIhbFFBEDEQq1p3vEGQOaRPxh4PiFAuqC+ZU5XBUAiq1s9Jx0ZQJdWQ+IeCwFAXTP5ZptbG0DnUlxV9l0BQDVeukkMwgVAJZaUu8/x5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1bK1vkioE0D2I0VkWAUTQOwS1VsDWwpAyAc9m1XfJkB3EDtT6BwRQKH4MeauBSZAk4ychT2tBkAqHaz/c/gXQD1JumbyTf0/aTUk7rEUGUDKT6p9Op7/PyB7vfvjvQJA4gM7/gsE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GJgVinQ/0z8qGmt/Z3vMPzbIJCNnYQVAzLT9KystFkAh5SfVPp0JQO7rwDkjKiVAIEYIjzbOAkCrPldbsd8dQC7iOzHrRfU/tFn1udrqFkB3FVJ+Uu3/PwVu3c1T3QVAY7ZkVYSb3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zLT9KytN7D/kDwaee/8jQJeL+E7MyiFAE9VbA1ulDEALRiV1ApoLQD81XrpJLCVAgsr49xmXBED9gt2wbVEbQAZHyatzDP8/2jhiLT4FGUByM9yAzw8EQK00KQXdXgZAaDwRxHk45j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zojS3uALB0AdyeU/pL8UQGngRzXs9+U/TS1b64vEDEAE/1vJjo0QQCh+jLlriSZAiSR6GcWyBUA5C3va4Y8ZQAspP6n2afk/pyIVxhaiGUABamrZWt/9P3lYqDXNOwZA8ItLVdri4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vR3htOBFBUCbVZ+rrTgSQLfrpSkCnOQ/bFuU2SATEUBnCp3X2GUPQLFQa5p3nCZAipP7HYqCBEDXNO84RWcbQNrhr8kadfo/OsyXF2A/GkAOZ341BwgCQDSAt0CC4gZANpIE4Qoo5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/bypSIWxAEAYPiKmRHIQQK71RUJbTgNA8piByvi3EkCIY13cRoMLQAN4CyQo3iVAfVwbKsb5BEBl/PuMC2cYQJusUQ/RaAFAhlW8kXnkHED9ag4QzNEBQG3KFd7lYgVAwFq1a0La4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OKEQAYdwF0BKQbeXNGYgQIf58gLsYwtAK8HicOaXDkCMuWsJ+SAMQHzysFBrOiRA1A5/TdboAUB6GcVyS8saQHOiXYWUH/c/2ZQrvMsFFkA6HjNQGf/9P3v3x3vVigRAFyr/Wl455j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"evzepj97GUD7OnDOiDIWQHztmSUByhBAFsH/VrIDHkBmZmZmZuYKQMsQx7q4LSVAmQ0yycjZAECL4H8r2dEZQFXZd0Xw/wJA2XdF8L81G0BGfCdmvZgCQJlH/mDguQpAEsDN4sXC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pn7eVKRCGEA7cM6I0n4TQNnO91PjhRVADyibcoX3HkCBCdy6m+cKQKMjufyHdCVATaHzGrtEAUD+JhQi4LAZQGdhTzv8dQJAzhlR2hucG0Cu8C4X8V0CQLh1N091iApAI59XPPXI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tnrf+Noz8T+ny2Ji8zEdQNu/stKklPc/4WJFDaZhCUDGpwAYz2ANQNIA3gIJSiZAxSCwcmiR+z+H3Aw34JMXQBSuR+F6lPQ/Sgfr/xzGGEAPuRluwCcBQCLDKt7IvARAuMt+3elO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7WRwlLx6DUD9pNqn4zEdQIJzRpT2Bvc/rvAuF/EdAUD3deCcESUOQHWTGARWTiVAxr/PuHCgAUArE36pn1cWQCqRRC+jWPk/HhZqTfOOFkCm7V9ZadL9P7JoOjsZnAZAb0vkgjP44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XvQVpBkL9z+4QILix/gXQE2EDU+vlPE/QbyuX7AbCEBhiQeUTTkGQAvSjEXTKSNAbkxPWOKBBUCnkZbK21EYQJBmLJrOTv0/85Nqn47HHEBuTE9Y4sEAQFJJnYAmAgVAfTz03a0s3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"flcE/1upEkAAjGfQ0L8ZQJM6AU2Ejfw/rir7rgj+BEDejnBa8OINQF8pyxDH+iRAwyreyDzy/z+pnzcVqZAaQCS5/If0WwBAFOgTeZJ0HEBmFMstrUYDQPOTap+OxwZAnKbPDrgu6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8S4X8Z0Y8j9qpKXydqQgQBzTE5Z4QPk/qTC2EOSgBkCTjJyFPe0PQIqO5PIfUiZAWP/nMF+eA0DaOGItPsUWQHIW9rTDHwJArir7rgieG0CeDI6SVycDQI1iuaXVEApAv9cQHJfx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EF1Q3zJnAED2RUJbzoUaQNjYJaq3phFAdnEbDeDtAEBHIF7XLzgQQFMFo5I6ISdAkgVM4NadBUBmSYCaWvYXQDpAMEeP3/o/NlmjHqJRG0BJopdRLHcBQNgqweJw5gdACtl5G5sd5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1EM0uoNY8z8qqRPQRHgkQPbRqSuf5f0/kuhlFMvtBUBoXDgQksUPQI0o7Q2+cCVALuI7MevF/j+FtpxLcXUbQOKS407p4Pk/Qgkzbf+qGkBRFOgTeRL/P0inrnyWpwRA81oJ3SXx4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xJRIopfRE0DxnZj1YsgVQNE/wcWKGgFAX16AfXRqCUC+amXCLzUMQDPEsS5u4yVA7wOQ2sRJCEA429yYnlAZQEZCW86luPw/o3VUNUEUGEBJnYAmwgYDQFYrE36pHwZAFLGIYYcx5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k+NO6WB99j95I/PIHzwgQLL0oQvqW/c/pWsm32xzBkDSHcTOFHoLQD/G3LWEXCVAn7DEA8qmAECtad5xis4WQOdvQiECjvM/G0zD8BGRFUDPa+wS1dv/P8U4fxMKkQNAWOGWj6Qk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RwN4CyQoD0A/OnXls/wXQB+duvJZnvE/3BFOC140D0CDo+TVOQYNQEvIBz2b1SRAbM8sCVATCkBTP28qUuEfQBvYKsHi8AFA9ihcj8KVHkB47j1ccpwAQPhT46WbhAZArmGGxhNB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h22LMhvkB0ApP6n26VgdQBKGAUuuYuM/OGdEaW9wFEBau+1Ccx0MQM/3U+OleyZACyQofoy5BUDRdHYyOIodQP7UeOkmsQNAmdNlMbH5G0A+P4wQHm38P7yReeQPBgZAGtzWFp4X4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4pLjTulgCEBMGqN1VNUaQGCsb2Byo94/1q2ek973GEAmGTkLe9oMQGiz6nO19SVAMLsnDws1BkA+eVioNW0dQNGWcymuqgNA+KV+3lRkHUDePNUhN8P8P9UmTu53qAVAsvFgi90+4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5zV2ieotA0ATChFwCFUQQAX9hR4xetc/cSAkC5jADkCInSl0XuMHQCpvRzgtSCNAR1UTRN1HAUAz+WabG/MYQNZW7C+7JwFAIeo+AKmNF0DUK2UZ4pgBQHV2MjhK3gRAR3L5D+k34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NGjon+DiBkD1SlmGOFYCQCcxCKwcWto/JlMFo5KaJkCh1jTvOMUGQNxGA3gLRCRALNSa5h3nB0A2AvG6foEaQO/Jw0KtKQNAwOyePCz0FUDMYmLzce0CQAqd19glagRAlXzsLlDS4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vyuC/63kCEB9lufB3XkXQHgmNEksKd0/8bp+wW6YF0C3tBoS9xgMQBgmUwWjEiRAvJaQD3p2CEC1N/jCZEodQLJoOjsZXANA5fIf0m+/G0A1XrpJDEIBQEUSvYxiOQVAPIcyVMVU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gPEMGvrnBkC/fR04Z0T1P0s8oGzKFd8/BcWPMXcNJ0Ae/pqsUU8FQFRSJ6CJkCRAqtTsgVZgCUBgyOpWz0keQA4yychZGAdA9BWkGYtmHEDswDkjSnsDQNatnpPetwZAD5vIzAWu5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OUVHcvnPBECT407pYH0UQHEhj+BGyto/TRWMSuqEJ0CRJ0nXTL4KQHZPHhZqjSRAUvLqHAOyBUDqCUs8oMwZQF2Kq8q+KwRAo68gzVj0HUD1LXO6LOYBQGoYPiKmhAZARN/dyhId5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ap8fRgjPCUC+2ebG9MQVQBoWo661d+4/nwJgPIP2I0DTMHxETMkKQEdy+Q/pdyRAnNzvUBSoB0DYKsHicAYcQMaFAyFZQAJAZk6XxcRmGUANq3gj88gAQP1NKETAIQVAg9pv7URJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nS6Lic1H/j+iC+pb5vQTQFXcuMX83OY/Bp57D5c8GkAw2A3bFmUGQCveyDzy1yNAyJi7lpCPBUDM7snDQg0ZQNDtJY3Ruvk/YOrnTUXqGEAgY+5aQv4CQIWxhSAHJQVAs2Dij6LO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FO0qpPzkBED4wmSqYNQRQLrcYKjDCt8/4C2QoPjxEUCnBS/6ChIGQAN4CyQofiRAnrXbLjTXAUD430p2bCQZQNuF5jqNNPs/2XxcGyomGkAiT5KumfwDQI82jliLDwZAcZLmj2nt4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"saIG0zC8BECh+DHmrsUlQAmp29lXHuc/ppvEILAyFUBlcJS8OkcOQHE9Ctej0CRAlUiil1FsBEDzVIfcDHcbQInS3uALEwRAIo51cRttG0C94xQdyeX9P7yuX7Ab9gRAexNDcjLx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wi/186biA0DqlbIMcUwmQNEi2/l+auc/TRWMSupEFkDMXUvIB30PQEGC4seYmyRA8MSsF0P5A0CkGYums7MbQGVwlLw6RwRAu37Bbtg2G0CH4SNiSiT9P6UxWkdVEwVAEVSNXg1Q5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jswjfzCwCEC+wRcmU4UXQBvYKsHicPs/vK5fsBu2+j9QGf8+44IOQF6iemtgWyNAEXAIVWp2/j/JPPIHAy8aQJUrvMtFfPU/P4wQHm18FkBHdxA7U2gAQN5xio7k8gRARfRr66f/4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3nNgOUIG4j8dOGdEaW8iQOkrSDMWDQRAg24vaYwWBkDMRXwnZv0LQAmKH2Pu2iVAOgZkr3c/BkAMzXUaaakZQDyInSl03vw/ATCeQUMfGEDIBz2bVZ/7P5ijx+9tOgZAkZxM3CqI4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2/l+arx0CUC9OseA7NUfQC/6CtKMhQ1AfsaFAyFZBECMSuoENJEQQGDl0CLbWSZAbJVgcThzBkAAjGfQ0B8cQMMN+PwwQvg/LlbUYBoGGEDGM2jon6ACQMUgsHJoUQdAxawXQzlR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gt1B7ExBE0AxQni0cQQfQN1e0hit4xBAVACMZ9AQBUBQqn06HrMMQIhjXdxGgyVAG/UQje4gBkBNEHUfgLQaQFCqfToeM/Q/OwFNhA2PFkAX8Z2Y9WL8P1dgyOpWDwJAJEil2NE44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0LNZ9bla/T+p+wCkNlEfQH9N1qiHqBBAaK7TSEtFGEAm/FI/b2oNQCzUmuYdByZAQN6rViY8AUDLZ3ke3J0aQP28qUiFsf0/ie/ErBeDGEAtPgXAeMYDQHuDL0ymSghAyt5Szhd75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zr0Yyol2BUCVK7zLRTwcQEc9RKM7iOY/Jh5QNuWK9z+Uh4Va0zwKQET67evAGSRALc+Du7P2+T/bp+MxAzUVQA8om3KF9/w/ApoIG54+GkDzcW2oGKcCQKn7AKQ2cQRA1LoNar+15T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V2DI6lZP9j8BGM+gof8gQJM6AU2EDfI/Xmiu00hrEUA51sVtNMABQBZqTfOOsyJASREZVvEGAUAU0ETY8BQaQNz0Zz9SRP4/YTJVMCopGkAKndfYJSoBQNQOf03WqARAqu6RzVXz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7WRwlLx6CEAHJcy0/UscQA4tsp3vJ/A/N1SM8zeh9D8UlnhA2RQOQNCzWfW5+iNAX0ax3NKqA0A+6Nms+rwXQEAYeO49XPo/4XoUrkdBGUDVeOkmMQgBQJ+wxAPKZgVAqUvGMZK95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xuHMr+YA/D87NgLxul4hQCeloNtLWgBAt39lpUlJHEDl1TkGZC8HQGlv8IXJ9CRAMdP2r6w0BECR0JZzKa4YQDT0T3Cxovk/g4b+CS62F0CxM4XOaywCQIguqG+ZkwhAlZwTe2if5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ap8fRggPBUAy5q4l5KMpQAnE6/oFO+c/sVBrmnecG0Cz6nO1FTsJQKabxCCwciRAFqQZi6YzAUBS1QRR9wEZQLQ8D+7OmgFAzQGCOXo8GkAcsRafAmACQPqzHykiAwRAJSL8i6Cx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tvgUAOPZBUAUs14M5UQKQLfu5qkO+QBAamrZWl+kA0AB9tGpKx8IQMdLN4lBICVAJvxSP2/qBUCXi/hOzJoaQMSZX80BAvY/sp3vp8aLFECR7Xw/NV7/P9Xnaiv2FwhAqrncYKjD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iQeUTblCCUCmRBK9jCIWQII5evzepvE/EHo2qz4nMEAVHcnlP+QMQF5LyAc9uyRACcTr+gV7AkBBfcucLisaQJTBUfLq3ARAvW987ZkFG0B9rrZif5kAQNRgGoaPCAJANj0oKEUr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rkfhehTOEUCMSuoENJEfQJ8fRgiPNgtAswxxrIt7I0D2XRH8b2UNQKvP1VbsTyVAyVnY0w6/BUCwVYLF4UwaQP4mFCLgEAdAUBn/PuOCHEAe4bTgRd8AQMvbEU4LngNAh6dXyjJE4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aJYEqKllAECv6xfshm0JQC3Pg7uzdvc/IlSp2QPNEEB+AFKbODkJQG3n+6nx8iVA7+GS406pAkDbxMn9DuUaQAlQU8vWevI/a0jcY+kjGEBOtKuQ8hMAQIz4Tsx68QVAZYwPs5dt5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cHfWbrvQBkCzmNh8XIshQFExzt+EQvE/O420VN5OAkA/48KBkCwNQAisHFpkeyZAF7zoK0izAkB6Nqs+VzscQACpTZzcLwBAw/ARMSXSHkDHRiBe1y/9PzG2EOSgBAdATwgddAkH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iQyreCNzBEDsTKHzGhscQIBh+fNtwew/lnhA2ZTLF0CpMLYQ5IAQQBHHuriNRiZAR6zFpwAYA0CfdvhrsgYcQB8RUyKJ3gFAWkdVE0TdHEB1jgHZ6139P6G+ZU6XBQRAQdXo1QCl4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N+DzwwjhDEAN/RNcrGgeQPRsVn2uNvg/W7G/7J68+D/kMQOV8W8JQHlYqDXNGyRAGHjuPVxyBUAs1JrmHScXQNjw9EpZhv8/42vPLAmwGECm8naE08IAQC9RvTWw1QVA6q7sgsG14j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M8SxLm5jA0ANN+Dzw/ggQBVypZ4FIek/dv2C3bDtCUC1T8djBmoIQE7RkVz+wyRAu7iNBvDWAECMSuoENPEaQGvxKQDGM/8/XhH8byVbGkBzuiwmNh/7P08GR8mrswFA3UWYolwa3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cr9DUaAPCEBehZSfVLsYQEzEW+ffruo/ejarPlfbAUDw+WGE8OgOQJMYBFYOjSVAt2J/2T35BEAO+PwwQvgXQKa4quy7YgFA7IZtizI7G0C22y401ykAQLGiBtMwPARATI3Qz9Rr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TtGRXP7DA0A4Sl6dY4AiQKKXUSy3tOI/G4F4Xb9AGkA91SE3w80IQEmdgCbCxiRAdVlMbD5uBUCthsQ9lr4aQOkOYmcKnfw/Vd6OcFrQGECC597DJcf+P662Yn/Z/QNALV+X4T9d4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3rBtUWbDBEBAE2HD0+slQB3oobYNI+g/NC4cCMkCDUAfuqC+Zc4GQFYOLbKdTyVAmxvTE5a4A0CFd7mI76QbQFtCPujZbANAJ6Wg20t6G0A012mkpXL9P2+e6pCb4QRA/U/+7h014z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KPIk6ZoJAkAX2c73U8MoQI54spsZ/eM/kZvhBnx+CUB8uOS4U/oGQKqCUUmdICVA1GAaho8IA0AFUfcBSI0bQFXBqKROgANAm3KFd7kIG0AK16NwPYr+P5gXYB+dOgVAhuY6jbRU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mxvTE5Z4A0D20akrn+UEQHnL1Y9N8uk/cJS8OsfgFkBoBYasbjUOQEYldQKaKCRAPL1SliGOA0BXIeUn1R4XQJEPejarPvw/Bd1e0hgtG0BhGoaPiCkBQLPSpBR0+wRAG7rZHyi34T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cCU7NgKxB0AUs14M5UT3P31cGyrG+fc/arx0kxhELkAhH/RsVj0NQEa28/3UGCdAlpUmpaCbBUDhYkUNpsEcQItx/iYUogVABYvDmV/NGkCEEmba/pX+P4M0Y9F09gJATMKFPIKb4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NNdppKXyAkCzmNh8XJv9Pw8LtaZ5R/c/DJOpglGJKUAkfzDw3LsNQCqpE9BE+CZAatlaXyR0BEAuHAjJAsYcQAK37uapjgRAWhKgppZNGkCI1/ULdgMAQGZrfZHQ1gJAyLQ2je214z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vqQxWkeVAUA8ZqAy/l0SQP8+48KBUANA8G36sx+JEEBqTfOOUxQRQJT2Bl+YjCVAjXqIRncQCkAbEvdY+nAcQHqNXaJ66wFAofMau0RVHUA3N6YnLHH9P8sQx7q4DQVAe/mdJjPe4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lQ7W/zlMBEB1jgHZ630dQNaQuMfSRwhAMBLaci6FFECu9UVCW44IQO5aQj7omSVACks8oGxKBkCfzarP1dYcQM42N6YnLP0/UrgeheuxGUCIhVrTvCMCQDVj0XR2sgRAm+Ydp+jI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U+i8xi5RBEB6qkNuhhseQIsyG2SSEfM/ByP2CaCY7T/arPpcbcULQNBE2PD0SiNAXeFdLuL7BUDhYkUNpqEaQE/MejGUE/k/dR+A1CbuF0BHyatzDEj+P+ChKNAn8gRAOzlDcccb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h6dXyjJEB0B5knTN5LsdQHmSdM3km/Q/HSCYo8fv9D+yaDo7GVwLQKvP1VbsDyRAv0hoy7nUBUCeXinLEOcbQDnWxW00gPo/NV66SQziGEC77UJzncb/PxYTm49rQwZA1xcJbTkX5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mIbhI2JKA0AgJAuYwA0bQEPIef8fJ90/P1JEhlV8BkAOMsnIWdgIQOELk6mCcSVA1zTvOEUHA0DcaABvgeQZQPjCZKpg1Pw/DhDM0eOXGEAjoS3nUlwCQI82jliLDwVA/Z/DfHkB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yk+qfTreBUDhXS7iO1EeQIFDqFKzB/I/PSe9b3wtAEAId2fttosIQBdIUPwY4yNAuCOcFrwoBEDXwFYJFkcbQFluaTUkrgJAFjCBW3czGUBCPujZrDoCQIP6ljldFgZA4IWt2cpL5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ecxAZfy7BkBLAtTUsqUiQE9d+SzPQwBAmC8vwD46/T8YQznRroIHQLKd76fGCyRALsVVZd/VBECJJHoZxbIaQDVG66hqAvQ/Atnr3R8vGkDiWBe30cADQDvHgOz17gVAE/BrJAnC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/OO9amXCC0B2bATidV0SQPVKWYY4Vus/z4O7s3ZrIEBF2PD0ShkQQAFNhA1PbyZADY6SV+cYA0DN5JttbqwZQA2reCPzSARAGEM50a5CGUABh1ClZg8BQKsEi8OZnwdARkCFI0gl5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5zqNtFQeBEBqvHSTGIQbQFMFo5I6gfs/KGGm7V+5FkAnpaDbS1oRQMzuycNC7SZAPUSjO4gdAEDw3Hu45LgWQKBP5EnSdQBALLzLRXwHGkCLTwEwnkECQK1RD9HozgRAT62+uirQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pj+MEB7tAkCAfXTqyicWQOJYF7fRAP0/E/JBz2b1HEDEsS5uo0ERQEtZhjjWBSdAK2owDcNH/z/NI38w8DwXQNgN2xZlNvY/n3b4a7ImGUAdcjPcgE8CQNjYJaq3RgZAD3uhgO1g5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PQrXo3B9A0BlARO4dbcQQI+NQLyuX/M/yol2FVI+EEDajxSRYdUJQCfChqdXiiRAo1huaTXkCEAS2nIuxdUbQGowDcNHRPg/7MA5I0rbGEBDyk+qffoAQCYeUDblCgRAuVSlLa7x3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zse1oWIc/j/vVSsTfokYQHi0ccRafPY/rMWnABh/IEAeM1AZ/74JQDXvOEVHUiRA3e9QFOiTA0Df/fFetZIaQOohGt1BbPg/kUQvo1iuFkATuHU3T/X+P7ByaJHt/ANA8UbmkT+Y5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ozuInSn0BUD61RwgmEMTQDLmriXkg+U/GFsIclDCGkCCyvj3GZcLQAisHFpkuyRAwi/186aiBEDOpbiq7JsbQDv8NVmjHvg/TE9Y4gHFF0AziuWWVsP+P6eRlsrb0QNAAU9auKzC4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EsKjjSOWBkC31awzvq/gP636XG3F/vA/WRe30QDeIkBWZd8VwT8MQD0K16NwPSVA2ubG9ITlBkANcayL22gZQDUk7rH0oQNAeLmI78QsHECHFtnO9xMAQCRiSiTRywRAuHaiJCRS4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Oe6UDtZ/BEDhC5OpglEFQHGrIAa69ug/aVch5Se1H0AHJcy0/esNQE0VjErqZCRABW7dzVMdAUC7RPXWwDYWQNP2r6w0KfQ/WvCiryCtFkDQs1n1uZoCQMaKGkzDcAZAYHKjyFpD4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NpNvtrmxAUAKLlbUYJoOQFzJjo1APPI/kDF3LSFfFUD8byU7NkIIQBiV1AlogiVAw7ZFmQ2y/z8O2xZlNogZQMfXnlkSYABA5DEDlfGvGUCzDHGsi9sAQHtJY7SOagZAGy5yT1d36D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"saIG0zDcEEDQJ/Ik6doWQBhbCHJQwg5AX9IYraPKEkDPMSB7vRsSQCSX/5B+myVAmwMEc/R4AEC4AZ8fRigVQO/mqQ65mQJAKEnXTL6ZHUAn9zsUBfoDQFCNl24SQwlA9nr3x3tV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DcNHxJSIAECfzarP1VYIQGsOEMzR4/k/2T15WKh1HEBzLsVVZR8HQFMFo5I6ASVAMlUwKqmT/D/w3Hu45BgZQCEf9GxWffw/71UrE37pF0BQGf8+40IBQDlFR3L5zwVAIxCv6xds5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P+PCgZCsCkDpt68D50wfQGa9GMqJ9vs/TDeJQWDFGkArweJw5vcQQGB2Tx4WKiVAChFwCFWqAUBNSkG3l9QXQJYEqKlla/A/taZ5xym6FkC3KLNBJpkBQEku/yH9NgdAggLv5NPj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6LzGLlE98T+hLedSXNUZQGb35GGhVgZAc6JdhZTfDUAs8YCyKZcPQACRfvs6sCdAyhr1EI1u/T8XDoRkAZMYQDgQkgVMYPM/v30dOGdEFkBLH7qgvuUBQNLj9zb9WQNAmrD9ZIwP5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EFg5tMh24j8BNbVsre8iQFovhnKinQlAOZz51RxAG0C1FfvL7skNQI/k8h/SjyZAZQETuHW39z90B7EzhY4VQO2BVmDIavU/8G36sx/pGECP39v0Z/8BQMnIWdjTDgRAMEllijkI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xty1hHwQCUBBSBYwgfseQMr8o2/StO0/9rTDX5O1/z9MT1jiASUKQMKGp1fKEiRAl8rbEU6LCUC3C811GikcQDAS2nIuxQRAsP7PYb7cG0DWxW00gLf+PxnKiXYVEgZAZavLKQGx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QX3LnC5LB0A4hCo1ezAiQLMHWoEhK/M/u2HboszGBkDAIVSp2QMLQDXvOEVH8iVApvJ2hNMCBUC4dTdPdagcQMpskElGzgBAYYkHlE05HkCzQSYZOQv+P557D5ccdwdAB0KygAnc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ste7P94r/j8rMGR1q0ceQBBdUN8yJ/E/TODW3TzV8z+J78SsF4MJQBHHuriNxiRAYM0Bgjm6A0AhdqbQeW0ZQMdoHVVNEAVA6njMQGUcHkCPcFrwom8BQLosJjYfVwhAls/yPLi75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qG+Z02VxBkBAahMn99sdQJ+wxAPKJu4/F58CYDyDC0ApeXWOARkLQIhLjjul4yNAiGh0B7EzAkBsW5TZIBMaQMdLN4lB4AFA2zNLAtQUGUCJB5RNuUIBQLfu5qkO+QJAjWFO0CYH5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rwj+t5KdBkDChqdXypIVQCveyDzyh+4/gQncupvnEkAOoUrNHqgOQCGwcmiRrSZAoP1IERnWBEDbbRea67QXQF6FlJ9U+/o/svShC+pbG0BtHLEWn0IAQGBZaVIKOgNA28AdqFMe4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qAAYz6AhCECDL0ymCiYWQCeFeY8zTes/fT81XrrJE0C3RZkNMgkPQD9XW7G/zCZAhXe5iO+EBEBkWMUbmScXQOoJSzygbPo/VyHlJ9X+GUCLic3HtaH+PwSQ2sTJfQRA0vwxrU1j3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Eyh8xo7CUDNr+YAwQwiQPksz4O7s/I/Olj/5zBfAUAxzt+EQgQKQOlILv8hHSRAZohjXdxGA0ArweJw5pccQL+36c9+ZARAEd+JWS8mG0C+wRcmUwUAQMbE5uPaUANAF0flJmpp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7fXuj/eqB0D8GHPXEnIRQJzc71AUqAVA1pC4x9JHFUAuxVVl3xULQN21hHzQsyRA3ze+9swSAUBU46WbxEAUQJEPejarPvw/LEgzFk3nGEC3RZkNMkkAQATnjCjtDQVAo+cWuhKB3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bLJGPUQjDkB5Xb9gN6wIQOpb5nRZzABAPzVeukksE0AcX3tmScAIQLgehetRWCVA/isrTUqBBEBYObTIdr4WQJeL+E7M+v0/LH3ogvpWGUBAwcWKGsz8P0KVmj3QygNAzZAqildZ3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Er2MYrklDUCWJqWg24sKQLgehetROP8/U67wLhcxIkB5r1qZ8EsSQFuxv+ye/CZAf4eiQJ/IAUDCFyZTBWMcQPGdmPViKABArrt5qkOuG0CrPldbsT/9P26GG/D54QVA1uWUgJgE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Fva0w18TBECDTDJyFlYeQBObj2tDxfQ/ox6i0R1EC0Dh7qzddqEMQPcGX5hMVSZAMevFUE70B0A4Sl6dYwAZQBb7y+7JQ/s/nBa86CtIF0DSjEXT2YkBQCIa3UHsDANA+Db92Y8U4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wHgGDf2TCUCLTwEwnoEcQOxnsRTJ1+U/cM6I0t5g/j9MiSR6GaUQQMPTK2UZ4iZAblFmg0xyBkAxfERMicQaQNRlMbH5uP0/g8DKoUWWGEB6pSxDHGsBQK2jqgmirgNAv/G1Z5aE4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vk1/9iOFAkDHYwYq498aQE9cjlcgets/HQOy17u/9j+r7Lsi+F8LQOmayTfbPCNAhPV/DvNlAEB/3lSkwtgYQNY5BmSvNwFATRWMSuoEG0DyQc9m1ScEQJ/leXB3FglA529CIQIO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iSR6GcVyC0DwMy4cCKkTQFbUYBqGDwBAUz9vKlIhDEAFqKllaz0KQGsr9pfdUyZA6StIMxZNBkD4wmSqYFQbQOyjU1c+y/4/DY6SV+dYGECafLPNjen7P/8+48KBUAJAujE9YYkH2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"krOwpx0+CEDFjzF3LSEkQFcE/1vJjvU/isiwijcyBECnBS/6CjIRQGKh1jTvOCVAsYo3Mo98CEDY0w5/TZYbQDD186Yilf8/RkJbzqX4GkAlzLT9K+sBQHicoiO5/AJAfjhIiPKF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dEaU9gYfBEBAMEeP32sgQLx5qkNuBvI/RrHc0moIA0DzdoTTgtcLQCsYldQJyCVAFoczv5pDBkDFVWXfFQEeQMrgKHl1zgFACMkCJnCrG0AtYAK37ub/P0ymCkYlNQRAFjPC24MQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QwQcQpXaBkBiEFg5tGgeQKg4Drxa7t0/LWACt+4mD0BOYhBYObQFQF3hXS7iuyNA6lvmdFkMBUBVGFsIchAXQIDUJk7uNwdAg1FJnYDGG0D4pX7eVKQAQCKJXkax3ARAbAa4IFsW4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zczMzMxMA0BBguLHmNsfQC1A22rWmeA/GAltOZeiA0A/bypSYWwEQKrx0k1i8CNAObnfoShQA0DM0eP3Nh0YQGTMXUvIBwJAAOMZNPRvGkCjI7n8h7QAQIe/JmvUwwVAjZyFPe1w4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Bfshm2L/j/jwoGQLIAgQKuxhLUxdt8/knTN5Jtt/D8u51JcVbYCQOwvuycPWyNAYY4ev7fpAUDv4ZLjTkkYQDdxcr9D0f8/lufB3VkbG0De5SK+E7MBQOif4GJFjQVAuycPC7Wm4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VwT/W8kOBkC+amXCL3UeQBfTTPc6qd4/7Q2+MJkq+D/cY+lDF9QFQFwgQfFjjCNAC3va4a/JAEBBvK5fsDsZQLQCQ1a3ev0/NGjon+BiGkDaOGItPoUBQGjLuRRXVQVAsHWpEfoZ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5DEDlfHvCkD1udqK/eUdQBQF+kSeJPg/F58CYDxDA0BSJ6CJsCEIQIvgfyvZsSNAYhBYObTIBEAMAiuHFvkdQD7t8Ndkjfg/3C4012kkF0BHcvkP6Tf/P/T91Hjp5gNAQMIwYMlV4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PSe9b3wtCkD7XG3F/hIeQJhRLLe0Gvc/hlrTvOOUBECWCb/UzxsJQNo4Yi0+hSNANGjon+BiBUDV7IFWYOgdQHkGDf0T3Pc/RKM7iJ1pFkCalIJuL2n+P060q5Dy0wNAxanWwiw04D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BMqmXOEdC0ACt+7mqU4cQGrZWl8ktPI/Ug/R6A7i/T9yv0NRoE8LQIyhnGhXUSNAl3Mprir7A0Bt/8pKk5IdQIzbaABvAfg/8rBQa5rXFkAf9GxWfS7/P+lILv8hvQNAATW1bK0v4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fGEyVTCq+z/GihpMw9AeQLWJk/sdCvQ/Zfz7jAsH/z+CqPsApDYMQLTIdr6feiRAJzEIrBxaBkBMT1jiAYUaQNF5jV2i+vI/dhppqbwdF0AHQrKACdz/P8PwETElkgZAKTxodt1b4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6E1FKoztAkAbgXhdv0AfQPMf0m9fxwJAcvkP6bfvDkDRItv5fuoKQCUGgZVDyyVAOxkcJa9OCUCH3Aw34FMdQJkSSfQyCv4/SDMWTWfnGkCwj05d+ewBQPryAuyjEwZAwM5Nm3Ea5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A8+9h0vuGEC3ek5635gbQF5ortNICwVAu2HbosyG/D+LMhtkkhEPQIM0Y9F0RiNAy7kUV5X9AUDXFwltOfcZQECk374OnAhASrVPx2NmHkCTGARWDi0BQPqbUIiAAwRA6E1FKowt2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aFw4EJIFGEBeaK7TSMsWQL/xtWeWhANAVKnZA61AA0D5Zpsb09MQQMcpOpLLHyRA+tUcIJjjAEBcj8L1KHwZQKCmlq31xQlADHbDtkXZHEDaOGItPgUBQBjshm2L8gNAR3GOOjqu2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mUf+YOCZE0D3AUht4mQdQIe/JmvUIxRA499nXDhwGUAXmus00hIMQAskKH6M+SRAeGLWi6EcBkBfRrHc0koZQLHEA8qmXAFAD9b/OcyXGUDL+PcZF44AQAeZZOQsrAdAy9jQzf5A3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VDVB1H2gEEDs+gW7YVsiQD3yBwPPvfE/7/54r1pZCEBRMc7fhIIPQPyp8dJNgiVAw0fElEgiB0CG5jqNtDQcQMvW+iKhbQNAaXQHsTPlF0BIv30dOGf/P63AkNWtngVAWOTXD7HB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zAuwj07dCUATfqmfN1UYQJnYfFwbagtAIQIOoUpNAECGj4gpkcQNQFyPwvUovCRANV66SQzCCEAY7IZti1IbQAzqW+Z0WQBAur2kMVpnGkCKk/sdioIBQCuHFtnOtwNASBlxAWiU4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u37Bbth2BUB56SYxCCwkQH44SIjyBec/KgDGM2goDEDGFoIclDAJQCNKe4MvLCVACwxZ3ep5A0D8jAsHQnIcQO317o/3qvk/bxKDwMrBF0AvaYzWUZUAQFdgyOpWjwZAWFTE6SRb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M8SxLm6jDkCvsUtUb60TQL8OnDOitPo/6j4AqU38EkDeyDzyBwMKQMv49xkXfiNAVryReeQPBUCKq8q+KyIZQDXvOEVH8gNAtrkxPWGpHkCYUSy3tJr/P54Hd2ftdgVAHCWvzjGg4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UwWjkjqBA0DlCu9yEa8gQL4SSIldW+g/gQncupun+T/TakjcY6kHQCMVxhaCDCNAsmg6Oxmc/z8hByXMtP0ZQJ4Hd2ftNgVANSTusfTBHEC+nxov3eQAQOtunuqQ2wRAGQKAY8+e4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"woanV8pyDUDChqdXylIXQBDM0eP3tvM/TtGRXP6DGEBJhbGFIAcPQBiV1AloAidAPQrXo3A9AkCH+fIC7IMXQCxlGeJYl/s/AWpq2VrfGkAdd0oH6///PxKlvcEXJgVAKGTnbWz25T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EVMiiV7G+D+bcoV3uYgXQGDl0CLb+QxAswxxrIubCEDKw0KtaV4QQEvqBDQR9iVA46WbxCCw/z/0N6EQAYcYQBdIUPwYc/0/Ic1YNJ3dGEDkvWplwi8BQEBNLVvrSwVAinYVUn5S4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hV/q502FBkBolgSoqYUhQGjr4GBvYuU/R8mrcwyIAUDqBDQRNvwJQDY8vVKW4SVAI2dhTzt8BkDtnjws1NoaQNttF5rrNABAUrgehesxGkCmRBK9jKIAQCeDo+TVuQRAzTtO0ZHc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ms5OBkeJB0DqBDQRNmwgQJwZ/Wg4Zd8/5lyKq8o+/j8bu0T11oAJQF3cRgN4ayVA+THmriUkB0DfMqfLYgIaQCNnYU87PAFAz/dT46VbGUBnD7QCQxYAQKbVkLjHUgRAog4r3PIR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cXK/Q1Eg+z8Zc9cS8kEfQAM+P4wQnvk/e0ljtI6qAEB7MZQT7SoJQBDpt68DJyVAnOEGfH7YBkDV52or9nccQEDBxYoaTPk/7FG4HoVLGUBF8L+V7Nj+P30FacaiaQVAJ4V5jzNN4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dAzIXu8+AUBgsBu2LWoiQHkEN1K2SOY/lbcjnBa8BEDpYP2fwzwIQFSM8zehgCNAPzVeuknMBkAdcjPcgO8ZQJBJRs7C3gBAfT81XrppGEA6QDBHj1//P2MoJ9pVyANAUp0OZD214j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"845TdCQXC0BhcTjzq1kbQIeL3NPVneo/cm2oGOdv/j8NN+Dzw4gHQG8Sg8DKoSRADMhe7/44BEB3FVJ+Uq0ZQGqHvyZrlAFA1JrmHadoG0ACK4cW2c4EQP5g4Ln3MAJA/UtSmWKO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PSe9b3yNEEDsUbgehcscQMUgsHJocShAZ9Xnait2+D9Zox6i0Z0NQLTlXIqryiNAoYSZtn/l/T9VTRB1HwAaQBzw+WGEcPw/Pj+MEB6tGUBw626e6pD8P1Exzt+EQghAAFXcuMV84T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LXjRV5DGG0Br1EM0usMgQH3Qs1n12SRAcVXZd0WwBUCWBKipZWsIQI9TdCSXfyRA46qy74ogAEBrn47HDLQaQDElkuhlFPg/bTmX4qoyGUBfJLTlXAoBQNNNYhBY+QdABqBRuvSv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PpY+dEE9G0BcVfZdETwbQACRfvs6cAtAh+EjYkrkAkD8NVmjHoIQQIqw4emVMiZArfpcbcX+BUBZUYNpGH4aQMbE5uPaUPk/7bsi+N/KF0DuX1lpUgr9P1lpUgq6fQFAfZI7bCKz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hgMhWcDEBkCy17s/3qsgQKt4I/PI3wBAIo51cRvNDUAD7KNTV34IQBHHuriNxiRAIR/0bFb9BUBHcvkP6XcbQIleRrHc0vk/N2xblNkgGUAPf03WqEcBQHnMQGX8+wdAGVkyx/Iu5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"liGOdXFbDECbIOo+AIkeQM6luKrsmxBAnDOitDe4B0C05VyKq0oLQP8h/fZ1YCVAtRoS91j6AkBRTrSrkPIcQDwx68VQTvc/Pq4NFeN8F0BFR3L5D6kBQGcPtAJDlglASpnU0Abg4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WyVYHM78AECoV8oyxJEmQG2QSUbOggxALSEf9GzWFEDR6A5iZ8oOQJAxdy0hHyVAXOZ0WUxsC0A1DB8RUyIcQI1/n3HhQPo/R1oqb0dYGkB00vvG114AQI+NQLyuHwRASDZXzXNE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xhaCHJRwDEALtaZ5x4kpQPc/wFq1a98/TihEwCGUG0ANGvonuFgOQD81XrpJTCdAILWJk/udBUD59xkXDgQeQINMMnIWtgNAmzi536FIGUCh1jTvOAUAQCegibDhqQRApFTCE3r94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JgFqatna9j+GONbFbRQjQCKMn8a9+ec/tyizQSYZ/j87x4Ds9e4DQKbydoTT4iNAEHUfgNQm/T9NEHUfgBQYQFFrmnecIgJAdTxmoDI+F0B9BWnGoikBQOCEQgQcggZAguLHmLuW5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QfFjzF1L/D/nNXaJ6l0iQFr1udqK/eM/eqUsQxxr/j8PuRluwOcCQKJ6a2CrxCNA/reSHRsB/T8IyQImcMsYQGgibHh65QBAi1QYWwhyF0DHaB1VTVABQC0JUFPLlgZAV2DI6lbP5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fGEyVTBqCEA3/dmPFBEhQFA25QrvcgRAfeiC+pY5A0AtPgXAeIYIQF3+Q/rtyyJAgGCOHr93CkDKbJBJRk4dQKHzGrtE9fk/IzKs4o2MGkD+8V61MmEAQA9iZwqdlwJAiJ0pdF5j3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JjYf14YK/z+b/uxHiigaQBV0e0ljNPI/xm00gLdA/j8+XHLcKR0JQKAaL90kJiVA4X8r2bHRBEDv/nivWlkaQEpBt5c0RvQ/bD6uDRXjFEDxgLIpV3gAQFxy3CkdrAVAJ2a9GMoJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tHbbheb6BkBpqbwd4RQfQGh4swbvq98/WWlSCrr9GEB/9iNFZBgJQHldv2A3PCNAP1dbsb8sBECUTbnCu1waQC7iOzHrxQRAKSLDKt6IHUDl8h/Sbx8BQHNjesISzwVAaK7TSEtl5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uaXVkLhHB0AYldQJaMIfQJlFKLaCJuE/u0T11sAWFEC/mgMEc3QJQEhQ/BhzNyNAttsuNNdpBECk5NU5BuQZQL+CNGPRNARAswxxrIs7HUDoE3mSdE0BQPphhPBoowVAWksBaf+D5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1SE3ww34A0B24JwRpZ0bQAvsMZHSbOM/Wp4Hd2ctBEADste7P54KQJSHhVrTPCVA+I2vPbNkBkD9h/Tb1wEdQMoa9RCNbgFAqOMxA5URGkDNBplk5GwBQEUvo1huaQVAZ2DkZU2s4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xtcv2A3bDUBRZoNMMoIhQJeo3hrYKgRACwxZ3ep5GkC0jqomiPoOQDEIrBxaZCRARzgteNEXCEAYz6Chf+IaQN3vUBTok/k/L4uJzcf1GkBcd/NUh9wBQAOV8e8zrghAAd9t3jip5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v0NRoE9EEED04O6s3VYYQGQe+YOB5/4/AaQ2cXJ/DkBNSkG3lzQOQMP1KFyPYiZASkbOwp72AkDso1NXPusaQB3mywuwD/Q/YvNxbaj4GkDYZI16iEYGQJXx7zMuXApAut3LfXIU6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6IL6ljm9EkCtad5xiq4fQPM8uDtr9xFAn47HDFQmIEAj88gfDBwQQNNNYhBYOSZA1v85zJdXBUCEns2qz/UYQI3ROqqaIPg/8PlhhPDoFUCGWtO845QBQKT8pNqnYwdAdLM/UG7b6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pMUZw5yg2L+rz9VW7C8cQKm8HeG0oANA3Qw34PMDCkB3LSEf9CwFQCR/MPDcGyNAXHLcKR2sBEAGu2HboqwZQNgqweJwpgNAyqZc4V2uG0D5D+m3rwP9P2iR7Xw/NQJAZt0/FqJD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NSiaB7BI7T/1hCUeUJYaQPjfSnZsxAhARfXWwFZJEkA8vVKWIc4EQOZ0WUxsziNAPPceLjluBUCk/KTap0MaQGIVb2QeOQJAaYzWUdVEHUD7XG3F/rL+Pxea6zTSEgNA9NxCVyJQ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Q2+MJnqCUA2k2+2uREeQNAKDFndagBAg8DKoUW2C0AvwD46deUQQLsnDwu1BidAkbjH0oeuAkAYz6Chf0IYQAYSFD/G3PA/ZHWr56S3FUCRuMfSh+4CQNcXCW051wRAuW3fo/565T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nUZaKm/HCEBMT1jiAaUeQCmzQSYZOf8/smMjEK8rCkD+JhQi4DAQQIBIv30dOCdAoBUYsrrVAkDjpZvEIHAYQDANw0fEFPM/RwN4CyQoFUC9HeG04IUCQEa28/3U+ARAR3Nk5ZdB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z/LNNjemCkCsVib8Ul8WQL9IaMu5VANAPE7RkVx+KkCOdXEbDQAQQH6MuWsJWSZA9gt2w7aFA0Bz1xLyQS8aQP4rK01KQfg/1qiHaHTnGEBx5ldzgOD/Pzm536Eo0AZAcqPIWkMp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q5CDEmbaAEA3GsBbIGEpQGsqi8Iuius/ArwFEhQfKUARx7q4jQYKQG/whclUISVAe737472qAUA5KGGm7R8ZQAsMWd3qOfc/XBsqxvl7GEDzqzlAMMf+Pzmc+dUc4ARAnlxTILOz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fCdmvRgKCEBYrUz4pb4QQLWIKCZvAOw/G0esxadAEUAYPiKmRJIMQH/ZPXlY6CRAjPhOzHpxBkATJ/c7FOUaQMJR8uocgwFAB7ZKsDj8GUDiWBe30QD/P2q8dJMYxANAsI14spsZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sMka9RCNAUC7Jw8LtQYkQPzfERWqG+w/jErqBDSR/T9TliGOdXEDQIM0Y9F0FiNAaoe/JmsUBEDhKHl1jsEbQGH9n8N8+fs/kDF3LSFfG0CU3je+9gwAQFxV9l0RfANAMzSeCOK84D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zfz7jAtHA0CGWtO84xQWQDdUjPM3ofc/wCZr1EO0DkDtuyL438oNQACRfvs6cCRAnUtxVdk3AkC4kh0bgfgWQBZNZyeDowJAXcR3YtaLG0AUyy2thkT+P0gzFk1nJwVARWYucHks4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ozuInSn0DEAOT6+UZSgkQPOTap+OR/A/ofMau0S1DUCfsMQDyuYSQFyPwvUo3CZA3C4012lkBEBsBOJ1/cIbQEbOwp52+Pw/1xcJbTl3GkBvgQTFj7ECQBHHuriNRgZAxQCJJlBE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NWPRdHYy8T/tgVZgyCoMQP9byY6NYBNALuI7MeuFFkDrbp7qkDsQQOXyH9JvHyZARrHc0moICUCDo+TVOaYcQAKfH0YID/o/9GxWfa4WGEACvAUSFD8CQIeKcf4mFAhAOCwN/KiG5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9S7ej9uv7z8PC7WmeScpQOJYF7fRQA9AA0NWt3oOC0AsZRniWBcHQGlv8IXJdCRAz6Chf4ILCUD0GrtE9RYcQCKJXkaxnAFASiTRyygWGkDX+iKhLacAQJUO1v85TAZAAYblz7eF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MA3DR8SU9z8NpmH4iBjzPx+A1CZOThBA3bWEfNCzG0BBDkqYaTsQQHL5D+m3DydAD5ccd0qHBECtwJDVrZ4XQIfcDDfgcwFABcB4Bg39F0D+mqxRD5EAQA034PPDSARA4pNOJJhq5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qiuf5Xlw+T9eY5eo3noRQLGnHf6aDBRAaam8HeE0F0CjO4idKTQNQOELk6mCMSRA5nlwd9Zu/j857pQO1h8XQFuU2SCTDPw/EMzR4/eWGUB4YtaLoZwDQF6AfXTqigJAkj6toj+04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K9mxEYjX8D/N6bKY2HwaQOXyH9Jv3/w/rJDyk2qfB0BwXwfOGRELQPKwUGuatyZAMXxETIkk/j//PuPCgXAYQKHbSxqjdfQ/Zd8Vwf92FkBlqmBUUqcBQCmuKvuuyANAcFtbeF6q4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HT1+b9OfC0Dwp8ZLN2kdQKPJxRhYx+U/wM+4cCAkAUA2zTtO0ZEIQDSAt0CC4iVA7zhFR3J5BkC45LhTOngeQB9LH7qgPgRAC3va4a/pGkDyQc9m1ef+P+ZciqvKPgZAhlRRvMpa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PKWD9X/ODUDqspjYfNwiQMXm49pQseY/5US7Cim/+D+SXP5D+g0QQBUdyeU/xCVA7dgIxOv6CEB9y5wui4kbQB9oBYasLgRAAU2EDU8vIECrWz0nvS8AQL01sFWCBQRAk6rtJvim4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qAAYz6Ah/D/JWdjTDn8SQOcYkL3e/f0/4IRCBBwCFUAqqRPQRJgGQHQkl/+QviRAdxA7U+i8AECdEaW9wfcZQGPuWkI+aPY/MPXzpiKVE0AknBa86Cv/P51oVyHlJwRAISI17WIa4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ml/NAYK5AUAH0zB8RJwhQKVmD7QCQ9w/Zwqd19glIECuR+F6FO4HQCbfbHNjiiNAcsRafAqAA0ChLedSXDUYQDT3kPC9P+8/sVBrmne8FUAUyy2thgQAQGwm32xzIwRA1ZRkHY6u4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4gZ8fhghA0AW+8vuyTMjQFWkwthCkOQ/escpOpJLJkBRFOgTeRIJQGzsEtVboyNAn3b4a7LGA0DVBFH3AQgYQP8+48KBkPc/Z5sb0xN2F0B3Z+22C00AQAVpxqLp7AJATmTmApdH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ckj7H2CtxD+RD3o2qz4jQFx381SHHBNASkbOwp42B0BHA3gLJGgIQCntDb4wmSRAacai6eykAkBi+IiYEukbQGQ730+NVwNAJUBNLVtLHEDRlnMprir9P+F/K9mxUQVASyAldm1v4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zH9Iv32d/j+VtyOcFnwdQI5AvK5fMAdA9bnaiv3l9D/pSC7/IX0JQHGsi9to4CNAjLlrCfmgBUBUAIxn0PAaQCAkC5jArQFAYf2fw3xZHEBrZcIv9fP8P9HoDmJnCgVA9wX0wp2L5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kUQvo1huCkCd9L7xtScLQLQ8D+7OGgdAKA8LtaYZJEAKaCJseHoLQESLbOf7KSZAM9yAzw9jAED3Bl+YTHUZQOyjU1c+S/o/MGR1q+eEF0An9zsUBfoAQFj/5zBfXgNAKlYNwtxu5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3QiLijid5j84E9OFWP3fv9/98V61svI/T+lg/Z8jIkA1e6AVGHIMQJyiI7n8pyRAGyrG+ZtQ+j8RGVbxRuYVQL7Z5sb0hPk/X0ax3NKKGEABGM+gob8DQMgHPZtVXwVA4pLjTung4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u/JZngfXFEBJhhxbzxDgv4eiQJ/IEwdANe84RUeSKEAPC7WmeQcRQAkbnl4piydApSxDHOviBEBortNIS8UaQHO6LCY2H/g/ICQLmMBNGEDWbrvQXCf+P6RwPQrXowRAYhIu5BHc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T0ATYcPTG0DK3lLOF/vkP/5l9+Rh4RZAPNo4Yi0eGEAqxvmbUAgQQMbctYR8sCZA3SQGgZVDCUBmSYCaWrYbQD4/jBAebQBAgzRj0XRWGEAQQGoTJ3cAQMiYu5aQzwVA9wKzQpFu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kX77OnBOBEAEIVnABC4gQPkUAOMZtPA/kZvhBnz+8j8UeZJ0zaQIQLprCfmgZyRAuk4jLZU3/z/vj/eqlSkWQJlH/mDguQBA7IZtizKbGEDqCUs8oOwAQEDeq1YmfARATx+BP/x84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"73IR34lZ+j/0+L1NfxYYQKDgYkUNpvk/mRJJ9DJqEkAKv9TPm4oNQLmNBvAWCCVAQxzr4jZaAUBeY5eo3joZQCLgEKrUbPI/nl4pyxCnGEB2/YLdsO3+P61u9Zz0fgRAfVwbKsZ55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VTAqqRNQBUAiq1s9Jz0dQHiZYaOs3+4/hZSfVPu0D0BkXdxGAzgNQLMMcayLOyZAmfViKCda/T87NgLxut4XQCntDb4wGfI/QGoTJ/ebFkBNLVvri4T/PyS5/If0mwRA5/wUx4FX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KJtyhXd5A0BMpgpGJTUaQEOtad5xivw/XdxGA3gLDECEDU+vlOULQELPZtXn6iRAZwqd19il/z+TOgFNhK0WQNFXkGYsmvg/GoaPiCnRFUDkoISZtr8BQPYoXI/CtQNAzLVoAdrW4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o5I6AU3ECEBZox6i0f0ZQI1feCXJ8+I/pdqn4zGDEUCrCaLuA1ALQOCcEaW9wSRAkuhlFMstCUCIS447pYMcQGu3XWiuEwhAS6shcY9FHEABMJ5BQ38BQDWYhuEjogVAWRgip6/n4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E9VbA1vlCEAK16NwPcoYQGrf3F897ts/d/hrskZ9CUDXTL7Z5kYJQBPyQc9mNSRA5A8GnnsPBkB6whIPKLsbQFCqfToeMwRAjPM3oRBBGkB1yM1wA74BQKD9SBEZ1gJAaqFkcmpn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fh04Z0RpEUB4eqUsQ7wlQBeCHJQwUxdAl5APejarEkBDOdGuQooQQEp7gy9M5idAPq4NFeO8B0Dw+WGE8CgcQEbrqGqCqP8/3e9QFOiTG0AeM1AZ/z7/P0mFsYUgRwdAKPT6k/jc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ms5OBkepFEAHsTOFzssZQNv5fmq81CFA7KNTVz7LAEAdd0oH638QQKyt2F92DyZAWhKgppatBUCqmiDqPsAcQKrU7IFWoAFAtVTejnAaHkA2WaMeotEAQJ268lmeBwVAWDfeHRmr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y+5aQj5oBkCPqiaIuh8iQL7Z5sb05BNAP28qUmEMHkDAstKkFDQLQFfsL7snzyZA9GxWfa52BUAteNFXkAYaQHyb/uxHCv4/jnVxGw1AGEBaKm9HOO0AQAT/W8mODQVAgVoMHqb94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JZLoZRSLAEDnHafoSE4fQNhEZi5w+eQ/IeUn1T4dFkDPTgZHySsOQOOlm8Qg8CRAK6T8pNpnBEDXL9gN2zYYQLyzdtuFZv0/Mo/8wcDzGUDOiNLe4Iv/P/ERMSWSKAdANWJmn8co5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9ODurN02DUDBOSNKe0MgQNS3zOmyGPA/IeUn1T5dEUDFILByaFEOQAdfmEwVTCVAqaROQBNhA0CwrDQpBT0YQK+ZfLPNDf8/nnsPlxyXG0DQ8jy4O2v9P205l+KqMgdAJbGk3H2O5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r5RliGMdA0B6cHfWbpsjQEqYaftXdiJABkzg1t28DUD7rgj+t1INQG/whclUYSVA8WjjiLV4+T/kg57Nqu8XQPGdmPViKPk/HPD5YYSwGEAMsI9OXXkEQOHRxhFr8QRAoBnEB3b84D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RDS6g9hZA0AArmTHRuAcQBcQWg9fJtg/2evdH+/V+z8OoUrNHugHQJT2Bl+Y7CNAUKp9Oh6zAkBDyk+qfboXQO2BVmDI6v8/I0p7gy/sGUC3XWiu00j9P7nH0ocuqAVAsW8nEeFf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Di2yne8n/j8NpmH4iIggQInqrYGt0gBAxAjh0cYxEEBNLVvriwQOQJyiI7n8pyVAYygn2lVIBUDRV5BmLFoaQAIOoUrNnvE/XBsqxvnbF0A1XrpJDIICQH+8V61MOARASkONQpLZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+u3rwDmj/z/yXrUy4bcXQKlNnNzvUPM/uOS4UzrYHkDghEIEHIIOQJayDHGsKyZAh1ClZg80AUD/ykqTUpAXQOc24V6ZN+s/7fDXZI36F0DhQEgWMEEAQCP430p2rANA3zE89rPY5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"42vPLAmQA0CaCBueXskaQPTg7qzd9vc/J71vfO35H0B1PGagMp4QQOELk6mCMSVA6N7DJced+j9pxqLp7EQWQDiEKjV7IABAZw+0AkMWFkBS1QRR94H+P3BCIQIOIQdAfuGVJM/14j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I74Ts16MCUA6XRYTmw8dQOjZrPpc7eo/IQIOoUqdIkAbu0T11kANQKK0N/jCxCVA8WPMXUvIAEBDOdGuQuoWQBWMSuoE9AFAMnctIR8UFUBdxHdi1ov9P/vL7snDggZAQC/cuTDS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S8gHPZuVBUCOI9biU0AfQGL03EJXIuQ/IzKs4o1MCUBIisiwivcGQG/whclUQSRAxvmbUIhAA0BRg2kYPoIZQMuhRbbz/fo/Di2yne8HHUCi7gOQ2gQBQOllFMstbQRAe7slOWBX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gw3gLZBgBEDpt68D54wYQL+bbtkhfuk/ZED2evdHBEB/+zpwzogHQPSJPEm6diNAFVeVfVcEBECEgefew6UZQFK4HoXrUf4/W5nwS/08G0CT407pYH0BQCkF3V7SmAJAhzJUxVR64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/B2KAn0iB0AnFCLgEIofQEDfFizVhe4/KpFEL6NYC0CYaftXVtoJQOXQItv5XiVAHm0csRbfA0DHYwYq418bQMwLsI9OnQhAHxFTIol+GkDS4/c2/ZkBQDGZKhiVVANA0GG+vAD73z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"izcyj/yBBUD3deCcEQUcQPEvgsZMotg/4dHGEWvxDEC7Jw8LtSYLQJM6AU2EDSZAcY+lD13QA0CoUrMHWoEcQLnCu1zE9wRA2bERiNd1GUAJ4dHGEesAQMh71cqEXwNA3IKluoCX3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4/xNKETABUA1KQXdXpIfQGWqYFRSp/Q/8Nx7uOS4/D/dJAaBlcMFQO58PzVeuiRA+Um1T8cjBkAiGt1B7MwbQK/rF+yG7fs/QbeXNEZrGEDHKTqSyz8AQKtbPSe97wNAFaxxNh0B3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vrwA++jUAkDEQq1p3tEfQPZ9OEiI8uQ/K9mxEYiXBUA3T3XIzfAIQIPAyqFFFiVAPPceLjluBUAuHAjJAuYdQMbhzK/mgP8/YM0Bgjl6GkBkO99PjRf+P5WaPdAKzAdAsW1RZoNM3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cT0K16PwDEAna9RDNJocQM8sCVBTy/k/zxQ6r7ELA0CwA+eMKE0QQBB6Nqs+dyVAvfvjvWqlA0BETIkkevkXQGw+rg0V4/s/T6+UZYiDF0C8lpAPejb9PzSitDf4QgFAo8ow7gZR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wJXs2AiEBkB/+zpwzjggQHuDL0ymiv0/sdzSaki8GkA6QDBHjx8RQGuad5yiAyVAeV2/YDdsBEA1e6AVGNIaQJgXYB+dOvs/chb2tMNfGEBlARO4dTf+P8cRa/EpQANAqfkq+dhd4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FO0qpPxkC0AOSphp+xcbQOPHmLuW0ABA2PD0SlnmJUCCHJQw09YQQACRfvs6UCVAZd8Vwf+WBED1udqK/UUbQAmKH2PuWv8/nuqQm+EmGECGIAclzDT9P1UTRN0HYARAV1wclZuo4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ATW1bK2vCED9n8N8eWEYQKBU+3Q8Zvc/wHgGDf2TDEAsvMtFfKcIQGzPLAlQgyJAj41AvK7fAUCGPe3w14QaQL+36c9+JAFAJsed0sF6GkAAxjNo6J8BQASQ2sTJvQdAxf8dUaG65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vYxiuaWVEEDsF+yGbQsfQFXBqKROAA1AYOXQItt5EkAg71UrE54QQCZTBaOSmiRAiGNd3EYDBkAFi8OZXy0aQGWNeohG9/Y/1EhL5e3IFkAvi4nNxzX/P6d5xyk6EgRAYviImBLJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"omKcvwmFCUDWrZ6T3rcaQExUbw1slfo/d2fttgvNAUAyWkdVEwQQQAN4CyQoHiZAH7+36c++A0BaKm9HOE0bQE0VjErqBPM/vcYuUb2VGEBa8KKvIM38P3/7OnDOyAJAXW3F/rJ72T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0/avrDQp+T88oGzKFb4hQKyQ8pNqH/M/64uEtpwLDEAtCVBTy5YIQISezarP9SNAiQeUTbmCA0A7cM6I0v4cQIBIv30duPQ/qwSLw5kfF0DvrN12oTn7P/hrskY9xAJApyTrcHSV2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NdJSeTvCBkAnvW987bkeQA3FHW/y2+A/UN8yp8tCFkCNeohGdxAIQOLplbIMkSRATGw+rg3VAkBYc4Bgjl4YQBzO/GoOUAVAHZQw0/ZvGUBCIQIOoYoBQODW3TzVIQRAI/d0dcdi3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"61bPSe9bCkDGihpMw7AiQLPNjekJy/I//WoOEMzRBUCxogbTMLwQQPaX3ZOHZSZA30+Nl25SBECVtyOcFrwaQPiImBJJdPw/KzV7oBWYG0BJnYAmwob8P7bbLjTXKQNATDj0Fg/v4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ke18PzVeB0ADPj+MEF4eQPa0w1+Ttfg/v7fpz36k/z/QfqSIDOsNQJwzorQ3mCZA3zKny2LiBECpMLYQ5IAcQKN1VDVBFAFAoYSZtn+FGkBBZfz7jIv9P4QqNXugFQRAc9nonJ9i4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"taZ5xyk6BEDpmsk32xwVQDCBW3fzVPo/ogvqW+Y0EEDa5sb0hGUMQMrDQq1pPiZANnaJ6q1BBkAUBfpEngQaQLd6Tnrf+Pw/HHxhMlXQG0ARx7q4jYb9PwcI5ujxOwVAdCUC1T+I4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ou4DkNrEAkDtKqT8pDoeQOjewyXHHfo/AwmKH2OuBUAVdHtJYzQMQDsZHCWv7iJAiQyreCPz/D9DVrd6TroYQJIiMqziDfk/Z+22C81VGUCU+x2KAj0AQLSTwVHyagVA5dTOMLWl4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2NMOf02WDkC1bK0vEnoYQP8JLlbU4AxAB+v/HOaLGUCnrnyW50EHQP2H9NvXYSRAEd+JWS+GAkC+3v3xXjUXQBH8byU7tvU/eAskKH6MF0AqHaz/cxj/P+Nw5ldzAAVAUg/R6A5i5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/pqsUQ+RCUCw/s9hvlwWQNieWRKgZhJA5X6HokAfE0Dwp8ZLN0kHQCfChqdXaiRAqiuf5XkwAUAsK01KQTcaQE9AE2HD0/g/5/up8dJNGECOrz2zJMD9P1yPwvUoHANAdsHgmjv65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7dPxmIGKBUB+xoUDIVkjQKciFcYWgvA/gQncupvnAUAF+kSeJB0RQAaBlUOLTCZA95LGaB1VCEByM9yAzw8aQPZ698d71QBARWRYxRuZGUAMB0KygIkAQILK+PcZFwRADVGFP8Ob2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cT0K16PwCEBS1QRR97EiQACpTZzcb/M/WwhyUMLsFUCp+wCkNvELQEdy+Q/ptyRASddMvtnmBkAsSDMWTUcaQIyEtpxLcfs/N6YnLPHgGUAyPWGJB9QAQI20VN6OcARAIVhVL7/T3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SPlJtU8HCEAvUb01sMUiQK2GxD2WvvA/DtsWZTZoE0DttgvNdVoLQPAWSFD8eCRA8kHPZtXnBkDZd0Xwv3UaQBWRYRVv5P0/Tb7Z5sb0GUDBHD1+b5MAQNWytb5IaARAUDi7tUyG3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y2d5HtxdB0Blwi/180YgQNU+HY8ZKPs/QbeXNEbLEkDjpZvEIDAKQGkAb4EEZSVA5pZWQ+Ke/z9iLT4FwBgZQItx/iYUIvM/81meB3cnFkBSJ6CJsGH8P8jShy6obwJAFy6rsBlg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tYmT+x0KCEDmXIqryn4gQPGdmPViaARAfgBSmzgZEUBKQbeXNEYIQE+vlGWIAyVA8rVnlgSo/z9hTzv8NRkZQGcPtAJDVvQ/p5at9UXiFkBwQiECDiH9P5BmLJrODgJAij4fZcSF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hUIEHELVC0DqCUs8oAwfQGR1q+ekd/k/djI4Sl5dAkDkZrgBnx8LQPaX3ZOHxSVAtMh2vp/aBEDSUnk7wkkZQDF8REyJJP4/fERMiSQ6FEBJopdRLHcAQIuJzce1oQNATkS/tn764T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hbGFIAflBUCxpx3+mgwYQFM/bypS4fE/XmOXqN6a9j8yA5Xx73MNQHgLJCh+zCRAcm2oGOevAEBSD9HoDmIYQCgK9Ik8yfg/RwN4CyTIFUDde7jkuNMAQKhvmdNlcQJAPxwkRPmC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pfeNrz2z/z+8BRIUPyYiQBCugEI9/e4/pIgMq3jDEUAAV7JjIxAHQP2fw3x50SNAJgFqatnaBUAbZJKRs/AaQNC4cCAki/c/zo3pCUvcGEBEUaBP5En8P6vnpPeNbwhAIqXZPA6D4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZDvfT43XBkC7YduizKYgQDtwzojS3vM/yk+qfTpeBUCZ2HxcGyoPQAK8BRIU3yVAYr68APuoCkBQjZduEiMfQPcGX5hM1QRAO99PjZfOGkAijnVxG40FQCxlGeJY1wRAWIy61t6n5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RN0HILWJ9z9kIxCv65cdQLpm8s02t/8/ak3zjlP0B0Dn49pQMY4LQAN4CyQoviVAWkdVE0TdCUAD7KNTVz4fQCgs8YCy6QJA08H6P4c5HEBM4NbdPBUDQODb9Gc/UgVA+IpuvaaH6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AW4WLxaG3D8+eVioNS0kQDxrt11oThJAB1+YTBWMBkDSNZNvtjkJQHRGlPYG3yZA0/avrDSpDEAbZJKRs9AeQPIMGvonuPo/61bPSe+bG0ABh1ClZs8EQNC4cCAkiwtAn5PeN7725T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LuQR3EjZ1D9bQj7o2awbQPFjzF1LCAhAF58CYDyDB0DIQQkzbT8FQEvIBz2b9SRA7N0f71Ur+z8CDqFKzf4UQLG/7J48LPI/lBPtKqQcGECW58HdWbv9P9hHp658FgVAnpeKjXkd2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8aDZdW/F4L/NI38w8AwgQNbFbTSANwpAza/mAMGc9T9EwCFUqdkFQNc07zhFpyRAcXK/Q1HgAUD+fcaFAyEYQHbgnBGlvfo/w2SqYFTyGEB63/jaM8v9Pzm536EoEARAmE7rNqj92D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8SxBRkCF4r+h20saoxUgQPkx5q4l5BNAAU2EDU+vJUBehZSfVDsOQGFUUiegKSVA1QloImx49z9JY7SOqmYXQPZFQlvOpfc/ajANw0ckGEDqeMxAZbwAQE3bv7LSpAZAWkqWk1D64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tYmT+x1KDkAv3SQGgRUeQGlSCrq9pP8/K97IPPKH8T/qIRrdQSwIQLyWkA96ViRAQkP/BBerAUApyxDHutgaQE4oRMAhVAJAzxQ6r7GrG0AH8BZIUPwDQDihEAGHUAhAuyu7YHDN5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"68VQTrQrC0BNofMau4QgQGuCqPsAJPs/63O1FftLAEDHSzeJQaAKQF4u4jsxeyNABW7dzVOdAUDB4nDmVxMaQLZKsDic+QBANuohGt3BG0Dl8h/Sb18EQHRBfcuc7gdAonvWNVoO6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vkj5SbUPDECQgxJm2r4cQDawVYLFoQtAPj+MEB5tD0CzmNh8XJsJQNJvXwfOWSVAatlaXyS0A0A0hc5r7JIXQPFG5pE/WAFAI6Et51I8GkCX4qqy74r9P6gd/pqs0QZAsHCS5o9p3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QNmUK7yLCkDLZ3ke3H0dQKMjufyHdPE/MgOV8e8zA0C5GW7A58cJQGuad5yiwyRAqyFxj6WPAEAsZRniWPcWQGTMXUvIBwFAngyOkldHG0B3EDtT6Dz/Pwkbnl4pCwZAVPzfERUq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zEV8J2Y9+D8MWd3qOYkaQCgn2lVIef0/3BFOC170D0BgzQGCOfoMQGrecYqOpCVA1GAaho+IAECDbi9pjFYYQIyhnGhXIf4/CmgibHh6GEDedqG5TiMAQED2evfHuwJAmKQyxRwE3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DM11GmkpBEC0PA/uzqohQBKgppattQtAFVJ+Uu2TDUBNhA1Pr9QOQJf/kH77eiVA6LzGLlH9BUAuOe6UDlYbQIKLFTWYBu0/RUdy+Q+pF0AxthDkoIT9P//nMF9eQAVADVUxlX5C5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JLn8h/SbCUAy5q4l5AMlQCAkC5jALfE/DM11GmnpD0DtgVZgyOoOQOJYF7fRICZAak3zjlM0CEAao3VUNSEcQK/OMSB7PfQ/6dSVz/L8FUDPSe8bX/v+P9VbA1sl2ARAJbN6h9sh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RbsKKT8pB0DrVs9J7zsZQBfxnZj1YvE/TmIQWDn0EEBnRGlv8AUKQLmq7LsiqCNAfGEyVTAq/D/SOqqaICoVQH3LnC6LyQRAilkvhnICHkAexM4UOm8AQLk2VIzztwVAxuBh2jf34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4q/JGvXQCEAzxLEublMjQCl5dY4B2ek/GFsIclDCA0Bf7/54r/oRQGIQWDm0qCZAcLGiBtMwDkDY9Qt2w5YcQOllFMstrfk/OBWpMLawF0Cl942vPTMCQBAjhEcbBwZAenB31m675j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/fZ14JzREEBsQ8U4fzMgQBwIyQImMAJAPE7RkVweEkB2w7ZFmW0QQHZPHhZqLSZArWnecYrOCUCWeEDZlAsdQNRIS+XtCPg/M23/ykozGECJ6q2BrRL/P59x4UBIVgZArMjogCRs5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tn/2I0VkC0AHX5hMFcwkQEFIFjCBW/s/ahMn9zs0GkAUBfpEnqQMQLIubqMBHCRAoBUYsrpVCEB7iEZ3ELsbQPYLdsO2Rfc/p+hILv+hGkA429yYnjAAQFVq9kArsANA5dGNsKgI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q61p3nGqJED0/dR46WYbQDP5Zpsb0xpAHxFTIoneAkDOqs/VVowTQOlILv8h/SZAc7osJjbfAEATfqmfN1UaQAwfEVMiifA/I/PIHwz8GEA0nZ0MjhIEQEVHcvkPKQdA4o+iztxD5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/tR46SYRKUBtVn2utoIkQFsIclDCzB1AZQETuHW3F0BMpgpGJXUKQD55WKg1jSRAKETAIVTpAkCg4GJFDWYZQExPWOIBJQVAwOyePCx0HUBagSGrW73/P7gjnBa8qAVA1m670Fyn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wTkjSnujJkCWz/I8uBshQD0s1JrmHRpAZr0Yyon2BkAfhetRuN4JQIqO5PIfciRAFytqMA3DBUBL5e0Ip2UbQJdWQ+Iey/4/2J5ZEqCGGkAcmUf+YGABQCbHndLBugRA6SlyiLi55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l1ZD4h6LBkD61RwgmEMWQJm7lpAP+gVAliGOdXEbJkABamrZWh8OQC7/If32FSZAVdl3RfB/AkBNvtnmxnQYQAe2SrA4HPs/CmgibHiaGEAz+WabG1P/P+C593DJsQNAY7fPKjOl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x2MGKuNf/T8kYkok0csKQLMkQE0tGwJAZ0Rpb/DFJED3Hi457tQQQK36XG3FfiVAT5KumXwzAUBUOlj/59AXQDJyFva0Q/4/gT6RJ0k3GUB0B7EzhU7+P+5aQj7oWQFAUz4EVaPX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WTSdnQyOBUCSIjKs4s0GQJtattYXCQNAb0c4LXiRH0D/5zBfXsAJQK1p3nGK7iVArMWnABhPAUCtNCkF3Z4YQPfHe9XKhPo/HPD5YYTQGEDyDBr6J/gAQL1SliGO9QNAJPCHn/+e4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HVpkO98vEEAGDf0TXGwhQMstrYbEvRRAxvmbUIgA+j/4Nv3Zj9QKQCBB8WPM/SRA86s5QDCHA0BcGyrG+RsbQA1xrIvbaPk/UvLqHAPSGED6m1CIgMP+P3h/vFetTARAmYOgo1Wt5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j1N0JJe/BUBIFjCBW3caQIKQLGACdwxACf63kh0bB0DI0ocuqK8OQCxlGeJYNyZAmGn7V1ZaAkAyychZ2JMaQPaX3ZOHBfc/fZHQlnOpFkBV9l0R/O/9P8QI4dHG0QVAWwcHexND3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O+ElOPUB6z+xv+yePFwhQN2YnrDEg/I/j6omiLqPB0AHX5hMFcwIQBb7y+7JIyRA9kVCW86l+z+VZYhjXZwaQIXrUbgeBQBAZcIv9fMGGUDdByC1iRP9P3Ww/s9hPgZAEMtmDkkt3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NUbrqGrCDUAYfQVpxkIaQByxFp8CYPg/g24vaYxW9j9IG0esxWcJQG6jAbwFsiRAK97IPPLHA0CCixU1mOYYQFZ9rrZi//s/ERlW8UYmF0AKLlbUYBoAQJ1LcVXZtwNAfzScMjff3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zQGCOXp8+T9TXFX2XXEWQJxOstXllOs/X16AfXSqEEAo1T4dj9kHQLUV+8vuSSNAbt3NUx1y/z+XVkPiHgsaQJ/Ik6RrpgNAnkFD/wSXHUDoMF9egP0AQDNt/8pKkwNA0m2JXHAG4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"npj1YihnBECjHqLRHaQWQPrQBfUt8/0/W7bWFwntC0DBOSNKe4MOQDbNO07R0SVAHcnlP6TfA0AKaCJseHoXQL+aAwRz9Po/YOrnTUVKGUCJeyx96IL9PzPhl/p5EwVA3enOE89Z4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZyeDo+TV8D8om3KFd7kYQOlg/Z/DfAFAs5jYfFw7E0CTHRuBeN0PQMuhRbbzvSVAr7FLVG+NBUCfq63YX9YXQN0MN+DzQ/4/QE0tW+vLGkCe76fGSzf+P8RCrWnecQVAzhySWigZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yR02kZkL3j92Tx4Wau0VQEgWMIFb9wFA9fOmIhWGAkBR9wFIbWIOQE0VjErqBCZAWBzO/GrOBEDTpBR0e0kWQBN+qZ83FQBAEwoRcAiVGkArE36pn7f+P0BqEyf3ewNA9kVCW86l4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N/+vOnKk0z+1pnnHKRomQGXCL/XzJhxAKSLDKt4IDkBEaW/whckQQDPEsS5uwyZAFytqMA1DBkC1/SsrTZogQPH0SlmGOABAW0I+6NmMG0B24JwRpb0AQLdif9k9uQZAbY0IxsGl4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fdCzWfU59j97MZQT7aodQHzysFBrWgpA2LYos0Gm9T+Z9WIoJ9oPQCEf9GxWXSZAXi7iOzHrBUD11sBWCbYaQBiV1AloYgdANdJSeTvCHUB0e0ljtE4AQMCy0qQU9ANATn/2I0Xk4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ozuInSn0/z/9gt2wbcEhQLD+z2G+/AVAYTdsW5TZBUDT2cngKDkMQMx/SL99nSRAdhppqbzdBUC8BRIUPwYaQM9m1edq6wNA3pOHhVrzHEDSxhFr8akBQOyjU1c+ywNAevzepj974T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jV2iemsgDECuZMdGIP4dQMX+snvysPk/sKw0KQWdBEDwbfqzH2kPQBdIUPwY8yRA9aEL6ltmB0DVCWgibLgZQL06x4DsdQJA9MMI4dGmGkAL73IR30kBQF2nkZbKWwZAEEHV6NUA4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vOgrSDMWAkBAwcWKGswgQNicg2dCE+c/1uJTAIynCkDkvWplwm8GQKCJsOHp1SRA6ZrJN9scB0AFwHgGDd0dQGNi83FtaANAvYxiuaXVG0DJAiZw624BQMucLouJTQJAKXef46NF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HVVNEHWfBEA9uDtrt90fQET9LmzNVtg/NpNvtrmx8j8jEK/rF+wIQL4wmSoYtSRAjNZR1QRRBkAXK2owDQMaQGA8g4b+yQNAFOgTeZLUHEBzY3rCEs8AQNuizAaZJAFAA3rhzoWR1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YY4ev7fpB0D9vKlIhdEeQNz0Zz9SxAhAZ0Rpb/AlEkAD7KNTV34LQI0o7Q2+MCRAx/SEJR6QAUC4AZ8fRsgZQDqSy39IP/4/8kHPZtWHF0DMRXwnZj3+P5MYBFYOrQdA8zrikA0k5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q5UJv9RPCEBQwkzbv7IcQJW4jnHFxd0/26LMBpnk8j9XPsvz4C4JQPhT46WbxCRATaHzGrvEA0Dq501FKiwYQOIBZVOu8P8/t39lpUmpHEDByqFFtnMBQNDQP8HFigRAeZEJ+DUS4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WOcYkL3e/z+tbvWc9C4gQLQ8D+7OWghAGm7A54eRB0BO7ncoCvQMQO7rwDkj6iNAxJRIopeRAUCob5nTZVEXQEJbzqW4qgRAn5PeN752GUBETIkkelkAQO27IvjfSgVA2ClWDcJc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J6CJsOFp/z+DaRg+IiYaQHDOiNLeIAlASG3i5H7HCEBjuaXVkHgNQKJFtvP9FCRAYTdsW5SZAUBkO99PjRcXQIM0Y9F0tgRAs7W+SGgLGUAgQfFjzF0AQPhwyXGn9ARAJF6ezhUl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bkzg1t3cEUDOpbiq7JsdQKsJou4DEPg/hCo1e6AVAECBsilXeJcIQKHWNO84BSVAEHUfgNSmBED8xteeWXIZQKQZi6azE/E/ybCKNzLvFkD+JhQi4JD+P88xIHu9ewRACHO7l/tk4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xmiu00hrEEAzbf/KSjMWQOlDF9S3jAtA/fZ14JyR/j+8V61M+CUNQPW52or9ZSRA8x/Sb18HAkBl3xXB/5YXQB7cnbXbrvE/rcCQ1a1eF0AtlbcjnJb/PzKs4o3MIwNACyb+KOrM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WUxsPq4NA0D1udqK/WUlQNXKhF/qZ/U/aMu5FFeVGkAqUmFsIcgNQGWqYFRSJyVAomKcvwlFBUAb2CrB4lAaQAVu3c1TnfY/Z9Xnais2FkAoCvSJPEkBQPLSTWIQGAdA3uaNk8I85D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"swdagSErA0DyBwPPvQciQIigavRqAO4/L4Zyol0FFUDFjzF3LaEIQORJ0jWT/yNAAHSYLy8ABEBV9l0R/M8aQLpm8s02N/A/oE/kSdJ1F0AjZ2FPO3wAQGKE8GjjyARALUKxFTSt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Crq9pDHaAEA3pics8bAhQMNi1LX2vus/NIC3QIIiEECTOgFNhI0HQJCIKZFELyNAEvdY+tAFA0A75Ga4Ad8aQK4q+64I/vs/Rz1EozuoGkCEDU+vlKUAQMoa9RCNLgZAJLcm3ZbI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rtNIS+UtAkC1GhL3WBofQATmIVM+BNo/mwMEc/S4AEC7RPXWwBYGQOm3rwPn7CRAUyKJXkZxA0ApBd1e0lgbQAGkNnFyv/s/s+pztRX7G0DxETElkuj/P8L6P4f5MgZAFt16TQ8K4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/MbXnlmSBEBY/+cwXy4gQFkyx/Kuesw/dEF9y5yu8z/67evAOSMGQK1p3nGKDiRAe0ljtI6qA0BmMbH5uLYaQA7z5QXYBwFAU67wLheRHECvd3+8V60AQGlv8IXJlAZAVKpE2VtK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IhrdQezMBkBdUN8yp0sdQOp4zEBl/PY/m1Wfq62YCED6sx8pIkMKQDW1bK0vYiNAF5rrNNKSA0Aq499nXLgZQA0a+ie4GARA7Z48LNQaG0DHgOz17o8BQP2k2qfjcQNA+Uz2z9OA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d9uF5joNBEDsNNJSeXsCQMkiTbwDPNw/7BLVWwO7H0AJ4dHGESsIQDEIrBxahCVAopdRLLf0AUCZ2HxcG4oXQH8TChFwiABAxTh/EwrRHUC1MuGX+nn7P/XzpiIVBgZA9uy5TE2C3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6N7DJcddAkDmBdhHpy4AQKN2vwrw3d4/fuNrzyyJI0DsL7snD8sGQG/whclUQSVA28TJ/Q7FBEAzG2SSkTMYQEpGzsKedgBAWcAEbt3tHEB1q+ek9438P3zVyoRfKgRAnQ35Zwbx3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3pOHhVrTBEAi4BCq1Oz+P//nMF9eAPg/ufyH9NvXJEBqpKXydoQGQIFDqFKzlyNAj1N0JJc/AkCRD3o2q74aQKHWNO84BQBABaipZWt9GUCm0HmNXaL+PyZTBaOSugFADrvvGB574D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gnNGlPZmFEAeG4F4Xb8gQAK37uapTgtAtHHEWnxKAEDgoSjQJ/IOQEymCkYldSVA2PD0SlnGA0DhYkUNpqEXQLHh6ZWyDPk/+SzPg7vzGEBuhhvw+WH9P6sEi8OZXwZANh/Xhopx4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UWuad5ziEUAsms5OBicZQO7rwDkjCh5Abm5MT1hCFkAJ/reSHbsRQO58PzVeeidAxqLp7GTw9j/0T3CxomYXQPkx5q4lZPs/7lpCPujZGUC+9sySADUCQOgTeZJ0jQJAW7VrQlpj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NIC3QIKiFUCpvB3htCAcQC6thsQ9VgdAYU87/DV5EEAQWDm0yDYOQPvL7snD4iRAM4rlllbDAEDiI2JKJPEXQHf4a7JGvfg/zR5oBYbsGEDDgZAsYAIAQJ4MjpJXZwNAJc0f09o04T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VFc+y/OgB0BY/+cwXx4dQEvqBDQRFihAOX8TChEwAUDNr+YAwdwNQBdIUPwYMyVAlZo90AoMAUCRLGACt+4ZQBFTIoleRgNAkdCWcykOGUBEaW/whYkBQA9iZwqdlwVAluoCXmZY4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mDRG66hqFUATChFwCLUiQO58PzVeuvY/OBWpMLYQEEDBrbt5quMQQEjhehSuJydAYWwhyEFJBkA7U+i8xi4aQE5iEFg5tPg/tDwP7s4aHEBzLsVVZV8AQPtcbcX+MgVAb9dLUwQ45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfBL/bwp8D9SuB6F69EiQFEU6BN5kvk/UN8yp8uiA0C+h0uOO2UHQCEf9GxWXSRATS1b64vEA0C2vkhoyxkYQMjvbfqzH/4/Qni0ccR6HkD7Bbth2yIBQEq1T8djxgZA529CIQIO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KSLDKt7ICUDbp+MxA/UaQA5Pr5RlCAJAfuNrzyyJ/j+5jQbwFogKQBniWBe3ESVAsAPnjCitAUCRCmMLQU4XQCSX/5B+ewFAvR3htOBFHECwG7Ytyuz8P/vo1JXPcgZAwDxkyocg4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DM11GmlpCEDIzXADPt8gQGTnbWx2pO4/kSdJ10w+/T+hhJm2fyUOQBTQRNjwdCRAdxA7U+j8AEDK4Ch5dY4ZQG76sx8pIgFAG2SSkbPQGkAj88gfDLwAQB13SgfrvwVAc0wW9x+Z5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qTC2EOTgAUDRP8HFilobQNnsSPWdX98/PGagMv79A0CtLxLacm4GQATnjCjtjSVAN091yM0wAkD8HYoCfUIZQGfyzTY3JgJAOnr83qa/GkB7gy9MpooCQL4Ts14MpQRAjJ5b6EqE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"beLkfoeiBkDBkNWtnvMYQLHh6ZWyjO8/Rdjw9EoZCUADWyVYHM4KQJf/kH77OiVAopxoVyFl/j+xUGuad/wYQLR224XmegBABW7dzVO9GUDA54cRwmMBQHzysFBrmgNA5zqNtFTe5T8=","dtype":"float64","order":"little","shape":[13]}]},"selected":{"id":"1741"},"selection_policy":{"id":"1740"}},"id":"1664","type":"ColumnDataSource"}],"root_ids":["1635"]},"title":"Bokeh Application","version":"2.2.3"}};n”, ” var render_items = [{"docid":"8f0ea4dc-4b6e-4408-909b-05ae431b6c9d","root_ids":["1635"],"roots":{"1635":"839e8f5c-0dea-441c-bf26-43e861ec5483"}}];n”, ” root.Bokeh.embed.embed_items_notebook(docs_json, render_items);n”, “n”, ” }n”, ” if (root.Bokeh !== undefined) {n”, ” embed_document(root);n”, ” } else {n”, ” var attempts = 0;n”, ” var timer = setInterval(function(root) {n”, ” if (root.Bokeh !== undefined) {n”, ” clearInterval(timer);n”, ” embed_document(root);n”, ” } else {n”, ” attempts++;n”, ” if (attempts > 100) {n”, ” clearInterval(timer);n”, ” console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");n”, ” }n”, ” }n”, ” }, 10, root)n”, ” }n”, “})(window);”
], “application/vnd.bokehjs_exec.v0+json”: “”
}, “metadata”: {
- “application/vnd.bokehjs_exec.v0+json”: {
“id”: “1635”
}
}, “output_type”: “display_data”
}
], “source”: [
“bokeh.io.show(n”, ” bebi103.viz.parcoord(samples, omit=[re.compile("Tau.*"), re.compile("Sigma.*")])n”, “)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“In the plot, samples that did not result in a divergence are semi-transparent gray by default. Samples that had a divergence are colored in orange and shown with thicker lines. Because the scale of respective parameters may be different, it is often easer to rescale each parameter for the plot. We can do this with the transformation kwarg, and setting it to ‘minmax’ sets the minimum of each parameter value to zero and maximum to one.”
]
}, {
“cell_type”: “code”, “execution_count”: 19, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“n”, “n”, “n”, “n”, “n”, “n”, ” <div class="bk-root" id="9302bd89-d037-4b82-8fce-2e7dfaab0332" data-root-id="1801"></div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“(function(root) {n”, ” function embed_document(root) {n”, ” n”, ” var docs_json = {"1e7ea3f1-5bd0-4cfc-9ce0-c550b84c4434":{"roots":{"references":[{"attributes":{"below":[{"id":"1809"}],"center":[{"id":"1811"},{"id":"1815"}],"frame_height":175,"frame_width":600,"left":[{"id":"1812"}],"renderers":[{"id":"1833"},{"id":"1838"}],"title":{"id":"1911"},"toolbar":{"id":"1823"},"toolbar_location":"above","x_range":{"id":"1800"},"x_scale":{"id":"1805"},"y_range":{"id":"1803"},"y_scale":{"id":"1807"}},"id":"1801","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"1805","type":"CategoricalScale"},{"attributes":{"data":{"xs":[["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"]],"ys":[{"__ndarray__":"8bdwHtCi2z8tBu8PMGTlP0J1Qtqn13Y/cAKQ3aIzyz/uja9OnMbOP00rzgw75tU/bXGho1kD2T+mH/dfW1zcP738OZth6tw/8jy798jxzj9VBwqq7CvkP8EKfIdCiOA/SI96NuRf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4+ud3a9F3D9AiyzmPDDjPx/3+EbDvac/YrD2Qkg5sT8fAcJiwJfSP6iBMC1FOMk//5aNCBjd3j+mUic+UOPeP6VzTXtRK+g/BKUsq/R44z+03w7V7r3hP13PZQcMgek/ojoHdarb6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7zJ3KWa13T+rdOFI6sXgPx3+osOf36I/awjx/x1B1z8AHLH+8OrYP8y8IAi3iNE/mx/V7v104z9IiNF26lTcPxxA6AxKl+I/K8ELUCz25j+cKW71NTnUP2KSMZz6CN4/SBwxFONx5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+WefUGJ43T8WtyJV3WjjP8NwpyDx9qI/568Nw6CXuT+lsb0NBTzjP2A8TjJKreY/YVj8qBo62D+VjnnaXmnbP8EKRDxS5uY/vk+FfJFW3j+Ho3dJSenlPzfGVlJae9c/2gPJe3ZW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KYVl66sP3j/mTih+7enjP5rtMuCk3oU/P+a/DPIKwD/awhaqhQXaP2coMkMI59w/4B1Pkrni4D/ixqGgivzRPyqklLu5Y+g/e+kLJ8op5D/5YTDhbxfTPzL8PNI5fds/yL1Sqe2q5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aRFN/x+M3T/IpIUl36rgP8mOlblWjXU/KeVJT5T10z/myGTTSbXXP0dB/2N5Bsc/58osJVix3z+CRg5igJPeP+89q+YbPec/kN1BTNSS6D+F4350+M/qP8m6XLC9BOQ/fCUJVtQd6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+nXaX8Bd1z/iKrx4wzDoP6a1KLWPdKs/sBQZUb5F0z8JVL1CXqDmP32jj5YWt+M/4I7+Cvrb4z9K8VFD52zaP5FJ32ITn8A/30FXGTvHzD9xQmh/KNTXPxe1cqlNFNQ/Chg40E5X3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p/4PR8QT3j8B+K7DjJXnP0Ra73qeFYM/mdILsL5kyD9qycqzO83eP4TUfWwFBdo/DWGRSC5Q4j/mALcxmjjfP6toGv/6auc/oMFKCC8I5D8gkNaXVHveP6kfE9Nzjdk/B4DrTtdr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sBzrz4wg3z/FIp4bYCfiPy2Ho32XHoY/9F5PBeGTwT/y4mqq20DbP5ohhHOOytY/ncsGlCX25D9NnNp7IIDcP1AyXsgMUus/UMc/1Y3D4T/2K4RQMVHZP/Bz3ZDxq9E/Dhx//d7A4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KmmAaZhI3T+NV0Vz0YLlP/aZZ9H7zXw/DjI2AASIxj8SwSaEkfzTP4KUcDe6CtY/rxGo89zi5D8FQxaUTgXgP8u4WGlnpeQ/1kZP5pX/4z+V3iwju2HkP8PYYFOGoNc/MwRQUkzo1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pu2eOLrP3z/gUHOGHGzkP8PxlCj+FoE/DR7l3ldtpz9OXiGtAwrjPwDPl5y9F+I/lbW70Voi5j880kA8ut/cP6ZdNbKF5uw/mfbkYdrA3z/z3SZQXxXgPyIRu1UT69w/dVq3meca5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QvnKZxWs3D9KBzcL0U/hP7Nui+i84aU/R05+WDeS0T/DnaGvPAzeP2cJ+NWOCtU/6KG8gBRM4j+didTkCeLWPw13WS835uU/qmAWSU+j4z+tk+OexY3mPy8MB9AyCcw/+HfirtUL6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0TsvuXzx3j8ytGqF4oPoP4xRFt7c2ro/mnbhI6ZHvz8X70aNjVbgP9KQErgyAtk/Z512VG/e3T+OE5lbD73WP5k1ftYgat8/xwercsSG4T+Pb/kpdjDbP3PF1KhRQdE/o71fa3YD4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8XTXwCQY3T+rlA2lPK/jP0pYqL9wwbE/+qmJ8Ssmkj/yRHGTfwHfP9ZrB7u+5tE/hFDnvo3l4z+UjScL9mLhPyXNgwmRnt8/3nRSDpbw3j/K0IWTE1TQP8K9R//ZCdI/QXUWgbWm4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0Wi0PuHt3T8DPSNaPMzjPxvCuKBl564/MQz1R4nhtD/eRi01GP/gP2YM76JJ09s/Eh+97oPV3j8EX0yz5NfZPzdc19ZYkOM/uUxOJ8tT4j9LOrC6ep7bP1ickylCANo/grpNjvMC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Aj6TgcDV3D91NE8cP7TiPzaOwrlaWls/cKDUD0FwlT/NsdJhR07WP/3lISaVA8k/wYcFGfnE4j8e5skpxZXcP+/NE0juLOM/SCnzuzer4j+032GA54/dP3nOhtp20cw/gRrmYNzh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r5JGiicI4D91P/xyMxvkP7x8t/+svLI//Fa1M+oy1z9uHsMc8ZLjP359bWC3Q90/CfsxOEAM5D/GmKQ7z9LcP0zQCcDVWOE/aSKSn4qy3z+PRfNQ0DLfPxIeCDJ359Y/W2b+Qb1l5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5S7rhu1n3j8xjFBh8AjlP0GxoME0F9E/8tsG894Q0T8D/LMOZdngP3x1U9S7gNw/DgnaM+v71z/bDZOpcnvYP8LOVjQtudg/8wPWlMTy2z82MC7RXs3SP2e/mErWDtY/PQeMAI+M4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cqd/T5NL3j9e+8UGAw/hP6jC+lbXGLE/h+3VTdCv0j+l1d3eojHgP0OkHbhmlt0/46Vuom3a4T9DQcydu63fP5TXZohbUOU/6EASihUB5D9u9qFJYYjAP780Knext9k/dEGi9rGj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3Tv/58VP3T87cDgxEo7mP/AmzN52sZU/qvBXL2vjsT8ILdV+GsfPPwZFeG0r47Y/mIuPo4bR5D9DTBOT94HlP5ZCOiPQ9eE/naXeT/Up5D9u8BZCuu3RP2bUNuTyRdU/XerkkxjP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TUID04lR3T9ntK/6BdznP82B+Iol4lA/YH5/jqmGtj/AacxJzkPTP0AJGiDTGOA/xRKkfl894D8kPtgxzEDgPzdGNRe6iuk/THVAYFiO5D8S+UXl3U7jPyB6PZRe890/SKR2WPAS5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/S2tqYKG3D9BKPl9SCDmPxCC8NNotYg/h4+aEX0xsT99TJWePQPbPzG8BbSgCdc/COTuqGYZ4D/kuJOT/pXeP6NCDvWTQOU/XJzs+Y4W6D835Yf+gRHfP3pK/pFd/dc/ZnEuGCsO5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KLN+wuy93D+5GYDfeGTkPzPq5fiJvWE/+RhcJoV7ij8hNieSS3XRP5UNULqabcs/23D+I4uZ5D/KN0tU+4TbP1XLUaYjGuU//9zcim1o5T/E7IhCj87TP4MLEXspjdg/kk6enXh15j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pM/lThru2z+baMpmVd/hPy1D54Wl5oE/uYdXQUHj0j/zot4ZiOLMP665dbQ8q7o/D4mFKjXW2j+tMsiapobVP7YNQpNElOM/NRPpsR2F4j9ZsHFylF/jP5bvG7kkLdk/+uyFYh0B5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M+aiVRrV3T/JZLDQq7DjP7UkOvkaaV4/3WK9Y9VOuT+ViI7SXFfWPxdIQMsgE9w/0yrppF3t4z83XcRKMmHYP2M2WhpnW+g/D5AKtEVg4T8//7mKeWbZP1K1XkAWLuA/ZZnrtxCv3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dRHTREj+3D89CRY/cXTjP9CFD3BglbI/fF9Foc+3sD/YyoHjz3TeP/9+HrvVcNs/sGyq6GDT3T/WgGGUBdnNPzrGaAeT8eM/Zocn8hM72z9b7Lpf49LTP8PgWBxhsdk/6P6EH30P5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CExkI2Hb3D8yyzrTQTbkP+3qMrn2mZA/ydh9sbdxpD9xPcaM/mXVPy+BzB9nC9A/cRV62Szo4D8hyJZzmj7jP7d9Ojl99eo/d9FashKZ5j/Nf8sOW/TZP5ZcKud+Ito/i8oN62Ze4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YCJ4Xxft3T9sV0FbcWzkP5M/wgQrtYY/37cJHQNInz/r9oTcRQ/UPyZoV12PotY/hhfNCa6W5j+wD/YjXoXkPwwmne5c1OI/EaFl3n5i4z9CEMeNkTvjP0K67/B2YOA/lbpS2AiA5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DhLxFlsr3T+3fNn97STkP6TlJHorRWc/7KyGwoKLpz+7TPGev9HYP6mQM8JOUc4/CXnrtbKK4T/QnU1kEJHfPwzSWXU5wOQ/U6JCH7sF6j99SBPYZJXXPxDM2XkuKMY/M+ViPgrw4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ygCkANh3T80sR+sUE7gP+d7TXx06Wk/Xw4ROMzLvj/0fgchiArXP+LS0pHYUt4/S3EeuHMl5D9/4D9cZ5LgP/PwmS6Iweo/ZkazPl+w4T9dqKJL26bePxJJmd0pEtA/6oLfjseR5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2eJ5V1fn2j8b98/ZPiHlP76W2sH+VbA/0mgvi9mGwD+OuNtPad7XP8rtYLxNEtY/XOxHADRA2z8zHMoGCHDgP2ATlS1n/OY/CGw4gKGd5D+U8sWr3wfXPzU8pfWjP8k/z+RRYwBu4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q8NlPx643D/J+e/6mVblP+w1l0mUs4A/e1KxJlgBqT8KfYiMZVjNP82XqiLB29Q/Dl/j/TCo3T/pjJsrsF7VP0VV7ts9FeY/DXnYZlhS5D/kMe8GQ8XWP5HohGS2cc0/6SHg5MOi4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KiQvLIx63D+0zRoyo3jiPxvP8bNGf4s//ll78mD+sD+6znbEoHHUP9kc9rBBFNM/fvoeAIKK4D9I8TzyevHMP2EVefRqaeI/mQLhzic53z86X3dLsbLaP1ZW6SnjPts/NryLYIQm6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UZuuPS/u3T+Xd59Yt1jlP8D7EyKWEpI/aO/xEb2GrT/588eeGM3aP7aYj0f4h9U/LxWgqcXB4T8PH7gOahXiPzTSs+nfGeU/1XB3P2ax4j87RiTMFC7gP9b07jXvvNU/7uXyWIkU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2xHIXuvE3T8GYInHICHmPyQT3uTUj2I/m+R3Wv48sT+3VvLszGbWP+hFQcgP/N4/KDxynyUd4T/nIbtnODbhP221q5KUYuk/kArzpPaV5j8808I9uhzjP5ngmWdAX9c/zj/mkfSA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JxB6cwMi3D8OjKqDKWPmP11+LAb+UW4/OMv79pTysj/f2bqrcDvGPx+LWJc3cJE/t/ffAq8M4D9ml2NbkCbRP0JFz4Hi5uI/8upLSGq15j/NlcEJEVXXP4xy104Vt+I/VnYl26lt6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UgyWI9R83T+O1gQ6VqrhPxzenyKo+Yg/Ssm/WGJyxT/H+KMYKjDXP6uljpknztA/m7H7uAOx4j8YiW8kLNvPP6j6KDbnaeU/5qNEmIlr5T9r3hSEoDfhP7CcHl/ooto/ENuNza9m5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ohwMysGg3D9DwLSxVcLhP1bH0oI9s38/4xS5QbpVxj8kZ8Ic7fnQP+6ZnoCh5tY/Q3U+7aAQ4D9iUF6CYX/kP2WtAXl/feQ/gASjigdJ5j9Hcx7QAW3WPy05h0Zmpts/sIIWIhCO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZdJx4PBs3T/7mzgiSJ3hP4eadMlvEFI/mI/nc7/huT+2iMQEY3XUP06iPORuZtA/4Vc268di5D/rZhfug0bkP6YmZscBjOc//amIKYXv5z/iT9jShAPZP2AC/wY7oeM/7NyPwuIQ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7qvpY4U83j/R+/f2gvzmP1w3CSGVlDg/+cUz+NWqwz92WPOM+g3ZP+OR1ZIloN4/+PUsntBu4z+DObDQMTXWP1GB/z4cgus/jaKD7NpH5D9qPpxFnEzaP8TLpzhmr8g/1W1ynBc44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sgLA+CYZ3j/of3PAF4PmP2hft5DFBXE/nMYqwlUuxD+SvvEayQ7bP54ePUh8RN0/C8kV5i9e5D80PVaLU2bePzAMaxS4x+g/vzMVQbGK5D/T0n0FQyrXPyga9UyJ7cc/579DIN4O3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dwjaeCiI2j/DQeAheYzjP2iLwsucprk/+uulGd8vsT99OM2M5bnGP8+C1v28g9A/ahTJI/p84j9FZAYp/MTMPwJCvDqYNOI/wGOHNrpi1z9sw9CQ6mbcP3qDyeLfN9Q/Z9NeVoJ45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8p8jAQIT2z+lulGKe5PjPxxqucXHYlk/hiEb1dwDqj8E0lRi3nDGP4fkzU5PHtQ/Slwa/40H2T/BhzP4/rjZPy/Ws48q1eM/f0sxQ61R4j+lgk3xeK/YP7AImbi0rtU/ya9+eVU24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7dYRlXh/2z8JVsD/go3kP+5rUnSfvlg/IVg7pGBcpT9GioAkr8HIP4ggszPy4tQ/lx66jH1U2j/w6UNAwynbP69dJokKdeA/MjQvpxTj4T9ckhFRhyrVPzSZirOtstA/F//DhwAj5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u9bo3AgZ3D+P5q4MYL7kPydkzydG35Q/a26rSMkKwj/DsIyGd4fXPys1ifPQ49g/+5FdRchR3z+JKargItTYP4PCXGV3IOA/iPBv9Uu63z8gc2Da9Z7bP/kvHN6ZkNM/3TkErKoZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4e7YbB6d3D/Pq0HY1XbjP1ElObU46qg/lkt6/xwisD80imFySRfaP0v2gJIm++A/rWZoDyIe5D/A3svD+0PlPyAUgXfrmOQ/xIiScJAi3z8nRwuL6vrdP7yxFe3iA90/04xnR7of4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0sL1xa+42z9K0s4uVr3jP1yGAg1JJqU/mnZLlVYrsz9EqWdlClXdP2CA1ZXlGNw/SKGj5cbT1T/JN8MFTozPP+nPFBSz3d4/ru50WIxM1z/3yomAUtrgPzaIt2W0ldw/SPUJZ+0B5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XoPU+G223T+YJ/GTLRLkPxIr51IjVFI/cvTsJZuqqD+ceaX+b7TWP1OnRpnVCtM/pg3YBM5w4j/Qq4rHhnjjPxDBWKMyMug/JnFzorLM3T+aU3TO2zbgP+k7hv65kd0/AEgweFbr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ajlvUl3N3D/kAQ/lpajnP9eigajOQt4/9GDN2uIK1D994QWbWR7gP5wRWwDIUOA/m+P2VFx72T+ruODy/GjfPwUmbu40td0//d8qrs8i4T9UoH3UUJDQP29DQakyrNg/VW7z2Fbl5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qySva1ln3T/flWsN5sPlP/sozy04ta8/zL1vWqlFtz/Ht8AyzWzdP480K2bkMeI/0qgHB2ID6z8u/5VcuoTiP+51qBZ7J9M/7Er1VozO2D/Z492zU9HcPzrC6niOV9U/so8GV89u5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u9gOtXQA3j+ZUyz/AabrPyGa+JauSIU/6FbIg1g1zj/K0ian3MTZPz0mg55OjdI/smpdG28b4T8rEIDSAvngP+DeOEWSGuo/fY3E75wO6T9I9QDuvOvmPy+o+bqztdA/r3YJebvF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QvsDrZyt3T/UTZnkRDbbPyA5DJdPxH0/aIUCOJ8M2j/OOXaETVXUPyXZ25rujdo/C+vV5fUR5z9i0/gd0FXkP62Sh7a3oes/r/u0ELSw4z9YSEON77TkP8VnJah0tN8/hvC+Ae9a6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GLuD0T5E3j84uBmqQovkP66CCMTgPZI/MzJNu8NswT9bPp3BtF7dP9rpNawsn+E/jOhqDOhX4T/nBuxod+XeP/8Qi8jZTus/5upmmaxa4D8TIB47w9XdP1bU3e8UHNI/bPovZC6W3T8=","dtype":"float64","order":"little","shape":[13]}]},"selected":{"id":"1920"},"selection_policy":{"id":"1919"}},"id":"1835","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"orange"},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"1837","type":"MultiLine"},{"attributes":{},"id":"1914","type":"BasicTickFormatter"},{"attributes":{"line_alpha":{"value":0.02},"line_color":{"field":"line_color"},"line_width":{"value":0.5},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"1831","type":"MultiLine"},{"attributes":{"source":{"id":"1835"}},"id":"1839","type":"CDSView"},{"attributes":{"data":{"line_color":["black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black","black"],"xs":[["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"],["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"]],"ys":[{"__ndarray__":"lgRw49Bw3D/RahsMBADkP1rcK8dflaA/n/pzS5Hioz/vOxm7jVbhP6YgDLcpLtc/k4BFR9Z+5D/sQ0V3O0XTP9+B5jH+6eA/YG8oVndJ5D/Fn3qmzc/ZP4XefboXJdc/HIlTL5Ps4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Woe2RtTZ3D+O/7knl3HkPywIxkOiLaE/jS1eu20ioT+XS40nOZHZP8hojTvQ9dM/kINAp1o/4T+yPg0bmnPPP//zRyyhWuA/OMPCOd2b5j/K8MTT0MLgP7lM7D2FVNw/puJ5IKBT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nj+YqeBd3T8cIhRbfInjPzaL0iQUOac/JHgpTNoKwD+6BUHGoPviPxfaiWuo0t8/y5oMhakG4z+gw6AasZfgP9nDzYVWZ98/6bhdRaDO1z82S2Bvq4vPP66q9tIj1uE/bA3CxjJj4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I8JbpfSG3z/JpCwlgKLjP6qanyVwI5s/tzCNQClmvz+FmfGLWuDhPzlkYmHD19c/20yjmIE+4j9AzIO2LzrhP9+yOrrdwuE/lGB1wBmV4D9bixM7/S3HP6yFSJEOtOA//RfVT4+Y5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kmrSWBLv3T+0Q9fqk3HkP4N44bRsAJk/gGI29UJNmT+iyOgKswvNP0QHVlZWO9E/4o8ry/6G4j8Uk83fHBLfPwrGmrO3MeM//OjCbWoD4T+qzXxuinTgP9dNbpim2NA/M9GPGfHI4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SadBukY+3D8+G2atSaHkP1tRc7eTw5Q/PdE/74iguz/TC47ZtXrSP5pl4udVGM0/4XH4z1PW5D+o7r3jw3zcP3Kt1UpDyOc/rsv4dmxl4T+vjvqmJwLjP+agY4WeFcc/Nz6zwvzS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kq8wR8hy2z+7RCQukMvlP8BUwoLfJKg/5j9tklPTvT+GMXfsHJjHP0x4elBkoco/cOI+vhVy5j/o2/x0KS7cP78Xu3E7+OU/ywhP7C3D4T/W5pThSFHiPxgxPAcnOMw/l67YObcS4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BcCb0NxX2T8cnFNCeivlP+YtSLsARaE/YqTTqfuKuT+q8NmcUGDKPznOx4G/xME/N42sXcWQ5z+NUi70rBPjPxi38YfpduI/jK29TyHL2z+DZRk+DgXbP15XK1h+MNQ/EwaA8+U32z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"75SJWDZs4D9tCv3RbhLgP4ftGwcA5cE/SYP3ZdIEwD996+mjBUPiPx0BEzlKW9g/XfNB/Hw55z+i4ItplvzaP65ly6Y7F9w/5Pml5LOe2T8LiDPN6OPXPx8xSdOLNtg/NNsjROtH4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+2f4EAWG4D8fLrxImTvnP89ho+SMj8A/weKXS7CGuD8f08W6O7TiP7VzXdsAzdo/czBpfr0G4D9b1axZ/FPQP3REcG2lUOU/G8EjYhOI4j9WD3vOWYrhPxqVCsCRXtw/Ynl4359k4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jou3+p4G3j/Rka3B54bhP4ZNGC38Lpg/cLheGkjCtj8Q5QWvVgvZP0RjILmz490/T4taArYd0j/zfMlFnQjOP6PFYCiIb+U/kkkPWT7x5z+LNMmh+8LhP/1k84//NN4/GqhI2jXU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n+6IkA9H2T/s46qmAGbkP5M6XoZ8UbE/MM5tfyghuD/xR3L6OJXhPw0nlvIiE98/Yj9xFAut6D8mmg++5nXjP4gs/HH3U9Q/cF7E4aWR0j9obrbQHe7YP24WiFRkrtM/CKUsiHXt3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mj525qhI2D9RkkW/EyHkP0WgU6jd3rU/qztS1bpHsT/6w2KLvKHbP6e1CKttxN8/NUPlvD5W5z8ktMvggzLkPxvbkLE8rdI/0fm99pow1T+o3kx0UIjVP9J1GnO2ytE/CkyduuwK3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"40lPJECX3j/S+JFojS/jP+Ehp92hc7U/qIZZ7zbJzD/FZ38NqTvhP1HHpGS7yeA/70sk7UJf1z8pv5TvNSLJP+1gXOZ1Gus/luYQZbgc4j/206cLHNDUP4SREFQURtM/FmXXA7q84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X6xAtGa93T8cRGecvdLkP1oUKXMe1Js/H7jMm1szyz9drHqdUpDhP4Y2GB81LeA/MqxfgjPI2z9LHglDqErPP9yxrV82iOA/0nls7jTP5z+op6soEOHUP+zSA8Buidw/t875TYUM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tcaW1wyi2T+M9T1Zo4fkP3UocslsULc/+Q/dtbHEtD+I1tXxHDbjP8aS8ksCc+A/9LySWkkH2D9qJDx4OlHQP5S2cGA9cOE/GE/98CEn4z/4nuXei2LGP0Hoyl2dhuA/Q4aUw/vf1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1PQQZKdJ3z98B3B5P0nlP1hPzWV3crU/HSnfbur0xT8tYBNA/EzcP54wG+DtkuA/LPU6bu+o3z//Df5vMXXLP1xOsaDhrtg/hmOJS9eS1D+jl8nfNSTKP7/fA6Tn9M4/o3RjvWhS2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+cO8xns+3j8LExUUKUbkPzzbCAE5R8k/NPklKKoluT+fZ+hstVveP2jkj1VCp+Q/49zMFVKe1j85IGBTJZrRP2Rqza2oydY/gTHWJP1C2T+jqJnl+ze/P4HWi2+24Mo/erlj2pZ21z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6aSdNt7g5D+Ubr5TErvkPwrjZeXI6do/iNrj1twqwD/lNwdUtRDpP0JxDBXSpOM/HJqIv4kx4D87LLokhQLZP+7xGp8o0OA/GXklSvLY0T//IM/6XGvTP+jWXE9c4sw/BpAhpxbX0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QiBjVap00j+FdWMMWBXlP0RlF05P3rY/jTyQyymHpz8bkgdMBZjTP7QzUKa10sY/N/XLFjUH4D+mYKhIHcfgP8C9hoxGI+I/0lPHO1Ln5T/C6F4Gt+zePxunvQqSkN0/VgOWRyAM6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aiC83tB80z8n/hCD51PhP6BPxtXr77A/IYb4kmnZxT/w5M98UO3aP+lbLCb/q+I/+P0cwgzM4T+1uZ+Kbw/bP1UWy2TjWNM/0IT7OmK0sD9cUqUldl/cP7jWUXLCZOM/1XT3Vcc85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gsS4aomY1T86T2mxTRniPzunzHkFiL4/CUZhiYNuxT+7/8BE36HdP5iQ2L7Gh+A/9T2Mx09w4j9wUTzTY7XYP4qGv2tnhcY/AAAAAAAAAACEkXWLLzPVPx9PDhpApeA/nUQQLALv6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QmaKrMwj4T9O7Un0g1fiP+qk6HwRbqg/2UxVDpKIuz9ziJWtzITgPwSVZ9zFJ94/u156yp/e4D+T14vnfIbfP76bqfCYoNs//wEVHTC94D/rvzaGB03hP19eyCpmuNU/2XuLzsmk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8lTdCj9U2D8aRyYrEqjlPzev2SJ/i8E/TUlCj6iJsD9AG/vopNbiPwcB7kkXOuA/9SPK4sP84T9WQIO1UGjZP8Ulo9nNOt4/8MtWkN6F1z91RtMRkHXgP689N4x/8to/aHjxqwKX6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FG27mIUW1z/AK2u/LCflP4iUxG5NkrQ/dNMiTep6rz+ZxGAiUcrjP5GBNC3mNOA/cJ25PmNN2z9VBzil/DnaP362dLQtIuM/owaxWK+J2T+zlQoSGxHZP6Ui1c6WFuE/BoVc6Mjc6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"utEs6j5Q4T98jG8ScqrhP39uUKUlXsY/0qNcwP8VyT+viff49GPjP5XKS7iUquA/Es1AKVks3j/DuYm43UDWP9KZfPaXOuM/267j8FAH1j/ECRFVV73ePyrtmmoS5ts/9bwy0bad5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/1qeXKWq3T9aX3CcFkzjP8JncmqDy8Y/GenSGkIruD9c0oUmeZvdP+ecUdRdvds/8NjVgTgX4z+JV3+lUK3hP2de1fYgIOU/5A/XyAMz4T/IiQL/+O/UP5tEQozu78M/LqATi5fZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aVJ2mz5D2z9hA+vFEhjlP6TTn6rdsJQ/hP9Zl69euz/K5ictSL7WP460KkZQUtc/jgh9wbBj3z8SdR3EjSncPyEFv2KTGd0/IPQhlsnEwj/Yd3o7g7zdPwuYv+9P6ec/a/JaKRfU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bmb98tGG3T+ABFOwUQPiPx2JC/3ieqM/QDzB8aAOsz/fH45JckPRPxR3axe7Qsk/o9NZ99cv2j+pD71lUPDYP3ZgLIjdhuA/C6ReGPq63T8hglHBC3neP19jrxBoLuY/ZMNfsHgd6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2EDS3UQr2j9el3DEvLriP8kPHQ3KT3g/dykLKJzZtD8z0pGw+pTFP0XLSQIw17w/S3AZOE1o3j86SjY2GODVP9njX0KVfN0/1+VAvaAu3z+McmgDxmbgP35KDh3/4eY/4hJJhUPT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1bGZSpn64z/PWjDOFaTiP0WhmSOmLsw/RkQiaRQsuz96DDpQOB7mP7t/kpIjO+g/6g8oozqz5j+sY/F543TdP9qAism9dN0/NWcqnG8M5D/ImtkC1Y3mPwaMAlnLiuA/S5VKEJDx7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3s++vILz4z+TjXBiXKDlP7r51bMrVbk/8j9QhPtZxD8JdMb9EYTtPxqPQu7SLuU/tKUoPux04T9OTpyrJTbfP5vxUsk1m+I/KfD+HWtL2T+EwY8WsdTjP4yL7o1iEOA/0dWhz+9U7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kMMTYUbg4T8n5Hi/Z0TmP8vIhxuis7s/xrYsTWgUtj+iBhRi9FjrP4wA6P85FOY/eDylm9oV4T9Cl+NDZbHgP1MpryArGuM/YNrptJs/3D80KL2s8W7lP/S7woNKC94/+lw8yCN96z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rlNpoKts4j/r9dolO5PkP+UVyiOaUr8/+pyqr4xhtD/QHdFQhDzaP31Nto2n3aU/jxqdQFJp5D8zxXXiYeHiPz7AOJVbZuQ/8r+GNzLI3z9Li2o/M/7RPxQRdasTjNs/k9NvEp/m4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"40oHhQYB3z+ZccDgi2bkP/OApskudpc/nll2W6owvz9EEyJglqLcP/A7iuEa+8I/wRJ3dsUx5j9oeZ7ulMLgPx6wM6aOROE/gvxOFkdU4z+Lmlm+f/PRP2aiCGZYk9o/aR+/pbV64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ntr1GyQq3D/FGY3sxQjkP8STZCYZb6Q/DCKdzjIGtj9RbKZKEEXaP1ke3R+16dY/SiUTeT346T9dZx+Dsp7hP2dbjcQ96OM/z4raY2Ob3z/ImlBYoITSP7eZMxDMndw/q8JioPxT4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l5NgWKgx4T87IV2671PkP1+KNu4/YbQ/1Vx94A7IpT93MZ158m/gP76DTrohIOA/ykee/hGh4T+FnTjkTSvhP8vvwDuA/9w/EVp+uUsK3D9SLKk3Ex3UPxxtcS9gN90/YnLUONwd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MFgiIzUO4D9LGUYOxTTkP9r8Xp7o8bI/WEjl1cO8pz/i5MAudbDaP2ko/C6zPtc/x7NYs5r94j8zQ1xsRpLdP27WY5EPsts/TXYcd1ZO2j8Y6P6JTETSP9HyPseCd9o/rOXk6bcY5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nw24eBOH3j8UBSMkdVfkP85dhLp10c0/RzxF88SRuj/Aw2NgxfniP2F3G57ZWuI/cpDqOMm23j8OiGJ9PyTbPw2nSUw39OA/374fIk/X2j+kJ7p+bq7ePx8H2j8xNMo/ohHj/akq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xX+fptbp3T/dqAhGy03gPyQiiNa7f70/y4J7C/J4wj8yqth8wb/iP+Wt/ai539w/Jt6Un5/Z5D+9ullu0CvhP0vCBTBFDOE/4XvG6LE34j+9xJCJv7flP5l8BI1wmcw/+ieP83774T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KIhp/hSV3j/vb1rrdDToP3Fccut7jYM/nyvu3eJOvT/CeGsvbpjdPxbC9c1mGeA/MhpMd+eM4T9iouSP/+LZP6Prl0uv4uM/Wdkg6ZJJ3D//eKs/cuzHPy/orQaXo9U/4kSxpdZF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kiURWK4A0D+aNhzf9LnfP+QY1vecZcU/DzBr/vG42z9FMDLmVSngPyO9zg6FIt8/3ISmb7ZF5D99YY9Rx9PXPxpJG5qe4N8/+tSqKfEZ1D8mZWus9y/cPwuCkEDirtU/RK/ufcMl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wcj14DJv1j8soXiAQBTiP3BGkkELw8M/H2sdLZvS3D8N93loc0baPwaE1pGU2d8/Er42tFFo2j8c2r1n3z3ePxg5mzg4Ydk/lz2YbB+D2z+sPM0TjEDdP0XZXhXUacM/InPvxv2t5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xh9802xI3T8EAmz9ZMflP79LKD8JRrQ/5xwjKhV2wD9dDBy0gaTlP/H/YIN5ROA/JIr5WAPJ5D9Z5aKssMPVP9D1lKKQfOI/t9KJndqK4D/yB5IpZ/e/P+P84IBQAcI/UekxkvFS1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jf5FHtY63j+TpI88porjP2ESk1OA6Y4/AcQX/8w1mj8zXsYD10TaP/GkUNYurNk/vp62u6YU4z/qm4gKZE7kPz+Oh4+/q98/Eec4Tx933z9ufjMZlsbPP99C8HCAhc8/Y1c+gOtt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L0q74wW03D+MUjHv6V3hP7W9CbTejpY/IdbQCSNK2D/+MPl129viPwIHA1MQa+E/jECJxycw1D/KAKTieGPQP6n1ayBR6N8/tjlV3Iyc4j/QZR7UWqrUP5Cl0n/Ys9g/l4MUwOfm3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tC3AhJar3z8AOkG8YCDlP7Kr1XcZx6o/zPUIx/f4kz+Xv2g4507TP7h2v5A9J9c/iV/5HvEp5z/edJ4tiAfjP5ELjk5tjuY/mMVxAzRv5z+7kZsmdnHhP37BtPf+SNY/euXUnAkm6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tiGO9FRa2j+MeejNpUzlP8U92MLKjKA/MW8z2M74rD+NeIABZPniP7c1+KXfHN0/vnNdzc0Y4z9WA5K7hB7hPwB1VZGGy+E/aEmg7+Y/3j+dgE6BM0/FP5sFSKlVgcg/JmDgQDtd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jdF+Ng8z4D+5othDpp7kPz0P3H2JyLk/kHIx5scw1z8kOG8fX7HlP1QQ5J4Vnto/UGZymtGd2D8afJnhinXTP0l32VMxauA/ZDJn4Pcw2T/UgFdwvfLdP+0W5YgJbtg/xV5YYFXs5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jon9T/FG3j/6ImqhhnfjP0SojjyRZqQ/lotB9MpBxD+QPxi52xLcP7w2RfMfHeI/sh1SJM5O4j9pEA6FPbnaP/7HzKmc2uQ/Zyq2fAP/4D901cf3sJThPwP5Odoe/Nc/WED5acgN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uVSpEefE3z/oPXszh0jkP/1NUoya8JA/9wwfbpeAuD/V46uV82LlP1LxFppu0eM/7JbDBVZL4z+CdkMeKX3dP8/N78GS2+k/cUTCL4PS5D8xUnsx8iLhPxf37yv13ts/6skk5FJ15z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZXV2L9oI3j9pKl6S8OTlP69Ep2H1Iq4/m0kwodHKxz90zZNCdvXfP0JERU9jzdo/yUJ6jaQ90z8X/GL9haXaP8IiTcukMOk/SC7UuvYr6j+hwc+42yHmP2skwvkzvuY/+P3Fyju26j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0D/ait1C3j/po2ydJ+XlP4Tx+k54lqM/j+W6glmwxD8Tzlhl923fPw2u3J6dkNc/XPJFq5hB1D+U0AmVSF3bP+NiLdVPcuk/l2+S+Nwy6D87klpZkebmP7k9RFjk8OY/8AfIWaFV6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"odnxBvBX3z++rqqU1SDkP80/RY6HbqQ/aT4i7VDwyD+ObDu/pcPgPxOw/KvK9tk/PBxSLf2Q1z/cTKDzYtnYP7zaCC/l4eY/GmJ4fTPV5z92PQgyv1HoPyTO9SZXYuY/Mvx6FzUm7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bwQE7Y5O3D+nyRruF6vjP2FQWNG7F5s/YsFJR7E0rD+Dd/FN9hTdP5y3sirojOE/KeJOrFTo4z8ptEhG6MPdPzr6c6WmJd0/lI1P7oE/2D+NzU4hyTnWP/gRV5flIds/Zdpv8kJk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A3H4h3Ms4T86Wzjik8TkP8ac5TWVRsk/CslDuzEbsT/l8B0Hg4raP23BmcDK5dQ/Q3U+7aAQ4D97ZDxkmWDiPzqliIagBs4/uwCrVXg00z8WjaEWfnrgP2G8VAfc39Q/MIV1O0Y65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3Ve+j6Li3z/3gd82bEfkP6YcPpdZEak/7+RszLPpxT9/KRmUqSvgPxCoGDQk3N4/aOpIDuOozT92RAKvtnDOP6Ldk7seluM/hphLNn0Y3j9ankCzVPzWP+MHCkNHduM/GPPsIXPv5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k0dCiM5J2D9TuqBO6uPlPz6rA2ZeraA/WCj9W+0xwj8zg0HD4DriP7YI4YEZiOE/PA22y8kp0D82RazGZrHLP50119qMZeA/r/D87kAk4T+2F6zZRtDlPx4NHBwmM9s/ZrbbAUhm6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ot9S7WRw4z+YfWEBLiLiP8ivCCWMnsI/iOTJvn4l0T/vX/x+tQDmP6ia983E3OA/Sd5Sih2m1z+Oqnvv+DDPP3npgxRJ+OM/dTQw0VLG4j9p184ZcfHSP1KCrzfMXOE/cDeiRSn74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uruZdx6A2D99GUf4Gm7oP/1fbd/spqk/SsVfwArr0j9RYFnWjNjYP/41IrpRz90/ivNQyOxX2z+cnvb6mn7VP8d/MMMuC+M/mQcBLX0+5D/VomN6wYjYPyEvbVLpjtM/ZZT+ac815z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IU1wLUyZ3T8PD4KqxBvoP0PV/RUeibQ/V0QoXBdVxz9cxBDt9s3kP7gh61tvX9U/fJ9yl1zY3T8GInW+lpPUPxYF8aEvfuM/srSkFjux4j+jF0Q0DGDUPxmcbrTehdg/vgdqBAoA4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v0QlcOcv3j8DF6VdpJnjP/3JjW6IrHk/qOm4HAXzyT9FYsfwdezVP8VNAxH8MuM/nqUedNbW5j+kC969yj/kP0Nkld0T9+U/ZeZQlSD34D/w4EJ+tnnZP3tFY9TUst4/UDIPU+vB5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XSnK7aS93z87HVN737LiP731Z9q8Co8/pSvHu+c3wD90hMPWHfXhP5QfO3eNRtU/PN6sYLNa4z9FUu/REbfZP5scr/cgyus/1f9RNxLK6D9GVML13MzUP6Sob7ewDM0/34BYwIhg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x5H3Cu6I3D+oN0o561nkPzAfKrIwCpU/nf2jX4mrtz9p3fx79T/VP2hV0BmjoNY/b43Z9uqS3j+v20nUJwHdPyZPjeQnoOE/hzvawGzc4z+mQ7LWlqDWP8JHJW7Gp9k/pQAXs3qO4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pF4PC0T93T/Z3cs89nnjPx6GAJv4B50/nSKVsa4Zuj+VL1Kq0aHRP0A1eQ7XG9E/xxVZC+6O2T9uNFGEflDePyVymMWwst4/vQG7hmSK5D8dUwhHuZPWPyJDD2hqM9s/pj1b6A5O4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dA3PskSf2j8EMzG8NLHiPyvQEeaPsKs/wDJmWA0ztj/FZjDqZA3VP260PivrFtY/CIZan3an5T+M5ChsEFfgP1p1PlOiGuk/WPbJKqUS4T+WfYX+1LzXP9UwKtyhiNw/GF6A9nBd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IDzQKftj3z9ZOahNzknmPxzkmDWoTbQ/riLjt8Iexj/fu9m1u7jWP0O9yI6Tp9w/z+pe9QTI3j8ZoNcsuoLRP+9Z3QqBsuM/LhdpGbA74T8i8IgBOT/kP65Bd1MVtNM/Aoo6d7fy4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YsH3ttZr3T+KP6NkswznPzkkhS4DzZ0/3ymlNtKn0j8OE/aLsxzaPxKpZYFk3NM/LO6cJ/aB2j+W1uAfUQjaPxF0hvEEgeU/ClKpRwP53z8sXYow1WTfP6XUW1lWwNY/kXztPOIj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hVKR/RBJ3j/PowP3omTkP7CKPmkBm54/7hoXPAqwrT9ISj1s+YDhP3dSXn9sfuI/x19BYiyt4j+yqMD9bwLfP2AaBvVcX+I/vEiT40gG4D9bDusTuo2+P4Rq+E2SPdg/aoqQVNts4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"frrCVWgd3D+Zj3AEIgflP7V8vh1YHYA/Io9vxVSPsz8+10fe3PjPP41Sg26fn9o/Fl1jHAOC4j9FhR+wBj7cP33rKNXmmuU/WjhKjJ8F4j8B3PAseQvjPwXGTjT94+A/AxEoo/zm6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NcNJAdwB4D+/o2y5afHlP7CWF1unO7Y/OBi1z7EXtj/4ZBxj+Y3iPxnDhVR9TOE/QfWu5FL85D9m1bt1MfLgPx35pb/iVeI/OU3L+hgQ4T8aBAk33kjSP4va/pZtNtM/OnDVcQfS4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jyi8qnR43T9hecj6SVnkPzMP/yXYEKU/MkR3uh/Ntj8OMIAsXzreP7DT/y+v7dc/fq0hAN+g5T8hfAH2govfP2bxhYrWR+I/mOdF6EMs4z9Hn4xyjK3IP9yPN0PHzs8/4jw5MvtJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I+xdfRa83D9Q0KMVxTrkP6xtfj4794Y/sl8Nc7FfvD+EqiofIPbUP74C2Z2h4dY/NQnrpHbV3j+/MuEe/zjhP5ro2zmXROI/oG1mDRG+1z/a+VxZPjvOP6ha4DhVBc4/pvDo8ZsS4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nfQzYKVL3D8GzqEKIljkPw5RAE6+C6E/OrAEmj6OsD/iLVgmugDgP69dSs5lvt0//Gp1bQ6T3D/sQUMslTbeP4fn2xQ3EOE/Wv18ZFfe4T+cw93YsQjkP4D8p/GcVt4/PWXCqtB06j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XoT4hvJH4D82bhLZy3bkP9EUSLoxTqY/6hE3y20Ylj/A0M61PhvnP//YqwaLYNc/vQoDXVsU6D8C5FuXOjrdP6zLGGea4uI/i6jcUGJK5D+5fNDl/SjjP55/5p7W6+E/p/ReOgGd6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OISwn5rd4D+7N+nQRwzlP0qsDbqWt7A/M3nJGL7vpD+HzlpUSFngP7TeidaQVOE/9xRgUea+5T9jAKtpf6njP7TwDAsLpeQ/8/SWSb2u4j9V3A4WRU3hP3VP6/XYP94/O7nJiLST6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nfXHsYH92z/0fFLDhxriP+WUEY+jK6I/69EVU8gjuT9t+G67LGrgP6nlI8FvrNg/XBIiKYV81T/xbahc7Q3ZP18EsRdq9tU/jGtevR+k0D9z/EWkh7/DP963kXfkyNM/iDaFuj1g4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JL+fsF9x4D+ZoNYcwa/kP80FNntntrw/I9WG1/SRyD+6Sr0OmZ7iPzR5Dtcb0eI/3OxlDFBC5D+H6rabsHvbP9kwYglnueU/dUm1NexC5j/qv0jbcF/pPwpnnYDyreM/SG28i39x6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MJGNhG3z3z9mzLDQZQvlP/9PKR86poo/xSpxJ+/bmz9yTaxjHbLcP6YgDLcpLtc//GHcfvtK3z+t5zuRj1PYP5mBaDf8Puc/7v6FnydF5T/22rd2D9/aP60uaRIi+eE/n1HKHfo66T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aahpp+jC1z+BxA1T7YjlP2TOL71uu8Y/jK9gEG8Utz/EwLMDb7rWPy34ph9F3LU/A3wCBDMR5j8AJm/sv5zjP4DSyNk3Huk/+du6Utci6j/6RTiJRyXbP1FT3sSDcN8/sdlaHaXM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1TnAV/BB1j+BgzegrpLkP9RJVvjaFbE/iCp0ARE5rT+sZcMqamXIP1rOiq1Q4rM/6RoTJ/vQ4T8aen2RZmHbPzLH94syBeY/ELTvMt/s4z/z4qpHm7zfP2/S8rNC9d4//5oGwuaO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iXZ4QkVZ2z8kIWx2v5LkPzXzloyJY6U/J2guyvsFqD+bwsLbyG3LPw0UJ5Ry0rQ/D4surXZg3j+QoC3RYuvXP+0BEQq8jug/+EaH9qMH5D/aHruQ1WzaP03aOJRhsto/WNI3N2zj5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k5GZocXM2j+YxydnwO7jPwu44xK7j5w/bQ18PEqRpT8N1c7N1GrLP6NxTvP17bU/FYwoWT+d3j9zt5fbOznYP2OhjrzmUeg/nkZnhQMN5T9TFsyP3FjbP7DVD0Qnc9o/cVSK+P/C5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XjUvZFLo2T9mvH5gsLbjP5uDElEJ2aU/7jbVT+FD3j+v87HzgLHiPxSHQ+wBQOc/RqvvLihC5D/GcBn/6iHhP3/6Z6nVD9g/KtgGRNBayj9X2KOD3avYP10U3mNxNd4/60g91YCn5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IxWVh1Zt4j9G6tCRXjXdPy95CGVKT8U/2appm+i2vD9m3gLHm1DaP8Bqy5Kgbdo/msZeLYrS1j9sRZ5arVDTP+IwiuOyvOA/1c4DKwsy4D83frrSVrbXPzrozRzabNM/MYLLKJh14j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hWX+GCtY4z80hbBp9RniP+vbhi7GX8I/LSV+aPNw4D+2dvcOHq/dP5Q7wpBKTNg/doLShC6v2z95IpdYQ/HUPx0Y8ACHd9o/KVP5jkoy1T8EAhUe7HDaP1FpmPh+A9Q/BL5RWWxD6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j+HU0aSi3T9rp5esRPPkP0WrFFXcqb4/902gGJh5yz84gsX2sC7cPzI6QcqPTN0/6UgvmWAB3z9y7mjvllHeP9N5IT0gmuw/0mlrmSaW5j81xa2+JofSPyIlJI35Lt8/WWxildrN5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KXIc33u44T9JC2cAYqHlP3Uk41d91cA/5VN22WKY0j8CkvkT2YvhPzXj+qns4to/GmbJ9tlb4T/pue/KirDTP9mQeUYuSuM/cDenyfon6D9NK61++7HQPwHByX+PStw/HdKspNxj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dMfpI1wf2j9nZ7KjynrjP2jV3vxAMKQ/y1jMqKU1iT/p/u8VkH7YP8KfrOQKCNQ/9sTLdBs22D+8fwwT1u7cP0zUtV2YW+g/+Ld45AlZ4j98YBfz8NziP5LzrSat5t4/dwZqSnuI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nGFjaLTj1T+e0RuYCJjlP3TLWVcWdLU/QkquknQQoT+opQbjH6bfP6VN+ytEZNk/SEeA8vWe2D/wD57bFkvhPxPCrvoS+OE/mcBc6oZY5D9Y5l5ZYuXgPyqWWbqRTuE/xmf50CN05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5rAZsEAe2T9EZ705GZ3iP6dNfYF0Ucw/DqsePeMqsj9zj+7QSBHhP+oithsazNQ/t1TUcApZ3j9l7FLUqRrTPxN5iOanSeY/Fanwq4gA4D+KMQAfnTDkP8dBysl5EeE/wnbv1bwA6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gi0WZwCH4T+CyWy2LcbiP6VJFnvJcbM/vDRjikgytj/V53nTP1fkP30QmqUlMdY/onpJeyub5j+nWFx1LZDeP2SAIoubMuM/hMHhHI591j8j4aJxdu3MP0dn7geMis4/onHQAG7g3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gFctd4pS2z+nvm2XI0TiPyZMUykpN5Y/FHiLZZ97xT+iRHD7gx/jPy7C5KhEktI/Psf7vQUL4z9sbYKPVHnaPzmm60x2yuM/RxIa29fs4D+FYyjK9LjAP0/SZl9DN8w/6msNJyXP2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IPZWyNAL4T9XZztVLwfmP4GSLzhMFcM/yFI/3Im2sT/1AxgsmULUPzB7WVNt098/OhFfvuDy3D8nVj7FEQHWP/PKmuvq/Ns/TQcmmSnv3j84TqBH1RTZP2dC2ebaJNw//Pc686kc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/6/IZboi2D8kob0fx37hP85u29A8fZk/InYluhKgwj+KA4cPwIbWP+BOgnLw3tY/kXFbJ1Eo2j8kqB3LctzGP0e0qJtIxN8/sxzKKhiM1T9ItmXT2tzUP0WlxtLM0M4/qbngHEIO2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4ivrCR7b2D/xWra8PkrgP8hTqTVRw8E/bm2Eba8byT8FgH0o9xnhP1I1nv0JPdk/g9tOjOIW1T8T5BZvvurHP1GHL3ma2tI/HodeZWrb3z8sN6eV8b7LP5zLwu+Ix9I/4PkcjFoJ3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v6inYES64T/oT3MuqbXkP/ZgvBGqobA/PhSP+fhzvj8hIMXSzWrkP3XtHt4pyeM/whFe1q/9yz+8P1m1y5zMP4eNCDdNjOA/N0HPjcuX0T9G02Q7bsLbP+ofJf74PNk/2KsVEmYY5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ayHHqZ+z2z//PIIhfoXiP0nM3FmQRLk/ikiJ5TPNvj9bEKWykhbdP0rTwBEE4tY/cgNI/AZY5j+JjYvsAULfPxg0IzpoWdc//9AUOA6G4T/3Ss7V7N7SP4dEAmBoXdg/6tXUxWt34D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lJT2dNFf3j91soE6e3/jP/2vQ2gjItI/vz8MCvdb0T+QdHW2obnbP4YMBK2CLNw/q0trc5Mc4T/2+snU/77bP2TthvkH+eM/f0fitq0d4T+AmGyjo6XWP0QwdLMen9Q/TS9O6omq2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cut7Poca3z8hOJEX7C3kP5ZrMoKDE5s/eQ8wQngkoj/yWiDE/cTiP/8IM0U3mds/iAB3uxqj3T+otzB3v2DUP3uS+GhCrOQ/rRIf+zVC5j88wv2OR5HJP5oTXLpo+9c/4lr1senG6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8+X1Is943D8QDBwcz07kP+YY7rnezJQ/LVrvqY7voT/LvMBO/B7dP1uc4iFPhNc/Sm76ttsA3z+jW5aKvp/aP0LP3oG12+M/M4dC0Nxb6j9wEcmQWr7RP1UTY1c7488/nin+vsE25j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rTeZVgA83j8BsnRz0/njPyddkQuW23I/92nbBnurqz/uTnoTUs3bPyTWXluHX9s/2/FE7q174j9C7AbHerDYP8sBF4ikGes/w7jFBgN25D/ud6GKLm3LP/ukgUcmjc8/FEk/0kqy6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ww1dtqf32z9jxkcoTkrlP6sY0lY0EaI/N83sA9K8uj+oqnROEx3hP/C9FjeGkds/tsgV/rbT4j8dRz0WF+ngP2yhVY8nBOA/8zfHrRSn4T/JpClG8iXWP8onfij2xNY/6M/l/quj0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YXgOFYVm3D9ytRfzZc3kP8tS9jIrq64/oxp01MPcsD9GUmf/agneP4MrgVPSO+A/maNaR3/L3j9WZxUbj4rWP5L/93uzb+A/xyS4ZQyO4z9GNAxgVGfYP5WtnjZ9YuE/ABOa+WS84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"54VMCj1l3D/6E4mob5/kP8Mklu7Yj5E/tIOSpvEa1j+XB2AChRzWP6TgGQwJCNY/5T7cxdiI4D89CxlPzZDNPx5E550Y5uA/F/VB00/R2z9Ef0Y0ubTbP1LldKA28t0/oMju5vxo6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A8i2Yf8v3T8gK8bC1O7iP3SV5y/QNIc/VcqMrlgY0j9hXgNS82jZP48troWALNk/gHpuQXyS3D9SOo1xuC3SP8DRRIXhu+A/3Z3SalZ44z++BiQoJgbRP1xIrMXWSOU/srqM9nYW6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tc0VkJTn3T9qGnZ061/hPyFMWGOjV7Q/JuoEyek40D+mmxYPTK/eP15N7KH8hds/nY6S7mYS4T+K9txiFNncP75yKpuO9ds/ePg06ICQ2T8vTZ2Qpx/ZP6F4b2Cr+eM/tP8hG3Kg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B9ACDkFl4D/dXCNVbWDiP6sACGa/cqc/sjC5Xt5YyT9tiUZVraXfP5WPY8LaKOI/20Y7Qc+H3j+tSDyAoCneP1MmIteBaN4/htjuF9zR0z8cAsUXzCrcPy/ln+L67uY/5s8MgyDV5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/iwsxcHu2z9ePlld4pXiP8WeNAoCzss/3WPDhCGLwT/XViy4NSDkP4Qxvgt3y9o/QZTtqoig4j9pSSo/p2bZPxRh2TiENN0/t2TxF3/i3z8qCkQ4ZZ3iP62ET8yvB9w/SNORLRGH5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rWfYBa3R3j+ndoTEzwfiP1t0jeb9xcA/rQq8L7KXxD9hzF7h38zdP/ZEroGAi9w/mf19OlAA3D/4up7FomXXP6dFfxY/6OE/l+7il6Ua4D+GgayV1BLfPzzkPm6OmeA/QV6KiptX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hy7b0/uV4D+vd9EHzGHjP5u5wZpzMM4/itCr4p/iwz8P5KYniG/eP93sEK+U1N8/dU2X+UH61z+wQUJ8GfnVP6SQrAfP9uI/JZJN4CYR3D9jJlDWarveP7BWh6lnrN0/Ec7DrfY76D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/fuRC4v12D9n0feeK4jjPzFz27p9tqA/ipmMVnstrj9Ptew38kDZP/arYE7AodE/SKsqLsAw4j/SojWAlsHaP0Pq4z0C++E/MJeGBygH4z+rry6i5lHaP2Nx6bU3Psk/921tce/O5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VwS/Guwb4D/rUz8ivuXkP6I/zfwu+5o/yM2XLCaFoT+HPKZ/qk/WP0pJxxHNjdk/VkRtKEvx4T/xK7+pQKLdPxOpeAOoV+E/dGWy90f01j+5QiXBzy/hP7EI5eAt2sw/+mnIDbUj5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mmrbzq2b2T9J3Dm8WuDiP5eDW+qckNc/b6Cfnv/Uxj/sojhsX57gP4fgl5n9ntQ/c3XbPrYq5j8hcq4j27viP7sbWhB7YuE/++UqpsnV5T886jaepmfbP4qchT6E5ts/YjdmSd5t4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JrQBcvrRyj+X1YxJ7szZP13UU9zjgMo/Gyzo0+Vt2T9FS0O3n5HmP2Ovod5WguQ/vOnhl/QP0j8efwcBGJDVP3muYm0x0NA/KKcc6f4A3z9ThA4nXafcP79hqu3kVNk/rGCuFvXx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CPANZvXG3j9NLauT9LHWP4oi0HGwArE/zr/Fv5d3yj/hWd+XP8rhP2ihtYI4wd4/awTb5IPf4T9K9sGtGpbRP5AE6CzU/dA/+lvnCJ7K1z+VJ4jYb3XVP8eJY5RZRdY/YA4zE4tZ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PNtZQb5K4D9lDqB2Kr7oP1yd6p1FiKE/7027FqsVwj+qKUZ+O+LgPwhKBdXFr+A/MDsorT5n5z85CAQoA+7WP0bPU3ZmruQ/On68F+xq5D9xBwL4cS/WPwFfmOuyntU/p/iWqD6j4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QVLV80PL2D9+9rlHDSDnP3iGBpy6FbA/51Nidnxi0j8Sky51b7TjP053A9QnxOA/7dRo0p+B1z8FTFs+5MrgP+qolJguPeI/S/ugKAd/4j8UwcyKWGHfP5BugX5kROU/Hke1tsAO6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VnvlomiH4D8aMnAuRK7gPyzVXVcVt6U/nMGtR24pxD/X96iC/MDiPwH57kdGS+I/V0E3yS5C5z/mU2VsyKvTP1f7Ar29XeY/C+yu2qa44T+jFARc4tbaP5whqakW1tw/ueWsyBON5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eZnfI52S3z/cuKHX5ZriP3ytxRolurI/CAxuX14CzD/LNHZoHqPkP6TKfgxxFeU/JKMI40AW1D9dUoW7zvreP2MsxP71gN0/z2T2Ueou4D8s3f2GlRbdPwtGey7seOI/ZKQ0wg6h5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KAB9mBDA4T+ou/2UuabjP96Crc5albc/Rgn1M+6csj9NhyVrHnLiP9KVot9FDOQ/M+8owOph3j/ULFciS0vkP/3TynGEM+A/ddq+V7/j2j8gdbZOcc/ZPxPZ3rzHRNw/pGZJHEhq5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pXAM5GsS3D+lDL3ypWrlP3q1ZTxB9bg/13OMSdUmwT/4TrYKGejlP7RQaIaxyuA/FLF6bXHS4j9Eb2JvpBTQP1uVp+hfjdM/XuYDsoZw0z/5kdMWJsLVP7g/DY+ozdk/W2WXaqJV5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"clpQudvb2z9WEhclkwvlP3IGfAsyzZU/TZ5Vf6xgvj9WcyPPA0jXP8HZsnUGG9M/6hnBSbia6D/ccYkGvmTsP3gUlD1LxOc/dYqRHX355j97XKxgiTvaP/j+IsI10dU/1a/CDAGz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bS6+ptwT4D9zUMX/pZzrP9ZmzWrD47o/UiQhAFoo0D/piTtjJ47jPzS+MyZ3ueU/M9Texj/n5z8NXqafyuPZP5Wrb+vJ4d4/OHhnNgtW3j8QoAjnTn7XP9EbBzxxxdA/w2bYapHX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mHVCkQ1p3z/Q85A/5mLoPyiCdXrmP7k/pvYlk9zs4T86RlxHb7TiP/t6BNDWhOQ/vGXPGgM05D+gKYRxNhTcP5Pv+iL9x+Y/68CI5Boc4T9kz9RKz4nRPwOR/0fosdU/KkA2tpQC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WSvQTMDl2z8hBj+w0+frP3ees9taIqk/dWv+dN7Pxj/1ejVK2XroPz5KTTPbc+U/QlPnOPOb2D/gV+ycsDfUP9faZM2DFOg/Z4aGtwUS6T9Y4ba3UxnhP6T1kPU6wNk/sGT1Q4Vb6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tZXWQ5904D97VSVpfh/tP/ue4lTsArY/THnfv+/m5D/yXwSxejflP2jgZwWaceE/uUt7SUsd4D/SfuLj+jjPPz38XX0KQuI/x6eHKBxS3j8VKuXTq2TZPynqPV/AH9M/rmWyuum94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c+EnaN1A2j8AGJV6wM7mPxnQCNK8qpY/g3RPKIoJyT/oP5JVFFvaP2TAWtgzL9w/UWFKwt2S2D/hbY/YlFvdP4IeMPqp6Ns/edgjdhVC2z+1963vGCHZP5EWNL+mNdQ/alOgRKM25T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gfrn3FIC3T/FpATcvmPgP/93G0a+XZY/X1R8gnvfyz+WrYveFxveP9Jo9+MpyNM/zCD/HO6z4D88hsXDIDLMP11fjn8EEOM/wE9cp0uv5D9C7XZ20PDUPyHyYTrRkt4/gf7/JoR04T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/rqdICWU3T/MFW2rezXkPw33Ohrmw6s/eobcOAritD+nqmwcTubhP57rEBu9fuA/so5Kk6QZ5z+D5cnLGMHaP8AacodvU94/DiUK9orl2z+MeizTK5fZP7Uesl4HONM/WYcXO9+/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D7DLem9a2z/XuzeQ0OjjPyA/n/W1uq0/yYN98ZrOrD8kBs5JFxzhP94C4YJZsOA/2xhoxf8o4z93542kn7DePxwH8EP8Vd4/7DFrCjKR0z+E01vVjlPcP14AYuKsJso/BW+cJ2ZT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IKeNpTCs2j9dbyw9uG/jP/7gcxtUzqY/op1H2c9vsD92Pd4iTgrjP+xQ2JNy7d4/v2+QAV8J3z85oiDRfXHbP+0f99+A5do/firZRgwE2T9c+7JEDzfjP6BIqOdAR9A/273bPrMf5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uTdphUma3D8Ckpeja0jjP/5LJ6b3ebk/tHjVw1y7uj91/pwc3D7hP+D3p3r3xd8/lJLAGpLg4D/TIDFb5+3SPw0FfcL6F+M/GaqYqJgq2j8NJ8KnPnbjPwho+HblNtQ/2ylizdyE3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OK1oDwFN3T9oLhlFFk7lP83/PgGxrLQ/OE1gDXa6uT+Vvj6MycfhP1iU/qmoadw/wdCMOsFT3z+xjIre2S/VP+91Kx8r/98/JAAPO8hg1j8O5w0oiGHaP5aWY3jSsMg/H+v3itlv5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KfuJKUEl3z9S1SJoo3fiP+MHNWz4TaA/BupfZwkSwD/YFY4RFN/hP/RuBS0Jv9w/lYyhuXX73j+q28xuw2/TP/yLtrKvPds/NNFZiNS11T8optOQIGbYP0fC90TzVdE/FK9Kt6Nc6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+JHrEaWZ2T+6Zwrf/CHkP0/bnsLRpbc/0BnSfOyCvj+WJCMXROriP2d1E1tei+E/eesH2GIo3D+oxKNZejraP9omzO313to/bsVbBmoN2T/l4OHWkZPkPxMN/AXjad0/ZahFrNd16D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ciYxhxWf2T/3TOGbP4TkP6qUphJwz78/M4d7/WeSsz+U2EHgp+jjP2ifhZARk+Q/7cdxjCf94T+auppjYETYP3U6jkxLE9U/zvsONAZf1T/THMMeppbjPynV3iG4Fd8/Ic8wPpVE5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BGZttimn2j/72Dwaj7LgP7kFlf9eTqI/UpIen6hi0D8617nGA1nBPwD2cQjfHMM/vf38vq823z+juNaK2VTUP0j9pKtvlt8/lTp3oald4z+rwknF1A3SPxMGXzP74ds/5lfWEt5t4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2mywpLFb2j9JAT5r6g7hP7ZmAH6AI6w/51vk/XZZzD+j1ZQGBRTJP5rIh+4XzdE/R4AslAGR2T9B0YAjIubZP95IT3C7+d8/9cTwOcZA5D9I6dGL7xnVP4Jbj8QFB94/CVUn1QdA4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0CJjgjpG4z/XHvdCAlnoP45i+S9RP8A/02IxlrHX5D8V/xwAIjXpP4IWGVd4NOc/Bo5qGDVy3T+JCKtelmDcPzug0NxgLeI/w6a+XBNc3j8ml8lWi+/QP0u3ZtPuN94/QnN2fuYr5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8qWE53Yr3z82LpaE94TkPxAJ1+51KbI/usAvfNYOpj/a3+HwCQrmP2TL5H4VluU/7lt82Aay4j++6Eg4fArdP2MwOZnxDt0/Me7ovO+z3D987uAe1OPUPx+9dz6NI9I/PraygAkq5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yqfw7loc3T+f1aet4cjjPwCjYdLxU6I/bXmmYip1vT86lyFriCjkP3r86h62et0/gibupPUC4T+zStCBF0XaP7P9IjnpZeA/iEtz4Z7p3T+OqVGjq1fRP+lDUrVeQLY/Li9i1AR34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CtcGHRRR4D/rBjhXDrTlPxoGEX0HDKs/vKaQE/OtsT80f2e6bHTkP61nDtrbSeA/ojit/Xis4j/gzHgrk6fQP2LcOjeUdOI/UJFpNlX63D92YU0Egn3dP9LfQ9Bth9o/EwbduiH+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MBtYpAlA3T9TojnkzQTkP9cDuyhtHZI/r6DkgTUt1D+2fEZOkY/ZPw0nlvIiE98/PT0gbFaI2T/sC9k4D6DfPyE5oDQcpOI/KPOW5Qt55D8buH/+aL7PP1T9ClXULNc/bz7xuxFr5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NBETpeGH3D+H0zFKKTfjP79/vXIEBZc/B/NsKETkuT/5Rkc4bN3RP4JRdDX2QKk/0gRvmOIq4j+M7I5EfpPVPz0cUUFUqOM/JMGvpEOT3T/s+lS5GKjSP7qk51ZQa+A/eu+moSsp5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2onKVhhS3z8H1Qye7V3kP4DM4WwROXw/0mkbG5xpwz8aIfCUmiLkP296lR3IS+A/sybU7KDu6D946oMS2sPcPywpjK9LNeo/M+GO99CE4j81pEPEKwDjP4S6PbnTVsg/VLRs+CoD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0Wj+JwLa3D+SrhHSfCXlP/B6FzMqAKY/PiTz8vzg1T+HmKYBeU3VP0H7LcS0V9o/2SOcP1YY4D/zOfwMt4nhP0cngX42I+M/sSQIFYij5D+zV2uwUG3KPwXl4+wWg9c/N5AanhF35z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2c+xsE1O3T/onMmFQx/mP0cLA2sfCoo/2hOyRD741j/0PEuZcBTiP1qz2RP5f98/OCmrNGdK2D/Kc7sodEfZP2f3tOeRZuE/EdjjecdV4j++nJ/OBSvUP0R9u4Vl6MQ/vOUB+e5j3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"an6L3rBF2z+zYbardkrmPxG6oLQAqLs/iVENqHqG0j8tAq7ruKLdPyIo0hpBjNY/XB1SPFXE4D9L8ZqeT/PdP0TIq6up1uE/7038FAsp4z/PiRtSeIzJP5nMMDBaG9U/FDALQgH54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l3QNYbo52z9dlyZyDOvlP/3NwzOwJ7g/euQaKXSS3D9kbJS6J3bfPwBFgxJc7+E/waxEbnH54T/KB4mVkxjbP9AZ6P6zguU/96xCBGrD5D8a1Vq8KX/GP6eAnUjkhNg/Y1GF/PIu2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kWvlRMji3j/0OVSesXvmPxJAwIcgJ5U/tT5zgXD8rz/xLoG8KFfjPxdGENn55OE/c+bq08yd4T8Q2Hj2B4biPxE2MT1p1eY/zZIUyyzF5D/c8Cx5CzPiP2lF0QFcKNY/sHNXz6wR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oaK/6j504D/paCAPR/jhP8BSmxm3OLM/fjNeUB4WyD+9QGu2KLXeP7PCRjbSQOA/YzkOhRQU5j/TL2eVA2TVP8q5CbfyDNg/w2z94hCd1T/i3zjJcvrMPwNgPwofU90/nzb2iuEG5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/hwL2+TU4D8TsPDS0mvfP8MPuyCScrs/psSCa+XazT951FFtQt/kP3Vzadvjwt8/MrAnhua53j83hcKEV4/iP/d2gGGPWNk/M56sul7tzD+pQPBRTpjVP2/3K3rlb+I/ieOPg5l65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xthfSeQc2z9fH1jCrXjfP7d9gHay550/kPvdeKLMyD8yayH1xfjfPydoSjgOGOA/NjOgkDQE4T/J6/TJKETgP5favJaEWto/fODQVmOG2T+RoIbD2jPZPzYgfdN9S9o/j8vo33CH5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tLXjZqBS3D+mqMgK4l3mP0ewq2JwxqU/C4FSJCQJtD9NyjhIP83iP5xcon2d9No/5iDfAQqp3z8k/JDSStPTPwk/GdpQKN8/H2fTt3hx4D+FaNBrA4XQP9JeBUnIrsw/Dz1hRMsK2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tlWHTORi3j/20KOlvAnkP8cLtG3VJZw/M7n4GTSpuj+h9uAZ1VPdP50iIl9OR+Q/FVRueKBn3j8iaqb3QYHeP+v1BUNRneE/IwbBC92y4T/gTXtg80jeP7QG48vOnMQ/AIalQT4m4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/KQdGyDe2z+aGsd31BnkP3SQhZVSEaE/7dsPSJctuT9FGFdXdmnlP6z8uS+gY+A/sNGFS7a31z+OdpuVxqHRP412Tfw7suU/DqO93euR2z+7RcqZW53eP3lmTEhAh8o/M0tmjAKr4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bwWp4Dme3T/0UlGY4j7iPwhkzu4d0Lg/VWYN6+M+wT9r2kBUdy7aP7Bgxw3N7Nw/y6yCkKlK3j+R71/E8TneP4hu/cNVAto/1jdIOCM/4D8pFmycHOXXP4IHhYsaoMg/mizfg6UL2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WAQaptul4D+suCZx6hDkP0ZbzoTNccI/FtHkeKBmyj+SOAwHYD/iP56wKCUD/eE/VOfcPUzG3T8gi9TPuHXbP8YJ37v2ruA/gUX9MMUI4j/VyKsVBxPgP/HcgqS8Y+M/gb+Xo3BC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KFc7cpzD3T+cfXJCHeniP+YEDoBq87s/33HQHqxKsT8TimhNuUTkP4FehdHlouM/jhXjezK74D9CH2FHSC7WPwSxxWmineQ/qJhE5/Sb4D+7zTe/vbbdPy7qOqCDOeA/1uAQ7/P86z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"58eb/ywq4j8LgZPr5iznP2/ybeaDb7E/oeC5kA0zyz/KfzGM/7jhP+j5dumkr9k/wr4IOMMs4D9u9xvjWwrYP/Jbl81AQ+M/antxpl5I4T/fQq23n8bTPxfaIOtiNtU/Ag6lFMNT3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tqB14gQ41j+h5PchgdjlPyBOAQsJibI/YtKOpQTLwj9MPblqgYrhP/l9gQ8+s+M/6jk44xI+4D/GEx2mJmnVP8kaFnxIReQ/VwkvLWbj4T9zopyVKxfVP09644Anrtg/ieAjSxM65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NC/4JCoC4T+C+gcS69/jP8aqMHhZ374/WWLsLSoXsj8kkxAaXxPqP9BdNynzuOQ/gjRBWCj54T/JgIy3AyPgP4M/S6lT0M4/+Aigxee70z/s9h8m7T3SPwo693UCe9A/dTJn7/4e4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qa8rMEq54D+Akaxsw1blP2mvyckH+bM/dw2xARnfsT8tKt2ge3PhP53VJb3Nztw/hjTFTVa54T/aK/W1h1PiP6C23RmWutc/rL46ABj42T+MlNkNLOHOP2KJy5JOpNk/pFvpu5Yl4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2iaBLKjv2j9TAtRz7u/iP0K8ImjeiaA//4kg76dPsj//peacV3zgPwSVZ9zFJ94/44gfcTED4T83lIANIf7gP3sIuVPLK94/BdkSf5w+1z92uQWfxNnhP91neB7ZEd0/KpoNbiSz2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ilo4NUII4j8TFcWcWyzlP8EqNxIResA/JbVXfPZyqz/VktJ07eXVPwFSFLyQZtY/Ay+gH/6P4T+vHmtRv23fP1y7YRQ32N4/me6Q7RnM3D+Wbo0ZqVjIPw0ez1PchuE/S87aIpei5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N31ip6YF2j9Ggs69+GfjP07pUg95fKc/0sITLtRzxj/fKFRxKLPgP+O0lRNIueg//m6LLxN04j/F+VvPdyLfPyyfRayxy+E//ae27pGk3j9PakiZ3cDSP59yaSGOQds/DBxopytu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tc3xgKov3T/JqGUB3XvmP+MTWB5jUM0/Gsox5g6gtj9uVDpiSlPmP2oXa+SB8Ng/rtGmAW6b4D9T7GimO+nXP/UQF+mk6Oo/Lwr1RppB6T+Y5P9+B0bjPx6TZx2KF90/dlYSNq1v5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BONzv/Rs4D+ok4pwaCPjP7FpQVtoG4s/sef5PcXksz9gJ3r2y8XiPwwhWTp+g+Q/C7uvc0Nn3j8aTEogZIbRP1/SWE7zaeo/RzuWtPGG2z/IX7vPwzLlP3fmaLeNN90/VtBCBMKR3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zG4/lSYz2z/EhgF/rGvkP8r/WPIKSr8/jqTxxEfbsT9YMNsWMtjdPx1mRbULhuA/EI32QFQT2D9tZnM6Yc3UPzzUPIJ/st4/FUTw5cc43z+7OoWbPCTYP+aZ2fyUWNc/hWNOlXi85j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y6R+4+by3D8yj0Gteu3jP2z9ysIZHa4/n+q5X/Ktoj+AGfpIdy/gP3tZEDT9bNs/PlNxOsO+3D/kG7DSM4DcP8dubveNR+A/ApPBT88g4D9oWLV+FAXgP3iQgv3/KNM/ecSN94Am6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fzLW72NI3z8/5QTN5lHlP10WgdLiLq8/jJUepiU03D/bhVo+ncHkP9L5UfpxjuE/PW0zH08y3T8NovT9A+rQP02hoOwc1t0/jB8Y2wDC1j+hVX6VdB/fP1QjFI3c1+g/zr+M3rH06j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x9pytDTq3T8A/s6mnM/mPyL6tEQ9mrI/5Q99zuRztj+ciupcXZzYP4tPIbliRd4/QrwCQ0cK5D89PzicRJLjP1KgnHPM79o/SpSLRRb64D9umMOn2XXhP9CLOZeCINU/0Eh/a2IZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OghNvy3r3j/tjLST0lfXPzG7tbVVApQ/r5yYoWdI4T9Dht+PTqvjP6RGOxIKLNQ/scvVXqOl4T9Q/2m4lufYP7WRrCwvK+Q/s0fOmub92T/C8DQrhi/QP2TTtVlDJ+E/qmwotUZf2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+E4Iy9gi3D9OcK1lXHDbP0VhRz3BwMM/Eji8+ZTU0z+rq5phzgjjP/Pcu4yB/9g/X6i1oiNO4D+2/rK1UpnaP7Brrv4N09U/cgRP5WvB4D8goSTx+w/MPxpJ4kZmV+Q/t/5kpA0+2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ere/rUvw0D/YECCPwgTcP2baRF8g1Lg/ysLEujYsyT/kgWsijcHaP7yMPsaCht8/mqY1UoEe4j/FPTJ8XiHiP80xFYHq+dk/nrwUIIkl2z+wJkMXTk7QP9uLf0GCf9Y/jzTkSABq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"At7MBJM60j9vk8U+zczfP8MtcdFNEcI/bfd3fqE9xD953imrxjHYP6oXbUlIROA/ESbOEA134T9f9t/lhNLiP+09WdDSKtg/hF/Sivsy3D+agGDWnGHNPzwCjHqTetg/16bTk0nI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8wgZWwie0j/tQZF5TEjhP7pMm1+QUcY/piEfRIbO1D/G37LaGfLoP7K0MisIIeE/enAWpjj83D8yrPGJryXJP932ldxsHeQ/XG3YXFf13z/NAlA8H4LlP7brKOp5/Oc/i5aJE7Vo6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uilT5dWQ0z+yyY4cykfkP5ES+zvWKMo/YQtbSslu1D8zvUk5EKTbP4p/SjQOd+M/DZHxWENz2T9g9MhJckjgP8Fx6DBUsd8/jY1ILIA+4D/3ZQB0OZ3fP4DHzYD6y+A/eFF6GEfN6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"opGctnoE1j+laDWuO/TjP/dl69FaFrk/dwVFl5DUmT+q/GMeShjkP7/+bNT6udE/G/Me1n9B5j/YxeIIGFbWPysxKt9Z7uM/p9fxpF7K4j90aqGOh6rZPxnma8Wx0+E/ORVwXujf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nWOa4u5o4T865dOcWYvjP165Tm8ytbI/Zd9FPhzEuz/hQ33Ywb/UPzy4ELjUPtg/u6EICb+J5T+D+SYVANrgP5XBLL7qhOA/mxYeZUDc2z8utULLF8HjP8w6sv2lFcw/bnuD+Y6N4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NJgQLhoh2T9xA7GgmMPkP3KN4z1L3KQ/z9ogtIhOmT/lJbyqIRjiPylz7ijyk9Y/56RJzcSv4j+dcvQqKTPhP+IYPD2a+No/9gZbEXBW4T9ZxAr7uAXWP9rullDfDOA/E7zW/DQD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AylIrA5P3z/VWGzW6RnkP7Zb1saeGqk/H5n5jLiexT9NAQfjofLQP/wZ+qO9j98/p/kYk2Ic7D+EgaQY41bmP4EF7Cb5dec/IqLFMWBS4D8Fi378ZfXcP8JptQCeMM0/zsZ29v2u5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7sDqTxbX3D9wz1IJ9bTZP8Jax3aALMM/+F3kGOUo0T8W8oiaH9HaP7xct4fWTds/KyOopPf5wT8iIKDHj1/BP1ryhAdD69s/5DtpKOsD0j/9BMVNy2bTP+YSMwU+6+Q/T1opugwp5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JOGs0ZUC4D9uR0scZvfbP7aRYSI/YbY/Yo52Yubd0z9fBhZNrOHgPwSVZ9zFJ94/00lbvpHT1T+swiMoSkfEP41CSikOodY/vmDKHHp7zD/dRuJKyzDkP11O7qHLR+Y/1c5SWQfl6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9o7x6m9N1z+0lVlbkMDYP4smubaYJ7M/ud+ui94Y2T/AtaVOpQ7jP4nZ8gnuOuI/dwTvIcKH0j8ikBXkAR7SP9B3B1AY8tE/wT7ytMPQ1j8JLyzOlUrkP65xemlXrd8/pnGpfPmu6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jPgjOyXV4T8KkO5go1XgP77e/jG0Da0/J2hPLhCS1z89wR6Tcp7rP0nNJZZeS+0/KuYIuQn34j8YLwbZu6nbP2Jqqs9ACeU/kPsQSSOP4j88zrWbSWzfPwhitprwN+M/dSu7sdro6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jPxeSS4G3D+8+dTMRsLhP1z0WGEMp7M/zL54Lwy0xT+F+HTBkz/jP+Ol/qbo8N4/xwcGWLuY2D8tPQh82VXVPz74NOj3Fug/CiFbO/xg5z+sOIYr98PkPwzfm5Kot+A/gvJHrgqD6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6T8uNAKX3j/QZgOs7W7eP0Mi1o8j5ZU/mLlZmLTbxT+akS+D7B/bPwcB7kkXOuA/fik2YpY80T9Z5byxLsnYPxJ9XoiuKOk/agtrl0WT5D8lPPWN8S7jP4pmZuAJhOI/9Pv/smaF6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GEZOcHVq3T9aFMnHFoPeP6laTBhaC58/KLkd2Fwwxz8ymniLttzaP4gzm9/N/uA/SEyM3O3j0D94/im3KWPWP/Yau+Bblek/DI5HQaHx4z9X1OVFfTjkP+8tM5GS6uI/szHvmaHI6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k8TamI5r3j8qLrzBiDjfP2E/0euJp5Q/ZZJUlUo+4z+haaZ7UpPjP0laWFz+29c/Wq2ie39q4j/DBZIzNnHIPz6FQBXF4OQ/BLmh3qGf5T/4yhIrh+PkP3cssYVYHOA/g/M6aDZ65z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HMofQcHN3T8/cdYaSrHiP//3W6xQMJM/oQGsgxiBsj/Khf5+wcvNP9cqCrwLNNI/sY6l57513j9PgHUGoCziP4wyyerk5+c/O7bxd5Nk6T/tX3nFzwDgP1gj/oPBJuQ/mdx0cpuo6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yUkO6DZd3T8aC50NfN/kPyIKQgi1Zos/bUSXcIa/sT9AKbHI/4rjP9+XzxH0/Nw/Ho5PxQyF3T8Wv7peIuLVP6qMNlhX/OI/LzjFmPd25D8N6DjixXnpP9jJcNQaXd4/A/NUzVoX7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iR9McK6x3z/Tz9IG2JflPw6KeVp0M5M/UbmkwIcPsD/jpt6v0YDjPw4ne2j4Ptw/3Y5nVhIb3z+GFOHCVK/VPzbYbD1u+eI/o9iS32zz5D+G5kf3VmLoPzqShTG4gd0/VM3WyztR7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y0JLNlFI1j83s12ZESbhP7e8aPME9cQ/I+/Zt5nvxz8Xai5Qt+fTP+ZksAm2wdY/VQ/y1Qow3z9CuQrzgTTcP7eY8+/gseM/9gsI9kBB3T9AHaNWu6TLP1MFKbJr09w//f1vK/Jj4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q2N7swZl2T9gwfys9q3dP8FuGGrlYs8/2B2iJWpk0z9rYuR2fTXoPxtYTDRsOuQ/xukuEmC64T/qEQm82sLZPzmpt2TME9o/ukv7E6KL2T96lSzLeRzdPyQrLYtTzco/w+qnZjnu5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rdHMfk0S2D9ClOVrgCfaPyd+cwGkE6g/QpComOgN0D8egvAymNLiP6zPAM/a1eM/LdeUl7R91D+oLcZ5olDXPzNiKif429Q/d2QghYin0D8K1yvfraTPP3B0FDHa1dI/PD8SA7fz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j+W0VL5J3z/9GSssqAHaP/8+udQY868/dvu+RFrszD+gi1EW8W7iP9URlfkzy9g/nwdtintX4D/O9JzUpJXXP1hwXzxnEto/ae9Ig0oo1D/Xk3KTq661PxdvyKnuUsU/joGkR1wI5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TT7/QIby2j8bVncsWgDkP/WnTYZXs5o/EtdZqEiDxT8LnI+V1cbeP7yU+o59QuE/3YfJDxn02T9s+vdLGBjTP+Mq5XzKXuA/yQ6D/hUM4j9DK7HXOLDPPxwNCdJHaNk/QKPpa89M3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PqNajN5m3D9pmmbDcATfP6D4vRGmJLY/Hz95np3Exz/VfhrHHwrgP8SxzbVSieM/DFy2zVa+1T/4MgxxU23UP7Xc0vfiHds/iBHmgYrA4D+zR5BljDrMP7GNYy9pdNM/T4A+wMJf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gLImXx+H2T9zl3mdZzzhPy2G28ORibY/FdiJ8zO7vj/0gct6y1LhP6ZD58F2G+Q/EFJmHW+o1T+CY7BV/XHVP0pcLnkTgNs/wFO6+5m/4T+yBElis8rNPwNhh7YzEcw/oSDowZUa5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2nBGPqoW3T9gKfFfVovjP/huU2KV8JI/4eThagP7wD8TeSeILvjhP1B20RASmN4/vr1Ew9bA3D+R2eve95bVP8gnLKomBuA/zB0Ia7XV4D+/TTu+yPvLP2vJQIIdZdM/K3husNMG2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vgLrsl8B3T9EX5EmfprgP6Zt6SxPdaA/SXlecczbwT/l05Nm12zWP6NytYo4A9g/2EhS1+Ru3j+ICO8F7VzaP2RFKgsFreM/roAq+hUF4D9rumqxeyfYP+s8j066IuE/AXr1XyUk6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fMDuiiTg3T90Z9F+ry7gP3IzOdcW5pE/OEQx7pvgyz94QYfpc1fXPwwoNN7ij8w/zV9XRIYQ5j+N6l2j7QPgP0WRE8Ts8OM/yXtzh2GK6D8a1s3KDOHVP9gU3CW//tk/mVMlHq+95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TzdSJwmY2D8e01dGTwbmP4W0YaaSEL8/yixzN4lcqz/J5Q3ltKTjP6uG6UMsYOM/VHFhomeU4T8h7AMVtMzhPyuL1JXCz9A/HZ4Xuxyopz8kyUur8dPVP0sGEuwom9I/7jD0ZwL23z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NXE0rf6s3z/g9tyX/9rcPwa+ejmDBqs/yEy9q7ND1z/2zBzoSj/cP3VAL0l7s9Y/2Fbgia9T3T+isvpLvx/QP6lyGe1cud8/bxgLfvxH5D9Z3ypEnLHaP9KIFWrLuuE/j11lhzzh5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q/Y6CSkv3j9jvcJD8YvePxVGmgUbqa8/khdmPdwv0D/G2x0R4a3iP5VD3BxGD9k/HRBNUQQ13j/SDJBqqdjOPyVle6mvCOE/fjuyL3IP5j9MrC7jPOHZP4fLbLrng+I/SrA9kLxn5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RJY1iTfh2z+jtolD+ILcP+/Wt8EDfnM/AkREYL0l1z+P7o+iOOrSPwm01h1s7dU/u25oCRZ84T9EJyqAnPbhP19D5lFyW+U/84+lS0vD3T+F+EK3Wo7cP6RMRyEu/+E/i1qstTu55z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iaSiu1Sl2z9iNOPOwFncPwibbOu5t34/oQuZd7k00z9QDRvjEa/ZP67cdu7keNU/rHMkVgK02z8kmoK7J/PhP0n2F/Q0XOQ/7M+Pko3c5D/beO1JZh7dPySg9CV0puI/WrEePkqJ6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lJZCJ3R73j9zAiNrpx7dP4fAH4CtaYg/3wSL0MefzT9zM62ooSzaP8L5RlVBgtY/jdbhQS4T4T/2loocTE/kP/6qlyFj6+U/Au2WephB5T9Aw/lHX/zcPy+nsQ6f9+E/l+T8EziD5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cxHConlg2z+w0LDqjcbjPzwWNiTds7k/MrtTmCFXtj/+caPnJO/jP+VCgU/SmuM/+F9mEPYu2j/Z0vzyD7jgPwrU1iPSLNM/rXoJMyOG1T/TdI0OUgXgPxaok/pwjdE/LQO7zsoy4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P14HhIUc3j8eru0CAyjjP0owAYDiFZ8/8k85lvNlwz/M6fO4UD3gP/H/YIN5ROA/D4BaT/bq2T/lSjUTn2HQP/stYF6EWec/g53IgwZb6D8qw9L4s0vPP44i0T/oyt0/Jk0nWsJe5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9W1M60T53T8lJ74WBdzhPzTPRRlBpaE/ALFQ5Xeu0j/qpyDyPqziP04nb2gVSdc/sDTwB8Kd3T8+pUpJtI/PP5E1JQpuoeY/U4yeweZW6T+A8p5cNFfZPx2BeDWynuM/eI0hM/nn6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0FUScg6J3j9g0vf2nj7jP12XVz/fkaE/49k0dieq0D8kR3CJm/jiP+unzRWW2tg/yhfiOK2r4z+hT+PAm7/XP5qX9fR4VuM/TAEQF99e5j/bouHNognRPz12N3vV99o/7qBs8+Dt5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MaP4VaCs3T8loR56ScbgPxt227oyz5o/qmFIpFqduD9Q1pGH6gvjP32xo6Hg1uI/DfEch/Dk4T/KXsO0u6HVP5OOOmOQ8t8/rocrW60x2j8YKQJuE5baPxz2usm+694/TiuSMJys4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r0oXFOno3D//683ErtrnPwCiZ7A3sKQ/cdGRK9LpzD9EzH1Sn57lP3hnP8nxYN0//cvfuUQ62T8t/ljevfnVP7Nst3NC/OE/jMFX1W2r3T/GfeXxlDDbP6wDxRyRA9c/yVK3PY9N6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tOBTtmcF2z90nBQyUlnnPznqH3p9/8A/Y1MEeAx+wD8sOvzrrW/hPxUSl176HuA/iAm1VROP4z/dbq2dAVfhP5c2qz45wN0/UXK6n2FQ4z9Hqr8bQhTXPzBwnKoCz9Y/HfJGAcLf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"39M7xBwW1D/pSRLgtDPnPysy39NO0cE/jQFslQLuxT9SV9jtEevgP5WMDjIfWdw/Qcv+wFDr4z9hSMlTCcLeP9sI0RUPmuo/o2MtE2i05T8pbvU1OZTgP8gXuqh2Bdw/Il0nbzo14j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hu5pmKNI2z9yzgp5IsDlP821VDjBMbg/xLjv1x1cwz+NZ0PVO0jgP1BGStJlX9o/zr3mhbpk3z9c6G54EuDYP1AuufEVMsE/v48ZlqEzyD+V1GWK0tLYP/X3mDksFNY/H1WBT/iT3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2s75T4fk3D9w3M9eygTlP8WcGYJ6lZY/YRoQue270D92Zu6rkEThP03Fx5Bklto/cNccokMN3z9eA+V+ELnfP5HgkieNsOA/f+C9C2680z9+HUdF42PgPxAL56alYdM/Rz1hY7ge3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hVXdLk4+4D/f1rHIVTrmP6nrMBXz36M/WevYXLkHxj8siMxzNSLfP+aHcIrY2uA/+7jc0WnR5j9pbosDVfngPzewBU5atuM/5RqAIijj5z+XcyNmThLAP/FuQtNoYdg/rRJ/qR1U5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OZQsFWeB3D80KcilLhDkPy3ryBUCkJs/VK1HgLWpxT9QOJwJ8WfmP54His/QOuc/8I5J4EnL4D+JD0e2SI/jP0I3y/FRmuI/J9BZY4IW3D9dCi3WWRrKP5SzH2+Gjs0/U5jrHG9L4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kLFLOdcg3j/LOl+Mc1TlP7u/+AjAq78/IGkT+jF9rT+urdKKV9fYP2HZjaFdJM8/xaI9tB+14z9r8VT1rVDRPy8tKjkPM+U/SjteF10D5j/hsl4WG+LXP6du/UfCHdk/GV5hCV0b3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OUxpzOaJ2z+EJmiml9vhP0tdcYCg4pI/dpVMSDSFtz+wLcKbdVHbP9OYLEQuxdk/Fee72bm6yz/f5Z7XcGHJP1amVcdaz9g/Dg9QDmZZ1z8x0tHb9TnbP9YIMtkYa9Q/7LdtdljR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hsPm28B73T8LTVGWT/7jPw97y+sSuaU/DiojWFxduD+9dciz7lveP1tCVdaZlNs/GyW/Hb6v5T8amTYh9snkP0nGq7ynX94/lmz6MDwF3T+O8kdY/obOPz5hc038Ktg/J+aFgnmD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PBrvDGZ23D9kCazh4JjlP5OWfNYYiqU/2390l8rIwj+xMaTWrk7YP1XKSVPOVtk/nGi4xRXW5j9fZLYXNw7lPy1u8SPS8uA/3xAJDTQv5D97sZt4bQXRPxe1cqlNFNQ/cgUToSFX4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iwOeaqC83j+if8FwzYfkP7M5yEYiMJg/I7Z9lvlstT/JWI4H92HSP95fLkdMAdg/q+hlmxnO5D89Bhzi2uTkP92ZSrf71dw/bMmUCBlk5j/AO4FUVI/LP7I/1LANbdQ/RQGribOg4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nZ6/7tQN4T9lQEFqLTzjP+v83Ogm380/D/g7yt9ivT8bilts4kHXP5QFNi6fqso/Om79n90A5T9d2I12yuvgP9df58xkE+k/sUe4EJYg5j+YZETUoUrFP2XNv6XHU9c/EESJNj9J1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tZhGhMYh2z9EApBvMdTfP4zm70vmfc0/vMX6VLezxj9Px0dFEKfePxyQ+2O9f9U/OXUJ+qqE5j9UyR5+oODiP+YKyLQ8HOM/cqBEQ6CE4z+10OfunKzWP6juGbcPzts/3gLtF/6x4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5jkR4RMq1j89a+ZhL/jgP7cCwM2Karg/r1JKC1VY3D98xAHgwWnbPyfQf2bj1t8/bLECsp7E1T/EMd1eEEPQPwij1ca30uE/dzTInHaa2z/uKKJ6UyLXP+m57IAhMM8/wgczUtTv3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"flmteuWf1T9SYp2gWxPjP4vFZynR78M/wQo1BDftxD/syaJ8VEXnP8rfMSdZHuQ/Q/Wg7VQZ4T9fDFTLfnXbP1BfpYTH0Mw/q9B5R5yV1T+kKugBLyXQPyYAJKXxFNE/2iL8AEHC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BZcdCMla0j9w5gtPgu/iP8XYAn6D48Y/RId9mII0tj9pmdeIBgLhP+kSFZtQNuI/Rdti/vZl4D+YDCFx/qfdPxfKZwXqG9s/m9qoQOiK0T/mfKcuiZPSP3pqsqOS3tY/SbuGmrpZ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7qDwmTAT4D+M4gII6Y3lP3R7BQ0dPsY/PbuwlI9jrD+aJVmOiUPjP786emhJ3ds/L1q7fCox4j9+Z4DhTYTZPxTr6DhXKd4/RbEE8OAa5D+dip7EUOfEP3H2+dbrYtg/MJUnSNWt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YQAy944N2T+UAWs9cqDhP6MODUbvFa4/RVQShwvxyT/twJ9HKIrfP8tVAhPNIeE/nsXs+sQu5D/FvY1OKl7gPyHP8tvjONo/31++4a2Xzz/WoIRbEU/WP/OajedlC8s/zyaLfTaW1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pV/YDdkE4D+fwfIOH8viPxal3V0U/Jg/r6a0LUrguj9P66xV6R7jPyLs0atz89I/ixVMx0r62z+2djpmgabKP5FCJjYqdOQ/SK9EvJe/5D8lLc6nnx3YP9hSVX6oTuE/n/cRU37M6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1gA9kwIm3D+v/UEHOz/jP79xJD7odbU/IYspold7vD8I2p69ZNTfPxrGD7llBdc/K3Fwhl4o1D8od6CnhADJP4pld0P1bOU/EunA5dNO6T9TPYA777rFPxlKPT1Z4OQ/Bc/uiMa+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ww/F8HXq3D/QNbMviW3mP4efho1k/Yw/xAKcSRCouj9fnlZuMxffP3+BbQG0Guc/3o61FGQK4j8qbkH4cDXVP93uIbGiQOY/aSJTQPQt4j8c5vBpdl3kP6jqYbXKftI/2ApeY+c50j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0gaRbUKZ4T+HHCbv/D/iP6dG/+xWVcE/LtoRLzoOrz+Evdjo5CXmP5Wf0K6flMo/3RmVhQTU4T+f+du3TK3eP4MhqEExrOI/TmhZFL554z+aTlXXAXTUP2cOvJ2//9o/8nObgUWi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l14dmF1j3D8m6TVdQfLlP0UwVKy0LKk/Za0R9nd+oz8vJs68VpjaP+ydniGeveA/ekbQLoSg5j8aQXvcernfP7Wbxi0TF+Q/fWumZk7e3T+cEh4/HBPcP/p17HG159U//ybp0s3r4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/e4X3tpa4D8hWuXl1b/hP7ItpG2Gg6c/ekIFU7c+tz8Ia/QKNELfP8ARwaiAJsk/qVPS2eWb3j+PYlhRXY7ePytZkc5tMeM/GWtpqVsF4z/TwDrxmbTCP+EYjqmKgb0/fD/il2Br4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uX28DD2+3D+o8IJA6WHlP54rJGXpUJ4/cCwy6Qf6sz8hZfzbiovcP7jKe0z41+M/iqz2HpQT4j/rxS+XbBPYP1nI7UtC2Ns/qYJsbzJX1D/w8uqSwdPBPy1vGyBTsNI/o3MyKRXX2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zfrSNvJg3D/5mCfnH7nhP1pAtuwyuq0/vnFJig4etj9o5sY8DkvkP3PxLST4qM8/lpQs+R/B0z8bl6yHosLTP7FCGqfhOdg/UJ4G3rCbzj9XPCaAi/XaP9CDLoTJROE/hAgIb20M4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LWQwpIyn3D+Vkga9DFXmP7A8orJwNLA/S1IrjnHExT/GKAkshlvWP0tMX9tekNs/brfpNsMd2D+AHuHRcOTTP5HavasAx9o/qbuMribtyj9sAz28+zHVP4rAeRdPidM/ClFjhLlS3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u0vUVLEG3j+NOc3TU6LkPzUogplosNA/7p++623hvT+Nh1ApUsfmP+4PpYBqktk//JnyFOpS5j9x3Pif6cvfP07BMqlb69s/7vkXGu3e1j9yDgAO/CvEP7lS3zLEQeM/9botcEtt4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7AK7qixa4T+JqpLXEZ/mP1cIVP7yvaY/Me2+0zQiyz+iXm+2/6TVP0cRd+WkDt0/KokdevBv5z+E7ev8LwHiP9ByV3G+O+A/v4GzIj2cxj8rQ8SiVX7VP78sDBoaEeQ/8Qpq1e4q4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0cWv7/dR3T/UjwaZcCXnP3peXxFFdKE/Kkp+6NCy0D8Dax0bvYTZP8vUjPZM49c/1AXzRXuK5j8eoCCIIgnlP3DPkcIO/tw/cItUa8/Iyj8uunMXW5bXP4kUXrx9WuU/MJPkDEL54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uhwF6PZq3D9E6XKGYhHjPw4QSaLycZ0/ZvJZvfUpsT8HUomyN23gP4J3c+Ho5t4/mZshLa2c3j8Y5sR1swvXP+rIJlVtUuA/Sn2jnGdf4z/Kl5kqqwTdP+IAmYKVULs/NAo/GQy84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pV3Foog33T+qHcRDA1rmP7U7o1Y8cKQ/Z3Q8GUBexT8HZ5xOcUnhPwcqEzKKQd4/XbswLkpP4T9wqQxpS0HbP/n0MJJvo9s/+jv0JtA04T/L9Wx1347QPxmtxgjsLsk/AqsFaPDp4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r+z1CQF33T9LJtprbPzhP2o/4wE5TrY/nDCQaoCNtz/RkI6APEXhPw1SH2HBcuE/y1IIsERh2z8S2JL7hYvVP1hLVYFY9dk/DpPLUCw11j9+Gthrky3bP9pbpX45AuE/zcBoQiqZ3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pu/q6lzr3z/oX40J5EnnP7znaopQaKU/Quik9DCgzz/w+d5/Jy7cP00k156DRsU/ik0ZZ6Mw4T+RsuHHZm3kPz+eFQUlMOI/hMSiuXRS2z/8RjRCX5DeP0m6OFqzpdQ/u/y0c33k4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QEBqIhES2z+/0a+nNy7nP+YCzP62v5g/9qseF5+LwD9UNNb9aarWP/vQ4hgPGt8/k+OzamgM3D/dfynKGtjWP0XjEW8BR+M/owt4Snc/4z+X7dyzQXzjP3yn9plFO9E/78cPVSZm6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HZm6OEMq3T8HfANYGSnoP0zojDmkJ5c/pCSOwkmkwj/JidBVcFvcP62K239/7eA/vJY0qz4U4T+JXJFjr9TXP7ZC9rP9DOY/bm/kL+/84D/pWM5aPtbdPxghJuG0gNQ/Au4ppfEZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RfTmz8cy3j8L07iu8lPlP5SogI5ag5I/3xMnUjToxz9z28fVH9zgPzL4cAvwM+A/ng2HI9we4T9UyLddy17bP5RBg8Tk3uQ/nAQMdqjT4z+0ydeDqZ3QP6b1oz8Zi9s/Cd76dKQi5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bX8uBw8Z3z8iDwo6T1bmPwfW2x8VZ7s/FpkpIJu4tD/UnLZ9mQroP7mMFhfXJ+Y/yKcyeNdR5T+kBohYFRzgPwi0NotNReE/vfpR8fAx4z8gO8PVnYznP8UzuXejfeQ//wasPSQ26T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pb7Py/8z3j+civ24+CjiP0vl0DsqS5w/3HtB+VdVwT+GRseVzL/gPy+MzxN0Tds/yqZ7tgKE4j9Xp0Xe/W3gP9bVAdHV+uM/aYE9hGpl2j8e88HbTD7RP6w34mWsKNg/v9X5TBae5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"at5kyPn63D/NJ3d0NbLhP1bMn8DnXqM/Jgns5LncxD8ixRumCNLgPyHOX1m2cN0/+vg94K6S4z/M9QP1eRffP2xuMkJmrOE/McF6Rgoj1j9mbUrAUBbWPyMvgJzHWdU/j+NQOgN75j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YMDAuzbA2z+9Zijj5tzkP9A/Knb8JoY/gDlcmukxsz8fteArJJbTP6kS+KtfDtg/6J7mPc4W4D8t4Dp5/x3aP5RaubtPf+U/2jiTRf8r5T+08J2EJRLTP47gU71AANY/hRS4UIYO2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"td8+/2SV3D9HTWAamyTkP89QGfT4NJc/vdb7hfnnqz9g3QXEaafSP1N+mv6N3tY/sEhdVFVb3z97cfihvMDbP/0KEGY1zeY/Cmkedy155D+Oo9HyV0XOPxSxDE77vNc/Qt++MugM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EPYeAmN+2z/ZiI93373jP1auKq/KYrk/ek5axnP2sj/a3F49n6jjP+Ymgejpud4/ecOX64li4z/pdbtxz6/fP75awAQxWtY/UcUQq2Y70z8odb1Mh1nWP5yee1fwisg/I6KlPYJs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ocOVENVZ3j9T6pK/UsHjP2SMDqgQwZE/bGQkNXwttj+u2BakwETdP2Ff5cOYqOE/VjHt1GjS3z+3LhfI5QPaP5q46xyXNuc/DpyIYmbP5T/Lp/0fpEDPPwiKm1Obitk/Sbwz413d3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H6/fslhW3j8z7cBeYdffP3vnnkgW2ak/VPFT9I6IzT8mN2Gi82nhP2RDa89cLdU/A/Ce5fnn4T/AqW/4h7fiPwBwmHvwSdw/iM0YZsuM2T/91SgogK/fP7zxo6QJXN4/JjVDS+Bi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cDE/idJe3D+GQ8bF5rbjP1RL53bYLaI/zXaE5Odvwj/Mq5OGXtvYPzUYBKsC3N0/kUGyIKYz4T8mSrpR2aHTP34oBRyBjeA/aKbSBWH32j8ymN5iIvfIPwl2Mhy1Rtc/5jU/7O2w3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z2gxs+LD1z/XW5QZ5HXmP934PrfRnbQ/5Z0da8rutj+6NFMdVl3mP9bkpYQZldY/Q8fIqcmc5D/Lhn1HitPhP50QiAi4ztw/x/BpXYic2D/oDnfscVfZP+jjKLRans0/HwEdqtiu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XJnXLuam2z+ozEO+uk/iP8niRg2LL70/nd9QfPjYqT8Ypvht5iPiPz68EFnRFeI/wVxQddD22z8cskwweZLVP/JLvVLyW9s/LKRMhMlP3j+udjfiKnrLPy3odCj8QuA/xREkRAo15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lGjy0y373z9IJcx5A1nmP54QO4LbbJQ/T+arbmvaxj+AIW20htXjP3mKyTW/0eE/eWVj/m9q4T9CDfH3mqjXP3WLPLHfUuQ/zex2fHHL4D/8I1ApFrTgPyJ4h6d44dw/r1fW8/BZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SXEgv/7R2D+NPhpp/M/kP8SADhJucsE/mb1nJHEVzT9s+T8rImbcP88r0xbwTNo/7NLu/BO+4D+WsrzZnwDfPwMRI5vy4d0/vzAKAIxC4D+t0M6bHRDSP+POPvLEO9c/nlHStFoq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u0mufEUf3D9txCmjGm/dP6gNqVxSnqo/ga7kBf3Gxj8aLCda7RDiP5Og9AwMd+A/9ioRPClv4T8AwBiY+aLZP82YsaoGoug/lcafxL194D+PryT/9zvgP4qDSGt699o/GsfQj9sW4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qJ9++umn3z8ECStXVW3dPxUGFreBLLk/QbmgwIQjyz/DEtQV9C7jP+kSFZtQNuI/BhrT/im54j/RTgYgFcfbP4Kc0k5EYeo/nS6jxVay4T/LfWNFdrHjP73phUdytdg/SCvReTKs4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WxTLzGCf3j9rRsQ6AEziPw1SyAfEoJA/FSVgEfFrzT83zHKdJv3kPyGzhJBiMeQ/0Wh0KMcY4z868cXBTT3gP6T8RBUuuOg/t7PA+e8V6T+SY9HFvujVP95NBumYL98/ZW+WrLyC6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qd64OqJJ2z8qKgEPY8/fPz3JxUKi9ZI/TJW/TZVo0z8h6KcUJxfaP7nInPhQJtI/OtDvADOv1z9IbXopfAveP6CuHenietQ/tBgx+tnk1D9NiSYgIeDLP+BHhbCPA8M/XuKq+mRX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zyp+E10e3z8Ou9wBa4zeP5k1i5w/5b8/674dkeza1T+tOpenUJzhP5j4rymbP+E/ikZy8WdE6T+OhgmazRjbPxt+DaxBt9s/+z7/Z/V81T+n12CzL57fP0M6+RXmReE/CUEebSeE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vw/ir5xh4T+Gfjd9nwvePw/N7Ms7Ma4/b+AF6IeA6D9evyTOtCTjP8eW/xGA1OA/g1u7HA5b6D9dC9OlK+7gP3AZ0DxwFNk/Qy2JrRo/1T+u1IzZfYPWP/FZa1uxyeM/QMEpN27B4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6p8rLTUE4T+0k6HxKZjdP/aqJJxc16M/iMoaEz9J4j/4dDcVye7iPyL8gJHm0uE/8KByji2W6D8ZNHZD79LiP8QT3qlY/dg/1f5BBiZ01z8ssKx+cgfcP2gZmTc9SeU/S/YqzX+e5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q94LP9Py2z9ajMk0qwTjPy1XRYHcerE/mjfxKeuMtT/KZfEqq0znPwnp7YMrMOU/IIatXyIX4j/EtmT0uKzXP3QLk7fZrOg/ey5c7fnN5T/GKyRdcd3VP/69hTyVG8s/xR6gW9r84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FdlZegWd3j/BQgjDrYHmP8WHQE19wrM/EszpuE/1vD8BSExtY73YP/PRnM4hKtU/SclrIGnE4z+0Un+17QfjP+NWrAS4QeE/lJbY5c1D3D8bGRXO5VDUP4oPnWo4etg/+ztS6tZD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FNs3NJ0U3z/kuEUwjbjgP+76vZg9Jpo/UeUch4lRvD/rX+ToZVzoP+n5W19629Y/r3lnkHbf5D+3oViwud7dP56AA7egB+E/oGs34+k12T/v8vznKubZPzqFucy5xdw/mxSOf8Zq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0LGMPmRV3T9d7uIccQ/hP2wPnjnYsbA/b3PNfqJFuj+vnGi1Q0jsP/Jm66AN/Ns/6CWQl+eR4D/7m6GOvADgP/nLsTxl+Ns/PSsy8vjp2D8BW9TImcDdP2uer9ZqOto/gllO5O8T5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"84qyURlY3z+noJMQe9PlP/LYjlSjM60/7f25iwwLvT/J6EtZ5IPePwReLumIAOE/wzXEUmYK4D/MPIxoRC3SP2etdm0wUOU/6ayV8kDs4z+sfDk/nQvWP22QiHt59dg/W7cVnGpM5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OqxTWP7c3j+5nsUdynXkP/sTxbe3fbI/gvDiJ/lPuz/XNY+aAozpP6R6+AUI5Oc/qO7aiJTx3D8jwbZ0kRPeP3y8ZC1Hz84/CNabhvTc0T8SDsnRsE3hP1YJjw2+Ktk/sy6DYRuI5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eE0+I1Bw2j+yYWcfjBLkP/0tTQdyyqc/4TQQ1FczvT9HfgJu3dvdP8aZv4q9Ndw/WCvYA8Qo4D9aGGCNZM3JP79yWrAygeE/HZ4hvHm83T9LEKrh1KDfPyVFhvg7GOE/Qd8jkYTC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JKWaszCe3T9+jXlXSS7kP9l3iFHzrJI/inq5R9iYqD8Z/ceRN/bXPykSryistdE/iPlqYU0f3D8M7EOJHpLhPwjvjxLvG+Q/u4XsJOzy4z/oB2eBfkjTPyopnTIqUc0/q8ktyzTM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VagiCvkT3j+7ZPPc8YziPwNPeLVd2Io/djcm2iQLxD+UAVJp6iLSP4GBN+1ecuE/PfQ4Lrh/5D8Kwvqo6s7eP6TjrRa4xuQ/5sRs/eIQ3T+1Xp/FFqHgPwj3qYH1f9o/elEdUQsH4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Oa/pcly+3z8OUT4Gq3bhP6xBomC2enk/oC9m209suD/cAnoqUCHeP9saF12aYuE/Jse29Fd+6j8R9+3eQPLdPyuLScIs1ek/wTzSUusk5D/vpRL2OwzgP1ksOzp0D9I/L5q3ztpg4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1Bza9kF92z/XOSlDKGzmP3Hg5+8EMZs/GcrFutIF0T9ovsQwN1jaP5mrmP3v8tY/zUpFlKIP1z8iANkP7uzbP/ZyseVkleA/frssDR4Y3T91o5hOQ4LYP100knWmFt0/YYlRcKMJ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yXgDLygt3T+la8WfQ5HjP9jyyjhYb6E/WEar9F4hsT/OqW9awhXhP4VV2P5ab+A/X+Ocs5xt6D/ypvNsQTzYP7v1N+913eA/nk0eQlzG3z9pGhYdSmHRP/p8iUSdb9c/wtXxtbWu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QeHY1Tam3D/z9mjUGzXkPxiPVaNrm5U/o7885Gxbuj/jr7Cir8LhP4J6red54uE/YmHaJj2s5T/JcVZ956zdPwFqIyqsd+E/jih4/QYf4T9q1e/6wLfQP5vqLlWp6tI/PrpHtoL25T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EFn6M8g84D+uaVNU6xXkP30T+g6PurE/QxiXHYhJuT86s5VcA8jkP92XjNgdyuA/WUzvOLPx4z9YAMujNIzjPzXKybTo/eU/dc8V/poz5D8wzkKfu3PiP8Knjcvedt0/mJwC36gs5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9yC6Qt8e2z9Tw0F1U4LkP+8E7uJ9lYM/4L6i5IB0tj8AuqoVTSrVP9+sYP0hItU/1HxXc4qz4D/dmoAXiSHVP4Y1qxnZi9w/cuPCztzd2z9kZVDxrq7UP7uwp6wRsNo/MUMdNPzP5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i1wUJI0D3T/2Dsp3VWPkPw46/aQ2YqY/EyKDkTZfrj91zMoERjDjP8S71PqeR+I/WbVE4WnY3T9zbsl1dBjiPww4Yh7SEeg/GF0oiJYn4T95DtgK7AjlP0RzJpj8XNk/OoUH19oZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"niFv/Ohb5D8UfwqYvDnlP/HUjNtgB9w/Holu5LfhrT8XtKq03jzjP7jHJrw8CN4/AeG+VezM6T8zcrJWx/LgPy/NJ/5pkOU/TgIgSMu05z/CdWJ4vr/VPxWHcahqWOA/tCzjXkwN6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LW6VHAUf4z/Gl78KAtTkP1cStvvOMbo/JkU2NeRvsD8DRihBx/fgP6UniZeNM+A/A1leOv6D5j+W6spr96PhP+UQbRsleuM/qe8zIzgu4T/+d6+GWoHUPwSgzcFFq94/6GsVvoW+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fnr37iBq1j9f9/K+YuXiPzu5uCQeJMA/3kjkcLHWvT9dH/cmMrLgP3XN9iaZsts/PCtcogRV2z9kOHVUgFDYP+PhcjwfR8o/44bIrmM31D914UkFdzjfP7TMqTp7DtY/qI05FwjK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lcExERVw3j+8X/XTM5fkP1OQuRoo8aE/uGFWZHN0sz/2q/19Zt3hPx0hO/DaceA/wJrNATw/1z83lvoJGhTKPxmednm4XN4/RXHJQl6N1T9uy7gKI7zVP/3VQYXv69c/+/3cIO8I5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VL4BMYdM2z9qrJW1AuniP1XLjGrTs6Y/35HCO1MgwT8za25mxrHmP16dZYPkLOI/K5V+tEsK4z+UdbHaVbHjP3Z01X5WMeE/oH+HxPei2z8y0PK8RQDZP16SCwg+c9o/KfFhl3rQ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cbde1w1a2j/uM/sw8TvjP6ow6KC3W7U/2hlOI+Nkoj951r5xfMLTP941DbAYds0/IeXATu/K3z9xjnF0hvveP9SMBcGuKOQ/EcV+dwaF4T9ZU4iLDi7bP6NHYDssidE/cIb6r/Mk4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LkryXwuG3D85E0YodADmP5N3Jteb8aw/cvyEH6v6wz9Tw8Z4xGvWPwOm+Cb3ddw/wkg/3owL4T/FgA9Sn5HWP5a6u/b0IeU/7zqXEkpY4j+NK7ZthVXZP4UrxYxebrc/ArbCj9303T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pC9krXMZ3T/HZbK7X/XjP5GMtgjU+IU/l4AgJOJIyz9Ivb2OOz7gP+XvcOSAsNA/RqumOJJw4j9OoXk8PirUP39t7Zi3IuQ/A7NXQml54T8YvRVLDnjXP9SR2uXOFc8/XjuXjykA3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+kw7sw9J3T+83RnRaXLhP1OWsJTe+qk/ggDsMqgZzD8xiB1+mHbVP/SCE7ehO9o/X1vzoRhT4z91EsE/RGTfPzMm4mDhP+U/04O374fI4z/3GcrmvOTYPwG6GWPJ98g/24RLLKxu3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4hn/0sRj3D+8GJDCXC/hP14fUfvnpqM/UTiX+kf2wz9BVQuRmXbbPyFysICDnNM/QcEcJD0y4D9+vroAdg3UPy0wbFqSu9w/nwCuIVrD1j87oqz5IBDRPwxdQXEkg90/uS5Mr+V35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wSpVJHGy3T93KrC3s/DcP/lmF1zJyLQ/OLWNALBB0z/H6dsiAZniP0jacwa9j+U/Y0wDdvGZ1D9PxVnbmDXRPzTF1ZuLB9k/wquqoHrL1z9RImtJX5fcP5HsriIxguE/vhP7+A7A4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"raM0DTMi4D832ogKDTrZP8uYqFLCap0/kxpZE32v1j+/R9CkzBPeP4nP68ShfNM/Vt+Dzvcp5D9K1of4N6bdPyT/BPqIzd4/QbUNW0jJ3z/rGLXaJd3QP78G8Jczm9A/tYj1ug6D5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cnKueHgJ3j+Ga3FuUPrjP7blxhxlV7U/nIp4ZWMBxz9Ys7sqf3jkPzVomBYVV+c/LyXbRVjY1T/ib2eBYnPXP9bbRTCzB+E/hGY7IG+L3T9AYOpZlBTKP78dySRKcM0/6kuxpGfX1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E02iyU+33D/57Xq0CO3jPwZLP5rsfJ0/9hYd2JOxrT8lB+wqDdHjP99ZJ6P8GeM/1p/2dAMj3z8QqC7p8iDGP82V2Ft0jd4/s+mp4x2p4z9fBm+Y+abFP5KI8PRnQNA/T3mSgp4p2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bkuQOm+a2z846b3syyzkP1NU6CtIAK0/fVwXgNcrtD87tcVTx1/bPxk8Frkusdk/8f83v6ha0z/QdqH5U2nfPzMtDhERKd0//RFkmSNX2z/kxRQ5p7nLPya1pQlvqMM/dpbpJzyh4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vOn4oeYh2z81wM1aic7kP1O9Qponu6A/bPqIWvk9tT8ste95/9LTP4EzTMGeANQ/rVo4ROc21D/gagxom8XdP2C4QtEbENk/nyiJwGU03z81KL2s8W7VP1sawc0OPsY/Lk7qiaq53z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tXD8iwUw4D+pTe44hPfjP/kUDRexDZg/Ig12b1KTxD9n59hS3C3oP9MA94mB8uM/Bv9nT8da4z+OKYA+St3dPxnKbRZKy+Q/LnoKHgLT4T8XFOSBonvQPz7tx0y6rdU/HCHHNH8J4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MrN0y2xQ4T8NUt4JNCvmP/mX8bh7VcA/fmM6QNTstT/0qYSuBCjkPwBFgxJc7+E/LiOqZmLm4D+VfjosQnPSPyJxO4CtA+M/gLjE3MSS4z/B8aA7UwfDP10ZxUlzq84/2xjkipZL2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YN6SzmMg4T+6nDFQk2zjP5kdxShF0cc/7l8rNhgVoD9iZFrDK4DkPw6JPcrTxds/UWD9rFZ64D/2aSEsBYLYP6R6vkJHjuM/v8rQM5l95D8ISDf5jIW+P+tspa7a5s4/+repcqNexz8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+8KWbaow3j/t9BC/nw7kP8eLwIeCqas/ZTk+J7hGpj9Y8MQHaHXgPx/sFOVJJs8/SkG9RimM3T/aH7qdt3rTP64boi787t0/M+GO99CE4j8J1iTPQrHgPzv4CdcIuu4/gOANZM5i6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9xGsRLj44D/R2MNG1LbiPxFzQIHW+rs/x5jyVo9Gqj8FJDTOiv7KP3npsdRa4sg/6s8cIVQw0D/6lRNfHNzEP1xSolVqK+M/imiS25Dg2T8kNfd3ZzLlP/5Ah3yFBOY//qCJAhg57z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6oq8SJnF4j/1siIfc6HkPxP+Qy2x4rQ/Jd5FHfEjtj9fueXyy7HlP39eu+U6S+k/QUHWEYXv5j8ZAb4WTVPkP2ksCAFAjuA/exYw+XBH2z/PH36l2BS4P0uGQaVUFsc/D0iLYbW62z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LAVZBCtI2j+TzsjrYybjP1AJbUuBH60/oA05OXKmvj9YZXUhbsrlP6gFZwIrl+M/z80ig4Lx4j+P5gAV3m7aP1J6ZVClfNw/U59r+INT4T82EW3210jdP+A8lcwz79Y/IE5RxiNm5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6zH62j4W2D/XI0iFPKbhP7ZKQo6zVsM/HQ9hFXiz4T8vkIi34uXZPzk3jnbTddg/l5B0rtWewz+IDpc6C4fIP2SNI7dXBeE/TVrk2AoG1j8CNmQ8mXzZP2oQWcJNetQ/YBAoRjWr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bx2CSYsl3D/kh8/9pwbmP9ZEPO8JHqU/FFvCUPG1yT97cO7j7qjgP5Rf9w1ZxOA/fKFWGTZR3z8ksZHL8iLYP87WZy70a9I/2DjwNDNp2j92/coH1DPbP3QpzLS14+c/Ni60HPN31T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ecUaQUbJ3T+aVPoSL0rlPzBFWBnESKQ/9lbuqIai0T99778TF27gP+kBkXWgcto/Rcj1ac5H4z/DV5DyJtzhP5KkbT/e1OI/2Gl9oNCF4D/Occ/iRvvNPzfry7XUPMM/6bL1tHTs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d8jDyL/E3T/Fj+MQ+lHhP0fyQWNSsqQ/ydFc5LrtuT8uneOo0ZnfP503peXSIuA/qL8VTFjW4D9pdvHbwjXWPz3T3icAl+I/TC6cHWKo5D8cdwXF1nXLP6dcg9tcTN0/wGTM4TMz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/nXLffIH3j9avkDFm7LhP7H4rmM3w6s/j/zi9Ry0zT9p7A1KvPTgP8DyryrbZ+A/mOWf150F3T/vji8tJ3rhP4OXfS7cGdo/snOj3ApB4j/Dk0tEAP7HP74WP5xAs90/AD4YAqx05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HJsG6+VF3T9g2rzo1EjkPxa/Zh/n6J0/KZqufZmuyT+Lo/VcG+DgP/DZdGFved8/6Hw0NQZG4T/wAZDOiuTdPzHvLmaivN8/h19m03gZ2z91A81kRsXFP2KLlMkSgdw/ILBDKlNM5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G3LP4KWU3z/G9yEWCv/jP904LBBOWLU/BcbcXz0asz/idVciHQXiP4R3MKgStOI/M/WeDpv75T+ugYeQ9FfdPxsZD41Z++Q/zDXMKmIw5D8cZFagYCjkPylcTDt0Isw/k8da0uku4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NPmOCw4m3D9WK+q7sf7kP7NtqvpcRac/fuhzmIfAoz+XXAdh143kP5RXO0VeCN8/KO+9lRgF6D8irk1OPv/gP+XYvM1xLOU/ADuOyLGi4j/v5gOFmUvgP7kMXoZe/No/R12WYQHl5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bnlMu3NC3D94dilNcn3kP2O/qblR3KY/z1nkqqq9oz+MLgzPAdviP0J0sQPlMdw/2BdJ/Phg6D9CAqoCX9ThPz4gsdktSOU/0+vry7N/4j+W54CtwI7gP+0Kmq660Ns/w/6wzhmq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PjJx2+xb3z/FuAgHbJnjP+9dUVzRm5A/Cyy81bdJsD/QBOhEOTXbP/l9gQ8+s+M/jcxWkq4O4z9/mAdtX3TiP0gcTxdcz+I/qXjEfqsg4z9q12kZDw3fP6y3/tT52No/0LZAnr5D5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jkAcNV4i3T8zl14SZ7flP0Uw7x5MecE/piO0E0ANsj/3TEHUGc7nP053A9QnxOA/3xsdUo563D+jNBTC2m7VPyMdRAxzUuo/p72Whq676T/pyccftKTkP3rZr5xtRt4/Uuo7otCc7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ib7r5TIA2z/c9/tRaEjhP5f1b1iJprM/vlvZZ7WpyT9Z4X5e8KvbP1QbbkX3BOQ/S/EIFdyV1j/2BbMdZ5HQPyAq8yHmEtk/ktLTzp951T9P911gTqbRPwzo65I5a+A/1WZKqqP51z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/AdnRZBA4D/sVnYTZ3rXPwc0PoquHaY/MgDzoGiy4T8fW1XgVLLiP6GcDDbBNtg/4rt2ekQ/4z88b5f6xXLdP4w6UhjRsuM/Jm8qa5R54T/xKSfen5bOP7nkkZULQaw/mF+Az+zo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"doKWGwPV2z9blDh8C0XaP9z2+pzUH44/WHd1Z9cXyT/0psBUwd/ZPyGDGNzgzOI/g5gzKVPm3T9FnQje52zYP4rbfEVEZuI/X3f+Cws13D8Rzz8MOFHXP20gXJ7hZso/g9qCjDzJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aLOsWl7Y3D+o3MS6WtzVPy6BKsWjz7Q/IIVZoZ9b5j/2HkUslernP77YtwZuVtw/i0UIja/v2T8owzUlnLPMP/Xudz7hw90/0gMyzTPR2j9mKX5ZKzLQP+kxxf4apNg/26Vz5CAs5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfwInkAw3D+SNOnyUPvVP11j9L5/15g/Nkk3Lxkyzj8VPO1o94HMP/J3YWEUdtc/6eZ7ninp2z/cMbyjNQ3ZP+SL/x1maeA/prZljs/m3T9SmQhp+5zWP1H3tS4BY9Q/0GvqXmqL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fBrTu7ak3T/qgSbwQ0PcP6Sj9C3jtqM/Rl1+joPt0z9dZ/5UWu3hP3Cg3wLTHeA/pd3SSNOp4j9S5FvGkCTeP3L7Q0ja8t8/UZscbIQf4D8aLqoPImLaP9ZZ3wayC+E/1mrf3xzG6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wD9pfR1n2z8m2at51d3jP/+CKuUUH6s/vy6jk3gHtT+9EwNxI4LiP9x0ENH5oug/itBDs5+L4D9bHjcYbXjYP0V8FD7aTdE/cRoNUDc73z8lZG/z38TYP1+4J4ok6d0/vf/aOnux5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CAhu8N5w3j8OXHJtotXkP6/4ZWBy95E//0oqOBzEvD/2ffmjHMPiP1Go/w7AW9M/xaQhNvkt5T+BzlwPeY/jPw9c3mm9h+Y/1mecnY5e2z+kQyksYpfSP3aML+yLnNg/YudBqVx+3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AlZypoPB3T+84w9RZ9zkP4pgeiJI34o/zsAUtQuFsT9FWbyJhPreP9NSyAw8Jt4/LzlEK2Xu5T9CrPAIitLhP0+xBF4+fuQ/eCshFY3d3z+u1IzZfYPWP/Z5ft89ods/06eYoQ4a3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eWfolI+53D8SWwlhiZjjP1sm3sbvNp0/9t7t3PXhtD9qx9tiUBzgP0cm7UaoX+I/3aOCNTjh4D96+xlEcUrVPyKv3DkyEuc/MAWdS7C43j9vKoEQWSfQP2X016tJXNI/rS1yKUrK4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7r96DSTd3T+Iq5TCxePmP4DtEsePB60/hdiwHrzoxD/993iXA1HeP7disQalqtk/QZgCDFgL2T8+p9mWGSHWP6Q3FG5Dm9Q/+Wp7PYxw4j+HM6k+ETPOP61MgP/IX8c/SpGtQ7Y1zT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xGlUUoqJ3j+01NRRWbbkP2b/ExeRu7I/vjRecUm2zT9KZSGUVwveP8VQqP8OwNs/G9GnzE9f5T8+ZlcEQjfiP7zb1I/y5uE/FXd4YZ5H6D/61kGNVLXmP4wDKT3wYOU/6wyH+3sp7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LAkmGinV3D96AI2DH4TjP4P4IRv/0nU/nmo2aJWhyD/QRcP40MHVPxg1f47IluM/eW83pIVA4T+IS52FQ0zePwOFX+m/C+c/wwafxH4e2j9cZ59nFFXmP1dqA3oTceM/EwjiG40u5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MujdZe5S3D+DIFdxNtriPzXJy+40tpA/gGhO7dxixT9UOtxkP23bP9tAfMzPCOQ/wATbzPxp4z/ECxDGe6TbP+VgC+WodNw/Yui3XNwC1T+TJPVUTRrgPxnJ2CH3ceM/AZyrcykj5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8afQmRlH3z9fOHrltqPhP0LiNQLOdq0/Ace5wl3jyT9025aT0WLnPz0xr4Ev7dw/XRiBUfVt5j8rrv69npvgPw1Boqqp8+A/88FnOnTv5D9lmhIePxzTP4sC0QU6vtc/d6GP+XVZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xTY3aqui2z93Ksz5v9DkP554FoVhVJ4/e6mL+fmmvT9RR3DKQdHZP8692X2h2eE/sTuTFnfi4z+U+mIS1xHmP/Lo7v/2b+U/x7CsbjIY5T8gED+XwaTQP6FcSv3B69c/XgnxlG4J3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"deElnZDE3D9SQKLS0IniP0gklKOBnaQ/eEPx4nkhuj+isbFC3WnkP/NuILczk98/lnKEgM8r5z9Cj31r93TbP96jHsRWDuE/UzCpNEWK4T8GxVgiupu6P4h4DF+lt8c/yB0hv50e2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bMWnaDlx3T/6oogAsAvmP8maIp3Vd6A/CcTGQEoWsT9iw5xSjPjdP56Y8krCSuE/Zh904GaO3j/6smdDH6riP1moi6SnTuM/3Q20J9Bz4D9uhL4gPWHOP8aK92jnLsw/8xvBk8Ay4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o0r9+36e3z9jBz9X04jjP3VzPYC8Z8I/UnJMQkTErD9O20CZtmncPzckfhtM+9I/UCJFIVND5z9Iec9GyunfP1JFLUp58uQ/vY39tm913z9YkiOm8DzdP1PziLFJbN0/pMvtKYYE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DoBEre5U4T/cPJvY0pflP2GVUW431sg/bFb3oTqwtD+hy2u+HW3fP+fJJb9NH9s/n1Cdvq8x1z/HntlyrH/cP4DLXQ2tkMU/kAABEDHs1T9EPWDqWZTUP4p1Dsaq59c/41K7GDZP2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oV9KnH2h2j8o0Z9V2NriP/zmIZJFDJU/MMUPOvVvzD/P/zSaCjziPzviWj7c5+E/Z6YPQ4Im2z+lV05NG4bSP5Ao7drqWeE/cPhlwxMTxz9eM0lLUb/KP8w751/cCMk/v2dXB8613T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J/4fRJ8G4D/z5bwWXtzgP7X8lusfUrI/MsQ1i+vYuz+CrwpzOs3XP8i8SfeKpuA/JAfBFQmL4T9LPwjFNL7bP7dg95xEAeA/dGXmETaK4j/fgrTiTq3IPyPiSxRf29Y/SZmSrI7W0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b1+NEcxi3T+rjk+pVwXgP+E+ujQ6Lpc/T2bhzlrA2j/PLNrshbrmP808mnV2Q94/MDR3p4s/3T/wxEAo6pjUP/+FF10nj+Q/SlyrzlVi3T93QXPEJvPQPwgbsaSe7cM/bhx5gjXw5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"43u2dqWQ3j/J8azfLNzgP6Qp+MFGRKs/E7pS6uWl3j+yay6Zj4XhP/0rvbEECuA/e+FgOudd1j/sIp/tcUnSP58B4Qbi7Nw/jRsiu47d4D+1WFUU/8XVP2ycmnctMtA/KriLE+ur4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m4jkXeDN3j9Pmx/3PcjeP/IShTNp5KU/F0tpZRtiyj+pyFGrZQThPzgHPUx85dk/VfWLps6O5T8KfQGDhUriP251eQUYM+E/hS2+8Ua44T8n9blNfBTYP+qT9pL3T98/LD95PzCg6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"btpL/o0F3j9AYNpD+dfgP1r0WdMkR5M/w1xD5yfS2D+qE+AlWzzkP6nqznKtiuY/KsRIuUND4D/heT3upbHaPyULCdPQ1eM//1EszSHK4D/tMvK9cLrWP7y26YgGr9s/W37L+usO3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KIK+Ln+Q2z+E74x4LIjgP7zafveuJpU/1L2EfHr80j8XSvC5Uu/jP+HWt6iqVeU/XE/yg5My4D+kfwMs2C3ZP9VANnNV8eM/L+wwj/Mz4T/illRpid3XPw2CyR59D9s/xRRKCwgC2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WG2gp9Zo4D8DAFfmDXfkP+GMWmhFH8g/JlYOi7WQuD8fSzL8vxrjP1NUlPGEJ98/VkpmC/TU2T+Vio9JkFHUP/yN5n6cDdw/MAWsE/+U2j8kOHimIHvSPzD5zHwJ7NA/lA5atuye5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n2YbxeSz3T+KbB15jg3kP9HhEqhxhpg/baq+pYQYwT/u3xg5v1jiP3WsId92FuQ/5FPy3EIx4T9yO1XwKJXhP3GjtTj/LN4/mH8CRMmY2D+jnHGBRPDZP+9GStDfQ+A/MvoY740v4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Eji0Sto23T9gvsCBE7HlP5I80Uiz6b4/5Xzd/IBgwz8iQAub95njP6CA5B8t99k/Ff2O2+nE3z/cbk/xLFXgP1201Fz8neM/Emc8MKB34z+LcFPl2fXFP+Qugbsgddc/QhB6Ctj73z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LqajqGYk2z/Wn1O+iRHkPwrnFMgH67k/Uu36oKpAwD/lNddc8XjiP70vyBK8F9k/kp0CjOay4T97kisuRT/eP42hESBVG+Q/enk5Mp8K4z/0A9TrBoTLP96yL5j23s8/KofQO/u84T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dcy2uPSF3j/NhAgjUfjiP/JzPefiGZA/UWy3qBKXxj/boYG+F6jeP9HdDlqzeuA/Jl7pqFX/4T9lZjXIQa7jP2c5ajQHsuE/rORdcSfp5j82GjjWqGzVP0RhrCuXi90/732kOJ214j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ijFBKO8J1T+ltWsWOF7kP5ERTLYqm9k/f4WAz2m3sT+zMbCh1iDnP0rslNcEEeU/YKYHWCam2z+LX0Mqk+vHP8S/rzJX19g/jWyTQKuz0T/lAUzRjBrUP49FkLZ8etg/7h23Ndn/5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XEGFA37x3z9mbV1Eb8zdPz/LnNVBq6w/6MDXOejM1z8pNQQCRPTgP6NhWlRcXd8/HF0PUg8w2z8hhc7uxUncP4zZ+U2SF9I/z+wzmjRZ2T+YpUe4aJzdP9i5IdANRdE/JdDsRYsr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VH0gszwF3z+DWVEqbU7gP8iOY1Gifqc/krg0zvWDwT/wqSty3JzeP6zfX1b2998/aMgdAZrJ4D/ObJeCFCDWP4ZyZIILvuU/+Mq4lCtw4z+xSW+EPHTOP9ahixtwCtg/yPqedeJZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"toMOHDC13D/PH6gOi9flP+/GKGVCZ6c/q9zVZTgHxz+ZIsoP9w/iP8sdvwsmLds/SAgkZNea4T++HZCygxviP2XNthMmU9Q/IKYYQQZ02z9lOApA3yfPPwi7W5Fk6dE/5poZPfPf3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3iP66Msv3j9Y7PmCfSDkP/nsGvAsVqw/puSox+QDxD9wiVa5NxPePzWJUtQMH9w/XBh3wX0y1D9lwN0G91HgP95/m1KPfNg/54XOB8i+1j9STseWgMXWPzhqs8Lr+cg/ihVN1AfE3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pvnBTAXv2j9tfYfT8N7kP6+GJVWusaE/de7jWqOuuD/bOtT1bMDgP3Z4651Ng94/wlEvujMI5D8r44nf/KjTP/lFR+wxHeA/DeOfHuHP3j/Zxmf29PTZPz+6GERw3NY/7rVoFe2g0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FwVJ40Br4D/hk1AvrMLiP2U7GCslUcE/OzZeTySLvD/Uw5J2tRHgPxPECjZjc9c/F4rbi03l4T+pcDBSokPdP5t2pbNyDt4/k89RkU8p3j+ky5ZRxLDRP556dDRHHc8/1GGbNooE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7hwIxi+d3T/rvSyqaDPkP3tuh0dUjaI/NZOv05s3qj94me4Ip3XgP9fzPPF4XeA/1QEYgw6Y3j+0Q04v4xvWPw6JVj820to/xqJchR5e1z8aCNnJp87eP2Ohh9uodNY/6UATao4O5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rf+bbG3U1z/BncXFVr/kP+fGfXVFvrA/N3kQa7jWtT9Ds0fVU97fP+ouWDsPSuM/PdJ4LvLL4T8xE2tX9KTcP5fkrJMkat4/ygvG5NUk1z8wZen/2LDUPxMdh6fHyNI/cmYSSyVG4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HE52Dc3n1z8UEsWiIg/mP3DUdpYpLq4/HYK+lGr6xj8PDfhWo5DkP1L7Hd+6j+I/CYnZ9Cgo4j9RyyDJRu/XP0lRojAK9+E/wcsFtySN1T/V6d8QxmLXP+y8q70H09M/vlOz/Ymv4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R8SUs/+C3j/AzlIADunhP+Mwh7S3/LA/G3a5AdXMuT9ItPdmhc7gPxLd6yDlLNw/SG2xCNuP2D8WVtzlUMjWP3GJlAa4SLE/CSTzAp2Owj8PKhTV0RHlP/sdeR47Q+E/SdvDL2QP6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+R4AmDFf2z8Bd26KEb3jPwCGza409KY/puBGAxm5xD+Wcz4prS/dP0Xco/jjvd8/Q0EDGh/74D89MpGvja3XP/pwGeyQWNI/Uio+yROYtz+XdB8fZn3jP/7p45pwkN8/sRPe6dd06D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ECO1KZYY3D/X0kScgsPkP60aKygRDKU/qGq0AYzAwz+Uo6M8CVvcP6aWErfy2dk/nr+Ja86V4T+VUY2UpKnYP314awV72ek/QLE8jXWe6T/lXr5iR1XQPxJDfZXxqOI/OVvh5lsO4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TCkRwhBy2z+7IploNsLkPzGrc9nTQaQ/PcpSYeRvxz/VACbSFBPbP9o77KS8/tg/2H3NKSUw4T+Lbl9fMVzXP498yF7gM+o/+8veT2ij6D8dVkgf4xzQPwR6daKH7uI/3vbX10j64D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"45Lu3HCw4D/n1K+FLj/mP3OvpiG5sJg/NQ7EElaK0j/gFXVlFQrmP6EmIcAiX9g/mNmMW5Ra5D+B32U+UZPaP3AdDffh8+g/tVhOF7+56z/RXEGfIHTUPzngFLATidw/T4xqVitq3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A85hMZU04D9iPSdIOdDkP0O2W72SRKM/kLJ0Ld9/0T9vmyvhQRDkP6RNFrZuONw/VUqHwau44j8y0WefyTPeP7MQYdZfXOk/ad+6p8AJ7D8sWxAShw/RP8L0wVNH9ds/bVj5GHPZ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IgkMAr+K3z8hMb9iuy/jP31xwQaRJLQ/AAAAAAAA8D9D5rHoyzjhP6gucWBzyt4/Mj3wQBwa4T+N/zsSKKTgP+STv04ZqeM/s1urAnBQ4z+ZnFguxVPVP1O/kfzq3N8/830Qvyvf5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KqqYY+hh4T/y3oAg3w7iP2y+jO9I8K0/MFnnBhXJyz/jRfpAhhDiP1bZxTUDS+A/CwykJE8J6T/TkmnPukjgPykX1nCYNtk/RJ8xYN+W2T8QSbEFhnHaP9W2T0lJ19o/7FQMpK3r6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qOMGNWFu3j/N/NGYdQLkPwBhmWlbWaU/IDCUgX0x1D/7BoIzBc/aP2dVBi74SNw/r5H8/JII4j9yqy1tgd/oPycc9I05CeI/Bd5M6ugO2j9X/2mEWSDbP/loIA23K+U/fbIrumFZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nW/McjC63j/opIBWcznjP80fJ9UEQaw/M0aMwkK12D954axeMZPaP+qn6J/Arts/vcyc9i904z9DE4TbTFfoP7kqARJRROE/QCmXEE9I2T+3rHMbtNPVPy4cy0+yyOY/0ndzvA5c4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zyo0Kjwy4D/kjmT0hdzhP9X/gzwU+J8/A3eRa33o2D+5Daz/6mrXP/LgoKNTAuA/M66fuVwT5D8KzAQgKhjoPyP91C2c/d0/CyNWSzVT2j9qmaYNckTQP3siUrdNC+c/cuz9/evf4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ko1xANi11z+4cDOjEQHhP8gyw8LIAKo/w4B6g/pm3D/KIYuR4yfbP16Os4xakMU/ZWSicoX+4z87QZPfrRjkP4Os8oViydU/ttqp96zp1z/PVyKoRrHYP9ds7UelxuI/R20KlGjU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YhfrwoDr2T/Y40OTvHPjP6JuGFju/aY/zkToHZODzT89r89QfArlP7Afh9VDB+E/BaMbSw2D1D/9LwGyrN7YP1n4RIGt5uM/Umi5Qk3K5j+2RM7gQzLLP2LoeYcc9NM/K/8GrD0k5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2UWy3/ir3T9xjBN5Os7fP0Ve/kaalcM/+WTF10RLzj//lCu94JjdP4t/jW3kqd8/mPEhyLCD4T8X70gTjkPQP4iJk5xR/uA/BHMNzZcP1z/QnL8fm1HVP9qFF9HQ6tE/Ay/NzDcR1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q1xqJ9t71j/VP+ORe/bgP0heCEQKCbQ/j1Pq+xf0yD8vCVSANejkP0+dTbkyluA/vXNvK1Kj2D//O7R7z77bP0zhaoRry+A/hOTFMoqQ4z/SU+0UG0fIP4qOS5m01tg/61A5lAyb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OfovaR994j9MllZSr7vjP7sZMY/Smts/jzelamR3vj9Av71ZYI3bP/1GmHpYSdk/eq1GHR0s4D/7m++dNhHJPzg4b3gTnOI/kmGuxkuS2z+0Z3z6UNfgP0jpbr3MVNU/MaDkb8K44D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C9kZiGQe4z8QRmGFwY7iP90aj5PswM0/PVswTGSQsD+Xl6fS6ELRP7/xYt2aZ9s/e5bwzok41z8W6WHrKqfJP/RbUrZ6yd8/CqsgGvti2j+HmzwkGMLgPyy+PnM8odc/tqW+gNEI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J9wSI2l14D9jxu+0l4rkP9OwID6WnME/jwwAR20Tsz8IIz7nblvkP6FsruboG+M/lBK5bvgz1z/iuMLp6BbPP4oOcH1hMts/Fnjh/hftxD/OJoO5eJvSP60jxVY/EM0/l2YsDREf3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aLEYiudM2z83z+AQ1rXhP1NvloV7FsA/WE/YrlCxvD/boGsP5ynbP4rqkHmgE9c/xshuygSm4z++9oWb8vHgPxWBMxU5m+s/J5Lw8PLT5j/CPkrXsiHpP5gtu6XKEuQ/ufD10hF/7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jBI8pW/C2z8uvRvnoqPjP6UA9Gvfi7Y/bzxpdj5Gvz/Kp7FLJd7bP/F3fOs+Sto/O+g3EDNf4T/BQegCMS7jP/zwDQ69J+s/imDPcPK+5z8lgHmgccnoP+FCxF5KI+Y/Pnz5cA/t7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G5ipF9qy2T8RgpIvoZfiP0n1eyKPSbY/4nJlwkjqtT9jBdeN8iDTPxinQrS+OOA/BhD/WBTj4j8g9S66y4zfPxlcPUfQ/+g/rm58vLM65T89Wo5TEyfnP/vheRVgvuI/1HXDi34C7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K/be2EX63T9Z+yTORMjfP0M1Ommg1Zc/HDPCTdJQ4T9KiYakMIPiPwBzfdsIstI/608fBTK/2D/3+aZbgTnSPxRBd5HpquQ/K3BmsCGK6j+1oES55gHUP74PQJjETuA/LPEyfKWv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"srauNILW2z/sVtPAV6LdP6KZXEvYqY8/Wy8n0i+F0j9VN6KJcingP64RjlSku9Q/STaS+xRi0z+E/H/jIHnVP038u0WhTeQ/+pOaJ3LN5z+CfkgT2GTVP2UwTDCXiN4/jOFjnrkY3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XEHgjm174D+6KW5z8P7YP5ixfAlQNb8/5LsjW7/v0T/rfKuWh8XUPxGMn38QINg/IiI6vGnM5D9z8XhiT2rPP8L/EdV3kuY/XXz5F8GA4T+8IrCB1onYP58mQahiOuM/RVNQP/DI5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oNssF8TV3T/xsGCg1kHZP9NRqZm3+po/7vjSZgCc4z8k9D1hSKHiP7Agn05XHtY/08EkiJ0z3j8TzQdf87rhPzdrVNTqlec/6/7xVqpe5j83yBFBIzXcP1hjokQDMNo/sGT1Q4Vb6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9uF/Aid93z/tLzrtiInYP8BSAKcf7Ko/LFHu8Ayy5D/80nuLSI3WP5Q8RfLf9OI/lCzl/9Fc4j+WeaAfNlPgP0DFm5EJgOg/UcTMX4xP5j8QjPgIX+HYPwpoC8HDAdY/jINrzp+05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"frsdYPKA3j/DISkIkovVP/+9GuaUc5E/Rs/d8Z1y0z9t76BhscPhP9zS09EAEtQ/PW0zH08y3T80Kqm9qVXTPw84W/j19d0/iZ1yVtQe2z/NXwMkaXzFPyCPnNFm/dE/YhRBx15v1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"13RwquSp3T/uyowwiVrbP101WRCdDKE/Sz7gt61txz8ad6kJu3bWP/J/lnc6Dds/8c8unCfs4T+16WFJ13vbPywcd14wrtY/+HzQDmHr4T8NvT1OHpvmP9J8pPu/h+E/EikSa2Lb6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K/Xcjl6k3j/4cVTGV+rlP0CrtAHuFqU/ldc9uTeC0z+FEWJmQeLhP3AA4BqCRdw/zr3mhbpk3z+cfqJAOoneP5eWU5ivLeQ/pguO1Mcc1z+p8uz6irjkP9RB/SmbpeA/E9eaYYxY6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LCCqNGJd2z8otaPuFkPkP+ckqvqv26o/ctnq84qzsz9wdvn51TfjPzVaaYEgY+U/U8YO//LO2z+NqQ8bEiXSP9Lukr7rPN4/QDNzG8QU5j853n6RpIzVP7WrmjJTpNY/TdmPsyO+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aKGcFBup3z8/Ued8SvDkP2kafOKSBJc/UNjyfcJ+qD9z74/ndyXlP7KYTU5KFN8/LmwxiCp13T/ZEIkXrY7WPz3xoR9dLeM/FYo20Oxn5D9syGbdjyDUP3IJ38TloeM/j+rV87J/2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/7t5kNW13j+sEBMXp2nkPzdcVRa5MbE/HIaGcv6hsD/z8Xt4ovXWP1oNTNWDm9g/hRDPpt716D/9kmGYOMXkP8k+adhrS+c/HBXUQkM84z8C/Wx83aTqP+RoBnXtLt0/zsBgq8mp7z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+dnjC97m3D91yR4+/NnkP5sNAjW3dYI/hsmQ77jPsD9i6SH2npraPy+mNKCzbtA/JAgKxAn85z/LIXnCLODhPzQ9h4RUv+E//nRAemWF3z85eeMvIj3sP/YCdtOpXeA/1Pd20AeW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"16CaJb9C2j/GRnZ8KUHkPziNxmiIgKI/LaEmi0kooD/lOsut+FjTP48aWrH6v9E/V42BboMF0T89gBjb8H3YP+nGV5CL0+I/ZyQ4xtxC4T9gud5PGSnUP5ukXsGNk+A/nxo31f3K5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JjKJX4Yv4T+hhQFDe8HkP3Ef2UKWB68/d70dB5+41D8NKqsH2PDiP2vyyw+4Jd0/+j1ZsxMC5D9rJIXTotfTP0PgdkkSw+o/88s0fZrf5T/Po701JU7jP64CfXB8Rdg/AyebyuSI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XpoOKoZS3T/7DTFBR6XlP0euhWtgepA/jORZ5aDd0D9I21lFtT7YP8yTj/eZMNg/8NjVgTgX4z9+pOTYWkvgP0T4582SR+I/lxaZ5BHS2D9Z+2rwae3iP/gOOeiniM0/cBD/4+OC4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tvn73b/43T9JgCJbR57jPzPc/V/9l6Q/7nj8hcJmxT/ECzazPCDbP5p/R3SVOdI/Fd6kHmpG3z/4fmL7Ja7PPwkOVm4gLOc/5GzG/EB45j/hdEhfhUfdP8wosMvv0eA/A9Slk0Cj6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CnUHW1+03D/QNyFHP8bkP/lW1X9HCJU/ab/cO5jtqz+KDBAqAKvdPyx+hfRUhdY/wWvnDkhA0j8JKm1N1dzQP5TQCsOH2+c/YjXaVfmk5D+cudXpObrkP3/DZyWodOQ/5AaoYn006T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wZvhfia33D/9nUys9qTmP3Y30kV21Gg/Ndrop1atvz/n1h5MBwXIPw9U/XRAZc0/UkOps16F3j8jHe4ArEjRP5vG76wng+c/7NgYitng6D8gBnj+2BXlP/ruRXpeeuM/LEvMWQ3c6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JkLhxWgb3D8/TIzGm9LgPwZE6P76e4A/jOSJk5wjyD/Kppuc9F/YP4PwLXWWKMw/tzJwJpR34j9oNeJGLMngPw4HmIzF+eU/AEQXwP2m5j+CPgvp7EboPxDgGV4b8OE/txm9gtZp6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C3EB/g7Z3D+zwkN4nEHlP5TulslBVpk/P8TX5lOPqz/c56HNGWngP6hV7QiUyOA/fO8dmmcJ4j/gTklGRnDSP2jOgZdwHuc/wxvlyYEW4D9a+GAXfJvhP3FTZ1pGSO8/kIEYZUsh6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YcNneGM/3j/H8N9YqIDjPwrerV7+upM/zvn9ZfwtqT+tdx44iMvdPzfSTtWQwNk/qLclKBx54j+aP/OiHi3fP1Tq4P6NteA/PiUy+v425D94hW4scoTiPxm2P1x2Xt8/jmMHtYHN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"If8n72zR1z8CYCATe5rkP2kJ06fgzdg/g6xQoaBWtz8AJGUQ2XfUP+3crmcAddI/LiIPk4ne5T89LDLW1wndPx1ciRQAMNY/fnU0St5JwT+IoG1wW5fkPy2FJDsEVeE/VUVymhpu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3mQS4xtJ2j+mPWoc+5PjP8OpuJTcgKo/Do+8Zo8irD8HmBuqYI7jP29GX9yeuNo/1OR/Wzzv2z9jlmXQ2A3dP7ulS1COMtA/mHhPChfN1z9WC5nmJvLcP17akYg/3N0/o3QdTODe6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2C3TujXA3D90aHppBGvjP7M2PrFcYqs/Qxa//QKEsz9E+MtPEbjePwlaSdK2/dk/BH6dj3a45T9Y0Vq0NSbdP7bPcMQb+tk/AjGyvTzW1T/wk6s3wHHbP0OaZDI7+9c//7G5PHUP6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D29Y9S+33j+o2IL3MXvkP+SzGeevw6o/xLCqVQYosT9rAgK6dTrcP+9bVNWqCtw/4PP1W0uG5T9C2USoZCTgPy8MuPZjZNY/U15qvlPj0D/LE2iWit/aP9vu5TeVHto/WaqhG/tz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pP8k/saD3D8ROCQ9xYrhP24PzZYq1ps/yKxynpQ4xz9Dl9Pj2D7fP9Ml9CFMxN4/J2n8bPQK1j81qbd0HhbNP+OWaIgHMug/8VotBeSw4z9XEC8zzKvkPxI9YU25P+U/PkQOEEvQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2yWj8apR3D/+4Alm6PvjP1eUUomH36g/1AGyVGhnuj+tSEnuSLXiP4t/jW3kqd8/GF3nETFC4j/qoXma6v7VP5HXdXkdj9k/duNHTwvo3j/W4mqlcG/dPzdUccmf9OQ/kva7GJMW5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wykcXoSK3j9nFV5DchvkP3LxPCKbnKc/xKObLPeWtj8UY4i7OqLcP7i/8aUWcdo/65bHbNzy1D+FeJN4SZzbPwNrxYZ1oOA/7MfMJ++60j+hPgo1iNTmP7y01CnJpuE/AhG0hQ3O6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l78JblwM3z8U07R6UDHkP37lQD2/vbg/QxfdZzVwuj8i0WgajD7iP+OYN+le0eQ/idTQt7qO5T9T6RSMLNTYPz4oqepqNtg/vJOKNeUN2z+Roed8VIPQP5/2xVdxs9Y/d/VQZtEE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iR4CCPPr3j8vg8fPASvlPyQKDnHoIaI/G+2ASgfZwD+aPNWVmmfjP+NTLSQuveQ/Lw+UB2Pd5D+LJkF1p0PcP66kaNZxtuA/F9H/ZIIH1D81jgxz5t/RP7XxMejTmtM/m366fKnI4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w6yBgnfs2j83fLB7SsLkP8WS0SoRyaE/r3AmmDbX0D9/WCvrXo3jP7K0TbUy9eM/gBM4GjcT4j8i0IlOx/3ZP0LUCnucgOA/37v2UIzW3j+ogOUnlGzSPyvsGeBix9c/faXtfLkV4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EZoj0Obz3T9dTfADSZ7kP3btdg598sQ/uXOV21myxT//JujDQ9nmP7akTPEX2uY/E6a0Bu8/4j+tEcRkCInjP7pscUcAFt4/MoiV4wUk4z8R9vO3SrPBPzA2UM/QddY/2w7MFOzU3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YlrfqxsA4T9CmdNvhwPiP38DnRqCsqM/eezNO7Cqtj+DntkROu7jP0Klu6MmE+s/f9w0+2yr5D99OnDpyS7ZPwdFA1j//+I/aOdR/r1w5j97u/YS3iXMP6R5x5dhnOE/JWmJSGrU3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dd9UlKIC4T8TQ0APQinmPwxXkoXzV80/FYNCxNeQyj9hwE560qvkPyc7kddIiuM/ua7ET58f3T+hBTHVmovgP9psEejoVeI/WrCkD3mv4T/AjL2FK265P5OrARLv59c/YN4Flyqs1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gXT9P9Bc4T9qdivu0xHlP0BbOEywRag/uWDndUipuj+W7WBHCZfjP60NgY4mWuQ/4wl0MlLI4j8eYlC8LjbhP+RYx86CI+Q/OkEO7WEc3z/C8DQrhi/QPxJ2P+gZRdM/jld2wHwN2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DoCypfn42D9jv5bvY5ThP88XoOdCDbU/1189GylJuT8Vgsg4vsDmP1THsYk8VNc/ciQIRGJs5D8HI2nhKpjdP9NLAcLERNc/eUaMZClC2j8CYzOYnQzTP8VkyJwi7tY/Fq60xLMr5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"knyYtTQy5D9lm8bovbnhP5+aHoXoVcE/wieFJNmO3z/ZqNZIMZnfPxJhFJEhQuo/gEhzpSPI5T/zOHvnYwLnP/7V+j1xA+E/7+q3/+zO1z8LiSiI6sTePxRvtV8QiOM/VJ7DjXvM5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lWKPImxm3j/yLnBQTZ3hP6ILhy2k0rM/GuHDyoKHsz8zd+wcmJfhP/mKmCsfkNA/cD6PKVbx5j9uXsQGiwrcP7f42hcEt9s/4Ble6pGd3D8g37H9XKHiP7L5FmfQ4NM/Oews+tPs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cNfZ8hnc3T/gbbJDdpDhPxYj9uhlQpE/7BeTfjCDuD9PqV4dlu3PPwZ97siuQuE/mHRaC6vB5D9Y3SLPxIHdP3sAKTi8d+A/TtVfJ1rV3T+3KpH9+FTVPxDOtfrQz9o/+kcpUGR34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vilXcCNV2T+mRsrXf+rjP4I58dPzybQ/Sj0NFaOPxj/XZTVUN57gP4HKd2fhBdE/Hge5Kq0K4j9mC1W/oQngP/7bwoLBIdM/gjsAV1dwzz/7CXhGLbveP/fRyN++ydk/VqGE9tzj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H8M7qz6h2z8/KpYyS7HlP5IGyCtQ6Ko/xhmMejY+sz/om8tL9gjiP4x/cuO51dw/0nem3azK3z+GPDj1PFXbPzbXtd6C4uU/VTHP74G95j931CXop4XWP7B0ExKButA/UxqAdOSc4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0rKMvf4u3z/tFBdlcUfkP1FGHyjBrLA/R2Mh6vlluD/twSt44gPkP7zjJiMl6eI/DmVZTOFB5T/AWS/d5l7gPwxmbnTOsuc/kWQwBJzi4j/nTYJeCdPaPyec2vKaet0/PT/MkS6A5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8KQp3ezH3D+5+vxte7fkP9mfX2DsHJA/bYD5CZcCrD9Us15V9FHfP7PInnihpN0/lhM9HJGT2z+SOo4hNGvaP1A09oknXOE/JMnaQ77g5j+xK3RjkSPUP7dqsYQ5w+Q/k42hwu/x6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UWrbPKam3T/LZs7OzojjP3NDdzYeHK8/Z0RWhrk8rT/hdL8mO7neP5JyZ6wxxNA/KRXhtP8S5D9AfIz29mfSP/Huk2bfzeU/CEmt1jLa4j/TE2+UoGnXP1khXqD2xdc/aC6Gj3nm4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/wMqbDqT4D+stKwpqe/iP726FOUdTbQ/68Mzh660vT9TEmA+fOPgP9EDZmQ/19Y/6ZIX8J4f6D98QZlDO+DhP83ijh1dZ+E/ci8Jsfu/1T+VlF5fI+zjPwzmOGWQP+I/9l/+n/MP6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h9QHRThv2j8ujl0eJBrkPwLt4pD+kKQ/xbH6magdvD9+Uuh2E3/mP0bT6QDY/+U/cIbNnB0P3T/z3/+JUPjOPwVQSsH7QeE/l6exzjNP2T9e4UZgnqzhP2eoIe9TFuU/DAQATZl65z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k1OWXK3W4D/0D33WHnDiP4UKC7u1hMQ/w+8kuiiEwD+7eL1PgB3iP19pL0K7mdw/8cyltv0v0z9M3jYsDmnWPwR2gb3Lrso/jlempzUL1z8O1n54UQ3pP2+oMXr1+uM/JpJQ+C6/7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H2fl7dKM3T+FcLUcLaDlP6GDqIkmBbA/83mKHWBNuj+37ZLgrBniPyQ+KaHajOU/TeK/ObY74z8Z9EWAgO/oPxgcUa7cg9w/dJKXaliN4D8/KxbYmpTTP25pJE1+wdY/B35y0Hwi4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yTGuXU2z3T8+JD9Yy//iP8Ur66WZUJ8/x5nKvN950j9NYaDHC9DlP64mEdsol+A/shHQM7vQ3T+4crM1mRq6P3h5CGZgv98/pZIjIAId1j9RvICDzArEP0fl4s29Z8U/GxsWSOe54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EA81IsYV3j/nA3c1eVDkPzpTHQoCJoY/MU8ZhIhkwz9um9rW3rvdP0ebcOXbYto/b5aFpLfb4D/QfDTdBRjgPySpDc8F2Oo/Q5G8JCwj7D9OKVcKgIHiPyNx/R5vJN0/5luSzMtr6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QLG/AMFE4j+RrIPLKM3lP+s2KR5rr78/h+U13WPYuT/34B1utjjpP+lpW7vzn+Q/UtYP/SJt4T85u/0h86TgPzyOOfIULtA/ysbolyqbzj+/iTEAH53gP0Qe+ka5zdg/ubs40Kse6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gULiodjL3T+77N8UHbPkPyGJCRmyOnQ/V756biJHwz+xkozeXFrZP36t9d6LO8c/TQ798f0Q4D8aQ2Mio8LRP0hYwAT0DeY/+sm+7Y/35T+2F+0v1o+5P486jYhCm9o/SDOHxzUs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JC+t8aBa3D8K9OqiiqHhP5+1ry1H2qI/uPZkiH2+uz8YJpd0oUnePxpfu68m9uA/xDmMVhn84j+dUaxNNDnhP9Thl6OPGeo/E6Kw61pP6D8OTKmJCrHjP5JJ9hHP0dQ/S+NS+fJd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qFtTFq/n3j/JzoZQhIbgP88c6r9+yZs/tyavCFh50T86NvxVZNHaP3UTdui1Jdo/okPOuBWb2j9riJCBWjzVP2nmiibDaOk/F2H5VWlS5z90v6L71IbYP02yLUf6ydA/m/4qhp+n5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mj5FJhXb2j/bQvwmxxnjP5nxhC9wQYI/M6iLhEFUyj93ZInZG5jRP7BmA4ZJvcE/1VrboZ6z3j+io4UeXjfVP2CDCsvvheE/Pou57dZc2T/8KxT5e+TZP0gETHShpOI/eLoYuprp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2szRrM6A3T8lP75fvMLiP16H4RZ4gpQ/B4Hb6rlVtj8zt0PSOuHWPx5bhfrUdrE/vcRQHaRE3j8qFJm5u5HYP7FQfz5919s/p3sHXWXs3D823QuDwSrWPyJMJopghuU//oQnFHDD5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wbyTldLk4T9g+GwMa+nkP2jDDwP9JbQ/Rq69Q5cbvD/LJ9KekdHnP8ekLqd0yOI/phyLjEGA4D+UB/D5D/HeP1xEdMGVAuc/THdvin8W4z/uK31SG8fcP5jHlXLR0Ms/D5K4oxbn4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hx9sjnOB2z/3c4FyKfvlPxikLthobpg/F13G4rggxz8vTCIeG8HdPzEhlvNiO94//HLBRprC4T84Bix/NdbcP5+oVaSSXOI/l7Ew6nTe4D+LNnLBb8XLP9gCPCWdl9o/uzeAKrda3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kK21n95l2z8G+KI1xzPkP0+Xr/ASv7U/XSDy1OhnoD+L8fKNjnDYP1IhkHNxwMs/WoxNQaeBzj8G5S+AGVy2P2vB9V9lHuo/STsFq8+z6j9GWLYyeXfhP5nYewqpuOE/rCSyy2cA6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0n7bg0OW3D9bCycUBZzjP77gdwqveoA/x7o62SROvT8cscV81+jNPyXaXvyDNsU/VYg6hfPR2j+XJH2cIFTIP5cJqXLttOo/PnqZn43x6j90xrJmyJXeP9F01YXe8uU/t/kaj5D+6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ISO4PktQ3z/p7g447UXlP/TJeubAZZg/bZp7EJU3qT9+2VUi1CzkP18rh9PDtuI/OrUK7BnM6j+rljH1Mu3nP0RU63dpm+M/TEKEypPp3z+8wQhd8OTbP/a4eMLWD9c/CYHWcaJz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p4zcLRdD4D83wzYJaHLlP7/NQo6Errk/5jFZ7Mlavj8oBY+KXVvjP9m55IHVDuM/C7l+lE116T8yqOg/UX7pP7QXXJQogOM/FM/yTZ8l1z8WOOH/v13VP7F14MSpBNw/3UblIReX6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x37Ba9lL3z9lsC1ZoXvkP7QANZT5YLc/lj6dsH2auT/fkyCCguPjPyOKouHFXOI/jxvm7lLa6j+FmxyUKRfpP1LpKaCinuM/q3vlSSFG2z/s7VRGHBraP0nwRG5PPdw/byu0ieh06j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oIBqqzRz3z+BDan3YYnnP7IOm+5IQZs/MXmKBKwJzD9JaTxDpLjjP0MDOysvkOQ/+IZYeCcp7z+z0/0AOMrqP0/0ofsFpt8/MSo9Ek854T9hQHRmNvzfP8cfY4qbBOQ/YHMsUaTK6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CwGb/Cri3T+HBinvBJrlPwGGJ4ItnsI/g54jDl/ZtT+NjwjUnO/hP3nESVQOf9g/VweZZraT5T+45UhiHuPjPwKJ1IO7meY/Io1wZA5+3j/bk7rnUPjlPzZi1MFogN4/ypHZTxoM5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CB6VNUEZ3T87sU9PNczlP+T6FI1xvbI/Av9O18MPrT9bo6iqdE7jP80PxoqG4d4/jbHr4kuw4z86Fe+7EM/gP9GSIDHExeU/pzV+kANL4D9Ty0ln0sHnP8tvPYeSjt8/mpWzaMC85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zEQ9vQT+3T91L8oCfsbiP+J8mObPY6I/hwIY38mitz8XdW1HzwzRPw9RZuvWIdE/X4gwEsvH5D/inENv6r3hP4rgeCmHf9k/vOfHnJCn0j8PNJMZFVfQP4NSPAU4bds/vjAKMFq56D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"whGFV5UO3z9V9O6eqKviP594mMOembc/ZbLyXbMc0T+tZiKyOAHjP55rHmDS6OE/xgwuMK+j2D9uYzRxvjPTP6S8lm0kmtU/J9BZY4IW3D8BMNk08uHaP1iGYbuX39Q/td8iYPBu3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jd/nQIsJ2T9w/ffe7YHmPwnmnOSKjKU/mdGs6MAu0D+/5uecHgjdPyuSyZJCqtk/W3lU6UNU3j9uozXeQpbcPzUSD2Ykueg/L4KoNgE75D/hAyvwPFTWP/ciPS+9CdE/sAOwKPn45z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yu3bObUA4D+BVwnJN6bkP3vELN/8dqU/1o0q8aGSxj+RySCuVsbZP8FvaR9dwdE/m6ENeo0T4j/2Xu+HNSngP+5OIa3TneQ/GcDfFjmc5T+1TDgHmwbMPzGWuCzpRNo/U1J6lPsc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"INZLcByq2j8AgwbE5/DiPwpbf0dWB5I/qxg5oxqftD9jLZjz8CzVP7C6VFmC3Mg/YV677WCl4T+vRA5IexXZP0yjdtfacOU/uKalk2dr3D9VOcL9jkfBP8v0zh+s89c/8lLYJ22a4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WYkC+Xb13D8uKCtJnzXkPzT7HXpLl7w/D+kJuiP+tj/r4ofvPLHmP5fH6QJYUOQ/hcS51zCN3D9IH5oFVsPhPxRmZjl2Kt0/PpuRbZ/u4D8USTqwunreP+zq0lKnJMs/jskxh+654D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8FpTKRwD2T8+Yi2mS5njP5HI7IQcnbI//apOfDiSsz9nLFWb1NDnP11eYmIDANc/n1D0q0Pm3D+BOZt/xbnYPy8jXRrX49I/kRV3rHuM3T96F39A6gfdPzLztrJKT7k/1rf0DlQ74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IK1v8cuC3T92owGc5u7jP+2sh+EtE7M/8TFSNFhUrD94OLX2lRXZP9ux1xpb1tg/FP93JX9b4j9FTyi6wSTcP7Lq3a1PhuU/b9MeaQLi3z+A9d40XuDSPybWxJw49+E/4pOFxPB34D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HFXXctzZ3T8u5knE4HLkP+ukGuXFfLY/KaxxFP/JsD+EaDGKkrTXP6t3N02iw9Y/SkclnttC4T/HgBQGsRvcP2uQVdKc4uM/Tk+brXWm4j/uNEgy7OrUP+AUsBOJnOA/ir0VH0eO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s0dZVAdX4D89q3DXCdrkPybMxNA+br0/sL3EVyc0xT/BkHNnOTbiP/+2YcJ8ZeE/EaUrkZrC3D9HTqeUbp3RP1EMSoNNn94/a9fodNML3j+LrJzSKGnWP4MJIrCoGtI/B5T0trcn5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ER1UQyEA2D/TutueJVbiP20cCI48rqc/g988rJc4tz98toDbF8rjP+BZDBnSReA/LJvTTETA4T8n0Aa0K4/jP/06I2Gdm9M/zKEUt52E0D9FlFLLwLzdP7X+EJewIeY/T8/z8chP6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qEMXm6/13z9iTTMCbnTjPyIijFM2CsA/ES8gRCGS0j/b+kPMtsbiP4r/PO/4DOI/4xJWF/vh4T+94cExNlfTPwLxwPNXWOU/GKW3qdmp4j+D3PezOcroP1mvZc1ddOM/VpM8qVVW7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YzA4X+lU3D+OHMFg2NXhP8zROpPSma4/vV7RVlWluD+TTvhEVE7ePxnXoAOXU9U/1G2y4hSH5j/D0dCSk3HjPyS6Io6y5+Q/mKMFUwDe4j8ni6xJJzDXP//FUfM5yuM/Zr4s8a4w5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IwKWZEcC3T8qgjxBCmDiP0FS0HCOdaI/UXtov05duT9fdo3Wb9TdP3xZ9anSmNg/8ORSqo935j/6uwqaiXHkPy3StP5bhuU/sSQ8L3Y54D+ch9VB8lTXP4evNA0gq+Q/ou53CqK46D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dYQG3Y+o3D/jJxV/6RvmP0SboqnvJLQ/XGoMnosRyj/o8GbfIKjhP2eyRs1pD90/O1KgLw7m5D+ScUrkIgjjPzLmVs/4FNw/TJcURWhL4D/5/GV+xxrePwwV4YTfr90/APjkU2DK6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oqMa9cjX2j8doZEpdCDlPzLPR/1x5ZA/vssqefLYtT8NE+5Z7uXaP7z62ZvQ8tg/wQ2q8uuC3T9t9K3Dzu/VP7y1nWzLc+M/0cCScv6r3D82uJv2wObRP1zAl42uh+A/Se3PzTmK5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nf3tKAEP3z8uRozgSp7iPz7IFr32Z7I/VPQvQmBNtD/sRM9+uVjiP2aWAy2r+9s/rLepHUo54j+nFlm9Ah/gP3d+lWZStd8/RmIxi8n54D+nbrRoVAnWPxQXRcvSycE/XsycMRlr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hjlVA3d93T+cJr9+hEzmP8KzTt6dQ5s/g9hPHvMHwz/TK9AIfQ7iP2q7raal0uI/LMrhfxat3z+jd1T4AWvgP5N/OYCL2+Y/F575Kn/v3z/AwYaw0WXUP45bYPOSvuE/WSwu3A/W5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q38UgazD3T+h+1dnrwriP2NZwGH28ZQ/BsSzu791uz/jYnR9p8DXPx24+62b5dc/zYmwevRs4T/HB57m/5PYPwHc/5boReQ/GF4TZ+PD4j8U2/cYOizdP53Hb94UO8g/DKhKuBLL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+WlXMMO73z/8FbCNXv/iP92yPqXi54k/+6GL3lN5vD99gTfbPiziP1IQvO9pP+E/irbYu6fM5T9BcaOtj5XdPysdbOa+VeU/Ue0uLK8e4z+n/3UYvE/hPyaNH8MbTMY/gVfVZZXK3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6saX6vhX3T9FRkWgYp/iPzH4mUUxlJE/g+7QfTNzrj8IhOVIRIDdP7lWO5b8h7s/OLibn1DX3D82cJu6tGjeP62brC8N5tw/oIBJzv6X4z/yRgmaduHRPyMwxYmfMeE/nX9fLuxc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wuCzIVlD3D+BCw3QB0HkP1LDVCxpDJc/H4kZer+InT9ylyCWf9DcP2UpIg1wn8g/WeIqZIiY2T9S0qfPjKLhP/eXB6ZcFeY/jMskGJSb3j912NHQnubCP1tGHyzqsto/SbBcfdCp3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BatjaEbr2j9BnwpbabXjP6uJF84lE8U/vTLWMet6tj9cH6Ycz13KPziYVqk+98Y/GXI4KDPZ4D8LmBQpnZfiP9uIjxE3LuQ/JofJ2KEa5T+4mrmxP2fVP7T7GHwvHtw/ODsBGe4e4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z+Q9k63w1j/K2uV4mbHjPx+VSArZLsM/cw6hBgnpqT9nZ7RmDZ/MP1kNgunYQ84/otnPRYjJ4T9V7+sWNX/XP0TTyBBiPOQ/9KMW/FH85T81aa47T67VPyz2m4Pth9E/zm4BZxX15z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A+W/cZeI0D8RCPpHRO3jP0Bpg4503r0/gblZnAzEnD8htKFsatXFP8PsB4q0RtA/bJHUDtry3z+n8eKn6BDbP1btXzQ4Yuk/CGEn8qDB5j/bpEmXh0zXP5NKZFKgJdc/X07MKvIG6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7nWOwepd1T8HDLBHQPHlP1cj+xoxVeA/ndntvDa1xz91sF5FkMfhP/4+BGEJ7NA/6SyJMvsU3T9eY3mZOoPYP/n5EIZt5dI/OKWlFak+0z+vy25OtI3iP9kQdspsp90/F2aETF1A4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2fRSIZVE6D/HeRjON7viP5i8SHC+CdQ/uNOUKgXnrT++J4rcouTeP5s5dtTQitU/sQKLvxse3D8xDcMi1nreP3XX4fr0reg/wv/risxS6T+j7MpMgwDJPwpUoondvdM/sbekCaHN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oos70AXs2T+nykWvNXfjP7gCxwqA6dE/CDTrHi6rxj95ZxS/SzDjP+BxQvMS+OA/oMXLRA1L2z8KCSVw4OLgP8tBV8oPFcI/yStc1299yD+Hzb54fqbVP1j8+4Zaz90/3j6riGMf6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JUP0sR4P3T9JGKPqUqniP0efOxhPE6s/X235C/8sxD9+TkfismjhP4qsA5XTBOA/iK6tmNOA6T+qT9MjQc7fP92WMpq8KeE/kZhzx3flyz84eZvbfPPbP7VAVTu9i9g/Myw7npgu4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8P+0zHZY4z//xtxwXwTjP8+mv/25vrk/Y7iCNJ/0vz92aOGV3pDfPw1tFbQ/ht0/QExTgnGw5T+D8/HdIi3hP+u4mN8Hzt0/6V7sywzszz9M0i4q3SHhP8vuxSFSVdw//IUazpu64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"shPO9ILy4z9iZcTPnCPhPwy/sMBhLNc/lJr5FgbBxj+b5h+63K7gP20O9CVMZds/bzVkThcG5j/YrSN9Dx7lP+IER0E469Q/tUuFW8Jd0j/n5NUTLj7RP37TVPggsNU/tkobk4qS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vahfQnBK4D9I8vqKqKbmP5YHcneBVb0/4vZwwhDDwT8WotWM1D/dP6CA5B8t99k/2ehiCQVi4z9n7ziliTzZP2bZZ/lhD+I/926p+pLY3T9MgNKVG7PfP7wlwe0kgd8/R4thtbqb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F8GRTauP0j8CHiiG6l/iP/fsvVy5t9k/oAASx3xlxT+b/nRjqAXcPwxWcKA9xtM/HSS6nZfy3z/HHDP60a3VP9jZ61+CW+Q/fAD0z3jE4T/eGLkzY9vfP0FarScbJ+A/a24uZjP36D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xTP+pYnH4D+olhpicMDiP+R/NzN1rqs/PPTyB2HszT8zyioQE8HgPxxOKmX1p+I/Z2MqF8/G0D9xCzWF7CbQP8GHpQN1VOE/xaFbHIHk4T/mP4Yy9dnePwN0gq1IAdw/dwrBpczQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WrU7S9Ov3T/XtsEkvjPkP0p2aSqcacQ/dE3q+xgK0z8L1KxTfBrpP0JxDBXSpOM/SplTpbT83j/vd9x1BU7dP++8nYE2zOU/uYdEJFki3D+iR/m+Kx3fP8u9zAXuld4/f5SGkCYv5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KoUbAosj3z8ZkbWZNP3jP7VVreQzAsM/ycaEIW5M1T/kZQeVnI/oP5pWm9lNDeY/+Xotdahf4D+EpqcwvOfcP1E//uy90+U/SsGZjWw61D9OVxshhvLiP0In/h7RVeE/Bht2XG7y6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9sJjhz5X4T+N+xYK7MjjP6olI3c+Bqo/8UzZt9Bwrj+HyTXB8v/lPztD3rcguOg/fGJonuup5D8SljZLmKLbP4YlVKc6fNE/r87PnaMX2j+qJ68nGybjPyuX2kRBbeU/EUPMv9rm6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ePB57j7e2j+T36wtOj/mP5Xk5tkN7Lk/LRtlV7OEtz+SR9wuTg3mP+WAKb7Jfd0/kg6yBCes5D/NCkAQibngP+uskyn9i+A/XoySOPON2z9PpLJnfPrgP2RZPfh+Uus/H+22erws6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P4tmL7Pk3j837oNxcWLiP8+Zbt2vyaE/n1D8dKhIyz/5zX8IfHbmP+7/sSH5wOg/v2ROkAo33j9mvVqW/bvgP9dsnPM3g+E/7hCCBG9w2T8ubsY0E+fkPxq9jUeo1OY/i3iuprKp6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8YsR8jy03D/ZP44+rg3dP+5h1V44A7c/Q27tpaMs0j81acyG27nePxHuYeHrptc/6dabVrEu3z94DSznSc7iP1FuRYcYndc/qGh5hV504j+84Mk3d2nRPytyeCuldss/qt6GtHxF2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jcupmx0S2j/k5BoHpZzjP4Mxz3OaSaU//Abf6KSF0T/xxIm0Jr7bPygRR1FB4dk/oAXS/jew4D8vnYdFl6TQP6Lma1LIPec/rnRT32dG4D91k6uuFT2yP0qY1NkRf8o/lWZTkYVQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vjTiQW3a3z/tL7CG/FLjP6cQGr69ZKg/u0lHskrW0z9nKztTQbfkP8i19QX7vuY/gO6OGHEp2D8vRxLzGJ/eP+/BmWV55dw/bDQ8WkaP4D/71RbTFp3XP2upjHDog9Q/PxSEzK5c5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N8I0StmR4T/ab5J9rvrnP17G4C7bTMc/6NcHJAhYvj+nWwzLqR7gP6U0UFUXU9o/48pfOZQf3j9LzH2B+FzUP3yNCmFFZeE/9OwSPrUR3j/DQCn2YlvLP7NtwmcSXtY/ZPR3T6TS4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EmtjOq554D9bMAFggvrlP0ih/fMOTKg/6kiViOlTwD+H77bLogbjP0v6jVikXOE/QT+W2luk3j/SdVTe/OzKP5yDRdgjkNg/exBongsY3D8jAGRM/XHSPxMjtjne/NE/pFlJuceq1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lHuWa03c3D+5YfmpmyDlP9NmmwIP1aw/Ajc9rgocuj8xjRkBZY3lP4pWnpnGSuc/FQLysnW+3T8AhBvBwV3aP1RvrwNYF+c/JUk7FHMe4D9QL30RxTfNP+cMKgfkTNk/kaloDzQd2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DyFHM1bB2D8Q4VCKju7jPx8vLUrJNbM/VApwfUn1wz+tJ+127gfQPyeUgDc+/dE/Xy62MWbe4T/Qh2aB1XDYPw504eevIt8/S6vBFar1xz8D/s01V/ThP+71nKJGo+M/nASemA9z5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NPhEo1Jg2z8RKQvAlfLiPwUm2hOQfcE/TPMqcVizwT/oLlUp7KnXP2qKowZk8dM/0jjzYfoR4z+x+AAZEVvhP0Lde/naJ9c/5JXAlIcb3D8AuDQF6+jhP+Lvc46pO9o/m21E0cN+6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T/VwKiR32j+Mxxpac0rkP4K5/e2gTcQ/9Dl3oHMqwT8xMdQ/Ww3fPwK6ITu6xtw/FaHjG4/p5z8G2K2BKeTfPzfwWrk+pt0/819YqOGk2j+dUkkUnh7hP9VaOv2klOE/ro4UDBLz6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XIIvBcNm3D8hsLIAx/flP7DZDAusfro/4JHtCcRwtT/xSZq/N/bYP1Pb2p3/pNc/Set4fUvx2T9Qom1f0i7dPwJ+UAaYM9c/yzoVXv3c4j/iW7/grIvqPxkKEbfGZN8/iD9Nr4AZ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qJpnfDBV3D/FsgC51h/jP9dSO9i/CrI/HkGF/Xrdsz8EOUsDJ3bbP7+gqdPzStY/QCuFQxi54z+4kdVaRuzWPyk+oRRDAOM/WP+gSdZ33j9lk52y6SjpP0oJIBDFT+E/i9dyrIPT6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yBo/e3zB2z8tMs5avBjjP0lBpogBuLY/BJi8C4Nyrj+GchksoXTZP3u3/CPY+dU/JNYSjzfZ4j9lzjRv6z7XP63Rvc2CQOM/IO94NJ/H4D8ukOSTgI/nPzhfYa37COE/vRqvzZPl6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rMIIakfY3D+ydHPT+dPhPyjGSxhLH7w/V3oEiZiExz9o6QhKoMXeP4br0eGHSMs/oFnpT6YA4T9rRhrM7k3YP7Sq9yW8ueI/M+xra+PK1D+txpCtaYraP9QYSP+KItw/LXl4wLJQ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J0SGOK5E3z8YuBWS4nTjP4SFsi+D+po/gbCghLNVxD/PAnMOOhvdP43dGlqWcLU/s6fDyS8c4T8AgcemskjbP8WiUKbZC94/1+Y6ZDyn3D8IUuw8DALiP5eiwZz/GNc/soUVZZkp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V6fDadW34D/yIyCnSV7mP2jOuRTrM6E/Y2Nt37LTzz/WCKFv6e/tP8/dRG4II+Y/09WWnOwO4T+v0tXTp7rbP7kn1c+y498/IpTZ+YHW3z8dmbPMjrHePwWYr2SuBNk/jm95vHJL4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LuGJF2A60j9IBwVOm0DjP5JVfCeIJNg/IIWnqvWOtz/4aPZrbVTgPwPoXf0U/eM/oSRSD2p51j8q7wifI37QP7H8UMd7sds/l40t2z2Z1j8Nt+FHna3TPwbftFoAT9g/JbGa06x96D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R1A7wubK3j8OSHxj+4/lP/mC/ETCkJs/GhsFcOYzuT+T4hkeLDvnP8X2vPBYyeA/ufuGUKoa2j8Tz9pTr0jWP1DGxbqtkOU/c8uSV61p5z+kBn+FmdTaPyWpbXn+1dg//yz/HQLx1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/DY4fZdY3z8WUqJReUjlPyhY2x0V954/Ou/JxYj4xT9jTvgDrnXnPy97+49szOA/qQk4Qfls2D/r5ONy6vHbPwRcf4yqD+Q/7bncbGpR6D8zoTLtJyTVP3A9EhcceNk/R1rNYT/e3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pulF1zhL3z81k0UlqN3jP/iHx+ki8rs/KfjCCvDcyj97ONlXDYzlP03GSvL5PuU/ypcjg6nQ2z+xUBoKYW3XPz9nfR1oSuQ/SldMEWrY6j/fCjRdGtnfPxuvjz+wC9w/W2H6nciZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rh6Ba1Ao3j+GzSAVyDXkPwZfBS7uroc/PiMSjq23tj+My7bCGeziP9z0AozkOOc/WfQP5JGv4D8J5h7vm9bZP4tPdHxLFug/jrrFarSr4j+c+zKJZNHXP2szat/UIdw/Sljn7efv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C87rDFef2j8w24TYcUvkP0P3KQRvm6I/Mq1Y30/juD+ZpW0WzmTgP6IdF2q/48s/kz5bC9Kg3T84XYCj22TaPyD4hjMQ0tc/3WM6xplg5D9mxKGhGSPTP7fFa9rqfM0/C8pO1P8s3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+r8mLYOD2z/1Mx2zz8nkP9+kCyVgtpM/1jTK0aHusT8fR1yMru/UP8kVpX8qato/1THUSHON3D9SU/x4/m3OP5JiBPhR7Oc/QLIR4nFd1z8PpSfeKEHTP7Fd/ueSnts/stILp7xc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zIsRKbm53j/3ng9GFzPhP9CT3PBhc7E/7WPI01Jfyj9g/4dOf0DnP5Ejf5GID+E/Epdvkk+N4D+Z66k9Hy3dP9IfTzz5T9Q/FNUTFZKk4T/jxYuOcrDXP4PZvGjSRNo/dx1jNpJ85j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OXi3Vqva2D+OxwusxBHkPwFqzh/JhME/pBkJPoGYwT/f3DnGeAHpP4isVDNTgeg/irXYAz0t4T89vaso6MXfP/LaWVO3Rtw/qaK4vY081j/JJwEfr4XdPyW8oU6uJt4/jeQsnnsf6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H7L0Z5B54D8jBVkHLIPjP/lyIgELbqY/wSQ5xcu1tD/Y8W1AdunkP8OVihWUdeI/yndHBb2V2j9BaC+tD0/MP06/At1uG9s/KtpwSud53D+17V2s+4jZP3jxH71O69M/9iYRxrCY5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PuXxn6Kb2z/ENIRI6oTlP2AGVkaKNa8/62bAwvJauT99HChZHKHcP59koX9u49g/0UQnlLug5D9TBFLUHBjkPyc9nrBuhuA/3u1YESay4j9vCVhs7V/UP1cbQli+XNo/2YGCLOpn4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vOdk0W+W2T8JvYS3ijblP8M9ploWfsI/sCVugZsEuz8DjHmSFzLcPwRMUFEXst0/1g4QKryS4z8vuddpq3zdP85xoBLTJOM/B8ARNhf53j/aHFPH8CnUP80LMHITO9Q/Na0Sf6kd5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7y0FIL3Y2T8sFKbU0bjgPyp8FfZM+MY/kbvbOJ2gvj89/iPX+P/XP6SnowEkKNg/stboIkKx1T/zTnzPHCjRP5qm9td9bdw/pYvJUt2g4D8XNgLhDyTTP7D0VRWLANc/BgTD4d9x5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ro/j+qkQ2j+lgXhNi2fjPwLRSI/71KY/o57Km7PDwj/vkdIvrqrjP8Sqa18ZWN0/EhBcjOhc1T8NjaORiMzRP37UIqpoyuU//KjRZCbp4T/Ex6Fgw5PjP+ypnXwUGNI/yhQTWdLx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G8dn4sWw2T+u/51QWYjkPwsLA5IYNqU/tfln2wT6wz9RwYYddmbhPyU2N8SKKN4/XC7Ij+po1z9OcZ14WLjQP27kDUBxyeI/p3WJpj4w3T8uefndyE3jP1EJMJtmNNA/P8/9ZgY25T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mI9a+1dW4T80sfVIPn7kP+uohWjr5rE/FpqpS616rD/Py+1LdRPmP9TXL2UP8uQ/8Oyt204Azz+ItpdOOXrFP6QP1qWw+ug/oVfYOY3s6j+aYJjrqunYP+TKwo1XM+Y/EWPqZ3Ba6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dttDUfXt4T+sEzMAfobkP4FobuJO0co/gdxMig3rtj/S2gZMAf/gP80MEzfKCto/5Mcb43mN3z+rrhojFBzUP8RPT5fwO9w/IYTnbMJ52j9spXBv3THeP4u1YOD5+OA/08+LhLtP5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tPtHkGIU3j8kXWWchtvkPw55PVw4z4U/NJbG+tv7uz9flQphaT7gP3Db4oK3c+E/DddaomRx4T/eVnsUuKHhP8oWoeFMt+Q/+N1C6Yv64z801F1PraHhPwp+JyZTceY//XWHriCJ7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oPFk/vQb3j9j9jCy6p/kPwVVpRRDe4M/Kxjw48ARqj8RVzMV8v7bPwq48UiTmNI/XDw8+dRC4T8RWn0bt1naP/KsyRdIlOc/QFdnYqx95D8JpZc13q3SPwKO+mACsL8/Qk4OwdN41z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bHt0Xiym2z+H1DwcqQPiP4vi4hg0SIA/MrbWHTpStj9CsMQh6XzNP+unzRWW2tg/gNlL+Wx13T8HO2wUiszcP8DCE404GeI/Mqm9SF/J2j9e1lQNeAXXP9m14Qh4g9g/kFnIumIl5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D1IF/HZy3D/1c4L/0UPiP+Q6tWWuIXc/sA3wDGU6uz8A7vFj4lLRPxsrauTSjtg/iiqr1Ep03j8ZYtgK3C7dP6MBhhA3S+M/Wrq/eYQA3D+OWu2SbijZP2X1a4DXRdg/ULCCktZf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OPU+xZxe3T9SsBXSR8HlPyISYoTdprs/PYo7jA/GxD9Mx7WU1GvgPyIECIa0pdM/y1bjcrFT4z+5XiLitfbdP3Gb9QdM7do/DOtbx33w2D8qEFjqQEHVP0DbYCozp9s/yS8tXXOZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0A8J1DtR3T8r98043YzkP76WP09nCYg/aBYIkzJysj/Kbw6oaiHiP8Ep6R0Yj90/ntYnT8Lk3D/HMRFpDE7WPyX7Xm0meuE/iF6KvHpZ5T8l77fwCYPdP8Rq9y45ItY/1DhY0nUR5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HW5u+GUv3z/a4+qSXWvmP/qjk1PavMc/ull01SReyj/VorhLDDLdPx0djO1dF98/GT1igdi75j8pdOksj1/jPwEZiep27Oc/xQZ27zh34D+BGkjDSJq6P/4g02pQI7c/nrf8hscW3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eSaGsR604T/MQSKT9RnmPzJUH7x/yrA/bOJcuek6yz94PE5ZMfXeP7AXsIIed9w/t0uNp8+n1T9WXtUkC0/LPxmZGY5q8uM/R73xlN+25z9qFcgkSvHpPz55WOlPd+s/uSykFbYN6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZbYNxANk2z9VnUTC25bkPyKt21gfnrE/4V6uwEj50T8SMxNEVAnfP6K4T9Z/Stk/qE1hU/Ef2D+cXKrnB4fTP+AtBMDlJuY/JKl4axIe4T9P+BHFwMfkP81FfE1FlOQ/O/GNZQR/7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jfhrWflE4z+ZGEJYTEnjP/i232oVRro/ObmbxeABsD9ZHGB22kfgP8/HqW5wMNU/jCXtqKQe6T/P5hvK17HlP7DKdfVUTeM/fxyf50gn3z8Ap29WeF3YP9yukF4JJ94/8Js5NBcB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wA90t5G9yT8OsF27GhXiPxgPocNtd84/5tzbihWgvD/PytecRJXiP4I1oyJJzuE/uf0T5e/e1T/ldMKaKSHRPxLII0xXytw/AxkEiOBY1j+K7CyoDFnfP8uazjJFudg/BB9ZmtAh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QqPKROpS1D+rvD7RAKLpP05047MAs8U/HfRP0vSIyj/nK87cHq3lPzpeW71z8OI/g6h9HRlW5T9FvyrZ8mXeP+SQwyEf1Oc/wvDVFAu26T/e6uLH81fXP47NQr0QX+E/rHdhkYNy5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/wJfnlgP4T9A9dgCAzbkP8zENczWUK8/+1IT02mTtT9sXfAldlXnP2jFBYpxDeo/bYrItAxv3j/cx+kH0O7gPyFytO2uvOY/8RSZ89kg5T8L6drxzojUP6jEfhF/adQ/pbG+SLBk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LGTohbg32z+EdzhFc2bkPwnNc0TzlrU/9VlIIJLtuz/Vz6Z2Jc7oP54O3sBgIuE/ykrZJept7T+bLBd/ipvjP5OjxLw4kNk/yUdK0XxS3T+bK00U5nLWP6RC6xFg1Ns/4w2aESre4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PXmzP6y73z/H6l4bFv/kPzOPTN8jN8E/HsS8tmaDuz+293bpWD7kP9hlXtpvBtw/1tLyKfwC6j/hbx4m+uzjPxwr95o2+ds/iEPRRfmT4T8qEGo/qlPNPzsEQmd5jNk/nqCm03Rc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"afBjbG6M4D/zEM5NvezkPy8xxtGnZZc/p/TToQUooj/qgH1tNlXjP1nyi5ZaMOI/7XDb5QYs5T9NuJjpY0viP6cgYFkO3eM/nK5ghT8t0D/Xqeo6gI7aP2vZafJt59w/gv3OkjD54z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfu+NYVq2z+HgpBImuThP0fgCV8raqo/G3GI8uYqwz/ZCUU28w3gP1t2ixfDJ+E/SxVyl+PT3D82JHk63jLZPyLSaiNr/OA/zEW+tyGN2T8646/d52HZP1KYuFJ9AeA/Qh93N2P84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/TY2skrc4T/lgI1ARojlP3u9Rv370ss/4d95hetzuT8UB8nfRIvlP/ts1TrikOI/1yZFegJC6D8sE7+bpZLiP6F0pOetXeI/EdWkHrR34j8S+sNKFDnOP8M/9MZQNsI/7DlAqPWm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+7ogUZjO4T+N2YtEkr/iP1PCPoALgcs/TW1HUQsVsD9CxiJIBOzaPzuc6KFA/9k/V1Xje+CV2D+PiG5FWrPGP8vantcFnNg/hL9oTiiC2D9xHESOtW7gP4herXNDoNs/ISmrLuku5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7qU+lO832z9Y9Mdbf7LjP7dOuMtIyoo/Jk82kuDdvD8keQ3GgPLXP0CW05hHztg/68EgW7Xu1D8mKtmUuSnbP0Fhd690m+A/jDAED1yX2T9v0rYgrbjTPzXAOgoiEto/zh2km9+a6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QRKs1r/t3D9fAzvfpZjjP1ras2B9yKw/VDRVoAW8rz+7JUbo8UPaP8O13Psgac8/gw5ZONnZ4z8jFRB36wTYPz0oOgcaE+E/Ke6BzF5i4T9UH5dvrXzjP0j+a8lAgt0/hExdQMK34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9oXQhBhb3j/38UQV3Y7jP3rwBiQ4qZ8/JcKYf3UNqj/woyULB9rZP/bwahPxtdE/Qoqr8Z5t5j+5odBhDObhP8lPToJ0z9s/P0shUSCS1T/m624pVlbbP9OLI45nb+A/eqG9pdz+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VjN/sCSW3T/s2krrew/kP2b5fh/hep8/kgk3fibvwT+mqzVafqveP3pPxrXae+A/NMNLJHkG2j9PoaiSKKvUP5HR+Tm20+w/GB2Fpjdu6z8fl0sDqm7YPxfaIOtiNtU/aElSizEr5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"11vIgoy22j8VqUwuRl3jP3tTzjOxbaM/FoQLp8yDtT/iqWX8nn3VPwmr51EzRsw/wZfgmLVh3j+wgUPpnVvfPwUPMcDvb9Y/0DC+07Ya2T8JLaBa3uLdPx5TnciLeOM/sCVu013n4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p6Xk1vjc1j/t8JZ3Xu3iPySkK6FprNU/f4I5wbkmsz8GApFlsVnbPyLuDwNEa8k/2Zq8PouN6T+8nFBafsviP0B6rabfO+E/QmDwWfiB2D8c+3NWSVziP21foqnzAO0/Csxqix6w6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h4/Hqfo+4z+si547CSDjP5QcG90TZMU/0++PIiK1sz9Tpv/KogLqP6Wt7h5yAd8/P14pqkdu2T+rXN1w3j7CP4j9tNeciuI/ZDSWCh+51z9X/QG7dN3EP3m+4nA6288/H6zszgEE0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K3s1JOzt4T+2hTDSpvPlPwhbTd+h+MM/GiiROo3cvT8uH7KmUFfiP1vCVfYtdOY/yAzT25RH4T9YKg/QVsXgPz+ncYFB6do/vzdzlf+a4T9ce8GabQTdP/1xhhZjkMk/4ngWkHT55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2P2TC4kq3D+SkHBclb3kP3bNTZuKu4A/9uTwzddszT8ZjiURzJrWP2AYaROT8tA/6aQ2Dguv3T+3PU0CAnrcPzV/J8+nHOQ/o/FQRrXG5T+YeGYH+/nbP3JBi7xMmuc/jsbkO3y75j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ur5eh8NS2T8qh2habEXlP8PdmkgXlqk/V4OCx4LzxD+A/C4C8yrkPw4GpiDWouQ/HJGm2uAX4T/pyRR0KaHZPw0ugP131Nc/gitJpoeq3T/jXdT+mPzUP5qua+mlrMw/8ix9sC7w1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Yng2Oij4T8ejh/hSa/iPwRhYscsKrk/S/zBnPomwT/6pcptpTzjP8Wt6J6Ahtw/E/+JgwPm1z/XzH5gyoTdP7gjijn7Mdw/PMdMosxm2z8mcn10XdDMPzxHte9CHdM/5mcE1Lzp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KcEcfiHq1z9x5QB9AiPkP2rv6Io4wrI/wgNt+RpJpD/r57S0V0HgP99+JDvH690/2Np0OmQD7D9J2CuXCbPhP5xRagb9K+A/Y6PWjIqL0j+sKor/4srIPweL9kmOE9o/QMhwFvZB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"35mMH2zp3j+xLdt3RBTkP+WlTGau5bs/R89iCpIRuz/Y1fW1mK7kP/nCfW/Ffdc/ini7SxL+4j+X84ITzubgP8Pdvi+d0N4/OfuEIAB74j80IupQpYrmP1NOpTiPAtI/EqQR22ZJ2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dDuN/pXD4D9J42PkQZ7kP0bt9fHMq6o/C82aGxYmpz8HEaIzeA7XP5BJ8SU/QNo/ro7UlHQ86z+iMkHNHuHgP7xsQFWZUOA/9oUeKr1Y4j8FyZSz+4/XP3dZpnf+YN0/MJ8/vn8k4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6ccrPNUJ3T9wU6DQBlLkP6MxzzqquKE/YCmvtfyvqz9BrFwBnBbhP9OsVVjxFdo/5Ew9cAli5T+ZqU2NMUTjPx7/BQ8FOt8/0wW6Y+io5D+YIvKLyrvNP0cWFci8h9g/BEsnJH+X4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e9l0bt+X3T/jjssV69TiP1+yWVZHfao/KYApw4RHxj+0YnQ8AejgP0cRd+WkDt0/SadPa1M+2j9MTm1VO7XOPwMMlpoA7N0/j2Q0h0LQ3D/c4vpNuwLeP4UL/jBLwtY/KN5L6cUL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yNJEtvb32j+UKS3urVvkPxJroF+6v7U/63RPFxSuqz8snnNy7q7jP6nxPe5nRuM/hofXHp5M3D+XDywwpTbZP2gxUOprCt0/9nOVPvpH1z+0kz1I1OnOP/gxC6kaA9o/n9oCHDPT4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gZ7udSP03D/Bc5X9ZKvjPxH3OV3mLbA/G47eluUWpD+fPh0jrqPnP4XXFTaXB9w/GD6vll/U3j9YBo3d0LvUP8kammG7Vtk/cDjvl3sB3z8gFtzz0VHHP1lwgfPfttw/Zph0sjTA4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O9vHOcnu3z9TGsvV2U7lP0eEadBR7Kw/lZoSBL7FyD+YX5p4zFzlPy7AIN/HtOM/teaxRHrD2z8S7eNnAanUP/GZHXRDtN8/62/jRBCw1D/GD5EFq8/RP22tRHIt080/fYN1Q92a5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2liLKNHi3D+aA3kAPvfkP4zOm20me5A/8sp0oe+opz9e8cWj/LnXPwjBFikh6ME/AeFnaFgY5D/M1yk3EjjhPzQTPM48D+c/GAqtKvKC4T9aChuB8AfSP38WGifdONw/p/moT37c5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/hjjOfe93T+YUuX71/njP7w+DCjkNXU/43j+s2KepT+QMV5AHsPbPxtYPs/C8Nc/e/RFclsU4j8R6yXEsZbdP5c4ICLsCeI/fV3FcxhR3z8N/AdqJlfUP7gyQSqqEdk/cfejzyWY4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RSJIxdxQ3j+5dgNtjrrhP/5X5vEqc6I/2BJ/KQ2ozT/UwjeISRHVP1JHbjDSQdA/gNqZbykE5T8IcfAMjmjeP9lcKZFUnOY/sTIzrPyj4j+B+g+BobXWP0jTPE8iNNA/JzypF3wl4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y76Fq2JC3T9cqCb27uPgPwDrugCl+ns/KbfEheNF2D/50nNZg1bXP7Z4+2e9INI/V1IJ0hO55D9qnh5s0uTgP85tjH/i5+Y/uYTgdqaK3D+kf3IZsQrTP3OG2sW40tU/zoIpvAnz4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dKHHzlOR3j8GKAWvYJHhP07i+do9MYc/M+C2YGsj3z87skKgXP7YP9Ox5X8EINU/yg1Jki/E4T+DwYuA6bPcP6mqRVWd9eg/iGJxFJ5h3z+wAeXfthzUP2GIN77AutM/XNYhncCG4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EoHUaDEO3j+a1Dhh9t3oP/e+Gv/IzZg/qFyteXU+3z92t7sBb+/hPxydO29yeuE/bbH+Shgd5D+ygNzIyNnXP0/NZ3QKud4/MMywJqq44z8znf1Z/LnUP4YHqx/XNcw/e1z5ZQxU5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jVp+iMn73T9r3eproVLgPwz3CdliX6E/rTvpB9y4wD9T7eR+cu3YP+xQvQlIGdw/Q1LjGQJV4j9H32lC59/XP3JrpONAjtw/WmoQ/m4f4z+QskAtT6DZPwH4pQWREuI/4wlaDIzo6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DW2gFc9z3D+396WNNCPhPytpFTggG40/2mnQbo2H1T87Bo8QQ2/cPxsdSbSH5OI/leOTFeae4j++V6CPgc3ZP1FPR0td3uQ/CnaDgfSW4D+2rZ7V8evkP9jQDacC5d8/qMFgJ3755z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PC4UiUbv4T9sebUY+f3iP84aKn0I28E/rf589ZayxD/5NiRU10XiP32fZ0ZugeA/dd8ncJXr4T/6EnQPnHvfPw6yBarkCOA/6wtXYXF84j+XyTLhHGzaPwlFct7r594/illF3iCp5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oUdrd7q12T9cbHN1RkvkP66U8tWvj6A/MlBH3HNfpT/2LDSAA0/hP18g/SziT9k/jWOSde5U3T9CIs9m1UjYP62AdoFZAeE/7DBb2UU74j903Bi5M2PbPyZs/XAVF9U/ruVgngch5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+0km/tcl2z+AzxOqQPjjP4ibaIp+6Z0/Gi/RPyopyz89942mBijfP7YizcAtztQ/C9cfo8yC4z/fSKERKEbUP6A8CZwc/uE/CkJEQb+B4T/56wXQtnPYP3ECa0X3ldg/u/lIO/ej4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MUfsgVWE3j/xdskr0lnhP2Lzcjky6rY/yAffHHL1xz8PdpDX1o3hPzZofYzqguQ/I8ckCCzb5j93z3BswnbcPwrPh0yDx+Q/9y6e5Ffz4D+UecDCXr/GP3slnHjBBs4/OfIjWPSv4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oGSrA1jg3D+OybFHkyriP5xv//HgWpM/8coKabNL2T/h1Na+88jjP4GZbcefJOI/S/9byA6M1z+I4c+d77fbP/kBk8U2x9w/kgHOXuDP3z88Y6ze3BzLPzH6Or3aP9M/kc+cAv6V4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mNOthBbH3T/6aLdMgGvgP4VM0yNMf7E/zD5p2kfJzj9uA20MbKjlP2EyEdmoRuI/9qTv9i771j9IDO03rLLWP1FVcJe4Tdo/DD9PiuoW4T+n5ympir7FPyXHWFRv2tQ/0kqTiyCt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IpwIKoFn1z+VD0FkCazhP3LK4XOZFbE/fOcSwlpnuj+6v6o1FT/gP8f5l/PA/t4/6uhDMgec1T/grkDBVsbRP9cIlAHoddk/2RHi5Nbb2z9qKCSex2zFP3P2+dbrYsg/YI3uPH3F5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v5DsSmuG4T8ni2FYjR/mP5tZkpqqN6o/1O0CysT9sz/FC4MkPdnhP8VQw4k5lN4/FLQHuiE24z9PjY/wl47cPzaVAJINl+U/Rm8Y12MO4j9lPhObZ0PWP0SMY2sGTNo/UzlGBLJj3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ys7KpCkU2T9sj2jGQNTiP6HGtm2FT7M/kKhKGCwjvz8TaQzWXpfhPxrRmV9HbOA/KVi8UDs33D85b331R23aP+Qgy3vmcuA/SGBMBeHk4T+puk/2MqbQP9t3FgqcO9Q/sL4xWrHB5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IGEDoje22j/4lt+F6hDmP2xlazzFNsE/+pCIuhEIwD+arrkjmD3fP0JH+KIfpN8/GJ2MTlC33z/xBMrjG/TZP7zxwlR6T+E/oMXNrhzS4D/fesERw8/TP34ogUlkP9Y/9x3Fhb3n4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d5XK78qV2z8seUsBDkHlP3Tj7PBD2Z8/wLAhO+MowT/EHz9rbVDXPxHEW9Ti798/B9CPU9E+4j/HPUyB3CbVP3L/6Pd5DOU/0Exx8dNY2j8VJ6X7gdvfP2yR43Fsftk//E0YFyRL4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i12odWm13D9j1Ve+sVrlP+bi+sVz6Jw/3cz0iXgrsj98hK7DgbvlP4sP3m/CotQ/MAakK7zg4T8JnZQwK7LhP4WvodCwAeQ/tCcp4P3I3D+22q6HhTvSP4doHM3vldM/EFRaMOL+3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0zrS46UR3z/tU6B8QC3kP9NQ/Pc8rak/8OJFjR6PsD/002lAn/ndP0yIr6iD5uE/7MvwmUQd4z9kGuTxgPfdP5Nrs2d68dc/pbJvbl0C2D/OTj519vDLP8OvIKToxNA/CHFL6Ycx2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aVQue5+G3T8a2NQF7bTjP+ewjW25tY4/UGcE/NIBuT+7SW7rVHDWPwJd/CVz1N4/WFL2Elq43z8S0w1A5ubgP/0ldimNPeg/Yli+a/W34T/qhoAc2zTWPz1mDguFddE/hqaRv40u0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ox1n1EsE3z8m2s1TJyLlP/NyQeH3NZM/ekbfEQQyoz/KJA5FTondPyY7usYcqNI/k12hfaHx5D8iV6Ax1fjXP1MYOVpzueU/ZwWjPOBj5T9mcnQOfmHdPx/568LaT94/QLX1CaXH6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lMHp8kAA3T+4RoEEV13jPztYTmP85IE/HZi/nvwboj/eoz/NtN/TP89YpwHgrtk/eq34Xss83T86vOGnLLjRPwIyXtrWO+U/16Gcdiei4T+XPqmNY+7hP1X2pmCHBds/hFZOMvj85z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9ySHWN2r3T9XLiqUJhvmPymixHTs0Ys/SLD3B7cWxz/A0P/3jJTgP7KmHiA+AeI/rFKyzPiO4D+isBIGlxbeP+NL26ToPuQ/Lb0GaGs15T96WHDPR0fdP/6V7Ktj9Ns/FNiNG7hP5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"60jGE0wO4D/dZcm1EGfmP4o7eEUjU5c/FdOjq20nzj8ldTO9DCzaPxixZIM1y+E/4aOmDpAn6D8zv55XWTbkP831a7PIDOc/FKzAEL6x4D/EyB/G+X3eP9oy2koOztc/3T3fUqxZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mrcQIddv3j9ct9SkJ2TlP+s+y9jQNJk/op0NT49YqT8mFxOoBATjPxQ69qsBS9c/PSkKDVd/3T8zAwIH/7fYP0PzoMEpBd4/y0lQJl4z4j94UHYApt/LP4xf76HekdQ/f+BywmoY4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9oJx5r9L3T/r/Z8XcZ3lP8O8NaKzeJs/K5qncZr1uT+BoqO2I0fjP3MIqQj+i9Q/M8gF6Zi03T99rKhdnYnWP/klhRpPfNw/7vBp0AEh4z/ywmsH3k3PPz5OZQwJcNY/YoWNH1Uc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QP3hZjQl3j9HvcX4C2zjPwesdJ0Qzb4/wRU5j39asj+Xu02JmqHdPwpp4D4WxuM/IKNTfvKi6D9GIYJLfszjPxhb7t0SI+E/7+Jjiyza1D/WhWQSLqPRP+7DbiSs8Mg/89T38oRX3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dEA2hERy3D/rVtj6kQrjP9M3h/6WC8E/iz9cK0I9sz9tkhAWxrDeP4zagpAEbuM/8DGnl8YV5z+tpoqozejjP2iIC6sW4uE/bsIGIQZS1T/JVSo2F9vRP+WG3gWAaMc/OE1TKEwN3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QmpqL+bK2j+rgQrYmnXkP2vdS/moxrA/ddgPhGonxD8fxRN0Q5vhP4jL0Jl60dY/ads4cOpQ6T+MVfUL/aXgPz9Vc9Ysk9s/PyRsbVFU4j/JXDqhCurHP+BUPsuv9NE/qgVwh0ox2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jyZM6eek3D+0Osa7+VLmP+AxHQYJg6I/9okjTzHPyj/HIF1MYwXaP9inqCZjueA/kL8P6cjf1z/ivt0bSL7bP0auAzVgZt8/7ZVQWl4U0T+5IT1z8yfZP9zMjoNY9ss/zu+5WhKi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AciBsEba2j+qUKw6MIToP+xKCObG6Jg/HGYN2Hrj1j/YyoHjz3TeP/FxFkTGnNA/v1CKVuPE1j/QuDG0PV3PP7c9jJFz19c/Mhdw27E82T/GMENUS6DhP77a8KuvHNU/NdPpqjfQ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4xZpuGaC2z9FrkI6jgTnPz5qzYa3uKY/mg89d6xezj+PLK8uUmXCP9ggYnroO8g/DkLwgUSj4z/sNTK2nVTaP36b+5fXCtE/H0WmZttk2T/9Thy8l+XnPwys7Ile5tE/wpu0Wgt64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"affGnMr62z8G20xwm5fkP1zU1RohxqM/OkD+Tyltyj9WUxZ77cjgPwzbyxO4xtk/obm4yAOg4j+dVu1hfeHXP6j0u6+IutQ/jad6deqlzz9rdNGADxzIP9/GX/FBwtw/aFL7kmCi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"145TY3ZB3T/ZNF6ESM7iPwJIu2XSeaI/h+wqG9kWwT/41eaoY0rbP2OLbGFICtw/SqfhV3/h3T+yRszryifgP1vt4gQvB94/iBOX7YQ/1D9Y3dTPIIHcP2atMShPCMw/iMxYvVoC5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+h5ItgXP3D/ILp8J3OHiPwOPNM1WLrE/c6XB1NgPvz/3L3L0Mi7cP93+7kYGI9M/HycnlcXo5j/5Ywb6pdrbP+kBBOTh78c/bZCO1huZzT+fCbhfrdPHP4HOzIR2MN4/fAxJ43l95z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"So4nBEqu3j87VkPAoVblPxT7n/F4bZk/4HxKP40WqT/1zagYBbngPzG9iBU2suE/g6kY8fFd4D+bYg51z7TjP+FVVq3Xe+c//9nRSUgg4T/QeMKhfW/gP1YUbKc7dNM/F+t8Rfji5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y7r1zdvr3D/FyAva1LXjP9XxhAh3FYc/4ezH31GLmD96yMNS5ovbP7GWbzrLIdM/7oORcMUb5D91lejdcb3gP1o+DmETb+A/y4VWVNhX3T//WsJzMK7VP4aRDZXXX+A/qDSy4N/W5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N330rpth2j/akORg5EflPwVgMQNEV78/g3Io6fSusz8VIuZ7tsXaPwCohtweq9U/4NsJApuo4j+DH9qoFnPiP3otaS2rE+U/INLeutva5z9vky1bNLzZP6tkT5IB++U/cYD7unJy5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZP93y3sn2z/qZViZJpviP10zsGg327I/ypFhsLR6vz8seCOqjCHgP1pvKcGJ9to/mHyhHHvT6D/dTfLCy9/iP9E/CiC5B+Y/eHYydCCw2D+T9KTKj0HZP2pFHSrVU80/mOR4yIeL5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WV0U8DtL0z+suRDHI5XlPyYfDLvgr9M/rjc4JADZsT92Pvhq4SPmP4HUcEeEeuM/B5vLCvur3T8j65z03kraP5owRMk6wNY//QhZYARc4j/XuNDKQuDRP9hDJdO2eNw/fCtdezCn4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZrxbPV1i4D/iECnvfYniPx7K2UO/0aI/0dmlEkhbwz/2iiNTvf3eP/IaIcKir9Y/0QLiA51m5j/7lkspB93bP/bza1c+uuo/8plYgXro4D9njBbyKiPXP0/4SQOPTMo/eEkpKeAC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JaATch8r3T+NrJMGgE7iPzjmWbFGS2o/Ln0jvObZtz8rHkvtvITYP4eeMsPfF90/maGJhF9T4j8aVY/K+UviPyPxG316HuY/lIPMT5rC5j98647xQEjjP/nX5Cf3Mtc/5/ByFb0W4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JaATch8r3T+NrJMGgE7iPzjmWbFGS2o/Ln0jvObZtz8rHkvtvITYP4eeMsPfF90/maGJhF9T4j8aVY/K+UviPyPxG316HuY/lIPMT5rC5j98647xQEjjP/nX5Cf3Mtc/5/ByFb0W4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zkHeHqzu3D8hbyvacjnnP0P3QJ9/WH4/HmgDqP0Ctj8kuvCr3bXRP0hF/sRNHss/laEFjzGT4j+N/91lU6LfP/vQRE63neU/QMUZ9f7w4j/lFmq9/TTePxw0gEohZ90/TIZkObhD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RPNUSTj92z9Q3Fs+OW7kP+ejIqc8GXg/1ueq37xsxD/DVxfq2CHKP7hm2pZ1n9I/SS1Q+pXO2z8PNlQh9MfZPw+O6VCId+Q/Dz9WTOwX6T/sZGK9bYzTPzalDmyXsNI/WOPUZsZe4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LNnmanw/3D9+MP+w/1/lPyXR/isVzjU/CVKypFeftz/XUlZIJPXVP0jAolHTHdU/q0trc5Mc4T+hAXaatvTZP2wixPsXxuQ/swMbjB6V4D/0x4r+txDbPw9quy8wR9E/jDhTaXOA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f1oeHdi93D8IpAohy0viP/8QBIDDgIk/G4ohHTmvwz94a529XKLKPxZ1FLYQdds/zXjQehET4D9hEa/kRSPVPzHtQ7F7ZuI/1SSznhrG3T/8IcS1XkzaP6WFOAZtz9E/G154XxBu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uX0XmCxI3T+13OOVP5DiP4vH3IRR0oQ/mAM8PP+3yj/4iU5KZWbTP3C3rQWp+9g/mLXjETkQ3z98bcppl6zWP4We3wQQPuE/Vv0ywBhr4j+33n4aT8HeP7nC6DrcINE/DdWeBvCS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MBSa6L1H2T+OfDGN5vDkP6nSbALEnbs/rzqj9CEBpT+N8OxC6F/jP1ge+Knfvdk/inBhe4jr2T99hfzy4GHWPwrUs0VqbOE/2gCdRO623T8uU5/tGbHDP7NMs1/q89Y/NoLSUIrp4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dk1k/Yak2D9MwMeFhRfjP7zoyTlzv7o/t0YzldpquT8QsfttNy7lP5XARHNI7OE/taKb8TsR4T9jkghCyXjXP9uyctIgpOk/nG47Yg195T/hje6JGp7TP5BM9KrJocQ/C4TVtCsP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tlElBKTZ1T8vOVndJR7kP7lIcXsJisc/5v4hGqtquD94VG4nTDfhP7Noq4VzB9g/LT8Vzi/k5D9c6ltyTHPgP9yPWrpbxtg/dYYkAeAMzj+y/iJbbhTjP1aLJcwZpuQ/13OAUOtN6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d7UfMaDj4D/J6yuimlriP4ZJSY6GsaQ/lDuY+SPPwD8ztwpeJzHOPwwfYdz8e7s/eJOSL4+b4z/tWPSPi2TjPzUuEXXlot8/IP6z/P8d4D9QR0DWwb/UP0JLQd9RCuM/tGtL4l8/5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9PRc4Zis4T/7pbHQUrDkP6nmy28T0qo/Ef0G3DSO0z+wWHidBR/hP0aKt+v+teI/+hM/48M72D8/Os3lIvPRPxIE6Cz7VNc/mH3TGaIQ2j8xyzjGzSHhP1/wXgYZOtQ/IEgU93ov6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wj/z/VPi2z8gD2M6rl7jPxtDQRsKVMU/uBRpTP77yT98ZHAtHcPlP8MjrGVz/+I/YwifZGH41j/4fZh6aqDRP+AbKo5O++I/3X4uGQu92z/QfIDf3eLkP/pCBIvQtdE/3hwMyxJz5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5B3w96yo3z/ZgPki9uvjP4CXIdbYcbE/Xuc6xfNB1z/mUm3IxGjlP9inqCZjueA/95iAxdV91z+dZNHMMFHQP3m8pCZlreI/LIt4kzCf2T8KoWKiskPiPxeDRCuzYdk/ZTvz5/ZK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lr0UVoSS2j+jxiFIaofiPyDQAiYq6qg/ye/GwQOIsj/SU0T9emHdP1jywaqv2Oc/seOzwVWg4D+CtEJAB9HRP8O5zNqEG98/UQdwPWhi3j8oCB3FDxrgP98l+Nz0YOI/uujSjxFa6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W/R1i4tR2T/xA0RkivXhP2FnW3pDwaU/eoBrfo/srj/ko2MuLFbgP2H7UDOX+uY/mAuW7uoH3z8whc1toPbUP2eTDf1Mqtw/IYGDvw/i2j8NiGnMJBvgPwhr81CjIOE/O69US85W5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LFV//KGH4D/QZUO5xrroP7A1lGUr9cg/Humi3Rg42j9Ac+jt613rP4nxKOQu7eI/BApOC8xa3T8pSmFZFirYP9OpsFIVV+Q/8311zBUC3j9xCIdbvqPdP8MMpDBeW9w/NXqBYSMf5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CugW5Lym4z/WkPSbO8nhPzkfL3UmXcc/uPAtWEPgvD9OzuWnx7XmP4Cn0nDpwOk/d0HNc84g4T89oaRfPHTWP1+sIgiPMNQ/cj9Uqkhs1j/TDOjT4WPlPwrmJRuydOA/sRMcxP/46D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AW53pX3h3D+EGwH1wSTkP3TGWmbQw5c/j1Iq+9xWqT/gIcoLXq3GP6ra6XjlAtI/Ww8NgCCx4z/Bk/sSjhTaP44mMxgryeE/AZyYbgCG3T/8p8kR3CLTP9Jk+/xDgtY/374y6AxR2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hasaJBmq2z/O4+9TqNbjPycMzmh3GpA/+PQ8RYGjsD954gO0OvjFP7MHUfsCVdA/018WOUy/4z/eZBvYFBXcP5RbhRxdhOA/ISo7Fz8A3z/zcJgdUejRPxmV0eH2/dY/oyvE1pZn2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L4+eKAfe3T9cY9s1qTTkPxdypmcj9Is/8JtAhtNftj+4bTWAytrdP7XN6ia2vNY/E+id4b2n2T/GsABn8X7XP2TIyEPiPuk/yqgGUObU3j+tiWRagkjbPwrFewNbzc8/cEvphzE75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mObQtg/q2z8rcAzCzzLiP8t1tRyEY58/BmheYTYIvj90ObtBPCbePwcLEBmOzOE/+RqiKiV03z+GX+DJrF/RP1jUszOgguc/e7jXJ7pc6T/43BTpoJnVP5MTYjjix90/KlCiUZsC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nlPn8Bzz3T/Jz/e2wALkPxfO4EFjFJ4/ZDLZnpJtxT81P+f0QOjkP76lpmPZZOI/nranhiV84j+S48b/TF/eP4JdGS/J6uU/3KosMHWn3T+vO+qt83HeP0usEf/BYNM/+kyxPwk74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8XKee50W3D8B6J3PHYnjP2taZ1fefpg/exvvtPyyxj9Xpfl//PHkP4LihFJOmuI/B/zaAhf34j+EDDKPfuzcPyZ3QNkkRuY/0oMFF20p3T9xx5XMYGTdPyEj/OPdW9M/vrGM4I/R4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s4HXofUv4T8namwiSPreP5RFHzN7HLo/IP/uPOpa4D/3twWzrsfbP3TTaLNqK9Y/WKwZBivt3D9bBgWPI8PYP2zG+DHLINM//k1Quqaw2D/a1GMiCe7VP+egOjKlmeA/rSE+/IDQ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jygXNmQC3j9gNPJ8b5LcPyDC0BfAWLI/8sa0cywPwT+aaoz+48jbP4R3Pc2TPtk/UOlBkrOc4D97FrrsRxrXPw3q5un+G9w/VFeovFI71D/VvTAYrGLhP0Rkkfw5xNU/8DpZdydU6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fkg0scvC3T/z59m9eNPaPweguFw/vpg/N9o+fazU3T+qD8Hdq/PePxTgTdYhh9g/QICOVfPF5D/D3ozQttHcP/7N9fX3Sdo/GL0Mc6jX1j/SyLZsWpvbP4dEAmBoXdg/V7Qe8EGg5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aqwjUMs12z/YBGMsFGnWP5tfv/mP2qI/HaUkuqZ01j/3IKr+CZfXP1cCtQkhqtg/aN8Xmt3q4j/Wk6ZNt9PcP1PuVZmJQ+A/4BpUDoco4D/RhHquf0rWP3j5UGTEXNs/J2A9CHcj6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9PtRGep23T+C9IGaHvbPP20UaGwgc6E/3gk3x8Gi3D/NpVSrdWjbP8deRP3Vw84/V4+B3lhE2j8r0YyNkKDTPyZ+IIRrzNg/OSV5X+KW1T/8fFcoaU3kP1pFZcOfM+E/7BeC/ZC46D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xPczpvjS3z92/SPVQODiP58LI107tXc/NvWlXSdazz/Ji3I1W1PkP0zym3tU+Nk/fSgTMgnN5D8w7jM1HwngPxZptHy5Eeg/rQ7Bpucx6T/byafOHn7TP/rnlV2YJ+A/vw7vvbkE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fGLg7VeI3T/BjTpVQmLmPwTKoPZP85o/xkCjg06Y0T92+S6x6MfPP+jlTdXhXtk/ZUE5qOhf4j94E6XFfXfgP8re8JOZaeY/lqpJltR85D9XgUyiFJ/bP+vYDL7IJ9g/eLj8Anxm5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UvOQpT+D3D+JdvPUiUjdP+DWRDE1mqQ/1sTDh4zNyz990xKuiB7XP8khpCL4L+I/f9H28J6A1T8N4k5jS8TVP6S1hq05iN0/ImaApE+p1z8bQrPv+3S8P6l6gQCsG9s/fbqEQCkT2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AHJ9As683D+F0nce5TPfP6UL6WTDpYw/pbuKP3qGzD+qwfwgTBPgP4bGhOtlud0/60T+SZXQ4D9EgvU30B/YPxWAg6RwbeA/Ixi9cCTe1T8O5w0oiGHaPzeeqndKidY/qBVJGE7W4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U/CdNKWb3T87YzAeqCbgP8PwytWuN54/RinbgVBk2z+irzhze7TWP5AcOMV5st0/fr6qEi5G4T+z3TuCcx7aP5hKhEpW9uM/b2UIJXow5D9BN1eP0XjdP094Gkpj0dU/n57fTDGw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5SyOMnyu3D8X5Opo+ljmP2VnvbFilJ4/96IwHBx1rj8G5hx0NrraP4UEz5Zcldg/z+eIsr6S3D8rXI0BbbPYP/8HPSgDaOY/s8yc8NWh4T8KdX2qXAzUP8n61x0GksM/2P2b2o7+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C47C79LB3j8rfsL5yD7hP9ywY5XIp50/n884J2JVwT8YI1VnD8/jP+5VFx0Ge+E/LiuogZwm4z+Jq8NWPiPePwsiPVaDNOE/MaS39wCP4z8V8zEzAqvQP3rSEsqFvtw/5ne24Etd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"39rZynRY3T8VI7uykDfmP9S0H6x23o8/i3+iJnC+sz+zEnzvetTbPw+dMMpBbtY/LowNBhew3j8qepYVvxPXP4jIu58dmNw/tRwjl6Xb4D9ChkRKQ7HZP9LfQ9Bth9o/sMzeBdUE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9w1NJ8UP3j9GQYgCifHiP6dkspKwCZU/I2WYK2mNwD/hZfcwEiLaP8fdHj+tQsg/GpPlsNTs2T9zsQT4iYrXP2Lfgml3rOM/vzM+Fvcx3j9Q1FWdMqXTP/F8fHg4cds/4B1zoi2D5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/aLk1Zjc2j+gF43fMavcP2kJWRixp5g/kjGSNRC32T/UhW9ROfvQP6oBZ2EuwNk/LR35GBpe2z8woXaKd0bdP0T5/zOJr+I/qwx88m/M5j9cS5W6glDWP9JFtSvg9Nk/jYC5JJEA5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m595Gujz3j8JCG33bkfYP/iykCaszaA/Ci6JyslV0j87jhqd+dHcP0QBQ82tiMs/MvZH2XHm5D9ge9p4brnYP7wq1w0NaOU/LHpCu5ZW1z+VWZPXCmPeP0cuq3xawuE/pYII0ium5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OzIriGVo2z/ZGtA0PY/SPwM0QlIQnoQ/KWACij9D5z81iqIYIv7RPwKKtYY4Yts/Tem41Mm+3z/CwmsCjXrgP/jZW+vGD+M/839Wz1cp4z+dX7WFEhvaP3a3wJc+x+E/V6N5KYc16j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RN1RE8AM3j9Sr/ZNf7vXP7DyT1G2G3k/pn8z0dz81T83V0hpNBHfP91X+TAmatQ/PWSt7/Xq5D8rCBr6lLzbP1TZtj2/t+g/aoynfviQ4z9bRv9t3ZbeP27kHTnytOA/YJlBV1oB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2Rbhp/GT3j+Zi/qEQjnYP4fMQ1lJFpk/3+vxpXUbzT8EznpZaqrYP3Teh3HKANo/F6K57v/f4D8c2jBlILvcP1Fg9BTcs+k/LamRNL4O4z9MeNjGeUveP8QFGqhUntw/qUmma4ua5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uU60WDDU3T/B3zEIqpnfPztJBvQbvos/G99zBSCG4D8/xUF0hILgP2dB3Rk1+Ns/JhHesbQy4z9vcE5btpXdP4tInJzqst8/cwEQiljj4D8a6pxSbb7gPwu20x26ado/Hg4Gt6Ub6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g20sF2lK3j9fuRKS6DvmP6R+WFA/fpc/WSg/JBZKoT9D9YEQugblPwYi+aWOft0//xb10IcD4T8q4eVAK5zfPxVf2YE78OE/DmjH4F3D4T/3GzKwoSfPP88qiY1Vk9I/TvmlxFhC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vkhP3CHD3j+rzAVzv97gPzfArvoI8pM/LcBKrPyOzD96J0eIH+vcPw8ewXDsgOI/f0ukPIRZ3z+ugMLDStTUP15Iv1dNtOo/+X68VksB6T/CqEWGnvPRPw9S2VIZ4dA/ChI5282k4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2RSEU4Da3D/8+W2BfrfgP7hUYnrYh5o/qIOaH3oW1z8sNZayfy/fPwEo8yRd29s/dC3XaVGF3j8+6hQZL5PbP1LUaEMzjOI/LNoiIwIZ4z8tohVTwPLTP5EOaAgCh8s/Mz9Z463i4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vRo40C2R3T9N8EnuvHThP2DbeHlSh6E/ELXKKFwB4T9qaXJ1qtbhPx4aser14eA/v4Z8o6RH3T9nI1jyAD7fP0Q7tYD++uI/BnFcYZ2Q4z/ix1hYudfRP7CwmuCssc4/Rnv9sBSL4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZHWJnPUi3T/k0+xyHrTjP7bEYugZ2pY/CH+XZoRvpT8/oI1AZ9zfPwfN0pIYe90/sEmd0xMH4z8QLVMetf7WPyFRLanh/9k/CL24zQxQ0T8P735M9b/XPznZd90rAds/3b2NNsq85z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yRgX2MNd3D/uA0orbabjP3jOKgxwzaw/WdQRBwSFqj/xCQb9HmHbP9g4iu9/pNw/hdtKJVxv4z9j76buuC/iP48dAWiZudw/Cpvk6PyS1T9500KCD7fXP7JuHV4F59Y/eu+moSsp5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8XJD8K2M2z9NmKzU6lPjPzsfu7DTFbE/nyXnlBg9qz/F8lTZtk/bP7RXNcVsjdw/vNAbBE2U5D8HCCyZOlTiP/rkhizFR9k/ifr92Nsl0z8Rxe/IGrnXPwE5tUdnidc//oH5tREH5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7jMLe0Jn3T+IKDaLJzPjP9wSfGp91Iw/p21IA9gi1T8qUXjzvpPhPyGyAS/NiNk/xZo/meV04T+5su7hUGXWPxKZRKcqO+A/8tTbBISc4T8Rp8WmSbvhP2P4ZlqVL+U/hLW9B+5P6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0vPs1SK43D8N/vZoTQviP1x2c7CHD5k/qGXKYd2lyT8o8VD3exbePziq74eJlNI/yLFTewmh2D89UMkZyo7WPwwZO7uVsOE/cC0OocLN4j+XDlkDphXbP1Inal2NSuY/CTpyLwNO6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LwTD5wEa3T90yXc+W+LhP4g2r4TzMZY/m78joyekyj8VW14oyRngP0uOxLF8F9M/LwWyak8k4T9PGpKvGrDWPziVWnM8zN4/RgojVks14z/450eSVgDUP2jqPEBnBOE/apojdFae6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uh0rQch43D8RvyYftyziP43GxWbbppk/PhRhd3Hxwz/PT5s2VRTZP2Hd+qosC8o/vVhNcoUW2z+YgZP6YhLXP8RFxrK7LOU/hev6rQ9T6T8dEUanLJjfP4UMQx4jmuI/QRhX3E+t5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3A7ES4I/3T/LT1b0JZboP4MJk9c4JrA/iMZ7u3hItj84mDOBVgvYP8/zCF10M9Y/xo/CKPmz4j+Hp3ZliX/gP0tZmWSEq+w/6ZRErBis6T+P2vCReW3XPzPHxJIrz9k/mRWovWaT6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vxghz0PL3z9cJzqDmKvkP/6iFjbjPaU/+IQAyRPyvD9vBdoQpovkP9VChA9L2OQ/NuzpMYzt4D95g31C1sHXPzBgTYbQiuM/gKu4PovE4j//dzgxj4rYP0Uz5AhPMM8/kqiUQhxo5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J+ZTjPc03j9uSqjDjzzhPx/Ryt8vf6g/iRDZ8BVfwj8EIJ8EUrrkP85EtAFyBt8/JjbBUd2U2z/sm6IP4lPXPyYdbfs6wuU/lTqc80gX4z+3CHOei6zSP6PosUZeOdc//wDUzBe15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"muPdRXUC3T/mkT2rlQDiPwv5fQ2yl44/fhuUcO7ovj+eauGhqbjhPyJYWVntxNo//5agx9Hd4z8LvLAgoabhP0tmHnazj98/1nEuBMW32D//xEbNUIniP0jlLvY2k9w/pqMRnYwh5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xx5DDYAg3j9PvSjmzkHjP/Mn3sJyvLI/Ewt6VhMkyD9BfK4Vos3aP359bWC3Q90/7xobEldR4T92NT9y23faP6NKlyKAC+E/FgI45zjC2D8efLRk+8vXP0Yr2fWVVNs/Aenfj3Ta5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pKKqstbd4z9t3puwGc7lP7zPz0EV5NE/4dRFTKfA1D/GSsCRTAnkP6zZBxQnlOI/foJ/G3DT4z+Llv/sgYjgP6ZT+a/8c+M/3xvmgEZ15j98A+a3xWHaP5IkbmR2Rdc/6mDroJsO5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8OnEAxqC5D8zVpFG9EjjP8NwpyDx9sI/ffqOTfxmwT8+EjEojMvjP7S0dWTeU90/TMo8Kx6d2z+v1bbwdVLMPwSN0xSK6OQ/0YNtS0lV5D9JmlsmSdjUP1X7LtQxheI/ygCOPKIt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h/QSnezQ4D/Q1YNuX5rhPyL7rmb3PcA/m+MlsXP9wz+UyfedzYPfP56+SVVOp9c/9IY0n8/i5z/EFoYRovnRPwZN7Yz2G+I/3c/igGQF5D8R1coT3+vVPzYtDZukwOI/LW+eJDBe1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3qbz3wBq4D86+izsNl3iP1I1CbGYo8E/3H4XilhJvD8Ww6+3fR/gP5wTi/Lufto/b6FLCzpu4T8z9e5FYcfPP18VjvaMV+A/BCU0Dxxn4T9lyrVT9cbVPwoXIvZSGuE/pjnGspWB4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AZl7x4Zs2T/2mG4Z57HhP2RjO5Msbac/DSPGRpML1T9s76T6E1/hP3KCDq3s1NU/KLFEcDNk3j+RlCEPfZPZP0li6OEdzNk/cWg4uD4y2D9XqfUIKeLMPy+IWPNcn8M/bJ7XluOs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+K4FxAuQ3j+vENXLq/jiPx0AZZ9fGKA/+Bcl7N8qzT+/uXu+tjnhP2UGsuqkQ+E/Yx5M6B0B4T97R4UfsAbeP7DEaXYB79U/lARQnDAgxz+Da9pE8dbhPws07neo3OQ/ZR/uwIqb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S6jk4qQR4D+k3G3UTGXhP+4Z1dxMXMU/Y7MfS0FJxT9QTgJi0Q3jP0KQsWrNEuE/quq3MMej4j++i7/c+M7fP/V/Xx4VHOc/rHsKnMD/6j9MSoQHKUe9P5ygMUTWnNk/ObXXi/8A4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AunWcLYB4j8Za7CMmdLhP8DYIOxXC7Q/7fn2xnffuz8NlX9K91flPyKzaQY4XeE/hDALQaGq4j+Jjy+L007jPx42uQlEveQ/9gh7c0gC5D+JxFiZD2fBP6LLIWLgvds/iukClglG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u6e8GRJ33D+EUwfkSkTlP8NHIYxM+aQ/H1cmOS1mxT/UjvA5tOjYP4mBAJnhCtY/HqoW4ilV6D/Ug3zwBlnhP8G34SVexeE/CI+AR9Pu3j/eCx7ByDHbPwzrS13IF8w/XPYYweHI2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8L/VmBNn3j9QsLR3xXnmP0G2KVXeNbU/v1nkApBYuD8Lj2XmNIziP163XyeivNE/PVoiQHbm5j/wdyXRbdTgP2fW9cI6++Q/S7SUsTRt2z8lPSBIL0fiP6iqOO506c8/72YvmDa53z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1Kq5SrDG3D+0JEuSyjzmP8/UqcUlKpE/txQ3co7yxT+xpW+D0p7TPyLubIYcs+I/Vqcg2+yo6T/VNEr9dwrrP9eL5jTcpNk/w6kiCsbz3T/5POT+QfjOP3LN8gXp59Y/K20tPTYE3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8qDI9Kxi3D9s9C5vw6TkPxXk6cgwGqs/S3iCXdr6zj9CfQVrqzLWP2l8nWBDG+E/JSnKC2UQ5j8ui7lJFR3hP2R4HUMiedw/nH7fx+d44T8KxGplzkTgP5UPvYB7Q9Y/kU1tCSX62D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y7cEKI6A2z8J/bF/dPDiP01Gu1dYj6Q/WQA8izsN0D+G7h7QwLrfP5xyqGW3eOE/tWwg55Cw2T9/Tuc3L03SP8F3XKXVSeI/d99RL5kD6T9HfmPOIObcP6gUwb2DnOE/3Ze2CjwK2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nHC7T/z13j87tvRXlLnmP0V2aueb/58/kQHcwm3osz+PrenJUXLhPw0Q8d4gU9U/qQidbSBl3T+K8Lx8o6fKP/yNYpkp/OY/BLiRrbVJ5D/nHPzCulnZP/aXabqupdc/m9BARdKu4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LpOkhVe53T8E1i8F6OrhP49kYTgYzqE/+laqJbwZvz8/PaaDQ7LhP/fhZj6/3eY/yt8UmVR13j82Wwan4k7hP4/5DhOBBN0/FiYdZtJO2z+KsrCEBA3ZP0OqFWjc79A/J36cwCna5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wf629BkR3z8NHCW2GhzmP7LnpM2vbZw/ALT2x3xcxj9GgyualdDXP6q/ON+NoL0/xOuOngtz4z8F717lHxLVP3dNQd5y3N4/NP2Sey432z8aJjnrtAPdP6haa73iXeA/g80GdWwB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rgekkHSS3D/oX40J5EnnP6iUkVuQUqM/kKJfU+unyT8mEz0489jUP1R4Q/zmOc8/S51WqP/c3z8p6dNnRtHQP6gvkVG3f+I/r2VXdp103j+/o685+TnaP5eDoV9YId4/J0xTjaqp4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JBhgU22k3T/4h46EorjnP8SAGczde70/mOtZE+nawj+PjZ9oxafiPyQw7KY8T9c/phcV9vuF3T/P5Tz4ryjaP7Yeo1faBuM/oQ+xTCaW4D/28K1xxT/YP9aZWnT6mNA/5PFWEJaq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AWiEtxNt4D8va4YbZvzlP6BpHL3xLbg/oWVb9Yiguj/VeNO5cWDjP4DzFZ1/6OA/9AATWtVu3T/T/S+OtGvhP5QO/28YNuM/nAWe6Gcg2j9ghoTsbf7bP77vxyNntNk/2bfsd/NL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EvJzMAIt3D+ZzDx4UFzkPwL7yEVadrI/qJ4yGU6wrT931ZTFXjviP4EVsX8NYN8/tod5OG+E4z97ZN63xF7hP2DFvxdl0eE/1SCutlkF3D88gBdF6HDSP/wdyAXxVNs/nW933pVU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nm4wmpUn3z+I+tEgE67kPxyb9OeAIq4/czmwm7AwqT/+gcIyV+vjP+254cFc0eE/+3toLKvt4j9I8SLt/OvZP4ssTohAZuM/DrQ9WsRN3T87uCSh9e/VP/oNjEvCB9A/QpVTFl9c2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DREoFMYj2z/VynbDgDHlPwx8yGMWPaI/aeq59s8rpz8g8w8cyH7hPyUfW1wLAdk/EBltHkc94T9njquzuePhP/RO8IKzpd4/5c58IkZz5T8iIvkANhHBP8j7RV7X5dU/nn3eGDEk4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hW09uTfo3z9x5JRQAA/mP0iHWRqxF5U/ZDVLe7NOuD/NxEMeljLfP//HNUaE5ts/E9pGxwQK5z/E/ICTnLbdP0tRjS7oCOQ/AnMclebr4j/dpii2N4bJPxOC77I5pc4/9O7Yy3GU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rCSJkSIz1z8NhUlk0i3hPxd/fNHMGLA/x7wTnXtoxj9XvqV+0a3bP4sNUfrCLOE/S8ZJ4TuMzT9XLunDyuvPP7ioDDncMN0/1IbR+Pvs0z+mdb3VMY7fP2zYDvx6Xtw/DEfHwl7k4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QNGCOqE23z+5jhq+FxnlP/qJPWzUfrA/ErHd426zrT8xOzJj88jhP5dzLUedn9c/9uyJH0br0z+p/wq68nzBP09gkU64Qcc/HllPtHYh1z+WYQT8d8HbP9LsDzVsQ9s/0hma2Qg65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0eE3G88S4D+ozMrOvUfkP2qCAB2CLMg/zW9ggBlavT+ZPaJsLcjfP2wfauZS39Y/3o0CuhXk0D+MmI465xnXP0pwoGzFtdQ/9D4hezkj1z+XHjROakjZP109pthfg9Q/qmVdig7n5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fZ2VNuYM4D8Weo5lx9PjP/6vqPWL1ck/WjSvd4pDtj+4fnret8LfP+V49Kej5tk/NmV/PpEI0D/xD4mKqs/TPzzRR0OoxtQ/7CNPOwxt0T8o4//jB6jXP/PH+hO73dg/yFzPsznE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KVv1Gn824T+a93FL34viP/LGtKDvH8E/4s6Zf0lFrj/Q7IppqKfgP+le7J48Dd4/dnDyzOC11T9AT2xhGCHKP1kB8VT6kMw/lLnShRo0zT8qjoch79TMP52tIz2R7s0/Kx0oishW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jlrqtYcj4D9tAkYBP/jiP3wOlWmvrLg/uVPbHH8w0D8Qwd2r897cP1uflXULW9w/VBu9vLN/5T+k5cx936ThP5Rc6Yc8T+Y/KW2PierX4T9udVbkW5DfP9d9ca7o0dw/wbRsNgUr5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gOmiZPFW3z+bv4tL9GviP7kcYsO3Xpw/t3EtlbI0wD9aRCHc2FPiP18jsICeJt4/98f9bLE94T8cAVDNHWDbP+Z05PDFquI/LotlSDvV4z+s3mXHzyTaPyUIQgKJu9Y/zq/iaINw6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GIxqe2O83T+zVa/2F9/jPyKiYoi09K4/2i4jyInIsj9fBhrmDn3gP//HUNCuut4/iA3YreDc3T/tWGeNzOHhPxWIWNdFm+E/h0NiTxtn4j+d3dJnV5zZP7oPfDWcldg/ZIosZa0y6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zYXB5BI/3D/vcB8Y1lDjP53wA5X+N40/h5BlBLcBrz+/A6ux3dXZPywcw5J5/tY/N1eDePLG1D+aUdbvDDDcP4UH5NqiZOA/wE+QwTlF4D+rfMLp0RTaP7Kwh5bO5sw/etittRQ14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KYIGTVMA3T84YxVpRI/kP3yTBJDy840/sh53M+HosD/qCnb+JpvSP6H5TNUy/dg/JJH3u9Jp4j8i1fm4+ibRP4ZKnIvsKeM/5rRrqNTX2z9UVsFlIi3IP5v5sKaNuMQ/RWd4lOTG0D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"twvmSczz3D/UU77mvqTkPx5ZXueeNs8/igha5L0TqT+PevnQxa7gPyMDapr0KNY/vlcExISl1D9Acxj2diHhP98AlLVS/9s/ktiq8VOF4D8iHtbCc7nYP0i3Gqt1DNc/FrRtSKxq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YwWiNett3z+bwV/3ZnTlP4aGa7Ke+8s/IHj6QsbTrT/Zybiln6/hP4FvPsvCT9s/GqVue44x2j+j0RGII4raP36Fjw+fbNk/dJtuiYny3T96qp1i4wjTPyFx6tSQWds/mFeEEGH15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v99+8QUU4D/emjGSi/njP0VusZElvbo/xNh56PyXwT9RYJp8Zb/gPx9mbWS35Nk/JJPbPazi4z8fpuLBvjjWP+HrcVHYm9c/+CWIZpAJ1j/MbBXszhzWP4Z3sWiyLtc/PzkqZOmT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7PbUzlhx4D/OpyXLLcbkP3cmfcj4crA/QcBAlAEJoj9v6XHqUr7iP8seJ+OQAeM/3nLB76wu3T/Jvv7WIvTiPzDpLx6LKeY/ZaTmvXbh4z+W+7Q1g1DPP7kjrI7neNU/p/VoSuDm4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f716tGM64D+J+mEY4i3lP4uDuPSU/KU/jI2d30EysT/SNJYwM37hP4QuC7i69NU/foJ/G3DT4z8xuHBJ1vrVP4CIn2H49eo/N1qN9BNr4j+/1gmdpGTSP6SLeuJhzsI/cY1/aaMp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nN4O5o8f2z8ZmUIHUkflP1afsIxON4k/WLTdITSXuz/0s2QeTrHWPztCW1aLD94/pOUdwSlj2D/TCd6jxcHePxF0XcqD3tE/Tf5S/Z532z9bmwDbKnPdP7+0Rub+Z9w/3RWPqMNd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bPN2Vlkz3T/yHdKzlTTiP0ajjWcadrc/PXo1NXcuuj8iuDrPBbXbP72Y4SWgw8M/Vmi6vFZp4D/oyE+nfx3RP7uEquv26+U/jmOTTDSn2j/zuu+LHWfWP5/XRqhyxdQ/5z9uuEt64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LQc183VD3T8awE2sMtbgP1R5NaV7oo0/uQAx+8RFwT8qG8AHjezWP/vNL8VSQ9o/GPwSGa3l2j/oDmxGYyfXP28qwh21Y+E/aLiWzROf2T9JE3NkMzPdP0oveC+DDN0/GcX6SUUH4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s0UzfJtv3j/hz0Bup4PkP2/z560xDpU/C76gMLKOxT9P7dQa6H/aP0hO7ZCGxdQ/i6F5rqdS4z+33ciEMqHbP3c0UP7NteE/XiReXMfW3D/uFJKcY4XYP9W4GIANtN0/pKgd2OHc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bZFiXDwA3T/2agHIBqXkP3InFf56OYE/FRQnu1Zqwz+HF3D/29vVP4ldDRWBBuQ/Uv3WHiVI2z8tWT6bbyjfPyZ5JKAos+E/Z1wUuvbs2j/bB1mFUjTKP845HikYLNY/LCIsLr0i4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"woKlhIzr2z/99C4N3HnkP0fmHYq2BYQ/90D7YDnMxD8/P9Z6B0rYP+RdNGl6e+M/kw6fRW2r3z8XvZ4O/s3dPxvjQgaqGuI/4XNnL0lU3T9MoWuRPOfKP+byfvMICtY/WqSDOWZ/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h0UVBRQy4D+Z6nyTtXzlPz6+lw5GYq0/yUSsL4DcxT9gGX/XNY/aP+3+64aN5eE/Q5awdqo12z8mCU0QbjPdPxIpgwS5TuA/wPzvEfbm4D8QPu6zhXfLP0N5VSoTkdg/XgH11eIV4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X2IPdaZu2T+R3ExmJyPkP26X4Wq+Mrw/jEyVfvDJrj+BZEcdlIDrPwxEC1b3UuI/6ttM7I4X4D/bka5qNNnSP/WkfttFJ+U/MnqeZn+54D/BloscKofhP6ntvsAcRds/kmIjuqg56D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aoNH0XoO3j+1wUp0tITjP4+r2p+cgsA/BvzReXZOtT+pzlcSO8flP1EQ13mUE+Q/ot9xO5340z+YVMxdR0PaP3SKCThnTdw/MnULj6WZ4j+pdbJ+3gXkP/qQ8nuDs9k/iwoEygnS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FdRTnhro3D/IuMHUpKDjPw9+brUyjrE/mGV5p7Jutz+ygrLSZeDgP2PEJGXbXeA/VdgufpTU4D/f9KAHkczVP+i3JpjiMOQ/rIQv4tbF4T8WWRz5lDfZP5Awk6oITeA/bHMyCijD6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+tpRg4Nk3j+njBb20JXkP4+u+gNOaI8/5++J8Capxz/jeOagrzjjP2x/eGOrUN8/tAX4tkkU4z/YbckXyEPQP+DFF1BJaOc/jtSTAunU5D8sOBqk1CDbP/8sMY99i9U/Jvtit3H05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GRZX35xE3j/nruL8q9TjP1nfZdGDIp4/IuQcDnkWoj/45iPVi/vdP2C13pb7Ed8/POWl+8bd3z+5tt0mMQfjPzf5FmCjduE/b1UwpbGe3D9TzsqViwrVPwokY9bDfd8/Bq6+OfER4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/OuDjsn13D+/XFY0fcHkP2e6J83OUHQ/RiY/QhwBwj+70QGq0AnWPxai6KAA19o/6GudK7m94T/ALPr2m5zKPyGaG93C/+U/FqfbjlhD3z8lD26GkujZP+YNhf3W1dk/T09FDqvs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DC6fHGkg3j9feZ8k4NHkP1kpHufXmKA/h/rvoVL6sD/AO5OU0xTbPzEWk/9V+dI/QF2O1m5m3j9YSVVipbDbP0sgOaYIMOM/vrFvvITn6D/TXiC+0K3WP1UCuVw7QtI/nWzFNIeg0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C0CxLfnL2D9QnOjQMATjP+BJ5OsbN5o/7Wfxsa/ntT9Q4HH3M5XVP7PesYU8s9o/hsdzLHv81j8RctlG2QXVP3aG55B3C9Q/ulF5yshH2T/s/iRM4i3fP1bBCI28wdU/lNkolpcl3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7GQEVgLj2z/RZf0TqArlP1HaV9XwtaE/b0Bk0hNMsD/Rm4SftkzXP0CZhuwDpd0/nZhmlHzo4D9aJA6jdSPXP7LmFv0K5tY/gACiJe113j9nkdDoogHfP86tySlaqdg/ee/sErSc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V4c5d0cU2T9ZCN5UxPfjP/A/JzKqq58/QmgaY73nsD9Fv90hdWjYP7AXlfjzotk/ZdtdjSjc4z8cZ6Yh5FnVP3zA/ZhiMdo/oyG0c2/C3D9Le6FJ2N3bPz67czpjZdc/tsu0mXP95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x7ye1roN2z+160ufWWDjP1ql8L7iFq8/PpCklrmtxz9oHqNU3LfmP/UmO++aSeE/28MQ9dIs3z+X6igYzKXiPxPmTVwfYeo/R+RJiXq35T/O8Uk3HTfYP1EfYgkRVdU/IZwyKxKh5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EDjtkSyF2j/utPXETWTjP+RwicQTNK4/7osPYcp3tz+zBAMdlmvjP5lEX37bt+M/L/JE1iYG5D/spTmJ4B/iP/I9geLXYOs/yQM+Viea6D8rWq9YDcDZP0k3+3zrdeE/aOchTdrA5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wPfGGDqH1T/1yTgS8QPkP6a3aFISaL8/zHxWvHDmtT+8cWxeycfgP4+KCa8cx9w/TAXNTgMI3j9ukTiM1o3cPwGVCiwtodE/Cd+BbXQeyz+YjlwCsVrZP+dZXo9My9c/BSE3d8cg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FKuKjOXa3j9ZM+FqHRjkP929UE+bk6E/NFk8VMiBoD+W+FZmg57ZPwxB+35iNNQ/YTpuWVUt4z+dOM/8vgXcPyB1ESK04uU/0u+8mYaq6D84iXYmQSbaP26U24ztgdM/AHKc2V1q4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rdKE3xN84D/N/CkMLMLkPxWzqt4V2rc/KSsraFDusD8fniuw/8HaP2BV+Qh3vtU/CBsOtixH5T9xJqbX2HXhPzCySzHl4OI/RUMeQ6AR6j84QvqPPEzbP1NvtEC3bNE/wnbQ6Ki+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/0Ue1jrO3T8sKAJzNa7kPylU2Vnr1LE/OH1ny5zhqz80ip5/v2LiP3UCACivq94/AAhCSRT04j+f1W4WMx/gPwiYBGfoz+Q/A7Ta7Nnp2z9Gc5UlzWPCP3YOxqrnF+Q/exOYWWLt5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5VmSUrrs3D95rqgr+KTjP1ejfUeTdI0/EF+Oo7KEqD+OerSRiizZPx/d6aCUrtA/V9MGpqDJ4D/ryRkoOyvfP47gjBYtAdc/7rdU1rV53j8PWBlCZ0LJP5+MsgPVp+I/Apu4uf0r2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iKGgczic4D9chAO2zLHlPwdOL+RLqKU/E770g9rL1T9pxWrFs53hP3dB6L5lBOc/9b/EUt8O4T/mb4GG4HjaP/FwbSzSQ+I/GiKWPD6X5D/Lr+WZ3JXYP48A9YSXFsM/2vaKPs4S5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/0PSI5iy3T9CabebDFboPzMlbMj1Kao//p6QO51Lxz/eCA6p/oPhP7Z2EC+9o98/DnwkOG+c2j+RT/TeGwTXPxlZqQ8EZeI/SJxh+6nl2D9bhmuZ7mHXP83HTql4Vsg/mq91VJm34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qBAewrrG3T9406Pzu0vjP2wnS3l4vpk/UWhu0f5QyT9W0HYNeQ/iPwxOBDaax9Q/B/Br0b154z+sGyyIHNTdPwSo7dL49eA/CWYTNggx4D8ZwcEzBdnTP7Ah1ou+ndY/QVgP4cqc6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GaAyoQcv3T8zvKMs2y3iP4KqzUACjp0/39VNtqxgtT+HBeSvb/zWPxOzr/+Gzd4/M0fE5jHw4D94mw149HjYPyQDlacG+eU/d6MX5zBJ4j+oUUkCSbXeP6D3M5hCB9k/3uuWZKv35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Umd8nk2X3D/Br/4rXXTjPwIsPHxaBZM/X3h6ON+xuz/zsSz1xOLgP37rCDYFsNY/i2rw9JNv0z/D/MQ687LbP/XFKP56pOM/GTt59SUk5T+Bp+0yBBPaP8J6DVWr2d0/H7eSoDu85D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mz7iE2dw2j8m/AmNlvPjP4THSDBl5tk/CNSZGaFPtD8wDS6Jqa7iP7dDyXfTCeA/nTMhhdlO3D/lyfpuq5vWP4+siGY8tt8/PDQjHiEa1D+myx/8+LnVP+VN2tZizdU/nRLH+IK+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Crh8qSCH4j8OZclBW6TmP7tIvBcYoLQ/60vsEmrmzj8oxlEdTivhP4cC1biKD+Q/H0wKNe5K3z8XStAja3DYP2rfbFLZUeU/oW7Pqopj5D+GkYfgmEXdPxr03kgcRNo/1Dfx+loB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LCjnCSJx4j/X5sG2LAHmP4ES4n4A77Y/50vhdiTa0T9ntKMaFejfP6qlqSNSouM/BNKm6eYl4j93MnOmeVvXP5xJ4dgQYeQ//gxPgHZA6D8PFkVNcTTaP8jXK/FPrdo//3roGVEb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qj9C/vKH1T9stfTj3vbmP9iUzVsnbK4/RyycfYHa3T+zO8Xs0L7iP09YQ/QBguA/Zd5yNo2n1T8gkZYJVaXcP7GjEWoVhOY/2nz4LOIz5T/MfWNFdrHTP6Ua8w7XttM/obtLS7hv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oAP2qV4J4j90D5r5mb3mP6OrlE//8bk/OdRCQhDcwz+yeegRTdXhP8ToqOWOqeE/Ml51id8/4T8XQWHX/LPMP5/0k9U8t9k/UtGk49eH2z+DEH3RIg3QP3Ra7iMTH9w/TJ+3thU/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oNoqzdx/3j+s9qS2OSrlPzQVD9ToIaw/0qvRKYcWuD/Iou48bHfkPwktkHHxb90/zDb0NQsY3T+sweH1OzLiPw6sDVDwXug/+7IvsW6s4z8QSbEFhnHaPwBsd5qPJcg/xeKEIznJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K2sUOg/U3j93MAzMbQrlPzH+RdjxkaA/DCCLJG0pqT/6TAz5aLneP/TF7YmrIeA/YM6GnDLF5z/VMzzVZQDfP/PTt5laHuM/HthG57G54z+rBwvn+9LeP67vSJvM9NI/pZyM49wc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hn/MmVRZ3j9bQZ/8OWPlPw2lmG2Ypok/8D9N7SnIqT/pAol4K17ePygtpXsqyd0/mVrTJbc84j/8eFwaM4LgP8XSp9tEGuY/1hhaQpkQ6T/hQzIb7DrbP4EyKYGrleM/jXAHGAKN5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EuDihJg/4D8DEt/Y/mPlP8qgflkNP5Q/g6dO1VAsqj+xX2NxvebfP6aZqoCE3Ns/EcHktrmv4z+bKqI2ow/gP2HiQKWHI+Y/R40B4anV6T9jvphGkQfcP4L/jMI/j+Y/GiWLhc325j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RT8txorx4D+PbNB/5GPiPzh9NwzHabY/zDAHuX8Qwz+ZVyN0WhviP/tzonmdU94/cMB+vk++4z+jN4LhZ4nXP5ZNV2ExVc8/TkEBICN51T9FXD5xnbPNP4tEFapGKMo/LMjvF5G84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bz37mUor4j9Bd8+6MPLiP5sqehm447s/b0PdujPmsj+d/5JEnrreP3vr+xCEJeA/cpPTOsns5T+qElrbx4vbPy3uagg0Ddc/brM6T4MoxT8z0kgxwTDXP9EsUsQZcMU/fn1XYUim4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wz2cZVSN3D/VJ3h6zfflPzSXxJX71pk/7cUihKahwj9mTe4fpcniP6H6zzbIpeM/u432EEYo2z9lxU1xKnvXP8v+zlXB4ek/9xQedAgr6D+E5JfZzNXRPyW/TUG2/uA/f+m2a/3Z5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eo73+xYH4z9NNbHwDgTmP7fm6KljlsA/VB+Kni+juT81x3KB90rlP+P85gOLU+I/BDJ2YkTF4z8FBdPKGbXdPy84R57HmOc/aHDiWTFj6D/b1V/bIFnZP16g43t5puE/fQKWy2u84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vC+ntMnP2z+4fjhn9UTiPxz/g7H/e8E/LmCTjafWzz9Xs3brQ/bcP1yfeuvghtk/CdtVulPR4j+KlqFArYbfP07s++oc8Mk/JCkuJa69uz8he0FWGGrYP3sh0Sye7NI/5fb1Ve7A6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2SdwCXQr2z+WXKmJOyXgP7a4vUJZiJw/Wf/wtDsAvT9Jn25JwvbeP+VhJqXNCOE/b/RwmzsC4T/jx4BysoXdPwyfpQvJi90/K8j2JnNF3T+rF+YxwAXdP0vOtNt3tNg/6f/r9pcf5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nVW0CObM3D9fnPRQ1V/mP3dq0ScgDao/4/e9UpyGxj8W8sWnlRzjP9bGnhreo+Y/0WzlPuZV4D8CAu35OZPXP5hsW9WjyeA/lWmlS9hJ2T9/CcARKNDlP8lzRHCN79I/XAU9cuH65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qEG6Rj483j9rD7bCtqDmP+yYD0CE16Q/epsw5DCnwT8m8tiO0/TiPywW13hU6+Q/RMGbUa/U3j+CIX5H6H/WP991gVGrkNg/XGWE6JYA3T9YcDRIqUHmP88i9rRLRc8/FuDWc74q4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MyjySgqa2z9kIRwzyf/lP8a/iQdjt6s/zfE5Ftke0D9Fw79crmXlPwH57kdGS+I/wZoIAdQt1T+tBmgeYDngP/uluAoo49Y/vYu0f1Ei4z+iFuN6khDdP2k6B7K8qc0/vLz8bgL14D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vGDC0yaH3T+2/ABE40DlP6jojUvTCqg/92PFc8nfsT9st0aWlCTfP/zQx47kRcw/0C8j29WC2T/GOiIJpgjhP0JQ0dMYr90/jwOZ19EZ4T9i/K79JqLWP1OBVEHZ0+A/CxSTbBSs3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JcpyoH1m4D+drcpHQnblP/YNnZJM+7c/BpHeqoBbpj+BMwXPGofhP1eUGTTTPd8/7Bj8kOXp4T9Av8d4DNrXP6eiahFoGN4/eseUMe6p3T8rdjBbarvVPwv2YdXgwds/nkkcZ1eq5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vbdtQJdw2j/Q2/vEJZThP165Tm8ytaI/qlqN8CV2yD80wkEjeh/cP1D9F72MFdc/6wHH+Ana4T+pH829gmXhPxEMTnx/X+E/358IV38B2j+S22OgXM/WP26BzUv6xtE/KuNH9lno5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tvoy2V+k3z9K5F8IEzLjP3QKmCrnoKU/4qP6pjqlwz/FJ+/j8kHjP0AoHTnPjdw/6tyVmo+I5j+IR5nv9i7kP6Kmr854TeA/mz2JpNCm3z9q6ZrYTnDbPxGGaFhqx9w/o5bb9kTN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N8ZvWOLC2z/gDjGn22HlP8rbBZuRS7w/PWQSPy4Stj9yY1f7ONrgP7aI0zwEHuA/zQ1/yQuV3j9CBCT/V+raPzGa6IiqLt8/0fiIcw8h1D+6ZmqTklvWP6YtAVDKcdU/04FFwTBf4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5xVlozKw3j8zjAkvKRDlP0lT3owoAME/CqVw0z6ZtT8xN1zz4Z3jP43kzA4nX94/EnxfNweL2D+ZhEp1WLPcP704j5i0UeA/fGdmop2G2D9cbiYo01rYP6ggSDWqgNY/XXlxt63w4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sXgbs8EA3z+mv4aKqQDlP6gbEVDryME/wXf387Kvsj9Eb1tWeFDkP3u2UNNuM9w/+D9Pk3EF2z9afJqRBrPbP5Cuh0DCwOI/JEbMIRiY3j+OatoynG3PPwRZfKN6Ndg/MkYkDuZa4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WaK9jeoC3z/rWTBogefiPxh2OOR0WcU/v8Jhc+Bbsj8MOTJXKKHfP0cRd+WkDt0/NMNLJHkG2j93e/1k6n/PP7zpXAX2RNc/5k0iq/W83j85Wkb/bd3WP9mLRmPnHtE/4fynsfSL5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ikFqM7Pg2D+Y70IYW7LjP0aGe4KaW7U/anoDcJz0wz8QzXP4FGnlP3hkf1C0/+E/YTJ+NRnQ5D8xGf46plPdP4YGt3KKDuI/+NCpxNZG3D8iLElEU6nQP5WBn0r549U/XL3tDHfN2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pCEhfS534j8D5qLggYfhP0HF18M/sLI/f4qT2KDYvT+d0MUsJNviPw0nlvIiE98/SEm7YWPM3z83cFcTXmzgP93e+zBr9tg/HyaeY1pr1D8yhbHqyijZPyEq0pRgRMo/52D7zlzt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1rswSX0n1z+1vvIGxafjPwyjV179EsY/wzuml4ljtz+zF2R1WuLdPwH57kdGS9I/aUuRQyz24T9ToU+aZTPZPzmI+D91qN0/mzKDW3i54z/Wg6mdUI7fPyxIyjs2R9I/BBqyvRcc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wFtwQ85p3z84Eszaa/zjPzA06M6ilak/4d5CLgGDsD+/9gboUATdP5++PDDNHOE/hiZymiPD4D9EMIR7njfgP9KreQaXJtg/pgUQHqFgxz+n9iGOtiLVP3z3rcG8Fdw/wOwwE1UW6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mObQtg/q2z/jUrFz3UPlP7srprUd+78/QTiOUy6bsT8Zl64rDL/dP0oS+kY6t+c/QwIC4BpT4T+gMprF4VjcP99crGFLQds/kPNyMCQn0D/2lnu4NI7VP1YLftg+nd8/hrkrufLq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5Q2DWWIm4D8hk52mf6PkPwd1JQXle6Q/kml+4OL/qT8THS84JTHiPxYExowGMt0/z5HplMab4T8WwxftMXfbPybE6WPRVNU/zE1c0CD12z+uFgPMJzfeP6hfaKz/hNU/TQ92s3yq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"03aJdhvs2D8/id9KzR/iP8/FeoqfCqo/l2Bg4ap8vz8tQ4mfUC/YP1oKtAvymNY/hbwXckYf4T8pky+/3UreP98L9jHR3uE/V3I/IJBa1j+5IT1z8yfZP662VPdQPuA//82X32yN4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k9h+r0gm3T/fyQ9KqILkP8i/VuKuErI/rnSC2KXXuT+9ZalovF/eP4ZSnzjyMtM/OTfsiRW24z9OVyX9EfjdP/hqS5bgitY/8GIZRch53z+sDvenHL3UPxDxh7tDSsc/vKfCcs690j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NCPbzFBH2D8mS8775rXjP/bl3retkqk/rkIFvNnAsj9DW1rQDFfXP49X3YFdAeA/t+q0R8Wj3D/2jiRE3hLfP8cVFIelfOM/q2g2oyEC2z81HBf1WKbXP/9E2o35kOA/ah/W+2jN3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DShP2MKl2z+QRc7Bz1zlP7DZjknpw6M/lbh11QensT9PfRS5hm/WP4JCT1aoGdk/IsdxZUhU2j9hQgcabZLdPyy6q28JPOM/IAldViTO1j8U9SKnG/faP2ZSd9KdTuM/Ge7/0zF24T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"geM/sy/C3T/KPScClLHkP7yt3ENVVZc/0eT0ZLjWtj8/gir+AIzgP56mBlaMauA/OHg/Wccz4T9DK/+//pLbP/g4W8KXOOA/3v/sQZGx3z+hM9CNvOPLPxcY6SoCmOY/bzMs/cNw6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7E23t84s3T94hpwoDBrkP2HR4i+RxKA/RGtVTG9Dtz8MxMoVwGnhPx8M4BgC9d0/OgcizbLd4T9/QGF5UN/aP+eAc52jrd4/ihBfVHNi3D/7oN1QuzjNP1OF0KVG3OE/C21/AdlU5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"itMDMASd3T9G3vwm3iHlP/oFrCiP6ZY/yvMdIuiSqD9fT+pRZ33eP4qVvETSS9U/sGprEm3+5D8YHHMQkJ7TP+RJStHwHeA/HQV6gaez1j/a9Z4b3sfZP+5IEwekINM/LSxEpGeZ3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RPTomhSv2z++CQ+XH1blPzVcI64EI4M/7ccmM7Osqz84RN/eqmPVP/MiO06ectc/8eqZS4pK4T8qGs7wmD7YPxIoh44Hvt8/R0wl+Rgf2T98J2GJxMTXP86gNqP2Tc0/t0+b685m4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6hK6UGw44T+8ng7j0fzkP9DWK3RfYME/D2y/uHgQzD9oJbvRf13fP+0j6R5Yt9w/ienFGG1T3T8+VrqpUD/YP7E8UmKRG+Y/A8c/75q63D88FD13TGXXP2CfrhlDs+Q/bsvlczgB5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5bRnK2Vp2j8MX+JvDHPjP+hperrOXrs/BvSIn3aTqT/MwfnePoHlP9RJDhUwaOQ/5K1exqk34D8rGjFRf8reP5olBIYamuI/3jfjQqIm1z/4nBgVRTvcP4CVosGc/9g/4iC4Vj+S4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g8pv5lMe3z9Scu//rmflPxRb3t1EBLA/O9PruPqm0z8RojcRcTLgP0LqtwOu3d4/agIFWqhJ5D9Z3VElrwLeP/ZHhqngK9U/fVMH+UA92j/ohZa4LNzKP1F925uosdI/jHYGDYM/4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gVwxiCiL3z8Ks5IZgxvkPz5cmlEcfZw/OlwHZJyVpj+LISdfnCLePzn2qwFLl9s/ikexD/F53T/+K7l0CcXgPxq/nLZ6yOc/bXWHOLVy4D9lwepzJKPdPzxV75QSLdY/rqZV4i+14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WgyyBotD4D8zY9tR60DkP36qOaEurJY/GAccWwKzqz9Ipa0kq2ncP+WUN0hi+to/xHgx283R2z/7S6rOgy7hPxbyqxaWnug/5nLCcZQ94T/Wh94wfPjfPzsdWabG5dY/ENAl1p0y4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HKw6wXhT2T+oMdLiJGDkP+BbZ9c4i60/u6oOeY0vuT+jot2BjADRP74rhTjpDdM/zC63tLJB6z9m7RxVZSjhP5AAhuvWFuI/qCDFEXw44T/mvK5ZOHrXP7tX3CHhaNg/G2znMAwt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UdgKxE8Y4T+DfD81/ePgPxpe4fpSbLU/gKwLQqasvT9fr8TcqUHLP6SWZJWaFcg/O5YSOJxq5j8uvfBQZBXlPwcrFgKpSOU/mBYXoz7b4z/AnpBCH3feP5BBKlsqI9w/ivhFNB265T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xksl6SAj2z9prM05G6niP6gIk9D7MLE/4OkZhvBVxz+PZsNvqaDKP33PxZVGnMU/DF4S83vP5T8dkrTOwaDgP6IB5xdCnOY/eWktmOji3z+SxSxPF6/lP0bP6T2up9U/QiaAPMP45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xazcDWd22z/i/Cn+CrzkP3aQZ3Jl358/ojxUZ9bqrT/ZCUU28w3gPyh8IW4pLdI/Dhok4BsL5D9OC9QmUUHYPwCFDdN2+dc/4Bx48wXC3D/0CzO7CtDgPz0usfrTjtc/DeHxIM3O5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lUjBoUJl2z/YXr3phhrlP/S5oKIJQ6M/I1JiwNgsoj/pHMGnupPZPyfNzBInAMs//HRc0t1p4T+BFfrTryDUP4qP5dd03dE/ypUYSlAM4T8bFCzWR8XgPxz+czaFz9U/h2qsyrOP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oHiGlhdt2z+zGJT2/lHiP+AoZhFeEq0/ktSKnJD3uj+ssrLeca7bP1V8oCC8WOI/oE+r/UJ11j8PplZAJQncP9K9g03S3eA/gwSUwrhs2j+uVuZMBPniP2wMLEWWg90/jLAFjgXw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zs5NMCg+3z/Lk3bzTXnlP5HCc8woTrE/+vo73nqnvz99gS+pefXiPww4Jz1UYd0/FSap887r5j8Xnl0wwWzYPxqXIMVEl+o/0Q0O2Kid5z/wjSAwGdfcPxyNww8BPOA/C562jRhM5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vdMZe1jp3T+2m+xmulHkP2MXkGCVWZ0/5VYWcX+CpT8A8+W06TLiP/53bAZFguI/j6BG4gBF4D9UTEYczjnkP437z/scseY/VTUefIHx5z/aD/mq5T/jP7I1FnCrZeI/uJ5QHdVW5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R0jFpdRo2j96+Tj4JfblP0Q0vy/alrQ/XIDHhwyUvD/+TUJwrhLfPyGe86Q0DNw/YQ3jKlHJ3j/cBE7/3LXXP0dIK6FroOE/Yq6SMaQF3z9GfA1apbXeP5T4H5E8teE/PP01sLyR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"12WZKMNV4z8m1IhHP4DfP9aGaeUIzLk/TREAucby0D+5vTmYeMDhPwKLOOjNCtY/PLWSSM4z3D8dwqAvAgTcPx4Xw5huIdw/P+x1bEDf2j9wkU48hILXP91e7IBwF9U/DEoz++Qk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MIcE/QrE4D+hSRAOTkjZP9JS5j5BgcQ/DXOAm2YV4z+d/FTQbtvjPz+q/KwKH9k/e/69YiEY2z+MZQVkLxvZP/elpB2CYdk/lkqOgAh02D/vHAPB0OPVP8MeHp3DLNg/cJoDGNTg4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+iK6QBTS3j8Er48u/nPgPwlCPXNkCqM//CdsSorlxz8aKra8UJLjPw9cad/jY9w/CRcl/MFx2T+Bc6aoseHaP8yQkHJIEeI/7OUkKBOv2T8iB2Jih27gPyxSYujbuOA/MBAnuNkb5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"arGoxo8s3j/OeTFpSsHlP1/N0cpL+sw/GGSwvEYftT8TEFL6hK/cP7FJ3oDMOuE/h2Lmh3cH4D8sHGLyD1rUP5lLnLBMXuQ/f3mZYC5b5j/SYP/cgOfYP1aDQwxaRtc/UR7AeYKS5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6LeLtx6u4D859IaFzHPdP6WmrpITSZs/K64qpiqg0j/QpaW12LzhP1aJTFQbpNk/zQv3/IHu4z99jzXACizgP4iLcHUyguo/2c5jWZqC4z9DP7Ze1cTiP7Ku0ano1Ns/1j/diyUW1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Aav5MnW3z8TfU6BxPHgP6QGVPB407g/MEGx+6gB3T8ZNeVP3kniP99ZJ6P8GeM/vvYrZHqh2z+zqiWp/JzaP9JDCYowUM8/UzV7a7Uu3T/IDMiCTD20P5TiAyytRdE/mi69YJwK5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ix7DBC853z9EHAzxpAPjP9G+1fxVE6E/NoGiGeBisD/rvQwwM7vePzdIOksvmNk/kC0K1XqH4T+cAmUJOW/dP/7IRReek+g/bnV88wyE3j+LJ/gvJeLkP316rwGt/tY/oYKcS5180j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LdyNJ6m+3j8VPWp+4r7jP/7Hl/v7LoM/Hhrb4LUSuj/J7GJvzpXkP6zwuozSndg/fqM/Y8vn4T8ORnnKkrjfP0k4uD6IueY/8HTWSnkg5j9t8BZCuu3hPykHMzQPXt0/heK0jo9R4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nJ0JWVsg3j/ZTy8q7JnhP0fSPN4pjKs/iA4HOb79yD/DtGL2iLLlP6j2tAuh+tY/TdDteGYl4T/7dCku/OPVP1ivSHGGFOQ/sFfet0MT5z8bGdR3VpHgP9mFF9HQ6uE/jDLYv6LF5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UZffXOTk3T9/2PbINifdPzsuMsjtVp4/5rIHpUDQzz+9lqoQXXLgP8MOKd/uI+c/Hons7YCL3z8dvwhunPLeP44X7R1gOOU/l6Jom5ii2j+eiNH6CcDaP+PUR/Ae2tI/e82qHJ+26D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HJ2tKHjr3T/GUd0t//fhP29uW9YZNa4/6AaY7o851T/Mo990dk7dP9D7FITGrMo/aPS/nXM25z+LqPw+7pDgPxp2P59IpeQ/Qz/efu+55D9hhYgzVpPIPx6ReFIJpdY/X7Q014Z30T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HZfv68bM2z+SrPy6JdXjP7L3gRzJerQ/HeHU6iTexj9tDX6+A6vhP7GmK0W/i9g/Vl4vDddk4j/NWiJ/VRDiPzXdDkCC3eA/qrVnZI2A5j/UdZQevfjOPzB2BBu0Y9s/eT0U6SpL4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZP8J03CD2z9Xv6Dq6GfkP3MrMR0wDaE/NrvK0YsKtD/OwhfANDbYP4KLnPWrN98/cKiNnOPC3z+b6VOuxzDSP4Bho8vmZuM/c8dsoPPc3z9C6UHjpIbUP6SJFpxutN4/qNo38Ivs5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xXz46alq2z/rbeUGROXjP9mGgadKM5k/VupZDwPbqD+RwyJ5RjrUPzo/w4z5DNw/dgHaeF284D+Kd4oESRzVPz2VbmDiTdw/U+140O2R4j8f3seZrkjXPxYNql/wceA/x1p1IvO85z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SH6JSuDO3z+ZFxeXLn3jP8K3OJWeCJ0/cMHcWDIxtD/VebD0ji7eP8Y1L/pchKg/Mt4SiSs34D/UTn7RZ87fP0n8p1j7y+Y/GUoC5Wvb3T/tFnG7E7/aPxvmt+0q/9g/fNwEEWZ95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CTPL0ooJ3j+6FV4L7gLkP6yivi+Aw5s/4GA74DEqrD+eD8LzWiTdP4grXaTH2Z0/wNW0ErVe3z8kQ0Po7d/hPwKcZRQ+3OY/JX+eOSfN2z9WJxrpg+3YP3sPV8A4G9c/6GRKk01G5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yas+an9n3j+VfZ9MKZPjPxepeknudKI/+DCG8dnhqD8ZYlEuRhjeP+7S+MAzM8w/VrTh6Yhc4j+t5Od2gD7ZP/e+Vi968OQ/HESl/T3r4z8ghZGZNQLYP4yV1SG+k9g/eRzFrEFc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CWDP8shH3j+FuG9SNKTkP2Gfj31JObE/ldA+EWZ/tz/KM1iHKO7RP+G6xaZrvsw/Il2B6bhl5T9y80tXC/jjP1joECUwyuI/bR7XWwhl3T9sYilsBMLfP+7X6qVw/9w/2UdkvlN14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B8Ea6lBz3D8YcDWmWsDhP2XIqbHBGJY/ELaeqKy6yj9LEd1VNtHZP/VBFrjuiNo/byGuC+524j93BawJXozaPxzWm7scfd0/3hrlF6n74D/h5crOLx/YP9IWbH7oetc/WUdASVCO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FdYNScin3D+ug8G0WFXjP1L0+codqpU/kjxXjwGe0j+NOUvGGQDgP3tFAqpk8N0/QhKnKPse4D8TeSFa2kbmP8MV65fdDOg/nmXI9BFW5T8w+vGX1XPYP9jPPTWdtOE/4nyzXE615D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P/vO++NX2z92K4g/VWXhP2iVvzsQZ6U/xJeXBL831z+NZ0PVO0jgP7tAdOcXOto/Vm5csmuY0j+Wr2i/kOvPPxLkVXC8P9k/59wWsJig0j8FHLcBmTLUP+SM+k240dQ/185CK0YG4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"77333nvv3T8KsxTwS6vgPzcXm3+Sy5w/Di6JdBAvwT/EQkX0dyzhP0sEsCcb7+I/Wgi4L71b4D/dmrQhhSzLP8+E7IuP7d8/LPuj9OgN1j9HmlsmSdjkP/LRzl04ls8/ZvLPtXRo5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8+PNfxYV3T+lqOCfXB7lP8DDkp5QRJo/VbiTHg/zsj96Y0LonKDUP0ctuoVjIs4/WVGtZFlH2T+VLsu6tpnfP5aJZ24VSeQ/BfJz9rDU4j8rFBYoobTJP4DOk6bbz9g/2g7zmGAG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/i4bISgE3j/TywBM4LbjP9FPt+6M/ZI/vHegs/+5xj+j3PHC4zvZP6XzbeCOdN0/7sLfB+Y81z9V31NwVRHTP06oLMeU1uA/x5f9zzgh4D+EsSshuJjRP6G38QiV2s4/QD5s4gXk4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4SBRYVI03j9wBP3d/NfhP9hAA9SYwpc/gH1TefOSwj+GlAVtGDfgPwElQNGgBNc/V6snRb4w3D++F58i/WrQPxFZIC6tEOQ/D9Rvmyho4T/pu7meNpnQP9Y2WW64vMs/0MHmb/j75z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8XD3PQtx2z9Zj+A2tpnkP4TvOHO4XaY/sPF8+Sk7tj+6yPZC3xffP98eP61CmOQ/GQQRNOcl3T/byxz0Bo3bP7gU+DlHPto/xTOEN4+30z9lBUvc0RjjP89YndgWGtg/pKglb0LM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nPVIF6i72j87U8tjFHrkP/jKPthkeqk/bXkQ1NpYsT/ZrUS0JBDhP39TMT9Z5N8/+kNlVXbm4D+vdUx4JH/eP94DBux5E9k/cNZoCb6u4T9INQgZbNLbPxS4qSDjRNk/w2aakGlT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lhzOom2e3j+HIMAl3GDkP3g5kj0FzbY/M6tn0hIZsT8ApIHK4s/gP6CDfOm++ds/7OPc8/T65T+n0TBBsxnjPxLJO7JNMt0/rLm28Iy01z9QPB+CdWveP9lcE78KVuM/IHGdzBeW5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tJ6611ZU3j9xOs056F7kPz/OpzcsHoM/9FQtZ4q+rD8cQOc5gCPXP0rCZdsnPN4/LYGnu2qX1j80l6XRRZLPP7USG5kf7eg/YDSAgM7b4z8+5BCXYbHQP/LyeHWPPdA/c3XwipwE3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fHotCyYY3j+iNj3UKv/kP4OrShMSF4Q/MlCrkFNyrT+Z1wIh7ifWPyJWKWfGluA/3Xi/mhEw1j9zsMwtn4nQP9hk/sMpyuc/vGr/k3yX5D/Rn4ii+ePSPyQ0LqQub9A/KOCtEW0C3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ox2L4zW83z/yS00mfDHjP5wn5cmCDMM/o8x95+v1uD/HML09bujhPz5KJEQHVtY/GE350rqk4T8YGXjuQwHgP8r7cv5+9dI/vCeuYCzTzz8p5Wet7OrNP57dYvCqLsI/8GIOgKwF4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jdNJg4uQ4T/HdV0bElLjP+lJqxrV0bI/Yk89W4/LtT9rdzCHysHhP2eDQvBSf+M/On/TD0kf1D9NS7uOV57eP3BAht747+Q/pN5EsIFF4D+lSidC7JPQP9KhP/P23uA/gxG5Df1y3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pOboAy242z8nXeblpiLlP4VfUaM7F7I/lwCULYZGyj8ZhEWhghHkP20VVnyFluE/YZlLEUYQ5D8g1tPWECbXP2cWSy4f694/3l0GtLEX5D+VQP8B3x7gP14w2nNhx9M/tkp4WsZY6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DPlbXB5S2T/gMd5Gh6/nPw5NeyQm+rY/B1zJNIBb1D92Mqdd+xvlP9TXSu85xuc/XbNACg7y4j+GwIIM6TPmP9wYzm7FQeQ/93RxVfgH3T9uXmsupE7bPxNphs35U+Q/BWEtVmqU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JrQlgeSJ2z+mDFbRQHLkP3CYNWBxgOU/zGylCEUu0T8IefPCLBTnP8edvyu6DOY/dHhalGir4j/3GAI/PKDaP2ZEnJvhBeI/Rm4Ipne44D8cfK1m5UHbP/imEaBPCd0/gte5jHrC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L5nMJHqD1D9wsb4na/TgPxF16Sg8LLo/qyglaSnduT8dT7+TMyjaP8+Fe+zPENk/ALTOQlbR2z+FGnSmBl7WPwbj0FBtjeI/96x2HlhZ4D9r4R5djonCPz3mPcSw8LU/R9pcWEn/2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sHzoyL+N4T8y965P19LnP9STvoKNS7Q/aL5KL83fwT/ipYPBZYDoP4ut5LlptOk/uDKmXXBI3z8DMiK24nzWP30yChtDi+I/TYKAGIDy4D84acCQuMDdP4eULgNS3+A/nKH+6zwJ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qYrpOxc14z97HO9+ncvmP6WFTPcRFrA/kVoKCP6CxD++st1b/yrpP8Cwc0OR/uc/2+ozzCTa3z9tSK7NZWnUP3k/91lZ3OI/v2k5B8+04j9uYSJcmc7gPwWZzr3JRuE/tt/723s95j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2wsw/HDa2T9NPKOU3QHoP3R3TjDpJ8I/+H3jjHN70T/ts33KTIbiP3Lwmx2R9+I/N8QK0alU3D8JAQM/yaLZP3YwDFY57d8/RmivQfC14D8MRWMf22rVP2EKQ/iO3dw/rOcnJUvN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sJHFpWZw1z85TThY6ujoPzKZ1kdERrI/2L+kWVd3xz8WelE0TH/jPwWxqnyEO98/CZY65+5h4j9eKcdoEdPhPzmpM39ZAuU/2LPTt15k2T/sG5Cy7YHWP3DhSPPwYNc/LtMo9M3P4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZVal/RLz1j933yjSUSfpP7/kK5GZsLU/WvShYsuEyT/G0k+3ZQfkP/po1Znludg/IjndZxk54T+RktZobv7gPxfQJ39UF+M/WB4yUCxp4D9ZV70eOpjbP2/JZhba+tY/nHw5Z+6P4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4v2tI/N02T9VRYJ/MQ7gP8Gd5JHJCrU/UQaXfxP3xj+VfEmQniHkP0uSwxJRL9c/l32XRG432z81D5vLo5LYP3n2hEAFy+E/Y0l020WF1j/ihBFV4GfTP/FP/AEF1Ns/DVhcW1hw4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ugiF4CZo3j/g19dPOZ7gP8Y4pYWfjaU/mdy9kXySyD/xFutshBngPw7uVLxqHOE/Gu0IpKUh1z+zuSfZHAjXPxyE+M75lc8/LP3DVsG52D9oDBrxNWjVP4n6xfKA4tM/9I7M25mc3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+8TzwRvq3z/u/qQiDrniPxT7N1muz84/cYTqM24QvD9Y4XYsK3XcPxsSvw2mfdk/3WO3eqVq2T+Bfr5HAzXQPxwkOs5XM9s/C5zA//pS2z+aLSwzlqzYP4ttFv3P1tU/6paqHIDJ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2eYP8U+i3T+bjq+EUgrjP7HCpUbUwcc/kxIrUqm8uT+4eLGEWEvjP80AZPJTAtU/Mc4fgvl73j+jr3yP1xPWPyZh1vkP79s/eS78vmp90j8NSCyiOf3SP3YdXgXnlro/Ce9ZytYZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UJjQBP2c2z+QUPQHwcvkP3gJGw3wIbM/2TFq1jlZsT9gJ3r2y8XiP3uwExvKo+E/zmc0qQht3z9VmJfyjvDZP7z6HtGWCNo/FgySsNqX4D8STPHdr/rTP54f87wwxNs/1rLwal9vsz8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/5p/W1UY4D/2k4ilo3ziP08lozE0yJI/oqrw6BakwD9M/BKSmhLgPxtYPs/C8Nc/Mio6tl0q4j/Qu/jLje/cP4oQMWb93uQ/REGAIptc3D9d1eH+lKPHPwgGLNPZTcw/Z2gJXKyO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y41Ess5W3T8JqFXLvzTiP6w6+scKmY0/xRnCrI7OwD/fd3Mc9JPaP9JPFbl/T9k/fpwzCf5j4D9rtYsochbYPylWeo7xvt8/g5SyBT9x3T/1hKj7QIXAP91lwjHz/8s/JpodnOWR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nIzmJJew4z+MDT6iWm7lPzHcHo5MtNg/wPlZF5Q6oj8yuv/5uPLhP0OQ9KOjRd0/tlGj2anH5D9cdc/jaQPkP5aZgLcQyN0/s9jmhAh72j/VuNshlmjNP5JySQtLeM0/nA8GkCGn1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"acPxUyWq4D88/7lfG4rkP+eYkjvBsqk/Q3xK5+Dvyj8ulx7o1L3iP7cW9Yzjp+A/I2ei7Oq02D+lrqJxwRTQP5pJ9toyT+I/jH7oEYAu4T/6gAMRYK7gP7GgcXBcL+U/ojN6JJrn6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M9+ce/ps4D/ie+7+yUvmPyx9QYC7qrI/Yp2w6f7Jtz+Ioo6jhw3XP2YRqLkw+9U/2DyIUXGV5z8u0uMQCzHjP1dQNXVWN9E/bDWashdG2z+Yw5WEDL/TPy3cKU6tpdM/9QY5j6OY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D8njZR9u2z9wWeCitIvkP3nLBitEXZs/MeQOu9qpyT/jR1t6mCHiP+Qv3Rz1cNk//K/s9cLU4z8Y7wRsN0fiP/ze/Nheh+A/PVHtLiyv3j8Y9atRUADfPzWMHcEG7dg/FUEFOZc66T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wOgYnJwH3z9+W3u2VYjjP5eQzHv2C6g/jHiNKLhI0D+8A5tNU2jbPzMNUlV1Fts/fHslA1Fg3z+kMOaJtVrgP2rQvz+jwNs/Wj8mm5d43D8Feh5OVU7XPzXmHa5tJ9g/hktqhpbA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZnCnz/Ql3D9wrr+62h/eP1zWl/bg/sA/cNZkCj3D0T9K567r/eHYP7Dq25cuFd0/icPiwNlR4D/1Qrlon1bWP9fSdIcsSd8/dACYJJBh2D/cP23fdT3aP3yzZwhRbtE/ieMqJf3E3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XGsIQcbk2z+nZnPQYPvdP+rV2w0eAtM/W+AraN221T8om5eCW8LbP3um8UtTEeA/o9LD67pF4D9nbawxLXDVPy6T+97gD+E/Vee3N4pj2z9yIqvrieTOP8UMpDBeW7w/cxXcA2Qd2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eRoy3T8n2T8regdHo9XhP2Uv9FGJpMA/8UDMkJkb2D/fu6BBqAjeP76UPchTdd0/mEizphU33T+s/4JrRYTVP7md2tEB3dw/T7Pkrtdn3T9aP2ZYtX7EPwuNk24cjtM/7aYtDjoc4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yXiVNh2J3T/Oa657Lw3hPwuNuFMr67I/XG+c87bd0D+XdfQFhTDjP0DYOG9lVeA/8HqA3mY72D+2iZkksabcPz/cJaL6Yd0/Q/vGvvES3j9fM1BJZ0nHPxx884BEBc8/xITxsbsa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j50oiEMk3j8dzNWqsYjjPww3w+X5yrQ/levFlN6buT/dBpFAOjPkP8UHkXRgSts/y4wCyAzi4z8yv/dPHK7fP1wZeZq1JOE/9gMctlx44T8iQ6tP1uHgPw3OyESvmtw/Cwjjivup5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JmtPTK6e2T/FZw4Ffj7lP0RyA+HwH6c/paWT2Livqz/EWcH7iFDhP/pewS8YceM/dnowH0RB4D/Kf/ZARCDYP3aHxxbkxOQ/GbDIN9qF4D+MeMQJR1TTP+dr2PuxnNM/BljCKGOh6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ogstw6y43j+gmwQKVhjjPwHNxNd7Y6w/HzkMPAtWuz9U/3gApAPXP2skPodk28M/dNpM9b1Z1T9KmWeogdvUP90m9dy9TtY/yeNkgVDP3z8LFuujYtjhP7NBdJTYzeA/EgqCHlyp4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8YW+gkmZ1D8oBmZs7N3iP/EF5fnVTr4/KDwgA8KaxD+Y+giq+APgP+qWFBy5LeE/NjSSUaHA4T/w1j16VqHUPxpjCPD0l90/AfeqIqKRxz9dgzK/2mLaP5E6xmbd+98/sxvKeqKJ6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yobF+UYR2T8pK6ES7IPkPwhYRYgZcMA/evXJvwOGwT8innSInd/hPws1j3PCXts/sed7xQiS4z/LA7RVMXzhP+A0MHAVEN4/bVW9Ky2E4z8pisnjjmHYP/LTMqQrsNM/PhFeBbGP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/XbNx9ld3T9swPo6MmblP0iWUnAInps/Bb9oG0h6vz+96aPEnBnYP+gSIsDRwNg/2BIli4v92T8Onc3uOEfdP5ITAno3a+Q/sL42fXEK4D+mtw8eCR3XP7lcnXMmSdU/LOPDqqnw5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6IWUKBHV3T8o+mzYk2LkP3ZEcn8JaqA/jNmz/MNFoD+xfA7wLBC/P0SXwiKHx84/xQgZz9844j/PmiPs2XLbP6+6QZnXMOI/QDZ+XOlc2j8ZVHRXhmvZPxevaavzddg/c3luamJ+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"45+MGQsD2j9/Vr4YfNrjP3NHrm1eN50/SqU5nX9Isj/LRewIWgTQP2ZmYCSsL88/okXF+agU4T9t0M0kdOTYPzQnaaooy9w/IOxeKyuj4D8WCD7KCbPSP5Lag52Bws8/5UyVn0Br6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6DzRYPYD2z85W+Bu3QTkP2hoUdSb5JQ/95SI2kIduj+k4vcpuf7dP4fGTtcQEdg/WFbVPE1S2T87L/Q5FhLVP/90tpiRHOU/+bbMZFNB3j/Yc0WoV1LdPwj3qYH1f9o/ROaYHHPo3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"syuarCrE3T8EoExOvAvmP3x8UEvb4J4/62WaqO9grz9QGFKoZJ3XP1/sdo1h/+A/CSBxjbhA4z+HSr6zG8PSP713t5uA69s/0zN77fYB5D9aH55twwbQPy2vqdd5CNQ/yhrM3Mow4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j4iCJ6IT4D/st7RTojnkP1JcvjKT1KM/e4jn1tAFwj/S/zzMz3LhPy8cIBZSRtA/Cw9i4B8g1T8hcKzYNK3dP7sG5bj0suU/b7B9NUNB2j/jTEVPYqjjP8e3KPhkuuE/YZfAQZ/I4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u8Jo1TgW3j8gTnNigDzlP3pFz0r7gLY/fb+WplwTwz/dkWqlquLdPxjDrkNRatA/azmswyLf2j9HQ75LB8vcP9GJM5j4L+Q//mdo9hlN2j8bKxeM/wblP1msRF/j9OI/D0f9BSZ55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R3mYpl2w2j+e3wlUGmTkP00ZZIv0yZ8/Whg0tH42rj/2PA6M+sjJP0clhW89i9o/YW5Nd4dw2z9J9+QmmRvbP3XXqvctOeE/fchsxUV82T/HewbT5PbYP+TqsjxkW90/CjxQDPpM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cKa8CHCo3j9BGh2QzmPkPwXs/do8dJc/bkKes3jnpj9ZX3NT+6LgPztbBi24IM0/dUxY27jE4z+J6svsHPfYP8VGyRaQpuc/Q0cy86+u5z9wQeMb3F/gP+hm7lZzQOA/NCSkPanw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vJFeWKr83T/y23c/2mnkPwDcDiuNynE/LfgwRVuaoT9ur+OOD+zZP+pzORFsQNQ/+pG5+hck5j/Uz0V4GhfbPyIVhNu/Euc/vRy+oSTD5z95t8F/srvbP27TTao1ft8/K60EL8U15z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ByKZx0R43z/foMnX7/LkP6JHPU/gcWY/YVBA5Ql2oz/8OojbwRDfP4N3WFe+Etw/R/zCKXwA5j8E/xCRfYXcP0HIL8nVGu8/rPNkH5qp6j8ARNe9eGzhP1LZAzIrv90/JZgJfCf+6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u0Rggob62D8IlfGjm7PjPwk1UeDCyLI/CtCcrYZswD+VqS+J8obgP82OrjEHqtQ/qmi+C1ab0z8dRLqlHVPhP1kFfL14Gs8/V5bLMpyXzT/ZDkVGcx7QP7dkXF5m+dE/CAu8uH6P3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tSSSB77f2j946nh7VWbkP5WtFQOlVbY/z5BT3oF20j9p0bvSmaXiP9mrtezgGuE/6uNKB8lX4j9XAdQXNQzaP1LH6/zpytk/n+cj1f+F0T9BSJOTD/vSP/KYeIgoA9E/8oyRN2fX2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j2eLHW8W1z+GffB5dV/mP2fFNmwlErk/qcLvqlq/wT+5faE8/Y/kP0eOxLF8F+M/TjUgyU++4D+AewyBHx7gPwdEzTFJc9A/nXUXcQXwzz9I6dGL7xnVP9CgNqP2Td0/ttCC+qA04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vj+ixG+12D/h0xIpn2TmP9tBlOtvKLs/Qcrf0+/1wD8UfLYGwSvjPzvwidPQ2+M/VzrUgc0J4D+zWXm5dDjbP053XCQoD9U/bG+/3U9D0T+UpS5l6f/YP4+OhHdPN94/pfZErliL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BzYZzxR73T9wDyheKK/mP+REvrbClcI/+N/9Z57i0T9qk5itHY/jPyf2hhIYduM/l3sKsChz3z//p+YOsO3ZP5UERnY/m+Y/6dcXITxn4z9NCkOEACvhP3rX+a+HNM0/FDjBjwR54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E2RK83L32z/wHwSaoa3nP9qgPNHRLqw/P3ZNXizJvj/OGBLbLXHiP2fggo/EReQ/iXP8vjYy3j9Ln0PnmxDZP7DXwib6guY/35FF9OYs4z8fRCm1DMzbP9XHmtHxgc8/nrjQU9/L4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c+wNxRZQ4T8p4j3yj0PiP5yRETq/xbI/MNZ63OeHpT/TzW5NnP/iP4Ajj3aC19g/D4xuLDUM4j81TKEW3FfePy8vDgAToOA/TYYOBBar3z8/jcQM7CzPP5LjcWx+mcM/dcTjlsp44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zlSmxbWH2j9z+iC7HuzmP3vUogdkhqI/hcxx5KADxT/sXon6+VvNP9GNeu6g/9Y/aLgq+mcO3z8feY4i5ObXP95E79fhWd4/SXwG5f8j2z8e6vb7exrZP00vZeWkQds/WU9TXo/U4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UTnAHUnv2z/pZsqMC2DiP0ahslcANns/cEvUTyTNnT9CsmJocdnVPw0ET78r1cY/HuYz4unk4T8pmdfz+3TcP08xD19PdeM/CXdJDqJ54j9Hl6T4U1jfPxgYJcjZ3s4/YrpCi1qN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Aj6TgcDV3D91NE8cP7TiPzaOwrlaWls/cKDUD0FwlT/NsdJhR07WP/3lISaVA8k/wYcFGfnE4j8e5skpxZXcP+/NE0juLOM/SCnzuzer4j+032GA54/dP3nOhtp20cw/gRrmYNzh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rJSUBxeg3T/bqVDWnULkP/jMf+f/DX0/B/bJb5VHlD+aS52Lw/7XP9zC4HKPQMM/KJJtcm3m4j8xPIwKmFjgP2dOQJOYsuA/1BZJqA9B4j93IrLpn27bP/I1d4LmJsw/2im/lBhL6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AFTzDXXM2D8iRQT5TK3kPyPUkNoZz8M/CjPflbQKsj+QpUGDkbfUP2eCv4691tg/lcync6Bg5D8Hwg/6VkrcP/ozBcVst+c/q+S6YFsm3D/wsmwSR/bQP/7zBsyjWtA/Up5PcIyz0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D622xTc32T8iWzCWkYviP/Z7TboIJsI/sZvIBxcJ1j+FjBC1V8PcP0AUOd4y7tM/XxB1P71K4D+CGaVxOcbiP7WKUGdbtuY/BBmCRg1i4T950ewNlIbZP07/mq39qNQ/pHdLqj6b2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wekbRoSB1j8URGvQX/XlP3x/joeSAsM/zncW8bJ9rD92cjsgFLHiP/q/KR8ybec/MnE5C5wS5D+3r95umEzVP0/xrLwuutU/Jngm3GSY3j9vuf6grk/VP42UoL+HoNs/1oa9ghRE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P4z6gI+W3j8nqGNXlBveP8vzGnP89Y8/P6X06ffryj+xXkWQxzHdP6Rne0KuWdE/sBUZCvwf4j8SkM0Jv+rVP7KrhZXfYOQ/5j7N1Z2b4T8R3xpX/IPVP1XDvnmi09Y/dR9Jqulq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6/Fixa+U3D+mV8pbYuPeP4UH5rJYar8/9uQcltM41j/j5ReEfhXWP9ZarITiQNk/ci+FtE4t4z88nAWfHsreP4EPdQsuhd4/IoZKsdeX5D/7gQohy6HfPwPl0KI4uNU/Z/WYtTZv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bq6Jv0ys3j+v3M80Z/LkPzZ82c68soA/k/UvY4vtuT/V2K1EtCTgPyc3aYegVNA/Hw4AhBJ94T8Fwn1Dhj3VP1WI0Pigyek/yTsPBZlV4D+dmQ3/R0LgP2qQT53elOM/y+BQp/h36z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ozKMz8ZW3j+MrSXpAhPjP71UqzK2XZg/5FCvWdXXuT+a18ms2nfdP26Et+w+3uE/By97AsAE5z8x5Tfm8cniP63ys/WgIOc/fX6JJzy46T8YGGFpcy/hP6XFs3O1XOE/HKSjdvso5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"le5/GnSa3T9+IoH9HhTmP+FohdKO25s/qBjCabDrtj+C90oVdrjhP8ToqOWOqeE/qo2++q854z9+OD9IOZ/jP/xdJndAi+Y/BB36p1I93D8wZDWbZo/hP0d0pGNvleo/v5UiW4ds6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v9EV54k93z+bRXp0mrnlPyuvrbFEM70/ZFxdwYVTrz87i5fpjnDaPxC5c2oAgtc/vIVLfBn17D8hBmc/jhHnP4CnUZjKUdg/VIR+ZxT44T8YBnEAw4voPxk8A5iJ0OE/JlRuOUrf6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WFkNM+tL2z89yOaL03XlPx2BUA4j7po/nBRsdlUjwj8LI05L+cjiPyqLMmjcj+M/18hZg34b6D/YjUd0ATDiP/RdspcLJeY/kjXOP39g4T8DyZSz+4/nPxTCGHqPOuE/8Bewqfdd7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CKJqnCZ14D+5Gc9rY5zmP8iOyN4KMs8/68iCfw43wz/PIafAlWfoP7uJtGGazek/f8RWmLqw5T++w1pxD/XjPyYrCnNgDtk/XxIu3ZEV3T+Z9DRz2tTZP+uabdEiQt0/d2PUvgWr5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yur3RBFL2z+NhhUK6BviP8hDfvTfv40/VqAul5AttT+y1xBZGjTYPzQpemsJVtk/Pedtj6SQ2T/92KyNBlDbP+B54emEMNo/Co0SvhXi0j8HRGdmw//RP6UNTT6VkNY/0CEa5EQl4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"il/OTdWc3j//KQZl30PlP6d17wIFDsI/2wc5uVaCpT+5BfjtAt7bPxipgAuPsMY/1WFDsbsJ5z9UOEd/uyLfP/IhO5kTN9k/MNDpKFkP4T9mKX5ZKzLQP+N1c2eU9NQ/L4sXaYsm5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8epp98TR3T8calWhhoXkPy/1EZScBpQ/PcZV9cmMkz+m2Cce+uLZP3ni1jD21dA/+S4UP3RP4j9ot266iJXkP+GugAgcu94/T6uQOhdz2j9ZLMKKkrnYPxQRTxdX9tc/7TsW7ou24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w/h/2QAV3j9ciC5xI5vkPzUXnWPDC5w/QNr9c249yj/LN7h1sB3fP/DZFp5ucuA/7btBwewV0j8c6C7VUTDIP/XLzWRjAuQ/VTRCZYMx4j8ZampSPMzWP6bmDqRW8tc/0XpjQEWU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"90ya1JjL4D9McNhVF4njP/uU5eR4Qro/HrFeFDdkwz+j7Sa9RrbcPyfh9SbqUNs/iKHUAsKu2j/YtofgNHPOPyWqeCgIjOI/Y9lIeo0W2j8+i1xDB+rYPy1N8H1M6t0/Hp3QtGLB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7GNfYleT2j/vRaMSgCjlP2rh571RlYY/Zn38H1PloT88ZVPsVLXVP1fGwv/8WtE/c1c+l73E3T9okRnTRv7TP9BaJN4nFeI/BQ6WCqw/4z+HMjYwLtHeP9IK+w/dR9c/uoeNdIX35z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i/w6OkRO2z+ZQH34hAzkP7vmCmkVcZA/UFdhCuyUoj+iTlBrzajVP2AYhJ29xtM/sd1LaqPp3D+bbgXmSJHUP9kNJxM6G+M/qHERRflU4j93hN5x0offP4IZEkJePNY/5UO2VEpf6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V4/kRBLM3z9uECpJ3PPmP2ahTB+PUbA/yNXH4Pm01T94vHbeYh/aP+EwRfRfReE/FioHSzQo3z8zOZacXUXCP6bcEyhBwdU/Oi2+C1Sv3D9qOP/oi5/TPz5QLkPNTNk/SG1fxEOr0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1heb0wR63D9gXuBM1BXjP9UtvPbXWaM/WFxOB+IA4D/5XYKZpBraPyXv/Awz5uM/BP1IzlXz4z9xNcIMd+bAPz71JJaejdY/9hnAEzEn4j+KgKWFaR/QP5WBn0r549U/BBqLOaPq2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Odu2l/pQ3j8KSJWFHpngP4kD+aUOxZ4/l7eGWLoL0z+geKt+8XXgPy828co7uOA/J0/tKkwe4j9Rd0phiGzEP5xRagb9K+A/VE0AzMsE4z8PfYnOZ4bNPzIXQ9wHSd8/tSi6r2Fqzj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dMs3n4Bq2z/0Ux3IXrnZPwDTv86s96Y/7+1Ov31ryz950caHEkfjPx+JLeXZ/eM/zhb8ySIX1D9VUjesVOrVP7dU3sHaCt0/P0PN3F+dwj9r1Xil9cDUP1BNnOiOcd4/jyhTVPup1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6eCxH5DB3D+uHQjP0HjhP98dIyYiArs/vDSb6BSG0D+tvTJ8YrrgP5retwUuLs0/xEjRyriu5D9cqPoNTQDRP/N1VA7zbts/JQVJphQx2T/qbzBmwQ7eP5Tgsi+Y9t4/XVPg/Kex5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GAF8zULe3T/+EqJyH/LfP7RLsebY4YY/3UsYFgat0D9YM9x962vgP/CJdQ3bbOA/Lqv8ilJM4D/di9ffKy7UP4HMdmZbDOA/3CKsBe4K3T+5Mp0hBM/eP9KlqA2GHOA/9/0qKdhr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vXqjwWui3z+/OO1OPN/lP7LaBi1mIrg/9s9RW4mZuj/CvSy3ob3kPwTCO8e1id0/xmtnne9Y4D/9tPtElsXeP5WFB9Y7qeI/tLb4kgHz4D8iQ0ZPdP3cPylNyumPVNo/W49oKkaK6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u5MFljyi3j8/3z3qNSDjP9391oFlUKc/IX2YWjbrsj/mD1ZSQXLlP6NzOOzNq+I/QF3clMBV4T8Zek47fODaPztKQoTOq9s/EA6v01cw5T/+lh226DPeP7uNg0WsPeE/o3DG8I6W6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KdzsSDJB2j92AgFiuI3jP/N32DlzSKY/TzA8P4/vtT+hhPRZEkfiP8Q/CpBc5+Y/SmHngme24T/e+FtCdWPcPyOSVIYzpNg/wMJXbTnP4T9tHmQD9WfWP5nv8mUrseI/EeFlPrzn6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AMkobz6m4T9xiHi1smThP8o9kumxycU/7ox86gz5zT82NQseWvrhPw62EbXDJ9s/kIZjR73t1j/kCZl7SXLZP+VIoU5L2dY/XQBQCOii4D9uAlpWY2PWPx+ce4BDhMQ/arbiKTra2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2FavOYbn4T8cQtmVaXrlPyoKVB5kDb0/PrjV6o/zuD9fZwLuvIjhPzoBGx4CKuI/sKeIypct4z/KkfOSsCjYP8HaHByLY+Q/EOl2QZXb2T/OI0PhThLJP+irZrPY9NQ/MpbM+RdC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NNQ1uZqf4j8ur3y3ew/nP5HJsMGnp78/SrZDzcByvj9cxRrR/3nZPzoS76EJq9w/PX9vjOz96T96FIlLt4rhPzMWTf1Y0uA/ifR/IrVp4z8Rr4l2r+vaPxXNbU68Ecw/Vd4WNFoG0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s3eppYKK4j+zfEGs+2XhP8c6gJW5zcE/sE7X0C2QuD97HbSJ1hrhP1Rqf0901+I/0UiF6yDd3D+BvbZAhxfTP7tWN32PStk/aae5YQem4j8WdZ378TLVP2IYfZ1e7d8/WxPTx1Hr5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3X8sl02M2z85P0/WEoXfP2PGdmf4eME/HuqhncJO4z+aGzh4Z9PoP9hw6IBRbeU/L+EIIfTZ2z+Kok9WvtzcP+cecau1xuM/TkilkYZo2j97wJ607PHbP2RzhtrFuNI/uqJCGorp4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F0rTZ5+H3j9twoMHTFbfPw4YapAzUp0/17WqZIhtxz//ePwKoXvkP3ITacM0m+M/I5smtgKc2T82aUMKWTbVP6/BuU7wfN8/avyIO3KM4D9JZpWy0NXZPwYoV3XgE9E/rCt99p946j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/UczDNgX3j++/NM515bkP8ROEii9pqo/8B+AjH8F0z8MXZ+Zxk/jP4CLWbzVBOM/ei3yE2cG4z/doWXKo9bfP+KeBrgV6+E/7PKyByB03z+RXchqNs3OPwMmulBSmdc/N8i/jU0g0D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xk7yf4TW2z9dj8NnAXHgP4+W7drw3NQ/TnQE+D95xz8JRgv8ZYflP2kpf5BI5+E/cPoOKsqJ4T8DRB8IT4XWP+fjhgdlE9g/i/BrcqXM5T9/sEG9CUDWP7kW4CnpvNQ/OqVEbITP2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CQijoZfG4D8wBD8A7XrcP7Ed/NxqZaw/0nD9fc3g0z8lpv+J/CnjP+XQvSnc+OY/Ba5GliGt3j+05qrO4drVP1Dt5C4n4N4/jgN0hTJg4T9OmmIkX2LRPzoxwt2sKdk/Iyxsl0pG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FHaRtbv44D92lX6uyzrfP7y7WmDmnKo/FF9W7ywKzT8styMKJgbaP+/Op4G339k/RfWJxxRx6j9efCxI17/iP7XtxNgnbeM/5MYDXObE4j/4LOUJq6DgPyKLlehrnN4/qu52mzM96T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TDG+Wiim3z8Ltppt33flP1M7csCJvpQ/5nsjRy6HxD8gSHI7323oP5ceS60ljuk/yd8nWA524z+ZTDcv74XkPy9jC8LgAeY/UFSh/tPg6T9VzP3LROPqP2XeGrkR4+o/wFFJPoLJ6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wvp75hDg3D8ObmGB+LrmP7xDCxkq5sI/vN5IuOEpwT/J2bzXzpziP3CmN0Wigd0/GRSkHkNn5j90P+aINDXdPysUZDpxItw/lDQiwMhIzT80GGsMYkXbP6eSF7VJVtQ/7r+feKtZ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XcWR5mgf2z+oac/q4ffmP8DI62KPnsM/lEARHCNNtz8/CW+ZOPfjP48c9Yujf+E/nKi5t4Qd6z90oVJMLBfgPw065d3KLeA/NS591v+Q1j8oY4yNR/bZPxjiUZLYp9w/zljznckI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g9r+yDvc2T8Ww+ieV4znP27JGneTFq0/dpDPzUyAtz8I+RMWmQfjP1nCH+LYy+A/YI3q1up16D9pWQtB71rhP5vYHNLK+uE/kT5m/xlB4T+xJ1Elz8vbP09DfHaYjeA/68/V0OrE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gL/SEjvX1j+AQH8g96PcP+n+RPHtbb8/OqKjx6S9yD/b0Bn74HLhP9Ql2Zch8Ns/UVgvoAd3yj9bLDWInu3DP8sMC8bb3Nk/WxKalBQv3j/0zCBLXcrSP+ShmOfUCNQ/nmQHUCMx4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2isGo2zm3T9944hqx/biPyLVmTO+BsA/OiFH4lQPzT9m1OniPhffP1AFaF3dgN0/Vd4nYT242D+A0xXVFD/OPyFkT1YTH+M/KQnTDgT83T9pRoS/1KHTP7YFrmmYqdc/FQOvXMNB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mRPCaTIO3T/+3ptOMqPlP5F15jkZ/rg/rii55zMcwz/0tdEiiJTlP7RrQ08FCto/FKZYUZ9t2z+Hrp+/+jDZP4QRzsbixNo/TR+Gp6AL5T/YaIJWV1jOP8AC/PgWBc8/sAdN9dK05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qFgYh0CQ3j8BoHOR5QTlP7VMd7ytNpc/mN2K6Z6sqD+jigolcnfVP7rcgZMVheA/obG6rclf4D9V5pEbMz7ZP7rnamKsBeg/Wch3l3Tm4D+TZSc6OhnUP2ZXisrVJs0/XzLm8JmZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0AyqNeNB3D++VAFLeDfjP4I7zVUmqpA/mGV5p7Jutz/dnbcZLk/fP7tAdOcXOto/2AIpVRd91T9/MK/N8mvTP9gUycyWQ9w/EU9tK0su3j/PmBM3pPDYP81NrfS6Bdw/VGlr6bEh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"90+cHLXU2z/yTUJONYLjP3DOfxxzJKY/K3sfKh9vuj/KyrttklXVPz6y7olag+A/1NV15jQr2D+QuIn8hJfSP+15+tIO9eA/8NUj0wR22D9uMB5tadTmP1nobLu39dc/8Hrq9y0S5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5R0lqWX+4T9u0J/TARLjP0l8I4IuW8I/mbClJ3Lcuj8EtZFNH6PZPxWGpQBCw9k/CVIR1fau4j9BsseTkn3gP3AOs9e3rtY/ka1C0E/V3j9A80nSHNXjPw9VXPInPd0/TBZB3rQi6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o6L0m/fJ2j/3YCYy0QHmPxmg9bz3Eps/jg/03SSIqD/lVSVX4N7gP3y2NUlEX9k/j/eOys8m2j+SGD3QPvHTPwBmJJndKOM/bm9I4SQ73j8TeQGQQ0rhP/DTDBBvGuA/iyFDJ6k55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dVWjnZM03T/g7KCnR/DeP7kzFgjPcZs/Q38evlUt1D91z0kfTvblP4HUcEeEeuM/oHIQYVls5j89zg1Qg0HiP3AofU+mpeI/m6UHJTvR3T8EHECszTvYP0FTXzzpsNg/9UxsPe9C4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZdOEzKZg3j9gxri9JxPhP0fxYHXyFbY/jEqRz+O+xT/68xB3turhP24qN8YKedw/0aSfH4WL4D9jsdYixVzeP+MdnzlIEt8/r+c/3QaK4T+AlDcQeDvWP6PJa3X6q9o/NSksLU605j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"49GWFTT22z/2Vm2liu/gP47gTiiuk54/oj6yfJUqxD/R9dZ2coDfP4aZsAB2V94/i3+5ruGe4D9bXT+uS0zTP7zyJsBZGuc/I3Jegf9o3z9dnGGUpMLkP+etVX5ZZ9s/xaTJ6Mga5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rvJFTqfx3z9wZUk/PofiP776mDO3yYo/zbbK3xXxwj9GNI47e73dP3WJYV5U/dk/nGhh2IEh4T9fqtdqLKLQP2/njHUbdus/yedPXBrF4z8FGwOdJhHhP4V5PgKfxOE/rVtcahfD5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fkVnGmgP3T9VUTHB2bnhP/zlv9fAyow/VZ3YWz6Dyj+FaG6XCADgPyO9s4RaTtw/8H5bodMt4D8p/g+DVXPSPwOZaedDB+s/X3Y4f11S6j9eGOir3lPiPxO7jvGFfeE/nuuAXnkM6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BeJg0z553z95VLBVsIPgP9T3maUaUbA/ZBKaVds/zT+7tY24VWrVP8OHW4CfgeA//GN80voP4D9UIkaXAv3UP+gWcnScvOY/4VsSZnom6T9KMj+WDUDeP4bbM/mjKeA/VcCYjpMN7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RjglIR4N3j+gNgbduofhP0e0lRlxi4c/0VjW9bxZ0j+jBOyc9ffjP2dOK4qTPNQ/lvRlHssV4D8HfGZYtL3UP9szgDcGFes/iDd8bB7M5j/ssJhK6kTaP+JWGkxSnNY/tM7qjjKp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B5PKlgrz3T8QX+WP9UngP2jkfvG3rM4/Ca9E2idI1D+UhuAnSo3fP+3fYbu8S+c/zsFqW5Oi4T93+Yr2C7neP7GSsKV/Eec/1a5ecCL94j+/HOQjoC/mP7n49E54uNg/ifW6DoM36z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2FRS5RQu4D+ZWpzMBxThP0W1nr38uM8/+mZMyHSewT+c0ddC8r3mPz1KP84xKtk/LXtOvOs55j+G35lITZ7gP2KtK33DWeA/O8JVGb0I4D90UlUfVhnePwu9cPCh8ds/sMrCTraB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nCbSLhAX5D9AQlm9r2/hP86jnnLXLrc/kkJn18ql2z8ZOCv20l/cP3bcjZP4euU/egzWFrwf3j+X5xilE43hPy8fxaFzleE/TQAlOJLC5D/PWBdjSJLfPysFV7Nsttg/Vl+wOkNx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sYU4ijWV4T/3Nt9hDXbiP8GqKvhj9sA/itbWQ5Wy2z8iV1LHV6naP/lvUnpJv+E/5wrq6OxE4z+/BXguuGvVP3LWVKBNc+c/aKXnJhRb2T9bPYc5BUXSP4a20d8HM9Y/XIOoGmyp5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FsLC8rD64D+nG9Co8lHiP+a4Pe3wLsc/c/+BX6g+3z+UkRftnHvdP2cUJLlvat8/ZtY1tTTR4z+ggEuTHSDYP9FtFna1qOU/lLnShRo03T+/EeB7EHbTP4awok3x/tY/cAHjyURA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qZU9kVvo4T+UQjgJ5Q7kP9e0VB+N17A/FGb8DZKzxD9XAK936VznPxGU7x9hi94/UCAKsuUV4D9jDmB+SJjbPzx/xbIgX+A/JqNEWSrV0D8y2b2cFiTRPxvLseNcM9U/Vh0aWdGC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7HhgTugt4T9iEWl582PkP2/71cGlP8c/7DTZNHZgvj+A/2x2IgrfP9xm4TsFr+Y/RIYLLspp3D86F0+zi9/WP0YjBtPa5dk/OcWJLyj43T8sN6eV8b7LP14jIVlB1sQ/MONOHkxc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MxLecsML3D+DbVVVGoTjP22Dgv1u/rw/HrS3A6BAtD/RIgKvAWjjP3vCT3Y8+eM/ieRiQeFZ3z/3q1M6GnTXP3Y+7uQks9Y/quDTCDgewj9yMZF7TDbGP7jsvL4H5s0/PXXo1E4B3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"muRT3gE91z+CyxHFU5bkP0SP/JEWM7o/G3IBEvozqz/AO9jTDpfiP1/zKELy7dk//fJsPeSc5D9YpCAa2dnhP18EXiReqt4/b5fz6OgD1T/7wJPmQ57JP0zhr9KMpMg/7cKu6fXT4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L9vmaLHy3z8Sg4VspqPiP6vjKFsMB5M/uBDOocPutj+sHG3Z/fvaP08yV9L3tt8/0ECohp6A4z8qw5PRcLXdP9g6APC9tto/gTZaNIiG2z8gbFBvApDVP3p8LBD4r9I/CnRpGSUP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BavRYFGP2j/YR1hqHoDjPwl1V22ZiqI/iZrLXTYsuj9NT0lTUAXgP3C//aX5Zt8/4vMwW+N04z+sjWT87y7bP5ffZKr47eE/PpnG9K2k3z8UY2U+nEXcPyGcoRQAGtg/98pTmsn55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TboWbYV84D+/sBcf4zDmPx/SLJq0wKA/PggMBLU5yD+MmiucAtXhP3+S48G6lOI/T+5paqen4D9x01VJfwTeP5rWTQ3pe+Q/dCFyYgSm5j94qEDwUU7YP6nsY8opvNo/Jlgq8zfd4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"shOq5Zg62z9w6xd5RtXkP+K8hT9MHpM/RXL5BeyizD/QC351Kw3UP0eDSHBE+tU/+kDTQApl3z81e54ImkDWPxKXS94E4OY/81B2TA6e5j9Exd9kJcDLP7ypHSQI89o/qwcI87i86D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"80KUfanW3T/DWuJV5LfkP9lBfCkuwZs/7pwzIpX7yD+NcMzve2zXPyKNYloDvt0/7EJjvlEp4T/u9cL/6f7XP4EZSRiJveI/8KxkF65p5j+GmmQV03vNPxUCunuUXdQ/O9DhYd/J5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KONPeY6v3T/IlJBzfH7kP0aShbXDYIc/lQEAhd9/qD+ABhMLn0/WP44CJNe5DdE/XqNSy5dU4j9KvhHIl/TfP34ZvyG2/OM/FG3fOGbt4j9H20y1phflP9PYfaqMg+I/bixpaezn5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jcpl79Ow2z/S17h0VOrjP440T5Vr1rU/h4n9x3r2xz/SYPgqkqDoPwegJ5f8Nu0/kueANtcb4D95NJSqr/nUP5JbRytzJuc/SwiIdKGT4z8+9lOrCifVP7hd+GkZ0tU/7khUKzT64T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"geCrYx5d2j9afeg7lCzkP8CCEkrM47Y/ryH3JwA8wz/59TzVF+foPwAAAAAAAPA/WrusOByP4T+ydLu1dgbcP390lWN0+uY/Y61+fRHC4z+zTo57FjfaP4rHFuo2EdU/BzBL+gV04T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/PIgZnjW1T/3oBKP1nPlP0u1p/1sltQ/afJNmPf0uD+N8iRscS7pP1+rlBjZIOQ/GsEnoa0e4T+btwKi+jLbP9YYe4wbItA/rAlMX6vK0j+Y9hOSig7cPw7rH0uSteI/cYqu0oAz6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CzU5ycpg4T8KA/s47rHhPzaxS3Odg58/DrmBAn04wT9eltvQXjrcP1qnHGrZLc4/qlLOuvRU6D+Be1Xch6TjP+VfI5RWmOE/DXZ0uaW65D+M2JMf6LLcP/cSjPkbFdg/5iE2hA313D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JR+HESok1j8dYugiBzvkP1cn3SIk+7g/saybfV00yz/yzARS+5reP8yCNMG9it8/69dtwpt95j+Njb/2/UzlPyTl5rHLUOM/CfifAkxC3z8GyR1eMJm7P/I5pP+dHdM/kDUNRvP15j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ngd15RbC4D/M6wRfcWHjP2OkixhGCbA/l31yyoATqj/FwLs1NPHlP3CkB1N7U+M/1qllNodh1T+D25D+7vbQP85V8tPgwNs/a5NauKpc1D/HWDQPBS3jP1It1Yx7xd0/IAiiY4iz5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oas1huuv3j/4zj510jjkP+6ORDjFJbc/GdAxeZMf2j+D1Ad/9ZDfP+qn6J/Arts/9pBDRH2n5T/AuIstJijiP02Ow1axMNg/xp7DVOC21j95PcfbL5LUPxEr1JZ1o9c/XdyznESU5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XoA+3g/V3D89jamrocHhPy5mciMZUIU/7W8w6d5Xpz/OumOuTKncP8xNEDZ9vdk/b8kXrWIG4T/3MDTIhVXaP6XZqBf2yOI/ePXMtycL4D+RqeyiSXPdPwy4XfhpGdI/9h4dnoWU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FtRmCzYC3D9vlAxC93jnPxJnThDvXLk/zReHe+WQxD9usUhhhJjZP+Kzz3jc3dE/75Sw1sYL1T9bYJPIWmHSP5ELEjTgn9s/mm5kN1Mk3z8NC3CmByjDP4eDIte9Ydc/n9ZGYkXV2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MKehXLSB3z/yyT7Z07TlP3lEIqmAM5U/+oSw6Oxnzj97v0qcMNXiP3C/4hvPktw/iITvfdOM5D9iJ/knZ8/iP2Ox1xqGXOc/4vqfi08X5z+hn7FZbnnjP5+JkZVaKOI/wpQIHedD6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xTinKzh23D9Vi7PoHiLlPzqR/C2w+6A/6BAWymmaxD8Ez5AImyjcP9i/+YrOP+Q/9NTaaUm34T9adbXe6/3gP2MPj3a8kd4/MP+641O+4T/b9306jgHMPxmJSmrQGeI/5MbvXQJF5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SwCjO8vu3T93AJwxzrzjP4x7+yGkL64/HDms/FhqqD9I+o33EIvjP7f9IMfieNI/wGO4hO1M5D8ZIDP/hb/fPzDNxvZeP+I/xlE5J+fo3z8AAAAAAADwPwnnk1uDyOI/NPJ59z0C6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pyo491Ew3T+2sMzGmhvlPzHkn2VKE4o/fLe5MA15wj8a9WSKsr3iP1Vt7ikyvNU/dPwtqzvx4D+TlzGCNazaP71hWvOnX+U/WYSqe7Wy6T+egylZ+/PKP2s/203gVNw/5CU4r4Nm4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7tckgS5z3D/MlrbLwpXmP1wQDJdparA/R/Um/8Fdvj/q3DxJLGzaP4hBynTC8uI/RkMim5Bi4D+WJNtI9VXZP3y1vVVCC+Y/6Aau/0Z/4D/Zd/GQTrPZP6sE+n7H9tM/2FGbIRIu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b6d2NIOO3D+NRm9SAVrmP0I7ZS88Lq0/DQvy/AYatz/FjiKSsZLgP3E4Zlv/bN4/qmCBiv3E4T+8QAR99xriPy9uSwUBKNo/L5XZHtR12T+OXiImmpLZP/YyLcFyK9U/dh0lXGr45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6iLbOklS3D/pvImG9qfiP6KX62zSUaE/0tX0Lmx7tD87RQXyZU/XP2s0CPcBj9U/3KeljQUv2z+nCk37HMfhP+VoyxVctN8/NO7kOUnG4j+AGWVdsMvbP+AuWydk39M/fwantTSR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FaYFFiHk2z+DaMdUjQ7lPyNtBZuzoJw/m8F7bf4fwD/+Sr+8Q7HcP0cJDLspz9M/MPMj2NnB3z9D13GzqJbbP7lencwTVeM/Wu6LQDX74T8N1jYkrMPYP43dHEarz9A/UqVYdeyv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dlENBJt52j/GwzxuY/jmPwcTQXwVnpI/6+DjrqR1tz97sU99mp7aP0pJ1XZ21+U/sjC68DpP3j+dEfQ7GF3bP3LpaRZDx9w/TmetlAdi3z8nopf/3nHbP57/GBc/Tdk/M8YQzCtC6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i9SVtpPS3z/Sucfl2QHlPzo3Noi/E6w/f4s0oTutuj9tyMRolbzZPwn0acVjTeI/wzWjnK4m1z+QKDMj82DZP3RGPzKHz+I/qZA+mhkI1z8M2Xb81UzSPweCV2JHTuA/m7nqkX/05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sovQ7K9/3T/H7012JbziP6YZZ4FU7Z8/ZzXCtB0Ctj/Al9S8evnhP32tlttideI/e9HX3wJY3z+AvpBenRbZP3WhKnZnu+M/xupT2z0M4D+0PmCFWTLgP81h8Jfks9o/2n8gBENx5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gec9icG83T8xSKlRxS3mP3/b93M9UaQ/C8e2YtRjsT+21goOdCPTP8UylzDLgbY/Eb6uV50A6T8gbu405ZrmPyujukatWeE/FZGfZWDA5T9cFkrjvdnTP4YPd9Z75NQ/lQMRrO6s3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rgi3fCqG3T/EQm3KwejePzeHG0jgIrM/XNAT2tKsxz/L3A5J64TrP9hfjUp1x+w/JyhDWHt/zz/TTsJ4vsrNP63kvUFWpto/IRsloX1j3z8DmPXELXrRP4tIxy0Sq90/qrayvuNR6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IvKtwbw23z+I5RskRbTfP1F9bsDs/ao/wgudre542D+ltwCCUErgP104C1h3o+A/4BkncjB35T9Igg89TiXbP+UmRt6K9OQ/d7pjQRUi3T/1Mvm7hkTTPyo8RoNMSdA/F3MI+4333z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"amfjtI0F3D8q3uOZ7CHiPwnz7ivGK5E/EN9lmqob1T+moIR6PybgPwjNtwjupto/YHHoujW33z/avqRdOingP+YPEJ5omN8/QgzjiZSQ4j+DZ+YHVSzFP3YyQkkDLcs/QPlpyA214z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n8caCP923z/YLWP5rUjiP7q1/xXHdbY/5dPntpLSxD+v+Fxs6nPcP2mSOGDbDdI/jdXvgMFW4D8w5udhL9LdP4dUEG7/Stw/CrbnA73L2D97KS5TC+zRP3+nQsK+Ztg/0Slr06vv3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ah5E/Fzs2T+XTd+Y9sTjP3Wuw08o1Jo/e9Pe5U7Ypj9NDROxTHjaP4Gdo3zxo9E/C8Jk4Hw22j+wn+5QG7rcP09mR2V7/9o/rQqB4jba0z+YrhKYOcDVPy1fauqxu9k/Znx3IikA3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NN6HxPf84T+6Tv/DxW7kP9PXe+yXI7g/R6jUqspj0z8kBpXVA2zoPwGVWrdEnec/Xk2g7uVc4j9ELb1jTqXSP3uTM62g1NY/pwsmoOvw3z8fIvkANhHRP9q4/7e1HNY/6jgXqwIb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6TurByX22j/uFbsVjBviP2awxkELfaA/KPPSWM2E1T9U56WjiXrbP3fYqHwmeN4/UPkv0Sk64T/NlbOBpknkP4k0hMIg5ec/I4Fa6sk64T+N0Cn5kN7bP0n0hDXl/tQ/G+8BTbDQ2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/y9liePJ3j8CwMxwM5XgPzACSjVl/rA/1xSq+f4P0j95STdi+UjjP+b2MP666NU/4806RJZy4T9bLeBPymvZP1fQB5bdf+A/wkGvzgO44T8Ett6Qb7jTPz/nmLqjedY/ScjrW9fO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6lO/3aA33j/h54EiQ7LjP+wUMxVJNsI//ZNQbIgQ0T/IupBXOIfmP74NY0SDSOA/CndQKm/j4T+JlljlRADcPyUXrYHQxt0/LDjUYEZT4D8KJLHQOprVP8fVKdzwb9I/xxzZ1JZQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hwhvldIb3j+no91cZMDhP5Ps7wUNZZo/MZOoVsorwT8G9BP6aVXjPzx+qyOwZeQ/R8kiKtPy4T8I3XuYMQ/YP54gcF9MiNg/U+gZEwII0D8zgt0QGQ7QPzuc4UCGrNM/r26Jbn/a5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F2F7kcLH3T9mOSApEgbgP/9+3BLERtE/PH+H4e3ixT/UCSVu3jLjP9Zex68J7OU/I3O2ySnW4D96KG7jS5zTPxmONAk8O9E/p3xLqD/Y2T/Y4Yc/2KDePxW+6/zXQ9o/UFSHjMc85D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PnproHIl4D9ZuBiIaDngP91l2Av/kt8/7LNkBkACxD+ngWAsbkfjP5ga7UgosOA/SnNdjmf63D/L8V0LAvzVP+7KyxUL9eE/43Sn93xS0D/UFcUIHJrVP8/u2GswIM4/Xd6ReTuT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tw52qLhw2z8xtVAuiujgP7Z2j9pBOpg/lxP1n/t90j+BGhD4p63jP/k4d0oNn+M/D5m8X0FF3T8VgJMPtH7SP49V4crwkuA/ROS1QP3Q5j9GjcsKAre7P5SK8gnHfdg/LHjqZCMP2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9m0mEQ7F3z9YfsX9bwnePxLgaY4rM7M/ZtCtFJgCyz/b7whuAT3lP+baqeT94uI/3RZjjW7M2D/75nunTUTGPxqWjETBQN8/jZ1u0y0x4T8xHXGwvGvCPwbkiPYj+tY/NQRfEZ9L4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9n1Jxjdb2D+6peXRPGPbPyjyzkkInME/67h0sRkY2z+lKTKBTtniP3yfgtCYVeM/wm5rLLbe3z8+uvlhBK/fP9vdDc+4atQ/MrTO1l+lyD8Vvm8Gcj3iP35UpsmkU9U/lQQbvM325T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"39BQQxIp1j81UY4D/OrfP1rS+goHhrc/kTKXsoqe3j/f9Awjk4rkP2UCpSQn4uA/lXZjqsLF4D9n15Me/wnbP2sv2in2huA//9AuRQVR3z95kPt+NkfZP7Uu285Xutw/bsabXrvB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gAJxZoB+4D+93e9tV6LVP9uqzXbnvNY/MvE4/RUD0z8fTwwFNOHgPyWmyvdZnOA/+TZbUERh5j/D0UOQ1O7hPyxlNX1tIt0/qL7/Iyhh1j983B+3Se3XP6r+3TaPjdY/QJAwhVZO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8VybRSUm3j8y8n38OoXfPwUpsAJk94Y/TP8oTqhO0D9vuOpcnkLhPy6dYF6lm9k/J2pY2q584T97X4hSDzvdP3OCxSFB/OM/SDS6pfkT4T8EtIgc9IfVPzTIWGe5uN8/zFjcRxa26j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eK4q+U4Z3T/PTzTrNgXfP72f9o75b4k/IJ99sI5O1z8VwkyXTOjVPz/Dwg1iBNs/zc2Lzpow3j94MtYGYOfdP8vCXWgpo+Y/oszkmQTc3j8xTof0VXjUP6Wcr2Hvx+I/CdIMuWOc7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hf4YmVDW4T9mTXzHdfvjP9SIx/Bf58o/j1Q8paIztj/rq8UfAl7nP3swBta0OeA/dgQHqTem6D+lQcBio93mP+mZSI0D/ds/M/PUAFcj1j+v2Mhqv3fTP+lt2hAR2ts/D8aZQgSj5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ll7Trjx33T9fwLWpzAHmP3xowJwISJU/niaOqJvVyD89X1Ee4o3gP8qn05WHVds/EVHLSZag2j+IO17XJlbVPyv9jSSX3eE/ADca6hK14T+Byn6gVB3cP2VFq22fktI/G5ZbKXSb4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rJMAtjru3T/yF2h+1SrmPxQla4/NGo4/8u57VlJxvj/gBDzST/TiP5HUbYcLPeI/LpQQ6QwO4j8knOKyogPYP4c1xixbKeQ/j3ua7h105T9rfa61SVLYP1XVOOYHpdI/K/g7gQWs5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S/sMIzha2T8E1p8NGWvhP0ClO0n6x7M/O6MnS58Guj+DZWX+iTXePxtv/6wXRNo/8vUWvHYL4D9KqaZWntHdP625DiBfK9o/qb6mt5oR2z8QrK6e50bVP4pJraiSjOA/Gtqw+shG4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YdGqqKjh2D8SOHywe0riPwqfunIjmqw/2wAY7Fn+uj/oAnkUofDfP+XhM+ricuI/Ji3RdTaY2D8We2wA6dvePylsHE6QxNk/RLxjpcZX2z9DTxpUzgDVP1R7Ja/Cn+E/3nH+y8GZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mWs4pIR74T8JF/Z8z1/mP31MwJuEOKA/BmkZu1o2wD/FagZadjjjP2B9IkIpQtc/Rcx0d+tn5D+apj0aeSviP5bAS1u7kec/AyuyxUIj4T9UrotVzpvUPxYUbcaUj9U/5iMzThg20T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2dKiVpu53j9bLnNZLqLmP/34C6QUXrM/rcDY55VmvD+1OWSzvq3iP27eX8IeouA/blDP/Xlk5T+KUUpucwDiPyHFyv65euY/GyDAfqRe4T+k3eu61jjOP0thgBlhKdQ/aOiQu1XA1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dZfh8LRb2T9QexjEw0biP+K4M/CAu6Y/xh4i4tVHtT/H60D1dUXiP8FT/Y/Kj+E/HL/CTEZI3j/kk3Z2p//UP1G8X7TgQeA/Qax1m63o3z8n7xzxa2fRPz8rzCkxVs8/PcYeHBAq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6JYS6MTO4D+ESdTaXuHlP8GZFIE77bE/BKEk9IZuxD8Wr64xEibjP/8oQHKd2+A/DgTOSfO23z/M9XbyupTdP8ne1YAXzN4/tKtafoUx3D+vX9XWp0HbP/m7cN1XE+E/M76YWFBG6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bq1SxKwA3T+dszR9AoDhP5cL3IiOH5k/jaUoHDLMuj/bI0wjNMrhP5BzICIcFeE/BrMFI/144z+2lWE/QALdP4tBD+WveOQ/119X8RxG5D89fjgmODfQPx3dPpqgz9I/dWqf6T0j5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"57NSdGL52z/twVbYFtTmP33eT6FOEKM/nxT8nHfbwT9leF/i+RThP5rjVFLCwt4/r147RzIX1T+oLotGTNTPP7i1KHgaoeI/vmpNu2H43T/ybUbwvUzgP0herpKcu90/WLclyisr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"02PBzxFT2z8/qufbUp3iP0xAXikIKJE/zs1VuIofsD+U1X2GZKDZP6Dok9tVUOE/d273JMeU3T+GOwArUlTUP0WRE8Ts8OM/IuWNYdse6D/WNgAC8XPJP4MEYV5jOsU/b0dzP8yw2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TM90r1Id3T/iU3vaeMjlP6RXYi+mqpg/stfAS6ZOxj9n81qiEK/iPzmUzhVFPNk/oIuJl+Ru4D8CyCV4pGfTPx7SjTmM7+o/WEbSEkhD5T8afJsRfC/TP94/pq8Mitg/zGjrG+Hv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"svbXUQa05z9fXdtBN/rlPxW8hcGKW9g/j8VFB0ryvj+yoaFFhqrkP5tWgE8jOeM/09zYLZZj3z94wBCQzQnfP7dvaQy+gs0/EZE/N9Fv0j8T/YzNcsvbP+0jse0HKtk/+b3P65hC6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wBYwqJA56D83gArU7ePkP/eLm3crmtE/o5JVL0BOtT/8Ts6gaIzjP3i8L8gSvNc/U++Da/JR2j9mSrsBVd/bP4qRFaRhrdI/2AduDj471j9xt7qBnDHfP96YS6aAO9c/KkuWFkZH5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sWFziZ7A5z/brcod32PlP/Z3ZHUgAdA/UZbBwD/3wD9lnAEASdjdP7Yt3hnkWdw/pL4Eek/x6T8nZxPq7fnmPy/dD1X+SeE/rgGB7r/N3D/ITctmE4/cP1e49CkDVd4/QbyZsGgO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IJedEhbm0z9z0XS0qaziPzWSkVjQ174/uBHXdiZdxT9qzZyK6lzdP6YvfLQFV80/EFRmjUTn3j+tRc5gEw/cP4p+5Rrqu9U/VkPh3hnG3j/y58k+dX/bP1CyU9u2X9Q/aEGcPS6r5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i531oddK4T8r1ZrmOUPkP/dojpt666Q/4LVUjQbSpT+iLsn8ypLePz90pN5jp+U/V6mfeDSK4T9kGj3qQ2/ZP4oDMDpBDOc/FijZFnW84D8QL4Z3pKbcP6gt60avwOA/KyhKEFIX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9See2GFL1T+xiTNEPJ7hPwK64cojGLQ/oD3LzF091D/YB5PyfajZP1yq6QeYGeA/Uyfj93Yr4z97YlQecVfgP3802d8kCuA/X/hfRV3s2j98kW6NGanYP9/iWwEyVNI/bJuhoSQB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RgByIKyR1j9c08ckHXTlP85aMArfnLE/kyEQqD3Woj8WbseyUsfZP+pyxBSA4dU/ih/Xdsr+2T+Wo4afg4rcP6U8CIegkeE/cAjWDgB55z+39sqJgFLaP5sd3l3zu+E/zyPZ0yfi5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k60hzZyN3T++fnJ+TpPiP9k9FLFqQbM/Rny71WLfpz+CliFn78XYPwVMGj3CCdg/oD/Ltcq62T+pcL1UYcbeP+2qmmDXMOc/Bf2ekah73j9U1PCc0MDfPzmi/Yi+FeE/R6PJD02P5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DW+1S2y93D+VfSZdLIvlPz1XOSm3+XU/2cGSsn0PyT+eP2itjzbUPw4CE+ir28s/UBMArbOQ5T8GpHQvNN3WP2qEUflU2t4/lbuONr2h4j+Q5azlY93ZPxVPFJi5cdY/4IMC0zYl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7/Ip/fcf4T/XkEwP8ojiP9vkLyALoMA/wnFWUsjtvz+ecKr7CDDePy1hid6rINU/fLa67vHo4j/mvm/SGMviP4NAbp1ivOU/UljhwoQ43z/MbCdBOC/OP8mb8Eqd4dM/PNmC0q1R5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9ieLa0Yx3j81ehob0yrjP5aODIRnE4o/AgHG2TpUxT/6IIHugFTdP4LlDrc2U9g/YaasAwxK5D/DSzvV2P3fP8kdEqlCGuA/XU0ZlXf15D8F4Pa+fsjnP1qOkmINUew/ObioIiL36T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gCgBtJOw2z+aa2h5Y2zlP9116ab97sQ/D35IxZ0UrD/X4Oc7sBrbP/Cka2BZgNw/ykBE5vIt3T8qzAfS8PveP9yAdcebht8/M6lk3NF53z+NrSE2dd3tPwfCR0sCg+0/CH1gKT3p6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7aeKRpJT2z86cbMLw9rkPwThFA7hA80/iMUjxwVFqD83654dvRLhP3rH4R2ggdo//p5H9Xdp4D/6gYe/SkLeP2ONVKm+yt4/pAQpwvqx3z8C+xYIYnTsPzvAXd+hweo/YvKCHPqA6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eKw7negD2z+PvnNsJ/vjP2zkulbcLq0/ZlKS1cqAwT/W+Hny8bzeP677h2yKN94/tJcegU9Q4j/tbn3G8YLZP8Iv0tzTFNw/1KIYX5YR1D8mIwcPt47MP8wbIATJXNg/r4xNhc5G6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vaFZaFDi2j/DfoIylRHnPw6Daw0v9Ms/YLmwG7icyD+XMqQb7onaP9NSyAw8Jt4/RibOoZht3j96SysJKCLnP82VQFGix9M/xMP75qIL0j/LKc7o9azXP4iFJOwcn98/F+fAiwrl3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FdvtSnwo4D/70TcbgFzlP6RJ/UZvaqQ/PHvv6skHuT+2v5Y4KDbiP+xNCraLQtc/TyZ7ONqR5j+9onBA7/zUP8uc2j8ZzeI/gmnxd61x4D9MSKzmjpfXP0QdZnIr5NI/uuRznV8i6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dccxQjCP2z9fg5qps3TkPzRLzntut5Y/rIEB25KwtD+Zitr40i7aPx42HDpgVNs//U9YfP0j4D/3bZi/khzhP8gaK35qM+I/CJ6WvZSL3j9BALZDkdHcP3MRwYSlAeE/95HqCzd65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4zNOuRQj3j/dxo4GTx7lPw30MVFFm4g/+Z19Upc/tT+DSOOPo07ZPx0BLsN0L9s/ZJJ6thB74D8INd7k6afhP2d9T01pzeI/weNagPO62T8JQbA4zn/cP9aTK+LjZOE/ehgo4Geg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d9oKiwjG2j8O/eKvAbfkP/1uzs0Oy4o/qBG4lmsvtz/NtF1Hd+bXP3ePkfF3At4/wpQKVm8s3D/rKEcikHPgPxluOlfP690/jMo5OUf/3D8HQV2N1a3gP6c/jgYODuM/APrKx7e44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iEvRdnjU3D8VYJANixTkP7ZVeZhOs4U//V1EHyOOvj+vyDj/Zi/VP3IFOi5Ap+E/IO16O09X4T9nWwjYg9/gP6NpXX6xG+Q/uuBiisM82z8dHzB+137jP9kfpnVefeI/zW9w1ZD05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"On2XWF9b3D+dqpw9ZWnhP3eC53GjV60/XElkI3rpxD+ZVX37DIjaP/hBjsXxpMY/gcvm57X05j83C4Lk6vngP6K5vvtUv8M/S9Eyrp5Hzj8fTxsIM3PmPxYYJcjZ3t4/36MJJRlG6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kbCT2BC33T8kDJX9qlDiP1VV+4Fcq6k/YVBC2Amzuj8Ep9fUYVPZPxinQrS+OOA/2JCRq+EC5D+SzfRtfrrkPxmZ6XjGZt4/ChY0I6unxT+ykcMphpTgP+VcRh8s6uI/ldPM2dqs6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Bt7H6Ib3D8qrrmka4TkPwnI23lf5LI/OLDxFLTtuj8yGX+Wj7bjPx88TM2DWd8/DFUwDtO15j+U8SIcU9baPzF6OtwmQuE/x5KPSv664T/4DiDoO4feP4glvI4E0Ns/16OlNesL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9fe5tKQ/3T+U2KL08IDlP0fr57z+xrQ/TW7HfB3Xpz9NVqYPLy3gP5Ejf5GID+E/CIb+6SbV3j+mLZJvpkXhP0v0vSMEsOc/hsOOBeIO4D/znH0Vpx/gPyyciEyoguA/BRCaR22l5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DsubRYCx3T9Ij1Nt8fbgP0w+6c2HRaA/OboITyODxj/6tbBExIjaPzgEmF1pWOE/QxjpATrU2T+3Z8CEDjTaP+1nbKZgLOM/DgGNq82E0D8Kv0tu9IHUP6ZMgP/IX9c/iGbRI7JP0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mrpcUhRl4D/THT0XvlXkP3JAMr1xe9E/mZqGiRFHwD92ZZ+ITBblPwhzKr04t94/Ek95tOjK3D81QmhJso3UP5r3LxCop9I/7df5kJ6u2z8Aab6fRKfRP7UXFYwfsNE/L03gectv6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"97L4s0BR3z+Wv+9McI3mP4UstWrJUbk/IgHHsRKN1T/gtIxdZ/7kP5vnVPO+meg/UDS2ZJdp0T/fqh1yehnPP4IdGJSzgNs/ZfMDx8x1xj8BeSKVPePTP9rgq5LFDtc/xTsz3tXt2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mXMcuaGB3T/3MiSv5wzjP7ztSffdFKI/XiySD80toj+MZ8m6T7HfP9h5bGQIg9k/7isJCTiO5j+IBkazCcbgP2wffMk0juM/rY/YO/t16D/ws2HNSNfXP/wxMT3XmN0/EjTPkk/m5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SmJJPd193j+4x1ocbT3mP04WJ3ZuUq8/4XO5XtNmyj84qn4q6gPfPxHBqIAmGds/i9wJ0oy95T++k7K3JY7mP5bMNCGB/OQ/nq1ITgb82j+CMFcRfpfcP0rKOzZHkto/qQrZiduy4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lnIvpyLC4j+phDlvIMvkPwqcTY4yXrE/Ive2LemJyD/RrP7YVEniP0iK35qqFNw/gcEES6I74z+/haSqmSfjP+WK0rVNE+I/dTy4XwFR4T86fO0IEI/dP7dn3/10Vd4/VKS665uP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZSLg9jscxT8jciUNyaXkP/5NNdvFXs8/wxe6wt7cuT+zPKIn7ozdP1pWfupc5ds/8TOBiShT1j+MOLHEVMnKPz7tT2PJX9U/XHBL0lhp2z8Kj6g4PtfRP2hGLPhOsdY/0nE27WUl6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ANCnjZ0P1T/0PVC8uyzkPyjbJuaRPMI/MCVfTIKOtz+hAAIw98PnPxDnyraFjOE/qJzIb7f95j9y+YCO6KTjPzbBexQSF+E/9miTeEhI1T9JqcpgQDPgP+jNCZCOSNo/GXzfriMU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1P48lc1y4D+HC4hSRdfiPwuCWLcaSa8/mIjEs8IguD9PmHL70JDjPzZkVTxCTeE/uNq4EVEj2D+xIP9SNonbP9iOSXpBeuI/RQmGnuP52j/CU0QZURfTP6YebLQH2dE/5urBKCXH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ajX/kptG2D9f7uGPyMbkPxnyGhqbFbY/HUNbKgBmoj/hGVMH7GvjP5y5/aY5j94/rGPtIPZE2T9N1dwwDCjYP5Mtv7rpltw/HRwfSBnc3D9XqmgXDETcP18K0TtZHNI/sNA9+IY84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MkOxc0xT3D9YlNVYqAfkP1W9WlxpIsA//zb8pvj4yT90x5UNZmnaP7wv45zm69s/nnnTxJAe5j/3IMbDft7gP4idnZrV+eQ/byvuPuoh4D8vqg8iYlrVP//U+djaLdk/D+oW3UtO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q7dVmO6y4D9r6SmlGH7iP2UbeDNl3q8/zI/V+ygYwz8ktQSNmwzgP4EVsX8NYN8/UPBN7IAg4j8tOJgRpizeP7op1Kk47uI//xWKUN3j4j9TWKCE0mbKP5HaSr/mYco/tHQyxLY65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g8MykC7k2T+Ra4RCgE/lP+dTwQmKj5k/C5+FDv4dwD86TseAuSPXP99+JDvH680/WhzJxgBH2z/MixwIqH3ZP1VlGejmPNw/h138zGH62D8r7GzBjHHYP5pah0R329o/GieIT9g32z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Skp7uugv3z80xGeRaO/mP7tULuMLQ6E/kRAUV4aX0D+/fHZ6MNjkP0NEOCriQuQ/yNWgDxUZ1z/3f6pia6DeP6P+KNwxJeQ/vCWKe6054z+PJowfWAriP8bpkhPXs9Q/28yakRac5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3Zy0Qb8m4D/uuvQrF1blP/uv0GDQcKc/PkWOT5sSwD8uH7Y/s/LhPweuz3kcBuE/BG+hEW3X5T+Lxc2IVfDXPxG5N2t0oeE/6kTUj5lP3j+Bu+u7ip3AP+867Kuy29E/htC/Rm0p4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8fwLRf1c2z+DvQMapMrkP1FviqTaYqA/zT1HGC1Wvj84SL2AgcXiPziSua1I4uE/meB3/6n63D8sGtOkqsjdP91NwIBoGOA/u7/S8I1r3D/nFHlJ5OjTPzcSacJq0co/qtk8n/8F2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r3FfwsKE4D8PyzyCxNDkP36GmFddt7c/G/luACrfzj8Cyb98dnrgP0rWju/qjN4/k2Kon90Y3D+eU1WgF9DaP8uRvdpgZ+A/e4eJG7PE4D9BozFdbYTIP7RHGKJhqd0/69USoJP74D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GKCP90M12z8/80r8rt3kPxCZpBiAyIc/2Ihbo5PGsD86DjO+oI7ZP5u2Zd2njNw/1Qhf3HMK3j8U+iyo44vfPzWLEJVth+E/oIY6/qlu3D89E1MTngzcP3K0tTLf+NU/e4U8yiBH5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5w2U+zDE2T8yAFldDPnkP/s8bzomjMs/cMcTiWwPsz+seuKRyxPYP4lxKMSaDdg/ns2OYK+c3z/sMdUnjr/UP3+agIGyCuA/l1hR46BI3z9+bXxmT0/PP7vwNWQ4CNw/8FXIq6PS4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+TcWuJT23T+36PwYNgviP06RT7dgbZ8/FFfj6o1TwD9QQ8ucfh/lP0n9CpgLi+A/pLBa2YhG4z9PKi8KDKjgP2bDSR82G90/7UaXAj6+2z/dCwxsXx/jPwPDLcaCZNA/38RnIFWY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h2ciJkrD3z//7OpkxrbjP+zRovKsprU/xkpP4a97uz+mscU/ynLiPw1qVTsCJeI/dcDh/cWa2j8AolMr/j7ZP0bHAikEktg/Tpofho2TxD8maBvc1iXVP9iPwsdUJ+I/O5SAuLUi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zuWrcCqS3z8oyvNWKI3kP5lrfR6SKZg/Q86Cn81jsD/UP1sNXwzePwTTpGI7edI/zSQeDjVa6T+JHvDtpYLkP+jRifdlJ+M/Ji71FnZz5T+UnxqzDVzmP66ehWQYo+E/i/X46Kq76z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SYdrE0sy4D8F+9qzGBHjP592io7QtLE/h/1KhLsTyT/wjLE1u+zoP3I5zjJqQeY/9Pu0SgWT4D+BIU/x/f7VP60oC1Dm+9A/QNzRBmbjzj9bU//g2STXP7E2hLB8ueQ/PYmUdfP25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pZ9vI2iG2z+EEc7r1cHkPzXVvO0DtLM//SoRpewkwj8s9CznDgPmP8BhYjkULOk/Mse8OphD1z+Pao/T4EnTP2KG3POlfuE/9yGSRh4l4D/OUvFbA9zUP/i2nEE0aNI/kWNUTvy05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yw97YuDt1z93fq5gbIjjP5x+eoZ1JtM/XLXXHYKeyz/h4ogF7OHkP3ohb2lVcdY/ncAyNqWA4D8iZOS9pVHdP87eBIE/6+M/NvwACW/q5D8mykdkCT/ZPzV72LbXDto/+yi48HGH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iEkGKvx2yz8YFbAnykLjPxym+rCYGtY/oUvy20Jwvz85ggo27LDjPwVXpOOjcOE/CndQKm/j4T+qzCM3ZnzSP7fSgBZ1g+s/f3Y1s3vD5j9bBubtxJ3RP55FsMy/Q9Y/e+GUl2sw0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NZZp8Id7yD+R3pkBlzPlP3ANS+jwn8s/mRrdTRW5sz9DTxknsbzkP8YuQzHW8OI/VbAUHhpN3j+0l6cxPQ3gP9GrCiNGA+E/VkfxC4N14j86/N6yscHjP2fPmyZq+9s/Fp6l8Ojx6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wLvbNAx74T9RvJ/qFwXhP8WBrmAvbLM/eiWIqQLcxD9Ezcx148zhP9cZomCuA+M/D/0rnHPo6D+1QR2OUozgPxWTmBpmwdU/7vOoKxX/0j8oW5K+pY7YP00C5W5xpNs/ZPBeznoO4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C1pbnzgV2z+eiJf7ZQ/mP9cIhDSENK8/N50VLRtitT9iI6y4f9HjP81cjBiyseA/Aggvilrz3T+1MhaqIJfeP34kFGf4ENY/KeMX0tA22D/RypWLCtXdPwEgnggaMNo/iD4cGy2e6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FKNxxg9/2D8AiMLUGFbmPwjgb4Wl6aw/YrIAPT0Iuz/A6gblzVDiP7URm3klRts/xdLmusqp3D+1piETsH/gP+FfjUMKRsc/UVO2H4dE2D8gkNaXVHvePwIgeHRdmtY/GRv3WtN36j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O8BlZ8M73T8okyr3VEngP5LkhKLuGKE/Wl7ZiG5hwj+iKACjaxviP8l3nfVamd8/2swFmTVH4z9KomirwKTXP46jLOof/eY/9JDAwd8H4T/vv37arJbBP4N2MN4CENM/+NPVHYQ/zT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oJN8O1/42z/ljXAq2IflP3tFT6UHhqA/Ozgh2tnSyT851OUINqPYP0XZ1Rr9Etg/cJFdzMPQ4D811E1wqVXkP0h8ZlQjYOA/u2SQpaS34D9HjcCzri7gP3Boo8LOotI/VyUOgfyG6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IRyMivSz2z/HuaJDEp3mP7pXgpOid50/Qc7wE8Nhzj9LgMB8ehPjPz3RrmmAxeA/6xdlJJOJ2D8weHSQYyLCP1nH1eVLcNs/QsdIHyZ50T/AYcLxg4/GPw0j9ZXyKd0/wewRJkHU3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VXiIz1z03D+scyUDVTHkP+SbbKcPt7E/FjGDqj0axT/T6d6ltAPkP3iG1/lrROQ/uxpRuKcr4T9blltotfnRP0sKG8zcO94/Xgi6Bvl01z/6miehK+/BP8cYFZ9pjtw/FOCox1eF3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eKxwTqFZ3T9cRMjM3AfkPwRb6Q4525c/Y5KKcv9hoT/5Sy++S+vTP1ImV+8BMtI/mMdxpK5y4D81o4I9QWndP86Qe3AmI+Q/uk+y1H3r4T85MEAmyN/aP6SgBTKgOtA/6CaX7z2H5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6/MJA0I63T+W1IAgZh/lPy6wjxG9b2s/RxaY+EwNoj/rrNc10EDbP2Nb5SKc0dc/aj2Hho/R4j/4I3iKYvXgP1f50vDQjeU/RtOV8rNl6D8Rs6y0cUPTP0ziMF08w9w/Ff0zs/KG5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SO+DnaB33j/RXDY3vrvjPxJXW5jdMoU/GloMZFm2rT8SFXsmPaTWP+8oNc1sz9U/CAoutknt4z8Ox0BxRQHbPwojtsOE7eQ/5hqldMec5z+ocmBRS2rSP+O38Ok7v9w/O8f6f4jO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"000Ig7pO3D+au4ZGHjPmP4th8ZOsnZ8/b6VIqG4fqj+QPxi52xLcP4CZeuwgr9g/JrrwHQCt4D8x8t7SqK7eP/uWZDQXgOY/06Z2s+Qh4T+/XRYJjS7KPwo07neo3NQ/Bx1MogQC6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4sQes9DX4D8mTcwKbI7iPyzg+hVKccM/6B4RgzsOwj+Rhf9TyiPlPwQAeU0r2+E/LygIdjLC3T/yzRLVPuHWP8s6FxzYfdk/EB5TOTIs4T/Cpni8V8zXP/xTXN/dXtI/WqeKE1AK3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WnSAp7+c3z+PUNQYI8zjPw8mHPmp6L0/bVw8lLnZ0T+nJ8kVd5HjP8i4mvQNTN8/KKLP7ah0wD/YE67b0SLFP06lAIX2dd8/9aKtXthW2T9Yrkr/PtzgP12eQ5iuRdU/8L0WzI8x5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Do/AoyAf4z8WFYdRYLvjP66H+mFtmsA/IUlUW8wFpT+jY2/SLlflP1gRTHaAcuI/DJDUUaeXzT9N6i2dh0W3Pxpq9dF36eM/OrrCRWaP3z9iVItCPCPbP+C2b1+MoNg/DQx4wHR25z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3G0cUQpd3j9Q/JloI2fkP1T53DHAcrU/wWd4GvcA0j9Lj5Q9y3zmP3VxOem8lOU/qBndidk41z8UbiPABvnTP7RbQa2Km+Q/4xGINP6x5D9IUYkbyc3XPy5LOpFm2Nw/vEFxHO2f5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sLhXPWH42T/6yLdwXQbkP0FbUYAKTac/eK5juO91xT/YoKSD+tnjP/urAAtvHOc/kv9Z0c343T+IIJSMd4/YP5TO2vaaC+c/yPdQsSj+5D/kefAAlBPdP+EWjJQrRNU/YYvShV5C6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z4yulaUo4D8ZX+aVjY/kP7/+NR+RQqQ/FPtXXqxVtT+mbrJiqRfiP9O0im4Xrd0//q41NO4G4T+UqXcvCjveP20MWhwDb9o/PGH9S4nE2z+T8G83ZNfYP18Li6Sjm9s/+6OgCsOi5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vv6We8lR2T9BwQUp9D7kPxntgk8HY7M/5NkEVkNXvj8GHxsGXXffP+aDwYdbgN8/NOohnq465z+V72R4A8TjP4ocGizDSeI/ju3PJ16x4D9K16DMr7bIPxRjkBl+gMo/6cdti9Cn4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s69LBCZo4D89YcpgFQ3kPza98vyOFak/c7IC2FeqvT81nVDi5i3jP0A5oV5/UeQ/KH37pbNr2z/FUj9Bg0LTP+g/BszIVeQ/Q92a0m7Z3j8a8PhY7qvTP/36yTJIeNU/TXViq8ES3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"69iDIVLP4T8SAqLgG/PkP/IfivpkLbU/kF85JOznoz/8d5nqb0TaP/Dz51JY5NA/Ak2YGxFS4T9Poj4J6K3cP+T6k1i//+E/yhKecCeq5z9wWEUnX5jQPyOISyf4oNc/GOjKm+ku5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g7IPXGp03z8WgjNoX97jPx2EzsJHCMg/kh2BsBjxvD+fUhoQtwHlPzWK/iR25dU/gSGLzWkJ4z//ce8Ya9TZP2tLpFgtwuc/eO6xSZkT6D+h56tVqT3dP0XGwpAWcNw/4TJnLdlG5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wa/i6xx42T/UEW1Zz2HlP+KBx6aA2Ko/oSv5spzhrz8aVyKbuGDfP8z/gY2Vk+U/TNGDhIMP2z/UGkV/csfWP1Y/Xt9MuOg/Ev2z161+5j9tNU+5rKnaP3QJ8g7EbOU/TiVVYfN15j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/W7psrxX4T/lb6AXpOfjP0nYgnFpNqM/AjdtlXropj9yjCp3BcnmP+9bb1/V3t4/6knKbDkJ2j+CwJddVa/TP+oiRjhAOeY/1zXl8w0h5j9S17kfL1PdP9kfpnVefeI/oZ0qbS095j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M3E2eEsp3T/hVrw/li3jP869j8x0uaY/6BWN+Wjboz/5C6fGWijlP47hDJbp/eI/sE3AK+FU3T+vofCbwcjRP/65yBkMjuQ/hG5BbUof5z/fGg+o3gvePxUyl/0Zwdw/71HOF45Q6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vmHmYasY4D/sVGH8DyrmP5zqDv94bqQ/5K3wQyEouj+YU00ESfDjP+ox4p/3Atk/c49GNq7p4D8k1pTjy7PePxUNxtQErOQ/m+WqBpqK4z8nxDOyLZvWP5s7QXMTTt4/ysNBcK1+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EyAwsQbV3D8+uX6CuaXkP+LEPpXCYKg/p5Z9TIbhwT+2H2X4QijgPzHVyxT47tg/7tFFMj3T4T9mEZ9H6zHdP994WqA9peI/qGLWfJj+4j/rdhwn4vjTP+VC/Tzlg9s/nHmuQVQN5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GEPv0Rxb3D/TIhqkNQPlP8Mklu7Yj7E/PC2yjrKZxD9j7l4fRJjiPz96kPiIutc/k0VsLVtC4D98tgvNn0rbP5LAimEhXOE/9QKzGOPS5D/ovZi95tLSP3xq64EtP9w/6Jivfev55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WLW+e0bq2T8mlQ1RdorjP5BcP9i+TaI/JgDwYGYBuj9mxV76i8viP5DwHZCcYNQ/VVh+v47c3D8KQJ2LeIPbPwTShI75COE/RkSWqGiT4j/K/kmqGcXQP0SFoARiLtU/XIaYnqLh5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B0oYcb6/3D+UNMM80ErjP9ZoW/qdzZo/ecmCL6D4tT/Mxzi6J/TSP9ux1xpb1tg/LHCIVWmn5T/nryRHkNniP05LXbywfeQ/P5u2vz6o4D+s5PDOdr/YPw0Xbh7MReg/bQ6O/Oko6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eD5noS4c4D8odFRM20TlPzp3VUnw3Ko/iSfiKzmaqD8ejNQ7RPfkPzomGLbM+9w/2wGKGrjN6D+Dk7a7u9rjP4ObDdxZReE/YMykEDB04D/A9Gm+sZngP87+Yw0Vf9M/6W4cmG9J4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JKbADAKs3T+aiG+ypNDiP8mlmGLeNqA/P7hTMPlfxj89sfuu3QbcP5p/R3SVOeI/pfeULV8d4z9lEf3zvzPeP98db1xdueE/wWorqB1S3D/ek3mRwTjSP29j9bpnjdc/q/2StdJ/5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qz0i4vgE3j89jTmjcEHiP7imHz+x7Ko/yD6KlBV8vz9oZHJZeyTiP9CQSMyHqt4/h+KRfsHh4j8Uie0Ktr/gP6zioneLxNc/ndsnaLIN4j9RHpu2lRHQP2qmp59FS9w/fu0VXq8R5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B0xAFHcj3D/LFm+WL3rkP/7iHMO5/7Q/VJ5D8oDHuT8Q4E5rxXbgPzDpD7PlE9w/Wj3lw6st4D9YkgnD7sveP4FuE9vzXNg/iW8+U0Gr4j8YK0aNJbTQP2s4Pnv4zNo/lVjkv4mR5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H6/fslhW3j93oZxr/B3kP8Di53acMr8/vnghg+PQsT+I28EQX9/kPyu/gvMHONY/Z8jPQkja3T8UpNFa44vgPzOvSN4O8Nw/MAc0qrNs5D+q8YtBEWnNPzP2M9Tf3t8/WrncIq745z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/2TMWBhQ5D9xnL1LROLiP843S5lyicI/FiDyw6uAuT8jj2vsm2HVP/1zbGVIq9g/P+mtxs3b4T/W2Bclb1/dP9UFPvO+a+Q/VjkUnPPV3T89i+XtO/PcP0fpW3PuieM/Cggp/IMd5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0UbxBsxI5T8yYt8tGq3lP5vgt7sMBM0/UWV3o3VKuT91RqjjZhXiPw//DbZHydg/iQAOcAJk4j9Zi4dwuqLaP7kYiOfEaeE/6d6Pfv6b4D/cYUroUybpP4lgJAQVheE/7miwrfHx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tIKzEaZR2j/LflDuTv/gP68maDUHwKQ/JRwGzMCmxj/Gmd88GOrdP/RrRbTLXeE/7ZKN7s784z/aAmEFoyLgPwPdAvu8v+Y/sUBPeyLI5D9vCVhs7V/UP+Fd3bL2uds/2Vc1uPYq6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PVy9nC992z+tYWWMS4TjP5rNFU5TW7E/Jk+YU8CzrT9K7kxOtfDgPw0hPrBTr+E/vfbwZOKy3T825ATQGFPRPw7PHx+cWtc/Z/F7MBiezD+/jafp2cbEP9bJN/Z//Ng/ssfpIDOc4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tfnXztVA3T/mgcHoL9zjPwTSQrG1eKQ/PrJhtXJS0j8abcmZce3jP+Ymgejpud4/wkkxn/nH4T/oUU7QtSHhPwjjWkdATuE/ALIXejV73j/i6Xa3JoDUPxo6Y7S+b8U/1JYxtXsz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"idaZSmJ+3j+9ItlGcsHmP8u0wyDqy6Q/O4yyq8uqyD8ne4ouRUPlP0nnBLDxBto/WT8kmp8C2T9SX5CJkb7YP2+FfUzxw9w/uejBQywg4D9OcsQUnqfbPx/emZCTWMM/tTHIFS2X4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ACld5Hbl2z8Jh+JrQ5/nP+yja18a77U/wlp9/hR/xj+wVguZyzviP6GxnSHvW+A/FgsdjrSp3j9qUrOQkyjYP+UaJhX+FOA/+3KMzw/z3T861/fQ5YbTPxa9fbwG8Mc/hNJI84hR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hn4yjAZD3D8NJf5gnHrkPwnqn8/lWJY/0U+ZFJ40xj/I4Njt1N3aP8EpzpPtuto/pnPBFozX5D8vO5Mz8snhP+LSonLY++M/qWR0nZ2z4D/oa2sqSxHNP2TglAggrtM/QcZzTOsA4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a4cliUc54j+7Q7PHU0/iP7msZdLwlrI/tCuAnx+pvz/ihpjnp1HkP7KmHiA+AeI/SKsqLsAw4j9ghpkf/ZTSP7xSPv0gq+Q/JR4dl63h3T8X7/yf1kDgP1Q5Cl6vseU/XRkAaTlD5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"STFBi5vg2z+q2ZUj1YblPz5LEvrRbLY/sxncskJjxj/52/xzw3reP8QjkdtIK+A/Xff/b7jv1z88vD9UAbrSP0ThsY1w69w/fOM0BBYe2T9XUDZee5LZPxcEgPMbVOQ/UIA2KWJw5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ih3nlH4X3j+Xp/jqhC7kP26RAYwY5p8/3TGRL32CwD//RQwSFbjjP2925hpL8d4/+r81iVPO2z8KyjErborTP3+15kQKe+E/ck7o3jYS4T937WYS2/fYP8LkmOP2ctI/3hfCtZUz6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1QWe+txk3j9qdXkcs03jPw0VGMTNXaA/LCwPK/0ixT9Aw9gIrTrhP+okUfbCi+Q/ifJeB4Cb2j9GOeMqsgLUP4PR2WIJJuQ/dqPylJGP4j+C3K9flIDYP+e4MhjXsNU/L9CVN9Nd6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nSibsD/43z/pH+v+jqfkP0J+3B1+tro/urgJMl+jtj/5fzn/asjnP8EO88qZe+E/UBuUG6Ab3T8IbQZ8v1DXP2rY52WEOtQ/G7d7cYxR0T8bUHXDljjhP1FjQ9KrOeE/ydV0kvcq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gJ1Jgnik2z9eVumdaPzjP1sD7psTGqI/crsDdaoBsT/Dg6aNIyLrP99xXX09zOM/pZdp/7Gr2j/NioaR6HrRP/JT+nr1w9E/87ErCXYf0D9CEMeNkTvjP03YNn8CdeI/dq4ylbpS6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SOZ7+v7f1z/OONSlCNPiP5lvaEerjtk/ixto3zov2D+t2Z47GCPSP3eliXToPNg/2gVWhfFm3T+kXl2iDjLYP3ZDZuP0utg/5rvjBZcM2T8b3zOqeyDaP+wp4H8eXtg/7nYAktlu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5snDouWN2T/r88UO5ELjP3erOuGTsLE/JSRX5Khiqj8tbgYtzUzlP8ZTQMmgwt0/CK0hwXiC3z8yXmpeTFXYPxkMI2O/FuU//HoQ2xeQ4j/IbIxBmhPSP0wnND4v0NM/NaLw+B9d4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mQ2KiEHK1D9BS8JfAE7gP3hp8DnAcMs/qfUBwXyc3j964hMYxWXkP/6SYlnDld4/vWeznNys5T9GBMsGlXLfP7/8jI5tNtQ/HR1jk/PHuT8rSQ5UbVngP4Bl2In1ZuI/Vw2uvcqC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pNWTSf2S1D/yroCOcEHgP6NecMfS38s/SIPVXewj3T+P6rkyJ7/kP3437p6a0N4/iXfXgaMk5j9WyC8PHmbfPxmhJqHJztQ/D3KFWzXXtj9lEfGTauHgPycOW4uEPuE/FNzsDWqH5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4v3AkA6P2D/ETPhGZAvfP09qQBeGnOU/Gx71kXCBuT/mkdt3IhLRPwJuV1xPetc/KtNEN00k4D9CiyDd59/VP2Er1pxD9dg/l/cLYWLOwD9OT/JQvt3lP/4QNX+N+d8/4bMIyyKh5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oCXMTo/I4T/VVVoOGe3nP6SsdT1fjqg/ZqkvahXdyD/rr1K3dWveP3ZAIiT6KNA/g4ev3r9e4z823s+YO6bhP1HL8bOUNeI/thY9rKLz6T/fczpRBMrhP2Yn09wMWeg/nOwe6Mks6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yKX2rJfN2z9dzVi1IgLkP/8iiN34dLw/JqRPP7WFtj9jTuw4hqPYP5+wa17ZL94/1w8C6yhP5D/MRXNmBfHhP0Apl0wdwtw/v8RSfXLB5D+9mCLnNHfjPxiUdusDdeY/oLQjWUQx6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h9LhbMyH2D/iS7boQr7kP3DlgVPiLbE/IaB3ApZ8qD93biijjDrcPzZ1KcBJzts/0PtDvaM/4T9PqtM3QGviP4As76ot7uA/Mj3hc6aO3z+h5Nd79yLkP53UJTr4ReQ/qS/kf7Kf5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Uu0cUq9Q2T84bOUs+mXkPx1FHCsklLE/1WBJpKLpzT+J43m7qQfgP8eFiVF5WuU/pr/aTMDn4j8hbT65p5LbP4Ju2/pprug/qePeSV1m5j/RgMfHcl/NP/9fugMLx9A/M9x7XLP04z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0H2kiKPq4j9mx1pU8VXmP5z1ah4PhsU/ADxD74dtvD9fKsCcwNvsP7NCVHvnquE/CxELY2Gq2D9Ci5PaKF3UP7v/PO432+I/Dw1cwC5o3D/YzCj918bgPwmnKzgZBtU/immxeSep2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l1J/2l3q5D+x0yhHG6PkP3DfbShXkrc/2P9pWwVatD91gh1e0GHqPzrURjMSyOI/rKx5Cnrx1j82w15GT1fQPzoXT0yx3+I/l6exzjNP2T/3waxLGKTgP3KaCh8EttI/Ptrpqchh1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gmDFVtTJ5D9ok5BhrubkPx3ylx5eOsE/oYn8AgwZsj/am3/wpIDpPyTTuWx00uI/OHDliD0h2D/KqdzAkVfUP7bpTz4s3+M/eHywKkds2D/CyiKPfNzgP6Ihak0CqdE/0fWJNL4z2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y6LMv/cT5T8s9pPJEIjkPwZOV0+QQ8M/GMG/zCJmsT84F/nlVv7oP6A/9YUjjuY/9JwNyvCA3D+g7AopvdHXP/suLL+RXuI/ZFCEBCyO3D9Zg9gVzAbiP9TPUz64ZdY/fxs+eaSO3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FblfxB/Z4T+DWhoEYIrkP7teKbo1uck/xTOyfCVu6z8Jz7RpEp/oP/MYQm77/eQ/ynKNQJ3n1j+mUS5nqlTQPxR7d+0VLs4/r5pCNomh0T/Wt28RyZDaP+7dtwbzVuA/1mF0shXT7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OVgHiuYC6z8KbBqta1vnP8FP/4yM4tA/31X38ajuwT8ji1A9T7TfP5pxGN+gReA/mU5k9F2/4j//a+k3eKjaP0rab8aip+Y/mAcQ9csa4D8A7qqW7XfjP9qSCcqLPOY/h3fTsaiA6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6BI9gd9y3T+ALI5QisbiP1fTEpuVUcI/q17sANuOwT/uu/TOvsflP81OeA3okeE/cKPT18MU3D/ujHGJ12faPyRNvh9GIeQ/j/7R5Qlk5z8mwPcg7KbZP+8aOJp9+tI/mU5fVOJ15j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RCgqEXgn4T+Mfu+9L8rhP/GHmrvoA7w/b+YD3a8vxD+/UfG67oPYP27RH7dpp9Q/FO6lHJrk5D/tfDLbunHhPwb54fNcttM/6bhdRaDO1z+cJi4dDLDaP63S3koLD9s/g57EG9db2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kkz4viau4D//cgPxftTiP4Nqx7MrzL0/rnLjno/Uxz9zmLiRYRzgPw3bsImN8tY/+uOCHV9G2j+15f8GtlzgPzKPJuLjN84/P11CCAd32T93kcyPZQPAP5Cfo+3Bf9k/Z2AsijTd4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RgqNrwMd3j9Wc5sK7XrlPwDQndGxx4Q/DE3ePUpXuT+wzn8MFdnhP//Ag5Hz9+I/kBV1aF5e5D8OrOkj17fcP4ClneZqcOI/EwoZ4nSc4j/S7dNNYg3kP1x9+7HretA/HLu7TyZf4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q9d5GTCT4D88BF9oenflP9Z3l4jdQME/f9l5rSMpwj/6BaFfhWXgP1jdFTVX39w/vi+BGPLe1j+ZcjMebqXZP/EuBOVFW+c/9/2ON+ff5T+TYXRTLS7LP/f+SFbyZtk/fxvZGgjZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bass7EAZ2z+J1QC8YdfgPyBlNmcsN8c/N4l6djCByD+XnJeKjYfiP+iSIuBloOM/gw8CA7DE4j9tnQCnZencP87q7UYFVuE/NNN56qxh2D/NKNkt9MvgP2/Xxk9moN0/aQtZdpn46D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sHhlnOLs3T+4vuNYFm/jP05XDvGksK0//aRmaw5JxD/bNvZTll7jP3KFLOkqPeA/0LwvxOWW3D/oZcBqCbbUPwjzo6XfWOA/S5NsTNvH4z/tg76XkizVP9zGcjsgjd4/DCj5mzAu6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4dexqCEb3D/CUWuSjenhP9mAIpXJi6Y/WOSIotcy0z/PYB2iuEfjP+1coSLrCuE/1jXXS75t3T/b/ulxFYjXP9e2lVbTH9o//Cnp+Tkt4T+YJ5ot2YfdP+0RN4GiWN0/dFjZvPAb6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"piyXFhBm3D9u3sUTLJ7hPwXrhIWndbM/f7aUgWdN1j9OnAfFCdXpP/o1MB/7GOo/tBkJTo3/3T8quXQJxfDWP4rLf+yNvug/KBz5sS5I4T8PTeaYsdvaPyJERMqgJtg/X2Rt/kBO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XWNIO5OW4D8cTwIlGirpP3MxQ69xXqc/MaEi3ad61T92hJYtMhfoPxOY1DYzjuU/DPVSnncz4T+TdZfV16vgP9WQBFJ9d+I/G7mb02T94z+908nEetvYP+B4qt4pJdo/zre3o5oy4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4qq8X2X+3z96GxwxNr/nP5Whv8FUmsc/h2OwYm6E0z8xqUizpKreP3qz05MHBd0/+mssL+Ng3z8RfP3CllThP8IAriDhC9w/21wfWAtp3D8Ob3tN6nrZP4z0zz4FD9o/dxbefOJ34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kiJGjJfJ3D+QlVsKE1vpP5jr1gNm+Y8/mbNRjtPUxD/KWI4H92HiP8yTj/eZMNg/x51e0sF75T9fdiZn5JPjP+obbljf1d0/y+6E15+H2T+0KzMNAmTgP1+qx1CYQ9c/sKbJ/x7O5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3lS6fDld3z+jX/LBa8bnP7SxND+zeKE/TZ8uphOJ1T9yOksLWTviP1xl+syR2eI/BkwqUNJV4D9SmB9BPOnVP56KCLZiBeM/I0MLhTHD2T9NgwAZ3CnhP8t5YLjFWNA/PDKOVIY85j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZKVtwLIu3T/e8UEDFb7mP7fI5p+ZS7E/+2GUAjaNyz9PwXpSTpTSP7Noq4VzB9g/pXwMR00w3z/TZmf/SP3bP/j9YkIBs+A/KZgGcz1k3z/FB9+KrrHgP13rnbTTWdc/DbB8umVT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aINJnMeK2z8/TTWx8A7kPxsEgQn84bs/EkL07dEc0D9CSiXWqdzjP6JbHZy3zeQ/XHB3zFZY4D/Uxl56WVPbPwZpCq85o+A/NUxM006N4D9zBqE++N+uP26BzUv6xtE/nFnOc+Yd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cNQfydFC3D/T974aJiPkP7iNKAfOBbk/dW28Hwki0T+Hg5uXBKjjP2eRcYVHc+U/lRDDjpow4D+qLT4r9VfbP/qrCn4E9d8/8za3fChR4D9VANaUJvitP1Wb7ArWS9I/XREMQQ4/5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9BOOlOlo3D9OB5wS5bbZP/OoMFjoj6g/5RlnDm/10D9BWI5EBNjdPxWGpQBCw9k/3etgjCmF3j9y1mW8Nx3fP3g/DFx7yuA/VVdAiHYP3T9+FGoQqS3gP3Apqd81NNc/9B22xmqE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/vjogxH62D9CJbPe8FLTP2HkXz1ovLE/a5r7nrcH3z8YYpLUHv/VP0+cyled7dU/zspHeICe3z+rljH1Mu3XPzlrFqtHBdY/0+6O2Pyb3z80aTfmg7fZP4Aoa0BJjuE/IRYJniOD5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0gLV+RKq2D906tdClx/TPz8tasMAzLI/+tO1vJv63z+rkDiGIUzWPzeJHMC3dtY/VSSM4qKY3z8nxkDkQkLYPzhsQxNgW9Q/RpH3ABy63z+yenNzbG7YPwD2340JHOI/MuCU3dy45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Yuj+TEQ3T9cEyE0yifZP0B5q8SD954/PNXy/thD1z9fx17FsBreP52JW95igtc/pKzby2sm4j+NgBgKR2jZP7prwdY36NI/FmVBIGeF0D91zOrCdl7hP3x1oofu8tI/6HyLaWsI3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lnhmwju+2z+wmfrl+trYP4qo0wUUkLg/W4QW43wk0D/QfsGK937aP8TstasMC+I/tAu2mloJ3T8v7EY75XXYP5O/9uCdBdY/bWSuT09n0z9i/3eAhTTkPyC8QtxWMNU/jcYqrQQv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2/noOSjZ3D9pDM5d+EPmP0i/cGzi/Z4/2bcMYEcnrD+ilOqUuwDYPyqBEJll/eE/wtNnRcOm4j9RyUggedfdPzmD/Fsyj+Y/HMxKemRB5D92WzJUkE/ePw/P/abljck/TXC7zggN2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AUCVSkIF3j93IFNLtb3hPzyd60hOuZQ/hZeXgIOJwz9zHt9Lo9LgP606VXkWvNM/1ieXV0V44T+uyTJ9PfPZP5DRkiFL098/ESN+3C8g2D+S2vCReW3HP16xK0XlatM/RdyIPSlh4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KpyMr6iR3j/vwy4xG/ziP/6jdlceNZo/JsYScOJnvD/Np/68JZfiP1r88J6n9d8/Um9CIfYs4j/GGuhTwxjdPxzccDepZuM/c3uKbwo54z8GvPlAYebiP/++odZzd+A/Zr6opf445j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PNQJfn322z+vUeMCA6/jPxThk39Qm5s/dafFZqB6vD+jGkrDEGfRP1ORQLG7hsw/Et8XsmRg4T/89iifmS3YP1/Q8X4/JeI/KT6+zu8o4T9nB+mk8pLRP3vIKzYqO9Q/lrGK48XG4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y6Bc/mpA3D8RYhyBnt7iPxXx7o8sY6o/TSBaOZacxj8FKoMN/t7mP+WV1TMid+g/YAfJkfAB3j++NvoFuNHYPzMQQX4FdNM/uXtXf1qG2D+BmWhcuxDaP3ToC1qVftw/BZWSQAhI6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rxXB5oIA4T8VlRW5us/lP5lOuLlRZcI/Gi74UTeHqT/K7UNDTv/eP+mTH89O49U/cZD994K34z9oU3hdPazgP6n3tv+/Veg/n77mWnxw5D/1Yw8AIFHVP6YOu35m5Ng/h0npcNuH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AvpBw07h3T9G6StUmxjjP9jAkAVS4Xw/KjfLojS0sj+bYQ+vy3bjP4VAVXjWk+Q/6YDpef823z/VIT+D+ffeP7YzebZrB+I/mfY9zmcQ2z91H2C8DNPZP/86azRNm9g/qEepoYBZ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hIIHKcOw3j9ajziqbFnlPwrpP66qYbE/Vj6mZLVowj8XfIErEBfaP9w2Wv1YduI/xa26JAx24j+Fl0dUx3rfPzlafQYo5OY/3iwrIS+a1D+Jvs2RaMzSP/eQplMKiNI/9bS6Xduh1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P+obi3cI3j99QcMDOHnnP0kzJ/pX0IM/FbLF/gNvuz/WO9IOTprmPzcjWD2PmuE/zFw4C6oJ4j8sdZ5c3vHjP5klZY0l6+U/MqM/kjgN2z/vGFDaw/jMP+VHCrejj68/yNBRAe8czz8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sAjsLePb3z+5c0kYdE3mP4QzqoO0ibE/ehnobh4Wwz+pV0ImwMXgPyiK5Rqcj94/jM7xHfK14j9XRzkSgZzjP5qrnuvxAOQ//GnaAn5H4D+V1FM1acDQP+z25E5bYcI/BBl5kmOxtT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bR0JayNI3T/4SrTvbXPkP6X8bkJHepw/EXRYHeYu1T8TNckgLArlP+g/BBBrbOQ/Epr83v/w4D8p8LgaYYbbP0drZpeYPuQ/sZdNf7Q24T84cL6mQr27Px0worQfgtA/oJJtRUAy2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uLO5+Jpy3z9k3adtfHzhPwtfGprmNYg/BIepTitf5j9OMTcbTQnnP+y5/EuHpeQ/Xv+iNtjT4j/DvFDQLdPTPx6jMnrSceM/05M2A8MK4D/3KDIjnrW3P+PtXi9sM9A/01LFjXM11j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VkZoO8tG1j9Guk2cfo/iPyXLIcICgNQ/caPUPMlsrD9ien91Mz/ZP/AXpII7gdc/3o0CuhXk0D+2PyD3vQfRPweV0TYnhuE/ScYsZUZa4j+KzjGHYQjVPxwykX+g9NY/oZjgV7D95z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zuEV1zHX3D8m6W3hWbLlP+AM9Hqf8cw/DyrYkDRPsj9X4GB9+vbYP+suFMIQWNE/bUurjAwB1z8nTVfHUD3WPzO4ZYx+EeQ/1It6Wibq5T9EJLq/xD3eP5IrCzdezdg/btaqMob73z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xK3L6jKy2z8xeb2cf0/lPyzANjDA7bY/mu0nc1i1sj84I0LBd8/aP/pUuurLstQ/WJisuZcv2z8wOltpB8naPz6jogUXJuI/brIqHpfS4z/Ah6WMZzXaP4zZyTQ3Q9Y/uiguzVCD4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1brYaUBk2j+ODtOkxgnjP+ZsbVp3aqI/3VBdMiFetj9MzyRngXbUP4dWkXRFwNA/GzX6uVDG2T8IL+1UY/ffPynWhI8Ctt4/+/A/t3Cf3T+Uto4T+qbeP0AJT+E3mN0/xAfO8zc66D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6mYI6tCO2j9xSgiRaTvkP9+MdA64xpY/34Bk8EeFqD/6X/fPozTYP9qz+Gew+9A/w/nhUT5p5D9U8hDbWRPWP8PL5P0Fpds/0OeR+gtd3z9a5xK+1AbkP6p5TJ51KN4/cChIUWI06D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9cfXWzSw2j+Nj2zeoOrjP22kmbF6JZ8/nvt4yAvKqD+H1owZfxjcP10JnJLegdE/jFoMRpUN5T9Y3yQaa5DSP0TO1PcERtc/DPOvOz7l2z8iGHq88svlPxJHSOEUw90/s0lX9DO86D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E37QVciI3T+E7LI0dBvkP8uw9IF0TqE/ExTbT10Huj9RjQLCavLcP79QqT83f8E/A5C8reJH2z9y3ilBelvlP0ZZ0lmKxtw/U7VOte6G3z/JpClG8iXWPxOYG6Nq+d0/SypxygkQ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w/JCAna02j9M6+qKfDfkP6e12+loKJM/WncIQhACzz8Uyvh2bz7SP599PzEaauE/hWzMixFo1T9B0haa4ejhPwkb9pLRreE/AGKcGA4w0T/YCHLqJjrhPwLPAyVfWt8/0bevDDpD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FNqSQPLE3T923TQ3QR/lP5xcTpgkFLU/MRfi2BmHxz+FKyB75IDcP84kICI3n8s/iovaIeks3T9RfQybJJzFP9vw6mQkENo/83g7Yckx2z+lvSPQ5MDZP3yeCMtIZN0/vZ9p7AYE6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Fe00DcUp3T+oNILDyvzkP1czAfy/p7k/mLiIIR7B0T/NV09IPaHkPwH14YHI6eE/XymcUHC25T9Esx4XDQ7gP9u6mvgBHuI/97YPR5Cz5T+NWJce8/faP+eST3SLm9c/2mFkhFT04D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wMwieLqi3D8RrCiMT1voP0xJLLnDVbI/gnZ4zAeuwD/YnjPmXVvlP5obmFlpt+Q/HyXnXZyd3j8RP5nLiY3aP8L/Xdpg9es/RFF99AKo4z+RBAnAiH3bP7HsN7jzWdE/0DxqK61h5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6vB1szDV2T+XwE1YbLHgP6IKpj9ENqU/X9k6LJfYxj+ra8mRPyjdP3gFYt3rBds/aV+i2m/h3D/zu7fW/dbVP8p50DtT9N0/ulA1f+5b3D+MPuPl3CPJPzALvyMeS90/QNV4ENfw4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SAVQVxOW3D+4L4IZq3LmP0/s3KQ+SqQ//c5sK1MitT95RrhH8YLgP5S0YFql+tw/rb491Msk1T83benz0FHePwYbpHyIm9I/fyDUZlGQ4j97if1orErbP4hqHuJO09s/LKckJ1jF1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4b1PVbZB2z+BqRy+q73lP9szYt0Fl6Q/y38abLiOvj/JLmQ2IQ7hP8yCNMG9it8/juIvvc+s1z8NuNvgPgrYP0Epgkr7094/tVemGq+P4T/SvL0JyQDiP9OrX2Xtwt4/JwQjFVS+3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nQuSoKef3D8h/O9k26TkP1dbJGTHw68/rq+tGswpqz8eDl76hzLgP8rXWtQzjt8/fi/i5yKn1T84vaHAxLHUPy9ZBsMeBOQ/lFjI38tQ4j+hmqS3/cjfP4UN7fvLNN0/bV8CHtPV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"egjYrdsL3T+dbkoXPxjkP4RYEhVzc4A/LvKSOkJqyT8VgFs0hN3XPzqUs4saaNY/lEsYs+es5D/WUTCYS+XfP0ZzUMyPWuM/7dmQ76Fi4T9XIJMoxefGPwOqKdET1sQ/baDrtqFA4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X90ASNTq3j8143r6NBznP6GkvssZjII/2vqcAPfKxT9oMPKW0kvdPx9SRFD0k9k/n9Qxb2Th5T/TkPSG07zcP1J4sZ5Fm+Y/VM8nksue4z9B2zNiJ3vQP6L2n8O0HcM/EZe0sKrD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WaM+cqua3z+B/R4U9nTlP9jcqe9IAqU/tyhlA7K9uD/xVSjak0niP0avtIPJh90/mmAovq/y4D/hgiTsZnXaPw8/M9hWWeY/WQSy39yg5z/m+0l0GonZPwcMDH46cOE/Hv0DKa/q4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J0LyZze53T/QrGyZ80LjP7KAdmyk04M/KKKIXBe3rz+FqHx0DSzeP2KLh+ty3t4/RVUQStw+6j+dM9KPzFnjP1tYR7xSieM/e+aneReS1D8wJLca7LHgP81NrfS6Bdw//ZsgAIe36D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dEKT2LUr3j+1ir7SM2nkPyJMiz1wBqI/YI7NFZiarD/Dey+JseDXP94vtW1JEuA/4ejB4fSW6D9OoIBlmJvlPyql/xS8F+A/blu9Iyc32D+564WLYdnjP2+E7rl0RuI/BJ2O/5M75z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ulITdiO94D89VYJA0lnjP/iciYMPCLM/gFE+w/8Ouz/ezsDzk5jgP9jw2js8A+Q/5HoVtJTe4T9Fx3tg9CbWP6NWzO0u2eM/BRIzvpDU3T+I2f8vtYrfPyRHYnnev9U/gNPmfNlx5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Wsy1aX73D/A7MG4v0HkP+cjFo2PlYg/0T93HDdmsz/Q6tglM0LaPweZMWltVtI/fkw/EF1h2j+OKymRLXTXPy9z8xh1u+E/kMYliTdi3z+zn0gAz5bQPx8Gpd36QM0/yCnRoLYg4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z9+SqInp3D+EN/1bg7ziP1sH1+D7PqQ//JHR8rREuz+fSDYHC93iP930zHePkOE/YnbiRqlx4j+AWvP5FKXgP4lOVgX1/t0/uY3C2n/e2z9TbSNxpWXYP4ZlN/xMXds/vdizjYVB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p5xYo+Pm2z/mNxKLb4fkPxuMsPUahno/FO11kpLmuT8n5Tz3C1rVPwnJWaTwyNE/Timxl/ZA4T/i34OlEbrcPxnO4rBFWeQ/SqfwR9fK4T9fJ5g8ZW7RP7Wic4W7bM0/uXFJaHJ24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Np1cXYzJ3j9NluZJfjvkPw+Wtmdq57I/mb8Pz24bsT/sU5sNRYvmP12PbAJF4eU/eUFfYPrD5D+8gQ5efP3hP29tj9AgF+I/g0Uig2TC4T/idox+l2XTP7Pt3tZfDtk/Lxd2LsKL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0FR+IDLX3j/pM1ERZ23jP2wX8Gic9po/FlUHcyAHsT/Jh5zFSSjWP4EtEEkiMM8/TGCHriad5D8nmuBn/PTiP31HLH+97uY//HOC8wR+4T+eanHZ/IrcP8ElqCXN6dc/Tq2DT03E6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"le62lnls3T8oEq6ML5HjP0WeLD+18oA/ijMesj1Noj9jxQlXxtvcP0Hfz5nLb9Y/tcRb8QHF4z+tXXibr8vPP6b+stIE5uI/H2lBQTZ+3D8y6xIGKazdPwaXLtr+5dQ/iWM+Z7fd2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ARJaL2Qb3D+AHT1PQm7kP+n/CznbYp8/ExUW/y9/zD9bXRazSy3gP+iwRNTLZdY/lby5NCrD4z9Sg87UwMvGP4/OSu9nm94/3cXw655b0z+vjLaHFeTcP9yYXvBeBtk/d8GGHZeb3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"27HKZbhX2z+StmdIKvjiP3swWjFOwZs/2od66Ip2oD+H/BG9kbrYP+77e2ynQdk/HAPsXj773T/0+jceL7LEP2ulFi8M9eQ/m5c1+lMg2z+NpoggTcXTP7N18w6Iz90/OSqD1qfl2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NYd/AUsN3z8dGWSGZLLkP9Z22ohHtb0/m4eefHqGwj8iVAiIAPjgPzjjVy3FKtQ/P7ijiqxX3D8p1dTKM7rbP8T/6K3279I/f47qqtlB3j9XW2kHMfnHP2bsKwvodsc/CYnKmc135T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"drhHU/Mg4j+kVYL6LDvjP4h7GZB4V7s/mi0CCtYVqD8eqmjA+MDdP9RF5sSHMuE/yTlLS9+q4D/xkYj7RxnWP/wkEr6tcuI/Q+dnFZXJzz/xSlCCC17aPxokWpkNy+Y/xViA70hr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lk7S4iQt3j/qvXPcLyzkP47pBR1ZBLQ/T4Xv0ps6xT/b7xQ5KQ/kP/aNxQwvAd0/uEmlvm+H4j/eX8C+TWfiP+N32gxg0NQ/ZBNf3XY31D9VC/7miNbQP10kj5kSKtc/8/hVoLjA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5LqTYCEs3D/mJ0c8HyvkP8xn6jTMz6M/bzSKDe9upz9G8KG8ny/iP7sG9MjIjOM/lC7JgavV4z8mgS25X7jYP57ie7K7Ld0/IO9T4v8N0T9oXebKV9rTP2MttkaqYdA/i7OYSgBi4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+6rbV9H83T9BZ5RjrxXjP8u0wyDqy6Q/wdocl0DCqD+NpoTbrRPiP+doyzTdbOM/ogRyKveW4z/K/qGX0lTbP7aKv0qs2d0/IA/q1Jlm0j8kpy1MhCvTP2C0SfQiBNE/MZe/s0M54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rZKSPpVw3D9R39OaxkrlP2iJm2J0uqQ/fRCZVo1+wz8xS1ng6vvgP6aZqoCE3Ns/KgbSdzwx3z90n2oGBA7eP02Fg8rZTt8/9esj3MGH4j8IFbnrDjbWP5wmfUU6gds/RXg0sVKE5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dwpKOrVb2z8eeO4Jy2jfP/4fgIZw7Kg/fsH+7AORyD+ZPIy9/EncP/T4/ixAE9o/2znaTglO3j9fBRYgoUjVPy9cHuBdsN8/U+6IAdrn0z+EgwIKUEPNP1IdrBwrQ9Q/CxGMkioh4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SkjD2ofs3D8Tg3v4MdPnP+Cl7BLAUqI/nm5i+ghcuj9xRoy0tNXkP60Y/c9ed+E/GVHPzWt56D9Hy8hRqcrjP67PF/hoMeE/3t2AkV0g2z8/MiZDjqPZP0DaBTRAHts/IOO98SX45j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JPeku9mV1z+M6zSzyfTgPyrTBIY4vNI/odjDLQaUyD8MrQ1o1l7ZP+NIo31MVts/h7PHecmo5T+Km5n5jajiP0qxiVgt/Nk/2AHwVxd/1j/rlHxI7y3SP7JY6+9axtE/3s2UczQH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mXaM+cgu4D/8qGqYxNTTP0xkFZzROYw/2DRuIjZW3D9j/Squz8rmP47hDJbp/eI/5Hz5NW5X4z9lTfrK93jdP/ttVMJd+N0/N+aB/Tn10z96AfVDrBXQP6rasH8pisk/MqvAhMMF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pVsL+Np33T+0XDGStVzWP73/sjyIwaY/dSoW1M+e4D9fFgjv8v/mP7pcj9gq7+E/FMXnuQSQ5D+VrLFEm0raP+wbKGRWIuI/RedyWj240T/R+TGxVYzRP5dn4ew/1tA/lYgJpYlP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Va29GCbF1T+1Da6OSeLUP1h4XrSLec8/otaAv4oP5j+9kTRzpMTfP/FWp6McruI/tTTCu0FN4D/7ZjBy3PjfP1FmhVZlXdQ/uvBj39F13D9Z8eurJqjXP9d0C6U8bdg/p4WLYGU55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"La5pBDSz0T9rDU3lOrDNP+mU9JLno8Q/w6sMdwqX0T83UX8P1ZniP5EDV9r3+Ng/tTMZ8Wpi4T9SRsiJiAbhPxSZPYFOH9Y/La7aZ1m70T9OyCY7ZdPRP3PpZlCIB90/E88qhRFM6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R7tmNie34T+vSDhoJUC6P91Ezqqsv6w/QBA1OqGj4T/TRZroR3/bP9GwOm/DGOE/G/2bjgFj4D8zA+gBgbLVP+hEArALb9s/nUuh8E/d1z9av6qtT4PmP4j1BKE7Auc/ZE5PBzSD6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rPM29r+p3T8AAAAAAAAAAN0IdECaCsU/Miw5jfrq6T82sQwpF6XoP399YDs2ueY/ZsQHP5Xo2j9UsJol7iTZPyKQObxowtU/x25n6Se81z/jUhirroziP0DsWQzpWeM/bFlwHk/I6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gHY4UKTa3z/Bu08zbK/iP40zbqcLOqc/4ejTq6ok0T8CDbCUtKPbP4eW4iKPrNY/S4vkA4ZA1j956ZSjV0m5P61uSVy2ieY/YTszuoCn5D/ueW5UdZTVP/jIPEJWz9E/ZfwtnadS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DUdasdwt4D/gALzaxp3kP+UVZZYxn8c/8pH8+8WPmD+N/YxzEpbgP4EKyRUr8tY/Jka5IMtt7j+Um2RubErlPwXYFPO/eOM//aOxBtHj3D9+dSOK+OTkPx7UKjfnYts/lwPqJ3p76D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w1ZEjayA3z9pRd8eATDmP0Zn8l1pHqM/6Z7+eWDxxD/cie8H1gXbP/rF+q4srNY/APZ9f8LA5D/t8rKMMebmPy4WThLVPuE/PRB5e3ck5T/gXGHwtZrVP2MNAjV1gOE/wYCDALd/5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"36yc5Eny3T9rxLXtV8/kP3PJMu7th8A/9XUlpX3QtD/7+AhhIGbiP+5Y15VD3Nw/HZVg55Um4D9tdXVqgTjRP4tXgY+q8tg/klPcm2Th2D8qGqgtXtnUP+jhOenZK8c/B9RP9PZQ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aCHc4QdK4D8RGsOlGSLjPy0XP/QFubE/adCYKQ9e0T9+g6BGFnThP6Zs8R+/Tt8/uPAcn3da4D+FiLgh6IzhPyUkD7WX6t4/sHzMpcf00j/G6kQjfbDNP/uCyyCSbtg/yeB3K22p4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HpGyFDxs2D+MVTlDRrriP6YDsGlZaME/OvP5r+Q5wT/sojwFwjngPwYO0JHLLd0/0zxybxcy5D/KK4M5bCnbP9dEBe9/tNw/Iu2Trray4T8PHyKCq2rKP+3l62ylrto/8T1gURHf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XX+9+U493D+2FuiTTYjiPzbPQzUQZaI/+2feDbQy0T+d2O+/lWPfP4kQzjkqW+A/xke+U5QO2z+OjCmAPkrdPww+KmMiMNo/D4S12mqY1j8m/4DmZKPTP/4WUcfFYs0/WjGuNFSq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bCNIDfsk3j83Y/V5po/jP5MEuvaBA7U/2xFas9sCtz938iL/bPTlP7eFjBHyl+Y/wHMBGH5G3D/vi2gV1+fTP8scoClkSt4/kZ7t+vez4T/NNAiQwZ3SP0IoqPx58Ns/J95q1tlN2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y73NSpzY3D8CVl0SwLfkP7urNYAgZHg/DrQyCh22uz/usi6nCFjWP56F4a8SEdY/iykVyS2K5D/6lWxX31PgP1a/B9lSXuQ/UAHYeUrb4D+EnKg05ZnTP930TahGs84/DAQATZl65z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r+1S39dW3T/9d38jdDrkP86V0fHVUKg/pUEvLnCeqT97mKcXKH7jP1UGtaodgeI/y3ax+Z+r4D/h2QUTzIbZP9NcP6jy9uQ/P4W59dyp5D+LItk4Sx/ZP/Qxv4Ch1+I/q+j78WKC3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aVf7EQM63j/vUctDJdzkP7neAvoVjps/IZ4Dl/DJqj+N7osJ1k7jP7wG2T6euOA/p4Kc3t3U2z8Cje1tFqbcPx4mJKa7T+A/3H5Mqah14z9v0rYgrbjTP6yQh1wg2tY/vSS/rN1s5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6d4K4v0b3D89rRZz2PLiP/T7ZnJW84w/AQULWWYTuT8ejSuRTVzgP5M73Rp1INs/WBIDGOlT3z/CnM2/4lzcP8zJiRhZjN4/CUDh/Klj1z8SHyKCq2raP1KpABzpxdE/llDJE+pb3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VK3xad723z8nXnOO737gP+xFizO+fcQ/AfDa/t6Sxz+OATKh1UflP5XtGF44TuE/797vGpne4z+sZiuPdITZP364KGaNA9k/AuZWumqQ3T987uAe1OPUP2BO2JiwltE/A1mW9XpW3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HYk+w3aG4T9QUKYy4u7eP4DkE/ZQdcE/eqbRCcjpyj/tftf06MHbPxdknvUJ+98/c0viJB5I4z+lauEVR5HaPwyTcEAavto/+NGUoyPj3T9pcvJhX+LVPx0YH0pgEtk/0DhRqoOd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8eFO5wcg4D8+4STx6IDfPwezabb7BLc/lrMML9kqyz/dZAJgpa/hP45h/1DUk+E/eDPDtjH84T/WL8VB2GXWP53HdvZuDt8/e5F/Mx9c2z+ObQi2XOTQPw+TIXOKuNs/cyfooTmY5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wzgEgnR82j+Adj2uShviP66dvVoJ064/lzEMzdd1zD8w+2CTZOjrP54RkRQd+eU/4haMLoIw4T9lhWYJJB7RP2G+7UhkHeM/a84RVqKm4D+0joNRXAvHP5Fy/eLRTNY/96ZaSzJG5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SJbWZ65e4D+lk7GzkRziP1mjS5T3b6M/fhjXzKX5xT/gACW8ZeLsP7xInNi8Ruc/DTbcpAWC2z+u+Tjj+1vYP/Mw06kn2uQ/eI3mAuG02j92Uz+DBHLJP2SUleLtItI/UEti0Ei95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2qWJ/vTk4T+dnK6BU53iPwsB9CpA7eM/HoOpnIpu0D91FM6ZC9DkP3a96D39DOg/4Zd2Q1VA2D/MtQKI9bTVP8lzVdmuctk/suRveNHY4D+xIEG627zVP5JNm8k1Vsw/gyqIP6p23D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hotX6ji45j+YZu5gv5fcPx6PG6vzi7o/jd9sPDgk4T8vNwvpfkndPxAbUVYG3dk/PM6+IT294j8bCh3GYB7YP7KQo7f6Adg/VUVpdc6d2D9kL6RgcOjKP6VpKayecso/Z0Egid6i5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TCciZqpc4T/RZpOjvO7eP50CHU8HpOI/ia8ISBmw0T+l26Kfnw3dPwsZMUnZdtc/VyFvazF+yj9DWzR8p3zKPwcbbJz+7OI/vkPie9Et2j8+EXT07dLZP+othTeF4t8/X86Z+yOs5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oweIrb3L4T9GTs3TRYHeP7VmaBZLwZY/U5roObQ1yj+F5zsuzingP+FgzDIMfuU/af7cOR/e6D8J3HIkMY/hP97LHb48F+s/vJ70L3M55D9VVPSb2wXeP0TDP/EHFOA/q3dpKORh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dpg8+z6/2z/m2Pu8y3DiP2zopxg/3rE/PK9YpjAA0D//SgBjHJjUPzdf+yiE68s/99ZQ2E7T5j8RI2Os87rgP0NN8Lmgd+k/YCVqCg0/5D9M2X/rX/DaP8dKabHA1to/1CIzs3bS5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iEani6Nn2j9UFiLxS/XSP9bvWpTsPq8/4lyFHMtU2j81QAE91AHoP6vPG1kFquY/dTcHxbYt5T/8kF9NkrbfP4PFx3XCGNM/pb9WuvcW2T+2oM1jGwvYPy98M63Kl9o/mJTQ3FWk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jyg1idxV3D8qTO6752jcP94gIYA6F94/HXoBbXWK5z9QNR3v6KHjP27J3DuaxuQ/GFvw0J3I2z9SXMlxQSzbP8XPl4nrkNQ/NxF3pbmK3D/mrqDYum7TPy3fhln/a9w/GZcv9otQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WD4G7NQi4T/UEjfAaublP9SAaG7iTsE/KDe4HaoTvT8+k2ORxqHTP49vLubIh9M/7PLKegD54T+ptPGtHMfiP5Q4qy07N+E/hL1tPu+P5T+FvKYeE0ngP7Of8OWsENE/cKB2KkSs3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9k33qW+r4D8F2yOaMRDlP9FcB51+Uqs/ACrR3Boxxz/gptLkqa7kP9UAHzktUd0/D6kKu41c1j9FeYE3UNnWP/avvh5mTdk/b4CJ/mZy0j/hBmTKUFPDP4s1uewe8Ns/Q28XjDT05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7cncWk+01j+NW8ih3ivlPxgs2xMyLa4/xYYE8rjavj8a1iw/9NXXP11hMEDqqt4/EiwjqQUt4D+sdA/6J/TRP0m00YoQNNs/Jt6E+vYW2j8ZwcEzBdnTPyg1+1ZXucs/OUM7sqGW4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zdSzDDdz1j8+9kr25/rjP9deRn0BsOM/Tj/YwPs3sD86hqcx6ivZP+qAeRwhO9A/cP4/eZW63z/RO7f+P7jRPwwvKYAdGeE/fZ1SyyYt4T852ehE/9LdP3rqlTRFLtQ/OKNuJu6/2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0ZQ5RasQ2z+wl58phdrjP4t4XNX+5KQ/XZ9iVBK7sT/zR3os/svgP9Eid+Lkld8/B/CqN9wP0z+AKjbvvsLVP8Ab8uKT9dM/IYj7HNIW2D9S3UQn1u3bP0gmBVpyqcw/qlnMlQkn5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JocyA3Xp3D9nIrocASPiP81AQZRyUqE/SRm850ahvT8bFWJ6Ps/aP+FteGZrydw/q32vBYK42T8E0fck+a/VPywxyddOneA/Uq4+jAh+2T9dH7DCLBnYPy/hEDSvG9Q/NJPzy5Rc3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Hu9IfTA5D9m39xzcczjPzSOj9+Nq80/l7UNKs8Drj/114Tv66bjP2g+HaH3luA/gunQ7MrT4j+TE4m+tMveP85T8hyYfOA/d34Tb1yK4j94zhE2zOHTP4//0mw/7tc/GI1d8WlN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H2uyA9EZ4D8oHl3O1zzlP12mnoeODrQ/691R2czWsj9sIpFaPYfiP9pH60eKxOA/Fze2+0tR4j+VteGdxJTdPyhXp/YJFd4/luzNenVd3z+ATAcVAUDkP+p22ynse+E/D7gqcQjk5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1WA8V4IP3D8phCiC9yjkP706bVjZfKw/ZPSsixLKqT+tmPz7k0bgPzjh5UHwiOM/FXVBf7V84T83YZmKlP3hP1wOvTwIEOI/+phW1JGU3z/a7Dg8b4jlP4di2vD6luI/dnmcFskj6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"57fE/nD83T82NJ7SjP7kP/7MeTttTZ8/I29fovY4uT9ZONDO8kvhP1nxCDXFh9c/mSaFk3sm3j+MT+8qCnrhPzgVgIfPYOU/nP7b5mZ43T/gU5YQ5XbdP3BPshc+3+g/wmUrIu5T5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lwPJJNmk3T9aSJItsanjPwd6O5E76Y0/RweeDel1wD+DQC9+u8HdP3Q5mB4VmeA/+PdZFkC55j9gAGIOFyPgP0pDWYmzMN4/jPDE3jIc4T9qpV4adB/WPwttucgqF9E/O1k5TSyk5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rJBIVz/R2T8C1ECkEUvjPyiNTJvEHdo/SWjpKwl5vj8Id8PLaHzgPyd4BkMCgtU/Cewi+3wq3z+Cz5mNdRrgP670upoMTtQ/7KrkhkZt0D9LolX16j/GP7YQiwMW89E/cXRL2Vlw3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1n+zXVq/4j+W9zan3fTlP2UnHks+0Lk/sa4I3QMuuT9lcQpY4CPgP4FehdHlouM/xOmXXXj53D8Ji/o+pTXYP/ExYRlLgeY/EruibJG45D941SGhv/DZPzf9fgDVbtQ/67UT5RHK6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VHn4EU/u2z90MOP1A4PlP5G1haA9wp0/9RkCJWRsuz+YmaLu+8XeP/cVjxo/J+A//R4B478m5z9tOafpM3TiP/2GWcdh0+A/zhL+nrb62j8I3hegzo7VP/KcMIptUto/rUlvuVWK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bA9aDSB+4D9zRYN3qE3kP0+7gAlPeL8/+Y/9R12mqj8TD3lYynzhP1oAoKEkUOE/liwg/2lL4D97Ovg3dyfVPw/rBGFVM+Y/9X+gc5ac4j+6GynBF4TWPz/haSiNRdc/wA2ATz4F5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X41/xG0h4D/lUbhv9YbjP5nJ3e/hlb8/uxrIlpL4tj81FbXxpV3kP0evfm9039c//Xm64a1F3j+1OtouY9XUPwKI0R/nH+Q/Qr1dTGLQ6D8Sf9Trjy7QP1Zn4guZ8eI/kevAFn6H6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qPktesMW3T9ifq5ujY7jP4jPfoqeTao/igDp0h6asz/5p/bLBjnKPw1YoJJk9M0/jhXes3ad3z8BjUsa66fdPytjBbGAUtw/65mjaQQ2zD870Pm6W4rlP7e8+ATaGc0/msef1AMn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QuDp+Gpq3D9tRwYE8I/kP1yiNHaBRJg/dXVhN4xotz8bAocHjsHPP3Y/kV27Nsk/hyGTuMWJ4j9X7A+ueHHcP4jHuDtJHto/zfKFPLpa0T/KlhvFdBriP5B0//cwis4/kOVkWsEO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2qCF7Vas3T+6IEPm+inlP0kVY4TKPY4/kpPsrO9yrD8WDu0nEAPdPyZoV12PotY/tbl01MdO2j+yZGIC3ArQP0ljfGKhIuU/V+h5QZFY4z86berMkKLSP3C0j54iY+I/uMRlI4uN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D6+BErSU2j9x16wsNKfgP2LDFD13RrI/1vgP/lI61z+iyCF/xrvVP8tv7lHhZ9Q/2RoHuMl31D+yzn35qa/LP6Tt6vUDc9Y/drcOXLFm2T8U7omR897gP9GRe3N3H9Y/0jWXaRT65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iTaXQ5Xr4D/XW7WVKr7jP1g5xVDCDKg/uivxcFz4sD81xPNm74TiP40iCpWcsNI/qPfKZDvu3z8otIztPsDbPxmVieDsxtw/g+erIRAf2D8hpQbZLqjgP79Dg3WcCeU/dJBXKLiT6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8/vl6ytP2z91dmeYbe7lP8+BJit4cLA/HOrqHEezsj/1j4XziKLhP88G8QhQT+I/f3N1pmgP4D+tcdAwhVrgPzLhyc4GH9w/fHEkHXWa3T910ZJkhSrhP4Xse8IP7uE/rwi8Y0605T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vu6Ounm23z+ls3/VSpXiP0nSOvr4S4w/MoIXcDiStT+rNmyUeYHdP7skFr0uUtY/ad63xZzR5T/4AEhnRfLeP50RHIk7Jeg/GEzj560C4z8ynJyggmrdP7ffysVMlNk/o0hur0Wr6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"le4kj4QQ3T+fOLqZj5DjPypMnsU3TbM/yYQFzX2epz/E1YmSMkvfPxgxVz4gYeA/Kw06h1mH5z8Gs5Bk0k3mP90ciOjNFt8/cOiYiPNv4T+Ohkngj1bTP+woTKuQdNI/WaUwggkD4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HZ6+SeFi4T9DVrTOahzpP+te5/gJGK4/3btGl7qM0D83mpzsLVPnP3YXdomy/OM/xYpfUW265D/5mUGXQfDZP6ck1fMJa+M/jEm+8v184D/TDzoBdf/WP3RGhews29k/fN4B23C+6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Irt52r7W4j/IAgZkbt3oP+MkIjx9rcM/6C11bWd8zD9D1TtIkNflP/y17MWQBuM/fr7zCMQX4z/yCrtzoqTbPx4t4XKaFeE/kamlHGtA5D+GMARmhcXgPwrVGe8d99Y/5uV3E6iH4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jF2CmzKB3j9IIeydBYjgPzMhtevBE7Y/6huUQjPttT9rP0w9Nx7gP06k174XJuA/7wk2SrjZ3j8sp0hhbmfWP9X4wKx1qts/j5CHh5Mc0D/x6ZYIvKbFP0cpxJZYTNE/1+CzJ7g24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Rk66XotZ3D/gSdBuOKbkP3rJq3U2Irk/z10OEaq02D82UCxTLtDmP1cmBRFa9uM/KVQvTCA01z8r3jN6R4XPP/AaqNB4TdQ/qL272E112T+VjdeeZObRP1yTLSCWm9U/haMlhwfu4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4TgwhhUg3z+y4BQYeSrjPwzQLV48M6E/HYzO3x93rj+YYOUCru/hP7rqsCgKeeI/dh036SzX4D8us6Iyzs/dP94NOwDgnOA/ZAe83LYO4D+1kQt+K97gPxLKEENqS9M/pNFgPPbP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YuzCkY2o3D+EzKdUaHrePxi57PTa+aw/PJmZZMf20z/htsDtjTHbP4hEiu3/U94/NxbjSyTQ4z93eBxIHOjeP3bRwHl/Yd0/OVE/2bf94T/2Gjb3ibzLP8Ykc8OW9to/NNxzxVIF5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4KWDnQ5w4T+mZIPi4RLjPwGhn/YxG7U/w0LJV4YkuT+erhqShf/jPy7mknN+5dw/I2LkwERf4z/DtP9ILBLcP8LUFq6XtOA/fbc27asz1z+RgL7Y6LvUP8dJ1dwy7dQ/ipPfAAek5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wog95wbW3z9A1SrQ57zkPx+Q/JhTKKk/MRSg42hysT8aH0ocTY/cP463+CM3/d4/j9WBbe354z8skvf08knXP1+lLVsmvOM/PkkmQeef4j/L0CCTsW/cPxRQSfrvZNM/xiK53APB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OR2YlN9x3D8vAEgcHTLkP7Wvi5dNR7M/jR7COQHapj9GDeOErS/fP1PghU89g+U/YkcYQrE45T9iRReNJaveP0Hz5djvfuE/RMmyJT2Y4z+PIeR9ST7iPybUNwNMYdc/L7GoI5Fl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qRTHyM6b3z+4ZFEXi/3kP1Pf7Ek7iJU/6naTm0mUvD8S8q0RRnjlP6E7sqtQhOA/kf2IDq6A4T8GthiJ3W3bPxj71qBLkuM/XzsdMDDK4D9iEUQ/Y7PcPzCuO5eotNE/zBIO+GbB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Hdabmff3j/GvNrBY3rlPysXDYxRqpM/aWn4m4l1tD/fYUrRiTnmP+UcHOCc9OA/HnIFFPdq4j/AYP8+lZjdPwJz+8BVH+U/D8Qkotu74D/PckLxKV3dPydR92ZHS9E/oRj0mWoW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kn9lTJjl3D/JhK2PsWHlP9RwM+UZ4rA/UpMSpsfMsD99NPu1NirYP6429tTwHtU/Hz8F+Hfj5T9ryE1HiKLgP82Dj0aMPuQ/Htc2tsVj4j+YiEFSvyzaPzzV5W+jR+U/aAsbnHF06D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"igDkQFgj3T/EpOkmW8zkP10rQ2zPRKY/RhcJ2ncVsj8QSocZoPbfP+G+ZkQ/z+E/FJmcCr/X4z/5nJWxUAXZPwj1BGQz7t4/jBY2dydu1z/0CGo4rD3TP0+7ueRixMg/6eMsQbTj4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+pIPoCkr3D/IggiBi5HjP2jvz1beuqM/E7AjLhzarj+xCxcB13XcP5BQbgajReM/Hqq/9JWg4j8qLMtCBUfYP0ZZvVdo2N4/oNGVAXy01D9/P6349VXTP1nRMf0MRM8/C4OkINiT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EqvD0zcp3D8TILNeNNvkP8q9X0jx6oc/iKnijTpPpz+tMYQOmnPbPxGNIuGlyOI/Y3/EK1KL4T/owIsiPd/aP4vJ2RZ0r+Y/VyHz7BI+5T+FQ3I0bFPUP0LRZkz5WOE/2T1MSKn+5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ci17juSO2z9RCBoNf9rkPxBQt8eT0Wc/E548uP+Glz9by1ms6OzWPzXShOnlaN8/8wHP42Va4T8Nu9YCi6fbPwoz/yEk+OM/rgeMK2Jv4z/OHEXLxBXbP9qpqXgHsd0/T568ZYlY6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HwtrIX3A3j/aPRazg+TjP4QD/W1wRa0/AxGSppLUuD/RdThwt1rjP4MBUlf1Ztk/sOHdNnoK4z8M2luIHgXfPyvEEXbWiug/HNyZ9lfb3j87fjgmODfgPxm4o6JpeMM/yO+6yYAd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pkJhBTYI3T82suiFQ4rkP+Ryf+y4u5g/QmA97W1NsD99hHVPbgvdPwuapmVZteA/P8jtfnLH4z8HfL9QdzXgP0HIWZVgxNI/3fLGlmAY4T+lx2G+mEbBP1Oz+vkiFNw/wcB531nz2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WOlt6rQG3z9aGp7LzaTkP/ts3CLkzZI/M2vnTKSAqT8OUL7CwzLeP/vhPU/rv9c/xreOyiFM4j82J+dZa03bPwAAAAAAAPA/9/LWFXRT4z9k14bFy6fiP9zXMj8739A/tfpTukRp5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tz1NnDHt3D8Yddquua3iP6zjJ+nzZrM/3ALYwvgTwj+Ws9LrxcTaPxbX8aEW0N0/vvSjl/D64D/zxdtSuyXiP24uN7iw8eA/3Dx6nSI03z/9FLLt+KvJP63K5oEw/tg/6CjxgISO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wPxhJ2c43T8OsmAE2lXmP6Z2acqyrJU/en9mARUFqj9vbjkdxtjYP+663rBFFNQ/ZwUAuiwK4T+zAe3K46jWP2r9zkIrl+I/JnwC79+x5j8/Ysl4RE7MPxAORLL3J9w/A4EVuzhz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TlUC9pi82j/m1VTD8VvgP5kTfF/DZKM/4DMtfAjN1j/6Q4PeKJXXP/ArzZb+0dc/MCrxv8dY4D+uXY3sG0fdPz6gptgcUeY/bCY6mBc23D+S9nGU1mjTP92AfBNIoMg/8w495Y974j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K6s9V5Ox2j81+DD3AhbcP8d2Z/h40b4/f88trLnR1j9RQsG4dXPgP/9lc+SoX9w/JiuujT6J5z+DZh51iozXP57pU5IckeU/IxfSkddB5D977eRlvHjRP2OpWRDH79Q/YYvp2xGV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RnjzsrJg2T9Jsk+Zh3zlP+mWG/wPkKk/YYPjG9mGtD+ZlPPcL2jVP0veqHvmT98/KV/Iqgi73T+R7vPvCi7hP91HfCGLC+M/YofdTdXH2z8geevhnDnaP0vMxRD3QdI/kasn/xba3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ac71A9cM3j9yyvdSRpflP4OGeumIj6o/e+xkbtEbxj8NJGws733VP4HaGOiqm9M/4tRGnmP24j985e653y3gP0PvWzzSAuQ/2MVcoyF15D8xHuS+n83RP2KZzm7ikN8/lszaKi4D5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gIEvT6yH4D8PyByZ7bPkPwuAzMCJqcI/oS6TOEWOtz9nvW3bLfPePwPg1ghHKtI/gEhlriXl4T8rTH2pOj7gP6g0CVCHh+Q/s+JATqpQ4j8e/gbaa7fXPxnobdoQEdo/WaG6OaR45j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dzYXX1Pu2T9Wgcox447iP3mT1qS4b5I/fhHN+WA9xj+DeZ/4CN/TP1u/oqJxneE/pk7BJzI51T9l/NrdLpfPP9k4UwUquME/lzdVkuhdvz+DyI0sO9HRP8QpOpNVo80/dn5D84Ep4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UGZYEMkF4j8HFfn68s/jP9BIUtmw/tI/FJwTFILinz9iplNYucHhP+3GjfW7HNk/HeHeAVzO5z+P8MbkxrvlP61R/9FarOk/5SBXRdzu4j+NwE6uzKvdP/q39HjqCuA/jIMt9Hcw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DzzNFEYs3D9qTVWETALlP60kjSXtf5g/JLVE2iYyyj+q3S9s7svYP9qdyZDCWds/Xs0C75ll4z/7C76ya0fVP8IIs2haxeI/qPmCpzEV5z/UD7FWQPbiP/tKDN9Mq+I/hZrh3XQs6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BfMA14+u3T+d13P/MJLkP0nTTzQ+N6g/AB0EfDS4qz+k1wELP/fnP8Lo0JQ6CNs/rFm+JsYS4j8SAAQz7DbePyl6geUrYt0/DiUZvtnB1z8gMAeCsxzFP+YR2A5LYsQ/r6oo8tAF1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b12NE5ev4T/FWN5/fC7kP9x8Q01R2sQ/9/71Mj6KwD/U6Mj2g4XgP1/bAM1aheU/SLa1larU5D/7M0nvT/jgP8/VOsbbFdQ/bHtxpl5I0T8Ykw9yaHrbP6Nwxn6G+ts/e/5dXS626T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y08jGj4N5T9BeYN3BfvkP5ybczebOcY/DXUIhiHkqj8FQlZqGGjiP5vPELTUncs/oauuC2d74z9cnfxzebLeP/OXFpceVNo/0RvgApBO2j+igdrilU3ZP/gRMQMpjNc/NhDwBaQL4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zhveDUGc5D8+CHt1IijkPz3rCmVND8A/1q5PfzPfoD9F9/54flfiP2tjNcPsPM4//6zjnkAx4z/eMQX/nZPcPy+WsvQUa9k/NxaxEAZb3z9ETNp7pHfbP9P+wn9sddw/5/+1s9CK4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"72C0D5Eb5T+NsH1W8u/iPyjtKAWK68s/u6CkquDduD+jtYMZjPniP5Fij9fqxtI/jbR4L/wT5D/Euk6Fh8TePzSh40ZzUtk/4doJmbW+1T9c7EMKGNzXPzdsVmXzQNg/kiaMzbf95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C+iVfpbo3D/TK/NOt2HjP0u8AaTAgaQ/P/WJEObVtD/oQ6E5OTbhP93Y55rRg98/DQL9htM+4z9vSzE+X//TP2NhjSHR590/v5wA4jtI2T9o7GNbrQLZP4VfCGo2Kcw/PvbmOdQh5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"opHmn5vw3D8nWylCBpLkP9eQs9W74oE/L8f/9wNSsD9U8b6H5rPWP9IHgY9mgtM/edBTMmr42j+GRyE+pCfgP1twZU3HweM/ivx2p0Eh4T9ivYo4EIrAP9utIh4409s/N59dPCXr2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ULlSJX43D+uroxGmbXjP2Ej6mlHlbo/Atox9hZcxz82kzf+ifTnP/YwhW29Otw/ixLSOVSX4D+VMTnaQ7ThP1/JNLJgX+E//mXGUm6q4j+swPNQWd3jPz175YI8DdY/6OlKI0nY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+Q/fLO8e4j8u1ydg5VLnP3nebQ8jOLA/LsA7KaFO3z/w39/Eq6jpPzLgweODpu0/tUfdKpLU6D9NLWkfnbfcP7V0Fp3q6uE/thGbDHr33z9f8f0AkLrPP5AoANL+/sw/nlIan2H43j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3TuATewN3D+o/g4V0J3oP7vv2WrpPqE/S2WiHVnovz+dPycHt0/cP3QMts577dQ/AxXeOnIc4T8HqMEg6YDkPxC6gMPRzt8/VWEck+vb2T8gc06FjIzTP55v+ctdsOA/VAoMQn2t4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DHaZ4e7p3j+n8TlMRI7cP+2fz5pxIKA/hEOWK22Q1T/7Z7MTUfjiP+Otum/jrOA/n6sJYIHX2j9o5oWxxIO/PycQV81cAeo/M3PNnC816D+PEZLduRTYP7rOWannU9E/MGzk48C65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q2F56oQ14D+pCwTN+azlPzVdBJxkv7E/167++joArz8unevaltDeP8fGa8YBOeI/0WbZnINx4z9cr/nF5breP5snVzBvKtU/Z7VB6K/jxT9o4L2jFDrbPxTEGo/ud9k/zEjNc0t84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FxUPQi772j+FZ8kWa+ndP5+w5IjmeJI/9C8lG62Ivz9/fBJI6dLXP8YKKT7yTN0/5ZcIMIHj2z/ZbRJzMMrTP6X5htkdQeY/1mxyV6Xw4D9S1vNlUx/iP0fLqXYY5tw/hb2Kq6Qi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Fl5m3Iqk2z8lpWA9cifiP9xlZ531K5g/iENYLP9R2T8WotWM1D/dP4s0K2bkMdI/HYGz065c3z/c5hWVoNTYP3gBt6ffHuI/hSOJekSc2T+XShJIqvW6P8NlSSfSDNs/MyvUxn0e4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L7h8cqSB2D8TLqoBEi/iPzdwGRFxGbg/wE4SUrf0zj/6YA1/1LLbP3YlpR6n8OU/XumoVf9R5T/ULM/TnVLYP6eiGMNl08Y/qgy0jwRQzD+e1gpRCdfjP6iThfUaqtY/gPv4TJrp5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qWpfSYmR2z/ggsonbxriP7kLwMX6ppc/kv0s0pFFzD/3IKr+CZfXP/ajy/RIheM/s5tUmNae4T/uBGw3R/LYP5WcWQaj3Oc/JnizYuB95T+QfIJHp8fHPw0YoMHFUtI/chC5clsP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q65ARKNl3T/82sCsbjrlP5ep3Ocz+pg/CTQ8MT59jT89DT3XhOviP43Fu5CBoNU/Mdqhcgz64j+OrqknHkXkP9U7vnSF6eE/jDyjjHXS4z/fvv3PnSDZP8J0peT5RNk/5SVPBTe53T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nmjo3K2N3D8jJ6xIbczkP4rjjSFlS64/KIcGnOTv1D/icpv6nvPWPx0djO1dF98/9XjT9J4J4z/Ah3efVbXXP4fpj8aW8dY/X/OCyURZzT9dDW2ug6PTP2HD8dnDZ9Y/JL0zXxIt5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ajsp/QqN3D9MamD/UI/jP5TNy25E288/W43OOb+d2T+gE6QulCHaP5a1hLgR3dI/zghX8ReK3j/6MB93GdrcP8naZDhjzMk/+lVpUncO2D8vpXnVvKDdP/EpLKiXic8/3owQOQJS6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"16Nl8dV53T+rSLNxc9ngP2BKSZXDprM/9/m/J5YMvT+V9tn9vk3cP5h7R9OYYtg/bvqKNJzJ4T+uFc2uZjDjPxkMp0gyKNo/YYOdiSRw1j97RTgAnfDhP0qKhCsnvuI/2acT5++m3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OIKKxy723j8Nqy31JhDmP8J4Lg6zKmo/NxZ/Y3qjtD/1uWqFI3TbPxrJwgwi3Ns/PD2KGKQ95D/F8Ct2TtjbP+3uancXXuo/PHhU6xWM6D/04aM3MMnQP08XV/ZXedE/H9E1nwB16T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oU06Vjpy3T9LZtTpd17lPz/n6VYFEX4/s3Qr7H+Uuz9M7KbVZ13ZP9eSMsVfaNs/LdLkYgwL4z/yNNX96+bdP/HO7Kd+yuk/j87hMdSC6T8PLZUDi1rSP69km7p6Js0/zGl5d3Ax6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DFylho603T9+lTVis7DmP9/32aYDfH0/GeiTE4csrD/UjJOZBHPYP3KCHBKWHtI/gpoqauZf5D8I/jsneRDcP/yWTzL1keg/cckoUZZK5T/JkJsUIQjPP4l0oIXZk9U/bqY/3P3J5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YSGtkTVp3j/0nWh1E4jmP+x89lWNtnw/Ek2a1q60sD9fH8bk4zjXP1ke3R+16dY/VUR7H0nU5T/3TmwywjbZP64GXewZy+c/k5mkx1wH4z/MFEv8Iq7JP9D+dlfzSdU/pkcWl33+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kNxzaspj2z/a+yeaZ3rcPwQzEgBAa6o/xAj6KEfW2T8h39UhSdXbP0kAsIYeGNk//+rZLy2IzD/haiG5B0HbP3JWl4HoGNY/iXaClhVK1D+5egMctwHpP2Cyg3ybDeE/OQptxXJh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E6X09Lds4D8Tiw2giYXeP8Bce9hVZ60/LvXxrQeR0D8ZG2jhE5LfP56lnn4hltg/JmUlEQ7Azz+WojTQGoTSP5HuL5+y/NM/jXP81R4M0z+jQv5xJH/jP6VSif0i/uI/NTCx5v246T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ITaRhyOH1j/FYmNr3AfZP5NEwINYxbQ/xUkpACEI1z9KaCaUczrgP6rAn3bQtd8/OVEXurlo3z8xRsXXwSLKP0pSPnxzcNc/X7OcBakt0D/eO6+hFcrVP965RKWN9OE/PUqwPZC85z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bHrzeWsO4z9QgrvbpwziP4UXEIKxzcM/vHX9IQEwyz8pxOxK2X7hP0pMemWJZN4/XF+SBLjg3T/gQoErtxTiP+/DMSeU79I/Qf1dHfXG0z9qulhcEhXgP2UH5uw8F9Q/kP0Kj3uG5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l3gR872Y3T/Oj7V5RV/kP9jVm6IDw60/s3nxOo9qqj8iClvhiinYPy/md+lTEdo/v1OBT+Hd4T9kVXX00TDQPznXrrimxts/Dh+bB7MF2D/PdJhlpY3bP6kTZseQE+E/Li4xQLH75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z51WILU+3j8UKVSFnXnjP5He8BxXeJ0/BYWJN8Sjqj/IoI0DWmbkP3MLXFy6Ytk/CKxCv8XG4z+mV32jBQfTP3hb+Wgaxtk/Z6y48GPf0T/w3Wem7tTTPwFTOseFNuc/4vLsAobb5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"giP716j72T/pnTWyRTPkP7hZRlOT8Kk/z6gXOlVZxT9UbLaumrLYP9G9AS1NONs/UQSoeVrd3j/7QmUk7mjgP/+SGInjYeI/Wqskg5RZyT8HKVlySWbVP+pfZM5pg+A/Kc/C2Skk4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i+8K9rSf4T8BA4Z9k8zkP7/89YEOT8A/KhuKaWm+sT+w4SWkFNLjP6DepyA0ZuU/5hFNME596j+RAE/uSzjiPzo34Qjw9OA/ECoqVODq4D9wb0IygOzcP4ozt9e/stM/8l5hhRFr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8wLItmH/3z8h8zc2oI7jP7tVqKq54bQ/WnWWO1OZsz8FyIC9vLniPzP0i/QdMdk/KJtPVxYA4j/6TuTjFD7dP/E8NCI+y9A/QZpjrBXgxz/OoH1d+8TZP/ra3EJ4NuE/IacW13Pd5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UjPLZJL+2T8IkzQA+yLjP2wKumAdSaE/iX0GoXDtxz8Gt8XdRdbfP90v0Pdz5uI/nzVABku22z81nwuqs87UP4CYbKUKEt8/IDaQ8BnI2T/lDfKIJePRP6IH+BfCxtM/j6HZRaXO4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wp3KHhto5D/Moq9fGxHlP2fW8g9Vcbw/JeokiSxwnD/PUiYchazaPwQxWv6YnuE/7Fx8kHFR5z+IFOHCVK/lPz8qQM/CBuY/ZQRuuVRU5D9cAjoFzjzVPwWN0sowu94/tVoLekGK4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3AYqIIYl2D+8TBxqpC3hP/FRLBEdT7A/tl8uuoBL0D8paQqqADblP7NCVHvnquE/c/P9B0Ho3j+QnTKvFk7UP5TrqGZp+tg/X2+ql0pA2T9bgM483rTQP+h5/1aj4cQ/7zCmXxmT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OYBRgqf03T+5rU6jKo7iP7xK44BAjKk/i4VdBEFtzD8YqF1AW9DhP04Xpfh3ldU/DKZQZkPt2z/St8qTaNvXPyVCjLhrzeM/0LSlzf8P2T/8973cuE7eP9k40P6JoeE/bNFJx1Vp5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"czAoB4Ny0D+ESOqEJV3kPzWWPXuU5MY/b219YbBiuT/kWKRx6KTjP5okN8dKods/AHTbR+Vs2z/2+snU/77bP9xc1mWPHdc/vXuO2KMv4j8dtMHACEvLPyqZkDEnf8Y/5XKLuOJf3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dGPEiTubxD8lQhbNq5/iP+mEAKm92cA/nNtd0PPguz/r07fHTuPiP63LNkIzp98/vxneJK0R3z+KulKJHRHcP59glNjJstQ/JNc59SB34D+sj2a39NnFP0HoLI8xY8w/nlBjRt8q2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"blqcbUlE4D+/wHzZdt3hP01wItpcKdE/r9vdsHfvyz+BiF+8bD/ZP5X6xJGXmdg/BE3hEacj4z+Cc+8DGmjeP/v+75yo7eE/hYqXmzMg0z9SKHSk57LTP4UdeJ2wk9I/pPG8vrPH5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MqoqYJGJ1D8O3dwJMH7kP97IRUh/rbc/gPYdzWBVrz9QGr+snoDmP99jLuhI2OE/OxLeo7000D+byDonvbfCP+RoSA2s3NI/3t2AkV0g2z//HKy8mhPbP3S7i+Nh4dw/oEQf61RS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mhg0c9vq4D8a9XBwNwHnP2l5Pm5nsrY/EWhDf1JS0T89e8UPXS3hP/3Y/KQK3d8/OHnoI54e4D+FPHyck1HZPzg19zCM2Ns/bBzGwX6V1j8lEjAL2/DKPxX0f9bETdE/4CQA8z135z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UsSI8TKZ5T/21iTjToviP8jMTS/AXd4//iKSmJTZqD9lwtMUXDPhP5PenHsDWto/uE1xKakg1z/pKyg/XgvRP/WpqtQszOE/rEQ+2ZKr4j+UsdQcgsjWP15dWuqUZNM/DxaACF4O1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aHO6ud/M4D+NcBgK8HXlP5vJKIzwq6w/rtLIP2wPvz9fj7+6WPnjP6pqpqNtTOI/1xNzAUiM4T86Fe+7EM/gP/YmWKE4neE/bLH1mgvD4j9BSJOTD/vSP0glva1d690/eCH4awtJ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rFOi5/263z/FFuby6/PhP+d6HSqktq8/hIC5MBY/vT9I1ijnNxPfP2lylhv3XOI/eX1BYSJl4D8sjppm47TRP8hG8gVYFuM/+Zd6vZPU2T+DxsBi9KnXP40MZvOiSdM/Dw3+hKPI3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vjQqYEFK4T/fxQ7yY2nhPxb8Y+Mcgqo/tR1UsK+AwT8Rc5/Up2fdPxlDk5mStuI/bkoQuTP52z/PR8PAJRDQP3kjeTALBOE/ho90F0yz4D9Od1phQ2HTP0xyxSOQB9M/lx9rAzYz2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b2vxJ3lp1z/agwF3UkjlP3S17LT4WrA/J/dYNcSNuj8Kz/F2iOrgP64F+plYh9I/TxY2DNA/4D/+mPR76nPlP8FLgBvGeOM/1WOQ88uc4T+PqzDCW5HTP3xvmYmUVNc/v3HrMcg02j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zPYYjg/u2D/GD7JWkGXlP5mJDUg6bbA/p1uBTf4Guj9GYyLf4ezgP1JrOMVeKNM/6A5b/wuC4D9DXm6ROIzmPzdq22bp3OM/MwnSyrgh4j/YxP8sELLTPwC0xDz2LdY/5rXO4vfR2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ax91O4sz2T//LCZOtmDlPyoK75D7WbU/Iu3A5aVz4T8nmEmqoXXiP70Nfs6tHOM/ZJq3N2lR0j/NbE4nrJnSP2b6Qg7+Ud4/Yyps2MSL0T+dhnuGjo/cP+qnOTYh/t0/c5OsCouB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xiPuXXtL3z9PPNGkgfHcP4pZ1CLmR6I/BNDcvDmIvz8jQnw4lBjiPwvbASgNb98/lyVY03Z73z9aoiODRFXSP5mOOU4Uht8/QXLD6fkF4z+rbj0TiRLaP0hrVGPe4do/6E8QlxkP5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ak87DNDr2j9mGa4noWzpP+EM5UO1Xa4/MU57bwTCzD+QhJwzmezaP0P+qgMchtk/zLWta+g13z/Xz+x/V5/fPzrMfFHMcts/rGc8/IWJzT9HOT2slzzcP2GbMrXVquM/VqcejcHg5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S5FPJp3r3z8+RNaCFAHgP+ez//VVJrA/AE3RIQPVwT/GBf8JGeTcPwFVxw9NPds/0ur1qeyI4z8lNU/g337hPyCIVq1NwuA/OQED1yY34j9k438oXULcPxm4kFiLrdE/7U4snEB75j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4L8tD0652z+hYRLa3y/gPww4pUVyB4M/IpOEXRCCyj+LujjwGFTYP41BDa6YJd8/MZWGn6eK4j8R3HyMVKPcP0g1hQ7Hb+M/ilU8oR7s5D+3uQ6OTn3aP9Cw59iXQtY/BRhQlXAl5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GJ7VTJZ12z/J+6yeOuflP82ckCWS768/m60sP1JCuD873GjYz7baPyZAZXhahtA/v7T5khVo4j9W1rAZ60nhP48SwSR5k+g/gtaEEcWy4T8uyWT+cHDaP+tZqrfF9t4/eYQTzS275j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n7C8x/wi3z/LeFbBv3XkPzUz0WVFdJI/DCebQpqpyT+15vDkkm/aPw9wd2l84Nk/SJNawgsZ5z9nwIQONNrkP84riy2EOeE/J82njuod4z+Mzy1AeXPYP2jF2ibLDdc/j1ESbV+l5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6RQGAw9U4T83kenbiZTiP/wyDT1KGMg/XZFOrohCsj9vSy/7WGHfP+n5W19629Y/+ggZYGsv3z8HmIJyzIrbP02ebbxbjNo/zfUzjqtl0D+hxY32O5XKP0ib3z5xTdY/nmpEH8xn3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qcOx84sg4T+F5E6dwFjiP98kGD8NOrM/erFHCzW13j91m0cQ9E/hP+ppQDHJy+E/DyVFm7j52z+fBDj+9PzRP4FXbreA3ds/LQTUf6fC3j/hiEboC9LTP1haFqeaNdI/b8Or2oSJ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q2c1XOnX3D8M30E6Gk/kP1vivEGVS6E/QKyT/F3csj93/8IvlyrjP/zpcmURV9s/GQnQwMLx4T9Xqpn4DIPfP07ASlgJD+E/D651/14e3j9ls8qdPYXRPwHyib1YqdQ/XIChQIIe2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hb0GW3Ih4D+GpMOaPS7iP9W0h0RBfLo/S/c9FhRpsT9bPzW9lqrgP1NR4Z3IUNo/JliBUaNI3j8dTRShH5TfPwmdMGDPdOE/EVXr4XHq3T+coQDQ0x/VPwDclqvCtdo/MovJYKLD2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dEU6leKq4D+CiNdu0xfgP4gfeQGf2b0/44albZmH0D91zwh5dQ/eP1vJqee9W+A/2Ia9Bcws5D8DwANHjSfcPzPOwjRXndo/0+wk0uV83T9pys6mdGPaP7MxrVUcKNM/gE6RvAIJ6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qT0RQCpn3D+dLiEXt7HaP53VGrLwU5M/Xgnj3PRbzj8ry1XS33jgP4RNHDZgs94/09B8u/bm5D+B0yomgbrbP5pGrqhPF+E/Smhdl2Rn3T/bQUz+JXfcPwiF2gFWqsw/skt7QrMu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7QhTDadE3T9q/3NoGmbaPwtL8OqU8KU/ZqS8WYqc3T+duCerumbgP77IWH9SNOA/Vivm+sEL5D/hdunTlpzbP8dtopaAQuU/0hwGvsyB3z/jAcMmWBHQPxy5EeM6zNU/e1+Ei6bW4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hCIuP3r73D/5Ee2AFVfhP0voJoUKyrs/J+wLD8jV0z/QZis7U0HnP6GcGptqgOQ/e/wwzttT3z/m3xCo0DzeP940WnRZ7Nk/kSjcrjxd3j9xYpVqfDDgP4xhuNiibtc/sbY1myXO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tUCZzW7i3j8APCjDE4HhP1mG0KSUF6c/EpZ1mJZfzj/qBDcjPijlP9kI9otS4eE/qrR3JbQx2T+HI7lQnCPXPwt0OwGYiuA/hF0/r55s4D9gJd3Hh1nfP8ZkAXu9Ttw/t19FYf3q4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P4nBvG272z+XCtNSGjbkP5Ir/HApg6w/4JPibunBxj+pPQLFa1nmP0M2CZXtTuI/KDUKkAjH2D9MrgFwZX/XP9REwA9zbeE/P3+uuDoI3j/M+p3BImTUP+AyEympLt0/FaqbQ4pn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U2ukPzuu3z+GYIOsd0vkP34eVi4l0rI/NWmMzrbSrT/cdCVEOkfhP1podwz5B+I/EOXjjHM43z/6ZcSd9ezSP3D8oMWW1OM/krnwFbjs5D/wwIzoLRTdP8JG8AuQtNw/q8p9TJyJ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KpK5PiV24D/fq9gVD+rhP7yE8pNgRLE/uqonZkU0uz9QD80mhxTgP4nP0Dp3qOA/uW8fy+pJ5D8xUo3yUH7aPwpAhDNT3NY/cFlA0hpOwD/JBF5c9WjTP9J9EjyR29M/2fCyzcGR3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cwF9qbKO3z9z34eZk+DnP2X+AMF8EIY/FGwaURSNwT+6vKGclnTeP7PQkFXxCOU/33pIyNBM4D/bK7EOMVfUP9iCwbuGYOg/plQtJ/f06T8AHZpnMQHTP5f31+Qn9+I/zg/YAqgV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"snYXH/NU4D/e77zjjO3lP6iG3Q7pe7M/BFa8SyoZ4j9WSlBTN1nhP/N/e+0POdg/ozCv4j5s4D+TFVyzcFnjPz9v8UgyJ+I/KQD879KW4D8QPu6zhXfLP0y9qK/jNt8/Rj5zCvhX4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oN54SAHL3z9Q1ot0vLTjP8+Va/JU/aA/3FaIzIq0kz/BxqkGug/dP+hFQcgP/N4/ViTol/Jq5j/twy1MxgTjP58Ymyx3Wtc/J/44fS4o0z9aGgghHk3YP5JVQewdb+E//OO11nlY4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GDLyd48f4D9yUqfMHpXiPyx+VCG3S5s/TWqd3alZzT+kFnyFxHLiP4wfjVU1guM/5cUbc6RO1j/scJkWFpfRP9UQW1h30eY/GKJ4TsbL4j/KHpRBKry8PyfcaKrB0t4/l2sRxPGo5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CqftR57v3T/8uDXnFDHkP+xn0FVpl7E/t7chF8rnqD+ZyqOWnNjgP3mrnn3hbdk/k7KcmH4b4j/pL4XNbaDWP4HI5rjd4Ng/75YO4b4b3z/hMHz4X2PXP/sJTIQsRtc/4RiGVOwJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yezbuhon3j+As1iuY6jjP1OWSwd2R6I/u2g/fep9wj/iLVSNV2XgP2uc7cZ/kOI/Jv4ZMPhf4D/R00RaVarfP3ItlEZrXOE/BcatfNtt1j8FnhB1H6jgP9NQpQ88CeY/sXhyyVQw7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gG8fCWlY2z9jlCgLFFznP70BjkyiAaM/G5iZd6I6yz8LdNZhnPHbPyKpYsHrnuI/g00RfEew4T/DpB5H5B3UPzOLVon2Ot0/YtRne86V0j9SoBjU7qvcP7hrMg/p4dg/BVXaO41Y5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f5A9TdOt4j8jRuAtgEHiP4W+XhYG0bo/FybFPwZMsD/csNtkfHrhP2IJSrQ2RuM/tB7I2mjL4j9ZMNEJ8/ThP6Pps4Srdeg/wjwc9ymY4z/NLQp6N6HUP25kdkUXrNs/ZHMUjIL83z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lopYtQaa2j9N5LbuIKnnP0a7vOX3x6k/C/lE9fv33D8rgJYVnMfjPx3AS07sUN4/RNiH8/QS3T8P4Y5Ks8rSP2pij3Ap9d8/mBUHclKF4j+DN0PSnoHSPwTeDTyUmtA/6pKRm1YF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mlj8SP7Z2T9vYvYLiRLoP9xk0y/V5aU/Iq2W4OmV2D+C+buyEjfgPyQw34G7xOA/L8sOQBtY3j/4UdpRT1HbP2C96uSPo+A/ullaxQQi4z8nsX2PocPSP6NDWVIxKM4/P0AzaUmQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sldWL/q42j8MPk8h8t3nP78f/+BEc6o/FqBEaTvy2D9bOsvqBc/ePwyTHGB0JeE/UzAuKDiE3T8dIiWt0dzcP8yg2dDnG+E/VANCgGH64j/AswHaiGPUPxOYLu1IxM8/TXqN0yoQ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9Sh6SBJt3j9sf8KgyN/oP15YYm/TMKs/KN/FK75Fwj+J/OisCHjeP8/PPsjnTNM/Bgvldx675j/EA+6UZGTkP18R/kgPLNk/skW9AF0u0z95tVm2zXjFP6cfAImVwtc/ek38OIFT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v7wU+/ii4D8nYr445GfgP8u6upqg1aw/whoeFi/5wz9sTLP5TaTkP7mThZKR4+I/iTO8ZqlU6j+5s/wJY2/iP3M1VHcenOQ/Yw4aLYJ43z+EjvRcdurnP0GSRtWjVOI/cEEXgw846D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S+bBTYbT2z+gPMTYnzHlP//mX9uazsI/B0cbP9ZHxD/DY2ReXI7bP7fsxZAG09k/kloiKO9w6D/3BAOiKYnlPzigW+ivWuE/l8gyoBpE3D8cI2URA+njP3mFacaqmOA/fVflk1ap6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ADd52oQv1D9PxX3P08vkP4+A97yg/7w/CB2/U4IglD/OhDna86HgPyr4PHfrCdY/i+3b2nE04z9lNFxtx7fgP/hUqdZBhdw/mSem52Vz4T/MxPEw5J3aP7c9HsQnW+M/6WCtxnOK5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FbmWQCWr2T8Lva2N9L3kP5q4vL5Jg8Q/Iu+O8HHhwT/2aKn6bJvZP7HXKMB/4tA/r/r6t7U61j9UrD2X3o/TPzQ4fmnV2tY/sCA7yltm2D/WCDzr6gLZPxb2gesji9k/TYg6f05T4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bvKYG1yV3j8whnJ2bV/gP9bXREpp9Ks/SwSfEkrBwT+j9vB9X8HbP9GDZoTTtuE/zPTBZKbe4z/CSukFcPfVPx2T/h1VVeI/u1Vv6jos3z/PPIQLgoTLP3VEliGsaNM/C7+ga2WF3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KYIGTVMA3T9sRttC0sPkP/VGsoOyD6I/npqpimzpxT/RJuBQ2MngP9SA6URsiOI/EQNzPW674z/rnsfTBujVPysmDXqhiOE/fC61WYcd4T8yxEwFrTfbP9q+CLYPu9E/X5tGuMUxyT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jc+P2qgd3j/aJvfYOfrlPyWFZoFFAZ0/tpfxieKAwz8byDlSI9beP76pzrOBmuU/WUpUrW9K5D8bMckwHUbYPySi6em7Ed0/gwqf/1oO4T+Migce8MnXP1y+5F8FXNI/Tva914L50T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d2hY14Gz2z++zmbo9onnP2F+wj4bfqg/6gW0nLVX2j/L7ts+MEviP85qu62mpeI/KX/fJ43k3D+9wxbKuPjVP0GodOUVY90/UrqiLTIi4D8yuQcHjr7UP3sIp6NyyMM/R2PTMKob0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9TmuHqV62j8cKPssy7rmPwNPR3Tac7A/KXWLUQQ3wz//dXlXNhriP9BZD9lKg+E/1Je9WjH03j9LVwv4k/LaPxlp8m2jb+E/55EFUQXO2T+wO0+uVVbiP7nFWJAMsus/rS16wKq57j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+kldet332j+7S+jButniP7D9rVR9c5k/4407ZdGbxz9Uk1kzownYP24qHDzgpNk/7SpynOUt3T/VDjm9jG/YP1bh3mOgMeE/b9qWxsQW3T/8Utr591jcP+TK6+BQr8w/olzcdcIc4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iGfrqUTx3z9acsvcbkXjP9qJ1Qz6cak/A16UU9fKqj/Qse6Q+Y3jP7ltfuZcRN8/JzYdBy1n4j/jkUXVFnDfP0vTZvTafuA/3Q20J9Bz4D9SWBfanV3WP0DDVfoixeQ/cvC5t9nd6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZrhXq1kD3j+kFmAEw03kP+xYPf+SZJI//xq4uRbRwj+C0YTLii/dPzW+/REiEeA/yCh5Qvoz4z9k/B6FhZPdPyNeZdhkR98/JJYTaVFN4D/zoLKo0ongP47HYhKwPNw/0/5/1WeS5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dodjsJs74D+X3Xm6hX3kP/pNB/CL2qM/tuQpaX8Hsz+CNW468s7gPzAyJz6Uidw/Tfw4KKzd4T993eaNRvPbP3+TJLzeleI/fIWDxtHj2z9kH8kVrLXMP0tBzAcsSNU/pZX/kswo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4oNIgbrt0j8h4a9Dr6HiP0II5qee+sU/R2X5CX8rvj+1rlHaOk7gP45anfqaYts/0w4iiEAd2T9aFUtmmirTP8AGaInrV9o/bXkztOjj1j860Pm6W4rVP/Tf3PDRQ9k/NF3u3icu4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"64MPLxxr4D+e14XNyKHhP/GODZaW9po/Ki5UcEn+xD9xGrxqke7bPwmPbV33yt8/i3ve63Ss2D+m/WFnD+bXP4P/5bgFx+M/OZt/ZvX+1j/fJF/r+6PdP6zdu+SIWNU/mPFZPvQI3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"12cGvwKJ1j8y4ohK2FjjP3GOq/dQcaQ/2m0TwkSDvD8IcXy+utLTP9z9hm+bTts/V6SJ/sQJ1z9UegaQj5ffP1LEH+WTgeM/iSQIog4f2j9D2lD8jqzhP6buBm0xA9o/E2fk+4Xc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xpRWqUaYzT+hUa0fTIPkP6YWOaO4Cd4/tzD3sdlJsz+JtCa+G7/kP9aZyi/uQec/tHLfK9cb4z+x+VLoeWHbPzrv51ydnOM/xpEBW+Vb5T+4/r1aDDDPP/BAGz7JD+E/0LuKszuD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"atHnb/y/1j8vQimh2/TjP3m41p2su7Y/k44nArLxwD+2ZGu/sc/ePzAvdOrXstc/XbzGOWc52z/SbwWioTrYP0XghCVYld4/NpvcVSk83D9ktam87b7TP3m9KAjwW8Y/eUrWcYOG4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/59M8O1+3D9r0F/1xRLhP3TMahTh1J4/wCyXNJvuyD/UtInas5PjP2WU7sSuoeQ/uK1KMn776j+PNwb9KEvlP9WxW4GmqOk/lJCzmzTX5z97JIax/B/SPyhhMyF2mNw/VUsrHhOt4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1ll+mzYX2D8W2gd5oXblP9ZPARmDc8A/Z+Ew4ysqtz+D4aMWvSvdP0uim+eXLNU/No6ihbj02T+oXfs1SzrWPy6WrWFnvLo/A6spZJMYuj/7qxD6cJ/bP9OgEA86uMk/aWT/mdUt4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P9NzYVTI3j8h1nFoQ3LkP/amVIvOuaA/b0NPMVhE2T+j/Y7gFtDTP4Red2w8Wdc/35gtBSoO2z8sCmWgo1HUP9Hlzylkg9g/4H6HhZgM1z/GC27H6HfZP2bPTD+06eE/y/ZOQoOF4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bgC4PLd/2D8bOWLSEqziPx1qahZw1qE/bGGgzEVt4D94pfKkjMTaPwgnRVSjltY/uGE1Y9CS3j8me1viaJfPP5s7YS7zJdk/G0DYshGu1z9zgJCLJ4HaP0WYhfJbbeA/yCNejkZV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"coPRrDx52D/YFerA+VnjP7DjShq+4cI/ZKGjlQPCpT8uV5JXgV/kPyzwcQkfReI/26PnGcp46j8hgOuGUaPmP4F26A3Jitk/IYTnbMJ52j8x0r+GjCfTP0P/epe639Y/Yoj5V9tc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9hCZWAIF4D/8tQwXcozlP35bufHbvqY/WuznQ5Cz3z8en3rTQ/DmPzSRXzuHV+Y/37iylYKU1j8fioIAUG/RP5iMCYIntt4/Rtk4+3nb1z86T5wA7X/cP1K4lberXtU/gRSKpB9p5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wXAnRj4Y3z9LnvtUR8bjP5hSiMrfgsU/MQw+HLGyoz8QRi9d3f3hP58fipW8ROI/9y2LyR/S3D8mfmahDybbP4oqM751hOA/vB78k5on4j99iH8DdmDQP2jHo12P6tk/5HvX+NUQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OglPCRVB3j8fMCpgT5TlP9K2s5z8kpE/k7oQmwY94D/tjxQhEXPeP5YyZlw/ld0/anRPpsFK4j88OCSTP1zYP6OoFp4skug/mz1gz4r/5T8X4EwPUCbhP5eBspTXrtc/sjWMZnuE6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JF4h02ts3T8lRFqBTyjlP/2Sh9khJ3k/xm7+sHc/0T9Q2dvGQb3cP/4kM6wfeuA/J3wqm/6S4z8UvqeC/k3kPzxQAv44p+M/X7s6HqiV0j9XPCaAi/XaP4Jz/CWqxeA/C3uw+KyP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VKncNQz62z9D3vTMuuLiPwFm4V1m1bw/m2Vrj7T8pz/QYCXUfX7iP90ydeaGc9s/zxkp+vwA3D+W1derUIjTP60az9/LAOE/c9zX95WO5T9fFWd9JQvVPxZKU0Z0kdk/n2fvPPl55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KzY/cs+p2T+2Sirp5LblP1Ehtf24eK4/NqVWV0oPvj/E2vf9JcLgP15N7KH8hds//8GPCV0k2T89YGZ0u4bgP7x5jYY+huM/mrR2B4q92D91IjuU1HffP2eBqnZ6F+E/uyKrjB/Z5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GWAJhINR4T8R2eMLD6TjPwx8YT1kP6c/0SXcKIEstD96KynDWOjpP9yCJNzDwuc/9hKKxgop6D/EeNjPG9bhPz0uK3Pr0+Y/M7hRfU1v5T+Db5iCUUrmP/AqJW32NeQ/fDNwkG/t6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+7dmJ1A14D8WF1v90sPmP6QOqLiGYrY/IJqsNgy/tD/UuCbWsQ7pPzI+d3/hy+w/rB2TLwig5D/7Yp/Z0FjkPx30xcvkE+s/ZWqCM6hf4D/wbc+a8lXkP1RmitTiTuU/S3GXMoGx6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R8UmOo+44D+yR6oyNJviPxp14zHCdZA/FQHBaFY9uD/om8tL9gjiP9jT+a+9ctU/AAAAAAAA8D/p09pDEu7kPyGqZDtiCuU/9JNylncA6j+8HJzP+uXlP79uUL4me9Y/ku6JFkCO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yNb+Xtlq3j8whw1AvKvfP6xVzA8IwKs/68jgIXoM0D8xFWBO4G3eP0N3Sc12NN4/Q3z4IZb97D9p6uI/1BjlP9TvsDVCVOg/HoyNiw694D/MRSDqLPvnP9+VJ3nJ1dM/tQN5dsPo5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"klDLkJaf3T/hRTWrsDzmP9Sszu7KOZU/3WhvQqcHqz+hIxDrxtbgP9AaXVbp0t4/k6NXJN9o4D8NpoWWD4rcP6tMUNDDL+A/b0HR+1RV3j/gONTJTSWwP6eaSFy/x9s/4vyALYBa4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"clpQudvb2z+Jc7eppkvlPz04E669L5w/ZzauRODkuD/goMjkcVDgPwDPl5y9F+I/qcOUWXX24T/+DjGGCuzcPw82KywJJt0/Ty0gNfM44j8AAAAAAAAAAK9kiHCcW9s/XyEL5xea4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x90ZcWFp4D9Jg0JEHrvjP9qTuUgTK7Y/VWMWvVo4sT9p0tGByiPmP2VBtWqJmeI/njpo3j7B2z9W9dymuy/ZP6V8jQcpDeE/pbzyDEV/2T9sTyCefxjgP0JK056AttA/y7FMKItW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y9aI3w/m3j/NuY3OgLPkPzUvGWLgs3o/i5CsVrHovz9DMlJ5j1PYPyYlpnlZ2t8/jL+sqVID4T8sXPBhUz/PP3hCoJNHZec/qZbhot995j9kRCdNQ+fYP/D3sQGEq90/o8pA4eKA5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WJ5Nzih82j/jILy5tSXjP2635u/mWKU/MdzM7NmnvT8ywAVhjrXWP1vwT7/aNsc/WrSg3k4L4D+2cyU/twPkP0Ad3pv74uQ/Klb1ByGe3T8JZ/jTEwrkPyPDtltFPOA/psNtH0oZ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yx6DpJWv3z9wvMm4+MvkP2Jw9b0ZoKk/SE3+87BJtD9ZuhRO+wTlP5msNumvb+Q/8X5I4hkt2z9/V0EzMY7QPzOxqL+fS+M/BN26dynC4z9KP1hciWrLP1yxGPsGoNE/VuZINq2O0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G/mCgL1B3T/E+pr/PyThP/LTqnvoyp0/XGqAeZi50j8+H4iAGOTZP07WBz0WaNA/TbZ0inCD4j8VYMxXEgzdP+qGQfNTe9o/9lV4Gsbq0z8VBXVHqyDVPyZlYJ4tj9M/ANdf1K9G6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tcqrC9+e3T/PEaNKp5PkP6QDZc1KUrQ/+dXzLl2jlT+HCsw1TwrZP7zf1eOoldA/I6OAhoyu4j+6l+DvSqLbP3jHpnibdd0/CIfx9iJj2D8bGRXO5VDUP2my3y+2Hdc/gjaGKazb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j5ql2gBd3D+AFGSkwA/mP/hn+i1apXI/2nQh7XHGxT/qDQHkVjPUP0lCFV08n+A/OniIT10F4z/jG2d3y/nYP3clawsOdug/rqbA5KkQ5j+yHAwnsFLVP2UnwJIujtY/B53bmA4j5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JW8eLfmn2T+R9+5ufrbhPxz9wdU/Q9Q/LGbP1uAwtz+HW9aYowDiP37arf8oCt4/BE7T0hPg4z8HO2wUiszcP3nhw+OVuOA/tdAQz3SP4j/wJWmgPyPaPzBdx0eqdNo/z2jjhIAA5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cNmkP5Y53z+LcKmOZz7iPy7s9oOhgqY/puomZ15pvz/0lYMomS7XPzK0fr/SNtU/j91xkSlX4j8e3xiBpuvXP8SqavB0s+I/ghjko8bZ3D9wuqCwt17gP3BKtSghuOM/P+Q3Yzpt4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"glbO1mb23T8M+GNdI3rmPxVlilD+45w/RtVubFufxT/6z6//Pw7dP/RVWlbcrd0/9hFBGAq44T+56XtOVYHePzprAaklF9g/AfXFnLl82D+Lw4eI4KraP+u6Dpl5WMo/TOGy9iPj5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NlNPLbYy2z9XWCLY/27nP0bzCR1YR6Q/VkpfjFEzxj+pl40QOz3XP2WGvy+6reI/uYC21DfS4z8nb3nCWzbcP1U/98bht9s/09+HKorb2z+r7i69KkXgP7wd3G4oO88/86neSNpU4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M4wsHZO03T/o1SSZ/NriP1FXQFlZv5s/lSq0m5kZrD9yxjaGl83fP1Gca1R0J9E/+LGL6Iwj1T+QyqBTb6XVP23JCIQkquQ/4R2TaZoG4D9wWEUnX5jQP7ov92g2FtI/NSZbliu+3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nSRzD1Lh3D+XAl3tzmPlP6N4+yHvFpQ/DlR4N7HLuD/S79hBYvTZP+MA9MkIteI/Nekh5kOb4j9uKhi3VIbUPzASY26sceA/F3+jABmV4T9XZblKTpHHP4XjUVY70NU/ZqZnz+B23D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ha88CZVc3D9nDejdJknlP+zNua3EgZM/JOj6ssWDvD9vBIdU/8HYP21QWfxp7OI/Qj8tj0Nl4z+G8602zDDTP8Ol8vGkq+A/GcDu3od44T9M+FIbUIfIPwrVGe8d99Y/+keOrgAt2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B706ZzfM2j8uzKRsA7zhP983FIC/jKo/FqHtqDJOsz/T5lvySaLhP/YIk4iIHtY/eqoGLolB0z+qLbEoNtXZP5MgcolEYdk/qLUsiJ3p0j+m1hFPH2HgPy0JqsTgQtM/RcL8lBf75j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TwgCVSg+2D/HbdmUwI/gP/CZeOwWoto/CJ+S182n6z/z/z0jJXzmPxNoTfiGVeE/GFoRz+oM4D/Jr+KhhIPTP6N/S0M5hOM/iKUu/3A/5T/WgiQ6BBrYP00DFxJrseU/+zM/1Zf96j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s99TN80r2T9XvIno3dLiPze28ik01MQ/L5YuXV283j9da5tQWGjnP+5VFx0Ge+E/HCEyGaOs4D+fE+E1UvDSP2yOEASOJOU/jM7Lp4Ol5T+y86ddE2TkP3yPTZvJNeY/gwHoE1q95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OCAKoFOb3D8uYtfT9m3jP3NHPI08MMY/UPIm7VKN3z/eT7ZPWCPoP9cuQHFds+E/TxY2DNA/4D/q8sfdnWHUP/72UW2aNOg/XnzF/dLq5T8UnJL9k1TjP82kjHOnwOo/K/YfyuYo6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"axM6kDkl4j+tGRrSzLfnP2JENWo4C8o/N+zC4rpp0D8YUP5S7ejnPxU4F1hameU/xbtMPl0C0z/9X8NwFEvZP66p4NRBvuI/fmjWARkt7T+Fq6AZEf7iP27w3Y6z+eo/Ihw+1mvK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VizB9Nid2T/88e40Z13jP2NGjjsVBq0/qO5silt9tj+NoDk1nc7lPxB17AZlFuI/HwFD3Pxw2j8XmyMbMF3MP4Z2YxPaDOQ/5Tol3RAY1T+ALfOOgenSP9GRtFESgMs/OTcHhdic6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WlnU65j93T+F3M9Qqf7kP3GjN6wO7ro/0xkX3OYsuD99FRDcePvjP/NCBoJWQdY/NeMHTePT4T/X18VVBlnjP9UAlt9K2Nw/H700BKOk5D+sNb2omDHXP1jWo2ecEuI/6mPyeoWZ0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dZ9or5Vb3z/PC2xfxeHiPwL/FhirTqw/iWF2SJVitz/vQR8iYxnmP399N0xim9c/w7TUddfc5z++7tsbLrndPxyGEs1jas0/8ougY4oC3D+k/aFQX57KPxbLyqu0ytw/eGnLHCZu0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QFgSy84r3D8m3SXBFv/kP+ncNbRx7bI/AqnM+JRtpj/RfbMNjDfWPyOppfrB0d4/HQXVqNOR4D/rJqODvmbcP6d7G4hKPd8/S8BGekNy2z+Y/95xWzLUP3v/uNR18c8/eNtn9oPY4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PgJFmVvg3T95OlqKvQTgPwnokgwwFKA/JkUuvofo0j+WtlWfMCbdP1PSVrpIj+M/75MVA+4D2j8x0zqUhcHSPyTYCGR3Ptc//GzPuVKy0D8MMkj87K7dP17MG0aYheI/pPu1R0r85z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g8xxr9VN4D8T+1Y87uzlP/NtdjyX1KI//ETNUnARsj9oyTycYi3gP4UtUkLQo9U/xDp+F4a44z/clDHbLW/iPz6/IC9l/uM/K3Zx7cMr4T8fUpw27LvTP2E/glkCK8k/NCUTrCTw5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+JsZDhg/4D8+bxl3qSDiPw6FFLWUJbo/HYV7OLPpvz/1Jc+RX/DhP1UGtaodgeI/CNby4sfX5D+Vl6kziLPeP+ifQOf3ptM/uimPY2761D8SXMwodC3SP6Z8JKOzYto/sdPnCjUB1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+377xRdQ4D9l1uPZUW7kP5MTGnOLh5Y/4ohW3iH9tT95LY6VzZTZP/Vuzxi0Ftc/GG7HERSc4z8UetHVF0/hP9Ds8w6uSeY/TwbIQFg45D9G8cRce/fZP3CvzkzdgtU/c2KUa1/M6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NqvpdvJX2D+z7iuq9H3hP5nSe7Ay/+U/3h6s1vzzyD/1bEJdCHvfPxYExowGMt0/MY4/RkIY4z9drEf/AaTeP00cHu0719w/EUxTItcJ3j+b7TZdUNjbP0s9jECWhtw/uIc4RKog3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7l7YIEYg2j8imV9P9mzhP9IjD13tz+I/smGeI/edxT+LpV7I8ifgPw4vsH4e1t8/BMOqa91E4j/MMXTJ8tncP5a5EnRP3ds/jhky8P3Z3z/Xqeo6gI7aPzsSfAxJnNw/SWOsrDXq3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZBD0v+Kk4D/BXH8K50jkP2a8asCaJKc/gy3Nf6fCxD/06RTYuiHiP/kqSLUYq+E/Z2M0p0YC4z/AgKzxuAXgP29XoQuZruI/TLU17EKWzT9ouuxdmqbfP9MkpiO4ito/Llz8k2qy4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PMGJ9UfN3z+RxmobkxTjP2/AsptxRqc/7CDEkAqazT8acrlRFjLlP7KYTU5KFN8/w81NrGLf4T8BYGp4UdPdP+IYbFI+hOA/nH9M6AcM2D9MYe0QwgnaP0yPlGQisNk/hAylO0fI4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"38RX+iIm3j8AdHRXu1DmP50CiRll1rM/Or3JSlT5yD9H6VDL6NngP0STjG01SN8/3tGep50R3j9TqaAhZ/TQP9kqQYjxbNo/llhgq+8k2z9GPlyjcf/XP1KgEk3s7t0/BjU4SEft5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LjO4LvPp3D9toOXmsfTkPzNMR9EDtoo/1qPQRVOXwD+5HukrExzaP+qn6J/Arts/PEs4IPGP3D+FWlsODbvcP8gsdJNSgtw/x/crX4lE1T+Ii+qDiJjmP7+CkKITQ+I/mVZL5ayK6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0CXmL30N3T8gFHhLPszjP/O0vMlO2oM/hoLaB341xj9W/jEPJQzaP52AvHCBmOA/LN/8Xjxz4T90TWxHE6PUPy39FxtqnuA/UISRsgnC1z/PISNsDxnjP17sC/Wkrdk/JmHy53qW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xNu+5zws3D+ZSCL7HBfkP0UxtM3vI54/PeP7ee8Coz8yJif5fiPgPxh2Kq/TDbU/EnbusBIP0j+MFgLHik3TP0QWZq4pZN8/pquepA1+3z/Tt128X37SP/kSxde2dd0/tmK5MOQa5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NoOffjFm3T8wm2D3UxnlP752Oso+464/jxDKFwH4wz/TIGRoeQvbP9imQE/45Ng/+PwqAaAP4T+pxu7/iM/iP23PmOjqGec/OW+QF9rw4D9FoVk809TiP15li5EK1to/fvCBljVS6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NG6N8NEt3T9rrZ/62WzlP8GR85L6DII/R3JT+rXKvj/+w3ohDEbZP2IrlPhEQdk/qp+CxAFt4T+aL5rvgzHTP4qYr5LYsuE/YyO5nhLA4D+cjuWs5WPdPwHfe3xl7uI/NBEKREQ05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GEhjphK03T/os9FXu5HhP+t004Mblo0/FPyUOfOQ1D/0ZMe/M57cP9MHZgU8ruA/K+N7bFmT4j/JoDlqJ5DSP+NHxxH4Aeg/Avys8Fne5D+05Xww2b3cPw/bp/OLId8/I9d5lpsf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"03yP0aB63D/4rf5fNPvjPzFZHBR8MJs/pN/cLe1ptD/NPh1kVHzeP91mqyewBuE/nvS2/7xn4T8+7fU1/SrcP/dUEcxvv9E/8DpNbgvl0j8MKeIcfm/ZP3WE/kQWK+E/P1EOc8uP1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i87ZRC8w2z+Cy4HNhBbkPzuGA7hRV6g/E98vEplktj92tmATA+/WP/n6OcSXTd8/IZ7UuGrj4j+tDkH0DvPjP92NFexMCNo/m3tWyJUn0j83H2ki7EHZP5ZNb7f/8+I/FdM7b9og2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5dE5v/fv3T8DUxdzaOrhPzdbQNxzRpU/+5YM3ue30T+mErZ5PbXiP4msHh/+2OI/YLS2wKhu4z/8cviMa1TgPzVCbmZ16to/xwxYV5Vx3T+qsvAmL1rLPw4oo51ZP9g/Jqm9ATXM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AEErZ2sz2z/KiZzqwB7jP49EQ3+VoMk/KgXkFLi5tz8de5N2uariP/IpuC4CeOA/3hYIOVRw4T/LamEtcgbbP3ZydZ3F1do/VgBNyYyP0j8QofJK/dbiP3UFnD4T+tc/dqa6Id9W6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IMnRQmwP4j++/tFIXG/jP1EK6at4CLQ/2k85mktOmj+hM/Iog4fYP5/AeoedlMc/9Sp6h0Gu3D8llE2ESkbiP2DqFdhcUec/cYYHtY0u4j/0kNddDlfSP2sLvgTFL9s/cvgSPqGX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"brtkNF412j/eXDpdP9jkPx1D2BAnFqs/tSYWqsJEtT9Dmtx8VwnhP7aPuwXqtN4//aOuM4oK0D9Nkki2Mz7HP4n5Pz2h/OI/d0WL+4vI5D9/CnR2mvHYP0VRvJnhadk/CkJHahoQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UJwLEwbO3T9/LqT0iV/gPwzG4vtwfKk/9fN1jgB00j+WjDeZgqTaP4fOnndhfN4/XozuhQZ+1T9VJuyAehjOP0EuD0vtyd4/jyLGLPLM1T9F2XjtSWbeP85Z+M4Jo9g/st8yjrFN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nj1wBij63T8wt+NuGKnlP16lVI9LNKs/dfufDLojqj/5inDEvbblPwJ54QIx4eA/tgNKbExs3j/fmAvPoZXhP59VP5OHnuI/6bUtstvM4z8wdywUgibJP/XFRCfVy9c/lDuXrhYU3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N7BbgJs03D8oPK+31GzjP+A2/0V6oX4/h6NN9AgiwT+GiuRW9sbVP6II5EGSxeI/N4ZXDWI75D/jLdfGeH/XP7VoLdckgOQ/rRZuhzV25z9Nayv/dY/BPz5Bhl0s6cM/V1twNaV73j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OvHufiuX3j/hRLtdqDjkPwAeCUe/yYg/YThOzjqKwD9xEep3s6zdP3H3JSN2h+I/DsTaToJS3z+4u+/kjy7ZP6DiNb4yeuE/rjX0SON45z8K1yvfraS/P3B0Aef7CsE/MnFFT/FM3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fYgCQ2AW4T9Lzqxay1vjP9whxUt2m8I/IOHKKg/zsD8rqAoKmhrfPx6Qt+q+jdM/m3hPF/i+4T+WtyxE0ynWP+RDwVpNl98/KcLvbHeR0D8P/9DshOnhP6BL3J+ZkeI/sShWwDMw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iGQxgPxX3j/ps994wYHlP92Z4bhlo4w/BPnIajT8sj+yo8kKhQvcPzcHWNamudw/tbQR/TtV3D9yD4J2ocrdPwMIZhfL1+E/5uV6VUXr5j9VVOJGcvPFPzBurd+BXNA/I0zIGQg+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"INbddxEG2z93pENl1jLmP9dHXuwETpc/MZmpVKx5sj/6A+8bEADaP6YHYeD8HNg/2nQmRBQF4D+Ymuj8Kk3gP/sdy/r76+I/Y3pPbsgC5j+soDa9uu3KP/Rn3t4bOsw/gMu0eobp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eoVdUYAT5D/DhhkUJyzjP4z/R5S3jdQ/wbIqrTWJ0T/mYXLLY0viP4A/7aBrv9w/uQdgLlFN5D8vhn3p3f7fP88JhI2S2t4/GKs1YABm0j8KscaXq3/UP8j2SG+6vuA/MPyCrpUV2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QeMkiNnB5D/GUHroyGviP0ZIScjoWtg/RF7XQw3m0D/AVL1G9wLiP2n8nECvO9Y/SyGGdCL15D+rAo4q7BLhP94+X3Mb6ts/L+q3wI040z8BpaKMMTbOP/9cDhED790/GgOXl6Fz2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LAu66p9g5j9i6zTPCwHhPxTQDJoeK8U/bFwmWxgH1j8sC62HgsLlP1SeE1Secec/HNiScGX/3T/YJuP3KCzcP2o4YKpWHNU/htTpLxsR0j+b9hOSig7MPwAAAAAAAAAA0hlc/+C15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2fN2seQi5z/tE6/lAFPfP8RGrGhKj9c/gPaw4A3G2j+0TSSTUcDnP1pT2ftJWOM/kB1ljJq74j9uSN0jUOrUP5TxOMsvats/YYOdiSRw1j+fQd4OOu/PP2ct3Npm99M/dCEImswn5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"peIb7i4r2T/rKGupsf3VP2nLfP9kvKA/LR6ITThX0D9VfTyzYIHiP6t84v7foeQ/GLx704tT4T9MDoE5I87iP2UcGplLJds/s09ss+Vl3D/lLTHJ4lHiP1n81fKdOdo/HWjGGIJ55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gzcx9lcS4T/7s1StC2TqPxtA+CTjKMU/FyVzlnsMwz+9tnIlOG/fP2JbGzfxed0/4tggAJty2z/aELhtlw/XP/P6BiN4+eE/KXL9DiU+4D/ea1LXy3TIP/7VemOKTN0/+xhrQn/J2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h6heL4SU3D/mNMmwXq/ZP81v8AqCaJU/urI6Du1eyT8KfL9ONZPgP5AwYdk8A94/o7ZTvDEq2z90B92q7hvQP3E3HSuga9g/f4vfabT52T+2UzYdJQPaP+i7VkWOFsk/3gofGlE64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0FMjFqhz3D9N5ZyXyA3gP7mpHNzJa8I/COhALegx3T8n0OxNXDLcP2E8JUN2j9c/S0n2YPu63T9S48VP0SHWPyHMqqkAAdk/uU5uiaP/1D/0gPwSSiTEP7XU2uHwf90/HZROMah74D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RPN4WCK13D+hxZDyjwveP6ZDG4SY3Zg/6lyJyECO0T/J2tYfYrblP5K/tOwxueA/noxAWbk84z+ThRorS57XP44dFmq7p9o/OOoteW1myj939WDhfF/aP8z82TJlz9s/08nx7dZS4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z94RxMhR3D/TLmLEeLblP+PARhnwp8c/OSxLbZ18uj8O06YI1gnkPyb1Hjutods/7n629e2J1z/Fv+1FpW7WP0UnZmu0hds/0adhkjG+4j9jMvaNA4TcPxAND1DBNN8/EcJwkxkA6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gnlvSXk55T+zTJ7HfcDlP4QRvzQCGsA/vl5oiXYWyD9/aWgXhz7WP848ZGEhm9g/S35/qjlf5D+L+V/TDW/cP4m/XyMB3+M/h/87x87j3z/Qh06IMWXfP4K6PbnTVtg/RNQQyk1l4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1oMSe02o5T+r2Mu8OQLlP1hfXMI4icE/WCxbyND1tz/+w79gR8jgP7O6zGaF+MQ/5c2DOixE4z+8qQyYoSvcP1ce8q0BmeM/UGjICpym4j8QwUPgI1jbP1xFnqE6lNY/aZ30CnmU4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B0udTcfU0z/xAHMHnhDkPyu8mUTmdL0/0ce/61nwrz8LwOjahmzUP0RKdeKG0t4/804j0Zz44T86LFfEnnbiP7NBQDLVL9E/ubW3hoIa0j96HNQ2AALhP/mbqYFEZ+A/77OCoZWy6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uB1RG/+s2j9FhPtpynjjP1iOM6SMOsM/a/MSIwRhqj9oy2j6wynXP699+nfzuLk/NR1ducWw4T/GL1PFvDvfPyu4YJCazto/vfmAH5tgzz+YTVke6gjRP3lOPlnzvtA/3k6bbxoX2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iluVChno2T/z4UcJVyPlP2yHVot3ptI/h4jCGKh+tT8nlqfKtn3aP90EqAxPy7A/S1rpH5gV5D+xxskRwmLdPyRRA6WdI94/Fl8NDn880D9EeEgeL7i9PyqYD6d3YNI/k6Zw9Jz12z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hk2FZbQv0j9xIzA2ZwTjP/XU8KvJJLg/apBYQFUazD9t5UbXe6PeP62NjtM7xOU/32vwlHeZ2T+wd5ceMxTXP2DMN819Hd8/3Yg+Pm4f5D/iEtuAw27lP6BdpfO0dNg/2gUMtwkL5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0UepZ5Ky5T8jzp3IXi/jP2Ifx8K1TNU/Ucgu71L/nD8bJDKiLJ3eP4dh2SF5s8M/zJ+4UsvR4j8YUKxihaXcP76haWoDnOM/3naBOL143T9QxtDG6aLDPzgex+aXOdk/aVfBXC3q4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w8U+4jd22j/3ujFjWXviP0uQ2EX8rro/qvRT2m7Rxj8PODQ+R8fpP28/rScOyuE/XYom8ijL2z/nWcn5j9nTPzWPcC1HJ+M/tklWMZvV0z8dMfw8tf3bPz4865+jnto/ECGijufO6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mDKYkZNA3z+mCWBLfCXgP+GlxKd7t8Q/3xMnUjToxz+cO5I9fgvmP2aNf0n05ec/EMp9pcz34D91ojEeVKDbP5SVSiN7BNg/ns4byng/4T+06OsJKfThPxWvVmEVq9Y/pjCh9hYC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"opIdmzuczj+zQQh5W9HmP0QzxQ0g89Y/u3BKdcGavT9e/7iQzbngP54+Zf8MW+U//3Yfnv/+2T/txUTo2I7VP0rwEYZBreA/jnFldxtY3T/ebMXlrtbXPwX/tJSuW94/D9JwqJHW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hRB8r3P21T+F76OA/v/iPx4kd1c6dMY/ouzDPKLcwD8+maJsrxThPwrQGb4qAdc/IzVZkkD73j+8t6en7BThPyLUmu9XzOE/l6bG7+ay1z/HJK/xG+rbPxWYCFmMLtw/QBeqk6wp6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hMq02drt0j/dQCfuq8jjPxTPEnhkh9c/lusq7Y8DxT+C3ckNSWXfP1eYyDZQmOA/+1qa7VH24D8P7o4vLSfaP41BmduCOeM/gEnO/pcz2D/zUFndk3nhPyimNgJppdM/GhGCHe065j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"joioAdlH3j9tmN+Jl6LlPz+qNy/ejZ4/EYhjV/UwsT8Curp515fjP+AkYdu8U9w/epIoy9ZG1D/O2DwTNszSPwYbUYl8T9s/sJGqdu7A4T+x6pQpnfbbP5wNZgbtJ94/pzdkiu6K5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H7+SpCrM2T9+3RAUAf3iP7cd07QmNMM/d473rce6sT91ZU5+6cHeP0Ytd0yN7+E//7e3/MCm5z+9lKbauZLfP3ibyu6LpN4/dmvIeZKE3z/twzwYDQq2P6ArUeFdLNo/J9dKe8b+zj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K/G07XCN4z/+RD4s6AflP8iZTGnl5N0/2AU+Jo4Nzz/fSXsN0kvqP3fxU1NTid0/JybFG2kU1z8RwGByPNbVP2tmQvwO4dg/RKArB3sP1z9MjO+if3LpPx3Ns/i7cN0/OZ0SajFH6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eIvAAkKo5T/7AL5f5iXlP5O80qjwY+I/J/yCcSf91j9xe+UYGOHkP8s5HTYPFd8/fgla5KkB0D/xph0PGjPTP/230C2pbNM/rz3Ge9B21T8D7rzrVorrP6VjDWRmCd0/aGDPwvgW6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gUwQnktx5D8fS/sF81/kP1L24xEiftA/SQo/EGMusT83e6ngqu3jP7831Xk2UOM/tBs/9T4P1D/JzrCCgGfKP7AePVTrctY/oVh5dJsV3T9t4ixrDwfeP/wDHfIVEtg/98TY8Pg+6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"echTBWik0D++WIR5heDiP2nHEXw/UrU/nNCqyaNSwD94vLsdnqHhP9QRsINen9s/CFReouhm3z+v+YE+ZOLbP3qEk9GmDuE/HJtv5+HD1D+QUZkIafvcP1iCv8JtQeA/9/0qKdhr4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oisrardk4D/PMkS6xxjkP3QpzrgUs9U/weYWVRxdwz9TQGB/Y2LgP+joACmeNd4/0CuW1rp/1D8uvzZDYSDIP18LbuRIvNY/VIxqp/jA3T+z25HtHQrRP7DX68TJGs8/GP8/PFAr5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rfaAXLAi4j848dFq7G7nPzCmDjT0M6s/I9b/L3wh1j8cv2+RCsvfP/prbWN3vNo/9NlLONOT4z9lrm23SczhP/42RtFz094/VnJO6N420j/TGn//k3jdP+o5buA/o+A/aax1g7SM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7SYzl1Wi1j8f9p5RPqTjP33czmQtesI/OR0ZXeEXtD/puFXsoSbWPzQykiYWG9I/fnGfG4154j+Wx8TqspfaPwHZt2QFDuM/7A1Scapu5T9omHtTNCzhPxm6fyMMINg/81gktmg06j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QV2Vdkam4T/SSRxiSgriP7GmwF3b+aA/s80ko4nzwT9275uyn/fjP7vVEhhbyeM/vn/a9SR55j9ij1HH09fhP3duMBhu0+A/HFcz1URj3j8MQLt9zJ7FP3uEXbdtIdo/m4tdGO7B2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZW5d6J6G2T/c/rVxHobjP/cbnHsC6KQ/1hwH/nB6uD+cMJTsPs3gP5sTpnwZU90/eGdVd0fG5j9LiKfUEV7hP+3TzbD4eOE/knW/SMN64D/cxXI78xPTP+4GNFNoed8/9LEQSy3d4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UD4OGAgU5z8j5/dvgBrlP4iy36xx5NI/nqfQ/GEqvz/k7wO/73DnPwY8J95QOOc/BcgNQ2k+4D9j20ml0RbcP4n/B4LxGtU/KowVS5ja0T+TPmE5vqTRP+xPsNmLqMQ/RWYJJmnH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6YkE6NJb4j/mKqiQ2o/iP3pnki5pVbo/eAH17PFb0j+PgMIqJSbdP6+31xkbrtk/Qs/GxAPd5j/pzuKKMczhPx1xJ5MHguU/RzEi3ljm5T8wZ1HJvfPKP62qDNw+h9Y/uQzry7xP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+P1PTNKt4z+TBCrMxnXiP1nkZTTicss/PD7l0thd0z+BkBPOVMzUPwyhS/VoGeM/IxYUgaYg5z/6POeRqDXdP/iqNy/UBuM/TYjZfAf14D9L2mlPDknWP4ppnVeftNc/oHl3jx794z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5hf5c6k76D/1H7eg9wPmP2emYqvlvsk/v9HFXQzKvD8mjuuGCbrvPyFuessxHeQ/2AtwHlIu3j+ManXOYkTgP/THPbfl1tw/KBw4EcXM3j8QfB2+mq7aPxtuV6rgGOA/74WYYMi54z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UqN9GuRd5T8xCoN/LNTlPy1zK9zt4sc/6MEBc1/HxT+AIneYj4HYP1cKBapxFd8/pnKGX4lJ4j/uMcDWIUTXPzSD/XCu++Y/8ilScmEz5D99/lZpNjLfP8cwvp3lk9c/zEC6Xgw26T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ol1mJnTF1z90YJT7hxjlP4DJv28WCbo/Z+96uw0zxD+PL/E75N/cP9LomUC9oM8/eEbijAgr3D84zSnKSS7hPwUkPiJI5dw/ZfMDx8x11j9K6s1EB4XYP8yuEdZuZ9c/JmiWjj7d4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KrBnQmge3T+/jM+16JbkP+iEzkAJy6I/NL1wF6HGtT+WigeivgzkPy8hbkS33OQ/TSm/jvQj5T9GLTUVoazWP7ornV26vdY/5d+NqEAC2D/XOBUg3eTjP/s2o6dmZ+A/DlXJnl3+6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jsi+sUEL2z+2dNOg09LkP+2z4YeB/qI/z+rmNfgKvD8mLftMlnffP2aC2hjoqts/69YkFJsM4D9ZPY1HFlXbP/1CkJ5Ej98/hXy2qP2S1D9dRM2jNIvgP6Y8bZiTjuI/3762M71I5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6sYF4wP83D/xis1Wf4/kP7qhHmo6/J0/w7T24DCgtD8F1wumbwXfP5Mg9Ox3l9U/slCWbieK3z/+mJuDJ/zZP9pf4KaI994/AXbdMc3A1z9+BjjlWP3bP9Mmb1p8Z90/eX55Nkm+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aBMHqs1L3T+QraYyI1rjP7Mqz/DKqZE/zxIZLqClsD+A67z6GWXYP08qBzKnS9k/gMbjLAB14T+rPPyzvsbZP/M7jwfV7uM/ZoPJncUq3j9Kr3kSuvLOP52uWJ/H4co//IUazpu64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bFA7i2rF3D+SxmE0x4zkP4kb9nBQEpc/b9F9Vxlhsz9Q/hFHEDHdP91zV1sPUtg/Pum7vcu+5T8dJJr1uGjgP1rJ8K8WUt4/QRGfNrRX2j+opvfDnb/hP1l5lVaZI9Q/TBz6Ya1h5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z8hH1aKv2z9mcs8C8GHkP/YWIDsSHZA/sfKbBy58wD8vcIOVkZ3SPycOr4ev3tc/RQQhYYy64D+3fadnSVThPyW3eVTEXuA/DJyxN6x23z/ib45oDWnVPzPT1o7fC9E/3+m4h7T42T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G+TLfU2T3T9kiFnazbDkP4Xgozix6qc/Ya9C9SLEvj9hpkeNke/iP/8FjlYkDOM/+ckq5SCI5D9EGb7GO47dP1+ZRJVgUeY/idgEoiyv5z9Njs7BL6zbP7eFytjlWdo/+YdOStwL6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OY4muuHy4D8bY3ZY+N/bPx52jX3z4sI/qCUU44oD2j+8if4UC2rkP/kqSLUYq+E/Q2ePhB5I2D+44oFKzlDWP0uczgwemeI/OhzS1/jZ2T+MpSdn03XcPx2N/6zYgtg/YRCFDXFx3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5RJSuUcJ2j91D61U2hXgP5tmGC7LJZM/0KcSvdpxwD/IvLDqcbHePx5miO7huNw/2mdbpQAW1T+zQCS3rP3RP8qYX5S9j9k/3BkjDqIG2T86x5Pb7ErhP/i9ORQc8NM/Ew3mv4H65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qWkV4c3L2j9N/08QrLTmP6GUlpUKc7E/ziOmvEm4sj9W4WbIoAfOP/89PEZNks4/VhY5L3Ci3j9eDyCX4JHeP78ETb8gdtc//jPbjv/W0T8iWayh38rZP8HefJu+CdU/ZtscO+bn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BVNbJv8h3j/v4w+uFM3cP18eiUHiEaQ/ok/r0i8szj/5AcO9rgPjP+BxQvMS+OA/FDq/Us704j87xi/Gwv3YP4US0Sq3Pt0/CsqBiQms2j9BY7Pc8qbXP6BTI1AqtN4/htnFFdhm5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xpgjv0Ql4D/i7OCFg+/gP6YAVxUX/54/GLXPsRcWwT/2Kr9JBDXjP7T9jO+Myd0/gOHgyI525D8Q9zGGl+7bP6SpgfcuRuA/VxeZI3Fo3T9OAE3q8e7ZPwozbe34veA/mnG6GSkJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W0+Tggo+4D+JeCQu7XjmP2KcHhzecrM/UyYwvZRMsT+/1JTBxdjWP/bnUljk8Ng/kEDOVjda5D8/urW6rbLhP1h/IVG/keE/FJ66y+hq4j98NeZfDcfnP2lMbtRDsNc/I1coermC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ASgAD6AF3D9veshEnAnkP5xF59NMV6I/mOrRNwYLyD++acxJzkPjP/9tSjfO7+A/QhAMnbd34D+ydLu1dgbcP6BjQyMY6+I/qiEQH1gl5j/l0yK6JMXfP+FhHXqMe9Q/vCnL5zIo5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zuGDzzx73D/JsiPIXfbgP6k5g1am2pg/pxHV2wu7wj9X/0/wGsHcP0vX2zwrjeM/5vw6gGp82z+ab5tcCJTcP3QWZBepr+U/R9WQAu1X2z8K9B/w7QHbP6UpcqF+nuI/7GFSeLYe5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dAsEZshB2T/mWQ1Z+hDlP0HZm773l7k/seiz8xe+sj8AWXk1AQHdPyKhi27GDt4/WNbc6Ob+4j+/t30FFB7GP2THA9H3IuA/+cBPAzu+3z87WWOZ1Q7YP2EwJpza8to/J+7eCEE92j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SB0LbezJ3D+KYQAaaSbjPyk6TY22/ak/2mdf8HKNsz/knvXCON/eP2J0xg0ei9w/WE8g0BOD3T91sJ3XtAjQP9B0hz2rC+E/t9UHWITt3T+AyYLnPLLYP0whK0DVMdg/trXNVJxC2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x0hF5aFV2z8Lp+PX2m/iP/EIPk4YuKA/52b+wWCZtT81tI/cgQbbP8dvg2lf1t4/4vxtlKbq2T/8m+rpJIfTPy/90gOkJN0/FqkKuX/L3T897e3Lm+fQP/4VCRuxpN4/JkWv5uZi1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FKes1Biw2j/8g0/hYi7jP6d7ge9SZKI//CWpv9Sduj+oMgR0LBvhPyWpb+ZsKdk/DGkzrhi+3T89BDScstvSP41Syop0IN0/z1I5TDmI2T/mv+4xYgPRP9XtPhkpauI/WhOV7Sln1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XnsnYFaC4T8nC+uFrcviP9geWSSF9cI/ecAhNlYVxD9UVXe0/9ngPzmwR8pY+N8/4e1/DZvs3T+ssV6gyD/bP0twi2qjx9Y/s6e9yqCc0T8UDmTRTmndPyuqwvF3ktM/3PQgf8Ys6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NlAUnkfb4j90inU3j/TjP6t8KzuE0cQ/TgDiCXCsuj9DGWltREzpP9rR/9Hr7OA/H+0sff1n3j9JhzsAK1LUP7OZq2NINeE/VMfTHQuq4D9nB+mk8pLRP8yJwgaxO98/itPddgoH1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+DcYg+Fy2z/duEjXhpLlP+Y3D0ZFbLw/cNCiBD51rz+DWRiKBsncP5upnh8ebeI/FBnxE3X94D/uMuNPoMngP+ZG2JrJCeM/sNj1TFdX5j9iQyuUK3zVP5PkGIvqTds/D9TpJuwf6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hgRaYQAf2j9J8ZILOLLhPx8EzKUK+Lg/KI6CHsKQ0D8JNH+s+afmP3Qa88gZK+M/Vaj6FORG1D87faUHUtnAP9piufUaDOk/Cp1dt2KO4z89rnZbjP3eP4hCOSmkgOU/F4AnSyL55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YmBmbMdM2z/h4E4TkGzjPzkfo+6RrqE/bVS1EAUHuz/ibWqcIcjdP6AeBzQnnNc/vpbGl2q35D9fWc3OzzvgPxyBVd4k79w/nrovmqAQ3D/xheUK6K/nPx3AhWIp2OA/21MUoGx37D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"paJxa4SP3j8Burs70pPhPyZGJspDlK0/d7+hJ4nztz9iyjKDftDWP+zkNVzOR9Q/0nODhd985T8cg08+u6ndP5YKKc4RV+A/zRHY43nH1T8olNHSBrDnP8zPCtV7IOI/mecaRNVg6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jKUOaK2m3z/PCEx27sTiP7YZdvbSvZY/J6vwRBuzxT8vgKZ5JjXiP93VQqy+9uY/6sNuidwc4T+EsUzSzL3TP1ZMXwsJi+Y/c1W1JeCo3z/o+IDxu/bbP9PT+PUe6s0/xEpXj9Uf4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2XW4R1Pz4D/QqqYOhyrkPw0s/ruAdbk/il79X3XItD8P/HmEovjZPwWmp4h3+dM/K0B1onD94T/ZwF1NeLHhP4oDUxipzNg/CWcjZ/SG4T+to+3qr23AP+upwxDRrdU/VUfzr9Wm2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n+MTVy581z9p6PX8LirkP5x3IOAhO8M/2CcHFIzAwD/H6dsiAZniP2VV3n5M6uI/MNd9cXTV3T8kCZG3xC/bP1592200Z+I/atdQqa835T82nJFJL+LhP6dT9z30UdU/aFb9vdYT6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xvTUB6DD3j/5nRt8ad7kPwWNCeezt6k/umRfc7XGtT9KAyPdeIHpP5VwvmzfuuQ/cigdpTHX2j8R6NGpooHOP2WBhvZ6/eg/6UsjGBbd4T/uNAfcXCvhPxwnUrSOzuA/1micpIkR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ojawf4+F3D/LFU283TXjP6onZ5E7hLA/BSp3PN67wj+keZgdmbHpPyBggUqS0ec/SedCZsSi2j9WUKhe71jPP9umKAVQ6Og/ZEAQNpk64j8V3M8nf3LgP8HRiqIDuOA/QNOSnH8C5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ArtiDobJ4j8QlIoqwwTjP701/fiJZcc/wJldfP83wD92u1RkCs/nP3MTTjkKx+A/XDYiYHR74D/Cabfma9vcPwNqDiiKieM/7/fDnSad6D+lK2ZnZQ/bP82TRKo7/Ng/tFEFq9ZM6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oZSxa7In4D/yWH+c+GjlP7t31JgK9KI/4JiLeFgMqj/Wh6PhXy7XP4Wa4sOLg+A/9EFwuf4n7T8DUOci3uDmP7KuzcfCmOU/Ldq67iXt2z9J0bsb+r/hPz/7xVSyduA/681Uuy+M4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v6AxRDJY3T+7anQahA7hP2dSy/0jxJA/fA1u6askzT9ol165pEzjPwn9CDNFN9k/Fc5t6V3X3D+rJqLTQinUPxV4+naEouQ/jHY7MTLq4j+0mUajXAXWP/j2UI0XVtc/vX53d1nb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vnOuiRrY2z/l8udGcCDlP1SUICHT0Ko/DSz5hOHlpj/et/+sR/LYP4mkR8zYSN4/vqeYoE8u4j9iPI47OenfP1zcCzdsVd0/WHcv55232T/GZJJy+KvQP8u9ubsPy8w/aemayzQK3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iV6qv1AL3D8gbxTSoMHkP8Bus9x8r6c/w+WeZ/Kboz/phV3BUCzWPxLxFDWofdw/FnYzQCI54j+YypC2FLTdP+8NCKzHy9k/ZfYd0ECa1j+SVxm5vA3QP+1ihTzkAtE/bfHjIzvl2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7ML/hbMg3T+jf5LTgE/jPxN+gYjhyo4/Kqcep3Egxj+jpSfB47HaP3w0E5wym+A/UQT2N6zM4T8ebQqvq4fVP5gBJzMk0+A/wx3g2boI4z/g94Q4pIvYP6wSHht8VeI/PmZv83P46D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BFW6Rb1X3T/FZwUesrbmP4zFgF0r96I/YOQjZT/3zz+P3dhbJKLfPzgHPUx85dk/ICKozz0p4T8takIWNqLgP1E6JefieuA/IIPmAyUA5T8oiYzU5zbhP8z5orvPnuY/W+3crq/24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ltCHLRAG2j+fkZXPv9XqP3gewPUHpqg/cjhrgoH00T8aINZMBwnhP8e1Ait8Sd0/UQm0Y1Ii1z+lkRXPsLHGPxS5+GQO1+c/MylDa7PA4z9IxkAenw/TP9gTIr10f9A//E4qvmOE5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b4d8fp3K1z9wqD59SJ7fP+XYQnIZVcA/TPB+Cve6tz+GyMpu/JHcP2J0xg0ei9w/sIzUJJ/94T94Ik792mrhP7yie7+ZVNo/igVdjsFi2j8LHTxl5abbP3lHGcG6xN8/tvWkRit04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6+6tkQEY1j+Jx4vvTBPgPwETIC98Y8I/iaaEhdL2vT9B61CWDSncP3LvM0YmI9s/eCW5+ZTX4j/Lj8LxH5niP28nStYtoNo/TYMDw/Bi2z94ktqd5oDbP+d3I9YAOuA/AZJ0EGtq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V6JkzUf14z+xmBl3jd7lP2JZjvlB47Y/ikK8JqrSsz/igxnNn4vhP9BnPm4/d+M/5OHwhr8B5T8xv670syfcP0/6KnKpLOA/phQmlGL91j//XoCxkCHKP+grgyImpdc/5UcNsJun6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/l0j1TTu3D/jCEOBATfkP4cxFpMu1b8/EHEiaWI14T8ioyczzNjqP4mU6ES9JuI//B9TwAJd4D8MWBhwKr/eP+4cFsYIruY/Q/g5PPnT5D8wagj3snPgP8I/LaXrltc/NgoYlZeKzT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u3RH0ZCm1j9hv6WdEs3hP/mEVoi3K64/yYQ98tVrzD+LssHrphLlPwB8XkKYD+A/+s2IPIbE3D81q7m/xCTiP1WYzVFXceM/zHj8jrko4z9NDOyjdC3bP1k4rKh/QtI/aLipsH2G2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YlwrXr4b4T+Jh+U3ZlHkP3X7qBzng8s/U9uZyyT7uT+sb6vMeCXaP2mNceRKnNs/lgRUXUGz4D/7KdEu4bvOP0PcTpHC0dg/X0NxpPC+0z951Dc9EZjePzJVCF1qxN0/uAMrbtqF6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TLcDg5rV2z+pNoDST9XjP3eyLO8c/pY/zUFbYbpgsT+LmdRG+W/mP50AyrWWAuI/rxHnWft41D8FiXuOmpXZPzVGExYVBOA/r/DxqZg13z+C/dgDAEjUP26roc8ljN4/l0qMREEl5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QYKTPcqi2j9KGa0vKi3lPzrtzf0M3rg/S2ofmEDtvz++0ie9i/XXP2J0xg0ei9w/lSwu9mcu5D+8NsuvzVDYP7t57o1J1+Y/AgZ6M4DO5T8ZHdMLRsTYPxr7VYdHNtg/XjaqQeiG5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ITnwJXyW3z/0bsso20bkP48JvD0RlJE/O3tBvvDOzj+XueCEYL7eP/prbWN3vNo/x80amCZx4z87wG2MJs7XPxzzYWAFSeU/AKxaZHg64T8oSkRl/vnKP3Qzd6s5INg/2egjBDND5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TKBbWXeV3D94VTlRZ8DiPw95oxDSLKE/k8Mv6FbuvD9R9HYWAiriP5okHD0gzdg/uQdSN1Nq4D9QkHANZibdPw7PmzkpSeI/Dn8xy99U1D8g1Af/20PYP2Y8lwrmJds/JJW8MLX/3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nG2AwI2e3j9xLE+GBxPlP9lh5cmm+qw/sON/TViKoT94TQ3SCnThPx07DKXE49A/ocKaray54T/q6gNZWyPeP7FRx7kXy+E/+dtsK/LB0D+Zz8Tm2ZDVP+RZOPuPNdQ/l77IIG4K4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bd3Oq9DM3z+qcI23KVXiP/3DxsM8Z6w/WrgeLDIvyj9DwT5bh3noP+mIABHvDeI/aiUEePcy2z9SuTjIRmLVP0cLT1rRreY/jLruP/pS3D9C/OWwx0vgP7AwQtSHuuM/OhdlkZIx6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"53MYtQ9+3j8d3taMn33iPyLbkK10EKg/gSbGYHk4yz9XWRziwovVPz/GWtfzBt0/Z7g9uSEP5D+TH8TWhKTdP3VA0Nut0s8/647cf0LN3T/liyHA03bZP3YL8WTmw8o/wrggWZI54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f7WF/XeW2j/D6XGl86PmP+zIhnCZgqg/i92riFMz0T/6qAx7N7fdPxy4FjjGudo/eFEEqdqP4z/ZTTG2EFLbP3CFaErP1d4/vCHE8oL93j8a9C3sGRbUP0HfszunM9Y/3SombDNb2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DlTSE0BM2z97Lgyjl6DdP9wv91ngLKk/uLxNRi2U3D+vgQbalovfPy+g+Cc3nts/6LC4/h0t4j8tfD9ooqrQP5QfdTbQluA/na+6Wmr24D9cN4XckrPXPwB91WwWm84/v0JUqFe45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R6dUJ2JY2z9955wdTGjfP1lM3kJJ8aA/wNBax8mFzT8kYXsPP1DkP7htICNcPeA/AG0ro2e74D+CTl/pgVTmP7WU2UuQxd0/27Y3ZRH82D+ojIvfLDXQP4vvITee+d4/n96f6AyP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"65ru1ER93z9VsXJQm5zjP8WtVYC2+aM/qU2yBm84tD8KsvXttWzbP7uJi3LGr9o/NZ0IsA+L5D+rc7h2rWPiPz67kIHn0tw/HRkFP6W3zD8N3rmdgjTOP0JHsjAGN+A/f/wK9Nki2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ImPMI2eX3j8btKOkxJLkP+J1ipmKJJs/fewSm6pUsD/wLM94s/HcPzXszuv6tdE/Tm91NTKb4D9rHKdJ4pPaPw2PK7vCu+A/999MwRPJ4j8d3PrPZyHdP/imEaBPCd0//TG2KHzV6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pbtfi9iG2z/KrVRc7DjkPyeaVgZsm58/RQSRpr6ctD9k4yPBjg7VP4SHIweEhdM/JiRZPdsz5D9GoTvKHgvjPxJ6hTkcFN8/E35yADRz2j/mBLBTicjdPyqVY7RviN8/7deDh41V6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CKLYlDEZ4D9dohQ05ZnlPzP/b8kW+ng/ZU/mbmmItz/IQQrOIAfjPxhiU3m4+OI/wqgOV+qq4j+PLNkMa3ziP8dV0Ar1bOo/YGq60Dzj5T9QYmAfpWvZP20qFyAHiNk/70cbAICP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vwKMkdZ+4T+3fZS22nDkPx7n6yg/7LQ/vYsjrxvemT9JSgwqqwfYP86bnF4UadI/IUEycOct6T+ewAOlOfzdP/2u97k8i+c/iCUCSaqX5z9ql9lDKx3WP66A1iZ/5c0/5Nmw29sy4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kwY9+5lK2z/zCGHPPaLkP5dOta7veo8/4c8IbnQQpz9kMBunW47XP7Byl0CV8dM/ih8uZF6z3z/JqX4UvVXjP5cZkcmBbuY/h8nYoRo15D/tdxjg+WPXP73P2jOXctU/r8faYeA45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qGgC9RfY2T/Uq3vvLsXjP/ATgTlUyJI/kBjpVXmqoz+dPQPbGorEP96UUxK1jbM/nh5nI7944j+QLvVcj5DaPzYZHyYPy+A/OZVaHFyS0j+iZ69UtILbP9CmP6FQ7Ng/HoHTJFcB5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x737q5Ht2j/M4BadmLLjP0QrI1O6bX0/phhv8rfPjT+S77W189XUP15+94FmJsA/AoxLl8MK3j/yXWmu0BfgPxwQweyCFOA/xBMtpIvj3z+mVmj5InjaPwYLAG/9+No/kf55/faF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xyE0s82L1z9bnhmjgzHkP4p3YrNEQcc/1UX0+pnWzz/Y1KL58eTYP0upn3rQVtw/jhbVPJ934T+HXEgIR07UPzfR+3V4luc/tawciIwm5D8VdVWnTOnkPym793AFjOM/v2wlaPvs6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2Ywp9XBh4D92v7Ow97blP44MkbrMbac/4GEvIMUasj/39W0XZmDiP/trUtlM6Nc/hK+xt8TH3z8udMQ+yPLdP0bAwXayuuI/I1XIiuJp4D9KEZRFg/naP4ulhldfiOE/GdIhMTr45z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"puJjDAOb2j+SegcB/rbhPyTgWuC80bg/tUEI7hktzz+OsbugAALgPxNqmHTYV94/amys36Fm1z+DWopk9zvNP0MkSD0VKtY/czJell972T9NGfMUh0XgP8i8S3s+d9o/LgKCoxbI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KWrdPm8o3T+4FIxKLz/hPywYB64LTqE/QigfL7d0tj/qNJw2mlPUPyhuh/Cyp9o/w2zGEPv7vT83n1QFHFXIPwxNp2C0Nd4/dZ6T16UF0D/5Ss7V7N7iP3pXpGKfI9U/VM/6GbvD5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oqV3STqR5D+jcVWLhEviPwvUMbuvn8E/1GD+3Hrbxz/TPA01pb/kP24S9MZIPOU//XT8tQfw6D8JT/1nbfDoP0BbM1CXjuM/piLp9vrR3T+ZtautYdjPP8ySsNWtEuM/+JLNl6GS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xa0TCQci5T/N7rQ/F/7jP3PUgJOZoc4/1oz2Tc7Twz8UjffLS3jlP8vjPu3Wf+Q/LppzeAOn5D9BXPSUP3bdPyliLFHwtNU/2Y6q7err2T9RYX25DJ3qP+6Eh4vxTN8/JrFMy8Ma7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h1UjgtUx5D8VTVZJeWPhP4ooCIsFr8U/xX7gDCq5wT8NikTsQc7XP+9Yr+aXfdM/Gxdsaou55D+hBb7XWQ7iP5MXAQsGuuI/p6g691rm3z8qnW2xsSbUP9OM4LXu1Nw/TC8QEGIm6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g0wy4uis1z+siw5EOqDiP9McGkQCmLo/HD9PkUNpsj8z529xg1zdP4h4LFfTN88/XPEUhA3v4z9Xg6nm+V7hP49VZbBjpNU/C9lJ2OXn4D+ycCMwT9bYP1/juDXXE9c/Vf7uamcG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gflm+JFq3D8LlmUqwQbkP+7qYohhXqs/CuQu84lKuz87V1jNvn7dP+HPVVJxJN8/8kRdIoUF5j9Z0dJliC3hP59g2pSZM8g/sERCXDmZvD/VV7JQkUTZPz90gY7v5dk/H11Wig9W1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lPCUUBHk3T9Ids9ivTvjP/Hi9M75MaM/PTTq437Yvj+OhNWnrJzjP8VNAxH8MuM/b9zpJR285z94Cyqco7/dP4vuMLQuadQ/c0FlRNI7vT9dHUj5R9bRP7b/QjqqLuA/sjsHEEw/5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2LgvYWFC3D+HfflgQefkP07OgMd7Vbk/cOp3gjTGtT8o/H+KCc7cP8vAY+KJktc/jViT0T7AzT97arr23pPVP/rKmdZukNs/viXUH+ys4j8aLLmbCBbgP3+tS8AYBdQ/qL4yyR895j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h6z0yHxP3z/MsU/tTaHlPzTq4xRZfbI/mkNfil9Jsz9IV2cbmrvdP57SV9/mI9U/xVNwUpLJyz+szJvouIPWP5JFkUZ1bNc/Oz3gL1u04z/NaJ8CFPPhP61HpuUr6NI/G63QydqX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H3www4QT2z9axD8sZaTjP1BLz/99vJ4/hOxkwl7Osz+o9k1T6ufgP4NKhGzOsNw/BT/JXQwc4D+i/jbRE1vYPzXLgBPUFOM/ECSHSxp10T/ET5gwWrbWP4XpgOhRBNU/fVA5VjJz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FKFckHI14D8ydm4WXPrjP6t2P3s90cg/F3wuMX3ptD8gkLoP4I/hPzy4K0L/Ets/G6CdkC7b3z//BwgsmTrkP59MIuUXfds/jxxtyGrK5T/B0t9gzILNP87swwzzF9Q/In7yX3Ms0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ahCAZvGL6D8rMGHQrgjhP8AOGBJWhNI/zEkXc/Vu0j8ssdTKsiXeP7BEaePjBNk/bXXFXFzH4j/PYP69b0XWP1uArqtmzOI/IkitJFq/0z8D9AadbmXGPxLEB0UQrdc/VYKAjOeY5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0Z+Nmu/D6T/dgFS2lYLhPypOYKH3hcA/+H5BzM5C0D/dO/ZvxRDjP3i0qNNE6dU/Dk1t8jBk4j+sFEfVAR/TP8+DGT1f/+I/6+diGokT1D8VCbwvQJ3NPyL8vUmfvdQ/WhdwlCun5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"spqnbtHT5z8Dz6SCfuXgP8MDb9yxKu0/an2rfhVmxD8bj0PywU/ZP/dXHiBZi8w/qWxLEHGe2D8pWWOJNpXUP4rxVQiq4OM/X+2YW5uD3D+X0KdMcl/UP2kIUW7RhOM/M9Y+jQq+2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YURMOfsv4D/MRkCLUQ/lPzuiXBq2cNk/VMB3oF1Gwz+HNqhKmsPgP/HIhVM9JOI/0y6nGJmj1D+S9HGCUGHUP4PSwbNbAt8/HrJ84i8Y4j/NlmMZGmTiPy2mqL6eZr4/srOD8RYa5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6H4gVubI4D+Z80xXa1PlP6mHI4qxy8k/wAP5VoInwT8JrlRZVVbmP0M6FltrsOI/tWrOUePa2z/eTqfyGnLTPwrZK0Q6dOM/Bd5M6ugO2j8b3zOqeyDaP+/RqMl7AMw/tfS5I2Bs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4eeIqd1I2D8Q7wbCh/riP4y0daBy988/2fjcKVi1vj/5o1U3piLlPwdseAioyNU/fhqfyB7z2j+9gXG+YonYP/s3iDuuF9s/MAMKcFPy4j9/epUsy3ncP4RyyoKwuNY/naHXZ8jX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"THej6RAm4D+vu96rs+zmP9YzZxeAt7I/dEvzan/1tD8fJvjijgvjP9Jy8MPMPOY/Pefbonjt1T/TKRhZqLHSP7KttWHMMOU/l8fUR0mN4T8Y2CM/iBHUP2sxoagQRdk/8y/K+6Du4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LmCHnXjS2j87GjOSCJbiP4D567g1qJQ/7kxRQX/GsT+fi019jtPiP19+wC3pvuQ/mAJPJbBW1j9yDUE4tknAP7DC0bTm5N8/0pKoE6qr4z9ax9N9F5jTPxsRSZndKdI/VrcOdHjY5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3pHO5IUX4T/b7FM1rknlP38q35QpMss/n+POxE26xT9XKGB5XfvaPywn4lDZ08o/JxErD9Gr1j8xdvqTagzZP3kPiyLM39w/0ElX6F80yj9EuhG80T3hP0Nf0Kr04+g/ins5zEws5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rgrK53pT4D+eKWol8IDhP0KmNWu0a7E/lMRO9lovxz9uPgVMuCbTP95quO0taOE/vpa4oGzU4D9e7WvlBIzhPwliCMuUY9w/8CCkKHZ14D9NMjQ/urfiP3iWxNn0J+Q/l0u1QTSx4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"45/6ERan4T8RAsNcYjviP1Z0UYHZQ8I/vto7JZqx3D8RZ49tmkbkP0XugZBVDOM/2L4bMRuQ3T/3Zm9lIWvYP8/SurNuL+M/FG7vaVJD5D97zaUl/wnhP0jYE6qCxeE/GTKTf66l4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QZxjiUAg2z+J+imUyW3lP55RiPySHpo/PwywkKmcpj+tp4t9qS3cP5L6t2wWD+I/wIXF4c952j+30K6aOj/hP8uZteudVdM/b5F1MsJH1T/uNEgy7OrUPw4yJUHk/9E/5Kq0884A5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bqhBAmUS3D/AnBP0NfviP4G0dFr3LsA/hrV382SCtj/0r8u7stHgP8KTCsUVitU/OMMYED2Y2z/R5GLamSnUPx4rIIr+aNc/VjoKwOhg4T/GqUE/tl7VPzitePGngt8/Ul6XaxHE4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KpgHuH507T+++fS75MHiP97ZSchCLtE/fMEc87oRsz/jYA+rMhTYPwjyEmS5f9Q/cI29CO/M1j8CffJmUKzRP4CPryHjB+M/QuaL/pYJ2j8DXib2LFzfP6maW6adkt0/weCXh+9m6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tfpFRnu+7j+EDDLKQlziPw7+xijuvek/cAEYKe340D8nxk2E64/RP0GyFjkG4tk/zVM1cEkM2j/DK50+6i6+PxvFA/S/ldY/SPbSdD3I4D/FACLLs3TWP75n2X/7iNg/LbADck7R5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/hcr2TBU7T+Qx3FAgcHoP6gerdwVH+Q/6L93zhhCzD+UENm4OtPeP55x4Yoj3sQ/X8GA/obn3j8KZc/5O5XiPzt/JrorsOM/iLQ1reP/2D9SLhEB+F/aP+Q68iksqNc/kf55/faF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CDbP5fOO5j/Q8ijAdW7jP/F4h78e1sY/TAhJ6ibowD8h6yKWzEHdP0y4NucvH+Y//nvsIdmt4j/zpV32gTnQP2A1bLi0z+M/Srb39UmL5T+qQGenGY/hP4HeRNx8xOE/GLJJ+iz45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XXFnXO6A4j+Xfptw+ibiP99883bIo8k/OEREkGshrT/QsNRIZnTgPwDcX5pv9sE/y9ixUfM81z+57z2I8bDfP/6P0FYAKuE/KtXsOlw22j+LNAr4ioLVP6tErsqq5Ng/TGE6Vs0U5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Iyx0LX9/4T97D00A8BPlP183F2/iuts/1ne5nF/WoT9WcJjp06/VP4fzIsIAc9c/ej7SE0pg5D/c3aZIMhjdP0MSBhZQxN0/p8SMop354T+tq3Bkht7VP3c8saKvItM/tJYmsuK94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SwRfr/rd3j91MurrVOPiP9774A7Z0pA/homyAFPowT/eguNVWjLhP7vKbedOjtc/trdD9dFc5T/JjskaegrkP2736tXcbug/UNqk106U4j9MNJwIn/rYP7wXh0hVcdw/kU4i6Sht5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YCDRIYVH3T/BuVEk59bjP0HngXNTfac/rB6ircSGtz8a+J5lfwHeP2Hf8giuEuM/m6vvFqHM5T/ma6xGftzgPzMeIjAuAOI/velAa/ai4D/uCkJZRu3YP+Sn2sPJB+U/AouK+B6w6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ba9UjS4w3j9bPYzWXTrlP+DXNxb6vtg/dNsgYMIntT/uhC5mIdnmP9RJDhUwaOQ/Bh5SDEfZ4z95z3Ug1ADiP6XhHEPApeA/NMmsp4Zx1z88sW7fED3oP9H3EmOmItk/ZEaZuTAD6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x9g5b63o3D/JX0NMZYPiP51cmxhkapE/aYdDz0k6vz9w/10oR83eP/QohmvsS94/D+lnYkx24T9gzLW+4J7YPxq/c4/5JdQ/utfKyihc2z8xsqn9Q06TP5enlTgjxNU//KCJAhg53z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QikbuZDf3j96eVIdFSLjP2mWuV3KCrM/IjpzXSBzxT8NNw4rjNvXP+sZkTuMfNU/ALPvQKMV4D+pmqPUrv3aP0e3v9vENuM/q8jMZk5R1z/JcTTjqN/hP9coWKeDDc4/n8b5s1IX4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rQkUUgFm3T+MHbpkwJLjPynfDyt6YbQ/23JiuqQFwj+C1Z9619zSPzQFvjsmudI/lagD8gA04D/cDU8CHH/aP63Rvc2CQOM/Fnwwixch1j8EYHxqqIzdPyZlYJ4tj9M/kb3W1bCO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HyQogT1K3j/7lBM0m0flPxwhLmETSZY/chD8hPaWpT8OnyKtypXfP84oO01eStg/FMoBm/q34D9iEfg/rqnYP6spMcrbaN0/THHMgbmg4z9BMyL8pQ7dP59T1Gh0ouQ/WtobMdYI6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UIuNU1LU4j/S/Z2SURXlP0QUPOnutcQ/jo+GH2lOyj+EKbN2qp3dPy9fFrOuv94/Ct/G0HIO4D8oDqgpNeHWP4S9ik2/sNw/TfuCmGnG2j9GFER1Yu/DPwjd6yM8csU/votQVmVp3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tSWB5Ikb2z81s3poxk7lP5YiXmXxI5o/hE5u7rkxuj/5ygDuc7DjP+1+3kF4e+A/hhTpz2l+4D/nMOztQiLeP7P5Dqb4KOQ/YkZpmiA94j8+3CgdKVzXP1J8gKW1KNI/CKdvwwii4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8lPbwFf+4D8eBQdbWHTkP+2YKHTe3qM/sgGVMXsesz/dYpn0zWfiP+G+ZkQ/z+E/BLNubhW43j+APTy1K0vcP6X/K0AGn+Y/D+A37odK5T+6RS+avYHSPxiuDrUA7dc/vdFsrv3A4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GdGEPGq43j/YZZiFg6DkP63kn8xwxbc/J4RWFg/3pj8GNytw7UvjPwYgrik9fOA/tZOfczIw4T9z66HXRr/gP72A1EnwDOM/xBYe2Llg5j9eUD1ckRzWPzse7XpUz9w/2WMjdDex5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9NuhTCWf1z9ph6mb7XrjP7uZEn7AjtY/rpZMFdJyzz9xhuNpVx/aP63Ig+520No/KPCvVoXB6D92s370gqDgPzWBj3sem9Q/dGFyM5ec0T/WzlrHgNLeP63S3koLD9s/kXHqo2yl6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SizgI8Gh4T/ESiSb8QLsP+Xrf1JqSqQ/IWIlq3ZXyj9MdZHp7FvkPx56lnh6Ndo/cPocIchs5T8I2wZQSoPkPwBrezsSscs/Er/1ezfazz/2OffREEHRP0crig7gQuE/QNFX+Ew94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YakFJfhl3T9v4boMSKLpP3tOHTXDs7E/i10fkvcw0D+k37m1iR/jP/FjU9d7+dk/kZet8+384j94zk3zQ/HiP1y9puJFlt0/s+SJhcijzj8YO0WCvAvPP5hpCZZbqdw/G7eizvya4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eZRHQL2B3T/TAuqaUfroPzDOgSedkJA/tON5c0IZyj8aBlGsdxrfP2yHT7bQ4OM/adwcOlkq5j/svZpoFFbiP3E8lSlwc9o/43sBxaHO1T8a2gJeOEvWPweUCq1HgNE/Umn3y8II5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9oLyS+YJ3D+bUcKU3WzmP8lamtHBcKc/hL9JztltyD+efPdvjJzfP6Ursec1aeM/CE2u/Wq15D94Qzgu+2LgP8cccEx58eA/zDZtZXBZ1j9Jb2CSofnRP0rt+qzbQdU/HUqGTeME4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8qPdqeSF3j/WGIlgsC/jP1iTb7f2Aps/5p9a4wAcyD+F9g/vHpPjPy/t2T+NQuA/ItcgPqBb6z+gAaA8j+vkP8I3kg2HVN8/gnBwl3Gn1T98NlJw2p7aP5aZW5NTtNI/RlJ8ctgT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w4dOCjua3z+hNfsKO7viP6pos5nalaY/6NCAryuEtD/88sXs1FflP94QEBhOpOI/G58HhRHx5T8xX43XytrhP+JrgmNJQuA/AJn1Ybdp4D9kMBdvU0raP7pvhSBdbtM/2KsdqcYH5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9lYlJ0h33T/hxQ1luyDlP8NESnZH1Zs/X61x4Zy3yD9RVNPt9bveP3+EtCzGoOA/7fpe6eyD2T94lb47mcbVPwreuEQsauM/d3EsI8J14T93qh8PAojaP4oEwNC6MN4/o2DWCdie6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e6oRL+Mj3j9w6t0JetDkPwoUUjng/ns/Sh6CNlZ3rD9LEd1VNtHZP37/MUrIANc/R6Z+YJ5l4j8LYSkQxHnZP80U5gkRuuQ/cpD5SVPY4j+nma/8++fYP8jQjh5oJdk/08N2RAaY5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jUH6b1vA2z9iqqTB67rjP2daHp8AqYo/Nef9VMKI0D8ThCXZbTbXP8Ae2MRhA9Y/ryIsPnBq3z/Ae1aMA+LbP2e91M3xSOI/DUAroejW1j9UzOt229DSP+w6KwjHCM0/BfS7pHUnzD8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bU6l76a93T8CWb5mexzjP4A2txS3MqM/8JyUIl7cyj9jVDt4+YPUPy2xpPySwNw/lLjsaLuz3z9U+OwZdEjaP/1XBfbKPts/MAWdS7C43j+4AnFBGRvYPxQ8BlfGttQ/ZrNnMmE22z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m+HsHsJw3T+4G+72Lr3iP96WjQjPbqA/yLrRC0a/zD+L1Y4Anj7WP++IKMCabNs/Bl/u0Y4o4z8H72OZMZzaP625DiBfK9o/cJfkIJon2T+M8Gg5Tk3cP7AKiIM1Idw/PFTnoE512z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"niDuFyjE2z8HXi4LqyDhP8sQ/Bb5q5c/u8aBjMguvj8TGP7ZpwXZP6E7pEanOtQ/d5Fltx9R4D/V/Mht3+nZP/XQ+V1Kp+A/i2OMijKm4j9Wo88B5CvSP4mGGvI+ZdE/6HCdrSqC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yR0uVn2w3z/fJBzZO/jkP2w+sj1Qe4w/xU+hjSYwxz8ASu5MTrXgPyUHGF1JxOE/0042OWll4j+hlf9ff8ndP9Ijd/RIQeY/ulZpkdak3D8bm25BbMbgP45GxRizbdU/fNh+mj8U3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7sJHpIeQ3j9d6iykhQ7nP+py4djwmJU/aft9Ii+d1D/5vAXP3XnbP6q93/2SVOQ/Ls28ihgA4z+LYrFJIAbaP1CczfehLOI/ld7Ac54V2T8zKV+8+n3gPxRuWmkd/9I/M8WhXbBC2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+qjs+2rn2z9UDtsoTVvlPx+IwQSgoLo/lumDA6nyvz81TViVYBreP+KJuwYq3d0/mgRupiG+1T8nLCQ7yL7TPzs7xYY8ptc/RnTUg4PV2T8udjBbarvFPwsC00Ps9Ns/ExwpXpVu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZP1ild7d4j+GT+72i2rjP+2EyQaPqrQ/M+oMBabFtD/UP6BMmo7lP0Ytd0yN7+E/zo7BLKjP6j/sAYZmZ9DiP2X5KqgH6t0/ZRZqHpx/2D9HlfvY31XlP6f//07ntdE/0Z0EdxSb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tEGbF1Y43j+T0/3rkZPkP+VTXmBSHKE/930/A2uN0T9XOZVzwHXeP5vKc2dACdo/xpeyTDUR4T9NZp/ehGreP21nMF7BbN0/r+2YQY6M4T/2eJ1DRtjOP4bJpkJgjeI/+/BYcr5R5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ULVYr2434D+a47PFUAbjP9Sk1Pm1VMM//lLAPizXwD/iyWoe8MXcPz/GdWEe298/qSGAUPkc4j+CDHY21ejaPxgnnig5deQ/3lJOkj6L4T+7U7RwBoTiP8Wj6BN48uU/Kekn/sZY5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kMrivmB23z8HKwQc8WXkPw9MZXjIbps/itAq6R9EsD+mYQoAuqrVP1y4Mye34eQ/ishTj2Mu4j9lC/cSzQffP6N1RkR3huE/RCsQ37RD1z/ZhXZnl7XZP5P2bGOTidM/Fj3FM/lE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mj+i++u62j8gF9C4LanjPycAdkP2HpI/PpLfG/CdsT9N19h4aQPgP6KiV1MPEN8/5A8SweBP4z+yTfVFPNnYP8YKxwxJi9s/oTHTWBu01T/4CXhGLbvOP0ijsXOPyNQ/L5Mqfsps4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CAUPUoZh3T8WVEjtR2HjP22J/U6sl5E/VaK77+3ktD9k5H6v+g7gPwgdMerVTeE/vZPwVCSC4j+o60/ENmLaP2MedGl80dc/78q1VdBc1T9daWwxW3zQP/75bjxV79Q/6ao/Z3Fs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZP6ZkH6J3D+Hq7U+DCzkP79BuMdC1N0/UBxvrjQFxT9/+sH9uEflP6NlCVfZt+A/kSLWWiSY5D+S5WqeHmziP/UWRyMjQdI/U++CqHVg0T/5ag0Wqk3TPyo3cucontE/uZGtgZBd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r3gKEfNi3T+nDqxTfArkPzO6hWOFz2k/kem/Dxf0pD/tDif3ER/WP01UXt0vf9k/TNxX4gOF3z92z7QTGXPaP5m5GIWvjOU/15wu8ew74z8CyA9QrxvQPzPruGv2cdE/ArpIBgRe4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"niGTC9MT3T/UJqa5DjTjP7bbS+su3LI/pVqFCPeb0T8BH3nxls7iP6HMk3Rtb9w/u12ICTMi4D939hzXfp7cPxcYBhgl0tg/GnUC0pNf2D+8qh2nOKPXPz35/9wqgNA/jldX02jL3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xcRNOh++3D9Xu9xQ93bWP/hI1paRG5g/ghF4Oa+91D+e/FwCNBLjP0PSWXrBzOQ/3aytEHfM4T+K3RRjCyHVP3Ygd/Kwf9s/m6qa/BTx2z9SvY6RTYjfPzSkoCvGXOA/055U+HtY5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NoIemnDO3D/wwet600DZPz884kwzra8/lw5qKlun3j8Me3TEUwDkP7ssdMIoB+k/JlHjCqoh2T/cTKDzYtnYP/xunD346+M/GIvEvwXH4D/jam9xM6bZP7wh41cjnOI/R68cKirL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4DSa7Bxl3D+ab5wbht3SP18O+uQg+6c/7C6X2cjI2z/GqCl/8k7iP7Vza0CqFuc/F6WPMUYV4z8dIn6llFTYP7J3ucV4xNw/czlUsk654T/wrdbFoTzZP471UMm0Ld4/kbylQV0T5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H2vWErvR4D9cmzXrVvTcP4iG9+1LtKU/Di83Wx762D8fJam/St3mP4bOWz6LSeI/iXzxYplM4j8RVd5ama/iP/B66DTBgOU/5xjefnxA4D9W4+iB/CTfPyV9gddYIt8/f5NV/NKz6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X7/APJzm2T8QSCxKaA/nP7FmoCqSkKI/LEO2pECIuj9Kcxyz7UHWP46Wxlg8Gc4/mnhTfn5m0z+eYv7XdMPLP9q4AxSqTdQ/Hd3ZvovZ0T8Ys9dcWvLPPyCqtSUTlMc/Gpr49U1X4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EVeugSUh4D//wNjPW6rbPyP6MgYAVbk/knxEyE4/2T97zLFYR1vnPzs1lJgB8OM/pQAuHHJl4D8sb9wiQsLiP9Ez1VQKOuM/POlUocq54j/dF716S3DcPyY9ysw4Tuc/sU06Mpbr5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zdb0DM4N4T9VYWfeIC7cPyjHx3hCCLM/SQ5W1JLk1D9kmtEIhUDnPzsBh0aseu0/FITvPm1u3j8YRHFKtczdP6HXNEm/694/C0iO3fen5T+u89ZeORHgP/sdjGgZDuM/YIvxcnKE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jAH3LA4X3j+aYR5opZHjPyXmnPaB8b0/52ApUwaRpz86TyYIiL/hP2GFWJh3mNA/7LIgdiVm4z/uAf4XutfWP4BTDh+nPdo/g0HELhay1D9K85gk2KjQPyEdBjBiiMk/t6MefgKO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zz8LS3Gw2z/04CUvBd/jP8fBS+Mi8Mg/xbD1HC42tz/RxsCGWoPcPwDkeOZC+tw/isvNHFqR3T+xnFaPtajPP+h9fl7MwdQ/9aww/b/Tyj9MadWK+l7TPxCXh87cD8g/xbEPvdFN4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GoJxMKls4T/uzE2BuwrlP9iafPlJVLA/Ly7EnbT4sj95nU73LqXdP/Dqz5dLH9g/6mzY4rtL5D+vfRD9Zr3kP2cnPQ9kOuc/OcUWtqPd5D/VrLO93iDYP7xjEfMUVeA/RCJXjdhV6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"afAs8Gi62D/a256QJGnjP5zzQ7XmmbA//e9K2Lzaxz/SKWedpcbiP7Z29aSSz9w/R4ai4rEq4T+if4t6hSbVP4tPdHxLFug/faoqT3Jl5j+aurhP0ojjP0nnpYYIeOI/u2Ilt3JE6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oPCsnS6y3T864hlIPx7oP2YQz0ioepY/Hk60H0EswD8LH2wQwMvVP7Dq25cuFd0/OprxYY8E4D89KEOR92fgP6OAr64YT+k/0YrW4Lyt5T/d89FRl6DfPyM4DDowVN0/XXyfFQyt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BNx+h6Oi3D8VVAeCYxnlP1QhtbLRgoI/XLdhwsgjxT8YSrdFPz/bP+OiS1MsGto/GBm+/ziP4j8C4WB17pzZPzGX0GtrguM/Wt5AR+hO4T+fyTnfMvbWPxFaQ9gps90/Eet1HQZv5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T7QhtM6L3j+uOP6dTKzmP1cf1tpVwpc/DyLH24xhyz+qmPAwbHThPxHICtdfSuE/Tk+G+Itf2j+YYHpzWJnXP4ZnfiAazeo/IWW6F6LG5T+CTTLPPljTP9GPsjyzQtM/hoZzF/i64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pywhl0bh3D9zbipE4yTjP4deIN9SRKg/h2uuPNKqsz/YM2fVAyviP1Y3lluLROI/Dc3P8uRs4z/1RqP5bW7dPw+cDFdEHMo/NN91V/rZ1z9iIQ01vtPSPwhN8mwXa9A/9KGkrybd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9JVy1Bsz4D8US57fEjvmP6S0LpPV0K0/mobnej7fyT+a37Yy1rThPxFfy5Qgvtg/bRliMmJH3T+1ubmP7RTeP8LP6rSwD+Q/lIp/iUyO1z9dL4sN8UvWP7O07fEgPtk/FNrnrP5W5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Muq5VDlO3z+ghQcKXnLmP1lDA2DUb8A/S0vv4Lz+wT/LP2RV03PbP8/q8KFnbt0/2K9tcWOe4D+YhHQXMarXP7d8dcaS2eE/YxAggmNZ5D9L1453RqTQP34wsvDZsN0/zxo4Y1la1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JZ7JismL2j83I4IMniXiP0ZT+H2Cnas/kQ8JVq9ltT/pzA2abwLcP2O4JcINmNg/prl3vclO4D9wr86i53DcP+9oIwVMQ+A/HFxTM5po4z/Tm9y5AoPWP1Q/iNd7994/vZXsF8DX6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Arff4ago3z+nwNE6ZczlP5tpIfdrTqY/YPjUVMuquD+MAkAeQY/ZP5JozI+PVt0/BU3AW+8/2j8XMQgkYrjQPzPWKITbp+Q/D3wI+hxU2D/+RwxRpNbRP/+I52jK18U/IcRrf0dK3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dSQt80bz2j8b4cS4QIvkP3tUlu22ArM/x6tZFO1B0z+k02iooxfiP0VDVsUj1NQ/d3kdqB+h1j8WGoYWVgvcPwvzGJqQK+E/WtV48AXG3z+5qLXdU2DRP4spSH4Tvds/NIeBxKPe5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RcOnoYDD2z/Ggt+qIQrkP3A3ozMLprk/X6MlGafmsj+/7Gce4GHSP9N83H7uJtI/8vGS5p3N3T8t5+shHsjOP+e5gGgT3eA/wbAn7gMO4j8tqHFZQeDmP2dogO1O8+E/fVR5W9Bo6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yqibnnfQ4D8ecQqHAlvhP8PlL7DDx8M/ahW26acyxT+s3TeeswLoP3Z8Bsl0Lus/FO+X3Qah5T9U0bOs+J3YP84eDuc6eNg/2mbsmjFZ3T9QY8HYHrvQP6M+cmwvst0/ksrOodBe4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gq/jSPJO4T8SNAJpOinhP8w4Hg3oJ74/Pp+9ub0NzD8f468qvZvpP5yDpdiSF+s/KiFQ5liQ4z/iJy+SWlXZPyHLkkMKmdg/WePtK7k53T+VB8Dtff3QP3k53xvrtNw/f6rpiU3y4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nIMCkd/Q3T/uTaEVdzviP0MoKE/rOMk/TtR6ucnn0j8AAAAAAADwP2wEFtDTxOs/vvxF/dpo3D83TLsbWl3hPzwmOy2UCN4/ZLXoeyKU2j/YeNv0/AvVP7nWUXLCZNM/jX0PEuM75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IPTC91mA3z9gGjBW3bLlP/xhFodS2Kc/dtUNK25n0D9SJb393b7bP4JCauDS7ds/lH9Ax6/B3j+8V5vbb0PEP2LrzDZIaOQ/bClQHuVs4j/i7h5ZNUzUP2mf0e7CYtU/VJne1ppC3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xcb0d7Fj3T/Yev/1ZmLnP4sxYS8966w/yCzNuoAxxD+q8ecZvKfePwsFCDUWJtc/3dx3zdmk4z+n2QkXYtPWP9OGImncbOo/SKsagjdF4z/ptxgNk8DPPz2BFBVTQdU/8/J9L6w/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cJ/tqlUS4T9cFJ7XW2rmP2P0bFvsjbQ/p6BIG/wTxD9FfAdSyljgPxL564fNDeE/4WqQwDaA3D9eRUEv/qHZP8pr575EReU/LjY9AkOf2j+yzZXBCRHVPwoSsIvDS84/S+0k/hRh4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TPpBVVbW2T8vDwkmlgriP6dMtcduvKw/vHEevJ3NwT9lETDNnV/jP1DYk3LtHt4/FmFNN6PNzT97NH9ZQ37HPxkSfMS+EeA/rA3APUq44z9SyTRJ5lDdP5c79UqaItc/llUyFnvd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TKM5kqnm3j+K1pERPFPlP0VkNmDvQag/tfenBGbkvD+A3lnXZXrjPy2k3T4JoeI/3JcTBN9j4T9xEqc6xl7cP4mhbBYAvd0/M+UC1m9y0z9N8d2v+pPOP73Ofz2k6dQ/GsJIoDZT4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4HhZo5n92j9mxrFpnBnjP/7fki30Mag/eYIAh72xsT+If8GOkOHlP3tCXbtRY+U/qyKtEP7H4D9ExTC65ZHdP3jOMlMTduA/b4eo75tX1D/7PrHIiB/JP3F/Kqnyf9I/uSseUYe74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ylqdSbn04T+KcVJ5vHrlP1kC20X/brU/0BeUQ59gzj+dB4j8Xi7iP69ITvq1B+A/KSdqf7lX5D9MGOlcNxndPwquTA2fbd0/GbdWH+2X4T/v2xEyc6TVP5nVzxeh4M4/TLitbDd02T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ff6lG89t2z+8H5CHMR3nP23r4dd7daM/tY4Ud6P00D/TBl17OE/ZP46O0zvE9eA/tkDD2cZt4z/xthgW4CzeP0tbMSafteI/Tzp6+hFo3D9IEKrh1KDPP1L4I2/SttY/8CxmWnudvD8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0iLzvuIl3j+5oSusv0LoP0ibBnpYQpA/hlsvYxb80j8gv4cnWm/dPz73E9m1a+M/KAE5adRm5D8Z3tGahkzgP0SyotOf0No/AZFt0wjf4T+wSHPLJAnLP/MZPBbiZ8s/ENghlSkm0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JQQ714wr4D9XnaUcXt7jP7gxsOM4I8k/kptOdKcyuj/XG8W6NxvgP/iSHyDtYuI/Pwyt5BzF2D9tirGFkNrSP1DEZdkcNd8/eaEyYUg00z9tLOnZPWrWP7sdttprpds/ush2DVRi5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bA/Zp/m/4T95p3UcRV/jPxDCdrtLfLI/KxrQsxblsj9WcfPXP7DgP+HPOshGUNw/XYQzOHF7xD+9XIirB/7EPyEFv2KTGd0/QS2c+A8J2z/l6JNRjrHVP2lazg3QVd4/3VYy0AlV4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uPNWZMQ01j+YnomBUZ/jP91bNW+EfK8/wQ56g2KsuD9uhJ91pn7VPyPww+fGgMA/qjGkxkuL3z/1qz7prfjJP+Asi1LkbeI/NYF28tA+4T/KCaH9oVDfP8wfhl8btOQ/+oFmqw6s6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AnT8mtyx4T9+/Ra60jXjP5MPFhYYG7Y/4mObvlQfwT8yBGz6VdrSPyIU4Fr7otE/0HUwb6eu2j8hRqxTaXDeP671agvVe98/TY5xQCV83j+aW6/zDF7lPyQExp0bs+U/F/1hX1ks6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OGgX0vR+3D8OrGGdEGTkP8RHhaecDI0/vut6OAWE0j/NKp4qmlDhPwt7ARBeR+M/qdR0WVhQ4z/dpLnksuveP3Z3MrNbV+A/43BJoy5C4z8PNl0+g/KMP1W0FpQBcME/S4+J9TbD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zc82UYIV3T9MwI8BbVfjPzaO2nucwbo/vQ4aRLDApT9iEAq64nPhP01UXt0vf9k/lKGp2eHA2z/EPvdICKXaP8FITesEL+A/BKXEdhhN3D9oBaWF4HTrP32Ts/YbjeI/4cbBsZuf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dYeaLKEN4D/Oeg2efVXjP7NReJEkJ5Q/ZWt5e1tFzj8Ec5CGzCrdP+61FzW1ot0/9CIvD+v05j9dUv1sIQLjP+7Jnq3ynuM/rTUDETJV4z+zAmpDA5HLPwFSzIa04tQ//LOIWhmr6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p4fFr13w3D+xP9xZMgnjP8+b/lC785A/QrRrWa76yj/Ex9dLOjLePyIwIruR99w/LWJ+mMyC5j8yyrFCmf/jPyXq/aiQB+I/mYKaC2rG4z//Vg+NI8PMP3Xnis/lX9g/L2LUBHcz6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ItmoQyg93j8mYdA1GcTlP5N9UzaBlIU/Jzbr/vt/0j9/PZQ0AbzdP220ZtqWdd8/c6ue3sHm3z8EaxTOczPaP8jC6HN40OU/gpowvGUt3T9IRznYqzXYPxrFbwdoNNQ/W+ef3wbA5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bqc/uH283D+f9MP9eX3iP+m0XqV4faU/xyKa30JlsD+YaskLWhTkP1zP5p9i69o/dqn1W4Bc3D8WNVBhBdLYP8A7TL9IXOI/2HiETkNG5D+BiY0R993bP3A2TPE6dOE/wJlaycRy5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i4qIhr073D/KPWhtePniP89NK0PjU6I/H4Vc482AsT8YqXeI7unkP2MuETisb9g/6RO5Dtxd3T94jPFCVgjZP2xwYg5TfOI/QIG0DRzp4j+WU38lL7/bPyQKz5t1UeE/0z9pbjb94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6rX1G1um4T8mYqxqTFjjPzyBxcC2TsE/nNXfMHp7wD/OyTsIAK7fP5CntCZGr+U/Z7nmg/j54j9dCPKIXVbgP3LlOZMNs+A/mM5iL1yf4j8bO0WCvAvfPwUswI9vUeA/UUUlAaCG6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4B918aES3T+e9VXg/EHjPzGDA/GMz6E/24pzCRS6xz+rJopWvdDlPzdyaUcMbeA/L2U47Rby4D8KLhM3TfjZP5SmJwKeZeI/v8e6rctG3j/Va8IugeHXP6VYpUVbZ+A/H1dfLO+S6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IheqvfO24j9TNSxzTJrkP6yJMAKAGsQ/yt2xV3eltT+lED2q2//kP7oQMSJq8+c/PdiSx1KT4j/DHWvEvK7cP9gaiUYBP+Q/WhDTnsnS5j+vhkgsK+ThPzlTKR2LNuY/ssg5oppZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4J383i1w4z8mrwLC5sHkP0392ecMTMQ/5v+IWAUorj99FiLyRt7XPwbycWfiRdk//tZYw6pT5j9IqQQDc9PeP1YEuVLCfuA/avJE/CCU3D8c938ZrbHVP/MxrDbDDNE/jJZij0A34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AbTKLHEF5T93jLMkUMzkP/U2yVP4Tso/nHHZ7yi5pT+m4JqJCYndPzb/IsCAItk/9hKKxgop6D/erS3lMjLgP8QreFVaJOQ/yNxy6Ad/4T+w/45rO+zVP9H37M7pjNU/y1Zjybts5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DRBMpBUC2j/NAvrVqHvlPxV+s/CV2Zw/63XX8vZ9pj/yjiZsugbXP8uTqoHEBNs/zw+xCTf94j+z5AYwEM7hP/SfBt11H+M/GaQ/RBEo6j+ZcZ7wrDTmPy2sm7PdU+U/SgTBIvCO6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vFy+QSMo2z+ulREjMYLkP/WtxcwyYpw/CmX4/aAOsT+sY1YmMILZP37B557RJNw/5O1fuBh/5D/GsYGMRAbiPxSW0nADJ+M/8TtkYfk73D9atHcEmhzoP8J0fJEAyeI/LXxBwHRX6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fAVAyDCu3j8VpZF7IPTjP2+iigqUoJk/lssG9ngksT9bRpJ5ddLgP4F09+Gpd9U/tc8hWIRX5D+LGgZd12rdP55O+M/VF+M/CzY5DCMt5j/UroCHJUjSP/hlKPI1KNs/9VZlxoV35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k/CnvSz+3D+zXzpzugHkPwqm/AtOKJE/9nrlbzBc3T/3fy00Q/bYP++9McGwZd4/SHah5IGM2z/WOIKdwDLbP6Ak1giG1+M/ZiETeMAv3z/IsMj/dGTXP90kxjn7U9g/mq/asjVt2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yAccSYOe3T8P/yEqa9fhPyMYDaWFBKs/ca5v+jJLqT8daO3eubHgP1dnRUnj298/gYkBdG004T9962xMJWHTPzdc19ZYkOM/isHzIzht4D/Vq8lZMMjcPyBh/QEYHuo/P703Orku5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Otq2GGB33D8CICvPqaDmP2kOP9WcUJc/M6vP3tqywj9DlFhiMxTcP6fzRTHjFdQ/qg/kxoXX3D/uJYW+UWvYP1DPZk6Qw+E/zwIb2kV64T+4m1vBSHbgPxStzIZl+94/ttBjDY3y6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1UpMjiU53T/CyaODOivmP6+pypiUwpM/C6sLuFiKvD+9mgZmggbeP+08lPWEyNs/605oQ13x1T//QCTmAujSP5wqZ4LIs+Y/GzVUq4y34D/x7rX/lWnhP9y1LTHxrt8/lEPwNN7N5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FZUZXmJG4T+KmX/47k3iP/feH4Tx88E/VgVm5OMcuD+yRvgYwRHhPzOs98oEZOM/ehRr5t0g5T9lYks3c5bcP3ZvLWvindk/w7ltAxOg3j/hooPLVq/ZP5hhEc2AmNo/nOLnhAt05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LWoQJdsB4j9bfwY6twTkP3nJOG7jcM4/bXK1fJ29vz/Yq899JfbiPyP1ERYsF+U/MtUwpIId4T8ZCDDMJovgP9uWF4c6jNk/9+4fVZjz2j+OyC8q73baP4lHIA+m9tU/okL7nNXf6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k+hoHSBu4D/V2lmnS07kP+JwdA00t8E/N6OCj63QwT/GVg0G0HXlP/vwCtCfMOc/CnVsqJVq4D/a56sLYNfgPyGrMJxvD+A/DGs+2QUl1z8ssKx+cgfcP8og4VUOPdU/hsOg9tgn6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ArE0EhMk3D8vgRMTLSLjP1oSg9YajbA/tWcvSPujtj9U5UDRFM7bP2wtPPhui88/9YJL5WQN3D+K3fpdjRvSP6TUAASCNds/Hs2OxT4t4T91uRD2F2LNP9vhP2dT+Nw/Gou97prSzD8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p1l1XBdw3j+EqysOIF3lPwh7NbP1jKs/ebguh2Woxz/hq8rOEyrlP/vs4n/3+uM/cF9daK/o6D+88USHqUnaP2cA7oVGX+g/ZG7rzJ5e3z96HNQ2AALhP16LbjVW69g/D4etc0B56T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZhVTXHBn3T9MoXOx1KLkP+9jlzr4O6Q/xNSvF2mzsD9PNREkwc/kP6NbAhKN+eE/3e2WM9uU1D8m8UndDv/dPzGe2T0zq+k/0ZeuZAjm6j9M0kB/RjTpP0H4tzAWwuE/QGpZWcib5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0sL1xa+42z9sAnWeizDkP7N73S/4gJE/BuqqLjEgxj/TNsrAWbHXP+hCjnRTJdo/30mHgkWa3D+pPQUov0bgP6OB//SYZdk/BknWq3iB3D+IWPUgP1LSPzF8M63Kl8o/atVydkAM5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rMSLmO/F3D8oMqtLNULlP8NkmuJlB44/EycARZLq0z/E0gbfx+ncP+3GjfW7HNk/8vYIfePH4D9jGiiZ1/PbP9UFDt4a4N4/um0dIJep3j8VE/od9CLVP+Axy3yUcM4/mhPpzYPW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gbf7rseG1z9SZTZ5LzjhP/QrIdtTi+A/5H1kNJLbuj/8QnVhvU3jP0s4NsebP9s/2eBy5cgE5T8jdp1ou13fP8bY6zoiJ+M/ngJbCq5U4D+bhAy/k8LJP/FALoin2tI/mBMQUvgH2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CPK0o4ds1z8anbcUWQDhPw/ix5mCTrQ/NQMYphyo2z8iRk4PQ6jgP0APcmKifN0/Uql21yAm2T81nF6X4UHKP5RUKVeJD+M/TxzFCro24D9s5HCKISXkPzy632XVe+E/E1N2NQlr7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/58o4QPH2z9KBpNatnvjP/1C8u+JTt0/XI8L62lRkD9UN2HjmULIP6xfvLk6YL4/Y3aGkVmf2z+nHjdHw2LZP4dJ8whH5dk/jrDT1e4B0j8ffgrZdvzVPyFcE13ZwdY/Et4QXOn54D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vYn53WY42z8WjemlH83jP7zKHkMnKtA/9mwYclrxnz9HOGASKk28P2An53UYZcM/XrUWlemH4D9TraS3sxHbPxjVb2iAk98/GL1HT5hu2j+A7BNVjbzaPw1gJkLHu9U/D2kQ4WU+3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FHS+R1je1j9t36aCmZrkP3tA3axuJMg/x0Au5yr7qT+Ao7XM8SnHPw481f+o/Lg/MCrxv8dY4D+Tf7tRlfrcP0+RJpwWBuE/5SfPop4j4D9Jo/cE9E7hP2j/AG5A0dM/htTYx5bt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cYqi1aOL2z/2oHmwO2zmPyRRX7gPMc8/RUkpTmPSwD8ojjj4CXPmPxXGOKg5I+Y/nzO4OcEP4T9udlQ8qcHcPy1U78tZTeU/gjKJZrVb5T+K9nzrKfHeP9hVnz8cStg/futWbsxU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qns2yd+Y4T9EX59HhIrkPyi6QHMJeqo/7pflzQbOxj+VlNtG4MPXPwAaSgIVTdI/hEjpo1Ol4T+UpnwNvp3aP+dfrYopWeA/xswcqhLk3j/vikVYUTLXP32Q4W9XH9w/FDhkyMiy6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ScVfoSh2j86hpxSbyzkP7YNbMOpuMQ/gL2Ah2kPwT8RuFzDePHkP1Z5WfWp0ug/qxl5Bn0X7T8NIS1XUaHlP+GC6ZXSY+M/9lenRO1y0j9hEp76xnjXP9QkVzwCeeA/KWrBBLDDyj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kb8gcREf2T+4FihyiYfkP4R/IEM1pLo/hnSUh4Szwj9gufG984PkP7Kj1/Qre+g/O+qAdp5v7D/LZze1O+jmP/PppV7ihuI/69GZahWr0z9Q1Gfym7fbP5xhN2E9Lt4/HpebfBp6yj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DPw5lVCj0z+sijIPBwzlPxA3CgWOVr8/zvh1ihlerj+2MylxONbUP8e2k/G6O9Q/IuIR61ENxz9LVYvGY/+0Pw32S8pRdeQ/3QXEZEW92j/8yHtgfPPiP6bSf9izGOI/7yccRf5d3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"shnB4uxm4D8nmQlvgDvhP3frpfvSJak/XNGbtbV8wj+haEf0g/fYP0gdDOAYAtU/TkRbrXc10D+1nfZtmL/SPwj4n4kictc/c7RRQnF/3j/UP2bhX7PdP2+0j54iY9I/EEjJO90+7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eR6kZ04q2z/d9/Hd83fmP4HkquttN7c/iWZFlqMuzT8BmmRNI/vVP+FztN7nmdE/v+CNOPHx5D/ftdwYCfXYP7bjesKf9d0/cPVagu7K0j8nsX2PocPSPzpvYcpSD+Q/qWNoV2SV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7mEAQ5ld2z/o/jfB1hLoP3wuGLCajbg/3v7YKmpt0T+x/ZX8LNbkPxOKpaE+muM///g7O5PX0D9c9zG17djcP/GhwbSxHOM/+Q2BxKY82z+te9+DOUbbP19qOZlx69U/C8pO1P8s3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ASUPaVKa2j9FliF1kNXoP2vbIBMGUKk/N8dG9EQS0D8YQkhzkjTnP4zF/wmAkuc/wb6sgnNa2T/A0h2u6u3XP+B05QVCF+M/cSxIFBXr4D/DcS3lklXVPxUeVFrwEt4/9izKSanX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9A3jxFNk4T+w8D2hYvflP7X1iJ7aErs/fiRhzujsyz9ppj5FHYjlP9VvWPo6OuQ/vVXOHNOV3j8ekR5YAp7YP2DFqhVD4+M/RZ2PvDP04T9ORXMMe5jaP5X7U0mV/9M/1/9aynG75z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lRdhj17e1T/iafYDqN7lPzjVB4oSyrA/aoVSwgxwtz85uz2jw4LhP6BQa0YqCOI/obXPDpnK1j+PGeiXam/ZPyv5eZGmoOU/fwD7kXrF2T/Z+dOuCTLaPzF3cluFt90/6Yrj5LN04T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tsphIr6y3j/VMtZE1yblP41Exb3S5bI/8ZKpWjHstj/mVSnwQnrgP3Cnntzkls8/LN/pn4Jy3D9nhSJizSHTP6eAd5bVbeE/p1a1vavM4z8py7py7KDYP4VLsnwusNs/hhzLZcVU4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r0Y3kc9B2z/L0RW149rjP0OEOUzOHZ4/jPhKjiaGlz9TIBq3OTPhP32tlttideI/Zqnlhchb3T9m5mb4NPTWPwhPp0+2rOE/4EATzmDb3z8PeOEsWbrdP/iFApgnn90/zJOn/k8s5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5ekrUdb13T/HHfiFWPHkP13jG/G3ooY/hAvPAyPUyD8bpr/50nPZPwc7bmhm59Y/DzkApp2m4D9zonXFqpzZP2jHxMqRWOY/ve3dHts32z+UWmvmT6nRP0G4PMPNNNI/Tkvuslmk4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aG4RNDEe3T/0luGfO6LeP4vFM93roIY/LW5cbAlByT9hPxTf0p7VPzwVUVdGBdk/P7cNf49t4j/7tIOTQ77aP/hKNfQuZOM/kaywXZCI6D8E204dcPzXP4nPNEfOt9o/gcDIN8S94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DYe4fxlh3j99o02B10zhP4U+uSILS4Y//qQlDkP/0j9HRzhs3VHfPxLWHuIpauA/YUHDqbiC5j94nKPus3vgP1XhKmmJlOY/bF+ZNqJQ4D8JdQZVkRXYPxrf4TyoFtI/OGbFkr1K4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EZrsU+Eh3j+h1k8LjrzqP6sjSBw90HE/TMaTY96p1T9bOgRfGX/XP0SpklVPzNU/wbtA7Hra4T+kByOD5qjdP7offLdqpOk/yloIQMty6T8LBlGvLWXXP+Nj+fouI9k/5V14QCNa5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vnMtJPQZ3T9yJlkGCqnhP6iYrXpFJpM/BdTwBceSsj8AHLH+8OrYP13PyxU4F9g/zh9WUhfJ4T9rdmmNFT3aP1A8y7z8ieI/BzZi4WjU3z9AB6IEsrviP/ObrECBTeM/FmIGbZfG6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UGpJNbFK3T+RiRzRmy/nPwAKRUwH4rE/YCrVz/+ptT+/i4OvlPHgP5CbSVvOmNI/Qz5xBbN53z9mJUXsOtHWP5E5OZ1e3uI/IRgLmAk/3z+pTxc4oKngP+v9p7X/fuc/WFlza5o66j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7etJ/Q7s2T8uViiSTsLhP4MXH7mbYcI/BWBWHXYdyT8/CBSrzPbYP4349SLqr94/JzezEkpR3D8QS6WNb+XYPyBUZ/9+Zec/7z94EQnZ6T8FXR/mwWjgP7yJaRLTEdw/NsvO/pea6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wiaZsEHD3D9V1JjfQ/LjP588e3uw/Kk/cybWphfiuj+mvihjfl3XP+rS0pHYUs4/aVxxQw9Q4z+thDlX2G7dP+LJhcRo2tw/ILNJMd/72z/SbSr4ZSTeP1oVJhCG89w/TaG0gCCA5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l1w/3sXr2z+sf9RE/dzlP/RdZC+A2J0/Mtv5Sc/JvD+XTgip3rvMPxeXk85LWcE/riUVQHCg5j8Hkk07793bP+N1QktFxt4/h/pLAMGG3D+Vhe8kLJHYP0pDu9Ksuts/mUJCfczO6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EOQfXu7s3z9x+Ipap1TlPw+bqAX3Q8E/yaHtGcwsxj8PXFQP5bzmP/vw70V1XOQ/0mJH0KxQ3T+wAXUZkaHSP1hZNjOBgeg/VC1bEePP5T/JJCZH5+DXP1YWNd7/UNY/QVW6/veu4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F5MEKMX84D+BDan3YYnnP5bxbd9GeqI/iFTPK05rzj9Xeoi9p6bmP1KXiU654ec/c22ULeYY4j81HGxaM27fP2TdiaBRUeo/iA+3V2M44j+RhWZ694fUP1Cft1b5Zc0/7pHreqX14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RdhxEQyM2j/QvZFGrqPkPwMHIPnC0aA/IBPD9XLkqj9PsVsHHJjSP8gTkBcuEMM/gD2MiOlR3D96VuX7pHPbP0pg9gYbWtI/am2j/h2F2D9tv4moVerTP+0jse0HKtk/cyi01/Bd3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iQWzoD0G3z+YZ/T4BPzlP5+yJZiBDGY/4aRsSXyiwj92nbQULjPgPw/LhxbHeOA/g4ihnywb5D/nhpCWq6jgP/4g1CZ5Weo/jVt3dQg27T8xU6brLzvgP8ZFRi7nGeI/gcP2lSJ65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b6z7qkeF3z+eaOnISpbmP1xCRhVX7lA/SFfmB8cHwj+1e+fGwvPePyK6NkXzH90/TFUKPjrc5T+/NtBj39rdP6P6YE4qS+0/jjwWBvrs7D+o3gsewcjhPzbXdcjMw+I/A1n7UxcM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b6z7qkeF3z+eaOnISpbmP1xCRhVX7lA/SFfmB8cHwj+1e+fGwvPePyK6NkXzH90/TFUKPjrc5T+/NtBj39rdP6P6YE4qS+0/jjwWBvrs7D+o3gsewcjhPzbXdcjMw+I/A1n7UxcM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mL6smIUs3z/zWAFzwfjhP1eEwyzGyKw/dty5W0dOwz8ow5mOMrXlP1GCmp+KteA/vdOaWf8U4T9xFHovguzgPwbIao0VHeE/PndaRHoT2z+PxPqWwwzaP+1wCwotPts/SoLu8FK56j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F2GfoKx/3j8d6sY5LHHiPwuugRXfG6k/jW/2/BXV0D/VGmrMyxrlP/StI9gUwOo/c1onmb365D+AlJDZ0dnZP9LhRY1GB9s/HZ9lB1So2j+AE9pVCTHdP7DzwUD9FuE/PWFEywr74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xt8E3KKW3T9iOfOlFl/nP8Mv2dkUoKM/kUISpkbTwD+7MIXfCWnXP2wOD7B2Od4/UIkIbQhI1D8E+U5X4VXbP8WEvcMgAeM/H9tCYIgl3D+WEDgiVk/dP1gg8F8lctU/7SYazH8D5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eMgL55M03z+dsT9VSS/hP/hKMr639qk/Zgj6VNZdvz8PvUjiuprmP71nJqSN4OE/ZXUmvRiG3j8Xzw5eq1PMP8qjZ/dTB94/NCdtrRmI4D/RuEAi+EzRP/SR7v8eRtE/GULBQI0h5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TiVVTuGC2j8IPqmu+S7hP+MjfnBBKZ8/nnWFugUdvD9pg3EwJlzkPyWmyvdZnOA/6M6dO3fu3D+jWA5ms3/VPz2Y5qdpEeM/b7+E47UB3j963+g5qH/VP5Iif5n10tA/mfiYhhua4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Y118fyd5D+Wsgxj3o3mP3R6VodxsMU/H2UHYXWAvT+Shlap04jgP/APRn1BzNQ/JU9WdmRd3T8sX510JczZPxJBoZUth+A/O3wPL5jZ2j/qJy9scMDXP0k7sL/z3tc/0JsuMX6L4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6iEuJrdF0j+TuzUn82zjPxM/uKCUj8g/j/ANLbKywT9xQaCVcizjP32O4yC+vdg/IHdHNcuA1z+EKUeAPEjSP7gmAoGC9eI/FiAH5Ie+4j/RCaj7t9rbP58y22ln6dk/pHKcNiWm5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e35oGS9J4D+rdKDdBX7iPxjHhSn3iJ4/SRBuyUCF0j93759LApPjP8mTgtIYpuE/+bDwFLQb2j/MiFXwV+vLP8zd5gnp09k/BquqYRs10z9oyyhi2CjVP5qCMx+Hzds/HMp6oonb4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TdcJ5bQa1z/sbuEqFXniP0/IBw+IBrg/ZeueCcECwT/fr5gMYB7kP5p1QC9Je+M/1IEVnzAJ1j+lmvzMcXXWPwFjNkgpJts/yja7jFW63z/3DoXonWvSP4ohPWta4dc/rS9v81QL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i1ymK4Jf3T+SuC3TlhDiP9L/OjlPLJY/pQz3YFvVwD+t9iCq/gnXP5JUvgX32d8//pSphj5k3T/kVLKHHyjYP8Pdvi+d0N4/WdnWRFTW3D8qXHwiVOfTP3afBE/k9tQ/cSP2pIQF3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YAu9yNiS3z+AjSk+tq3lP5SsnK0PV5I/24/1nPo6sD+EAgjA3A/fP8aAFLSQJM0/YLRtyhKd4T/0bdxm6RjfP69nd4211ec/upUhlOjB4D83NOwOv0DHPyg64jxZL9w/6zm8XEWv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N0GHBUdz3z9031j8RqjmP3vl9aCwp6s/x6jIxrcRyD/wXH1krTrTP1EZW11LKdg/H3P31GMn4z9R/F7571jdP2ghWbN3PtA/NUUinXG53D+QJhXKjBPmPzWhB4OcT88/+EMYZpui4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wvLW1LeM2D9U7DfOeJHlP50Z16nii7c/7otSsZX+3z9TXvw13WLoP0dd4wAPVOM/wuOees8V5T+sYINaVlrbPyYtOj9N3tk/zDWChiO91D/KZaCAeSnMP7zcueJz+cc/LodEWerV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qAo+QWxs4D/6mYC44XTmPzbbZw6sEaM/5q5DWAk21T8whZrKLRXjP6goGR6kZuE/yuUz+nBa4D/KJrUiZP7iP3lcEc8QLto/obLq7S741D/AvN4Ow5nUP05X0mOgBtE/HPG4pTKe4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F4NUYUAn0z8J/SGIpXDiP3H7IF60VcQ/ZIayoNrBrz+ScKsRuGDcP8MYIr+RmNk/QS/xkXvY3z8sU3xh0/jNP2xQoDxw294/k8nT2iht3j8QKDW2IdjiP+CSBgtPVuM/pP7bDkjJ6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/GblJE+S3z8jup7X62HlP1hxrNOILpc/KArVwGWNwT9bnSD37b3eP/817KX8Jtg/Y7G/x6pV2D/MQAP80cfaP6ZiKqilFuI/0Wl6YXVy4j9B98a57YjUP20ct+Z64tI/gI/XHA064T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HAhHlcN74D8+0l863ojoP27HjoACd7A/pUBMnayxzT+S+D7QM/rbP3XN9iaZsts/v25D7Nfw5j9k4To1WMfdP5tg/AWxH+I/nSk1QBxM4z/fyhrdAeDSP7HgxknoJtE/xpHKkMeo2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kvd45pMQ4D8h1YcSCu7iPx2zfTlXHtw/cWekfSgztj9TXgDPP/7nPykLQK3x+eQ/cWE3WhEm2D8UG0Yv7gTPP8QPaQ9db9k/ee1eNnBL3z/HI/uMqcjoP4IrskKAo+U/IlvFRpM+5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pAHwSkPh3T96K/Hz+uviP7aNcaBhvdo/aU7ANyHuwT+cl4qNh9LlP/bJS+6o/+g/uRGBMYOc1z+VG9/5xxbMPzJofJrU7d0/LM+PUy5G4D8A+hpPSgnpPzvmLTkPDOc/9xp4Okvp6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tJoAL3Th2j9h5Edld2vkPwlGi0W14pw/gtItg4invD/oguI/qwHjP9tXL0V7Eto/bG8UDxQ/3T9BgDLgboPbPz87VY5vFuA/NUTtGeap2z8ge3dVVKHgPy04UuQvs94/R+jqFlkA7j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G5+v8fka3z9OlaPz5a7lPxYWVT26DLo/g04qM5Hcwz/DeQfEsn/gP9nDBlFMoeQ/U0Fc5mzN4T8ODAtBwATXPw+rA8Y/yds/VjTaMKcF2z8ZYBoPHzTXP2eHOzolKNw/L6oEfc0e2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HbGIuzd43D8mjc9vQ3jkP3SNSfLkOXA/+Lacj2jesT/zafDr65LWP+L/pnzItN0/709IpkUj4T8OPWN253PfP2n4oklE8uU/eVtqNVAO2T/gSNO+5HzOP7Y58UZwZNw/qbyxs2QE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZKQjWPdo3D+7SKdcnXTlP03QEDuHf7g/OcOCNSVruj8YY+WQxcjhP3E8MOimm+I/zAKra4sf2j/kAFmFxTbePyEupq3L/tE/zFRhtF4P4D8oo5O49tzeP/7/dzqvjdA/5K6uh+SC3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nsKE72vi2j/wrZtycSXkPwK6+v59H6M/DSZHpg8ttT+4Q1y5V9viP64DX7+vx+I/TQUbDVX34D8ENMsIxhPgP63zT0EKmtw/ekH5jE8i3D+UzPRlZXTbP82H5oUOlMo/3wbIvv/x0D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JkXSa7aG3T/zpums3ibkP9x1ROwOOaA/cE5GZbk01j8HYmvw8x3YP2nWo/kj5t4/1tt9IRFo4z8TsaLpcmfXP4aIPUVxOOc/1/RWM2LL3j+WgbqRACfYP9ZI5iT8WNk/tKaa5Emt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8/yK39ae3D9rznjuErLkPxxP47Vou6w/NTylGYrFqD/vWgguriDVP4ad5rXH1s0/6fJGhdI44j8OMQ5ZmZXdP05je00ltuQ/W2WieDS55D+yUG2axnDcPyftTkKZutQ/L8nSo/vU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9SUKCOu/2z+vAo+c42zjP3j8SZLZJ4E/8PEs1rLlsD+2DZybYP3YP9NjI0MYzNY/t1Ir7sjO2j9UQ+wgzPjVP7JIlQmGu9w/x/GtqGKI1T+Ki+qDiJjWP/t9HRkrWd0/8hxP70905j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o+25LJTK3j9uCza0ks7jPz8auWlEhYQ/1LI5SX6Bsz+qPOwVO9viPwHWPCzNe+Q/EyVuPMxd5D+8/z1DyTTgPyi937RG8uY/WDjblcHY4j/L6ca9RsbSP5+SQ8d/uN0/nyGdoZmN4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VtJsAO+43D+tPrdf9+3kPxpcneBV7p4/sTUaVTzHrD/5yaFmpRTZP9N83H7uJtI/CES+IcS44T/z+q/PgbnYP+l8GRYqveY/jAvI+fJU5D89dlCs/+HWP8UxPyiVsts/9t0zBbcp5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+DhzjWvW3T+4LgjMom7kP53jS05CRZo/0sERZXC+xz9T4u5f+OXiP+ZatykTTeQ/DgZunfJ74D9ezx4qXC/VP4rIpp37qd4/Y2XOjNVzzD+9rlk4epfUP1C4gm3Nk9M/FQK8opdK5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MkJUnnVz3D+Dm5hD6MDkP6PEVzv9iZ4/bTsHUeMEwj+ngWAsbkfjP1PcXf+UTeI/hG0VOhLZ2z8YMs3wCzzZP6foM/HNoNo/7n40l8Hj1z+/1gmdpGTSP8mJdt43ENg/f6eF6Ceh3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9Fu9CiiI3z9DKKQqezfiP7FHvTJoqcQ/UEFgAFpzxz/Jr10rSDTYP2AjemxJftg//T2Usqvw4T/wtZfwjKXTPzMdjq+qqdY/2yDlD6Ou1T+/iYSrF2/cPxQqjOpg5dg/GeDO3F075T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HIEl/aAq2z+5f7K0/UjkP9nm8NSZLpo/kpOXQvcZnD/FagLBE53jP0FbIbfi9N8/0Wlm6TPV4z/jgpyduXzeP7ckM7ygduU/wH8nCeLW4j+s18yxpwzgP6/PzWcydNk/ovHEVRS34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q0uJIShf2T87DJ1JrYnkP1VraCR6xM4/Ya27ICJX1T/cJYRMvZjXPwK3fEynOdQ/WVqdQABE3D8fuGwW6sPHP6yUdfHEeM4/ejX9HwKqzD9pyUlDKO/SP6NBVz3S6tU/7IMIjLod5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dR86hHdY4D91uatiYj3lPwWwrbiBKKw/nvsaXxR7wT+MyPJo1qPoP6mht+f+FOY/PgLLRwkM1T954K2lloXZP40wOBftxuM/Gxkyl5FM4D/gOWuCA6zfPyrfOjGGQNU/UCftzGEB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+gghcaMm3j/YgGkrJ2zjPyRWaor2lKw/HjpJUMYXsD+UQrs0W0/bP5436B6pVdw/jLwaleaB3z/O8zpo4Z3FP59+vuiRSeI/aIs+4X7r5j/x2rB4+VTOP07Ib0BGz+Q/EKa5dJaz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2/StrITO4D+Di55XSyzjPyI4EiquKrQ/OpD+NvYizD/UNCx60VTfP2w0Flyr2OE/3Sq06wXE0j/WcYRSrNrWPzMG1IkVPNw/KGJocZke0D/Ewc4Ed6/kP6g9xc9JMdA/L7SYp8ed5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wEE0ypnE3D8QvrrytBjkP+oNpwZBPKQ/HG6S9kZsmz9Wn3Vl2PzfP9SAwFWYatM/7UWC9y0w5T85RX1wfDDbPyrNgvQUMt8/80Su+a674j/YKdzkIcGwP/QnPd0WF9k/eW+64+VB4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ErEkuqxB4D/+0yZ8VvzjP9YaV6tCyaE/wrxOBRgVqD+W+JNz+enhPwexdGgvk9k/8g8il5hQ4j8NTxdt6/XbP/CPXYxHMOE/BWakPyoE4T9M7gLYMu/IP0A6Dx8B99U/ViLJzOp33D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nQwm8oNR3D+SjE6IClzkP6HmObRwMLM/oGmljbPbpj+K+xOksODiP8YDJau5ItY/eLMS+CsE3j/0Ax8c8HXUPxU2WiwxReI/uLbwjLQX3T8ekhq3ZpnUP4rhiB9389I/5FMDAz0d4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C0u7mRyT4D942yd6DQ7mP9FAV3KDeaE/C0fZ53+Cvj8AvoCFXlXjP4TH0TimueI/tpTaKjW+4z9Knz4ziobjP6k1DLRbAec/o8WvHn8Z6T+/6ivQ/RPZP8LjKqMlH+A/iWJTROzV6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MO/SnT8d4D/D/PZIXm3iP6Jb/2VnGa4/MYVefugitD/4qwWwKxThP3GPW90iWtg/QERjXjVT5z+TG01D9wnVPwAAAAAAAAAAstbV6n6rwz85+Op1FRfnP1qoF+Ir/ts/KtbL3okg5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HYPwSR2IzD9geBtjY/3nP36rTttzl9I/3abllKxK0z9E/N7MmC7VP/7YxpC1NNo/6p6aQecTzD8fSRW/5ADbP7mwpreSIs8/+CynV8Xuxz/4/Mp+Kf/RP/EfH4B/cNM/MAK45t1c5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ond+kL6y4T/fn0UWcx7oPynMkauKybM/ny2w4PUn0T8JcDE02T/nP95i4ZoI2Nw/Tduz3+i34T8AAAAAAAAAAFBDQ3IV1t8/h8JgRFgA1z9I9BaKDpPbP/mQ3zGl6Oc/VLBqzbSR3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VF8XJArT4T/qd1CUSAjjPwhAaaA/SdA/VJ1buqZrwD9E23682+XiP2dkuCSC5eg/NQIxcIHo0T/HsEnCWQXbPwElqpDGBdU/rWjoezyh0T8HpSDgErfWP9y6Ac0UWt4/YMHP22qB6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H5MVv0dm1T+jWNGAUJDkP61KiSTMr7k/Fu8NwKkwrD+oO4n1CaToP66KOUOA9N8/uA1s0LMx4T+getK06XbKPxZ0CcL7Jdo/bGtwUVAP0D8J/IkWRdbbP+SsmxUP6OE/TlHGI2Yl5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z6AKjotz3T/S665++y/jP/GyPP9F5MI/Y4KOvjcVwT+aKJNpVofeP7XRINwHPOY/yAnq2ZQR2j/GfzU0iZLQP9ChiQn3FtQ/eMYRh3050z+EkXWLLzPVP8+N2XpNgeE/CKYAVY2i4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r6RFLpyZ2z9XCw3sSU3kPwzJ1CkB6JA/pIQonP7Qsz9G3fskoDbgP5L2Fs9C/sw/EVShjNzV3D+f1+NeGqvTP7pksRZN1to/ORzhn0e21T/48CTHkDbUP3s1OmSEMNU/NDoPzjCj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e/IL9Gjt3j+HNQenISPmPwwBusiWybA/AQ+nAYNuvT8oOwbQthvmPzT188uIBeE/8oz3Spz14j9miLojMzPgPywP8kwByuM/81s9NtAG5T+ITcJ3ievTP6+aHEqJZdI/zX2hzGQv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p39Pk0uO4D9+KZQdNFrlP40+M9GEj7I/EhWTErCjoT+MV99KzsnoP9mWMmZcP+U/AeAZ8puJ3D9cA+DK/i7aP1jC2QEJV+Q/QZYqqmaJ6j/sTYlcH123Pw3t6IFWktU/U95kPENp3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TmZ+6v854D+yGzvw2GbkPxc8anDzQ7o/R4k2Kq4K2D8BGBicVQvjP1ewGZu7HuQ/i38CpXdw4j9DalCxRe3ZPxpp3WuBgeM/VbqEnZRp2D/gVgXqNK3iPwjqA7GzWd0/ZCG1R85H6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5Hl7ZtES4D/zlRxz2oXjPzXg5qTlvLY/IBQ0153suj/8AIT+9ELlP9EYEtqX0OE/PIe/zP7U4D/VUQFCYWTfPwofxQ78cNo/RcjsmI+14T9Z/JWqpwXiP5dHU2/HiuU/KWHaIlnI7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5L4Wjf7M3z9cs3vZLIvhP9+WPqRe2LQ/CCJYbzhcvD97+Y8f1onkPzEFU1OkJ90/GpXJMq5l2z9TK7qXgkPWPxLFCy8YHuE/SdhNHC0/1j/E69TdHK3gPxaODntS4OE/3NJqa8It7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hPJv9fMj2z8YoITEs8XlP82KQYZa6pk/Ayc4+0PZsj/qilWruqfWP/RuBS0Jv9w/YIYr2jlr2j9SDTnS3dvTPxFSm0FY+dI/3klOnsd+2j+2y8j3wunaP1QLa45g0t0/LQp+YqK74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ltGaGcb52j8OhhslkfHjP+H9uBORKLo/kCsG1FEGwD/Km51LtSHjP6CA8oTWQNY/FtD2Fh305j//Y8cGYWjjP+e7/DnpD+c/XOdH/WBc4D/mPpF38/jXP5Q7z7bdjNM/iFWwqKfc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B6eBGuDH4z9laHwKZv/jP80E8P+eZrY/FKUHWu28sj9uwbCEVLLgP6KgJ2Ho4eQ/R+SN2TVR4T/DQY8KbrbXP7IX0p1Vv+Q/duktOg7Q5T8b0g+NrG3hP+GFiY0GrNw/xHUTckRc5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tBcHOD+n4D/p1pX/OFfmP8ar7XfvatI/thjOxOB4zz835V9C1J/jP9y5/wsA49U/PwVKnbuM0T8V7zPCIcjSP3Kj0EuByuU/JVUDZ9IA5D+/QYOxxiDWPxq77WPdc9o/4D7C3hZy5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eQXD+KPo2j+o71d/y5XlPxOMHchfRMM/4AnWcD+byT85DAv5oS3iP+tKm9vNXeQ/g9zpX7se0D/AtP9ILBK8P8Cd9M8HDuQ/gHazcajM4T8UBf7x3ynZP2BwVeGpVNM/IpaYlC2kwT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zn/fmHdo4T+uaZS/z13iPzr7s7Jow6Y/t8bxZaZ2vj9RMp7U4NvgP1hWVjuxhuI/rrDmuRKH4j+eDR/8tcDhP2/Ojl46hNo/E7IZdUW00D/RMNP8lTPSP4ppdASmOOE/cHn6THNl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"No/oBtyV1z8VEkd5657iP6hpYh+GI7c/+jptRNmqxz9N8xePM47nPwyXRLAcW+Q/nAxaY9dz4j+5GT4Nve3ePwdLY6ch5N8/27C5ruo/2T9MxdQN0jfQP8QY3MDOLcc/ZXpbawp94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DqOCcypR1z9nZ7KjynrjP+7MyYh6UcY/z6sE/oGb0D/9thNl9b/kP1MXYX95o+M/gXWiHthZ4z8G5zy0CNLdPw35qP5Wm+M/VoBFZWWh5D9f23MEUsjSP3oahgCpXM4/YP46lXNy4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KiOb2q/I3D9CDOBH0l/jP3Ehz2o7j5k/0GVSCx96oT8d2bckJG7ZPwgRTdEyXMw/J+8Y6jJh3z+YcW5RxCHRP0NeiV7AmNg/KIxyOswX1z+Jf0TM78/YP6Ok48ehH90/QMcBqHpC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LX2jGixF3T8dEWcQFujjP+4S1nsKu4A/11Pop2yRvT+hYeo3pc/IP8vUjPZM49c/D8S+YIaM1z9VynUBG3HSP4kBAG5UPOY/1Sp7+X/13D+d8z+42PPiPynbvswYOOQ/Ghu5gKvz6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g0KW7Wpj4T8Q8xABmJvkP9uV+eWVHso/l5gz2DlHsz/pQhUJf7zcPx74c8toceE/nsbeuzHr5D8YHOYN0RviPykDzHIUO9U/+KAhRX2R1T9GRyeDQiPQP7eqZdAcsck/EOYzn+ke5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LAkCCz8d3D/zE/3Jcg7aP0D6m9fyAaA/qE6TFhv14z+Z3U3H/mziP17g7/eWVdU/JkV02VCk2T/E+6HBdC3SPyjZEdmrZ+M/sqNuPqFo4D8D7177X5nWP2l+wuaa+NU/mjn+0zkN0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xJjboHC13j/14Dsm1WrZPx4DoNC0T5E/0VrzH5lc4j9Dn8ibmbLiP/6kMoyLmtU/hIobdbje2j/b6tDPhGvPPyH1pRmYmuM/wlNoUQ5x3j+NCgsd+w7WP/qHZt4audE/sFcUzhje0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kAhU/IMQ2T9EnphnhPDjP2CkzXTkQcg/HdKFlcjttD93Vs9gXkjhP6wsQW5MnOQ/hAxUAEh92T9a62TmTPPWPw6iKy+WIdg/XajoZtyO1z/kXlJkz+bPPw5mQor/JNM/onQl40DO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1HkKWRE33T+7FUZ2c0LlP2AQ1fQ6O7Q/3AAx2REDvT8/7tNJeIreP/oHRLv3n9U/B3MscWwf2D/lSKbFOdDZP3whvljPBuE/AXXjijFI2j+KPfmBLsvdP/lzT00nbcw/GUKiU3nf2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yp2RMlQJ4T8RdrmK5hvlP4dogtwuuLs/+zf0W7kQxT8cAocHjsHfP/YA/i4RAtg/e28k5cs/3D8OWw7eZNLcP9KIGzICyOM/eFpEehPb0z/CXCFOi03TP7Z+9CdjcdM/CqgUdUs24T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cZIFhZrT4D9j7/ho/fHePx0fbIVTELk/SPOaSjb7wT+Dz2Cf7mnlPzrd5aDzsdk/xXkjnDqO3D8Z5/w/ngzePy5AMdO+tOY/NmvoHk1t1D82RxmHFg/XP9fuv6PYiNY/EszG4+v64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7wjjSU8k4D/u+f8Zr8vhPwEppgX0g8Y/JwFBSdpLyD+jZL71coXhP1E9kNpZoeA/KjY3UA1y1z8ObEZjJ1fEP9LqHSTwrt4/3Cn7jWqY4D8VskCkpGvQPxVoK9cGy9M/MQ27f1Pb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HPgBnPyp3D+fQwaWAbDlP88nL0QEJJE/MvR201IXtT9e3tKa/AffP20O9CVMZds/HZ9km5Y5zD9mtZvFzAfQP6BuwY/boeg/CNVXOxrx5D+Wfnq51p3eP4drKvGLSuI/F0vPplhO6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ILzFDccY2T+Gz/40rw7iP60C43XZsrM/B6ureKaeqT/Ih1sfcUHeP51ch/NyINg/rlOD161n2D/WDvUVNnPKP8Em+kUqbdg/Ntq5qtoS4D8FsFOJyB3lP0SNgsQhjuI/31l3hBtk7j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3baonB9c4T9OWcq8vGXmPzI5yzVFXrk/X7fx6OrbxD8iYsaZIOPgP63nGx/xs+E/saU6nHD/1j96Ex130H7UPzjr/c3wO+M/K5wH2Fc31z88fz82oyrfP59MN5aMGuM/5t0ejeDN6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1huM+Oy+3z9xRbv7wA3kPz3skX+0AcM/ijD/2ix7nT8FgwDcYXvjP0K94xi+e98/IsU29tom0z9XJx4WLjzIP0quLCQo1to/ImZx3ADN2z9kT2xLYmDfP/ekNR+tYeg/SQsQmdj+6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dt9H4/hM3D9sRlQyz8viP+uBj0dSE6M/M4aH9kgo0z/AfuN+arvjPwEo8yRd29s/00WTut7h0j9Oj3zq0SHEP8JwDrxHp9g/AZyYbgCGzT/K8MTT0MLgP9eZbb7YY+I/ujuCVS3M5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GBHUMyXK2D/hyXmL9lHiP2foQ0jWwLU/7L9PCEzWyz+yYz16Ma3dP5MkKqLJFuU/MmbQup7IyT+6r4oq517PP8GmBEc7ZNc/jQlPK41Z1j/rf7gFjW/gP2F3USbp0t0/yEJLoohN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dsawXW/32j+AUcAPvuTlP00APYSmHpM/tSH947pSvT+uUdIIidnZP/Ed75+JWt4/1U1Koe08wj+hzclKgHDCP1J/8lCXctw/i+BUk0a24D82VRWzKgjjP5srGAPDy9Q/l7k4mmhX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HN4xUIYs3D90Hakx8tHiPyVOJDzTA8I/9HhTxnVcsT8tJbDbYOPXP8gBsn+8wd8/TKAnI4r00D+/ejjHlubHPynz/i4CH+E/m/oZ4eIp4z+58gxMIN/VPz8uxESyWdk/gdFlZx454T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EvMrkciW1D8TOb55a47kP7IUadaJBdI/Xt4kzEXzwD/FkWSfQw3bPzQQ6h4HGd0/Ea220ESI0T9Tu51z0/zQPz0JL5Qiido/TzJpaI7l4D/P85+rmGfWP1ZqLM0M7dk/dIX3xwZP5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k+hEDja21z985BFmfjPlP5RXVzeiZLQ/4vEFKeIJtD9N8rRuAlfdP71xLenZntA/7XDb5QYs5T/JwfREXQfhP3aOI9y3OeI/l4vD1CZ61D+2QmYXX+/UPwWxxqP7XdY/Ponppc7N3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5qHDk0WIvT+3zBe6RuvlP2gK1cOPhts/vvrRBL77wT8s5AkDemvmPzLBlduzE+I/msR6q7BZ1T9csW4OzUbSP8ZMDXZts+Q/ocUXU1tF4D/rHmSMn5zfP8ZjbaYvZdY/OgV44ND45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CRyA/6PPzD9rEi4fRH3nP3DtCEGkYcg/toTzQ6rtyT/XEJrADP/gP3kU3r8g+uE/s3nrhaSf5D8xgBlcFtHfP1qWgV1sl9o/mzDs/HQF3j9HQhrh0XLMP+8Tm8eVctE/wG5/+UH05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xsAjzuQq3D8V3F6IhVfhP3/CM2EOD7w/WiIK59uouT99J1fsqVjbP+R23z+njNI/qkBXTr+a3T8gf5m36JzcPyaJbf7HveA/3x4AirqZ1j8lritiDijRP/x7CLrtUNM/O9wVj6jD3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f7QEGbf+2T8DFx5NoaHhP3Di970cYMQ/Jy+pzepvuD9h99M8l7PbP5q2gGfSYN8/qxi4tDAO2D9qRgV7gtLaP6El7m58P+Q/artT51OG1D/pLrYsL8bJP1RoUExqRdU/d4oSwq5t4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oV7Z7QMf1D/YLAC0d7ziP/8cDyUFJrs/4GJ/ZGcQvT/i/1t+NR3gP5EcHTtP3to/tgr/2IU72j9/N3p7jxvbP3hqu31yReE/Lz/G+Y6j3j8DDyfmURHLP56QQbIge9U/Xt8+wt4W4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ou+RKrrd1D/iPE7fKO7jP6hkf7jjWsc/zTKNBd4Osz9O/6EQLUbhPxg0CpLcN9U/A515VfhT4j9hsxwVwmfRP2PUNe8au9s/686ks0BA4z/yQInpIs/OP4G+oxQmrtQ/KeKiRBdU5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"61edlW1i4j+0l3jmW+HkP7fqdxtTEbc/Ac5CnCIBtj9F+WfkVZ/hPzP8fdFtleA/mP5v+7y83D/4qC529d/YP0Pos3EVK+E/+lR+cypy1j+hbxl7C1fcPze5iu1bv9Y/eDffsOID5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nH8k2RKm4T++rQ/LhtTkP6L5Til9irk/ogrZPQoRvj+rc7YXO2XhPzYs96pwhNg/Qv00XEGk2D8gi7rKOnDYPxqrkrj2zOM/ejvFemfZyz+05Xww2b3cPzmX+lqENtM//qJ+NcKK5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wId8BVmL1j/CT8X2vtDjP6x7yA7n76w/H3kgXcnNtz+2Fp/QjLjQP+6ZnoCh5tY/t0Ymab0G5j+Ex026hePdPxaXdM3MT+I/uTTuGFQ37D/pZ+PrJtXgPwxCO2dWt9k/1FZ5sABE4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A81f563e4D8kQIjGV0fjP7GFjtwrgcw/VHqHBEYNqT8iDMx+J6jmP6cSLsC0tt0/ThYxRBQi3z+w7GdUbIDhPzWDO2KYWeA/qnV2W0lm1z9xf5TSDxbXP/pc1TJojtg/Khw9Z/1O4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rfYl0cCY4T/SE6mzT6vlP8tk1GNZSd0/TebJdCJbsT8OcE1ji3/kP4fVG1jFgec/Kk2blZ5I5D9c09lkQMbbP/vvvqT/SuM/biiKkTeK4D9FKVAMavfVP0ZntSnxKck/7ZaihR/a5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XFp530NN3z8GP2ouySvjPw5eUPyvYJk/bZOKY3wG0T/rM465LgzgP1Z41pMUKt4/x6oMIqQu2T9rLqSbTpzaP2Ca4ODJyts/Wr4OBoQ03T9gIoua9L3NP3Ntw4Zredg/Nc6flbqQ0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vu6fXEhU4T/7Er9B1BrkPydqLciu5rc/wgNUDGNEoj8k+exyFP/bPwz4ugTgoNQ/o5v2A82u3z8X9ZdP6fXSP6XkxXyuLuU/fuy5eLs04z9L9xUMqVzhP9gyjiKVouA/jOYpaIZg7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2bmd2AbA3T86Cn9LirHkP3tdSWXn6KU/FNe0XSmgpj+JHHAbC47VP51EX37bt9M/xJU3FnTX2j/l8BnXqEDVP8xacfiM5Oc/LlvDu+pU3z9yPmLtIhfjPxgFxeDzK+A/SJKJpy7a7z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PaaCrjGk3T/3l3pPOV3lP35Do6dYdKM/+cc088uDpj9fOhz1aCPVP81N2iEoFdQ/95iAxdV91z8wHHz3jV/XP6RZ/x3wIuc/9paiKTwC3j//eyxuKzXlP0tZdQaoTeA/hTrsQ1CH7z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vRCJbpQt4D/OpLZVbHHiP8+QnrSqUb0/z32gmOV3tD883b8t2RvWP6rEuqH3YMw/W4AJVn0j2j9W7p773QLTP+xgJeOupeM/oGO+HIqH5j+yXSy3Mz/hP4Ym2+cfEuQ/POF2+thV5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UiW3j2tx1j8iFDEZd9PjPzoq5We1HsQ/BOthTbJnqj9MjSvS8zTXP1l8hFZpxck/0iYhoar74D+H59V+4uPaP+MKwqPcbNk/3/yT2YYI0j/J79pvImrVP3An4KhxV9Q/AndDthZw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xzl7FCq33T9E3z99dq7jP9lPlipv9ZY/umk+r3yhpj932fhMSQbfP2vqe29nutY/lLGJIVp72D8eWAKemPDZP5Nj8zbHsdQ/+FGykZuu3z/t9qjQIUfGPwbWTlFU6tM/Cd7T8C/x3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KtdUZVIw2D+OO5NewLrjP66AkkEvsc0/KfKC27YIpT/5Dc+LWYncPxTgTdYhh9g/XtleYTni3T9jjEYILUnWP3al+fGRftw/Nn0YnoIu1D+S/YH/yXfJP1Tpx7Gqftg/dEO+rdAm4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1ygqNYcR4T9PSHZytczjP8QPb8eDxrI/FGO4s/hUzD8GHNVfaGHlP+inwPAUUOI/0ZLIlnlX3T9dMGPAwwHZPzr4q87nj9E/7HHlFkujzz/sMmkTPLHSP0bXu3LMItQ/2kAVSGsF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bfVSRaQu4D9Y8LQ1o4njP4ferjc9DbE/w3wK/enQvj9aAc1Y3xHaP3KEZ47nIM8/DFTnX9JE4D8Wz2wKgFXdP/qpCse7sOQ/Bm3Zuq/G5j9YFHYbYSjdP+tt7VrvpN0/v4Zrn4Tf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aOUkT5Jv3j9kfp/A3lXjPx6NQJvZS64/1fjspj5xwD9OG80pCsjaP+IxJ1ketNA/FubiAPiS4D/1SYQWPAbeP1aXoOk+G+U/YcToZ5NT5j9RstI9YxjdP98morqd+9w/wgYpQvWl5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u6obuGqG3T8uD8i6scLjP58ZPV586YI/chAE/FIe0z+Utobhfp/WP1HsofyFm9s/SO4Twfk33j/lihx7pb7WP8HqsX8T0eg/00saWwSj5z97160Ud1jgP8PxnSaQj9g/5HMCvr5O6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MqKK3vou3D9JKYcsKcLlP1o+DUXNiJ8/o4Op+I591T9pFvPbVsbaP4EmJ0AU2to/G7v6SJNW2z8lqGYm22LaP6khF7j58+A/IGu6D5x56j8zZH3vC9nhP/MtkgPq4Ns/xtxHVJCS5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"29teRc/o4D/aP0NfVfXjP/hZ+WBzeKY/97BEwqXtrT8btwRYwFvbP2IfDqOiVtM/Cm18hFkN4j96hhq4TV3aP1IiU1tXpeU/klglz/+N1z/5XJqUyl3LP1CtpdNPStk//XK2F/6S4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TyAY9vD72D/9WhJWdibiPzh7Kdf4hLA/prxBQbYtxT9+bflHXefcP1+txAoAT94/cwUeh+Lt4z+CN1DZtiTgP96V1RwASN0/SEZO1mQT3j8iOfYLV2XdPzgHQAB0XMk/13Ksg9OY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3rPuctfC3z/mfzzJpwvjPzcSBCcXuZk/iyKqEEw/oj+FcyepDLzdP7E4rDnEssc/92Tl1X3u3z/QFzBYqCTgP/tTl4GrzOU/7J8dnYQE4j8YvviwpkbGP7ARJVYdqd0/vemWLmgw4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TVmr/KyR3D89cl8WAe7kP8FyOXgtYWE/hyopOukqpz9IyQZqXA/SP0P+qgMchsk/Dhok4BsL5D8y9wqWhdvXPx59+1ar/uQ/j+t7q5dv4j/l2ZtsYk3GP3yxFgw8H98/baLogKyB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TVmr/KyR3D89cl8WAe7kP8FyOXgtYWE/hyopOukqpz9IyQZqXA/SP0P+qgMchsk/Dhok4BsL5D8y9wqWhdvXPx59+1ar/uQ/j+t7q5dv4j/l2ZtsYk3GP3yxFgw8H98/baLogKyB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"un4XF8ch3z8DLTePpSfmP6Km5MIp2Jc/cu9YsfvdvT/9cIUGLzrhP3KTW34fMeI/amb88o5U4T+OrDTfNrngP7MeemgSl+c/GC1dJgAA4z+xE+ed0NLkP5rYewqpuNE/p36CWwU94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2KYMrgL53z8jQcsc8NPhPwj2Eg3ym7I/sePNq1Eqwj8k3tuhypblPw8ewXDsgOI/umAjTeFo5D9BIITAxrPfPw+og7PS4uo/tQfdkaLj6j+k9a5/08DVP90QSrg2ReQ/u5sSkbW76T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kZgzTicN3j+9smVH+4njPxCXsIkki7A/4KVY2T6FxT/F2sa710jnPxFnGzVxKd8/7tMptBZM4z9ik+Jf33fdP1sA8K8+OOk/kbqCiHc56z+soanLnU/aP/+I5KmN8eI/jjfUzDai6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T+U80ytD4D9Zs0kc93vjPyf3JucVTJc/jux8Qo2QxD9V3iAirPHjP4LbMGG+sug/imGGszbu4j+VLsu6tpnfP5VmjX/z++Q/97Ormd0b5j/ZReaRs8XQP2fO8UjBYOE/0DLWALPi6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w1czani83z+h6VaFwRXjP2Ty3OfgY6U/0RzAq3aTpz+o6a0iwLHTP3XC5c3iJtQ/fH9bGtiu3j95ntSPRAvWPxh2VKFqk+I/CC+vp7YI3z9Qh30Ard3hPyv39nngENI/T+7/8h6K4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ASmUYHy32z9b4sCyrgzjP1oUqj9DeaU/51RZMbL+uD+VxwhN4tLgP8KOQ0mFGN8/qYhNLCZd4T82O+b2fWTQP87ZjIJv4+E/lquN4a5o4T842No2flXSP0Zem0i+8Ns/0G9oPjAF6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gY9c54hv1j9t1eOB3rfkP2pAEEmnlr0/DGgz51Jqtz+QfpbMwynWP+KdyZDCWcs/a9rOCzL82T8LubX+VAneP2eVPck5et0/uh8MxYZ90z/B01Jvr+TcP3jrFr/0TNg/JrqYC7fL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nvCHLkTW1D9405oM8MPkP1o4mAlUxMA/P6ank0sMuj+JM6t8Q8vdPx+aKli1nM0//tGLP9Gk3T+VVOGus77XP8be/4RbqNo/XTCzNaKe1z8zZaipSfHgP+A8lcwz79Y/BQG0cJX33D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7JsSY8kO4j8ipgHOoyTjPy5AqnAfb6E/Qs2Q4WddmD9nJkubnHLjP2q93ZjMAN0/VhSxYub74z9D747rhdDdP4IkBXY20uE/q1yE2hL92j+Ip2uG5ZPiP9yDYeTq2NA/umRgW6UJ3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HF3fluOX4j9TZ9KgiYDkP5CysgezKLc/+J9TfxzIoz9rEAFybgzkP6SWSMtHgt8/uW4tCn6N4z9tZwmxINDcP4sjYe900OE/wfwucYxr3j/b6LtUntTkP1TP9gkTptE/bxG0w+f13D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DFeyF78Z2z+oYh6y90HjPyeQp4hQ0a8/2OG7wpNqxT8yV6rt0APiP/UDbkn3peA/OiKNfBU84T+X988Eg4reP0sZAL+ce9c/4xPN6HUX1z9pzZArvWvLP8jB0+7o9uE/cxvTYYTg5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZlSNnCgJ2T9tDWNgZN/jP5u4OoAMPrs/GnvSx9y+sT+14UVsKa3gP6Bacot2xuA/j+Mhfjxp2D/rpBYQYprYP6ju82o4nOI/3CwGz4/g5D8gshihlEjhP+jsm4lrAc4/vGunOi2K4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9ifC50sD3j/b6/nWQ0XkP4lVneulLJQ/w/uqY4PwvD9/WQD0tiTfP/817KX8Jtg/+BurEdLY1j+aj5YephHIP37EeES+buM/o6ppIYJu3j8OZhVuezvVP6fx6z3UO+I/rgc+NoBR6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dD5Yyqz62z/qohsmiWjjP/rlKVS8qMY/2FIWqTMIwD/W3aGVuwThPzFik/IV7t0/C9G8E9bp4D+pAC4zcQLbPxoE0hVd+tg//8V2I5LE3D9+keXi5J/UP58s0msNS94/0V9R0wTc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bjaPTt7/3D9Veo47ZMHjP2ZHVTgbBaE/hCOZ41IBkj8FyDt+gTfbPwCDR0umZdQ/vIS514Ky5D/OYOS48T/jP6Vc+0rq9+I/ZE9L/vmQ4T84N8fmhuXMP0eiQzO+dNI/Vm9iR9Lk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q/eixFxI3T97IwuGfpnkP33eAiEPuoY/ZI1BxYejvD+P5tuQUF3XP8xyQWJMuc4/h//gr/244z80dlhAPw7aP03LyMTMxeY/GaaTwNdp6D+adS0t5/rePzLW9/xZi+E/IHlTGhsW6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+mRRVNgG3j9kih9lOsnjPxmdaycyRa4/rHhFLGiwkT/zG6KwFa7YPyW+ANKaTuE/rgEHEoO+1z+QEKPt1KnYP1RXkXLj3uY/BwgJjDan5z8kne9d0KXbP1Qb9i9FMdM/NfjsCa7N6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J7lze6Ou3j/nX66FKpLkPwv/9+zWkKM/KanXjlYdqT+Tb52UTBnYP/P1ZmOuENg/8okAUp7c1z8/6QulLhPVP3z2WjzB7uU/3ikRGLt15D/2+/Jv5LjePx2S00j8Ldc/IOKMXdJ86T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9rCbX8+X3T8sKICcbB7oP8PDRGERWLI/ALTRC4BJ3T9w8MoNz0rjP4HKTngN6OE/c204eJZG2z9xM8DB0NfbPzTfllXcx9A/F+FscRNaxj8qEFjqQEHVP6sk1CS5bdY/4Vfu1/873T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wHFzeUZa3T8ZgA4WsQzmP9yDjy7T0ZU/FBBVOvJ3rz9BfK4Vos3aP6r+sw1y6dQ/s6NSsxDf4z8JBORblzraP/lt+uAuw+Q/Hi2ujEB06j+DtuUXMHfZP/okZdjY3Mw/MKny1Y3l5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8dd9QdGA3z8PwweIXUbkP/cLjFIcLG8/bRyCvX6wyD9383lUdlnhP94C/AyEhOM/2RoRSEGz5j/gD8n+FJXjP9oWS6/MJew/oCEGHvsQ4D/wCklXXHfVP9EmXBCenNs/nCp1xJ0l4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t4IddBf93j/gT4kw4+fiP6InbvrN2mk/dC4zjkSs1T+QufH+mVzbP4d0s2irheM/hzxVVbyc5z9VCJ/F0bvhP31EMFLDGes/gdio9kNM3j9gvRPjRJPUP16sQaCmDuA/DZ3iwACX4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"noF/Yjfj3T+CNHwYKljjPzRCAOyyiXU/mMI7i35dyz8STwFQuz/gPx+XXHrO8eU/nZFoMa1H4z/KmDE+jlXeP+n52+RXfOQ/Lvv8YHZd0T/+g1U+80nSP4FVTegQCN0/Sw4uyXXc3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Shz2telZ3j9RtjW1V/vkP+DoeLjhV7w/9ReMxr58pj9etQ+DuobnPy5hblSBTNI/uCm2gclL3D/MPTzkgTXdP0Abrs8OE+Q/Us16qXcN6j8000Tq2JvaP1bCY4OvStY/OjoOX8In5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zojWmUpi3j/N/4F5G5/kP+upMHEc6q8/KLYCkqhr0T+q92/NQjjjP1Xj9Cn7Z9g/GTaxeyWU3D/g+1ZkwQDgPyK3jWMuOcQ/ERSG9gs80D+It8973s/UP2TUI5oUe9M/msDUqcuu4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pvdk+JM12T96gZD+RzTiPwDPVEuHjbs/g8IP4wlgsz8/O0VKMaHhP6741BjOYNk/8IwJqSCA2D+dvWYvwmDbP1Ly7RHtkdE/GLN6DHJ+yT/ECByaVdzXP6Bh5bpKNtE/7fIRqR0W3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1qSxJN672z89sttq1d/kP+FGXO+fs5A/U9EaaKgrwT+i8OLkxMfXP4Qk903tq+A/qymmqxFL3T+eiXY4NeDFP/WFJ2NlOtk/HsLH23zE0j8tJe0rfVLLP9FMAxcSa+E/EHgs+wSB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YpUqkjjZ3j/O9gkpHIjlPw1suWFhK6A/r8n9RlpVpD8ldXRj5RLiP17eYoKX3+E/8c5K0rgS5T90chZnKbzfP1cqJ3mwZuY/j2Lch9Wg5D9KZoNdZ8PRPx7Gt7N88sI/kofJUeNw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9iQ/Ogk83D98y386RIjjP3O/NX56x5Q/Owylu+8JtD/E40ML8JrfP6Jy0BRj19o/gE9xCPNo4z/Xy/06d/3iP1FRKxJhS+A/ioD2bK7q2T8qvSNHOozQP5ag+GU7PNQ/2eH7Eb8E2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"omMERWAU3j9X98dVuM/iP4b5GVmINpQ/aWMMM3eluz9sntekNbTgP74C2Z2h4dY/zSN5quQW3D+UYyeGKibSPyOQoNTTwuI/aIs+4X7r5j9rykX8P1rWPxUGcn3ZrN0/ZyKY0zhg6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kJoAZvDm3D8QHUqwVTfkPyBe9fQyU6Y/faIoR49qqD+BDsODJEHiP8YKDrTHeNo/RW6JgGdB5D9MPlhJ97XgPyTYCGR3Ptc/PSkDyNFh2j+sLTovwsDBP3T/M85hZdM/x7GD2sBm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w/EvFsDA4T+Bwvg7ljjkP7IFzV6NE7o/wNasSaSysD/aP7ji6TLjP47T3QD1CeE/ikC4dN324D94kGjW46LhP5pmoWyZfeI/rDbJnd831T/j186iGybMPw4/8aXiu9I/T3iIcr/f4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WUzKgUCD4j8TpgNvBbnjP+QN+JnJCKs/vUZq3Naioz+MLyJ+MlnmPxXhta2MW+A/93kAtaO04T9+DPnQcFfhP6P3zBZesOY/DxKl88kU2z94ZAQyd/3SP1q3mTMQzM0/y+wX38TM3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gHZcX46S4D9TUeduKerkP0IVUPwC96w/jfOZt6GNpT+8brTPrVHlP3jYjfL7o9s/hrYL0OM65D++hehR8CPhP6y8SHb8kOc/l39FJgYL4D89DEOoqv3VP+zC2k8eB9M/XWOpX+p33j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ldWeq8lY3T/s+e1LF7zkP3vuk2EBEYI/paxU19WavD8F+hXI3HzYP8yCNMG9it8/eX4zIo8h4T+WwUsMf+7cP3g/DFx7yuA/vqWnaSUF5T/fzHBRfRDBP3SEUOsII84/RI7dGwK74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"myRRy7Sl4T/GQoNF6xflPxmpUt6p2cQ/jPgDrf7xrz927Bj/NJbhP/XTX1h2SN4/Ylf4iSnz4T+EKmr5us3bP7+zZnoCiNg/I6Tlkzj+4j+9dZF55GzhPyeNRVfY4dk/Cbk18FWp3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p869Kvxj3j8zRo5ziyzjPxJ2JOqUcsQ/se8fiDxQoz/kId4IS7bkP+S+c2nAWdg/CZRWZRXp4D8xi4+nPCbWPwGBmDh7a9g/4f+Aig6Y3j82FaKJA7PdP6qgnYKSkd4/JIUxqJq95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PHXVh9+Q2z/36yQyzVTkP59tIBplmpg/ooNDGDunwD/TY7RSELLjPyq468ihHeA/2qZ4zQCE3D9d6kYh4PfSP7PWV5U+nNY/TCwFv1703j//2N9VdS/VPwO5mNgZ2cQ/2lh9ov344j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MujdZe5S3D8rLurRLCjkPxXCpKaFAL4/sgt6rr9Kpj8c4nmzd0LZP10VS9dUitY/NpNvCZKj4j9LPinzDDXgP/64sLMVJuQ/OhYKfZOq2j8vXuvpTrTGPzsOscAlguE/KYOBdwpk3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aHLxtkrF3j9Q8eMqY3jkPwGHrpyUkKU/DsCkwnn5wj/rX+ToZVzoP/UVxS6Uz+U/mDghHe9r4z9jrvUF98TdP6AeRqS/Z+E/3PFd+eZy5D/Zra929ovLP70h41cjnNI/KU6lh5DB0D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"esRPc2RF3j/U014cscjjP7YpnbrJNqg//MN+9vAnrz+EZgGTzhzhPxDV7B4UPt4/XmYnHG9C4D/mgZjdyobdP++aj/MhhOE/7Tr0AX6V1z8Y5NtLiuzZP8o2E8S4Xdo/wUxFmo396j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wlVEDhKn3T/KL3qxZi3kP85Apa/CZYk/OBQk5Yz1uD/FiJreKgLcP4ZpKcLJHto/jNkg0IyH3j8KrGy+cibTP1qQpBb6iuo/OYOdFqvr6z85Wkb/bd3WP8DiNJ0DWd4/neFo6M6V3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eN6xxs8e3z8RulezRW/lP4RfabBkdJ0//B47OLDOsj+Jto8p8wbkP4YFN27HaeA/XfXOkML94j8iOnE7mZffP3ad7N4yous/sQvM7xLH6D94eK8PBbbdP44AVPfuDNw/zK57kWhg6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DpkSr3182j9s0RHH5tbiP0SYTGAPppQ/ebxBLCFetz9cbTX+fSnQP5kkUlF1dd4/oWMYStYy2D9SXsu85zrgP9so/Lnirts/D4xT82kA2T/4u9nvy7/RP7Ks9ShGLcc/Z09RgLLd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J7jyluIW3j9j94oQVaTlP7v571me/Ic/Subm1geHqD+CjZzlET3hP1X/UlTkT9w/kc3MSEmL4z8KpKg5MOjcP2U9od0Y4uc/POgQVvDN5T93B6T1JdXOP6Wt5OB8wdI/rlRx41yNfT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XJs0g1dg3T9RmVjfKGfjPw+lMIrmEpM/HPJ0G54xqj9T4rXr5DXaP+dnSNNHxNg/iRmVnYtJ4D9x6/rPCTfcPyQGkdQAzuE/iJylByU74T/nNC/fbE7AP9sytLZRONQ/OglydOZ63T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aMsw9DE63T9Gm/nHzRrkP2KawFtuTZ4/V900kA3Xxj98rpNVHI3fP5vYDeW2jtE/Fmz17b6t1z8VOzw9evjUP9+gwY9R6OE/LB77g2k73D/gn6jzjgrUP1aV4wx8rdY/yvMoe4W43j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aIffNcBF3j8om6WW2oPkP2E/H97hnaA/3WJZr/U7sT+wuBUb0pflP6OOLj9Mv94/VU/l0HuU3z+UTvAeLQ7WP8GnmMe+uuI/ZH3nNWkw4T/g2wM2R5DcP+ryyhuCNd0/fC39ff8h7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dpfykoP52j+wr+nE7JDhP7KJK8gF+tU/LD9zUYmM0z/lr7jUdPngP6C72nqQwuQ/3ErrvQxbuz9stLEKXBfCPxw6dJjI/t8/y4aL12Nn3j/JCFKZkRPgP+z+KECvnds/PJ7WCIgd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aswwc8wT3z91B9DNKUvgP4saQkf5T9A/svXyka4Ozz81gIECAI7XP8Cz/ad5t90/thYTtsRc4j9q8YNLmNHhP50yeqaHP+E/E6bp7Qmm5T/KZorkJ4LnP3OoLru4FOE/fqJawL6j6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8EivEJf73T8Ti0DqZ93oPycduWn5nY4/7oQ3aPXEuz9jlMNv6kbjP/gf2ZhhGNs/fwzxwNGg4j/N0xBQWZ/ZP/9NGwqL3uA/SqlExJ0M0D+XSxX/1+raP66VbkIiUNc/Q9m/PWda5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rZbxW4hZ3z+8DxtnEC7ZP40AbeEwwbY/GVw9fzPi0j/Fytiy88XgPyUHGF1JxOE/ijG3Lhj43z9M1nKnyyrgP1i2BT5l2uQ/U5zEaJRJ6j/X0LA7/ALdP9yd5mMJhuA/loIKsAid5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yB3CKL+I3T+eboZI6ffcP9tdLu1y5Mg/bJfW7qZ+1D+ru8HexTviP9Ez7aLrD9s/yVWj8/Kn3z8xhaPLx//ZP8A08Pl05+Q/L3WcmMds0z/svTO9hO7ePxPE4bBTF9Q/Di7oYvAB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qt/tavV43z9vDoStDdvoP0w2lQV6trI/N04aw8iTuD+q0w5WzFveP6p/RLQc/OA/5ycmW28b3z92tl8RUTjhP7QV/LKXJN0/QRLjgY5D5z8EuEZaVPvJP1L2WjgO2tM/MnQ10yeF3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tG/8DGtW3j8kEaoOO77iP3Q1K4JB45k/nQMb19Rx6T/PriaeU6rZP2upmfre29k/LoGVXeYM4T8Mo6R5QfLbP8Fw693f5uY/H08pBcPh2j8SWv9eLQboP8UXlBS6b9g/WV+BH25Q4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kFC67scB3D+vTMUKp7nkP16bccVKG54/D6uPSKq6mj+PR8SY/mjYPyTqbOUf3Ng/YmMLBjOe2j8vfNEec7fXP2TysvLuneA/Lbz2Nn/f4z8Fs4xj3ByyP6WHJ9HtQdg/6aWv4Gu55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9mtuMa2B3T9GR5BQHmvjP1928ph7dIM/Ok4Mq8ohqT8z529xg1zdP8Pow2+5fdQ/RUI+0SGJ4z9qxET9KfvgP3OmzHh7n+E/Lq5yM32P2j/tRhTxyWnNP9+MxC5aV+I/xUXHCNBs5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rXoOpcEO3D+hwVNpoRLiPz8vE2tm/cA/VNaTiqeptz93Skl4xyvXPyetRpiV4tM/GhKypWsL4T8vcRJ45NvdP+00bDcHldY/KXOAuZWu2j/gc0ymbdzZPy1ZTqJ5Usw/+49wHm613z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QBtsW40V4j8rzn7fWHXmP7NGT0xbvrA/FsrapVuqyj9C/j8Gqz/lPzFgSHbE6+A/FoUc/3EZ3T8x6DIIPmfWP9xvRBiqn+U/rIMfsepv4D/MrnmJD77FP3Vz386j4tU/q4VUri8p4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zMyErvhc2z+HV/RTprziP5vAKbuxGbE/M88yCjWNqT+bP1hJBcnVP5GfLTJ43NM/S2cpXKZr2z+Vi24buNrfPyo/WHMuF+A/Y7QbLXOw4D8E9fAAHb7hP3vLiEF8Ad0/auVaxpYU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MAXDZpzz3j97vAVjkqjlP5fEL0c9vHw/JsmqyRZR1z9trFB3Gh3ZPzlMEf1XUdQ/9iaSLgxP4D8uYb54W2rXP8VooKHdeeQ/KrzgrC4C4D9Elwn5tTzTP6nl2UEg/8o/OkY69Soy3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L6XY2oSg2z+q/xMgbbnlP78u/LMWhIM/UwIjhNU51D+gJOFavNLcP86yT9e/ctg/bX9QDNzL4D8QgQ+B9XvXPxBaOJSjeOQ/K0Grf3e43T8DyR1eMJnbPyA401uV88c/U3MmmCDS2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mePfEMJ+2j8oHXxfakDiP+4fDfahCLo/d/CcJUMLsD/nunHmeLXeP2mhmvgN7ds/41Bzh5Cw5D/IhcgXO0HhPzmHEO8izOI/CPrd9MGm2T9eusG1sffSP/XnhdL2QuE/Kho4BpIe4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vUgHvk1T3T/ywchziOLmPx5IokNv17s/6NDPzjsZxD9VFgVsP5XlP/UfzHPgjeQ/n6qBS2LQ5D9TT2vg8s3iP+vab2pVodo/QFoZN0R23T+CB2qdrJ/nP/sRfSuit94/vvwJpFi77T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wXflAYoQ4z9u0zis1TbhP+K5VX1/+sE/GsNdRSJ0xD+JLx7lz73mP/97eczC4+I/jQiQgGpk5D8zau7RhLTaPyBPjvmjDOI/Fa+XN/Vj2T9qnk6vgBDQP0UYy7Simdk/7Sq3mFm/1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9gtxOHoU4z/Y+BXSlk3gPx4EoXpLaNQ/W2HJqviuwj8pscRmKLjfPxYY76DJgt0/YyDnc2Go4D/yv7tsSvTfP0y5NIe+Td8/eIq9MR603j/+Rx6mDenJP/qcY+qO5tk/A2REXhX+3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hu5j3DHk2D91OwBVKWrmP+Qp/mUq99k/7VCxoGLHzj9+pPy9cCHkP6QZkBbu5+M/xtH0+V3t2z9FPHvsFxTRP7PUJ8lRzNU/3qN1cxzu0j9mBCAilADUP00bIkJ7k9w/R6yw8aOK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ACs7ng5d3D/uZZwk9LndP/oksw6D4Y8/F0e82ScJxT8onUGUC/HiP4CuJmJ5qNM/MPV1bYeX3T9BidU22UrdPwJLzLHLitU/DUapVw+T1j9YBJvQnPXeP+Nvamk6Vtk/1yPYZLlm5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S6PNZOu+3D8hUQcBGvndP+qNzjh5B5I/6dUzXGsZwj+/RJbJ/8/iP7zraZ70ydI/MW1eSC8g3D8XtwsrTB/dP6J5P8TlJdY/mwKTp0LY1T/bJyFwRKzeP5uGrMS379k/QyLb2IhN5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y6Fv6iA03T/Ao7/y5UjhP1SWsJTe+sk/3gsd4v851j/vu7fBSHzdPy6y8UnTwOE/zD0AkNib3j8O5evYwl/YP9kEm4F51uQ/giV9yHuN5D9tsFBtmsbgPyCGrgJqJt4/cqwmDF2u5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vhXXaFNS2z+8IB0wenniP1w1vp0FwLg/l2b5Czm31D96uye7HvHdP9PhXlkHD90/vKn4LPvm4z/b18oJGOPYP992FdIu5+M/HZMbcyHP4T8HVUnB8iXfP6Ykm0YeDeE/zLIYXkIc6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zUHLsZDU3T9rs4dZ0ebkP2Z1iud8fJE/2v0SNQAzwj9zTN+MilHgP3Bl9wwZnOE/Z9+75I0Y3D81HPlc8vDgP69O9ZBh0uE/vNixJs8K4z84HJVIOifQP3Btd17yTdE/uLyv1YcN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yNre4fIR4D+Ipc3fFLLkPwo2FR1O068/sXzUlF/ooD/mUVOAMU/iP1rFt6tqzuI/m/ZtefzU6D97HDPLe8PkP3oCWQSpR+E/Yo1bBPyD2z8bf2SU2sHAP88hdSqcJts/pRb+91FJ3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PKSTUsuO2z8c3x4dcnLmP/ka7fVWWpQ/MRRspBAfyz9Ha5njUy7kP3SCr6nDDuE/A4O3cGzg4T9F4kWro+3iPw1cd1FSh9k/COOnJC6r4j/Xb/fBrEvIP8D0rglpKto/IfMCCbjG4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xjqWh56L3j9M8wh9EUriP4PyqdQjJLQ/imQbo/ehsT+aJRjosFzbP7xL4wPPzOA/4b4Dx/Si4z/oCMQRRf3YPxcNsdLiveY/TZUketdH3z/zEOazbCTcP5jdtJadJt8/gjwYKTDp5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xg3HGBmj4D9IwrmNVZHmP47q5gq5oLI/qD/XRlSCyD+nGQ+duUHjP8SiG7/I7NY/iFlNmWS/4j8ALHXNssjiP8WyTf+Ps9c/3ypVY5Vh4T8bpF3LDw/ZP0hLoFGpANw/uVq12vc35z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uKueZ3ia2z8ys6qSu8/iP4b/957kOJ0//euZ9OD6uD9CxmPu3NLiPx1mo3gMjd8/TiyH2jx24z+NJdpU0sHEP5FuAsA5ReM/G+CpI8GK4j/fdRlwtAPUP3D1i5YaD9Y/JkgbH22j2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dys+s8OU3z/w0p8hAVTiP/Rw/FTiF60/kbO3Uw5/wT8inBNPi87hP+sySndi1+A/VGh/vb564j/fsWWFe1rQP882R4sxTuA//oNW8CYi3z8urO5AEpTXP4XpgOhRBNU/sPjyAAzu2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xg5bavVU4D/bF2kZn3niP40MeIZyZqg/QkxaI3KQwz8EsyRJ5b/aPxGw1PwemOA/iNcGF9c94D9XfNmESyXUP8zJiRhZjN4/q14bORax4D9laQ4vDyLZP6143l2k1Ns/hxU+FbVg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dcn20jqI2j/pFMW4nTjlP3mFPXCc4KA/EgGCjbjd1D+/Ym+N7xvjP36mDNZ95dI/zouBPRTl3T9qiKqG2EHYP3T+WohWZeM/xx2d932W2z8s/NC2ha3KPzG2bD4eJtk/4yPeHT1f5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6FC/YNGq4D8secTwCknjP6nXNjUMX7w/dAwEwPIizz8GFs/4kp7gP/OCLkHMD90/MqxfgjPI2z/25+2way3gP/DSriQm9dY/ACRyBRVy2T+nVlakuWXCP523Wbiig9A/Ls7e3lCQ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pKX24xPT3T8JEJ23m2njP4u9eO4rFK4/t5sx8A7Ezj+bQLM3ccngPxv340RSPuA/KoeGVTNw2T/gEEokaBzePw9pAnThGtY/Nx4UTRUs3j9X87F3V0XFP48F3GqZjNM/NMXASsSE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iEani6Nn2j8uV7GNBf/jP7Ld6pUkmsA/ZOBnADc3zD9npumhV5jfP/rNSk99F90/UWKYOJoh4D9Fc5Vb27LaP+dWRNfQ1NM/knX+p1n/3T94fVexE4LNP18pUOtXCtQ/GH8NDYLQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oQJP62Y92z/nI9bbqZHhP8wqVJdINKI/oCR7Pb8DzT9gGDC08WDeP7FgrIOiGNo/50cHoRd04T/M5kVssKjgPw4Vlgv2ltw/Wq/4j8KXzT9m4gHDJljRP2pmGege89o/ZWotqisB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uE5sOlxk3D8xjldXQWniP2n6EkIay6U/XG4+tFsW0j90zIXFCq7bP9v67qUJTNk/w3k2W/SO4T+18rtE2bzZP7zXL+BSzdw/pB9G6rG10D8qa/aznsrKP7xdHv7VZ9k/Uq8qeg6z4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GoKVP5Mk2j/sL28bGAvlP4JYEe5Bybw/UxRM+44rkD99qjuZWZThPwULOMg5K9s/+KPmD4KW3z+OhbfKZBLhP+hkcY7iw+c/OY9P37nw6z9ORXMMe5jaP2bjyMB4+OU/c6aMdXix4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pOT5p8ai2T9LZgxukB7lP4v6KstrobE/xf3F7wIjpT+ggB7qABzkP5EcHTtP3to/+SFXl15D2z/2TK6OciTiP1iQzho+Z+Y/broWXnub7z9/NW8KQtDbP05QhHhukOk/TAMrMABe5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hj+dwF4X4D+QJvPcG/DkP9LfnUzxo6c/iJPF4tn2wz84YaolL2jhP/W3AS6NYNo/tqtcIC1H1z98IFFmRubhP0neaEYRR9s/vaW2MXTh0D+X0/l5BfvlP9pLBNQ58sY/oMPiq6et2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0qhvY1on2j8LZTrXNG3iP4utOKvznbE/rwmVVJioyz/SodPeKS3jP0TunBqA4OU/Pdc2Wpgh1z9tfulqAX/CP48+iKxmduk/d40/b24E5j/snIhs+qfbP8HMAi9ZONk/mrXREFYw5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"naq4N8QQ4T9WVQxjnSLiPzyF1nDjDrE/UbA07z5/4T86Vka38JvpP4LbFdeT3uU/80kNVy141z/Qe55mRhXYP0sEi2cWzNs/pAeNb61J3z9ax9N9F5jTPzl42h3dPto/4a9r/kjl5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9x3cCa3N2D/IxaS+NqDjP+9n5QxJFL4/ZDUAtItAsj9Qvah7nwTkPy9/I+AUAuQ/AcMTt/WD3T9gsJmkyNHRP7zmFNMSDdY/Amij0gnkzT+YXjAixqbiP85xeznJEtA/9l4yajxK4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wIVODAbn2z+54jSp3JDjP6kbKoRF0LA/yE0mFoLEuT93NCAtXdHiP384O+za0OM/rgqgAJYG1T/upOe5dxnYPycDvpbOaOE/W9V0bV/Y1T9tkcWRT3njP5fZKKeOOc8/h49SYu7G4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KYYdTHJ53j/JwqTE/YLkP2OhZhDp7po/1epPV2RMqj+fUQRhhoPhP8U3/Sjirtw/jvMdtLDp3D+SUqtZEaXcP4SB9oG/sec/cCIiZWGr5D/5Gsaf1E/cP5vafR8I9tk/NXO2Nuum5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rwVFcbZc3T8g8H5uLmrkP+kmHXL/fYw/q6VoXtURpT/qUnX6iZ/UPzIe/2n599E/R9geqNzT4T+zLJgX22PbP2O8qHpVX+Q/057uJDaX4j/H2O+5aijhP6VnTSv8ytU/x/2O+RiS5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0sI95IMo3T+No6NTLHjhP5O5O8BxQpY/sNFBCFuUxz9giT85l5/eP+LrfWgFZN0/fSqb/pJz3z8IAdTo3iHZP6zMRc+yOOE/9FRHGuHI3D+b7MNObXbMP5HZAhPSo9s/2pKbEJTr4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BrEwfHkr4T/5LpLSKyvjP5zhVwrO/b4/cgNyrU8ruD921AiVpMHdP5Jx1uXy0ck/nsoG3LpW4D+XDywwpTbZPxvX+DjZXuE/KuXpDMSB4T9Rvmagks7SP8lcHPzACNw/lLhdpV4u4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MdWDt+9d3j8zw5XQqSvkP8PH4CW6Jpg/2XYtTE/fsT/p8/HEUEDjP6A7zTV7WOM/n14RKJoL4T+MEzuvOrvVP31e0aIwbuM/RjFW+EZ84T+3Z035KirVP/XM9EObHss/GKMGXBmE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mIvXznq13T88MRroOcDgP1yOhxbaGZ0/w9MwdPlf0j/K9OGlBQ7XP+JdeOJ4bdU/uvbIJATF5D9Kr9uNe37dP5g9aAsYht4/m6CDFbCN2z/f13T5DMrjPxw7HR0J794/cTnd6VvA6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LCBgS0Fx3D9zGhBZHq3kP3V7d6JXT4E/oh0j7zsHwT9e590B7vnVP5k6WDmP+dQ/4E1PhviL3z9yyln6UcXgP8UaoYeXcuM/2nTNjWfm2z90/5fRGlvlPxsUV7153uA/GHzAwQ/S6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A4TALn3F3j/zMadB9jHkPwhINO0aFGs/aeo+SDhRtD+HkPLvkMDZP0PQU7eWe88/a8M+HzyQ4j+fxlLhlK7gP4Aw/E/7Qes/oHrwaXeV4z+/9kjdYdPiP+jvrGxEnN8/tWnKzKQG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b+3Ju3ay3D8uaTmA9uvkP9aoLx/AgIw/vwPE5UCMkj9uvH8m14bXP0iHLEfuPdc/QdBvj9rH5T/FpYobyynhP1kEj05+ouQ/3WzoD4Ue6D/vbNPh2urgP0dke/MeE+E/icw50EbA6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OAzBFIlq3j/0mMxTgCLkPxJOqCCtTHI/6Om5C55viz/5Nclla0XXPxQmzZc++tY/XoBA7o5q5j9QbL/E9ZvgP6wFWohFUeU/sUeTvvZm5j8h3dLerGfgPyR6EYIokeQ/cDvas2YB7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MdS46Q3a3j/ahfaeC5nlP8CLkucvG5w/lopPGSCboD+DFgEUg9LcP8i156BRddo/mZCphHz54D9eyVzwv//jP/SsUw4bVeY/BMatfNtt5j/608Bem2zZPy8xyFsm9t4/kxONdbaL6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SS92Ph+D2j8v0A8GlqTiP5OVgrRe5qc/WFEPFROh0j/FJ7LWfPbaP9Ywi+2utd4/h+wJb4fl2z/1GEbmkpzYP50e0a8OleA/zgHIxhyy2D8Wou4DFULWP17Dy0UH0tI/naqn82uAxT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2FrqR48Y3D+f1ERoqzzkPyXMFKfHpKg/1clvfobQ2j9vflho+NTYP/ynvTCcEuE/12utqoMq3D9fkImRvtjYP1zEMr29luA/ENHX04c61j/v6KykDU7aP6rBmUDcMMw/aW1iMHwxwj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xaxuFVzS2z9e1+MxxSTkP2/2PfcRjaQ/uy6Wkkqx1T+nMFbJGVHaP9UcH6AVMuI/GkX278RG3j/acZ5XKuDZPydbYajLHOE/pRqzEtiV0j9qN0uEGX7gPwA1PKI2Z9k/fzXhd2lHwT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wInkpf6h3j+Wm3hGKbvjP6l58XtHOqM/uoSFlkBp1j9QbbTHe4zeP/Hu6sJyyuQ/7I7F6hsL4T9MaaqdK/nZPyyNzIEl8eE/BJEq8cts2j98xMjwxNPgP26iFTK9kdY/hhTXPZpQwj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w1Fki/j/2z+U+SxcP47iP5olgBcFXpA/Xp9HAnJszT/9ttZXf3TcP09zOUeAldw/04qujUNR0z+etsrXDzLUP4OPcBt9Pek/tWe9+Q2m5j8Fz95kE2viP0vNIAfqytI/YEbvWHpV0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A828Perk3j9inC/11vbiP5b8yf7ckbM/W7nVLW7Wwj+tC/c4wprfP1ktjxY/huM/TjPgkSZz2D+NZyG0Uy/hP+fwZFW5JeQ/7U/hmvM94j/ihnkexarZPx4Xnr+w89Q/Pc2rbCAe5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AoaxVTBX3j/oZIsSoj/lPzF1z0nZ89c/bmZzjmumuT8Xfvr6ccznP9qaJKKvzOI/OEUEPrC95j/sy9fLij3WP+Ordsci4dY/NTIWBz441z9w0lEgS9TPPwuAxwke0tI/b9mxDHCG2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Rhp3Hdtk4T9pWgF3borhP+F59RywjqY/lGC3zdC/vT9mmt3TrBLWP/Vuzxi0Ftc/WWFAT7WI4j+rUe9zZeLnP8/3qVv7rts/Bh/M4kWI1T9Eb2vp9IHdP/zjLEMJ6uA/lCuI2kva5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K2UO34lF2z+rv4RwWG/cP7gs/+RKacc/aSIr8wqa1D8tIuyBHZvdP3jxOMkotdo/UX8wYGzK4j8QLbHKiQDoPz2+QKn4RNM/CMM2hDMM0T/jhJr/FHHXPyUTMubkz+I/pvAmzMOW4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CBzbipNZ3T/wVabl6ETlPy6tHMwgaY4/9ae5uwGvpj9REhPNeyraP8aZv4q9Ndw/HPwxKkkO0T8toFMR+cDTPyYxd/m+vek/PJRRrXE96T9gz1b37QjZP++CmMBw2tg/6qbY3V5F5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ro51gwST4D+cRfxKY0niP2tA3SPz8bM/zOpwoF+swT9O/JTeS+DfP0E8EDk9Ntc/35I0IoEq4z/uwqwmc33YP0QKMeN6ltw/ZCJmi+n31z+ImA6hV0vfP8guCLH/gdY/TgW7BA765D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p7g7Wqox3z+VqNByJqPoPwxwiuQH6ZI/0RkF+y3hxT8gWFgS/rnfPwzSRzABseU/kJXJcRSE4T/p42JNl2rhP8ekOn49KOM/EEp2ojvQ4j+I6dp6eb3dP/F/Tv/83uE/vitEZo1x6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DQG9QMgd4T+SFA2wkZLhPzpvnPN5mqU/sWJUgWHwuj9p7SP57HLkPwdcrpgKFdQ/SGdmAFoV7D9OBUFDn5LnPwl8cTt4CeU/8Znawk3f5T8/LJs75wjbPyHJIYszt9c/UyJ0nA+h4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FXJnSYFl4D/hb5i9gKjhP3mqi1voIqE/IFuEpRAquz/6jkrNMX3jP+IQArOkWtY/W0IEbV1z7T95kvcjSTToPxpIM0lMBOU/c1qwMZb05D8F0vqSas/bPx4ypMl+v9g/n522Tz4k4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y5ARSTIK3j+sv0J4y97hPwWPYyqpUpw/MyxhUrGcyD9n8xn8N8jaP3AAxZBXcdk/3ql3sVod5z9jqYWbw5vmP/Yf59lCOuY/ZHxKfgH16D/J6kQjfbDdP7j2GM7VEOQ/Cc3hkPqe5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G+SBlCyn3j/qAK4ysKroP1wJfAvn5a8/BRF0oNtTzj+vibrrfhjbPy6dYF6lm9k/KlYTzvms2D+N/mH0EaXKP798X6/0fuM/AiLQYWnP4T9bHnOzhe7gP0ZWaqFIf9Q/iYNzZQCk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OR1QdgsC2z/wu8qZZznhP18SfpygbKI/ekWJEJFrrD8nfyOR4CLbP2t5LUZdd9g/HqCBojIV2D8RqWaz3SHdP5yPqrh26eA/EPM0vGzv3j/JxN/beovSPzv7tckQktE/uMWOIH4Z5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4pInJMP+3T+rYq0cHnnnP4vC3ZMLIrc/3NuOpvwpyj97o5UE3U7aP9WFlnb65Ms/gi7svy9D4z8vECyOUQvbPwe2S0S4d9o/TK8B2lpN3T/qXHpDNTfaPzRpXkpyPd4/rPx4dzJX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m//TaVdn3z95/gye0RvoPy4ZZl0upbY//mBkYZEu0T89IS75ZXfRP5axTgPAXdM/yqs54qjZ1z+Jdcxg+QneP8ZfDepAGdw/DeWEpMnk3T+J5/tbyYPbPzx9m28iH9c/pQws8y9G4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7ahCp1i92z8N0avxvkLmPyH501bd/aM/X47/KHwq1j8BGNf1fCTbP5IftQTh4Nw/ZAN3jG3t1j/+g6MPb1bWPw5tJBvRXN4/hlkr/47P4j8Oz69j7b3GP9wd8Ih4a9E/R8oPqlZB4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qmq61Hgb3D+14TAr6L3iPxORtZLz9qU/9qDYirl/3j+ssrLeca7bP+XBCzNSXNo/XCB13Ldy1j+V/YyKDTDaP4RitAsBs9k/TDDLR4kw4z9EmXHCmn/ZP1uGTnG5FNM/1tY+6tH53j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zidFTztD3D9Qep52u0LgP5hjxMgb55I/KO0/spuU1j8AHlsQoRngP5S0e+TPzt8/9l45UPGD2z8laxeAOhfRP5KAZuijMeU/bUwAGvPp4z9z1/nBWaDPP1/lgWyb8Nk/E6uWlBZO3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zlJtgC6G2T8gVHuwFbblPyZeMVpX1cQ/bTikvqndpj+BrrMdMWjcPxNWb2AVB94/HCDymeQA3T9wEl7fXdjYP0G0jcB/WeA/FT8AH7rb2z/MvlTU0/DTPy6An4aWu8w/VEHdZKGh5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lTaNTBV+3T/mKhiZCxDiP1PhlfGguZM/HBdTy/Neyz8iW2VE3x/hPxPMWtaz3t0/R7GfGztU2j97H7vvhuPJP8+D6Se7c90/ldMIUiuJ1j96JtwleFDgPxbgKem81OA/mP9rSLQB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3zYKrqk43T/c74XsHHbiPz2EJ+s3gbA/Ncsg0Nal1z+jWEA/oZ/mP+9bb1/V3t4/bfTL71Ve2D987qsVyPrEPxijA3qqUt4/JfmW3QUs2T+45lQ/HgTgPwntr6O7MeA/3EsY4eCD3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wyi5zDtG3D9hqB+iY+riP/ZbcKAkm7Y/aUA81f7NrT8hLWUD+KDhP7wCKjwhXt8/2WlbFdZU3j8tEXmpqIffPxlkNVgN7ts/V7J+ULnV3j9dWLnXUQPPP96P5ZzU1tI/8YxySlOV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WxepBZPw4D/dnI3bqULlP62FeSVMBLA/SyfRMaJuwD97/W3BrOvhP6Prbt69hd8/jjUI8LTH4z8gMJYaRM/WP3T++YBLFOA/+CA/M/Vc1z//2VJkWJHUPznb7m395dA/EDWMCbRI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ii40lJ6j2z8G9KYXvYLmP/+mfTyOHa4/CZkh5N4r0D/tz7AV7z7rPzHP3/rS2+Y/ye8Vl4QT5D8xs3Pc407dP/nia2L6ZdY/bk8LWxgy2D/ArXbS4cjVP7edTUOlydE/uN4nD2SI4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tg1peHTh3D/x2Qq1zFniP5/zWgUQYaA/jjliqjH7qj8qe1ns9snbP3F/hEgEHMA/lWFIy5z/3j+tHq/4FWrdP0xvSQBpg9o/BCWYwFGl3j/s0ThEIQPiP+vnnppO2ug/RJtC3R4w6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dSXS5vFC3D9YMPkFX7vjP+YM4XtT3Z8/W3UsyqK1vz/G3Paym+DdP9v7cQef9OM/PAOCCd7Z1z/lNsN4S83MP90MhKH0heM/G8E57GNl1j/4G98EqVXjP7QSZ4S4mtY/xVz+zg7l6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+YASxwEW3j86doteACDgP8+ZValVwrI/YyaEK9a1yT+QCbHXDMDnPxVFw4u55Nw/HAihW6KL0D+gdrnNMN7SP3YG3Y9mFNU/sMUoFrpa3j8jz19dzXfYPxysRX48ENU/ZNq1Y8vX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i9UF+YXM3j/xGpLbIBjhP2QbfLDfaLI/ZXp2/ZBuyj9sdY6n38npP1UTfGinoNw/N63HQdBh2D/rMV12O7jgP0Pi3vWIQds/K9YS9php3z83Le74NETZPx3KMFmtFNE/dRV3pcdn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/THot4u33j8ZmsbIzhviP2wvCExpi7E/f8tMGuKrwD8EpXIC7abZP854z7hwxeE/0rj1Rdig6z/LysbxsU/jP08IFO+329g/1uriXMkq2T+s2taKlV7hP6NaWzJBeeE//4QffQ/U6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FK0eXVxm4D/A5Ltbpe/kP58BwV9fQbQ/2i1QJX/qsT8SrA9P9YTjP4A4Ev0Gs9Q/wZIm1JWz2j81IfbJ5JzZP9lp+qds494/MFVBgh2r1T/+FDuYLbXdP1ktzw4C+dc/2e/mlwrM6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kvM92Irf3T/u6RNPGCfkP23s3d1mWZA/dbKAHcEWyz+bcKLJQ/nePzZJ2DbvFOc/h0BqtosH3j9ouxlYEjvTP/7AcOTIZec//YW5NDxA6T/pHOptUUfhP8ySnYvPR+E/aaenIodV5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ODHj6vYe4D/KC7lYb4vkP3NLNAkP6aY/4YlZaJynoz+Rq4T33MXhP7/dOcnXFts/KCEV58Ch5T9aeUZ3953cPywOJuzzxOg/CbhvmnGj4j80ITbsMmnTPwfqytIY+dc/58UT+omg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SUyQ8IV53z8GOP+a/SXjP5g6QBioKaQ/Wftgbugywz9ainbGiyndP2ZuzI5PLt4/Gia1RbET2D+C6GGNftLXP2190h1gctc/78EsXoRY4T+q2wFF03bQP/gj0QNL89Y/cU2JigC24D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aTOtil7q1D8HX+nDl2zhP7gwQv0rOLU/idJN0MwXvD/27KNWTVXTP3Krg/O2mdY/tg9isBE12D/HoNu9Uo7RP2OJJCaJtuI/45jpZUoc2D/vF210KyrePxSJc73Jlcg/2Nyx/EHF3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0G9WDCrr0T9MDK124wThP42atq6Je74/6IHXGAB9zT9zM62ooSzaPzRZAaq1jt0/x4QWC1cs1z/4Tda7AjTRP1QnOj140N4/9uMsVzXQ1D+28OXYylvjP5vT4Ewgbtg/Omx2f1Wa4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PdMSgMr90j8aSMto1cTfP/JPnJ0RJcE/9sojALIpyj9gvcctBa/SP3GnnxwNVtU/cqWba6HH1T+F85jlX7XVP9m8ELl3od4/5peSz3pm1T+McmgDxmbgP6yc+MorDdc/dEb0oo/S4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kfSJC5Mh5D/tirMuxEDlP08Rj6van7w/G57KXPRUqT/GQfpplpnUPzJmd8m/Mc8/C/oewRts2j+9WqtOKFzVP+XqbdiHtdQ/AwkS+yD80D8O1BavbMriPwqtNDZzpOA/1/dmoka35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fATlvaZK3D+/580jdhzhP4UWFmD3KcY/0nZYxjJ9uD/WDdLNZhvXP2c9wy42DMU/iRmVnYtJ4D8qTbVzJT/XPwhUozP5xdg/Yg0+FoS42T8Al4K2ShjSP6mO6jeSX90/6bRuM8816D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"deJvBUyK3T9GX08u8QnmP8leOaHMKZA/Ol3DDO+rvD8jgKP2csrgP/IKLmMx3uU/RqcATMzYxz8hV1fWbHLEP7O9baO8Xts/qEH8PiS61D+zU61y8PnlPybVkvk+6tc//W5fvKxK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2NgBitEe1D/naC+99TDiP8zk4H0Gzcw/mKoKQ1jrsz/c0Tfc1ifUPyb7WrMpctA/6PU+3wXIzD/bZFrLWYfUP5kztv9h1NM/RCE01D932j8b3zOqeyDaPxQ3WE9fodk/oz0OT5Rm5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xQzaBprj3T9x2F7+VGviP2eTf56Nc7E/Zb0Cf8wR0D80CS8JD0HqPx5Z3LqCbeU/yKU7N0TY3j+qcpX9Lt7YP+tAywb6PtU/TURlzdUQ1T8QImJa1fPjP8KsKIlnweY/Nd+ZjFDS6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CwPB1JbJ3z/NwoZooBHkPw1pYX83Yp0/tQvBALoxtz/PuqyG6sbTP7oLhnAsFdo/EU/jYDaA5z/eM9jzWSHhP7Nh5hNz+eQ/BLNIehqd5T/R9X7KSKHIPyNnA0E11tI/a4feqsy44D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JlWpbHK04T8eWL4A51/jP5/LdqNdndM/GbMoyDAFvD+I2DrEkeLiP8LrJSX21+A/+MCVXZTn2D9TK2Gfv8vKPwlPFjMH0Ng/m2fhlOgA4D/fZ6bu1BPcP6oT20IDu94/L8YBDdne6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bafx3Tfo4D+FMxMMERviP6n8kuUplcs/menhT1uhuz/FCRq5ZZHiP6Wdj5dW3+I/jMVclmUV1z/0oqsvniLQP39maKxiC9M/xOSw0neW4D+Y4nMLUN7cP2/QKX1+GNw/bDXzgwcd7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WYvxVN0K1z9/8JQqw33iP+ILOclruqA/oPaNZ0a6vz8swTzugj/VPzGXuL1+esk/hwNN/mDY3z8VyR3OJKPaP82UKOurX9M/2zK8Iksgyj+nysVAlfTaPyiRhR5uo+I/lhTFMfx61z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TBBnz2sC4z9IeV9UxdjiPw865HDcWsc/HYJzzULswD8CihTAooXsP7eh6jvbf+o/LbII5R/Q4T8jLAo2SrnQPyubkiDM3+g/dqpbKgXo4z+58Vjnrb3iPzwD53CGA9k/OrZdUC5T6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HixnIUra6j9JwM1MaMjkPyJcU4rCoNE/LLzi1bwG0j/ipG0SNQLlPyNybAeFquE/YxHKP6Dj1z+bVABoQ07gP7lFZ9WotOI/ptowAHKo4j91kWePAx/cP9CGi48bC9o/SST+t5lE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MhNyxJ+94z9JXJmGaLzjP+42dLp5xdw/FvBjwRz3oj9xpPk6vbbiPxTJml12feI/qa8nDeI44D9LBl8IDI7LPz/pVuNawOA/mmXMd7hD3z+ZM8mPplnPP8OY0ptfSNY/yF95xueI5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cgfx/ELB4j/YdrRLcnnnP1CMhTkxtsI/tWBiCLGd4z/xKqtMFyzVP130GAxaptU/U9uAy6xJ4z+QQ4pwYarXPwrfoJV+Rt4/1fGO1Hn14T8dUpw27LvjP0bZqj1Nldo/LK+7h0cD3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cvCjXg8L5D/nLnpL0nDkPyOkAHaqHME/SKIVPJ2nyz9/eY+UfnHVP8OiNknzwNk/0dZNXsHc4z9aKrbXk03VPxs90czNJN8/Qd0Rz5nh4T+6o1WQ6t3hP9Yz6RiIK9E/LSUrcUa+3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/o+sazcj4D8f5mzhiE/iPx291HzDiLM/6Rew4BWvrz+kJD4wR/nhP5bOWH4SDOE//M5eD/e61T8SZueJcbPZP56f3hT0BeI/gF5iK4CM1z9oem7dH8nOP+2yYvgXc98/v7wqG2ma5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sNOmokuR3T8r5ocP3OPlP4d5vtpqHJk/0JKjvxNezz/ot/Zk04rbPyR8toWnm9w/IBuqbG6I4z/xsv8uJ5TWP+u5sEX+Nd4/WRI2497w4D8vtVQggdPbP1XPCVTxcNM/fPfv+TEE4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MHU81ZsE3T96gBpe0U/pP3YA58ialpY/SkaVvenC2D8hZOYsWg3ZP+2RTaAovMo/bvnvYMPB5j+MQI9OFQ3UPx3eP/yK5eA/uVxAtIqw1z+lW4fw/DrWP0BPDCt1JN4/UjVUB/3Q4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sv8Fz95/3D/HCkl/21fdP4prcEJdo6Q/Vnww4SxbxT/Z2u2fAirlP5LwsCfKUOM/yjf9HLh81D/64ajcM4/YP9RV8b5kVNs/EZBUWITT4D/oSU3L3WjaPy72rs3LUtM/LvKZU8C/4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IoFWGMCH4j98czsh0W/iP6Kzi4SZ4tQ/UN6miAj71j8OZADvBxPjP+DnLWmxz+A/WhrlRCfO2T91dO4P99PJPxqWjETBQN8/Dw0h5D7R2D8he0FWGGrYP4wNwemV0tM/g+gQS0zK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X4lqkJsk5D9OsGZ4g4rgP4YqpzX7bMM/BabVdFJA1T/iyv6Ab3bgP3C/4hvPktw/4TGpH5Of3T9wapHVK/DhPywVl7PpJ+Q/6fPvkPhe5D/0Gq1MVbPXP1zVqqI9Zt0/TahYJ+TG4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OhgmizaV6D/AN91CgqrhPzivqnpFcdo/hUbgl3osyT+IlSuA0yLiP6UHfGon8do/WUhwK5bR4j91CIhyGprVP1GqoXKO7dw/d6njxDxm2z+Ftlxt+23VP1Fxai2dftI/Qy8hrZGA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8fhRnBrq5z8zZiWe1C3gP7AA2ACGwuQ/LqQGvxpnxT8CSxRgCaHiP74h6htHoN8/Sair2A2w5T8siRD3MYbXPyc5Wgjavd4/w6K5dFKb3D/cXzXKZ7XOP9nRA60kq9E/KXUKD6614z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Rauiooaj5D/lpuYTBlPfPz8n/MR8ht0/haJnzHOjyj+2Y5a2WTjjP6PX5wb6LeA/ltr6JtNW5T+aKreHD4vdP/xnr1t1mt0/zSkpKqIH4D9OObv/eL3UPyfBderR0cw/EAis2MWZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"17xGYIC75T+kQBKjffHhP8Cq0CRrTMU/jWbUNCN40z+cb9FZTv3iP9WcLOUqnOM/SfsB2C/30D/tapM1I2vSP2gQN+Tlaec/VsA2bqm74z98F3Tpln/RP6S/hOGeKNI/FHtKK6Je3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LGUfgVjj5D+uy9TqvmHfP0xHEAoLc8k/RgBMJ5PdwD/GU4a5AnnjP7xL4wPPzOA/8Py4afbZ1j8lAjkHaf3RPxS44P4Xb+c/srR/xJv34j85evyU9kLTP5D4TmKv/b0/lh5CBkOn6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SFX16WMX5D9SjE8/FrfgP4gI+QhtFcw/RtWHWROkxz8hObJ3ew3jPzKGklvPveA/dloz658i1j89yKnCuxPSP1NN7XosMug/UGijuPzs4j9lyrVT9cbVP9ESBiOWI8s/HTMwmpBK5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0yQGKjPz4D/j15AdcqXgP9MLXqDSOLc/rX7w/jqwwz+UaEDYbfHXP1CPYV0U1do/jzxPSRo64z9z5T1Kf5HgP8mK+vwh8tU/qz9wJcn00D+gM0fjh9rXP8ZecLcSPuE/TQB5hvGp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lr1L0olk2j83c39dEqTlP9zZKVfzp8g/ZERLsf+puj87FZxFp4joP97YzBCnr9w/l83UM6UL4z9DSaonfPHYP3jEjltcyeE/NjtGkvzs3z+5mjAHC17RP8T+fNVsFts/xmIMg+L63z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S3o5BG8H4T8pdnJK/hzlP9ftAAYQrrA/hy+vs88lzj+Cw8pSzd/cP3mU6wQ2ZOM/ZBkkECr24D8QK1HTDvDhP2225tbyits/9ZfmdBbu2j8wl/T+c57dP9Mit1g3GNQ/trXNVJxC6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UIMqpFuM3T9ka7SIt9ziP3KyF4Mkd7Y/dejiXMFgxz9zkMsLZt/bP+ecUdRdvds/6ZyUqCBB4j8mRDy/k27gP2U+3CF3Cto/u24TRIw00j/+IsBudrfdP8yIG+hEh8c/D4U09eUv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LvCfNm4d3T+vJDveg77hPyu5qiG486g/iF+lNA9WwT+qc67ldS7iP/oBgZCmquI/sC+NMDak3z+9cq6Bh5DUP+M55l/Pddk/T6UShPC22j+NOSnvZEXBP0nFjS7gfN8/8D5TCz3W4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H62mbdFU3T/xFoicEHffPyEImWBPNX0/Om5RP2oTwj+EIpdgpFzVP5W5/uZhTsQ/A2rnTE0p4j/kElbXMT/eP1FclHwCFOg//hDSJmQK5T+8QM9MVP/iP7fJmFeic9Q/JasAPciA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XRDY3Cve3T97i+zdnR7hP7hYC5I6qs8/RpmG3RDiuj82U6ttNpbpPxGRSjFO/uU/xtrpncAH4D+jLpvjpsXXP8seFQ0XlOI/onOH1AM90j8pbvU1OZTgP9rTBcKD6Nk/3st4vBWE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L4vAcDqz2T8C/sjfuR7lP121TPbviME//9i1PzLBxD+2B5Y0izrkP5LbEhcboeQ/so2zJlK53T9HFaXfgvXVP2MtIXyyYuE/RtgDeO7L5j8cbNIbIQ/dP/1SAenq1dE/oOYPxYeb5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NSfwACNE3D+XF+7AxPXjPxcLElJ+/Kc/OaUWZdyTqj+0Q0CKpZvlP0h5Cxejk+E/RC1IDzpO3D/jDNhE7AvbPzy13T65oug/6dyFpnbN4T8HX4evpqvGPzVRPRFHqtI/zgxsyiHV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JhKiFryF2z9TWV3UdLzjP7emBgtX5as/XdprcQ2M1D8awL60TvnbP0TRu44BUNc/OZhkzUlA5D9E0WvStWrcPw+JqTJCHtI/0pDsYgc+zj/ccOgjcS7gP7qodgWcPtM/Twij8eNC6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hWX+GCtY2z85oQyekLDjP/ZL4UNjhKo/YJsnBs85rT8r0D1Yv4biP9I0OvArEOA//K6efwZG3D+hkbJuyiXQP5TBjcX11eM/qmd/3sL75D96t0oq58S/Px0MiEeYSdU/Mf5gi4wU1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4O594S4T5D/veT5odl/lP9J6ItuipMk/2ESxfrGwzj/igw0CeLniPwAitmy4S+E/qlzhxijB1z/G483k/3nTP0I+J7clD+A/pLPCgYbK4D91vA94sivjP1wzJDXVwto/xGoYcC/N6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2vpFD/+45D/viOfcdHfkP88PpvItKMM/oxZuTXsd3D9gAxl/VendPxixZIM1y+E/qdDijIEv3T9D8lUD1mLbPzBm8uy46OM/hqNcxH302z9AVPH2AnrgPzdYE8LJktk/rTC/dLzI6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l41HkAeJ3j82MX7pteHkP8/VPAwVxr8/fDzfQh+3yz9pdFgwmnDZPxSGwIpsl9w/8bx4EWn84j9GIpBzkNbfP36ihqbu/d4/vaXbgxOb4D91jK2Yi0DUPwq1eCfH4Lk/A15FaZRL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WG9r9FLG2T/I0vew+R/jPxUgu7cQC6A/Q+bGicMWqT8qUo6i7xHlP8I+RPXwC+A/m3gBWabP3j9LmSMBK9/WP43D06iAAOM/a79JB8Zq2j8AWsa6GEPCP5SvercfCtY/1BKJPUhO1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Aq2x5TWD4D90GOOsTJzkP5GJ4BkAf8A/S8EQZZpavz+wuNgNXEzdP1jV4B4xSNk/TO6JvykV2j96+MUpYjXWP3opeHgil9o/+e6s2xPZ4T8Fn47aVZLbP9plY7+bCdM/S1vmMHGL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6yYUfgUH4T95REubHNfkP1JIoGTiQsE/LPns7a2wtz8tMOegs9HVPzPH0pNYo9w/xAVDjJkD4D8fTzWlVTLdP8erZi5tEds/Hkr+YcXt0z/aKk/zBCPgP1lM70up8NA/VtvgPpta4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s9JHAig14D/Es9MGPiziP6GRDABFpbQ/j/Rv8X39wD+jbYQdKfXgP4i33tk06NE/Oiov4v+p3D937HAMFFfUP1rlItR7x9o/DWwa8APl3D/rAzLuUt7SP2GOZlDX7uI/NBAXihg96D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bfh0q4UH3z8eMgiANm3jP13iu898q7E/FCV7Y5G6sT/eBUa2WKDXP5Gy0+SlhMk/U++Da/JR2j9F336TU1vVP0dQ0L6cQt0/4JhVHc012T+OI0xHLoHYP1wuUJmxF9w/RxPOfTxu6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qoEpt0kN3j8FqX1s9CnlP2fN1o1BTa8/DfPuNmgqqj9Fb2u6Ar7iP5aJTrnh9+A/W2LWWtJy3D/DueKwoLjRP6DE083gNOQ/PzwwLf6u5T8Js6W2W7nGP/U0QiCwM98/gD3Vn5RL4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s0QgkOV73T9BPkUKK/7kPxcawMDfdqU/HyRxIaUJsj//jP2QDHXhP2RSpHi77t8/ZSC4xqvh0z8vr4SXA63QP9A3Su8FyOI/f/ub1I475z/rvaoSUOXKP/hFdOAAR9w/1n5k/EyK2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TM8ZJGOT3D9w+ohpLC3kP+BhewLEJqc/z+EdMOaNuD8tvoDGBC7aPwDYG4B0LdY/EN34MPP44T+dvfMxgePcPwvfu6gA5OU/XG6E3A0N5D82V/TR2kHVP/HoCRzjR8g/9kLYEvXD5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CGVWNNq63j+Lg0p03uflP5FBhsQbLqM/LvAYvSh60D8ow5mOMrXlPx8JOyrvZ+U/xnSuZioK6T80pLoHLGrkP1hpt3GqOtc/FZxB/YJv1D+ZbMdNeLvaPy4pl7SwhNc/9nL99/SB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9mm2UUw+2z+mbxkxBALiP9PpGH4nH6o/jjBQ0PesuD8hfddqakvXP+70ybcWU9A/UowZr+Zr1D8MLTkZN/nTP5OABeGY4OE/HSfmMdtE2z/Po0bgWVfHP24cAw/0Dco/xKQPWlGO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8XSzsTpg3D/1Cs5ZS7LmP2v3Iq3TqZE/Qs0dcbiDzT/+SeYaiX7hP2PcWj8cEOE/JY3BpEsb4z+8bJNPKOnXP/6hqoiXVeQ/Yua8TKMQ4j+EjN8+inndP7Do5KZ/zdY/M4Rb/aUR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JeL2OVHI4D/QbIkjuljiP51id3qPLKs/g3uedw4Qrj+vAXAFoZziP+TvfQkCO+c/2DgJRFR15j/aDb1LS3LjP1FrxXSrtuY/kadRoKT+5T/17HHgg0vbP/2BSpbiT9Q/gCsH3OZU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lWz0muTd5D+5kNdhuKnlP8YaSajcmMo/X7YIDT8ryD89tLtvvrPmP0CXVvrcduM/2dQDtG+H5T8n3wjkS/rfPyEYlQrc1eA/k6dnKvXb2T/PZL0a4VrdP1XYlfFZa9s/MQtZV6zk5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"36OB1IxA6D/uQBafm/viPyLE6En+sNg/S1UxBuKErT9OHXc7uvbhP957jHE16ds/0HrqM8dc3j/V+N7cENLSPy2gqReRluc/ALbzjLCU5j976qSNku/XP/leT4J2WeE/wledY95S4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kl2ajcRf5D/UriLpCNrlPzHB4HvxWsk//TX63ZRDyz8lwVWagRThPwOfK+g7s+A/3fNjbx/j4T8p42/afqPgP7CL2MUert4/HRVsDmcQ3D8VOsAecJfXP6rP0+WrQM8/tG+q1BF35j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lDXCfjP63T81+kpIlM7iP/4snoHGPKc/2fq17a7Pxz/zhVyrofvXP57utQnQC9k/QVZmjqUc1T96Uvtq1lvUP91gshj2q+M/lu15+it14z8tsgLz7TfaPz7/Qbkff9E/uMcPNjlS5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UdrVEMx12j/WDNoeCIThPzOJrZ8cjaE/Rt814+hKvj9Ul/rHAyDdP3jYjfL7o9s/umC5oJOz2T+B32U+UZPaP4jTHRycd+I/l+yzbX6S4T+uG5kYzfDVP1ctvMQjLtY/Zmm+O7AB1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LGw4yJNl4T9Ye8FWpczlP/5S2x9ED8U/78n63QpLvD+Kvezl0S7kP3qU0HoLkOA/XS8RPuvZ3T8E0d0fe6rSP12RHUxCEdY/n1jwcMYd0D9sKQ4CdsXQP5QnZn/3SNE/DFwgrKZd6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VkIMSSX+4D+30tlivbTiP7HVPPodYbc/ETsnIHAjuD9H1DmWTGLgPwpifujclN0/lUoY+3wN4D8SHS51Fg7hP8N7KyEADds/c8ADC4CE3j/oZeAipHbOP88WIFZvT9A/APt3EFs80T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"25XUQdby2D/piqLt1HnkP2fQYCMHG6w/rwNxxi0Lrj96p6wax2DgP9eLcqslMNY/K2KC/1Iq2D9Cpl0l2CPRP4JObByTWdw/Bjd6GKIF1T9wcyQas4ThP4FqrCUZEtE/x5avR6gy4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bwSW9IOq3D/0OX4BxEviP3MyJJ3R+qU/BojT3EXGwz/M5R1JPxLiPxpJILCOA9A/6b1i53k45D9aE0kb9BvePwiEW3BvJeQ/YIN4N4W25j8sSPXumFPZP6zZP4AbUOQ/6S4HzLiT5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"62XPI+Rm2z/rxdqTzMXiP51SBc+ip3A/nAy7j43OpD/UvDEhdE7QP+lCgU/SmtM/HcmpsRUf4z/K8aGyWPjTP/fsAX5rQOE/MeBZdEV14T+uzngnot/jP/bYLNQL8dU/xdTP4LSW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iHcMlCEL2z/SS2AW7pLkPzybw20NLZA/uYIUGCZvtD+dwJZ9Z3HUP1A36DkzgNA/kY/8NdA11D9HT4ZmlibdPzULZ5tn4eU/OCn8BdBg4j+bQEdWhGjgP77oUOU7wts/J3LFWpym5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IxWVh1Zt2j9ECZHBrgriP8RUi+Cw9bs/JKC+VJBjuT8D7vmVp4nQP44Is20G2ck/8NfQARJa3T8U+QkvZQbWPwrFgk3ByeI/Fj5yL6F83z/Y+uwT3jfhPzfyoWZXJdo/9U1+5C586D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E3cSmnyQ2T9peWxT8XbiP0q3UKXSx7I/HfeP1KVguT/wFD3CcU/JP6VEKCpeUMg/4cQKoZtp3z/AOHQCsefRP2DlndmMSeU/+AACrehT4T85Wr1UOdTiP9YvqVHyadg/phHTz+hL5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3x+IXr0s3D+0aX9KPnTgPxF2yhacyKg/DwVoOI9/wz/brAFcCLTDP5DrZHm1OMo/0KpPDJid1j8Iy35GxQbYPwObAaleEeE/QkId2gKY5D+vsKGwybPZP4E1c0Ifkdo/nAsr6R9n5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/NZek06j3T/8x9V0R8HkP1lpfSB2Wsg/5FaizuZgwj+2fwYPcjzkP08PLGlTDOA/hwbfEs1Z4T/ZwF1NeLHhP2EPpHjef9w/m65ghT8t4D+xgt2Zw0LZP5Dq6Kqpi+E/DrX8Eqon5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dSkxBOUr1z/RNrg6JonjPyrONtZ1cL8/PoW3BSkItT/wAu5/e7viP6z8uS+gY+A/hEHrQIQE5D+l4xOOoRzgP1TS81+AQt4/YvI6+8N/1j9chRHeipzcPwEerz2ZvdM/BuSkOUr+5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nOFHqrH63T+l6rMDFfHgPyu7U8kdJac/0djrXPWBxD/utakoroLZP68XywxJS88/ER7e7NAZ4z/g1rH4vHHaP4esBnMIS9M/PJgIbk2d0T/7lo0NnqDNPzXTSEsVzds/gAttfwHZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EiBnLQyn3D9yHmqxwc7kP8stQ7p2tZY/n/COzky2sD/sacjxEYHaP4MEBauxPd4/0ZthhYyf2j+FISVPJQjbP3ti3yTB+9U/ZkIaDiEJwT8mrQCo0A/iP/2iuBBisNw/Vb8KMwTM5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jrf407mh3j+7g5Y9jTnjP34eIuI/g5U/jKdRwK9wsj9Q+9PS4FHiP4Cq/hHRcuA/kFisuelU4z/SV49xAYnaP8hOxzgtROQ/YYtKanK01D8M1mwj6PrgP/ym0kM73OE/OPHbbe3h6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nmn1DPIc2z8xzAQ63brkP2kbd3ZlSLQ/6yDdfcKezz/uRgeoQifYP4SSNGA6Ecs/iX55LyPz3D+M1BgU3uHXP9XTuw8PKcs/npjD6Wx/1z9vuJ3nNADeP31oNZVHLds/2sCN6MHT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5VompJae3D/VkdUKqcXkP3/qjK5ExKI/CFt/AlKjxD/FMiapRTDhP2ewFttC4eI/aCk6j36B2j9gHbumK3vTP7vnHl3DouI/P8TVqSQF1j/tqBzPKV7RP6MqCTVJbts/BBjMScAt5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VKnt19qX3T94rEDbJP3mP8pfSl6Xipk/w3u6uEfbsz8oHnwvC/7hP7khp+JwbeM/VqwsxeTt4T8ukomrw1beP8EFOyHTAdw/ygJTd9r95j+0O2EDv2i6P8xubRUtXuE/NA0QsC6y3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FyxtgjBP2z+GAQv3qKTmP1TbG8eUyqI/EWUYS+V+sD9Smucx0KrhP+C6dAjsQeQ/QZXfa/Vc4z/nls9EyJ7ZPy/z/RmGsuA//1vqR/nd5T993Khhfva7PwYSOxBRpOA/F4LmOgW22j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sTNtH3ks4D8pMr0ZzVHiPxkB4rxWl6I/uYke62ortD+0l8kHAljhP+dosKqymOA/3kUWbCZd3z/UadUe1hfeP3aHxxbkxOQ/uKVwENxb2z/8Z0uRYUXSP3F2KZAX3sw/DUqvrzQt5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oU/OJrH93j9GykeIGyTkP7b6oMN6ypc/Q7vQ4dPTqz+rpPhltF7bPw7j5Z+zido/14R9zqLh2z9RcXiKkUvbPyJsrn+7DeM/mUwHT25v1j8YSM6f7aLbP4s5+bO0sdQ/KVE4RIsz6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CKLFJxb/2D9Y56zt1PLjP/7eynPunKg//vehO41azD8Kz/UP64XgP/qYQU5nHto/8nvJjGes3j+6gfkMEILUP0Uxa2p2g90/pcmwg5ns4D8iWayh38rZP3DPzoaLj9s/BIYZXy0/5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"efIeYYQH3j9IKGVS133kP4n0ywPS76o/AmKuBJI5qj/+CRVL+p3bP8EhmX3HI9c/hncy1r2A3T8Ca1h1yi/YP2D7W4lwJt8/SwlzU+4v1T8zoTLtJyTVP/ynU87q+tU/NpHPfRXq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dc/FsbpE3j+vRjasDkjiP2Gyvwrh2pU/onZmyZsfyj/PozQYPD7jP1e+LaaFPuM/Cp8czJd74T8zuHX954TbP/puEkclK+U/bJvTfgoL5z8JFrWkJqHZP8vlE/AsxeA/Lk1cLht46T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RU8XNGI53D/3TmGBjezfP1eN3jzBTJo/6iyGKY5nwz/y7eIVBxbhPyEbXPs26eQ/s6fDyS8c4T8OhAXvL4/VP4htYXjsiOQ/GhCPkk593j/umpf44FvRP+i5xuxkmts/fiqgBMxE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dc7v/XuH3z+Rbu59BzziPyMC7Ft2l74/cXWwrFUk2D/69pMqIUzkPwyuErPyON0/5J5iSKBW4D+oxL1e+D/dP98Irv/tpuA/VDrAG6rt4T/eStaHZ9vgP2hLAJRyXNU/AZZPt2yq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zpg/ovvr2j83wG8g8F3iP1q5adKk8pw/ZUZWT8bNxz89ltp5CTHnP4Uxo4FM99c/QIaa91Wq4T9BvLy5ZUvcP6sh7bO1F+U/6+2HZCKA2D+rrT0uzQXgP0r5Mj1MFOA/GmWgUYSs4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q/TEiyr32j/IngToTCniP/BjsG5SQ6M/16o+zXdmyD8Cr4O0hKnlP+LPHz4cfNk/7PLKegD54T+6ixjVu0bbP5JoSFcv+eQ/LwkKaE2l1z9l+Iu/ZEreP5oU8I725N0/VgP7pbzB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hQS3tzwl4D9kFsdPi1jlPwR12mjWZac/yfAwly/Xwj9fOcWfX77ZPxP5LsGjQN0/cSLby/Ih4T9KvaXzsOjSPwE0J45YC9k/H2vJ1+pV5j8tlKLR4ALcPw0PsvLIe94/JAuZD7Ff5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r+9BOz5s3z9pxPwfH8jkPyNhSOjJ8bY/knX7ij52nz9nopV+9zrhP0GvSFsfN9I/Yuu0F7e43z+6qkRijCzjPxuSR79pPuU/1vJFmdj71z8u8RRjmz3YP8uC1kwTouM/w0i/I2eU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PaH9N22t2j8kR7LuPgXlP+5UHRh8EJQ/Liw+UVb6wj9a9YcWIdzHP4JO1atKBM8/AQLfuR1b4D84IZ3RISXeP00qAHwnndM/A9Pxt6m/3D/P4hD8YRPlP03OxyVWf9o/va0WmCpH6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZaJWQC6P3T9yVf85DnLiP62MUY1iqqY/yD6IoRU/qD8CVkeM+fPgPzEGuyoP/NQ/chXDz8K54j99vyEhS4/bPzqHy9dcUt8/qlYktIn50j9n6ZrYTnC7P2NCs1Iej9g/HMmubNIV3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K7GxqiPk3T9X9RjTHS/mP6VZizEY4aA/C5Wd+udfsj9e6DC+lMPhP1NAa93B1t4/eA3bluLc4z/Y+zL3H+fhP2oK0G7naeA/glEe8LE64T98XvB/m1nQP7mDFOz/R9k/lQXQm9Fp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V3cFIE/g3j8GDLq7tMHgP9B/lymF5qA/MAAI4ZTDyj/dm8jIQp7gP1L7Hd+6j+I/v/6FNAS05D8f7999cNrcP3XHTJdsQOQ/JEFEj+Zm4j+syyb6DkTiP/AQyUDRBNs/fpYHpuFn6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jm7S+fBl2z+/XFH6QlnfP3ZTUS/uSKg/KFKOwDLFzj+2B1WOslPcPyBmUtqMENc/R07jOVfX3z9JURpoDULZP92cIwaO6uY/lihHInSc4z8xGcXHxQrmP2pttroGe9w/dIaspwrC4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UbjI75Xk4j+mPyfAmyTkP8B6feIfssw/w0ODDdn9tz9a2P11db7jP1YKwnCb4uI/FOW1QPPn4T/5OSB6WKPfP8PIsc1EW9g/G4lD61Lw3j9lCjTUb6TGPxE/FzqfUdY/VC13NYUf3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DMwxYqnf4j9re9nd/obkPyQfyFvHGNA/bt+R/aLZsj+AGgxfRRLkP9l+4QHxuOE/QBtODgxK4T/RMkP+v3HgP9bjiUbZWNk/sMcNnKJv3T+YDGiPjMnAPwlJsqWBqdc/rlk4HJhQ3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2i0/6PPn3j/qCmMSZZ3kP99A/ScGAno/W+3Gtd+fxz8IwkV7NuLUP+gSIsDRwNg/El/DqK465D/UQdfksOnjP9FxFQeE9+M/cREr7F3n3z9a5FuQ34beP7GB8sBdQdM/A9bBSl8m5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AeEHlAGS2j/s3D8TNWDkPyusQM1T98E/cjaeVPth2j+2z7kcvc3hPx13GTkTB9s/hA2wbQLv5D+diWHnyGTYPx9KdwLfVeM/gkqQCJ8o4D+/TSlpX+nTP3OBBiqVJ9c/YziPRtH54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eK6Y8Vm93D/RD/h0nhLhP1Cy5OFHWZw/hncNcKRNxT8oHnwvC/7hP5zytarM4uI/sVpcHT992z/e+8lhAn7ePzIJMb4aYts/Bka8ogRd3D9X7pl+kwzWP8IgDWhEn94/zLKcqfIT6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Idc4gptp3T/qks1zxzPaPzCGWqyF7pA/qElLf12Y3T9QAZX6epLfP8teoYCuC9g/zYUspRsv3z80XR1D9djTP7SINZ2Q1OM/KuXpDMSB4T8dMDaD2cngPzuMVp+hTd4/Ev07SlN25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+9RvN+iN2z9Z7ljshEDiP/c+W2VboJU/An070/IZzT/xXupo5x3SPxxb1phU89k/Ccpi+7Z23D8lvsAGVwDgP+6Zd40rHOE/lsyQ9GhU2T894NQFIL3DP4BuGP/kNcM/yngChwwZ2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HMqxSLYp3j80NquPwA/kP0/8Z4SF1q0/cJwE9MTHsz8gr6mCAFrlP5aoXzeHtuk/eldGghlF3T/m09WPAGTfP72GebDYauM/lLYkNCkp3j8ZLjO6VmveP006aBPfIOk/awz+J9yM6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D5u3IcOl3T/75pBqXS7kP/nX90VSF7A/Dkj1QW2Rwj+d1a2yA+nkP9xGuYR0mN4/5Otod4UF3j+27z2I8bDPPxEi9ylBTt0/WPOvITHu4D+EA6xfTCzjPzjKz/eKndU/SaEpDX4U6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HOBGhiN23D/CTb4AbnDmP10vxyNPtoA/LfhiH8ujpT8WwhtV/m7MPyWd6ZDKPtM/pjWynfTr5T8f0zZhmYrkP5VyI1KtGus/gusJdl4v5T/XFjgX//vUP1LoIJM+yuA//BTtYrlP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QCQZcz8j4D/nj1ak4p/lP0E99aJHWIw/7DiBGVNKpj/KuX5BaqTSP8s2hqyl0dI/m6ApsB465T8qrZLpt4/jPzkTh76pBew/LlcmCAbA5D8c80qGgUfVP5/S0X6mEN8/ss60S2sU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4DLiDLwh2j8FYwKxVkbjP0YJkPPPZ7g/EInKlU/upj+SHbqPPfDjP9WcLOUqnNM/vuyzc7Sd4j+BLei1otnlP9EmpBOq298/XKpw/ZBm4T/17ygOecvgP8eyo0P3IN0/bgQZvwPs5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ArJ7T4FJ1z8cAi6kSFDkP33mijUCmME/yPGiOXHUwT9O96xYbNLdP1a5uAidCNs/Tl/Q7FHP4T/Y9iA5wb/bP6VEyLdT0eQ/588vZP6L4T8gt8BCoxThPzIzLKIZEOM/Wu5qCj846T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bEiO8lKR2D/mXitRVgbkPxKWwGTaWsM/D4sScm1bwT/R7WMLY9rbP91GnvpJxNs/D1ZP19l94T//uScIc/LXP4yVPVyxnuQ/4QbqH4Lw3z9cBubtxJ3hP6jLCJqIJuQ/0js5l1nm6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g0wfdc2S2D+QLOQi3/HiPwQn7iakvqk/fcE14HIWtT8mvUId+p3aP5OuMMeB9dg/d1qdl+3X4D+NuCtQsJXRP8HY1018peU/PiqRt+rA5j89wZF+ernWP+iNUoVudOI/1xj0uFcq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OTlGmu1m3T8+mN0SmSDlP+OLxBb0mLY/gMcsHj95oD8Bh8JOhp3TP1QIlP7EMtQ/1kAZvRJA3j/BkGNRKAPdPzQwhliY7OM/Q9pBamQw4T+rV1Jd0dDVP1BKBv+hSuA/6hurrHtb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yC/SbgK42j8ZysZaPenjPzHsWlQKoMI/1vMr4gBqoz9NtkON+6XUPwqU/sQylNA/w03rq67W4D/m9vBhsevTP9Nd9gbeDeI/7UUUWM1N4T+EkXWLLzPVP2Dulc9UXeE/nCiX56Ym5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0sTkIRbO3T+9HR02QVzjPy6xOOvVPI4/uvltl78Qvj92jm5rtmnbP/QUXVcp+90/WllCNHtI4D/eA47mRLzUP8oPRRx5Quc/avPLKTjy4D8ckE3tH3LaP02V1kAXr9o/iYAuse6U2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KuABfQQ+3j8/24I3ELfjP+aWUxBXX2U/ctFYRWMnuT8VZkwVfurWP95ixhDeA9o/qVUEGhEE4z8XkggTc47WP+cTi0nE1eg/VZb4iogs4T8TUK8bEG7YPzSbUCs1qeA/AVRcDr/12z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PtLyfJMw3j/3ElaNLpTiP+A2Ad/D64E/CzUDITMzwT/L1sc7PdveP3rH4R2ggdo/ozlDCZaW3D+wHFlpvm3SP7KehGkjjuY/rUAurCn83j/UPIsJmA7YP0uDSYrTEt0/o3DG8I6W2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OQqs3usg3j9oPIDwJCLiP77LNKSdv48/4/FQ8AkYuj88r35GGbbeP/GQJ8JrW9k/irThehRT3z8GwqyZcL7VPz2EKK/OeOQ/0FcpE0fl3D+HIzP0ruTTP57ZNXPzN9s/rOfhs8JZ2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RAcfOins2D8oTJKbn4niP3BYiaaTaLE/vMLqOXaotD+9tZ0c4NfjPxSfhuvDfN4/xJ2D7/8G4D8B52ZW4cjYP+CMT5yfsug/D08JehXw4D8CXDWCExDVP8OqTAjFGdI/OhxxzOfs1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZEXvYVkD3D8VLuH4gablP/81OMWcG6s/2l/NQUsBuT+vSBB6NQXaP7hWAsIuotQ/SdxuCEQt1j/Zd6Q4HQzZP/9mwORGotg/tXz4uWiv2j8rX0WlsnnRP+IcznAgQ9Y/UrUC6xo05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SBgY/hwv2j9WePptLbjiPyFTyz1RSqM/MRq2dho+qz+A+a/n6mThP5qpd7Cazc4/+k7PBqmm2j/ecMntJWvZPzLmVs/4FNw/zp+4NIpn3j9bRIVPj0HQP7VgL+GuAts/0Q46eVf14T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fenIPiiL3T+CMVwvUzvjP30Nza+pF6k/HcMADhRtpT/i2YlpIsLcP/AnpUZWnNQ/JW2cMMkO4D8/uR9E7q/ZP0LI8Z8yit0/CpjK34hu1T8/bAdn+NPTP8h1+lxzAdQ/uO1DKQPL3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6x1WxIRb2T/hOMuwG0XkP6V4RzAWzbA/uukdHdG/sD8OpJSxIKjgP4AXCSHg7NI/OvglT6n84T+M4XalLEDgP61fO0J1p9k/uw/ByznRwj9bQVfMzsrOP9z5+6+tyNk/9oapmJl32T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QUUkSo5e4D8SIFIEspPlP4ReV4GBc7Q/mLMeEJJ2vT9Acguzzo/gP196mN1AieE/P4TEbHoU5D+Vt/g51x7gP8gS7zIqBdQ/g41JcMsY3D+Hk91UFHbbP1uVHOsWDtw/QwDn6lzK6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g5h4V0ZF3D+ZkJvFP9PkPx54tOYbz5c/Cnt/qMk9vT/YnR03Ld3hP1mU4x9+ldk/OzLEsSGr4z/Vh8nhu/zeP3RWNZ0ajuo/Wt5AR+hO4T9Wo+FWTT7aPyxxCuvTItk/k96RmCin5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8xShgJ9c3T9n9LzTUZbkP14ahlaHRZM/itM6BGFPwj8wh8YojxHaP4x0OJsvLNY/hRh21ISB5T8Jkqvnw9/cP0A25H3C998/8xS+RXna5D9LknqqJg3IP3QLkvKOzeE/99bFobp33j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9IW/4km93D9dfvYt/c/fP/Oc80ry26g/PWRhXj6nxT9CleD5ivLgPweg/qcoGd4/WI0vSatu3D+Qxb3r+v7fP/AMC1lTAeE/cWucZfHJ1z/Edl4x1irZP4YsRhcOjds/TzASieCA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+UyFnDA13D8U8bMq0QnnP/01Bl3oDK0/KcgWAqrSuT+0JBBxrOrZP7maN0ci0ts//7WKhFFc5D+cqqQQrNTSP1w1x65fcd0/+0M500FN2D9jCMwKi2HgP+O2RgyTJOI/03AFWRKq6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bcQ3Jkd33j8DSnZM/0vjPzKczKdnRuA/OD59HMrqwj/fRd4R1NDkP4GBN+1ecuE/R9JRbJiF1D/MNxz+EATbP/RLqFDQbd0//vlrv4hm3D8s5VxWmWLiPwjDZqQdxeU/Aqp3DGGo6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uB9T5IDc2z+AM4D0WMTkP+ODC8F9VqE/gRWin660uT+YsW0ZURjbP3WgPcbTJN8/UH71qGk84D8zVebAcR3fPyErcqBHe+Y/2fmMGwiu1z8LN1WeXV/RP5LjcWx+mcM/B8ZkbquJ0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y/2fzVUU3T/w7uoUrSPjP5GHnuMzQXk/Ud79HnUXxD+9qQ8ChITaP+YqMOtmFOA/2i5wndaN5D/tSuaC//3fPyMhWJ9jj+Y/QcpTYEvB5T99dPHRpELJPzuczvan4cE/bKtTrrN04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FHYQUJU62j/Nth5Zv17iP6yHbibA4cY/7BysRDh1sD9N5D81gInkP5ZGdObXEds/7bvvmxR/3T9sG4TQYw7RP5RLPL69eeE/CBJ9Ys9H3T/9d8Hbw5PcP4nQU6Dp+eI//ufGwEIt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CH5bsm603z/edST8L0PnPx1KzSkSTqM/xYGhCFsvxD/DtG7BsITkPwJCBtP0wOI/uIx88yQE6T9cZkCxihXmPytTTW+QJOY/2M36uyDd5j9RsOHJScziP4HErBKATNA/c57OkBRC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ervc2lJ3z+Af5SCA+rjP6RrjsIoMKo/KSmeD/M2sT82n7lNvnXiP93Y55rRg98/MY2We2st5D93/78t6WXePwpIwH6TCuU/d40/b24E5j/K1FUm3dncP1S1hNTSw9M/2SFPuJ0+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/uQxADwl2z/0yrzTbdjgP8R6O4aBeaQ/oZVJ/2tJ0D8r2QuyOi3hPw7mmPNvYN8/v5Yxpe3izj99msUQr4a5P1PrWWyPbuQ/45ouGsKB6j+4zSVqVKTVPyk+D7oQJuM/p4VNhj214z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FXBlgP811z+EzH3xVariP2mzPwedbNs/TGLixfnGwD9ewqsagiHlP0iHOqyXh+M/RGWnm74n5T/XBBr14KrhP9lP3F+vZuM/EqZrL92c2j+VrRbfIVXiP/WsLeiHcto/bztmlnfo6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mUmI2Yrw3z+6UPTrfr/kP+hyljzigqg/6gQZWHfNoz/nw4R/L97kP1ci3cCxwOA/+zV9r8Ybyj+G7/ev+SPCP1MZ1aXcMts/KnANRJQ63z8bULYZJvjUP2KeQNlxX+I/BKoKF2QD5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ai1z3iAq1z9pxvoupKDjP+YaL8l5YLg/3zs0jt9v0z8cvp4hFc/jP3JRBA2r8+Y/fH1bqgJw1T/a95Z1y9/DP4uVnmO87+c/BRX/nx+Y5D8QzemXvCDZP+tQHhpd/NY/sqMPv68q6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vNl8LBp+3z/FD4mAJt7lPxVbwSxwcr4/zDcn4qo/qj/mOYAjF8bmP5GnmZwb2+I/Y4LKfIP9zz+t7bRvw/zFP/EduCLS1uU/jXcmEH+G5D+nW5lFZk3eP5ikw7FeVt8/E+waz0gD5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q+BEhFr03D8nZHL1uHDiP4gJ8yonubk/2IHSyc6oxD8rmYO6SWriPwAm3rxggeQ/iKyoYEIk3z/RRdbG63zYP4oXjSvRU+I/e7XM5pQU5T/WLRF4TSvhP0WD182dUeI/0n+OaK6R6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kb/p9AtN2T/gJPtc9a/nPzM/XSKTtKk/37sXG6iOwT9ZuQI4LSLhP7f3TzfoOeM/15y35qSu4T9SH0t1tl/hP209maLAWd0/K4mi1ZZm5j/MgwCihl7aP2wYKDgvD+A/oRovPp3b5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hguXtyVZ3z984hw+xeLkPxBLhiOyHLA/Aujdj9g6tT8b0CbYHhPjP0uEouIFheE/9il2aFBn5j/p0TalQOHgP7aSxJIlk+Q/cIuajGdO4D8CiUU0p1/iP+Q0irl6E9M/r347ew5O5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J88ZW9+Y3j+DzQ/U2G7jP5jonPlBbLI/3NsNrXyLtj+/HesSMkLkPzcc6cHU3uQ/RleP5yMg4j+GHhqQfnnfP9aT0GnTwNg/1KlyLLuN2T/DqOCFPA/OPxJtK4Vg2Ns/8NU4tZmx5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zBfvs6XT3j+wg6kf3pTkPzgDO6Aq960/ndiyDWQ9tT8GVQCbevzjP9UgR/C9Z+U/PhF6aPZz4T+NQRB0aJTeP/UFMmR2Mdg/I1LXVrTs2T+BKxRw0a/QP1nbxup1z9o/NlvKkKi75j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w647LSWs2j/qAlTOfsPmP75VcQiLsqg/oupP0fwpwz9pWUdfUAjjP2KTXj6YbuM/AEqH2TIu4T80xdOONuPjP3l2j0EWwuA/m/R22By00z81NkKDOnHVPy+yGS2qmd4/gdNiMSl65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lhIyru9U4D9fCXuxU9LjP1wqYn5vqKc/Kep1fvehtz/BFqJTQCPiP2yLXHxOQuQ/fntzwaJP4j+n+JNQB7vfPzHuWxdyzuI/FwE+QJ1J2z/uOfDT+rbUP6y+m6fhYNw/wuyFQzDt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GRWO3Ac93D9Ebc5uep7hP8lHgd86jK4/hqd8OpMOuT/fAB2KoKvdP1Sj5/SvbdQ/haNHTido4T8qMngrNfvbP1gDd+iHOuQ/nH/KpjQV4z/FBzI2p4PcPy6AstB0ht4/PZZ161902z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WxeWmHfW4T87XCsfmdDkPx+Q/JhTKLk/iNFPX1Hpxj9EVWTNwQHhP5ahhJMiquE/xRAJ8xuW4D97jjzpZJ3hPxiuUPQGROY/FplxmE2+4z+/tfJNoq/OP5esQ0CK2dA/3taaQp9E6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WBRyDL6R2z/1Uda9MfLjP7U1XXgV0JA/EVDyIUY8rj880X6EfYHjP4R0mN6AseA/ymIE5rjh3z/ETfl4KBDXP4MPZhpsRuo/0qt8BENc6D/6oqoaAmDXP+A1+PlLZ9U/mKBh0Vpk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l2bIZSgb4z9NWarNHmblPwIXtt1gXdI/qp41sB9CyD81IPBPW+fhPw7gQLGg/OE/dLw16A5v3z84DxN99pncP4PPzHSEFtU/Zf//Mxru1T9etowiho3SP5MmcHnVgt8/h5PvLsiC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YAnye1w15j9HgczSRCPjP8gssxS479I/M1c+Denawz9EsnZlXuLjP9Nrc+NoN90/vWhOcLW04D+DWU3m+rDQP23irV7gbdw/K3ZMmyRy0T/8YE1710jUPzqL6F7Q+ds/lbOHrdAH5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YLGOriXi6D/HbsPq+RPiP2JnSYPeONA/07zV8Zrctz++Jq2hhRbkP07UQ3OZiuE/1GicaKUG3D8GYv55yO7ZP5iIEd97UNI/98+DCZoT1z/MLjU0dbnjP7jE/ZkZKds/7BoNIys74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xW4evNVP1T8RJMxL87TmPy2tNnKTEL0/xNJ0kjLDxj+rvNsmWVXlP2Zn/0+Ua+I/vNjCMfMf4T+MNMczhrHTP7ZF8uD34eE/2Z37P5wf3T9/P6349VXTPxcvTTymxdU/82lFMXOn5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SHQk0mdX2T9emaZXWlPhP9VDp1q4Lb8/yI515hK0yD+r8e9Lgd7dP5/ElHKcgN4/qNZOS7qN0j/sg7nhACXbP8cShz38yt4/SmOwspN84T/92GgAqjjZP5oRbe/niNE/+nKIa5ft3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vPtS0Uo91z8rOuNlhaPiP72yriWrNdE/y6NVYHOqyz/seSRKusjiPxdsdUgvi+Q/FBaxJOES1D8K19gXJW/PP1pWePdwCuY/PsS/H9Qn4j9S9aLrcJHPP94ZsMHiqcg/TOMrdX4s3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"umB/q+wz1z9idwtXqcjjP8BOcTUwcdQ/1cQwrVPjxT+7KNHNIdzbP0A8K8NnCto/zWjwMplY4z+BM0xDagfWP27hgPbHF94/Y+uz1bJu3T/l+IDxu/bLP5q/PjefydA/fXpn3RFu4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vYpWsz0Y2z8x9RIofYrkPwXLTZjKQMw/AosXVCTFpz+A4i9Hd6XhP7OVjdUMs+M/TPtGZz8h4T8OD3lgTR/ZP9jLCq5Zz9U/A81zAYMD3T/PckLxKV3dP6wLgUiUzeA/Pcw8/qQe6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RvUdy2fe3z+tXg0fXKfjP0POVu+KR5g/MU5JlZS4yD/BMhKsWCfjP/ctxfR/2eA/oFtxHDCn2z+KL98XAIHYP7Buoz3lvt8/y0YRy0pV0j/F6qkj35TRP8550nT7Gds/AINgjSwX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KA2JzbW22j+Z/H11o3HkP64OnkSSIbo/Boia9tYDsD8DbuUNY2jjP8+G48M65eA/jBeM/nNF5D8mR6reIIniP/93ssWL8eA/ipl8NmI65T85evyU9kLTP1ieSRYoEss//V3heWYR3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xDQA8HAd4D+816F6o3jhP4bDQX2ombo/1y4pMLcsvz+YAWZm1yvgPwQDA7ITlNc/TqwoQQ8V1D96KBXriCTIP4uMiKNvt9I/JXkggwAR3D8BTy4RAfjfP+6fGBpNceU/vhguuNis5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H8dQ3xCe3z+5798OVtDjP0fyWpesubM/Ajq3OvwKwD9KKv/VlIjhPyVML0f7Ytg/VHuCpZnj1D/jDiPr+qDTP7ehZG4fWdo/8gUFv+t62j+LZhX3JXDePz0+eDmQNOU/kASY34t65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Azv9ZmL02z+LS5e+0R/gP+3Tj/krb9c/Mm2uL0JPsD8fXHPBSmflP6n+zpecvdc/dXPk/SKx3z8YUiGrbDHQP7as6cgF+dE/ON2Q0RHF2D+dAxsDnSbhP+q03EcmPug/ScyAkVCb5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M1vrI//I3T91ekyupSfhP4acegRJ4NI/cqgI44igvT/6R13nnFvlPxafNU1EANY/tFOseMHL4D9TnWUJlxvSP2gWsyNNJdQ//JgIrawz1j+veqJ0khvkP3j6lVGcNOc/LIlJulUG5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vv6Jyh+c5D/URwa+SnHkPwS1LE+7078/o4YylvOfvT+ab71cYfTUP8PP76m4TtY/FIhgVYyr2z9+/a1F6GXhPzXLZQBSd9s/kKxX8QI53T94R5nLa6nbP/HCOcJ1/ds/aQlUFS7I5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TL/4OYZ54T8jOneR9kXkP7ezpkTqetM/M+UpcfZjyj/lnMlk1+LXP+wthDv6JNA/UXY7vAmw3j9UoZj1zbnMP8O5zNqEG98/eit6gRot2z/9bXGYpvvcP0RFEk071tM/qFwCi8jS5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9ICoZJBq4T8VJ39MgijkP6+AHn3cadc/Ffo3j5EfzD+Pk6XPmmrXP7z3NK29ZdA/BlzK0PYD3j+4Up5ufZfLPx3IISJf8ds/amPH86i42z/f7xMUNy3bPyXoZ1yXRNQ/1YDGJPSA5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U6gk1UWQ4z9xX5lkX83iP9rb+mmddLQ/rwvsep3PvT/yGTWs28rZP1cbe2p4j9o/yINAOOY13j+V7nBVb7/aPx0PlIRqvuE/z6hbOc024D8AQpOeZk7bP/pIbPuBStY/tsEJGcYr3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V5B4lu593z/1MI3BxyzlP+dIFoaD4bw/V4oLoUcRsT9iiqbyKnLYP+aUAPTkks8/oSJqJgpZ4z9g1Zy8oWLYP5DSeZXadeI/KW7t4buO3D91cCyWLkXYPzTNBm8gzto/e1vI0bjY6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R2In+T9C2z/xF/kCTfPiPwMfZ4TJgI4/Hht3kFFrzj/3tIoxCZ3YPzuw9ivZe9c/Z3b4KAPV5T+op45ovN7kP8lqaEDj3Nc/0RViTGmS2j/giEboC9LjPwdYC6Rs++I/EUnLtFuZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6pzf+/cO3z/jwt7NNcvkPxgHW3VK5rM/WlFfn4AEsD+M1/PSEuvFP5EC1HhiUM4/VNBMUVZa5j8OAfOhbrHhP/ovWSeqtOA/zCSWUsjn0T/HinUN3FHkP/BkwC/eoN4/TKh3FPgI6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ncLy53aG2j8eFPZ0dTznP/Bn/kCjG60/5FLWmGoyzz9aygqJpL7aP6tGEeMNT88/6Nta44z64z+U6dGUURXjP61abNf6vtA/tp5vr0Qv4T9ZTWKEyXfgPwHDkrZTJ98/DwyPFijJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gFn4wwaw3D89SXKkp2biP8UffOUHmKU//0k+qFnhuT945pwW1tfbP6CDfOm++ds/O5Ugdy+u5T8BZhKtb/3bPxlJmJHuCNM/74bD53Fv3j9U9oxPH+raPweAGbAQyt8/n1yP3Ec14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sNOVAH3z2z8TjyUAoBbkPwEcRYfOUJw/ctpHjxQmnz89v6311R/dP2me56RRFtc/sTw84U3N4j/Dclo91qLeP2ar34jYf9c/zpPLj4vL2j9MZLaTIJznP9NQy6P4ntk/B007RD0r4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ArJaa+Qx3D//K3R8lZzjP7EkcCkx+Jo/Djhn5VWipD/9pqeowgrOP2tyUqL4atA/+Wo6bnak3j9sfZLnhu7iP+71SiJe5Nw/PmYzNC+n1D+CvOd0ogjUP1npE9ojqs8/OQjsr7co5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IjEffnqq2j8jop6ONHvkP1oRIKp9q5g/1snWAqz7oj9aMCTvz/XUPzkpAl4GOs0/IRWeyguk5j9rxWwqugrgP3ixbK4qqtg/ZGEEgQRK3j8Y+OspeonYPxWiUR58jtA/3ddPIqO35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gONljWb22z9PfXQN4o/jPx5QkvAsU6E/vrjiLKkspT9xt5/SvK/UP5lTEXVlVNA/LrP6pYyM4j/x0/6wswfjP3BPh8H9Bt4//aBNWR5M3T8PssJQw+rXP9OWYll5ldY/R/Rktapt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"44tnnSqK3D+pLE3JY3LkP+unpHqLSpM/Sxu+hg7Poz/Dvkb/NNfXP8v8w5SosMU/+nQh00V74z+NZECXhZfgPyFKAfmxFuI/y/MI5yrL2z+pGSpR0iPTPyVTrVMtXdI/72c5qBUD5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A+K9KXt/3T+sBOL+NS7mP/h2QATxgZU/K/Rn/Gkk2j9STXYxF5TeP8vtN8159NY/3J4Mn/Lm3T+z9ZetlcrUP3rHrIn7JOc/jRQsn5+f6D8dOHGoCvHlP8E4kNIDD+Y/PeyYgGIW6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"igHmij953D9tYdW+3xbjPxjOro7HD5Q/I+G8EhGBoT+SPOYP1AXQPw5UNMm9zNg/hdlT5Mj13D9MrnRtpvzVPxbGmIm/WOI/O+EpAlBs2T8GffklHfPcPyaWmBame9w/MyeUwd8o6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BnuQ5ld93D/OCi/QDwbmPzvh24wlQIY/ApL3w1X/0D9ubjHrAKLZP8sE+arOR9k/rX2TF4by0T9IrlpoKPfSP0hJQwdiCOI/xHCAif5m4j9b3PFpiLLdPx4LU+VhVtg/jFdfasm63T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z3HxN7Dr3D9dkV+PW7njP1jeoZT4F5E/hn76/Uh+uT+YWqYnxXzUPznNKFbXiM4/Qy5Nj2AL4j/6h+aYAObIP4j5oESsTeY/X/WtcMXz4T+BYHGc/zjbP5q6kC84tNU/xWL1LC+o5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SK3ZHMEo4D/QnrZh+jbkP/wWzQ5ABqY/zFko9QDAwD9AN2eoWj/kPxVyl3apRtw/fRs6nPf61T9jg5MUaJDMP+vfF37JNOI/jxO/fn8M4j/vNTKWmkPgP8ymGQ2UVtU/H58qRqnI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dJ97HLF13j9P1efDoeDlP3hfjjzk/Mc/zjn7jALeuj9ptmEpsh/lP8VlVHVnueY/vDA42sas2T+Kbr0LBl7YPxiwgMDzE+c/VkgBPW/L4z8TLqMRDNjdPxequ6OMYN0/uTLh5F5E5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IThLMtFG3j/NIS67u/DiPx3b+nRX5L0/tuw8EScywT9l3NoBne/iP9fzPPF4XeA/FhwQTVEE5T8+47xo02DiP61oe85MidI/X8s7c7bO0z+QPATHLOrWP40GXfVIq9c/kwKL579a5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eGQKXF1o2j/iIaecl/LgP8cwgyVGDbY/Q3GVtBye0j8w21fYsATlP9jw9cVm1+Y/voJZS9f54j8NytgyqxLYPwNBj9J/3uM/UJMAlViu4j+3vE5meAbUP3rEspD5GNY/WFUzZvxE0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hJHxFwAf2D+RID7IAs7fP/BEjNeJubg/uEuomGXo2z+LKi4tK3nlP4prISBLJuM/XKXtVtv74T+KrfT3zrLTP28uIraOA+M/PQwq73fw4z/JV5L/+x3YPwT27xirANE/UzVMcJzh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M1z+D7W81j92PtkLOY7mP1FfL5T+mrE/qAMfn3mRqj9jMBN1llfYP8oW//Hr9NU/YTMUQTa63j90WbywT/fgP/T2kYh8a+I/jliRhoKn2D8wxpAkv1XRP8nW0PpcJNo/vcgJGFe94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YRdsKKep4D+grkhC3JngP8NsvWnwMaE/R8pj1RN5yD9QAZX6epLfP6bi3JVdJt8/F7EMWp115j+dk4CvdCnfP0hXXJkUQ+A/W5SC+31E4T+K/0fL+hTXP80axQ3W09c/sQOJpITH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sKB4GJ4M4T/ClBXxPujlP3IFAR1ThK4/NFrfD2OTtD9wGePI1rvgP+/LApOkUuE/WocVsEqn2z/asAlO7z/LPx/H37ckrd8/Ppv1HtUs3j8fwVHcT2zUP204UcXWl9w/bORAiPbr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5WvIcjRQ4D/K509zLqnlP9nQ6qMVCcw/SuMrJr/Uxj+TZtsF+UToP9j6/AqzleU/r9zHvAqK2D/dsPT8gsTdP10DW8CJMNw/zGORNxd33T99Tp7fCzDWP3dP6/XYP84/+EjH2bSX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uU3rVZvM2z/CK7UR3fbhPzwr+L3JybA/4olbW5zkuj8OOtq2lFrhP8dGeQsXo+M/Bmc141465z9mGX3Rq3XWP/BEU7HYFOo/rmaqicY85z+f+OdZ57/SP4c7nFa8+NM/goe02QwV3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q2edmIIX2j9QsRe9+wXmP0e+X68XnZU/976S8m99tD86tG7+vfrfPw5t35/q3dc/SS1Q+pXO2z/lPN6qqnTZP7CK1WFKNNw/RWXN1RAV1j98YBfz8NziP1gN4h4yt9M/CZn4Wqzz1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UvuFXCsn4j8aJ4Jsa//gP6LdNma3E8U/0D6R9KHnvD/dAw6Nz9HhP4EuXFY6cd4/3AY26NmY6D9B/8jlkDzhPwnI34HG7+E/t97pu11B3T+FfHtJkT3bPwlkuK9Pdds/RP2w9Z0e6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gif5rTr22T9UZkml0kPiP2/A/xuxnJM/aCI/VvHP1D+381s6DJHeP4oGCi60z90/QDWJ9xjMzz/3omw8WbDXP0abO6EWr9c/LPTh8udl2T/NI3ngiknhP8qdGPS4tN8/FHMvfwIp5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jHXzx+rI3z9Y8JjzlqnbP5dMKQNG0b4/Gf+J5U6t1j/9wmDZeCzmP8/dX/gy9+g/UaVz1NVF2D/GoeQxUw7IP3l9TA71h+E/pGC6nWZA2j87ajOfmyLdPyNIvW/RSNY/RKH7YBdv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"53GCGUx23z9/BY0fHgjiP46w1/eY6Lo/S0DKuOt+vz/DII6OsX7jP7qaKiKhR+U/MFnd26zrxT9xgaWZCKrNPxjgcN3zIeI/zEnDn+JN2z/XMVhg4qfZP0Ah+N+zndg/UDoDexbG5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oxoINvP03T8kGLO62zPnP+VMBLr+MKE/y49+Zbz71T9lLu9I+pHgP5tAemcJtdw/1LGEB3mF4D9+IUo97HTQPxyFtXb+jt4/4zrqACGB4T/HUQD6PvncP5Bb1W4FZt8/jGw0CGE85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QM+mS1Y73D9afafQr+TlP6KOACxCkp4/ftQXTGjs0D+uKMJ/Rp/bP2eXQhVCstQ/jfBHcWq02j9wbJMg0v7WP0RJGhiamOY/KAO9jLlr5T938g606cPIP+jtvaHDKdk/I56EJfi45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YtS/XeAE2z8PI4GbN+nlP/iqVgQR5rE/P/3IRxVGpj+3krA/1NDlP96C7sduGuI/8rlCskxN6D/AUEjfJZvgP282x9O/pd4/mYHJORT13z9q/5DTBNHYP5oJe6SGRLU/aBvNqADo1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P8pYUZcW4T8wDq46g73kP6KmTFv0daI/eq3aVGo30T/NzqXakInhP43LITj6Td8/OFFzbwk75j8VV/9ez03gP0lWLzH87OE/OdAGdavtzD9kWSGP4dziP2UOg78kn9U/q40Sk5OY4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KrKgh+8f3j9W43DxjkLkPyB3uOAw65o/ztdK6hPU2D/gtEu3jhfdP9euMixISeA/xjgsgtji5T9yIBP0JsfgP2zCYLln0uE/6TCiPimbwz83UzaUes7gP9v4jW/cdNc/gfk5Xbcs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zz4cbqV02z8POkgCyxPjPymp7GekuKE/NylyRcv2pD8sSuZbL1fYP3hC10il/cw/9+d9NU6m2z+ByofPFvPZP5u/tsW7zts/rpBB2XQb5T8BODEG4KOzPwbSIdSc88w/68zGX6BK3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sXXPgYQL3T9HxjPVlrLnPwP/yzC1QoM/DtqNMW5zzj/pxg9lX3bWP3izkFox0uA/BnjM7KvC5j/EB66DWoXgP+SDdvB5nuQ/O081ATAv0z9AApViQQvfP1FEEEsmd9Y/GTt6YQWh4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z/9zNeIu4D9uONXxRTfnP1oOlhS43as/Zhic947iwT8rL4DnH//bP6NGZAHeSeM/Bu+HB0+g5j/ind6Zu0rfP1+GswTeDuY/Fg/2XY0v4D/FEYJ5xBvcP5fMHeZ7UNM/gDVdLLlP4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KpktEVCC3T+EqtGvtVjkPyz8uAUXPrw/Kls4cV/Zwz8rPYM4e2zjPw738ylMBtg/aOedEcyS1j9EamUCsmjXP6CggHG9LuE/b0J9ewtt4j9r/35+m77QP5/gv/v89Mo/vmNlChkj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hGF77E231z95RVZtnKPjP3M4tokfUbY/U5ndcVGKpD9GyttytKbdP2L7Gh9CUuE/LmY4pYGR5T9RFGIsT43cPyEm+qF3c+Q/t1wqKjrT4z+SmBydg1/YP6fnLf1xNOA/yJLMCUYD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K+36RI4a4D+8UB3C6EbkP2pFKG5HTpo/OALLv9e9xT9wfmjMgkLXP1rFjryWsNM/VVjadN6u4z/wzcl51lrjPyrE2nIPFuE/2MZ7nFyn4T8j+WU2c3XUP4yQJxpXft0/coRSFsS65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g5tnAfBx1D+wyGEx9VzZP0/Eg1cIlc0/6NDq52fh0j8HReFPSADUPxYNw73oItM/qaDP2YiF2T9KbEcTo5TMP4o212x1ddo/x0sQWqeO0T9yzCsZBh7VP5CMlazOxNc/xOq+vOxA4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QdSokaf34j9h1ehCKSPiP/D253HrM+E/1qIAV1/rxT/7hp7tDifnP+axGNTgiuk/YjZGOczB5z9vYR3Vq6ngP0+3lMIE7uY/RI4vojPk4j9HRvzIBAvhP5Zv1vbdAOA//Vran3yG4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q/yCxhDJ4D8HPt2FgM/nP7mxlJKhC7s/fpFy3XREyT+ovRrmEhbjP9k1ynZCQ9E/y+gJPbeP4j+fDX2oisLiP7t6uu5W3OE/Mww2eGu54T/6eY6lCrvWPw0cWMMKots/W4lCsVCm6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C+yZEJpH3z+Cu376G/rjP3lDdQcG5oM/mfAd/Q9nvz94hNM6qGLgP5UQUiyGQu0/KJJtcm3m4j+IVrUklZ/TPxOT60UrQOU/m/bvpoKv4T9U3u009YbjP0LRZkz5WOE/Laf9ouOT3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6eQjqp7E3j9HAYQQCb/kP6gRFOB3CLY/QqE17h2arD/QGB6mVUPhP3WFR3NVEdM/7tp+BHqh5j8b2znZIDvjP/8ClRSP1N4//MpM3ahW4j+E01vVjlPcP6Vw2chkxd0/yGLl/m3J6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N/WsvacC3T+n0uqxzYHjP4R9rFnNYYk/RCWmRpfasz+mwasW6b7ZP0MG+6Ns8d8/HohW4mOh5T8YtKK/0I7gP2zT8m9kCt8/bOx4HhV30z/DDFEtgUbYPxOz6M6dZMw/epxzkF+/2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MV5KwlfY3j9R+zYj7drkP3uGz/mL5qM/KsXuZA6R0z9JkN/HrA/jP1A5gxTcP+A/lSqTaiSH5D82vpXjWLbdPzBvfn55LeI/fqqDu/+04T/I9mEw4W/HP5Ykga5UEMk/Fg078FzR4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0PZLdHvH3T9Sk7HrFTXiP4F19eeHX7M/7Kdwk0wryj8yCRsMIjjcP7BF7ER5reM/k6RJ5Usl4T/FVx315V7jP3ykXJGsmOY/I+2tu6193z/6TSADgHrUP7B6e4IyT9U/fsIy98uj2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"whEqzKWE3j9jDZ8YH8LkP/FOb6GK0pU/MOOL+PZVtz/NWbCBT7LkPziU6Z9vENw/5kqi5MW65T9PkqGu9rXiPyU6GI2h8OU/swDcMAu34D8g2Co9npvQP6YZmBjkLdM/ZyR2sC9f5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L3HMFdp94D/VWGzW6RnkP6qdt9oT6sA/50dLrHTCwT9j4KANJK3iP7f7d4eQb+Y/qAJI1Sev3j/qm+a2OFDVP+pF1CF5I+A/8t6D9QrT4j9g78s2567hP6nSuLZOedc/hMpUy11N4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LduL3cFo3z+ad6zsFADdP6W8Hc56rLM/NBbkEeUx0T9TrVjuHo/aP/HSjJiJ4uA/KrKE7/EP4j+1rddv4LPaP8Aqb+Al+9c/8vh239611D/j186iGybMPwgChxtzydQ/qg3JDRLr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X68e7ZgO4D8SQYil2wDbP093qmvqmLw/tEQcmrdF0D/l2q983a3ePwnQNEhV1dk/cLHPnWJW1z9h8aOFTbThP7Sqewsvy9c/Rc1aHsob0D9f5rgCcUHJP7LiyF5HZNk/437HfAxJ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AiCNHdtD1T8qI0SZI1PaP2VDNg4ER64/pezQBFysyj/t4+oPbujgP64M46Jm3dY/Ybqvo1FS2z+GDh+JuH/UP07H3C3s5Ms/kq1NFfjDwD/TaoUf2rbgP3veNFHb3+I/pAb3uuf+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g5RQtlgu4T8iSlp1wWLjP+o7980t+7I/n7JxPihT0j8UqAw2+HvbP5X9d+VTcN0/MtSH2asy4j+F339Dz5jdP8TYS091ZMw/gxnPghN2vj+a6AURDQPYP1LldKA28t0/eKPCBkgv6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eEIT04+R1z9dA6x0f2HfPxAfwlJW/b0/KRUy1RpU0z/HZ1JkvV3nP5CVeMvTWeM/3FL4MHr04D/4D9eZJODcP2Hg57EZsdE/li2m318mxj96MguIRSLSP5C44MDLbto/uKcQe7cg3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4ZOoCISW3j/FVjjkrRXmP97uDft4jos/HI/jE2D+qD+nBRridRrVP/tHbHptbsw/ke9+URFc4j8Se1L7atbbP8Ss0b8o+Oo/m+C+wjIb6j90xeys7GHjPypndf1ql90/11d7KX+e6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WKG9DlAp3T/ibbG2zUflP0COHvr/dno/roSehSTiqz9ASyshUO3YPwi08aeWwdg/DxPPj7i14D/yammTSnTXP/fWwMXXi+o/7JKEeM9Q6j9O6lbvO47cPzV8bItl+N8/NLRCCH5L7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZV2EnfsC3j9Z78lSwbzlP1uMfDdVFYY//RzgucIgtz9VhxwjqgrVPxSkTWdU7tQ/W2kdtDfl2z/7UBWFpc3SP8TdJUgI0es/AAAAAAAA8D8/IPWDTkDdP6+QXgknXuA/iPTXghgf6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bzc/KOaI3T9o5zpEQt7jPyeK5Fp/FoU/1+OK4xk6pD8T2LLvLI7iPwKKtYY4Yts/JWwBXfAG5T97c4fvIVLiP7d0AZvI/OM/6V23SIHc3j9nHH7mLqTXP04MZxL8ZNU/W6Cg+wNQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KJ7+O4Lh3D+Co+65lZPiP7TQ1pc+vcI/CbPWTO/Yyj9tQt9ULO3gP0iK+iTV6N4/Qex1EhYu4D8XF0dNs3HaP4JfXv3XqOQ/GP1HICtl5T8ZgjhujNzJP3Mf1ZW4e9A/EMyQoCRm4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vyxZuD9e3D8FXcLeqAzjP5Cu+yp/ErM/VYLeoIoT0z/qEdvsyvnhP8ckIWJfXuE/+bQmLDtq2T/lPGutaffaPyJkOlTxMOU/CZ0ES9U+6D8kooWqdV/TP3+Fn+UIE9M/uzR5UM3P4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pY7zLgEJ3j9yBZcao9vkP7DxIlUvyc0/RlUkPii1kz+OA1bNcQ3dP9VfjoqdhtI/r1ONZyWj6j/btK83Z1vkP6enJyf+meM/mwfNEo+o2D85h5cHkezXP+WGy7uhndU/CUgA7hJP3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G4NeQigs3D+ahOyDlyfjP/+HQgq11pc/ygYsHWWu1z8WUQzQWDDcPz5N15fDLNs/btYq4dZQ3j/QQKoDD1DfP2tbJZdWe9Y/5sBnFSJQ2z/qAtE02Y7LPw+m0EEmfdQ/SUdKvo105D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OcIfEnH73D/MKiOoSS/pP9bz3ktssJk//wJpwfIE0j+aTdEb6jHePxUmwHK9b+A/Cu4ZPBCk5T8O/m8xdRviP6oX/bYVCOE/WNpz/LsR5T9/X3Xj583XP7SU6vg1S+A/wojz3DGM6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0h/LnI/o3D9sRlQyz8viP2uLW1oDs5I/BC/5llC21T/hEaOOZnrXP/JsJxmKzNA/egig/zTR3j/wKCI0yQbbP1kGXhNgIeI/XFisZEvI1z+q7yN4LCbXP6qDlWNliOI/QTU/jyZ15z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N1ABMSzB2z+uD1KX12ziP9OTpU4zRJU/Jw1nlj0sxj8LqoKCpsbXP2Kc/at5WNo/7qIDivkB1j+Ec02w7mnPP1VOx7d/Cdc/SioD7SMB1D/Vh0Mx3tzTP/OXHZI1etA/0RznJHs43z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jvrIrWr+3D9jgZ+6F3PiPwvlUXovEn0/THnUBmU6vD9JVB3cQgrUP+D94/JzltQ/ZHmqkvHD4D9L27O7FNPWP/Da6m9mI+U/dAezkh5Z4D8XXk1F2AzdP8XS9SOYJeA/+fS3ZHCJ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wrGrbUxZ3T+PE9Ag3LbkP8AF3B7z2Xw/vIKkPkgntD/FS9KnGuzXPxdyVD3TE9A/zeFG2X/d4j9NbkleSaPhP5QNSBEtH+Y/Ir/orvg25j8GYtncOUfYP5WKBVSlSNo/QMtgmix65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"35XQqzz63T/hRLtdqDjkP+fkWIbjDWI/5cjZiHkarT/zAFTSVfrZP1grHStq5NI/BKdN+w0q4j8cIO9XL8PhP2bZs/5Kcuc/SAbqU5ze5T86X3dLsbLaP9WjQQhWHNk/BUHR06yc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D7C4DVRA3D9oB3luLNfjP9AqtVxPZ5s/jHkCKVdRxD9dUDl1q6vaPxRToYIuXNY/PPEZ9dt44D9XLunDyuvPP1VwNk2fot4/F+SYgTFu4D8FV0yKdYThP7hpQ0Rob+I/2Ap9UPt76j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TS6Dy7lO3z/81q2GkhHlPyNocCZpzng/Ny8ux236sD/4WjzzrwTgPw7jyhWJtdc/4Lmu5maM6T+29HnoKM/gPyG1gaAacOc/HV9PrHDU6z8T5mDBK8rjP6eh5S6nT90/89RcUSEN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N2UCHb1b2j9ffSJT7XrkP46Yj0Vhj6k/XQTjdY17oz+kPjEgm6zVP/9iwJDsiNc/sLoDVr4u5D8Nkj2elOzjP5vtijsuwes/ll7eYRbh6j/V9URyz2vhP99L24BAduA/Gg/iGh7A6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uNsUkyoC3D9gv2QyLoXjP1Lo1fGB/cQ/whJWNa/cuz/E1cafqJbnP2pFp6bcJuA/UusSVdMU3T9fRPQTpyXVP/Z8tuQmk+I/fKo5F8FB4j8I531/Pc7ZP3PgAEfcotg/j4cXWszT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B6oEyCKP3T/OUukFFwrlP+LEv2HnBYI/sFygr4/6sT/wRyWJONzaPxl6bsnO1uA/obOeL6PY4T/wXLR+gYXfPyKp681gUeE/ufcWGYRB3T+P2vCReW3XPwEmgXK3ONI/m4NCbE6M4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"flt78q6d3D8uewLeyyDkP6rqaFvtSsQ/Z9/sXvZDpj83Q8WWF0riP87L+q3sg9c/Y+S7fKM14z/ysyKopRngP+7OK67klOM/mH7yEt1C5z9c/B5V3A7WP+yUK/UtQ8w/9v+MUX9i3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T/mFXvZz3j/FQ4Uwn1zlPyeWh2f2HZw/dAWThLchwT+8Dylor7vkPz+5yS2/j+g/pOn4g5ZV4D9AmMIVjTrcPzy2qZ/Gp+M/c0NKyrpQ3D96ORvzODHYP1ztjH9UzN0/s6PR5Iem5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PS/di9v22z+GKb+G3m/lPxsHC5/Br5g/wKbPtRyHvz99CtkWJg3mPx37QalPHOk/oHK5c8W34D9JiBrSUtvfP+qdwzhfOuU/+L8Ac7jj4D9/tz/TkzzUP/z0h1ZTedQ/X6F78A155j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KlLHnaZq3D+hblJxYlfmPxMf24awBM0/lq/eqWUzsj/I2tKG/xrmP5/CZIB1UuQ/gj5+SVYO3T/IT+smdC3UPxe0qVUGP+E/r7Px1IKY5j+7gKB4x67fP2pmGege89o/M3lYZDCT5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"POjAAVPL2T+RfmFZodjhP2g2WPVMA8E/wiIqstdqwj9dFd5C1XjVPz4s3CBGsMU/6E2zJqTe5T/8w+gjSrXdP+GAibRBCN0/LWEnZRpG4T82T4OtbePXP3PMlw/2XtY/wepxI3JZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YDpXhNrY3j8vlQA2CODjP0SvZqSnDKs/Q3QFZcm7uD9WWipfLtPZP7LX/9CrxOE/zBcKeYuZ3D97zg4A/37aPyfcpu06PNI/25B8KN420z+NvL9xkuXkPw6m9tXiEtg/HQrtNXxX5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b0NiPDGo2D/IXOL3qR7kPxuTvdBHJbI/L26gJzKWvz+ZUjdVGHLgP5GZagcn5+A/ZYjcR9d13T8sF2WFHa7bP6AGWQWy9N4/RA09X79Z0z/PkviGssLZP7BITQSYnNo/bBbvGRLS3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hAH6Yqfr0D9/g4e5QRPjP1FSPMRn2uc/zzIX/lyjnT9op0gpJjTaP4idlNcfm88/zHMkre9H4D+shPD7b+jZP3roO5muBN4/qMkfencZ4D+mm3zGQg/DP9iMx+2WPdU/7wytEILf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UmttwzXczz9yLG91pRLmP8Z729RCc8Y/aRa7ZiIayj+5znbEoHHkP0oZacL0cuQ/AnjxCepN4T89t4tCd5TdP6AyBJ1aAOA/JXK37Yy42j8CEIify2DiP2VJY2/k4ds/rIp/1pgm6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0W7Cuk050j9i8I+Fuh7lP032E3dbLtM/lbn1ABppqT8ZlGweekTjPwfsasOSXuQ/V4ZEpZXO4z8GpHQvNN3WP7xsQFWZUOA/dH1RZVWV2j8wJArG5IPMP/LuOK75e9c/hO5NGvUA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3QdpPA2O0j/U45lzMqXjP/xoC6A9EMA/IA34Kekmtz8UijNyCDDbP4B/TLRe9c4/t2eduoJJ4j/bdV5GIAHmP0I1hiND3OM/40fChGy55j+0ojUtAE7ePxfAddeH8+E/tuJnFAJ+6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FJs9cjdM0j8utHrAOQXlPw5CODnq6cQ/CY7PwSiYzD8kT+eNDTrWP7W9SabsJtQ/vNuYdDlV4z/5I6yUXgDXP96BRzkJO+Q/l3iodqQc4z8YDeZrGH/iP1z4Q4UVgOQ/6MnuoIvg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WemS9/Bd1D87Q2+QTFXnP68rWtOTHNM/4w+dx5sxyD/llSsCINTfP7pqo+P0DuE/7eojTVpt5T/B5ypzDw/ZP1b7Y8TIruk/dl9+5V+r5j9YOzwc3ZzfP7OFa2aOY+E/Lo5Fx+ni6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0ryBch+G2D+fmoHVgYziP1fq3uzVwaw/kHzSUSrhsj99aq8IBjbjP7gyOC2iu+E/DObYUzEmwj/YanX9uC7RP+QAqKL4gNk/a0GWH2W+2j/BCvS674vdPwT43uMrc9c/dTa+SlBn4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yxrPtySh3j/ThNIxecbjP9TpzCQZc7E/jEdNdUpgzT/U+QUjrDbjPyQfduY11ds/ttH34l/t4T8YVseU5EzZP67DZhItddM/dMMoWZyX0D8JBITl5j3dP/nza7x0Hc8/DQo1heHB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FpFftX/T3T9ojxYabcXjP10jB2YDHZg/Rhi73/ngrT9ywtL+rALjP10ZgYymCeY/dD9gNAvK3j/S5Ks1ArDXP9SKIfqqu+g/lNQYgxff5z/wfihL7XLNP1LNksMfjN0/68CayTdA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IWPfkIKx3T+ozFHfwD/mP+loTXNgFpQ/dZenxiEzsz/HfJ50CurgP/+oTbeyReI/YQVBxWZb4z+ZjguRL3biP+Gba5ImZ+k/D8fWdnO06T+mQHL+bBfdP8SqheZfetc/j2iPpCaR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qrUk2iWS3z8rTpgESKHjPwcsHZxtPZY/IUpZ2EbtqT8t93YmZrTfPyQYqad6EuA/0tT7yBMH5j8GSlnzPbzbPygrqI6Sg+0/ldGAu3ax7D8AWznJ+6TRPzvecQ0MQs0/u9LExsVt5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gi5tgGUC3z8IS9I9qt7kP17POGH66I4/9Bt2kAkfuT9BV3iV01naP/a6mfceY9w/p80tAPPd4z9mkPGltu7kP50HLIybFeQ/4Ax3nveI2z8jHG75jnbiP05D4WZpUN8/8KMtXEIF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vRfZMdWB3D8nFIysFmrhP06mRCsaMsQ/+MnKSigxzT92F10YngPmPwPyZEJhu+I/zRj8OfhV3T9hmehA0qPMPz8q9MnZo+A/c1gZ05JA3z+CeaBxyZjFPzShzqQB78k/Dy9X0WsB5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jzWiBeM64D8hV6SAuFrkP8Mo5MApaKs/6Xnxo7HspT9YRSvA4f/WP4YFDn/zS9E/ItNKQ++G5D+rGI8SpTjbPy/GQQoKKNE/jV+s9BCf0D8yNUbKIgbiP7UbpDprg+Q/BKXAAefD6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"psfKvfcV2D++x/Ya8RviPxlUy1aFpKo/pRsQhF81xT+lgVDI49nUPxbATI4UENQ/QZ7BUJ524j81FpXPKsPgP4E1lywzCt8/pGPUptpk2j//EAYFAkvdP6+tBPe/iuA/fzMDm3JI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i/yoMk/y2j9EKSdfT8PiP32xx5Nn5sM/FvV+eiQmsj/G0g4RjSDcP8TkZMuT4MU/VB5KCWTj5T/zSBhCVfrgPy9/PeZFd+I/bFTsWdey3z8N67kQf8LGPxf6wbK5TOI/xVCrtDGp6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jxMpt+6B3j+PyKZ1E17jP/VNJV5gArE/svwXt5MZsz/6cpnOQJLaPyxuyelgG9E/cpVuxgyU5T9Ud5hwAn3dP1slw2eG4OE/gUQsX2833j9SHM7sTurFP72fI0bOpOA/SOVf8b594z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f6CoINGz3D8sQxm+9ynnP1NE888Flpk/YqeaKYlL0j9BUGAYMLThP3dEL+p3iuA/UAoQ0QyU4j/EloM3mTTfP7uOY+XPhuI/MBEB7dlc5T8SxtksyRHjPyZAslwYbdI/3O/1Vl0v5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6viOeQYx4D+7taL/hs/nPwDvWdCvs6Q/3PIn7BI35j/RJYVibMnlP5CLcYaHm+Q/yELyMPDV4T+GKuKqDdXPPwDpYcqvaeU/bKII+o/N3D/zWyeG5/vbPxCx5rk+J9Q/5/n8L9hL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N1RgTh+q3j+Es7h7PafmPxRrN1XXgbs/mOjlClQ20z8RLmjL6kblP9YUEjmb+dc/ugzDBd1G4j+w6iFib3XePyxd3GQl4+Y/AKyZww6/3j/ifrVOX3rgP7d3ap9ZtNM/uQ2/mNQE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"owBexLOr2z+w0P92eP7lP/Im5KC4GLU//b+l23WJxj/Y4lxyrzTZP+/LApOkUuE/p4uMuoTR3j8MPMhLFufhP+skFf0huOM/Rj8oIy4t5D/BzFRZJejOP88GgmqsJck/8KERpSOC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K0/6BkO32z9TeZv+XrXjPwx3yXLQjLQ/9wUslQqMoz9O3eJ4oWHkP7TuU0YuCNM/lmI/VMXZ4D/WusW1tHjbPxGkMfc+Fd0/xvlaibDM0z+OMOe5yCrdP+596rgJxd0/K6GSJ9S33j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gfUr6og52j8a+Eq0723jP1OXkYI+l7g/IfGBKSNv1j/Gwu/FWiTcP64+Yj+UHeQ/B5b/51Zz5D+HfhELj8/eP0y8YMlcruA/ni245gkW4D+1H9WpDuXSPyslRKM8+Mw/NySz/PtT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sojfRmIU3D+4AyYykJbhP3Zzu0F/Irk/ltCKfF/iwD8R4B0pd/3mP7LzXfuUrOU/UG/5KmBb4D/2Y+z0J9XYP+Ijibf26eI/9hO11o6F2z9xPTcz5f7jP4gu4zucB+U/WD5h/lmC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+lMdfkX54T/lUTaZLPfmP/j9P54/86k/mR2h/VxhvD9EjOX2I27oPzEGuyoP/OQ/67PJQPxQ4j+6QBnOY5bfPyBAXQH7aeM/ogK7OD2l4z/A7WuoJ53iP6Hb0peBstQ/dhChrTlB6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wd7ExfIt2j+XhmlJ/LjhPxGDURzVVsE/bpoAYv1ctj8VTAy0KX7cP+EkRlGSf9k/QICOVfPF5D9z9Mx8Xn/ePyCIJpipNts/YBH11l8Y0j8wmUpz787bP3pbCr7xeuE/4sklU8Hw5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2XLaDiGi3j8qCkCBB/7mP2PJ8J6iCIw/tlenNsx4uT8rxuPNiWbfP/fvh24KiNw/U/VCsDi94z++WCG11FTkP2nSNCNWCuA/7eYAPxFv3z9ikhhPnbThP0vfrb0tZ+A/P3zKVTrM6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qZkKp1l13D+j4C3BrDbmPwMtAlIvWqM//GpDk+2W0z+NHVWI7ZLfP8Z16NCvxNI/l18J9agq5j8toemHuMPbP/8pFLNQO+M/77yZhqo44z/aqhzz0zDmPyIrLYtTzdo/GxAqBSWO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2jo4sH3E4D/uu2BYGWrjP+xUU0iSn5A/ZFkeY6bQsz8U6kLY+wjhP7e8Z0EuuOQ/0gW4RuOb6D9ekztYou/oP/FHm+O7TOs/CLfhqlhE5j9l1fpRFEDcP5PudJq4eOE/W5iFT2Qa7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kvYbEb0w4D/3SM51Y1vkP/WKBuPZqas/fxk9SunBzD8kpvO+1FfkP6rR+qysW9g/6wxEafaa4D/Vv2kq5KzIP6ipetFSKtY/AO2A8Edk0T8/p++azffMP09MzzVmJ9M/4NJaPQFP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DNhvnh+y1j8LXKt+Y97gPy8U58b0+bI/o75UrJL/wD82zCnFiN/dP/4aLGfTu+E/1nB+leOA1j+55poxh+ndP4dxWvhaKNk/XFidnPzr2z+pDfvuBFLhP/v+buqu/Nw/lGR1tI5R5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PfhNGe4M1z++//wJejvjPwwIkjCtb6c/jdE8LlT7vj81SQDZnSHgPytUPK51m+I/4GbIvIOO2T8SzRywXzbfP61Awess+ts/ONT4EXfk2D9hwZDKFUflP+izNSm6ieA/Iy/QOHCX5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WJ7f1R3Y2j9GZyd7Z2zgP3ZnVslE08s/B2YHOzHhyz93m09CuYbgP0AoHTnPjdw/1RZbohJM2T+yp+uTa43OP0hp1cOgHeA/umiVjWV44j8p9rUGlH/bP56fDyx+dN4/Qm6wtBnk5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OFFLmeeG3D8MuFLXRaDgP/wJFciDE5M/tnmHrJnmyj+w+goX/T3jP/PnRTNjZuI/D8hLZaGP3D8GmDkXZATYP0UCd8MnBuM/clFMjOmp4D9GVTUEwC7UPww1lZYUkdw/k4RVgvxA5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rDSXDuQy2z/3ij/y8J3kP02lyMoiSa0/yKOPB/lhvj8t893DytTZP8x65CBtH9k/kKywS56k3j+sup6WTHvWP+EIvNszedQ/C2CVf+F00D9OCswuNTTlPzsbkG8CCdQ/GCiDoGQe5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CaeSvK5l3T+W86VXylviP5/k3dcxS50/Y3jc3HnnwD9ayyA41TzePyCeDi9f4N4/ezBeql+G2j95ZUXYmeDYP3ZXi/T6U+Q/1BgfZql51T9WibbIa3PcPyOw9wEIk9g/4husG+rW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PaJ+HC5F2z8z6Jl/OVriP2z/WFL0Bp4/UUMDklj9wj83+MQz+7HdP7SHoXnu8d0/HJM8nmih3z/7XS9vnS/dPxMJ3EVYS+Q/DGfvTAbx1T8XF0EGiZ/dP574e0RXxdc/Q5GPxRBv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QN8zY/F82T90cJfO8DTlP0O95qRplJ0/WHBJqNtgoD9KUn+Vuq3bP5B2xRAvotk/wHtN8Ql24T+Vkc30bX7aP3Azap+6f98/z5TxSsj+3z9SXydFkWzcPyk/arADr9M/WCWKNUyP6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dl7Jk60f4j9wVQ7ovKriP2m6DLVDCcY/05hse1g+sD9YjBimdiHlPwOKmvwNjtg/87yzEAHr4D8lR78vjQTQP2VVXmeCyeQ/me0NQ6lb4j+I3D8I3xPZP2hfactYoNc/+VOEAaKi4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"79B3Z7EY4j/sPqAtwmPiPyqvcI8gG8M/kB6+xNOysT8Kl9zqps3lPy9wcemKZdc/GqXFaCLm3z/5WUAqvY3QP+WQYhoUg+Q/Hy5LRKiv4j+0fcWg/wnaP0FH7s3dfdg/KNNnPWTP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r3fTFVO34z9lC/l8UKnmP9k3m/h28sE/kOXpqLKHwj91M/6yBIHgP/mYd2K8xt8/vjcoRphq0z8yZrvlTRbQP8tD77KBJd0/JQ3nvhOZ2z8R5WQIFF/gP14GtwiA8Nw/kuhMR5dX6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UzZyIb995D8N1yNIhTzmPzxOz7RL37w/UrvhOL48wT97fqTDSV3hP2PYTXmeruA/Fna7nNag0z9zPge3DKzRP5FyMkNvWd8/QTHrhA893D9dlALFoHbfPyFY05VDAN4/sft1j0WB6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/ZxdFe2P4D/Bpvbjjt3jP1vpYc/eQto/OZ9P8TpdwD9k5q6mvqbmPwxOLSVu5eM/X/MgRsVV3j/hYALxW3zUP+Asi1LkbeI/CgsQSrUB4j9TjkwVES3UP41HRqNijNk/pL+aD6nI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v7mkutH13T+aCfFWBPHkP73gKRhXhLQ/luMFZC+NxD/KkqJITp3qPy2WyTM/geM/KNWRBD/c3D96YRegdMzTPxKpqfUOHd8/ltyCgSix3j+QAM0uR4nePyYuXoRvMdo/Gf38AL125D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NrhjpKLy4D/NREtjmL7kPzlv6EyIRr4/a+ekwo+krD+Jm/hylTXeP/kW6wxRMMc/Xtpj4V+f4z+8zwiHIEvhP8dHH25wbOE/W9A6AhMI4z/qVt3mJIrTP4QHqx/XNdw/76cQmqQ04T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qp7qqA323z+xbcfUSYbjPyTHyDVCnq4/fMLWqA3rsT8fbEk030XePzGNHGG0TeA/0dnMs3Nd4D9oQBTr+yHZP4xsqQSFBec/fiyrgf9O4j9NVy127wTbP3u1MD8VS+Q/AUXblYP96T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kMCQswMZ4D8gEkK4oDPlP6CB5q1mzLI/DrgMyWmppz81Fb0ja5TjP6sJnHdUV90/CivNR+0d2T+hDQqrSUXUPwx4hpdPPOQ/sqQlAwBv5j8MUKgd+uPbPxD9rAHWUeA/RbVCox+v5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YKW5dCCX4T+RmP3JsgfmP9YgTiX50rk/Dg9JXeskrT+GsHXFMDvhP03ecmeRp9k/YmeYCk6h3z+zB68EgNjXPzV5l2rhrOE/V6mYaTmU5T/rdMayZsjVPy80dE4uzuE/HhsGGibb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u9DigYOK4D9vgLmKXwviPwtGWCABPsM/iDhYwCrlvz+y4TFvPKTSP7Mw7zChN9A/nt9l6brQ4j/dVh1o45/gP5btP0vByuY/8PDYxt9N4j8CXdeRHB/gP4FB5LAqxNo/FDkREWw26D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eX0ND6Xl3T/fXHvIIyDjP55pbJN6ZKM/RfeaamcQvD886hofyM/LP/p9ZoUT39A/WCzKxDDl4D+H/V61SALhP/vOFILKzeQ/ZTW8xVvs3D+DIQyBWWHhP1sS3E4S+NU/sDBSf78j5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BZlAteeh3j9D7ePm16rlPxISimamD7U/Db0SCuf6qT89Vk7ptdLoP1o7oyEJpuI/IG2BhrON2z/NMaMf3VrNPz4SByvMMN4/G2uO+/q+4j8KdX2qXAzUP4SF/ldgCdw/XKzrfoCc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WRrklAFI4T9z5ydi8YLiP9tmyDBJw7w/fys2E6dtwT+Mp1VLow/eP7UnoWE/yuE//qDigLsQ4D91mWQlEeLeP+j1e0x+3OI/a0mrNI8u4D/oiiwF0pXSP6banTVLv9c/BERFo5PM5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NYfajDqX3z/eW6h6vBPkP6IHtxwWtcA/3fpFFNGHxz91IWox02riP2U2K8SnMtk/Rs4BDDEs4D//N7DlgqHRP823Fv8sYeg/zV/lu+MF5z8ovb5G2KfcPzY95yM/MeI/DVQFAAco4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wjcEA9qi2D/jLdcnYOXiP3AEPeDHecE/Rh5+bZudyT//OCs7EpveP9lMfe/tTNc/hlv2G6ZJ5j9MZlaDHOTaPxVLn24Tadg/CHSM9GGS1z9f6fjamsrSP1x6FuFIQtg/mIO3+Ksg1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IVxHr23t1z8R1aFI5kLiP1BGBvRmpbE/1JbXcip5rT+OK1RA5mTnP4I1oyJJzuE/a+yuw3/13z+TvKeXT7rfP0Q/5QM0D98/QR6Ggk5s2z/OIk4mTTHCPzXwn1H459E/3S9wgbCa5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QOoZwCqM4D+wZJa2EWjkPzm5bYgPDsM/gB6KFtWA1T+4P34XgXnVP97Eo/zjXtw/gD3ercHo0D+T3xB5elLNP2inVey6A9o/+KJQb6QZ1D+LAoijJJ7gP9D4R8XcFdY/BHtUoN9E2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zGrgdzNK2D8nqfU5F+DeP+V2z1dT3qU/J8m+1kNgxj9PwYKEE8vhPyZ8gHFS89Y/67afg0KG5D87VBFXbajeP8qgH8Vwz9w/3XrfjAuJ2j/xE53hYaTRPx5mwRKa5Nk/XnLFeYm66T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/haG5YUE3D/MAD6/sDPhP7KojIHym8o/j7fq8YDywj86KHtRujHjP+5LENi5vOI/ArqNh5w85T+KaU2h0jThPyoizSNUTso/LWZPybwmyj8Y2DWU8SPcP+Ld+SFEat4/Jtr0jXTD4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RQStLrXC4D/v4d5UsZzjP35rYYL33ME/SLjQJR4qvj+YUwjFDW7cPxzl6iK2G9o/jiJEbvj04D9e4Rt8yDfVP4uUhv3Fh+c/mRX4qQOp5j9vohPr9g3RPyRiaIOsi9k/8vibEUE05D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jlzIbx+b4D9F0aBNTxrnP8phdNIhYaE/IaBNn4L60T94ZI1yfjPhP+09/MzvnOM/Ay+gH/6P4T+LjD7RqsXaPxA0FnOe8+M/u7W3hoIa4j9Th8VUUifiPy/Y/ND1rtw/0MnalyMA6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I6iexpkj3j+YFDRsqojoP7iQspyT06U/p+lwCfQWyj+zB4ppY2jlPzKGreX5keM/ezFjKoZD4D/nUECooxfVP/WTHRewtOU/+EvQKT+04j9EmXHCmn/ZPzTsTECEW9c/H6s37/2Q5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nCgcFma23j+6OofjVZnoP50qYZp25qA/P47+UKTxxT/+kvvFHAHnP9linmEypeA/AFfVDD9n3D8l8Y2EZfvbP9IWKsOjC+M/xRrrIuad4j8xlRXgw2TbP+RA+yeGRtM/Og/OMKPz4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FTmy/ieU4T/m+VvBB67jP10nc1tBJ8M/kS2zz6xU0D9QiWXGbHfnP62RtiPk+eg/RXTsD17a5j9yQSx7MUDgPyc4creH4eM/ChZ+x+ka1T/n5k8yfJPfP3HbGWHaLNg/MJZY3Cgp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/U66Sx4+4j8spK9x6ajkPy98UVtxesU//TzYIVK6lz+dgnfxTfbkP0uVkfA32t4/akwnT0ng2z+KU/PAVpfbPyn1/uVKY9w/wWDr63JH4j+RX5U0ffTYP+AAvxZS5t4/2lvp2oM55T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2ePDvxKt2z9+X8ZgSnHjP3MHd58EEbM/Lc0KtvuKtz9UvpUaR0DdPzQpemsJVtk/8KkLfUDe5T/yofb/TpDfPzFNytGTGtc/FmUyWBip1D9Km1ffYEPYP6GFKHvL6uI/Zk5HcNOT6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"htlorBKu3D9bAWQTSrnjPymXZnEleps/seEzGVKWnT+3VI0aWLrWP9PF5aTzUtY/UiQbrC7Z5D/ueo486WTdP2DUPBX31uU/9FIY8LlA3j/hhCOqSXrbP8vlE/AsxeA/Ibsn1rSI5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p82X0SpW3j+rHZ6NgqnjP8hmpXYDFqk/xop6/CW7oj9p2SqlRrDWP48ReUprYtQ/PBH2csiz4T+C3M1864HdP+eglnaRn+U/Y0DcG6uk1j+/sqAgDxTdP7FLhHstzd8/LWPPVQMa4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rkP+zK1m4D8g5sRUPw/jP1KEfA0yPbI/oXG3dEQRxj8g+dTcxFrePwJuV1xPetc/XcMuSYSP4z/5SiT1Hh3hP+P2lMfwsOM/kGtlfyGl6D+8jR4/pb3gP2o0xdXHqtw/ZYlBQuIq6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y3nXFxpu3j9mr2PyBffjP053lELye5A//NE0M4NRxz8lycRsLh/lPzHtD1Ti6tU/2pX0gm384T+sPLgMaMrbP2tF//FEZOc/aEUHv6iY3T8m2iKvzXHXPyLriMoRxOQ/qbAB0ksC2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1nWFYecZ3D+Welmt0cXgP55zmkRxiZk/ld6EkV8Buz+cea0wNevVP74UPujnVOg/sNxZqTYt3D8LuH00agjXP8tqblFDjOE/GcWbw1hj3T+fmaj+5V3cP+GexmAQm90/tBvpZ7bL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kwtn5m633T/3zPHZYijjP107t7AFFHQ/o3ge8Gknvj/vvjp1s93fPzjh5UHwiOM/fzA+Vd0Y4T+15mYni97XP5N9CbSeC+Y/mVGLXvmy2D8qwBB0a0PePx9G0WONvOI/YcSY2yyI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rmSw41mU3T/M4N4YgPLjP6jFTZVVrY0/z3fLKYtvpj+CYK66+KDVP2pd6qWeY9c/g36/Ahli4D8SdZDBzqbaP5KYhHkYauU/CTLqfyP55D++pXwDQGHUPyEhmJ3qQc8/BRitXKzr3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p9vtbosS4D/+t2uAeazjP33osZ4qhLY/pBZ6HMArwz9lirZWtd/mPwslnBRRjeo/UKXKwWn63T932FdqgzrcP7QZoWI3PuI/SKi21ISt4z84cR9gvAzjP7OlRQyA2uM/VnqEzVul5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZI0NNsmE3T8ObLvlKaLoPx7zy6LBAdI/A9FPA03awT9pio1GLJ3sP+1O+T/LO+0/GxwOqDVJ0j++Xt46X/rPP43Ai3adyOE/WZRdqd6K4T/jj4xSOxjiP4x9A9BIEuc/KnNqDN866D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"npmocBu73T+2glo7gKbiPzfWAIWbw5o/sA546EcKtj+WaFA8+F7mPyXv/Awz5uM/mZ6ggl8d2z/DAj4ZJ1zZP2Y6l5wfCOA/CosI5o0T5D/H+qgYduzfP3wXiGeujN4/j6URtOLU6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zomyCfuD3z+7BCHJuOHjP1l5ZlAwG7A/H078MlIIwD/JKCHC1f/jPxF7REk0et8/RpAoynUR3j/Vv2kq5KzIP1PqjQuCaek/jd9/Pkr34j9qZG2LFuDVP7dGbsS4DuM/OGoFmFtA6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yTZGQS3E3z8n+tP5+FrlPyXvn0Q7Dqw/GT6ZUB63qD8tx4st9h/hPzPd2HtyJ+M/JRTGUn/y2j9StlereMrUP9PoHW2nauM/qtlbq3Xp5D+aj727KqrgP36wbC6ThOQ/CSjL78mI4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WlZkq3FQ2z+m0/5qGdbgP5Huf3kYj6k/isVBdwOf0T8WVIdR/lrfPws1dOmXitg/yFRaRfI22T9QMlE7I+jXP7ikL4JbYsM/x7/2/uFK0D/PaWW87ybNP30fG0C42tE/8EDUIPgO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pI/iC81E3j8RGYHcKd7gP8qWgluyHng/Qawpi634vj/8nSbARx3WPxB4rH+id90/deSYPh/I4z/oDwK9IirfP9/FeFdUueo/TI58hc1q4D/5/GV+xxreP6nOZaXa7Mw/0B278ZLt4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s0a0YFwH3z+ObrzA0SzkP0EL1crMe6o/2FabxBMc1j9iYu2+8ZzlPwUSmh5zXOE/MtOVGD924T/Y+6qocu7VP4HumfaRQuI/sfi/Wd9F4z/AkWwlUMTlP+mQYKkKKeE/YVYVg/jh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UEElmIyz3j/2+z+asDHjP7le3asOA50/MGdAYlIS1j9inDp0XIjmPwMDOcZoPN0/Dzrfp1Bi3D8/HUX3IxreP2zRkbEQdeA/gpmtEfW84j+Gca2gPbvgP6AdFzyOHNc/riKtavzP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KCayWjRo3D83moEbJ6viP10V1smxK7E/eWrU5a2uxz+gnvMUjszkP+D09CY779o/AMiNtMEl0j/EWLgft+vQP+xNM0shEuA/GPIYAo3Q3z9XqmgXDETcPyVFhvg7GOE/BIyMcZ0K0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yOwlpDsT3T/hnFh3elniP/NPmyv5hJE/l6FISUUnwD+T1CYxWzvePz45yQ0rsN0/VPvuNcUn6D/TAPelBP7eP4Yc8Tz72eY/pwv9yqVJ5j8xGTwdkQHSP9inuq2GPsc/uCfm4km16T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KuEUabox3z/iwjfOlNPhPwxwCRjjQ5k/Mh/Vhwr0wz9Dair4+iTbP5l+35wqZdo/K9AO2DB15T8NV9vxLTTiP2G2eR2aQOU/MpV8L6A45D8hcW9m3FLRP+Uf2dV/EcI/OnGhp76X5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"prRdot0G2z/xeNVbXSLkP2M4XC2rdLY/rr5kfPCzvj8/JMEQW0biP1G/zRGWOdw/Da2qfmJg4D/Rh3vSQezVPyUIMIQ+wdk/pRzTdLBB1T+dxuexn1rVP3hGSU9VlOE/XkIk4Dn03T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P1T9lvwu4D9JN786613hP1E6+04lALA/1CA6nOPtuT+NhMnchMrkP5RfEpiDmOM/S2cpXKZr2z+I6g+Uc/PWP8xyUWBejNY/LRqodMMZ0T/EZoPmEfjaP9xZZA3Gl90/DCwSHVry6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c98ln1sR2T96BnRVbrXmP3gzZd4fKq4/ivrO54RHwD8F45GOBiLZP3NUjnGTrNw/al5VxejI5D+J+QEnOW3bP+sWzFXL8d8/lQiM3TqK4j//OvqIPjbBP5Hm4cGuKs4//lcJCVqQ1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wfOhopkQ4D8+kt6rzy7jP45OQO8IYaU/e6HHcGIRvz8rZCa9g8PiP/wIC5aLOuI/HZy5nn8j1T+nipN8fIjSP6ejgndegN4//7XOOhHb1j9uKoEQWSfgP1XjmB+UStk/IplpK1Ca6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9jzUdas73j+bpIIhOODjPxCq1DUbecU/TjLm3IwywT8KHKi2fIPbP0TZCy9Su90/e3PxsDpP4D/qwgUfNvXTP+8qGlaZ+uY/7qSwdF4k4D8kkMtAAfPiPxoWgiXSl98/gMomH/en7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UNmeFSzK4D+IvBJw30zlP5pcg1YiA6I/v0LNzLNLrj8e8V3YUhnrP55kym5CAeg/P0NxnciW5j8DclJ5UWDgPye8rDvO7N4/AhrKFI476D9KTGok7wrcP34zhHeeHuQ/lPGIWckp4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ud0n/nrP1j8SXrlBLzXkP6M9AdkXWcE/U7lU4GCFwT/wEXE2adDPP/l9gQ8+s9M/6Xp48wq72D9S83f7LpXdP3ky9i2dCeU/EP/Md4Qp4T/ACYiqIrTaPye+GN9/C8Q/zkxiqcRI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fL9BdpLT0z+kNt+ZkY7iP2vIL4zDBs4/sOss3DdYtT9nGgLAe6HhP2avrgPYDNs/YLTEt6ZR5z+uNm6EHqLePzQ0muuIKeA/rGa5URUZ4z/8GydZTp/DP8wtmnAuLtQ/Ss75D6vk3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E5TkLQ8X3T9YUOijXnzhP1c0ZChdicE/42J3l1Fizj8LBXHupuHiP0gtn/s4Tts/FlZXwjX+4D/AzjMdHNbQP2hnHHEb698/u8mfM7Rb3T95iDev0BbgP1vCwvUGQd8/6PWVpsUk6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ss1QojOy4D9GG0tx1QbhP9gFSbhHB7I/wGP+8BUgyj8NEpcE5YDfPwZoa0IqZ9U/LIUY0onU0z9Ll9haHErOP3kS6FbRBdw/4qpyUQ0t0z9VkbCXDdvdP0VswqOvNd0/V9WrBlMT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5uQ44gZb2z+B+Zvl6MvlP1xDcuqslqg/FlKnd7hxsD+VetyLZD7lP90ofAbk/ug/TfQ1RbZ/3j/eHMnjjvHaP56YIUgVQOE/v7NqzL3Z2z8qJe0rfVLbP3+ibiabu9k/jRxGq6bh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"orrCHuwX4j8Knx7mpGXhP1MVXv9oJ7Q/hgJCQt0k3j+4VEx0f9PeP/nvUVq139Y/fSJQhjy66T8nQQKqAl/kPzDRxYctjuA/Rsw7JY/p4j/cRfjmHNjYP2/JjKqWkNo/kDFweRk65z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"28qr1GKZ2z9r6cKDs4XhP22evU9PY6U/dnKEYRg11z+t/UTyyYHePyD4m3oU0No/QKTb6f494z9iWrFUCU/hPzAt+iNrp98/C6vHrW0T3z8u07RBjgjaP4Aii5Xoa9w/d8UE/VwV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GUcXcwpy3z/jkTqLrCnlPwl4x1zssKA/rXU6m/hzoT8Sgwf4d4HkP/g/AVDyLuM/fHPs6H4x3z+/Besr+ejTPzjdgzQzsOE/FcKuEtHT4D/vcXuD6bbgP/udb/nLXeA/q/5e64lF6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8afQmRlH3z+N+eldGrjjP47Q9bAbFqM/spfgaUAqsD+or1zU8irjP3rFsSt5U+A/v76EQpVs4D+5N3Z3+c7NPya72eyd/uE/mPQsNN5A5D+IwZYUx17gP41xaQ5EY+A/7yHIH6LU6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0ZsKbhIj3j98v04i00zlP8mohhP0F6U/N8l0BmWfvz/KS6mXkandPzjhyrfFtOA/6WOMUcV82j8OvrcfWT/cP2UH1VZpAeU/Gp+Dl/Fg4j82d6pnY6fRPy9ZdDY26N8/kL6DHlQS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q592cyvH3z+psmVVHJDjP1QgH6xn8qw//4kg76dPsj+GrbUEUI7mPxZGK2MkueQ/PCaedl7/5T9Wc1AzX2PVP+tzy3VT1uE/l8UYl6Yf3D96pQcWPk/bP46ZO30Q68Q/hfMqOnWb2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qzw+64kC3T98RZ8ypCrkPxsxVwk7Apc//C2KjQy/xD+r/6nEPi7ePx85mXnHgto/piyvApTu3T+soMhuMbniPwwi+D69ut0/tDkwiu3i4j9alzBIYe3QP3BjzGduEeE/kRXvnV2C5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rjOCV+HC3D83EP1oM1zmP7OyR+CuGYo/17pslCND0j9wE5DwAEDVP3ioBrRPa9c/bK4oCNLn4T8W4fZeq+DOPz/mWrZg6+Q/uV11NxbA2D80oi6mP4/YP+MgWmAvMMY/EfjSR8L03T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mp9zXnaP3D+sSl260xHoP6ntdezv8zU/lYFiGCgA0z/ItH4lO/LSP1cLv1+EJdU/ixCSAitM2D+TTItzoHPaP5mK9Mi8g+U/47gm7FYl3j++PcVzZq3RPzQHGmy3xsU/OXvYCn1Q2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mp9zXnaP3D+sSl260xHoP6ntdezv8zU/lYFiGCgA0z/ItH4lO/LSP1cLv1+EJdU/ixCSAitM2D+TTItzoHPaP5mK9Mi8g+U/47gm7FYl3j++PcVzZq3RPzQHGmy3xsU/OXvYCn1Q2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iKm7BFt03D/eqrKOK4bnP3+BS3S/EJ4/WED1vaThxT/QsJOijY3YPwureulgNts/ErwF1Vt25T8Dg4r+E+XXP1g1l9F0GOA/Cap4Hes44D9AQCJvopzVP680q+4W+NI/4EoV+fOt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7WVfYIxG3j/txUkPVf3lP9GBc/aevFg/LsutRA6gpD//hnl26H/cP0zGgUZ3psA/xSOEfkKX4T9J+Db2ASLlP6uRmVQFFuc/kASpCL5v4j+hN/rJlMXgP++n+tkM0eI/GoNkaNMY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RZi27JJS3j8qgSiIvgvlP/QXzSd0YL0/coGhMr5Cpj9umWWg36HPP4PtX5evfdQ/eugtLpZL6D+IvCV+2Z7gPzXwANgPceQ/W/TV3G0h5j+NnavrEo/TPz/TL4O9NdQ/VNf22Ea35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jLn8Z4hN3T8tNSbIq/XiP7bQug2b1ZQ/k4blM7HvtD+IVV5Jp93bP1W+qHMBmMA/xWzCqXRU3D+BGGjzPDvWP/G9D8lbad8/h1jCYRUq1j8Y+8YBQi7eP6eO1+2zlNs/J/5pkVt/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x5MMQYvS3D+1YIUjds3kPzTDIUCl+JA/12LQlNI8wT8M0BeKQ9bSP/+/ADBeT9g/ekzJES2E3j9o3d2mSDLYP0MNviwkSOE/KRJrzp7c3T+aYIaWQdfAP56q7MX7vdg/JQipi3on5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7U2AO8la3T9MnTrVd8nhPzTJ/aHQupo/VqiIrnffvz+PZvhKWrXjP/avX6+UudU/bYVqpTyT4T+c2nsggLzgPxOswDWLj+I/0ynT/G/L4j/kaKKn7H7PP+yEdEETgt0/i0hDUCp44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HGYetooB4T98eVp3OGHlP49avpudt8E/oQlwDLAWsT/o487gu6jjP9CiQe4jzeQ/t27yCuae5T/Quhn6ZWbhP96xg1vyq+Q/3C8g2AMF5T8SFWLn2GXbP38ST9u5HuE/XwVrHkig6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5jNdkJZE4j8jm/t2ULXkPwrCtVdvwNM/wzrT9H6Ftj99Mpp8JBnoP5Y5yLJ4xuM/4HSFHAQ65T/TYjQTEl/hP4yCS8QjC+E/ojr/YDN75D/mpkgHzazaP6TK2bXL/9w/CjFsYJgQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8hH6w3Ld4j9/Zvlv/bbjP51YonVgB90/x8G/WgHlrz8BhAYnCIzoP8FT/Y/Kj+E/2rjvOTY+5z+xFsaFDL/hP6EY7ULAbOY/Yy1hj5n24T/OUvFbA9zUP9fBPy2l69Y/J4Pm1aYZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t9JW2alWxD9z2E9QpjLiP3Oi4vlbCtY/uCcNDz+6qj+Y8QHcaa3YP6NSIav9m9Q/C5mYhun+1T80CKHHHGLQP+N7T6dbXtQ/kCGC4Rfh2D+/yfDWKDrVP5TPLslU69Q/+i1nZIt85j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yx/CwBwY0j/0G0wHZRvlP1cu629pOsA/9HXzyg3HsD+WdNq98RbgP69xWFj+Ots/ueXelKkv0T+kqQOxo2rYPy5MiXzVQts/pFBvpBmU2T/LjT6QOuThP/rJvcwF7tU/WFbgrp/I4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ka9JcFXxzD+XnPt6/UbkP5MrFaWDiss//pudZfzLwD9aQrhwAQzjP0LqtwOu3d4/SE6I5Tx76D/npPdW0grgP4CBBXOB8Ns/ONPDjuvU1z+QF6aPlbi6P47nKW7D6Mw/6z83BhZq4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SDSzlg8K3D8unNvRBGbjP/icoymCr6E/v0sIu9Iz0z9I1ijnNxPfP5yiIT+6Z9k/0bew/l3X1j9Wq1iQfym7P+3lRtuEU+E/rat8kcnX3T+IOLbggePhP70nJTQYm+M/W/VreD5F7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9jwNvf2J2z8+GJ43KUTlPxuEQjyzWZI/JLrUL1L+0D9L2hJUNkfbP7UqRlBSV9o/jxPeQ6Fe1j9JYob3y9G2P7yCGRj/yuE/QZCHoaAT2z8RA6F/Tm/eP5CUZCKwWeM/ppyr0PBe7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"er7bH9QS2z/C1EK5KKLjP/tZqvwC4oo/4RIAdxr5zj8NUP9onBnWP594rwkHYNY/Fulcju712z/y60o/e8LVP06pRC2LPuE/cWUer8oN2D+Op/suMCfjP3jlDcGartw/x4gCnITv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3krD/MuJ4D9gLiZghPjkPxuNK+T5zrE/yRLYQ9MirD9Kd/pUxKPjP+cjpuWBhOA/7p0KX7u94j9Iec9GyunfP+lOIsJPCuU/Fp7fHYgk4j8d4ZAcDdvUP88rMKzBR8o/ZHMcI+Pr3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Phe0ffce3D9JnzXEE8vjP7nN+ke/eIs/TA5NnB9ouD8OsJhNBvfKP7xD8SZ/aNk/TVSu0H9q2j/o21Vt7KXXP7HZYdY3dt4/J9WTzs7m3j+R5TWQmObNP973RcPHttg/2+eFeuIi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AmqXImQ62z9tT0TlIqLjP9uWpocQbJs/pr8V37bkqD+2LvDg9XPcP6hgDMfzndQ/U4vVyKEY3z+DQuApW3/ZPzGQ44noMN0/pj8bPOKS3z/NsM/9iu7TP3spyfV4/dQ/bdDxro284z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H/A/y3zf2z+mbAdpM9XlP1KL7+ffL6E/WlgY7szhvT+flj8Dpj/ZPwfoySW/Tc8/QftsyGPx3j8gE9ohSevcP+WHioNq2+A/5BBac3Sj2z+3YqVXHF7FP40NM6bLk74/NSOSlmm34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yywnHDxA3T8SZj3IgPfmPy0bw/ZsIHg/D2/ROKJlwD+1xHaMQg3VP0TO30txW9M/LcViuo7t2T9VfB0soiHSPzdbC3ZLi+g/7puLLkhe6T9UTeQw6PbXP06O/dBX4OA/ib8x1mUR3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+JipzfCR3T9hQdkTk7HlP4GpB2stOX0/NUShx3kozD8oEvZGdOHXP/BQKPLJqtE/iBsrYRPT3j8JOgX0tErVP2mrMZ8hkuY/WnERXwZM7T9OrKU4CNjVP66ehWQYo+E/yAXg6H9c4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JkO9NRk93T9ced1v20LmPwcxaQ3zQ4A/WgmkOsuCwD/Nsvh0AjrYP9f5/xvKUtM/MiH8G2U+3D+O/kfvk5/HP6kSMsU5tOc/60D0+XdI7D+yXBNSXznaPzQM2738puI/bfHjIzvl2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EWuJFOWt3j8SGK0BGonlP1nmwoI5+LA/O7797Se4yz+Q77EckTrlP5XN8KanN9k/FWvExjNb5z/zzc4t6OTYPzbukuJ/ENI/+JeJheKw1T+BFLJkTnfgP8EyTvYOENU/cyS6Q9vb5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pxgi9Zyc3T/mFGXrwzniP81jf7GmZcg/RrUQ6wOpqj9XIURjV7rSP1nd+qosC9o/DmNUFFDl2j89A8jHy8/lP/Gv2kZkV+E/bepJ9O3u1D8yzbLkG3ffP1WZmw7B/N8/lHaBUmTM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QG7cufTN3D+MHI+josbjP+BdWFsy3tE/+Hy/nuREtD9P5rgE4j7SP4LowQrzKd0/dpTyA9C04D+NQ7QSOqHiP3a8LzK02uE/LWsdfYbd2z9Rdu5QdongP7bWPijkmeE/7ht0+kVL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nDuJMYDF2z9gaFn73ijmP8giEHg92dI/01r+n6+CtT8mRuyKprXdP80zx3OQL80/RXyTPQRm4z8NDK2U6wLmP5W9hw5La9s/+J8nnuEY2D85yIiW7ivYP9UxNuve/+I/j2yoJVBV6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QOHaoIMi2j+10xPSibniP5wNNQ+EJLA/i0BhqLwkuD+x7B9c8XTZP9ChvoyOJNo/YTxS2y6m5D/DkAWlUwHcPzd3DYUMdd8/oBP1k33b3z/vuBvEwLXfP+KOnfC/GOQ/WgzKwvHu5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bQfRg/IB3T/IHdLP10DiP2X6SeRI+qE/OmbbMRG+zz9ueWiwU5DXP0uVdmYNBtw/iyAl7YaN4T9J+qs+6a3YP2HohARlMOM/efDC4yLj3j9zTRJ+qTHSP5JySQtLeM0/QwtmOCJR5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0sBh9Tgt2j9SZU2BAbDjP8v0ya3AjaQ/Nq2rAI/Y0D8VimzmG+DTP/yE8Ir4btA/2bJDtKnT4j8LHyZYmQjbPzwV9XuAM+Y/THxfUY1z1j9UNvl6MLXTPwY6XGbTPc8/FwwKXAlW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tIopLriz3j9/4+nEST7iP2PjsLe8LrE/QJnhPmRMrj+ki2msQBPgP2KkMsKf790/jtYXeQrk3T9GSVEvuXndP7KeCE+Wn9s/6DZqmY7K4j9QMzD40SLWPxhOplfoHdQ/lZVH4jGT4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nQ/gG8zq3T+yj8uJoJfiP5jQbXtkGrA/JJrp5TVbqz+c7YAPHnLgPxtb8SJ/x9w/Gzq0fnB03T8bNbPB613fP+ro6QMTLdw/8tUQiA+s4j+NFMu3zRPVP9OWYll5ldY/dOkNerWn4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qn6VZzio2j84zGcnoJDkP+Gqz3liG6I/nBsferk8rz8LE+YnKa/bP2pd6qWeY9c/SaerIKMQ4T/PYQcycMXcP3iuoJbUYOI/J5QfGxpc5T9YFGTG9xXFP4VfCGo2Kcw/5NBsMklx2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sRLh4gMz2T9zvqCEVKvkPzgy7pO0l6Q/o+Ev/AkKrT8cbq4GVPLdPwqjRdM6n9c/fjUYb3803j9s6ENVFJbWPwhtJTBNyd4/uxGXidMJ1j8g+dyLPmzgP4A6NJRkcec//dx9tkQ76z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RGrpyb8M3D8PWPglYbTjP0FxcskZusM/+JCLbig6xj+r7q0+72PjP8c8VzygEOI/avv4/9rF4j/LXiYVoi3cP+ngKdNf7dg/qRn0Ryy02D8EqyI9hUjhP+3qvwjJWdk/GFv9ZzfK6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qWXa0sSa2D9lU1s/oe3kP1dGGu5GjLI/8DEgWuhKqD+K4iqYZdnjP71nJqSN4OE/luqReLU/4D9hdar1opbeP9k8l9QVh+g/76sKQoOg5T9MBsacL3fQP+t0ii3XLN8/49UTDwJ34D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b/CD5b5L3j8vYZR9XuHkP2hKdsP9lLM/xpFt1bKvtz+wFNmPKkrcPzMNUlV1Fts/Jk+kNLZM4D8n2TFZQ0/hP7wje0g58+c/xet9GSEt3z/LtuOvZpLGPzYQVGMtydA/AQg6mbN33z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t2iGb/PN2z8yh9Qu+6LjPwW3iZ0SWaU/QukmhSusqT9wrow5BofeP4yYHbrm5ts/wF8muBYs3j8udMQ+yPLNP0nbkaCiec4/26qFnAL32D/dzIKm5iLpP9pbpX45AuE/bo8vmjOD6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dq5Q04VN2z9jbEZrOqHjP3nq3UHNkIk/BgI/3Ai9wT8DsxwXIInbP2e6HSCPn+E/zhwWY4Pe1D/TM1Em0nvcPwD7v+G5pt0/7IIqtzPI3T9IKjpwGFDhP/eTKfMY5N4/c+ly2FFd5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SGG3tk1I3D+kj8WaPoXaP+57xrjVjbY/oKLYfSkk2z+W+FZmg57ZP+WF/p4DOdA/gsV1YcF44D+U8Twh0dvNP63t2u/Fx+E/4WNm2job3D/1evq115LZP6fN0dBMA9c/DO2KrDJ+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kXwZG1vw2j/4Eb9wcWfcP98vWypJSrU//aRU3/hp4T/7SHvIkhDYP8+h2Ra5+Nw/CQ6MDa8p3D/XzoCrcJPSP/j/O3vsm8U/MwKSCotw2j+usm56ENvTP7nquqmoqNU/qKf7AuHE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z0fvX4623z/DxG32Y3XoP1hVX1LFyKU/TRll+yBevz+fKzbl1cPdP1bPvvC2jOE/baaB2itc5T8QZ06qRjXhPyYB79Hs6eM/e8kNAFSl6z8XYf10twLWP93AQ6kJWd8/9SUuOkaA5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kAecm72m4D/dKGgQ2SnhP8Mxm7XU2LA/Iwm6YAP60T9LzXa8bqzdP3ufj/UZ4Nk/ZFZPv1II4z++n755C+bUP6syTnhLiuQ/TuR1nRty3T8hEh62cd7iP3dLRj5yu9Y/mIcOVP1o5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VUSPd83r2D8OB1ck0mHiP1XQCKvDfps/VkqkQQUE0T+/JWawBh/XP6bD2XxhseI/BWbnbKKr3z/me7yesFHZP/FSCzyA/uQ/6wcI1XFI4T9CJ/OZ2DzbP3xvmYmUVNc/Koafp6dB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TPAA7McW5D/O6vmM8ZTkPzZscWsnl8I/Y4WUNqjVqD+RddxvNYzlP460KkZQUtc/DoUn08+Z4j+YbIvpT3vbP7GYCQd/DOI/NjtGkvzs3z9CbMYQaRTgPxRhe7pAeOA/ROcmeAIq5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nb7X9zIl5D9HeR7p4JDkP/G/eyjrUNU/ABD9AvY0tD9JkbTQBKfePwJMDRhBf+E/En6apnS43z/mMns7qLPUP20IYZyUz+U/Ez/FQspE6D8uJXbWsVvfP8iC2QtQiOY/WkIsd5rj6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T2Qhlo6A5j8frXIoUtvkP31Zkoiz0sE/4mJ5/DmssD+a+tsADSbmP5Ox4xo+zN0/Esl4JaY62z8vEJ+LkojZP83TSCOS1uQ/EniB0Iic4T8n2Lrl6C7hP0d4RlyZM98/1tX2/8or5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HFi1qw4r6D8hgnj5xELjP8Hv4YMoctI/hQWqtKFBvD++VzCW1/bVP4U2JUS2t8Y/6JUEWSX94D+vMmru0YTUP3qsRsajtOU/SD+XGQxa4z+YmaEA0NPfPyFYXhrRWOA/1zMGJpji5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Utet7ng44T9bLanykh3mPxU9AMJEyrs/rM/vF5qJqT/LdAaS1JziPyZaNi1E+OA/IX0GehHs4D+h4ZTdlnzhPxsz/OKvsuI/ryCUNum14z8QJEF5hS3WP1SXmflhv9c/MsI9vIrx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cxTE6pVp3j/8/toFxeThPzDjC/gpzZc/XBupJ3Gpuz+Bfj6mSs/eP0TARc761ds/1TMUgJzY5D8JdHN9h/7dP4v1hYvf9N8/oHOLV6oq3D8GH4CE98TRP1m6WHD2btI/j0OErk+k4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kSGhmOx54z8V+hzNIejlP2SPyX5Z87g/RsOp4vVGtz/CNwJk/WvkPyJuX0EHSeE/NbFnBaVl4j8gFkhB1gXPP+ElzoUFqOE/QPtiDbzU4D/SQElH+IHcPzxOUsIqpdQ/9yyE2CBk5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+5eSS6Gl4T8pQCn/FY7kP+PRnS+3U8M/to9yfYo1qj888pW8nKzeP8vDMcBwPd8/waxEbnH54T/26zqiINHdP2odwgZ1/eM/aQm+rvEB2z8kbcN95fHkP8KZUyYPZ9o/uuwSla9P3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UJOmGSgw4T++JQv+4O3jP5W42iweq7E/UrIC+grtwT9dJ2b53rzkP63P5USwAeE/6koY4/WX4T9h1eUXCunbPwdWZByVcuI/zd/sHwv05D9C6VM4DpnMP6EQS9ePYNY/gzPzbLFp6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3RYJQikQ1T8dmlnghnLfP3gBLNJKRr0/Fxj06Uda2T81xlg5ZDHiP2UU4X+ZN+M/bh9g3cZI1j/AoVJ7ggHRPzrrcsKhDuQ/NiTcp3pb3T8g3Oh6/g7VP84viTuvoMo/B1BCHie22z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pqGmnaIL3z9M1d9pfqHjP2i94TH/4ps/WDiwO42tsz9+C/NeuSbZP/I3ELPKidE/d7QEuZjA3j8MKuX+J+TUP9xUrj+uo94/NkDZadYM3j9if4bW4wHeP04N++aJTts/wrnsjkn/5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Jq5I4wn3T/L1Zjj8IPjP99MveVRm4I/d8FgWla0uz++lqZ3+tbQP/xnAZrQlNU/GtQ4gIZq1z/HU8Bm1snNP7T5+aPWOuY/JGh3MeKt4D/h+CZIrZrjPw+1T9TNZOM/W1jNSukq6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"izFtWMB+3j/8Az+jP4rkP+U2Lljlz70/n9y+piA6pT/zHiVkgA/bP0Un+Jo67NA/q96D/gUV4T9q9nsEefPkP+SUp59rhd4/e/ghnYvG4z84j5HWMlTZP80nylBv8N0/nnpT85ah5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UiK7nemo3j+tmduDBSTkP+ToXseHurE/rCRUjJY/qT/h/aEI+4DaP8RFwJUsUtM/sb3ZmARk5j8Toi28EX/cP6//PhgwtOM/QLtxBHi64T9+vj3pHTniP1gPggL9F+A/+YBcmy9i4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gt2OJyhZ4D9QRIM7d6PkPxYTNLLXfLc/BKXBkcG4nj8CG2LbrLzcP9SxyvXZS9I/gnv3ttAP4j9elhx1cIfZP5boskrP1OY/RtGa4npz5T9Ca5tWK/zgPy63tOoy5Nc/acmbELPY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZFZ+w9ua2D8qQSUj5yHjP0pErt+JQLo/94ZbRwGguD9qZIK9BZLgP/oLiNXyaOE/KAg3zKMH4j+FApsVgCDiPxVKAyOq7+I/yt3MvTJI4j8TsOovKTviPwtc0zBTL9s/IqRkLWUp5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k6d2/QaJ2j9Qtm05cLvkP/YJS0OBmKs/sajqmYFUvD9vb5Byzz3UP8Uothrao9U/a1y6OaUh5T8rGcV8mL7hP3KC2iNj6uE/HbIjdqLI5j++Wk2GLpzcP6QP2teBJuE/hUp/Y8u45j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6LUuY6303j9zw2YJ+uDiP7UOmQoYAaw//j6OVSCFxD+1G4dWbMbiP4E/0hZB69k/Ta6EZjQm5D8tMgUu9H3dP+vxkKhVD+I/wb2Qe3EZ2D8wTEPVQ1reP3GTk+DYw9Q/hC/SVCe22j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GbGwYLso4D/C4u8JVibkP/3aSjnptbA/unjDNjEitj/kPDCAbQXjP/OvAiy8cdw/ltZ7GbY25D8hdaSRFc/gP/ILmdl0Md8/SQjWm4b03D/klV+uh/zgPyMQYF8gYtw/zz5QnwRQ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wCnnrMs03D/5m5Zc4Q3kP1xov2PgOKk/i+PU9kjGsT+CwaKNzn7lP9H5bIScYuQ/eRBa7JRd4D8RS0fhmuPXPxhq78AXOto/gZY6nPNI1z/4fTqOARzDP/f3q4MK39c/oEhAA98F5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7NlMJOfW2z/3snqSKWHlPwmovcDctro/2IDmOQzGwT97mb3GWPzmP1vvKeEd1uU/9umz3P+10T/u7oRUDNLRP4SPk/nk/do/hOyMIM+f3z/SjeCN7onaPzcwLgkfQOM/Fm5Zh3QC2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HOYmB3LQ4T/MPE7tSfTjP7hB/qBbl7g/IqtEmm9kqT9A/SW+FybiP0Qw9Iv0HeE/La97mG9s4T/qH496uTDhP//KmMHyI9s/TBqaYzmc2z8vqg8iYlrVP/HRlX+dNco/BFwKxWGG3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aKGttulG4T/1b4bhx5LkP3+2UCcRBcg/VUdSJSdauj8Jd4IlkJXYP348tRorQtU/e3L6JxJ13j/BMPnY1i/fP66P3nzJGOc/8ByU+wzG7D/VDg9HN+fnP/WySTDA2+c/CrVxnwe86D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5KJqUj1U3D/B7g5UL1LlPwvKnOMGfZA/BtgVjDuUpD/2UA8SZsLWP1xefewt1Nk/eEhrusdH5j/xxU5Q/KLgP12iWzJww+M/vezN7e7h6T9MHP3tdJfhP7F14MSpBNw/38rqYIZC3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yaeujPgQ3j+k90yb9iDkP6HQmBBVvmw/SViRAUoarj+3xrJOLnfaP/X446IVP9c/Ka/3okGs4T9uQ/q720PfP1brGmYppOo/otcpQvNN6D9vav+Q0wTRP7QG9hWtZ9Y/5ggC9MM75j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MRWH+jwH3D+pSWsKd07kPzrNlsVIs5U/gFh4fbSXpz+wOmZlAiPYP+u7258uV9Y/xf8jK30e3j+YpQCcfKDVP0fztK7Phts/4jqRlJMx5j8R4YIg4cbLP4AKaly92NA/pKpgE3WR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YDLhZ8h22j/8Vn1Z0W3lPy9MF02A56s/HpnEG3cDpz8r7Y6EV/TdP94h/yWA+d8/J+AhNOWd4D+GxFdMS9DfP7HL/D6c2No/YS+QucB+4D+MgwkIZs3JP7lXydcCntY/byLslKW75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7nEyz0QV4D9yNw6rk4njP4bjh6FvYsA/o+y0uUac0z+eQu/5XDPmP/EGLsI0B9w/ElU4+S425j88JxtkZ1jhP2ugnjA87eI/jQqErhhp1z+tA02pm1/aP4RZ2dcf9dw/EixXH3Tq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1KyElywk3j8NHtQ4tbziP98Jq4R4xrw/ymahOh3Izz/cfJQW51HlPxvR9yJIc98/xazIY5+54T9AT6tUXZPiPxAEqjsR990/mwoxwEFA2D/DqVOUH3HdP0u8Om8S49w/2NkH6pMA6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i7ySguYu3j+RHbMQNZnlPwGREJpwBIk/faLEkq9XoD/64OwraL/fP4YJX75vn+M/QHW693JQ4D8x3GrtrgvWP0257pI1muM/lziSG8FI5D9msnDi2b/WP3StK6rVO9Y//gYZMyHb3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LqajqGYk2z+MaMMg6+vjPyQMGzSeZqg/eFxci0QjwD+CzkK++LTiPwOAhpJAReM/p4gSLY5u4z9BAkxWitLgP8CJ6tGDEuA//48T/t0V4T+5MCMDtnnQP99+xiZijsc/SPKdLmfB4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"//84R1JO3T9JV0zxv47jP2YMNPYXTKA/RAw8Qp4tsT+rnxDg1FDZP21YtwFkodU/cpTJYrxQ2D8EK6BjrlPSP4b8sXPIEOA/3zaf98c62j8DAgPJgl7iP21jCAVGWNk/Q2371BVx6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FzDwrg3w3j9ORYUmK+jkP4+Vn7AabpU/ddfU1JevsT/Ak/KBQfzUP6rR+qysW9g/y5qi2FtR2D+xH2ncdobTP/K0DS5u5d8/KfZ81JEH2T/ZfgH8QcLfP2onHwWGhN8/5dqyVFqN6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fvkgpQp32D9sYn823ZviPw8daYF5Aqs/U1EFyPt8qT/18Uo2VHzdPxJUaF3C9tI/8NWVkqQs1j+vVxQO6J3PP/LD8iAuJdk/Ej3zB9f53j8vcrpxr5HhP8JunOafpt0/e5yxaodD6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UfVuX9f63D98qbMJBjfkP6puRvhAjJY//awNrwVTtz95plEsW2DVPybNLFZ4hdU/O89ULVqn3D89X/9T5gTZP9FUA12yyNY/bwKMcsdSwz+PihlzWdzfP3xDS7ZaxOE/w4+2cAkV7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hMFU1pZs2T8bAezaWAziP9lpIF5agrs/AjABAVZWtj/2M0z9pvTZPzBS8nFMWMs/zLDzpsiH2z9qJ6qXx2vSPwhqRfOXy9I/B21XedzP4T++839aA0HlP45tYiVJAt0/nvQpZqiD5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C/s5FrbJ2T9yisVQInXiP8QIYXo+h7s/CON1N8Ls0D8TiVY362HgP6XKY4JGQeI/BuyjzQqI4D96I4t71/XdPz7R+mD8Kec/cfYn0Z2u3D/HWz7o8n7UP4XzesaLUt8/nJ7Qjd5M5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5RM/y8bI3D+Kr+hThlTlPwLz2Qq1mqw/9MO+d4xQmT8aBYA8gh7jP47IU1oTo9c/0SNZVWKp4j9Av+F9it/aPyhWv6W3OOM/xys3hdDD6D8vlNjQHDrkP6Wp3feBYM8/kTEyn/G15j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Bgw90Sl63j86Pnv7AjDkPxMEos0Z6oc/pwSOjaRcoz8TErfM+VvcP7PhZNn4id8/K748F+Fe4z9nn96Eat7jP0LEDSLm2OY/Wwdv+RyI4j9IbFa5s6fgP58q46CM2Nc/cp8mqdzu6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xWn5xpr/3T+hKJ8xrLPkP59ejcOOZ3k/LyvGYyw5oz+ybmwNv2TcP+2fEA1zX9E/AFVbN7Oj5T9j4J8KhzrgP0nNmJ4qseQ/vhnYsp404z+IvIlyVq7cPyi0ljv1Sto/KUZMAckH6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xWn5xpr/3T+hKJ8xrLPkP59ejcOOZ3k/LyvGYyw5oz+ybmwNv2TcP+2fEA1zX9E/AFVbN7Oj5T9j4J8KhzrgP0nNmJ4qseQ/vhnYsp404z+IvIlyVq7cPyi0ljv1Sto/KUZMAckH6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bkjnsvWe2z/bNjsXh17kP8ADTkQx+pA/koarqXDYrT/dilbBadjEP+vw/ypvJNw/9CnkeyTE4j/biDpqtJLhP/6SeZDusuU/wt6PC4UX5j+ZhfYiQhvlPxc26g6OTdc/DEFMGY4p5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J0T0MLno3j8LSQbsWhXkP1fE/QWC2Yk/mmnp9E5+rz/G5OfR+bjhPz31apljYsc/DKg06Bxm3T8nhsx5fWLQP7AsCQTyEOc/yII1iWIy5T8fWwIWW/vHP2L/P8pU/t4/A5zhtvC36D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ntbg51Et4D9ImofU6FXkP6oOvLJmSac/KVmuzBhUyj/pkyMFNk7lP9Wj3pm7itw/LWJwoc6f4j+RmprtsDzXP8cLD4jjfuE/PgL1d3XUyz+T2nk8rnbbP3mL5z933tk/uzY4QLCM5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IusTFVv22z/9bsf0OCTjP08SJbJEMKI/4M0KJ5Vpyj9Gzu7vOx3UP2m9+CL31N8/knKpnQ234T/HNHrUh97iPxIUfZCDwts/fy+2wiSX5j+bj88QlLzYPzRUh9K6pdk/cQb+w+xe3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BMj+f9Of3j8aJA69b0LpP02ijZnNEWw/q1/MwVhj3T8ZMPWXOQXhP+uqgGlSsd0/e1UHrCVw5D+mXccrTy/gP8jffgO9EOg/KZXsack/zz+L3aDBWGPAP9rcHOR5O+Q/nedI8DsG4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"57M/B0ff3D/dWuTaA0DlP6HzWCHfIKE/8Hvg2Aem3j+F19s8w0bYPwAm3rxggeQ/eQ7NV0+Z5D/IRsCBXG3mP1HTZd9eEuA/w5GDnLhS2j/ESIjFZqfQP9U7B3Yf0tY/hlfU9iZP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c3FkEL1D3T8Vy3+A6abjP6irX0YaDaE/U/NKvpwjwT+HyoBL1JLiP9VBHDjgA90/eDPDtjH84T/Z/8OPK4fdP1Q02mEpUtk/U5eK/Ud51z8Nl61eM8fOP3EHP+EaQdc/IKJQDaeV2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e+/QZPqV3j/YOBrEFoDePykXQLEFT70/7/l2OFUP1j8b/Hhu88fbPz8t/z6K09U/xYzs5bJ+4D9zgelAX6bbPz/xKxYw7uE/9gxMQRst2j/dWZFvQX67P2ysw+d9tNk/W7QlGDQU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LxOaaSNu1z+LTg7EVhvbPw3z6MoaYa8/NTeixZcs0j/5Co1+xw7iP199PcxTFto/KURPBKh52j/l/zUMR7HUPwyo+pnCW9Q/UXPZmJyC4D/8phWtaQHgP+LI/BXQPNY/Svv4La3V4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E9ahGwqA2j/9CpwVBaDgP0wToV0jD7U/TYkLsMps0T+1COG+bM3gP0D0lplOPeQ/CcMbolEE3T+2qWDcUhnSP1JWc/uMx9w/fIOeQOnO3D+b3dJnV5zpP4OBhbIv590/OPbfEeKt6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cut7Poca3z8LemnD/27lP8aSzDt+np8/1+tUt5mTwz/fCBJCYR/hP1uflXULW9w/CE5XyEGg4z+pf8Q4k7vgP/YBOeQHkuM/C7q0TukI5T/ppdX46UrbP6CQGx5k5cE/vefXPoVz3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nmoyxAMt3z9qB6JEll7jP9QmMOjPX7U/8eq5NY+awD8p4Fyj8YLiP9p3coY2/eQ/XPC4FlN92D+uiuGL9pjbP7bVaB4QpNE/b0TrBMl53j9WQ5vr4OjUP9TerDyjt+E//BoDru1U5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EXkWLks82D/Uu/zrzlHnP384QwtI0q8/6Pn3a1/u4D8DT+5ofWfgP5iPcOdbs9g/aLRGCLlW1D/Ii6kKZwDLP/8hD2vXgdw/L3k1yQUUxD+ay9CpPeboP3bo5cXY6Mg/1HrPxtO92T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nmx+dqZI3z/Hd5Our+rhP7qPAxfoRbU/TUIwDJO/rT+7jwDjfZHZPxeVIeN2t+A/uGCRYLXF4D8l6xSmMVLeP1dN9tm5L88/I5XPHXdh4z/Kr1zvp4zUP1pej0zLV+A/EtPP6Ev35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"93tFMmmv2T/NYFXrX0bnPz/PiZekWrE/P85dOYp3yD/3uGQ6fWPmPzXShOnlaN8/BEw4R9A45D+yMrj9S5XdPwcdbFNHMd4/fn88afTQtT+A7IqqWLPmP6g/jgYODtM/AhvEZFdV5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m+dgclKj4D9ZRos3YEnmP9MctbaZ5LI/yX293pu94T9fV+OiiozhP4hZG9kteeY/3mLFuTiu2D981EM33CvaPzn+F2KOK8g/7O14nNOj3D9hqBmhpp3KP0Z2REc69tY//kIs1GEf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W+VUIEkR4D/lNm7aVLPmP3UMGWcIN8Y/82RyKO5i0T9LpfqVqyLjP24ZY0ID+OE/WJHBFYKP4j8FW5F4AEHTP4guxEi26d8/dS3HO99t4T/P4feWjQ3OP8khPEwBxtU/mqMiOrx74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hTUJU5+u4T8YBs8us2rkP8pIYs2aKL0/XGqLpAtztj/nJzHhIDLgPyGDGNzgzOI/kIKbQwr80z8VKVnwi/XXP9b58yXur+M/hTrzZMYt3D/d/SGVtDjfP3oBCtGKQOI/ng8VT3QK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"txEAQRb+0z+ugl5vIsnjP8JFRnwyubg/9YVE6c1swT9kXiMaCETmPzcAi5fr9uA/mgFGPgPy3j+Owc6mGl3TP1tyZQQQBt8/7xWTmnWZ4j8l4kt/lYbkPyGw5LcpyNY/KjjdL81I7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IDHE8oog2j/VyYOGeyXlP7TKqThZGro/++jCvw6yuj8SkGLpZjXaPx3qX8CeUdI/S+g0JzFf2z+mV/CgRoThP57RNQGoWOU/N2RaNzpb4z9VlGDH7NDWP8csGeZ+D8A/blr24n0a5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MaUg+VgQ3T9EllqGUd7kP5ZhUsPk5KA/MhCGMq4Dsj+cjJDVqi/gPwyStIgJUdk/x2cxhmgK4T/aoe0YUc/bPyXederV7ec/PgD6Zzzi6D+GwCMG5PzQP3OMCVjPBtU/+zQLC0/D4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Py216CKT3D/fcobpIbbjP0HCaEYFKoQ/jfZdZ+k1rj9FY92fpmrZP9t9KIwGaNE/ayWWZCPW3j9DRskKrlnYP2e5wDoBDOY/LSdqbr504j9l/+7VUCvAPwUc+VCzq8I/1rJsH6935D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w/h/2QAV3j8AD38R7EfjP00P0Np8UZI/ejoP8K+ftD/SSx4DbHTgP7zmyxE4dts//2aNFNkz4D9DW6d56PnYP0c8V93HI+I/dbd2kI2S4D8YvrdaF4fiP2jtXa7hg+E/umxcGjH97D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rNvp2PEZ3T9Yz/JJPLzmP8flU1Om4pI/XQMSxoLauT/Z7uqMC4jSPytE3maCOMw/D2lurbCs2z+SkeJF2vnXP+QhL+fFPeY/KYp3KpMl5D8kxkHSA4LkPw7xO5PKHuA/M4Q0eTHg6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JswEpqd13D+LdPQ4XCfiP6Rcybi2+FA/07YAg0DUqT92eqZZXiDHP6T9MewEANA/pJ3fTWJF4j/LfTid9A3hP1HgshAESOM/GtkbPK544T9TAJU+lzjqPwdjNyWgVuc/Qs2Tp/5P7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dw1yXAiZ3D/xvAN8i/XkP5sZpUEufak/PgASScUTvD9Y/5jIuN7TP5QadPv81L4/QWo9h4aP4T8hPACJ/ijWP3BbAaRyTuQ/nbPklMpw4j9gAyRpfJXgP7vNEf3SleI/SnZd/E356T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7tckgS5z3D8Fm7AsKabjP0UH6xPMtkg/JqIkqDekpz/87EkEdpnPP9NjI0MYzNY/lCBjD7/e3T9XkUT2REjWPxaCnm47T+M/6qK558sf5z8KVrzP1YfeP6w4djo6Et4/Fg7JS+wS5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u9Znd+Ja3T+p0bkpzQTiPxkTftzN8pQ/sslEmVQ8tT/3A+fpSsnaPx7cju6qZM8/rgJjfz0w4z+obdw3ky7eP7YlYCS5zOM/N3JC7HHp2T987uAe1OPUP6DJReE9Ftc/IKTwD3YQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hGzzUHwi3z+TBWOu6jHmP2McRGrl/dE/Qx5i6REHrT9wWomhvTPiP6QPbkd3VeI/SIl4Jfhf4z+GKUeAPEjiP6eUBXrMeto/UpnI773d4T9q0bpnlU3QP4ZlN/xMXds/FDuKj8Z/3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n4fx6nqZ0z+S90biNHbiPzVTByzx/rU/1EVFf5K1wT/XAuBHT6/gP8hstYt4K9c/xl1r11AX5T82mevDQp3iP7nNMQdt6+Q/NiRTpKVj4D9xgtSqOZ/QPxdHLxm9K9Y/ig7nB2wB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k14y0MX52D9LrQvrqtbjPz0ma62lIMo/dh1SAAAPsT8x9nDbv6PaPwqwhd7vmdM/iulqxFL35T8Uie0Ktr/gPzSJQdCLCOQ/S0FPRwja3j/szuYWjmfQP4XFUzHsAMg/sphxhNZh1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jligzjGE3T/YRMh4FuPjP4WTGbEDhZI/XxwK/p0CpT/TFsWeCGngP1+W6KKAJ9k/KlYTzvms2D8jXWJrcSjZPyt6v9YVwNY/8autUk9j4D96iufMWqPWP38b7sIA5No/M1QugUVk6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CLumlsBA2T88tjXDeAHlP/FPz8LFyao/jbwD1c2Epj8HMadVyVbeP5y5/aY5j94/AbxZggCX0D8woCS7DkDTP5idr12DouE/X8lAY33c4D9bKARNMkbUP4nZkFac4uA/AtCMEhff6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"woCjuwq82j+T1aOHYKziP4RxU8Izxrs/PP/h/dnbwj8RjM0fLvHjP3Q9peSS+uA/HCoi9Ump4z+GKZDbpM7VP48T/GjXu9o/cfMckHhm2D+FLBAp6RrkPxbDmQQ/WdU/L2m+HMPt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sXdjUvuW3j+C2S4esprkP/pC3Tiq0ZA/fvlL7ljhqz9k8wmYrVrcPz3UU1iTUsk/+XdEc6gp2T+KE39WkbfTP1S3qK+qb+Q/RuB8Pk566T/tLVxxywDfP7Fg47g119M/crLfj1Xt0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LMObFjDf3D9a29wv5v7kP50RHlRsSbI/f5h5/KLOwj+TW9kbV2vjP+lFJj7lJ9w/4Fu1+OSC5T+ncqWaic/gPwE4tzvWNuA/nV6thoNe3T+k9qM61aHcP+4aJVCfL+E/YoctIiSX7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZAQhUSrW3j/FbN1w7/vhP6yd2lbFWpw/hD6fbUt/wD/e6dn2ojfWP94GFzirL9A/wWfN5by32j+2WM7xSLrVP6zmfiryUuQ/0k94r1Kz5D8N8yo17CDUP2uf5DihLdc/mc/Zbbee4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RYIQDVdo3j+vqUiYvA/iP4ezjjIdcsM/6PyJltr51D8kgGbp/H7oP3rrMSXZzeU/VAPfWQGF5j8WqsLqaTziP+Sc5Mdu7dQ/VrGTcWw53T8R35Gsx3rhP12zQKQic90/Bf6slqts4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cHCd2HS42D/g9wyTVw/iP4QTtDV298Y/gHIZvFKVxz9htAEGTz/jPyu1iRNlw+M/6sRNi4/Y3D8dhbTpR0TZP3vS7MwbS9s/wVMtdR7a2j+vwtJvCRfWP9WYZG7Y0t4/dOJhPJFx5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PwDCarPy5T9l4GVvKAnmPwcW4qzrKLs/QEo5TAqauj9Qg19fl7TiPz3wsYJ8Ot0/MnOz4CfW2j+kguRIpsXZP4RGsvw/yeI/W04TPBNu4j9VqaJdMBDhP5IZkcr4+9w/BZkIiW3S4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N8gnOEMG3j818WN8DIDgPxRqnkMLB9M/wRsfO8FZvz8dO74NyC7dP+PrYt7aj9o/h9FVyY612j+7VEfBYC7VP/CzH8y7Wds/tJHWio972T/sCVj1l5S9Pzf5UYMdeM0/pGvZok0d4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6MPy+BhV4D+7ykrbTtnoP2fY3FZZRcc/cQ8AB3ulxz+B1H0Af4zgP0Oi7cU/aOM/NRW2ix8l5T92y9/TttbgP9uRG6P3cuI/9471SO693z91+YMfP7fiP0gofOpDjuI/rZYIND336j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n9IvwFab1T/esQYaJRTlP6ASLS0Gaqw/ylT59Vf7zD8l/HdYRJfdPw0XHOHcHOA/pd4RZ1zf1j+MHFED5v/VP9vdpdmKMN8/XFD/g/2D2T8GA/+BmsnFP27DN4TDxsc/OMEqptw84T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rIEWSi7z3j8JTfA7zbbkP3GRR4R7x9Y/uk/2Mr+DsD8Sa3Go00PhP7nYdM2XI+A/f7xYfYBw4z9s4H/Q0VfgP+xomQ55guE/qUHeroYB3T/UU3a/T1DcP9v3DOUsVuM/PWN/bz3A5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IBxEbCBE4j+bO8Baq17kP/fatADMicY/YWB3ckDCrj+88mVT8O3XP05D6BwpBd4/mzkAH6In3z++xvfmhpDWP85mg60av+A/F/Ysspxt3T+Alp/ZXH7MP5WnXFqIY9A/xWYtm2yu3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M73G1smt4D9NkD9WawnjPwToyIctmag/asdw3b+2vT8WzPOSgsHfP9XJ5UXwKeA/KABHqGeq4z+LgX8qHOrgP1kL6xNSF+I/cQCCmj+E5D/QEvyFvQfYP3wPMSx8hdM/BD/UCaJb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Tj8SLTzm2z+tktFKvGXjP7bxNk8PsK4/e296OwbHpD8rV0FNHgveP746lfJzsd4/+G9GWG7p1j/s4UuxhODeP9ZgTBUHGNc/wrxIrfA/4T9roD8jmlzaP62GGAN05N4/Y7QkqcWY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iugEHJU33D/xQnR7+tLkPwDukRaqHoU/qqgTIWW1qz9GDNUHQujaP0GlDYLOTsk/SqInk18z2j/Xz9J62ZncPwRPMlsF2uA/BG2PFnFT1z++8pX2VOjZP/7wWtmbgt0/V0+CeWT15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X2ZukplX3D/0XNwUhWHiP7ryFoBvtrE/EfkAVezOrj/WX+qtJlnUP1Ev0C2IO7s/RDEV26hd4D9/oP/7nb3OP8DT+DZBndY/+mafKhFX2j9dFGvEDaDRP5fODLH8wtk/0+unAdtR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/LeKNjrt4D/WcsKh3JjkP6auUE15zrQ/nahY2ET6uT8hf0yhaWXlP+OfpmQZjeE/R6L/UoFF4T/FopStkBbjP++RxTi+rtE/1RhaQpkQyT8v4E+0KLLeP0RNQ/SwR9s/SUzSrTI44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"srvpwSXh3z/xCQtHOyfkP7tH9c8qq5Q/Lytc8ntVrz+X7j2CJmXeP/TrUvngx+I/s7qHS+zu4z9kCi2SEfrgP9n1oIyXqO0/LMMGYGXo6T8n/Mm4byPeP+BnJnjmGeA/LYytW3tX6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"izIluYbo3j9VWjh8/wflP/bKwYi6X5I/sm3WURPKtT+yuXSioDPgP6Daf9CLMOI/eDaZ+Xcx5D8SL80arhTgP2GARaG8Je0/xnN8AtXS6j+xL2igLc7gPzpEgTfq0uA/lYhmbMUV6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E4D2LTRw3z9lH/htw3bkP9O4wF+y16c/QQXrHF+KoD8iOyMVGIzhP+f23h8Trdc/DOW7TJVK5j+e9UofQQ3jPwe23GBnVOM/l34mLcvY4j8QpxhSQo3dP+hGiSz0cNs/Rqnn8eGD6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6J8HHktM4D8BGKdIWN7jP2T2R2sGzrA/4O78GaC3sT9e5svrHxfiP1+q9iwZpNY/Jy9omvOX5j+TnufeZeDkPzhJ0DypDuI/aIo9eOFx4T/JnLghhcfYP1zI3j0/qtw/elbELcQM6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aZw7rUBq3T+kGiSetD7iPzmVAIsjaKE/Bk4P2XkxyD8S7y73PbLiPwuvsJ6yteo/SWHr6e1d0z9Rpwwg8NjUP70B97D3a+I/o5iwnne14T88/6c1EFTRP97xKXuPTcs/nU9ZNgDh0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LZhP1lLk3j94IZUUpQHkP0hkmjBYX6Q/20xvnxviwD9XW5EYwqXjP9lD+Qs3N+M/DMFuuInS5z+nSKrJzxzXPwpF/DEj5Ng/8v2wSiuG1z8w8v7GSZbTP/s7egLH+NE/iEFpZp+c5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hjPhr+ZK2j9SL5Qt6KDjP8tn0QByyLQ/Ysp+sXPSuj9LMBEIkh3lP1bnD1UiE+U/Mpr3bTFn5D9pgBCkbvrcP1sUROMwSdA/cX34+MdFzz8YK1jijsbYP8sfYMteHtE/8V+asMXV4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZokH2Xip3T+hgqpiNC3hP4gKb4seopA/ILYKtXdAwT/IItKCYh/YPwlaSdK2/dk/2GB++OhY4D9FdPx7sDTiPyrWtKSmQeQ/Vcd6sX1a5T+rFMoDaaHjPzKJsCoTQuE/Dv8x7GtD6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iUmYMfHS2z964xVCrZ/mPyGQLgEIN6c/hD9uuG3Wtz9MtSWsBfHhP9cZomCuA+M/ngNlv3RZ3j+9ydNPQ57hP9nTtdzqINs/xwLVuK302z98tVm2zXjVP6yXJC8IYtg/bzKeoTQv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HbD0aVvG3D8Oy6yK9VDkPwr4BLgcmZo/6xGnFR6zvz+BhwA1nqPOP1omEjbbgNo/ZZePz0qF2z8rj6Pa4zTYP0WseYdEYeU/mbJlbQDu4T/5fcM4NiXXP3GBGXRz8tg/NgYeAYII5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5UZLEdcR3j/ExGi8KQ3jPyrVw1aWCo0/5yFUOQMYtz8PtLP8UqTQP8L0gBnZz9U/EpAjcS793z8erzy9wHnUP7qgUhmJoOM/ADQa7pVb3z8ysR+NVWnLP553BN8WjNQ/pdjl9aXU5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wg5Mk3Mz3D+Oi4KOLknjP5c04+lXwoA/gVyOuUHfsT8oZSTWZJ3YPx0u5yM6vdc/eVvYTvBl4z+Jg1If2HfVPzPqoWWwxt8/EjDyrkUa4D/uKKJ6UyLXP4d7Kg7jUNU/Bt2bNOoB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RfH1KXrH3D8TzPFzzmvjP9C8R217KaE/w8oyxDHBuj9FEgyxZSTZPzEEtWfkqs8/Y3w336En4T9hWQHZy0bWP7GPHG6zduA/2HziopFW4T8xQ1RLoBHWP7opyNYf4tI/oegj5UUv4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3wjzobUG3D8O/9fXugflPwojMhD2h5c/Z4XCm+q3tz+GvvIweD/ZP+JgHdGL+s0/GCzP3hHb2D/FX8wovCHcP/In+xJ+MuE/BQ+mO5iV5D9dvgieRnTbPzoi9GNPMNA/CbEi2xZj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kgjkOCzw2z8Ski7hpLvhP2CquTQrQqQ/cmDlcQuFvD9L22mpP6zWP8wl2Zch8Ms/p/Orc/RH1z9/Rj24ahTfP7wfuqhUAuM/4ldqbe2i3D/IHps/QEbZP6nrz/Wb0tQ/I0hpJ1YG5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6MnSeWev3T/VKTUebojmPx1E7UpsAXc/bMphoxtZwT8LgpDaWUHcP3a2DZqYAOA/01Z9Sjl35j9xtBRrQqPYPzVVkBOnCeQ/fTc+UdMh5T8g3dLerGfQPw9+JGcWi9M/5gKmNwfD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iI/ruOT22z/E0iMuXYHnP5M+rcrlyZo/4lV7SYaY2j8iBXNbqxvWP1f79O/mcdM/JV/f0Ehj1D9wiDw9qU7fPxwZmYMsvOM/wcAD8XKN0z9g2ZTloY7QP4c3b9kEAs0/9A+sUwt70D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2YY2Bwft2z/imIUv2i/kP4SjQlkrPpM/QYDbJ7842T+WZ/nm7vnaP1T/DxsOHeA/aR2vbyk+0z/jG4F8Sf/bP7ySk2gFm94/v5dtCmIo2z/h9aUZ9FHWP26BzUv6xtE/mp/qy3512T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UIM7Rioq3z8exi63nlbiPwMTEfiRz6M/BF9RoPs1xD+GVH11J3ThPxyLXdcALN4/GfTVl1QP6T9g2172PZLZP+BMfhYu1OM/ZandRoY/3z+COhesUJzbPyRmlQBkgsA/I4O4KUB04D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+H/IXkZQ3T8OvNR4qgDkP8FU27Y5LKc/UmM5aigoyT+I4zgV0SDYP/28g/D2INk/8SfF+rJc4z/5XdHCyC3cP/UWD0OZkuI/OcHHKaSp4z+OjVlLg2XZP1guKgX1gdg/tZINMbn54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Mv6HCAT3T+kzl8pnZnhP4B7bxKUTnQ/pJr+ZTeVzz8CT6kpQuXYPxwvk3Sjg9E/Mu1l9MjM5T/4TDuRMafjPwBgfzL1yuI/eWO+qRAD3D+KuMs09jrYP/SrmRP6iNQ/gINlFRy86D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BK7mFYmy3D/0xDuW21biP6LHYp3n/JQ/7m32B3q8sD9FUUkedVTLP0A5r8Mom9A/dF+KcEn04j/X8o+gtR/gPzMSOWpoleQ/n3QoDxJm5D/wan1tX7rSP+93lZI2+9o/C9Ci+Vu24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xvT4Fop73z+RjO0tiBTlP0vsxVQVg4Q/IzcVjiyh0T/AFpaIGFHjP4qQAy7rI9s/4tub7sZL5j8HyU2lNHfiP+QFsb13ZeQ/HvDlVL9a1z9L2QiWlPneP5K4zXbto9g/VExFXLPV5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9jsLcxY03D9qFHxHXNbkP0V3aIbQLbA/BhsK4cpKxj/eTC8DiybWP+7H9cwm8eA/Oi1h2pWx5T9Rv4JQkIriPxQ9F/kPC+M/pKKiMz1f4j9NUb8aBQXgP4R+YYV4gdo/G+Z/yfWK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0Q7QDU8p3j80QYeDAa/mP0CFuAIP56M/P+XPJEehsz/SoLmWlhPgP5d7feftCt4/FvHEVXbr6D8ChjcR5nHiP/Fr9S0CPOA/Yua8TKMQ4j+6UHSY3PrYP6loB5RGSt8/lszaKi4D5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pLqJ15nJ3D+e8Kfw0czjP2WCdsUFtH0/NuLGwXecwz9Y/5CW86fUP0huj9VqdtQ/0cRo3rfF3D8YExkVjl3VP/NLOW1/SuY/FTs+GTaN4T+0zn8luGnQP8su4hxD7MI/ANvVHBXR4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nwsvjvk03D+IAZ+bCUTgP0U9WXOwdag/Eq0G9WfY0T9Li/dBzQHhP/7pSrZl+OE/VaWXrS2M3z/tX+6TEpXbP3DXZvXjK94/Ax4+8ywp2T9Xk31hVALYP+bUkxiYBdo/MXrPaQyC4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IN4JqwJ84D/TodlquirhPwiexM3jgLE/3ra2QY/AyT8NbydQ0JPiP5zSqH1moN0/ZDLva42P3z/LRiPiQvncP8CxIazzydk/ML65qSNO4T+86w42luLXP78JczdC99w/5bFYmpJH4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jM6PWw5E3D/p6p5kIPXePxcf2OV/LqI/bQKNf0Uo1j9dNSikYUPkP+FBJ90QEOg/eh4EjVsI5z+0RreaXqziP1XzuJU3XeQ/OiQmTLnO3D8JIAXoQznZP21LXwbKUt4/cRFPZUtA5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yXJrzK1C2T+4fHLciCzjP4pshFVx5Mw/DoDuQydX0z/Fy+rIwajkP6Pou4oBr9o/41ljYzet5z8p5RN5ULDkP9cYuoEfwOY/yV17tczm5D9KtCG0yL7ePxPX7/FG0tU/oQ8NuBMb5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Iiz1kqU92D/U3ZoMabPhP/hRQAv9NbE/bPPP0jja0T90uSDU45vhPyf1A7GCzdg/btEjv5op5z+vjCwyBS7kPwRRwy79+uQ/xBmChWz45T8ht0nt1x3lPyGrNrDCsts/NdhSrchR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2Hyc3dUf4z9tP5mFcEXkPwf9U3/rf7M/+sgN4b4lyD9MkcQ0jxTdP70ye2Z47t0/b93N74uV5D+7lEgu5ZDeP7e8+kYbVeE/DVFSsTND3T8lxgvTx0rcP5I4m/6EQuE/8dr+fmb55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VzvzAep71D/8jHcYz8TjP4LBOIJU1bI/RUUMBtfRpj+bDHCCPjzkP6U0UFUXU9o//ykGsGBP1z/bbf0hxE7WP7sxSNUCy+A/anHJtdcR4D9AVbew3q3bPwNP+v/vdN4//UqFWinZ6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CMA8r1PV3T9WKod2e3LlP8/Qiw0nDM4/Z9tEehlavj+KCG+Vn5TYP3BivQaIoN4/Yk7NruoH4T/b6eFgAvHbP5XygEbKXeE/F0x08c/V4z/lrFy5qFDdP/rvoHBRA9Q/XF+3YjXl4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"65eioweI3T+NHRLYdlLkP+uKKYso8qY/O3deAKXluz+rK36nxLDmP/aVnF9UkeE/EFS0S5bW4T/cwsL4BEzdPxTNaljADOE/hZEAMad41D+cY+oYPoXaP6OvwGEfadc/MShROESL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z1Q2Al5n3T926LxkXR7gPw0viFFGQ6Y/1S0q4vUi4T8CuaAxRH7gPw1gTva1ZuM/xpQz94KQ5D9S1cyTsTbgP3Ga3aFVhdo/gigvnROG3T99GzIn9/LVP64VLD8YCtE/3gjFiAoz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2XlLtv4N1j89RuKyn8niPysgfKRo+eI/rgFwyzcyyz9/cjLYn0nlP0ErtQJhkN4/CBO05aI03D9/ptHSlN7XP2jEfJiuIOU/cJvAMxVB4T9DMFl5R3zfPxV/8Rk/1d4//7SpwKtH6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pUIsVH2yyj+t0L+YPP/jP9Y/i/AbZMM/MQ60elaiuD9tLt7OwPPTP+mLpf8Bm9o/VaEKqRKJ2j/chsUhzQbOP23k8izvK9s/uGhwO8a+4j9PzWncEbvNP3T/WWIe+9Y/DGOlZVZi3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O/+fp3vd2D/i1dizC33lP0Tns9sHjMU/fYhEf7Ffuj83BBKofh7fP/rNZdmn688/1+xKYjrB3z8d9dAN94reP5z6KmDfQuY/1N75OnF83z9r0UMSylbUP/xMvwz21tA/JXW9dTPO5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZqNWv8ho3z9TPWpUf6zjPzJMLp2pros/Dh0hhjRJnj8xHRySjTHZP+/uVytF2tU/+nUFnbRU4D8uDrKRWPXhP21h0A6fiOA/9ivhyhcM5j8XKI9fMDTLP189uSI+TtY/BhIys9sw4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wn+Qz1TI4T8NFYuFAt7kPw/HNvEjysI/H1LCq/1lxz/xvot/FjLWP+hvYl9Dh9k/awV/556s3z/555S4qLXUP95YyOP+j+Q/s9WC11Xj2j+mSNHNcGPiP7Zfrlb/49Y/Qpx7CNOa5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z1KJCFpd4j8HxZnCU8HkPye54cPmIsU/CY6BRupXwD97k3a5qlLaP3oNYd+89Ng/yFSxMobr3j8pKbvPTC7XP1q2jzQ4m+M/Z2fM22l53T8hbkHjG9zfP9naabbQD9Y/H3JKFbsZ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fkKJ4TW+4j8pZUS2dzTlP0Z8GYW+58E/cvjwgG+mwD8Vsi1MGuzVP06HYltD5tw/BqsHCMM44T+phyoRAfjVP6K4dP7tiuU/Gy/W9GX74D/Dv7nmij7aP6s4PVyfsdg/iwJOfAZS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7ZPTwrx+3T9u2N20NCTiP/2Rjbdng7s/Zv8wT8Tguz/44+HH+YDjPxBf5h5Lkts/Hsxx/V1x4T8LcZcUy/DiP0yvGobaYd8/1P2KQcdt4T8Ccw7jYT/BPwCSIWBA2tA/Dlh7SGyy2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mRXqDOtx3D/a2ls6jNzkP3pxYIxx51Y/w4kZJvlhuT9gHZqGgjzQPxVWOUzAXtg/3rpbGMQe2j9J7oorl9rMP+3ykwwqieQ/kYZDSEIk3D+PMJQO0FjhPzOiPOXSQtw/Z+9b5o045z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T2oBF93a2z9xe+RXC53jP++MHc+cOXI/wsk0U7aSxT9ykVOjvb3QP2DGOc3Xt9c/X8bj1RLh3D9rAIsvysbTP9tK7leyH+A/CbDRgXI74D9+BjjlWP3bP80P6HNYit0/yQxloi9h4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dgzNaF1J2z98TLJSuXDjP2s5ua21lXA/5WirE3UOxz+n2HD2lwDRP4KMLbzqKdY/kfkEOdVC3z97DJsknFXQP2GfQ9135N8/G6ukVt6S4T8m570haBvcP3hzK/ccDt0/v9XDCU8J4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"InoGVX8z3j/5LpLSKyvjP0h7gzNtYbA/HngJ/5WawD8s9/BAUkvgP45X+AuI1eI/ifOsfTwq4j9PdxsLnuvjP6fOYa75huQ/sLgG7i+v2T9AZZL7ouDZP5ZVjRSXmtg/OPjFhTmc4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pKzxcf/d1D/CfXjtvY3kPxNUTlLCf78/SyoicTo9rj+9CJM3vePbPz1bw/Ph7eA/HnTfBVmo0T/VOwBaqD7VPxtlaNGF8+M/ky0Sl+I/1z9/7AEAJKriP4ddUn1QF8s/ZWrvzwN94T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NbqJfA7a4j94+L6qHfLjPyXUzfw9570/S9QDR+utrz/kVjdtrsHkP61Sfe6tJNg/xDfxytVU4z8sTbonN8ncP4/yUUaiPtw/wscAz2PM4z/KEJ8TLE3NPzD3e4D0nN4/Lpy0mOWh5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+zCgGh1u2z9Ff5fMT9PgP6uSsRH88bg/1pCK7Akoxz8YwUrlCHPgPxuy2X8hKuA/tdKb5Xq63z8Q/fO/Mx7dP3wf2pHLmeU//bvd+llq5z/Os5iA6YDRP9raopRrcNs/dqsEN1yW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C9KBpk9a3T9vZYs3yxfdPzEZy5+vYpI/wGMtF2/3xz9MusyLDBjcPwsNggRjbtI/D7SHK3od1T9nE13rOkTUPwMIZhfL1+E/b0utBsoh2z/afQxBQOHYP6Z0LNrYUdg/yWKAoNET4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yO2V5i0N3D/69E3AQczaP3NoxK9Rvo8/Vuk9mNAruT8YTokc7s7ZP7SpcnDREdI/LtJsv8By1D8qaPwjOZfNP4SpEWzqkeE/qgVL+pD32j/f5q00yO3WPxnVX5kdVtg/tR39h3Rf4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OCNFL8Ly3D87fmdYCKLjP64gO9YhHaw//20OTh4+6j8cKSqMlhjfP2PAdWJeA98/JRTGUn/y2j9HhCuNcjnTP2ItgoO9s+Q/EbLACLhk5T86jlTHiyniPykuIueX6uE/DEegPuqy7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"joZvvFFG3T95uCHaArjmPxLOMYoE66g/W6tZexzEsT/4GRwA3fXdP8DEWN5VXdY/OZqjoz0V3T/vIu3861nbP9J9CQ202c0/Awr92W2Ywj+vSkCVazDVP38YkbeuHdI/lyOjcXM54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0qmCTxAb2z+XAU5uvXfdP53fx5bC058/7mPgOGj10j/AHx+jWHXaPw7j5Z+zido/H7db5vPI4D/Xawt0eDHZPzIJYdO+7eA/e50teYdz4T+t9jPjHzXNP7hHK+w/dM8/t5RfK58R4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cylX3htg3T8PJlL4I87jP94u40bM67A/4NkU0ykTwD+XhRfqGcjiP1mXlnM6bN4/UeLneZQp3D+m+vNHgsvVP3SVJp0fs94/xXLJwBy63j8IlFsxoCvdP20xjl4yetc/HWTj2h9K1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"220vviV33T/xZt1gO7XjPw08jRhCjKU/wU+sDlMQvD/gOEqs0WzmP61MrF6z5eg/OLM4yMTd3j+WqYyAdrbbP1ZL5p0H0uI/jHuEZM2W4T+4Iwo9Ok/DP5xfgXRXHM0/fRkLbNK45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qz+KHMf33j/uJKFI3VvmP0nIWjtaHaI/2qeEThj8rj9h9a8Q++3jP+viw3D5peM/8FgXzDQ82z+T3cAeWjPfP/LGy2/AOeM/yRfCUSOd1j84c27WIbOkP8oZHu9pH9A/66vcgVMR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2HVfh7Dl3T9yJzp1d6XkP56DDomnWJc/YP1Rz7KvuD+HTjoB3GXkP3VfQMcgct8/uq7XDlkg4j9C+6/+16PZP0JKqIe9P+g/bDH9/jKx4D8C+3sIxFjQP1HDqy/ECMU/uDZfxCS+3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+Pe36VfD3z9eJLN4XJbjP7sePGG5/rg/zIy9MBf/rT87KvQgHOfgP3Qa88gZK+M/S5OHyqUk4T/xkh5yBxzeP6xycvHItOA/ZnGo5t5F2j8t76yZtvrRP2DKe2LNJNY/cPKfKzHM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JZ9Kb4oj2z/hHTKPkDnlP8Q2S0Kq8pI/uZXXEgf2tz9J/dOdBaHdP0Ua0xmwxdc/u7Qsp1HW4D9nbQUq8OfgPwKKhdFGAdo/znoye+Kx2T81CAcXaQnZP/4VCRuxpN4/uwDO9Kao4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0Aq5DjCw3D+3oJpW5cbjPwzzBu4Hk6A/T3e89HH5oj8YzZPAKUTSPy54E2iDDMw/lqni87Pv2z8cMDO6XUPQP22N+J2XvOQ/0bWMKaa+4D8178XsNZfWP0jlG6xYyMo/6yxARXXn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0d8ksH5F3T92pf+qa8fiPzr5iT7e7G4//Oxsl+vYuT/BiIJI213eP1I97p1aqN8/TTs6YrCF4T+dNUfYs+XWP/nyfOAPwuU/Fo65dtox4T94KxjJDq7fP4NsiKa7udU/cmgXrJB25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XFkvd4iH3j+c4ysopcXkPwljoaevh8E/DiXYt+RhvD+qZ2UKVV3gPx1KYNhNed4/PhiGwsP34j8NV9vxLTTiP6TZjQR0K9s/PRkCc8Mo2T/EP73llYPYPyL64cj8FeA/GiWLhc325j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RB3FGWXW2D+t6OBdOi7iP+0lISEtpLM/z6DjLZmi1z9rLYPgVPPoP/8XyrGWYeU/lUIo10Cw4T/0GIqN6ZjWP3yQ1nibrtc/UyRFkxvm2j84eB12RgnhP0K34czaq9E/4s+g/JGr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T7BnC+wY2z8vbxIxPy3kP493dq0kKLg//+d9UCZPoj+0kUXt3WLcP9vm4Btxz9s/JqEg+uD14D8HdKLTcX/eP2u1wJS2UOc/vT6ShjSA4z92YxrOyKS3PzfTbt/RYs8/M9KC0xzA4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8rP+k8Gf4T8dJu/8P/LjP3w/iPq7QLM//MH5TWR+sj//De9TbmTZP3RB9iMPTtM/NvD+kltY1z9cTt/RVt/VP2XS2x7qDt8/rgRyIu5K4z+LTjWGbE3TP7rjVrVbgdk/v5K+uWEb5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cM49fTZs2T/wXe2t597iPyq0e2EHf8A/ADl/P0DFsz/2tiwR9JTgP8KibF1Iad8/Iggv4UeH4j8c9YeyjgTbPwlaM5i/Nds/vchXZTOC1j9gt/8wae/hP2fPwbomkd8/rx5G4emo6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BcHlOJgd2j9qCeb4OeflP8hq98XOeMU/EBnhkNpYvD+rXqcUZCTgPxVXoSMrM+A/ajxHB9El3z+rRVavwAfYP27mPQxemeM/uQw4zOd/4z+YIf3QyNrGP8NNepSZccw/CdfSgjDk2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YwIO5tkI3D8o7jvAIifmP0hoz85OML8/Da7i7CrTuj/fEDzV0qfdP5+wa17ZL94/NaCHBcIL4T9dXbdfnlPXP3WPUETQj+A/jreGD6HN4j81CtTgrzDDP07KdBTi8s8/PnJ8nMjA2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sVrIOm7i2j/z7zXFaO/jPyO0GE6e978/AkSumPmCpT+slTiiUP7lP6K4XTsplOU/lzLMhPa15D+Jy3AJYpDgPzGGb6fVD+Q/IZjE1EvM4z9S/BdXxoTJP4nnyvtr8sM/cmvBvj475z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NCqGG4El3T8QKJ+Tk97kP7hkiT7PAKw/v8KTTVBltj807KRoYyPmP6GxuKsZMOM/8LKka1Mm4z9iS6pw11nfP7pET2+yTOI/u78clcze2z+pzQUZv33UP9K9oPO3M9U/V+IAmq6p3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fnSAcEOX3T8lCifm9PfjPz62xYR1GKk/AvBOoXe0qj9OLrDOfwzlP6gkDFgmBeE/RHs30En01z9A+OMydofWPxhGZIRqhec/eTEsUi9/5j/VkCBmGBPUP7DWMVx/m8U/8dmu/f474T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MXWE82903j+bhpGSvffkP/QPeoaXe5M/TTQkFtpUsT/QpVzdOp/aP4bxDVoEGeA/IM2evWIc4D/UUUXpt2DdP/7b1qcg1ug/OpjjG67j4T+5FBlWJHXgPxIxFnNqotg/zUkd9bI56D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xIH+xZQf3T8uLUlB+yrjPxj/UZQyY58/xHLpAmVQrT9RAvSBSS7aP0rn6SXHMtc/Sr2gOcB03T8resVrqZTXP92ysMMKAuM/U2GpGWfB4D/hQFdDJJbVP9j6Cn4nJtM/CXyMXCU05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V/3vvNGF2j/f5HDnGs7jP85/YrZu7Z8/a1jmu3c9pT/WU2TFjzzaP48phjXY9tU/5lX+nvqX2z/WQcKTRG7WP23ZUeLDtOM/UsVaT6Wu4j+l+s12rYPRP+S7fNlKrMw/bAJDeW3c5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y2TWK4nT3z/hqiW3Rd3jP/wfgmqhLJg/sFcbhdfnrj/x39/Eq6jZP7hMnvkJnMw/vCQglgHk3z/MYChgSDzhP+4JhTWGa+Y/1W9YRit/5T/3Ib23SMLNP6mO6jeSX90/OFlB5IyT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wT9WEAJN3D9f+2wGpAbkPx89dxp1Lok/Q5BdmEx5pD/JVHNYqrTcPyO6ADGed9c/BwL1m3e+4z8BcYj4lVLiP2hUHP1Hheg/7IGCuiOe4z8ZLiFl7VjGP7xnjVeCXeE/BFqonLqP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qrINWqHy3z/yauefS1blPwbLZswkSMs/5r9j+l+5sj8TLmxkTeLUP5MYlud94tI/m8t0p/lS4T+JI+imhqTXP45e42XeFuA/zqSO7qD54z/B27E+szDiPzW1XXCkyN8/jXgD142A5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PrpK1NUW3T/ZOTsRwHvjP3bWTd7h7Ys/ek6Q+MuGwD+2boSjDgnaP3o6NcqsVtg/KP+d3ZC/5D8x1nldKFvkPzeZ/yLc5eM/mc8+Rlpf2D/go92GunTUP7lr9nERm+A/XZYEOqnh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5zmYnNQo4D8aW4w96m3kP8hWPoWGmso/6Kt2cE4RsD86bhV7qInlP+acbF6Ikd4/dq4BRnih1D9IPOMAECrNPzammTYtuNQ/oIQL1ILm3T8ypPtvhrbiP0xyxSOQB9M/1HWsNcuv4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UYWrB7f93z/dPK2maqfiP1ifVNUkTc4/veheTn9qyT+XzeWjLlPrP+sWc/9NFOs/KxF2x9Fpxz+c7/vi5VrQP68QcMchm90/lm1Rxwu7zz99Z1ZfCpnUPydR92ZHS9E/+JdVh0ZW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d5q9Xpow3j/d8Ut3iY7hP5aRYs1Hkqk/I3vt+yGzyD/KZgtzPmbqP42cHVvjveU/Ky8r9j/u1T/Tt2znk9nGPzjdUx+PJNw/MfVRUmMM3j8DQ/RX4J3iP/19MGMJJN8/xlDCCuX74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lTfER7Up3z+uMfRkA+7lP+e2bUxfAps/72Rf3NdIsT96JnYYKu/gP5ligXJBfdY/lysXGL3m6D+hNHJur3DmPzEN1m26e+A/t0XpFP7o2j9gwruEU1/UPy5kd2Rwx90/4wzO23IY6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5lcikS0Z3D9HDSUxq3riP6eGxNqOdLQ/BPrN567jtz9qyze4dbDdPyoAm3zlvtg/kQJRyssR6T+QoCgdUWHiP7uaaJvayN8/a2ftqmJF4z/BzEIEvNXWP6bPwJvNdd0/Fuh1aw5Y6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ldWxGOVy3D8yvRSTF6rlP240BOdlW7A/I1xPewVazT9xLZ8PBzPmP/+X1/ary+Y/Y1yyTkmh5T/GY3ISND3lPy+q7Ac98uI/JQqDEWEB3D+/dK4TTJ7iP/xBvN6799I/5v4Iay0H4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C+5kXRal4D+eFPBZzGblP/w9qvt+0qU/29eunMdyvT9ZDU+oE5PkP79W2JIyxd8/rk7TogX15j+5wos8Ql3gPydCK7FgfOA/Z4En+hmI5j9KXw7yEdDHP1NFt2mSK94/m175m08b3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1AUOvjSF2z/qhVVYLEzkPwV+KcW2OKI/0gxyJIh/sT/pKnsgeOPZP9vC+/y5FNY/TBIuQclB3j9BGbkSKgTYP24mw4zmFOM/zbMX3uaw3D8I2S6oMAPiPxXbQgO7XtA/1rkvs4YA6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+t5CqGup4T9QIlDp01nkP8ge5pO2EbQ/fW04qtAdqz+NqzeG3AzbP1alqn4EjN0/dEmQj3By5T+0vN5TEqncP9fv7iYssuE/3CfMY0MQ4j+WGQMCJ3PVP7lipnGA59A/SApEYyE54z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pGAkQeFG3j9/fqFF/t3jP3Y86moWjKU/2dM0rFoYqz8jVvtxTkTfP2nwCIZjB9Q/v5LP5gH/1D/2GycDYTTZP5zyai8sA+M/UFVjCNvV4T8owtY/nODLP/wVl15749M/zbElpBYl3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p+LPOcHC3D85j1UOU4vhP++Ct1RGO6w/XPsJgsLvxD9s4vyXJPLkP02EypGx49o/30OOn5y25D+HES/8cJjlP0Ik9UkJ3t4/Mc5SylVb2z/+aTwFe5HcP/5FNYTsGeE/SkJ8XWA95z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UWxL/jJ63j/IUt6LCvTlP8XFnTLuUpU/Zp2L10iQvT+KBkfQoDPhP9Ml9CFMxN4/YQJKzGhC2D+0XqV8UWXUPy2Wjxatquc/QaBfIWml4j8dGhGH/bvXP7XTRg1jltc/RqjVSqJK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1Iq/lMoC4D9fpmjFpQrkPwLg9v1cT7Q/dTuKymQZ0D97pUdIUrTgPwE+FJehM+U/xwhixXUK5D/YZvm1GQrjPyHTZ3bfxtk/8hMhjhGf3D8A8cbERNzcP7y9hlvuNt0/CkfuRtMV6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8kUqmAe43j9FtIvzB8blP5spNJ7vk6U/oRHIMJeLpD+C7S2YtuPmP2gUCS9Fltw//lsem+pV5T+tkOds6cTaPz/WEVjB4OU/qHifLAxn4z8X5rpqOibcPzhnu6dq9t4/eCPWSAJI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t34sTy+42z8IH41eYXriP+Tnrhqrgp0/tXUJZEQFrz9Qge7B+jXUPyBNjHk1K8U/tHMQU2Ju0z92BX2zcwvaP8gfJ2KtTNk/6CW2Ash45T83RIYD9LPhPwowTH9+PuA/QwfJa0iV5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U/PYwxPz3T+2PYhqN//jP0AYeFqp8YA/CiSCRZ9InD+lDswMP4HWP99TVhMC29M/DtIyynBm4T+40BH7IMvXP/WVTeOchOY/JCBMwdRp3D/2mcbnsZ/aP4w0cUAKMs0/75LWnXD94j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Uk8cFGTt3D/Mulc1HDjlPyGr5xSrVoY/FppHis2kuz9XV7cPTt/VPxbxVi5W8dI/s+9r6UTv4T9q6MujwY7iPy/eiML/AuU/VohlvzcA7D8aEDGblZC3P7H/Mq8ISuE/XNyUrzBS3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I3qryY+p3T9pFKvkqA7mP8qI0PI7iIc/URj0/LC1wz+ovu/uaq3eP7C717oXhdM/NSWkypXC5T//to9GDeHaPwS/8/12xuA/0NB5uhUa4D/KyJ0Z2/7GP96yHE4YFN4/FcBErjme3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1gE/3el72z87w4i1O4HkP+RJLhYSrbc/vfOYCyBoxD/fXbFu7lngP3CkB1N7U+M/NAca4lZd4j8LIxWdearnPzskO3ZLxOI/1B2yPYOZ4z+CPVeEeiXVP6EDf3KRpNU/QdmJ+p/F4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZSgKYati2T+IIziCaT3lP/othKmg+cM/TpcdKuAhxD9nyTRqnfbgP8Nah5WvH+E/aMWL7C1I3z/RBOE20xXmP6ZWQeLfq+Q/fmDqwTRk4T9VZiVbG2naP43n3UVKvdU/IItfuPCQ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zRXafQiK3j95vmGssPHWP76Ce1SvIZE/Hh2qnivU2j8dsK/NpmraP2+3yI/Tz9s/AKEYuJfh3D9zXzpDlSrUP2KSXcQ9r+k/9oebe8lB2j/5LsQoW9rSPwZLjiYkUdw/Ucuz7Cpa4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yRc7aBM82z+5WC2uR53ZP3V7wolNW5o/RNH4mmJF1z+PAON9kRnZP/FKw4p5vN0/q4uryyD61D/dasjARMm/P4ofYl6mgeM/fOqdmYl22j/Hi+EdqSnXP01FRa1cauM/rlU+iILO4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n3scsXVO3D/S6IB0HiPfP3q153p+OrI/1k/u72jgzz+lorRxA77mP4SoLOOqS+U/RghEuVkI2z/UpCJ60FTSPwOD4xfq2OA/6YxJpOUG4j/OZad+j7PYP4/sxCtMM9Y/wKMVeDMj5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4ehACqSy4D9HzIYChUThPyx6hYJBzqc/Frh9KL7rzT8kdooSFpHVP4lcmBiVp9U/OX751VGB6T9zJh6JK33lP+2nPSzSCug/d27tx66X4T8CTFo3T93WPw9B87pB+do/HeuDbepW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5lw5D+dr3z+V4nz9fdvnPzBqcypD3LY/GYbCDISWyj93dzej4MfiP96obsHOlOc/c5QEYlQ/1j98KCo89Z/VP1Z06diEjtc/xbEoV6GH1z82vvf8QdTkP+99m9FTs+M/sJS9YUlT6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Muu7niCk3j+6pQEUSUPjP7Tp/zfWsrI/c7cTJwMV2D/0qppdNabnP/YAJx7lH+c/XwWqEH+a3j/rLBxi8g/KPymnddUxm9w/wcE4dP6c1D97aNTEQIPPP6qfL0LBPew/TZL1Lb0D5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lezY3OH03D94wIA3fBLjPydGKGON3qA/j/A/ByK8xT+wBzXGnXjfP9c4R7apceA/0HvhvO824D81Ohx2wlbiP4lggyqYdtg/M4g8d3jU1z9l8Tr+4XvkP0dBpnNvstE/DDQO3OXl5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X9q0Fpf13D82JTbJci7kP32KTzSRzas/UXJlL/zIrj89HVwit+fiP4924JpZdtw/gcfCLrMw3T/i4fjt+EXQP0Yq3rI7SeI/dzkCCMNq3j96pfXA1DzTP/WFtm+uc9Y/iaZDt6TL5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B2azCbGa3j8Ua1X5+TvkPxg6wciNEpw/V66m8fm4vD9NeBzPHPTlP1r2mFzYkeI/AjjrT7/o2z8HVsNh+BXbPxeEniWEk94/UJV95mSX2j+d22qeclnTPzIy0asmh9I/VCG/vAsu5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0r/No1x72j/IjS7HfADjP4UPIUcM8q0/T419Kds/tj/a0NAiQ1XaP3qz05MHBd0/WaHqU5Ab4T/HzmcnGOHWP5hZmi99+9o/qa5bvk1l2j/Dwvm+tMfTP2ELZRDnBcg/bUmfJKwS5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mp0WCgXW4j8kBTiL5TrmP1CWZfjP5Lw/tO9m2jY3tD8GfYBaoCHeP894O+EaFs0/3g8K1oTP4z/R1bmiPDbjPyH/XhNxNeA/qb+Rluet3D9HkfVG2pjgP1T8r17ho+Y/ON5BdIgl5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0wSgRo8H4j/r/LXBNxnkP+vv5ZsVlME/trMyw612xD9QEfmE6BDnP9qaJKKvzOI/79oUWCzs2z9jiWXrXrHVP3xXWsraW94/t8UGA3a03D8BxrnbM+vRP/BE0z8OX7o/L2fBUris3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BIKaVhHe3D9nPK+NcVrjPwld8gmNn68/3EeBp4RAvT8udWeCDhDlP4ahh1Ob5+I/Uo4ZH7yq3T9hRwSHXz7WPxm2xB/RIOQ/AsiDOnWm2T/PW0XmCAnBP/t95DqQ+Mc/Nnq3pOqz2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l9OJdSwP3T+D3YuWPpPhP6RgzKMRxYE/TGS3MWhawD9tNCFDDALhP5jjERnsj+I/ct0I7yOE4j/j6+0TzBPcPzrxeDCVvec/Um43+XOG5j8FrvYWN2PKP62v4HdiMtU/IeXREeSL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uGoH004/3j9i8XShuTrhP4umKl6uXqo/0QH0q74swD97BMNLxtziP/+2fEynOeQ/Drd5XLwY3z9MlLOW97XfP3L9VySC6+A/mmf7od/L3T+eOGbaYZ3TP4Pt/wv88tg/dHb6mntO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+1OcGB874z/U2sDIsEblP66OePaKlss/NWvCc2LN1D9A3Z5PFRDrPzgHS7ElL+Y/MqADEJRL4T96Sqrj1JrcP+5SZjIroN4/b0utBsoh2z+BwC5dN4XcPzjrF95NaNo/Me9bx6Ak5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LUo8SSxy2z8pSxfB7jzkP2dT99J5bKg/1VxLBp++oT8ujT54izTgP0Io9YkjL+M/tb5BWKH94j+UJ7exsWPkP+wVg/1txOE/6ks9JQ2o3z+Y8dDw3SbgPxjYqVqRUd8/BrJ6894P6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ENlwfbqv4D/VpDBLAb/kP4aF5Jc3Cak/mXh0AGBJ1T8cGUznPAPnP9EiGR/kjuA/5ELAt4dA6z8DMwGICgbiP50xYkCR1+A/UXZXU0bl3T+81ajjKhXbP3In8/JPItY/pdo/h+zb4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M8oaKkMU2z/Xp8iWLJvmP+snsZQ4zqI/975gGAB0sD82DzkJR5/eP7db/1EUvOA/Ees4JWzu3T83kB7L/97VP7Fd/ITGmOQ/CNabhvTc4T9sv5v9vvzbP1cWH9Xkn+E/iJVorSLM5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vGOPaoo63j8u1iHIn+7dPx2GNOfdVpo/AKERb/zNzj+YsFdqIJrXP9tdhkcit9E/hMWrmJ1J3T85kAl6k2PYPyolJgYS5t4/j0UdvHL62z9dgzK/2mLaPxyYAtsSYtY/GW7skXdd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OMXImer23D/NiKzNpOnfP+H5z86oA6g/47NffYTt4z9z4uPrJR3ZPx+IBwcdncI/HufcrMDP4D+dMvO9pNDXP2GIbcedn+U/xYvcEEzv4D+gVHCH86HTP3IukMU3qtc/tJfbkeYw4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tpVCcV2c2j88Hmangr7jP85OWIpRnLk/u4yPBnUXyD/vFYSz8EbWP4atvooO1Ms/7XDN7ghJ4T/nVgLiP0fWP1gGpAfp1N0/4Y0M8jfW5T9R6tRCHQ/VP9/zthR84+U/MuFoqvRt6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xnliz0uJ2j/SKZ3Me8njPws2LlGo2q4/y1MfR05kvD+3a8h7kPfePxnPQv6cntI/NPcro+C/4T//WPjCd5vhP5fHpyCPBuU/xupT2z0M4D9P+dd+nPvfP3thTJrmeeI/3LXX6MY85z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PrYiM+j/2T+EyIq6F4HjP9/S2a0PMKk/iuuYf+BbsD8yI2c4nnblPzWfWLwmo+I/IMHhzbev3T+12isPuwXZPwROGvUOcuA/YvsNl0732T/c3VKsrDbOP4rNMjJvesI/46+CVPw34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iv91ybKl2z8SGhIyBFrlP4Mvs8ThZsw/q42oIXYvxj/yoQV4za/hP352oCH8gOE/xEF8elVZ4T8e/sxcJMrbP/sYDuVlat0/42WRgbu14D8h+dyLPmzQP3gYqn8Gtck/TK+nncw24z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FttWTe2v1D8wMexeptPjP0BeJ2/exrw/1hnZ3Hjuuz9VxOjyHLzoP2vr/tD8YuE/Fq1EVuqD4z/4DGl6l8XaP420cpsz0t4/lIGdJXM62D+Me3+QedKnP9wixCScFtA/q711Urva2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fRI5kLqK2D9Twha0NbbkP6PWHV8Cy8E/zO0SZPBZoT+QfDH6Tn3WP9CK8Im4RuE/PZW2yuH42j9C10JdvhXbP+JrUk6ltto/JBt6imTF4D9ueuwwAUrXP398nswtcc0/4xz0BfGk3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bMjzmXZm3z8VOhIR8+HjPykYvBH9N6Q/KQh26o9YvD9RbOuJS8fhP6grvgy389k/5XVIMLsv2T82TgbCaPLZP/tHrrvlYeg/U6x3lr0h4j9m2a04ISvlP5B/3JGu08g/cArKq5s74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mRZ8k3qn3j9POX5xzHziP6dOq+8TRJc/Gb+Bk9VDwT/A0P/3jJTgP76UPchTdd0/9YBnY4uU2j/D51nJ+Y/ZP6jXOUWjLug/pjpuVxGo4z/9VRrSIeLlP4qijjzehNc/4n2efxm94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"31E3z/aV3T9whidtsTTnPw3mMIRebpw/tkwmCuzzwT8gP+25AeXgP+sySndi1+A/Ip7B+bDi3T+RHraucprRPxhDHFKHTeY/EzHOxUPa5T+Lqr2zeC/kP+c/xsVPU+Y/ONaqE5nn7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UAQ1Pyqx1T/9i+4cGIjhP98HH47nJsA/Y/eR2OKEtz+LG2Ken0bhP0oAo2GdjdI/aAleEZJG2T9pWw2MlWnWP+nn0Z0cxds/opot8IOe2T9XTAHLTyjZP/t6mnkc/dA/t8QnSWMJ1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iyXzqaq91z+6XsErSkPmP4bvq3oLD9E/rZWXeH4VuT9+lOELocDjP94oYXy5KuY/WUByEFyR4D8eW8m16ILXP12COFmC0dw/wlwAEalR3j97XY/GIQq5PxtZzxnfktU/V7SapJGo5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iExj/QcK3z/aFPG8EZ3hP2BbBTnzBac/dlDUmUYNvT9XbvJwhhzeP2nn/i8AjNc/dd3nOGyg2T/3got/OTjfP13Xw01A2eA/UJ87YTyr3z8oRGayXo3gP/vy6jHF/so/MnDW4HVN0D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h5HJcnxu3D9Mn+6RTNLjP2yoH00r16g/Xlejl3SyuD++P6YRW4vhPx4QqqWpI+I/5mIkkijj3T/dRrQX7rLMP4wU698FtN8/p3pmIlfD2j80t7GSEo7GP23ikJ8FH9Y/fzB4ddjF2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nPXaHp0X2z8u1n51kBbkP1S1BpRbk7I/bgUkGGMcsj+MZqOnlMXdPxBnvXFwIuA/b1n+Pz/31z/roTXzkwLYP1l7fKEfeNw/gNwVE+E41z8Htfsq1+nUP8au2PfTBtI/FrwrLRDazj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GAPZIbSX3z9geQB/YhnkPyR2FTwmEco/W64dK2Rsuj8YTXcGIOzlPyc7dk0etuA/nxPqstK34z+/Wj0F+WjcP7UGmsiHvOA/EdSU7cch4T/NwKpITyHSPw80YDTenc8/oDJZvgdL5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C79LBzsd4D91UvCRJhzjP5+kvaTo4b4/R50wte0Iuj+Aknw5LBTkP4jOg+02qNs/EiqIHcKF4D8U8A3gN8fYP+gBZRJER+A/sSIyV+5q4T8P+6awrAfNPwrfx6TeGco/CM+Bk8kZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nx7Z4Yp62z/66/57TKThP86JU0VB+ss/8//pjxYbsj/lI0sNhZnjP/d23H8uT+E/j9QXCTWl1D8ESp2alLjZP/Yn9OyhFtc/KrxTJrMc2T/Dk0tEAP7HPz70UdXDasU/QGx1EOce4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PS0j4S033D9oWEkNCGLmP5GyJQ8G2sE/1HyP9mxbtz9PYv9O2mvgP4Tw25bu7N0/uupL/Kxk4T97iGVeXPLSP3SVeZAr/9U/xSbnjzMW0j/+9j93gmTTPx1Fsgpyeso/xD2VBn3k1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"itaq7DAc4D+VheYUKC3hPxsWuQ0jKqY/KQXSM/9txT88uJHfz97kPxy5mZlbYuU/xUU2hwpo4D8sZ5BPUovgP6OG8w32W+Y/W44pl/ZB4T8TJcbc0aHNP06NuON/CNU/htlJYYhe5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mOyMKHSM4D/yXHu6AhrjP1JrbKH0TsE/2J7NuOx3xD9uIUbQW/TlP5jxQK7gg+Q/n04QKmpt2z97E/PU94fZP7EyTWPPHeQ/JOy+Wbrz4z+ddqA7ylzePxDzPagpXNg/4oM4Fv651z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z5nAhryD4z+Dv5Eg+CLkP8Z8eyMEbbg/8vsmy4HvsD/5OFjk/XjoPxnzDJMpheU//MqWC0TJ0j8aGX2iVYvVPyXJU4ZbiuM/Pogsa94d4D+VlOcJWPXHP+vzEsiW89s/3icX++jg3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SX3ii+gC4T/MZczjGkTjP3Mzg0z0Ubs/nQSuMs5ntz9V4aduee7lPxAw/cte1uQ/0XAIl7Oj2j8+H0dCyijTPy0ZlkS4duI/GMsoQs772D+Jd1H7Y/LTPzo38W/DXdg/UALi1ooU3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pjylk9Fl4D9mqMDaITHkPycKCYJV978/VJAWXz9KuD9FaSStVBTmP+PdQa6P5eQ/QAFrc8jy1z+OgvCyFIDTP38XSj4Ds98/LJ4YcuEG3j9bLazuQBLUP5NEW1RGh9s/xUQawCzp1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"49UIoEL53T8shp7z0MDkP1c306WXD6A/6HxTkhm/vT+2whG6zWDlPxNyb8f95+I/2yuHm9ZX3T9ip+H88Y7SP2TTOJym8OI/okd+ePFj3j/zSPoNkC3MP2dw2ue94M8/q+Q/OHWE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JYiiRWfj2z9K/TfZa43oP4o2lGxo6qc/WuSNLKkB1T+w3QZcZYnOP1D+jLl4dNU/jB98IrCi4j8HaiCr3y7hP9MwFxn6wuA/kYDFkRto3D/1YM8n9sfbP/iyXHqeptk/0M1Yd+l54D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DiiX9pYV3T80j/GT52zlP4f+FrGEnH4/KN/FK75Fwj+HbfD/6H/fPy8PCfpwadM/ErxSMnjv2D9fjcJ5bkbbPyLpp1GwQeg/1/C5f3025D/urNoMitHVP2sG6mihhNw/dxlhCxwL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8I45FJDx3T8vfKaO5vThP7RI2tDTvZ0/wkbjCEGTuD8FS9+EWIzZP5sDR/X9MOE/7v0wxawR6j+UAUjF8cbgP0kRMrKjaeA/qF3bcOKy3T97V3sURmbmP9Z+zKTbWt0/VOD8p7H06z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"joRt888W3D8GmjVSeFnlP8HsSpupUJY/rPscF3S9rz+O9rk1qnLfP+rUoQCGPNg/P1sGCuW/4z+HKTIv0MzkP2bzcD/9nd8/kK0DcblQ4T+ZJE/+W3boP8Zkn0kpcuA/7gC/VEFZ6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ubF+6Mb04D/sUHesnYjlP52lidtoAbE/Y/Glb9C0vj+mcoQ5WKfgP1I97p1aqN8/m3TLQR+B3z/K6w7PpknTP0fNraBMn+I/bYFeU2Mx4D9dxCNOOKLaP9ouOFLkL+M/O8aLEQ3P6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+jorbcwZ4D9nDDYMBoXjP/XISpTwMr4//uH9S8SftD+BERFc3o3rP8ooZDwyaOc/LUGiYnWo4D+rhE6oROraP/NuKF7DheM/bZQnB1pA3j8Je1AGqfDiPzWNUiM94NU/2+87yOWi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"drOLYClY3z8q0uEeyB7lPxRa+uSCfY4/kz7br+vYtT+QTLyCaOTYP2oXa+SB8Ng/0TNHlNhG4z+Q3wYRVz7iPw5jTzGz6uE/5/T/weS01T8FMTruazHSP4uo0BjTg9g/ni18noew3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X32ow7Hz2z+U4tX93OPkP8Igqp6OgJw/mt9elPZKuT+78C0qZx/iP/LuzzhI9uE/Ay6uXpHT4D8gIXrlpV7XP5DxJN6J6N0/cq7xG+h71j81yHZBhRngP2f7hAnTyOI/u6CiF7tu5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qmz+/1xW3D+5n7haz4HkP+Z1B55NSaY/dZ3FCaQMsD8crWH17B3hP5BJDLBpFN0/h9SHwSS94z+LwEMZpMHdP3hOiVkN0OQ/KnXj/arM5D/lZsOIPEXNP2rQygonItM/SteDKsYZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/b20oKkz3T+9eOhZ8InlP3uigi/pqbA/o4XiUVGqsj/xo2pKQlzhPwX6Y0QyquA/HtRcWd6w3j8a/y7J58HdP4kvwL5neuA/LEQe9Xgs6T9VeUB+CSXSP/aTtHemPOE/t5mKUwgP2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/lmNOzwz2j94FOHHXzrlP25x5WvfAqs/1a/yOs7wtD9xAmMoY/zgP2MJLyoMcuA/SirRpONN3z+ce8EjbPHdP1djvxe2kN8/aKUxy1LO6D8eiNzIshPNPx9Tin6treE/xP29FO6y2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"azT9SLTw2D/hLWT/RY7mPxRNjx4G4bc/sMySswOGwz85MhobK9TdP2DisoHrc94/5ZTXmCBS4j+I3mF+Yp3ZP0l4Pb8QNeY/HlLBzGMP5j9QSaifpgLLP3/IUcrm0Nc/7HjmBTFd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RLMaiuWB3j+Dc3SrgXXmPwEijf4+O7M/RmE6ndKGxj9X4GB9+vbYPxSjvKAV/M0/GBWMTzjo1D9dw87AH9vIP8XGQvvxwN0/OX+2vofj4T81D3yCvvzSP99lwjHz/9s/S36u67TD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5BslqzBL3j9DNqAHk/PkP8oNqLFJbac/LBX8TAmdtD9OZk/Z1y3fP2qKsWsNO+A/tC0frYwI2j+jsbLkeS3BP1kvDlvRkd8/9NVer/QM3D8PzkNTIObTP3NOG4RzD+A/0pkp0BJb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LqpMr3r53D/p62c+EzHjP2kPnRKnB40/Rkpd8TaRwz/V5zSUBNXcP5AU6CQpR9c/f1tJhWQl3j97DmllRlnfP1xJtbyeleE/czluv0WEzz9HEA/iNoXTP7asCHMk+Ng/eB16jEXP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rY8i/m3D2T8WYO26ezzqPz/y+wC+vLU/plt51qF/3D8TtFF4trHdP/5GffAtddY/mgo74mUM4z/3bDGfvZrZP3yuOGnt89Q/NimyYZHt4j+w8QmV8unVP+XTJdjGsdc/1tbCNYLx3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+R1Rh/sT1D9ThkueEl3pP4LMYjk23sU/JWdFJ8Tb0D9wrs3f3m3mPxSHQ+wBQOc/cy7JKr5B3z9DXvuT9w7YP6ny8vsG6+A/8R0MYdVH1T8Id9Me2DzCP1B6HF/CDt4/6Iohv9v44T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s3h0c2QO4j9y23mt8R/dP+70q1Hjyq8/I7lei+GgyT8IdVpgkTThP+uOB7U+9dY/OSQVSZ/i2z9lgwFel4PVP0z6cGYy4Ns/AiT/i5BX4D/v5GW8eNHhP6dKkTRI7dA/f+JvjHVZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wwskcSD24j8HMMqglpviP7AlTeX9/9I/QxwxQCDo0j+kHILsmTXnP6aI8YanL+Q/ANgb12FJ2j9ZQ8J+8wHbP/7lQ5wQDuA/yph89wKk4D+05PfMjEnVP+q5oFioBMg/AIqf1VOo2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x/gNS1x44z/O/rcSgBrkP5aKo5mL8+E/BzbcK2t1zj/u1NlBpzPlPw2Q1TRin+c/SgL3C73S2z/v+nvFha7SP56nIisaV9o/eNgyPmQe1z+bG3LJIUDYP3GhzYWo09c/cUIhk+6B3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FuI7Q3AA5z8DpfvKj8nhP6pXMVhUWtY/0DTDcRWDtD8WeK9UYYfbP08GBkmd/co/N+P0jSnT3D8oTWwYvbjTP1BZ5TG029k/vxl/RhHl1z/vs9giFM7TP4q7pXsr3tQ/iaZDt6TL5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rFim+Jvz4z/vMmlObnfiP1ZD8iVvfdY/4yfJaKs0sj+D7kfgSf3ZP5QunQ/AJc8/lvgxiQSv1D/MEqbo9vXVPwSAVs5AJ9w/8wD3Z0Blzz9gzmE87CfSP1Fxai2dftI/8GTF2C7T5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WqxGFU0y5j+ZGAHtZwHlPzmz9M8bv8E/cwfqqrxIsz/lw3QbpXDWP/Xk1Rh9wtk/QrUE4Hdp5j/m2NL88g/YPwwjeJrhXNM/TlesP/ko3j89A3jI2dndP0PtACtVDts/IOF6tpJD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kSOjYW6p5D+Evbzn3NHkP2Q82ac1Z9c/yYqoYWidsT/aU3xb3+DXP/bvovg0XN8/0sKA9Vel6T+cOQfHqQbjPzv+OzOu/9M/b5F1MsJH1T/LWHxjqnbTP9ALfJqMZts/kjqsi0sM4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NdhdWoi25T/7N4tsS4niP2RUM1HSSM4/hKc4f2q5wj89vYnJOVrlP1LScURzY+Y/9R39pn+u1D/NQL9Ue8vMP67eqfccJeM/F818vpQ95z8EcFe1bL/bP6eUt5gUt+A/t61sN3SZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UlRRS2231T/hutn9w8HhP/XHhldlKLE/NlyZKTHYzz99q1Xh7K3kPz5OWvlY1eU/bEik2qUY6T/YDK8jOWjnP6cPg3rre9k/mCuKAC5ozT8V7DMdeK7SP1v5nnsICeU/PdaSTncZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/uJVEfEp2D/ixce/nHDhP6ehodz7pN4/sNBYLK/jyj+V3BvpG6/hP+m7EbSD/9s/XnBSrxjN5T+ZZCUR4j7mP+jAlxYh2No/xpZgGNHl1z/1LVEaeHjTPy/8Fj5959c/x1gy518I5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EH8cidDK2z8co57mpzHkPy0rA++9oNg/xLFkC1kBsD+L9ieFbjfhP9P1bOOfi9o/uhWl6oVg4T8x7+OwXBHbP5fX8H4uEeQ/Tj7nFq9U5T/LF50ptknbPx7lb0EWQdo/p8GmmAZt5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PRJ58FMU2D/+rKaUCoXjP8t0O1XWxLs/S+Nt7ufspT+u9HoxsXbfPwiYk32t2dQ/4qiy+Ids4D+ejXrOgf3fPwYq/puy4OQ/noD/KcAk5D+qN4py31jhP+tywfYSUNw/x4mQ9xMx6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M/lG7Tm22j/AAyc4KNzlP9f/AiUIXao/zBEBLJsdtj/nrLdtu2XeP0FHmt8eneA/Su3u61AN3z8raMgZPYzXP6+4/MrIcuM/iMpBP5Ta4D/4n1jtbsTVP+MDe5T7ouA/BlzbqYxl6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l0xEzh8G3z/6aSizvOfjP+/STD7eE5g/nZiSVtU9lz8VXUngUS/fPwjQalyqfd8/6jmP0Kby5T8ZQb+D0bXdP6nOAKfuNeE/E5SUHDUr5j+y+JBVse/XPwMZFIAQc9o/XyNOIqtO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kVLPJGVL3D83bzSzHbvlP0AB3NfTRaE/YVg4OxFSvT+tuMip0d7eP1cLlnCwB9Y/6DPxQRhr5T+c+ijToynjPyOldjNlw+E/vNrgUPaS4T94FaAhOs7KPxV0nEUS/tM/7Tf11QED5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XrIiAAKU4D+btC2B6jzjP6Z0c6INJas/8bWpnxmQsT8VgxdcAu/iP0H4iNWhyuE/PEYjB7eF4T+2Ijpc6izcP423nt3RMuA/uB3w5VS/2j/xHHoWnNrRP01TWb5v5NI/LC9LflEk2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iKXIFCaz2z9NWGgELyLjP78XrIpPhJw/BDKyGyWlqj/kY5qQYqzZPyqnnvduwdM/fmwbjkmc2z9C10JdvhXbPxoHlmLNIOU/vdhYukG71z9rlEbACMLgPzAXMJIpft0/vZtnwZCS5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ihw18CkS4D+MAGSflPbjP1IkWMfYTao/6sgnyi0akj8MsIjpe4ncP4+DIKYOccg/6ZkVU27A5T90rRpnu3LgP59TD8eazuE/r83kvlZ76D+0xqkA6SbPP2SDr0oWO9w/wadkPCR86j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XTrHRzL52z+7XJ1mRLrkP6wYhGTcGpY/ggoBehdysD+E6ZjOfZ/QP27DhTnzIc0/apQrJK6F4z/EV0xL0N/jP8n/XMXkiOs/b5UdK0/L4T/k+G6cUuTjPy1yeCuldts/aB0ITTOt3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"klKW3RL93j/i41Zn7MjkP2waEmaXJp0/BgUvG9iqrT+0WryRtr/VP6bPe5xWL9E/BiS1mz1y5j9319ZEMLPhPwt5YAxcRus/IJVgJ5k05D+gDWtGur7gP5sUyvo5T9o/m3PW0EeM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yY9hbyqB3T8he51dyLzjP1OpyYZl36I/xXyxHcRQqT+2Tn+BvcDSP7VbQ8sSrtI/JcEKb8sT5j94NKn7G3XiP9C9aDpQQNk/8dPl4I4R3j9E9lqpILHhPzD9hH5OO9o//Ozx6Ksq6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OK7YUfNG3D96CYYdP+LiP9T3maUaUaA/QHNX1HQXsj8/kbXms9fcP3+9zbPSOMU/7FpBIQQk4D88KZVgYG7aP+OT1FA7l+E/7J8dnYQE4j8obq3hk0rQP/TgEVMIN9Y/ZT10/bGD2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vhchUKnx3T986OwHQpzlP26AX45bLps/cyjIVyYBxj+nq4LLfmTlP/MpJFesyOs/HnETU4qu4T9QLEtaMLzYP3jXa/HHbuc/sFgiAx7/4z86z0VW6WjiP/fWY51HFOM/mij8RUPc7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oNUmvD5H2j8/vixy5BrkP6eYE3rGeZo/F13vvSk0pD8ndPT9UmvMP6AzYcvXWdQ/fq6807eo4D91IGEDodfZP6+dGu3jE9c/oRtjFTWb0D+eFP1dzEzOP0c6HOtl9cE/fxC3lH4Y4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qx/zeI+e2j/f1P0LgTHkP+jGefjKM54/VKUC/p11sz98Lqx2w0nMP0klJmwUxdU/P6mZFaWT2D8aBw1TqAXXPyliLFHwtNU/xcusSpc9yj/FFaW3hnPUP56t1xQYw8Y/XSCkD/2J4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NOikHpwE3z/Cp7GceynkP5I2XA06JcA/0DXh20dvuz8Ed2qPQPHqP1oOzzYZROM/wdjmCktm6D8rn0A11SziP0+zuA+eX9o/YG0iAZZo3z9Brfj1VRPkP8B2RcjEpeU/SdjTqy3X5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EFADM/VC2z+6mXiIIUjkP5ey3zXtFtc/zPAI7qcLrj+0Mgf334XiPyL7GLp7/tk/OJIPNVGK5T/dSwp9o9bQP98Aqbd07dk/16kVPYdQ1D8+f3U132HnP8kZHu9pH+A/N3SZwlW/5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UWV61ctn2z+pUjvOLCXkP4Hvwqvqt9Q/gvUU27hGtT/Ph7j0+2fjPx56sQKlCd0/qUwiNWjq4z9VmvydG4vVP+/BmWV55dw/VpbpwjlQ1T9bJFhkO+XnP3VUv5H86tw/mtVrbTus5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GtFNwGTm3j93O+OFdEHiP1gCsBpA3+A/YWei4g2Rsz98WoTyq2fkP6c8T1foQdg/k7ax+U2G2D+kLlc8UMnZP/y+Ogd85tw/0p8C2cja3T/yxSI1083kPz6TjoG4EuE/SqYtsXLg6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fI6apdoAzT8LthNd3H/jP2RMu5r6qMU/ZYBJees5wT/JywJfEU3iP60MGbe7hdw/Rw4+/Tdi4j9XPN3L2EzgPwxKXy7R/dw/GyQPC6SS4j+FPtznxpnMP3qHLz4yj9A/9P3V+PyU1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8nwJSrDO1T9wdKhhjM/kPyVhrXUypd4/qemYI041uD+pKT5MdqvhPwoI1hL90N4/x89Ldxxj2D9TTWmVTL/dPx/iipJCl+Q/L7Ky9y3n3z86tuCB49HPP+/UoOT8A9Y/chEo4dYO4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"owKlgLyq0D8DsToEB/XjPwRexjoC1NY/dsTa5kejwT+pBjQqCTToP2ZSbmRmRto/SCnyojCS4z9uAL85xtHZP7oieORkeeU/qXsD2r7+4j+dsXYaNm7fP/lyB6ESr90/+ORTYMp44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xCNvw6EJzj/j6MPrMvblP7n5w7zGzNM/Ery5NxhiwT8qBZe8IpLiP6TitOaxx+U/+gR4O2G1xT8SCK6ysG/RP2FZ4vI/ltg/GGc0KlOc3z9zgH42vm7SPzAk1mJrpNo/6acRCROw4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I2QWjCJd3z+lbpb8L3bhP3uz6zwV3tE/s7qPKjDvuD8nLQN/W67ePwElQNGgBNc/t87Bg0M+5z8qs4N5PkDlP7y1bVcn6N0/cBFJfPuf1z/FXZRcbq/SP+/CAOTanNY/As7NIjQi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"489d0Kz04j+Yh+OWBL3jP7EeXwkIR8Q/R/LKW0JPxz9XhJ0IokTiP09iZcN4FOI/HdilLx8A4z+5iVoxbDTkP+yZcXzLbNc/fn3SYt2x0z8Q40/qJ+7VP4FIgYMSTNw/4udGMUwj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ikw9I9HV4D99CmHFyS3kP1tnrA3Mjaw/yGgPW9q2rD/2bq9hQl7eP+dvfeltW9w/yNgfZceZ0z+a3kus0M7UP6jza2kIpOQ/JqE6gaIG4j+DK50aBrnUP5IpHGzdWtI//coUUTP65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nWz/28wG3j/1abYXS9njP0i2uxCB16w/THdk86cOyD/aKqnfEvLhPzkq4kJ0KuE//yXxTpHk4D+GmR/9lJLZPxzdWIj7Qt4/sFUMfVDI3T9JHpS4f4fTP5QOKaztWdA/vetsdP4/3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w2shalNj3T+KxFirNZ7mPzV39fUBSrE/pKiREkFvuz+63qHa+j/jP6PGcUbzs+Q/jC3P1eKY4z/Sx9rrmlDgPwm6ltpvKd4/rflvXDxL4T9ueXkiHujHP+iFlllrqsg/vaitlZnF4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nMnWffmy3D9Gsn/DfP3iP/D6i+WhIZA/OaXkimyKpj+wdcGX2FXdP8tNK8Cnkdw/0z0IezQc3j9UEGNKFPrXP4b1Va70m+I/sH5FdC3w4D8AFL0y98rSP4tmU5YrudA/6rc3M5E84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+tc8zktB3D8lAB5AG2XgP+Yh40LG9cM/FmzeKHel4j98cQzF5F3jP4qQHrgV+N0/qtaJSlJ80D/sICqlir3OPypavjaGh+E/iSRw1upK4T8jm5npVHXdP5Dew2QXhNg/9trHzDDp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AzgfLjCj2T9vrZkz97vjP+JWg7OWLKI/5C2tIe32pz+KhuE9+b3dP9U/0buOAeA/okUgTsNw2D8zV84GmibRP7xZaq1QlNw/sz8wgueV1z+TFUXExv/gPzMTi9rC+dU/YV0eiFje5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jXG4ueGX3T/pmqXAPZbkP2aavJMMzb8/OR3GHl2C0D/qVQgSf27lP8k1zTa7gOI/mqvlhimR0z8hXiKECSLMPwt8MxLVeNM/lqokRDXD1D9hZN3iy0zFP2FD1Wp2t9M/xm7j6G8u3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YAqGzTjn3T9BeYN3BfvkP13ILwNI1Mk/wlYdZr330z+IK23s5DnjP0n9JSI2X+M/RSUuBgRI0j+5OR/K3GXHP9xPiTTq59M/3bXvlpAi0j/nR+UB+SXEP0w7nXUVFNY/YZqJQWHP3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gD9yYbEe4z8Hp1mn7qDjP3UNIsCsbrI/rLPguD6drD9EXuW1PO/YP93iWcif09M//Vy0pgdA3z+rlET7+FngP9TvsDVCVOg/nUctErHv5j/nxRQ5p7nbP7k8w8000tI/tmXnjkLX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ygPfby3x3T8A7/aUUX/mP/JHrWJsSbs/r1IKb6ADuj8srOQSDuHcP0Hfz5nLb9Y/pXf3LRMm5D/3Nq2muf7XP5YsTF5IjeI/8GpidOB/4D9+qxBxxmrSPw7TdkwWsNc/zqGShJvz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LWPmO9Hh2z+fkweUB07iP7XkZ21CALA/XL+DtFcIqz8KEFtC+RbaP+Gf6t0Xf9M/x9azhjm54D/K063vchPjP+BWB/ti49o/ec9BEjzu2z8VXx5WB8nTP7DCAQM0uNg/nPznSgzz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"igRWy2Ym3z98lLIt3yTmP37n6eQk76Y/rpiHmghjuT/Jn3O7xkzhP7g4kG9xH98/LQ0Z0aGj3j+3Q8bgNSPaP5blHhMDOuA/vx0Yd0+M2D+C/U9Zyz7gP53x3nFvPdY/ooYK/aEX3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ESP9R2qI3T8KqHW6XTTjP5dzCInO54E/s0ZYp5Cksz8KzmGta9XcP6WWLUEdrtw//T6Gcxit4j+gkmLqBy7bPwh80kKDWug//MOK26eu5T+ddRvYfejWP9+OiqbhTdI/QgTCkV4K6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Iu1MWuL33D+1GJNpVgnmPz5/QqBkeJE/bhEPGm/wuT9yAiq0T0zYP7VzXdsAzdo/+xuZs01O4T8+zPazcLffP0tgviaRq+I/a/ytjRFG4D/TP8vhwZfRP4Ix9B51otY/Ko5djAux4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nLRDinO83T+vHWBChzjiPxXvL7/OFKA/Am41Ur76qT8hjb1BiZfePxmtf2xjyNo/mzXPz9b24D8y3Rpp7BPhP1e8qqRNOOU/7qKBSjec4T9dZ59nFFXGP14zN3+zjdw/7nDDwjA43D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CPAg0xDh3T9z2zzvnvfnP9Y3UFxo3KQ/FHoiKFn32T9z+rrhokHkP8L9YYBoLeM/IreRHdCZ3T/rNPrrslPTP+hYX6GbttY/NcRjdOvE2D/e7hdbH8LXP1xaKfF4AMQ/93c/dhHS4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zQ2uShcU2T/lNufJUbvkP065wqoJyrQ/h+jVdIDC3D/Amyx5PfLfP1QsQsn+hd4//NJHyWGQ4T8wv8j5MS3fP5ukBP16+9Q/5g3yQhse0j8LDU/Ft2HFP0lOX46Po9A/VNJu6aHz5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8GSBJY+o3z8p95ZBbRXhP1xeRDKqvaY/bHwHAmRfwT+dB4j8Xi7iP7yl6Zyvl94/Syg74VvE4D8weZJV0B3WPz+/Qw3NvtU/qy1AppMz0T9pt4/Zs4LiPyNMdXEWmN8/DQagT2j14j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"omUqHcz73z8vlRc+2lfmPwQMaV/m7Zc/Es4rSoWetj8Y7eG6GKrgP0ZkUnzJD+A/j6rfiH4s4j+Lm1oGSTbaP3LQxDuHA+U/odPpfUL24j+e6+Do1Ke9P9j51RvxMtY/A2kpFfaH1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"usW0BnYL4D8BpeAVLDLmPxDB+lpUk5s/CURsJF4dtD9GXMGJoCnhP3bpOcdXxtw/heXV1Ntz4T9cJ9pu1z/aP9ofizukB+U/J0UCEsTH4j+VTOYPB6fBP8P+Q/fRtdU/GJezQTxI1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MNOB7m0u3T+0xeU3PO7hPyTnToePaaE/+fWldtudvT+wt/9roRniP+eZrOVKMOM/OR/FMM3p4j84vS7DgzTWP95izeLAjeY/FTsZx5bT4T8iIgtWnyPZPz6HVvFHQNY/ilh5qGnj4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7QLyJjIs4T8gHiREJzfhP61riMuuebA/cVrkcyk3yz8hLV3RMmriP1/DyvIZ0+Q/jkF3IQ5F4z8Wur3xLzbdP8aC2fwclOc/z1zwBA+b5j90DS/9zG/dP2GDYyKdD9U/odB9sIu34j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jZ6YyjUe3T9vK5TNGsfkP1i4crtMObI/9oTu51qmyj9mQaGrIV3RP/XQyM4MBdI/X2Qw29vI2T/W4S15GqTdP4Wfe1B5t9Y/riCYuY+j3T8JEQ0DGNXJP0khBawYnNQ/eyGLdg6k4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8AOC4nTl3T+aJSVC3kjjPyF3hi2V5oA/64EsZrM1oj/hTRyiMmLfP7wWOMa52tw/pd3SSNOp4j/WyEt0k+bSPymd7PD8i+U/kRv1YqJI3T9hKYmwfrrbP53YxzIi5Ng/4jnFYhQa4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2RTyS4t+3D80mlhFvSPjP6A1IGNEcYo/gVcJj4nMrj9Hlt38vJvIP/HJqzH6hNM/+Upe8Ilp3T8Ok5QhD33TP1v9p31bAOg/oG1mDRG+1z8WeUnk6JPhP2y4NFaJ59k/VqTwLmMk5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z8iJNwW72j8EoZiLICDjP20RK1ea+5A/6s2dVVsGvj/JQzYsggPaP8YwB/tSztE/pfRiNckV2j8TYixPjRzTPzsDYT5yu94/fj7MOOYz5j+Mr2VVh/vTP2OWhK1uldg/23IYCmLC6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g2q81kGd2z+RJbltT+vkP8/mXmTegp4/CEeSlYWbrT91OzB4O0DcPzrMb+DsN94/slxAnxj23D8VaKrh0k/WP7P7PnLl+OQ/foIMzimC1j/hUw1msG3ZP5dPXoKAZtk/25KTeTP84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TI6mniPw3z8kLpDLNdriPw5dbw5QxKo/1aGQi+5E5D/47y48fe3kP8Q3GLMMg98/5mJyUHrS4D8dIiWt0dzcP+BWNxAHb+A/FgJdOdh76D9fZcuft6O/P2fUggxsccw/OjIaN5cj4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SkUaUw7x3D/IgcUq8wTlP/qVR5/9g5I/ZGg73pK3wT+I/XBEYFbTP1tCVdaZlNs/eW2cGEKZ4T+Rf0OgQvPYP+6NO9RZZew/0wC/VzJd3z9tfeS0hYngPzaYQgeZ9NE/pDQA6cg54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WvwiJKOF3T/zgvm2mkzjP9vxmXRvnKc/9njCTw8CrD+og80wqCriP0TtGbnqN9s/ryMjx5hE4T8A65SOBt3dP0Rdr+mzjtE/HOmAQvLv3z/vmjL4fnfNP3JOamspIdo/z6nEhu575j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7WfzMAPS3z/H/hyhpITkP/5EAUyJ3ZY/tslRYQ4Mvz81JrUQWMPeP4XfSky9nt8/umgTcR3G4j9iPOznDevgP6EzUwYY3ec/lzWH2psA4D8bx9zj9gbjP+MIZTk6/9M/SutOuH5R4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NGnAWznH2D9Kede2GZjkP0YzUUnNq8A/MALwJ0ce0T+lzegm4r3cP0SVkjBgmdQ/+jLcQidB5T972mMdTV3cPyfbJpIWmtw/J92o4/hW5D/NvHW1I7fRP3z15Ir4ONk/31bkxyDy5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iu7knOOR4T/ZqHUuE/fiP6Rb9Kv3D8I/RsSuX3AuvD/BhhVEoXrfP5cQAY4GxuQ/iDtC3pf83T/PnR4OJhDfP8gvAd37M+E/XLum1Sqv0z9doZLg55fYP8WWHK95NtU/oGWsAWbF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LCYcvaUT4T/F11P0UIbjP5sdEMVT57Q/x9YXXhAxtj/oWuAz1A7ZP3l4ZOt4XtA/rAZL2HKP3z9FObTUx4HTP0oeHtw9TuA/Zc5yyHzR3z/NLv80OYLbP0eAK9uVeb8/cbGXpU4f3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EQlmQ0ZZ2j9JzE3xwzvlPyE52uOzv6M/xwisdJQPqD8CuaAxRH7gPwDkk3Btzt8/1vJpw1am4T8yLZ8r5GjhP4w0kp5mt9s/YC3j0Gzt1j91yetA3JS7P+PhhRFTV74/ZsU19g4t1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WNOj+45k3j/SS6GB0triP6OEni5mHqs/m613BnpQvj8nhsHzlzHjPwB178bdU+M/0s3l3s5H0j8HJYUxT6zFPzDwW866Et4/ofIlm7GF4z/Ic5ysjSLYP6tWKDcQttQ/3s/Xrse75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CtbzMF5d3z/VTno44v7iP7jxaLfDvqw/ydDCJx/SzD/vqWTm70zXP+9oeVY1MdU/iqX4u8Ry5D8kBV7LjZHgP2RQ+2rUr+A/FHdmWvRXzj8N40/qJ+7FP7mJ91WdUNE/Iu7PSe7Z3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KUUFUiJg4j+/a2bK4NHkP//x42V1gcE/st3njScemj8Kpqh5MgDaP/GtJBg9f9A//epuIqpc4j8XeLo5BcXeP3nZvpsc/9k/Mwo/69i02D+HfWWtP5bGP/Laz3YTONU/HhI+JeMh4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QPjdVZbs4T8EUnypGZ7iP+mwDFatGrk//KQwOba4tj8f/a7lOCHcP9ygRtApiNo/jPwgTxHn5D946oMS2sPcP9OyIdFT/to/c05MkGxQ3j8FDqmAGyfQPwVWl9LX/M8/KuNPjbrX4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XN5ORimp2j+PCrHQO6jiP58FkP7Uvpc/Vo84kcGy0z9JOiK6KSDhPy8C1hM9+d0/zsixtPgU4T8vymjnMHngP93Z/0wo3eE/VVVqytzW2T8c7MPFwkHjPyMwOgUS2d4/StOB/0+o6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c8h9dTjR4T8zXaRmCY/iPz3/TCHIsb0/rcxKoPKpwz+4RcGLzIfiP+61FzW1ot0/j+ZTdtJw4T+v2y/PqfvZP5jXj3cjwOA/+jV2cKl44T9MlI/IEn7iP0+HhpIs7uI/Jw/o06G46T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vV0Iqt7t2z/KUs/dW7vlP0IF9esmL54/pk67+BZHrj+q5ZqlODvdP+RLO0feWN0/Vnio+8wG4T+TTItzoHPaP0DihBRaDOI/PGLkpy9z4z+m6QjIOvjHP2fI/lOCc9o/NJYhKvMY4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Si68Egyd3D81hI6Po9XgPxw6JZn2L6g/THLkxKnXwT8VvjkaxXHfPz/k57PbXdU/ht0b6Hvn3z/usGstsHjaPyA1QJxCBOE/MdKhVlWP3D9f5NnjwAfnPxMyqkf4i94/jvoLTPLq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tflFx+Dk3D/qNd8Xu8XiPxiTo3W8c58/SqaJ4SE+vT+YUZvA04rdP8cjngDKtdY/ushLNZOk3z8n5JJT/SjaP+Y4j/NyQ98/g617sS8z4D8mMv/z4vLbP/O1gKdVDN0/dHOluKhg7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PkXe9gZr3D+PIDE0pSboP2FK4IrgaKk/I1MldSr8xz+Jpi846CPcP/yjDi4fuN8/TlX8Rjz54T+LC10lenfcPzkMY9lfP94/BA49nh7w1z+1ieKtY8njPw46fHwWB90/nO1m0tD64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t0yjuCyD2D982W32VVTiP/QvFdqrua4/GyMuUS8xwz/BJsGech/iP2ldBTDJN9o/cmLOxmOG4T8BZhKtb/3bPzUdlMAKWeA/lkjs3FzR4D/QkBloAonXP/4fUuCgBNM/ECXa/CTV4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5Lm1JSSO3T8EwrckeBXmP2FbHm1NDaY/SDjHjSoQsz9J1jAZ/UneP8JMc4rl/+E/3s/1JFyH2j/JIvrnf2fcP/ofEMkKquE/mbKKv5+n4T95JtwleFDQP/RLV0qeT9Q/u9+GTx6p4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fOxNt7fO3D/wCarsuN/kP9NQ/Pc8rak/Ww/0V71lwT9FqFnong3ZP8tfJOJDtNI//DAzwOW24T+OptBRb4vQP1JaA6kK8+M/cB9Wg9Ln3T/nVWrYQSjUP7ivAI6l+9I/7LhBQ3CG2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uH710inm2z/+YxkRnHTlP8n7WBISaKE/1hZnAFgNyT+CjZhMr6HRP1YGIdPH0c0/QlEqlsKawD+uU+Ehsf/EPxk95s7vEt0/BbOh5qfs4D8/ML55qWDTP9a2KbWMQdc/8UTlCsHj5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"egOKsxzn2T8Z26qcEwLnP7kZWfoWNqk/cF7voYhl3T8ok12LX8zQP1+q9iwZpNY/GmSFWCpp5z+zxrTAVeffP47TP+WHy9M/g7soincq0z96PK52W4ztP4YirmpoG+0/7MFeaI4W6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DeSzMDDF3T84PgOZrnDiP6fdGPji66c/vgSXiEtqkz9DVMSfGn/eP1IUbDIPWcg/44ctsMRG4D/40HBXcQrhPwbvz71e7c0/k7E0bRvMuj9WxawKwhThP/Ejri7LQ+Y/M3tNl9rk7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BcEtV2yN2z883jjfmATmP0FnXCVM8qg/XR5VjtKhxT/2nl1NPKfUP8/nPU6rl9g/zsRAntnX4z/RS5gAiKzZPwhM4wJGhtU/myMFsdrw3D9EJzvufYbrP08xAgozvOQ/hDLC2F3u6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IUqS9BlI2z8kEB1m8mHnP0PovDSsw8E/ycPDJT3W0j82KcJCOSnQPy/md+lTEdo/vKXUc/gi2j8YFj7ZsvHTP4LI0ba78to/wq2PJmPg1j8W18KFDsLsPzuLmXca6OE/IKByMLCW7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0GUPTQHr2D+I/VPxFFvgP3rbYTsgJbo/CzFSPVdTsj8zCWh9IvHiPzckVSx43cM/RR/j/YLN5T/+N4GPmCDhPzap4WgQ8NU/puYHGyBn0j8ucnIdCkjRP6ZiUDzfo+A/EQkTsOCp4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yn0BhFQB3z/gTHdoErvmP+WztFlHEMM/xFEu5oPnxj9wkmEgKQXlP67kqwQLENk/gm46D7sD2z//RJt5kILbP9k4Ijoa+eg/IGqq3q8j6T9Fwo03kiTaP8XYmTEhAd0/zUP/Eh5F5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KMsCXMAf3T/y7IXkwlLjP60BG7zTHcQ/aluqa7/lrT/wHf9QxSPZP+sgbN/wiN0/mgTYUm9z4D9z5AWAlJDZP30VIZjy/ug/OtYYdE+Q6z/EWt0ueS/dPwmyHtuxAOQ/lLdq6zI34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T/g79jqu3T/+F60PO4/lP8rUeyXTm5E/3u0v38I9vT8jHmAAWb7kP+QeZ1zu9t0/cKxQ2NqW0T8BGjTU78PEP6Kaxgiz4uI/aMtjBLGb4T/RejzAy8TOP6yPWHhjs88/EMJ4Knrv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"14ysJeSb3D9sFmLBZu7kP5QWLx3NY8k/aMs0nN9d0z+g0kKV6CvgP/mqVfotFeM/TmfAEI4s4D+9LsODNBbkPwHdsORzrdc/0GNgXIT0zz8xitDhpOvUP2F4rBzcW94/YytRCSm20j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OTkzLdJM3j8guChmEsrkP8CZ+0zh5bI/AVUohdNUxj/VKokX/hblPzrikFIxkOc/xKALdPRM3z8a/jqmU73kPysnqcUKAtc/2HnImR0y0T8PPQtO7ajcPwJSpvL3TNE/i1t46/J+zj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QSyNxAQJ3z+HzUAEZjXlP6LQliwkfq0/xro+MQ3Vxj+wFWlZR1/gP3KCAEhDi+k/RkW9JtQJ4D8AfuaJ5LDaP2QDSseTcc0/s11Nphvz2j9LRkQdqlTRP/z2VguRIr0/jw9lNTpk3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tCC0T/G01j+8OB15MWDjP36Ly5SItrI/ci788I5Nqj/MYSsfJI/nP16PUXgaDeM/FkvaUUk94j+ZTTAGlRTTP6DT1LDlS90/D4/6glkK4D/GzFRZJei+P0EqH41L1dE/ecyooyBc3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dLfIOX8F3z8KCTIk0GPjP+I7cMz6Ysc/drNrJeGK1D+Lp00Z3tjeP5KnfhLxBuA/7j7D+nwl1z8JdACARoHfP7niB2b+6+M/3mchHr1o3j/GYG80NlTYP4071TRXWdk/d4oaWQ9d3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1mKGPtiu3j85H2kf30vgPwVZJzN5ooo/SpG6h2OezT+Apn2/lw3hPyJES89USN0/rdbc0F+J5D+1oNeKZlfTP61Ilh4CKN0/Mvyg2t+Z4T/8xbLdHWHVP3BOMY2OwNQ/X+fseIGn5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dSV3WwK52z+bilUsr+jiP5RkXP6drcM/l382wJMp1T+9NTwjm/3fP90Xmh0zNOI/hjgBjs6bwT/++C+eUcbSP6U2ryWhluY/AvdNM25U4j8BjqWBEOLRP8szyQJFYtM/f+uUSPTY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A2Wks5Sf2D/jAKjy3fzeP2H5BCaAQLc/yeecH6SVyT/ZelS7mEzgP2Onyosx8t8/yiV0Uv431D/f3u0uUrfEP0nbsTDd6+I/Ug7kF4Sp4T+6OnNG0xHgPwp2RWaTEdk/T6jMRNPf5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"atzTItAP0T9C0M8ZOZ/gP1v9W6/Fw+E/8JPNSMAi1D8A6ta0laXbP6MEGrXqlt4/fZED9i0c1T87FJ3sp8jWPwLNBn/JUdU/MuYhz6qk4D/PWBdjSJLfP4a3ZbSVHNw/I7Az/JFt6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IblQ1wVP0z+Uai0E/yHhP+cjsNj1N80/A3NIlGmi2z+osqJ650DdP3yiJ7+r4ts/CClX2ecB1D+F7g52robbP+W5GVCo3NM/li2QVQ9J4j+5Mp0hBM/eP11zsuz7Gtw/q8KBjRCW6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rxadVjMi2j86Kp2G1qrjP+jd/W13gsI/aXSA1Gizuz9kdZfvUzHXP13T5QA3A88/g6B/At8V4z9Nep57l4HTP2CNfq0Cp9o/iGMhF/tmzT+dQ5mDFwTiP4VmQwuK1OE/NFdc36Mg6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vBuCOOlW1j8dpggiLx7hP8JJsf9XI7Q/B7rK5pLCzj/A6yAtYWrlP7GE4QCxkOI/mgFGPgPy3j/7pdpb5srZPyJp6jJL59Y/JX25sz643D/QGu9WSeXMPyB6KkqAKMw/HxvAqJ1n2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XJb59bNV2T/Z8LZ0HfPjP6BqYji6fa4/GvQzTmvyrT/+9VRrZ4vWPyMQWMcB6NM/uqw8gxV54j/HwPttt3jiP2Aj840o9eM/BYoayOVj5D9cQNlmmODjP5csTWX5vuE/0rb6LDbQ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yKSZ18Dt2z8DmcHLUgblP5CoUArXtKM/j3D4jAUEqj+uFm+k7W/VP88oSbIHlNQ/X4lvMFT92D9ZeAn5+hLgP0ElUsfFv+I/M7Pj9xIJ5z+AdIF679XZP5+SQ8d/uN0/8vRbDKM+3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Cur0nVQe3D8PM91u/w3jP3KSruKrPZU//g3gg3bFtD9lc/moy9TeP1bmjPOMato/bIR45M/W4D/PJMLz8o3OP1cDjOqpKOI/abXZs9O33j/vlJWbbsrWPy4bN3sk3+A/jDGnK09K6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rfCg22HI3D9GHx0szefiP7XufOreHZc/6d3an2IjtT/GWVOsxIvfP+sEDrUHodk/1EgcoAie4T8Sa1f0pNzQP0RsCQne0+M/zU79Ci8e3j/g5M4VGLTUP4g07Dn2peA/X6QlA7w96T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VkqV0lJ63D+/IH39U3jlP+KbuAAeY6o/5rfRSzgtuD+dQD22583fP4E/0hZB69k/Ls28ihgA4z/vlpUFlbbmPxKpqfUOHd8/02NGT40p4j94YcRZTXTZP1npE9ojqs8/9XUMaT/82j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sUajvo1p3T8ytokQrqTkPzNGggrpsIw/qDtvN6BzqD8MxeDE8OfUP85uyHMkB9M/ptQ5WsBh5T/awLv5TLPiP/cJ5BKZ4+g/y3EVOxnH5j/q4LLVa+bYP5pZ82/p8dQ/Swujo9tZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j259KnNA3T8sDgQb+e7kP9jdVpHDT5Y/CcRzyVH6pz8p5DasZUngP7/FH7np99I/0Lcaq6uM4T/asO9IcTrYP/8Jzvv6iOo/3kptlwKx5z9CBGIsiDLZP4iNpHpIIuE/uIKJ0JAr6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QRIaz8qR3D/vzB7kbtLjP7BDLCgv5Jo/yisl5uajtz8NjHBKo8reP/g7N8NKAN8/Bx2pQXDu5D8shLqRfGLjP41O5gwob+Y/KQpwxms35j8Hay1nP3TUP2L06vUnJ9Q/StYrEv5s3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Int2l3Et3T/xdOIkH/nkP1PM7m8/63o/iCqVnplLsj+iCzn1SbLVPxRLQ300p9M/BlQoawyW4j/5R6GEJYfhPzUDkmiSs+Q/tR2Xecdv3z9t9ir0lZHUPzQupC5vkNs/LOSuzXT45D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zm09Sz/d2z/ku0SdHY3jPy2l4qmFga8/OcL4ZkJeqD+9tD6VETzZP4iyJcNNwNc/K3upEAaW3T8Xs39GUgnXP1bVZIEr6to/aEY8QjSo3j98ON7jkQbhP/YCdtOpXeA/Ft2JKEws6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l16cMjel3T/rOOdrFyLkP3cS0GhRSJU/HBsQRaDGqz8o60qQplPZPzjdG7VIWt8/ApfIB7DL3D/FSmG3wv7ZP0B4TcVO4No/4Tz02KhP4D86TtZGEUzhP674+szxhN4/E/uTsCMM6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Pzu4GHV2D/0Ld3gIZDkP/rNeJehEds/pez8k+PxrT8bxfvd8/bjP/rhc2NAaN0/PCyqGMHj4j8lTSO9VDLgP2rUT+0g7OI/lfFvGp5Z2T89nndm9aXgPyScjsohT9Y/MY/qeCx36T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vsrH7pVl4D+ZLcpEdlPjPzg0L6NPK5g/iHoWf+afxz/6xuU+JwPeP7BMuYM0cN8/jCWWuxBq4z/7HbsE2E/VPymIyoyCKOE/X5gxtgzJ5T8DUXkuKaDSPyciJvT+Xt8/zIGECsde4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N9ijrQ+q4T8mHlTnC7XWP5QLxMZMuLk/S7JIjRpT1z8HjNLOP73hP8yCNMG9it8/Ve0x1kR83D+gsvpLvx/gP1NEhMfTrds/kVPrY7O91D+aP13y1Q/VPxoUgBBzWsc/WSDbwTKa5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UZDZgsR82D8U1ne2NibeP6reXbarpaI/U6xPIa642z+E2k6MozrcP03ygPEpJNc/KGAWIcVJ5T9eqBnH3I/ZP4GXkjD+B9g/jYUOxbYU2z+A8DaTTxTDP0vplFGJ6tg/QJTNUTAK4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"16nZRGas4D+FAZdB5gTePzCVOVxqzbg/VcZBq9AOyD+HDU/puWvbPxINWNVmkd0/ujHvm5t63D9TYWgyX9bSP+W0OVyqmtw/Y3776ftz3D8t1M2mYg7hP81mxDMIX9k/G+E1tHhL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f2G2/uyB4j+LOKOf3h7hP89+p08irM8/z0kzvgp/yT/+2j8Bu4fgP3+ZlXZLg9s/eNitAvQK5D/xv4wWYHPfP8KA6DaWjuA/I1kxJNlo3z9CkuoB3HnXP8z82TJlz9s/pr5h5PRd6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4rjbgMDo4T8M1A3TIvDgP3P2ocd6qrA/bqelGVwKvT/xUDgi7wTRP7bJFjUGQb0/sa6BZauw3z+0qaSDqRXgP91WrRk0ruE/v+YmYoJ+4D/Ulx58og/iP8MKtWXd6NU/ZL8fq9on4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VgUh5lwY0z8Q0i4mk87mP6ATDhtmBrs/pmwO3KcZvD+Gc2zoRz7lP5djOugrzuY/39HZpjUA3D9flr7Im4XIPxoTTxPv/9w/5AH6WHST3D8R0DTHOTLePyRjdJLpAuA/6kYptcIT6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Rld4GAwF5D+wmPmH797kP1guzr6UqL4//sMOVodm1D97HGHNL1HlP5SyMGh+zOI/f+ijLMYo5D8do9JOBiDlPxg9K+a1jOA/kQISqrq73D/XH9T1qXLhP2fSba0uaeI/a3/LlY1y5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mmXXvQ9j5T8Bzvfql4nkP95UEa5fKsA/fwxwInfP1j+am1jL08bkP1YKwnCb4uI//a1Ran8t5D8P7IzkhhjlP712z0ouD+E/oOBSC7AB2T9yvfLdSvrhP2OXtlBoouI/LgDqN6g85z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bRe78clJ2D/Hps4TvZvoPwU8YOoHnsU/jOUejfLp3T+Jw+oa4rrZP1wVZmF/Xtk/syW7TIu6zj9wqAP1SsHUPw1P1yyhBd8/8+W4cJCV2D9VC/7miNbQPz+gR5zYA9A/ewORHPii3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xwPQmKvP2T8m1kolGnnlPyQrP8tm8LI/Sk/NadqF4j+pAp9g0O/hP+KGCLNtBtk/vSjUecVezj/Jf63l25nUP2dmS8sORNA/YEEzsnpa2T9dQNlmmODTP3gk9VlVUsY/dnRx7l8m4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ydxs9vc43z+O9FYjU9rfP9bWSiivUJ4/oYLyL8dcsj+p3jW3lNzdPyfoV30jguE/S4Ym2N/q4D9HY4UDqT3SP8F6Bd/D0uY/nWqp89DW3D8QLpG8osXVP+zRqMl7ANw/M8UGvEz44D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B5M4jxWX3T8nqcvWBBDjPymRb/ducJM/vJJ3F59gtz/UrBLWQVLgP5Rb6kfbYuA/mhgy4Egw3T8oifbxs4DUP73j4MWOieo/QaLy/MVr3j87gvZjmKrUPyxz0yGY/9s/KVHy0gLA2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cBs8U1pu3j8kmUe6e6ziP14Li2fmdJk/JPOeqKLe1T9XmoWtM7jePz2fSld9WdY/kgwXeeME5T/Btw+85CrdP+PFQD8R2OI/Z7z0IWKv5j9uj+Zynz/hP89L0XMYXtc/wdDGjUyx4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2xHIXuvE3T8GYInHICHmPyQT3uTUj2I/m+R3Wv48sT+3VvLszGbWP+hFQcgP/N4/KDxynyUd4T/nIbtnODbhP221q5KUYuk/kArzpPaV5j8808I9uhzjP5ngmWdAX9c/zj/mkfSA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PeswQnp43D+Y6kQPnbzlPyVsimHtYZk/EXeMUFL4zD9AejnforPcP5fqmx7RH+I/eS/a/MYm1j8uGS2RkNTNP7uHdgNNNdw/GS9JbuoV2j/97DeIChbkPyiGgvAzxNQ/OtkGHl5J5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z5r3gVwv3T/T8qkJlrXjP6POBrkYVK4/jfPLkRGXqT+qdjGZ4I/kP6Gfv4l9Dd0/c6HPAGgu4T+vfYP6pzrjP6UhosNIIeA/zf+2LJPi4T9LVb6u9De4P4K/EVX3Adc/bpmcQLnQ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7dajnG3b2z9o671yT4fjP24OiI16JpU/fFF6z20QoD8ZBXyjH4PTP07C3ihTF9A/ZXWCcmhY5T/l9DK+YdncPwiRqKEUW+c/RFN4BDya5j/YCHLqJjrhP4hFljT2Rt4//ZYzskU+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A7USyt9O4D8Vp6aSd0TlPyIOknNPiag/YjPKR1TMsD8wHQwuA8TaP2HlZhXQCck/M8Twh8lJ5z/HqoeIvdXZP6KV5hS1oOs//aeNGUz95D9PIaWPg2PhPzBopOEnvtQ/3umZmqC24T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3Q+guzJh3j9JBc+6/afkP0MnoTSERnY/o76hny7R0z+qWB9h3ZPbP3S7F0//pNI/Qzz3Lye26D9+OrlEMrXcPxPKgy3oJeM/FzofIPta5D+S5SM7L9TVP8a3PgGAa9Y/thXD7sDn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hAs+94JL3D9mSVEMHxLlP4Ejt1aKVck/z0Nwad1I0z8LxIE9IkzaP09UNi6EIOA/LJrhi9cD4T+pzFKNUP3iPyfcbg2xjeI/RY1pFYYB4T/ELm+M7u7KP8kKAY5WFM0/1zc+lNXo4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QzDXqY9b5T+Eal5Cre7iP4XNp/f+l8A/G/JCQS4opj9bfdouxI7fPzrC4ejLVNE/wvSMcbBS6j89OMbmalrXPwNCyhbeBtY/jWcAadGT0z9UYIj+CrzjP3GxlMRkeeU/7ST+FGGA6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4AEPDDPa4T/A5tlZyMfkP5LmK7EKAMw/SHWbrDewwD+xKkca0CboP/f26cRDueI/gvw4uTfU3j//ZqgjLwDkPykI1Y2TH+A/bxGi6Ijv4j+asLBgWjrkPwfr/HUSBuI/70fdJVgL5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S8u6BnCq2T8UGr3eNnHhP8PBNJP5KJk/5qQOUVemtD+gVaX15pnWP4VKTlh5CNc/zz3SQ1hL4T/vZyrKp9rVP5+w+sHD/t0/1DNsJagl2D9lijfTeunEPxdL1NAjsM0/57EKkqnk4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1PMyKaqr4D+u2Qe/RpXlP4qC/3F5+9Q/bhqmRRFkuT/4mot2jRfWP7sAMZ53l8A/5QFHamLB0z/A70ykJk/QP5zEXtkvYuM/3z3ft/Xr4T/fRXY6/ljRP1eRZ6gOpeU/KdYopsXm3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"56Iens/r3z97AFRyXnvnP4/WncZhiW8/ZQ/vkkucxj+/egl29vTlP95xk5GSdOk/yP0tSx8b5z88xff71/zhP4t7nAtESuw/Df+c4DyB3z/dEGy5yKHiP5evxt+YNd0/kC3bQ6Bt5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rYBvizYn4D+7uu+UL/3nP7EsRjB8zIE/52SRYrqfxz9NuzNFoOrlP5HbSCtwSeo/MIvA8I+X5j8m9ET/WpzhPye/cIg+E+s/sdHlI3FO4D9pdxFZOaXhPyXJRx/wTNs/41iydlYS5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xwrWcss33z+vispg+crnP1edVGUoXJc/ZRopUOyZwT+JFRf4jgHlP1sqLWECLOc/sz6yT1Pp5z+bIV2MDUrfPys8R0QSVOY/AVFXeCUL4z8kWlWv/mPhPx34RKRum9Y/AndDthZw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rE0bJ1Ju3T+OCXRBhszlPw+V1XkKS8Q/1D1nZXHGvT+YZIL+q2rnP0Ytd0yN7+E/nwaJwAx+4z/6ZcSd9eziP0j+7CYKiuU/+ENIm5Ap5D+Kk1uo9fbTPy/pQdskjds/JHqL1mAF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"seGyVoth2D+Hd/r5d/XiP43qzdZembM/HQYTaVqksT8+6jK1F3TZP6jfAZP18OA/tCZqQFM53j/uE25nZ13VPwiMtIi3ZNo/WTkBUf4L2D/hWc5skz/gP+orlmwEcNk/zeq1th3W4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oqXlQUU13D+q5GP2DzbkP+uCcDWyr8E/0wVoUUPDsT83HB55rFfjPwPvD7Kl69w/L1jX+lC44D83Qm39wxfaP04q1nfjwNc/W4Xf/kDC2j+xbs2706XaP4Bz/+Tmq9M//Em5JHIT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Uq/1/ayi3j8PmQZduGrkP3iMSSSY1ZQ/akxhYUu5vD9Fj63pyVHiP8agIeH2ZuI/JuK392wn3z/ljRed8VvaP7roNsO5CuM/iKO1MAtE1z810ed3R+G/P4e4wKqIpcw/9kUlXmfC4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"57I/iKwF2z9GQw0iEcLjPy/xp4KPPMg/KdeAqaYRsD9n74jLYR/kPynbuG5FweA/2FJ0O0w04T86QsupmBnbP4HbHg079c8/4JmKoFhF2j+uBwvn+9LOP50gO2lFgso///+DS7D33j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fGEEfqdm3D+uHP38UKziP5qlC2WNPJY/bALjceDvvz85MQRs+lXaP4LUs4Bard8/9T2Mx09w4j9zp3IynUjSP4ayiPuI6OE/FJcHkjaf0T86OZSwzQzHP/UkGbBfsdU/kDigAu5n3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"49fT7L5W3z/yvsAfLIblP5au9vAE8rQ/QFxyeAgUrD+WdezTv/njP+rzVLsq9OE/9fv9QJtk4j/JZMmVrs3kP91wy2HxKt0/6Y5TfG3V4D/r7FiNBK/WP6Wsr35GztU/CodJhBI/4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TW/j493X3D+P0MPa/yflP0pQbp3V2ZI/PNx9BBIlwD8NSIz9jHPiP6gucWBzyt4/FHppV6mH4T8NMOvfGhDkP1Td39LR4uI/EaZ69yt51j9npkGADO7UP22lX/Mwjd0/1vw0A3Tu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qzsr/9MO3D/o1u7/l1/jPzCqkutzpaU/OMTxI1A2sz8zbZYrxRLeP6eFgWzBi9s/+a+x9irm5T/OB45JpaLgP3U6Jlcd2d8/czluv0WE3z8Heqf4iVfLP9fBPy2l69Y/gZ/9RovG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J/nApxFE2z9mcNraNhHkP95wED3LmaU//Oa4xRnjsD9Dw6fGXsHXP3KuNkdzcNs/d8bpOKLX5T8ipcT8UT3iP9ytOMU6+uA/s1mw8jZe4D8TSwd6AaLIP+oERYjnBtk/tBzUioHT4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PdYc6c3D3j8WW3IVLx/lPyYJ3h4Y75c/KStEVQjzsj8Epa8PY/LhP2VgWsCEB+A/LCZToQ4Q6T9nBCxlMFjnP9h6oIPIz+E/1GneEquw3z9hQ7Q+YIXZP2QMDC9Tus8/m7kobKd45z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"olxGiRQc2j+7NlfuxEfkP3ftTqM4V6c/WMaCsuIxuD9Pm7QIYwvePwnsknI+vd0/7/fvTKPSzz/mhiJNfLXHPzL5F3Uf4+E/ltVyWEKo2D9rUf+8L1LiP2SUleLtItI/p/1FHFiY5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OB6JPPgp2j/PKLk9JfbjP8CpbfjNaq0/am9IuXtYtT9KaCaUczrgP8GGKb2JVd4/eTse6PCEyj8CnrL1l63FP0itutwCOeE/pE1Vm6Vv2T9PlQLX9d/hPwOYdoYTpNM/xrPGFVQb5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hTgLm7u33D/uZMUp+43lP3fNyuo01pc/rZJnZIZMpT9Vf6GF1S3iP0rT25suttk/5SVjj02G5j+QNU0N68LjPyN6sg9MWuM/YnnBfq+j2T8sdxq/GBThP4RWVjgRmdA/7xIJzT5Y5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2oN83b5T2j+BTuGRyw/kPy+9XMRx6a4/OupeLFo/uD+jlUHqxGXTP2TltTP/B9Y/RhN0zClQ5j9vlhv0SjTiP0ZMoDtnLuE/+JJPGpbg4j8kq2Lfr5XTP6eIWXTnTuI/0OKxYDHz5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pHZvlS2n3T9xYA6T/ZzaP04KBTYc8KE/rfCyOe9s4j/aT565CH/qPwBr6IGRleQ/zn7JXbr21z8X3iqTScTLP9E1BSH3CeQ/0pnOxuCR3T9APkNQ8mLjPz4NfF7vjtQ/qiEIubk75j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ChJQOOSt4D8G31vp5aDbP1GPpsQTRrU/j/g3lp0e1T+DRAXuzOzrP2+g+oz98eI/5esRivFQ2D9v7mM7hcfYP8vWG2HEO+U/fjvmSWCl4T8DDX7G3Q7hP973RcPHttg/gaYGTOvC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I3jgfBNM3D+ZvcZNMJzfP8/B9tIfma8/8NBrNXUy1D+BllZCoNrhP4GrxKw8Tuc/zIpUfQ863z/jEUivHzXSP/xIZRrReOU/bjzackX34j+DAZdBYLvYP9eCRUoMfds/1Bj8T7gZ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OPFeQoO32z8giLlYG8XfP9mD9xGFZZw/2X8dAV6s1T+GJeGf+w3fPxbeboJ61eY/WiwA/Ay23T8lIIt2I+TTP+P4xJPdgOQ/qQGuRqxi4D+M4PLu6/7hP+1lCNzyXt0/0Sr5Ljsx4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UzxBAD864D8WCaXF2bfnPzW3+4LYC7E/BdKyzHlwwj9ZzyuDl3zVPzEFOMl5U8o/ljjmHVd95T+Swjp7AWngP8/NQrWeJ+E/oUQpk42o2j/ixveeP4jKP2eGp2WXPtY/7U0Dn03v5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y3TAmWAb4z9eyxQBf3nhP9zFZVw7wME/MMFFaWGLuz/26ecuz0PoP0S33HRulOo/ylpigM5z5D/uXinHaBHjP7Hc7h/hJ+M/Bd6lVnZe5T+gKYdItdXYP+qKavWOVdc/hYkG1PIs2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wuMSwLFS3T/P8eswwJLmP2ujByiLH5w/Wsh0Y/FQwz9OgNgSyrfQPwykdlYoDMQ/2FHP1/vw0z/lTaMyLHzSP/vHj5V1ttM/0l/DqJ9f1T/xQXNN0SfKPzNKBS8w5d8/R7tvRAcH5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JUM+mz/72z+9rH51rFjgP7rExriC96I/8uXLPfj4vD9/E2bKyMzcPzjhyrfFtOA/XYnn05+V5z/SrIOeLAfiP1tPpihwVuc/dipUxt355T+qCvEVFwDgP/O/yWxFbNE/v7Vnh5ER4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xkzK3Mty3D8lhhqKx6LnPyVfOrP7DJE/llvjZsN3vz+c91hNosTjP2kwMUXZ1do/18ORx2CK4D95GT1dQbDWPyGw9J8oeuc/cQE5X56K2j+ER6fHl73UP7qSvNGgq94/xpb1uDCm4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0EAiKEyM4T95r4maZaHmPxrwiqaP66Y/pumkSExqsD/lWg3dv+ziP6aWErfy2dk/ygxSCQfq3z/Z199ahF7WP1Bf8bAHOuc/ZFc3Pt5Z3T9zEk70pjLZP5b9e/Kw0t8/fgs3PDpE4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"00vPPTNN2z+X6FB0jLThP6qtz7IHxa8/akXa7G7lsj/lVSG+fUPhP8guhmqsI98/h5Yckz3/3T/fS4Iu9t3UP0LgP0ZLTuM/xMyTpj3s4T9Ei+zrUX3ZP4DaBBXnAtk/zWROTwc04z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XA7WE6qu3D9U4LcpHR7lP8vSHWVjdpw/jbF1GJL82D9LNlgVQMfhP4Xf7Ii8l+A/mCuta28x3j/gYEaYsnjSP9YWPrBJjeA/zBExUAcX4T8bKmMnjeXBP1XIbIEJ6dE/A5CtiSe+4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y76Fq2JC3T+G9QwpFsHiPz2q1fe+uoU/nRJ3ETDSsD/fqU1mT9nXP1nlnWlNccQ/yUyzF0yr3D8tYYpuX1/hP/Rt+/WqL+U/ACgEdFEY4j+brEXO8pjbPwGL+QjL+ew/yI2peD316z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LH1Ijzy73D++ySI6GuTlP7BwNnRTU5M/7Dny+n1Stj8tXufhmlDFP9PRhoTAEb8/b82Wun8m4j8S3scyYzjVP5D4sLgB6eA/rNVWw7Qo4z+mdb3VMY7fP7dG0PVM694/Q0L5gB7B5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MvtbI9f/2j/tBGMe82LmP2Nl/1Id5pM/vecn95R5wD8AAAAAAAAAANQtDq5Hh78/Vj1hzn1t4D/H5mpadxXWP922EFzkoeQ/40XHdDPH4z+NaHJptyrZPwwnW/FEgdk/eAGc6U1R5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gcu7GVxg3T8eDaxd8H7kPyfbs94+i8c/eDl1MxSExz/4We3Pa9bjP6jm3DZa/eg/1o9k69xX5T/sShAl2PTaP5vv8uekP9w/aBUTiMzJ1T/zpPmQZwbZP6XI1OEv3OE/VpsJTQwp6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9fOkgNJC2T8qzcwNOLHkPyfQysb7JLE/SS/jNXhEyz8CytnECZTjP/3QkXqPndY/96s2UJRt1j9QC0zYo0jcP9M5BLLFWOI/NYf0qPf64D8Ah6drhuXDP3UXKfVWlpU/aLhM6UHA0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a2eIKZ572z8xTmITcG/kP2uXrwIKJK4/Ihl0TKIu0z88ghqadh7iP7Zal3qp59g/lR3IyxCY2T9Y7MsGInXeP7FWD6NDR94/Mk3tDV224j9iZMSPTLCwPxGj0qgrrcQ/nMxdB3B/0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wKPYAF/X3z+2MHsdky/oP/9IUbcjAKQ/LOEqvk6RwT933ma4PH3gPytlEDJ9HN0/+HYTTB3X6D8u8Kh9BpXjP6SsySkSfuE/1V7YyVLD0z/4apbA3lbnP1w6X9YobuA/4t8zHA3d6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J1suYtGE3j/Ju7sH+wzhP4ISYEDDqa0/VC3QHiklvT/2slah4mniP+3HEFdRxeM/53ToW3oW3D8SvTuuF0LXP32Z3iTp4eA//eriz0Kv4z91TC8YEWPTPzUtSTh8B9s/dLEqsFF65z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6DoqI2Re2j/HAhm/rjXiP1+4ugESb6A/jNpWuF5XtD8Kl9zqps3lP+CUD5m2m+E/52IIpCwd1j+Ar1okgaDWP6ddnaezIOI/t04zrbNo4T9A9A+M+AjfP4sC0QU6vtc/8M7x1REx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ut0O1e1Q3T+OarKBwYviPwJLEa+y+KE/he6aLpZCtT+rUQNL11LjP2KyA5ST3OA/xfJrSyMw2D9AknPZMYjZP6k7ZRVb/OE/MoD3yga84D+HEYvfo4rbPw+SjZ78ztU/K9VzxsFz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yAT0JjBh3D9mwjciW/jhP2jbJNtn0Jc/R98Ry72M2D9RDSMV1+XYP8BP8MlMLuE/deC9e7LV2z+B1blz5kvSP79wFeIjw+I/wpPm4M1w5D8RbKdzOGDgP3BDBQxbZeA/Bi+esWLw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JEmhTAGQ3T+fYOcYwmPgP/xP4Y2NeqA/tTDZAdzv2T9rHm55K6PdP+tYynDCUeY/njF4ApjE2D/ymkVXMObaP7aonVWLDeY/3XCf0GB+4D/6sKZGFlnjP1gvhfvnCtk/Q0MqFXI85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3Le9UyLM3z8zMEvOdNbiP7Zb1saeGqk/JHZ0Lsah4T9xjo9JenXWPz4iMl/SOdA/S2nS3uf13j9/dZOi63TSP/pajC4UQdY/pjy3ji/73z8YSw54FyzVP4vNWMYrENY/DUMq9oQo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JV4ydToK3z8TMiRJU1DjP6tMAGR90rk/5bZPnw475D/9OFx9YBTYP6LVPsenJNQ/BrnDBg5u3T94ETB9luvMPyj9Ow5Oy9I/oWqlcCrp4j+lll3PaEzXP8tp1Rbh+do/p37ANS3B4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OgGRzi5v2D91D9tkfgXlP8bgiK5FgaI/6Befoy64sD/kuDUkjUvZP+/WIVEEKNU/laCbKnk+0z9Kab/ul3TXPwilUZiNBeg/I8lchZHX2z+897TtLqvVP3op74k1k9g/++iiJLvR5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fqRRJ+WI3j+y97oCxgzjPyAjBfSy/r8/LZvxTQ+HuD9gCrfhDPjlP/9m27sTNOQ/2qG6oVou5z/mJGh6CsPbP6DSDz77L9Q/0Kc8QJIE4z+ojYCaLhbXP3zNPi5iE84/hdPOt7ej2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6CE4Eut+2D/HxoUtpJzmP1X4LawU5bQ/vgZYrhhovj988M2QgrXkP1GoGpnqL+Y/TtDMwq5B2D8C1SVdHsTaP876NqWkYOA/GXtFrMqE1D/EgK5088LYP/ckBmaB5tM/Vpw64V+k5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hnttfGFw2z+7PqPw/UnnP9RnF2MGvrM/l0DzFWzMzD8pHN7ogqHpPybhELEUJd4/RhMYF9p93z/4gfUIejXXP51byebtXts/IQ1iPuWO2D/lntfiX07dPxuYyfx3AdE/gqPY7YwG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aZg3Gz0L4z+tvrXPgoLmPyHu9fgJobk/m7h0vjeL0T8WbGLg3RraP5add82kSOE/m8VoBZdu5D+VN7K4d13fP3XjAqFEx9U/znB0AAue1D9BzE3SZCm5P0Xd6gTjVtM/JlTyhPrW1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jPmAEPy02T92Hrxdld3jP4uDn8A69cY/z4X+B7WwyD9KI6pLe5fgP3vMSFbfbdY/8wtVyylB3j8x+6vL62zbP7uNWI++49A/CEIf7x/I0T8pOl7D5j7hP+SU8haT4tY/50DdJsd54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7IGy2qqx3j8jZwiuo77jP3oDu4hW2qA/K2K5mlPprD9rbPnBd9PjP/ta96JwQt8/f5pKv2jN3T8ueaemPJnTP/CPLXejpNs/HMCr/EoG2j8JVT5qn53DPwejn0gKGdU/JIr3cWcF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6n55FonW2z/29ukdPHzkP6e3HPkDvKY/l+5q70Dbsz8CaajkvWrbP0oZTjjKnuE/Wm+TAuh+4z/GraxM4mnYP6J2j5zUs98/P9glizJy2D8bVV67NMTEP7tIR4Ye0NQ/+Meh8LpF5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1SN1A6Th1j9Hl0f8cznjP57nttFnr7U/wgT3x/1Vtj/+gpc7r4LfP/bvRDU0VeA/L1l7/WuF3j+wSwhMAkbhP3JA9cFJE9w/TUFLxGHs5D+HCnt0sHvVPzd6o1ShG80/EHART2VL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UXkNSreE4D+NNdqcFXnlP5jPsHvOjtw/DhjN5r1Xyz96jr91Gb7hP3G/x5Gkvtk/XRePkIix5T8b7WWBd8TjP2IjfYT7teI/icDYraMo3T91/Ff58NHLP3DfWShw7tA/+YHyjR+T1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RM1Dlv4M4j8gZi0GGXPiP3DxpSx+2sE/cL37jeaEyD9RUHeY0CfhP6DQXQEVnuA/VR8u09K84j/7D633S+nhP/39RhoDqdg/Avahs7c83j/Ewf0FnVywP9Ya0tk60tM//EdnKoz74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C16WrUFG3T9wtfcDyM3jP8wuV4KjALM/LtP0uSURzj9J9xJ2a2DgPymg0HiLP+I/CJrH6wll5z96azZoIJHaP9x5zfzertw/TOZ4s6E/xD8zNsstb3rZP0Vw3NaIYdI/+ge3vHH73z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ojW08RmU3z8Ikpk2rNbjP3rlwzj8mK0/ziKJoUW0zz9KspYtc73gP74wMOom7OA/04griXXI6T9I0Alm8nLaP1RxY7W3+Nw/znEVOxnHxj8OnjsdCFfdP0DGYx6/edM/AtvNhbTh4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tCkG3LM43D+5uNbQRo3dP+hzXvbnF6g/VFG889Oruj84ZDFy/GTjPzhXti1kjOA/Cdbk68n04D94HOpvEz3hP5ET0mST394/cGZxwvPV4D9VjPaglfzVP13A+b5CZMw/vF+akdjB3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AeWKwN4y3j+jJNCWnanfPzmSkQ3p4YI/kHULz7Cr2z9O9o53dh3bP9OYLEQuxdk/6c1QJvDV5D+QTcM9i3ThP3kXkGpFmeM/q7tj2eBF4T+ZqmavQl/JP8weBdVrldA/AsXmQN0m5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GCcfiHEq4D8Qd2zpryjTPykTV2wdKrs/tY7q2hvs1D87+oJCmOniP/hoC646Yt4/1Mr4dUhq2T+z8kOThrXVP9cV4TKNq9w/1BC8KZqo1j8qBTeW9OzeP+cTx9nL1No/IThD/dd54j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0ob0SRny4j9YlJTtw7/VP9BRUarvkM4/Oe3PnR1S3T+p+qmoD3zeP1GTfIg7gOc/YSGeNTZ24z/2MOtsHc/WPy8wv02eB9Q/fLkqO+Mk0j8Qmn3fp+PYP192qgd9HtY/YQ7OtO6j2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2f2krVfI5T/QwS1hPu7YPwTlJb4NxNw/ngFGwAlL2T8y0/A3yTDgP7vSy+xIQ+o/n26fSjov6T+3dk+37SHYPwFToeSguNY/Vx0X2pckzT/TsVRh12LLP982U/A+8NU/+u7+4HdK2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vtdUiWEa6D+0RZSONALlP6Pf+EF3TMI/A8xoF7XxzT+pc3HY/+LpP1y72BXKbt0/km6F5Arz1z9RnzNKQR/hPzFIzu1QAeA/r3VjEFSc4T/s/iRM4i3fP4k7r6Caw9U/9EllYwW45z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U9LejpNV5z9EGTuUuB7lP6CnRzqur8s/hnpCR+Jr0D+Q4g1TBGnoP0gcy3cxzeA/SigoIqLD2z+RFUKu8lPgP2x9YzoPT+A/a6TEqjI74j82SA5CGPDdP155zjQ0hNk/q6ohyt6R5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7AjUcs0C5D/r1jfFn+bjP/ZPTMeI7sU/y/F5z9ITvj/9p827ffbfP+acbF6Ikd4/eztFx5n84z8UVn45fMbVP8Mam3Y3w9k/PiRHG7Ka4j+tqZFF1qTjP0lNBJicGuA/aGQHMTYd4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c5svbNmm4j9tPHmcmSjkP9HNKCamQ8M/Q9Z4AtUCsz+22wL43Z7jP890BSzJlt0/z/m2KF575T/+vxPk5xjUP8b36Xbd5dU/OPk0J+Am3j+Kwkp5OYDjP3yWEAJuU9s/2LUtiBCP4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2f9eWAWI3T8qsK7MJNXkPxRDLSEqbaQ/CS+yX2/7vD+ja9oLecbpP0YAvuvHYeU/fft5DAeG3D9/efAw+wnYP/bUWfYjR+I/gpgQWo2B2j8UpER4kHLUP48LRNtKIdg/TtAsHX264z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bKp6R+wT3T87Cg9DWTHlP//mg8lk360/eHZYnAjerD+XJpzmpZ/gPwx75oUzc+A/QXph/dj93j9SiaoT2wDbP3j+bnX85uA/kgo9STUJ5j/xZHsQ7SjYP3WFWTsJtNE/mqPFcoC16T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ox/R2WZz3T8tWrGHPhzjP2oRx4Yx3oQ/EaN+dr0sqD+E6AgFYYrcP0b4yw54/d0/xPLV93Dl4j941aWjnyPcPx8h+KzUquM/Nqu01fHN4z8WnjDGtM7RP6nEWH3C09A/QtK+z2dN4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"08IGaH5W3T/spk47A5HkP4/MB32gxo4/R4lHoAmIrD+BKwjllNzeP9XhGyAx3OA/ki2cwaYq5T8038O7z6raP2EAo5XZaOM/0phLHHAh4z9fvYo4EIrQP7ifiDafZ88/d4npxLvh4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Am/BDTmn3T/D0/Z7xI3mPwedFyxpM6A/go3MzlL3rD/vJ9eOSXbcPxGDABIvNuE/DLym/GtB4D8MZ6eiCa3cPx+U7H8H4eY/onW2/irF4D9hxYQHsvHRP05HNHjd3Mk/3vo2yvox4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"feb9chFU2j/ADNFFXQLjP9OxTYUE5bg/hqzkH6uVwD8/7hiJswzmP3P+ryhbF+I/Nb7I92qf4j/T5c6ugDXhP+MGYgsDzdc/5dii0fmy4T8iisLleNfbP/x8r9hZBcs/jUoZlsCH4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E/IFOPeI3D/F33BZPVDlPw83jEPLm5g/4+ig16+fuD9gQCqOAx3ZP2eCv4691tg/HublI5j13j+yBIWMSbrTP3cdStNP5eE/PAoKjZ9E0T9qrcFCtWm6P8GYv1GBfdQ/PZi4JvMo3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gp1B+7nD2z8i4vrzam3jPwT4PMxjaJY/jhTdvLytsz+1L4RDdSTgP1kfYIFKktE/XEBRWqSt1z8vdoLiFwXVP9Ijr9TS79U/4H1DOr4g2j9Irn1ZoofLPwhpn5VR68s/gpkdPx5W4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"COZxcXd94D80VS4BvrzjP8VgY2A+9tM/jS7H7Mccrj9fOK/wLkDWP0qGgTatNtM/+4RKEVQH4j80iFWSqxbaP5zJitIWB+A/jx9ifz811j81pIQau7/WP+MjVTrtGeM/Zak4ZgNt5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fO/0c+RN3z9D+xIOzr7iP4T/+YIVeYw/MkmnCPd5zj+bi/CnA63dP2ELKQje99Q/8UwEUCuR4j9PCXQv1jDiP7gsRuBfAuA/3DoMFGUn4z/AYN+L68DXP134Q4UVgNQ/Jm9huXZV4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QBEH4xSe2z/0nnwuX9zjP5/Ref60Wps/go1RILscuj9xY1Ni1j7RP1ZIXboRO9Y/A1P7qgfr4z/3YxtLElbZP3pHa4UjueA/CIfx9iJj6D8+g+DHRgPgPxV2ZXzW2tY/fTI//Bty3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hkrR99362j+PqH9T+9zlP1QfV/JhXa0/Oi8gr2+IoT8r39QLmqTdP4SnqYEVo9o/jjyqnTSW2j/YK8ZfndLhP6n8e+A7+tc/YlEwhOKl4D84jLb+aq/TP1QowpRD7dM/CjYyKmVY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pdKfeGKH3T87B+E4fCThP6ks/1vPNoM/YJ2eCEZ+xT+Y5GVEohLbP4UVHGiP8dQ/290uj65y5j8qtnnneFPTP4fpo+v1pew/fAqN+LAe5z9LzFvOkD3SP77Idj9KS9k/CU2vYSxE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TBXsRTD53T+obRqV1uDmP+9gDaUybqc/gtdobrsa0z/Pw355yAjSP8vAfmy0Zto/E+ZLTBDS2z8uBZw9rbDhPxyR/0PPSt8/EPY0uOlI4T8LCkXsyQ/kP3m+WqvpaOA/h2OE2D9R6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0TsvuXzx3j9jjuSL1ALePyJbncchlKc/+dQaQWoBxD/7nR6OgubmPwKRF91xk+E/zZe6N5GR4D+7fkdGLGvUP9DuvMIvGdo/hpuv4y+wzT+8UV78ilPUPxLTnODSRds/GSG4dSym5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lE83P7rt3T/AZYdStd/jP3wSAO3UFrQ/0w+CP8mKwz96ic+9dHnQP+NFJ34N59E/scNtlxuw1D+K3fpdjRvSP/RTfYOlm94/E2k3QNlp1j940Hn/sCTKP9V00sahDNM/4d6lwH2b4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pxcmZyer4D8tpOf1AWnkP1ZpDpadM7A/7Lmwy0leuz+eQwEQKxbaP6OHOBG93tM/pGjxH5IJ0j8ie1F6RYPUP48fMTSGid0/Alty4jBc3T/Zo18z2fPLP4Ux4dSW19Q/+QHAXlE44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mzKJr8Xq1T8rlMQz+0zjP3vL6xK5Fb0/ln2sVMEqsT8fyJKOS2HkPwlHox+JVeQ/s28J6ZDm4D9TcBFqvMnTPx1aIWiJseU/7o/D2+h75T/CcMwrGQbePygOlyhchdk/COrR2jFW5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9AvOjrYa4T9wogzMoFTjP7Zkcu6lOZw/ii1RgctFzD+9FXQOwADhP8aI6wa2tOE/WvRFG26A3T8eYembWbTZPzAwJmYJCOE/qPGhrPU63T/DO2//6nzDP2b1Qi3eyeE/rbVaphul5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y1H28HJB1D+s1LxD7/jdPyPZKKWtgcY/jxHPlHvfyD93apPZU/blP9inw7CNjeM/TAcNhixT5j/48Exgf/jjP4OYxal2DeA//Zw5qQ6v3z9UPQnmI8TZP0T/UUTBY+A/Lhl7jy285j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8HdJzJhB1T8l4//+B4ngP6qcfBm7o8Y/91u0viHyyj/q3/wJDRnlP7oXhRP62uE/fylO6Qtb5z8TeqJ/Lc7gP76y3zC7/OA/V+dpEKUC4j+3nu5Ea9HVPzhQ9WQy7NM/0S9qyCyi5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q03CZq9g2j9mt2lPIEnjP9h/KHMP6Kg/lYmhFuPpzj8vnn89FoHiPwJycod2JeQ/IthkJOWu4D+yCrrDJmfjP74fRJ8nw+E/IWsTfCnJ1T82KacQoMfgPxXFiM+/y9s/QmuCVrsn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KilGqkXN3z/lB0GWTfLjPwLPISbT6ME/EPzAHjT9mD/SyHr8lB/iP6j2tAuh+tY/+gCF8X6k5z/ujIuOVW3dP8i3hvf58N8/kM5f8ACM5D8MXE7VkqzZPyYisXiMt+E/duPIE6yB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OoHQmxsQ4T8nRtnZ9EfkP+ONx5FSdMA/rq0H1bZtqT/BD0kwxJbRP61nKWQGHtM/+YxWI4wq6D+hZT2hF13dP9Vo/ml0heY/77yZhqo44z8A73BQyaveP9p/DtN2TNY/5/HCliTU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EMKkRK234D+u0qUSRxfkPxzdPo9UYrQ/CTZYftSktD+ABhekAevlPz88Yde8st8/Y7ivM3wT0j8jRdI1U3HYP2grwIWlmto/eI7R4S1R3D9KWP6GHsHRPy6qDhrxvdo/Nkte9aG75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oNp0tv1r3T+Yc+Slke/lP/+JODJaXqI/iVZA49zrxT8facaAdOTbP+pzYgBAXuM/mAU972uq7j8cGnZ5+xnkP9u+D5P9q+E/4DN2JgU63j9BasNH5rXdP0miVn2cP9Q/S/KNAKbi1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1MAVQcvE3T/8OAW6U43kPwMXX8rip60/CepAoDuclj/gbu6aFgvjP3zSk3MtR90/kTHE4S+W4D9Bs10KUoDoP7WGx6cAdNE/LdOqxT/k5T9bDusTuo3OPzAuWAb2ZOQ/k8KUCB3n4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XN8qttnK4z+XtqFfg0bjP72fpyqJ2b0/jh/MecEW0z9pbURMWWbgP1G9nR9vC+I/PfdpxRgR3j8BbIuLo6bJP7D4uE4YY+o/46x0I0gg3j9025pT/XjgPzKuYStlSsU/XHm3KDZk4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mg4Gd2hF4j9llnlTFYzhPyTyqxg+IcI/52K4nmOFvj++LPSuM8DgP45auITFNt4/HyOs7i5w1z+d4A4EMmvRP+eL1RkijeQ/ppW756JK4T9MRHdTYy3XP/uGHjIG+8I/4G38oEso4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yx4VrIoL4D+MSP7l/frhP/LVIXCy97E/xM7cmw7ouT9U2NV7m6zXP3geDbQYF9o/69AYcjgo4z9lvYns5zzhP09humSJCds/98t+IdlS1T+V/YH/yXfZP3Mf+yl1EeQ/mql+9nj05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9m1w+i6x3j/eu7ISDn/iPxzQhkiYb6E/gbogjAF6wD+gSD450BPiP7cFf8zcLeU/G/rAg/8P3T97WyvE/6XXP5VsMubbWeU/1VRVK2tG4j+jHzcFmD3JP3dAfO7SPM4/7TNgoIg24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0Ja8c1P+2j+czIU9WOPkP3mten4WpLU/wF6sRJ9rvj8HiPxeLpLjPyg+ALIGb9Y/Jl/pYMCe5j+aj9UR64PgP2tcPf1M49Y/pqnI5nNF3D+6/T/11UXUP2uxXqUG/9I/a0DfxslI3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v6FqCh+A3D+ooCMISlPmPyxnnvhu+Jw/NC8AYisYoj9x1+Wa5t7jP7zVVVEx/M8/9xeR6EZQ3z/tBQKuBvXgP/yiW9Yivdc/gG32X24y4j9J/Ieue/HYPwqPgjmdANo/6dSryHjr4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"81rhmndm3j/B+wMMWWHiP8nf8lz0+rA/6s05oXvztT8bgcof3ebgP1gK6h9HQdw/0kc8PSBs1j8ZLzUvpircP09r73jvkuI/oAwZhYVo5T+3fjiv4mvZP39bGkmTX+A/s1T1Lg2F3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0FGg5/+F3D8LXuZLO9/kPzyrz2RgVI8/9MkISpZvyT8s/kXLazzhP2QQ70NGquU/wNk46I2c4T983CHBnG/TP06xGWBgbOI/xsR+kRN83D/G3owWe9XXP7w8D/at/dk/rD1DI+1/6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EILpHzR+3D+WQtBa183mP1QycOToQaY/sqfa8ZOz0z/62idra+PiPwoFMSTqQ+Y/BDQR7ods4z8sRnfIRxLhP7asseh7SuI/MnqeZn+54D/hpc7608DeP35TS9OxyuQ/FLBUx4Km3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SqFMAZBN2j+HzAciQnnhP68rBz2Q8dA/LnYZ6aEduD9biZ0k0fbhPxqAkPdIktg/xCcDjF+34j+YkTBVVArhP87syh/m2eo/oBBDv+Xi5j/CiAZG4YThPyJO7AHofNU/ryDH9qTh7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ujPkjR992z/mfqrmJEfiP8ku4brVWtE/jmvnds4ftT8oAhBwVZXgP2GFPM4kBdg/qtu7sr3C4j8TgfoviQDaP3a+qwOKDeg/onWnNtzo5D/uZgCGjgbiP3/6pdw9GdY/EeKOO69z6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N4CKyflC2z9xG0HhHirmP0kFvYz4aZY/IYRVAWtPyj+bCJZ5ynXWP3kWazUgcNU/cy0pjykc0z9bXbKrjMnRP+mSi8AkN9s/zMKGwDWd1z9DOC+eFr/QP2IswECIm94/9VTksMo+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w99WTIJj3D+Dq2OSOB3lP/jiO6Omx5E/7IvLpaEiwT8TQQ5j6j/XPzUpX+HegdY/ioQqfWt74j+XePCj+ErVP9zL+7yXkOE/J7lbMIOe2j+QFsMp/enbPzN51qF40dE/S0EkRZiQ4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+GUvj9Wk3D+XUrwlbnLkP0mQJ6psRYY/UCBpZji2sj89a2GF767ZPzZ2uoaIwNI/vzOzyPKF5D/2hOt2tEjVPw896Pjn690/z2VUqrvl2j/iGDeHRFzYPzHj//4vjso/UmFBfr+I5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BDqNJHD63D9KnOY98HXiP6rbhqCmgYk/WOmb5ILatD+acfHshyfbP8xpbmBmpd0/57FcATn63z/xsFbcQ/3cP8sC4+ixHuY/P+6VzhiL3T+xyGR1xjvRP3DhIl80y9M/TbBMTw/L4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K2laj2EU3z+O+vQvmoTiP0qzZ2DqoqA/26nJdh83wz8LxL5KmJfiPx2hSDXw2+E/9ftULi8Z6D8xEP03Z4raP57oOywmKeU/r9pYkWx14D9+6a/SkA7RP4I7tR4UkNs/aUxh/Hul4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nPZbA16v2z/UuFXy9DzlPy1y4eOqCL8/BIcWkCFbqj9AlEj+qKbdP3wsIb/iNtk/jU3que1p1D8cBDHq6/fbPw9cTU0Oq90/xWl7pcBM3j9dIDUmeY3fP+32HS32wcc/Ka3O6/2g5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4E+0oE6o3T+mFZ+E81DiP8AI5ZysDIQ/cnocseGrsz+NLJ/Kx/fTPzlLgDYZX80/+6UYUK3+4z/LEneSDHXVP/Wcqahw+eM/vfPoW33Z4T+0O2EDv2jKP2Ey79Kez90/VrnsUG/X4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m/rNjWyy3T+lVK+sxS7kP6Jic7ItrIw/SzgEPVSsqT99tTG405vXP60aikVe7cQ/hZjK3Tqn4j/yNLv4beHaP7ZkuDwp8uQ/gVOMeW9H3T/OYfSXgsjPP4FEtjfvMeE/eHgGJNny5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5lrvJ5HM3D/D1TX2La7jPx5CxW8rdZI/InOSQGmsuj8vbyxAiDjXP4RGMy1SXco/3d0N2faO3T9roE8NY3TWP7PrZPeWEd0/TH7YH/Nu1D92xhdnKnrSP4Hv24yemt0/T2km55cp6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OX8rKdbm3T9RFii4LqbkP+ynva7lUaI/k/SMp/DbpT8bSghQopPhP5DnLsRjudo/5Oegc9IT2z/+ILvaNXfeP1kB5hSQGeA/SQ3RpzxA4j+KjNTnNvHhP3ke2REd6dg/G0KavBjw3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9JyLG1e13D/RDaFlujHlP2HnmUeMSZ8/OkhB30BktT/pOUtIZrHdP4lBr+qXHuA/jsuaCB4j3z/3k8ME/LzWP8ugT9oUW+I/IVjik1aO4D+C6r3gEYzMP3siLCORddM/puygVZ0tuz8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VzF7HFbq3j/dciWPn27kP3OuekxjCIE/DEUzomrGvD8CzrPNfVrhP+aVnx/NzuI/GOgPeWfd4z88h5otJafcPw0cz/JhS+g/zLJv4daG4j95iesTQzjTP33ARrct9dM/vrlCLpNR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4CGuNikU3j+o/kFfrvXiP5xpOivGVaU/KewbxAxeuT8uZQP4oJHdP/fvh24KiNw/W8j6ayjI3D/ntJSxwwLaP30Df0blgdU/il2f3S290z9u/cMJvqneP1v5xA/Fntg/uHsEF+Em5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/KNlull02z911rKbo6HiP+lL0oP9vbc/McGR1FruxD9caV+ObP7hP3z/Z14dqdw/tUxO+Rux6j/YfrhBIkLkP7JnoHx9ReM/k80iZyih3z9usY18QfHXP0+dove7XdM/+Wp1Vlin5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MUfsgVWE3j+/6YrHFq3hP7nrukDSgJ4/bFKyIg/xwD8yAW8s/+HfP/Dq6iF289o//DpsSo0k6z+sZMuX+XPjPza+A82KU9o/pUKOseMG2z/WBfwSwXnfPzpw4lQCLtg/WWn2XFSN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gv1qipXJ3j8ihB0I6xLlP9ZaXTgZi7E/9QvZ6Qp2wz+wFoOh2njjP/6kQPE05OE/be2OJmgn6z/OGJd4fabnP/jUs9dSfNs/xaJrTW060z/hT8Z9G/HgPx7gm6Xylds/X0tg8mvG5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pZQj7wqQ1T+A3bLZZ4zgPwTToWDYz7k/UTLzpEYCyz9M6n4QafzhP8Esgeepkd8/llMc9xKBxz+V4TF9sPC6P2Kd4h4kT+E/wxbqvcvK2j+hk5RMCrrZP6NXiat8C9s/pXkh8NSq6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zGCye8Ck0T8xHttw/qngP5Dz2iGIKdI/E/890A5xzj8vAIYmukHmPwHWPCzNe+Q/+uH1iBmC3j80W471j0fdP20GtbUaEdo/1R+0D76M3j/TYXLrY0noP9DwPLIjOuI/4h4YVHAX5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fTU1jrxX4D+k5HhroR/mP4AGIzPN9a0/kevRudzQsT8vgKoSidDhP6xdIh+6X+Q/DVGjCbiy4T+IYpdEogDXP2v3+caerdw/voRwPH2D4T+rXe+54X3MP1YNz9RT7NE/UmHcHyPT3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nYB/45wJ3D+h+mQqqv7hP055IDmDG50/wehiFzpErD+POmmnD7XiP+xm7OA1u9E/kmAuylFV5T8hASYrRWngP8bX09Qrv+I/Mh3ukdj42D8KcOddt1LcP4uBWaD5hNQ/CwZidUBx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t2EjP5df4D/Z9i7L4+zjP4qtal6Pops/5vBckzGHyD+IVV5Jp93bP3B2y5AgHdw/zFIESb656T/X59WtOM7bP+txm6lmBuE/femj8u393D9aNdW+CCfhP5Ar0ljDbNM/j7Ac5LhC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AhiCzobl4j9X+Cqb7lviP75ArK4jqNo/sE6+43WLtj+mVzLCNVjiP9EiGR/kjuA/TvYZx4/43z9bcBvS393eP0Ou01d1DeI/IvqfTPCA4j9OmmIkX2LRPx+2AABiMdQ/A5TtjsWz5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QUMPFPEU4D+8xa65u3PmP/peQ+7HPqE/P9VQS4vy0j98B04x9nTkP0Jj3X/dsOE/gavBczPo4z8C3pldngrcP2QBMPCAo+Q/XUaw/wOd4z8WHrZx3pLXP6HcLY50O9U/Q96FBzSi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YAWTXmlM2z9yHOWROf7jPzdxEzMrvaU/77imNdD6zT9MPblqgYrhP4BzI+KUUuI/r11ldMEg3D/m3yqtTkLhP+zbcs4pG90/7ZI2Uerv4D/5IFGne+raP1RKP908q9U/a26LLW+94T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jxDKGJZy3T8MDENf+EfjP9iqcONzHqQ/t/5eQ23kxz/EZQ5wDL3iP/wWR1ABudo/O8lNU7Pg4D8y8oAm1KzdP+4jV3hahdw/K+LPA1Bd0T/Sjc44hXfSP9A+BQ8aotY/xOYh8BKF4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cF+gfud83D+Oof23XV/jP+yYD0CE16Q/KlQVsWIYwj8n6IY2YwvfP9EmQW+MxOM/v1RzEE6a4j+W6obEoKfTP8xqkS+rTNM/mFp8iiHj0z86++L5mVbAPy88kqvFdMc/Fp4pPJnp2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G5i8hPXM2D8EdD/zi2fjP2+UcAlTbL4/CzKigflIvT+AeY+UfnHlP4FvWVXtI94/v/qcepne2D9q7z1Zm8beP9kBU0+WnuM/F+jnDTGi4T+juPKDoevVP15onHTjcMw//YbHFj8+4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zDAYQSSF4D8BhBAJv3TlP6/hR59fBpk/v5lz0uWqpz+W8lD/rdvUPwA2qCz+NNY/FPF7X+AZ5z/d+4AGmvfaP3BzCjPFmOY/FQ94n2Am5T92shneo+/bP2sVGhSTWuE/vtvh6+P95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LlGfeYjg3j/joFMI3MHjPz99fuBz/5Q/CZlakdlnnj/FH3jfgADQP5f18TCuXME/fZAtI70l3D9kZnlvmKrhP7lZJc5DTeE/h9F2uhmd5j85h5cHkezXP37jV9S0nNs/vCYC6HAh2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6ikr/omm4D95lmd3XHbkP3hhN+RJLrY/52p9y8xvwD8m8twnNpDiPzk3jnbTddg/sF+XtOyI4D/uud8tML/bP8EIFHBlFuY/f0fitq0d4T+mGaz98KLaP8jeyMM3Ndw/NA9iqhTK6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Haoli9sJ4T95k38SnhnkP7eQJmHmGsw/6hDhyfpRnz8nVlSuds/kPyYqKDzDmt4/BKvMCCtK4z9fxJONyV7hP5rH0A9XduA/JHZurmgY4z/jiM+SQNvXPylUjVA0ct8/JeLRX+x06D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5z3Tqt1Z4j+QFkh9aZPlPxpluWJpErw/FYDDkM8ypz95LY6VzZTZP2vr/tD8YuE/KDPZsBLV4z8pky+/3UreP0+3lMIE7uY/354deDJl6D/oH/RGP5niPysn+o8iCt4/GJUb1s285j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CrizJSZZ4j9vjtVWFcflP3pc0YFqisE/fr1zTccynD9E20GvZZraPxt7/k/lCeI/pKXdaJyF5D+nspG2obbcPzc56OUUVeY/Nk9tnsSy6D/Pcu9FMYvhP68cKIRXiNs/aCEC4Ugv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VcBvJ8ej3j8d9gVzo5zkP8Fwdbg86LQ/AZUfYfFAtz8u3yF9ml3kPw2u9yjIZNo/zS1gD7Tt4D/Ji7mnwfHiP53/VlnG5+I/pwjNN+FH4j/wjQ7br8TUPwll1whrt+M/zHntqdcg6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CU9AkUaw4T/dhhuZRrTjP67D1gq9lME/jkiRP0u00D/TVfZA8MbjP7snrobAVNg/lYfn9FVN2z9RKbOYyqrbP8PiSzCPxt4/kmPd8HIa2j/a9/SPWfjXP/77Sr33lsk/L3qZJkXt4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sjcnyFuf4z+K/HH1/hXhP10eV9ktA8Y//WtYxawGvj8YFZdV7+PjP1cRgorVGug/EEsbXYOO5D8xCsgAit3aP27w9gU3NOA/bDRWZz1a3j9HEnerG8jZP49zL4bLWeA/31Ee/lOq5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rUoZ3zVl2j8N4jKGpDPjPxBGOrIsFqY/KCFxDzY50z83XzXvL07jP/28g/D2INk/EcHR9/+u3j8dbi0oKg3fP5K+3nqnndU/lw8/F+1V0z+E+5Tk7SnOP3zJrMDZWcg/IOqfchHD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lrcUt3Bo2T9ro8XxTBLjP7+a3DpBgqE/t6iFztEl1D/C6KESWaTiP0nnBLDxBto/pnDYFIyh3T+LtAgB1OjeP9sOYleYQ9U/9CRT4wT61D/YBJAC9KHMP2XwhJrVz8c/MeT7Zu/f4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TfUE/WVP4D833R1Z0rniP4a0VuwiB9M/Xp2bcXTsqj+G7QghkDzcP/IpuC4CeOA/ILTOmUNl4D+pZveEeHnTP0fyzF19quA/oxB+m9V52j/pNEE01mDIPxwJUdACGdA/dXjQ4BFe4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AI6EyH6/4D8hlk2HJUDlP2R9kXoyq74/dOlRS+wrwD/R3G+32EbgP+Btk/CVnd8//O7tL8d84z/2cggqxkXYP1ojxI0A1t4/E+0PctOC2j9lNwMwdDTQP1tQzeGq1c0/vr2hIEWJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k01ZhSJ25T9UYkSg/ArmP7WjpODVsuw/IkNVUOr0yj/hq4H2dQzeP2eeHbmmvtw/EuD2sxcc3T8/RpUAsk7SP23IwAiKtt4/fi8TsljU2z/rHOptUUfRP7/AWOKypNM/wM7wR7ah4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hh9ySuXl5T/7Suaso4LiPyFYYwjl/LU/zPNSkykuxz9ZdIbvNH/hP8kVwAlVPt0/FJ1odfhw2D+luxVUfO7VP1HGZLOiP+I/czC88rPY4T+Dw+WKLAXSP+MhogxE7tQ/8EdZ2qcT5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VbIs94EB5D/pRYp3bSLiP/zuSJZKwdo/peBJty/ryj/Dfu9Jko3iP3HvTtBQ990/e9xUUO8Y3j80UVUoZn3TP2q6TZWoRuc/6A0XlbrX4T9rSsunaR7MPwhqwa2pE9c/nPqNucXr5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ksEz3GHs4z8Nde2QCgnkP/k6vJVQ59w/OMAs+tLAzz+zT0Qmi+rfP4Kl2JIXO9U/gNwhPLOq3z+eYuTS9r3YPzT4iQX8O+A/yvavdhrV4j+odwjzWTbSP/nza7x0Hc8/tqS0cPK+6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ukyyj66k5D+Vhv8HrunjP135yMBbvsg/oZEkQIPBuD/2h6CfUpzcP3uG5B7tzto/Z5L544Id3z9YWgDlqLLRP//RhaN1deE/oL37ey/U4j+zfh9cY8/UP+lWeb6pks8/q0u6i0ku4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e98w4EM64j9Yps1TynTkP9/y3jI4VsI/tqvMow0wrT8qLjHE29DfP38wz4E30tQ/eBKZwogy2T+SBD4zLNreP73xTEtNEOA/6PSmVVdl2j+9s3gvVFrgPzSH+j0tMOA/oxf5SN4v6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fuzd81+u3z/ErqwnFq/kPwGmaSl63LU/H0EII28/1D/03tl5BZjkP0p2jtc7ZeI/ckbIQygg5z97Stk5vxvdP1W1eOO9n+M/3M01mBB06j8P+sNKFDneP6L+47QIWtw/FeKd+gHX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kCJsZs792j/U/c9PhyTjP0quNCO/o6U/tVGPd6bp0j/CbGP6Ja7jP75uyzOdROQ/+HQvykNe5z+2ngSWqsneP7gr24ZdTug/enZ8GF8j6D8/5BCXYbHgP+ReXj2m2N8/gBDWgZJa6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+5WQgh924D/7gF6V2EnkP3Eaw7Y/mqU/E2bd1fHqoT/vjfgmOuTVP50klEoj6dQ/AahfEf1T3D/Ol1zUieDdP48N6B6eOuM/6+HkY2JX5D+tigZqi1fmP45MB/WnbOY/p4q2iM426j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4L3Qutz/2T/ADMhekXrkPxykXlzsPJc/56eIa2CInz/05o2L7STgP/PJPsknddI/DHaUoN733T8hKAHs6xHhP89d4hk4jOQ/9qJQb6QZ5D9cktD692rhPzo8jC1MqOE/HPOWgimd7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oNx2f3+b3j/4MnwinszjPxi/geyKOqA/ugQvmchwnT+CN5b/8C/YPxZyb8f959I/CNXyKl044D/aGmQ4AlffP68Gm90DKeE/nScGFvXD5D9DllWUQxvgP5reveadt+I/e3aUzXAd7j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"crRHV4m62j8buCbT0TvkP5E46APLxKw/B0JPpd6ttD93n/DWGZ3lP+wdrGazJ+I/6WcZVuB/3z+glUMH1sXbP93zHZXlWd0/UTSuHAZL4z9Zqs0XbijAPyUP8h5PDso/Ldhbs5e85D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1AlHAfE54D9aUOcWtjPlPyftEWp5LqA/h4+SYawjrj9Rv9wLxjfaPxTgaGBMW9s/3avJRgjz5D+/DNDeE57ePxkFE6PUBO0/AnP3Qkcy4z/LOi6XBlTdP68tDhwvcNE/paZ91RJi2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5kBpxTs72z+0/+BOfl7jP0+RNjgfcKQ//JYckyxAtz+QPNarSZjhP4pQ2251VdQ/hBtedU9B3T/T5MCGbivVP3zoQaoOtOc/qr1tsWgU4D8wRTNqUEvYP35Xt6x97sY/1Okm7B8Z3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7PR3eue33j9Tn1F/D6jjPxL0egkjcZY/EvJNUYi1wT8EB3nrkGfdP6MYKD+DE9w/zcR/BPht0z+fg3BXQrTWP2LxXJsO2OY/5TKHxBGw4j/uwlK0XrHKP2lWHIoE07o/t31mP4gd4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yna3fIUR3T9vRcqpb0bkP8iQcBRYw50/TdV1zOcKwz9uAK1Li/vaP05woX3ukto/50TVqIFs2D+CTtLmwtHUP0Lc361xruE/d62/17d/4z+Verx7dirKP7Zd+GkZ0sU/WI4gQD+84z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Chjoml6Y3D/o19hV0ePkP4ZHoOYggJY/XDLV8hw0zj9SPVfm5JfePzZdyvY0/ss/6sYxDWlR3j+rjaijRivZPzGJt9m4R+U/i1pnRBzg2z9yhMUeU+vaP71a1DxibNI/b5GggS3d4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kwcZa0ps3D+arAviwwrcP/VeRo/4FLw/KRiY4vYmzz/04EZ+P3vjPxxcWfrpm+Q/xMA1sDJ34z+YA8d1/GbfP8K37wGkl9U/LMficuAB4j9ZouybS13TP22pn7rGTtY/Tto8/MZB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kx/y05vz2j9TyewV+NPeP0HW+o0hDZE/CwkVGjz/2T8ksgMm4njdPx7wnHhD4dw/pRKWMHTG1z8ceRZxkd/TP50dBU8BkOU/qO+1ZAsl5j9oZsP/kRDUP8jwQjCdBtg/HeaWH6nd3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fy/26+R63z+pN1wHg2nhP69nT7A9HqM/95y0b6JMyj8WG87+EiDiP6j+BKzxZd0/YB4zAHNsyz+AVBxvDPrRP/RcmjEVveU/1oVVEI194T+d0Df1vPLUP8FZxW7oDtk/Hv40vQJm4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LGhaEMc63T+OZ1EtBifkP/0GV+bY9rg/JGBjxJJkwD+z5Q8REwbgP3nt9e5Vq9Q/qjcMHv5B4z9im+qLeLLhP2zuJ0FVteI/Xa+boI5a2D9gYSa11szPP2pF5Es68+c/4I9V7RNh5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lX68wlOd4D8cSujZT1TjP4VZv7btwLE/9YuqXKbCqT/xts87aW7bP+ly+ijVids/6HR/EGLX4D/s7fnGlTbcP6I31nxZPds/7LwqkMwL5D/uHlk1TBTkP7AyIRRnSMs/4SJ3RiJP5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5RTAr4dg3T9zuboQEXblPzLnj6+pPpI/zUJ5y+xMuD+8ny+SOvvXPwY7pHy7j9w/yHbDVyQ21j9S4OQyA4rVPyO21/f6NeE/KIPaejE31z9wF2btamvYP74DMVtN+Ns/BXkRZUyQ1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0WtuaCmH3z9yeV84g8ziP+C0lgSnQq0/r3QWdPW2rj+pvR5/dbHiP/pPDzmO1NY/yi7O2vLp4T/W5hDhjkrTP9zTi9imRN8//D+CEmbt3z9osX+AFd2+P/eqUWflytU/WZaQHLrI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rGYPAxjK3D9MYuqZBb3kP8ySsGbzwMU/Ta/jsSfIwz+sZGzVYADdP9okOSwR9eI/4ZF9YKxc4D80GUeWDtrgPwhvvfFn09Q//LwAdzuKzj9agM483rTgP8tTfRR6Q9I/+C9N2OJq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MJFY07Sd3T+ZXOCAq5zjP0Y4pwKqG5c/zs9fsn/uuT+YYLAn/droP6iJgQ2+YuU/MRGp+FwJ0j8qnpC5lyS3P0piA/WfaeE/rloHiQYU4z+ok5tKIETWPyOUg7doc+I/ATJ/dkbF5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4AphmPVd3z9iONHLxBrmP4UyLiO9oMo/mo5HT/ZhwD90RU31+hTnP9rKq+BbBec/Yj9nhJNx1j8DyFTOjujTP0DDCr4RX+Q/z4bVe6La3T95eRDJfgXVPyxwdhZGOdM/8bP+VeW62j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"peYwIgEo3T8MFXR9MGbiP0K1FBuZSpk/jOkkFDupsj/X00NyI0nePwhr2hzoS9g/p2vD+1GX4j/oVr466UrYPyCwjYe9edo/Dx5I9Ik93z92KTmqXnTNP+aHOfxy8dc/Y6S4Db+Y5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OpBwoTeS2z+QtzGvxXzjP6h1bcTHyKg/+hsRjOVpqz80khWEMaTVP22Y7SWDudg/n8/AoNoE5D84qRUh8xfePw09eRWXyOY/aBdCsvNR1D8sdFE8uoHTP/8llLyVA9Q/uIN8irwi5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3SPpRv2R3D/UgN/6Op3kP37LT+MhM6k/Bfj1xykesj/+wP+fZhvWPwZ8a2cZmtY/8wqxyA504D/VNh3yM5jfPyomPmwITt8/6syeXl9f3j9dVlEObcDYP/gOOeiniM0/6L7MGgIg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uJnFnTo93j9XGcMjQ1njP5MZeYUML4k/JTT44o+SqT8RWII4Ni3YP0VuCWO+EMw/aL1Xmhc34D/gCQx5iu/XP/7EhHe5ouM/3Y/b7c8N4T/ZnreRyifcPxRl9x6ugOE/u/lnKAvm6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5XdTwxiv4D93a6uTyk7kP3jw8WxYLLM/IZ8psfPDtD8fQRV/AEboP2Zn/0+Ua+I/8Drk0ImL3T8qyxhjboHLP7kboAQEFt0/UW/uvdKM3D/xu9LxtTXVP2jFtJIOeNM/GIi2FLFH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"etpQ3o+53j8Zeia3uZLmP8rjJ/vqy6s/0uKZ5soouz+LECvZTFjjPwiW6j1b0Og/9NvmwxY74z90QjqjQ0rcP7h2HGWT3uY/wTEaMXiY4T8VIJWQjszZP11adRnyK9s/QwyXzHXM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WMu/5nFe4j+HtIUCwgLkP8uVIcheh8M/BDztpjN/wT/VManGZvPsP07woZ2CcuU/72122TS23T/588/QeI7TPx7RKc6sJOU/z6lGGBrT4T+9YcLxg4/WP4IwxTq4e88/fbvzrqQS5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qo8xemT14z/KXALnRx7lPyq9PRAi+dE/Tn/RjxlhyD8CoYiV7nLdP/w5B9Ej0uQ/wur3MbkS2j/G3eEIi1PXPwiTXFN0PN0/kB8FkAv44D9ihBwjibvVPzDl23/SNd8/2qoDaybf4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8qmGri0O5D8MYJRBLTflP0kbJYtqTtU/JPZEi6eMyT+mrj7z/HXgP7YWEBcOfOM/xbtoLFnI2j8xFgMZWrbZPz45VrTpC90/2RTTGAVZ4j8rSsK433rTPzlTUnCEstw/3XMiGkEM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gu0jxoF75T/DQyTWHBXmP1o2g5eQYNE/VGqkPTbFyj+mxb6TcDXgPwV9JN0D6+Y/H0k08qcV3T8smw1Jno7XP2InYQJIZ9k/3twiOYxp4D/kI3yFY9XOP4aZVEVogtw/JW+nKv/I4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dC6ByfDM5z+YaKbKJcDnP3qG92TQgdE/1BHtOYc6zz+oev/WLITjP2qmD5b2IuQ/tL1djjIk5j9cfi6Tfc7XP9Uy0du5U+A/iTbftLaQ3j+Qd2pO447YP+5CCglKgtc/iIcYyTpP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sVb7JHBV4D8ezZBjntTjP/oI9pDOtMY/EkDazK+4xT/g3ZS05AHkPzYtegwGLeM/a5nl6M0z5z+fmPXNudzbP9QltZx749o/Tsm8Jpqs2T+E1bFJCoTaP7SIAVB7it8/ckcGSs8L5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oxkZWSe53T+qWhfINKfnP0uKReeVuJo/Fxdf8PGTwz/eIhH93KTjPyj2a4jtoeA/RY0TIRFG7D+DnhICZCrnP0lU6mLtLuM/QaOefHyD4j/IX7vPwzLlP2jle+4hJOQ/Vc6DFN/U6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"21Srpbc72z8lZIqKMzHhPwI0DgYrT5c/7qWJ8Gsl1z+hBTOOdO/QP2XAJMTehtY/ku15GYD/1z9CuI6BQDfHP79rneNTu+A/qKRAVEIU4D8A/sY3QWrVP1A3CwiNWtA/5ZRoUFuQ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E2gqdoye3T/eBhRC75fjP1XjIZ1KY5Q/oNu4aI9dgT/+UVXtNYnVP6mDYV+UJck/cyaV2Kcw4D9MMDXr/tPfP9ms9298IuU/zhWA3AZL4j995JDbtkvVPy5LOpFm2Nw/1OthkFLe4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4Aenbq3E3T9+pSoUFt3iP8JR6yHzCpM/yRlnaIAEuT8AzROg1tfeP06gRIbtXsc/EWTrgKJF5D9KFWbsPYPdPxJfT4toL+M/0+W7PHIk3D+SkCLO4ffWP4o8HeFrF9g/CrlMRgn82D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GRbF16fo3T/d+vq++BzkP9ZVeO1FgpI/9ODc9jJvpT+7dy2GYwjeP5kJXP72YdI/FP6FZBKf4T/QVDaj4OnVP4ba7+qcK+E/5afHPnc14j+elGVdOXbQP713kDMWSsc/Oy9ojYhv4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ly/x1GbB3D81xFCJlnfkP9evhm/Ki60/GwigwbdbsT+OFknWcb/VP9Q+hG5OAds/PYMtACi02j8VlpT3bKTcP0J0wygxZN0/9LAimovK1j/ipkEJtyLOP7vf3Q8rX8s/lIqKukSI5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WV3r6rd23z/jiOO281rjPzjz066te88/R22o/UZDxD+b2CzNC6/nPznQVPe+OuU/zwuJ6a2R5z/yfPPndf/YP2Wr0aySreM/EjLtvn4M4z+/BM6zqtXiP71tzzN3XOI/x1gy518I5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Qw2AIJ4E3T+Zcluq2rLjP1Jk9rvkcZ8/keelJ2kWwD/m36dmRynfPw0XHOHcHOA/uDs/TIOQ3D+lIsMrvXjPP0uzpCL43dw/u72yjrW/2T/9KhhAZHnGP8a8JeeB4cY/e/l4pk0s4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jZtMmfgo2z93sOSFeO7jPzf5Qa0xwbQ/pNMbVoCRrT9Aa7KPUgPgPzUQtAqycNc/RexC/tm/4T+u5Qrw/sPiP68Q2LxP1dI/fMyPPaT10j+Vf2QdhfbZP5dBJN2wVtY/5vqxD9y+4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cqQVy90C3j+IA6LkyITkPxFtSQcg8aM/Vx1yjDxioD+AxE5RwiLiP5HCdGVvGtw/7UhmMXJI6z+Srbq4m8rgP/ziLFyUm9w/JbjYhRIu4D8DUXkuKaDSP430cMytGME/sXvHqyce5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5RXC+W623D+mEEkIf5vjP2vi/PeWgJI/PciP1i4ouj/OBn5Z/FrUP6FkUOHuZtA/tOPbATSO2T/AXG6mifjhPza8TxsrcuQ/6AAL94AJ4T96VCnnssrUPz4Tq/AFw+M/C78FygE75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g7DFdBTV3D9eukwBtUDmP/0IzEFZ2Yk/5K8ROM6+rj8tlFJczD7ZP9BgwY3bcdo/PzhUSbJP4D/Ndm3vV17ZP0NUTH907OY/tWXC6dSz4z9DKN39hpXmP0wjGgtWpN4/t6DwH6TR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Az02rOn13D94V8dXuxjiP43QKm8ZBaA/mX2gL8P1uD9gAax6GwbfPwtR7Z2rRt8/mYXQXkBm2z/ysqGCUpLVP6neSQWOQOA/G/mxLkjR4j9ApnE1lw3SPxfbVU2ZKdI/qrpueNFP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gyUyUuOA3T8My8QfcBHjP1DwRUQzdIA/MbpVJ6YowT/lbXLO5v7cPxZZtosnjdc/8SJULCmA4T/44RYmY4LRPzJdj0rAE+E//YqAJgT24j9VdQvr3brRP89th5qsfM4/sFUXBA6d3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7E5edsb42z9rQnmQC2PiP2Bp6+1O65Q/dtWWm0qNwT9jm+MeUyPbPzYApiEWy9M/mnKxiGk34T8Q1baSyX3KP263/jzp8ts/8mQfmqla5D+MfmFmVwHaPwIxl+rP4tE/aWh9eZun2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"187Ens6O2j+xvT0VuwzlP034KOkektI/JhUtS0mF0T8Hv8ZgLhziP1nkd4uQEOM/34/mO+9c0j+83wOO5kTcP+0BEQq8jug/xaBL65SO4D8/t8rlkSrLP6Vo9Elof80/VqHC0ARo5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q8Co6oh+1T+cMPKHcK/lP1EYz2DU7cE/zv/KXfqu2T8KEgntC+HgP+py356qtdg/cLHPnWJW1z+8c0T4RpPcP13b89B17dw/DBXdjNvx4j97p12KuX/ZP6POUlv8Ics/EfbdFBij5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PkcEz3JS1j96J/68vMLjP46Xx4tb+rk//d5ms6ar2D8i7IEdm93XP5T63xvCbds/tk4o633u2T+xI21yw6PdP/2SXn1sFd4/+DvP1DB74T/+W7cuMo/cP/0ZEASsBdI/4a/IxYSr4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qGqWxY5j2z8vl/5EjbjiPxJCAZe7uqg/9kmZ7X1l4z/r+QspEwzmP6UgQst+1tw/R3slcsVp4j/dcA2VfGfXP/JqTKtc99Y/rhbH88LF4j/I/V9Ga2zVP+lXqKJmudY/zQ+aKICR4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kGgaebGr2z+e4ik98YDkP82lxk0Yu5s/4uzXzQqawz+j3laVWOjYP5caCNNShOM/t7i9EvOA1z/WONuVg6rWP5qcbfNIXuU/crJAqOev1z/xZ8Y/ajrdP2lazg3QVd4/MwzALsf05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oe6q1KyC3D9rnY4Ga2DhP/YVVujCPa0/+EPOPSOOuT8i/bYX/lfbP25WiY+N8cY/XCul74e64T8LYZwNBffXPyK9GKpMDdc/or2TR1Oo2z//JMM3+RXgP2bPTD+06eE/kUTMmFZy6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d4DtEiSz3T8mz6cNNrPlP6EmQEFH8qI/2aeM/ugJsj8s5MTDPuneP/Ilq2iEFuA/RRtoV+xU1j+TUW7bFBrQPxJnJL49XeQ/ltBsB+Rt4T9helWKoCzaP+5pW+1m6+c/QwjbEojO6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xPbrCIqJ3D9hpskfKFLjP9RnF2MGvrM/vxf4wUwbtj/TszKFqi7oP0xb272ThOI/+ezIhWSBsz9Dgb1t5R7BP7b+lIAOA9o/hCPMXIEO4T+8LHcavxjkP2G4FEBGHtw/ngUs9J606z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pam7clN/4D/9mzeVn1TlP2kLTacM5b8/P98DteuOzD+RDDDyFIbaP2fggo/EReQ/mscDkdoV5D8Ga+V3ibLZP/XrbDGH3NA/05/DeTJWwD+KXzuLbpjgPwQCitqvr+c/eOTpeT4e2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hIBPSWJt3D82OleUN0DjP3dDQ59R14U/mOwPcVMtuD+eIHk6b2zgP/tzonmdU94/SaE10vJ22T9OR7f4CoHUP/0AC2dzz+Q/zXCoGvkz4D/ZDeSM+c7YP2J1YltoYNc/7ZKBbZUm6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/kQL6oTa3D+tlx7gZJPjP89Cy6bSsa4/c2S/MFh4qD8QDOZA1a3gPzLH7R2Dd98/TbC1RSoY2T+wwwL6cdDPP3KhhWwSXd0/ncuDAtgR1j/cyTB5U4fXP5GY4IYdYtQ/R46XqnlH5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vEznQGf63j9HTI3MMxjlPxWpfC0ftXE/UPEtPx20wT+be9Fc0bDdPxBf5h5Lkts/4YPKkKPs5j8WmwRioM3jP6GyMJ8Qfug/kDztMLRF4z9csmLmravdP6D9YipZO9g/2vHEdAHL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"grGQQvZY3D8hwLXTLxTmP362kcavp5Q/BnVx4i0gwj9rrZdomRTWP6+3vI/w2dY/QlYZMYmj4T/XsZoQnbjdP72B7K/mdOM/TO+ku7kG4z8FZLj76YDaPz8cXSIrU88/9yHmnUeb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"N926K8n83D9HCwam31nmP9a1NOa7yXs/gY5WnTUEvz+nMrubjv3ZP4PopoDIVdo/EVd8l94o4D8hlz4+c8/aPyOapdOVwOQ/21gpOJmE5j+me8YwuqnGP4h3xLKQ+dg/5pg7YPzg4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XmqFkbjQ3T9evMP/NiHjP/quvQq8xao/SWwEgZU8wT8wsN7jloLnP9nD68YhzeE/CSKibK4y2D8gPEQwVSXUP0VoM2fX9OA/nxycG2eY2z8hewAAiarkP3rC6Vk1PNM/GbdNniHE5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9/YlY8iN3T94vJshRNnnP/IrlZ+m0qY/Bh3iAFAQzD+Pf+XvB1jiP1cHYLteiOY/nPnszq5V5T8luIvPeVPgP34D5l5QguI/NB6wm9/t4D9equZq7cTEP64kIE0ymd0/75XGIac15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I3iWk/Jf3T9+647H4UjiP27UEnvZGpY/4ZikZRARrD/8Fqmw/AHaP8ZCAV0XsM0/yd2eKk9Z2T/S+W+fvkrVP4mk+V+pbuI/JKmdvbHX4D/YUgqvgnjZPyqV/sOexcA/D+1bkV1d4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ee+bs0FA3D9X7uCJMIHgP8+j0NqLPZU/cwnbt/kSuz9z4uPrJR3ZP3SBR9JYOtk/isYTWDrj2T8NKhRVEmXVPwWPotlrZ+I/0R/hZ6oh4j+5DS2VA4vaP3SoRMTTxcU/QYMJnmFd3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mkKANB4M3T8Uk4J4LA/hP2kO1zzSsnw/9y5EmRi/1D/okFsSkGrbP4RRyzjdDeA/AO4xpjaR3z9XyF5lCOffP9Q2knueROU/+kFy3fbw4D8I+x0GeP7YP+D888ouzMM/TJTTCrQC4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wj7zfrkI2j/NPz851NjiPzP3z6f6vqI/Wlh66CA+1D9p3hIrJr7YP9S0b+Ts2No/WCmYzJrd1z8R6nr8hRjIPxWBmwpn1eA/rhjRy0qU4T+yPx9BH9zOPzxBhl0s6dM/jrloJKzz5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vnMJFQpi3D89AVFNO2riPzijTD8AoaY/EwsK0+4C2T+4LanvdnzfP/1zbGVIq9g/V6kYfbWYzz8gGL2JvZHCPwAx31t109c/Wch3l3Tm4D9Exd9kJcDLP+8pzTVAk9Y/8f2nTJbv4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gYUNB3my3D8w10IVSeriPwxIf4kpKrg/qgj9Up790T8eA+7AIZTZP+xpg2qf/t0/2Hy+GYc3uT/syBC0OqvIP27qbY+Trd8/bKlxjwMm3j8ET6xk4njYP4QsM80vwtk/CIFavVJr4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mFi65pvO2j+NsgJ2esDjP/+9zWVVHZU/iErrbyA0yj9kTMylTHngP6nOYuMaWdY/jnrg9XT5wj8rJkotTxqfP8ZmyrYf39w/HMO2PXBO3j9zClQlBcvXP/40KVhYnNc/PI5LgG3b5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JyfHETfY2j+4zYPmSP/jP1ed7Mxdvrw/fWw1IFZzvT/1uXK36KraP5gID7G2Yd0/3V5nYtNx4D/e2pbVef/bP0AjIvvY7+E/rnwazaxV3D+7Stc7zE3iP7m8zPKjt+M/OVjSdRGU5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2orMoP+n3j/dLxlJw9/kP3zKPI0NiIw/Su56eC9Quj85qx5YkYbhP7n7QXM7x+A/7ga8vMF24z95t7aUy8jgPzljHpoKF+M/RgxDuCPh5T/wjJvMzGLVP4dWfMzNLtQ/dJ89/49B4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1GNkedVM3T8O+xwllZ7lP1Zma8x9XpQ/K2FSXPkrtz8eZoRz4mnhP5P6+qXsQd4/nf9BZ6cL5D+0yuxgng/gP2MMd1l95eI/eGYxHxJ35z/HOSCJhdbRPzyPFdyH8NI/Mp+z22494z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iu0uB2qk3j9kphLlL9njPyreYKXO07M/JItVFJogtD8EY7LhchXlP/P1j1KCLuc/UHPPJREw5z+e0a4nPf7jP5PKel7Ba+U/4msE8zmD3j8irM7vfG3WP+plvLN5M9Y/jni9ZQUN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AtsS20qh4D/6JF/JP8jjPzSNYpgfY6Y/v+6rt1obxD+hfV4pIG/pPzHLt6oqpuM//zdx6ghk7j9QR7ysHAvqP2A2CAQeSdk/YFNUaWE/3T8rLGKX0kXlP8qwsbk5yOM/fw1qSQwa6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"41upU6Sy2j+XmifPij7hPwL33wByUbA/NyHQqOpbzz/AmQAb3PXYP3LKNq5bUeA/BQ4b1zpq4T9W4KU/vhfdP+Z/7FNcIuc/Je9/9qDI2D/F8AUqYILkP/87nddGqOI/kIMdxrZR6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NeUOBD4j3j8BUSgSkkrjP1LbGxJ8wJ4/9lUVgh96uj8LZUNHJG/gP0488u6ZJNM/S1M0s15G6D9Xj0KrnjnhP7XHxZWKqNQ/blpQAwek4T/w6Q1eh53RP5YJju5kD9c/UgnjRIoh4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v3Dh8rYk2z+r86VJqVXiPyioJSC3w7E/cscQnOFW1z/xCLfZ2jLfP+muZYAktOQ//oYb1HN/3j/X7wwwvIngP8bv8WWg9+I/J5loTrUI1D8wUdkh6RPWP65ajpJiDdE/NUEQPDCw1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AsjcOzZk2z8O/2fPiYflP5jgSDE03cQ/N9totiPPyz++xzGeEe7hP8aS8ksCc+A/rRYrIOtJ3D/OUUA1ptbXPx8A7YKU3OE/dV/b1JPo2z/1tyYJv9TYP5a/oydwjM8/KJlovOEe2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7vFg+mIY3z/Z7X+DdF7hP4AV6tWId6o/NDkvHvXj0T/UFsk3awTgP4LlDrc2U9g/obG6rclf4D89U6o2mCbXPznrC6o2Dtc/8ZZ2FZtH1j+u6Q/GUILEP5TKgMHt1dk/P6ku0thy5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yI494aXv2j8TdoEGzlvlPx094ZZwDKM/xsZkfnC1xD96OvG4gX/eP12i9ypItdg/OcltqDVO2j+LiV203C3aP71QmCcHnOI/m90xQDrc4D846h1LJ8vWP3ZsVUaaJdY/TpTLc1MT4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J1ap6wyO4z9yLuZzJ/PiPzN4pHut18E/aApHu8WZqz8+/P+qXDrgPzfTtqz7lOE/ieeKqf8l1j8+cbj++xDbP9jjdES3ats/FDVCpOLH1j8ZGoHesijHPzHBSdibb9M/N6tL+GVx4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I+ehikzz4T+p/a98KzHiPzGVky9jd8Q/IKgkkXVKvD8Oi6cMcwXiPwOH9Q37AOA/UOlBkrOc4D8DHQCgUeDXPxEkPPhPDNw/80od6Iab1j80lCAlwoPUPzZN/Umx6Nk/u5hJkfO03j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Wab4m/Mz4T8snQxaBePkP6dvXRa3t7E/w2JXwE3nwD+O9au4PivrP0/+tahMkuQ/0EvJQTtv2z8RjQbybljYP7ufSI/YCtc/80aEt0j01T+lqKDjEcLLP1FHbVZ4Pd8/EGKifWmM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1VoS7RLJ1z/Fv1ySZSfhP7KjHCKjhLU/UgDBT6L5yT9/IE/TkCDhP6olt2hnDOU/Rh1Icj8m5j8VIWYVXzbhP7+XNFadEtw/nGuyYrsr1j8iPdjzif3hP3zlIAt5ec4/sRmXbdCz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XrUpPri51j8H4BvcDFXhP2iZj0yehLg/lj7T4tUqxz9pRqHHUA/hP+hTBDVan9U/Zf3Gn1rb4D/Deh7CGOHUP+jqLtIh69o/wPTa/Mt22z+/WC0R76LmP/b6z7DBRNs/+pvqvL8i5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DePqLZu92z/QDiphcW7nP8r6jr/CiK4/54INIbyFsj/OPQ/n6DTaP/uZqSXS8uE/ML+DIMYU1z/GsABn8X7XP2aPPoEi5+M/9MUPMwFz4T/BZYct+oznP6AZ13T4Wt4/pqiZjDHl5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mP7mV9in3D8nFPJA0xnmP/KhP7x34rI/4Li2e26kvT8IZ2PaXZnYPwkWwm4bkuQ/SU9iHzQZ0z92iZh0NWnUP97RFRgxweI/bveJrBVT4T87xvHL4zvmP4gkhyzO3N4/owvkCCl46D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rh4C0Xbm3D9ClJT75MXlP+wHrA8QqKk/tWhNsi2QvT9ThI2kF9fjPz2WxnPGQ+I/XOqeffK11z9Cr14oF+3TP+rmpDUEb90/tZoV3pwM3j9jR/DPoXnmP+srWs8sKeE/BJg8U7YM6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KmzMmtU93z/6381j22jjP9Fqu+klKas/zH9/xGn2yT/EgYJhh1zjP8LPJb4N99s/x/VBjmll2j9WMWeAsvfZPykmU24qPN0/ZFLuCkOt3j9jR/DPoXnmP8Zy2e74geM/RQ2ZRfQm6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oWMXsnsu3T98hcMTwlzjPzZoYLv61rI//Uy+nHg0zD9M7hsMZ3fnP7YACi/099w/Ojpr38c24D8cTMLRto3VP/DKVQzeteA/ojVdwQp/2j/dDDcmnTfiP5lyCq82S+I/xaXbjwhU6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rrp/4Blc2T+rppWXLZzkP3czTKrFIq8/2bYH48w/pz/7Eyb9kaDXP/QUXVcp+90/8epLjThb3j+ivy47NYfdP8B9AQy+p+I/k53zU1w75D/lY6da5eDjPwALjrLHN+A/5iT37G4M6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bgouV/6U4D98AtRXrOPiPx0bGjaIraw/dxMaDMPGtD+/eJQ/99rXP0asATANsdg/J1Df67ja4j9S3QMWNfLUP690F7JmV+I/Zf3QCfNl1z8K7Jx2F5HFPzCCFhdooNI/6i4muczV3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e6ySkj6V4D/EZgTAprriP6b/ROYz/rU/EsWYdsuxwD9kYqwYGbbdPwH4hnDbdto/egFZps9e3z8oAvoTJIvZPxuDysHXOOE/lmYy1tbV3T+CvdwvpOm6P42LFCIfptM/w0lNf/bV2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LqyWltCY3z/y12QZ/kDkP2NoOoRyHZU/aeqHHGAioz8KxZfsUsrdP7XNBbHgkNk/b7iOmhNh5T/twHuF4u3iPz2kz20vfOA/4bjCOiHn4D/c7K+ROn/hP9awILcyo9s/RHPyMjY05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"51HluaK42D8NKRGHeKPkP6V1vZpQ/7M/J8qhZwdNoj/79B70ITLGP7o3vG9c+ss/XlkdFz295T9brgDvPyzgP/YyjWznauQ/iOYvOaGv5T8D7177X5nWP8duSkCtruA/ixJdUNGL7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q3xD+SMo2D+faihDtLbjP8g6fBg/Q68/ipeCXIZepD/FzV//wMLSP1YAuytPJMQ/mJ4KL63S5T9g37uETSffP9NlyzmzO+M/Catj/DfV4T9FVqEUjQbXP6ZiUDzfo+A/nkd8ZIgv6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z/b9mTXz2T8BHPLyTMfjPw/hJ0vBVMI/rxuOHVZUwD9TiCqgFVLpP4NKktF3+ug/ZVz7RN9y5z/FnLhuduHeP6c5Gjbsjtk/WvyCvbtl1D/b4+SxaVvZPwEnO9sBuNs/lzNN56G94z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fXiq3H0q3j+b+HuQtg/lP7TRHBMHDbk/geRC7RSKuT884ViQdPvbP7LWfG8WHNc/TDIKv7V83z+z13lI1+7YP5mrs+0T7+E/3W7y5wzt1j8vuYmzrD3cP2l0QEMQONw/1GZKqqP55z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gynbWPdV1z+UxJXid8PjP2iayg33ysI/cT1mmIuMoD8wnkpiZWzZPyDcPVAr6NY/XXzTPvbU2j+0FuCKisTUP7lPbNRqsuQ/5W6yRCuO3T8zzwhZl6fdP2CBh6H6Z+A/6CfA7DAT5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tsY5gdCb2z/ja1Vtr/7jPyWcAytMV6A/Xgk0Ye06wD8223MHY0TSP+HQ5hiwFtY/H2zrepaj4T9LeCR/nmvaPxuBmvXqaOA/M3bCUwSg2D8vRxKJAIXaP5vnSYQGsto/8c+9C8n22z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i6DAbe6B3D99qdzfb77jP+h3FGEDjow/6XnzlrEpvT8ERdHrvZLVP2f7XVgYhd0/aaMnordm4z/zE+vMy+7eP+WE/TnBKdw/eaMX5zBJ0j9aTXTZMorYP3Ra7iMTH9w/KWZLvEo54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kjfZfx3A2z8gcDas8gXmP6qynWLKEMM/3XxpzeYF3T+sfE+WBffmPyrz7kiGc+E/+EQcF0u04z8DWn6c3KzhP+92iJzn4OM/mCy7ABOK5D8zbPlqzL/KP+e81889Nc0//mGVnPMf5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OAeGh+Vf2j+3kYrAgbbjP28odwPncKU/D+Qg24vYqz9C62D6l5baP/6aHiK+UeA/pFDUVsF44z8yDWV2AXndPxq883yMP+M/MjZ43jI23j+ezww7f9rlP5NtOdJPhuY/uErNiqEv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SmOTpZhD3z9M4xyyeqXkP8LG5gMAg5o/e8RjAWuisT8yS115TZfgP3LLTidvaNU/w2dykaJb4z/TdRA3pvDcP6YUEHvdcdk/HRdNEak34T/UT0EsJObbPw4oekpgw+E/OxPIxLh16T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OjRAvgKy2z+BjeOYl/3hP+WOFwqLN6c/s9ECLKd64j8/72MTlZ/iP0BOJOUDLeA/7dvLGQG63j9jeta4f8PXP21Zy8Ylz9k/x6ZSpZBC3T/3F2Id2KHCP7HUtE006tk/Z5zLDYYI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aOCf2M142z8gf3ClaObhP7joT0AShYI/yAbBsj8JwT+pvRrmEhbTP7dGbmbmltg/8rE2oBQq4j8xYhBIxHDhP98hz/Q2WeM/+TlskBtd5z8yjMFVvjffP/hSGrFCbdk/HRZAUFmT5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NMubDgSs2z+HKB+DVbvgP1c5X5wor4w/omV04kClvD+5XVfbcMXVP0StyAqhS9U/aGiXftL74D+HfXbgvULhPyj868fNtOI/kINdWbyV5z9r+Btor93eP3dSCaUW2ds/fASTlXb95j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PUCjaWNg4D91Nns7aHzmP0n3iVddLqw/xn3l+QuW0T+4DxkEJU7mP3/vI2EsW+M/dyCxdiM63D/7ib5Bzv3SPzdbv3BiKOM/zJaXcRqP0T/ZCxfDsqe+P9+0bUotY9A/lxO7IR0x4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FUY/mfNI2T/3T7L4K2niP7Kjga8LOL0/bqfu7YPbqz8kE/RfVbvdP4v6TcS8PNI/1nSiTuZE4D+YEXfWs8vhPykx2MgQ3NQ/kUgzQkAx0j8Vnrlw6dflPyBkCya00tg/eERjXxO74j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EcCzHfol4T8iIjbdWhflP4vx9RT+dbU/gChTudbvyj/q0PcGbjboPxaLGp4q+eE/Pgg8zv2H2z+z+8zkcnfUPyTfjVDMVeg/75TufuZv3D9twd8c0RrSP1s4v/JdDdQ//VAIm1qD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3oKJalkf3z98B1lxbdHiPxQ/RNxBSLI/iGYsqespyz9FcurUCoTlP32O8YVnB+U/9wBOWW1d2z+2KEA93VjbP4aA7PcOHNs/bDu//LCy3z/oRRg4sv7ZP/X/am5Kj9Q/rc0+tf2g5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iY3nJBZL3T8f8RBRsS7lP/Fi6LRMrqM/YzDl+oMRoz+UB1jQv+XWP2sLvJ8L6NM/zLeWtX3M4T+XYyw6PLDXP4+jy+IUrOM/20DY8XBE3D+38++xuK3UP7t8imP2itk/lwoSGu654j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zCaiJt1v2D8QxjBYAOviP+WUKZzMiJ0//lgAbmWrlj/P0BLfymzQP0jcHEYPmdE/JtAuLbPi3j/70fYw1hvRP2b0zby5f+M/nuHkfW9O3z9i8Wn/BynQP+qlcP9cIds/U1/AaARQ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nYRwCIVO3z/4YGedtUnkPzvFw8lfycE/czvm67i+4D87SgF1MmbnP/V5dEnAUeM/4l7KoUlO1z9c7jCyrg/aP/NZit+7M9Q/i9UP61dE1z+1VcKQ3GrgPxm4kFiLrdE/3EfY20KO5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+KU0nW/K1z+fbDRzP3/mP3rCOJuIL6o/JZ2Wt/Qh0z972Qix03PdPzxiTfnGfeA/WlUaFPLc5D9teXkAzlXbPxmRfDsfc9I/2c1TKK4s0j+AEL4nsszjP2yOhmYauOA/6OlKI0nY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vua3VgZm2D/ZbgEo1H7jP/2MC2Gz49A/eavLly8ToD9QN4LBXU7jP0J0sQPlMdw/5Ydj56AX3T8+500B3wDeP5lKCDDJB9k/ywHq2WBY2j8RuUkRgvDZPyYsb7nuvtM/YTWQA0he5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JRwJWoF53z+yw53WBkbmPyvM2q5PlX0/HioTEr6zyD+R9GTHvzPeP2Ea2/5nlOE/b9ySOIkH4j+h7Dl/p1LYPwkxMF1CeeY/V632vYek4j9/Ez9WaxXRP03t52L9dtM/6ped1qvA4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WoVZ8mIg2z+ERy/MOBHkP25Y1f+hFKo/JeLEJl36wD/8lXKuX5DaPzgczjeqCtI//2ljVx9p4j+v6tgGB+/aP8nu0tnNc9g/6ccaT9Qb3D+GmPxL7jjXP+pReRBQhdc/uk2O8wJH4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dLHVSxWR2j8mrwLC5sHkP5c7SXFMYcA/Hv3f8ZdDuj9ZPbztNPXiP6Y/HTXP7N8/V68CCCsj5D/7GNicY6nfPwHQK9NEyeQ/Al6IaP6S4z8Llc4/g43cP57YoZ5lTtU/aKBBVuuS6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z0Pxify73z8VlGPnmQvkP5881U6ppsU/R5ahkEAnrT+EzNlSIW3jP2VgWsCEB+A/yaqxzYnS4T+YqQQyyb3fP3cUvkGPoOM/bVorsWfq4T94PdkwmaTcP4Sx6vkFvdU/bqdwcFFF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8kBdA29R4j8RIIGh/svmP+dUISvFhq4/fkTS8Q8kyD/W2cslqtniP6rtWNeVQ9w/guNolRgd3z+Afqn2lrnSP89MgVWiGeU/NL0Jp8ZI4z90ow+kDnnUP3awSVkT1dM/6H0hXFs54z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PqgUtFuz4T8rxScLoKbkP2ILIHnS9r8/TD/3FeGgvj8ugKLgw5niP2B9IkIpQtc/DLhrHSnV3z/6UzpJymHhPzni+zIDuOM/BzO/1B+44j/aRA6Dbn/NP1F5Xzc7qeE/HO2+ER0c2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qSrboBUq3z8Ve1OSKPDeP+pfr7IPrb0/m9Hk1KR1zz9/isSO4evYPysItQjhgdk/qq/H8Au/5z+FTbQhVtbgP44gjrFCa+E/QFQ3z+d74D9kmM7+LP7cP0hmbX3ca8o/Cw1UJO0a6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5V1Oxunb3T8cIXRX89TeP5r9piTbrYM/Wk4/6ylX4j+olA72MnfkP2bZ3f+04eE/UE454wRH4j9T88BWlxvhPydsDnJK8uU/H6NmbG574j+t4hGwxoXWP8XCLuXbf+I/0tazdi+O4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x2jkD5iP3z+VYgYrnofUPwk/GGsH8L0/Zw3vArOR0T+uJ+127gfgP0uVkfA32t4/0yuSbzTY4j8Iniqn6rTZPwr+SgFrf+E/VZybk06i4D8Hr58kVvzhP9rKeSQb7tE/djRUi0iB6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xLeL7pqz4j8OWaZK8FjcP+GvwRfvd8A/v5uxYNY55z9XWA5lV0ThP1FOZF5hIts/m7idZoN/2T8cvodISWvUPzbz5wLoV+I/yR10Ijjv4T8M2BVDXP3aP/3qGP2mg9w/Xu4772kX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5Y4yaUHB3z9499mOHtbXPxu1TkwB67c/5fWpCnrZ4T+AUD5lY1DfPxF8rCCfTuc/3sZcNkk/3T9M+ad++rfXP0lWGi/a/uM/eaEyYUg04z+11Qbmdm/iPxjNVIZketQ/2roSP/EY6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w/kkzatk3z+TaP6OTBvaP6BIbaGwpKA/Ya5IMTOJ4j+vpn0APubnP98h5JtVJd0/ZgwMFPqN4j8xf+GRK9DYP1XujJxQuOc/NqeKm5FT4j82fGRe24XZPwJOjL8eIdw/CqABYAzw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u3nJHAj92z/yvxVEXCLhPwAAAAAAAAAAYG1E0yY7yj8KLAioh2bDP09X2xyXrdg/JszC3k/D4j+HwUyNpEHkP+NJq9j7buM/rN3PiRTX5T+r5GckQrbUP59AFQ83+dw/xcH3DChW4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7qvpY4U83j/R+/f2gvzmP1w3CSGVlDg/+cUz+NWqwz92WPOM+g3ZP+OR1ZIloN4/+PUsntBu4z+DObDQMTXWP1GB/z4cgus/jaKD7NpH5D9qPpxFnEzaP8TLpzhmr8g/1W1ynBc44j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SY671ouG3D8XkFgb4SHmP6CQXjeZra8/w4rsyANAuj/LaYqNRizdP503A6nTKd8/qZ5CRUPB3T98419sepzZP0XF0lwXwtc/PndpDMnv1j85bfwh+rTaP+YbcLvw0+I/BzW0/Jb15z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"62tnhl5R3z/KhPfhYTHiP5P6vIYOQ6k/nuoNJhmyzz8VMkoGJETiP6wdj3fC/9c/2Rq6Wq3+4D/i9Iu2JFHYP4blDFBVkeM/LzwUJfeq5T8coJ+Nr5vkP/e4saBxcNw/ZBViLfEL6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3mqqRZYz3j/g4dLUDEHgP3a16Dd+0K0/+OAxC3Kh1D8QbuwpeW7kPyxwZMQJ2+A/3wvUvv2A5D8lu9/piGjfP06vbXnmrdY/Ze8Np1qR0D9mAOuOaJbDP4M6WighB9s/ef5GB3tj3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UVZ/RMBb4D/nfgzOT9fdP0Qxmid9fL8/dFbKwm7Iyz/uc+2glozkPwH57kdGS+I/RmpTaeDy5D9eF8oWpcrhP49EUPG2lNs/DT0RmHSy1j86+SeFvEHOP/hYgiH0Ad4/s3S2D2cy5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c7b/Nur93D9+diL55oPmP3X70IcrH2k/P0vebI31wD+3v5Y4KDbSP8WdEMo5ic4/YyLL9Toh4j/OsrMh+CncP6pm/zQwieQ/iyjktIk44j8jj/MxvKzfPwZV1+sTsdA/QXdZvEhb5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M+R8fa7t2z/j/dvPK4DmPzEelkQQxFI/TAvx+J9ZwT99pPy9cCHUPxO5FGfXu9I/iaIieX494j//INArovLbP4a6XS5eFuM/Ysq/ikdf4T9Tq9Qn2RvfP2S8s3kz1s0/KEsi+VYu5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jGwioU4D2T+fB6ZO1W7kP9hQkjBa2bM/He+AhOa8tD9fuI6dwkzaP/UFCSSgZcA/Ne3p6faM5T9uTv0JwRvXPwzNsWHFLN0/M9507lxg4j/mDXszWuzVP/H98914qt4/UEg0cuoA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ccAv/qkf4T/sPqAtwmPiP6YstL/AIKY/NiBm074Mvz/b7vZXM1rhP2fITLWDk+M/KoxAGlMe3T+H678PsfvhP4eABwuRueI/Ik8H8n472T/dlk1rc1PLP+dwrJfVR9I/jEWRphvE4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iWSdrbp/4D+qksAJzZ7iPwBaJo+tZrY/RZL/aDQOsT+V3B+CfkrhP0aKt+v+teI/0RhyOCgz2T/KxZ/i5qzfP+Eto7ja1eI/QAqe1Rwr4D97O3FntGHWP4JedJWoP9Y/vwKco9zI4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VNap2URm3D+5KLBkenTlP3ZMecfXorE/lB3KZ/shwD8HCNTZ/GfoP/xDDhZwkOM/1uPSKd9c6z+8jZLRtFzkP1Q6f8gRsNk/stOsGbyq1z9bauqWkWbbP+XI5gy1i+E/O5QEBGYa5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"//1+nKSO3T+DWooMkQrkP4alAlG6NsE/qwrShZgKrD9CMfsjhu7cP86Flnb65Ns/TpoXGqFo4j8jRmisEnTgP8On8qjt79s/NSde5cqr1D+70HeX5z/XP1U1tI3+Psg/JAdCtF8X5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5vwXB8pG3D8YPIiCzHnkP/c8mYmbZ5g/f5rpD2D6tj8E6L5TIbLiP/+yVPz+A+E/btchav8q4D9erANYq6fgP7+483r0fdg/DrdXYzhy3T/wqC4kk3DJP0rDnmNfCtk/RX7tNEvD0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YU8yljQ/3z9SI9wEdG3jP58yGX7UiLY/jD42ET9DqT/sy87atUHeP13oduxkKNc/x03GjnBL5j9ExTC65ZHdP5Kk3CIv+Nk/5iMY4sLDxz+qikfAGhfaPxqgwcVSEtM/7cWebSwM4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VLxtYBDB2T+9tMp35VrjPwYsbADe07E/XE/jgwpErz+GqvGqDEbcPwNgeWXaAt4/WwZ0kQ1p5j/tyTMtuTDiP7EtkE05nN4/3XuAxxmyzD/BvGe596LYP2u2MkEqqtE/y0t/HVow4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qK768Bty2T+ergMqZjLpP8tblPN7FLU/5u6JUze31T8XHf711rfYP1C8NUgEN9o/ZUPUMywH4j9W/t2p+vjbP/WceZPMbd4/W90hTq0c5D9eF0ac1UTXP2nJLTg/mtE/NyhQydUP5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+qTEWn3Q2D9iqbprsjbiP/8FqGAtabg/6EJIHw6jxT/XqBNWp+TnP4yK/ImbPOY/QwPh4c0O3T/K1C4VxprdP03c3YN51eA/TVKBnPs01z/0e2bGpGrMP33txi1hktM/ghdTpOFv4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M1OIdAiB4D8CtJJx9tHjP9pC3uOyAqQ/zEM32SetwD8wC8Ud0mbjPwYBJF5s4uU/ZiNBrNWd4j/95I6tE7HeP1kfZPUmNt0/T9URAHV05D/VpT5SiS3eP/S4P+Q7r9E/SH0wvuZg2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AuBxd9hj5T93hOARFNLfP1fTuMecp9Y/XaNgK4ps0z/fQPLykSfjP1AZdud1/do/DjWPj35p4z/mjjoWcOHjP5ifKy9Z1ec/9olttryM4z/3GcrmvOTYP9VDw6EinOA/pzDA4ypE6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Id6IRdy94T+785k00/DmP+IVnDhgzrM/vkaDyY6npT8SUoQDJqHSP6lYd218gdY/JaeRgNVx5z9Y8gA+/yHePzljHpoKF+M/2Py17Mqu4z8pHP6h2QnjP6xqpLjUxNg/Hor44NWA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g1k+F46j4D8vjLeCVQHmP3tXjE3aAtE/LWhnBPh6qT94NTp18OrVPwrdMNoL3tM/g0xosXDF4j8QtbvQKwDfPy5yUbyrkuI/QMHKaP+84T9dqAdMPYviP6rmNDgTiNs/AKp/o8GX6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CtgsduVe4D+tC0hYx8vgP6BOzLMxTKM/fqnUsNzXwD+Rrsqd0dvbP1ysdn2Xj9M/u31RyGVc3D/fmt7DXSPWPxY6Wb3/k+A/GFb+UblT3T81QJLGVwnVP8PgWBxhsdk/LlZDEHJz5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LpFrQNC33D8ae3L0HafjPwTzpuUA9sI/4WaTrfQasD+UmGx3tmzeP6UAk2EZm8Y/BIL75tv03T/ugxeO1SbcP7Hyx+JGouQ/ShjiNT0c4D9npOsLkb3WP0z8opJ8pdo/O0bdLe9r5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iwJ4Ec+u3j8yimQgA0DjP23oJdoBmag/ftxp7PIWrj8aiOY14yfZP05DzZL+MNs/LSaSBy2m2D+ZfWXCPf7RP06sEEXhh9c/+14tJrOp3z+duHQwwGrNP/S+bnZS49A/RJngtHc53j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1u+tMYCO3z/nFAzrZDHlP6XSvNhM1LY/pGctreABtD/HMjJ0bQLgP+8SPUr8lNs/Z6//Hikj3j8jwbZ0kRPePwC12hEPR+E/3s+uZnZv2D9LU/HkrRDeP3BOMY2OwNQ/f3zgW2y35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZyNMo5Qd4T//1QMPlYzlP7H1QX9Gh7A/BM651Yy0sz9YYZd/l2jYPzyfZeGnLdk/Hze+5qfR4T9jwPJXY83dP8mmxCtZLd0/ygfB/BRk1T/AzLlZh8zSP2mFX7mCgNc/guY6Bba66D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eTay5y8r0z/jkHAkEaXkP35GksqG9bc/lT45/J2HsT8DF9Gq1hPWPxnNE0yeL74/T+Teuiej4j8pmWT2uvfdP88NTBuatNU/2Lxcr6po3T/UDlCdxqbbPx7QcjWiE9I/jk8dOrVT4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+ux0NuKt2j+AqDJocjnkP/oUjXG9ErI/71CooWPRpz8yg/RR4IHbP6+vh3nKQtM/jTk+BzwW4z/8/z7zRHLYP4lt0Fs9rNs/LIU1ufl53T+Ay9hbuOLWP3HcwH9G4c8//re4MfbB4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1efL568E2T+J/3YpcpvlP8wHxu5y4Ks/vOf40Duiwj9M7KbVZ13ZP0rWju/qjN4/OBIWgLXA3z9Zx2pCdOLWP1Y+yl7JYd0/r2OBuAM82z+Y3ctpQRLNP5QC3tGevNM/ngMIph9C4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yZPAjB1q0D/HtjPOUEjkP1XO1WD63sY/graIld2esz9/Cc8yHWHhP9yXwuxycuY/P7si4F7Y2D8KtSkaW/PXP7I4AKb9Tdg/HTGzdAE13D9x5fXtbZnbP13ZI0huiNs/mAZttrMO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mZ7nk1i+1D8lNbrzHJjkP2PgTo07/NE/UVIy7v0vwz+ghLdMnPvpP1qAreY5uuI/yvo2UiEC3D+7w54YZvHRP7KbExC/s9E/zn/nZQB4yT81QTTWYBjgPyQ3sUM9y9w/O4hUIk0Y6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dxa/8jAA1z9zODCF5c3kPwuxcDgNnb0/hp/RnrN9vD9mUy37jTzgP7dYuCYCNuc/JomB/UyR0T+q1fqXzE7KPyr9Jgws3dQ/i6XCR+4l1D8cfjnanKnhP8FeYCxxWeI/9BTP5BOJ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3H/RC14C0z8TFPs1wKfkP0lxBIW8W7s/dgBw/plEsz8F8ZBG//PgP7AwW1lLiNs/wkUN5vYD2D9qAz32rd3TPyWu7cIDGuI/U6uBcsiW3j/PqeM8agTePw5RkaYEI+I/dg94sEa16D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wlBA/XNu2T9Z/32ZP6HjP0lri8zIDKo/7hYlNNcMwz/CL4/47cXgPw0XHOHcHOA/O8IG+k1u4T+ymwl0XizbP77djlKyd+E/PhAgD+rU2T9gOk5f8UXVP45rc1rIj9Y/Y/MI4SjT4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZSwyApl53D8W90Y2+5riP4gcDB2unbI/yYt7BHN7sj993TPEqo7hP7mThZKR4+I/MN6Jy0FZ3z8N5UmFl2HZPx2ylGTi2d8/bBRjhW/E1z8qoaJE3ZDUP/lbQV7apNI/fT7v3TR05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xSDIBnWK2z/b2F0rBwTmP2gIx47BoaU/wUYu0Gihvj+nnzVX+/fjP0oDSFCwGts/3Sy0W9sC3D8lgYtlNLrZP6TS0DeVZdo/jlnGCQ632T+TL3up+1LaP5bUFa9WYdU/nfn3xtW64z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VK5hrNDw3j+jOoh+H+jkPw7ix5mCTqQ/YGllbcPYwD/5dEd5U1zhPyUO5ZsEh90/Y7giDwyO3z9gvSaMAbHaP7K8aj/o5Ng/rRCmLNBG2D/DFLtT2BrZP4QEmjz+mso/oJZn2VW04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cPwMa1Yu2T/aAPLLns/jP6ioyF2b68Q/X7JwFhtQuz8Qei3T1AjXP/JKjXYkFNg/OACNtft73z8q7XlRvuzZP/FnGXubrdM/IrUqNCEj0T8R9J1Dz4LTP8i9V4p77uA/sW1Y2itf5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HgrI+B7t2j+//vE3+m7kP5ZrGU4pDJw/YYqBim0iqT/qMIGHTabeP3E16lvA/dQ/1D/s/A2V3z/++Emjz8vVP0ceZNDGAdw/Yhj2N/dE3D87NtIrhQTWP5qTeCm2q9o/MoR66rlT6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lq/RJT/w3z/MO2SXEHDiPyysvo4Wsqg/MSETwVcWtD+B5oucnDnfP+bdTtMQcNs/lQl8NTW+4D+EX4Id2F3QP3vVZBSjDuI/eFLhPQQK1T/aw9Ry0pnkP9BzVPsu1OE/Jy4yrx935T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"psxg1oqq3D/+uTEL5sTiP06WM5Ab1q4/ZcwCtRht0j8/O0VKMaHhPxUmwHK9b+A/UJOdrP+H5D+VjgbdHezcP+HRnw4EguE/E5dG8cwj3z9ki6PjR8HXP2NjrxBoLsY/N6MZ9hLp4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hxPcrcwp1z+uQcBA/JLiP1vAA6Z+4Mk/N+P6ZEtbxj8qUTO0gxHaPxvR3Jgdn9w/v37aPbrZ4T8Z4bK3VOTgP6vPcu4T09o/hNyakw9D2j+rgVg2d87RPzggkB1cFtw/XbkpvCjg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cQIAWcCi3T+V/VaK7S7lP7DzMiNH+IY/Xb2Spxo+oz8GRrZYoJffP6nRFTfXL9s/5SIVqbu41T+eyOEu+j/XP6+V8sYCmt4//8Mt7HNx4D+6NcukxEXgP8ihH92zFdM/C/Z5Jepo4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dlBVo9QP2j88AK2cIJbkP223TRaZVqA/9wc+P9BosD9TnTmj7JLaP1/zKELy7dk/Q7AbbqL01T+ttJi1WU/XP5oAtbNFA98/oxwhnJWi3j8pJgaRUVjiPx6YFSXxLNg/PpscyBh64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5NVQvhZp3z8fD0NLEF/iP8K/WYPf6Iw/WWJUOvKwwz/cvf3hV37eP47NDHH6ytE/j51r1/7x3D/LIg857OLZP1414sHhDuU/Eqg9atDn4z+lQVxiG3DYP5hsyNJBTOE/QcEKSlp/6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YgQjHHdS3D8wUEAzV0jiPwcXKzMWY5Q/G707qrcTvj/cHPeYGtngPxsSvw2mfdk/YD37pQWR4z9vBmdu5PvXP95RbB4rG+c/3nY3lH4F3j/tohN0oULaPyehro6+Jdw/FiKU2aRK5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8NGKU2cM2z/MFgh1yoHjP/AfWJKwHqc/4t+sAy3SwD8uxIYt2vDeP48HV3v0z+I/v4GwgAAP5D+l1g71FTbjP8W+gso+gdo/g4bg2lfA2j916hTlR1zXP/ZFYZYifNo/1rEcnke63j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WTNXC6Hl4T86dzRJVVzjP3wbgfxQ7sg/ZDw8YUAGtj/MIDQ82sLfP/9Q/sLNzcw/Z07Q0Ypq3z/JDQJ0x8HYP4gjD9krvtI/tCkOZubdyz8CFq6mEBfdPznytLA18Ns/4Cfo3xPA6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"adde7tmS5z/iYMCrNVjhP7zVGVLPGMw/UJMcZt23xj86rUq28oLYP51P278T1eA/Emsy2ge44z9c/9s0shHgP2JIICef0tU/IlMboo7Y1j8Qmn3fp+PYPz+IxDEZlNg/hN0sn+qN5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e7G8fRMC4z89l7JRe1TlPzTFFF3olcg/qkTIY9Soqz8TRfCdIz3kPzqUs4saaNY/uqJVHkai3T/umDmkZsPaPydQFC5vK9k/DqLS/p712T8mbytHyjTbP/EtWSVPgNY/Iu9lPN4K4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UkuqiVXq4j+IspnB1DniP5To3lXgpMo/9LAkWBzdwj+5vTmYeMDhP7oQFpg/H+U/PpXxyXnn2D/GRzzznWrLP1+yLofijuE/At2++s+v3T/fzeNfYHLQPwnoFOYy59Y/L9CVN9Nd6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"s5twcWbb2T9cfD7ElqfkP/vGa3GNfJc/Y9zQyilRrj/XZTVUN57gPy6BEJll/dE/8+j+v0aj4T8X70gTjkPgP8eijpfDadc//k2aXuUj2D9tLrajhJHgPyV1UDDjsNc/N13mR8c+4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YqyI0jot3z9SrtEdpDjjP9hWJB2oL7Q/39MJMnd6pD9JFJFL76vVPxJOOkrvb9o/EKhv57RU2z+UmkH17cTbP+O5IRuO/80/J0QxQG72zj9gutMKGwrLP9aCDGxxHNY/35nSwVqN5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kGdiGOtB2z8BdIYlU2DjP91/pXfSDLQ/Es80H+gMxT+jWDymPgTnP8zcwQxzets/2lDZrwiN4T8ZWBI78+HRP16mKq6ahtw/bJD2CvjE1D+gmZapfEvUP0rPD9JqPdk/42H+tknD2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"egMvKC1d2T+PoncFZmPlP2x2gbPtP7A/LrU5A0Er1D/XrUAbwnTRP1otdIwUsuA/ak1rNY4z0T9eCCHfR9fQPwnvsvBW3NU/AYbPvowd3T9fiUZxtgbNPwxHDwN6Ytg/n1K91yUy5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tC0xqO7v1D8U0VDXDqngP1F98P4pQ8Q/05w2TOwiwT/m5S8azrnjPz5EBJbdGMo/eEgUzTOT4D/9GRrPcb7RP1R4IIKWvt0/UnyWqtYc0D8iSFPx5K3gP+/ko8CQ8Ns/bm7/Sl7W5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r6ND5LRDrD/9QRkkp7baP88BbafOF9M/7np6W8Td1z81khkdlD/lP46mJKAvfOQ/v3HCQYpx4z9hbHqceUzbP7k8xkHGgeY/6NEFIpjE1D8pyN+aJPzSP3YNlAfuCso/rpe1fOB62T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AAAAAAAAAAAZsm6ez0LiP4HWWGy0H9g/OpF3j32y2T/IsKi1KcfkP0dut4QW1d0/nwEY8oKh4T+JQnLgK4zgP14gwF1nq+A/CZs9VYri4D/MkuYxSbDRP7rinEwRAtA/NAaiTDIA5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O7EPS8ilsT/Ys3Kemt7iP5U6tNz6cNo/NLT55LUQyD8rupZZBvrdP3ilfE9nsuE/a3Z8HjGV5T+YCDIsHgbhP3YfX4y6F9s/x80Szgdv0j9M2IowXg/UPxJ/pfHFqdc/nYLLZnKd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7s+uZBwR4D8i/rXvR73jP3nQBRyKDbk/B5x5aOo5oz/BQwYA47reP3Teh3HKANo/dSADnPvQ0D8dzdLT0VzEP2SZ3Gd55Ng/mD95b2Gq4D8CZ3qAMonbP61ote1TUtI/E3JEXDch5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lWUlPcpH5z+sMInFqSLkP8ZBZzS6B8c/5biSDYq/xj9lHX1BIczkP28gCNISXOQ/6iuTCgix6j8kkNE8qyHkP+twg0NwnuA/QTf2wbHe4j/SC/5vMwvaP9R3HIgVCNo/FcRdL2Ni4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ipFGQgk04D8gsYVOLgTlP1rQkgJA98U/pusp8dgTrT8nbdjnTCrkP3aoV1LP598/9QhfM2Ge4j9PKo224KnhP8c31g/RYeI/0oMU37sF2T/rOuWO/JfbPwVSGK8tDtw/Hn5I/7x+6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WxjzbU624T+pEFpJbmLkP/cgmdP+Ta8/MB0vXzrYrT/BdSki3B3jPzQpiNCyn+U/wXrtHMlc5D9yslbH8pDhP8VoD4Uunds/smQPqByb1z8IqlEsVozaP44lthCLA+Y/krYiASxp6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V58YnAoA2j8pl7JfnFrlP+9F1s/Mk7E/t1wksbN9uT+4ottVLp/kPwdG+A5ITuA/96aGG+z65D+2snYw/l3iP4xhoaHujeI/v8AD8XKN4z//TfEBWs3oP1ET25HqcOA/dEOnVx3U5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uwKjlIuR2z+fEOYavMXjP7V+L/xddb4/2ICPaisjrz/KOrncabHhPw1gTva1ZuM/Bvuag1hL3z8R0urGZ2HXP6rBiXEFJOI/J8Rd9jSe3D9Mq7vUWX/KP6KXBBnFmNo/LUFPhcav5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nf2Q0sQI4T80NjuHj4/kPy3LFI6TSrE/tpmtCJkPwT/5QiyJHzDcP5ptadwj694/2z5Q5U5I4T8lh6aXk2HWP6eO8S+T+eI/YQlI9hHU0z94awJIAfrQP0gvBnNNS9I/g9Ef9pXF0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KsTDOk5p4j+l1E/it1LjP1w7X8E9qsc/byIa7oFvyT+s8ovgxcXgP7/80flR+uE/IEwP/alo4D8zwjYZv0fhP1erzcUq19o/SrTXk3Hf4j9eOPHsX4vaP41y6pjzgcQ/mIctQRGr3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lYPTQA3w4z8+LP8Px6HeP+cfnyjJd80/ozdUcUFdzD/x054bUA7nP1g3o4AMz9g/RCIZXZ984D/zQrS0jczgP98X++fbIN8/YGoI+CFE3z9yK33JcJLjP1Fy/gEraNg/7SYazH8D5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lGaVf7xB3j/g8HJiP9HgP+PXUwrPuq4/HYBKKcVHyT9SVBSUzqLWP1jui/VdWdg/HTZ+Z+kl3j/u8lTgXOTVP3NW8ws7lcw/s8zqF7sC2z9OfBRYuz/bP8PmSxGgnuA/ZdUl3cUk5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4arz22rQ3z8fpsHvZyXhP3hJrpJzMsg/A3CTZ306wD9Ao46nIHDiP9Nan19htuI/fYz3CzbX3D+18i5CGjrYP5JpLC/jQNA/FS9rgS68uz9jMvaNA4TcP1A4n9waRNY/ViRpz7ny5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wkFFbGhi3j99IZg0jtjgP7z//pWWbb8/sQZpmIhmsT/BpPY5Vv3eP7O4P/GFguE/rpes6aUa2D/g0NW5ojzWP48OhGoHtNg/tYgvA6a+vT+uqN3gY4PgPwJl2senndY/LRn/2t2z5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9NzrtOBk4D/PE3f2GZznPxA1ymcLY6s/oOO/QfJ52D9e1qgHi3/iP5tWgE8jOeM/XJjnuC8e2T/W9Z8TbjjRP3tk7BJGC+U/sdU0sHCC4T9E4XK8683fP7+ZB/6VO+M/hE0xDdps5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dp9VQnpB4D9/drvXgYvlP140kVaXd7E/++1fM610zD/niB2CMdngP3uzuAndMNo/4P8I2FQx3j9TdPv6iuHaP5dv1Pntxt8/y8KViIR50z8/NLK2RQvgP6ISTezund4/m5q/oxV44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QYJLH/Yy4T+iXrD4e4LlP4ka4TYLJ7s/LDsoTgGDyT9+etoeYATiP5yl1JJ2Pt4/YNinn2QU2z+GRJ7NqpHgP6k9UMqBUt8/O1Ag4HzL1D9WOJdDUS/iP8vx6U4Ju98/uXxzhVwm4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KGimxDSj2T8FinR3nM3fP1KRZCNZ9J8/+tN5eM8sxz/fkg5stADgP1sOtKzub+A/SlYhHOUj4T+tWVoA5ajSP6ya/L5EuNE/JtaNdWpf3D+PiZsNI/LkP+xE5onsKdw/SC/LDUgu6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VHv62tAd3T+F9MpfJn3gPxJcP3GYm5Q/iXRWiBZ1xj/V03zmNvnWPw9J+oAzI9I/uwyUWCeA1T/t5FskPfnfP8WOwsLi/uQ/VHpJ8BHc2T8WiPl0b67gP+plvLN5M9Y/Fz1B6EhN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4ZFvw/yU3T9p7bRj6c3aP58rWLHOn5s/bOLsNcUZ3D+poxsrl5DgP/tKfZEqTOA/8a18k18b4z9a4rHyhzrNPwKY6mjint0//eaTQ0N74j+F27qkkp/RP43LfEWJaOE/GRzqFP9u5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VlkP/jfI2D9jNqlZLXLbP0SkvisDSbE/jNCJhADbzz8I1Nn8Z/jiP+Z9aUWMHOI/3osP4AgSzD/wVenQ5NXXP33+zmeLy+M/9y01R95N1D9TAa6jaz7hP/NNRhUfwto/hyyztRtd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vgMPQeSS3z+bh1v5WHzlP2suJ14J76I/D9ptOLe1vD+kSobG40/WPzbtYPJhZ84/vpUdzZPM5T839hsnA2HUP53OhrZZINc/6Pz6yRda3T8ELBv3kW7WP3R0JLx7uuE/PH/KBzLj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h44itk/v2T+gPgNTCVLiPwRAsjnTALI/3Jr0DkQstT+/ebIg7Y/aPxKwFzb1ytw/clS6eU8m0D/rX789KBTbP8LaphJeJOM/vq4wYXEJ2T+KCo3JGY7dP9Oqy5Bf2dg/TcNqlCR/5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R3g70YbQ2j/XOwdjD0XkP4L7rCLdQKI/5m/Hx3IWuT+k1dlFQJbgP9cBbIZtUeI/sC2NwGBl1j+qOV8+RyvXPzo7VqPrguA/NoSBM/aG1T+KW1mjOwDcPxXJyJZVjdQ/QCvx1bRp6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AstMfF0R3j96KCCXDgflP2GQ+kJCxqI/i6On6NJJsz8s1fzNFVLaP52+ZN94e9o/PA9b54QM4j+mrcOfmYvkP1QkDR4XNuU/lUM0s+P34j9URH5RebfTPxRwI6Dh29U/tSbFfLcY6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E6mKjrAn2z+Ml2lU77TkP/VR9W7uH6Q/hPv4k/oIqz/UfKkpg4vhPyQw+gvmmOM/4J/eCt015T8IUyugkgTePxCG5AgPvt0/V1ZRJoOF4T+uRCzjj4zSP7w03k44jNI/stgKnD0P3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u402t7zl2j/eO6LU6trjP+1VsYWcVrY/PzaKwWYwtD89sfN8GNDcP6hbRUtjLN4/FFOPdu2r4j+HVISDBBDePzvU/zWfW8U/FbnxAJc54T960WNjX33VP/B7DjhnHdk/R1asSbUqzj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"exwy23Ta3D/jFPupdWrkP4FXNH1ct7A/5GIQL1sdwD/XgoLnbHDcPz/AHR9Pd+I/ZNWeSOJw2j9snbdL/WLZP9ttmDEw4dk/yAnL1Jwy5D+B7Jz/wcXOP/WajedlC9s/bBAHe0Ryvj8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aocU53ib4D+sbPLzoevjP0xxaFUlebc/WKyBpWSbzj+Xd11xXHjiP+o8h9ADPuU/AxOs+ka03D/di/HkqTPXP29DfPqSFdc/TKHWQuZM3z9b7iIpyBXaP2NnOwB3G9Y/mdPTAc0g2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u9Ktzv/n2T/tkc81pQ7jP9NywuYMbKA/Sfu5iK6tkT/6UB928C/VPzKAwcvUfsE/Ab0a1Eyg5T/lAv0jl0PiP+VscMX7zeQ/yUfmH0cU4D/ev+czTHnUP17/GTaYaNs/GGdQghQG6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ujnq6KQL3z9i3u/9TnHlP3Uf8isJGYI/mJbWZkxcoD/78xB3turRP6fTiGLUkNE/7+FucEtf4D8nZpLEmnLcP29vv5wN5+I/0edSm3XY4T+qQ8spFj3bP6JC2MeBCdo/8OHJqZ5x6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Mzypzt9u4T9MCwnGyDDjP5fQRs0fFc4/msGw+4Rbyj8kB6fr0U7cPxkAJK8KYtI/B/P4HW7d4z/Ud1vdtIXVP22X1HXYF9M/CPN0X05O2D8+Yyoyvp3jPzCLjKu16eU/5E57E5hZ4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zZ/IrI6O3D+18Jg0Ao7jP3nlRXc53rY/TqWoJhnurD9amzGmAg3gPzdL7Z7rbt4/0Bb4Ypxv4j96GVKurSvUP3OO0cVuJ9M/F8xsjajn1T9QJtbbxjjlP84B56wj298/S2zovme85T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iwLC+u+a3T9Zk1p+97rlP2GJVI7HJIY/Nl03PrV6xj+FcyepDLzdP3E8MOimm+I/YTiK13u04T/aSS0gxDTRPwLYivzst+Q/9t8nb3QP4z8SdgkMvwrYP6fnfOQnRto/1lA84VcN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jw8M/F2k2j9cVuFDRb3hP6777Vzueqs/MXooGTCswj95ckuEnh7hP19QhGuOiN0/ummpfDqw3D8cxVL25RrcP8/5tkmAvuo/AkdspWFi6j9ANuSA7hbOP4TLdfedNrs/1Ngs9YnX5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2QCWU6Uz3z/d1E0lFLLiP0QeA3Qz3b8/xxfFl5hvrD8I42h+fd/ePxajawKWf9U/QKNEfazd2T9B4JxYwFbZPxHPePywT8M/MermoBCCnj/74TPgelzhPwdchwjaA+Q/dgrwwKHx6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5dVhYOUG0T+wW/52dFHkP6EJxVHkmbY/ITXECMlkwT/C2EW6sFzaP0upn3rQVtw/PXXaTPW92T/Ok5zlk7/RP7Y2gCPQU8o/RkoFl0Bz1j8HxoraDT7mP0NOxH5gZt8/entiLp5U6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OSJ6YeBuzT/yf0DvKCjkPyoSThN58t4/9rhC1X2asz8u0kCml0DfP2J7KGRXvOI/ysrISg784D+MniEemcjXPzySJi7/Fds/M104B6pi0z/3rHwKPnfeP7sWGQiEHdo/v5FHtIUs2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h/TbIOf+4D/M1WlGpEviP5yPaJJZlKQ/JyGZf0l+wj8h0Rupi4XbPzL2x8udKtQ/M0rnhpSe1j+dfX/HuwPVPyU672UgTtI/AfwuMi3V2T/6wAo8D5XVP7s9auyghto/gzzSt6d16T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mlDDZGOu1z9DHLR97kPiP1FrU22aR8I/tlsfNDmWtD9vVDpiSlPWP0/9Mke36dk/mhIrBqJp4T8BMvNf+PvVP5lhinXUxuM/66XaskFFzz9bZNbktcLoP4hUs5UJUuE//PgOwMHR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XxlEjKTg1T9UjjW5IM/gP71dLtt7f8A/uo3IwkdSsz+2HKU3YnvVP9Zuug57vdY/P2vmUV164D/enaqPvz/ZPw8E71LXcOE/0kckO5K+0T+YLlft08TnPwkvGtyEMeY/lEwV8VxN5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WtBobCANzj+y22WbpWznP9M/5oAUpMo/f6v2D+c80z8X55YUCGXkP6GxnSHvW+A/WvoIxzqT2D9rXqoBDQXZP3INcW19ato/d5/IWjEV4T8B/k/idXPJP/DQJz/M4cc/hDcjRI6A5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y2GbnBp83z90GsHMM3XiPzc6KShoH8M/T3+bXcHQuj92GKiif5biP6rgrKM2+OQ/C4Xs0zer5D98QX8+vdrePybeFOPKnOQ/veOdYjAt4T/M5KfGbAPXP3O6HaOQjdo/+DoSlzBl2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TYw23ZYc3z97uX5YVpPkP/T+vLs2cqw/MxZyYkxN1T83pHjDFEHaPz/zLsLjaMw/EKOxuw7/5T+++fO6fwzTP7vMo5dJROM/wZcf43zH4T+y8gVOClXZPw6BbiiKhto/i03qLON96T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"606V8svK2z92/IgL8pPjP9uEiZt0a68/aN/TcT4/pD8te6Zd94LiPxKXbF/Iud0/AAAAAAAAAADmYvSep5nBP4xa5NQPyOE/PM0yjc9O4j/H/ooAqYTkP7086WHxZ9Y/HutUUhU23z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qSSeyYrJ2z+dU7H1swzlP0aQqMF44Js/45sA7Ep/tz/zQkU1HgXYP1YC6x12Ut4/00dM9og7yT89E8POkcnQP3Y8JTGj4+I/DW8wdtEb4z+VUoNsF1TYPzViiJnvVMc/e/ZpNQOy6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9D0zFs+X2z8mcQuNmqDlP7R55wdT+XY/p27gk/96tT+WHcZaZcLSPzYs96pwhNg/qYUbNJBV2D9D1AOUG3zJPwxD0naWw+E/WVWlpsxt3T86jMhT1MHbP7/t2FjmQdM/BVokUQqY5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UpM2VtAP3D88cdzhLGLkP0tNsLsqvXg/BoW7ETStrj84hDotsEjKP0+dP1SJTNQ/gzvjBajH2D/MsshyZKXZP2UAGIqKO+Q/YDe/2+G54z+5UlO3jDTbP/C1NH/c4NU/kp4fBTYr4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4JM828Vu3D+ODEWecrHjP6yInQZ4dGE/W/plIlaJrT9a4Givvy3IP7wDyWcJmtI/5p1dyHmZ2j+cF/ocC4naP1T4RZYpU+Q/b8GKOJfi4j97yu73CYrbP0ImuTH5fdU/EtlKkhyy4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qvLb6zVG2z/ZGf3m1YLjP/8Geo4nPwQ/A7WeDek8rD+gMYUkSaTJP/xw4gBg8tI/3SjsVygR2T/iu2/8uqPZPzAlVQY6BeQ/D18vIcPi4T98d0P/N97aP8TQaIqrj9U/bj75UnJa4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"65RWcsqS2z9O5mVxu0nkP7kcsSco9Uc/6j1VgGCSpD9zqI4E9vrIP1a6O2oysdU/PMhI04wj2z8Fie6L2xLYP1Nz2JhqQuE/gKE1oKNH4T87Rq12STfUP9QBgrxSGNE/vFU8qqXX5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Omg9C/K2z/eKWlu5CXlP/94NEhlyVA/VPgJAa1AoD+yPNNpPAbHP86eXRd6idM/itBDs5+L4D8zbULsk8nZP+Ey66EGUt8/wBoyiMn94z+d2Z3UKzLZP43Gzj0iU9Y/fpgjXQDr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ELIVYsX53T/kj1cxi+jhP8+d8Pvl8Jg/vIOQzgoKtz9+naczVzDTP9zRNeZAlcY/7ky/wBtn0j+mALaBHvvGP+PCRBIXA+c/fwtAOmk34z8tvqiqhgDYPxCbLIZDlN8/E7Ldc57O4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/1ofwsto3D9M94urHvPhP0tbYiShU5k/C6W7mmanuz8bBUth0QnaP7EaLcKFpcs/elxSbBGK1T8SsTSgQ3TOPz2i66YrD+U/bK+w5pNd4D9INEJfkJ7gP2Jh04/FhuE/4qcxZZVt6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hGjLr44L3D+hT4BzenLkP5Xm9A7c0J8/zjRMOKvPtj/PUyxnK73PP8sREMevJNY/ou3E7s/u1D+DaOs0Dz2/PzJygZmW698/cdyNU1cb5j8BrKCiuzLcPxP46PBTi+A/v9QOKkuW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iXaJ5BP33D/IVtqpFKXjP84aXDCk34s/h4Yc05LCsz9hMnhHCwTYP9CmhQgfltA/GkQrDgECxz9Fv7fbsei/P+KlroLSwuQ/TT9QtCj64T+TW5agjcHgP+2rxSUw690/NpADSF4k7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8YmhMLDg2z/4l7LTUR3lP1yGQ6znyME/O0wdkY2UuD/DIrK6TUTbP2K6YZmNkdM/A5LyVJRX0T8mIX+Zt+jMP34Lpo8DwuU/1r7Ouw5j4z/MzY0PjxTnPwDAImEjluQ/aML/AFCB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mzkIziRU2T8YghpGPNXoP6jQRZmbsaY/jDcKGc8F2z+8JY/Aj2HhP94lrij9U+E/jAWnfmou3T+XwCiTAGnTP+DevCoFLN8/O0R937yi4D9DTxpUzgDVP6X9mwj0m90/czan9JwU6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Tt0ix8k2z/Iwzvhuq/qP81dBvmyFrc/JxZ7Y3e3zz+U1ysxd2rgPywkEzPKad0/l2CRCcgx3D+OH+54XZvYP7F9XixhIt0/wFm685Ny1j+UQ5KFAXrVP7YGCWCLMtg/1vVK6yc06j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hMfIKSef3D8dBaYA1izlPx8hef0hX6M/8MfX9l13sD8Ec9XFB63kP/l8/q2oCtk/dPwtqzvx4D8elQjp0LXfP3lowrRM6uc/CBJUjYmg4z+q1mv4Lb3IP0R8Ovu1ydA/PTfQ0qKM5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ksZdxzZZ3j9itC8+jt3jP2YOjKDDnK8/FccTX0Jwpz+Xq2/kQIzlP1OuIT06F9s/G9+xieyD5D8EKJDw9TrhP25p3EQ7K+k/rqbA5KkQ5j94JnAnAOLPPw4e4p26UdM/XWuGMWIp5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d1D4TJgJ3D/DlCe/1vfiP7pIiT1L8YY/rQ4ziU1gvD89rnDJrW7aP/n3vcRY3tU/tL+hLOIW4D8noQ52fzDhP8FEJFbyA+Y/sNUpa8iT3z9VvgGgMOreP2HrmvWWc+Q/i3A2M9et6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dBZYuwz13z+mZm8jz9vkP7l4gx62gbM/ICLkyEdSsj+BU0uXRLbgP6ds1pWUetw/kePGKSIN4T9cuoRieIvSP8eTqaQDKt4/7cUxRkUZ4z9j2w4E8OPeP4JytzjS7dQ/l5f+OrRg5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MtXL1cPN3z+183ey9GLlPwG+sduxNbc/9ct1qTxptz+PKkpc3bjiP8i4mvQNTN8/pj8vVnYN4D9EA73egmjTP0g/DvP7fto/E8az+pGU4j9mcnQOfmHdP3GpxU6D5Nk/6OlKI0nY5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"05y+OD+U4z97JmPzbXbkPxLp0WlNA8k/3nNddwkCsT9GurT1vHPeP7tw4JuZnts/BVmZOZZy5D/nREk3KjvkP9J5uiS1md8/i7SOGXFP1D/+lZhSnL/WP05zbEL8u9o/PaAJFlrz5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8wFYdG8F4T8toccMK0zkP8fAq5Rh9sY/PeRTbmIGsT+hb+nvnaHgPyZCAFMDRuA/7N7zgR+G1T9yXCrQ3BHTP0HTUxyxaeM/wJCR+2m14D9zKhwQ90LMPy+vvCFY09U/oWnFgo+J5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PIpEbHvP4T+2M43lY1zkP6e83C7cCcc/fpSZ8m0Xtj9rl3ZP9PDgP4jirAH6+Ns/gnm3f6fE2T+1jsAzfEnQP3rnU0hcKOM/E34k2U4S4T/DWWogls3NP84K1XsgstM/KqUQB5ox5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gHQ2hyKr3j+kwWSqkNniP5MPfq7iuKA/ptoowJbfxz+KeYrlbKXnP7FCio88U+c/Crjs77Yy4T9lQ6f4T6ngP2Q34WOu5t8/xjC00lkG4z80FnqYSPngP3XBzb9W4N0/UNUoKhGX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"K/TtsZJo3j821UaZBKDkP0NOl1UdGrU/vb6vJKet1T8r/gCMMLrpP71WsOOGZuY/4Xmf/flh4T9Y5eZTB8DTP1F98plOLuE/Ff9gwAEQ4D/pTI2jB/LjPwcrtIAy2tk/vqrgomub6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ucOhmyU+3T+ItB7hXArjP6GpI7zgj4c/UGcb9orJoz+3509sYQvVPwAAAAAAAAAATUCrMDpi4z/Bb0rKHYrdP2KFxI2vFuE/0hPl+lyp4j9G1qQTmEvVP/ZQPjCgxdQ/ZSVxAbxF4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kLE6lwiD3D99VEinokLjP0KVQ+JVc60/sLfo3M1ypz+L/YCo6sPRP/Pcu4yB/9g/fSgFOwvq4D8x7+OwXBHbPw+tSJROh9o/TU7oa72N1j9zuugEXajgP4DPJ3tpud4/Y26zIFJq5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nio6ZxO94D+7w5miZCPlP/gA42dfyLU/8uAgQYlxwj8QbuiQFtPkP27sjlcTluI/L5RZ36Lf4z/zDCAfLz/XP3LHp40X4t0/H1PCNQGJ2z/18QctKQXTPyjk+4LLINI/COxx3QDR4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vnbnTTyz3j/elHjQ4LflP90tAllsT7I/rlOrNzvYtj8Vga7wKqfjP+/VCdjwEOA/Q4BfqD3/1z9BE/fYjdTWP+8ZbYwaJeI/4fFku+hz3D98cPI9tQ/hPwiiHr5a+tA/V4Szmblu3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CACdSN2E4T/YWEWTwCDlP+mwDFatGrk/Jx8oyLr9yj9XFfuHNungP2ITUfmCBOI/Mt8ESpjz4D9UCtBmYkvXPwy5p2NBMdk/FcDND4+s2z+kKBs46P3VP8iLGYE/V8c/OZ/RWRQE3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IgGW5awo2z/GHVGGt/nhPzbFq1IFWK4/Qiebq7wrxT/OyGJmRXvkPzB/CFbqLeE/YxHr9VfH4D/EevQfQOrZP5A21lf5CNo/vfzzlJzU2j94FHYbYSiNP3ZnlPRURck/530p87so4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PF5Ay9dq2z9Y5+1YuTriP/AQErwZQpQ/Wk1LVvP5vD+wHrHNrpzPPysZOS6RRdE/ebRSd+qv4T9tiCI4K0ncP6eRqEXHVNs/zCSWUsjn0T/UbaFNMRvaPwKSR/T8b8Q/oKni5aYu3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9IZAxwpV3T9Nop5y8m7kP0Y66BFFr6o/arkRcA4wuD8W/2E/XbfgP2EPUViGLdg/eMXpgDc44T+r9zHkQ8PdP4UfTnEAAOY/AsY+hv1A5z+tnleeCrTIPwZRlyR+79c/1HcltCX55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oKylyN2p3T+Oz7CuXBzkP4hYKWWcOqA/vAKT9oP/pT9fzaXSXsTaPz7UOM5oftY/xwV5w3XU3D/+y2gBNvfVPzqqNuMtfOc/VwenlrEL6D/YmJGKhXHRP54q0FauDdY/injVKifb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SBo+1ogW3D8ORi/Ii3/kP+exu9tYqJk/Gboym3XBuz+smuezHFzfP3MkIr0RSNs/FPeV+EDh5z/NaNLfDHXkP6X6IiWHuts/sPdlhLR80j8xMDkoslXePyG5cFWSwt4/VhpwRiO+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iUiW5wl93D8V3/yak+TkP9QkOU4SOJs/HbBY8+onuz+Z//z6/+PgPxhkg2vfJt0/Vhz4c7YN6D/9yPrhqNzjP75OI0RUUt4/0YwFC+Q11D9SANaUJvjdP+N2LdDec94/pqClZAbh5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"b6z7qkeF3z976+wBe7nkP7XonAs50Zo/mJzdrxZusj/9ZL53vzbfP2ZmfO7+wtc/zO+ng7C25z8X1H7I3nzjP+9lxtBGHeE/a0FMeyZL2z+C/0DN5IraP/hR5U4Metw/tk1/NLDj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FMCLeHZ13T+DT2TGn5vkP02vXhTkC54/SPconomLpD/e4kPGsF/dPyVj8CRQtto/kZCvkB5c5T9Enb+Cf+bkP2QGjdvODd8/82w/9Hu52z9qYS2z7FbcPzOVcIDUhts/mRVq4z4P6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W6Df01KL3j+pYIH99LDjPyytHrBRqZ0/SBK/a+lhnj9Wd7T/2fDdP+E98Se/kNg/3nNYXP+O5j/H6Ut3Ra3mP8TzewK+c+A/be5O3K6v1j96U3WCQKnhP2Hjy3+13tg/oK8ftU9l6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J3KMotPY3j/+mUtUsovjPwNjpEjgXZw/EJeyrFEhwz+rQaNZzG/bP7Hy9SMq2N0/0HzhdFrW5D8WAvbgN1TbP2+Zol33XOg/g705JAH66T8vY5OLXYDWP3d8GcYZ5eA/NOmxAvtI5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AKAmFrdK3j9KsqcMPjzmP8Po3TNTpps/qNmX5bQZpj9vk7Tcz87gP9HOXGMp3tM/a5nl6M0z5z8KaIHAH6ziP+f7gbpxi+Y/I/+lnU676T8JN/Cd+3rdP6cfAImVwtc/kK584enH5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h2eji3CB3j9ByFDNIUXjP3NM4aqJNpg/p1k9ycggqT+uJp5TqtnjP5uOWG5InNM/5uS40gdU4z/e3vgXmx7nP6MgTGxoW+Y/DEWZJiM95T+weMNV4uHhP0fet7cLod4/Qveq2Cr43z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"09isR7pA3T8ee/fqzw3dP/Hv+ZX1erI/Dvt3rRw62D8iJhB53q/gPzLLI9PU9s4/ZmXTmRBR1D9dmbQ21pjWPxwyn2Xz0N4/ePzNGL832j+wo32T+gDRP8hv8V4ZY9g/b0DPmAhq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hNdEn/NC2D9k/hWTvqnmPzHnqsc0hqA/+OH6QyC7wD/A3r0JrX/QP2bcZ2Sdmtc/M7uk9tJ63T8fPPvU7J7QP2q2ENs2Z9c/+Xc9N4fL0z91JXts/gDZP8iOEZzAWtE/Heg2InhY6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2Z05vBm32z9N1hMSaPXhP7v1tj4toZo/7AcosqHjxj9OtJXi6NvdP9dsmcElmM4/hNeCIal94D/m8Zr8+8ffP+uMAW2+duI/Ukw+wsQP2z/7o5R+sLjiP1sedhAXp+w/RdEgRhct4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vamYCF1y3z8m/FgZgSvmP+x3qws5WrY/pBEPg5FytT8f12K2OS/oP0rbHhf+luk/q2YtEIov5j+GVFUtGo/dPwOuYiQ9yNs/Be/MZsHK2z8z7tuIhz7LP3pkvO8WC70/eKv8n/um6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+4uZArKi2T/hLkkbRariP8KI1p7OSKU/yb34ID+SuT/VtEzNPUjrP5fH6QJYUOQ/43jjc2l23T9X/B8Gq+bkP27TG18seto/j6UM7CyZ0z9HHapU0S7IP/e+up7LDtg/tRUJYElb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BpNeaUzL2z/HXlAPYHfiP6DbQiJDzLk/LhnY/lXNtz/9zZeeyxrkPxqy9AlM/uI/C/KKUi/h4j8RwEZtvtDiP3KFpju5M9g/tIpt9Rsj2D+s+BIC0G7PP5bVcKVJ6tU/GCnLimvs3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"snfPf7m+4D92amnK2griP/lHGzBF2sc/iJueAEEKuz+tt6rI2yncP2oXa+SB8Ng/z/yQ0ipY2T/c4PpiQS3cP3IbBhq9k+M/sTIzrPyj4j8FwMnTKmzfP2cvtZzMuOU/326K/Npp5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FY64+FJU2z82e1eqiAbgP7SJdmQUEJM/ZqaHW5xryD+n+zFAZ1rjP431Qs8t2dk/tiPP/KTy2T+B0C8ENR3YP/Rt+/WqL+U/T/OHkDYh4z/PBO4EQPzTP/iJQl+9YNY/h2xrupZM5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Z94LCFft4T+pk5NXNKvhP8m6CnEpDLg/zgJQFV9Xwz/WbaQm5KjkPw5chGkOON8/TIsfAx4v1D8kS3pqcZvWP9K49kzg5+A/1oIWtXmf4T/Dd3eWqjDgP7hklTwBWtc/8TMKAT/k5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xSk+oiHG4T+yI2LJOQHhP1ycNU29G9c/9vUv4UI/wz/0Sv3faC3jPyNPn2HhBuE/UUkRCxE84j+lKuCowi7RP96cYfd3SOA/CBnM6kvV4D+6sgUhcfjgP6He4LsdZ+M/FrL0yVEh6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uyDjn8OV4D/VmcRf8Z/hP5D3w2ZwTsQ/OPo4EbAxyz+UYNEFwebjP4uwEFtRZuA/x6xMWc154T/W+YmkPFDYP+ZU8Sx8ROE/CO9vd42N1j958pdeHs3cP9xweTe0s+I/F4ywqMbJ6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FSVpc11j0z842oSA/pTkPxsjCi4tH74/W8r6r09Psz+SV7rTpyLeP8YmbN6wYN4/3zWE4v+R5T9p6Xsf/5bdP9nFZUdxcdU/yq46Ys4d3z+tFfW9prnSP4umGiztccc/GpMO3gGd1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7JP5nPOy2z+lvsvRvLTkP1twYwJ3/rE/SaCjNeA+sD+e+dlOybDgPw4GpiDWouQ/sMLzefqL4j9BedovE1HiP1wE2xuu0tE/P2GRlAar2j+Q+McIUpnRPx2dwyxYQsM/KsDkmbJl2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MPPWL0N84j83pnqvfybhP/VnFrj9jMA/sQUZG3Lq0D+AxWiZVTzlP5Sdn3xQp9o/W5+mteAo5z95d88sxWvaPy7+Gn8+GOM/b7GyuM5Q2z89Hoa8U3PKP1N4LZRBnLc/+QyFHZ8y3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KJ8RKDjV3T8ddNL8IrjgP5z0cPxU4rc/6o5GujWA0D8F49pmpD/gP1VLv29OleI/qXbSWGr75D9poGRez+/jP3AJJtfFuNY/e6K1C7mk3T8yy0obNzTJP4AT469HCMc/A9hZts2x4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dG9iRzsU3D+x7dcSbSriP4HG0Ezoh7U/+KAoFSfjuz8irpsFlRLhPyNEFbv/n9c/aAOuJH804z+MdQBr9RTkP94Ik+xrCdk/5hqP6na/0z/EH/X6owvUP3vV0QZsYdE/EpGWzhXP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NzeOuowj2z9BJ3CCkePjPxK+oi1D1Kw/tSDfeYhmtj/y1mJ1k1bhP359UtaMb9o/rLxZUvKr0z/BVPN8r0DPP1N7mMkdguQ/mwtQuXxy5T/McyVXwivcP9vzudO4ydg/PyeaemMh6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n5kUntni3z95uTWTTgzkP/5pAUV9Kas/bAHDFK7GoT+NF1dT3QbaP/zQx47kRdw/nNkQUcIa5D+agIqGYpLgP5i+uofDcOM/xr81XnjP3T+jbw4kuM7QP4N3i9T1mNM/3ZRK0rXJ2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UTpBAgqH3D/ulLeaY2vjP7KcqUf1kcY/E+3weZ5H0j/fXsu2gXPjP0drBDFa/tg/nj/sa4Ke4j+Cgpg7d1vfP54bdHsJb+E/L+EfAfNX4z9AIjmjYF7TP5RqGGTVBtY/7cE/e3rU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8JA73REh3z9k5IIJeQLhP9N+Mhm3xIk/PQwjAVl2wT/qjIk74drcPzJRAqjkn98/9GR0nwkv5T+jaE0U0HXePz7ahvK8buU/KThAGMls4T/g22g2qXTgP+Y4FqmJANM/nLUmQTEH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r0sG8bQk3T/KsQ8PEqLjPzeb+egKsog/AyVYK+4Fqj9x9GcJzcXYP9742T0N8uE/wy0dJcB+4z+O0kUfIlTjP7+nWtbUXOk/F4US7/B05T+uA8T+ZlbmP7NLH4tcCtE/Z9RJeU2A5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kvSHQEal3j/Syt5xjnLiPylSyYvTpYg/aUwEuWpfxD9sPFehpVzcP7xct4fWTds/MhgI2Tea5z8OqIfhtZjhP0SsxYwtxOo/gJh4jmmt4T8aIgRYiZncP+K2gqlqa9o/Mco5exbl5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PdYc6c3D3j/I1L07ZjjiP7vK1maTCGo/+ITrM0R0xD9bCtxYM5/gP+U0UrrdpuE/D70qqgSh5D9iY2n835HgP2fc+zAuqug/0gSqMvxS4z/QVUOJlnfWP9nu0u22U9g/KLcFT7xZ2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xZR8g33M2z/FBGfnxo7fPwswn2+8bpE/wqw7kAyH0j9/E278jQPcP2656dwo9dM/w2vQ6AeY2z80S8JEtM7SP/pw9g0pmOA/XrAEPggA5T+cFV4XRpzVP6039a+K89k/ZFf4DmP65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P89vz1Bp3D+eomdD/t7gP7toJiqpeaU/A56JA4Hz3j8bTHG7edvgPwLn9SWqKNw/1eejXNQT4T9d1bENDt7VP3p9Igqxq+U/gPwEcgjh4z85Lthc45zUPwxpst8vtt0/TYR+xWBV6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"odk78BBE3j/F8lfk0qncP6bx3PKa064/XOwiOS6ZxD8wYGCx/AXjPyRCNmdY7uU/X8/YeXX74D8iuzjiS+DaPyUqgykZg+E/QERQh9AN3T9c+sjgYN7XP9j0AYDNh9c/pT9BXGY83D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8bw/frWF3T+PVEA/Xv3gP6HxFAfiooo/H8ekYZRJ3j8/tRZeKrThP5LN/gtRgeU/deuWoe5o4T+hUNIvHjrbP1eU969QkuA/rZb3LDBb2j8Y2ukKua6xPwyznKYkOcU/u3TM9qsJ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jv5r+Axv3D/XKxZePjjhP2WeDuPXL6w/PgB6VY2tzT9MA3BOeTrgP11ei1HXHeY/s7orlpwc3T/jHtWWWBTbP274Ohxdhdg/dlL0iPnT2j9dBJB5SW3TP1hy+IOxm9I/PvILk9Lh1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3ZO/Czmp2D94VbJAZMjgP9t7CIz4k6o/We2yqLKQ2D+SOn2k/L3gP/hCtKOuBeg/XQX8NVcx0z/DgFP59Y3UP1g+zM8zdsI/0JkgcWzg4D9fWZHmlknCP/9rK3IW+tA/tK/HNykc3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l43I9S1H3T9EjHHPFUviP60O7hobWKU/LbTC1i1f0z+5IoKOrvvfP9/xasJSNuU/ZpM9ysdw1D/s+CtrZY/UPwDyOj4cS9E/A7oO/8Ey3D9GWl9S7XnLP4/mlZk1/9Y/9i90XFec1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2XVdvGNp4D+xQVNYtOnfPzdxEzMrvbU/2kj3oa7ExT9ScrTjqj7eP+08lPWEyNs/MFbcUjeX6D8Jg6m3o3TgP66xtQcX7OM/KKxlHJqt3T9HnhlkqUvZP+4U9r2I+9E/eHfVj4V35z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+sFMBe9q3T83VCuJYS/nP5nv8iIbza8/r2vrrANkuj9t/i/jxqrdP50oyv90aNQ/pwdwrRu63j9E2Ulcdq7VP1MTMD/01No/uCJ09d8C3T+h9Dtx8F7WP3BKF1q1lN8/KMfWSF8P4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EmbNIRvl2z+XjxiRa0fkPxqjmIYX6KY/kVvtmMFvoD99DAHcJG7dP4nSrH0HndQ/qDToHGYd3j9JEiJviV/WP/rKtOnwLeM/oI6Ocmpj3z8Onx6DoCXMPx/s5n9BM9g/DIEjCx1b4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BWonXwwa3j/UeFKNHVPjP5KrvaPg+pI/uOyEJDgOwT/g499a9UbgP2AjemxJftg/my/DLXQS5D/2Wuvx6AvWPy7/AtCQ9N0/1nNOZp1j2z/ilOyfpJrRP41DpKo47uQ/9vSJuAnk4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QHX3y3zM3j8xeshu/xvkP1mel4qny54/vyaUQ7ljsD+CmMffPFngP+k/wJZsetI/SBfELJGp2j9xFxel+YfTPzqd6bGIRuQ/iDqHrUMU2z+CarrhBkfOP08dmdJMeOI/g1Nu3IKj4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NVUHDRd23T9xtrK8tBnkP8KpVHmMbZI/e45mN2FgrD8b//shXineP7DafBAT8+A/gFvgOUzm4j/hrx+Tfk/dP4HeUJjyN+M/fKA4uqy75T8gfoEuQvPRP+fFxZ46DME/vLZaQb0I3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"03nCOj3H2z/HzOZ7mB7kP67aVgPvWKM/sG6yLJEk0z/7GkITmOHfP4HlRMuL+90/IT/kQcD/3D8dc7eX2zvZP++lS1HPmOA/Cy4ObajfzD+Pux1iidbJP1PSjPP/zM8/7SjZu2LA2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2bI6qKpR2j9uXRXSf0XeP75HJsbGGbM/x2BajhLowD8f04B7ADLbP8IF6XQ2ANU/3HN4sYH83z8YKK4oYHfSP+BQYpR6hdo/XDyvou8W1z+U4khjZy+wP/oz1N/e38w/39h4H5ZD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"60uAPZSn2T+W26UOE3XhP6P1/NmxJ60/j9R7b+7dzj803dRAdVXiP1KS3px7A9o/EUiAGdVH4D+YGEKEUHvZP0qaIiak2tY/rSzeyhuP3D8fCODHvVjLPyozMiCT3Ng/yqjSOzEA2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CnrnXBM14D9+X01xTWnlP17Jp+bEMq4/Y2NvRJsdsj8jZ7rqJ8PhP54+Zf8MW+U/XJxUaMiz5D8PQ1QGbiThPypy3Mf6v+E/Jxondzv91z+7SApyhSbYPxsRSZndKdI/Vko4ZOe15j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DsuKo7ET3D8i74VqRq3iP/OTcjt2BKQ/XoERZIEluz/v+4T4dMHTPxUkrErp1M4/E4ILvZP13D9Txbw7f8HXP7u0mgj3+eA/g5xQHj7Z3z8AHZpnMQHTPyRSPxNcCdA/Rm79TZTL0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TuOXYOYZ3T+TLHx00bDlPyD1T59djKk/Fsspm8+3sT/4AcO9rgPTPwe0DDLBlds/3LGM8tQF4D/ZvG4ImA/VP20pIMHrOuI/bu7x7Hpy4T+p3fK47MLaPzRHzreatMo/wqdFTxA64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OzDyQt5m2j/DgQ3qYkbhP1Lg/+o2Ka4/6Wrey5VQwj9DXLlX2/LhP2hBwo8KJNk/OihLYCYx2z/dfNWvC8PXP2EMjFuf0+A/MISUfutQ2z/aBXpmovrXP055dUBWWtY/c7LX+PT95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LPSSJqPe3T/IQ0flo+vjP50cYT+oWaQ/lJAuSJCOxD8Ncq6cnZDkPwNh/MZvq+g/7r18MFpD2T9kE3I8p7/RP7x5/GmPqdo/9mueuW2Q2T9avvZI3WHTP3ZDOyu539I/Elm7mxKR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jueSDlbB3z8Y10jqTKHkPyvFtcb5mKo/A3sx2f1Kwz+sHzXMo9/kPyu5sWMN+eY/ADf5jlIs2z+SvOs+prbNP4J363GdBNw/FSybHPkK2z8DqkouQALOP0aRJL1LLNc/pWf2ZOvt5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hcMwxeFn3D/Gd+I6miLkPztvtSfUocQ/APFJ7QlewD+6C4Q67AngP/Ql0xcwddk/SgB9NjEP5T+ur89SY67kP98u0CDzK+E/Gg0R2KQa4T99mOP4bpziP6v4hVF/3eA/+HXdTWrb5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JgFKMT/A3j9FcV++jTflPw4QGGFvDbM/SFUNRHDtuD9hiG7JoaPiP+5dnhHUTdM/uyTqXiUT4z+dgfZaSZ7dPxHlqeEs3r4/VsDzi2xJzD+qkxKg6zrSP9L6Sdo7U94/TlUlFhhd5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OCP7RaEG3j/L7WCoj6rkP+czWGkRVrg/h480+LTUxj/870I5avbiP0hh1Txi4eA/hs/b8wLy4z+d4A4EMmvhPwxtoRIhhdE/64EE/PaU2D9aKuNr4n/WP1IEld3d6dY/MoxXvDEF4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O5ROWQS93z9JKP4wcoXjP53nnZ0NqLY/b3RVWoUVtT/UYU+AmwXUP0LAzcD3uc8/MU0r3a4w1T9E9yjO7xfJP59ct0ig6t8/uxlEaiFO1D+6SumQNWDaP5ECuD3iJuA/twNx32L55z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6x/7NsqE3D9pdN5SZAHkP4Z5paYQFZo/AqkwrXSArj/T7bQVxi7SPyNZwTBYmdI/aLq3jq3S2j/NyX6KbF3EP+Ivcn28VOA/mMS6PtVo4T9ixFlNdNniPxrMDNpPvNU/kcj4WzpP5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TSdGdZQU2j94XxNa9BrlP0JJAEiJ/c0/BH04H9znxj8iyJ5ZczPjPyoAm3zlvtg/pf6ghyyh5D9ZjO6QjyTiP6jL1GRQ1d8/YA2mSmDk4D/fQq23n8bTP2auU0CnMNc/M10VY5xf5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mem/kRDZ3z/L5oUMkyTlP5TNAVRzdLA/KWvVF16CuT/slZzUlwPjPzNZvnDfW+E/j3MXaUyz4j8aQXvcernfP4zR+k4yQO0/4LQaQpRj5D9ByQKj5xfUPy0pXtYVJNI/l30dYscj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oQTSGQ8r2z9Mxs/TGpHjPwLb+fBH33U/Bc2sqEG/qz8F6u5K5Um5P+7hTTTlh78/CMaa9wOF2T/UJoCXQqDVP16U4ZiyN+I/FJYcs+kC4D8TEEPw/qLfP8FU8dLEY9o/dyxgYx196T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tZq2RVP12z+mLS/FebfjPwG64/k7Tk8/jOYm2rLpoj9TGyZmMlPQPzf4Hi1I+NE/q8QKEBBz4j8x0atGIDDcPyi0Bx6dSuM/aEqLzjPc3z+1OBbUQVflP+cIdcTb4+I/SXIGofyw6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tZq2RVP12z+mLS/FebfjPwG64/k7Tk8/jOYm2rLpoj9TGyZmMlPQPzf4Hi1I+NE/q8QKEBBz4j8x0atGIDDcPyi0Bx6dSuM/aEqLzjPc3z+1OBbUQVflP+cIdcTb4+I/SXIGofyw6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/tLqPfMj3j9Ycc+4nbHkP4PywG804Z8/XLq9ZUgyvD+6hAYroe7jP/9c1HbHdeU/4h7TP1JC5T/oh4ltUTffP6qHqVdlBuM/a14wmSir4z9YxIFQhPzRP1ueME7QetM/ve0rZOH84j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BznT+FwU3z+UfKwPJIfjP6ggwk7ZgqM/oIrvns20xD8xcw57wTXkP/Ed75+JWt4/aWN9ndzT5D+wY358ovfeP1iRhXkpfuM/0ETEEIYU3D+dpMlSMrLSP8MwcnVsaNA/piEgftsJ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OcF6Hsar2z8Ypyfcl4vlP+FbG34q38Q/JhSKVjrtxz8Ym4ACu07cP0UiCDDWXNs/OcNTD9WG2T+aw4FhIQjYP2y/O2XsWtI/A5GDXVm81T9rT3NJeOrbP8q8XsUcQtw/mUHbpbG+6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7cPuYn9c3T842oSA/pTkP8LTYLZ/vcM/jnDonkz1zj+JZX2U2dnbP4MBUlf1Ztk/MtCsFj9A2j8XYkZUCyLWP9jpBKl92t0/16Az2a381D/cTeBgVS3SP6J29RCdLts/COkkko7S5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T07D1CYG2D+I4W6SJTvkPy/t8KVbJrQ/PFnCSOxBvz+8N+Y0SyznPwsTRS+0Y+U/C6j56IR33z8YXzuVZJPaP0A2FJNmg+U/1ODwxwOB6D9Rsjc+xfzgP9Zwkv8LS9o/xjy5ogRA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pqq4xqC41D8Ln21yj53jP32FIHTgWNM/mvSs9DRMpT/eoZEiohXdP+r0UGrrd84/nXemTCHU4j8H+fVeHt7fP8b3A5enb8M/aDqKeSWj3j8P86GKtxfQP2CjBOrzJdI/o5Z2mKgX3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZuUTrcPR3D8eaWq+pLjmP/k+QE3QWKc/PoptZn/PyD+37nO0LIPcPxHuYeHrptc/H+OmlTmB4T+s8bgFEBrgPzJxmUhED+U/Q1hDeao92j9V17kfL1PNP9a1B500Gcw/6FSgHR/C4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6/Qc7/ct3j9ohaKlnBrmPydiWszF/JM/gsfeMBgsyT+doaujqULgP8SjniBeleE/bzmMbqBx4T84qCaycJ3aP6FmDztuNNk/llpBrjFM4D+4PqjZ/nvQPx0vc9BiW8k/XnIiQcWA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lIyTxdoX2T+X1MpyFu/hP5d2RCw8v7I/Iy8gs8dwyD+Zwd1u5mjhP59nOUkA5to/iUr1ZQsM3D+Sf3L2LHTZP5uN2/OUauM/WruqWNGc3T8eybsCp0DVP5DAsvXp6dg/lkRuYqww4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TS0m9uJu3z/ier4DchfhPyuBRLb9bK8/pLLtAWTV0T/FgpypGnbWPwkWtAlySNg/O/96nwxS5T/Zg/lVa+raP9+cTPVVWuI/6BagjAbc5T+RL7GoN4riPzJShb1baNE/FkiCW+ZP3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"awvEcyfD3T9ei/AfYUfiP6IjHkRMwnA/on74d8OrxD8YD1Tho9XWP1EyFJkhhOM/MBMFHoIa4j8whc1toPbkP4FX6tENzOY/DJH5FTnq3D9QaPIkYpDkP6x275IjYuU/jETkXXhA4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/NRJXbFZ3T+aJANojATiP5I7Dn5Af3E/F00M9xnsxT9719xScnfWP5m2PS78LeM/m+jD2DUq4j9KhOflGz3lPy0pK6hA5OY/JYm1IIww3D/PZkmOmMLjP81pvw3GSOY/OOzuH6xo4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+6rbV9H83T+EHxQbnk3kP41LhPGOhHo/eETI3WyGxD/0ZjTEbYHbPyfoV30jguE/xHKB7rq/5T+2uAkUsAzjPzKPRz5/t+c/xZ3YdZMa1T+FBnXiqr7gP3h0XZoWG+c/20ZxBCh+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IfOcnohy3z9B2bblwO3iPyWYzWUk3KE/Uzy3Z717vT95FJ1XvVbbP0SQ2Rl5cdo/eo0c4d4B3D96djm2BWnSP8euP33/JeU/e3j15sQe1j/JXDqhCurHP3xN9qzeANI/TdW0DCJ+0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZT/Wmbha2T+pVPhxzbXkP5zZUltJD7E/USvjhhmCqj85CqKNyuXiP7XNIXszJNI/YkP0iK502z96wVLC2x7RP9SpHzZmets/M6dEevnN3D/C/eHyievMP3uApbUo0tA/ApjnIts14D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uWe51sTN3j/QPM82ajvkP06nJRl6zrI/+wC/ea7oxz9ZtjpFhz7XP/T1WT4thuE/teUbOV3Z4T9IT0K/PyrfP/9/cvY+MeQ/3RIT5bv94j++HrHt5lbgPyvz3EYH5dw/Swujo9tZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xKvJIbGC2j/0/1iHbwvlP/5oIFcdjaw/cRljySg+uD/qaKZ3uTDoPyb99Y3SMeA//vNQB1N24T9GGal1zxLgP7E5LQ4WpNY/N/MepZWW1T9cTl494eKzP9V8yo98HdU/laQtuQlB2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZhKGxQy03D/m9HVNxHjkP90d8b1t86w/r5dQQx5ysD+4/+lUaOTXP9KReo+d1uA/e5BA4nYm4T9PhjdAPFzjPzbmaryeltk/10LMP6g11z+HxzNx1wvXP/w9oqviy90/VDdoJ7tk4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KHD40VxN3T+GNotonvfiP0kaS9r/MJA/KASekCuvwj9HAM3S+f3gP35kp/9fXts/ZxNArqX/3D9C3CXFMrzQPwxa2KEUlOE/3O4tZiJx4D+4m1vBSHbgP6YGitfwctE/W2w7EWac4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9Joux+X72j9+hXzh+mPjP0SlBKfLmKc/lxjyqAVTuD8RO78jd1/bP1+Zm/Y8/t0/RgLTMmWM1D9JORc1rg3KP2KxixWd+eE/kY46zc7b2T9G8iUW9UbRP1TyLbtW49w/EhWkpOVp5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gPuyqjSG3D8bGBDv3F7lP4kYCMA6MZI/EerORDBqqD9ZccYuVNLWP7e8WdyEbtg/eWUD4pnw6D/nLOhX9gTkP7sJ4eXuh+E/7Nz0nFT64D/thLNSlA3cP5l6AngRXNQ/5THJo4gm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/m2M3eV32T+Vy4sz2ODeP4lGSzRunME/L42mtBaJzD+ptFS+XKbjP/h9nJloh+Y//4pw/Jb20z9T4KCLrI3HP6aXYq7RoNk/BntdvrEW4D9D14d5MBrUPy8zGVg7RdE/1gznDwNi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Hwtaf64i3T/j1eGa1wTkP6IRTPS+15E/CX3FkedtwD8IhXmrwzDhPxUSl176HuA/u4bqtnik2T8apgxkly/RPzCOWdzMK+M//J6GY9Pv1T8YyT2vxb/MPxZXH6tyTdo/e2hrbf3R3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NaA8YQuX3j9WnCLoiVLjP7GZBn7VvMo/9kHKq1sjvD9fTX1NLZrfPxDBwwpR7d0/GF3nETFC4j/S+pIYPdDePzu80ushF9k/preaEVv23j/CgKd23TjcP/DH1H/+R9U//q7RT5/G5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qVJJqMDT2j8A4WrAakPjP6q5ED14A+I/zCAzPFeCvD8OB+YkpvvgP6ANkXMgItw/9XJrnexS3z8bc/aKIK7hP0+7CV0AfOY/yim6M8Ta4D+6tPaUikTbP105ZhHKwds/NU85nKP75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n4LluPWj1j+9rIyWskjkP80wlx8m9KY/AJDrujENpj+XhRfqGcjiP/tXRE+0a9o/GLrgR0is4T8gpSKpJj/TP7bxw2n2u+E/2MS/67k53D/Fn3qmzc/ZP6wwRZPEoOY/P7oBRfqC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7VPOtCJZ4j9TewAvSYbjPxH7CW50S7M/YD5vxdOVwz9/B16VgOLiP71xLenZnuA/9gMknLOS3T8NeJbMY6vgP1HDoGYyGdY/aY3GdzPD4D8EWWz/tH3XP3408rdvctY/tAoGx9Pc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4zswA+Ws5D+OcNHXKH3lP3InGxQ/Dtc/5AzxYDo5vj+MQgUjqJ3gPziuF9gxytU/+WzHArxo2j+fs6UT653VPxQOCD8/8OA/yVtbU/Q64j+eKYBKn0vcP4eEtqtLS90/o4N/1weV4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5zWnd+zj5D87lveYjgjlP9r74j3xCLw/F3VvJWA7uz9uEAmkM0PjP5upualIQeU/jGOlNKhV4j+rPIm2fUnbP4eDTz108eM/Jh3kkHvk4j+LIsfj4QzRP0u3ZtPuN94/qeqb9DH96D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dEaXarmK4D98CNO+ddXkP+JLQMhaHOA/lsRg1xN7uT+x5LCJRGrlPwnmVbqZLeM/dozvINpW3T8NBItj1MLeP4EZSRiJveI/6Q0851mR4T++NmJdeszfP5hhEc2AmNo/oj+uUWPh4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+dVNcuUr4j/AhY34hhjkPxQd/7mWLrU/HfzadB1ctT/SEZCnKKLnP7EmLGVTa+M/crDGtrXx3z88jH2VmU3SP9DsCBHQN+Q/dr+sdLDO2z8ivGjkseDgP/txmWBBW8s/f3TsM0Gz5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CNgKMkgj5T/WMwEG9fLkP6AI+tdjENA/iJs6TGH3sj9OwCsvCmbmP4FstGbaluU/F8qFkCh44D8WchIF55rgP1JsfNOWzeM/Bq3vFZOa5T+qiN/2NdTTPwVrCVq+0dU/qRBzIMCv5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NNY3ghzP4z8+47cxd0HkPxCi2kAGlMM/dCh2hP85sD8KloH8Os3aP1d1CLYtf9Y/TiyV0TpZ5z+PyzbKLqjdP79OU1n43eM/Nmv35ptJ4D/zUYSX0ZHgP16RdzOwidQ/SA3udc/95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W4bYC9c75j9zPysQgFPlP5BjlQGYrr8/QpNC5Rw0sj8qmF2njn7gPxiuK73MjtQ/Tj1n2h/Q5D8a8P1C3dXgPwzxNNOMvuU/4AuMv6rs2T/gU5YQ5XbdP2sCMmdcNdM/qxU56oz35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"F8WNvscx5D8IZ8W9n+7kPy//e0CGmdA/rjH5Q/Xsrz/H4BFi6I3jP4j+Cizj4N8/6b5UqOb05D/JZTVqldnhP+2lkUVYTNw/yYfIYDxS4z8LxGplzkTQP2vMwyEswd8/oXIJLCJL2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y4i0Va0m4z+8BFlN0aHjP+fD2qsl6cQ/U3ccNCTltT+YUMIeGVjiP7y2Ujg1h+M/qXqew6OU2T/EBduOnvfbPw1Mevib398/hS5BnLco3D8aDW8WTYjWP8pB8F02p9Q/eRprG/tU5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"L76Tb/it3T+K2I8gwSvkP0J/1j84Wpg/1CfYCniJrj/i/bFshe7YPwl843QcttI/i4aySfUh3T8OtML5hXHgPzH1GORQlOM/VEjGYH804D/+fyCrx9/RP79MreFwJ9E/tix2aU9o5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RfVDpZ4S3j8W/wsoMaXjP7uIDv78Da0/Vj42qBzBrT+ysG3UEd3YP9F0zxd07tc/9+m9bHfx4z8WWUoF3uLYPwnixen5ve0/uiikhCFe4z+N91T6bjfSP0mO7UW2+9E/AJhUGNja5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"goP40Nto3D8+uzsmWjblPwv+ZPHO6qA/u/2zurwktT8bXn9Xl4jfP1Ff2h5onNY/Q2rPc7Iy5T8OfaiKwtLmP6Zpa1r37dc/f6QfEtDD3z+lNbaqgqfaP6HEvW2Tls8/DB7COHJ15D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vYroujJ02z8Cgy+aUXjiP8tvcSKOA6s/b9jvNia3xD/skth6VLvYPwIUyhCaits/+pccig696D/RkXD4FLrhP0t+Q/VKsdE/TQSDjODS4T+8UdVRVkrgP1N4QN4fZ9k/R+BTtmnC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kFf5Dzq43j+n6ur6hGjkPwmv/E6lWpw/rtD0d8/Qwj8+zsqOxKbnP6cyVndFzeU/kkj5eQum4D9zu1fKMVrkP/L2PpVwH+s/AuYt5STp4z+0YUSeog7ePz6AuR5guNQ/OZ/wRihG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"shWInzCy2z/EtU8/+nTkPzE5zKdd/pg/TcINh+egoD9xzLYHWSfFP6MUDlSEJ8U/Zf0dje6P5j89U6o2mCbXP914oJTGWN4/0joYnVjw4D/4q/6kB43TPxBnDz0ob94/WXVJdzHJ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B3x/wyO53D9ssWOUy13jP0prpAAjFIk/FTfNfEc5pT9QUuADqG/QP3oUSujKSs0/tnm82O7Y1z+/UHc1EBzhP0SXuCrVTuQ/RpRbrs5R3z9MnMrtQ6XnP4WiQhRlWeA/5t/8adfM5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XMgUlKvm3D/PXnKRPgXkP0UKJGHwrYo/l7UNKs8Drj9/1YfkhzjVP6xHsA72isI/PcqICrZu4z8eYlC8LjbhP+ax3CeldN0/F3tUdBlh4D+Mqnxd6W/gP/DAN60WwOM/b1u6gdTw7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qTrWsLsP3D8n9JwOF6njPyWu0f1et7w/8E9aUMEYtD9obQOmgH/YPz5mgm7wPdo/3wMjAeC51T8hA6XbTwnPP/eqmDbfV+Y/kpErAf1Y4D/KbioKu43gP/WajedlC9s/L2CZYERu4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1NdPcuNg3T9ZGME4jxTjPzH1wi8scKg/Yk8LgR/CsT/qCeY0CobeP8VuQ0GgYMA/lE6XCJot4T85b/DyiOrYP6B3vATtCd4/zb1xp4iG5D8O/YXPXEHPP7F5+veCMOE/7mjPmgU06z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"99YHnvgR4D9bm/m5rBTkP7vXXWzMlrI/DIQpWfZRsj8GeMkWD43VP6mtS6JKScg/bnep3jVA5D8WVmnoD0vYP9yBjS2S7t8/cme8z8/C5T/6i79kSh7TP8qRp4Wtgd8/fM/8FoXO5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tC6vYWLn3z/HUJHwmuPkP9eBU1myXrA/Kj0C026SsT8yiUORU2LXPwRh4TxF19U/wgrUr6VN2z8wMedoh4LZPyvkVy0sPeE/r/mF5owo5T+N8N+OGUTYP6Vw2chkxd0/7j1J+12M6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZlhasiaW2z+wbNSXRHrjPw/69hdgoKY/ztV99QHItj+lP5CnaUjgP87v+5b20dU/xCIoEYgl1j+jN/XeqAbGP0Kb2tHEkOw/CMuvSpO64z99PG0gzMzZP/3iRsiICN4/wbf3W5+t4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mPzAf2zA2j9rsABPldHjP3VjriP7UKY/EHwO5Dh5tT+/2cGG4GjgP5pu+qJi3dU/D0eurer42D/96VcQClLBP3s1FFw8Zeo/8y8azcZi4z9CxzXZoPDZPyFRNsNbeNw/48BdXn434T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tLX0CG/w3T/DpLGiQgzlP0c/mJ4ayZw/2v4TWpKTvT8vtLC6RRLWP/lPRU3jfNw/4sZASE151T/2JsykcQrQP+3dva2YiOU/qhdSpIAR4T/HUtgIhD/QPzUn4cfKctY/59rRQW7P4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e5EMsU4q3T/yLxk7otnkP1fQ1vcnepE/X49X5Hqnvj/XHflKXk7WPxv+sIMNAdw/ewiEETkL1z/zCnfMS6jNP/Qx6w8eQuU/jnEBxuUZ4D8v0ed3R+HPP9FL5L32KNk/EQ4f6zVl4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HH40V1O/2T/IMjlAuwLlP84h6bDEeak/WdVp+3aIuD8HOwV5YRLhP+dTH7+Ec9g/wkMl/Zbj5D/9aRGPqpDgP1nia75HbOI/df9EEWeZ3z/viO/j1QHZP5i3b8G9NOU/2J7X1L3U5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7xxQ5AMN3z/dC5lbsIXjPwoQNs9DNaA/U9aalqZixz8MQe6a1WTaP6nq92GBqNU/C9ATSf/+4T+7P4NXpJPXP3be8brfv+A/Rr4Qjhrp5D80k2zAT2LhP/tvvd+es9Y/hwREHh8f2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XajjYcBQ4D/CEuJ6vgPiP4FXMXL6zI0/Yusn0FZPwz/9AvECLybkPxSm6EH9reQ/GjRypTG/4z8NNk9t4j3kPwD3xmFLB+k/gRUNfY8n5D9viOhcFUPTP0gJI88BNtQ/sbu9isqR5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X4ItOnbq3j8iepKLSPDkP1gxDPtLyqI/v22g5Bo/nz8bgDIk+5rNPza6CpamxMw/k91MdOvL5z/bU69IVoXeP9e2JnOC/OI/zUylC8Lu5T9hRo8WKCrfP21EwjPiytw/l1Ta/bIw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0dtVzzM83T9/X47cMbHjPxBs6TDM72o/X5yW9PkEpj+IKLVdycPXP6S04wzZItQ/8wAmGY9v4j9zi5ULyu3jPwuAvNEvu+g/HnbpLToO4D/oYDiBlarePzrrKigsM9w/x+Pr+lPZ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"76lmNd1O3j/7TY2mfZfkP8yHH4lfunc/4MQJ/Cofoj9kTMylTHngP4MBYLyesNU/5rlf5C5Y4z8NYwG5kZHjP+hTEMpMUeg/5zLRaFAj4j/7o5R+sLjiP7IZy3gFwuI/caEjc+cv3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zz5mV8Zg2j/7euY+ElDkP/wIAI4+KMc/q2B1AVC/tz/7njQ9s2TaP+MIUs8CatU/beU5Hpoy4z/DqMQwXDndPyZi7l8GV9w/JqR53LXk4T/DX+rQ6d/QP+EBtRx0rNA/xpFO3Heg6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LdYsQTSm2j+QqwCXVEHlPwfI0XzvcNI/8F2g0Lqatz/hA+kVqSrXP9TNUQ+XUdU/5wvcqVkB5D8YJpLYO2PaPz4SByvMMN4/cTOxqYhD4j8UOjd0O47TPyOuLstDttU/b0EfGnAn5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WnNJrB/x3T9ww2zQ3JHkP9qqbv9C3oQ/pJnasBzlpz9S9EE7URXZP5IAifwQTtE/QJ0q5EsW2T+uhwBvKAHbP2dbeMIb+uU/1nDB46Qk4j8vY5OLXYDWP3cqNzZKUdc/4wRO0TYt3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zmpq+GnF4D/Hdg/tMhblP2FXzB2Cqrk/PXMSdXptuD+W7VgVRGDkP1JfzfnmEeA/si9t27M25j/BY4Kvji7dP1wwf8Uz9eA/inzxhO0p2D+I4soPhq7XP/W35O1IJtE/UFjmfnl04z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6TMAa7EA1D9F8/0CBTTjPwK5AN3De7U/sz5iRIkFsT+rkwB5xy/gP6RGSXezdeA/YDsXJCwY4j9qmz1PBE3gP4shtQj7EdY/Bf2ekah73j8CJ+qqTpnSP1r2kxapOsk/gN/7vI4p5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WyHP4B7Z1j+y7ah1IPLgPxoRMHp5C9I/TT3OOO914T+QwxpHgQPlPxKpSvc5COE/pr8xOlSc6D8nOF9TmJfiP03XgXXupN4/LESGKVVY0D8vNzc+PFLcPyELF0iKD+A/AP5f/TCF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6mqLFq4vzj9VMv3bxkTkP2dV4Rl+QMM/I9St6QHwpj9J4WfeTzjcP7TNIDsLZdw/qnlRrhx84T8xgqipe2LWPyY9z6LVS94/pHgwNi465D9Zf+TYL1zVP+Jdtx46JNg/C3YBhZOa3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kQwJr8xm0T/h9COh8GnlPwgSbG9WtcM/LO1loIHvtz8JdR1TG+nYP/3QkXqPndY/gB61iiPU4D8q/JWGXF3ZP1Xqm+fHO90/qwC0nxDq4j9NZ/ZrSiXRP/L4ulGEPOE/vEEUVbHZ2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dTodvKPJ0T9OZaNhd+HjPx5JstkIjtE/jVcXT6KjqT/PllNBOSHePwqgu25S5tE/QE7gFrd04T9sfCvHsWzbP/OGRu83vuM/6wINybv82z+3f1EUt3HgP8HxUf4WZOE/jYOhEWdJ6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iI6hUCkx0z+UJ6jOJYvjP5Dfe7Q49dI/4kGBvkaaqD963AV/KmzgP2vr/tD8YtE/nzSq+i3M4T/MapCDXIfbP0pORfwE0eI/6PoVRC9F3j9HjcCzri7gP8+akpVtcuA/uo1tfPJn6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GaHftZk71z+dzwaBsUfkP17lQejH7rs/m6ykY29yvT+RmFwTLP/fP0RKdeKG0t4/j0G2hyzb0j9zsZH6SA3ZP1jolAqj29c/Me7ovO+z3D8V+Y05g5jjPzplBbuE5N0/Q+nt/kXW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FKrBiVDT3D9p/ocuMLjmP1rl+VYbw6E/wkq3QzE83j+ehhiGrgzaPww1gk5B1NQ/d2/8pO1R4z+cTRu1KJnVPz7rt6GuVd8/Gs7lWw7j0z9AUA8P0OHLP+NhCjCusNI/Ro7VhKHL5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DvoilGbd3T+Dza3srd7nP23QW+mM+r0/SNiSlMm51j97kUIphB/UP1z8uopSTdo/ETig0VyN4z++h7tGrLHVP/LshnhavtY/5TaMrNJw1D9wWEUnX5jQP1f/p3lip9A/rYBA3Hl+5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yJIuBo403j++82kK3m/pP42Z8nH+cLE/nR36MBCUzz+GFO1LcXrjP6FXENY5bOQ/BWrGlpVF2T9c5TRjgdDcP0qByVDReeQ/Mgd+TvLf4z9Zv3SuE0zeP1xb9qOhSt8/PVBCPRTK3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XFaZXCqm3T/ejXPR0WHqPxW07+fFiY4/WfiTo3Ku2T9p75D9JlbjP+dCxIiozd8/6o5B9e1K4T+4oxZUCfHUP6GQIhH8NeQ/G4xd9MYU3z9JZpWy0NXZP7P/WEPF39Q/5M+YZTG85D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8/wc58v63D8VRVSZ8DDrP2drJlFXvqo/rqs4tDCeyj9wDDfNhLPkP1FOZF5hIts/7T075l0e4T/XSvLsbbjZPy1ZG8VA8uE/nka1rOht3j8XWDKV5t7dPylyUpfo4Nc/SnXPoL634z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vey9sYv02z8qIPhoiTzcP/E3bPgCKZs/Nv8lZXV+yz8YRh7jo1/VP3xMSXZzTeE/2TatHi9k1j878LxNTb3ZP8ktp+Vzgc8/zCA4/nnX1D+r5VzfQ5fLP1Nk16Y5I9c/zuI9Q0La4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QHNhMLnE3z9C6D7eeL3kP4IK9GqMvYQ/iwabsfBSpT8E+OXQGOXhPyZeXn3sLeQ/BQNVcLjX4D/i4Bkc0bzkPzXod6ojpug/0H1x1vWP6T+8JfBZABPSP9MY+RfVEOI/bTeThtaX5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kA1YDSJJ3T8gpNrotMTkPxhlVrkxn5M/ganCQPbepz/HOYuX6Y7gPxmBLuMID+Y/Kx/+UKu65T8Ps3AqHWvmPyMXn6WK9Ok/C+ezzvBs7D+mU40hW9PUPwJY6M7sS+I/3ElwR7EZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zjiwodMi4D/GQ6UfPVzmPzkUkNLAYpo/9H3QQF1hsT+887yo+VLjPxoS9SH7Jd8/RFed3iED5j8kn9gg3RbmP3FU48+IN+A/K+4+6iHw6T/vjnrrfJzXP6ltZrT3TeA/OK9keY814z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G7Djx4wo2z9K8akTCirkP8NOezKg5LQ/kbQBTciwqz/2YqOTl9jkP2toxer/Ruk/HhN/SZo85z+TksEXAoPjPytVfTt99OY/9FmMytWH4T8GRdN2kNfUP6X70tEvv9o/aZc7h4BV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PBc14x3d2j89JiuZuMjkP+AoTd0DC84/IWj3gv/NvT8I2Hb4ZXPoP7vL8EjkNuI/9Z1pN6vy5z/njY9ORGPePwfrL3oVfOI/PcsDY6jG4z8YD8WKyLjUP1A9c3g+79Q/xQg9YrM55j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R3N/3rwH4D+9vh1wb73jP4SCwwxVebY/14ozwxiMtj949gChQ1bjPy6au2+SDuE/lgxSeHvz4j9NQqU6rFneP1wOqDrmIeQ/IhaORv1V5z9dD9V3aObZP2od/5KPoNE/+VB1kFco6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NVsg1bce4D9WDJ/OzBHlP+7ROejJaJs/zWwwbCGRqT/TYmUvzIPnP3FKX32bj+Q/jHuDl1pQ4T8MS+SAtFfhP/x0eKenvus/RdlHw8i34z/gelwRYevfP6S/cZfAXeA/ET6pLtLY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GroTj0xK3z/ra4DWWRTkP57/YxEIvL4/1YaJ6ztltz8Ux/uoGEbfP8weDFlmLeA/RvGzzGOc4z+Npw3QaxbdP7R7H2+yE+g/1cO+ghzA5j9HcN731+PcP7fkeM2zqdQ/uZB87Tzi4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6GhnCY/E2T8G1eyuT17jP+V11TWZOqg/5gbmokIAtz84I0LBd8/aP1hE44vBydQ/872l0W2n4T/SIeHWJPbdP02wrgZeuOo/UGjICpym4j9auWD8N6jbP0dIQ0ZXOtM/uZgyO0Bi5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PLw7+4io3D+jmU/A2MbkP2Z7N+xVGsA/WVHaTRjfoj8yhxOaj8rgP16nee2xddc/S7q4mPW05T/Ep9ANyDTkPwESgBivw+E/7OrrGdtk4z+elO4Hbn/kPy/g3pC1Duo/WDzB+4oH7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c3AaqAF+3D/AZ93U8HfjPxnoiJg701M/xQOCcaUmsT+FMaguaxHRP81JpGzWlbQ/EXE5tK5+3z8jUSdToU/aP8yCd+CV1uM/iprAgTwm4j+7JQKvaSXKP46j47RXQcI/GUmjwXjs3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y2Cuipu83D9h7Hxf3vXkP6Wh4+2y53o/6LRvXdBaoD8E6/zHUJHNP/d3zsnmhag/a40MCycB3T87KhHSoWvfP/LDgz3dAeI/AcJIZotc4T/cSqCIK6TIP/QOE1Tr8sk/w5eyL5UI2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n/Dl5IAA2z8HMqcz1SvkP9zLUPVQFmo/e8Z6Ukfumz8i2i5CQq7RP6PpI2Jsg7I/nzVABku22z9dZIINOwPfP8JoyqUhVuA//ndag9mp3z/vQ7ds40XQP6L4jo41kMk/6paLL2yH3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UQ4G5WBQ3j/7pB/uz+vjP4WreuJ8234/524TlnyH0D8/WvMWeYTdP7bQnXpyk9s/hQWyUsiu4j//9STfqjfXP834yOfNMuY/IyS53XFW5T82RMdZg3PlP8zSPo3UauQ/5WtE2Vrf6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7rx4xQfU2j8K8nOkCMHkPyiU9/Pq85w/zKoqpTErwT8Zmqv5YrfQP0oXjS7G/rM/KXqBGL0I4D+vp52E8XzVP3zHz2dj5dg/4zKLR7id3D/4rsApUJXEP0V3nz0tf9c/lBGnAV+d4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2wsw/HDa4T9ENfaPlW7lPyOJUhx3Bq4/ZVV/YIM8pz/s3VoqIiHtPytYSXTz/OI/HKnbKifH5T9kRb6UYjPjPznX3s1KUuE/t8z8HmXy5D8ihJzeMyHhPy2FJDsEVeE/tu4+eo+x5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+dm//PMu3D/IgW23PEXkP8pZbYpTKLA/s/hhuri9uz9maAcjtGjoP0kcN6DbHew/3EMKqm725D+Z3Hi3FEHgP+M+jnNDCeE/h+1ktCZy2z9/rQHl37bcP5SknR2iwNs/YmBET1ar2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PZJdMlEr4D8afC2tCvPjP7vv8XcSnKw//7UbFBJ6tD/n+SwH1xfhP+v9JKz5StU/7iglz/N14D9upvz1kijaPyKNiZRXUN8/7wRdwttQ4D8eLwvJm7HRPyBCaEn+ftM/n00tUSB/6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1l+VmIpD3T8SvwWjcOTkP+IG7sn+U6Y/q4qYBjUktD/QI9e3Wf/eP4H+C2wLoNU/2A/08yps4D+qmeO7FgTYPybLIks9CeE/5LXy1es14D/v95I00J/RPw3NDtxkG9M/qtonwsoN6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"q5plsePY3j+UivI+7BLjPwJK/HRtDZY/ZRZ4bBC6sj/RaapVWwfaP/9+HrvVcNs/LXhluusD3z9BnoRPKWrdP3sV6pQriuE/Ka2Aki7y4D+Jo7+d7jLWPxXi39Wi5tE/BkF0DHHWzD8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hE9YOe9t2z8PKcFt5SLmP+rq/rf4QK8/F9IrvkNmrj/mHl/uQvDhP4X7Lyl7q+E/BgWC6Cci5D99lTuh/VffP14qxVwpqeI/8lcT/G+M4z83oTnrPa7RP+juBU7Y58c/gHajjMOA6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z1deJLGk3j+tsmh1BWfgP1RLzdBlhpM/CyWXsNI+zD+gLxggD8HaP0mfR5cEHNU/PDuT1xDE3T9bzXXXeJjbP8rL/vsL1uI/jTRE0wzv3j9yEdvlw9DJP2Cd++uZh9Y/AAAAAAAAAAA=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3Qbzo4BT4D/GXNqdht/RPx8OYAubeqo/PSTw6UJC4D9av9PDUdDcP/YwhW29Otw/TBGYNaxX5D+6aSB8iUTgP4i7bm54Ytk/gMnr7A//2T+ILYM3zHzjP1rwnWItZ98/AAAAAAAA8D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zphSDxcG2j9zMmRo+jPNP6qOr5i5xac/whXzwxEo6T/l5gQjJlHfP0wYbNMLMNI/5b95fY8f5D+8wcsjqmPdPxc6yKBQt9c/vGXFKDDH0T9QtLFcE1LfPwp4NDEUhN8/VjdgkFp14z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uR4HsXia3T/XnnJPHBXRP+UhJVR9OKA/QlFnGjV01D9/W2348AfeP0lJ4pv3Ydw/srijyRJ24j+ugysvxmThP9deB0f4Wdg/pKsVoTiG0j9wuqCwt17gPxuVu9jbTOI/lptlxMaH4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gt9fMBYb3D9B7l7BiPfTP8+8SN+TyaA/5xrNi7K91z+Nn+Lfk2naPyzbxZPGS9c/rWSEjUil4j/6I2M59nnjPxPvxciA8dI/ybULLB6i1z87wus53n7hP6qwFdqYJeI/+h7m60+E5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aHI51R414D+25kSvz+LmPyDC0BfAWLI/lic7s3l/qT+qCfiDTHziPwbeVrjIPuU/JYQeJsGX0z+KYmjut3/WP2XiVJItpeM/COnxwGbR5j/MuEt5S9XcPwRyk+LHjtU/PQmot60P4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2jw6ef/z2T9IJCOPrhzjP8HlWI0gA6E/Kd9bug1izj9dQ9ZR98DlPyZ9A9Pnm+E/bzjZE1JL0D9rzaOsPcbUP7md2tEB3dw/8E2jqH3Z1z9AfH2xWiLeP8kKAY5WFM0/Fds3LmYU6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YwRHK2EK3T9jXJIkvLzlP5U2DDex7rQ/Zl1kTS9e1T9dJOfe1vbhP8ttOO0N1OE/WQ2EUmGU2T9BsNqZWOrYPzi2bIufg9I/uZERZ38S3T+jbyB5IeHYPwNxJaL2OtM/umAo7WcD5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yNtfxrOp4D8d4g9p/FblPxD+XR4LgK8/N1x9iGKhxz/pXay/3I3iP1VwvAcZZ90/PgZYTCQP2j9aBkk2er/WP1fuqv3/o8w/hj84Fbvs4D9BfoB63YDgP6mKMjZNENQ/51X4Nedu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WVhCZQnI2z9ECIbvLj7jPxMkvu1Szbw/V+7s7Cc6vT9BsUy5QFviPyq8ExlKU+M/U6WqbOeM5D/FwLIST/LeP1DDfYjKWOQ/RINSLiGe0D9EMyL8pQ7NP1wTcCOg4ds/yofoXeTG4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lrwHJkAD3D91rILTsY3hP7e07L+yyqk/cwI58XzwzD/rZ5yTsITjP/vwCtCfMOc/kq3wylxQ4j+OcxglzQviP+e8TIBpJtc/B0L6nIAO4j8B33FbMlTQP8/UB8SYR8c/czE+8guT4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yqEDvWIM2z8wWV+D91bkP/eDYON3ErM/XL+9Ppgfsj9YLDqC0cHYPyuSyZJCqtk/8lMCs/ox4D8AjXW8w57YP6jzO1RkGN8/dUqgFDnf1z9l1uS1wpjnP7zkiFhVjuM/rLYH774o4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FdQvjzAw3D8TMcEDHcTjP4KedRuBko8/nW7dqKA2rT+DOz/GFn3cP+kVn/8479c/AVgjg/v14z/Uiu6l4JDdP5dJgeaBfOE/Kj5WmhP92T/MPzs5dwThP4EzvVU5f+k/bFnN5YqO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y75BfrO64D97mf/Ch1LmPyMVHoJXg7Y/efoTvKksuj+6DgNV9M/SP0rUbGJtqNA/v7xApOV55j/hsWWFe1rgP5br+nyyDOg/zF4JpeVF4T84TeziYvPlP2zZLVWWoOQ/+a6MTYXO5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Sjw4iqON5D/PV5f1QX/kP+wxZigYbdg/Dxxaefryvj9mcig51tjiP8GYB1X7o+E/rQnxDM6HxT/lDt9DpKTVP2WL3uhIR+I/oprfyJ494D8BeSKVPePTP1xAygUX6dc/FB49flMC5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YP2dp32o5T+/aeqRJIniP8cPhH5jQ88/2ralIe1ptj82alxQ+M7iP6nOcEjEouI/beZ8o6kPuT+rHt5OAOvNPxJ+Kum7LeQ/i5RnHbUj4j/8YqPvUnnSP79uUL4me9Y/SZDppF9f5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bG1C0LWh4j9471UIzRPlP/6ZX0E4zb8/iqxw7uTGtj9MaQPPkAjbP6l01Zdlado/UcEjy7Jt7D/Y7um2PQTnPwRi9N3u4d4/nbxtjBZ11j+x5l+WcYzbP2w/tbkjv9g/Kb7nz6ck5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O9T4265Y2j+p1TNxDibjP1uz2AyIRpA/Xh1aQkD4rz+37nO0LIPcP7j5z4dmJdA/B7AOKv9f2D8keFsMC3DWP0VFWXi1p+E/jDHGGGOM4T8lYLwM09nPP1sNLker4to/nDAPW4Ii5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Otkix4PF3D9GXOC4L7XjP//32t8ri6k/psFAdjTGtz8r9pG5g6/VPxMizjZq4tI/fsfj5GoU5j9+H9X0BOncP7UuYr+mUOM/8iLp3O3a4j8HOil4D3raP5EWNL+mNdQ/8ZQRQqPC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KX/NiDEl2j9mQpfsaNTiP4aRCHHTtZk/o1u/TGxFtj/C5eFRePfXP+E1hb0bksk/pnSz1/iT5T/kl+0JNZrdP6jCF+Eoy+M/zCFX97QJ4j9r8Qv9u87YP6Ckl58o9NU/iX6tmzNc5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2fvszfaE2z8CxV+r+nLkP0diWpPVa8A/9kDFLuE7tz8lwP5EeK/VPwQ97rjk0tM/kxCIjwJC4j9LmjEpPeniP7J8dtsORuI/6RO6nYBN4T9W7TjFGb3eP+gG1eAQg9Y/PEtlHZQv5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gYaO6zlK3T+CYPl7i3zlPyvqBCRee3o/prEaJuVwqz9/XAX00lPhP05KL+k3YuE/QbBKG1i74j/uEZtyq8/gPxPE3sb/x+I/Oqf5kW+A4T8+uhwTJcbcP3gkCKQzHdg/4i6E73YX6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Pl9ASnJE3T+K5pTkpG/lP2snMkUet6o/GM83J4zxuD+lpNidn4PeP/xGswSDHdw/CMGT1cdd4j9pLrnsuhfoPz5r8rdj2OM/E4tKhH+r3z8J+jOiyaXdP8ICwFs/vuY/7Rncjte/5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hUqcRiWl2D8XnCIS7WTjPzCRqup6UsI/l11qV/PKsj/gwNGfJTTXP5EcHTtP3to/CYS/EzMA5j9xnaeuonHhPzsGeH7uLeI/jzhFOCfC1j8hjQK+omDVP9aQRhFBLNk/KTZksXL/5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TfAk+7HO5D9zbLwsLczkP2uUKeq+4MM/kUCnOaAWmj9kooGBCjLjPyBFIA+SLNY/JjNHxOYx4D9JLuWQ3rThP9ataswdLN8/sjs6YnWx4T9tyy9g7rLRPz2OuuWUZ9I/H2sDNjOZ0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cf56YZaF5D8lbJ4IVHPkP6KjA2XNSsI/4esNKv+xmT9xlNrvirriP2pMdOWX6ds/jTowyKjS4z/ws5Wl5pbeP2oaetSRxeI/qreWjrQI5T+N+bzDU3rIP7fQSHRoxsc/7IfjMrxd1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WGM7L17x4T8u60fNnmjiPwolHFf6W8I/Z6ugIaRdwD/FHMBQZYrkP6QxuIuFUNg/UZPqCRwB2D+HaPYdWKTRP9sOYleYQ9U//7kdxxAP2D9YcV8C51nlP8gMjidDquc/ApJVI1co6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gtyFIIMJ1D/tXqbTk5ziP8W8aHyAJ7k/oGmS6+OaxT8IFp62RCXnP2IXeUkrOuU/gS3nPwmG3T+9bcsZE+reP0LYmwXd5d8/qWR0nZ2z4D82cKxR2arTP5yLWsweBdU/TC3Vay9h5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DLKr/1NO4T/3CPkgMGHnP9BQyo+Inrs/yFz4yUadwT9O6TOGh2nlP0negMw68eU/8n2y1vxC4T++cvfc7xbYPw+2ICv4Lt4/EcJo8ThO2z8SNRh9YcvXP9YjOOPmNtg/LGH5D20K5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y/nlJHOh2T+jYkX1IDviP4uTR1FWE6I/Vbum7WYwyz/66N1KxpfjP4G8Om1DyOI/emNext4N1z+Z5zKqkZLUP0F6fZE7sNs//KcPWx/02T/dTXtg80jOP79sYfOlCNA/ef2hVTjP3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CoVMVCaG4D9jQTpuFfnUP4N4lDQtqqw/PpQ6YWnF1z/pznqeqeXaP6GE5MApztM/biQ7WJ7a4j+Mg1fT6QHbPzbc4ddph+I/xiX8sOZ54D/Xxt5LwOvFPwpCKB147Nc/wZEgMBH75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bkVA9sgf4T8llBEtpfbUP6TQYwdw2bM/v6YECy885D+G8vCmb0reP4abtsOgqNM/JJj1HqIK4D+Css33H0XeP79yWrAygeE/usfYPWn/5T+pc0O34zixP98vth1XaNQ/cERkzoE24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0e3Ca7Nx4D8Mkm25SHXfP5jG1ZhZDbw/T24V2xZ3yD+xeI0j4dTmP+rGm1plZuU/JZ0G0VVt6T8WialjX8PiP0UlsrlUpOU/vzRzmYJB3z95kHLUAT7lP4tNPFfeX9M/6RYjvdaX1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E5ZBgoDQ3j95lmd3XHbkPyI6BrkJaJs/emFmlXxOpT/4/NIFCr/hPwSJGNugpMM/zBCnMSph1T9ElpvcH7/BP7tsjFqCs+U/92+fHohj4T9tot3rutboP84Kr+djHOA/a/DZE1yb4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a2oJDJTG3z+b834UoWLjPzFsmpNryLs/ESs7WmHlsj+OMEiR7UTYP7SGOuKr3Ms/R8Ssk4343j82qMgFnJvJPxNLtHA1V9Y/hT5C8cVh3T+0qhapIhnbP+yCX+LVeeM/kumcyP4U3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"v5m9cQdM4D+IWvynAhnkP64OB091X7Q/bXkQ1NpYsT+xeZugTBzbP3OHntT/3tA/CPFK03A13z/7D8JIuGTfP27FMuIdy+E/I6a7UdI21j8vh360EVDTP2J9HodrKuE/94TiEVbL5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nSThB12F3D9mUf/1gqTjP67TSpraWXs/5bNdprOWxj/TCAP0heLAP6rAu0AjScg/EfCuu7Ho4D8nqAh6BmHZP5/WMeXqcdw/99ylMSS/2z86xy7bimbdP0Pqox8DSNI/NJGZOk5V4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E3sWLIDv2z/v8EZey2zkPzkHQZbnrbE/yk0IEMtDzz8r5nJuUbPVPxKFcv0D2NE/w1m1MSKw1z81Nkc2YLrYPyuZ5jlSId0/KK/JyUxF3T+WRTBOIvTjP3GJ66iRbdc/U2F/WOcM1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NdQiTH+F4z/iaW/zpObjP15Jm8wXr74/L3rDwH5Etz88XvrI2CjlP5E11nYlOeY/bzGcSmQU4z+t566O0NDWPyISdIlmidU/HwiBPyYO0T9YLDngXbDUP2sfJzyrc90/zerUozEY7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OAnj21YZ5D+LYLTcBBLmPzpjubl8kNE/2LCn1yFOyz9qrvJWBRXhP33/TNTy1Nk/pDl+CC6F2j+7o9dgxH7cPyHxyWYxDNc/ERjVggtw0T/5WxwvlHPgP6G4ObWpmN0/mhdIwDUO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n/Nmx3ZL3z+QTKldzOLkP6vxWfdd+Kk/y/wbmTuryj/veysx9R3fPyIXd+Rk5t0/F2LBK9Nd3z86WThmOEvSPyLaD0Gcntw/ok38Lhgg3j8u83wsgIDOP77AfnZvOtc/Hc6LjFKw5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QEOj5jLt3T+WobgY1/TjP3tf8gxNGpQ/bUAGhmGdtD+ZYQPko6TUPy7N55xR1N0/b3wMtsE54j+qhflvcGjgP0apHFM/O+Y/l/iv2ssK4T97G7vRK/zZPxDlAwNaTNU/LisqZsdw2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yI1fpqhR3D/jV19jCLnkP/E6KtqtRYU/NREb1kqjtj8xeP4yZnrVP+494ULFyOA/uRu/g+Yn4j+sDJ1VPebfP4cc3DrZ6+g/73DgKgc84D/ws2HNSNfXP9yZk1KV+dU/spXmXjzf2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fmE5L2C83j8XLnrXHK7kPzxCeSgULoI/FNjadyyasD9pDWrBFqLTPwoMoJ+k/+I/20ux1xSC4T+4j3Vjy9vgP96GID/kk+k/r1lB/Fgx4T/skyKNi2jXP3YKSkZ6D9M/gAFVCVdi2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j1jo7AX03j/LJ9WuziLkP7pP/YkRhKU/w3/oPbvSzD/26MlN2Y7lP4kTgY3mMdU/d9wsEBEr5T9dWklAETnVPwQCDbbL3OY//8PFt5dF6T/W4XXqbo7WP05sqdtXntU/kWd1ZoZo5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yaeujPgQ3j/xpohSXN/kP8O2cnTivaA/FcfO4gImwj8uCDIG3ZfiP559g6oYXNM/gIyctxt75T+TKE0ocWbcP/zzHj3Z6uQ/Y6UFt7ET4T8k2eWfJkfgP6Pj3ao6jtg/2WgQwngq2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5f8/KR2E3T/ufM5ZfvzkP0S6wsM9JJw/pKDNianZvD9RhwSNWmbXPwpifujclN0/KdV1FkMW1T/X414aqzPTP6mZN4QTz+A/cvHenQIC3j8SkKTxVULVP+Qf7B9e3NM/xeHX2pVF4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r2AYfxRd3T+6TwGvebPkP54b5gXiGqE/j2KCJZy1uT8GNGuvDJ/YP+hUh5bvR+A//bvjg9C51D8btXH0nSbUPxSO/T0u+eE/Fnq3vLEl2D/rDA8jjRTTP6DDFk8n4tc/5dLdGUPL4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m8vHpKxE3D/M6eZgTonjP6l7/j79fpk/i0iPaZAX1T9bUuOGW9rhP6g8NM29bdU/cEDACEzj2z+ZAjH/PGTXPzWeoSXwyeE/1SjHTipjyz9DLQ5KymraPyWOjQPtn9g/SPvC6uVA4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6oJZmaJ93T96sZCQtgHkP6+CBEdms58/a1MVQvWt0j9gqzdFNjTkPxANxT05oc4/BrU2AvNq2D/06OHT/zHZPy637TP5xOA/VgzwyUy41j9qE6Gx9G3XP4fuQTqX5NE/LAV6vq3v4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hPm/uDR43z+VFzXzi+7jP4Vq4oDPHZA/ou7MrvQ80T8FvC+w1rHhP7Vc4bbSKtA/WfAmKifa1D8Tz/RYLU7ZPzxZjo/56+E/EwPZIUfr2j8xKSm9vkbYP0V8TUWUlNI/bgVCvPZ35D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5rf7enbO3T8rMdI264TkP6Rj7qAM9aM/yFDtlQ+F0j+aPxejLOLdP6mVCKOIDNE/2okbpcbJ1z/Ym/yIyh7aPxRE1MXu0OM/vzvr9kR23D8QZTII42zWP91qXe97StU/yZO3LBEL4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I/+Arw/f2j9os16DZ1/lPxg6qi19VaA//kw67+Fjsj9qlQWyV3LSP1oKp+ZwDtA/lsQ/rBhr1z9hMm9zjSTZP35F57CuMOg/osHi01Lc3D/Ymgup08bfPxY2EKNK49o/MMLJnpvY4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l/3m2D3O4j+HNK1Itx7lP58yfgs9PL4/mQ02Mc7Byj+VmdMwSj/oP1ocGVY4DOg/H0Cgy1Dr4D9mOh6nY+fhPwUsE1UdE94/8QeNVaBS1D9CosVMoKzVP2XI6wmkqNg//NDVa4wo4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PkoAwfQa1j+eiRu94uPiP0qOFmo8dq0/YSeOwU8Ztz+qmQJHOlfVP2mNceRKnNs/1JGjwdAs3j+u/+AXGobWPyxFC7ZcR9Q/2aQaMdEEzz/ZmCyKI43dP25w57Mi39s/BnWq2zlp6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A7VXjA9c1D9MJmpjO3ziPxaqKc+ZAsM/Esc+vOBtwj+45xb4TVvcP5whJXBlBNI/qmpVMBOb4T/XX0NZ6dXYP11KQSSOvMg/jK82HofGyT/eQr8MCdnbP3qY7IIQ+98/CAmBFEzK5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"T2V2Sn6j1T/g0BO8DpDjP1QEIB38grc/tXx/mzniuT+G8IOiNWffP5hrb/5RZco/7xobEldR4T/FjJPF1/DYP4rAOWBUttI/oVBvpBmUyT/EkIm/t/XWPw8p+9QP4uU/CEc8T7x45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8Oqgc8qj5T+8ofZHkFnlPzWrvnXiV9E/pAIPTUUXsz+bRFTM0d/lP4miF9qxGuQ/Qyb9Tk406z+pHNdPSFLjP2jj9u72zeI/f5kZyXfW4z8gErm1D/rePzWKLvaFetI/KaCQrlVd5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MsPwQDn05D/oRE3ot0blP88BLAgwddY/lnBKtLl9rT/3VzuM9nDdP3PmeU4aZeE//Qs9YQNU5D+Sl1skDqPlP+8R5F4uWuY/LlhFAUHy4T+NMdEdd4PYPzG7QNpB0dc/YYyeuxUI4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/BCCVU3y5T9rmC+jKiPkP6aKe7fCitg/aIq6xGmXqj/eMd2LaNfnP5vm0ZEp8d0/siZ9/ww64z/8AO9ugnrjP2FGzXxKQuM/q8Pcn0D00z+YjlwCsVrZP5AAQa0QQto/6aFQ7rmB5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"42chN2334z9mfWVRElHjP6ZHx6Zc6sA/pkVFav3lsz8jC7poWcXiP1Hf2j78e+E/t9daclaG5D8a9gMk0AHgP2WnlPIgztM/akhn6bRC0z/+V+ebaAnQP8/EFzLjJdM/DJHVF6zO4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"C1N51AJlxj+tzV5EgZrlPzj4upLKzuE/J6/q/B5ksz9qnXgdZxjWP0f5M+bi0dU/64Z5EZDb2z8djvTfy3/UP/78lcx3QeU/Juq0gTIl5T+0KghTxEvhP4JmbF6DUNg/IdqQnkaJ6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MlT4tvp6xz8l0LLftX/kPwAAAAAAAPA/OULxwU6BtD9V3wH2K1vePxkPXVhpI90/bsbzq8rh2z/ebN9cV1PSP+vzIXxNMOY/AndGz0Zm5D/mdid+NYHfPwU+r3dHytk/sSs+rQl56j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YVQlBQTa6T+Rarrb5MrkP0Ae539e4ek/TxV7Mda7rD+bGulUI6XcP8vw6iA2y9s/qtkgJ3ob4z8E0kn0YbbfP/8FRTygRtU/B5uaRL4f1j8YGKK/Au/UP8MKtWXd6NU/6c6VfUTm2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/YwYHCa+5D9KRdsGoRnlP4M5NTMNYeg/8AeCpmsLuT9Zw+KndqvjP6hsoIE/0tY/X4ki0zeE5T9chHgbx/bkPzrUgZlFLOI/UMDWPxpr4D+r1YGUf2TNP68XVOgz3dw/kc/a3CUa4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S2zjZg5L5z9N5MlJYQHhP7lYANjKoMM/rCUQNelVvz9UPV8Yqs7dP2gKEE+iIeo/HaxagNlH4j+gPYMOSSvhPwFrC3v+U9w/s0wXzoGq2D9WgNmTMT3MP6h0PyS3HNo/sO6UGdkD4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KgmW3YD14T+qoNPuttLnP6pGnR9pltA/bb6FQJqr4D/NMKzDNErlP20JV9m30Mk/hX9Rp6+k6D9H4OpnOmfiP7JIqguoqdo/hEfpeK8e2T/RvBC1wdLdP6zovhLDN9M/kNV8CmsG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W8YlOEXR4j8l8AcScvDmP++9ZrYn7cU/LVcoKgEv2T+v3DFTDfLiP0ECkBruiOA/Qqxr8WQh6T9eHwGZKIbmPzQRROLZ7dU/oamc0tKK1D+IH4cLuIPXPy72rs3LUtM/l9oDi6FO4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eRnodIRh2D/bcq0sS6/iP3HZc6M+npw/B2cc39hd0T/yNrcawrHeP9FgpgOxndc/13vQv6Aiyj9rzTCv/EjGP88C99VXoOM/mzTx5DXG3z941joGlPbgP6G4ObWpmN0/ewyPVALx5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g3JDlSKd4T9pylg02eHcP4UVZ9pLnMU/Fpw87/L1zD94fOIbSorcP9kfxI4ov9o/NJ2s+r+43T+vC5mVTvDOP5dn/8YYmd4/MrLijnWP4T82uZCxwsfYP5KZOL7TBOI/Ee32MsGn6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sUsVyDZG4T/LAPRsAGTkPzMVeN7LX7Y/7NX3iHGe0j90y6iK7d/gP5tB4j50idQ/qAJI1Sev3j+yPRRE9OTgP9KjIO5O5+E/JyQ+XqBg2D8spWeAU47VPyeLQ0J5pOE/KCmDOwaC4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JF7GR3zi3D+uTdDcJobjP8nSUiNhZck/fSU0cfPKzD9PykisyTrhP4reCiT+KNE/poVK4UUc5T9rcDRWOJDaPwXMyiXvvOI/tukcXaLDzD8UMVo/AVjTP7kyGNewleI/O3V0t1/o2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"emRjHAB23T80pItOqYbiP3czTKrFIs8/2SIfoFFp0z/KLRUT3d/kP32GhRvECNY/Vzorb2G+5T8W5xGRCojbPz70iEo1FOE/Uj7YTmB4yT8MckTQSA3XP/GsznUwfOE/rFDdHFI82z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LnZRjJ502z+A40ofzIXhP4J9x3FYqbc/3aRysakGzz9qXj9JuoPjP6bmi5jagOA/t1XL+TIz4D/KJyH3SgrgP/pHR6N6Yds/vV/uBXy71j88aFSA6+jaP1WjCmht8uc/q7lc0ZEW2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UJpRaFgO3j++QsjkcYLkP7OcWXFsW4s/npkFKwCDrj/bIvlmjQDWPyGON5pAosY/uXQ5rOBx4D+dn6Z22IbgP8aNlVrKqOY/KMbljOl15j+ANtDDux/TP12l4GqWzdY/nSzPVeQs3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q5uW8BEg3j/+tf1ow1PlPz26lgcc1ns/FhSIux9LxT93qQUiFDvRP/zniGw5mc4/r+Rqgypu4z+IwokLoczgP28H0yxxKOQ/pcjfsUMb3T9ebEALDZe5PzPUamNt9dY/OGREfQIS4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yjHl2VKF3T/PZ+lUldPmP9dxQr6zAos/ZqOUhfvrwT8512i8oATbP0WDElzvUeA/xMuyIB844j9HEDV1T8zePxCLjByDUeU/I0+9TUDI2T/glWoF24TMP5AmEQd+jMY/6sAeFeg34T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qG2Ha9zO3D/pYX33YjLiP4YcwA6H55U/xgm5od8EsD/IYh1t3ZbeP/RTD9qKq+A/TOXw0BbN3D/YDaj63vbVP5hE9OWPhuE//Lni6iB45D/nJFSUqBvSP2TOGpy63Nc/LspJqdfD4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k9xeMmLN3j+jOyNIbjTkP7zr0ZD7R44/1N63k9wN1j9WJutCXuHcPzIFHT9Pf9c/O2MpQl2L4D+iqsPJO2TbP0kuYEy6b+0/vY6/wHZq5z/1+BeYHBTZP/VB+zrQJM4/i3u9F/0j5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kpWdM8kr3T9BCIy2Ee/kP75HPtPvdo4/AAAAAAAAAAAQ4nrJJnPXPy9ngh1Svs0/6eOh9FwM6D+oZUcJO3HoP8nVGP3vweI/qLQy4QFx5T/mmLHbGpjiP0nKOzZHkuo/izkfnypG6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pkXAo44X3j+CYiYoXY3lP89EdE4446w/WZkWrE3/pT/Djhpg7FvRPyYXx0K8o9A/QIKAzsoh6j+na6uWAp/oP9gZceAK1+M/ifpwUmBA7D/b+QmuRWniPzaXNvhbfes/36l8N4kR6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0lKgZppf3j8YB7mE7O7lP/1AseDuupk/WKw/3TuDjz/WEWswAvvcP5o94p13sto/kjli4JNc6j8AAAAAAADwP8E/+FwLX+k/BFJ9M2I+6D8Ta44OZFrpP3OHW1Bo8ek/dybtUK2x6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JHjLRKu13z/fDByQhBHkP2/+d2SUan8/fBlSbubsmz/AcPCRmbvaP5IobXycILs/yR1Tv6En6j++6teF4ZvjP2XVtG18I+k/05jj55P16z9uDyvIOUTjP4dIt6Jwxu4/fziqdytO7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xH/pj/fV3D8LA6I4j6nkP7igKMX64oI/h1VbXxnCkj/ge00laFrYPzKktE81g9M/Qk03TOCJ4j8vxnmiUNfjP9r1P4WMV+o/F1prblZA5j+5Yxhm/7/kP1SC1cuI8uQ/Wodsa7qW7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h93r2O9O4D+JLfuCJCDlP6aedHB4YYw/pWw0IEebnj+QAo2PQUjgPxPx3iBT1dY/h8971yx46z/AlAk7oB7mPx3qwMwiFuk/8KvsseXn7T8gbfJ+C5/gP/NCB0oNnOQ/aGodfGoi5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8RzPft1O4D87N/jSvGnlP4PafDp3EmE/gSqblfRclT+msy6robrhP8E996ewC9s/z6QEBBcj6j8KiLt1ApzmPz4wRj22tek/iJI8djSJ7T/7CIOLK9rXP/y9XOmbn+Q/D+NLshPW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"a+B3M0rI3z9+PO9djFPlP9ECXxp7nHc/Y7cMrF19gj8KVRgxyqDhPw7KOsmGeNs/1V62ZAum5j+pxfrc9MrpP0wMx7JW+uk/id1jXxg56j/OBVoVDdTWPxF9yXAjAuM//ZZxjG3C4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uD5xKrZ+3z9jGVdBk/XkP4b3vxWTm4E/GZNQPBOJsT/HI+D/zWbcP/EGEzgKM9k/VGfk6eVy5z+MsxTeP+TlP7h1UASG2es/cnWzTFYt6D9D14d5MBrUP69YFENUQug/rTGLqnOO4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5HaKwIOn3j81UVu5HZPlP6G/2/oMv1k/vC7Z4hU4rj8zKn+1QRzePz48AxS8q+A/G60RQq4V5T/+orpL08DgPzY5Se0fpuk/MnJk/7WP6z9mVBTtcCzfP08bNYxZXt4/PBP+B4AK3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5HaKwIOn3j81UVu5HZPlP6G/2/oMv1k/vC7Z4hU4rj8zKn+1QRzePz48AxS8q+A/G60RQq4V5T/+orpL08DgPzY5Se0fpuk/MnJk/7WP6z9mVBTtcCzfP08bNYxZXt4/PBP+B4AK3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5HaKwIOn3j81UVu5HZPlP6G/2/oMv1k/vC7Z4hU4rj8zKn+1QRzePz48AxS8q+A/G60RQq4V5T/+orpL08DgPzY5Se0fpuk/MnJk/7WP6z9mVBTtcCzfP08bNYxZXt4/PBP+B4AK3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"86HZFRba3z8d1ldAiCPlPyMYXAn2mnY/9gjwRFI0rD+9TiUv5gTfP7er4xt+9Nw/qPY0WR4E5j/lF06QEmHhP8sPGxg1Zus/694YgtOT7T9cvLIpy0PdP/p0a+cFyeE/8rP2voTL3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4rlLw7Li2D/asWXhZs3jP0SL+hjUBsk/m3N/NT51pz881iHLIQ3eP+OWqnNfW9E/oi3nlvYZ4j8iBMOgvATjP/sTluaVYts/oVajtgHd2T+nbI31/oXjP3plBJwryds/hudT1Odn7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UIbtHTRE1D+WzgjKnyXlP14wJtNxDbY/SM6oVD84vD8/WvMWeYTdP3+A6p8ectw/m5sPzygS6T9TMhJI3nXfPz05m8uvheA/j9QGfG3v3T9H8fpbty7iPxcrDXUQBN0/FuVHDbCb5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5nQHktu53j/V0hvGGDzlPzqkBcIbotc/DGH3OZ6ksz8FkbpUH8vjPyBpBS5J59s/KXD2aD0E4j+++QgM7IfgPzg3J/14qNw/Wqx61Rg14D+jST3ePTvFP99cNpSKBdQ/pSbmR6hR3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8P4z6LXA2j99FMxSzlDjP6dQBxc6H6k/XbWij/tiwT9c4zxtjePgP8C3xzQh5uE/o1/Q1MpZ4z/kZiLXzK3WP4SQ23R/8eA/h8oNJaZE1T/IZRfWRCDYP7iTBH61ad0/lkekV2vc4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tOWhsCYq3j/A034ZcM7kP9qzVcNYE7U/jC0NN3VDrz9H3KwBXAjkP9QjqaX6weE/uelnMj6L5D8i8sVOUPziP9e2qlj1Ddg/Bj8YMaFt1z+kUa4Cq5nCP3IzURd9isQ/GguqrOC54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ANFUoi8c3z+nDuTXlMrjP7Fx/EkoqKM/zMR5Le4Btz94TQ3SCnThP6z8uS+gY+A/vU7Vgb8S4j+/ylkpqK/hP76akYqiONs/iLbQjo2hyD/3Cd1Gj5/SP+mQc/Po8+I/y937xCWK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jfw4b/fR3T+N3gGwpHTiP1gndBhBva4/30cRzqb4vD+FAlnKP2TlP5Fij9fqxuI/WtR8XDtG4T9rEGwxErvbP2AIjcrQhOI/O355Na/43D/kpyttZXvZP2z5HQSjyNs/pkuzY1e65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dOibOghN3z9Bylz9rA3mP0pnPIhflKA/PGcG1uWGqz9dyQQ+/q3lP6VYhdIly+I/21yR1/fb4j+i5k2jMizcPwBKYVjJ1t0//N71KkQT4D/NVibvLkbVP4LM3bn1vdc/fZuXLOca5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Av/Zpi7y3z/8G6/0J/HkP3OEx7s3uMc/cs0TxjdoxT9RiXGRlEnmPz3b0Dj3V+I/KrZM86QB5T+yydmEenveP8jd0hxDUtw/ltL/4kA03T/PvhN+RDHgPwkUZnipXc8/pUm2mUx54D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hI06mmpM0j9xlLfuKZDjP3rGIeBwVLw/L4FIQlvbqT+fZYOaQK/eP6XXHRtP1tU/Y9g5jJC33j8wQQwSJnPPP1mDPNLSt98/3pWjSDU94D9nDvkP5qHXP3YzivUX69k/w8dbYEW+5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OXjbZZWS2T8Y93RGn4rnP3s1/06bx90/FtpfA3SjwT9NbayVtlXfP13PyxU4F9g/i6Y32k2o2D9K5A23FhTVP/vCmp9Vht4/6I1dWHhK3T8PGIlsg1LgPx2Mykqij9s/owCEqHcz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BHvcmsXl2D/i9S3mx+3nP6sB6VMfD6Y/hr/Wlp4a0z9EVBERGzjlP+A9DLLpZNs/HbwnCZgB2j9P/gKYwWXRP69c3g1wgdo/BrasJ8001T8EDrvVhDnYP6oSIdq4O9U/J0Wv5uZi5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4jMqqipr5T+TeWLDOprnPwvlk4vmVMk/qs1bQmvGwD8DbuF0AM3jP09whvPDvtc/OAxYnKTL5T8ADCbHY13hPwHoSWS5AeU//EgAxQkD4j8ijBha9AfaP3JckcYaZss/u4XOhKI65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c4Sar9GA4j8YD5/yaEHkP4hlJ++iBOY/Au8EqL2CwD+M7WX2GmPhPzWGn4BQSNc/BqCYjtRa5j9KiHh+J93gPxmDQMsEeOI/E8wMXxmX4j+BKObsEDnfP9FT3IbROds/MxovAMOz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u4FQ2+j84T+HJW+irx7gP3mIRjk9CaQ/+IFcEoMHxj/w2Io6krfYPwTD2vKdxdA/geLSifsy5T+YeMYBIFTaP+/sjZ422uA/1MQrozxT3T+dil1uwSfhPyMbF2XhFeM/ZfEibdHk6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5CkxX3Ab0T/2e1752cXlP6fFKhmkPMI/Nrk9eS5TtD9cn437J6HdP4H5UlUkeNs/KPUWlZdi2D9kC663ZIHbP3SMaRn4qOI/+3VYsZ625D/03nW0b1LfPwb9xckt6dc/NgmKOQhJ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"abQ+4e0Nzz8PAS5a9p/kP9ryuwFu28I/WSL1UQwrwT9PpRIs+8bgP9u5J7urQd8/FJ1odfhw2D+yVoNLOiXdP91v4xCfTuI/ZX/iRaIi5D8bUaB91FDgP2ERa08EvuA/43a0Z80C6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Si3zD3eV0j+9zJI8hIHkP3GhjgSpvNw/nLOv2oWDwD8BL5g8ycriP1BiqPxOR94//Ei1bUjf2T+ZWjDrDnHaPwmQLzQTouM/NAWZyAnL5D8mnlAXSvXiP2Kkqwhg2tk/rUGafj7I6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4RhtTDUu2j/HpV2tgB/lP/9mK1apr7U/bX2AIXdoqT+/eeuUAEDjP5zkhhXY7uA/1PWtGXE44D8WIKFItbLYPyzs50g78d4/CUcA7t5I2T9/1MflWyvfP+4p88n8KNo/wHDhIenq4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rZCj4i5b2j9CkV0KPDHjPyuEgvK0jrM/9H+PcyoitT/2/i+muTTiP+w8r3+vnN4/teYN+smV4j9Du1WZkMnUP0wLMzLTo94/ineoUVJ92T9PKWlf6ZPaP4EabThRxdY/V5z0b9cw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ib9Od3tE3T8C8vmuc3PiP+zDUzNug60/yKFTM5SJsD/oc9Fx5EzXP7ZGifAQa9s/q/5ffPJP4j+/nEC9I9raP0qaIiak2tY/r9cZNlmX4D9/EBHTqp7PP3Wmx7WIFNo/HYfSGdiz4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VtJbXiAb2z+55rfX6TnjP2vbiKvQ7ZM/M4Y89qyTpz+To+Ti4UHUP0ZSdORXwdw/YEz3Iw9y4z8NEoQf9K3UP24i0tddmNg/d6FFrD3+2D+S9nGU1mjTP4p1Dsaq59c/BdUrWG/14T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YZGlmg683T+t012rSoznP6et77klN6A/V6bN05KlxT8LMyzwUt7aP8bdVFMC680/ft2BEPTD3D+CTNCbHMPfPx1zC1oL7+A/DyDBwu843T9Aj5jUSN7VP4GT/x6VuMk/e9e6++g95j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uTWeOM082z9Tcn/3feflP9uvn1g9naA/aENwQd8dyz+mh15hftPYPynJbq4pItI/IfnWre7T2z9aPbydANbbP7F4OSGdZtI/4hGthp1r1D9QA58XhYrbP5OY3cfge+E/xmhoP59z4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D+DTrRYe3D+wVktND3TfP8SkbrygxIM/EbvMA4Qquz+vnhLH83bTP9p7ZkLaCM4/uoCVHoDu2j8yuLmkPoHZP+fadpAxveQ/Jwx6nvMF5T9IMxelUobhPz9i4Y3Nfto/j7XDwHFI6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6jdKH+WQ2j8JsAyc707fP9QmycEdYoo/lSpS2rlDuz9Z9tY5ZQrUP4JoSJ0zb9A/oqDH7iwF2j/+JkkK1pvZP09H6CG17+Q/2XUgoZCu5D92M+7t3fDgPysZwOpS+to/mExDncPy6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HZY3iwBj2z9Dbo/uSZvjP/m90xHo3YI/oI2XrUYmxT/Yml12TDDXP2jf5KMEydY/5FzUwetK4D/B89iIIGXWP1MAG8n+gOU/ssB7Melv4j9z0dO6FOrkPxdAbLIYDuE/4GnjHyJk7z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"aRI35lGr0j8EsjYo2IjiPw6TVD3ptNM/qOXuS3EOuT85G9sgkPvlP91HBtK0mOM/hzVX8uz76T/UDn1k42vmP3HnTkx45dk/5x2LY00r3D9tC67gaJDSP1QvOdNu39E/56ZsV9Ab4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RuoTX0QX2D/fCYyefHTkP8I8UmVjMMk/ZO4sh7AavD+zgRY+IfndP/NtuR/xfc0/VvCUPfs20T8FucpPwYS7P5VcnYJT7OA/kL6HcDj63D8FZLj76YDaP++nIG7JZtY/gEuhOMzQ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"E0oOej5S4T+0jY8vIE7iP2+VeWL3o8o/q6m3gNEbwz9drU+mqifdP9ZqaI/Wqs4/sGQqmmO/yj8JbIoKflPCP8Cp3ZXNeOE/ORDlMvo91j9s+XwhKS3WP7XQ/EvvmuA/S1mMnyqE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ajlvUl3N3D+3qoz07OHkPw7ZEKXX3a4/RpcQf2vypT9yp4Qg7U7kPwKRF91xk+E/GK8VGQr83z/TY/nfu+LZP585wWk5xuA/idAJmvkJ4D8m8Q1lhbPbP+xo2mK3zNM/0JDO0MxG4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MJ51qigy2D+9NeX634LkP7Kdo2mvNbQ/HWdi32IuuT8FhWWu1ifjP7OgCRdF0OA/myPqT83f2T/l9k4Ohu3UP8cg0ORSkeI/0zRmzEOe5T+me8YwuqnGP6eAd7Qn79Q/tism6Oeq4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"S4b70Fg44T+bIiVIpSvkP4+Aki84TLU/OyLhnvAquj/IM1TuxVLiP+OJhfLUNNg/RUt3o15X6D/HosMDe5fjPwXFbmAbSOU/koVJoaar3j+MU90nexnjP90pYfeDnuE/pd3SQ+dN7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"txGkhn0S3z+fMHPRkPblP38nCaZVuKU/CSDPbsMrxj+NEqhBEangP4JeyAq81d8/iwyz2Dey3j9Txbw7f8HXPxGVfBkjYek/hzJCAdL74z/OONgiiyPPP/RBDoWu798/BB+++GzX3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OgkFIPRU3z/k5NC09MzmP5l5lx/TXaM/zbbPv6Dm1T+/HfNE93jjPzR8wSrYp+c/QoXebcW+3T8qwLK0oh3dP6p9UWWXvOk/zrCKW+5x4z+iMPyzCsnSPxkawuxnWdg/d8pt/+2W2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IR36AZox3T9Va1RC7uDnPwK9HuCpj4Q/9Jipl/xEyT9rICC9oAjkP9SE9grq6eI/YkwyI6dg4T8sNbf015TdPxwO3SV/p+Q/IV4sMI+01D9gJFhkO+XXP13XNH3tFdU/+pYFBt+Y3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qZrTqe583j+/4Wgo8HrqP9HVCedgIaY/lF8zStZ2zD81j1lcs5LaP67asiRom+Y/Nv22crVG3T+UP7rkEJjjP+84M+hLNeU/znKUYuNJ1z9YDusTuo3eP3y+vNx9Rdw/YWmvfF2e1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I3Rbheku2z8AAAAAAADwP09UhvQoLZQ/q0hprprm7j+VvxcuhPrcPy33I76vM9s/O8vo3vaH4D9BRMIL9sDdP42opcWyPtE/bWSfhwCL1z8+tud/+VvcP4CbCjJOlN0/UKm3Z57n5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d9n3nlLS2T/9Y/5bON3pPyAIaZHkcKI/h6cWIcuxzj/lL1NCzYPNP0upn3rQVtw/oydjUUid1j/sXpzEqY7hPzMNwWuYjeI/TmqIPuUB4j+R6Ie9K4LfP6wOorYOTeE/JihD6F+j1j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zpzi7J1c2j+VMQAB6lXpP2PngMhKTLQ/xrtcmz/BzT8stv32ahrIP1KS3px7A9o/E0WXF9UR2T/E+/9tSS/jP2hjAfAHxeE/qCHVQmiO4j9mXmQwjsTeP0l9uMYoAuI/JkNVVaBb2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3UK9oxFI4T+SYsZMYojiP8yq3+TQErg/gid3F80boz/gUBlwiVriP5M73Rp1INs/eDuz2m1Z4D9SOz3t9TXdP8Je4ZakL94/uT5I4vUM5D8cwjRC6DrTP7m3Hus8osg/qk6qD4Bm5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gkPPs1eL4D9m5CkJGvrjPya130qk9sM/12ure50Ftz/ZKPebnYzbPwlwT7rQgeA/MjjMz6620j8E24nq5fHaP2axAApOzOI/mfSbKrxt4z+BDFOVSivLP09v85zLmcw/TPE9fz4l4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1+50a5Nm4D8BHSxiGczjPzOARJ3JErg/RWx0WnOEwT//XrgQ6nPaP3AW5gKcyeI/NWuZ1/HP0D9DoVAbi4bgP7rLoDN1yuA/5o7khY+o4T/88hU7qoLOP9dEkxOIzM4/vNGyH4Y04D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h3sQJiVq3T+USnbqFyHjP1MrSWNJ+68/PB2wjwKJwz+c6WVg0cTaP3n8p+XfR+E/Ooem5FNAyz+rVP/mHfvYP6rBumNs6d8/TfmWUH+w4z/nKfw1t+fRP14OnId8Ns0/Qx4fH5tP3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kn2l5XjB2j/k9kqG38njP78Hty4NGqk/v7A93LFfyT998bL9ZLrePxLMF53dq+E/4r5CLRM50z+xQRjaQALbP8XM52HaHt4/nWZLn4LG3z9CAC2ZXMjYPyrNrXpCpMc/uqKA9LFt4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dFnNCc7H3T8Orbv7emjlP4NFrKKsOKs/8GT1aidlvT9YSOuAwqzhP4UEz5Zcldg/M4NUwoH65z8sF/KH3DDdP3McyLgSIs0/Ab8JC3h+wT87QQXVOmvEP5UPvYB7Q9Y/r0Y5xJbe4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"11yk8jzY2z8XLAPZms3nPxxhG7qPA6c/aktUbXRK2j/8NMezJ9DhPzP/MCUqbOU/n2J9dv0q3T+PCD0VZ23jP4ZFqHKPM9Y/XGk/LBlOzz/C90SWeT7WP2q5fAKepdg/rwzde9hn5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"c9AqDlAF3j8Gf6pR8z3qP75LdQowkpw/jqtwwscn3j+pexkfwJ3WPw4cQSBuldU/BRxuim1g4j+JgOT/Sl3TP5QnBVLfSt4/pBws4T2R0D/CaMcFJBbRPwrXCLqead0/poxWi52x5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o0nGAN/y3T/LEIxxcmjqP3iOijMzaZg/wJvbUQGv0j8NgCPWH17dPyvvCTK0cNo/5MAiSGYK4z80YItigvPVP5RLDKkZ7ts/r0ZeO2tX1T+96S8X5qjVP5eKGJ6DE9w/HJR1tRyt5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"srh5gf4z3T/ngH6Sl0/lP26npBNlmGU/otooFlAG2T8tFcoEQpfQP9X+FzbaQNI/7mDa59aN3z9dIFNokYzgPz1UTZTwWOc/FDVCpOLH5j8pue6zDiLgPzHahqulXtQ/1/z2KExq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bDT7fWd02z+2CaPCkPjmP67SZ8hJfY0/RtXSIDuyzT+dHbXgKyTWP+IQArOkWtY/ZTZggqzM3D/AYOU5F5PaP8jMjGsvfeQ/xyBaEb595j/YkN8PiVPgP3oqJOxrhtU/KnkjkNd55D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZVN6sHIV4D9D2gp9SEHiP389dkhz0bo/oEyqnpUMpz/rZn6yus/gP0pd1ZtlCtc/L6Kw+Vt91j+lzqgcqPnNPy7bEHt4P94/7mFbvmdy0T+J9uHri9XSP4wviloIvNw/zw5plCwW5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ym+eNUqP4D93rG94cTXoP9gbtlplIKc/ZNYsrpzj2j9icbW0GjTaPyw71BAfvd8/izJOm2pY6T/TWOFAao/kP67bTMMX/+M/1vyQmiv14z9kZN3iy0zVP5uYAJ1gK9I/tK1deCE25j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+JUARneW3T8syy9ZNSDlPwlKdfy1p54/AtoUsXbQuz82N3gilN3gP0lJ4pv3Ydw/+BDhQ8me5D/9Er1qBALjP70ED842GN4/jDiiJ1v/2z8DtX3X9WjcP0SGNNnvF9s/SS3GrNz95z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wMwieLqi3D93arhWxULkP7+J1IjqbHE/f7A/hOp0wj8/22q/7tzUP3/r+xCEJdA/GHdgACfk4D9JPx0WoTnZP8XIotyCHOQ/uzkzyUj24D/WKXfkv9zcP47gU71AANY/s9bmTb6c4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eH+QPU3T3T+Pe2cmS2zkP8463gR3IJw/j8zrJa+btj++d4IpKfjjPxi1jNPdAOU/JnWHjElO3T/LoMsg+JzZPzRNHOjcLOY/ShwxwjxQ4T/v9MmxcQ3UP5I3fKVpANk/h0azexzc4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5975Py9+4j9o3hIN1kfjPyjYKUl5vco/QIR7lT+bwz8VhPSWH73dP3nAIQRmSdU/AefK906x5j/kQ5QH26jjP7xxPDncadc/xql7dlND2T91RTECh2bVP2U+c4uIzc8/iClHfZUc4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6HCTPIA63z+iz281V87lP82eUgFSKJ0/3uxDTwBbuj9l+m6GUbnbP9woK2hkguA/HtxfPNQO4j9krrFeoMjfP8NesKQ9auA/UqW1lLx51T+MuEKKwTHUP/+iy1pAe94/AKyj8UAK5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fKUewBOJ2z/9N8tKh4jkP7UbU+odPqI/TJw5pP5Fwj8ZbLPqQG/gP+XxknH+lN4/YUuXT85Y5j9jeC1mnCzeP7GDM6jtC+M/YNbkzNp+2j9naviSvXrUP0VeiP7fJdo/ULUKgnsj5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"koCvtFOr3T+/J5Adab7kPx6L/4s+uJo/Tf2NMwZMsj+LruNJ0LDXP2e4gkXm39E/q5Z/KaFv2T9yn/JUsQbaPwjX9Wbt9Ng/mlz52y3M2z/9qpKUOrXQP+aehwT8bdI/2+C6T6qq4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DuhcN0Sa3z/GT08nq5/iP3y7KgNc+pY/M2qy6LnMtz//HL97XDLdPzom/SuiJ9o/at+bjwur4j+3QMu+6YXWP7osHNwbJuQ/5PxMdKOo4D/2s/F1k2rYP1FHbVZ4Pd8/6OJ/+BBg5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ogZkHzk63z/Kcest9G/kP0VijbiJEKo/ut9PDC1o4z+heqIBol3eP2zIj+5Zxt8/Hxz3gfWg2z8tjMdxJyfdPz9v8UgyJ+I/knTFoScC4z88AJ3wETXYPw9KBx77ZdI/cA2ymHGE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9m2DZ0rL3T+jSYrzfAjhPwv+lTJST5s/2KOV+vuKyj+IRXTZJfbkP6Dok9tVUOE/X+pDKdhZ4D8EiaUwc4zUPy3zXiGRA+Q/t86ewhCV3D+eKIuPnWrVPzaokQumDN8/H1qF8+xf7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lgHHW1d13D/u5GAls0nfP0SqUBhRn8E/yhBRNl4vzT9NlZ49A9vaP6sdxYsXqN0/+2jtoITs4T90iX5vt2PhP+HK4kElvOA/as646RRX5T/Q+6vPo+HfP17prulS5+A/zHQAXJan4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kqpDlGo84z/LDyTyAXTlP+JyAATFVr4/bOR+UWgmsz/sGnDSMvDnP8Kt23n/++U//NBef8z53j9pEPR/v7PXP+VpnUp9iL0/7QQ4cDyX0D8O1BavbMriP/ljOSe1tdQ/JKFsEs4B6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P5E1DjOh4j/vpJnxhT/mP2QHgtD457o/7+yOvkLOqz8plZW06JrmP2jB3TnJ1+Y/q6+mOlTb3j/qQT54g6zYPyAlanM7q8M/dpFTH36h0z9mozenHpzjP0dQOw8yS9U//gYwidQt6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0VXIiO2c3z8VqyUU883bP+3MCigZ9JI/MfUPJZFk1D8XOFw4IdnVP7e8Z0EuuNQ/hIiTqC444D90gJdx9p/hPylnIGpNq+I/bcHnJ8sf6D+lrTYwt3vTP8W9bZOWn9U/YiMfB9Yt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5oE31mpo2D87rOuxuibjP7W1L3sAJtk//zbKzIjvxT8N9VU814DiP7eSOEVR490/FgijAL5G4z/8iQedNoTWP8KgSt4wGNk/kx53oPKYxD+lz1SPJCTWP67PlImXE9Q/IkNlg2E65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"irMyf6Kt1D8yVMLUu6jlP73i0r+8tbI/6+0LxWsLtD+QtWRnJk/kP84GDJN6I+U/TmYbrT3p0j/lgcJ/o33YP/t5zn17Oc8/UsoshhVT3j8nB/1hJYrMP7sAwQUdZ9E/ZIaPmNN22j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MEe30Jwu3D/p2ESC0/fiP5+2NkiuzMU/N6KrlLprtz8baN16L0TiP4ABRTJ03OI/h1voJKhm4j8fpWZQfTvRP2DNf0gYEeU/7jI4WeF03T9eC46P02nRP6cTaYbN+dM/R9z8Whh65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GUMmTiIt3D/5S9+wiz/kP3c9+yfh7J4/RPAz70H6wz9PxilkGvLbP4NuhVXY/so/aKy7yA6R3z/orP+Ca0XkPwM4xRccCdQ/G9duU1rn1z+vWTh6l5TUP2zwkWY6ztM/ZUa4pkRF4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7GPe/DDV2z9CeVTauMLjPxvF9twcCbM/AFd9uNg+oT+wS5tfZZ3bP0J0sQPlMdw/B34hhaR45T9D8sgAF+DZP9SnH38dNuA/MxF/qwZm4D9bLxS4JVXaP0Gxn/DlrNA/OLfc7Gox4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"r8GpySN83z9a00bb/CzlPw38hotryqU/7Bz3C2CDtj9xbTdrgmPjPx+Cy46gzN0/lcrD8cbn4j/t3ZB2oEnYP8NGYv4kpto/Daqz+drP4z/2fFAqU8PXP7L/RfnmFNM/2Vg/yNV04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5aURD2rT3j+es1RsoH/iP2HT1r7sAbg/9mORNHGMyz88ipGe6F/VP9Gp2BiK59o/qRnZIlOR5T9x+jAKJq3eP/lQNDxG99w/tWBUZJpN1T+NuT5D2ZzXP7o+xeKTD9s/T1YIooJ15z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"j1n72Lvn3z/rcSfKbEblPx3hJ9Q8h6Y/DK4C5uGQzD/yrP8vqlLnP+ScRK/cMuU/CK00gDKD5D8cZwTOuFvmP7k5kxEFOOM/5M7VjtPC4D/ngy7vR5nUP8hJDrvNTdo/OpRKde6N4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TgwG5yud2j9KEW9O9xrmPy7PE/xzjI8/8afkGKCswT/FgPYwzeLOP3A+5kx6L9U/B83pHnZGzD+fxBGjqS3DP1ivSHGGFOQ/N3Mty76F2z+H+p8p7EjXP3Z6tX8my9w/EJFBnjr45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yaRiW7sb3D+g4Ebjzz/hP7lSnrrnDp4/RfJpW3luxT/+BssLo+zhP0Qa7qPamdo/at6pzp7u4T+NXGfB1t3cP6NDC0gIC94/kxeiU/wm4j/fvv3PnSDZP6kaLO1xF8k/ft2pwqgR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mz4M38KM3T97/wxvNM/fPzJDyKW4HqU/FsOFC+/fxD+3GJrsnzvePx7UPk5a+dg/gV6ohZQ44T+FGCkA+MjdP+gcy9Wbt+E/hJjnhEfa4D/ToWfBqR3VP9D3xjot98E/PTANP8sD4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CANEBQoE3D8FPdcIC5/ZP7Jr6B6dDKo/YhT09oIS4D8NJb/olUfhP/NFFlnrX+Q/QE3pjY6a3z+ah4SK6cLYP7xU8q6AjNo/Td5fG9Hh1D9v+maF14XhP6kdJAjzGtM/vF+akdjB3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H/LTm/Nq3T/20LqtjoHmPwblC82zJrI/jX2Sb6oevj9rERchn4rnP3LOXv4Dh+M/o8N5r1913T+BOoruRzTcP1MTRUEWw9g/UtWA9lKh4z+zNGPtNGzcP2KQaGU2LNs/X6UYvec05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4ewxL4z32z9UEPA/pKvmP14lSHWesKs/HYKMuvrwwj+ZGK2SNzvnP2N0nl5yLOM/kI3Gjh4m3j+LAtTTjbXdP+FrZ1DHpNg/nM8GqcXb4j9eoKh8OT/dP+jFEcezN9g/eJGXe15y5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MrdB4Wrd2z9RFzOKrnLjPyUfTVp/UpA//PGlVqqIwz+X6t2TnjXRP6QFZwIrl8M/RUHwWmX62z+KL1IVQf7WP2ab4i8i2N0/Yhkru4JU3T+5pXUFKtfXP1IY/hTELdk/1tGXDRn05z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mLknIsE13D86NftQ4NniP35f8gxNGmQ/diu1xZkcwD901lXRycnPPwT/A1E/fMM/g9jPNjCW2D8H2mslefbWPwOeSdtBSeI/WtJe55Gh3z9yGrga/gbaP2YiJdWlQ90/iIt3u+yG4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ncidtwyL3T8dyKEIjxfmP0T7xFb/yYg/zvb+Ti6T4D/NDMVmqgThP2PAdWJeA98/4ziVJN615T/kMAE/r53bP5JEVgIXROU/0lxf++zH5T/0NNjaNn7VPxl4AqFkVdA/OKG3zWvy5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8l3BnvYz3j82PDlhsDjqPyIle3Zki7Q/1rce0C0gxT965U3zkanfP2J0xg0ei9w/ZQt1p6ct2T+BWlGm6abhP0QR2a03bt8/DEkczRAH4j9abMm1QaDdP6xw00rr+Nc/yos/uTUP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sxVixfl93T83mD1ngyLgP/iN2xSujaU/r/UwkRxNyz8GHSgcDyvhP3j4tamMuuM/3aKQdMsk4D+WM2p71EPXP9aWlLZD5+Q/l1HoTS3w3T9naviSvXrUP/V4EJ9sTdk/L7e+bsVq6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1DUDhMAu3T8z+gpqWM/gP3baHH1Xa68/gQSp5cgH0j/KHx6NqUTcPwH4hnDbdto/DeA8hw2L4D+x/DMFSPnbPzQarZUycuI/k0u8QZKC4T9PCC5mFLrWP44gCAkk7to/UiXJfuKO6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RlEqn7IG3z+Kk+eyilThPz6YaaeyI64/mqX8in4S1D9kAcxCMOHbP8nRD7fltNg/dEeeFpkW4D+k7LEw+lncPxuwqa+7g+I/P7fY0zkT4T/fLSrLzMfVP7yvTLYeJ9o/j2zm/3fZ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DkH3/xqZ3j+RD+GWL63eP6D1mqKSVJQ/jc7jPusezj9rffngKTneP+SlyJKTSNk/r9GhObJ93z8Cv1PLTx/hP/HqHszjP+Y/J+J6Gmn73z+s11Vc3BXUPzi/8l0NVNs/efb1FxSZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZRZCOTyj3T8jzPi5OF/hP3LX5RNktIw/NJEitLIG0D97iEcmHZvbP514AKiG3N4/cVuHbf4T4j8TtixZJJbRP5AYpHxLT+I/xWSEHLHu4j8HSgTD06zYPyATJRqA0cY/YToY8+wh4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rCK+RKbV3T+KgJqTOEvlP1LabnABc30/Fg2RiqrPpj/6O8/MQAjcPzACu4kSJds/GTUbcAiq4j/AYcQLPxzmPwoHhJ8feOg/ObaCgbU32j9tmyAswJneP709o8o7598/u0Y/fRrX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UG+9Caej3j8PTAh51MDjP3CmXXFrnls/gMcuET+2tz+gOkeznHjZP3uJl3Kppd8/gV0Nsrsw5j8vTwXORV7lPy79Th4xE+g/QdaoOSaJ0D+V7zIovazhP85glaHxKto/Pxagg83f4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UG+9Caej3j8PTAh51MDjP3CmXXFrnls/gMcuET+2tz+gOkeznHjZP3uJl3Kppd8/gV0Nsrsw5j8vTwXORV7lPy79Th4xE+g/QdaoOSaJ0D+V7zIovazhP85glaHxKto/Pxagg83f4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7br3Yaxi4D8uoIS2kr/lP9VhhXa4Z4M/tBR1cfwwwj92kNM9KxbbP2w4IyIpOuI/qYGmtupw6T/V+jkgeljjP+Gh+/bs1us/h9a/7bRJ1T84RbG9MczgPyqgZuKpZ90/C+YF84J54T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BLX/XMQ04T9+FGUxaVjiP0JJtO56UdU/SPiAkvyOsj88kerBZOzlP+RcsQfl0tg/YDsXJCwY4j/3uuJs+WHVPzC+NPeqS+A/Ia5oMiB75D9FItugFATcP32ezC1xHeU/6rSsDfe56D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OJX34kgF3D8A6JToUQHlP25jgIOowoY/zR3BXzahyT+0+uk4OTLYP3KuUdGdRN4/gWIdAzod0D91CBV12RzXP2XFaw/dGOo/ocgxXM9p4D+9PCNkXZ7mP8k2xNwCTOA/YU3wxnli5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o7nA1ATC2j8zAbyiQoXkPy2cYZoJqro/NcTFsQ2Ruz/OGNE0VYraP+Lm+6Wbo94//eIGWyJn1T+GO3Mok9HCP+NFbh6Kj9M/GgYbvLXc2D+CVEI6MmfZP/1QsOzVht8/l3CZs5Zs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ajrflE/H2z87+XmNbVDkP8uJF5U1gqE/xCqBFajqxj9g8/kzI+3dP5h++iZVOd0/D903lxGP0T+rS0zzWELPPxApMe5vPNE/QgktMlaqzz/RUYVLNgTiP/PUxni5mdk/bsvlczgB5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AIk2zr+a3T/EQbGELFTiPzOdJBqVHrw/SVjLi4oxtT/A11y0a7zgPw7Sb9+sD98/TGvxX1ld3j8joiw77CvVP4ZjCmPheNM/LKRMhMlPzj+nUjNm9w3aP8+toNZgLeI/k9dpprRo6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5oap3xNF3D+Kig4ICfbiP7mkKj49D8Q/08Ot6m+Psz8qnVH4lV7hP+sHwQjEd94/33TgcB6W3D834WwOs0HUP9ZzkaCg99E/XbSLZ5y3yz9952uzfvDaPxUuzLH2puE/NjMdH4T56z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vvoGnkL70D824c8kLJvjP3fNy1xNdrc/H04VIAoNwj9/WQD0tiTfP0oDSFCwGts/jvjDWOEgzD9ZXURiXdbIP7BzKP7rfrY/Dq61okB9tz9JyDGSuFvdP0foAH37ANM/pgTL1Qed2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BcuSz+QE4j+4WEpiLJLiP796QMD7mbI/0G65T1EhtD+1NqTy3QDYPxbgF8LM3tI/AeuWYohK2z+cvw+CpffUP+hId0oH/do/LwsqyiVR2j8CiUU0p1/iP9tiey+86uc/jh/R0EBk7z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"okPTEnV+2T+ekJRxtNnmP/HhE+GZlcQ/ASLxsrRkwD9e1mdhspjaP9gcLMWWvNg/gLUDLR0b4D/e2pbVef/bP1/yswdrCuE/ioea3hHa3j/3O6fvms3nPwUZATYyqNg/wvjYXQ0p4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IIDqa2eG3j/B18nDZLfkPybYaugXYKc/fVqsTKX10j+MmMpi8MPhPx42AbA1gNg/f+0GBFIi4j+xLK1oR9/YP7c8nVL+Ees/DdnS27rf3T/u5eMhr7u8PzoqJQvFodc/wlqN5xSL4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h8MK66oz3j8DpYLbksHjP3MvsztmNIg/O1iS/QAKxj+ZgPJWxG7YPxJLooBdbdg/lz1J9eJ24z/V+edQEVLZP3JYQ2hi1+E/YQ2XghEI5T/zKoiXGeblP7F2O7ucjdw/KHeTu8nd5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cB72fKIH4D/a15RRFMjhP/kvkt5u3qk/ZhheTtrK1j8DE74tT53fP2jLu49BeNY/nZfLwKPg5T8RJTahr0jlPwgSOuxs3d0/WE6kRTVB0z/mnPjDrxTbP8OsEoBMEOI/STvYtpz26z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sVrIOm7i2j+nbtbaa3XjP5D351Q6X68/LgNJpFyQqD96AKQDF5TdP3KVi3BGX9w/Otx/6EMQ4D++27tQQyvUP9+w2thMZ9s/Bka8ogRd3D9anzVuVt3dP52gCPHcIOM/SdEQGFZO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f6Nz7Ofq3z/kpiPSWHvkP9vj5SfIxZc/fDKwv8lxwT92uSgGqdLgP85YwosKg9w/8VePtxU15T+SPKpxWH/iP5JGJcf4wuI/xr81XnjP3T+BgzELdvDoPxobMC05rdo/ynbmz+2V7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LxnE05K02z+dr8hWx07kP0y1wDHHnbM/dVCgzNbGoT8zjniIMyngP63LG7gI09w/5tW8VP5y4z9tTLJjsobeP1pwek/pr+E/OLCRUQph4T9w/TpfiaDaP/KCXCOZk+A/MIArJsn65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"uJtZbrHI3z/By8IOBkziPwM/BgpxU6A/CxZhSC5TvD+hgk7hxLPaPzqu4cPcIdA/K+b1+U/23T8uuagTwfvcP7e+dhjxh+c/aktN2DrR5z/21Boa/zHUP9wAmYKVUNs/ng27vS0D5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wYd05HHO3T+XcyURdjfkP3hhaUz+PJQ/xEZzL2NLuD/hutcDeEPhP3fISfUKVuI/yKcyeNdR5T8a3SbTWs7aP4MyCQbHHuI/oQ+xTCaW4D87nom7XrjYP8o751/cCNk/Gp60rztV6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"28vizwJF3T/clBd2XnDmP8XeLNIGnJw/fpT9pk0qvj/0gcfhaLfhP1ZBnaDXAuE/I9itGnuA4j/iYVTAxILePwTf0b+ePuQ/KlYE0G962T/rOuWO/JfbP8JM+QnqUtg/evfYo36x5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DHNNsLH03D/TpRsu44viP0RsCs7wy5s/rQnQn++0wT9cxjiy9S7cP+c6dOhXYtk/yoQSpNCE5T8n+uwzecbfP3za3BJzFuQ/lqTL363A5D8pz92wrvjQP7xuYwgFRtg/f6K3h/pp4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ytlo446z3j8RJw2xEBrkPz3QUsPCj5A/TD/eKCmcvD/Dwt9h0LbdP9DWx42kHd0/kyJaUFJY5D8af49PxYjhP4KBIIYDjuM/+5A2er816D9aKuNr4n/WP0mcTX9Codg/2eO6AaLB3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cNMuIbmK3j/+gOjFxBjjP9usyEI4eXc/T2FhoFyJ1D8CkFObi/jZP1pWmXSHud4/Iom+oQA74j80InI7JpreP37JUUqZx+g/MI2q/LI65j9zmqnEnznQP+xWYPZR+9c/Za8vxCMw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DEOgCPq63D/PqLYgCELpP5koOnw18Kc/SSRFxPczyD+kgDaAUMDhP/OUJ2NoMuM/CjQZ2ePs4j9IFkAKVILjPzMgUvwa0OI/cDE42yJI5D/ue0Z1D0S7P18LZRDnBdg/F+/6JL5czD8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BMYzM1dC3T/miQ3raN7mPzRxr2LCn6k/OOVcmX6b0D9oRpX8KD3iP8+zt64qR+A/7DbhzT6r3D929coHFpjSP3xpAwoLwuM/c1AIQQ++4z9YAMs902/SP0u8Tbnwrc4/TWmyyagQ5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0t9szlK13j+c4/OjjAXlP1EFOK2KTrI/FQ1PwoG3xz8e7hcyXgPhP7UPa4f+F+E/EooJ2M013z/71SkdDbrbP7BAe/ejRuA/ewKWcyRn2T86TinyCR7NP4XQQxVIFdQ/zzumjFaL3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GqR+Ud/94D+rjNiq1STjPwEpfpqv6Lg/nUNzXhjSzD8P/zlFg6XkP9YLjlXk4+M/D2K5QHfd3z+eC6qzzjTeP8tC10yLvdw/pkJ/6ZQq3z+XkCnM94HDPynZ+FSRQdQ/0iTbTKY84D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kYDmMFl93T8Qj42urVfhP831DrdwPZs/np/33voWyD9uSKxH7v/cP77xfWfFO94/ErfvWuz12j+Tk0fxZpTTP0Z1gJh8KuQ/lK5dRuQZ4j/yrPNfCW7aPyzKwismn8k/9W27edgx4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qMrKOsei3T/7Q9OMjjzjP0fXbxtVi6Y/TQ6ZBxnLwT+TIm06bOncPwq/vodOW94/LVqAfZJC5D9VKVqgBzPgP9ikuyQ89NY/X4pjDswF3T8a6XGYL6bhP1xam62uwd4/nXQ9qGKc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"X5cbuetq3j9ytkK0g5nkP04x1c+haMI/AlMzIK4DtT9HsobJ6E/iP/cDsYLN2Nw/Q0DDmmBP3T+sPmFfS2HVP8X6RqviC9U/fuVQ40fc0T9Q+y3zFyzeP+vRlX+dNdo/lRl8PHZf6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9EK4jJOO3j/ZWBb2c+jjPxh96VJfBJ4/4A0b8GpavT9rO3I0w1fiPwgIrmNRcuU/m8Wna7UE1D+gYX2yITzRPwgg5JrO9OQ/QjCyft0/4T/O1XWJx2ngPwAAAAAAAPA/sZ7NQJPa5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7GA3QARW2T/4WLmzUbflPxyi6QBsWsY/bKolDntdzz95uKQHtI/bPwmt7RRel9E/lfvMzLL12D+Oo7BBXIHHP2d4I1SCKOY/xKP9vyyH6T8iiNFxX4vhP3j6q1q35ds/2ZSBhOvZ6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VY1BnRkf2j+4XNuxPyvmPx2LtKRIrLE/wb9lLFjZuT9INjzmjYfUP4D1Nyr9zM4/9pQPr7ZA2j+Lug7ixhTeP8O0u/QfFOo/5UGOcoRw5j9BSYhOEdzZPxHWbmeXs+E/ei50g9sQ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GzuKV9mW2T/9U+gtj2jgPyVL20Ws2LE/46ZIazDI0D+Uzcl0fBPeP/N/e+0POdg/cIOq/Lpg5z+rVd64RYTkP6jHpOEaweM/GjPMFNjf5j9dHeP45fHNP+p48IgphNs/UCWTOxv65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"agnohNzH2j/qN9Q/dBbjP3StmOzqy7I/OAWMuwg0yD8L4mbMOWrpP1Ea3r7g0eI/dSivkV163j+azCS4i8/ZP2k6DJHQ2uA/c/uR0zEn4T/T2Me2WgXiP6S6sEV7fdM/rumYDEUn4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5EQ4poZE2z+y7b998mnjP5BBhsQbLrM/7HjNX2mPxz8MtGaLUuvpP8gPg1GwruI/yDgLzCD/3D82u7TGih7dPxw9oNpmX+E/r9pYkWx14D8K8QPClp3hPzFidU8RitU/UbUh2C523z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"O2SQD37l3T8hMjo9bHzhP9gjiOQ1aqs/vQO094d9xz9H3Kho+WzkP/TTHB+gFeI/ZTdlAtOJ4j+9geS7owbXPzp1BqjnFNo/JzquoYZ53T9KIV073hnRPwEf5J/PsNA/ujGwUAvJ2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"odPaCZwr2j+BxEXXBUnlP1tNu7MuA90/bjinVXtvwT/Su5klkgLdP1BGStJlX9o/5StvMbBq4z9PWgYa4I/ePyOwY4N5nd4/4djabo421z+CkuGb/ArIP2+1ECnSgbY/4g4obbkf5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XN2DeEcl2z+k708lqFbjP4OQ3n+uTZE/KQHO2CpyrT9+wU3qCI/fPxJMCljIQeA/vfaZd07+1z8Lo0EZW2bVP7TT+mA5dtc/WsiRpGux3j96fkEVwtrYP0Eu146QJNs/zNwvj27EzD8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BSQvYwiA3j+30a6hn+jiPwZEtLIVLaM/Im6TC+sTyD+df/jWRTDiP/iNj/jZWNc/lRDRhZgT5D8x9FMbkDriP28axcT+u+c/krkVaFem5D8139hMCFLQP0KClZ8CYMk/CaQa4TW06D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5Ls4VMx73T+Y55loMYjqP6ct4i1gE5E/wktVWLXe1D8cnUKquiHhPy5mk5MSxec/7zWGwbmv4D/TNeBzNw3TPzFHAo1D/OQ/ApcQ3M5U4T8mxweM37XfPzGjNaox7+A/4USSuMID2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QpT+Dv1b4D/kGwRWFuDoP5WFPvSr5bg/7iyQPTEFxz9HmIN1Ci/gP8BdOulr9uU/P41KnNNb3D+zpq4VbwLSP5NoM1UNC+c/M4+lDOws2T+AaIgXXjvgP6Z2G6VZxN4/U0gs24kR5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HaL5V+qT4z/uZ+75nTLkP6sYuSLaCcM/QHYQWUkG1z95XOGSW93kP4obmxni9OU//KDwd7nz4z/rwtbIS3TjP4hkaVEIb8w/kKFk858V1z83KbllCdrYP13zqMeMNes/DtYNdWuS4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vhk2hkY73j9duOhdc7jiP04MYOspK7Q/HpA1ZzEX1T+FHxStOfviPyTyvIVwR98/7FPnCOWw2z9C6bKsa5vZP5ce0sSKAeE/rmJb/cYI1j+Y5p1HKMDhP11Yhk5xudQ/3JeAx3R16D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4tQIIagf3D/+7BkCE+/kPxmGBGNaiKs/l7Iwjc9Woz9FKwUhO5nWP/w/2GAeEdQ/PeIdd9KX4D/eLQFpUXbSPyv8+aMTh9Y/3x4AirqZ1j9Vztzq9BzdPwAPChc1QOE/V/LZKrJO5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FL3ArF8+2j/pV4Jyj4/iP42Q1u/qTKQ/f4XY7XhCmD+j0br9kE3bP/g3OGJ26Mo/VIvakF024D9UEElFlvTUP5qGtw5LpNU/mA3yXCgVzT+kKBs46P3VPz/10l9zidk/14njSRIR5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oQRAEhrP2j+jU1sVPtvkP/j0vo7DG6U/nQU2DrE3sj+MxsYKdafRPyY6G5s0bM8/28SP2q9u0j/12fT0S0LaP/AXS5xzJ9U/yVnE9PCGzD8Lj0M43PLdP2+jg3KO5dg/t6CyRXxN4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"08CpEw2d2z//bIuauNriP+h/mwPey6c/MyY9xEb/qj9t4e4auargP5UqTNBD0tw/9H7azkXQ3j8u/MmQWGjfP1pnXaF5jto/oOsZ9XFq1z/zNrf55rfXP2/OFB5BEOI/iLTZDBW86T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JbYWqJcb2z+ne+hhSq3kPybEjbkFcbE/jlbmQqB2wT+oGR8BRK/hP0rWju/qjN4/tQF5qSz04T+eRB9m+1nYPxJtk8ZoTc0/HsSsYWXZ0T/i/KMvfk7UP1OkZV5ge9g/EKsDihPz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y1YYUo/X4D9D4cUpp8fgP0aAZ1cPwLs/i4as+bR6sz9rntML0xjhP5r/OS+Az+A/YYIIgmwd4D8Y4AI8F9zVPyxqFXFrZNQ/1ebsPFdGwz9vq/t2hMy8Pz2SX53768k/eD+06/nF3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"iydjazeR4D+Ys5h+fqHlP+M7yp/zDKM/Bu24VnLusD/eQb/JJIjfP6L85J7E/9o/DWGRSC5Q4j9ukR6HWIjZP9JxYQxtWuk/vwAaTFZh4j/6PbwNhz7iP8MRP+7mpeU/HFPxeur37T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0vKzDzaQ3T+i56cCJ3XmP3gnQ57Nx6A/FtNR2EZguD+WInVsMSDcP+Ise2e4Ft0/ARSxem1x4j/daLwNe6bfP9pgPSRF2eI/r5iVTTUQ6D8u82rXFm7WP0p7GONdodU/Gby2oLJF3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W/tXVsEB3j86S5Zpre/jPzZdBOdLtV0/O4YsXIE3uj+iElULUPPdP9aKGDlkpdo/cyfehqih5j/mkRszPnnkP4ONQE+Qbeg/gm87FOaX5D9ALt9a+SbRP8s0XdfSS9k/Njyfoj4/4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MgBgNHU43z+S8VWccXTkP+J760RVFnE/35DVB7/ouj9uE0cYYyLeP0hByA/8nts/jx8OD9xF5j+UvwBmcFnkP8ETMdUdfOg/Zhf4DbXe5D8Ap10BD0vQP3lklltaddk/ORbXNQPw4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nmavlyaM2z8ucz3slRbjPxliNLw2b4E/jLyZnJEn2D+Y18F6FUHOPxmeKvmxc8c/Wo4FHBxl1T/9s49wr7nRP4cgdLM8Oto/07Nd/3420j/N4odRLQrhP0b9xKrUzeU/JEbJJIeL6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NQ4i/5Mc2z+gAESi1fDiP5UlacfblpA/gaHV3O01zD+riaqH9KrMP4WWM8EOKc8/T4IYATeK2j/H2i9CpzzXP/Ue5HVuwOM/o2jA6kHU4z8YyL9Jj9XhP71mRattn9I/A7cSEUWy4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n8FLKX+62z8lmFzXmd/kP6XakEZOXpo/yuGtAnuTyj/2gEPjc3TMP5wPVT2d/8o/StTH2p2h2T+Z2KN3sqTWP8HeG61ZsuI/XCpER8q+4z/q18NLyJ3gP3xuBbUGa9E/i4qTwBPz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tPrshdiw2z8OLdUgapTiP95JzZvyb3o/ChCUiaRYsT/KYm53QOvUP2XAP04JW9k/BUn4VzxO1z/69oZLbi/ZP51lzuWvXN0/2JSBEJ/31D9b1zdzENTVP3TS2evqXdc/GTEkETOm5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"duESMHWq3T9Jnpr6xH7kP2qDuZ+dLak/Lv192NLStD/VC1VlosrZP+aX6pse0c8/h1LzgEVM3j99GGjzPDvGP8np1vWKWuE/E4oVAfSb3j+XKtoFAxHXP27DJDrl+9U/znbWoSy34D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NkxHiElO4D9/XDZvQtTjPymk09DrYLU/Nuu6lfppuz+DJVOIIm7gP2GazblSKuA/kUhUziUC2D9USrfOaKjdPyeMoC6JB+Q/PlpcGYHo5D8oT+wGDcbaP3q+qZKfeto/3vR9RgLz4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Zq9zF6Ij4D9V8PKAnvrkP6DQgAMsYaE/dwcnWubkqT9PzLEXoYLgP+F1T7mQWeE//a6CkQqA1D/OhPOtNszgP2zZsunOBec/FPEQ1+1V4j/LqVqSNfvZPz4hvwEZPdM/yZ/MbMbC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PGFo7Sqo3D83Fu6u9l3kP41Q6ZZukqM/m2dJ+iGGzj/s7tj8IrnXP6amBlaMasA/MUeJ55kB4z9VfKouYaTTPx6+mD0q4uQ/cGiRJMyB4z9f8nAPcxzfP/C5mtouOOI/GiftrXTt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VhkK8J2i3T+W96avDnXlP/Ogm/A7Xs4/HOy3EVm/1D/Yr60f/FfgP0Os9AqMJuI/B/OcaB4L3T+dtJk2f6LeP51BDKY7M+M/TuNAGpBi3D+BQZ5sD6LNP+rflkbS5Nc/1b3UFsGr5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Py3GivEw3j9+955jDDzjP+SP4afBDIY/NPQNBnSIxD+xnhZgVhLjP66wJWWKv+A/5lR2ituQ5T9DSTcqO3TaP8zskxwfZeM/xBUz+WzE5D/o2SsVreDWP/5gFfr9T9E/9bOJyYcm2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hX/yc4uN3D/MvYAFv9zjP+VZiLTV1JY/pDXBzfvhqz8O6c9TQGTYP//og9vRXdU/fX63F73h4D8M5QAqL9vVP0Dq3SyiS9g/72rV7WSa2T+F98RRJKThP2w344QFRNo/MeBemhUk4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4GKzw10T2z84BjUuPhHhP7M5lPo84Zo/4MQqYD+r0T+YGK2SNzvXPxZ96wg2BeA//dicYVpG4D8eCRRSYJ7hP3XeUsLqEOQ/lCWZ0IKR5D+0vrYvXUnaP90BGg1Fb88//HNMCu7D5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7cOAanS43T+KKuSAGYvjP9RRws0RAoo/mb8NaobRzj8sHpAs+AbgPzJ/Z1kT9NU/m5odDrxV6D/2QCobOsXfPzjiXDoOCec/bRXMIulp5D/WwTaqsR/mP8HP/QgXIuY/pYYhU1Vq6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HR4k8QQ44D+RMZv51e7gP/DjvIj/xrI/fuTLs6rWuz+MEU1TpajlPz2O7yChs90/qgiBfySf1T/mlQp4HhvBP1DUYjLT3Ng/YbQfsBme2j/PWYpxK/TOPwaD6zbVN9Y/XO5ic95I2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n+8thLqW2j8yNZhjHQTjP7mz2KyeibE/6j0p8dhMwT9K4x27JzniP8fGa8YBOeI/SANX4P3r2D/4V4KGbXvJP+eMEF6AtdY/bW9mccLz1T+EnKg05ZnTP68+uBYvEc8/de+feTm11j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5yYrgboZ2z/sOZQD/n3gP3Zcu6NZY6E/GNCLwxZuzT9T1qkdOrDgPwERMkcIiNk/sZeaiyGQ4j/mTdKIFv3iP4g6KSkJQ+g/pvhNJKYF5j/iKmhGhL/UPww7npRuL9g/j2wk2p9d6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SGj0DHOC4T+nnSSbuX7jP2n6EkIay7U/6/aHnm0wzz/xyKRjc2vhPx/x6cWD4eE/W6eI4h6j4T8Jm5LlhKPcPylD8OuRZdE/IBgpKKf31j8Eq708I2TdP390WtvZNNQ/tNlShkTd1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CnFxwWb52T/zqXRkrFveP+K8hT9MHqM/PXmtWZRevz/Aj9fS9E7fP260MMZBzdk/0ct0OIVJ3j8z15zWpuDNP5qJ3GLGG+U/lzgFlUVj3T9UEZtDmYPHP94XDR/bYsk/SohpmiN05j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WWrAo1eb4D9j51ign0/kP2mzF5xY0b0/KCDNPeHF4D/EopmZpofeP8Q0gOl6gN0/CnHa275J2j+CeNJrjg7UPwAOBW1Thtg/xAVbeaQy3T9iXVYiDUfTP0opEL/Rd9g/EgxYZPK43z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"zPsL/d6I2z9+5yuIcp/jPxt7dKz3K6E/s8bLsDSisj8ceR5AupDkP81Eccib0+I/6zsJpjK23D+0hcTkTgrTPxM8z311F90/vw7HJJ5Y1T9VZTCgGYjTP5yFUc7EZtk/FAVmtUUP6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m5/nEvOX3j9x+LMwEdzkP3b8/BGa0bQ/zWX6CVWPxj9pI9AZ90fgPwJd/CVz1N4/O9RgF1Ls1D+afp2MKP/IP1V7N8ISMeE/15OWMVJb4z82jLb+aq/jP5xnQF+XzNk/pZFixvJs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"muQDn0YQ3T+6JSBzctflP2u9E5qz8Zk/3cTGjzCyvz+KsAd2bHbfP+tNJUC2Fto/onFPDw1j0T//4I/L2B3KPzzbFGLgFec/4XZYY3fR4z+ZjPQ4zBfjP3AjoOHblds/EKtBZDt34z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lnYPKjxp3D8YSkehkQ3iP2sZNIOZdKE/2wmWKkRtuD9Urq9DKPTVP/CtWiySJ9Y/RW3gtZBW5T/LOlvHs53cP+KHhHIKLNc/Q33JMlLz3j8PQM3SNbHNP3dmTEhAh9o/KUmZTDsG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oPLUQOcV3T85ZlVBuavlP0B/i6MpRKs/G5L6OqDCuj/q3wCjb7TkP6goGR6kZuE/gfX2J45/4D8QFOnKgEjgP19MQs6OFN4/Y9pCISmPxz8K5ojEO+3iPw3bbhXxwNk/D3ti8MMs5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mIkMgv5X3D+P+VjZou/mPwZNto62qZE/WKtKTnqqxT9IAxN57hPbP1Pb2p3/pNc/G5QzJ5F74T+JHfzKEX7bP3fYmFngxOU/u4+UFXMp5T+xqZFF1qTDPydF6+gM288/s/kTZ56K3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YAiVpoVV3j+EVNX3d+jeP5uBaamjp6c/Tq/l3ZuL0D9IOh4hx4ThP2ddO0Qe4N8/6MoQN1zr1z/itDFR3XbTPy22BsBpIt4/2iRDZPG+0j8HOMGuKjfUP7S8C0+45M4/7IFJnNdg4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CDMoKccP3D/cx9Fc56rjP/2tWSEfTqc/LGiomjdLwD/sP+Nfd6/gPzBzCbMcaNk/WZGgX8qr2T9Y68KSIfXXP26T9+WuT94/6wGKHkuM4T/nBRENAxjVP6kLveVrFMk/SHYnuYZk1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Iu7NPqOP3T/asdXpl03jPwNs9YjxcIY/4fYLal9btj8rqAoKmhrfP9Eplz9wU88/wc2293oe3T/ADHIyP5zdP7dG9UTMW+Q/GcI3FqbL3T8R1k93K2DdPyhk8l1cO+E/lPazgTIn5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y36Ancgc4j/SnTZND4LgP3njg5t5pbk/pN6NOHlczT8iDMx+J6jmP6D23fp0GOY/MMfr500K5D8QpTPHpoPiPzr3vI9yyuQ/uDxCjRQs3z9RL3K6ca/hP4ZZsIQmeeY/kzpPxA9G5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IRGCHtHs4z+4L/sIqHrkP8TeFqkOf8A/X8C2lhTSvj9Qy15b+rjkP0ouWHEjn+s/AQwKTcfl5T9oFJppN8/gP51iY9VkZOo/Wu17D0ml4D+Rhls1+WjbP4DAbEvqiuc/4lsmRj1C5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mSnprpS24z/f3RxcIUDmP3TW9hVLLsM/gZUAFIM0wD8PMjJw1J/kP30AtatdqeE/LqJjnD8E4z9q+lX47BnUP6Xd2Jor3d4/CGEn8qDB1j/F8AUqYILkP4+OhHdPN94/8u0zGi8A4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TWrMZSSF4T95YGh+JLfgP60xFCsmDrE/Trkthx1csj+G/WgSmx/kPzfoVL2qROA/EgHYsSoU5D8cK8NPKhrZP/uZG0pL294/T65gn0wk2z+S7r8Z2kriPxCZ8ZJJ9sE/FmYnhSF62T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BFmraqWc4D9k9azwbcvnPwpF3L8JVbw/ozimGsycuT/uGVojAnLkPzBzCbMcaNk/VL9sUXMA5T+fNdmOhPLdP0G80dalqtg/9+dsG+Yn2j9CmDSz81TiP2oWx7B4284/2H8Jro8e3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HZvPbuBz3T+fJNKw7jroPzaRyZ7KQo8/IMHaAGhayD+jJC7MvIvjP0hCMOdmc+M/EbdLEDzI4T9AB3NlVXXkP97uq6d1AeU/Vv5C8QTB4z8azWfrnaHRP4Y+wINzXtc/d+l5AETR5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jV3uyPCo4D9/7nYsoKXiP9lJOIoG7rM/q1WKY79WzD9OL9JI2FznP7XRINwHPOY/JJvZWOYi5j9IMEWIWcXXP9ChsjB4uec/V/zudD5/5T+lrTYwt3vTP8SMrVXNQM0/Rr0PR9aB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"34DPv6tf3z8LJ2ORhkvkP3FKOudURbk/zEQ8VqKUxT+MNods1rfVP23S2CxU+NQ/3fjUPam/4z+ZPBKGUJXeP2UQ0Mt6ado//roXbqyH1T9g6M0gXbLjP9OWTw+byuQ/Ipa3gUHm6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kx2/SoZW3D8vWT+UWVfjP6VjB9Vm/KI/V3SuIL7dpT+Hzla75b3gP9URlfkzy9g/XAf8pSxw3D8CLHqBxFLYP6MWf00wDNQ/WoPOZLfy0z94INPK7zTZPwGaUge2S9g/sllH2+qz6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pI07zjqf5T/jk/cuTbrlP138j3hFpN8/9tiSlJBF0D9G4Vd6xcrdPzXrL8ASet4/YY3c3+yS5D9m1S5zcm/fP0oiaXL1/+M/QrL+lnyT4T9lgzm98OzWP3AwRrIdvNg/gg7RICcq2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kUyj76iI6j9xWS8vn8PmP/BpAbwB98Y/O9zkbAhqzj9MqIV727rkPymmKLtao98/a2q2/0Nj4D/G/wMElkzdP+7zBVRPJt4/NOZrc+kX4D+93/EoMiPOP7rqzfOGc9c/2pMpbCMt5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"o/witqp66T/WhLqc/gXlP0+MGW/Tg+E/O89JHwaB3D9/bCjYZ+vgP0/+tahMkuQ/adPjZxxc4T9URPWUzHjcP2bvVb7pd+E/jJQzA8eN1j/2zhG/dhbdP88EgFVN6NA/h92gvNmm5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EYGMSl2e3D//xZAz++/lPxnuyMrPsqk/yceVbS1CwT9mCtepIdPiP8rtUlekyNk/M/kFlUL90D97SmY8fp7OP1tcKzqfOto/36hS7zSB4D/mwKKW1CTkPzaOvaTRTeU/1V/7M7uJ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FxUzURiz2z99hIC9KdDkP8+/hIIBoaE/xq9UVJNhuj87SwtZOxLcP5hLzvmVc+A/loAyiBx+3z/lkFGygmvWP1FdMMhrjd0/Usn3AopD3T8/TUaMcU/eP6u60xr7LOQ/5m9dWoSj6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yZBh7sRa3z/8CQhqoeXYP94kQKpR1cA/euQUbKPB4D98MpJKX+LoP4Xq1PKeBek/M11sojLb6T8i8K6yPXLgP0bC5rSGBs0/m/r0jkNw0z9C7vvZHGXcP/fgXXuBYt0/ioJpVSFa3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vxku/4da3j/rn8WBeoHaP2dqXpdRKbs/lFUnHpX62D9y+ElEBsPlP2w71nXlEOc/Gmn2JrRF6T+b5ey3lIfhP/pXL/oOG9c/WMfEVbzN1D/0comRajTcP2unFeAWn94/W9Tm+I3B3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZCfTZQu31z/xci/18jjfP0P6MVv3I7Y/25zTOsiqyj9KVfoWYNjeP1b75oo9KMc/HVhDL2v34T/GiYNSH9jnPyb3bbid/dY/ACf0QmXC4D9cO6gaVQvQP0wIFAGI2No/FN4IxYgK4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B6/3NvIp0D+kZr88YlzjP6NkArQgNsw/KrDOv8uYxz9OR2Bmt2PbP9UUSE3wod0/r7sDDinO6D9w5ZZCQgncP5g95CWldOk/oaMeHKzO5D90DGlD8TviP3KIkLKe5NY/F8aY05Un5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XrO2Ud5F0D9NbaDXxavkP0hUTHM169Q/NDt9DIeOlz803dRAdVXiP6TUd+wTitc/ZoDx61Y24D/ep/itVYXgP5cPcbc909w/EVA+/aD/4T9bGDtX1yXOP5YoDZ5j/dg/M2PO5pSe4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JMziYQo62T8nEfPTQkXjP/zbEvPuSsA/4wvXTvDTwD9GNvMN8GndP1pT2ftJWOM/SEm7YWPM3z99f622ha/TP3GT6PTsEOo/sEnnOr2o5D9BAY5S1hfgP5a2UGii8tw/xfwnIv6B5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lUFz2qVP1D/jveFRIB7jP+XNOemGaNE/PNeo+TKIvj8l07Cnn3rmP+G2j/EZP90/cXoHfjDd1z+eEBoeAl7VP5dwHHWIuuU/DYsecN7w5z+TlOALQmvLP+8qdFSsR84/z4x3dXv+3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KZYYXBhf4z/ir9OmcFLjPwuHMSFNns4/8qbbQz0+sz8rp/RaaZzbP76oS1Ls8do/ZfYRMyEM5T9s5viuBQHeP/Ey/WS0+ts/pKnmdhH+0z8cORO4EwDhP+CbQ8EBP+E/Uh56CPoe6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TSUNMA0T4T9FiF0ckdnlP/vIez+lq7A/M1nuvFpb2j8eJEIGtwrdP2H+9SGqh98/rVWIDz/E4j/YHMQvfWfVP2PKMPBYvdk/70/hmvM90j+ie37cFGDmPxmkn1tU998/jDrM583J5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"P0dM7UbC3z+qrgIWrebkP1dK6v7UqbU/SaV0r2LO0j9t2fli+DbdP1r5PUvrHts/T6SBE2mJ1z+SZh30ZDnQPwkAYLrVsdo/pqLLCIMGzD/uE9438WPlPzVihdqybuQ/L+HVn/ES3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rUaU5wtI2T/DZmvhC7PjP4U92DSrrpc/s21q7WKpqj/StwDD9iLXP1/LNl290dM/HK18TzFBzz/F+O/6kBbSP3u2uqi21d4/yfsd/FQ74T/aeFJKyALRP90J03kLU8Y/sHltGuEW5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rr6ngQdz3D/Olr+yjh3lP8Y1G/DZv6g/dyRc00TLsD8VhYj5nm3hP68DoviF+t4/TDFmvJqv4T8UPnsGHZLWP9tEqvjUEuM/iOaisiXK3j/FMTgPTYHYP3VLDWDXWuE/VgjBb4kJ4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1S3o8p1W2T9W9J6FFSvkP+7th5C+eMA/HpqBaJtuwD/nOpI55ajaPz3UU1iTUtk/8jegem/53j/6Tda7AjThP8EOKLqel90/Gg651LRE2z/DUmwKDNHfP1BTuDDH2ss/hBtkjqpE4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"M+6qeSGT0j9HtQAH1mHiP86E6iLnYdA/jqtjpFQxwz+pcl/CMQDmP+pUvapE8OU/3amJD9+n3D/OugSp+erTP5HEMO6Dr94/Bjivmy0V1j+HjjWzBaq7P7EaTAO14NY/kLubMX7J3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YyByAPzE0T/NNSTFYjbiP67SQ9p/bMI/ni6EC6N0yz9Dy1c/5LLjP9691r0onOA/98MwoUIu3T/on+WYc+PZP38Y35tJQ9M/blYqTE0Xyj/UKHsrqHHZP0bhY6oTedE/D/DHyeOd4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7Moojlf21D9IHz0ba+fjPyRsGMyyUM4/QSTNdenYnT/w7dKxfKjSP5j8bJHB484/Ot1s4fSu3z8YTSQ+eoXXP+TpAn+FAd0/MHG8AqZl4T/RejzAy8TOP/XM4fm8U9k/yLsPblr24j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EPAYp93v1z+NTCgUrJvkPyz3SKbHJsc/LarDAdRfwD/+sj3145TWP1LUNQ7wQNU/bqSPYVQA4D+/rDYQ2EngP5+lDXKvJOE/EUmwFY7t4D9L+b4rHV/bPyj34y8CRuA/xpzNKT0n5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QmyQB1Ky3D+UB/G0PorlPw5dbw5QxLo/SuaEFSixtz/lfq/6DrDfPyig+WdfXdE/P7si4F7Y2D+nAXtOyH7fP9mYHmRf7N4/pdOX07an3z8AYOFqCnHRP05TkpwKRdg/aLpJs0wB5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Vf/g44QX2j+GFKei5eXkP/nPo31EiOI/1doB0HU4tD8Xf0ketvrjP+hXOuqrHsU/aQbfu9/F3D+mKJq2xSPeP2NKtwv3ouM/uN/f31LM4D/g0EDkRpbNP0VThdClRtw/hjl91dSH4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wiUYzIAr3D97c/HOIKDlP+gCGX/2FaU/D9OsOZrKqz8i2ME9CMvSP4ileY/udOA/KA+MHAdd5T/UkLDffMDeP2MNSqit098/mf0z6lZO4z8GhoOvXlfhP3Tyjf0fP9Y/6S4HzLiT5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"epN8ctv93T+PrIRY0RXiP6h6oAHzx6M/LqcMcP+t0j/fU1NLVp7dPxE66YaAwOA/A93Vm4H33T/WsP/lyyvQP/wakaRehtU/W4+deRjWzz+OJ2+F8NjAP0Xy5xBXhNs/fOiVBWs95T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4wHDV8Vx3T9dJAc/gTbrP9yH4X2eNJI/c3OT1xyOxz8P/IG2Zy/ZP1VywspDuNI/n0OmeDet4T+1m4ElsTPfP+oqBmnzeOk/lGDoOZ6v6T9JqzIqJXbmP9fzbas/ntE/uES3P20q4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i6F4zrTr3D/uKqRcOG3hPyOIP3t7ZXU/7nHA2A2hwT8IFUPI2CTcP42O7sXuyeM/EFaYzW9P4z9jay2BItDWP787rcZTreU/NAns16/s3z/EfykRp07RPweCV2JHTuA/pZmcX6bk4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Ejays/j3D8m/Er4ejviPxBhV+EfSZ0/tcc1hmDxwj/Qig7/euvbP0yStu3PpOA/aZV4OTWe2z8BI9cqWovWP6yIYLZQHeA/U3ysNCf64z9CosVMoKzVPx+gIDiqCNw/AtZFlg8e5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WLmcMxMV3j93by7C1/fjPy4cogCcfJc/obvb4LcFqj+pYjATdZbXP0AIiVmUJsk/aAOuJH804z9b9+hZhVLZP+Zns69lTN8/pgpZUTwN1j+ez02RDprZPwe7SEeGHuA/1Qfb1K2m5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mKC0qyGY2z9L7/VWNSHiP//CFz6R2Zs/S0vv4Lz+wT/GpSyxm1bfP7LX/9CrxOE/2uihbyP40j+59Dr141zIPyoX8YMa1OA/7CRfbPjC4j+N1xW6scjhP1vucvrUreA/LQ/v+5Ms6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ftAeTIMb3T8bs//zqb7mP80o3smvsaE/OcMW0XRKrz/A8McMaJHfP4oaGLhMTNs/2DBYhjau1z+zXukjqGHSP7UYdPoe6OM/xS5gVpPE5D+5iP9Hy/rUPw0iS7hJj+I/zlL0qEhW6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w7MbL9ks3j8A1h7E+CPhP84vN/7q/JE/hFuv8TjMuD/eZ0yf/GDbP4LlDrc2U9g/kjgLO5UI4D/m4bn6s9PXP4+suHvgQeU/+6zWTOep4z8PCkzq35ngP50+OY6UUdg/lzExMIM65z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0/IOmyUa3j+i2z5mnXnoP0+ZI9p6AZc/7fPyFH9fxD/+fNYTFULiPxqZVligd9o/gIjB9K6I3T8crdzFRWneP5BFU1WLDt4/lCx133oE3z9ihoTsbf7LPwXS1asjyNU/1eC7vhgm4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/WC575LP3T9UoHxALXTjP9Z6K2b6d5o/NFV/2hsawD+YxsX0xXbTP7SxwhAifdg/VOZGMi/c4z+7xH3qjXrdP9zneeblaOM/fxu0CPyK3T8GXL4sSBnZP+sDxP036NQ/327vWncf3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QphdLPBE2z/6maE0KL3jPwDRFidHxqg/iNSoTrrFtz96wac84ErTPzl9DTjw6NY/RABnVNer4T+YiHitfcfhP6vDuT3y8+I/3KWknUN24T8bxBNhmHTVPxtVQGuTv+I/cxzGG7DX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DUHCTmJD3D8w1HG4XAXlP6io1iJt32M/Bw/FW8ehpT+DBzkeWjvYP9XQsoSr7Ns/X438NG8A3j87zoBNxL7gP4k63SMg4OI/VnR9Ega/4D9n3aF1vdXhP5TFrCXKKts/LS77/Olm4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ARkIqeGZ1j81DNM6hbvjP0XlZAebBOM/el2M1i9buT/NZOdGoqDiP1v81RR9Id0/WISpGVIn5D89BcoSct7aP7uaaJvayN8/1+2j+a//3T8u8gkenR7fPzaHb7mf180/l70TQWqX4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"A/Wp327Quz+1V9bbBj/iPy6TdMAvoNQ/oc2cS6ld1D+hhdGULxXdP1jdML+Bs98/+jFy3m7s1T8NlOE8ZvnXP/0hOW8bXtg/uVxAtIqw1z8q9Nbn40XZP/1jSbJWmuM/O21CtQxg6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"PhCIyaCCyD/tctPUqlnlP12CVuqEGc0/isL1pQ25qz9jplfxG13hP0KZNU6EKNU/WSCkiW054z/rrf0NI17YP6UqX0dwK9w/Fc3+/2c03D/gEqWBhzfdP2/3emGbgdw/DBTwM1By5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7njMe6ZVyz9XctGjUfbkP9EuhW3dhM4/siZUqTCDsT9B6Ba7QOXgPyBSKcbJv9Y/TUp/1k844z8dWydivYTYP53trRmWgd0/Y3VjKmGT3D8VCi8+I//cPwPaGZ13BN8/xXY8bzfo5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0BFmKK0K3z9Y9psH8rrmP8NknHuvUbE/G9bqDatquj8TwJ7sOR7fP6EE13sUZOI/wjn1oTE73j9Iiz+Wd2/eP/eybWm0hec/tai+Mz4W5z9t3XJ0lyjWP8SQ2tKEN9Q/8NvxOJLw4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"InYVMJfu2j+PixKG/cjjP79mESIXKp4/rM+NVrqzuD+9dciz7lvePzbydowh1+E/9XcqKsge5D/FDgvox0HfP78PaiTZ29k/Z5o+ze+q0j8UGLQUbAHdPwIlTBCBRdU/LCtw10/k6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BhltFbko4D/adGrQ6z/jP+nVwtnD+rM/HySj+xQTtj+XCij1KgDgP+CsHIQjMNM/oJ1pTzJo5j/asZ/ErkLjP1ZrEULb5tM/wVrvdh+C1z8ep6/4oqraP8ceRDGAwts/T9wxL3GT5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d2zucHpu3j+3Mx3dMtzkPwo/zBH5Q6U/ewSRD+EesD/J7+m7m5LWP9Cp86K0u90/dFoZor8X4T/Jd1xe2tjcP2Z/lBt4i+E/agR1e1ZV3D+Z3Um9IpPVP+ATVR2WE9A/B4lWfN5e4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7k44nI/E3T8hSZ+81BbjP6aove4S2JQ/MwmVTCFMtD/CawDa9HbZP75cZulW0dI/Lr5WYMFp2D8cfGqLoPTSP8b2TSt0bOA/uwLaf5+84T+zrc3WF5nQP48Aeouros8/1BfTUsWN4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XJjV5P5Q3D+r1HLxPinhP3Oqdci+8Xw/kmeW0qQryT9qON8czojBP69SR9pYfNI/UIaJF1bH1z+z2kBgJ4HWP5B50x8JSOA/AC6cN2+f3z8tnX8GGznMP+mDlEQMbdA/Rw8SxE5w4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DsfhnJ0+2j8yXSKQQP/lP2BHjZdJysg/aoQs4X380j/GtYgJRJ7nP/V1TPkXHOA/fyBLTqtd3z8Dg4r+E+XXP8t6GLft5+M/i2UuLt5I2j9RHOBBuPzdP+WNaI6JJdc/kxMoFxrW5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WMO5jbcc4z/e++37/SjkP4ONFS97Hcc/gIAnF/RJpj/M+L9H3G/kP3KvuagIGeY/gbkUJ2be5D+FMFuJQX7dP+zJKblBzOI/AFq7HdJV5z/lq9dVXNzVP0ZMrGDmd+I/kXLVxjet5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LFURBJfj4D+p2l+KcAvmP6ssMcSDRbE/hmAsbCDRuD++Cj1JbRLjPzVF2JXyPd0/t1Ir7sjO2j9/d+7lVPviP+lEHcONDOM/6DL2uu/c4T+pqZycKS3fP0inF8/hH+E/9WHFJje86T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2Y3hVTfL4D+SM74xMy/mP4Iurui3ubI/MywSM6EHuT9kwF7eXBnjP5tAemcJtdw/fCTveAYJ2z9lw0smhGziP+TUXDWYjOM/7G5CCgKH4j+dx2wV7M7cP10g2lYKweA/0dGQ5SaA6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TIL1cwhd4T8Kj/GvKXnlPxPcmX2dFbA/aMs/x1IXtz8r3vfQfNbiPyQfduY11ds/9Ew6hwdi3z91/bguMc3jPwizHiVX3eA/03Ns9joc4z+cUblZ/iHePxGjrBRvF+E/tHld7B846z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IB99MEIf3T8jxaQuP9HjP/vm1BEGtpg/B5ucIg8RmD+XnJeKjYfiP1EMryns3eA/A4IcnZPY5j81soRtYdTZP4h6YqSoW+I/rnQujciM4D+0AvPtN5rfP26EKldMjdo/hRHIzE/W6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JupXHvuT4D8bHfZiIJTkP597O42+brM/cJYxeGr8vD/Z9hxSQkfeP/BHK8Hnuds/5whPXamd4z+c2nsggLzgP2hNlxDzbdc/3VHAoiUs1T+FcTZLcsTUP/O07NLHItc/FgWkj22T6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"24bZsMrm3T8dss5rqUHlP2BkazDklZ0/AQi2G/a2vz8N51odQUraPwDh0/cvbdQ/UbVTHE4A1T8HnX/fvjbUP+JK2EAUxeE/K84mtrSg4z91xNNHGFzcPyCVy2N9MdE/NUDfp9w02j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TttYwNmJ4D8u1eOrQcrkP0inKlP07rA/NFy3L+hYuj/DwiShCznlPzim4sELM+I//JcOkxDa5D8uq2b8OIrjP+Wd5ytDZ9c/gc3w1NC/2z+FoCUctk3kP9zuHhYwf98/WiVbGndu5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GwtLqCwB4T8vJ5B/UOnkP+gA1WT5l74/4syezzswnD+ByQkutlLaP3g3xu/uceU/7oYevXV/5D+gTP3vu53hP+lmrzYVZtw/cwmJULiR4z+wfjGxzOHcP5Fgg3Zse9o/HqeLY9Fx2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p3Wi/P6m4D/Tid5bPazlPzUBsGaZ7bw/0ilMdh08rD+OuBhd3yngP+WHpp4tg+Y/3LDxHvz95D+Jwrhhi03hP6FSnUe8/t8/613CjSnL4D+p0IZHeMbhP9vafACv2tc/7A0srb693D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V7h4pY6D2z8MSSbb+BTlPyk0VhMA9ME/l1MHlUUywj+1APCfDvXcP8JvQDCJo+I/G1meO/Dy3T/DV3btqNbePyQFeW4KZuE/4i6VJ0a51j+8wIr3ufrgP3l3pJxNMNs/zLSZc/1U3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YVzQ0s6R2D8XOebCLM3nP63+Xr5ZQbk/HZyLYpA9yj+ey9V0f5bhP8KTGCq/09E/ETI4eqrW3z+qEkDWSYbYP5ypKQg/t98/czPW+yf94T9UzOt229DSP0eL4uBWLcY/dZ36w/yM4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mUfOLt0w4D8exn1DiY7kP9l7I6SD25g/R3BSODR40T9cTsQ+rJHcPw7KOsmGeNs/VN5IF/Wb4T9xwDV+lHbUPyZbwq/WbeQ/uI4GJlrK2D+8EtU2ElfaP+SKN5Vtwcc/cOYONywM4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gcIsu/nJ1D/QA/b5eQ/kP/L0w8g9PMM/Wl4qm34zmT87mwOmwSXhPzi+Cjejm9Y/TRISU8171j9LkwjPyzfaP/DxwIVAaN8/DgtLJqWY5T9LG1vea4jWPx9T7K9Bit0/ailLOU8K4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"prBZENqn2D8yn3MdMELlPyqLw2SucsQ/lZsnb/G7qD8Fnlbs5mXhPym3g/E2Sdg/AX+Tt2kc2D86IByszp3jP71WiZPYXOg/g+InEoXb5T9cfgFzl43WP4EabThRxdY/J9uh1hdH4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"m22Ci9oa3D9pNGL+jw/kP5ZP5+Tw7Zg/vJ2Ng6AZpz9muRGGCF/hP87F9YntGs4/v2S8o96T2j8nMuZ0ZO7kPwLw9JJKU+o/5xQnvqDg5z8XG2tCYYHiPw77Iicmotg/FzZ2vRDV4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MnG33XHn2z8Zj+Yn/FzmP4YGVN6BbsA/+R/7VTAMvj88ZmmbhTPZPwW/e054KOI/f8bQbUZ03D/ymFhd9lLjP9mny3aVfeg/Ir/3dkcT4j/0rV9w1kXdP0nWc8a3ZNU/TDUu8vYa3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oI5WeSnL0z//tMP59k7lP53poBhsg8A/oTyrNreNwD9dQsQ7Kd7hP/l8/q2oCtk/4UWtIA4e5D+ug6PgGGzVP+FpN4Ta1Nc/hTh2E7pE5D+onW06XFvNP6mem20zVNY/pJ5qwNMb4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0RD25boQ0D8QZaxypnviP+zg/coK9tA/sXWB7fJasj/mAu+VKuzgP/PnRTNjZuI/LSfgfek04D+9/Bh/pKDRP8dv0mJtEuY/0U2XrBCMzz8eaBTewJvYP1AUqwNQod4/2c4bp9HU2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HZJqdQLW2D98mnTWVe7iP1FGHyjBrLA/P/hqBc4JyT9alsM6D5beP757kvEmZN4/MAVWtf9R2j/kRZZSgbfYP3QVhJE89tQ/9xHfGPVM6D9mzX7WU1nDP6KWqSLSD9o/mscbiVMv4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mNRl5dww3j9KQj30kozhP9PzFHyCP4Y/lh12L+wQyD8fhTpy74PcP4rAimyXXN8/oarKQfih5j9BrH0LSVXTP8GvWPhx+uU/kt+rUuux2j+ujJ00lkfIP+5CCglKgtc/L+DD+LHZyD8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2inxbM+c3T+U4t7kqGvjPyCVL9Z+J3Q/NxsuuNGxuD+Duerig1baPybQIaPiz+A/+y5dNQoh5D8b71J7sVfbP+kVWg6mVOY/MiwECJqV2D8qVmhweEPhP3LNBVDHssg/gAexxRPb3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ikZKNWdh3D/o4+jx+9blP+13QgFWHJw/SbsquVhbsj+t4LpRHmTaP6pjX9de794/6rLldo135T9eiHyxExTfPxT0BefGSuU/RSDwiGWL3T9GknOsEIPbPxdgfzal5bg/Pjp65VBR2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B4EEOuiv3z9YB1sg8GvjP1Amg617xLE/BVrNGRV4tD9uJjLvnZ3XP9muWtvzp9k/fplY/vsQ3T/d4wrW+UXdP7jyNbEbWds/HQSPoloX5T+ugVg2d86hPwNKExru/s0/IC9ksuFt0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"G4JLVnI44z9zFsWuKcTkPz/8Xf6ZMMk/IOd+/ODouT85AdCa7KPkP3ZLF7NdId8/M4uRQ9rQ2T8wJzueHDvRPwmN0v8NfOQ/svPpn8iz3T++GPDmA4XpP75DvxJ0UN0/8UvuDyHg6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yR7Cp1li3z/7iDGoFETpP+TPs+iyf7g/0rizdOB56z9+wHCv68DkPw8CwQkEoN0/9c5WJJs61j+Qd5RsbDDgP/+irexrz+Y/3hv1SJVR4j+M4uNiBUvcP42H1FqJ5No/aKPUEuYE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"siSU0gpc4D9g999jIo3pP6aMfjIhZsI/4+pR1k8I4z92g3Sz2cblP4WyGJ7MNeE/OO5VEBrO0z9mT55pyYXhP5M+nJkM+OY/T/WRaL7v4T/CAoqUmLfcP46MgmLw+dU/ZIGq4fLs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EJNUcsxd2D8pUwYWNxfhP9HuMof4FrY/I8ir7T1UtD8ny/yVt+3aP4rRAC2e1to/EVRUL8Bc6T+Y2AEkh6bXP9PCtjTca98/96pH9DDR4T/yLN4LlRbUP3/5SuZKkNU/e4Yn7etO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vEHKZygZ2D+by0xbNCfhP8gvu2tAeLY/DWuOybuDzz/sppAoIpfeP+eNGCv/+9A/NGUF2dqD4j/BXU14sYHdP74Xd+mJq7A/VWUSs13Azz8YRngrcnLdPwLPAyVfWt8/yc83w0702z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+q7f6dRb4D9xrHbM/C7mP96kV35uYsw/VK0uk/2kwz/8YoZONmjpPwx75oUzc+A/LBmIAvsg3j+vs0uaAtPSP7sRTiOWe+0/Xsh+WXbn6D9qWh1I+UfWPygMqF3bEtM/Hd49meEj5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"H5tMPm054T/ifr9btjDkP2Tfw/VZf7w//vceTw1/oT+Tclm8yirjPz97E1oeY+I/shxNpKeR3D/2e5F7sgfXP6wdLBTRJuA/R1QG9FT54j8CL+/QQ4nfP68bbhsNCdI/fKHU+49R4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l6TLqkAR3T/jOKX6mpThP6iLJ+ckOJo/Y29KkWJp1D8+cv/npr3hP4cvFcwkws4/MZgT7Ffu4j+Pdlfub6XTP4a7DZ8mRO4/fsRRUzTe4z9PrrpW9EjgPzJ6Vywo8NU/ZVLFT5kN0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZS//mPws3T/bKIClU+rfP48DEKtQlqI/CTeuRtPk1T/k7dPHK9ngP0jQlbBE78U/EfGgfB6l4T+/2LCRnJzYP80o8AeVteg/fBMluEv/5j/Ta0vZterbPxb17RaWodM/4Ff2bmAr2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gfWZ4pPd4T+fWzkpl+7gP6M5VbZTTKk/OCrx6DpK0z/cvOcyJwDbP3ZSNxDp3s4/oMDEItEj5D/pI9e3XErZP7EgID4spuk/BjSFYc2a5D/6/rvyQkvcP8O/SRQ5R9o/N5jQ6xT31z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TzhlE7+L4T95TxluV4bjP4zQBOgFqsE/3hC1dRMHlT9zqJ5ogGjXP5RtJqNNuNI/UeYLM5ft5T+T/RTZuijWPyFg2rsXkeM/nIKhzWvH2z+hNs8PV63hP1qmKBeri9U/eUWrSRqJ2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Yv6uyOYf2T8BgTGLzJ/jP3N4Iz2oEJE/dX3rNePmrj/+FDyswh7LP5V+1TciGLU/+fhPPjMd2T9qpCRNxRDgPz7hsqLsV90/J0YSQ7Ad5D/a9YzGdLXRP4xG2GKRONc/TOnk+HZr6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e3iZOq+M3D/44TKUxTnjP5llUlj20II/6O7i3KMQqj+coBdBKpLMP57cwQxzeos/f/xP33d81T+lrY+VnYDeP5SlD5yn/eE/8ezT3h6N4D9sw747gVTUPzcLuaWkftc/bGclYdP65j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ioVN+Rkx4D8s4bNpML7jP09jNGOKp6E/gBVX2Iamsz8d6jX3JAbkP40AzXUPQOM/kh6gQ51J5T+y5L3Up0feP2t3H9sxQuM/Wuf9WCLp4D8K9B/w7QHbPz/TL4O9NdQ/EV0x5Hcb3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U5W3uSuB3j+CfYKLlXDfPyhKqoHDBag/3XxpzeYF3T8zXgMRTZDiP/XniGw5md4/nOr+R6NX6T+o6e/Mu1HkP8F5jHHCGeM/uW0DE6De4D/rAzLuUt7SP/aENeX+VNI//FGW9unE6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VqUe94+O3T+oHfPgT5LnP5OUOLwbDL8/tIDoawTmyD9UTh6Rg03gPyLqovl0hN4/DGZda9KI2z9eGjg2MuXTPxqQLPWeXOI/KAZVVFqZ4D/VKtGfI6LXP5Y6dMDqA+M/ZtM/aW423T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2vvZYNtq3D+enXdbRtnmP7P52u2ldYc/nXaOj2iLyj/QXZ6HsIHgP5HUbYcLPeI/NWposGZ94D+cjb512PndPzYelyTf0uI/DAj2QEHd4T9KsOwgnVTePw+TIXOKuNs/FWopsJfr3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cKfiYUG23j9lfav2MAHnP5KIGGD66aA/6FXc85VSyz+Vb2QgOWnfPxMKmFwpMOI/gOKJk2Vh4z/g9X/ZuFXhP+YtoqNeaeI/fE4BqOIC4z8SvnpdxcXdP3BkiY/1dt0/pdEiYs5L4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bAtWexwf3j+BW0uMYAfmP0u1Jb8vUZs/u6RxL4v0zz/Ex88ZdfveP8mhsWcNmuM/9+Dbh87X5D/v1PLTRwzcPxQenaLHXeU/0fReOa+m4j841Lf4u/3ZP76pMG7mvdw/ySX2+bTg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5XfBuyNT4D853wPT3NHiP2bPfzWnfr0/Ez8cv3RYvT8YoK3H1d7lPyIpVXzWNOE/5U4T++T34j+ga7Z/SwbbP9nRFi2tLeM/qVusRrsq3z+O0n9tDA/aP5a5Iu9mYMM/Qi74r5705D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1tmG7B3m4D8UR0UUGGLiPxmcDHgP7sg/PKqxj8Hy0z93wnQTc6vfP3XVzXm+QuA/1lk3n4Pm4D+PlKldKozVP13JGZ/ewdk/yUUqb6Sm2j+BMbHM4VzXP7852H4YzdQ/3lYqOall5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0TuwHqOv5T9+1tOQ2ebnP60aKygRDMU/nnoIuUls0j8UP2jqnKzfP/NDe35CoNQ/7kUKVOKX1j+Sl1skDqPVP2OYoSMbvOY/ALky6MNy5j9I4AasHvbcPxPcsEOMsuI/yU9LBQkN5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"k9Sg93v72D8m7wUnvqvmP8jB/4kURLA/kaFzwyjFxj+peyXq52/lPzhzL+J3SOc/1n02dT1v3D/1n/lougvQP/ZubT3QzN4/vVHDbge72D8QMj2lmSbiP7MDEUUKL94/gxfuRUW66T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SdHmOyxt4z/64eJ6MrnkP8sGVUjrANE/V/yc3tGftD/bFVWdAC/ZP9W3B65+29w/Bh0ElopK3D+6SVnE59HaP3PS3wVS5ec/7jf/Sqkq5z8juee1+JfTP6NOI6LQptY/8FKaTUUW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bn094FuH5z9tCxbF9M7iPx+FX9oebss/eToo3Wektj8EgVIxT7HcP2we54S9Nsw/oSF4ZZ2c4j8cT73zAivZP7TfLyzoQ9o/hnCrc2E+2T/pGTNAXMfbP6zu2lr7oOA/1pSJG0zJ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"opF4p5BM5T9QCke5UOvkP/qWfJV569I/mK3ogyntwT9ZDAQeMgDoPxFP87/ZwOo/TYHrQDLf2z+KU/PAVpfbP2wNh4Qbxdg/HlbrBsSJ1z/T3M1IYMLWP6K1Aj4UaMg/lngZvtJX4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"bXYmZG2B4D8fJZ34+CzlP2TbdSMJp7I/K7QQi+AltT8SPBZ5gMTWP8cLWsHfuZk/aUKvXoPc4j8BvdnOVgnYP+jM/PZzMeM/oSmkNvp44j+6Yyq7aNLcP9P3Ja2E7do/zna3tBh16D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VSMnSkKq4j8M0X3hGlPhP588LyKiUME/2wZHpTdV3D/ektFePrXnP13QTnfNv+I/2i5wndaN5D8ExaIHq9HTP/1WHaV4YuA/2ucDMEWd3D+UU23QxazTP3mL+olVqcs/M5cz0TJS5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/GL9gE4u1T/SlrDpD7HZP+NmDpPduLs/YtZUHrAoyj+M3h9No5ncP2lguIOFDt8/p9XPZd1L3z+nLdvKDszkPxPQNnAWVtc/T5GHxvKy1D9ThPzR85TUPzms92b4Y9s/P1pSHF5R2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V2ue3lQ51z97B58WjIHmP+A0ePOUNtg/okJbsKD8vz8KIizRoHjgP5iXwIesHt8/eIRNu+/o4T8/CwT+YBXgP3XApMyvaOE/5s1OYbxk3D9pGXQNQVLmP7xLpJFwlt0/6zs9cgDo6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2qDgeEY23j+UOVE9XcDhPyRVI50VpZY/jRBQKoASwD/k+M1/CHzmP+ZexO+QruQ/c/UvSGxQ4z/ztcv6iLDZPzTXr80iM9w/oxwhnJWi3j8Qa89k8xnNP3eGJu4x/tw/gkle/Tgc5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"YQioE6Fv3T887OD1iyDhP1OIZOABwpQ/yxj5HSeOwz9GoO6uVJ7kP6LlMSYZ9uQ/eqVW+eDO4T9EDzyeqT3gP9wdtVDmbN0/GRxMoAVx4D9urBvablzgP9vUmZYR0t8/7e8pvEfN6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hwX/VKtu2z9Qf7OHS7DgP5unZaiC17g/pvyHPOSuxT/1AgYWy1/gPylbxrNaK+I/UD89Zftl4j9MER6vmmnVP/AvRk+An+M/zWE5OKpH5T8ZW4TCeXrfP0fLg+JbUNk/1gLuhmwt4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1i/E4ehR5D8m3CPWYrrkP3jtwaqLCMI/ajDypfhAwT+zefBDEgzhP4ImDLbpBdg/Q1mTvn8G3T9tZOTs+zveP0Ah1xtqgtk/6Qoi3uVs0T+LdQ3cUdTNP8tHMjorptU/4bdfJnTp6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NJJ4y5825T8K4Cwd/BviPypGyzlLVMY/PWttXfcm0j9eiTcH0mjfPxFnGzVxKd8/nRJTRoBX2j8qBQqH3KPaP0+cLv+sfeU/L2WbQ7kz4j+dytvuOwXiPx0vg1sEQOg/VKJgWlWI5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qDMtLdit5D9CO6f3HHHhPxfRQ9785sw/x1r77cTE0j/D/CTldWvfP3eJOa+onuA/xQi9GZBm2z9YnVVsPCraP8g42XOl2+Q/qPM4C/nu4j89G7LioVjhP455mrW51Oc/HUhi/2OS5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FhHnoEDk1z+v7KNqg9bjP1HItzj/z6w/cIH6EeTCuz+/zCmIe2niPwcZP66CwOM/NlStNayR0j/9Lvg9rF7SP0rDoXuuhdY/lf+L6cN92z8vdGORI5TbP3rclG0Qf9Y/3NmSXTZs5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xO4H9GyD4D92PvqHf9bjP+qgli1GC6w/HLDbUVMQsT+wcnvx4z/jP3Ords41D+A/MnWXYgFP3D/aIlzHQKDLP85blzrJHtw/cqODnrNi0z/vVQzW9c3MP+L42ZdVoN4/qTHCXKme4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LlynGl8r2T8KJ+suMoziPxAhBm1Te6Q/EYQdNPgcuj+nb8yqPDHVP7/uomRdBtA/hAg/n3gS4z8R/F1JdBvVP4PV7fX5YuA/ReYJvcMS5T91WOckEz7ZPwAiLmFDrNc/F7nOs9z82D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ll8Gubc64j+SVIAdmvziP5LuGuyv27E/Sl4bqXwUtj+hPRM/pffiP4nRG7fIqt0/mjrW8RIe2D+GgTbPs2PdPy7v/oi3Y+I//vGVCfV65D8UhAU40wPkP0vrgxwKXd8/SrmJ0K8Y7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XMKPnkwW2D9sdhxAJdnkP+nfiWQIIq8/XcSFgKcyuD8vr7xpPjLlP6Z0yHLk3uM/OextJ7qt4D+eYhjd8sjOP5Taw7xgduQ/U7/cmH7y4j/yDJ/L16fjP2OFPOQC0eY/wFXuobx06D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mEPMZyZO2z/D72vSgi3jP56Q76zAhsc/GWuItRvSsD+ly7zIgMHlP7OZtSW16OY/slHW7eU14z9LLyfD7MnTP3EqfQbv6d0/AYVxZrtm4j8JuUITbGbdPyIEoAlfHeI/o/RuaMJ75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rS61wkhc2D/eCwjXOL3mP1TbG8eUyrI/iEYIstRKtz9bzc7i5wblPwZluO5tkOA/gRLcrHyh1j+HgMr6zFfgP7esgdPXvtw/SDF7SuY14T/j7D86hRLSP9sM0RIGI9Y/owCEqHcz5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I0+4SVW84j+YwmJvwwHiP/Sq8jOoyLU/06GZNUrOuz9WHrl9JyLhP53P6AQpP+I/X0sTWqCY5j9KMKM0LsfYP3RpLiPLCuA/K5Ra9wnz2D9g5JiNMUjjP7DdBw0ChNw/DZb4qLTc6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ov4T3V0M2T9YcNx7mKXkP+LaxGs6gaw/Uoipws33tz+rIu1av1XgP/H/YIN5ROA/6GzqQEDW2T8I7Fjaig3PPy2RT/hmUdU/b9W5SqyDzz9i0EBbnGHUP/zmTbGDadE/rD+dtDOH5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/wKWGl7h4D/4wo8zKo3iP3urHHO/iKQ/QMEAlTymwT+gm3T6hQbiP4lgsgOUk9w/0EKa/3Xc6D+DmDt3W3/oP3T7/VNRP+Q/5KuYDEpg6D9s31GTR2LYP4ud835VOt4/0jc3bON04j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i3aahuKU3j/AWKRoI+DjPwImqR30DpM/OyzJsgbpxz+tU3waOQjhP55MeQrXeuQ/sxeBgQNZ4z+Fag26ai7kP/evJTfRTeY/OmtXFSua4z8t5zt1SZzEP7iY2BnZFNw/K2x4XTKR4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HYWoKX7L3j+yeajTJ0HjP9/BtuMt04o/8s4neMvFzT9zOk+ku9bhPzS6C9bOg+I/PpPA6oP14z+0LuO96fjjP17SglI3RuY/wJfryI4x5j+yRLWNxJXGP41v8n1yfto/irQHuXth3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ohrAFx+F3D9Mf/q5EqngP7FgKOS24YA/yY8s6E5bwT8Bsv41KtTYP78P1S9Y6tA/vBlMOIFu2z/wi7FwP27XP6FkW4kOU+M/l5Z79pkG1z+9FwaDVSzeP1+eVuKMENc/KlkF6EEG5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Jl5F4lUk3j+95D6/FsjdP6mF/CCJ34Q/iAJxaDb82z+uMH7D82LWP1JOSdQ2Ttg/dJsMVZsb5j8D86YiwyvdP+MAmsayruU/lcMWxWss0T82lr7t4v3iP/AAxmQ9GNU/Wl95iA1h4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mIx8wiUF3z8NAhk92GziPw8WQrXyxYg/Xs64W+X+yz8YuIS9UgPhP1wpdOsX29Y/VIJPmUjR5j9djQFts7jjP+YW/X/r6eU/AVRxgZkv4z+hulpNhi7cPxbdRBganNg/cK0hXemU4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y0gEF5Em3j8m1m9O8uDbP5pmZfnxcYs/B6+88e2Q3D9fbO4M/zHTP3hnJD/HjNo/dxpKgKb55z/dIPzPxY/lP4zXPq4PTeo/hPcqNUth5D+k0fJXRZ7kP4BdRbHrGN8/5mhUVSSn6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gSqVhAo83T+LvXjV/q/hP7hC+qZGe4U/hI6scosr3T83V0hpNBHfP8i156BRddo//2CBcnZP4z9e7l8ImZDaPxD/rVfO3eY/X1KdpAI55z+tlv/MHPLfP+YW6waDOt4/3BbfKSsb5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JBvjALBr3z9ymAuA6gDiP/Mw4J4TOaE/HsCrPR+R2D/gqRTyOynfP9CNlXjL09k/Ay0Ti7jL5T8jzBK7OWPhP7UnkPClnOQ//2PA/YzJ3T8mfwaSjmfZPwRZfKN6Ndg/FxMLyghj5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ys6sUbHA2j9vUs4PSI7hP5nh2roj45c/Wu+3whxqzz8Mnj1A6JDVP6aejIY/ItU/mo5X784j4z8h/a6Xt87XP7nBzCYaktw/rvrNtA0C3D+uX8OBPi/jPypF0iC1Q9g/2+3hNp+b5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"saV8KTxF3T9kaNUKxQfhP3Kc3JOiYos/JIA4nJmuxD945HC4dNvUPzLxDrW2Ato/n9H/ds7Z3D+Lquk4KCTYP0loY0TCTd4/JUxVHedC4D+eEP7J3BnmP7LVIo4FPtw/77UipGQt5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"t1OFg2Iz3T8kEB1m8mHnPxB/s77iPZg/Fb46a3fkyD9YchG5NWXjP/xa3BhGbtw/DVGjCbiy4T9UUAYLxFrgP4rBeu3LwOY/yidmt/2Y4j822VictD/NP4TE+Dr5d9c/mNhjiNLT5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VXnlpDPU3D/YyVNchqTnP/pvsZ+fp5g/ecAk6mxHyj+cEWhsqLfkP8pevArZ39o/MW1xB+kg4T93DXCOoMrgPyC59joW/uY/qJPWYbo14j8eY2w8ss/IPyJ9Na/f9tc/G154XxBu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yAjBPC7u3j+7brbdrG/iP56eLzUVFrE/PsV4r+5jqD+rT554YqbjP+OOZ/iPetE/Uk/89rs81j+FMM6GgvvbPwa0MHrtldc/8zWYg+0e0z9dmZgRRjDXP2MOlgkDatc/lNeIk8iq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TzCkrYsZ1j+cJALb47vlPxBWLpxW4Lk/y6xrkpV/tz88soNGNeXgP8QxwHA9H+I/Qk8bzrkC5D+6c1lJsw7aP8a0mN7+IOA/2JRySFAb2T9hRRwIRci/Py0lRKM8+Nw/EEZnEzZI4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DAC9wS1E3z/jZbRAf33kPyCK3bNYg8M/Vwn3zgg/tT8WiSmO/4PmP1p2pqHt++M/kjZ+pk9E5D+RDLlcBpLhPxSF4I++19o/MVT9NkO/2D8oetxDYRziP5/iNozO2eA/UsFVBfhv5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2Ibu6DJ94j/mhtb5v0nkPzRbEFjwd8Y/7Q0Qw8sstj/MbbEHu6vhP/zYnuEJ1uA/vaTQVAfc4z+Vr6xm5+fdP/FyNuBTE9Y/+WF0hxNj0z+yXuAbpmDEP+pg1c13vcU/Hbs3BHZn4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pYZqpdOM2j8mYwbJtlzkPyjLl4nQJcY/BeEWt6XezD9JZEyL/3PiPxY4/M0vxeI/X0DjRtBQ2z+mN7brY5TdPxVpfXnynOA/mekM3o6I2j9DtfLE93rlP+Sf4vru9uI/m+bCKw205z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fXYDn+uE3T+yQZn90pnjP2ANS191bZc/846/kOZJpD82NtyNT/bdPyBmUtqMENc/kwQPzjGJ0D++3g9rUkDDPzFleX+3L+A/yPRqwqJv4D9vP42nYC/iPylGB4PrNtU/1PTrqm0T6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"RExMaEsC2T8AecrTLwblP1jjH7kZI6U/81cWDEMAxD+TR9T8iNbGP1Qchr4KHMk/gWHZHPXJ2j+wvSa7V5vbP4bC0Vko8+A/BgDpMWRI4D/Q8kXwNKLbPxcCzcVyKNY/81CNVXn24T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hZmc5crW3j+JiIABtZ3jP2aMDMTfgKI/PAJr1LKEoD9Z4cOdKy7jP2m3knt+J9Y/cOLn0IG94D8Gc8MBSvbSP21CJqOyT90/K7xEXmRA3T+W6XEh2traP7bTWVdBYdk/KydXViYg6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8RMiZytB2j8umE+8KzXlPzisT425vbQ/uyEKyKMI0T/gKoRo7ErXP+WAKb7Jfd0/zExKzDNs4T/AOBsK7m/WP+YsWijEddw/73gAhdma1z+V/uK4Q8fgP8w/OnFQleM/TOqRQRrv5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IjSPvqFX3T+bdizYKUvpP/+4tUC1ZZg/k6WqY8qY0D+UZ/G0KcPbP311OEqRrNk/a89Rm0U72z+loL4GDqXXP23H2Lc32uM/eMcwgLhr4D/f6MJStF7hP8/QiKDuWNM/tyT+9XNs5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+SHe0GOw3T8G/nxzuL3fP6Wa8d8pmrU/f+BNThBVtD/T5h7l01bZP9Ml9CFMxN4/ogRyKveW4z9RNQi2GIndP0X1Dn8AM9g/VwenlrELyD9akDIy1/DSP2ERfpniiOI/DB2ZO3/p5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gl30zksu3z+Q+xBDCRjiP2bkQc+TlKQ/j7w/p7FF5D8TD3W/Z+HhPx3UWdiEzds/CfBYEgR53j+o/dkYYu3bPz0rzj7mrec/NztR16Tb4T8W4Yke91DYP2V52wCZgsU/EwttQSex4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kgb13MXa4T/psFhuhWzkP8sj+2IN6cE/K+qcLfTx1z9ppST9iW7iPwPM/9IrFeA/NpRhyv5f4z/Ulim+sGncP7jSCg1IROo/AMQeJCWV5D+9ABvNnerZPzzoutL7odE/orWxtNNy3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gbb+WnpN2z/0u8TShIjfP4eBkkhspqw/Da+g+mUzwz9wM51EF7/bP0q7mJxseeI/W/EBxVPu3j92XQmiBJveP7sQwZA1DtQ/Kyvxl1Is2T+G5ZOS5EDVP2HllLZ5u9s/hw7YSBme5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Nw1VZmUc3j+KgJqTOEvlP3mIRjk9CaQ/0lSVlQWbsj+wIbI0aDDiPzzDtejgeeQ/a4ipM5sH3z9X9ydNysThP5eMTpntL+I/Tk0TF8HO6D/msXuwghPJP4TZbYEcM+A/UL51r4IW4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"U2ax0GsT3T9gs3SFoZHjP3QUr0DNCKA/65FQURpBzD9Q8yNaW2DmPz9mdUlvs+M/LsTMrnED4D+PKcmZsmPhPxjl6NvDKeQ/K8m4MHo65T/VlzDRCyLKP/BBiX6aY9M/NWYTm6at3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yE+5t8xh4D+daQwwRSPkP3xWVEz8sK0/Z7WXf6HVpT9rEiEFqDbcPzb8ivbuH9c/nao4Vcz+4j/I/SByf83QP3A4xq1FsOE/tliYu/0s2z8r5lERm0PZPxbELdnMQts/ENAl1p0y4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HVKvUImc3D8M3qZwywLlPyWoWbeDCJs/X17fRCl4vD/6NudGYfrZP4wiMkRID9w/uTNBMUlQ2j/R6JXG0MfePyHGll/Hf+E/iDkEA9Oj4D/lueXW2ee5P6Cd54JiocI/RdiOqRPf2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q8qvRu2n3j+3pbhOQbziP/xnQU3uMJ0/9o+nq3sFsj9ll1aH3xXkP7slmR7E+uA/GiOSpU5l4j/wiLZO89DTP2LpnGpbmOM/KmTSd7A94j+2PEtnbcHVPw8kJHqvUNQ/VOHI3Wi64j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oTOhhsnG3D92mf0vR8TlP1x72FVnHZI/eOHMZH5vzz/E7VzvTNTaP14gGLcMJNw/bhU/2pT54j9opGj0Gw3eP2pij3Ap9d8/Y2uW5zqj2z+I14URZzXRP2iq1Bz9QdM/NEvq17Ki4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gm12AIo23T/5bMbFynTnPxjEl3jhp5k/6oD+Dcg6wD8+uxzF/3bWP1paSHcEFOA/P5SktPLO4D8v4snGZK/gP5npVKeY/eU/8uHCUB6x4j8AxVgiupvKP+ADpOf0Htc/4li6DbcB5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tGwe1DgF3D/nkP+ON9zoP5fNyyNd5ZM/A/WCRzfouz/NY5SK+9bWP7HZSk39xt4/AiTV8L/f3z9ukCpkxIPgP+BpFKZyFOY/nZSod1vh4T9PTF/Nm4LQP6UVRQdwodg/fwIK6VrV5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0PVvBMul3D9wUwuf/WneP5d2jqEZK5w/ih2XlSwRyz8ZQTZdxFHjP0um7CYUgNc/uw+LUSWZ4D+n5Mi98K7QP/4TbOJRht8/zfPfEeUj4j+BSJyCmZ7bP/QgoAovj9c/lELejZ6U4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tVfT/oZ+3j+Vj3sFPyDcP/x2u29qXK0/fFdM/Jnz4j9XDC0uu0LiP2vMdAUsyeY/HrWFWxgz4z+gLsWFf7ziP+qYlz94leg/606Hxch04T/EOgPvHaXQP4vR/X2SlM0/PCiVy+8H4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kPaeQTBr3D/KybuRpOjcP7rJ3ETZZKw/kIsuxfnH3z8l63vS9MziP8a8fwvgTuY/y6BhHaK84T+wwpYli8TiP5mr//L8Uec/2Y5cxgWL4D/3NUvpGeDUP81wcunIgcw/Kizn3CvT5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ekxg6FLS2z+i6sKxwynhP24gCgd/2rg/k5p/KYXbwj//JuCRfqLnPz/7BRUJ+eA/XVMRddrY6D8fG0D6tifiP0ygLqX3OOQ/jkEnnAAW5j/YxfTnEZPKP+mLxeuB3tc/npvgCagU5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GLsEN2UC3T8I8DW3R+njP8ePd2S2v78/esySSuEDyD/LlAcbw0naPwvjvfAHK+E/fCchcZwQ5D8+OaW4kuPiPx1a1WKgTuA/6V23SIHc3j/uOWcpxq3gP81n+ZU+UtY/qWaWtcJR4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0nzqXJAE3T+mhRtrNhDkPznVnn8vjKY/Lp4055HwkT8G07eCD6jgP1j/5is6/9A/FGYKAhSt4z9Wa/+rXaLdPxXbPtOszds/PnU64qFn2D/XL4uWm4DPPxCGL3rPZtc/gS8gXRAZ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Xzr8+OpO3j/Kum/KlvjjP+mx1A+zr6g/12VyWGPqoD9qqf4F/jTgPxb8dey1xtY/fsGAVXR74z8kCD/oWynhP4koNOTved0/e56wI/jj2z9ED5zTUyPUP+yx9LdGH90/hjFiKTVS6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fdDDwJOR3D+bH63rF0/jPztypbwaw4g/kWrW1FUDuD/0B6lcb+vaPysBA1RQk+A/rcIhxnrc3z9YDcuIrujaP+x8VwcUG+A/+0I/LKbU2j/s6cUJ4lPhPxMkSg5s5tc/+LexCQRO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ghHYJEqy3T9aRy/oeh3kP2qh/EgGG6U/+Q+8GCmyrz/BW9lc/UPaP4lALIkCdtU/32eSPRJd4T9rs2/YTQLgP8nlwmKaHeU/f4qbHtoN3T/hT8Z9G/HgP8xCl3yiW9w/3zZx76+n6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Urck1ET3j/jo/oBttblPzr3ym2AnrQ/QDIdmbOlqz+8bDdn6QDYP1f/HECPp9Y/zWRxJXw44j9xEjQ9heHdPwdXFWog2tU/Ttt5LEtT4D8yDLP/X2rlPzw+oYyJsNs/+qXbrvVn6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+D76TRcj4D9dr1kFoinhPz6xkkdKGZ4/y35NTQr70z8W9UhbAH7lPw+i23t/TOQ/KaXaBpYE4D/ddlzR1xnaPzmzOH4bAOc/rFSNVYZF3T+6cwUGLQXbPwvZbACSg+E/nLv+sT2I5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"3n5OXFDu3D9q1AjaU2zjP1wDB9BtIbE/sxy2myveyj+HooLYXzvoP2epp1+IJeY/MRLypl162D8kVFHL123OP9bxHvMYguI/9TbczscK4D+VuJHcfAXhP7ke2PLDzdY/wOVl6Bye5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"xpJU4MRo3D9NufXQVBniP+5YVE+8K7I/p1rNGwh40T8kjiiUfwXoP/Ut+wjVgeY/vMpOyAhG1z87hrtb/R3RPz9yvWCIcNg/hFbwJiLf3D/9iSiaPy7hP8RaRvmXLd0/NP/1Dg7K6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Lr8Dsuqn3D9Vwc4jY8HgP1h7W1Gk+KY/Nuj98bF6wj8oTVF5ShTdP6vUknY+Xto/DkzSHlhc5z9WVpnudQnhP3uisKoy2to/TYCfFT7L2z+txpCtaYraPwQlOcaietM/rxjTznnd2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HSHLrTG32j8YxGaZ8a/iP0NvYBfRSqs/HJGnCXMU1D9lpcvAYePcP+HHBbIgudg/WhpB+nag4D9IWJy6QWvdP3slA94mCds/cwMLmpHV0z/qZrgx6bzRP/9/lKn8PdM/nhGWZC9D5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/UehBOO73T/QK7Nwe2LhPx7HT675A5Y/NZafLpoL0D9eJlh8c3XgP8JFETSszts/s5m5DJP34T/xPFAnxp7gP8GpN3f8rdo/h9XFRhnR1z/wrcRwOCrRP22OmbD4gtI/6vuMBObn5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kIPqQ8IC3j/sHJ5BTEjaPx8VPPArq6M/6VSvBggm1z9qkBX6si3hP56AGjSCn98/+YUB0yjV5D8NiKYkliDZP3I5tA/4O+Y/NdOtBJv34z+9839aA0HVP6XUW1lWwNY/A+qrxSug3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wrNlGPoY3T/jY/JipITeP21o/qfJzZo/c7ZqIIA/0z/X4CjiiAHjP+1Qon8dRdk/QrnQSrEC2z8cT0r2wa3KPyWhD3WvB9Y/e1sNRhzR0z/SexTPEAviP4hyFqsp5N0/zzYWBlHY4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q2ogRsXe2z/lRkyE5WfgP8mcSQb+Y6U/emeN1/0dyT8o+QQJZKPZP0tsbAjF0uA/A2jiFLzM1z9zkHhzPpTZP8TOXEWNaOI/Umf3OEbV3j9o5kiru9TZP7MhIrQ3yd0/7Mgpk8aO7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Dt1jbe9w4T+Ec54OlEXiP33kyFlCX8Q/1SNHAw7HxT8oahSOCeLpP5sDR/X9MOE/jkxP5hRi2T/s35d1WOLCP8IlSfieBeU/cEjHF0ST5j9akeaWSRLmP6ef4xlIEuU/j/s0SeV25z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CosuoMFc2z81tj2krEPfPy+KeK9rArA/YD/oHVsl0T93WmjD+SfXPxx3NMM9290/fcfZVPPY0z/OEmJBoPnXPxGGzwbtz98/rZhw+5VW2D9EASlSdDPcP30j00H9Kds/mAgkDzbc6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0Mv/M57M3z8izdkoplvkPwqV8+fecrE/5A6adpUN0D9IPreDYmTnP92P0A8jDt8/zrT2qRNo3D9eF1cZZE3TP1CE50a3otE/BrJdm80A1D960AKq5S3eP56C9MJyoOA/5nJsy84d5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BErlilLm1z9GUJiY7AHjP5HfuNZcDb0/8aGU+63JwD+mtEjzNNTkPwLFxmvGAek/4ShiVlju1D/IW0BEwgvWPzB3do+2G9U/YtrlMfVR0j9AbKJmlu/fP/zNEN55etA/jFf6Cy0F5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kI6Gt9ol1j9rYNCzQvvlPyRjS2MozcA/xP9B0gRd0D8+6AK+U9ziP27J3DuaxuQ/R07PGWhgyz+3SN1SptTFP7aavKNigdc/ej7fg9v92z8W/YF2H0PgP8qmBsO1i9M/AyQn+/1Y5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WDFEoFAY3z9hAWamikfkP/x19sDGsaA/4H4iXxLcrj/LyBX1RMLdPwGbK0c/3NY/RbAl/hkw6D8Gz1OGJ6PhP3YtVUAFkuc/UQY3NzZl4z8Qo0i/eAfRP4Y5EnwMSdw/Q4XA9uMq4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XMsFOvlR3j/LgzuczJzlP/h/DpSsr6Y/k4O3ErljuD9D/yDaKqnfP7LvNavsduI/7x6aH3Rx4j9WrN/qCY7iP5+X9N/86eI/Kkymgye35z8/Uu4tgBvOP9nO4j6qK+E/BinlLWqx5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"0ayZz5S62j86AVcUHhvkP0WOthZO46M/bf68KlX5nj90YsvKfmDcPy3eeOeCItw/wP53PQbR4D8Fa7YhnzHZP/+A62NA6uc/wnMc1EWC5z+ES+6vLDrdP7mL0BcDEuM/zmc2PN185j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GNA61K7y3T90+2z4ggDkP9imoNLlAKE/AFJN+BiFvj+c/SVAZNffP9pE9vofetU/1HwJtTjE3T8wIlg2qJTbPzHfKh/JK+Q/InnW3sGd3D+Tj8gSfjLcPzsFw/Eoq80/tl0xQT9X5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KSbD/AIG3j/4atsRhvThPyNaV0xZRKE/Ca1UVY3sxT8YI1VnD8/jP9/xasJSNuU/DN10O8U44j9d1ZcIkNjSP9o4ph+NCt4/aEcNFIp54j+SZwZZ6lLWP/AeFjB/388//u8XsKn33T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rPLGs82v3j/u0xEV5hjiP7o1cEvEDJ4/D1BMpT0Rxz/2Ri+iHDnkPw2Cpp9tq+U/bqTYV+rR4T8WNLrqRc/QP9Lx7/LwYt0/IotBOuf13z8BG7tIgcfQPzPNzZCFbdU/37i3PjyW3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2GG7cPYq3z/gBWHjJYvlP5JjYtzjCaY/RaHmschksT8bWZfRt3rdP5YqFrzuKdc/7HaekdM+4D8b8zwMgG/iP4DIw9p1IOc/0tUiHEAX4j8lQzT6CuvUP4EYfm3QUtA/Nnj4tAf35T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GBrvQ+J73j/OglRmfO/gP82lxdv/Grw/ndjr89L/yD8AtCqUi9DfPwe0DDLBlds/6tMAEwPo2j9BnQje52y4P/4TbOJRht8/qGWIUTD32z8xOQQIg3nWP67qmpNl39c/l2UaZtHl1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R5jrnUuo4D8dzP8NxFjfP3FayUMWXLU/qnzsbHNFxj9BEvxM27baP0uZQPO0NOA/qwrPrUvN4T+5cwBR8JbOP5Y6ZfD6x+A/uDtXrseP3T8dXOV788nGP+YFVFZhZNI/KuhyHsPl2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rIKEwdNw4D8nCgoXQM/fPxzRGra4tbM/UmEKtDZG1j+gknHFWUvqPz/ce0k4X+Y/fwOzJtm03D+yh5Il+Q3iP8WHGvglJ+I/37ljdS8Q4z/wqC4kk3DJP6n5Ly8oeNs/eGS/4dCy4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qq8LEoXp3D8BC4zarR7kP5XSMBQk6ag/1LqTYGUzvj+lednDcZjhP8i12nvQ6uM/MBtML1Is5j9oQIfoPJ/XP0nGq7ynX94/6F0ffV0I1j8gWTVMFNTdP57UdCGuV84/n31azYAs4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"33+pZtpR3z9Ft1xQ9KrjPzSeakp2eJY/8nSIURAjrT/8DNFyeK/mPzLd8wWd++U/qkqHqSRD5D+S7K39DSPeP6Cx4TVToeA/NOfJy7rO2j/zBiYZmh/dP8PjPe0D6tE/eV7f2WNC4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"u6bNPEY73D/EleJ3w0PjP2s8jipxb4Y/2Rohxu1Coz+kGlaOODngP3AKUkhQldA/HwzATOkx2T+u3seQDw3XP3+VVIjLZeM/yYn3imPa4T/zp8ITxpjmP4UDBmhwseQ/6HpQxThD6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"g3CvxKsR4D/MxgE9invhP6ElX1PnVbQ/VwT39bhRvz/lVInCm/fdPwxOLSVu5eM/jbR4L/wT5D+M7Q9q0RrgP5b/bHBkQuE/NUya+jPu2T8NTrep4JfBP8S+29Nn88c/4toI9KPf0z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nEAOqES83j9HqPO5MZLmP18yZnD0AKo/p0SLtKoMtT8yW0NQbOPnPwjQalyqfd8/6jCt6/3Y5j+QlVnZZ5TgP05uTK30uOE/9SjWifLD4T8Jkf6suQfgPz7fzAP/ys0/xhZmwiaF5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XrFIW57u3D9j7G2xL73kP1BQaPFCGaU/JYj1GDKLsz9ufpkO0bvgP99jLuhI2OE/YO/97fcH5D9UvUESpQnlP8r9aurhFuQ/H9vP5gML4z932yP+MYLUP4ib3h8YMtQ/MokKcb8G5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d8hV0LQg3j+5QGEhRyPkPwAv+MS714k/guATp4qdwT9/Kiuqdw7UP7s07pF1T9Q/+fnmqoV94j95Rur03nnQP3T9eSUncuo/3wDjZYY84z+DPlM9kpDYP6MhoyudCdc/yWOxNCWP4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JOnrcaKS3D8w5zwB5n7kP4fOaVBZYo4/cuZE5MFStD8vAeEUJkLRP9wnqAbP2dU/uNnnBpxK4D+BYKDiRFnUP+1vQdk1WuQ/WwnDdePJ4D8kJ7P3re/YP6EWs0dB9do/VdHY9rHC4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x4+atnzP2j++08VLN8fkPytHHgjN94s/sgkfMNKcqj8alpBKFgrLPwq1MJAteNE/WwXdJLsI3T9NaC4s6vvUP4MfeHVE3OE/n6qWeW4D4j8jF2FXHsbeP9mtD9RZCNo/MvvFNzGz3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QIfhN4nH3T92WrWDXCbkP9ryFK4124o/9dH1rZ4YpT8rh+84GFTUPzQhKsu46tI/qfJLn7Mu2j/o1U+M+XnYP/t94jfDfOA/llGEnPex4D+627yVBrndP8bjiRV9Fdk/LjGGIoTp3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6Sywdhnq3z9A3D3w/ALkP72Su5fnl60//FBtjVTXsz+629nnVFzZP3iIctQUBNQ//+8a8Msn4j/hLewX5frkP5OnJFUSMNs/pRZVvomF1T9oqQoDa4DSP1U1e69j3tI/FDWbyAas3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HM2i7gOV3z/03sD+Gg7kP7sJ49GvJqw/JDC6b2OMtT+XKdpa1X7bP+MA9MkItdI/lGIEVS3r4j8z1qizEtzkPzlRFFPPX9o/Zxlx3Bra0j9SgD6UkyHQP2C75sYKjNI/6uO/S7c+3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"R5nt5zL+3z9Co1UFXp7jP4q3gXR1CqY/xdVhHet+rD885+TcXSfgP6Di6zovL9E/zGUa8FIj4T9cFi/s0z3kP5r1rFCvi9o/7ae7tYNs1D/25PVkw2TSP1uyc/H5KNI/Xk53+hYw3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"z4ApATMu2j+TOqK0+zzkP9VCehNK5ac/nvrw7Cj6rT8rHCMoviPhPxa7k3ct6Nk/1txv4n0k5D9C7K3OtzjdP5k15stOpNQ/eSqeahxt1T9uF91CNmLUP1rI8Ycddd4/q75BiHKg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UAzgDPVo3D9A/2N/pVjkP9zpdxQWHLg/UIMwoM55wT8VvjkaxXHfP0SNNCtm5OE/t0uXN0fj5z/bbRJzMMrjP4s4N04G0eA/8hhB7Gak4T9OApEJBA3gP+Y8zqrOT9w/73pX7Sq36D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2p24VvP45D9SztfDdXHjP9GwU2NKQbs/elRXbG29qj/H7sdBQ0LkPwFKmyxs3dA/Adzj2hQ73T9IlAyPui3bPx+rPrBuFOw/fe96FaIJ6D+41DXVR7PbP/0UPGiIWtM/0ydHhSx90j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"IsnPdx+T5D8BsrXet0HiPwtIZlXPIrk/XGKVQQTUsz/CA8fgjxXnP0iHLEfuPdc/xvppZl1w2j86w6xVyWfZPx8CtVlTcu0/EkZi8isz5T8/66msicnaP0jVBYbmENM/uYiALrHu1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yLvmdfSj4j/1Gx1qGOPjP8QYrzdh+8o/C/LDkpNhzj+PEENvnPzgP0FEYNmNod0/LK2lDZTW4z8LJZ82zbHYP9Si84U2keM/l1Geqe583j/I9e4h/g3YP5IcUAffnuE/qcQKOiy+2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cT+3atBW4T/matqS/rHlP45CHBZttKQ/8vPG9slsuj/GWHZxp73kP7+bhJRi0uA/CzfvGyoi5T8sOg1ajbjhP68XSKeC/uU/L508W+NG2D+wxg4BSwvTP20k6I3wU9o/SNGUYwZG4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OSbs6+5x3z9Gjh/FB6PiP9MNSOfWDMI/pXH1xz8CsD8nQ64Wd9biPwt+pv5w1Ns/sxJnoA0x5z8D4D38bxfgP/7GyUXIYOI/msdDPie64D/whwWAJ6ndP5kSyOXaEdI/whWLzRxc4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ll/5Bw6F3T/pyXqRjpfmP06uFycDHJg/MtJ7C+Vavz99JfIZNazbP3/28J/nHd8/kuoNg4d/4D867s9TEyriP47T7PF7f9w/eqpxtFXF1z8djm7ObzjYP8LPOabuaN4/ULukGGAg6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"klUZi1XE4D8l4iyxoHzhP5bYdqdjk7A/WGzX9VYHxj+xrxZ/CHjdP1rlWfBOf9I/Fl1jHAOC4j/s1yzp2BvYP8Fi501PmuY/G5FJOC6E6D94jSCnbqLTP12YOppUp9k/MkRlHgOe3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vKTcFZOp3D/mM49cYt7kP1IZ+sMR9pk/VyAdT8wFpz9HRQwOfFXYP5weqrBOVM4/s6EEhemw1z+30QBqo0XbPzQtiiueF+g/ZlgemoQI5T86KNb/cAvaP3WYjRC5BNc/JSsUf4KZ3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jLDO6q+B4D/pK4wfMWPiP4atonLWcac/JarxL84vzT/FHiUj2jbkP3RjJd7ydOY/YyOq9+3c3T9c8EwC0yPSP2ReMO3Lwd4//j+yqa2V4T/0t51eisvUP1OY9O9USNg/+00/m5h86D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"OAUWxliM2T/Dwbjbg3DiP3KIMj9dIsM/EUMdg3fCuj+jLg48BhXmPyMUt2snheI/eWRQh0vK1z+KTYp/fd/VP3tm0NlJeOA/dstePb/T2z+JKO3qJsPbP9XcMu2U7Ng/86RWWTWR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VDfgmGT73T8VwqbVZ0jlP6YlW4uF1ZU/ZcnXgKuZsT/YaZnbIWndP6slnN48OOI/VAAJF7tP5D+G63a0SHXePy84+5jeNeI/rNAcWGhY4D8xahpMHIbYPyK7+i9CctY/TiM5qtTy6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"i+mWoiRt3j/XaLhuWr3kP0D3XZs74Is/FtVyzPP2rD/cK4qzklvcP5PwlZ2ffOA/yhnGuoYk5T9wM5Fr5lbbP5vzgpUia+M/i15sLN2g3T9XK8bRek7VP6sRxuPFstQ/L+SmNhQJ5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"JfpnZgkQ2j+cxFBD8VjkP2FSgKz8o68/dsca6fh6sD/85jtr25/bP7iue+UP994/sF0KIKfE5D/IlHFPmDTiP2OrtpkQENw/+SdPXNtl3T/w7rX/lWnRP6pFCcGdbdk/Hnt3aJqI4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"h9cvZ4us2z/hjcYKTrnlP4Yljp5CFZc/P61/jCC/tT/j1g7ofJfZP+2zEDJiktI/pup8MS+15D/Nr6OuPxHbP7aJ1/lZ/eI/5iu2+sEr2j9PZaD3zvTSPxvYV7SeWdI/Rtil/8Yx4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KSkPLkD73z8YZ1z72GHjPyj29pRFGZ0/7Dmfg4U2rT+7GQGmMw7YP5/xTdNhDts/S09euK1x4T/vpKMSIR3aP8i443S20uM/BfjxrNeQ4j/S/xZiC4PoP8a8JeeB4cY/0904MN+S5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cPuvlX9O4T/Ce/PNNb3jP8vSBspSueA/TrKeYnB6pT/boLBOIqziP9Ot2LmGvtQ/rCmKvRWF1T8HoWlwjU7bP06BDjDewN8/0qnPG+/K3j9d7wyNdm7FP7fTMARI5eI/3yNyl6414T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sov0+5k35j8yYU1Ll+jkP4kgWu/+ddw/27KLcDL7tj+OWm7JYP3ZP6vAaWJ7Ddo//p+UCv+B2D+ruFPwPebdPyOcWYX1odo/3CKsBe4K3T/nyy/pmOfaPxim8FdpRuI/MKbEdy8p4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZFQ03IX75T++UandiFrjP0duZTgXEcI//MLM8G5csz+6nKSsCmPmP42K4f9waOM/Y2tl1ryw4z+ANzbUOB/dP+WOFzulFdw/0RNC6pDm1z8IADb/OzfIP5gEoYrpzMA/4RjELhSO4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"WYreaCcX3j9IetmhzdzkP0dE/rUSd7U/7OxuVLm9wD9cjlgBxSbaPy3eeOeCItw/Mm6svuuu4z+rx4kqWlzgP5iHkYNXrtw/vKQKsr3J3D9a8AFIeE/cP7Kv3bglTOI/lbWMDjw45z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x1wP1pJE4D+JVXeOQSvkP97fBuBPFMY/1BbQzTacuT9iXlDD8yHgPzTdvfFHU+A/at9N0bm73z/zoT9btxbjPzLWrGlOudk/JBbY6jvJ1j8i8nl1UoveP42AEfTkxuU/QGobf6AX5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"57KaE5yP2z+G675qxsbnP1VkA8S2z8I/vW1P0gptyD/UxKSMg/TjP6s5CCzWu94/A4z+OaeR6j9N003jppbhP80+YrKPL90/Sc7ZRZSe4D/V5ap9mvjWPx83UtHl1NM/2ROiDHr76D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"l+JNijJJ4D+k/MdAQz7pP9AUydE96Ys/3+ztXGWT0D9pjpwqUXjjP/Gp+4dsiuc/N541cBQ24z9sX7gpHw/lPx+lTUSdU+Y/9cRjs0pb3T8T/JcScerUP46Y89D7LNY/AWylez2n4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"25WdxdAg2T9zOBjwag3mPxiBVNaEbpk/H0FLczrGrD/ZqFBjHTDQPwQ8ebz4c9U/lJ9uanST1D8J0MQOIDnUP1WyG6+4eeQ/qRS63N/j1T+NjzhqM5/bPxOz+xh8L94/tRL67v7g5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kgko5XVR2j9VEIkeP7PlP4QysGH65ZM/cS/ogFEwrT/aA7npCeLLP69mHhB0kdQ/L/id1aVj1D8HK0dr69vWPy/Ug8M9BeM/QDMpd4Wh1j8/XSHXNYLcP84VKlBNid4/PTEf5go96D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"UJ5EWI3P3j/xB0W8zg7lP6vXaJ3Abbo/gZQQLNjKsz+3VaPJiDjaPymqlcQpiso/v6nTD71b6T9FhobQ27/jP4URucTA1tw//cPjRzX+4D8OSLVMbgbXP7WUOeDrXMo/0GPPsspV2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ktvq/krr2j+B2ETIeBbjPwW3iZ0SWaU/WKuot3H5rD8lF85oyYHbP1bVFjOG8N4/0668uzAz4j+XGw5QspfcP+nPZwe/KdY/73SiMIuKyj8RAqzETI7XP9yf+8JGjto/YQSPus/75j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Gyz9vtgu3j+uEyRSz03kPz3pkv5qQow/a4YHX2DNzT+m69FOXHfbP41bgJ+BkNA/Zsb+fyhi4T+GV6lHKaTcPxJ0ce/ikuc/9Ch9HWV05j+r6gSBUmPbP721jpITJts/mbH2aVTw5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+mZminVQ3j+P33v9rHjkP3WK1BP/6I8/sVcFL/F0xz+Zf6MzgEDcP+qc5auzbNA/XiZ9F5Sv4T8K1zEQ6ObaP4xHn0l26OY/T5XWUvLm5T/1pfVJf3HcP5RkD2Z7aNo/f801kEEi5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6T3R35Dd3D8E//yHo3LjP1AmaQcJHZM/AK2E6G8GtT9VFFfBLMvePwK6PMXkmt8/TvAS7egx5D8TiFLg5DLjP+3GzIQ8puM/F4HSKkAd4D9L214KECrdP+rmMxm6bNk/aRI794TD5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FU9rS3+Y4D8yzYdusUblP3cd3weoCbo/4sXAi365zz+EulGcFynkP9ZarITiQNk/ASbMMVNZ5j8GEco7k5HePyvBTSlmZNw/tr2rzLO+4T96cbH5ernfP9ZwaawSz+M/I1nnaZw/6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nH1GH3su4T/w+z0HcKPiP4+CO9edfbM/I/htLyUxwT+ebWyH2VDjP0+1nh2eHOQ/b1TyVUey3z/e4OUR1bHePw1OErq26dU/Fcx7VffD4T/II4Q33tHsP9XCmiOYdOc/PCr/ivft6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"QpYk52hD4j+hKNe1xHPkP2zD2GDO9sc/D6qLNo2h0z9A16AaBYTlP/9OpeHSgeM/c9ttY+Dc4j99Vcc2OHjXP7kQg59LsNo/W7mGc1ID0T+sRDc64xTeP8O5y5psAeE/ELIrfIcx7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qEUOGP3H0j/Fdl8GxpbjP5S/mWDaSbk/a82nDfqUvD/RUALw6ObSP3rzMqf6Os8/8lNLqZAD4j+/crM1mRraP1c8oKM8QeY/IRncaV8Q4z/EA3T4RhDIP1PPL+itBsc/ETGpy1EZ5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I/1lI9hU1z8kHSqzljHjPxP4CxRcNsA/IwTfQ7AfxT+vP4+RuhfSP+cXH1C32tQ/gApWNY754j+tkHRvqEfcP8KPZTQolOQ/foiv1u/35T/mh9rXPvrQP/VZ3Rfnis4/h+Wz0Rjt4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x61Iur933z8BeWOyyg3kP0hKqda61LQ/GY2vmijHvj8OtuPzFjznP6aaLeIZheY/T7hFTZD73j96MeLjy+LUP8FgjlrhJ9I/OKkDavdO0D/KDq6fEgHjPypZFcTe8dY/sUnbP+Sz5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9ENw7Vn43j8Tue6mLDLkP3r6ngZDtrM/BaGBnGfIvD85dXI3h7HlPyUtmFapPuc/Mi39Oepe3z9VmvydG4vVP94Ye0MAw9Q/Jtmnft6DzD+dOrxO3c3hP27KwQzNg9c/Hkx7gI1W5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GKUlENfJ3z/2AF6SDCfiP7Fn5qVa4Lg/ON0jWJSC4D8JXYuc2UblP+/xZwLa+OM/+4Jmj3qO4D+RK9CYavzbP46gaJ2v1to/bYPxLsD32z9kJF9iUW/UPzN3haVjgt8/mA4jBLeO5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"y7cEKI6A2z85tlKSLSrpP2J7BF1wYZ4/qFyteXU+3z/A+/7Run/dP2ZB+KNfzN4/Dmpgbh1p3D8ZxdpEkxPYP+qJnidZodk/lzCxIIVu2j+85XHZhTXRP4k22wR3GNc/Id83e/+O4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"e2Zl5YGl3j97YVu7KcPgP0VGv2qhBZ8/W/zDNxXJwz/lLoLS14fhP66KHrlVIN0/apUd5RpC5D8J3d74F5vePyCxNgpjvuM/75BGhlns3z8aANSjst7RPyxIyjs2R9I/KrJOREJ15T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Fxd/A7vO2z9f6CjOHYXmP9dRcYVwK58/ya6MhkIWrD/S8Oa+zTvOP24YWm7B6c4/DQyINlND4T/t4QcKLuTgP9XcjogQNd8/8Fw33Wt/4j+29yRF5BfVP8oyW8JzDtE/i1rLok/73z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jfy51B2Q3D81AV5oqRTiP7bz3/Z04aw/tpKjNVRTwT/Jwjw3W93iP/xawY4bmtk/7NKgPsLO3T+6qP5vjyHQPx1B63AeEeU/m2wbADXR4j+ao/FD7WvPP5TD4+4FTtg/Qk1Cixyz4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ALoHBPxl4D/MlrbLwpXmP0J45aPHrKI/PPqTqUuuwD/XKljVr53rPyqdbsNO5eU/ldVAYrOo4T97Uzjp0ubgPzHLICFFMOA/v3QlQzDX4D9BbqUvGU7iP1t1aNnhLN0/N43sP7O65T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"md7sofLj1z8PYUrA3xrgP3p5Vys97Mk/jRN12pCbyj+HnZ7r4sjlP0UzjFWGIOM/icpFCDuK5z/RAmzu64niP3zRv2QD9dw/2J0KCOv72D+IR2ZxCP7gP4WGCmedgOI/Zm5lGGkH6z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1HH5syKY1z96Mcb3sQ3pP4BRSL0Vt8Q/w3a63/ftvT80a2rNYxbXPx/cWNpVvNk/KD27TSaO5z/IBeBCsIHhP29fdj5u3OM/XFYKwZ8l4D/O9X7KSKHYP5mcy+iDRd0/+f2eRseE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"euoWPX1J2T/T32oLSpzbPxw41sSJqMU/L/rKnuan0D9aiE4BjcjlP0BL3bnxpuY/h42IbObU4T9hleSqhYbSPyBT7pF9rOM/mr0OxySe2D9PAqNebR/YPx2r6odJh9Q/LNPTw/L45T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jg2kwY+x2T8jx+OoqPHgPz1mWAYi28o/cSwt0Ah+yz8Px10ttTjiP2ZmfO7+wtc/woIqniEz1j9xUKZcpLLQP845wK97S98/MBfNyuV53j8aAYgIJQDlP32u35Sm7sk/Zr+bXyow4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"6xvC8w3Q1z+BhW0zTCvjP0e7V1iPFLI/VkZ/ghx8uT+EiC56HsbfP/3HKCEDXOU/HZiDh/jU1T+0UmpkgYzVP//jgrN0YdY/f8TASRIL0z89OhkUGoHeP5dfD7ghW9I/HpxCWdN/4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HuEgK4cb4D+3ltdVKuTjP9mhbCOiYZY/Wzq0zVQYsT/HPjYQU1HaP6J6wvGyO+I/rTE7ezNM5D9aLZf0YeXlP6XWrOr78+Y/BTKKUZSo4T+dI1pDWpXRPyohuLMtC90/XvhLzrOe4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oLz9LsCV4D966xufx/HlP6zZKnmAppc/2xYgAuvYpT8R3ZJDR2XlP28/rScOyuE/1aZehCB55z8S1pCw33zgP8als+s+4eY/ytFoHAmk6z9dOdtQDuTVPzlPmm4/Y9M/3xFm+di65D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"frYZT1RI2j8+ASKw7jHhP45d7l1q27I/va8iJpalyD/y+kU5uwDWP//HNUaE5ts/cKg2r08O2j+NibtgsS/bP4/fX64Uq9g/6Z0fTvD+wD+yZd4xMF3SPzDCpM6O+NM/dfe6Jdnq3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"HCZ2/izi2z8ztLTXklPlP4nRQGZehoc/fjS+u+2g0z9VEL5ekevYP2RgdUqv29I/Ba89H0qH4D8e+uLLVbLUP3ws3Wars9A/0emBxZxg0D/pGD6FWubUP4DTQa5C5dM/rCA07KGG4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wzx2DIN/3D9EIA1J6RzmPx1J7DuysZQ/tUM7/POV2z/X7qG0bWrbPyv8LrM+l9M/5P/ai9Tg4D+vywomCwvUP2wLQrYMB9o/tJhO6FGw1j/JqF7ZHZDWP4Trgv2wQc0/U5PneHp/4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rK96apCx1D/A/XZdSSLmPw1HnpvJjck/IHhmp3b0uD/PzP9hQ/bZP9YULcPFzdo/x6pjDzjj3j/ucxyHDy3hP8m4znKU5OU/QyxUKo8v5D/XtB3kNfXIP3ezgNCoBdk/Z7hM6UHA4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"GIgLXnDT2j+ydxrN0+jjP0EJ+rqyO74/Jc3odbfdoD+Z+XRHeVPcP4n7IcTRYdU/Ldodfd454z+pcL1UYcbePzj6GcR38OM/AIY382hJ5D8DYkk077PHP2gmeOYZ0Nc/Rc7T+qQu5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MR3ZB2Wx3z9nugsPwPXfPzDRuzHBHb4/rymW9Jq+2D/ko2MuLFbgPygc0fciSOM/fwEKpJcq2T9vzUq0ek7ZP9oCxZa7O90/TPUTqpHm1j/Tf1u3pYfaP6KGgLKBjdA/qA6d2img5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"J4hNEBKa1j+bAENmnUPYP6gRFOB3CKY/FEw5qsg01j9i68+gsWThP22E35vqPNs/1nhgwiH70D9BeQ46D1zIP4W35ebWUtw/tBkNEdik2j8YcPVZ42blP6aNaa3iQNk/+ORTYMp44z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mfrPWLku4z+DYCWofkLYP/O91UAAFL4/UhhJLjWI3j80OwlTaobnPxLd+YWOdug/BJhRfQRJ4j9MXYmK2SXeP3RS+OKorto//XNkY2fF2T+nl+IytcDOPyct3fm/EtY/fxHJO75R6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"7eagd2A95j8wk6GxMIzaP6S0FV97yc4/mpiPvwOszD+MA5Pa51jlP5upualIQeU/9yYyEjbV5z/AEvDEhM/gP6nMu9jfd+I/BrZTuz/l2T/cyTB5U4fXP/hlKPI1KNs/6iQOQyJf5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AuOI91wD3T9lHdpvoJ7kP4djUxx+Q6M/Zda7aWHNnD+g3kYxznraPzN+oH5/Wdk/Cg8n4Ycx1z+kYcvBm0zKP1ZL5p0H0uI/UeY4EMDg2j8UMk/6AjnaPyDXIlJoZtU/L2AVFZR25D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hR4Gnozk2T92pipsiZPiP70348ITr68/NVT3/jhKxT/Np/68JZfiPyKhi27GDt4/kZ6YlwOd2z9l5vP683bYPxfTp5HB/dM/JfQDBiwM2z+9Ezbwi6bRP73P2jOXctU/BhgKJOix5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"39wlfRd03T8artPaR9njP7Al7ftAgaE/c1TAyHn5wT9GnWv76TziP+BSnZ0XiuM/VaGzu37U1D8pyygAyXLTPwhsdb+Em9M/e209xVGS0z+ChUYpYmHTP+hsRjyD8NU/hfpSLOnZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"9oDKqC2m3D+wTuzvlRnjP7FzpfGN2bE/wZxl5281vz+GeyD6L8vgP09GZVyQM90/+vRUJkS91z99nsTy6RnOP9zEDtsUP9s/sITDKlSs0D8ZV08vThDfPwFfclf2CNI/2W076uEn4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"vWAK8vr23j9x9g4i6wvjPwy6P+/5dJI/a6tiIjYfxD92aFuwyifgPz1KWlhc/ts/GbicqZi55z8b/9XQJEriP4MXO01BdOs/AIMd6vQk5D84pnyM6pXdP6qyF+/3Yto/vS7XIojj4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AyczdnEF3z9IITsq8L/iP9V0zjeqEIc/z2st4qbmuz8uK750+9zbP2BQTlc54Nc/TEM4ferF4z9hwjhKYNjgPzHByC535uY/3z8O4hx04D+cu8ZdUwbfP3rZnFKPe8w/+UMQzzqz4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2WG5pamu4T9FBi/gSl3nP7BjSbqAZ88/4G3vU2CexT8Z/zgv1HTmP57o5HnVzOk/Lo/2Bxfm5T+s0P0q2qLhP/dG1VtVxOE/0Iv12fff4j/ZQ5AdOJXSP/TkZGR8w+A/tHv97u6y5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5ObyjLQa4z+F/IZqkP/iP7qzVm5hRNg/kOcO9UelsD8zbdM4O17mPxsdSbSH5OI/2CfgTdtJ4z/A3LQn6bniPwXZLFm24OM/tr6H47F+5z9zCP6wiZrZP3nqu8gBxNc/Ob2N2QKB4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V0c0aa3u3T9At3HFhZTlP9M/5oAUpMo/6lNOE5Ys0j9jfC0gRgngPwcnbkN3tOU/Ha1MQUYE4z9I37KdT2bbPwUgDp8S0eA/GEf3o0aT2T8rzgygfzzaP4Cm58vL3dc/GchmgstH5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"+wNlftld2z8pncOU/VvkPwKmgeu7Q5U/YZQ5txMUyj+ODsqfOkfjP6JeworKWt0/CQIwmw+t4T8AXMSO2bfUP4ma9GDncOA/sp4axl3N3z82dVTz53bTP64U0UglgeA/R/+GOzQu5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V52Ey5N04D/e7poJO6nkPzm/GKm3a6I/29GR/Rbuwz80Y/dhVHDjP0y/iti/BuA/8h7VHgxg4D/VX8unls7UP9qrfgJ7aeE/OP5519Tl4j/ErIxuM3DKP05Btv4Ql+A/fIX2WJjT5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"f7er1eN93D/yY5z7HVDmP1TDOKLFJNk/1MW4iDazwD+kNFniFlriP+VJ8MqMVuA/1qaAmw3Tzz/+9duDQrHTPyYysj0d5ts/jz5qgsAu2z85Jq+MG4jnP7n9yOqbY9c/5VjJzAll4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"008duVeY3D/ukDRsVsLjPyrvhOHI0IE/gPK4VH7YqT95p2fbi97YP/vepYVZvdU/hNkY5TAH3z8oZW9LHO3SPw/J9tJA6+E/ntLOB66x3z/gam9xM6bJPxYeLsYzfdo/oxYOJhMo6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x6VAlri52j/m4tXFWMvkP1XFE7LfZLU/waMoS3Vqwj/54+VgXBzjP/xmwDHpX+E/qAs9eYrJ4j8WC2rht5rcP1OiHzPFC9M/TVxO3yEl2D/qCQVKn8LhP6AbTgXKP9Q/8sGEfZTM4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"W2xBB7MM2z9Klm7nKXziP4es8+wq5KY/nAqSJISw0j85TbHRiKXjP0QNQnB7TuM/q4S7X0882z+QNkbkkFHSPy94gPIPq8w/KshPkwCV2D/RhHquf0rWPx7EAceW4NE/t1z4FYvs6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tyHDpQ2w3D/cqPZ3Mz7jPwXWqbdgWK0/6JspcQJs0z8L7wb9Y6DmP/KvHbbmRd8/2115CO1c0T8oFIRoTxbLP2wEFgbdHeI/zk/zLiSp0T/DFRwNUmrQP6NW383TcOA/xZwTm8Wa4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nYRwCIVO3z/BfSB6B87jP625Piiyh50/ip0My0TS1j9bl1edjkbiPzBSNGv6y+E/AiR+Aywr2j9LD+0NCtrPP48nNnz/QuQ/pNz0tmHxyz8YDIWyni/LP7RIc5hUMt4/ttGr95PA4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"p52PnoOS3T8PLofyiljkP6KVKZESGZQ/QYHoG5anuz+ZsF+c5dDWPwwhS9XUOdg/KEVUhM424D+zyF0TOX7ZP3kXYFWhDd4/yArbBYmI5T9A3STWQMfaP/4UT7JmJdU/o35znLLZ5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"25s1KEsL3T+ACTA9ybDiP39gNTLMiZs/YOqO1NEotT/IhSePSg7YP1CMvG4BSNI/Aofth/Mu4T8nveboQAHaP/TbK8Uk++A/M+cMrvdA4j/aiqez2ordP3aMQjZqZ8o/B8q7yfzR4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"wnFgDCtA3j+dzK4TwmrkP0P3Q6rhQqE/LEryUfVNvj/cXnqsHh/dPzGNHGG0TeA/CNsMxL3/4D+f+Wi6CzDgPzc/2VHmFew/omweP5Dk4D8dF9Gu0zLeP4g7dsL/YtA/dG228eiM3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dIec9+2J3T/jRQ/1L4zjP+tz3d7bfII/ka88ooovwD9hK9rkU/XfP52iFBo53eI/cyeHmRTt4D81FiLS6UXiP2LhEz1vzec/oVaU7rIA3j8R+jqg3y/aP37MkZF8ktA/yh5KvJCq2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TP6NBS6l3T8pn/BAz2zkP8qLCySRv6g/nzFu4kT+qj8scHMxBzDUP7v69CX7xts/L5RZ36Lf4z9yr3WqJPngPx3VblMEJ98/6pscOGox2j9+vsaTUkLWP6vcTaS3BNM/DkEGqAW22D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KGw8Xi1e3D8ie/XQfnzkP0DwhTMlOpU/4YkpgSzbtj8XAEMT3SDbPx1KYNhNed4/gApWNY754j8FTv/ctdfkPx8X860SreE/oii5V63c4D8MvQdP4mPOP3iCW6IO5OE//lcJCVqQ1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tKNSuzZl4D8J40MfB7HjP70QBtbU4q8/08Ot6m+Psz/H45QVU+/lPxqguK7ZqOA/lJyUwKe24D9hsFX9cdXTPxpCXs2/Gt8/jy+teIzh1j8qrj23dzrJP9ALXIRJnb0/fWHWhYzu4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yGKBXtb63T818Ebc9KPkP2NI64lsi7I/fKKd47IH0D/tZknXCbvnPxDBwwpR7d0/ZRoW0Zay4T9328WJEFXePxs7oQDhVN4/5iic8U0H2j89OaYFNx/PP5ZtEH9WCtA/2Lr76D3G3j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"2gtW1qcO4D/Q7wjXnlHjP07MQCr5YbU/LjDcWe4S2z83bgUXHhznP6s9ty5TFuA/z03Ags7o4T9znqCFSADgP9j82lDGluE/LsA2+y832T/kIKGtmzDJPwLr/zRP7NQ/2AMXhF+53z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8y4n4/Tt3j/d01roDqbiP3S4QGWPj6w/75/X2CXmvz+3g5vYqoDaP0JoK65CR8Y/tiy/2Evv3D+S7wEYHTjdP9T1CZdBT+M/Lktetabd4D/6IU1gk1XePzwHJzgcxeE/hLswGl4b6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"pDRovhFS4T+iN9ideUvkP7A9Kc3XJsM/9WoILX1exT/nqpNBH6DmP7sToPwn2No/Q9CqjnK24z+HURZkd/XbP2xizWETU9k/HWlf0dM21D92xhdnKnrSPwP/Qth4mtM/BLiBf8Cx4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Ytrpx09L3z+JpdbG4DnjP6UMmoO4fbA/NqXAyPrysT+sVIqXpE/lP1uEuqy3G+M/W49hidbW4D+jFdPjnQ3gP7Mqmw5isNQ/HaJ/EMjM2j+hIgCI9s/GPxQ0OqAhCMw/1XGLHUH80j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"DG42Mvih2T/kDbAFSGTlP7dRW5Von6Y/93iSaJ81vz+BhvK3MlzaP2iCpASTAtY/A0d+grCK4D9/BlGcUi3jP5Nt+DWJr9Y/Sxwi+u1z1T9a8eStEB67P5B+py944Ms/mRKC9mjG1D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"VnlkPw0W3j8t9J6hVzfkP38VhCHvGY8/EC17hq5Eyj/nYT3wsjbZPwONMsafkNo/u1votTNd3z9M/G6WSkrVP0DpjeYhNeg/HNLMszHr3T8fdT/5pdjdPxeakjM83tM/VrZhK9VU2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TxN6uVap3z+2ll5mLdzlP3/AJSxAKqY/DW89upcmtz+PfC1h7OHmP1FV4T7FJ+Q/7Vf9yumR4T+91qmS5APeP1KxST1Lxd8/LofxaZzn4j/iZrEz0zLFP5EpbhLQUs8/uzCeqcuP4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"cKdQWkxa3j+wke9OpiDkP+FZ12MtYa4/mZT4ifbFrj9MBu9ogQDjP7aWHVwj5uQ/znumvVdI4j/ZOkBBEEXiP5xwMGIuPOM/P7oXL03x4D8lRZzD7y3LPzZXf+07qdM/9SuhTLZL5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dsoi6H363D/7lJUKZNfhP9Yikj/2ULA/ojwMN4Buwj8mIkbU9FbhP1Yi+ErclOM/1utrYIcF5D95hnhkIl/bP5ZQU7WCMOA/u7kGE4JO4z/AuZ42mRDLP5P9L8o3p9g//fw+l57o4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tbI63yZX3D/ZudJf5hfkP9v+IHqoKrA/8fb0F8L4tj/ggIIcSCHhPyMLujpFlMw/DtnGgPJR1D8fxKcuupzWP5Mrj+78xts/w6yGt3iL3T/eMV9e+DHWP+9w+L9Oc9k/99m1JfGv3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FXL5UHbB4D8A8ghdIqziP9rc21f9EMM/WL09WmeFzj8t8FoQYHPXP8lvTVUKLtk/HHuZOk6V3j+q3pOGEwLRPxMqCk4A2tc/4U32llQC1z+kB+A+EyTSP+T1j9bhpNc/tngF1FeL5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZY3nW5JQ3z+Ua4diaSbiP3tQEjY3kcg/D/yh5pM0xj+ZRqWhWYPXP3mrnn3hbdk/upIe6Tkz2z95SnuN6hncP5wXWte4gts/wV9zhqrF2T8O0oo7tWLMP3OCrUgB3M4/3USi5oPi5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8KVzRaiN3T/q2LP9Wy/mP1kKLw4N/qI/luLKtFwVsj8kgG4bwrXnP42O7sXuyeM/S/NkOgGn5j8FZT1Da4jbP9W7s3N08uI/z3FBT7qB3j+ZhmIzD/PXP+RnTAyjr9M/himN7h2Q0T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"ZXevdGEK3z/ME/+TxdzlPwrwMEobD6c/UYEH/FDVyT85anBN5dfgPzPgfWqFtNs/gUwtstjW5D9AR+fPGlXcP+FaUpEald4/JoLzHouI3z8Zh+APm6jZP4WwjwMTNNU/G+voy4YM2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"gpx86Umk3j9I/4UBhOblP+KVqFINUqM/2QwsWASTxj94OP7OMzPgP2upmfre29k/NVnfnRfY5D+an10bcADdP/ZgOLvYuuA/4Q+C3xzR3z+/cpn1Xy3YP2/vSbolENU/euTh4t0u2z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"MY7TWiVa3j8f1oAW8qrkP1jtHCmN47A/MjzpY+DHxT+YX1U5kdrdP8mdiRdlZOA/WnDSIHG01z+xlYvhGPnXP2H3TuSi0tQ/0lbwDBXo0T+i7bSwMVnEPxS/M6nsAck/sCT/ZOLn5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jf6oMISl3j+vM/JziMbkP4UlQpAbX7o/wqfrDwqWwz/AHyfVHazZP/cf9CKM7N0/s3vTbgTA1z9oTE8DzPrXP3tDetCaPNY/Tpofho2T1D/VnbvYsrzIP7wNs/7XuMU/b8ySvNuE5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"tkwRsTcn4D/+/MRhxUvkP94nbO+jbq8/TMOXVcqtsj85J+NV2OXfP1XuftDczuE/20yjmIE+4j98OkGT363YP+DsGtR94OA/uqh3zlq2xT8T2BxBcofXPznVv9vmsdE/IiCdyB0C4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1kmBwEO13T98FHTfF5HiPxnMHhu85aQ/dXvITjYToz/BWbUwYX7iPzxeg2wfT9w/u20ak1nt2T/CNQuXNVfVP6K1m69bdts/3cC2gFKL0D/vsQtZzabZP/sJX84KEck/ptUzTJcg5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AbF++zMQ2z8B8bwfvpflP5Sn0nrHlaE/2+oqKGlyxD/oIgCDowbXPwQM5Bij8dQ/8YWw8TaD4z/sMif39sXeP76XSVi/ANo/+2RwAOrO2z/jbDw7es3DP/Gs4b8OR+M/E3BHkizg4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"n91BTWEf3j9oL3yKTNrkP+t9JMQsqac/14+wPQCRtj/mVjsGEV3kPySw7MbQLuI/hFA+rCGa6T+o9By9eSDnPz78qYLzpOc/5SKGbwN34T882DTgjLHqPzfF+1tn8tY/las2vmk96z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sYbM2xFH2T/vwlvjs+/jP85S3EHRDbQ/kZ3bzATquT89wEXxt2vgP5BGTDcss+E/MpNCAfiX6D8CgtXOxFLnP3+fWYeNY+U/E8rdNPIO5D/Xgw6esnLjP7eZDXwPCNk/x5BbIkyp7D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"roIR0y6w1T8liziCI5jmP+0L1vOWb8g/mnzNjLgXuD8ARGoyKsDbP6RsyXAT8OU/cUpVSEMj7D9FsvudjojmPyRQ6z6nu90/hB45hafu4j+qvwntqoToP6WYb5pZBuo/8wvwmR196D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"sOhBt7hE1T9U7wgrZXbjP69jSbqAZ78/THjodqJXuT8TqrKuRQ/TP7uJpvzwg90/xoKgnFEQ0j+3Zvu3ZLDBP4bhz5XjsdM/Y1Qs/bgR2T/B1MV9kkbMPzr9pJSRBNg/hIOyrpaj1T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"FERxISpL0j8QGceBSI7kP9r3rZ/6N8E/8wAGB0nKoT+V7VgVRGDUP7gcMkWIN9s/ctIvyefw3D/6U1ROSGfUP0F6aI8Zwt0/1vI20Ykf3D/Ly3jxoqPMP72O8YV9kdM/mrev7Uwv0j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"fneS+i0a0j+upCG5lJLkPzEtdfT0oso/wqU5+6/L2j9+pATwNVjjP+U6qvysCt8/ZXHchaLAyj+rffb36LfRPzw8yOoQINo/OgyH3qst2T8FeMjZ2R3ZP9jwwbg3xt4/y+ihll9C5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"yIncecuw4D+/0yamuQ7kP/NGgBv+ALQ/977RI8cDmT/jv5Lga3PZPy2VRtKp2Ng/ud1TVf9p3D/MVftvim3eP9HjBnbis+Q/Rsn8yXsL4z8nrYlSBRnmP+biftaxA+M/arbiKTra6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"XsmTrR8C4D+PcWyhd8nkP4JJgDC14LA/lCYSdI0AsD+lwrFhj8/eP+FiTIOKadI/GXrajR1H3D/c3RlGc5XbP9s/HfjiHOM/11jJCQo04z/lAgA2/zvnP/2MTcQcL+I/HDPT0lSE7T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SP3ZOgE04D9aV6LDFLrjP/ww/wd8M8I/b0wLGffKwT9idDhohZXcP07p4YNIOuA/KVAa61DJ4D8vgjD4KFvSP+NutZMKjOM/lTh8kXBr4D/RmvJVVCrLPzgBSkz4iN8/WAHPwNxf2T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"V46+60C+3z/OQYzUQ+njP6bhakeuTqQ/wmBMIofDsz+mcfDW2PbcP61u2xiXDNw/POyVZ5ib2T8JAODFSh3QP2kbkjqILeM/ex8w7edT4j8bb4lJFo/SPwwds7n9Ktw/X95DcVIw5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LJAjo2Fu2T+JJ/wbWy7jP7C67PBdf7I/qTUisX8iwj+4xveNafnhP3+c6gYHU+E/zF+koaKJ2T+bHVn2wCzVPzapXYOd3uA/ltl3QANp2j+EhyVIEpvVPze4aNUDl8s/6HIew+W62D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hd4mainz3D+ngMXuwVrlP8gPkvhNQcI/axehjreYwD++vPrYvv/jP0DcRTXjtuA/Q2PDGeWu4z+iXEFS6h3gP/Ttupbcys4/YvBVddtq1z/0gfHNSwXLP5UvlyZtutg/U7avM7635T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Y5RfxFZV3z+gMYb9MwLnP73Nq5hn7KM/4zGCVmgbwj92FjcF4xfkP7eyRXK3JeM/VZb35HN95j+K/hPll5ThP/82mcR/H9Y/XfEUQIdM0T8WnjDGtM7RP5ODVTff9dY/IzdQQ6yC5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"8HmCESBD3j/ZAcUZBtziP0McXklINqQ/v/INfCZmwz8Kp74oY37dP06xkVcgu9M/dt+vzElT0z9HFYvaBPDCP+p5vOEkl+c/vMKPCs5S5z9YTlc/y1jXP5OeW0Gtwdo/hxC2JRCd4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B343o4T83j92GsA/iyzmP4JTR7v5B5w/aRue+tF7tD8d0PWV0JnpP6G/50AOJOU/Is6HT40T7j+OXphiZ23iP2SnQf8Ugtw/e+777deG1z+nPOq/SNvgPzMv/yRiGdw/z5tVtfK86T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"NYuDk05s4T/qJWNVVaHkP58347AcSrc/m0hEEQ/oxD8cKXNkNDbmP6bmpiIFVeM/nd+81k6F6D/9xRnF2kTjPypuTBp9lNo/XFmXQ5hk2T/vM9whHxPSP318nswtcd0/jrpTR3f75T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"kiY3sX8O4D9Kgr6CoebmP0fCyjI9B7E/xfDu60tfzz90uSDU45vhP28+KsZ4Idc/Oju0jcin5j9RY9jGNNjgP7fzYhk0r9k/nRXADG8l4T9tnIHlOenVP3Yq/lev8NE/wJAWIDKx3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/TDEKQcm7D9BkDJJHmXjP5xbx329IdI/X816+PtUsz9ehrRTZwftPwTvAo0kYeY/L7TLsEFl2j/tbpfLb4jcP7H5W4ikxdE/yF9CqxdD3D+F0TtgT1rmP8nsnXg2guA/3VxIGz5a5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AAAAAAAA8D/bb2PgYcLmP/uPjrmDMtQ/dEOBtQ4nzD8GizrTXXHeP5ZzSNHHc9o/pOdYMJeQ3z+RQGWsPBbZP12VRQSSAug/hVvcaolO5j+qgzdVJwjUP1YEu3Gaf9o/BXwYPzYb4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Kg8uQPvf7T8CZihhEBTlP4A0Twzwo9E/0/URGoShuD/oh4kfsijdP2Z/Qk9WqNk/z+fkZw5l4z+P30q4rTrgP16kKvdRQuE/GNJDsFzz4D+Y8PjhmODcP5DlOqNCdtY/ElASlOMZ6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"I+zcF/D93T9uLeL1MiDiPwO/EIvUjLw/K1f5A6hX2z9mgkPrpTnjPytYSXTz/OI/CW9NR3mF3j+yvEydQZzVPxJOvrEuMd4/cWpYGhfe2j9FhU+PQdDSP9tjrdK199E/b/ZEj2t34T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4V+vsPSN2j/OgAfLDN/fP+nSOET+LLc/fstAS52d2T8IadR3+hfnP7EAx/UdxeA/hCDBTNs62z+iYTkLyz/TP2/6hfvL8uA/a+ZIj9Mb3T9luuxdmqbPPxvgwTmvK78/KHso8UKq5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nmohIjWP3T+DvW7omuLeP/rjgKxWd7g/eoFtgGco0z/5yFJDYebcP4izqCTjaOI/Nj/8AtSA2z/t7B+pfzfWPx5uOUJTf90/a89KXNSj2z+rcnKmtHzaP6Uskw/5HdM/KGFHGFZt4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"eqTDtYkl4T+q3guP5zvlP0lXEysf0cs/eo1huuZ4pz/Xulpm2EHfPxniiG15wd0/CJbx8FiQ4D85S1mvlmXfP0htBUfWMdw/LeA4pUyp2z/I5nSQsyrRPzpwvMBFmNQ/AhUTeL8F6D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4WPXUeKk3T/gDuIa8SnjPwJ4czWGx8I/y9wQj9zQuD9v9yMxS9fjPzvsfA1TeuM/baOY2Csm3j9hgeUNc2/dP+8M8EXRY9k/Ftd9G6nD0z8YfoyFlXvNP/n+W6DQMds/05zyz9Rh3D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"d8Vh/xkV1z+1hdhe8DPlPzuu2sZKx6U/09t2Js5nuT/VnzWYodDaP2MSzpftW9c/wNtb0IWr0j/F1dQo4I7dP8sAUhW6/eE/8qFpE/5q3D/N+iZsV23IP6VjDWRmCd0/j18kdx+e2j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"An8ZdBuT4D/wcUrZ8xzjP/YhesFe6q0/WtIg+sa6oj8E369TzSTcP7AwW1lLiNs/s5pi12ni4D//ByIxF0DXP7sRcQH+O98/dwjZTVuM1T+sUx3KpWbVP/WLv20IEtI//NWjzLlf3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"BhsB5i+02T/tMa6VgSviP3EkvRtRcJ4/n5m9+qkGwz+3nIwWu77YP0m0yh2J99A/mhjb8rR71z9/Q0KWHnfbP5rINHs2QeY/8sirfUiO5j+i7xx6FpzaP1j5eOdLc9E/lg8eVUN14D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"dOM60y0O3T+HVirtCjjiP2Lvu1z+07I/sCWgWwsOvz8E3/SSCKfjP56wKCUD/eE/LQKhKHEA4T/Bbmv49QDSP3dQnhJ4At4/Qa1vQklh3T9A2Hw0MvvKP96lFwt/99c/vOArAWE95D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/FgyMbLP1z9FVkhzy7viP6a45LIJUbY//luiMfZYxj8dcFgYBCHlP3ilfE9nsuE/wB2r8Bsh4z95c+Wb9lPTP9+wCu7w8uA/CtOmzx9y4T+Mx0XGQB7PP2mNV4Jdkdk/UXi+tYZ05T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"TF+YlHzF1T+dPoIJ6QriP2TKHg1C+7Y/Ng9co33isj//keUW7ILjPzg0BBLrvOI/0tkVqgkv4j+W3KJZ7TfLP9ZbOy+iEOI/OmCf87cN4T+xzQwX1QfRP2qDcO4BDtE/5pyaUq4Y4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jiaLhtQz1T+8mtpAr4vnPyX6vkGtDdM/UYDQpGbkwD/n3YfTDf/mP8pfP2xuiOU/O8hpiUQH5D9YH8jaGvHqP0vK2mIaOuI/EoIpwQ/T4j/e2gd9LyXZP8q+J/zgHt8/cM6m3JkY4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AzZ48J392D+88rjFZfTjP/NS5ZM4UME/N+E155XWoT80WMQ1ZB3lPyEpcAYBCeQ/GJkgAO2X4z+kEDnXke3dP6SoAZwKpOo/O9AYfFXd5j/YJw8b25nWP/sbxvCRF9M/gZg6s7M94D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"KD3/+Gce2z/hSSji7mXlP2SLdy+OkLw/yfxSjKowtz+eloCpfibhPzqDPcsT7to/QIsLxt+G4z+upcXbI2XbPxvuSmlAkuY/vD9YE+Ji5T8yVSAKfpDePxiA+mk/ZtI/tyPsTjQz4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"LluULqk34D+2X/NA8wjkPw++V5E0vq8/0R0YoOmWtT8ogu8c6aHkP66eR80Ycd0/lCbZXW945T9WxafqEkbaP5HdlvqS2+Q/6jV/ukEu4T8Z75efdFzcP1a+I7wZid0/ijJkorOs4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"x8GAo7sK3D94R7K2uuzkPzzXEfd+Lpg/Stfok7tovT9UkNZ/OKjVP9tDIbvildw/QuayZkkb5T9DiBBqL8fkP+xBq4xm+OU/EnDU7zpY4z8jWqha9zXdP7kCsNCd2cc/C0q3RpUc5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5+QSCNAm3T/m4RoNbH/kPybWRPEHFII/oh1eyKoGnD+rdgBXkhbbP9QRsINen9s/WudA3vcY5D8J5qvxWlnbP6oXSbz+auY/SMtm0JIq5T8cGLsSgovZP+kRJDfEjbs/H6qSPbv8xT8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"oDrzFFeX3j//SSSgKz3kP5UNCOFJNsA/nVI+Bt7xxD8eFbu2ZlrgPx0u5yM6vdc/w2SJj6Il3D8Fhid0i4DaP5kmMe4y8OA/UHEssEjx1j9RUg5/FULPPxl19HzIoOE/sq7zahFn6j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/xdz9wTE3j9TRQ9XF7fjP0+lFUtin4k/EMEpeF2KnD+IoTdOfqjbPzDpD7PlE9w/feZ2tFbe4D9YM25/apDUP4LjZ4+37uE/Hk5yQGTb5D9wV20YGlLdP8IRP+7mpdU/4liTiULQ3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1I7nNbgZ2z81XxHxFp/kP3LQVq8S2r8/DGPPWSNquT8o6SLLp/LhP3rELsrjqtU/3IqfUl8p3D8YauA2dWnRP1sOCULxcuc/y3x08P4D3j+iWhTiGdnWP11GDOIL6Ng/IjF40p8B4T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"w8WZbScA2z9rW6Sa4BXjP4+IDmOKdsA/T7D6D1v7uj9sMrClb4PiP8SiG7/I7NY/QdmsyJ093D9QN06oFZTQP/Ici7q5gOc/fAFSKEp73D8UEaSpePLWP4hwJ+Cocdc/R2VrnBin4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"euuXIT7h4T/V8TcWsfDjP8ws+jNMe60/5Sqx2mR0rz9Ifey+rF3aPy8C1hM9+d0/rk9udt784T/WCDPcmUPZP2btSNBkaNI/E+wzW9XC1D9uSsBQFpbQP5sZeAKhZNU/X9hrAEav4j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"EPG9mog/4T92764ILBziP26pc0LeJMI/rOwc4SdirT/jJx3kMyniP4FspgExTdk/Ta4oseRT3T8UsCZ4MWrSP+MVMvygHtM/WotsfbZa1j9mAOuOaJbTP7pSQWRYHs8/36C0QkZY4z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"SxcnVgR33D/4HXJfqzLnP7Je/Iv7yqk/hSzYfv3czz8zn7W0W9riPwqS6pxe+d4/uSutwlzF4j8uhjSOdXjcP627U+5t6dg/ZWgut+Ed0j+ONgJquljcP0QQh8NOXeA/Y0o+HWuu5T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"qlDXG+eD3D8TJZDrq4jlP05eajBC5qA/Pl6LLs2pyD90hH6X4nLaPx4qbfXpS9Y/9tshw64p4T/0hd+ZSE3eP7qMa/lsZdE/Z7z0IWKv1j8Xjt4lJaXXP/tvvd+es9Y/n49HfkJl5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"D8dgN3eA2z+buMe3yV3lP3XttKK5qp4/SQf/DbJWwj80D2pLlRjYPxI7y+s+L9A/brLdTMvY3z9el5jmsYTeP/E6vZVnOt8/SiXJgdcw4T9doZLg55fYPx+t7JyoxNw/sJUN47AQ4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"jw7/yxkV3D+SpSEfKU/kP+NwQMFOaIQ/FHSPupuNsD/kbbN0v+XUP9kLtgSQQt0/k+XlqpN04D/JgIy3AyPgP9OXBxPl8N4/WRRWRbec4z/kEwY7AYfUPyHfU/nd19w/5eBzb7O74z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"AbYW3xMh3T/2cHkezZ7kP7yQMYWHOGA/5OWY+laVnj8+8ubG/wDVPyn9ArNTvNY/VFQScSu94D/UQim0GfDdP6B21LOaLeM/npOJfiCv5D8xqwvbecXYP43by0mWgN4/4bUkgkEk5D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"lo84t7oa3j/YSkDP3NzjPyrE1NiZ/Ks/2A6ca8G+uj93NfnOFwTeP1To1i+2rdE//dYB1haf4D+RRifm2EXaP0/9vql1x+Y/NCuX53kC4j+u1RE9yvfdP9jmoUZB4tA/jFI0QmC95z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rnnV3tTm3D/rNHeYStHdPyQtZ6anfIc/MJLak0pD0z+Ggjh303DZP8rmoKIT2uA/h+GM/pok3T/IcylyozrSP8/oqHj2l+I/RziwxWv45j/5xFEkpBG+P2VV1N3vFNw/AY/p6tDn1z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"4ulRKw0q3D+8m5oz1j/dP8b+yb5kJIs/y2jqgZgD2D9mVWGLtG/WP5hq7Jy8vN8/PFYRRi0j4j853umduavUP6yTfRsJg+I/P7SKsNdY5T8H8UQYJl3FP/rvoHBRA9Q/QZqdK9yb2D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"mC4mB4U93T88gGAtUxLdP6cL54CSZa0/3VEoXs+02T8o6jThddXVPwQw5QGtP9M/9RrVPmHi3T/Eor5PaQ3eP31Da9/Y/eE/92grRGwc3j9f/nvHbcnQPzhdrn9S3cI/qDxBqm4l3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"nGn9k7D94j91vS6Rb+bkP+2QLn/J+cE/5MnFGDz9rz+zErn88B/kP8VsqGb3oOA/D0ZhmGPg4D+R2dHZeZHSP7PyNsaXxds/VIt/yKsk3D+LlcNx2jnKPw7UCiGkmd0/EabQykkG3z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"CAwomcHj4T8eudvE29biP51pU18gXdQ/QwulORlEyj/0xgYd6w7pP35CeEV8N+g/bjYhOd1nyT9LPrb1y7fRP0oa2jOphd4/KfvxG85u3z+1n5BUdODgPyR2vnC0BMo/EWDEoHKN5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"rIasYsGH4z8WlIy9A5PjP5u1sOpGcL4/Jx8MJ+zGwj/gNzBkPlPjP32+al9q9tw/R3nlOpwe2j9M2OfvsrbTP+yte3pPaNs/EVp+uUsK3D/PRGyFutnUP7hWNQN1tNA/HE4jGr3A4D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Q57Rf4B33j8iuMFErdHjP3fAYQjpeeA/NrreQcknsT8TYD584/DiPxHxL7/SUd8/RqUw6uHW2j+y/4cfVw7bP5Bnpvpl0OU/NdNqIl6F3D+/dXTNJ9LdPzjfpm9CNdo//GyJdhY75D8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"1pajpVFv4z/HL4B4Sd7lPxRLtA7soKs/9c/0sqg/wj//vpKbLDjnP4DswavvAOc/Z7g9uSEP5D9D9TYgpPrbPy3Z9bCtXds/YijOt7/W4z+FZZCT2fvWPy/qdj1bgNg/0wDDEPtG5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"/Zxwggiq1z+ZzhkLj+zlP7YjcFvkk68/LGpgwQVTtD/X9k2UkMDXPyu/nX0yDNk/G4RF6Bre4D9nJVo9p0zUP6WTkzKn3eA/BvwMH+ku6D/WLwLsZnfbP8Hodnn4V98/6Gd48asC5z8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"Fk1pgv1o3z9HwB1m+0jjPzk8acXqErc/ZrkV5TtXrT/VviQLwpreP/LIyIwTV94/1n02dT1v3D9radyl3F3RPx+CEk5wteM/6EMsk4kl5D9H9I3f2YnHPx8mbDkO7d0/mZXSVdT+3T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"hws8LDbP3j+zRKFRL/bkP7XM624lWKE/gWKkTPOqqz/vKYU5XEDjP8xNEDZ9vdk/3Ii70IWw2j+gktXnSKvZP45rMJeDTOM/1WbPTt964T9thhuTzhvZP4lR4Q5F5No/GZ68RpxE5j8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"B3s1W2jz2z+Y4GoGEGLjP4uju+Bz2Is/hA0jdhHJtD/RDglbW6XVP2+Sy/cI/uA/NHJTDOe83T/yTDEpDpPYP3BE+3j0feQ/OHKFzq5b4T8msqhJ39vhPwip4ST/F9Y/PLfEJ0lj6T8=","dtype":"float64","order":"little","shape":[13]},{"__ndarray__":"5ueoIi4I3j/O/KL7KMriP0Cn5PBf+aE/QDUb0ztluz9pQTf1vzPfPx1mo3gMjd8/VkWsRtQm1j9pT9JzxZDXPywRNxsQiOI/ahJHpj0G3z9VGR69b/TcP5Z0rVE+ktE/gSqYbWtV6D8=","dtype":"float64","order":"little","shape":[13]}]},"selected":{"id":"1918"},"selection_policy":{"id":"1917"}},"id":"1830","type":"ColumnDataSource"},{"attributes":{"overlay":{"id":"1822"}},"id":"1818","type":"BoxZoomTool"},{"attributes":{"data_source":{"id":"1835"},"glyph":{"id":"1836"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1837"},"selection_glyph":null,"view":{"id":"1839"}},"id":"1838","type":"GlyphRenderer"},{"attributes":{"source":{"id":"1830"}},"id":"1834","type":"CDSView"},{"attributes":{},"id":"1807","type":"LinearScale"},{"attributes":{},"id":"1920","type":"Selection"},{"attributes":{},"id":"1919","type":"UnionRenderers"},{"attributes":{},"id":"1916","type":"CategoricalTickFormatter"},{"attributes":{"axis":{"id":"1809"},"ticker":null},"id":"1811","type":"Grid"},{"attributes":{},"id":"1810","type":"CategoricalTicker"},{"attributes":{"formatter":{"id":"1914"},"ticker":{"id":"1813"}},"id":"1812","type":"LinearAxis"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"1822","type":"BoxAnnotation"},{"attributes":{"factors":["theta[0]","theta[1]","tau[0]","tau[1]","theta_1[0,0]","theta_1[0,1]","theta_1[1,0]","theta_1[1,1]","theta_1[2,0]","theta_1[2,1]","sigma[0]","sigma[1]","rho"]},"id":"1800","type":"FactorRange"},{"attributes":{"axis":{"id":"1812"},"dimension":1,"ticker":null},"id":"1815","type":"Grid"},{"attributes":{},"id":"1918","type":"Selection"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"1816"},{"id":"1817"},{"id":"1818"},{"id":"1819"},{"id":"1820"},{"id":"1821"}]},"id":"1823","type":"Toolbar"},{"attributes":{},"id":"1917","type":"UnionRenderers"},{"attributes":{},"id":"1821","type":"HelpTool"},{"attributes":{"line_color":{"value":"orange"},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"1836","type":"MultiLine"},{"attributes":{},"id":"1803","type":"DataRange1d"},{"attributes":{"text":""},"id":"1911","type":"Title"},{"attributes":{"data_source":{"id":"1830"},"glyph":{"id":"1831"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1832"},"selection_glyph":null,"view":{"id":"1834"}},"id":"1833","type":"GlyphRenderer"},{"attributes":{"formatter":{"id":"1916"},"major_label_orientation":0.7853981633974483,"ticker":{"id":"1810"}},"id":"1809","type":"CategoricalAxis"},{"attributes":{},"id":"1817","type":"WheelZoomTool"},{"attributes":{},"id":"1813","type":"BasicTicker"},{"attributes":{},"id":"1820","type":"ResetTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"field":"line_color"},"line_width":{"value":0.5},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"1832","type":"MultiLine"},{"attributes":{},"id":"1816","type":"PanTool"},{"attributes":{},"id":"1819","type":"SaveTool"}],"root_ids":["1801"]},"title":"Bokeh Application","version":"2.2.3"}};n”, ” var render_items = [{"docid":"1e7ea3f1-5bd0-4cfc-9ce0-c550b84c4434","root_ids":["1801"],"roots":{"1801":"9302bd89-d037-4b82-8fce-2e7dfaab0332"}}];n”, ” root.Bokeh.embed.embed_items_notebook(docs_json, render_items);n”, “n”, ” }n”, ” if (root.Bokeh !== undefined) {n”, ” embed_document(root);n”, ” } else {n”, ” var attempts = 0;n”, ” var timer = setInterval(function(root) {n”, ” if (root.Bokeh !== undefined) {n”, ” clearInterval(timer);n”, ” embed_document(root);n”, ” } else {n”, ” attempts++;n”, ” if (attempts > 100) {n”, ” clearInterval(timer);n”, ” console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");n”, ” }n”, ” }n”, ” }, 10, root)n”, ” }n”, “})(window);”
], “application/vnd.bokehjs_exec.v0+json”: “”
}, “metadata”: {
- “application/vnd.bokehjs_exec.v0+json”: {
“id”: “1801”
}
}, “output_type”: “display_data”
}
], “source”: [
“bokeh.io.show(n”, ” bebi103.viz.parcoord(n”, ” samples,n”, ” omit=[re.compile("Tau.*"), re.compile("Sigma.*")],n”, ” transformation="minmax",n”, ” )n”, “)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“This plot is more revealing. We see (especially if we zoom in) that most of the divergences are going through small tau[0]. This is indicative of the "funnel" behavior often encountered in hierarchical models.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“#### Corner plotsn”, “n”, “Corner plots display scatter plots of samples from all pairs of variables, as well as histograms or ECDFs for individual variables. We can make a corner plot for the hyperparameters and also for ρ.”
]
}, {
“cell_type”: “code”, “execution_count”: 20, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“n”, “n”, “n”, “n”, “n”, “n”, ” <div class="bk-root" id="6999274f-a219-477f-85c2-778dda525fa8" data-root-id="2832"></div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“(function(root) {n”, ” function embed_document(root) {n”, ” n”, ” var docs_json = {"55ceaef7-c70c-4cfc-a7d7-758a1c228238":{"roots":{"references":[{"attributes":{"children":[{"id":"2831"},{"id":"2829"}]},"id":"2832","type":"Row"},{"attributes":{},"id":"2201","type":"LinearScale"},{"attributes":{"formatter":{"id":"2698"},"major_label_text_font_size":"0pt","ticker":{"id":"2208"}},"id":"2207","type":"LinearAxis"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2090","type":"PolyAnnotation"},{"attributes":{},"id":"2256","type":"SaveTool"},{"attributes":{},"id":"2416","type":"LinearScale"},{"attributes":{},"id":"2199","type":"LinearScale"},{"attributes":{},"id":"2414","type":"LinearScale"},{"attributes":{},"id":"2204","type":"BasicTicker"},{"attributes":{},"id":"2431","type":"SaveTool"},{"attributes":{"axis":{"id":"2203"},"ticker":null},"id":"2206","type":"Grid"},{"attributes":{"formatter":{"id":"2700"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"2204"}},"id":"2203","type":"LinearAxis"},{"attributes":{"axis_label":"tau[1]","formatter":{"id":"2764"},"ticker":{"id":"2423"}},"id":"2422","type":"LinearAxis"},{"attributes":{},"id":"2216","type":"SaveTool"},{"attributes":{"axis_label":"theta[0]","formatter":{"id":"2766"},"major_label_orientation":"horizontal","ticker":{"id":"2419"}},"id":"2418","type":"LinearAxis"},{"attributes":{},"id":"2419","type":"BasicTicker"},{"attributes":{"axis":{"id":"2418"},"ticker":null},"id":"2421","type":"Grid"},{"attributes":{},"id":"2069","type":"LinearScale"},{"attributes":{"axis":{"id":"2207"},"dimension":1,"ticker":null},"id":"2210","type":"Grid"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2003","type":"BoxAnnotation"},{"attributes":{},"id":"2208","type":"BasicTicker"},{"attributes":{"axis_label":"tau[0]","formatter":{"id":"2710"},"ticker":{"id":"2248"}},"id":"2247","type":"LinearAxis"},{"attributes":{"axis":{"id":"2422"},"dimension":1,"ticker":null},"id":"2425","type":"Grid"},{"attributes":{},"id":"2217","type":"ResetTool"},{"attributes":{},"id":"2423","type":"BasicTicker"},{"attributes":{"overlay":{"id":"2219"}},"id":"2212","type":"BoxZoomTool"},{"attributes":{},"id":"2211","type":"PanTool"},{"attributes":{},"id":"2432","type":"ResetTool"},{"attributes":{},"id":"2213","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"2434"}},"id":"2427","type":"BoxZoomTool"},{"attributes":{"overlay":{"id":"2218"}},"id":"2214","type":"BoxSelectTool"},{"attributes":{},"id":"2426","type":"PanTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2004","type":"BoxAnnotation"},{"attributes":{"overlay":{"id":"2220"}},"id":"2215","type":"LassoSelectTool"},{"attributes":{},"id":"2428","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"2433"}},"id":"2429","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"2435"}},"id":"2430","type":"LassoSelectTool"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2100","type":"Line"},{"attributes":{},"id":"2257","type":"ResetTool"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"2145","type":"Circle"},{"attributes":{"overlay":{"id":"2260"}},"id":"2255","type":"LassoSelectTool"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2005","type":"PolyAnnotation"},{"attributes":{"align":"end","below":[{"id":"2113"}],"center":[{"id":"2116"},{"id":"2120"}],"frame_height":150,"frame_width":150,"left":[{"id":"2117"}],"renderers":[{"id":"2142"},{"id":"2147"}],"title":{"id":"2667"},"toolbar":{"id":"2131"},"toolbar_location":null,"x_range":{"id":"1981"},"x_scale":{"id":"2109"},"y_range":{"id":"2196"},"y_scale":{"id":"2111"}},"id":"2104","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"2253","type":"WheelZoomTool"},{"attributes":{"source":{"id":"2099"}},"id":"2103","type":"CDSView"},{"attributes":{"overlay":{"id":"2259"}},"id":"2252","type":"BoxZoomTool"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2101","type":"Line"},{"attributes":{"overlay":{"id":"2258"}},"id":"2254","type":"BoxSelectTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2251"},{"id":"2252"},{"id":"2253"},{"id":"2254"},{"id":"2255"},{"id":"2256"},{"id":"2257"}]},"id":"2261","type":"Toolbar"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"2140","type":"Circle"},{"attributes":{},"id":"2251","type":"PanTool"},{"attributes":{},"id":"2111","type":"LinearScale"},{"attributes":{},"id":"2109","type":"LinearScale"},{"attributes":{},"id":"2248","type":"BasicTicker"},{"attributes":{},"id":"2126","type":"SaveTool"},{"attributes":{"axis_label":"rho","formatter":{"id":"2670"},"ticker":{"id":"2118"}},"id":"2117","type":"LinearAxis"},{"attributes":{"axis":{"id":"2247"},"dimension":1,"ticker":null},"id":"2250","type":"Grid"},{"attributes":{"formatter":{"id":"2672"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"2114"}},"id":"2113","type":"LinearAxis"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2315"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2316"},"selection_glyph":null,"view":{"id":"2318"}},"id":"2317","type":"GlyphRenderer"},{"attributes":{},"id":"2114","type":"BasicTicker"},{"attributes":{"axis":{"id":"2113"},"ticker":null},"id":"2116","type":"Grid"},{"attributes":{"align":"end","below":[{"id":"2333"}],"center":[{"id":"2336"},{"id":"2340"}],"frame_height":150,"frame_width":150,"left":[{"id":"2337"}],"renderers":[{"id":"2362"},{"id":"2367"}],"title":{"id":"2735"},"toolbar":{"id":"2351"},"toolbar_location":null,"x_range":{"id":"2196"},"x_scale":{"id":"2329"},"y_range":{"id":"2371"},"y_scale":{"id":"2331"}},"id":"2324","subtype":"Figure","type":"Plot"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2218","type":"BoxAnnotation"},{"attributes":{"align":"end","below":[{"id":"2463"}],"center":[{"id":"2466"},{"id":"2470"}],"frame_height":150,"frame_width":150,"left":[{"id":"2467"}],"renderers":[{"id":"2492"},{"id":"2497"}],"title":{"id":"2775"},"toolbar":{"id":"2481"},"toolbar_location":null,"x_range":{"id":"2066"},"x_scale":{"id":"2459"},"y_range":{"id":"2591"},"y_scale":{"id":"2461"}},"id":"2454","subtype":"Figure","type":"Plot"},{"attributes":{"axis":{"id":"2117"},"dimension":1,"ticker":null},"id":"2120","type":"Grid"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2433","type":"BoxAnnotation"},{"attributes":{},"id":"2118","type":"BasicTicker"},{"attributes":{},"id":"2127","type":"ResetTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2219","type":"BoxAnnotation"},{"attributes":{"overlay":{"id":"2129"}},"id":"2122","type":"BoxZoomTool"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2015","type":"Line"},{"attributes":{"align":"end","below":[{"id":"2028"}],"center":[{"id":"2031"},{"id":"2035"}],"frame_height":150,"frame_width":150,"left":[{"id":"2032"}],"renderers":[{"id":"2057"},{"id":"2062"}],"title":{"id":"2641"},"toolbar":{"id":"2046"},"toolbar_location":null,"x_range":{"id":"1981"},"x_scale":{"id":"2024"},"y_range":{"id":"2066"},"y_scale":{"id":"2026"}},"id":"2019","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"2121","type":"PanTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2434","type":"BoxAnnotation"},{"attributes":{},"id":"2123","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"2128"}},"id":"2124","type":"BoxSelectTool"},{"attributes":{"source":{"id":"2014"}},"id":"2018","type":"CDSView"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2220","type":"PolyAnnotation"},{"attributes":{"overlay":{"id":"2130"}},"id":"2125","type":"LassoSelectTool"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2016","type":"Line"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2121"},{"id":"2122"},{"id":"2123"},{"id":"2124"},{"id":"2125"},{"id":"2126"},{"id":"2127"}]},"id":"2131","type":"Toolbar"},{"attributes":{"align":"end","below":[{"id":"2073"}],"center":[{"id":"2076"},{"id":"2080"}],"frame_height":150,"frame_width":150,"left":[{"id":"2077"}],"renderers":[{"id":"2102"}],"title":{"id":"2655"},"toolbar":{"id":"2091"},"toolbar_location":null,"x_range":{"id":"2066"},"x_scale":{"id":"2069"},"y_range":{"id":"2064"},"y_scale":{"id":"2071"}},"id":"2065","subtype":"Figure","type":"Plot"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2435","type":"PolyAnnotation"},{"attributes":{},"id":"2156","type":"LinearScale"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"2055","type":"Circle"},{"attributes":{},"id":"2159","type":"BasicTicker"},{"attributes":{},"id":"2026","type":"LinearScale"},{"attributes":{},"id":"2154","type":"LinearScale"},{"attributes":{"text":""},"id":"2629","type":"Title"},{"attributes":{},"id":"2024","type":"LinearScale"},{"attributes":{"toolbars":[{"id":"2006"},{"id":"2046"},{"id":"2091"},{"id":"2131"},{"id":"2176"},{"id":"2221"},{"id":"2261"},{"id":"2306"},{"id":"2351"},{"id":"2396"},{"id":"2436"},{"id":"2481"},{"id":"2526"},{"id":"2571"},{"id":"2616"}],"tools":[{"id":"1996"},{"id":"1997"},{"id":"1998"},{"id":"1999"},{"id":"2000"},{"id":"2001"},{"id":"2002"},{"id":"2036"},{"id":"2037"},{"id":"2038"},{"id":"2039"},{"id":"2040"},{"id":"2041"},{"id":"2042"},{"id":"2081"},{"id":"2082"},{"id":"2083"},{"id":"2084"},{"id":"2085"},{"id":"2086"},{"id":"2087"},{"id":"2121"},{"id":"2122"},{"id":"2123"},{"id":"2124"},{"id":"2125"},{"id":"2126"},{"id":"2127"},{"id":"2166"},{"id":"2167"},{"id":"2168"},{"id":"2169"},{"id":"2170"},{"id":"2171"},{"id":"2172"},{"id":"2211"},{"id":"2212"},{"id":"2213"},{"id":"2214"},{"id":"2215"},{"id":"2216"},{"id":"2217"},{"id":"2251"},{"id":"2252"},{"id":"2253"},{"id":"2254"},{"id":"2255"},{"id":"2256"},{"id":"2257"},{"id":"2296"},{"id":"2297"},{"id":"2298"},{"id":"2299"},{"id":"2300"},{"id":"2301"},{"id":"2302"},{"id":"2341"},{"id":"2342"},{"id":"2343"},{"id":"2344"},{"id":"2345"},{"id":"2346"},{"id":"2347"},{"id":"2386"},{"id":"2387"},{"id":"2388"},{"id":"2389"},{"id":"2390"},{"id":"2391"},{"id":"2392"},{"id":"2426"},{"id":"2427"},{"id":"2428"},{"id":"2429"},{"id":"2430"},{"id":"2431"},{"id":"2432"},{"id":"2471"},{"id":"2472"},{"id":"2473"},{"id":"2474"},{"id":"2475"},{"id":"2476"},{"id":"2477"},{"id":"2516"},{"id":"2517"},{"id":"2518"},{"id":"2519"},{"id":"2520"},{"id":"2521"},{"id":"2522"},{"id":"2561"},{"id":"2562"},{"id":"2563"},{"id":"2564"},{"id":"2565"},{"id":"2566"},{"id":"2567"},{"id":"2606"},{"id":"2607"},{"id":"2608"},{"id":"2609"},{"id":"2610"},{"id":"2611"},{"id":"2612"}]},"id":"2830","type":"ProxyToolbar"},{"attributes":{"align":"end","below":[{"id":"2158"}],"center":[{"id":"2161"},{"id":"2165"}],"frame_height":150,"frame_width":150,"left":[{"id":"2162"}],"renderers":[{"id":"2187"},{"id":"2192"}],"title":{"id":"2681"},"toolbar":{"id":"2176"},"toolbar_location":null,"x_range":{"id":"2066"},"x_scale":{"id":"2154"},"y_range":{"id":"2196"},"y_scale":{"id":"2156"}},"id":"2149","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"2041","type":"SaveTool"},{"attributes":{"axis_label":"theta[1]","formatter":{"id":"2644"},"ticker":{"id":"2033"}},"id":"2032","type":"LinearAxis"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"2446","type":"Circle"},{"attributes":{"formatter":{"id":"2646"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"2029"}},"id":"2028","type":"LinearAxis"},{"attributes":{"data_source":{"id":"2229"},"glyph":{"id":"2230"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2231"},"selection_glyph":null,"view":{"id":"2233"}},"id":"2232","type":"GlyphRenderer"},{"attributes":{"formatter":{"id":"2686"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"2159"}},"id":"2158","type":"LinearAxis"},{"attributes":{},"id":"2029","type":"BasicTicker"},{"attributes":{"axis":{"id":"2028"},"ticker":null},"id":"2031","type":"Grid"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2145"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2146"},"selection_glyph":null,"view":{"id":"2148"}},"id":"2147","type":"GlyphRenderer"},{"attributes":{"start":0.0},"id":"2064","type":"DataRange1d"},{"attributes":{"source":{"id":"1978"}},"id":"2148","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"2146","type":"Circle"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"2185","type":"Circle"},{"attributes":{"axis":{"id":"2032"},"dimension":1,"ticker":null},"id":"2035","type":"Grid"},{"attributes":{"axis":{"id":"2158"},"ticker":null},"id":"2161","type":"Grid"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2211"},{"id":"2212"},{"id":"2213"},{"id":"2214"},{"id":"2215"},{"id":"2216"},{"id":"2217"}]},"id":"2221","type":"Toolbar"},{"attributes":{},"id":"2033","type":"BasicTicker"},{"attributes":{"formatter":{"id":"2660"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"2074"}},"id":"2073","type":"LinearAxis"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2426"},{"id":"2427"},{"id":"2428"},{"id":"2429"},{"id":"2430"},{"id":"2431"},{"id":"2432"}]},"id":"2436","type":"Toolbar"},{"attributes":{},"id":"2042","type":"ResetTool"},{"attributes":{"overlay":{"id":"2044"}},"id":"2037","type":"BoxZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2128","type":"BoxAnnotation"},{"attributes":{},"id":"2036","type":"PanTool"},{"attributes":{"data_source":{"id":"2014"},"glyph":{"id":"2015"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2016"},"selection_glyph":null,"view":{"id":"2018"}},"id":"2017","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"2360","type":"Circle"},{"attributes":{},"id":"2038","type":"WheelZoomTool"},{"attributes":{"align":"end","below":[{"id":"1988"}],"center":[{"id":"1991"},{"id":"1995"}],"frame_height":150,"frame_width":150,"left":[{"id":"1992"}],"renderers":[{"id":"2017"}],"title":{"id":"2629"},"toolbar":{"id":"2006"},"toolbar_location":null,"x_range":{"id":"1981"},"x_scale":{"id":"1984"},"y_range":{"id":"1979"},"y_scale":{"id":"1986"}},"id":"1980","subtype":"Figure","type":"Plot"},{"attributes":{"overlay":{"id":"2043"}},"id":"2039","type":"BoxSelectTool"},{"attributes":{"source":{"id":"1977"}},"id":"2318","type":"CDSView"},{"attributes":{"overlay":{"id":"2045"}},"id":"2040","type":"LassoSelectTool"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2320"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2321"},"selection_glyph":null,"view":{"id":"2323"}},"id":"2322","type":"GlyphRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2129","type":"BoxAnnotation"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2036"},{"id":"2037"},{"id":"2038"},{"id":"2039"},{"id":"2040"},{"id":"2041"},{"id":"2042"}]},"id":"2046","type":"Toolbar"},{"attributes":{"start":0.0},"id":"1979","type":"DataRange1d"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"2450","type":"Circle"},{"attributes":{"source":{"id":"1978"}},"id":"2323","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"2321","type":"Circle"},{"attributes":{"source":{"id":"1977"}},"id":"2448","type":"CDSView"},{"attributes":{"data_source":{"id":"2099"},"glyph":{"id":"2100"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2101"},"selection_glyph":null,"view":{"id":"2103"}},"id":"2102","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2445"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2446"},"selection_glyph":null,"view":{"id":"2448"}},"id":"2447","type":"GlyphRenderer"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2386"},{"id":"2387"},{"id":"2388"},{"id":"2389"},{"id":"2390"},{"id":"2391"},{"id":"2392"}]},"id":"2396","type":"Toolbar"},{"attributes":{"end":12.899176,"start":-6.115976},"id":"1981","type":"Range1d"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2060"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2061"},"selection_glyph":null,"view":{"id":"2063"}},"id":"2062","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2450"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2451"},"selection_glyph":null,"view":{"id":"2453"}},"id":"2452","type":"GlyphRenderer"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2130","type":"PolyAnnotation"},{"attributes":{"data":{"chain__":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"diverging__":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false],"draw__":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,613,614,615,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,883,884,885,886,887,888,889,890,891,892,893,894,895,897,898,899,900,901,902,903,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,281,282,283,284,285,286,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,798,799,800,801,802,803,804,805,806,807,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,51,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,234,235,236,237,238,239,240,241,242,243,244,245,247,248,249,250,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"index":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,613,614,615,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,883,884,885,886,887,888,889,890,891,892,893,894,895,897,898,899,900,901,902,903,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2281,2282,2283,2284,2285,2286,2288,2289,2290,2291,2292,2293,2294,2295,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3051,3054,3055,3056,3057,3058,3059,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3162,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3247,3248,3249,3250,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999],"rho":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"tau[0]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"tau[1]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"theta[0]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"theta[1]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]}},"selected":{"id":"2648"},"selection_policy":{"id":"2647"}},"id":"1977","type":"ColumnDataSource"},{"attributes":{},"id":"2071","type":"LinearScale"},{"attributes":{"source":{"id":"1978"}},"id":"2063","type":"CDSView"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"2320","type":"Circle"},{"attributes":{"end":20.254901999999998,"start":-13.425602000000001},"id":"2066","type":"Range1d"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"2316","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"2451","type":"Circle"},{"attributes":{"source":{"id":"1978"}},"id":"2453","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"2490","type":"Circle"},{"attributes":{},"id":"2078","type":"BasicTicker"},{"attributes":{},"id":"2461","type":"LinearScale"},{"attributes":{"axis":{"id":"2077"},"dimension":1,"ticker":null},"id":"2080","type":"Grid"},{"attributes":{},"id":"2459","type":"LinearScale"},{"attributes":{"data":{"x":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[206]},"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[206]}},"selected":{"id":"2662"},"selection_policy":{"id":"2661"}},"id":"2099","type":"ColumnDataSource"},{"attributes":{},"id":"2476","type":"SaveTool"},{"attributes":{"formatter":{"id":"2778"},"major_label_text_font_size":"0pt","ticker":{"id":"2468"}},"id":"2467","type":"LinearAxis"},{"attributes":{"axis_label":"theta[1]","formatter":{"id":"2780"},"major_label_orientation":"horizontal","ticker":{"id":"2464"}},"id":"2463","type":"LinearAxis"},{"attributes":{},"id":"2754","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2043","type":"BoxAnnotation"},{"attributes":{},"id":"2464","type":"BasicTicker"},{"attributes":{"axis":{"id":"2463"},"ticker":null},"id":"2466","type":"Grid"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2044","type":"BoxAnnotation"},{"attributes":{"axis":{"id":"2467"},"dimension":1,"ticker":null},"id":"2470","type":"Grid"},{"attributes":{},"id":"2468","type":"BasicTicker"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2471"},{"id":"2472"},{"id":"2473"},{"id":"2474"},{"id":"2475"},{"id":"2476"},{"id":"2477"}]},"id":"2481","type":"Toolbar"},{"attributes":{},"id":"2477","type":"ResetTool"},{"attributes":{"overlay":{"id":"2479"}},"id":"2472","type":"BoxZoomTool"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2045","type":"PolyAnnotation"},{"attributes":{},"id":"2471","type":"PanTool"},{"attributes":{},"id":"2473","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"2478"}},"id":"2474","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"2480"}},"id":"2475","type":"LassoSelectTool"},{"attributes":{},"id":"2755","type":"UnionRenderers"},{"attributes":{},"id":"2756","type":"Selection"},{"attributes":{},"id":"2074","type":"BasicTicker"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"2060","type":"Circle"},{"attributes":{"overlay":{"id":"2524"}},"id":"2517","type":"BoxZoomTool"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"2056","type":"Circle"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2478","type":"BoxAnnotation"},{"attributes":{"source":{"id":"1977"}},"id":"2058","type":"CDSView"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2055"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2056"},"selection_glyph":null,"view":{"id":"2058"}},"id":"2057","type":"GlyphRenderer"},{"attributes":{"axis":{"id":"2073"},"ticker":null},"id":"2076","type":"Grid"},{"attributes":{"text":""},"id":"2761","type":"Title"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2479","type":"BoxAnnotation"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"2061","type":"Circle"},{"attributes":{"formatter":{"id":"2658"},"major_label_text_font_size":"0pt","ticker":{"id":"2078"}},"id":"2077","type":"LinearAxis"},{"attributes":{},"id":"2081","type":"PanTool"},{"attributes":{"overlay":{"id":"2089"}},"id":"2082","type":"BoxZoomTool"},{"attributes":{},"id":"2087","type":"ResetTool"},{"attributes":{},"id":"2086","type":"SaveTool"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2480","type":"PolyAnnotation"},{"attributes":{},"id":"2083","type":"WheelZoomTool"},{"attributes":{},"id":"2764","type":"BasicTickFormatter"},{"attributes":{"overlay":{"id":"2088"}},"id":"2084","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"2090"}},"id":"2085","type":"LassoSelectTool"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"2495","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2081"},{"id":"2082"},{"id":"2083"},{"id":"2084"},{"id":"2085"},{"id":"2086"},{"id":"2087"}]},"id":"2091","type":"Toolbar"},{"attributes":{},"id":"2163","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"2491","type":"Circle"},{"attributes":{},"id":"2168","type":"WheelZoomTool"},{"attributes":{},"id":"2509","type":"BasicTicker"},{"attributes":{"overlay":{"id":"2174"}},"id":"2167","type":"BoxZoomTool"},{"attributes":{"axis":{"id":"2162"},"dimension":1,"ticker":null},"id":"2165","type":"Grid"},{"attributes":{"source":{"id":"1977"}},"id":"2493","type":"CDSView"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2490"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2491"},"selection_glyph":null,"view":{"id":"2493"}},"id":"2492","type":"GlyphRenderer"},{"attributes":{},"id":"2166","type":"PanTool"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2495"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2496"},"selection_glyph":null,"view":{"id":"2498"}},"id":"2497","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"2173"}},"id":"2169","type":"BoxSelectTool"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"2496","type":"Circle"},{"attributes":{},"id":"2172","type":"ResetTool"},{"attributes":{"overlay":{"id":"2175"}},"id":"2170","type":"LassoSelectTool"},{"attributes":{},"id":"2506","type":"LinearScale"},{"attributes":{},"id":"2766","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"2535","type":"Circle"},{"attributes":{"formatter":{"id":"2684"},"major_label_text_font_size":"0pt","ticker":{"id":"2163"}},"id":"2162","type":"LinearAxis"},{"attributes":{"source":{"id":"1978"}},"id":"2498","type":"CDSView"},{"attributes":{},"id":"2171","type":"SaveTool"},{"attributes":{"align":"end","below":[{"id":"2508"}],"center":[{"id":"2511"},{"id":"2515"}],"frame_height":150,"frame_width":150,"left":[{"id":"2512"}],"renderers":[{"id":"2537"},{"id":"2542"}],"title":{"id":"2789"},"toolbar":{"id":"2526"},"toolbar_location":null,"x_range":{"id":"2196"},"x_scale":{"id":"2504"},"y_range":{"id":"2591"},"y_scale":{"id":"2506"}},"id":"2499","subtype":"Figure","type":"Plot"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2166"},{"id":"2167"},{"id":"2168"},{"id":"2169"},{"id":"2170"},{"id":"2171"},{"id":"2172"}]},"id":"2176","type":"Toolbar"},{"attributes":{},"id":"2504","type":"LinearScale"},{"attributes":{},"id":"2516","type":"PanTool"},{"attributes":{"formatter":{"id":"2792"},"major_label_text_font_size":"0pt","ticker":{"id":"2513"}},"id":"2512","type":"LinearAxis"},{"attributes":{"axis_label":"rho","formatter":{"id":"2794"},"major_label_orientation":"horizontal","ticker":{"id":"2509"}},"id":"2508","type":"LinearAxis"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2088","type":"BoxAnnotation"},{"attributes":{"axis":{"id":"2508"},"ticker":null},"id":"2511","type":"Grid"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2089","type":"BoxAnnotation"},{"attributes":{"axis":{"id":"2512"},"dimension":1,"ticker":null},"id":"2515","type":"Grid"},{"attributes":{},"id":"2513","type":"BasicTicker"},{"attributes":{},"id":"2518","type":"WheelZoomTool"},{"attributes":{},"id":"2567","type":"ResetTool"},{"attributes":{},"id":"2566","type":"SaveTool"},{"attributes":{},"id":"2712","type":"BasicTickFormatter"},{"attributes":{"overlay":{"id":"2568"}},"id":"2564","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"2570"}},"id":"2565","type":"LassoSelectTool"},{"attributes":{"text":""},"id":"2695","type":"Title"},{"attributes":{},"id":"2698","type":"BasicTickFormatter"},{"attributes":{},"id":"2649","type":"UnionRenderers"},{"attributes":{},"id":"2650","type":"Selection"},{"attributes":{},"id":"2647","type":"UnionRenderers"},{"attributes":{},"id":"2648","type":"Selection"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2568","type":"BoxAnnotation"},{"attributes":{},"id":"2700","type":"BasicTickFormatter"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2561"},{"id":"2562"},{"id":"2563"},{"id":"2564"},{"id":"2565"},{"id":"2566"},{"id":"2567"}]},"id":"2571","type":"Toolbar"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"2585","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"2581","type":"Circle"},{"attributes":{"source":{"id":"1977"}},"id":"2583","type":"CDSView"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2580"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2581"},"selection_glyph":null,"view":{"id":"2583"}},"id":"2582","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2585"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2586"},"selection_glyph":null,"view":{"id":"2588"}},"id":"2587","type":"GlyphRenderer"},{"attributes":{"text":""},"id":"2721","type":"Title"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"2586","type":"Circle"},{"attributes":{"formatter":{"id":"2820"},"major_label_text_font_size":"0pt","ticker":{"id":"2603"}},"id":"2602","type":"LinearAxis"},{"attributes":{},"id":"2701","type":"UnionRenderers"},{"attributes":{"align":"end","below":[{"id":"2598"}],"center":[{"id":"2601"},{"id":"2605"}],"frame_height":150,"frame_width":150,"left":[{"id":"2602"}],"renderers":[{"id":"2627"}],"title":{"id":"2817"},"toolbar":{"id":"2616"},"toolbar_location":null,"x_range":{"id":"2591"},"x_scale":{"id":"2594"},"y_range":{"id":"2589"},"y_scale":{"id":"2596"}},"id":"2590","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"2702","type":"Selection"},{"attributes":{"source":{"id":"1978"}},"id":"2588","type":"CDSView"},{"attributes":{"start":0.0},"id":"2589","type":"DataRange1d"},{"attributes":{},"id":"2724","type":"BasicTickFormatter"},{"attributes":{},"id":"2596","type":"LinearScale"},{"attributes":{"data_source":{"id":"2624"},"glyph":{"id":"2625"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2626"},"selection_glyph":null,"view":{"id":"2628"}},"id":"2627","type":"GlyphRenderer"},{"attributes":{"end":25.70813858,"start":-0.0026675800000000027},"id":"2591","type":"Range1d"},{"attributes":{},"id":"2594","type":"LinearScale"},{"attributes":{},"id":"2599","type":"BasicTicker"},{"attributes":{"axis":{"id":"2598"},"ticker":null},"id":"2601","type":"Grid"},{"attributes":{"axis_label":"tau[1]","formatter":{"id":"2822"},"major_label_orientation":"horizontal","ticker":{"id":"2599"}},"id":"2598","type":"LinearAxis"},{"attributes":{},"id":"2611","type":"SaveTool"},{"attributes":{"axis":{"id":"2602"},"dimension":1,"ticker":null},"id":"2605","type":"Grid"},{"attributes":{},"id":"2726","type":"BasicTickFormatter"},{"attributes":{},"id":"2603","type":"BasicTicker"},{"attributes":{"data":{"x":{"__ndarray__":"AcKHEi153z8BwocSLXnfPyJTfz85S+w/IlN/PzlL7D+iYt367Wz0P6Ji3frtbPQ/sxv7VT+0+j+zG/tVP7T6P2JqjFjIfQBAYmqMWMh9AEDrRhsGcaEDQOtGGwZxoQNAcyOqsxnFBkBzI6qzGcUGQPz/OGHC6AlA/P84YcLoCUCE3McOawwNQITcxw5rDA1Ahlwr3gkYEECGXCveCRgQQMvK8jTeqRFAy8ryNN6pEUAPObqLsjsTQA85uouyOxNAU6eB4obNFEBTp4Hihs0UQJcVSTlbXxZAlxVJOVtfFkDcgxCQL/EXQNyDEJAv8RdAIPLX5gODGUAg8tfmA4MZQGRgnz3YFBtAZGCfPdgUG0CozmaUrKYcQKjOZpSsphxA7Dwu64A4HkDsPC7rgDgeQDGr9UFVyh9AMav1QVXKH0C7jF7MFK4gQLuMXswUriBA3UPC9/52IUDdQ8L3/nYhQP/6JSPpPyJA//olI+k/IkAhsolO0wgjQCGyiU7TCCNAQ2nteb3RI0BDae15vdEjQGUgUaWnmiRAZSBRpaeaJECH17TQkWMlQIfXtNCRYyVAqY4Y/HssJkCpjhj8eywmQMxFfCdm9SZAzEV8J2b1JkDu/N9SUL4nQO7831JQvidAELRDfjqHKEAQtEN+OocoQDJrp6kkUClAMmunqSRQKUBUIgvVDhkqQFQiC9UOGSpAdtluAPnhKkB22W4A+eEqQJiQ0ivjqitAmJDSK+OqK0C6RzZXzXMsQLpHNlfNcyxA3P6Zgrc8LUDc/pmCtzwtQP+1/a2hBS5A/7X9raEFLkAhbWHZi84uQCFtYdmLzi5AQyTFBHaXL0BDJMUEdpcvQLNtFBgwMDBAs20UGDAwMEBEScYtpZQwQERJxi2llDBA1SR4Qxr5MEDVJHhDGvkwQGYAKlmPXTFAZgAqWY9dMUD329tuBMIxQPfb224EwjFAiLeNhHkmMkCIt42EeSYyQBmTP5ruijJAGZM/mu6KMkCqbvGvY+8yQKpu8a9j7zJAO0qjxdhTM0A7SqPF2FMzQMwlVdtNuDNAzCVV2024M0BdAQfxwhw0QF0BB/HCHDRA7ty4BjiBNEDu3LgGOIE0QH+4ahyt5TRAf7hqHK3lNEAQlBwyIko1QBCUHDIiSjVAoW/OR5euNUChb85Hl641QDJLgF0MEzZAMkuAXQwTNkDEJjJzgXc2QMQmMnOBdzZAVQLkiPbbNkBVAuSI9ts2QObdlZ5rQDdA5t2VnmtAN0B3uUe04KQ3QHe5R7TgpDdACJX5yVUJOEAIlfnJVQk4QJlwq9/KbThAmXCr38ptOEAqTF31P9I4QCpMXfU/0jhAuycPC7U2OUC7Jw8LtTY5QA==","dtype":"float64","order":"little","shape":[128]},"y":{"__ndarray__":"AAAAAAAAAACCKndEVRh6P4Iqd0RVGHo/4/gq3N4HrT/j+Crc3getP7wjRRRmcsU/vCNFFGZyxT+b6sweB4/PP5vqzB4Hj88/DXY6p8e4zz8Ndjqnx7jPP+f4KtzeB80/5/gq3N4HzT9HBT52/EvMP0cFPnb8S8w/vbl6E4qrxj+9uXoTiqvGP51R+zVoGcY/nVH7NWgZxj/EDwbtX1u9P8QPBu1fW70/KskplyIsvj8qySmXIiy+P/215MwVQro//bXkzBVCuj8jXMOsyyi3PyNcw6zLKLc/o6TqJcOMtD+jpOolw4y0P5N6yko1T7A/k3rKSjVPsD8dtJmpWw2sPx20malbDaw/zM4KAVHKqD/MzgoBUcqoP/ZIfuK+PqM/9kh+4r4+oz8KtJmpWw2sPwq0malbDaw/Q9Y2jjmdoT9D1jaOOZ2hP9YPBu1fW50/1g8G7V9bnT8dtJmpWw2cPx20malbDZw/EXOevUx8lz8Rc569THyXP8zOCgFRyog/zM4KAVHKiD8HMqPRPeuSPwcyo9E965I/+eFPy120jD/54U/LXbSMP3GogGw39oA/caiAbDf2gD/0cp69THyHP/Rynr1MfIc/P4bjh1lmiz8/huOHWWaLP4Uqd0RVGHo/hSp3RFUYej+eu8U2ROCEP567xTZE4IQ/EXOevUx8dz8Rc569THx3P/nhT8tdtHw/+eFPy120fD9umShSZlBvP26ZKFJmUG8/+eFPy120fD/54U/LXbR8P26ZKFJmUF8/bpkoUmZQXz+Du8U2ROB0P4O7xTZE4HQ/nrvFNkTgZD+eu8U2ROBkP4Uqd0RVGGo/hSp3RFUYaj9GmShSZlBvP0aZKFJmUG8/nrvFNkTgRD+eu8U2ROBEP567xTZE4FQ/nrvFNkTgVD8AAAAAAAAAAAAAAAAAAAAAnrvFNkTgVD+eu8U2ROBUP567xTZE4FQ/nrvFNkTgVD+eu8U2ROBUP567xTZE4FQ/nrvFNkTgRD+eu8U2ROBEPwAAAAAAAAAAAAAAAAAAAACeu8U2ROBEP567xTZE4EQ/nrvFNkTgRD+eu8U2ROBEP567xTZE4EQ/nrvFNkTgRD+eu8U2ROBUP567xTZE4FQ/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABumShSZlBfP26ZKFJmUF8/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACeu8U2ROBEP567xTZE4EQ/AAAAAAAAAAAAAAAAAAAAAJ67xTZE4EQ/nrvFNkTgRD8AAAAAAAAAAA==","dtype":"float64","order":"little","shape":[128]}},"selected":{"id":"2824"},"selection_policy":{"id":"2823"}},"id":"2624","type":"ColumnDataSource"},{"attributes":{},"id":"2612","type":"ResetTool"},{"attributes":{"overlay":{"id":"2614"}},"id":"2607","type":"BoxZoomTool"},{"attributes":{},"id":"2606","type":"PanTool"},{"attributes":{},"id":"2608","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"2613"}},"id":"2609","type":"BoxSelectTool"},{"attributes":{"text":""},"id":"2707","type":"Title"},{"attributes":{"overlay":{"id":"2615"}},"id":"2610","type":"LassoSelectTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2606"},{"id":"2607"},{"id":"2608"},{"id":"2609"},{"id":"2610"},{"id":"2611"},{"id":"2612"}]},"id":"2616","type":"Toolbar"},{"attributes":{},"id":"2710","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2258","type":"BoxAnnotation"},{"attributes":{"children":[[{"id":"1980"},0,0],[{"id":"2019"},1,0],[{"id":"2065"},1,1],[{"id":"2104"},2,0],[{"id":"2149"},2,1],[{"id":"2195"},2,2],[{"id":"2234"},3,0],[{"id":"2279"},3,1],[{"id":"2324"},3,2],[{"id":"2370"},3,3],[{"id":"2409"},4,0],[{"id":"2454"},4,1],[{"id":"2499"},4,2],[{"id":"2544"},4,3],[{"id":"2590"},4,4]]},"id":"2829","type":"GridBox"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2259","type":"BoxAnnotation"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2260","type":"PolyAnnotation"},{"attributes":{"data":{"chain__":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"diverging__":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],"draw__":[28,193,206,216,282,409,484,593,612,616,617,646,693,821,862,882,896,904,938,980,628,840,924,35,79,146,202,280,287,296,427,521,681,732,754,797,808,49,50,52,53,60,161,163,231,246,251,314,600,621,658,756,912],"index":[28,193,206,216,282,409,484,593,612,616,617,646,693,821,862,882,896,904,938,980,1628,1840,1924,2035,2079,2146,2202,2280,2287,2296,2427,2521,2681,2732,2754,2797,2808,3049,3050,3052,3053,3060,3161,3163,3231,3246,3251,3314,3600,3621,3658,3756,3912],"rho":{"__ndarray__":"YAK37uap5D9TJcreUs7mP5D5gEBnUuU/9nmM8szL4j+YF2AfnTrkP7rdy31ylOc/LskBu5o83z/icrwC0RPkPzUpBd1e0uE/pMaEmEuq2j/4U+Olm0TjP14T0hqDTuY/G76FdeNd4T+9iowOSMLhP8V1jCsuDuU/da+T+rI05j9flQuVf63kP7aGUnsR7eI/W1t4Xio25D9tHofB/BXjP9kmFY21P+M/ZHWr56R35D9JopdRLLfkPyo7/aAu0uM/aEKTxJJy3z/XM4Rjlj3jP+i+nNmu0OI/urw5XKu95D/DZ+vgYO/hP7Qc6KG2jeM/wW9DjNc84j+eI/JdSl3iPx8OEqJ8weU/rmTHRiDe4z+D4PHtXYPjP5OMnIU97eU/VaGBWDZz4z/sF+yGbYvjP4P3VblQeeQ/QbyuX7Ab4j87Oq5GdiXgP10z+WabG+Q/h+C4jJsa4j9TsMbZdITkP4nUtItppuI/9Kj4vyOq4j+VZB2OrtLjP2fUfJV87OE/S+SCM/j75D8KuVLPglDlP84AF2TLcuI/2spL/id/5j/S/3ItWgDgPw==","dtype":"float64","order":"little","shape":[53]},"tau[0]":{"__ndarray__":"7Bfshm2L0z8EOShhpu3zPweZZOQsbPA/IjfDDfh88D96qdiY1xHbPxSuR+F6FNM/fPKwUGua9j/0UNuGURDZP+QUHcnlP9s/BFjk1w+x1T8bDeAtkKDXP2ZrfZHQlvI/b2Qe+YPBBECd9L7xtWf8Py6thsQ9Fvk/6WLTSiGQyz/ElEiil9H9PxeCHJQwUxlAMEeP39t0+z/PaRZod0jlP/9BJEOOrck/T83lBkMd3T9gkV8/xAbNP9OiPskdNtg/Lev+sRAdzD/wFkhQ/Jj9P9dtUPutneE/2SQ/4les2z83OXzSiQTPPwMK9fQR+M8/zlMdcjNc+j+3tBoS91jXP2e0VUlkH98/KNcUyOys4j+KdhVSflLNP2VwlLw6x9A/TaJe8GlO3T+ERrBx/bvWPzIge73748k/xHqjVpi+xz8jTifZ6nLRPxZNZyeD4wNAuFuSA3Y1yz82O1J95xfLP0g0gSIWseQ/gy9MpgrG9D9yM9yAzw/yP2DkZU0s8Mk/S1mGONYlJkCYwK27ear5P1EWvr7Wpdo/44kgzsMJ1j9AwcWKGsziPw==","dtype":"float64","order":"little","shape":[53]},"tau[1]":{"__ndarray__":"JV0z+Wb7FkDLuRRXlT0BQMLdWbvt8iJAMdP2r6y0B0C3ek5637gMQBB6Nqs+ZyBAAg6hSs2+H0CrCaLuA9AUQEesxacAGA9A5KCEmbZfE0DysFBrmvf5P8tneR7cHR1A73IR34kZDEAT8GskCcLtPzeJQWDlEARASnuDL0wm8D9Hj9/b9OciQKDDfHkBVhxA845TdCTXHkAbL90kBsEBQC6thsQ9VgVAgez17o83AUCM8szLYffpP9ieWRKgJh9AXD0nvW98B0Ao1T4dj9kAQLZnlgSoqfc/3UHsTKHz8z+tUQ/R6A76P2Dl0CLbuQtAuB6F61F4DUBy+Q/pty/7P1UwKqkTEAFAdnEbDeCt/j/jcOZXc0ABQMPYQpCDkgJADFnd6jmJEkCbyTfb3DgTQCCYo8fv7QdAt39lpUkpEUBXPsvz4I4RQPWEJR5QNgFALJ/leXD3+z+Qvd798V74P4+qJoi6zw9AEjElkuhlAEA8TtGRXL4CQM2SADW17Po/D5wzorR3IEBEF9S3zOkFQFk0nZ0MThlAXW3F/rIbJUDrbp7qkNsOQA==","dtype":"float64","order":"little","shape":[53]},"theta[0]":{"__ndarray__":"Rl9BmrEoAUDNI38w8JwCQNpyLsVV5QVAtvgUAONZBUAWpBmLprMGQPQ3oRABhwVAMqt3uB2a7T+U+x2KAr0GQN52oblOIwlAW86luKrsBEBPBkfJq7MKQIJzRpT2hgNAgGCOHr+3CECSPxh47n0EQJ/Ik6RrZgZALpCg+DHmA0DXNO84RUcLQFqBIatbfQdAsYo3Mo88B0A+IqZEEv0EQP63kh0bAQVAU67wLhcxA0CrWz0nva8DQDANw0fE1AFAkuhlFMstBkCm8naE00IEQKWD9X8O8wNAFAX6RJ5kBkC22y4016kEQIZVvJF5JAVARs7Cnnb4/j/Du1zEd6IDQNl3RfC/FQNALNSa5h1nBkB/+zpwzggGQLO1vkhoSwJA3EYDeAtkBUDMejGUE20DQB0Dste7PwVAmfViKCcaB0AMk6mCUckGQGjon+BiRf0/qyaIug/A/z9kIxCv69cAQC1DHOviNgJAorQ3+MJkA0Bf7/54r1oBQGSSkbOw5wVAUHCxogbTA0CJmBJJ9DIFQP4mFCLgkAZA3QcgtYnTBUAHsTOFzisHQA==","dtype":"float64","order":"little","shape":[53]},"theta[1]":{"__ndarray__":"rtNIS+W9IUCpE9BE2JAaQCdmvRjKyRBAZ5sb0xN2G0DjqrLvioAdQAfwFkhQXBBA8WPMXUtoJ0A8vVKWIS4mQP+VlSalYBZAeZJ0zeT7IUCPNo5Yi48fQJy/CYUI+BJAVFInoIkQKECJmBJJ9JIcQH/ZPXlYCB1A0CfyJOmaGEDVBFH3AUgeQGl0B7EzBSFA4X8r2bHxEUBGtvP91BgkQAYSFD/GvCZAmBdgH506I0A429yYnnAfQJT7HYoCPRVAf95UpMKYHECiKNAn8qQbQITwaOOItR5AG9gqweKQH0Dl1TkGZG8eQCUGgZVDyw1AZmZmZmY2IUD8471qZaIhQCjyJOmaqRdAZhTLLa2mIUAjoS3nUjwjQPzepj/7wSNALT4FwHhmFECduvJZnscUQBqojH+fMRRARpT2Bl/4JEBRa5p3nAIkQIOj5NU5BhxANLqD2JkiHEBeonprYAsgQFjFG5lHbiBAraOqCaKuG0B56SYxCMwcQME5I0p7Ix5AaW/whclUJkDkZrgBn38iQLmNBvAWaC5AmfIhqBq97z/0wwjh0QYgQA==","dtype":"float64","order":"little","shape":[53]}},"selected":{"id":"2650"},"selection_policy":{"id":"2649"}},"id":"1978","type":"ColumnDataSource"},{"attributes":{"source":{"id":"2404"}},"id":"2408","type":"CDSView"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"2365","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"2361","type":"Circle"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2406","type":"Line"},{"attributes":{"source":{"id":"1977"}},"id":"2363","type":"CDSView"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2360"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2361"},"selection_glyph":null,"view":{"id":"2363"}},"id":"2362","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2365"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2366"},"selection_glyph":null,"view":{"id":"2368"}},"id":"2367","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"2366","type":"Circle"},{"attributes":{"formatter":{"id":"2752"},"major_label_text_font_size":"0pt","ticker":{"id":"2383"}},"id":"2382","type":"LinearAxis"},{"attributes":{"data":{"x":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[208]},"y":{"__ndarray__":"AAAAAAAAAABLcWWVqoTQP0txZZWqhNA/lLSa1LfQ2j+UtJrUt9DaP1L/DQ4goOA/Uv8NDiCg4D83sXRQ+r7cPzexdFD6vtw/mfrft9i92D+Z+t+32L3YP4tVH5QUhtU/i1UflBSG1T/QZugYHRfRP9Bm6BgdF9E/6rOE9A1g0D/qs4T0DWDQP5n637fYvcg/mfrft9i9yD8o833PsynCPyjzfc+zKcI/KPN9z7Mpwj8o833PsynCP0L+ECzrB7w/Qv4QLOsHvD8LjsxmPyy7PwuOzGY/LLs/J2fzCHJPtj8nZ/MIck+2P1rpFjPQLL0/WukWM9AsvT8Wkef6pwW0PxaR5/qnBbQ/eNpSYoYEsD942lJihgSwP1gTCyUG46o/WBMLJQbjqj8qPf8WPJmoPyo9/xY8mag/k7BecFBOoj+TsF5wUE6iPwOm4fPC4KI/A6bh88Lgoj/LMoKariuZP8sygpquK5k/f7BecFBOoj9/sF5wUE6iP6ZHfJPJBpg/pkd8k8kGmD/CR3yTyQaYP8JHfJPJBpg/joZqfhqYlD+Ohmp+GpiUP6aGan4amIQ/poZqfhqYhD93xVhpaymRP3fFWGlrKZE/k7BecFBOkj+TsF5wUE6SP70Ijqh4dYs/vQiOqHh1iz+mhmp+GpiUP6aGan4amJQ/b9pSYoYEgD9v2lJihgSAP3+wXnBQToI/f7BecFBOgj+TsF5wUE6CP5OwXnBQToI/oAiOqHh1ez+gCI6oeHV7P6iwXnBQTnI/qLBecFBOcj9/sF5wUE6CP3+wXnBQToI/n1x2jOThhj+fXHaM5OGGP9Jcdozk4XY/0lx2jOThdj+fXHaM5OGGP59cdozk4YY/vQiOqHh1az+9CI6oeHVrP59cdozk4XY/n1x2jOThdj+9CI6oeHV7P70Ijqh4dXs/qLBecFBOcj+osF5wUE5yP3+wXnBQTnI/f7BecFBOcj9/sF5wUE5yP3+wXnBQTnI/vQiOqHh1ez+9CI6oeHV7P3+wXnBQTnI/f7BecFBOcj/7CI6oeHV7P/sIjqh4dXs/vQiOqHh1az+9CI6oeHVrP3+wXnBQTmI/f7BecFBOYj9/sF5wUE5SP3+wXnBQTlI/qLBecFBOYj+osF5wUE5iP70Ijqh4dWs/vQiOqHh1az9/sF5wUE5SP3+wXnBQTlI/f7BecFBOUj9/sF5wUE5SP3+wXnBQTlI/f7BecFBOUj+osF5wUE5yP6iwXnBQTnI/AAAAAAAAAAAAAAAAAAAAAL0Ijqh4dWs/vQiOqHh1az9/sF5wUE5SP3+wXnBQTlI/qLBecFBOYj+osF5wUE5iPwAAAAAAAAAAAAAAAAAAAAB/sF5wUE5SP3+wXnBQTlI/f7BecFBOYj9/sF5wUE5iPwAAAAAAAAAAAAAAAAAAAACosF5wUE5SP6iwXnBQTlI/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/sF5wUE5iP3+wXnBQTmI/f7BecFBOYj9/sF5wUE5iPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf7BecFBOUj9/sF5wUE5SPwAAAAAAAAAAAAAAAAAAAAB/sF5wUE5SP3+wXnBQTlI/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf7BecFBOUj9/sF5wUE5SP3+wXnBQTlI/f7BecFBOUj8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH+wXnBQTlI/f7BecFBOUj9/sF5wUE5SP3+wXnBQTlI/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/sF5wUE5SP3+wXnBQTlI/AAAAAAAAAAA=","dtype":"float64","order":"little","shape":[208]}},"selected":{"id":"2756"},"selection_policy":{"id":"2755"}},"id":"2404","type":"ColumnDataSource"},{"attributes":{"align":"end","below":[{"id":"2378"}],"center":[{"id":"2381"},{"id":"2385"}],"frame_height":150,"frame_width":150,"left":[{"id":"2382"}],"renderers":[{"id":"2407"}],"title":{"id":"2749"},"toolbar":{"id":"2396"},"toolbar_location":null,"x_range":{"id":"2371"},"x_scale":{"id":"2374"},"y_range":{"id":"2369"},"y_scale":{"id":"2376"}},"id":"2370","subtype":"Figure","type":"Plot"},{"attributes":{"source":{"id":"1978"}},"id":"2368","type":"CDSView"},{"attributes":{"start":0.0},"id":"2369","type":"DataRange1d"},{"attributes":{},"id":"2376","type":"LinearScale"},{"attributes":{"end":23.6843308,"start":-0.28407080000000007},"id":"2371","type":"Range1d"},{"attributes":{},"id":"2374","type":"LinearScale"},{"attributes":{},"id":"2379","type":"BasicTicker"},{"attributes":{"axis":{"id":"2378"},"ticker":null},"id":"2381","type":"Grid"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"2275","type":"Circle"},{"attributes":{"formatter":{"id":"2754"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"2379"}},"id":"2378","type":"LinearAxis"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"2271","type":"Circle"},{"attributes":{},"id":"2391","type":"SaveTool"},{"attributes":{"source":{"id":"1977"}},"id":"2273","type":"CDSView"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2270"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2271"},"selection_glyph":null,"view":{"id":"2273"}},"id":"2272","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2275"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2276"},"selection_glyph":null,"view":{"id":"2278"}},"id":"2277","type":"GlyphRenderer"},{"attributes":{"axis":{"id":"2382"},"dimension":1,"ticker":null},"id":"2385","type":"Grid"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"2276","type":"Circle"},{"attributes":{},"id":"2383","type":"BasicTicker"},{"attributes":{"align":"end","below":[{"id":"2418"}],"center":[{"id":"2421"},{"id":"2425"}],"frame_height":150,"frame_width":150,"left":[{"id":"2422"}],"renderers":[{"id":"2447"},{"id":"2452"}],"title":{"id":"2761"},"toolbar":{"id":"2436"},"toolbar_location":null,"x_range":{"id":"1981"},"x_scale":{"id":"2414"},"y_range":{"id":"2591"},"y_scale":{"id":"2416"}},"id":"2409","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"2286","type":"LinearScale"},{"attributes":{},"id":"2392","type":"ResetTool"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"2315","type":"Circle"},{"attributes":{"overlay":{"id":"2394"}},"id":"2387","type":"BoxZoomTool"},{"attributes":{"source":{"id":"1978"}},"id":"2278","type":"CDSView"},{"attributes":{},"id":"2386","type":"PanTool"},{"attributes":{"align":"end","below":[{"id":"2288"}],"center":[{"id":"2291"},{"id":"2295"}],"frame_height":150,"frame_width":150,"left":[{"id":"2292"}],"renderers":[{"id":"2317"},{"id":"2322"}],"title":{"id":"2721"},"toolbar":{"id":"2306"},"toolbar_location":null,"x_range":{"id":"2066"},"x_scale":{"id":"2284"},"y_range":{"id":"2371"},"y_scale":{"id":"2286"}},"id":"2279","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"2388","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"2393"}},"id":"2389","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"2395"}},"id":"2390","type":"LassoSelectTool"},{"attributes":{},"id":"2284","type":"LinearScale"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2405","type":"Line"},{"attributes":{},"id":"2301","type":"SaveTool"},{"attributes":{"formatter":{"id":"2724"},"major_label_text_font_size":"0pt","ticker":{"id":"2293"}},"id":"2292","type":"LinearAxis"},{"attributes":{"text":""},"id":"2655","type":"Title"},{"attributes":{"formatter":{"id":"2726"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"2289"}},"id":"2288","type":"LinearAxis"},{"attributes":{},"id":"2289","type":"BasicTicker"},{"attributes":{"axis":{"id":"2288"},"ticker":null},"id":"2291","type":"Grid"},{"attributes":{"axis":{"id":"2292"},"dimension":1,"ticker":null},"id":"2295","type":"Grid"},{"attributes":{},"id":"2293","type":"BasicTicker"},{"attributes":{"data_source":{"id":"2404"},"glyph":{"id":"2405"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2406"},"selection_glyph":null,"view":{"id":"2408"}},"id":"2407","type":"GlyphRenderer"},{"attributes":{},"id":"2302","type":"ResetTool"},{"attributes":{"overlay":{"id":"2304"}},"id":"2297","type":"BoxZoomTool"},{"attributes":{},"id":"2296","type":"PanTool"},{"attributes":{},"id":"2298","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"2303"}},"id":"2299","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"2305"}},"id":"2300","type":"LassoSelectTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2296"},{"id":"2297"},{"id":"2298"},{"id":"2299"},{"id":"2300"},{"id":"2301"},{"id":"2302"}]},"id":"2306","type":"Toolbar"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2393","type":"BoxAnnotation"},{"attributes":{},"id":"2658","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2394","type":"BoxAnnotation"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2395","type":"PolyAnnotation"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"2445","type":"Circle"},{"attributes":{},"id":"2792","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2613","type":"BoxAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2614","type":"BoxAnnotation"},{"attributes":{"formatter":{"id":"2634"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"1989"}},"id":"1988","type":"LinearAxis"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2615","type":"PolyAnnotation"},{"attributes":{},"id":"2794","type":"BasicTickFormatter"},{"attributes":{},"id":"1998","type":"WheelZoomTool"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"2141","type":"Circle"},{"attributes":{"source":{"id":"1977"}},"id":"2143","type":"CDSView"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2140"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2141"},"selection_glyph":null,"view":{"id":"2143"}},"id":"2142","type":"GlyphRenderer"},{"attributes":{},"id":"2244","type":"BasicTicker"},{"attributes":{"formatter":{"id":"2632"},"major_label_text_font_size":"0pt","ticker":{"id":"1993"}},"id":"1992","type":"LinearAxis"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2231","type":"Line"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"2270","type":"Circle"},{"attributes":{},"id":"1996","type":"PanTool"},{"attributes":{},"id":"2239","type":"LinearScale"},{"attributes":{},"id":"2241","type":"LinearScale"},{"attributes":{"overlay":{"id":"2004"}},"id":"1997","type":"BoxZoomTool"},{"attributes":{"formatter":{"id":"2712"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"2244"}},"id":"2243","type":"LinearAxis"},{"attributes":{"source":{"id":"2229"}},"id":"2233","type":"CDSView"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2230","type":"Line"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2625","type":"Line"},{"attributes":{"overlay":{"id":"2003"}},"id":"1999","type":"BoxSelectTool"},{"attributes":{"axis":{"id":"2243"},"ticker":null},"id":"2246","type":"Grid"},{"attributes":{"source":{"id":"2624"}},"id":"2628","type":"CDSView"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"2626","type":"Line"},{"attributes":{"start":0.0},"id":"2194","type":"DataRange1d"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2173","type":"BoxAnnotation"},{"attributes":{},"id":"1993","type":"BasicTicker"},{"attributes":{},"id":"1986","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2174","type":"BoxAnnotation"},{"attributes":{},"id":"2632","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2175","type":"PolyAnnotation"},{"attributes":{"text":""},"id":"2803","type":"Title"},{"attributes":{"axis":{"id":"1988"},"ticker":null},"id":"1991","type":"Grid"},{"attributes":{},"id":"2660","type":"BasicTickFormatter"},{"attributes":{},"id":"1984","type":"LinearScale"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"2186","type":"Circle"},{"attributes":{},"id":"2806","type":"BasicTickFormatter"},{"attributes":{},"id":"2634","type":"BasicTickFormatter"},{"attributes":{},"id":"2808","type":"BasicTickFormatter"},{"attributes":{"align":"end","below":[{"id":"2243"}],"center":[{"id":"2246"},{"id":"2250"}],"frame_height":150,"frame_width":150,"left":[{"id":"2247"}],"renderers":[{"id":"2272"},{"id":"2277"}],"title":{"id":"2707"},"toolbar":{"id":"2261"},"toolbar_location":null,"x_range":{"id":"1981"},"x_scale":{"id":"2239"},"y_range":{"id":"2371"},"y_scale":{"id":"2241"}},"id":"2234","subtype":"Figure","type":"Plot"},{"attributes":{"overlay":{"id":"2005"}},"id":"2000","type":"LassoSelectTool"},{"attributes":{},"id":"1989","type":"BasicTicker"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"2190","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"1996"},{"id":"1997"},{"id":"1998"},{"id":"1999"},{"id":"2000"},{"id":"2001"},{"id":"2002"}]},"id":"2006","type":"Toolbar"},{"attributes":{"source":{"id":"1977"}},"id":"2188","type":"CDSView"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2185"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2186"},"selection_glyph":null,"view":{"id":"2188"}},"id":"2187","type":"GlyphRenderer"},{"attributes":{"data":{"x":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[260]},"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[260]}},"selected":{"id":"2636"},"selection_policy":{"id":"2635"}},"id":"2014","type":"ColumnDataSource"},{"attributes":{},"id":"2635","type":"UnionRenderers"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2190"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2191"},"selection_glyph":null,"view":{"id":"2193"}},"id":"2192","type":"GlyphRenderer"},{"attributes":{},"id":"2636","type":"Selection"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"2191","type":"Circle"},{"attributes":{"align":"end","below":[{"id":"2203"}],"center":[{"id":"2206"},{"id":"2210"}],"frame_height":150,"frame_width":150,"left":[{"id":"2207"}],"renderers":[{"id":"2232"}],"title":{"id":"2695"},"toolbar":{"id":"2221"},"toolbar_location":null,"x_range":{"id":"2196"},"x_scale":{"id":"2199"},"y_range":{"id":"2194"},"y_scale":{"id":"2201"}},"id":"2195","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"2001","type":"SaveTool"},{"attributes":{"data":{"x":{"__ndarray__":"4nMn2H+dyz/icyfYf53LP3+pCYN9Z80/f6kJg31nzT8b3+stezHPPxvf6y17Mc8/XApnbLx90D9cCmdsvH3QPyol2EG7YtE/KiXYQbti0T/4P0kXukfSP/g/SRe6R9I/x1q67Lgs0z/HWrrsuCzTP5V1K8K3EdQ/lXUrwrcR1D9jkJyXtvbUP2OQnJe29tQ/MqsNbbXb1T8yqw1ttdvVPwDGfkK0wNY/AMZ+QrTA1j/O4O8Xs6XXP87g7xezpdc/nPtg7bGK2D+c+2DtsYrYP2oW0sKwb9k/ahbSwrBv2T85MUOYr1TaPzkxQ5ivVNo/B0y0ba452z8HTLRtrjnbP9ZmJUOtHtw/1mYlQ60e3D+kgZYYrAPdP6SBlhisA90/cpwH7qro3T9ynAfuqujdP0C3eMOpzd4/QLd4w6nN3j8P0umYqLLfPw/S6Ziost8/bnYtt9NL4D9udi2300vgP9YD5iFTvuA/1gPmIVO+4D88kZ6M0jDhPzyRnozSMOE/pB5X91Gj4T+kHlf3UaPhPwusD2LRFeI/C6wPYtEV4j9yOcjMUIjiP3I5yMxQiOI/2saAN9D64j/axoA30PriP0BUOaJPbeM/QFQ5ok9t4z+o4fEMz9/jP6jh8QzP3+M/Dm+qd05S5D8Ob6p3TlLkP3b8YuLNxOQ/dvxi4s3E5D/diRtNTTflP92JG01NN+U/RBfUt8yp5T9EF9S3zKnlP6ykjCJMHOY/rKSMIkwc5j8SMkWNy47mPxIyRY3LjuY/er/990oB5z96v/33SgHnP+BMtmLKc+c/4Ey2Yspz5z9I2m7NSebnP0jabs1J5uc/rmcnOMlY6D+uZyc4yVjoPxb136JIy+g/FvXfokjL6D9+gpgNyD3pP36CmA3IPek/5A9ReEew6T/kD1F4R7DpP0ydCePGIuo/TJ0J48Yi6j+yKsJNRpXqP7Iqwk1Gleo/","dtype":"float64","order":"little","shape":[90]},"y":{"__ndarray__":"AAAAAAAAAABUTqYV7FCiP1ROphXsUKI/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeTqYV7FCiP15OphXsUKI/Xk6mFexQoj9eTqYV7FCiP0pOphXsUKI/Sk6mFexQoj+NdXkgYnmrP411eSBieas/Xk6mFexQoj9eTqYV7FCiP291eSBieas/b3V5IGJ5qz+ShPGSzgbAP5KE8ZLOBsA/KhhbmAmbxD8qGFuYCZvEP8KrxJ1EL8k/wqvEnUQvyT+ShPGSzgbgP5KE8ZLOBuA/+Hy1WRjA1T/4fLVZGMDVP/bhDxsn5dY/9uEPGyfl1j9l6UtU3SvhP2XpS1TdK+E/AagmgekL7D8BqCaB6QvsP7xIuWrjm/Y/vEi5auOb9j+IEm7tAOb4P4gSbu0A5vg//ULMv9rm+j/9Qsy/2ub6P1JQ9aOZ4gBAUlD1o5niAEBv5/zFL5oCQG/n/MUvmgJAta9iup9SBkC1r2K6n1IGQBjcInAeMAtAGNwicB4wC0BZPy6jf8MNQFk/LqN/ww1AP1D1o5niEEA/UPWjmeIQQJFzlDpmGhNAkXOUOmYaE0BzQefZ3ocSQHNB59nehxJAmQF7PUosEkCZAXs9SiwSQOdzlDpmGhNA53OUOmYaE0CZAXs9SiwSQJkBez1KLBJAACm48HGHEUAAKbjwcYcRQHRbZVH5GRJAdFtlUfkZEkBtEB9fU1QKQG0QH19TVApA3sngMbrkBUDeyeAxuuQFQJkBez1KLAJAmQF7PUosAkB7FgwKXAn2P3sWDApcCfY/NU6mFexQ8j81TqYV7FDyP4SkiGSO6O4/hKSIZI7o7j9vhPGSzgbgP2+E8ZLOBuA/Fz8uo3/DzT8XPy6jf8PNP8t1eSBiebs/y3V5IGJ5uz81TqYV7FCiPzVOphXsUKI/y3V5IGJ5uz/LdXkgYnm7PwAAAAAAAAAA","dtype":"float64","order":"little","shape":[90]}},"selected":{"id":"2702"},"selection_policy":{"id":"2701"}},"id":"2229","type":"ColumnDataSource"},{"attributes":{"axis":{"id":"1992"},"dimension":1,"ticker":null},"id":"1995","type":"Grid"},{"attributes":{"end":0.84302156,"start":0.20344444},"id":"2196","type":"Range1d"},{"attributes":{"source":{"id":"1978"}},"id":"2193","type":"CDSView"},{"attributes":{},"id":"2002","type":"ResetTool"},{"attributes":{"overlay":{"id":"2523"}},"id":"2519","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"2525"}},"id":"2520","type":"LassoSelectTool"},{"attributes":{},"id":"2521","type":"SaveTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2303","type":"BoxAnnotation"},{"attributes":{},"id":"2522","type":"ResetTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2304","type":"BoxAnnotation"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2305","type":"PolyAnnotation"},{"attributes":{"text":""},"id":"2735","type":"Title"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2570","type":"PolyAnnotation"},{"attributes":{"text":""},"id":"2641","type":"Title"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2569","type":"BoxAnnotation"},{"attributes":{},"id":"2738","type":"BasicTickFormatter"},{"attributes":{},"id":"2644","type":"BasicTickFormatter"},{"attributes":{"overlay":{"id":"2569"}},"id":"2562","type":"BoxZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2523","type":"BoxAnnotation"},{"attributes":{},"id":"2331","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2524","type":"BoxAnnotation"},{"attributes":{},"id":"2329","type":"LinearScale"},{"attributes":{},"id":"2740","type":"BasicTickFormatter"},{"attributes":{},"id":"2346","type":"SaveTool"},{"attributes":{"formatter":{"id":"2738"},"major_label_text_font_size":"0pt","ticker":{"id":"2338"}},"id":"2337","type":"LinearAxis"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2525","type":"PolyAnnotation"},{"attributes":{"formatter":{"id":"2740"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"2334"}},"id":"2333","type":"LinearAxis"},{"attributes":{},"id":"2334","type":"BasicTicker"},{"attributes":{"axis":{"id":"2333"},"ticker":null},"id":"2336","type":"Grid"},{"attributes":{},"id":"2661","type":"UnionRenderers"},{"attributes":{},"id":"2662","type":"Selection"},{"attributes":{"axis":{"id":"2337"},"dimension":1,"ticker":null},"id":"2340","type":"Grid"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"2536","type":"Circle"},{"attributes":{},"id":"2338","type":"BasicTicker"},{"attributes":{},"id":"2347","type":"ResetTool"},{"attributes":{"overlay":{"id":"2349"}},"id":"2342","type":"BoxZoomTool"},{"attributes":{},"id":"2341","type":"PanTool"},{"attributes":{},"id":"2343","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"2348"}},"id":"2344","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"2350"}},"id":"2345","type":"LassoSelectTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2341"},{"id":"2342"},{"id":"2343"},{"id":"2344"},{"id":"2345"},{"id":"2346"},{"id":"2347"}]},"id":"2351","type":"Toolbar"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"2516"},{"id":"2517"},{"id":"2518"},{"id":"2519"},{"id":"2520"},{"id":"2521"},{"id":"2522"}]},"id":"2526","type":"Toolbar"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"2540","type":"Circle"},{"attributes":{"text":""},"id":"2667","type":"Title"},{"attributes":{"source":{"id":"1977"}},"id":"2538","type":"CDSView"},{"attributes":{"data_source":{"id":"1977"},"glyph":{"id":"2535"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2536"},"selection_glyph":null,"view":{"id":"2538"}},"id":"2537","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"1978"},"glyph":{"id":"2540"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2541"},"selection_glyph":null,"view":{"id":"2543"}},"id":"2542","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"2541","type":"Circle"},{"attributes":{},"id":"2551","type":"LinearScale"},{"attributes":{},"id":"2670","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"2580","type":"Circle"},{"attributes":{"source":{"id":"1978"}},"id":"2543","type":"CDSView"},{"attributes":{"align":"end","below":[{"id":"2553"}],"center":[{"id":"2556"},{"id":"2560"}],"frame_height":150,"frame_width":150,"left":[{"id":"2557"}],"renderers":[{"id":"2582"},{"id":"2587"}],"title":{"id":"2803"},"toolbar":{"id":"2571"},"toolbar_location":null,"x_range":{"id":"2371"},"x_scale":{"id":"2549"},"y_range":{"id":"2591"},"y_scale":{"id":"2551"}},"id":"2544","subtype":"Figure","type":"Plot"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2348","type":"BoxAnnotation"},{"attributes":{"text":""},"id":"2749","type":"Title"},{"attributes":{},"id":"2549","type":"LinearScale"},{"attributes":{"toolbar":{"id":"2830"},"toolbar_location":"left"},"id":"2831","type":"ToolbarBox"},{"attributes":{},"id":"2563","type":"WheelZoomTool"},{"attributes":{},"id":"2561","type":"PanTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"2349","type":"BoxAnnotation"},{"attributes":{"formatter":{"id":"2806"},"major_label_text_font_size":"0pt","ticker":{"id":"2558"}},"id":"2557","type":"LinearAxis"},{"attributes":{"axis_label":"tau[0]","formatter":{"id":"2808"},"major_label_orientation":"horizontal","ticker":{"id":"2554"}},"id":"2553","type":"LinearAxis"},{"attributes":{},"id":"2554","type":"BasicTicker"},{"attributes":{"axis":{"id":"2553"},"ticker":null},"id":"2556","type":"Grid"},{"attributes":{},"id":"2752","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"2350","type":"PolyAnnotation"},{"attributes":{},"id":"2672","type":"BasicTickFormatter"},{"attributes":{"axis":{"id":"2557"},"dimension":1,"ticker":null},"id":"2560","type":"Grid"},{"attributes":{},"id":"2558","type":"BasicTicker"},{"attributes":{},"id":"2646","type":"BasicTickFormatter"},{"attributes":{"text":""},"id":"2775","type":"Title"},{"attributes":{"text":""},"id":"2817","type":"Title"},{"attributes":{},"id":"2778","type":"BasicTickFormatter"},{"attributes":{},"id":"2820","type":"BasicTickFormatter"},{"attributes":{"text":""},"id":"2681","type":"Title"},{"attributes":{},"id":"2780","type":"BasicTickFormatter"},{"attributes":{},"id":"2684","type":"BasicTickFormatter"},{"attributes":{},"id":"2822","type":"BasicTickFormatter"},{"attributes":{},"id":"2686","type":"BasicTickFormatter"},{"attributes":{},"id":"2823","type":"UnionRenderers"},{"attributes":{},"id":"2824","type":"Selection"},{"attributes":{"text":""},"id":"2789","type":"Title"}],"root_ids":["2832"]},"title":"Bokeh Application","version":"2.2.3"}};n”, ” var render_items = [{"docid":"55ceaef7-c70c-4cfc-a7d7-758a1c228238","root_ids":["2832"],"roots":{"2832":"6999274f-a219-477f-85c2-778dda525fa8"}}];n”, ” root.Bokeh.embed.embed_items_notebook(docs_json, render_items);n”, “n”, ” }n”, ” if (root.Bokeh !== undefined) {n”, ” embed_document(root);n”, ” } else {n”, ” var attempts = 0;n”, ” var timer = setInterval(function(root) {n”, ” if (root.Bokeh !== undefined) {n”, ” clearInterval(timer);n”, ” embed_document(root);n”, ” } else {n”, ” attempts++;n”, ” if (attempts > 100) {n”, ” clearInterval(timer);n”, ” console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");n”, ” }n”, ” }n”, ” }, 10, root)n”, ” }n”, “})(window);”
], “application/vnd.bokehjs_exec.v0+json”: “”
}, “metadata”: {
- “application/vnd.bokehjs_exec.v0+json”: {
“id”: “2832”
}
}, “output_type”: “display_data”
}
], “source”: [
“bokeh.io.show(n”, ” bebi103.viz.corner(n”, ” samples, parameters=["theta[0]", "theta[1]", "rho", "tau[0]", "tau[1]"]n”, ” )n”, “)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“These are very useful plots for interpreting a posterior, and also for diagnosing problems with sampling. The divergent samples appear in orange. The clustering of divergences for small tau[0] is clear.n”, “n”, “The diagonal can also be plotted with ECDFs and contours may also be added to the off-diagonal plots.”
]
}, {
“cell_type”: “code”, “execution_count”: 21, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“n”, “n”, “n”, “n”, “n”, “n”, ” <div class="bk-root" id="26395559-aa27-4814-848b-49bbf9bbb5ca" data-root-id="4769"></div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“(function(root) {n”, ” function embed_document(root) {n”, ” n”, ” var docs_json = {"1733cb42-aafb-4881-9f43-8a7af1ba911d":{"roots":{"references":[{"attributes":{"children":[{"id":"4768"},{"id":"4766"}]},"id":"4769","type":"Row"},{"attributes":{},"id":"4514","type":"ResetTool"},{"attributes":{},"id":"4168","type":"SaveTool"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"3992","type":"Circle"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"3987"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3988"},"selection_glyph":null,"view":{"id":"3990"}},"id":"3989","type":"GlyphRenderer"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4222","type":"PolyAnnotation"},{"attributes":{},"id":"4169","type":"ResetTool"},{"attributes":{"source":{"id":"3809"}},"id":"3990","type":"CDSView"},{"attributes":{"overlay":{"id":"4171"}},"id":"4164","type":"BoxZoomTool"},{"attributes":{},"id":"4163","type":"PanTool"},{"attributes":{},"id":"4165","type":"WheelZoomTool"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"3992"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3993"},"selection_glyph":null,"view":{"id":"3995"}},"id":"3994","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"4170"}},"id":"4166","type":"BoxSelectTool"},{"attributes":{},"id":"4541","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"3993","type":"Circle"},{"attributes":{"overlay":{"id":"4172"}},"id":"4167","type":"LassoSelectTool"},{"attributes":{},"id":"4006","type":"LinearScale"},{"attributes":{},"id":"4677","type":"BasicTickFormatter"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"3997","type":"MultiLine"},{"attributes":{"overlay":{"id":"3881"}},"id":"3874","type":"BoxZoomTool"},{"attributes":{"source":{"id":"3810"}},"id":"3995","type":"CDSView"},{"attributes":{"align":"end","below":[{"id":"4010"}],"center":[{"id":"4013"},{"id":"4017"}],"frame_height":150,"frame_width":150,"left":[{"id":"4014"}],"renderers":[{"id":"4039"},{"id":"4044"},{"id":"4049"}],"title":{"id":"4596"},"toolbar":{"id":"4028"},"toolbar_location":null,"x_range":{"id":"3907"},"x_scale":{"id":"4006"},"y_range":{"id":"4052"},"y_scale":{"id":"4008"}},"id":"4001","subtype":"Figure","type":"Plot"},{"attributes":{"data":{"xs":[{"__ndarray__":"UkSGVbzRA0BAuW3fo74GQOONxo92tQhA1NZFuG15CUBAuW3fo74GQDB1FKUnbQVAwiEKehRWBkBAuW3fo74GQC4uVWmLqwlAk3TsIOcRCkAeozzzcpgMQO7hzY4ybQ5ADhgkfVqFD0ANcsDEcIoQQOYI4vG1tRBA0yOXw2T+EEB+xoUDITkRQF28ziZvixJA9YB5yJSvEkBIn/gj3XMTQBF6AlfNLRNAt9rPbJu/EkACzOdCw2gTQG07bY0IJhRAtJ6srMdkFEAem09UH9oUQCDcKPHYwRRAHMfHFm2SFEAPrF5qEmUUQKC7fnxooRRAHTFXNMxTFUDk9WBSfJwVQIGFMpvfIxZAqa92hgTMFUDC0YgbN8MVQMYQLbOGqBVA4/VgUnycFUBtO22NCCYUQGw90nXKFhRA9YB5yJSvEkAWt0WnaJQSQCIC70F/NxJAzGFf/M4IEkA2vKdhQOsRQH7GhQMhORFAUVFUXnzYEEAOGCR9WoUPQB6jPPNymAxAA7/LQR6PDEAuLlVpi6sJQGQdeEOM6AhAQLlt36O+BkBSRIZVvNEDQGPPnsvU5ABAjr/Q+FmqAEA91mvbrJ38P+q0boPa7/s/jyK+OjJu+T8Ly59vCxb2P0vbNoLPSvU/LuHQWzw88D+bp2R1TkLvPxi0nR4Rb+k/Mkn1IA/U6D/pJgIndcblP6DuA5DaxOQ/yME4IAiO2T/INczQeCLSPwpSIbUy1Ms/iN3L8Yg1zz/INczQeCLSP/F8VRcRV9g/Hpc/9o6U1z8yxhJv3qLVP6+KtKsYctU/EPW5w0D31T/INczQeCLSP8FgGw8qd9M/7NHTrj003D+qk6qgBtbeP14IKJCePOE/oO4DkNrE5D8ab1LtWNXpPy7h0Fs8PPA/Mb2z5ZsF8T8n39J3A1DxPwAbgbUatvA/ngBydrvE8T8gUJcSJTn0PwzLn28LFvY/0zShIUHe9j+AdpPqcSL6P+q0boPa7/s/Eq27OuIe/z9jz57L1OQAQH+sET/6OgJAAEVn65wIAkBFT/dlh2wDQFJEhlW80QNA","dtype":"float64","order":"little","shape":[99]},{"__ndarray__":"UkSGVbzRA0BFRWY0k7UFQEC5bd+jvgZAUY2wAjaHCEAvLlVpi6sJQCrIwYj0ywlAcjawDLE6C0A00T7SCEcMQB6jPPNymAxA/IWcgHuwDEDWsz3f1ZMNQB1zECus2A5ADhgkfVqFD0A0Xg5RJgQQQFibv7zWahBAJkT9EZyMEEBAmj79FaIQQH6/oZ6qfhBAJgSYFzp1EEDo/3K3B6QQQGXfcLSlxRBASAW1MSq4EEDUKYmX53cQQKGB91OyBRBADxgkfVqFD0CK3tCgtfcOQFhIr2kC7Q1AHqM883KYDEC2ezSvj6AKQC4uVWmLqwlAChyecBSoB0BAuW3fo74GQC50ENXCOQRAUkSGVbzRA0D7hn7YVVIBQGPPnsvU5ABAof3BFQsj/T/qtG6D2u/7PwlbV61X1fk/Kr2gQJ249z8My59vCxb2PxUX6piYSPU/nj7Rv0n+8j/G4S9/zGvyP1KceNtzpfI/SwNd8g668j85f0w4erPyP+DqRtmblvI/nEbJszT/8j+Td/wLbN/zP4yPm0nv4vQ/DMufbwsW9j9RU6LEHHz2PxR9pV9T0/c/Sgl54k40+T/mQH8S5o77P+m0boPa7/s/Rr0vX9uA/T9kV4ecV63+P37HZnMCM/8/ggi+FKElAEBjz57L1OQAQIRNGR6qFwJAUkSGVbzRA0A=","dtype":"float64","order":"little","shape":[64]},{"__ndarray__":"UkSGVbzRA0BAuW3fo74GQHysT0OqJwdAy57jDjLQB0DadmPO3j8JQC4uVWmLqwlApiqqxWq+CkDGSqQgoI8LQG0vVaMEywtAzall03TMC0Chbu2kduELQEva/iAOJwxAIPo0tfljDEBCaUm1BWwMQIxmC1qRQgxAb4MZVCvjC0CesMsddcEKQC4uVWmLqwlAeK6ZrFwOCUBggrWz4tIGQEC5bd+jvgZArxEE/hgEBUBSRIZVvNEDQGPPnsvU5ABAQtvPb13eAECCgfRYzyH/P9Tlj8y9TP0/oyjgfCwh/D/qtG6D2u/7P/9mdat+kfw/9Lrwv5mz/D904h/v1TT8P1adp9nJNvw/ZXr6yHXc/D84pQQ49579Pwo/0kTyvP4/1OdBOAQ9AEBjz57L1OQAQFpUO+IAXQFAsRwlTj7PAkBSRIZVvNEDQA==","dtype":"float64","order":"little","shape":[41]},{"__ndarray__":"UkSGVbzRA0BAuW3fo74GQGcLFLUfKAdAdJ5KH4OFB0B28Yw6GQEIQLAF/Vwc3wdAwVHV4FkTB0BAuW3fo74GQDquGrnWugRAUkSGVbzRA0CJwdR/mL0DQIIUMS0NigNAmHrKYtg1A0C4rBGWRdwCQPwYOPaSggJAdXQ2VWSEAkCGuVALgkYDQFJEhlW80QNA","dtype":"float64","order":"little","shape":[18]}],"ys":[{"__ndarray__":"9XsRJ55Q2D8MQ51t6xfYP6IC7S83b9g/diTqR7s42T+VJzUjVdzZP0tG518/Ato/Hmjkd8PL2j8Zg1Ld89faPwkEgK/rfds/9Ynhj0eV2z/Sl7BbhP7bP8ir3qfLXtw/bJwJQye03D+czdu/TyjdP3Dv2NfT8d0/RBHW71e73j8MT13e6OPePxoz0wfchN8/OXBn0fOf3z93KugPMCfgP2G75hvyi+A/S0zlJ7Tw4D823eMzdlXhP64CYxi3peE/H27iPzi64T8I/+BL+h7iP/OP31e8g+I/3SDeY37o4j/IsdxvQE3jP7FC23sCsuM/m9PZh8QW5D8O0f8EOE3kP4Zk2JOGe+Q/cPXWn0jg5D9ahtWrCkXlP0QX1LfMqeU/sE0Cbqyv5T//YaZoBgvmPy+o0sOODuY/aPUfYEJj5j8ZOdHPUHPmPwPKz9sS2OY/7VrO59Q85z/W68zzlqHnP1HhDpA38uc/wXzL/1gG6D9Is1U3uS7oP9gyLETWaeg/qw3KCxtr6D+IejofecDoP5WeyBfdz+g/JQpy0lj66D8w4IicDQLpP2bt2vf01ug/lZ7IF93P6D+rDcoLG2voP7TS1YyHUOg/wXzL/1gG6D/3oFykGavnP9brzPOWoec/uIplJZ9K5z/tWs7n1DznPwPKz9sS2OY/GTnRz1Bz5j8vqNLDjg7mP4ZB9g12AOY/RBfUt8yp5T+Jx7dTtWXlP1qG1asKReU/cPXWn0jg5D+xIjxpvMrkP4Zk2JOGe+Q/m9PZh8QW5D+xQtt7ArLjP8ex3G9ATeM/3SDeY37o4j/zj99XvIPiPwn/4Ev6HuI/H27iPzi64T813eMzdlXhP0tM5Se08OA//Ai6HjLI4D9hu+Yb8ovgP4KSf9yfQOA/dyroDzAn4D8ZM9MH3ITfP0QR1u9Xu94/cO/Y19Px3T+czdu/TyjdPyBVzEWqpdw/yKvep8te3D/0ieGPR5XbP9b2APLKL9s/IGjkd8PL2j+jA9atBDfaP0tG518/Ato/diTqR7s42T+iAu0vN2/YP/V7ESeeUNg/","dtype":"float64","order":"little","shape":[99]},{"__ndarray__":"AiKCBCbn3D+czdu/TyjdP/S7wczSUd0/cO/Y19Px3T9DL/k7f6LeP0QR1u9Xu94/GTPTB9yE3z93KugPMCfgP0AoiLBFfOA/YbvmG/KL4D9LTOUntPDgPzXd4zN2VeE/YiOOabOV4T8fbuI/OLrhPwn/4Ev6HuI/84/fV7yD4j/dIN5jfujiP8ex3G9ATeM/sULbewKy4z+b09mHxBbkP4Zk2JOGe+Q/cPXWn0jg5D9ahtWrCkXlP0UX1LfMqeU/9crrMHvV5T8vqNLDjg7mPxk50c9Qc+Y/A8rP2xLY5j/tWs7n1DznPzySr58Laec/1uvM85ah5z8wYCqd5b/nP9frzPOWoec/VlRBiBud5z/uWs7n1DznP+P+heCaMOc/A8rP2xLY5j9p19nJj7fmPxg50c9Qc+Y/L6jSw44O5j9JqBJTV8PlP0QX1LfMqeU/WobVqwpF5T9w9dafSODkP4Zk2JOGe+Q/m9PZh8QW5D+xQtt7ArLjP8ex3G9ATeM/3SDeY37o4j/zj99XvIPiPwn/4Ev6HuI/40r1euTf4T8fbuI/OLrhPzXd4zN2VeE/S0zlJ7Tw4D9hu+Yb8ovgP8lIdZLbfeA/dyroDzAn4D8ZM9MH3ITfP0QR1u9Xu94/cO/Y19Px3T8lFnf79XTdP5zN279PKN0/AiKCBCbn3D8=","dtype":"float64","order":"little","shape":[64]},{"__ndarray__":"6mqukgNO4D+NgwzecljgP2G75hvyi+A/SkzlJ7Tw4D813eMzdlXhP5veDWcVcOE/Hm7iPzi64T8J/+BL+h7iP/OP31e8g+I/3SDeY37o4j/HsdxvQE3jP7FC23sCsuM/m9PZh8QW5D+GZNiThnvkP3D11p9I4OQ/WobVqwpF5T9EF9S3zKnlP2MccdYD7+U/LqjSw44O5j8ZOdHPUHPmP1DwoPwMduY/GTnRz1Bz5j/MR4vG0XHmP09LGQINEOY/L6jSw44O5j9EF9S3zKnlP1qG1asKReU/cPXWn0jg5D+GZNiThnvkP5vT2YfEFuQ/sULbewKy4z/HsdxvQE3jP90g3mN+6OI/84/fV7yD4j8J/+BL+h7iPx9u4j84uuE/NN3jM3ZV4T85TKpb0Q/hP0tM5Se08OA/YbvmG/KL4D/qaq6SA07gPw==","dtype":"float64","order":"little","shape":[41]},{"__ndarray__":"znNot0tQ4j/zj99XvIPiP90g3mN+6OI/x7Hcb0BN4z+xQtt7ArLjP5rT2YfEFuQ/h2TYk4Z75D/IQiz+377kP3D11p9I4OQ/uxyagk/q5D9w9dafSODkP4Zk2JOGe+Q/nNPZh8QW5D+xQtt7ArLjP8ex3G9ATeM/3SDeY37o4j/zj99XvIPiP85zaLdLUOI/","dtype":"float64","order":"little","shape":[18]}]},"selected":{"id":"4591"},"selection_policy":{"id":"4590"}},"id":"3996","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"3996"},"glyph":{"id":"3997"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3998"},"selection_glyph":null,"view":{"id":"4000"}},"id":"3999","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4232"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4233"},"selection_glyph":null,"view":{"id":"4235"}},"id":"4234","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"4037","type":"Circle"},{"attributes":{"source":{"id":"3996"}},"id":"4000","type":"CDSView"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"3998","type":"MultiLine"},{"attributes":{},"id":"4008","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4515","type":"BoxAnnotation"},{"attributes":{"toolbar":{"id":"4767"},"toolbar_location":"left"},"id":"4768","type":"ToolbarBox"},{"attributes":{},"id":"4679","type":"BasicTickFormatter"},{"attributes":{},"id":"4023","type":"SaveTool"},{"attributes":{"formatter":{"id":"4599"},"major_label_text_font_size":"0pt","ticker":{"id":"4015"}},"id":"4014","type":"LinearAxis"},{"attributes":{"formatter":{"id":"4601"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"4011"}},"id":"4010","type":"LinearAxis"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4516","type":"BoxAnnotation"},{"attributes":{},"id":"4011","type":"BasicTicker"},{"attributes":{"axis":{"id":"4010"},"ticker":null},"id":"4013","type":"Grid"},{"attributes":{"source":{"id":"3809"}},"id":"4235","type":"CDSView"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4170","type":"BoxAnnotation"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4517","type":"PolyAnnotation"},{"attributes":{"axis":{"id":"4014"},"dimension":1,"ticker":null},"id":"4017","type":"Grid"},{"attributes":{},"id":"4015","type":"BasicTicker"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4171","type":"BoxAnnotation"},{"attributes":{},"id":"4024","type":"ResetTool"},{"attributes":{"overlay":{"id":"4026"}},"id":"4019","type":"BoxZoomTool"},{"attributes":{},"id":"4018","type":"PanTool"},{"attributes":{},"id":"4020","type":"WheelZoomTool"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"tau[1]"},"y":{"field":"__ECDF_tau[1]"}},"id":"4528","type":"Circle"},{"attributes":{"overlay":{"id":"4025"}},"id":"4021","type":"BoxSelectTool"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4172","type":"PolyAnnotation"},{"attributes":{"overlay":{"id":"4027"}},"id":"4022","type":"LassoSelectTool"},{"attributes":{},"id":"4219","type":"ResetTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4213"},{"id":"4214"},{"id":"4215"},{"id":"4216"},{"id":"4217"},{"id":"4218"},{"id":"4219"}]},"id":"4223","type":"Toolbar"},{"attributes":{},"id":"4215","type":"WheelZoomTool"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"4183","type":"Circle"},{"attributes":{"overlay":{"id":"4221"}},"id":"4214","type":"BoxZoomTool"},{"attributes":{"overlay":{"id":"4220"}},"id":"4216","type":"BoxSelectTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4508"},{"id":"4509"},{"id":"4510"},{"id":"4511"},{"id":"4512"},{"id":"4513"},{"id":"4514"}]},"id":"4518","type":"Toolbar"},{"attributes":{},"id":"4213","type":"PanTool"},{"attributes":{"axis":{"id":"4209"},"dimension":1,"ticker":null},"id":"4212","type":"Grid"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4527"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4528"},"selection_glyph":null,"view":{"id":"4530"}},"id":"4529","type":"GlyphRenderer"},{"attributes":{},"id":"4210","type":"BasicTicker"},{"attributes":{"overlay":{"id":"4222"}},"id":"4217","type":"LassoSelectTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4163"},{"id":"4164"},{"id":"4165"},{"id":"4166"},{"id":"4167"},{"id":"4168"},{"id":"4169"}]},"id":"4173","type":"Toolbar"},{"attributes":{"source":{"id":"3809"}},"id":"4530","type":"CDSView"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4025","type":"BoxAnnotation"},{"attributes":{"text":""},"id":"4688","type":"Title"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"4187","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4018"},{"id":"4019"},{"id":"4020"},{"id":"4021"},{"id":"4022"},{"id":"4023"},{"id":"4024"}]},"id":"4028","type":"Toolbar"},{"attributes":{"source":{"id":"3809"}},"id":"4185","type":"CDSView"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4182"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4183"},"selection_glyph":null,"view":{"id":"4185"}},"id":"4184","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4187"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4188"},"selection_glyph":null,"view":{"id":"4190"}},"id":"4189","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"4188","type":"Circle"},{"attributes":{},"id":"4218","type":"SaveTool"},{"attributes":{},"id":"4691","type":"BasicTickFormatter"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"4042","type":"Circle"},{"attributes":{},"id":"4542","type":"UnionRenderers"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"4038","type":"Circle"},{"attributes":{"source":{"id":"3810"}},"id":"4190","type":"CDSView"},{"attributes":{},"id":"4543","type":"Selection"},{"attributes":{"formatter":{"id":"4661"},"major_label_text_font_size":"0pt","ticker":{"id":"4210"}},"id":"4209","type":"LinearAxis"},{"attributes":{"source":{"id":"3809"}},"id":"4040","type":"CDSView"},{"attributes":{"data":{"xs":[{"__ndarray__":"5MQl+F/NKECIWR0y+xEpQHC/fZdeFClArKdeBx12KEByhuKON1EoQOhqK/aXBSdAv5YoQfUDJ0BU3VHGPMwlQF1PdF34uSVAY9IPyKkpJUAgBuQ4jn0kQNIzvcRYbiRAkMRq0F7aI0BIGAYsuSIjQOMppc5FzCJAGR5KSXYYIkC+/E6TGdchQDLhl/p5iyBAUIvBw7R/HkA6VFOSdegbQFuxfxSU9RlAJB3lYDZRGUBVXmSx5lUXQBDmdi/3uRZA+KfHCb8rFUD6rgj+tyIUQLN5n34zVhJA5HeazHiLEUAKDwJ9qOIQQMJQj/M1wg5AoIFYNnPoDUB2E3zT9LkIQH2ldGOQWgdA1Qhp51tyBEBKpZ9wdosDQCeG9IOtL/4/QG6GG/C5/D/SOrMPUEP2P/KUeABkFvQ/bnd/erbV9D8=","dtype":"float64","order":"little","shape":[40]},{"__ndarray__":"duq7vaN9JUBWmf1jOrElQA3wfhBWgSVA2kZBiM2uJEDSM73EWG4kQNZD1bIqkyNASBgGLLkiI0DCeMF7eaUiQL38TpMZ1yFAMuGX+nmLIEAaB9sHQ20gQFCLwcO0fx5AO1RTknXoG0AimGeDrdQbQCQd5WA2URlACfHGqTweGUBykW+FExoXQBDmdi/3uRZA82+qAGFdFED6rgj+tyIUQOR3msx4ixFALyOmfLdkEUAMQMX+HZQPQGJjtCD1rw5AuNWw42jaD0A=","dtype":"float64","order":"little","shape":[25]},{"__ndarray__":"WPWp76EeI0BIGAYsuSIjQGQQq0AENyNASBgGLLkiI0D2Nt5rk7AiQL38TpMZ1yFACNg+FexkIUAy4Zf6eYsgQFCLwcO0fx5AOlRTknXoG0Dj/8HiRrgZQCQd5WA2URlAmJ5XiCjZFkAQ5nYv97kWQEOmiD7vDxZAEOZ2L/e5FkA=","dtype":"float64","order":"little","shape":[16]},{"__ndarray__":"I5XKLKeeIEAy4Zf6eYsgQFCLwcO0fx5ANmOz2oRgHEDguKz5jlYcQA==","dtype":"float64","order":"little","shape":[5]}],"ys":[{"__ndarray__":"qSD1jZ4R2j9Wk/E5wcjrPyxLdJZZRPU/rMzvj1Kk/D/A3kT225H9P/iUjbgl/QFAFqe1xCUCAkDXZ3NBIrIFQBpar8GC+AVAmCgxvh5iCUBY6e46GxINQInsJPrNZQ1ADFXW2wthEEBsNTUaCjkSQMwVlFgIERRALPbylgbpFUCpkSqygVwWQMy5sfgQNBdA91a3ppPfFkDqaPe+ZGgWQCz28pYG6RVAc1YqaACyFUDMFZRYCBEUQKNkE34KphNAbDU1Ggo5EkBNOvFKFKYRQAxV1tsLYRBABqo0S3+MDkBY6e46GxINQJgoMb4eYglAoIvJw2HLCEDSX8Pxr/QGQNdnc0EisgVAFqe1xCUCAkDJ7AtLgC4BQKzM749SpPw/7oS0BsGS+z8sS3SWWUT1P1aT8TnByOs/qSD1jZ4R2j8=","dtype":"float64","order":"little","shape":[40]},{"__ndarray__":"qCD1jZ4R2j9Wk/E5wcjrPyxLdJZZRPU/rMzvj1Kk/D+R0qBbvFD+PxantcQlAgJA1JLGAni5A0DXZ3NBIrIFQJgoMb4eYglAExhZ06X1DEBY6e46GxINQMzmSR+ecw5AJZFMftsjDUBY6e46GxINQJi0ooDNvwlAmCgxvh5iCUDXZ3NBIrIFQKr+0OcmRgVAFqe1xCUCAkBpV1t/V8QBQKkXs0anG/0/rMzvj1Kk/D8sS3SWWUT1P1aT8TnByOs/qSD1jZ4R2j8=","dtype":"float64","order":"little","shape":[25]},{"__ndarray__":"qSD1jZ4R2j81g1haJhXgP1aT8TnByOs//H+j6MAY7j8sS3SWWUT1P7BhYjAXnPo/rMzvj1Kk/D+PF7bATTQAQBVAvb+5GwFAKkVjjuRKAECszO+PUqT8P4RKpG/8zPs/LEt0lllE9T9YoslLxzD0P1aT8TnByOs/qSD1jZ4R2j8=","dtype":"float64","order":"little","shape":[16]},{"__ndarray__":"qSD1jZ4R2j9Wk/E5wcjrPwYQVLdk8PE/VpPxOcHI6z+pIPWNnhHaPw==","dtype":"float64","order":"little","shape":[5]}]},"selected":{"id":"4653"},"selection_policy":{"id":"4652"}},"id":"4191","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4037"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4038"},"selection_glyph":null,"view":{"id":"4040"}},"id":"4039","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4042"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4043"},"selection_glyph":null,"view":{"id":"4045"}},"id":"4044","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"4046"},"glyph":{"id":"4047"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4048"},"selection_glyph":null,"view":{"id":"4050"}},"id":"4049","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"4043","type":"Circle"},{"attributes":{"source":{"id":"4046"}},"id":"4050","type":"CDSView"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4048","type":"MultiLine"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4221","type":"BoxAnnotation"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4047","type":"MultiLine"},{"attributes":{"source":{"id":"3810"}},"id":"4045","type":"CDSView"},{"attributes":{},"id":"4693","type":"BasicTickFormatter"},{"attributes":{},"id":"4544","type":"UnionRenderers"},{"attributes":{"align":"end","below":[{"id":"4060"}],"center":[{"id":"4063"},{"id":"4067"}],"frame_height":150,"frame_width":150,"left":[{"id":"4064"}],"renderers":[{"id":"4089"},{"id":"4094"}],"title":{"id":"4612"},"toolbar":{"id":"4078"},"toolbar_location":null,"x_range":{"id":"4052"},"x_scale":{"id":"4056"},"y_range":{"id":"4054"},"y_scale":{"id":"4058"}},"id":"4051","subtype":"Figure","type":"Plot"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4220","type":"BoxAnnotation"},{"attributes":{},"id":"4545","type":"Selection"},{"attributes":{"data":{"xs":[{"__ndarray__":"OlRTknXoG0BPi8HDtH8eQDLhl/p5iyBAvfxOkxnXIUA2wtxYDf0iQEgYBiy5IiNASNHnTyyiI0DGt7M9TAgkQB2KJTDORyRAhVktUC9oJEDSM73EWG4kQKUC/4Ty8iRAGSyEn+FjJUBatzJtKrIlQF1PdF34uSVAN7QIJbw2JkCkjAwa59EmQGomQf1u6iZAkUlFKIDjJkDoaiv2lwUnQJ+uyzJ5DCdAFOxe5hubJ0AC6H7lSLQnQGgI4Q5VeidARHYQzbGyJ0DSq3TP7icoQIpDN+rbCShAgmJSZrANJ0Doaiv2lwUnQL6cswesVCZA+GL+bEvPJUBdT3Rd+LklQOhqfDIdkCVAbwKPPI9EJUDKoO9pgs4kQNIzvcRYbiRAsD0DZmNBJECeIXBPHY8jQEgYBiy5IiNANDtIysphIkC9/E6TGdchQAPtmwNKkyBAMeGX+nmLIEBQi8HDtH8eQDpUU5J16BtAHuR8lqbGG0AkHeVgNlEZQG7KoTZk9RdAEOZ2L/e5FkCPz9nZJokVQD9b870fQBRA+q4I/rciFECOuYDd+hISQOR3msx4ixFAoIFYNnPoDUAm9v1FCT8MQHAWMUOzeQpAdhN80/S5CEC9TwrCIDcGQEqln3B2iwNAdFWuEvuOAkB9zbsZTd8AQHKiNymi0gBAZEeGY+KfAEDAhVdO8vsBQMIzXlnmugJAxuHuRh3MAUC1wnLWOhwBQKAjRks5vgFASqWfcHaLA0DC7WwNSSsEQHYTfNP0uQhAvCMaz+wpCkCggVg2c+gNQEn67Q217Q1AkaALCjjEDkBAI/3zG8sPQAnnSSqirxBA5HeazHiLEUCrl9wiaJ8RQErchG6xRBJAu4x83Jy/EkD6rgj+tyIUQJRuMdMq6BRAEOZ2L/e5FkAkHeVgNlEZQAyeouaVuhtAOlRTknXoG0A=","dtype":"float64","order":"little","shape":[88]},{"__ndarray__":"OlRTknXoG0BQi8HDtH8eQDLhl/p5iyBArLUrj+cTIUC9/E6TGdchQKK64gE4/CFAAOph1DFaIkA0EopiZrwiQFKwy9kpAyNASBgGLLkiI0BWPAp2iTwjQEY0PS+roiNAvNztmaJSJEDSM73EWG4kQO1qh+0gxyRA+gRhg7vSJECPph3r+dkkQL9nWwmc3CRAlAo97NLMJEDX+VK5A8MkQEPc7zY9myRA0jO9xFhuJECIcEWdbFckQEOG+cRCLyRAjMAWA0jxI0AYQ9PjGG0jQEgYBiy5IiNA0nLd2K3dIkCtGdR7k1IiQL38TpMZ1yFAa44jEM1oIUAy4Zf6eYsgQL8BhVol8h5AT4vBw7R/HkDgdLN0SUgeQDpUU5J16BtAh9+oeQVrGkAkHeVgNlEZQPdthJSwjBdAEOZ2L/e5FkBK3A+x7ncVQDE+c5arURRA+q4I/rciFEBiXzic9dUSQOR3msx4ixFAnaIPqKENEUBkw220cJ0QQBzLD063aBFA7lbIph4YEUCiokO2lZsQQLFHaD2gxhBA5HeazHiLEUCrWR1R+Y8RQDzO3W1TkxJACFTlHrI+E0CoECWMXJkTQPquCP63IhRA7w5pzPgIFUBRTXIduJkWQBDmdi/3uRZA47ziwgDeF0Cl6/Xg4NsYQCQd5WA2URlAaiaMIJ33GUAnW8xWiLkbQDpUU5J16BtA","dtype":"float64","order":"little","shape":[66]},{"__ndarray__":"UIvBw7R/HkAy4Zf6eYsgQFgOIM1SryBA/n2GFdx1IUC8/E6TGdchQMNPd6p6ByJA1mutgn+CIkCOoN7mOKciQOJABoCdmyJArDFXbFWWIkDKxSRS7rAiQJqjs7lZwSJAZDtz7jC2IkBq+3stZaIiQEorh1kRgyJAZ+e3hEQSIkC9/E6TGdchQMGnIVJiESFAMuGX+nmLIECg2vCdo/oeQFCLwcO0fx5AOlRTknXoG0CajZhIVKcbQCQd5WA2URlAkyJQT/f6GEDZ3M9ZHPQXQEcRW5MGQhdAF1b91H3NFkCoidC4vMgWQBDmdi/3uRZACp2x0QG7FkCwvLDJgcwWQGyxWTuYGhdAbLQphGyKF0BImetVK9cXQMT4lTYYQRhAJB3lYDZRGUC6ou4K8pgZQDpUU5J16BtAjFcpn1NiHEBQi8HDtH8eQA==","dtype":"float64","order":"little","shape":[41]},{"__ndarray__":"UIvBw7R/HkAcxXAqDfYeQEVVLI2GLiBAcwMtR+J9IECiaWCm22EgQDLhl/p5iyBAyltjFyqOIEC5v30eacAgQA3GnnEmviBAAKbpCrW/IEAeRjpC95sgQDLhl/p5iyBAUIvBw7R/HkCT7GP8iK0cQKmtsDI7sBxAR+i/Gcr6HECgrdQCZ/0cQFhDjhDamRxAOlRTknXoG0D9120of+QbQDpUU5J16BtAPj2BfA+RHEBSxnJUTvAdQFCLwcO0fx5A","dtype":"float64","order":"little","shape":[24]}],"ys":[{"__ndarray__":"nhGgE4aP2z8QV/uFbE/bP75c0CRFGds/mNbUjsYf2z/0ieGPR5XbP8J2Wknjp9s/yKvep8te3D+czdu/TyjdP3Dv2NfT8d0/RBHW71e73j/nuZspJ87ePxoz0wfchN8/dyroDzAn4D9hu+Yb8ovgP+Wlj3K2luA/S0zlJ7Tw4D813eMzdlXhPx9u4j84uuE/Cf/gS/oe4j8QwyXN13ziP/OP31e8g+I/3SDeY37o4j/HsdxvQE3jP7FC23sCsuM/m9PZh8QW5D+GZNiThnvkP3D11p9I4OQ/WYbVqwpF5T/tJ74G4UflP0QX1LfMqeU/L6jSw44O5j8tKelV+CTmPxk50c9Qc+Y/A8rP2xLY5j/uWs7n1DznPwzo4f8neuc/1+vM85ah5z/BfMv/WAboPwvGa09+LOg/qw3KCxtr6D9aEafaopfoP5WeyBfdz+g/XujOtU3R6D/F2hEfxufoPx6QA7sd0+g/lZ7IF93P6D/KuLlgIJToP6sNygsba+g/Uhl49aM56D/BfMv/WAboP9frzPOWoec/ipZujMaY5z/tWs7n1DznP3skzGgIHOc/A8rP2xLY5j8ZOdHPUHPmPy+o0sOODuY/UHPF0Dvn5T9EF9S3zKnlP2wyzUIaX+U/WobVqwpF5T9w9dafSODkP4Zk2JOGe+Q/m9PZh8QW5D+xQtt7ArLjP8ex3G9ATeM/3SDeY37o4j/zj99XvIPiPwn/4Ev6HuI/EXComVfN4T8fbuI/OLrhP7qcY7w1buE/Nd3jM3ZV4T/ta/8yAfLgP0tM5Se08OA/YbvmG/KL4D93KugPMCfgPxkz0wfchN8/utmmX8TW3j9EEdbvV7veP3Dv2NfT8d0/nM3bv08o3T80nBn5NpHcP8ir3qfLXtw/zN0zRikB3D8Mw34rJLzbP/SJ4Y9Hlds/nhGgE4aP2z8=","dtype":"float64","order":"little","shape":[88]},{"__ndarray__":"QYe/N/7m3T9UjnjHHp3dP8fnbm10sN0/cO/Y19Px3T/nRZtkz3veP0MR1u9Xu94/GjPTB9yE3z93KugPMCfgP2G75hvyi+A/bnVegSbI4D9LTOUntPDgPzXd4zN2VeE/Hm7iPzi64T/gm8t1KNHhPwr/4Ev6HuI/84/fV7yD4j/dIN5jfujiP8ex3G9ATeM/sULbewKy4z+b09mHxBbkP4Zk2JOGe+Q/Rrgordyu5D9w9dafSODkP1qG1asKReU/RBfUt8yp5T8vqNLDjg7mP3QMpZwLROY/GTnRz1Bz5j8Dys/bEtjmP6KMnSDOFuc/7VrO59Q85z9p780MuoznP9brzPOWoec/nH5dvd2l5z/X68zzlqHnPzh4LLe7euc/7VrO59Q85z9vcuz2IB3nPwPKz9sS2OY//QJGPi215j8YOdHPUHPmPzCo0sOODuY/HZOd/fj95T9EF9S3zKnlP2ohulwXXOU/WobVqwpF5T9w9dafSODkP4Zk2JOGe+Q/nNPZh8QW5D+yQtt7ArLjP8ex3G9ATeM/RkVg+cPq4j/dIN5jfujiP/OP31e8g+I/Cf/gS/oe4j8fbuI/OLrhPzXd4zN2VeE/S0zlJ7Tw4D9hu+Yb8ovgP0nB2A+TgeA/dyroDzAn4D8ZM9MH3ITfPyzFHhk5Id8/RBHW71e73j9w79jX0/HdP0GHvzf+5t0/","dtype":"float64","order":"little","shape":[66]},{"__ndarray__":"yaTPJzSn4D+0pzzBE9vgP0tM5Se08OA/Nd3jM3ZV4T9BDpT1iZbhPx9u4j84uuE/Cf/gS/oe4j/zj99XvIPiP90g3mN+6OI/x7Hcb0BN4z+xQtt7ArLjP5vT2YfEFuQ/hmTYk4Z75D9w9dafSODkP1qG1asKReU/RBfUt8yp5T9QO4Qk/8blPy+o0sOODuY/Tujogn1A5j8aOdHPUHPmP+oVwEhsf+Y/beeUnGl65j8ZOdHPUHPmP/TFSu6IIeY/L6jSw44O5j9EF9S3zKnlP1qG1asKReU/cPXWn0jg5D+GZNiThnvkP5vT2YfEFuQ/sULbewKy4z/HsdxvQE3jP90g3mN+6OI/84/fV7yD4j8J/+BL+h7iPx9u4j84uuE/hC9gz4Bj4T813eMzdlXhPzvsAhK/+eA/S0zlJ7Tw4D/JpM8nNKfgPw==","dtype":"float64","order":"little","shape":[41]},{"__ndarray__":"6vMVBroJ4j8J/+BL+h7iP/OP31e8g+I/3SDeY37o4j/HsdxvQE3jP26RzapVpuM/sULbewKy4z+b09mHxBbkP4Zk2JOGe+Q/cPXWn0jg5D9ahtWrCkXlP2jGCJcTTuU/P8XUmfub5T9ahtWrCkXlP3D11p9I4OQ/hmTYk4Z75D+b09mHxBbkP7FC23sCsuM/x7Hcb0BN4z/dIN5jfujiP0UnC2II5OI/84/fV7yD4j8J/+BL+h7iP+rzFQa6CeI/","dtype":"float64","order":"little","shape":[24]}]},"selected":{"id":"4607"},"selection_policy":{"id":"4606"}},"id":"4046","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4193","type":"MultiLine"},{"attributes":{"source":{"id":"3810"}},"id":"4535","type":"CDSView"},{"attributes":{},"id":"4413","type":"SaveTool"},{"attributes":{},"id":"4346","type":"LinearScale"},{"attributes":{"align":"end","below":[{"id":"4105"}],"center":[{"id":"4108"},{"id":"4112"}],"frame_height":150,"frame_width":150,"left":[{"id":"4109"}],"renderers":[{"id":"4134"},{"id":"4139"},{"id":"4144"}],"title":{"id":"4626"},"toolbar":{"id":"4123"},"toolbar_location":null,"x_range":{"id":"3812"},"x_scale":{"id":"4101"},"y_range":{"id":"4247"},"y_scale":{"id":"4103"}},"id":"4096","subtype":"Figure","type":"Plot"},{"attributes":{"axis":{"id":"4404"},"dimension":1,"ticker":null},"id":"4407","type":"Grid"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4337","type":"MultiLine"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"4377","type":"Circle"},{"attributes":{},"id":"4405","type":"BasicTicker"},{"attributes":{"formatter":{"id":"4739"},"major_label_text_font_size":"0pt","ticker":{"id":"4455"}},"id":"4454","type":"LinearAxis"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4192","type":"MultiLine"},{"attributes":{"source":{"id":"4336"}},"id":"4340","type":"CDSView"},{"attributes":{},"id":"4414","type":"ResetTool"},{"attributes":{},"id":"4103","type":"LinearScale"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4338","type":"MultiLine"},{"attributes":{"overlay":{"id":"4416"}},"id":"4409","type":"BoxZoomTool"},{"attributes":{},"id":"4101","type":"LinearScale"},{"attributes":{},"id":"4348","type":"LinearScale"},{"attributes":{},"id":"4408","type":"PanTool"},{"attributes":{},"id":"4410","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"4415"}},"id":"4411","type":"BoxSelectTool"},{"attributes":{"axis_label":"tau[0]","formatter":{"id":"4629"},"ticker":{"id":"4110"}},"id":"4109","type":"LinearAxis"},{"attributes":{},"id":"4363","type":"SaveTool"},{"attributes":{"overlay":{"id":"4417"}},"id":"4412","type":"LassoSelectTool"},{"attributes":{"formatter":{"id":"4631"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"4106"}},"id":"4105","type":"LinearAxis"},{"attributes":{"formatter":{"id":"4707"},"major_label_text_font_size":"0pt","ticker":{"id":"4355"}},"id":"4354","type":"LinearAxis"},{"attributes":{},"id":"4106","type":"BasicTicker"},{"attributes":{"axis":{"id":"4105"},"ticker":null},"id":"4108","type":"Grid"},{"attributes":{"axis_label":"theta[1]","formatter":{"id":"4709"},"major_label_orientation":"horizontal","ticker":{"id":"4351"}},"id":"4350","type":"LinearAxis"},{"attributes":{},"id":"4351","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[1]"},"y":{"field":"__ECDF_tau[1]"}},"id":"4533","type":"Circle"},{"attributes":{"axis":{"id":"4350"},"ticker":null},"id":"4353","type":"Grid"},{"attributes":{"overlay":{"id":"4465"}},"id":"4461","type":"BoxSelectTool"},{"attributes":{},"id":"4458","type":"PanTool"},{"attributes":{"axis":{"id":"4109"},"dimension":1,"ticker":null},"id":"4112","type":"Grid"},{"attributes":{},"id":"4455","type":"BasicTicker"},{"attributes":{},"id":"4464","type":"ResetTool"},{"attributes":{},"id":"4110","type":"BasicTicker"},{"attributes":{"axis":{"id":"4354"},"dimension":1,"ticker":null},"id":"4357","type":"Grid"},{"attributes":{},"id":"4460","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"4467"}},"id":"4462","type":"LassoSelectTool"},{"attributes":{"formatter":{"id":"4645"},"major_label_text_font_size":"0pt","ticker":{"id":"4160"}},"id":"4159","type":"LinearAxis"},{"attributes":{},"id":"4355","type":"BasicTicker"},{"attributes":{"overlay":{"id":"4121"}},"id":"4114","type":"BoxZoomTool"},{"attributes":{"overlay":{"id":"4466"}},"id":"4459","type":"BoxZoomTool"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4532"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4533"},"selection_glyph":null,"view":{"id":"4535"}},"id":"4534","type":"GlyphRenderer"},{"attributes":{},"id":"4113","type":"PanTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4458"},{"id":"4459"},{"id":"4460"},{"id":"4461"},{"id":"4462"},{"id":"4463"},{"id":"4464"}]},"id":"4468","type":"Toolbar"},{"attributes":{},"id":"4364","type":"ResetTool"},{"attributes":{"overlay":{"id":"4366"}},"id":"4359","type":"BoxZoomTool"},{"attributes":{"axis":{"id":"4454"},"dimension":1,"ticker":null},"id":"4457","type":"Grid"},{"attributes":{},"id":"4358","type":"PanTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4120","type":"BoxAnnotation"},{"attributes":{},"id":"4360","type":"WheelZoomTool"},{"attributes":{},"id":"4463","type":"SaveTool"},{"attributes":{"overlay":{"id":"4365"}},"id":"4361","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"4367"}},"id":"4362","type":"LassoSelectTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4121","type":"BoxAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4415","type":"BoxAnnotation"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4122","type":"PolyAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4416","type":"BoxAnnotation"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"4133","type":"Circle"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4417","type":"PolyAnnotation"},{"attributes":{"formatter":{"id":"4723"},"major_label_text_font_size":"0pt","ticker":{"id":"4405"}},"id":"4404","type":"LinearAxis"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"4428","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4358"},{"id":"4359"},{"id":"4360"},{"id":"4361"},{"id":"4362"},{"id":"4363"},{"id":"4364"}]},"id":"4368","type":"Toolbar"},{"attributes":{"align":"end","below":[{"id":"4205"}],"center":[{"id":"4208"},{"id":"4212"}],"frame_height":150,"frame_width":150,"left":[{"id":"4209"}],"renderers":[{"id":"4234"},{"id":"4239"},{"id":"4244"}],"title":{"id":"4658"},"toolbar":{"id":"4223"},"toolbar_location":null,"x_range":{"id":"4052"},"x_scale":{"id":"4201"},"y_range":{"id":"4247"},"y_scale":{"id":"4203"}},"id":"4196","subtype":"Figure","type":"Plot"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"4137","type":"Circle"},{"attributes":{"data_source":{"id":"4191"},"glyph":{"id":"4192"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4193"},"selection_glyph":null,"view":{"id":"4195"}},"id":"4194","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"4382","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4408"},{"id":"4409"},{"id":"4410"},{"id":"4411"},{"id":"4412"},{"id":"4413"},{"id":"4414"}]},"id":"4418","type":"Toolbar"},{"attributes":{"source":{"id":"3809"}},"id":"4135","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"4378","type":"Circle"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4132"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4133"},"selection_glyph":null,"view":{"id":"4135"}},"id":"4134","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4137"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4138"},"selection_glyph":null,"view":{"id":"4140"}},"id":"4139","type":"GlyphRenderer"},{"attributes":{"source":{"id":"3809"}},"id":"4380","type":"CDSView"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4377"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4378"},"selection_glyph":null,"view":{"id":"4380"}},"id":"4379","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"4138","type":"Circle"},{"attributes":{},"id":"4151","type":"LinearScale"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4382"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4383"},"selection_glyph":null,"view":{"id":"4385"}},"id":"4384","type":"GlyphRenderer"},{"attributes":{"axis":{"id":"4450"},"ticker":null},"id":"4453","type":"Grid"},{"attributes":{"source":{"id":"4191"}},"id":"4195","type":"CDSView"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4142","type":"MultiLine"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"4383","type":"Circle"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"4432","type":"Circle"},{"attributes":{},"id":"4396","type":"LinearScale"},{"attributes":{"source":{"id":"3810"}},"id":"4140","type":"CDSView"},{"attributes":{"align":"end","below":[{"id":"4155"}],"center":[{"id":"4158"},{"id":"4162"}],"frame_height":150,"frame_width":150,"left":[{"id":"4159"}],"renderers":[{"id":"4184"},{"id":"4189"},{"id":"4194"}],"title":{"id":"4642"},"toolbar":{"id":"4173"},"toolbar_location":null,"x_range":{"id":"3907"},"x_scale":{"id":"4151"},"y_range":{"id":"4247"},"y_scale":{"id":"4153"}},"id":"4146","subtype":"Figure","type":"Plot"},{"attributes":{"source":{"id":"3809"}},"id":"4430","type":"CDSView"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4427"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4428"},"selection_glyph":null,"view":{"id":"4430"}},"id":"4429","type":"GlyphRenderer"},{"attributes":{"data":{"xs":[{"__ndarray__":"ifaXk7JWEUDT3c/LRJASQPWAeciUrxJAQyPTTr2nE0BtO22NCCYUQDOEN8dMOhRAvtxzGj8MFUDk9WBSfJwVQGif5GI38BVAp9x8ot1ZFkCJJXnyfP8VQOT1YFJ8nBVAx9NdG2KlFEBtO22NCCYUQPWAeciUrxJAtJnfQlxHEkB+xoUDITkRQA4YJH1ahQ9AHqM883KYDEAuLlVpi6sJQEC5bd+jvgZAUkSGVbzRA0Bjz57L1OQAQHkUBOwXi/0/6rRug9rv+z8My59vCxb2Py7h0Fs8PPA/oe4DkNrE5D8uA3z5n8fjP8g1zNB4ItI/xLE/TJVixz9wQBnIhSJlv/adFUg0fLE/VKnDDHJSzj/INczQeCLSP0vLwK8zDto/oO4DkNrE5D/KglIJdV3mP1SXp6wIkO4/","dtype":"float64","order":"little","shape":[39]},{"__ndarray__":"YFit7WsDD0AOGCR9WoUPQPwHhumhDhBAgCBIaH/FEEAAvE0I6vYQQKFCHMwOWxBADhgkfVqFD0A530kp2g0NQB6jPPNymAxALi5VaYurCUBAuW3fo74GQFJEhlW80QNAY8+ey9TkAEDqtG6D2u/7PzyiookMPvY/DMufbwsW9j9G3IvdFPHxPziWoabR9vE/Fu7qC57G8z8My59vCxb2P7UcS0EyTPY/","dtype":"float64","order":"little","shape":[21]},{"__ndarray__":"Epe6r8dlC0BS0vDzK6wLQP/1xDuINAtALi5VaYurCUBAuW3fo74GQFJEhlW80QNAY8+ey9TkAECYSSvud7v9P8gXFoRpevw/kLEZgZwc/T8=","dtype":"float64","order":"little","shape":[10]},{"__ndarray__":"QLlt36O+BkBSRIZVvNEDQGcquCJ6YgNA","dtype":"float64","order":"little","shape":[3]}],"ys":[{"__ndarray__":"qSD1jZ4R2j9Wk/E5wcjrP+Y3aDC8vu0/LEt0lllE9T/2iDQfqhf8P6zM749SpPw/Fqe1xCUCAkAKe+5Uu7EEQNdnc0EisgVAmCgxvh5iCUBY6e46GxINQDyW9uZkEA5ADFXW2wthEECEn+WGCOoQQOmxgZjB9RFAbDU1Ggo5EkCGxX1LzTgTQFPoiaQF3xNAWOOOKHuxE0CuaImrYIwTQLmxrAvSUhNAdCouGfUAE0AynXX6lMMSQGw1NRoKORJAfm7Pox0cEkAmJoRZCIERQAxV1tsLYRBAUDnOFCtKDUBY6e46GxINQDu7pG9tVwpAmCgxvh5iCUDXZ3NBIrIFQBantcQlAgJArMzvj1Kk/D+JLTKv/0v7PyxLdJZZRPU//qSyryJk7z9Wk/E5wcjrP6og9Y2eEdo/","dtype":"float64","order":"little","shape":[39]},{"__ndarray__":"qSD1jZ4R2j/Z2bElqbXmP1WT8TnByOs/LEt0lllE9T+szO+PUqT8PxantcQlAgJAEPTa/JfUA0DWZ3NBIrIFQJhrGErrCAZA2jg+VqDoBkA608l2CNoGQMK3SxEXYAZA12dzQSKyBUB1Up1c1I0EQBantcQlAgJA1BtXB7rtAUCszO+PUqT8PyxLdJZZRPU/VpPxOcHI6z9+NXtxpOTeP6kg9Y2eEdo/","dtype":"float64","order":"little","shape":[21]},{"__ndarray__":"qSD1jZ4R2j9Wk/E5wcjrPyxLdJZZRPU/bzViTxfU+T9SL4yOPqD8P6zM749SpPw/+2mblGA1+j8sS3SWWUT1P1aT8TnByOs/qSD1jZ4R2j8=","dtype":"float64","order":"little","shape":[10]},{"__ndarray__":"qSD1jZ4R2j/u19taxBLlP6kg9Y2eEdo/","dtype":"float64","order":"little","shape":[3]}]},"selected":{"id":"4637"},"selection_policy":{"id":"4636"}},"id":"4141","type":"ColumnDataSource"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4387","type":"MultiLine"},{"attributes":{"data_source":{"id":"4141"},"glyph":{"id":"4142"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4143"},"selection_glyph":null,"view":{"id":"4145"}},"id":"4144","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4432"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4433"},"selection_glyph":null,"view":{"id":"4435"}},"id":"4434","type":"GlyphRenderer"},{"attributes":{"source":{"id":"3810"}},"id":"4385","type":"CDSView"},{"attributes":{"align":"end","below":[{"id":"4400"}],"center":[{"id":"4403"},{"id":"4407"}],"frame_height":150,"frame_width":150,"left":[{"id":"4404"}],"renderers":[{"id":"4429"},{"id":"4434"},{"id":"4439"}],"title":{"id":"4720"},"toolbar":{"id":"4418"},"toolbar_location":null,"x_range":{"id":"4052"},"x_scale":{"id":"4396"},"y_range":{"id":"4492"},"y_scale":{"id":"4398"}},"id":"4391","subtype":"Figure","type":"Plot"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"4433","type":"Circle"},{"attributes":{},"id":"4446","type":"LinearScale"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"4182","type":"Circle"},{"attributes":{"data":{"xs":[{"__ndarray__":"4v2rQBPbI0DSM73EWG4kQBOISeZz9SRA9RHO9E+mJUBdT3Rd+LklQFQLgrCUSiZACvQc+3XEJkDoaiv2lwUnQHKUykYlcydAUuLcKAfiJ0Byr+YnjLYnQCEURaJujidA8i3gmJqgJ0Cp7HSb2TgnQOhqK/aXBSdAbX9DqG9vJkBcJc8T5fUlQJyMy3Hy3iVAXU90Xfi5JUDJ4x7Y2LAkQNIzvcRYbiRASBgGLLkiI0CePmIxv6giQHyNVet63SFAvfxOkxnXIUAy4Zf6eYsgQFCLwcO0fx5AOlRTknXoG0AkHeVgNlEZQBDmdi/3uRZAx/cXncFYFED6rgj+tyIUQOR3msx4ixFA+4U1+1a7EECggVg2c+gNQM641OXK8gpAdhN80/S5CED1AfuIo7UFQEqln3B2iwNAhp0R113kAkAdjXgV0FMBQO1uoFMN7wFASqWfcHaLA0AYbBgzsTMEQFK14OyUAgZA1XBHsdqtB0B2E3zT9LkIQO0l3h+PmQlAhDiHd3JGDECggVg2c+gNQJM6UosllQ9A5HeazHiLEUD6KbItfNgRQNMaYqQoFhRA+q4I/rciFECn4OGNKTwWQA==","dtype":"float64","order":"little","shape":[56]},{"__ndarray__":"ilfBxl3/IUBIGAYsuSIjQB5+TUmFeCNALBGVvVJTJEDSM73EWG4kQCya18J+1yRACxi9cl0YJUBaKKdOKDUlQDDqn23mISVAmwAxxFXBJEDSM73EWG4kQPqVMRZJHiRASBgGLLkiI0C9/E6TGdchQGeCZXBpFyFAMuGX+nmLIEBQi8HDtH8eQDpUU5J16BtAJB3lYDZRGUAQ5nYv97kWQGWGj4YYRhVA+q4I/rciFEAvLZuzwTkSQLy2eQOHkxFA5HeazHiLEUAce41b6QYRQJF88J0enBBAFXUO+lkDEUDkd5rMeIsRQKjTpMKpGRJARAm9v2deE0D6rgj+tyIUQDcJNbmw5BRAEOZ2L/e5FkDJ9Kh1IRMXQCQd5WA2URlA526sMWzMGUA=","dtype":"float64","order":"little","shape":[37]},{"__ndarray__":"OlRTknXoG0BQi8HDtH8eQDLhl/p5iyBAqOD59F58IUC9/E6TGdchQGdN1YEdwiJASBgGLLkiI0BpQgEOkCEjQP5UcqLbsiJAvfxOkxnXIUCMnBBdXnghQDLhl/p5iyBAUIvBw7R/HkA6VFOSdegbQCQd5WA2URlAhIGw+vpyGEAQ5nYv97kWQArRG/KIpxZAaMB67qKGFkAP5nYv97kWQBIINyeCJxdANY1TsapmGEAkHeVgNlEZQFwLyaP94BpAOlRTknXoG0A=","dtype":"float64","order":"little","shape":[25]},{"__ndarray__":"UIvBw7R/HkAy4Zf6eYsgQMagY1An/CBAMuGX+nmLIEAR8IiP5UQfQFCLwcO0fx5ALY2oKED7HUA6VFOSdegbQLzaumIwuxtAO1RTknXoG0D2wQvMxzYdQFCLwcO0fx5A","dtype":"float64","order":"little","shape":[12]}],"ys":[{"__ndarray__":"3JHz9s6l5z+KmKuViQHwP8x5KekfvPM/qCrZVlil+z+3cIMFJFX9P8NtRGJIxwFAMUYcmeS7BUDsega03v4HQKEe9M+AsAlADvfLBh2lDUC+59Ge3MwQQPbTPboqxxJALMCp1XjBFEBkrBXxxrsWQAxomPWsNRdAnJiBDBW2GEDShO0nY7AaQApxWUOxqhxAeLzfwF1WHUBCXcVe/6QeQLyTprtvwR5AQDBrJxuNH0C8pBi9pk8gQNiazsrNTCFAax3rK3pRIUAj/eVS7OUhQJvKQrYi+iFAc41DeLXYIUAUSuVYse4hQEanf5f09iFA2JrOys1MIUDQPIMfMj8hQFeHugVKfSBAvKQYvaZPIEC8A0lRb6YfQEJdxV7/pB5ACnFZQ7GqHEDShO0nY7AaQIKiTxLRMxlAnJiBDBW2GEBkrBXxxrsWQCzAqdV4wRRAdDPGqLZ3E0D20z26KscSQL7n0Z7czBBADvfLBh2lDUDgSR5uoCkMQKAe9M+AsAlAMUYcmeS7BUAqg/EzwiAEQMNtRGJIxwFAwSskz4JW/T+oKtlWWKX7P8x5KekfvPM/1EukBqqS8z/dkfP2zqXnPw==","dtype":"float64","order":"little","shape":[56]},{"__ndarray__":"3ZHz9s6l5z+4n9zX2ojxP8x5KekfvPM/qCrZVlil+z+Shvdknuj9P8NtRGJIxwFAMUYcmeS7BUCgHvTPgLAJQA73ywYdpQ1AvufRntzMEEAqixhM7ekRQPbTPboqxxJALMCp1XjBFEC9qMcvFywWQGSsFfHGuxZAnCckPe02F0C+Uj95ycEXQCC4vGIUshdAB2/RHVOfF0DeYxxxnzMXQGSsFfHGuxZA5K1dwI9NFkAswKnVeMEUQPbTPboqxxJA1Tkhr5ewEkC+59Ge3MwQQA73ywYdpQ1AoB70z4CwCUBRipXVjSQIQDJGHJnkuwVAw21EYkjHAUC7OJRfWBoAQKgq2VZYpfs/aoXgLL4T9T/MeSnpH7zzPwSNezapkOk/3ZHz9s6l5z8=","dtype":"float64","order":"little","shape":[37]},{"__ndarray__":"5sOFsJxF8T80BijewP3tPxE/9OnmOfA/zHkp6R+88z9EWVNJoUf1P6gq2VZYpfs/w21EYkjHAUAxRhyZ5LsFQKAe9M+AsAlAz5mITfLVDEAO98sGHaUNQKBNPbAXuw9Az6dJ7ChLEEC4Re4MBPcPQLpAu1LpiQ5ADvfLBh2lDUBGn/dOxPwJQKAe9M+AsAlAMUYcmeS7BUCpNme+SrwEQMNtRGJIxwFAqCrZVlil+z+kG6exIWT4P8x5KekfvPM/5sOFsJxF8T8=","dtype":"float64","order":"little","shape":[25]},{"__ndarray__":"kJUY1c7j+T+oKtlWWKX7P8NtRGJIxwFALVR4/CB2BEAxRhyZ5LsFQCp/3QBWFQZAMUYcmeS7BUAIHBKQoZwCQMNtRGJIxwFAhCBZuS0IAUCoKtlWWKX7P5CVGNXO4/k/","dtype":"float64","order":"little","shape":[12]}]},"selected":{"id":"4715"},"selection_policy":{"id":"4714"}},"id":"4386","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"4386"},"glyph":{"id":"4387"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4388"},"selection_glyph":null,"view":{"id":"4390"}},"id":"4389","type":"GlyphRenderer"},{"attributes":{},"id":"4160","type":"BasicTicker"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[1]"},"y":{"field":"__ECDF_tau[1]"}},"id":"4532","type":"Circle"},{"attributes":{"source":{"id":"4141"}},"id":"4145","type":"CDSView"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4437","type":"MultiLine"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4143","type":"MultiLine"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"4427","type":"Circle"},{"attributes":{"source":{"id":"3810"}},"id":"4435","type":"CDSView"},{"attributes":{"align":"end","below":[{"id":"4450"}],"center":[{"id":"4453"},{"id":"4457"}],"frame_height":150,"frame_width":150,"left":[{"id":"4454"}],"renderers":[{"id":"4479"},{"id":"4484"},{"id":"4489"}],"title":{"id":"4736"},"toolbar":{"id":"4468"},"toolbar_location":null,"x_range":{"id":"4247"},"x_scale":{"id":"4446"},"y_range":{"id":"4492"},"y_scale":{"id":"4448"}},"id":"4441","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"4153","type":"LinearScale"},{"attributes":{"source":{"id":"4386"}},"id":"4390","type":"CDSView"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4388","type":"MultiLine"},{"attributes":{"data":{"xs":[{"__ndarray__":"isd29jof5z/tWs7n1DznP9frzPOWoec/wXzL/1gG6D/AiQPFCjXoP6wNygsba+g/N4ssQwB+6D/yo/r6mp3oP1LS86Qssug/zBeGf9XD6D8HvtMj9rLoP51jK9skdug/qw3KCxtr6D+NRvtW1CfoP8F8y/9YBug/KXLc5uvu5z91zLne3KLnP9jrzPOWoec/iqUnqXJV5z/tWs7n1DznP8Z2cmDRO+c/BMrP2xLY5j8QtmKcQ8HmPw0lSrmSiuY/GTnRz1Bz5j8WgM2SHVjmPy+o0sOODuY/LAfCUNjX5T9EF9S3zKnlPwhwiEiMj+U/WobVqwpF5T9w9dafSODkP4Zk2JOGe+Q/m9PZh8QW5D+xQtt7ArLjP8ex3G9ATeM/3SDeY37o4j/zj99XvIPiPwn/4Ev6HuI/WbaQP64O4j8fbuI/OLrhP84tUMt6heE/Nd3jM3ZV4T9dhVy5jyrhP1VIsG7qCuE/S0zlJ7Tw4D9hu+Yb8ovgP9NEaoLKKeA/dyroDzAn4D9kg9oe9fTfPxkz0wfchN8/RBHW71e73j9w79jX0/HdP5zN279PKN0/XhtSBf/73D+czdu/TyjdPz7bA/U1nd0/pYt15bzQ3T+czdu/TyjdP8gcgOuKuNw/yKvep8te3D9Mli/dddfbP/SJ4Y9Hlds/AnGNdLAu2z8gaOR3w8vaP0tG518/Ato/diTqR7s42T8LYdnqaQzZP6IC7S83b9g/UShlsnla2D+jAu0vN2/YPxzJtPGTGdk/diTqR7s42T9LRudfPwLaPx9o5HfDy9o/9Inhj0eV2z8zJYDEHLzbP8ir3qfLXtw/nM3bv08o3T+XEUUrLC7dP3Dv2NfT8d0/RBHW71e73j9v6winwGTfPw==","dtype":"float64","order":"little","shape":[83]},{"__ndarray__":"dyroDzAn4D9hu+Yb8ovgP0xM5Se08OA/Nd3jM3ZV4T8fbuI/OLrhPwn/4Ev6HuI/84/fV7yD4j/dIN5jfujiP8ix3G9ATeM/sULbewKy4z+b09mHxBbkP4Zk2JOGe+Q/cPXWn0jg5D9ahtWrCkXlP0QX1LfMqeU/L6jSw44O5j8ZOdHPUHPmP+oSHv5N1uY/A8rP2xLY5j/uWs7n1DznPyZO/pQFlec/1+vM85ah5z8KR2lVONLnP9jVfPgFyuc/1+vM85ah5z+SYEoK0HfnP+5azufUPOc/Ne09wGQt5z+rVjNu+djmPwPKz9sS2OY/GjnRz1Bz5j+7XEDtVFXmPy+o0sOODuY/8FPv4O/V5T9EF9S3zKnlP1osJKPCaOU/WobVqwpF5T9w9dafSODkP4Zk2JOGe+Q/LrmcWAUi5D+b09mHxBbkP7FC23sCsuM/x7Hcb0BN4z/dIN5jfujiP/OP31e8g+I/EOoe4K5y4j8J/+BL+h7iPx9u4j84uuE/r3cZ38ay4T813eMzdlXhP0tM5Se08OA/vaWGymbd4D9hu+Yb8ovgP+ptP0AWc+A/K0GOhCVJ4D9ySiw40i/gP3cq6A8wJ+A/GTPTB9yE3z9EEdbvV7veP3Dv2NfT8d0/h6B+9FjN3T8lSLdsDT/dP5zN279PKN0/eRFZ5YQQ3T9keCZRZyTdP5zN279PKN0/cO/Y19Px3T9nQF01103eP0QR1u9Xu94/GTPTB9yE3z9AS9+qCwHgP3cq6A8wJ+A/","dtype":"float64","order":"little","shape":[72]},{"__ndarray__":"sULbewKy4z+b09mHxBbkP/Kg1I79Z+Q/hmTYk4Z75D9w9dafSODkP1qG1asKReU/RBfUt8yp5T8vqNLDjg7mPxk50c9Qc+Y/7vB1Ed3M5j/kzfa1F6/mPxk50c9Qc+Y/1OELjtVp5j8vqNLDjg7mP9J51i/qAeY/RBfUt8yp5T9urwmRZovlP1qG1asKReU/omaJpmP05D9w9dafSODkP4Zk2JOGe+Q/m9PZh8QW5D+oUaqUl8XjP7FC23sCsuM/x7Hcb0BN4z/dIN5jfujiP/OP31e8g+I/Cf/gS/oe4j/enAAZZerhPx9u4j84uuE/Nd3jM3ZV4T8J0aH7zlThPwrT/58w9+A/S0zlJ7Tw4D+hngAYsK7gP2K0YJvPu+A/S0zlJ7Tw4D8Af/7a8SXhPzbd4zN2VeE/H27iPzi64T8J/+BL+h7iP/OP31e8g+I/3SDeY37o4j/HsdxvQE3jP2hXmPKQb+M/sULbewKy4z8=","dtype":"float64","order":"little","shape":[46]},{"__ndarray__":"sULbewKy4z+b09mHxBbkPwAifRmtJOQ/hmTYk4Z75D9w9dafSODkP1qG1asKReU/K3vvSutg5T9EF9S3zKnlP1IrqjDKseU/RBfUt8yp5T8S723d+EnlP1qG1asKReU/OgNsaE4p5T9w9dafSODkP2R7pcZyluQ/hmTYk4Z75D+b09mHxBbkP7JC23sCsuM/x7Hcb0BN4z/dIN5jfujiP/OP31e8g+I/ZXso0vVE4j8J/+BL+h7iP8trK3G6AOI/Cf/gS/oe4j/zj99XvIPiP90g3mN+6OI/x7Hcb0BN4z8mQpmb8a/jP7FC23sCsuM/","dtype":"float64","order":"little","shape":[30]}],"ys":[{"__ndarray__":"3ZHz9s6l5z/HQBqW3kvpPzKRvXYMWew/QLhNssCy8D/MeSnpH7zzPxdoWlLpN/k/qCrZVlil+z/DbURiSMcBQDFGHJnkuwVAoB70z4CwCUAO98sGHaUNQL7n0Z7czBBA0VqFCbwOEUD20z26KscSQPysnOCx4hNALMCp1XjBFEBkrBXxxrsWQDw2EIwbxBZAnJiBDBW2GECYWj1RJ6MaQNKE7SdjsBpA30WdRWBnHEAKcVlDsaocQEJdxV7/pB5A2CtaF8avH0C8pBi9pk8gQCGMTdJq5SBA2JrOys1MIUDVaY0G7eohQPSQhNj0SSJA9kz0fNYII0Bjet9/OgEjQL6U+MlmtSJAfN3AHIK3IkAWQ3pnN+IiQKniXMWjriJAUfjvyw+WIkBsKBy+2LgiQGS1WCuJdiJA9JCE2PRJIkBnX2Gc36ghQNiazsrNTCFAXNMr+CDuIEC8pBi9pk8gQEJdxV7/pB5A7iEjLCrzHUA0985qQgcdQApxWUOxqhxA31zltXqiHEDShO0nY7AaQF/wYdPNNBlA2FjzoAtOGUB8zWcJIvYZQMK4vu2UdRlAnJiBDBW2GECzFEQLffQXQGSsFfHGuxZALMCp1XjBFECq24qfi8MTQPbTPboqxxJAi/iMVJIpEkC+59Ge3MwQQO6TPKIByA9ADvfLBh2lDUBWk26uvN8KQKAe9M+AsAlAxrNmPLD9CUChHvTPgLAJQPGwTwYC9wZAMUYcmeS7BUDBQASJJ+kEQMNtRGJIxwFALz8f5z2FAUD3x67na/AAQCp+fk2NBAFAXoGSWqcM/j+oKtlWWKX7P3KSFLFY1vY//EViYc7I8z/MeSnpH7zzP1iJthlKivE/5aPDshKo7D/dkfP2zqXnPw==","dtype":"float64","order":"little","shape":[83]},{"__ndarray__":"2YrLcDP58j8M2WAmBJjyPwhtVOZ0XvE/VfWJnvmv7z/qnBnJCaTtP9pyOs0jZuw/T3QeG3Zp6j+EB3anxsLoP64eoBtozug/Uq9ZP8Y96T8eWfcQDnzpP+iK/Ncq4+k/Kc8RxYEG6j/+Vp6JRRDqP8K8Jd4fjeo/pAoosAKs6z/gE3dNm5PvP8x5KekfvPM/NcLM1UbN8z9cFdY/pdb3P6gq2VZYpfs/GLt1HHA6/T/DbURiSMcBQDFGHJnkuwVAmNxEyCe/B0CgHvTPgLAJQIIannSDdwxADvfLBh2lDUC+59Ge3MwQQJM0/fNL0hBArpmdulM+EkD20z26KscSQCzAqdV4wRRAZKwV8ca7FkCyesb5Wp0XQJyYgQwVthhAl01vrbY1GUAsImyLuvgZQEqSVM7XNRpA0oTtJ2OwGkCl/QBcoMIaQPwFjyqChhtAwowO260bHECKLntnyyscQAQouJQzAxtA0oTtJ2OwGkDQlTchVoAZQByvyXdm0hhAnJiBDBW2GEDwGaTXgMoXQPdirQ8g8RZAZKwV8ca7FkBnFUmD71MVQCzAqdV4wRRA9tM9uirHEkC+59Ge3MwQQDrTcfWllBBA4qZwnWguDkCkrCIq+nkOQFLiSylpGw5ADvfLBh2lDUCgHvTPgLAJQD4uHk2XzwdAMUYcmeS7BUDDbURiSMcBQOnyNS5KsQFAbkF2EqIu/j+oKtlWWKX7P4r5LsvmaPk/GcC7xpzz9D/MeSnpH7zzP9mKy3Az+fI/","dtype":"float64","order":"little","shape":[72]},{"__ndarray__":"Iu74jmlu8z/3L2QCmlXzP8x5KekfvPM/ZsPEmorT8z+KANuboFn0PycxdPBb+fQ/jWGHgfA49j+XQyiKWmf4P6gq2VZYpfs/w21EYkjHAUAxRhyZ5LsFQN+lMvr4HQlAoB70z4CwCUDu7PeLHSINQA73ywYdpQ1AZEzcR+VxEEC+59Ge3MwQQAwNPLl15xFA9tM9uirHEkCwl2yfmkwTQEb27yQxlRNAfYWmSfAeE0D20z26KscSQGCer/NatxJAA/rJiCFLEkDsXJeCYRcSQB46pv2V0RFAe7/1GD1DEUC+59Ge3MwQQCQMFbkfcBBAa/TtIeWtDUAN98sGHaUNQKAe9M+AsAlAOEcDcrYOCUAxRhyZ5LsFQMNtRGJIxwFATwft+UWbAECoKtlWWKX7P1y7aCuJMvo/4AC6NOob9z9DjmYCX8/1P/y2ZUpRRvU/4Fu3m/eN9D9V0RAC4eDzP8x5KekfvPM/Iu74jmlu8z8=","dtype":"float64","order":"little","shape":[46]},{"__ndarray__":"C+x6+Lif+z8fgWnNd3v7P6gq2VZYpfs/oD3ZHLUOAEC1bcOLik0BQM6Ux4knbgFAw21EYkjHAUCY1wxmYMIEQDFGHJnkuwVAEG5sEpYwBkCgHvTPgLAJQKoVwtGe0QlAoB70z4CwCUCOzKAU/WcIQDFGHJnkuwVAcECgBU78BEAxRhyZ5LsFQKU12E4AugZAd2PyU20NCUBN1nWEFTIJQM2xBrsKDwdAMUYcmeS7BUCG1vHlTwQEQMNtRGJIxwFAOadro6z6AEBEWLwnHCsAQDTDH8Bzfv8/zeR8pH1L/j+oKtlWWKX7Pwvsevi4n/s/","dtype":"float64","order":"little","shape":[30]}]},"selected":{"id":"4731"},"selection_policy":{"id":"4730"}},"id":"4436","type":"ColumnDataSource"},{"attributes":{},"id":"4398","type":"LinearScale"},{"attributes":{"data_source":{"id":"4436"},"glyph":{"id":"4437"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4438"},"selection_glyph":null,"view":{"id":"4440"}},"id":"4439","type":"GlyphRenderer"},{"attributes":{"text":""},"id":"4536","type":"Title"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"4477","type":"Circle"},{"attributes":{"axis":{"id":"4159"},"dimension":1,"ticker":null},"id":"4162","type":"Grid"},{"attributes":{"formatter":{"id":"4647"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"4156"}},"id":"4155","type":"LinearAxis"},{"attributes":{"source":{"id":"4436"}},"id":"4440","type":"CDSView"},{"attributes":{"axis_label":"rho","formatter":{"id":"4725"},"major_label_orientation":"horizontal","ticker":{"id":"4401"}},"id":"4400","type":"LinearAxis"},{"attributes":{},"id":"4156","type":"BasicTicker"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4438","type":"MultiLine"},{"attributes":{"axis":{"id":"4155"},"ticker":null},"id":"4158","type":"Grid"},{"attributes":{},"id":"4448","type":"LinearScale"},{"attributes":{},"id":"4401","type":"BasicTicker"},{"attributes":{"axis":{"id":"4400"},"ticker":null},"id":"4403","type":"Grid"},{"attributes":{},"id":"4585","type":"BasicTickFormatter"},{"attributes":{},"id":"4590","type":"UnionRenderers"},{"attributes":{},"id":"4591","type":"Selection"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"4233","type":"Circle"},{"attributes":{"text":""},"id":"4596","type":"Title"},{"attributes":{},"id":"4599","type":"BasicTickFormatter"},{"attributes":{},"id":"4601","type":"BasicTickFormatter"},{"attributes":{},"id":"4451","type":"BasicTicker"},{"attributes":{"axis_label":"tau[0]","formatter":{"id":"4741"},"major_label_orientation":"horizontal","ticker":{"id":"4451"}},"id":"4450","type":"LinearAxis"},{"attributes":{},"id":"4539","type":"BasicTickFormatter"},{"attributes":{"data":{"__ECDF_rho":{"__ndarray__":"jZduEoPA5T9vEoPAyqHtPy2yne+nxug/exSuR+F62j8MAiuHFtnjPy2yne+nxu4/mpmZmZmZuT8fhetRuB7jP9V46SYxCNI/8tJNYhBYmT/hehSuR+HeP1yPwvUoXOw/nMQgsHJozT8v3SQGgZXRP5qZmZmZmec/FK5H4XoU7D/NzMzMzMzlP1pkO99Pjds/jZduEoPA4z+JQWDl0CLdP3npJjEIrN4/4XoUrkfh5D+WQ4ts5/vlP5huEoPAyuE/i2zn+6nxuj+PwvUoXI/eP+Olm8QgsNo/iUFg5dAi5j/LoUW28/3SP+Olm8QgsOA/XI/C9Shc1T8QWDm0yHbWPwRWDi2yneo/6SYxCKwc4j9QjZduEoPgPz0K16NwPes//tR46SYx4D9Ei2zn+6ngP4GVQ4ts5+Q/qMZLN4lB1D93vp8aL93APxKDwMqhReM/kxgEVg4t1D/pJjEIrBzlP/hT46WbxNg/IbByaJHt2D8CK4cW2c7hP+F6FK5H4dI/fT81XrpJ5z9OYhBYObToPzMzMzMzM9c/okW28/3U7D8K16NwPQq/Pw==","dtype":"float64","order":"little","shape":[53]},"__ECDF_tau[0]":{"__ndarray__":"mpmZmZmZmT8/NV66SQzcP2ZmZmZmZtY/EFg5tMh21j+kcD0K16OwP6rx0k1iEJg/7nw/NV663z+F61G4HoWrP/YoXI/C9bA/kxgEVg4toj+yne+nxkunP2q8dJMYBNo/YOXQItv55z+oxks3iUHjPwaBlUOLbOE/eekmMQisfD/hehSuR+HjP2ZmZmZmZu4/eekmMQis4j++nxov3STGPzm0yHa+n2o/gZVDi2znsz8rhxbZzveDP05iEFg5tKg/TDeJQWDlgD9OYhBYObTjP2iR7Xw/Nb4/QmDl0CLbsT9KDAIrhxaJPylcj8L1KIw/H4XrUbge4j9qvHSTGASmP7Kd76fGS7c/y6FFtvP9wD/LoUW28/2EP0w3iUFg5ZA/001iEFg5tD93vp8aL92kP5zEILByaHE/eekmMQisXD+LbOf7qfGSP+XQItv5fuc/+n5qvHSTeD9aZDvfT413P3e+nxov3cQ/MzMzMzMz3T/fT42XbhLZPzvfT42XbnI/rkfhehSu7z+4HoXrUbjhP1TjpZvEILA/16NwPQrXoz/Jdr6fGi/BPw==","dtype":"float64","order":"little","shape":[53]},"__ECDF_tau[1]":{"__ndarray__":"Vg4tsp3v6D8zMzMzMzPLP0oMAiuHFu4/7nw/NV662T+4HoXrUbjgP2q8dJMYBO0/TmIQWDm07D+8dJMYBFbnP3E9CtejcOI/9P3UeOkm5j8hsHJoke20PyPb+X5qvOs/HVpkO99P4D+cxCCwcmhxP0oMAiuHFtM/GQRWDi2yfT91kxgEVg7uP3E9CtejcOs/hxbZzvdT7D/HSzeJQWDNP/LSTWIQWNU/30+Nl24Syz97FK5H4XpUPzEIrBxaZOw/3SQGgZVD2T/HSzeJQWDJP4XrUbgehas/YhBYObTIlj/HSzeJQWC1P0oMAiuHFuA/EoPAyqFF4T9I4XoUrke5P5MYBFYOLco/rkfhehSuwz/dJAaBlUPLP/7UeOkmMdA/x0s3iUFg5T/VeOkmMQjmP1TjpZvEINo/VOOlm8Qg5D97FK5H4XrkPzVeukkMAss/I9v5fmq8vD9cj8L1KFyvP1YOLbKd7+I/LbKd76fGxz+6SQwCK4fQP/yp8dJNYrg/PzVeukkM7T9SuB6F61HWP1TjpZvEIOo/2c73U+Ol7j9zaJHtfD/iPw==","dtype":"float64","order":"little","shape":[53]},"__ECDF_theta[0]":{"__ndarray__":"qMZLN4lB0D9g5dAi2/nUP57vp8ZLN+E/rBxaZDvf3z8CK4cW2c7iP/LSTWIQWOA/zczMzMzMrD+sHFpkO9/iP5huEoPAyuY/KVyPwvUo3j956SYxCKzoP/p+arx0k9g/PQrXo3A95j/8qfHSTWLcP0oMAiuHFuI/K4cW2c732T9eukkMAivpP7Kd76fGS+Q/IbByaJHt4z/8qfHSTWLeP6abxCCwct4/nMQgsHJo1z8IrBxaZDvZP1K4HoXrUdI/g8DKoUW24T8bL90kBoHbPz0K16NwPdo/qvHSTWIQ4j8K16NwPQrdP0oMAiuHFt8/hetRuB6Fxz/LoUW28/3YPyGwcmiR7dY/f2q8dJMY4j8QWDm0yHbhP6wcWmQ739M/lkOLbOf73z/TTWIQWDnYP4XrUbgehd8/rkfhehSu4z+gGi/dJAbjPycxCKwcWsQ/nu+nxks3yT/jpZvEILDOP8UgsHJokdM/6SYxCKwc2D9MN4lBYOXQPwisHFpkO+E/7nw/NV662T+yne+nxkvfP1CNl24Sg+I/CtejcD0K4T+YbhKDwMrjPw==","dtype":"float64","order":"little","shape":[53]},"__ECDF_theta[1]":{"__ndarray__":"AiuHFtnO6T9aZDvfT43VP166SQwCK7c/6SYxCKwc2D+LbOf7qfHeP2q8dJMYBLY/ke18PzVe7z+28/3UeOnuPycxCKwcWsg/UrgehetR6j/dJAaBlUPjPwRWDi2ynb8/EFg5tMh27z/ZzvdT46XbP7ByaJHtfN0/NV66SQwC0T8hsHJoke3gPxkEVg4tsuc/3SQGgZVDuz9kO99PjZftP166SQwCK+8/5dAi2/l+7D/fT42XbhLjP3WTGARWDsU/GQRWDi2y2z/4U+Olm8TYP0Jg5dAi2+E/SOF6FK5H4z89CtejcD3hP4ts5/up8bI/vHSTGARW6D/b+X5qvHTpP8HKoUW2880/5dAi2/l+6T8bL90kBoHsP9NNYhBYOe0/MzMzMzMzwz9SuB6F61HEP7gehetRuMI/JzEIrBxa7j+6SQwCK4ftPyuHFtnO99k//Knx0k1i2j+HFtnO91PkP/hT46WbxOU/okW28/3U2D9OYhBYObTcP6RwPQrXo+A/K4cW2c737j+yne+nxkvrPyuHFtnO9+8/c2iR7Xw/lT8Sg8DKoUXkPw==","dtype":"float64","order":"little","shape":[53]},"chain__":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"diverging__":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],"draw__":[28,193,206,216,282,409,484,593,612,616,617,646,693,821,862,882,896,904,938,980,628,840,924,35,79,146,202,280,287,296,427,521,681,732,754,797,808,49,50,52,53,60,161,163,231,246,251,314,600,621,658,756,912],"index":[28,193,206,216,282,409,484,593,612,616,617,646,693,821,862,882,896,904,938,980,1628,1840,1924,2035,2079,2146,2202,2280,2287,2296,2427,2521,2681,2732,2754,2797,2808,3049,3050,3052,3053,3060,3161,3163,3231,3246,3251,3314,3600,3621,3658,3756,3912],"rho":{"__ndarray__":"YAK37uap5D9TJcreUs7mP5D5gEBnUuU/9nmM8szL4j+YF2AfnTrkP7rdy31ylOc/LskBu5o83z/icrwC0RPkPzUpBd1e0uE/pMaEmEuq2j/4U+Olm0TjP14T0hqDTuY/G76FdeNd4T+9iowOSMLhP8V1jCsuDuU/da+T+rI05j9flQuVf63kP7aGUnsR7eI/W1t4Xio25D9tHofB/BXjP9kmFY21P+M/ZHWr56R35D9JopdRLLfkPyo7/aAu0uM/aEKTxJJy3z/XM4Rjlj3jP+i+nNmu0OI/urw5XKu95D/DZ+vgYO/hP7Qc6KG2jeM/wW9DjNc84j+eI/JdSl3iPx8OEqJ8weU/rmTHRiDe4z+D4PHtXYPjP5OMnIU97eU/VaGBWDZz4z/sF+yGbYvjP4P3VblQeeQ/QbyuX7Ab4j87Oq5GdiXgP10z+WabG+Q/h+C4jJsa4j9TsMbZdITkP4nUtItppuI/9Kj4vyOq4j+VZB2OrtLjP2fUfJV87OE/S+SCM/j75D8KuVLPglDlP84AF2TLcuI/2spL/id/5j/S/3ItWgDgPw==","dtype":"float64","order":"little","shape":[53]},"tau[0]":{"__ndarray__":"7Bfshm2L0z8EOShhpu3zPweZZOQsbPA/IjfDDfh88D96qdiY1xHbPxSuR+F6FNM/fPKwUGua9j/0UNuGURDZP+QUHcnlP9s/BFjk1w+x1T8bDeAtkKDXP2ZrfZHQlvI/b2Qe+YPBBECd9L7xtWf8Py6thsQ9Fvk/6WLTSiGQyz/ElEiil9H9PxeCHJQwUxlAMEeP39t0+z/PaRZod0jlP/9BJEOOrck/T83lBkMd3T9gkV8/xAbNP9OiPskdNtg/Lev+sRAdzD/wFkhQ/Jj9P9dtUPutneE/2SQ/4les2z83OXzSiQTPPwMK9fQR+M8/zlMdcjNc+j+3tBoS91jXP2e0VUlkH98/KNcUyOys4j+KdhVSflLNP2VwlLw6x9A/TaJe8GlO3T+ERrBx/bvWPzIge73748k/xHqjVpi+xz8jTifZ6nLRPxZNZyeD4wNAuFuSA3Y1yz82O1J95xfLP0g0gSIWseQ/gy9MpgrG9D9yM9yAzw/yP2DkZU0s8Mk/S1mGONYlJkCYwK27ear5P1EWvr7Wpdo/44kgzsMJ1j9AwcWKGsziPw==","dtype":"float64","order":"little","shape":[53]},"tau[1]":{"__ndarray__":"JV0z+Wb7FkDLuRRXlT0BQMLdWbvt8iJAMdP2r6y0B0C3ek5637gMQBB6Nqs+ZyBAAg6hSs2+H0CrCaLuA9AUQEesxacAGA9A5KCEmbZfE0DysFBrmvf5P8tneR7cHR1A73IR34kZDEAT8GskCcLtPzeJQWDlEARASnuDL0wm8D9Hj9/b9OciQKDDfHkBVhxA845TdCTXHkAbL90kBsEBQC6thsQ9VgVAgez17o83AUCM8szLYffpP9ieWRKgJh9AXD0nvW98B0Ao1T4dj9kAQLZnlgSoqfc/3UHsTKHz8z+tUQ/R6A76P2Dl0CLbuQtAuB6F61F4DUBy+Q/pty/7P1UwKqkTEAFAdnEbDeCt/j/jcOZXc0ABQMPYQpCDkgJADFnd6jmJEkCbyTfb3DgTQCCYo8fv7QdAt39lpUkpEUBXPsvz4I4RQPWEJR5QNgFALJ/leXD3+z+Qvd798V74P4+qJoi6zw9AEjElkuhlAEA8TtGRXL4CQM2SADW17Po/D5wzorR3IEBEF9S3zOkFQFk0nZ0MThlAXW3F/rIbJUDrbp7qkNsOQA==","dtype":"float64","order":"little","shape":[53]},"theta[0]":{"__ndarray__":"Rl9BmrEoAUDNI38w8JwCQNpyLsVV5QVAtvgUAONZBUAWpBmLprMGQPQ3oRABhwVAMqt3uB2a7T+U+x2KAr0GQN52oblOIwlAW86luKrsBEBPBkfJq7MKQIJzRpT2hgNAgGCOHr+3CECSPxh47n0EQJ/Ik6RrZgZALpCg+DHmA0DXNO84RUcLQFqBIatbfQdAsYo3Mo88B0A+IqZEEv0EQP63kh0bAQVAU67wLhcxA0CrWz0nva8DQDANw0fE1AFAkuhlFMstBkCm8naE00IEQKWD9X8O8wNAFAX6RJ5kBkC22y4016kEQIZVvJF5JAVARs7Cnnb4/j/Du1zEd6IDQNl3RfC/FQNALNSa5h1nBkB/+zpwzggGQLO1vkhoSwJA3EYDeAtkBUDMejGUE20DQB0Dste7PwVAmfViKCcaB0AMk6mCUckGQGjon+BiRf0/qyaIug/A/z9kIxCv69cAQC1DHOviNgJAorQ3+MJkA0Bf7/54r1oBQGSSkbOw5wVAUHCxogbTA0CJmBJJ9DIFQP4mFCLgkAZA3QcgtYnTBUAHsTOFzisHQA==","dtype":"float64","order":"little","shape":[53]},"theta[1]":{"__ndarray__":"rtNIS+W9IUCpE9BE2JAaQCdmvRjKyRBAZ5sb0xN2G0DjqrLvioAdQAfwFkhQXBBA8WPMXUtoJ0A8vVKWIS4mQP+VlSalYBZAeZJ0zeT7IUCPNo5Yi48fQJy/CYUI+BJAVFInoIkQKECJmBJJ9JIcQH/ZPXlYCB1A0CfyJOmaGEDVBFH3AUgeQGl0B7EzBSFA4X8r2bHxEUBGtvP91BgkQAYSFD/GvCZAmBdgH506I0A429yYnnAfQJT7HYoCPRVAf95UpMKYHECiKNAn8qQbQITwaOOItR5AG9gqweKQH0Dl1TkGZG8eQCUGgZVDyw1AZmZmZmY2IUD8471qZaIhQCjyJOmaqRdAZhTLLa2mIUAjoS3nUjwjQPzepj/7wSNALT4FwHhmFECduvJZnscUQBqojH+fMRRARpT2Bl/4JEBRa5p3nAIkQIOj5NU5BhxANLqD2JkiHEBeonprYAsgQFjFG5lHbiBAraOqCaKuG0B56SYxCMwcQME5I0p7Ix5AaW/whclUJkDkZrgBn38iQLmNBvAWaC5AmfIhqBq97z/0wwjh0QYgQA==","dtype":"float64","order":"little","shape":[53]}},"selected":{"id":"4545"},"selection_policy":{"id":"4544"}},"id":"3810","type":"ColumnDataSource"},{"attributes":{"text":""},"id":"4658","type":"Title"},{"attributes":{"text":""},"id":"4566","type":"Title"},{"attributes":{"overlay":{"id":"4515"}},"id":"4511","type":"BoxSelectTool"},{"attributes":{},"id":"3958","type":"LinearScale"},{"attributes":{},"id":"3956","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4465","type":"BoxAnnotation"},{"attributes":{"text":""},"id":"4674","type":"Title"},{"attributes":{},"id":"3973","type":"SaveTool"},{"attributes":{"axis_label":"rho","formatter":{"id":"4583"},"ticker":{"id":"3965"}},"id":"3964","type":"LinearAxis"},{"attributes":{"formatter":{"id":"4585"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"3961"}},"id":"3960","type":"LinearAxis"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4466","type":"BoxAnnotation"},{"attributes":{},"id":"4661","type":"BasicTickFormatter"},{"attributes":{},"id":"4569","type":"BasicTickFormatter"},{"attributes":{},"id":"3961","type":"BasicTicker"},{"attributes":{"axis":{"id":"3960"},"ticker":null},"id":"3963","type":"Grid"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4467","type":"PolyAnnotation"},{"attributes":{"axis":{"id":"3964"},"dimension":1,"ticker":null},"id":"3967","type":"Grid"},{"attributes":{},"id":"3965","type":"BasicTicker"},{"attributes":{},"id":"3974","type":"ResetTool"},{"attributes":{"overlay":{"id":"3976"}},"id":"3969","type":"BoxZoomTool"},{"attributes":{"text":""},"id":"4626","type":"Title"},{"attributes":{},"id":"3968","type":"PanTool"},{"attributes":{},"id":"4663","type":"BasicTickFormatter"},{"attributes":{},"id":"3970","type":"WheelZoomTool"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"4478","type":"Circle"},{"attributes":{"overlay":{"id":"3975"}},"id":"3971","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"3977"}},"id":"3972","type":"LassoSelectTool"},{"attributes":{},"id":"4571","type":"BasicTickFormatter"},{"attributes":{},"id":"4629","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4027","type":"PolyAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4026","type":"BoxAnnotation"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"4482","type":"Circle"},{"attributes":{},"id":"4631","type":"BasicTickFormatter"},{"attributes":{"source":{"id":"3809"}},"id":"4480","type":"CDSView"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4477"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4478"},"selection_glyph":null,"view":{"id":"4480"}},"id":"4479","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4482"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4483"},"selection_glyph":null,"view":{"id":"4485"}},"id":"4484","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"3988","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"4483","type":"Circle"},{"attributes":{},"id":"4496","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"3975","type":"BoxAnnotation"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4487","type":"MultiLine"},{"attributes":{"source":{"id":"3810"}},"id":"4485","type":"CDSView"},{"attributes":{"align":"end","below":[{"id":"4500"}],"center":[{"id":"4503"},{"id":"4507"}],"frame_height":150,"frame_width":150,"left":[{"id":"4504"}],"renderers":[{"id":"4529"},{"id":"4534"}],"title":{"id":"4752"},"toolbar":{"id":"4518"},"toolbar_location":null,"x_range":{"id":"4492"},"x_scale":{"id":"4496"},"y_range":{"id":"4494"},"y_scale":{"id":"4498"}},"id":"4491","subtype":"Figure","type":"Plot"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"3976","type":"BoxAnnotation"},{"attributes":{"data":{"xs":[{"__ndarray__":"H0cGyCALCUCYKDG+HmIJQFjp7jobEg1ADFXW2wthEECuEJBeQtsQQGw1NRoKORJAzBWUWAgRFEC8uiESQowVQCz28pYG6RVAjNZR1QTBF0BnW4eIj+oXQNxQ9JzroxhAjNZR1QTBF0AzUAmEY4EXQC1DC61x8hVALPbylgbpFUAsjRh7DzkUQMwVlFgIERRA9pCp8De/EkB1FKhvTMQSQGw1NRoKORJAljoxU973EUAMVdbbC2EQQGMKf4sEdA1AWOnuOhsSDUAup+TaIpALQJgoMb4eYglAkOI1vgZtCEDXZ3NBIrIFQP4sEKjdmQVA+hU+ausiA0AWp7XEJQICQPMvE7+0ugBAOjQIyHdh/z+szO+PUqT8PyzDKLCcavw/tqrf5HWC+D8sS3SWWUT1P1aT8TnByOs/qSD1jZ4R2j8=","dtype":"float64","order":"little","shape":[40]},{"__ndarray__":"ayyHVgz/9T+szO+PUqT8PxantcQlAgJAoUsnsd46AkDXZ3NBIrIFQJgoMb4eYglA8S1vv/AFCkBZ6e46GxINQIdY6eRJNQ1AV3Hr3GP8DUDJrIoSjjcNQFjp7jobEg1AA4b7u5L5CUCXKDG+HmIJQE4J5xEq0wVA12dzQSKyBUDaaXMBxxwEQMuP5ZSjkwJAFqe1xCUCAkD3vRurk9YAQB6Qc7gUsf4/rMzvj1Kk/D+NjAb+9NH6PyxLdJZZRPU/VpPxOcHI6z+pIPWNnhHaPw==","dtype":"float64","order":"little","shape":[26]},{"__ndarray__":"qSD1jZ4R2j9Wk/E5wcjrPwBl9dq9JPQ/LEt0lllE9T+szO+PUqT8PyAFvF+gCv8/XFs/yu12AUC6Q7oeN6UBQK6Hnj7WpgBArMzvj1Kk/D/w75kQiBX4PyxLdJZZRPU/bVoGj+dA8j9Wk/E5wcjrP6kg9Y2eEdo/","dtype":"float64","order":"little","shape":[15]},{"__ndarray__":"qSD1jZ4R2j9Wk/E5wcjrP//q5jbHOOw/jq3C1ohW9D/GOc1iL2LxP1aT8TnByOs/qSD1jZ4R2j8=","dtype":"float64","order":"little","shape":[7]}],"ys":[{"__ndarray__":"3ZHz9s6l5z9qwgQB1PTnP7pCg71LEOw/3mM7PHKB8j/MeSnpH7zzP1rJ5HPiSfc/8vNjNxS5+T+oKtlWWKX7P1vGuW0QY/w/PT7e6jSQAUDDbURiSMcBQDFGHJnkuwVA4WDYqaRoCECgHvTPgLAJQA33ywYdpQ1AZdWzzN29DUC+59Ge3MwQQM99q3c8AhFA9tM9uirHEkAswKnVeMEUQJRP74swAxZAZKwV8ca7FkCcmIEMFbYYQNKE7SdjsBpAssefrr0TG0AKcVlDsaocQDqF56YJ3h1AQl3FXv+kHkC0UeL8o0UgQLykGL2mTyBA2JrOys1MIUALikHdXLQhQPSQhNj0SSJAD4c65htHI0CxbI959y0kQCp98PNCRCRARnOmAWpBJUD8wu6HXeIlQOE11SrXHyZA6xHdZ4TYJUA=","dtype":"float64","order":"little","shape":[40]},{"__ndarray__":"3ZHz9s6l5z/+v+NMLcrtP3sEzw79gPM/zHkp6R+88z92siYOJ2D3P2BBAd2V2vo/qCrZVlil+z+phxRLvJIBQMRtRGJIxwFAMUYcmeS7BUCfHvTPgLAJQOEte5du5AlADvfLBh2lDUAn0ilYOhIOQL7n0Z7czBBAM6BdvBrlEED20z26KscSQCzAqdV4wRRAQu/7F89ZFUBkrBXxxrsWQJ2YgQwVthhAZa8JPVoNGkDShO0nY7AaQHzKjokvSRxACnFZQ7GqHEC2EvtK8fgaQA==","dtype":"float64","order":"little","shape":[26]},{"__ndarray__":"PmFgEoX47z+H/C/h2eHwP8x5KekfvPM/O+Xun0Y+9D921cv+z575P6gq2VZYpfs/w21EYkjHAUAxRhyZ5LsFQKAe9M+AsAlADvfLBh2lDUC+59Ge3MwQQFigvdnTHxJA9tM9uirHEkDHRgaTVaITQB0q1e1jLRNA","dtype":"float64","order":"little","shape":[15]},{"__ndarray__":"gPaX8GBE+z+dWp43/4j7P6gq2VZYpfs/w21EYkjHAUAxRhyZ5LsFQClPTZvpUwdAMUYcmeS7BUA=","dtype":"float64","order":"little","shape":[7]}]},"selected":{"id":"4747"},"selection_policy":{"id":"4746"}},"id":"4486","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"4486"},"glyph":{"id":"4487"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4488"},"selection_glyph":null,"view":{"id":"4490"}},"id":"4489","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"black"},"size":{"units":"screen","value":2},"x":{"field":"tau[1]"},"y":{"field":"__ECDF_tau[1]"}},"id":"4527","type":"Circle"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"3977","type":"PolyAnnotation"},{"attributes":{"source":{"id":"4486"}},"id":"4490","type":"CDSView"},{"attributes":{},"id":"4668","type":"UnionRenderers"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4488","type":"MultiLine"},{"attributes":{},"id":"4669","type":"Selection"},{"attributes":{},"id":"4498","type":"LinearScale"},{"attributes":{"end":25.70813858,"start":-0.0026675800000000027},"id":"4492","type":"Range1d"},{"attributes":{"end":1.02,"start":-0.02},"id":"4494","type":"Range1d"},{"attributes":{"overlay":{"id":"4517"}},"id":"4512","type":"LassoSelectTool"},{"attributes":{"formatter":{"id":"4755"},"major_label_text_font_size":"0pt","ticker":{"id":"4505"}},"id":"4504","type":"LinearAxis"},{"attributes":{"text":""},"id":"4580","type":"Title"},{"attributes":{"axis_label":"tau[1]","formatter":{"id":"4757"},"major_label_orientation":"horizontal","ticker":{"id":"4501"}},"id":"4500","type":"LinearAxis"},{"attributes":{},"id":"4501","type":"BasicTicker"},{"attributes":{"axis":{"id":"4500"},"ticker":null},"id":"4503","type":"Grid"},{"attributes":{"axis":{"id":"4504"},"dimension":1,"ticker":null},"id":"4507","type":"Grid"},{"attributes":{},"id":"4583","type":"BasicTickFormatter"},{"attributes":{},"id":"4505","type":"BasicTicker"},{"attributes":{},"id":"4513","type":"SaveTool"},{"attributes":{"overlay":{"id":"4516"}},"id":"4509","type":"BoxZoomTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"3968"},{"id":"3969"},{"id":"3970"},{"id":"3971"},{"id":"3972"},{"id":"3973"},{"id":"3974"}]},"id":"3978","type":"Toolbar"},{"attributes":{},"id":"4508","type":"PanTool"},{"attributes":{},"id":"4510","type":"WheelZoomTool"},{"attributes":{},"id":"4636","type":"UnionRenderers"},{"attributes":{},"id":"4637","type":"Selection"},{"attributes":{},"id":"4298","type":"LinearScale"},{"attributes":{},"id":"4746","type":"UnionRenderers"},{"attributes":{},"id":"4296","type":"LinearScale"},{"attributes":{},"id":"4747","type":"Selection"},{"attributes":{"children":[[{"id":"3811"},0,0],[{"id":"3856"},1,0],[{"id":"3906"},1,1],[{"id":"3951"},2,0],[{"id":"4001"},2,1],[{"id":"4051"},2,2],[{"id":"4096"},3,0],[{"id":"4146"},3,1],[{"id":"4196"},3,2],[{"id":"4246"},3,3],[{"id":"4291"},4,0],[{"id":"4341"},4,1],[{"id":"4391"},4,2],[{"id":"4441"},4,3],[{"id":"4491"},4,4]]},"id":"4766","type":"GridBox"},{"attributes":{},"id":"4313","type":"SaveTool"},{"attributes":{"axis_label":"tau[1]","formatter":{"id":"4691"},"ticker":{"id":"4305"}},"id":"4304","type":"LinearAxis"},{"attributes":{"axis_label":"theta[0]","formatter":{"id":"4693"},"major_label_orientation":"horizontal","ticker":{"id":"4301"}},"id":"4300","type":"LinearAxis"},{"attributes":{},"id":"4301","type":"BasicTicker"},{"attributes":{"axis":{"id":"4300"},"ticker":null},"id":"4303","type":"Grid"},{"attributes":{},"id":"4730","type":"UnionRenderers"},{"attributes":{"axis":{"id":"4304"},"dimension":1,"ticker":null},"id":"4307","type":"Grid"},{"attributes":{},"id":"4731","type":"Selection"},{"attributes":{},"id":"4305","type":"BasicTicker"},{"attributes":{},"id":"4314","type":"ResetTool"},{"attributes":{"overlay":{"id":"4316"}},"id":"4309","type":"BoxZoomTool"},{"attributes":{},"id":"4308","type":"PanTool"},{"attributes":{},"id":"4310","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"4315"}},"id":"4311","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"4317"}},"id":"4312","type":"LassoSelectTool"},{"attributes":{"text":""},"id":"4642","type":"Title"},{"attributes":{"text":""},"id":"4752","type":"Title"},{"attributes":{},"id":"4645","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4367","type":"PolyAnnotation"},{"attributes":{},"id":"4755","type":"BasicTickFormatter"},{"attributes":{},"id":"4606","type":"UnionRenderers"},{"attributes":{"text":""},"id":"4736","type":"Title"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4366","type":"BoxAnnotation"},{"attributes":{},"id":"4607","type":"Selection"},{"attributes":{},"id":"4647","type":"BasicTickFormatter"},{"attributes":{"data":{"xs":[{"__ndarray__":"arsE0CKNEEB+xoUDITkRQPSAeciUrxJARDGeLfqoE0BtO22NCCYUQOT1YFJ8nBVAW7BUF/ASF0B6yG9d/jAXQNNqSNxjiRhA9gPgsHizGEDTakjcY4kYQDlUBPdXrRdAW7BUF/ASF0BrPGZaUJQWQOT1YFJ8nBVAbc2mfOxkFUBr/n1JLCcUQG07bY0IJhRAXuurTFmEE0BsnmtMl20TQMfojQ5WUhNA9YB5yJSvEkChUz13wIoSQOUjlbBAoRFAfsaFAyE5EUCKHTlq37EQQAtOisMF6Q9ADhgkfVqFD0DeXKgK+/cOQDoMYJxkQQ5Abm2pjtFdDUAeozzzcpgMQIFQtta2NwxAAmdEThc7CkAuLlVpi6sJQLBhU9k/6QdAQLlt36O+BkBSRIZVvNEDQN2/vqkX8gBAY8+ey9TkAEBE8d4z68b+PyOo2dysIv0/6rRug9rv+z9oPkyTUlz7P8dr6a9kVfg/DMufbwsW9j9b05UEd4n1P9C2R8NJlvM/zqi5jUe+8T/HEHZz1U/wPy7h0Fs8PPA/aFlS6AM37z9SXNtzCSfpP95fRZaJ3uQ/oO4DkNrE5D/1gEfymBjgP8g1zNB4ItI/dlg/eNzgzT84ViBXrLqov6DGvfkNE7W/GutzIi0ixr/EP/8a2YHEv6DGvfkNE7W/rLY9h5UKwT/INczQeCLSP3OOyh+leOQ/oO4DkNrE5D8u4dBbPDzwP3KwrkHpMPM/","dtype":"float64","order":"little","shape":[69]},{"__ndarray__":"iHBpiocOCkAeozzzcpgMQMBudBGkjw5ADhgkfVqFD0C29TxLp+wQQH7GhQMhORFA365czx+jEUD89TkpKNYRQN+tGc6oohFAfsaFAyE5EUBprP++6gkRQPhZX3D4WhBADhgkfVqFD0AmUfXi9R4PQDCDkW9pBA5Ap40mwwXvDEAeozzzcpgMQAXJtXcKrwtAnhmDqecnCkAuLlVpi6sJQGorU5J90AhAwC9EKc/5B0BAuW3fo74GQAk5wilyGwZAUkSGVbzRA0C/rWEGUGcDQB4M+PhwswFAY8+ey9TkAEAI/5z/b7b/P9TGMI8jqf0/XVzMacAN/D/qtG6D2u/7PwbOUwy6xfk/C1YqZqoT+D9Y0ec8klr2PwzLn28LFvY/korDqxMA8z/R3JR1TLfwPy7h0Fs8PPA/q4IeKi2b7j8DpNDmlDjwPy7h0Fs8PPA/H2FY6q8x8j8My59vCxb2P+DjbA3sg/c/6rRug9rv+z8Axz0bhgAAQA==","dtype":"float64","order":"little","shape":[47]},{"__ndarray__":"UkSGVbzRA0BAuW3fo74GQKkQ42LzMghALi5VaYurCUA6EP9eK+ILQB6jPPNymAxASHKyibj0DEC90cbvHsIMQB6jPPNymAxAwrVoYS0qDEDs46mcF14LQGZVJvjL9wlALi5VaYurCUA4J+qNxEIIQEC5bd+jvgZAUkSGVbzRA0Bg4ipYkmACQGPPnsvU5ABA0sRxs3aG/j/qtG6D2u/7P9Wd4Ny2a/s/zOcNleOi+T8C3MS+K/H5P+q0boPa7/s/UIMKkCR8/D9jz57L1OQAQGxkb0F91wFAUkSGVbzRA0A=","dtype":"float64","order":"little","shape":[28]},{"__ndarray__":"UkSGVbzRA0BAuW3fo74GQLJU2KsFMQhAkhN/eh+gB0BAuW3fo74GQC74RUanKwVAUkSGVbzRA0BMwHMnTWwDQL0usmlusAFAvJDUp/J/AUDHI6uNHHkDQFJEhlW80QNA","dtype":"float64","order":"little","shape":[12]}],"ys":[{"__ndarray__":"3ZHz9s6l5z+0q05KoXTqPxjGnW2yWPA/zHkp6R+88z9iTN4QDJr1P2alQv09cvk/4TGIRHt/+z+oKtlWWKX7P/Uo0NBG1ABAw21EYkjHAUC6q07Txa0CQDBGHJnkuwVAnWrk1ZZvB0CgHvTPgLAJQFKBvVAKnwxADvfLBh2lDUC+59Ge3MwQQFkJcZgezxBA9tM9uirHEkAswKnVeMEUQGSsFfHGuxZA0GhNsmtEGECcmIEMFbYYQNKE7SdjsBpA7LcWX0+JG0AKcVlDsaocQEJdxV7/pB5AVN3MAXlFH0C8pBi9pk8gQNiazsrNTCFA9JCE2PRJIkD8/h6IgAAjQA+HOuYbRyNAKn3w80JEJEAgx7sfqH4kQEZzpgFqQSVAo0fOFGMtJkBsuHk+ZDkmQEZzpgFqQSVA1aE3gG49JUAqffDzQkQkQA+HOuYbRyNAzZQq3MOQIkD0kITY9EkiQNiazsrNTCFAj5pGQlh6IEC8pBi9pk8gQEJdxV7/pB5ACnFZQ7GqHEDShO0nY7AaQLdGa/LNUhpAm5iBDBW2GEBkrBXxxrsWQCzAqdV4wRRA9tM9uirHEkC+59Ge3MwQQHTk3WTZJQ5ADvfLBh2lDUCgHvTPgLAJQOPfErOVUQhAMkYcmeS7BUDCbURiSMcBQKPzvAIy+QBAqCrZVlil+z/nhzhcKU35P8x5KekfvPM/0gibcqmd8z8vZLAzoO3sP9yR8/bOpec/","dtype":"float64","order":"little","shape":[69]},{"__ndarray__":"3ZHz9s6l5z+O3DxkGX7vP8x5KekfvPM/CmUEmg5F9j+oKtlWWKX7P/QO2KFBrf8/w21EYkjHAUAxRhyZ5LsFQKAe9M+AsAlAEY2CUy4NDEAO98sGHaUNQL7n0Z7czBBACmH6L+oxEkD20z26KscSQCzAqdV4wRRAZKwV8ca7FkAWuHvNpDAXQJyYgQwVthhA0oTtJ2OwGkCw5du+7XQbQApxWUOxqhxAQl3FXv+kHkCg9p7ixj8gQLykGL2mTyBA10OxSWx3IEC8pBi9pk8gQEJdxV7/pB5ACnFZQ7GqHEDShO0nY7AaQJyYgQwVthhAZKwV8ca7FkBTUM3KxJ0WQCzAqdV4wRRA9tM9uirHEkC+59Ge3MwQQDQHznhZmRBADvfLBh2lDUCgHvTPgLAJQIJxV2ME2wdAMUYcmeS7BUDDbURiSMcBQI7G2KXiwgFAqCrZVlil+z9iViVu3un1P8x5KekfvPM/8JSNPumk7T/dkfP2zqXnPw==","dtype":"float64","order":"little","shape":[47]},{"__ndarray__":"ZHIaBpFz8T/qvW+Oi8jxP8x5KekfvPM/aM1YOdDv9T+oKtlWWKX7P8y9OqgzpQBAw21EYkjHAUAxRhyZ5LsFQPJU0W6SsAZAoB70z4CwCUAO98sGHaUNQL7n0Z7czBBA37LWyZAyEUD20z26KscSQPq0Xg0fYBRAmrskjQFAFED20z26KscSQL7n0Z7czBBADvfLBh2lDUCUXYtZFVAKQKAe9M+AsAlAMUYcmeS7BUDDbURiSMcBQA7rLQu7gf0/qCrZVlil+z+r+nZIL+b0P8x5KekfvPM/ZHIaBpFz8T8=","dtype":"float64","order":"little","shape":[28]},{"__ndarray__":"3yfiz/Yd+z+oKtlWWKX7P8NtRGJIxwFAMUYcmeS7BUBrVrfiNJgIQKAe9M+AsAlAkfkHfxNKCkCgHvTPgLAJQDFGHJnkuwVAw21EYkjHAUCoKtlWWKX7P98n4s/2Hfs/","dtype":"float64","order":"little","shape":[12]}]},"selected":{"id":"4699"},"selection_policy":{"id":"4698"}},"id":"4336","type":"ColumnDataSource"},{"attributes":{},"id":"4739","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4315","type":"BoxAnnotation"},{"attributes":{},"id":"4757","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4316","type":"BoxAnnotation"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4317","type":"PolyAnnotation"},{"attributes":{},"id":"4741","type":"BasicTickFormatter"},{"attributes":{"text":""},"id":"4612","type":"Title"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"4328","type":"Circle"},{"attributes":{},"id":"4615","type":"BasicTickFormatter"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4308"},{"id":"4309"},{"id":"4310"},{"id":"4311"},{"id":"4312"},{"id":"4313"},{"id":"4314"}]},"id":"4318","type":"Toolbar"},{"attributes":{},"id":"4652","type":"UnionRenderers"},{"attributes":{},"id":"4617","type":"BasicTickFormatter"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"4332","type":"Circle"},{"attributes":{},"id":"4653","type":"Selection"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4365","type":"BoxAnnotation"},{"attributes":{"source":{"id":"3809"}},"id":"4330","type":"CDSView"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4327"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4328"},"selection_glyph":null,"view":{"id":"4330"}},"id":"4329","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4332"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4333"},"selection_glyph":null,"view":{"id":"4335"}},"id":"4334","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"4333","type":"Circle"},{"attributes":{"data_source":{"id":"4336"},"glyph":{"id":"4337"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4338"},"selection_glyph":null,"view":{"id":"4340"}},"id":"4339","type":"GlyphRenderer"},{"attributes":{"align":"end","below":[{"id":"4350"}],"center":[{"id":"4353"},{"id":"4357"}],"frame_height":150,"frame_width":150,"left":[{"id":"4354"}],"renderers":[{"id":"4379"},{"id":"4384"},{"id":"4389"}],"title":{"id":"4704"},"toolbar":{"id":"4368"},"toolbar_location":null,"x_range":{"id":"3907"},"x_scale":{"id":"4346"},"y_range":{"id":"4492"},"y_scale":{"id":"4348"}},"id":"4341","subtype":"Figure","type":"Plot"},{"attributes":{"source":{"id":"3810"}},"id":"4335","type":"CDSView"},{"attributes":{},"id":"4056","type":"LinearScale"},{"attributes":{"fill_color":{"value":"black"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"__ECDF_rho"}},"id":"4087","type":"Circle"},{"attributes":{},"id":"4058","type":"LinearScale"},{"attributes":{},"id":"4119","type":"ResetTool"},{"attributes":{"end":0.84302156,"start":0.20344444},"id":"4052","type":"Range1d"},{"attributes":{"end":1.02,"start":-0.02},"id":"4054","type":"Range1d"},{"attributes":{},"id":"4073","type":"SaveTool"},{"attributes":{"formatter":{"id":"4615"},"major_label_text_font_size":"0pt","ticker":{"id":"4065"}},"id":"4064","type":"LinearAxis"},{"attributes":{"formatter":{"id":"4617"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"4061"}},"id":"4060","type":"LinearAxis"},{"attributes":{},"id":"4061","type":"BasicTicker"},{"attributes":{"axis":{"id":"4060"},"ticker":null},"id":"4063","type":"Grid"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"3897","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"3893","type":"Circle"},{"attributes":{"axis":{"id":"4064"},"dimension":1,"ticker":null},"id":"4067","type":"Grid"},{"attributes":{"source":{"id":"3809"}},"id":"3895","type":"CDSView"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"3892"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3893"},"selection_glyph":null,"view":{"id":"3895"}},"id":"3894","type":"GlyphRenderer"},{"attributes":{},"id":"4065","type":"BasicTicker"},{"attributes":{"overlay":{"id":"4120"}},"id":"4116","type":"BoxSelectTool"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"3897"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3898"},"selection_glyph":null,"view":{"id":"3900"}},"id":"3899","type":"GlyphRenderer"},{"attributes":{},"id":"4074","type":"ResetTool"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"3898","type":"Circle"},{"attributes":{"overlay":{"id":"4076"}},"id":"4069","type":"BoxZoomTool"},{"attributes":{},"id":"3911","type":"LinearScale"},{"attributes":{},"id":"4068","type":"PanTool"},{"attributes":{},"id":"4070","type":"WheelZoomTool"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"3902","type":"MultiLine"},{"attributes":{},"id":"4714","type":"UnionRenderers"},{"attributes":{"overlay":{"id":"4075"}},"id":"4071","type":"BoxSelectTool"},{"attributes":{"source":{"id":"3810"}},"id":"3900","type":"CDSView"},{"attributes":{},"id":"4715","type":"Selection"},{"attributes":{"align":"end","below":[{"id":"3915"}],"center":[{"id":"3918"},{"id":"3922"}],"frame_height":150,"frame_width":150,"left":[{"id":"3919"}],"renderers":[{"id":"3944"},{"id":"3949"}],"title":{"id":"4566"},"toolbar":{"id":"3933"},"toolbar_location":null,"x_range":{"id":"3907"},"x_scale":{"id":"3911"},"y_range":{"id":"3909"},"y_scale":{"id":"3913"}},"id":"3906","subtype":"Figure","type":"Plot"},{"attributes":{"overlay":{"id":"4077"}},"id":"4072","type":"LassoSelectTool"},{"attributes":{"data":{"xs":[{"__ndarray__":"UkSGVbzRA0BAuW3fo74GQMOW0AUFEgdALi5VaYurCUBgCIz+S6MLQB6jPPNymAxANDUecd2tDUAOGCR9WoUPQAvmtvlL5Q9AfsaFAyE5EUAuHy3rz9YRQPWAeciUrxJAZUeKEwWSE0BtO22NCCYUQOjpekzy2BRA97OxpoyBFUDk9WBSfJwVQMYDQo5SZhZAW7BUF/ASF0B3MDJl+WQYQNNqSNxjiRhAvgr9sU9fGUDTakjcY4kYQFBNL18YKhhAW7BUF/ASF0Dk9WBSfJwVQG07bY0IJhRA4CCHbrrME0D1gHnIlK8SQF07CiYWQhJAfsaFAyE5EUAOGCR9WoUPQKwV5jM/dQ9Ah+/atYUZDUAeozzzcpgMQACndzJW4wpALi5VaYurCUBAuW3fo74GQFJEhlW80QNAcfac4kgXAkBjz57L1OQAQOq0boPa7/s/2os1Cihz+z8My59vCxb2P0tlRvC4AvY/vS9eJWzs8D8u4dBbPDzwPyqbeLnWF+c/oO4DkNrE5D/KLWUycRTbP8g1zNB4ItI/TImui4atuz/o3C+MeeWQP3ujmtWxDaI/0ZkaBKkA0T/HNczQeCLSP3L0tfmG094/wSRQdHNx5D+g7gOQ2sTkPyCrRhCOeuc/LuHQWzw88D9ih3M5dK7yPwzLn28LFvY/Eqc9Hftm+D/qtG6D2u/7P6rRM4Eeivw/eL3lW1oOAEBiz57L1OQAQCnTIIwZKwNAUkSGVbzRA0A=","dtype":"float64","order":"little","shape":[70]},{"__ndarray__":"UkSGVbzRA0A/uW3fo74GQFiUpEznWQdALi5VaYurCUDC3COBZSEKQB6jPPNymAxAYliLqRLMDEAOGCR9WoUPQBgs+dxmkxBAP9jiYjwiEUB+xoUDITkRQC4VptPmkhFAwN7wGLxREUB+xoUDITkRQEnBPpHfrxBADhgkfVqFD0DCKwy6gScPQB6jPPNymAxA+5IjUFy0C0AuLlVpi6sJQEC5bd+jvgZAd9BW7cEQBEBSRIZVvNEDQH8wtqaswgNAY8+ey9TkAEDGfDoM7C3+P+q0boPa7/s/Y3CrpsIe+T8My59vCxb2P1TusrQ4EvU//6iaKsRB8j+8xHwZ2xjxPxyXuKxLyfA/lvyHowfb8T/DgB4TieL0PwzLn28LFvY/hLfXkefB+T/qtG6D2u/7P3ggRxjUYf8/Y8+ey9TkAEDGphEISgcDQFJEhlW80QNA","dtype":"float64","order":"little","shape":[42]},{"__ndarray__":"UkSGVbzRA0BAuW3fo74GQE0T54kg/QZALi5VaYurCUCWd0kdeioKQJ7HLap41AtAHqM883KYDECKT1imRlsMQIi1QILT2QpALi5VaYurCUBAuW3fo74GQPaM1oT0mQRAUkSGVbzRA0ADmlzORr4DQGPPnsvU5ABAiCWw4rPT/z8yGPJIxJr8P+q0boPa7/s/MdiFP5cb+z9/jMkPpZL7P+u0boPa7/s/JACXjJ6F/j9jz57L1OQAQPPciuDOywJAUkSGVbzRA0A=","dtype":"float64","order":"little","shape":[25]},{"__ndarray__":"UkSGVbzRA0BAuW3fo74GQLrxt8m+pgdAPlOJNebBBkA/uW3fo74GQFJEhlW80QNA7Qx13cisA0Boc1lyTX8CQFJEhlW80QNA","dtype":"float64","order":"little","shape":[9]}],"ys":[{"__ndarray__":"3tSgxaUZ7z9ms+guHt/wP+yRzVXzXPI/QG6GG/C5/D9KpZ9wdosDQFLHTSRcbwZAdhN80/S5CEAGBhmVGhYNQKCBWDZz6A1APcMQnGqqEEDkd5rMeIsRQOTmNWs4rhJA+q4I/rciFEAk2OW12WMVQBDmdi/3uRZAJB3lYDZRGUBWS9IX370ZQDpUU5J16BtAsN9o5ZkNHUBQi8HDtH8eQPvwuE3Qth5AMuGX+nmLIEBa8OwkYsEhQL38TpMZ1yFARlkejvX7IUBoUsr/PA0iQJjCOYhDxCJASBgGLLkiI0D7md+zOBwkQNIzvcRYbiRAKqVOsv/7JECRNqdOgrQlQF1PdF34uSVA6Gor9pcFJ0ANSn9sO10nQHKG4o43UShA4kdLf3G3KEBsHU200yIpQA5LyqgB3ShAcobijjdRKEBsf26+TQ8oQAMzyfmDHSdA6Gor9pcFJ0DnpjYCo78lQF1PdF34uSVA0jO9xFhuJEAUOwaGHD0kQEgYBiy5IiNAhNa2BRK+IkC9/E6TGdchQBH/tG24JSFAMuGX+nmLIEBQi8HDtH8eQDpUU5J16BtAIx3lYDZRGUDM3gmUPzcZQBDmdi/3uRZA+q4I/rciFECcNQVhFtYTQOR3msx4ixFANchptA6eD0CggVg2c+gNQAvv52Q5kAtAdhN80/S5CECtwMyN3IoEQEqln3B2iwNAQG6GG/C5/D8/IYqlvGD4P+yRzVXzXPI/3tSgxaUZ7z8=","dtype":"float64","order":"little","shape":[70]},{"__ndarray__":"+2zZ20eKDEA8RvZL/L8MQKCBWDZz6A1ActOg5ykJEUDkd5rMeIsRQML4s6Ji+RNA+q4I/rciFEAQ5nYv97kWQCQd5WA2URlAOlRTknXoG0DCeMeK7ZAcQFGLwcO0fx5AMuGX+nmLIEC7PiXQh7AgQL38TpMZ1yFAT5fl98HpIkBIGAYsuSIjQNLXFcFnKSRA0jO9xFhuJEB81T5ZjxglQFw71DRopCVAXU90Xfi5JUAGuLtfQL0lQF1PdF34uSVA5nE8cxs6JUDSM73EWG4kQElxvn3W4CNASBgGLLkiI0Dr+N2BfCAiQL38TpMZ1yFAMuGX+nmLIEBQi8HDtH8eQDpUU5J16BtAJB3lYDZRGUAQ5nYv97kWQDRSyzBrCBZA+q4I/rciFECKTRO3PRsTQOR3msx4ixFAwiVyF2lZEECggVg2c+gNQPts2dtHigxA","dtype":"float64","order":"little","shape":[42]},{"__ndarray__":"3Eaaz04lFkAajceuHIsWQBDmdi/3uRZAKAE+Ipe9GEAkHeVgNlEZQDpUU5J16BtAUIvBw7R/HkAy4Zf6eYsgQL38TpMZ1yFAjxsolJJcIkB3libaHRcjQEgYBiy5IiNABp00Nv8nI0BIGAYsuSIjQNAxRf8fWiJAvPxOkxnXIUAy4Zf6eYsgQA1g1u4K1R9AUIvBw7R/HkA6VFOSdegbQPy+3EdBixtAJB3lYDZRGUB27Ua0oLMXQBDmdi/3uRZA3Eaaz04lFkA=","dtype":"float64","order":"little","shape":[25]},{"__ndarray__":"OlRTknXoG0DPR3sElsAcQFCLwcO0fx5AMuGX+nmLIEAkn+vB5IwgQBwvW8hPmyBAMuGX+nmLIEBQi8HDtH8eQDpUU5J16BtA","dtype":"float64","order":"little","shape":[9]}]},"selected":{"id":"4561"},"selection_policy":{"id":"4560"}},"id":"3901","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"3901"},"glyph":{"id":"3902"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3903"},"selection_glyph":null,"view":{"id":"3905"}},"id":"3904","type":"GlyphRenderer"},{"attributes":{},"id":"4203","type":"LinearScale"},{"attributes":{"formatter":{"id":"4663"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"4206"}},"id":"4205","type":"LinearAxis"},{"attributes":{"fill_color":{"value":"black"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"__ECDF_theta[1]"}},"id":"3942","type":"Circle"},{"attributes":{"source":{"id":"3901"}},"id":"3905","type":"CDSView"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"3903","type":"MultiLine"},{"attributes":{},"id":"3913","type":"LinearScale"},{"attributes":{},"id":"4201","type":"LinearScale"},{"attributes":{"end":20.254901999999998,"start":-13.425602000000001},"id":"3907","type":"Range1d"},{"attributes":{},"id":"4206","type":"BasicTicker"},{"attributes":{"end":1.02,"start":-0.02},"id":"3909","type":"Range1d"},{"attributes":{},"id":"3928","type":"SaveTool"},{"attributes":{"axis":{"id":"4205"},"ticker":null},"id":"4208","type":"Grid"},{"attributes":{"formatter":{"id":"4569"},"major_label_text_font_size":"0pt","ticker":{"id":"3920"}},"id":"3919","type":"LinearAxis"},{"attributes":{"overlay":{"id":"4122"}},"id":"4117","type":"LassoSelectTool"},{"attributes":{"formatter":{"id":"4571"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"3916"}},"id":"3915","type":"LinearAxis"},{"attributes":{},"id":"3916","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"4132","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4113"},{"id":"4114"},{"id":"4115"},{"id":"4116"},{"id":"4117"},{"id":"4118"},{"id":"4119"}]},"id":"4123","type":"Toolbar"},{"attributes":{"axis":{"id":"3915"},"ticker":null},"id":"3918","type":"Grid"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"4232","type":"Circle"},{"attributes":{"axis":{"id":"3919"},"dimension":1,"ticker":null},"id":"3922","type":"Grid"},{"attributes":{"text":""},"id":"4720","type":"Title"},{"attributes":{},"id":"3920","type":"BasicTicker"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4075","type":"BoxAnnotation"},{"attributes":{},"id":"3929","type":"ResetTool"},{"attributes":{"overlay":{"id":"3931"}},"id":"3924","type":"BoxZoomTool"},{"attributes":{},"id":"3923","type":"PanTool"},{"attributes":{},"id":"3925","type":"WheelZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4076","type":"BoxAnnotation"},{"attributes":{"overlay":{"id":"3930"}},"id":"3926","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"3932"}},"id":"3927","type":"LassoSelectTool"},{"attributes":{"data":{"__ECDF_rho":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"__ECDF_tau[0]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"__ECDF_tau[1]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"__ECDF_theta[0]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"__ECDF_theta[1]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"chain__":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"diverging__":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false],"draw__":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,613,614,615,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,883,884,885,886,887,888,889,890,891,892,893,894,895,897,898,899,900,901,902,903,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,281,282,283,284,285,286,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,798,799,800,801,802,803,804,805,806,807,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,51,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,234,235,236,237,238,239,240,241,242,243,244,245,247,248,249,250,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"index":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,613,614,615,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,883,884,885,886,887,888,889,890,891,892,893,894,895,897,898,899,900,901,902,903,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2281,2282,2283,2284,2285,2286,2288,2289,2290,2291,2292,2293,2294,2295,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3051,3054,3055,3056,3057,3058,3059,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3162,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3247,3248,3249,3250,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999],"rho":{"__ndarray__":"AyfbwB0o4z8LYwtBDsriP7Yr9MEyNuI/7G0zFeKR4z9inSrfMxLjPwTidf2C3eE/paSHodXJ4D+KrDWU2oveP3DP86eN6uA/C170FaSZ4T+2EyUhkbbjP9WSjnIwG+A/FR3J5T8k4D/tR4rIsArjP4IavoV1Y+E/u0ihLHx93D/Mm8O12sPcP+Rp+YGrPNw/shAdAkcC2j+rs1pgj4nnPwvVzcXf9uM/IsMq3sg85j94t7JEZ5njP3zzGyYapOY/yTzyBwPP5j95P26/fDLkP5lH/mDgueM/6X5OQX624z/7eOi7W1nmP5Q0f0xrU+Q/4iAhyhe06D9lNPJ5xVPoP1H1K50Pz+c/ISBfQgWH4j+ADB07qETiPxh7L75oj+E/CaaaWUuB5D+/m27ZIX7kP+J1/YLdsOI/KGTnbWz24T8ai6azk8HiP9nuHqD7cuE/MzffiO7Z5D8BGTp2UInbP5JdaRmpd+M/+wRQjCwZ4D/turciMcHlP74wmSoYleE/wqONI9Zi5D+k+zkF+dnjP3v4MlGEVOU/4ba28LxU5z/Y9Qt2w7bnP8ZsyaoIN+g/V+wvuycP5D9XlBKCVfXjP7iTiPAvAuU/4syv5gDB5z9INIEiFjHjP+7QsBh1LeU/RrOyfchb4T8XnMHfL+bkP/J5xVOPNOI/+1ksRfIV4T+8AtGTMiniP9u+R/31CuQ/yuAoeXWO4j+rJLIPsqziP/GcLSC0nuE/LT9wlScQ6D9zaJHtfD/hP7oSgeofxOI/7wOQ2sTJ4D+gNqrTgSznP3UDBd7Jp+Y/zSN/MPDc5z/+f5wwYTTiP4HMzqJ3Kuc/vmn67IBr5j8UrkfhehTjP7H8+bZgKeQ/KPG5E+y/4z/wMO2b+6vjPxyz7Elgc+U/ZOqu7IJB4j/jFvNzQ9PlP9u+R/31iuU/rVEP0egO5D+zlgLS/ofjPzp2UInrGOQ/i6iJPh/l5j+RJt4BnrTgP57r+3CQEN0/hVypZ0Go4j+tS43Qz9TdP4LknUMZqt8/nbmHhO995D825J8ZxAfhP66a54h8l90/wM+4cCAk5j8QsFbtmpDkPz3WjAxyF+Y/dQMF3smn2D+InpRJDW3iP2Xh62td6uU/QfLOoQxV5j+C4seYu5bjP1xXzAhvj+U/zv5AuW1f5T/HTKJe8GnjPyQlPQytzuU/iIBDqFKz4z81DB8RUyLlP97mjZPCPOI/uoeE7/2N4j/QuHAgJIvgP9F2TN2VXeI/pg9dUN+y5T9ZiXlW0orjP8WRByKLNOQ/qrcGtkqw5D/61RwgmKPkP7uYZrrXyeE/7IZtizIb4z/DSZo/pjXjP5brbTMV4uU/qVDdXPxt4j8XSFD8GPPjPwXc8/xpo+E/i6azk8HR4T+ILT2a6sniP/OTap+OR+M/QRGLGHaY4D/MRBFSt7PkPwwDllzF4uU/HvtZLEXy5T9yN4jWijblPwq6vaQx2uI/X9TuVwG+4j+qm4u/7YnkP+J4PgPqTeM/EcMOY9Lf4j8X1LfM6TLjP49SCU/odeM/SFLSw9Dq4z9/arx0k5jiPx7gSQuXVeU/dZMYBFaO4D+LFwtD5PThP1N3ZRcMrtw/EOz4LxAE4j/5u3fUmBDlP3y45LhTuuQ/Ht5zYDnC5D/BN02fHXDePwtCeR9Hc+E/xyk6ksv/4j9xPQrXo3DeP8sO8Q9b+uM/qYWSyakd6D+J0XMLXYngP9Zz0vvGV+M/5WTiVkEM4j8KMCx/vq3iP2oy422l194/0GT/PA2Y4z/H9IQlHlDlP6Tfvg6cs+Q/qaJ4lbVN4D/Co40j1uLkPwkaM4l6weU/aYtrfCZ75z8wSPq0in7kP8h8QKAzad0/aFpiZTTy3T/5hOy8jU3lP2GL3T6rTOQ/tK7RcqCH5j+7C5QUWADoP1yTbkvkguI/MzZ0sz9Q4j/wGYnQCDbjP4MT0a+tn+M/qJAr9SyI5D8eFmpN8w7oP0s/4ezWsuY/GELO+/845j9/hcyVQTXnP+Cik6XW++U/Nc8R+S4l5j8V5dL4hVflP9R8lXzsruY/uk24V+Yt6D+zI9V3flHoP1fqWRDK++A/jNtoAG8B5T+gNqrTgSzjP6m+84sSdOQ/WkbqPZXT3z/4/3HChNHiP9Zx/FBpROM/w5s1eF+V3D9QVgxXB8DlP6uUnuklRuQ/hnZOs0C74D/vOEVHcvnkP99t3jgpTOU/WMUbmUd+5T/83xEVqpvmP8nKL4MxIuQ/jZqvko/d4D/T9q+sNKnkP5T6srRTc+c/ED6UaMlj5D8Y7lwY6cXhP6qB5nPuduY/E2OZfon45D8nvW987RniP+W4UzpY/98//0KPGD233z/ZI9QMqaLkPzwtP3CVJ+I/nPwWnSy13z/J5xVPPVLkP/RuLCgMSuI/4qyImujz4D+thsQ9lr7hPyklBKvq5do/z04GR8kr4T9TWKmgomrgP/fLJyuGq+M/NZpcjIH14D/JHww8957jP8f0hCUeUNw/JSTSNv7E5j8glzjyQOTkP05FKowtBNk/ga/o1mv64j+DM/j7xezhP0GasWg6O+I/6dZrelBQ3j/jbaXXZmPhP8udmWA4198/OLpKd9fZ4j8kDtlAutjgPzs1lxsM9eE/Zacf1EUK4z8TtwpioOvhP8XJ/Q5FAeA/6pEGt7WF4j+mnZrLDYbmP+tTjsnifuQ/7fFCOjyE5D9/Tdaoh2jmP/Xx0He3MuQ/PUfku5S65D90XfjB+dTdPxbB/1ayY+E/+3jou1vZ4j/Elh5N9WTgPxrDnKBNDuQ/AknYt5MI4D9dwwyNJwLjP0IKnkKuVOM/za57KxKT4T+J1LSLaSblP3H/kenQaeE/V19dFajF4T8b8WQ3M/rlP1sLs9DOaeM/fA+XHHdK4j/wNJnxttLhP+NTAIxn0OQ/kEsceSAy4z/zWDMyyF3jP8crED0pE+Q/r3yW58Hd4z+BCHHl7J3kP4+K/zuiwuQ/Q1ciUP2D5T/6Y1qbxnbiP1ngK7r1muI/6Ih8l1KX4T9dGr/wShLlPyuHFtnOd+U/oBfuXBhp5D+69C9JZYrkPxJNoIhFjOU/boeGxahr4T98m/7sR4rnP3B5rBkZ5OQ/MEYkCi3r5D9P6zao/dbjPy/BqQ8k7+Q/QfLOoQzV4D+Ho6t0dx3gPzf/rzpypN8//iyWIvlK3z8bhLndy33jP8n/5O/e0eE/EQAce/Zc5T+FP8ObNXjcPyO6Z12j5d0/DtdqD3sh4T9R2bCmsqjgP1iqC3iZYeE/fUELCRhd3T8OZhNgWP7UP1pLAWn/g+Y/QuxMofMa6j/fxJCcTNzeP91c/G1PEOQ/dR2qKck65D+bBG9IowLbPwq/1M+biuI/06I+yR224j/0bFZ9rrbkP4m1+BQAY+M/OJ7PgHqz4j8/4ezWMpnlP2+gwDv5dOU/rFJ6ppeY5D/o9pLGaB3pP9KrAUpDjdw/rOY5It8l4z/+8PPfg9fhP9Qq+kMzT+M/jQ3d7A8U4T+YbaetEcHmP3kGDf0T3OQ/lGsKZHaW4D+Kr3YU5yjgP9ZwkXu6OuE/IVfqWRDK1j+g+geRDDnoP1hZ2xSPi+Q/ZCE6BI6E5D/HLlG9NTDiP7Khm/2BcuA/wygIHt/e3T9JvhJIid3gPxQlIZG2ceQ/ppnudVJf3T9DxTh/EwrgP8xG5/wUx9g/yOwseqcC5T9NhuP5DCjhP7DkKha/qeY/pHGo34Wt3z/IW65+bJLcP+epDrkZbuU/I7w9CAF54T/6RQn6C73gP0S/tn76z+E/UU1J1uFo4j/meXB31m7kP5OQSNv4E+I/JCu/DMYI5D/4/DBCeLTgP0nW4egqXeA/gT/8/Pfg2T+ln3B2a5niP591jZYDPeM/+KV+3lQk4j/7V1aalALjPxanWguzUOY/dXgI46fx5T/Fru3tlmThP+bMdoU+WOE/I7pnXaPl3z9LV7CNeLLgP1dCd0mcleU/7WRwlLw65j8So+cWupLhP0bvVMA9z+I/RrQdU3fl4T9kB5W4jvHkP5ZcxeI3heQ/4X1VLlT+2z/hYG9iSM7kP++rcqHyL+E/pDZxcr/D4D9ODTSfc7ffP4zc09UdC+k/3NrC81Kx6D+dKt8zEiHoP4UlHlA2ZeI/GQPrOH4o4D8U6ukj8IflP5brbTMV4uU/nN7F+3F75T+SzsDIy5rbP87F3/YECeg/H/KWqx8b5z8rhqsDIG7iP/88DRgkfd0/x0s3iUFg6j+ynlp9dVXiP2kZqfdUTuQ/ofgx5q4l5D+y1Hq/0Q7hPx8xem6hq+Y/exLYnINn5j/mywuwj87mP5pgONcww+c/eR7cnbVb5j+5x9KHLijmP1UwKqkTUOU/u+6tSEzQ5j+Ha7WHvVDmP/0xrU1je+M/xJRIopdR5D9FRgckYd/jP13fh4OEKOY/3Esao3XU4z+Fl+DUBxLjPxHHuriNBuI/BW1y+KQT4D/rOH6oNGLgPwB0mC8vwNs/LliqC3iZ3D/8pxso8E7jP4m2Y+qu7OQ/s0RnmUUo4z+OdXEbDeDiP+qURzfCIuM/GQKAY88e4T+IZp5cUyDkPzIAVHHjFug/J6PKMO6G4j+k374OnLPlP6iLFMrCV+U/7BhXXByV6D/SjbCoiNPgP+xRuB6Fa+I/qYk+H2XE5z/NdRppqbzlPwQ91LZhFOI/41MAjGfQ4j/pR8Mpc3PlPzOHpBZKJuM/OE4K8x7n5D8RrKqX3+nhP7iswmaAi+A/Jv+Tv3tH5j9p5POKpx7oP65nCMcse+M/BKxVuyak5j8/48KBkCznP8ybw7Xaw+Y/zH7d6c4T5T9z1qcck0XkP1EtIorJG+Y/xD4BFCNL3z9oImx4eqXlP9MRwM3iReM/A0TBjClY4j/AkxYuqzDhPwNBgAwdu+I/rROX4xUI4T//snvysFDiP8U3FD5bh+Q/U+knnN3a5T/mJJS+EPLoP2IUBI9v7+M/hbAaS1gb5j/YtiizQSbmP4NRSZ2AJuQ/N8E3TZ+d4T8PnDOitLfjP5krg2qDE+M/uk24V+at4D84vCAiNW3jP3aIf9jSo+A/Rs1Xycdu4T94uB0aFqPlP8QmMnOBS+Y/a9eEtMYg4j8A4xk09E/kP/KYgcr49+Y/kUJZ+Pra4D/NrRBWYwnjP0D8/PfgteE/PC6qRUQx5D/EJced0kHmPyTQYFPnUeQ/V0EMdO2L5D8joS3nUtzmPx3jioujcuc/9PkoIy4A5z92Ul+WdurnP82QKopXWd0/WDofniXI4j+fknNiD23jP4lEoWXdP+E/7x01JsRc3D+F6ubib3vePwg7xapBGOQ/KEhsdw/Q5z9nZfuQt9zmP1aDMLd7ueU/ycuaWOAr5j8+tI8V/DbmP1IrTN9riOA/mlshrMYS4j8nTu53KIrhP1qfckwW9+U/Ff93RIXq2z8MdVjhlo/fP3HMsieBzeQ/DLJl+bqM4j+zmq4nui7gP82Pv7Soz+I/otXJGYq75D9lcmpnmFrmP1RweEFEauU//N8RFaqb4T9bsirCTUbjP00ychb2tOQ/W3heKjZm5D8BbECEuPLjP+kpcoi4uec/zEV8J2Y95T9x6C0e3nPoP9CYSdQLPtw/Zi/bTlsj5T8FMjuL3qnkPzj27LlMzeQ//FBpxMw+4z8zUu+pnHbgPz0q/u+Iiuc/BDkoYaZt6D932a873fnhP8R6o1aYvuU/kPY/wFq15D8CnN7F+3HjP2AF+G7zRuE/HF2lu+ts4z8iF5zB3y/jP0gZcQFolOI/8yGoGr2a4z++F1+0x4vkPz51rFJ6puY/ns+AejNq4j9/vi1YqgvlPyHmkqrtJuU/R1hUxOkk4z8bEvdY+lDnPxBZpIl3gNk/Fvw2xHjN4z8vFRvzOuLkP5PheD4D6ts/FxBaD18m4z9s6GZ/oFzjP0SJljyelt4/PIcyVMXU4D9Lrfcb7bjhP+JbWDfeneI/nfaUnBN74j+XqUnwhjThP0ph3uNMk+M/fJxpwvaT5T/+CwQBMvTiP88VpYRg1eA/kxywq8lT4T+iKTv9oK7hP5QyqaENQOU/OSf20D7W5j/fUWNCzKXlP/MFLSRgdOU/WmYRiq0g5T9ETfT5KCPhPzdtxmmIKuE/FRxeEJEa4T8Ul+MViJ7jP+YjKelh6OQ/91YkJqjh3z+VZvM4DObkP5c3h2u1h+I/SDMWTWcn4j+wdhTnqKPfPxTq6SPwh94/y7xV16Ga2T/PE8/ZAsLmPw4tsp3vp+U/tVGdDmQ95T9fQ3Bcxs3iP6q6RzZXzeA/9N+D1y5t4T95WKg1zTvgP6FLOPQWD98/e8A8ZMqH3j8sYthhTPriP168H7dfPuE/44xhTtCm4T9kIxCv65fjP0AUzJiCNeM/2H4yxodZ5T8jhh3GpL/jP3rFU480uOM/8l61MuEX5D9kldIzvcTkP8QKt3wkJeE/Xp1jQPb64T94l4v4TszgP3iXi/hOzOA/JsRcUrVd4z9lcf+R6dDiP8r+eRowSOI/EVSNXg1Q5T+b49wm3CvkPz1JumbyTeE/XKs97IUC4j8QQGoTJ3fmP7ZoAdpWM+U/QWSRJt4B5z9LAtTUsrXkP9Iag04IneQ/5/1/nDDh5T/3kPC9v0HlP70BZr6DH+U/wt1Zu+1C5j+8Wu7MBMPcPwqhgy7h0Nw/eF4qNub14z8dBYiCGdPjP+JzJ9h/HeI/g9xFmKLc4T+1T8djBirmP3am0HmN3eU/nS/2XnzR5D8hXAGFevrmPxTsv85NG+Y/EMzR4/c24z+FzQAXZEvlPzJZ3H9kOt0/93ghHR5C4T8pPdNLjGXiP+9WlugsM+M/iZtTyQDQ4j/GbMmqCDfjP7HBwkmav+Q/3smnx7YM5T86WtWSjnLlP5VE9kGWBec/HAsKgzIN5T8of/eOGpPjP6MFaFvNuuU/LGLYYUz64z8JMgIqHMHhP6kSZW8p5+E/rd12oblO4j8QWaSJd4DlP0hS0sPQ6uM/325JDtjV4z+mDBzQ0hXnP6/sgsE1d+Y/K4nsgywL5j+rlnSUg9nkPzy858ByBOY/L00R4PSu5D8zxLEubqPjP9GVCFT/IOU/5Lop5bWS5T9T7Ggc6nfkP97oYz4gUOM/oS3nUlxV2j/+YyE6BA7hPyLH1jOEY+I/Kqio+pXO5D+rWWd8X1zhP5ur5jkiX+M/Y0M3+wPl3j/Po+L/jqjgPzjaccPvpt8/XrpJDAIr3T8GLLmKxW/eP9c07zhFx+E/xO3QsBj15D+wr3WpEfrhP3Y25J8ZxOE/ay3MQjsn4T851sVtNADkP0Q2kC42LeI/l3SUg9kE3j9dbFopBHLhP0z75v7q8eI/Hv0v16KF4j++amXCL/XjP+22C811muU/HekMjLys4z/siEM2kC7iP/qAQGfSJuU/wmosYW2M5j+TOZZ31QPnP1kTC3xFt+I/KCuGqwMg2D8zaykg7f/gP+c4twn3yuM/v9cQHJfx4j94l4v4TkzhPwsL7gc8sOI/TFRvDWyV4T/sUE1J1uHiP9sV+mAZm+I/iskbYOa74z/bUZyjjg7iP5nYfFwbquE/yZHOwMjL4D/GMZI9Qs3lP2d8X1yqUuQ/s+4fC9Eh5j809E9wsaLlP6oqNBDLZuE/otPzbiwo4z9+/nvw2qXYP5dzKa4qe+A/YCLeOv/24j+8Bn3p7c/jP9uF5jqNNOQ/KChFK/eC5T8lz/V9OEjjPyh9IeS8/+A/duJyvALR4T8fnbryWZ7lP8eePZepSd0/9Z1flKA/4z+NXg1QGmriP93u5T45CuY/Wwuz0M5p5D/Q04BB0qfjP9QLPs3JC+M/l5F6T+U04z/ltRK6S+LjPzdvnBTmPeI/ECIZcmy94j/n/BTHgdfhPwd96e3PReM/bD6uDRVj5T/B5EaRtQblP9zWFp6XCuM/5geu8gTC4T+ciH5t/fTkP7aGUnsRbeI/CYfe4uG95j8983LYfUfjP5cBZylZzuM/ai43GOqw4j+5OZUMAFXhP22q7pHNVeA/3PY96q/X5D8GuvYF9MLjP5oklpS7T+Q/oYZvYd344D8y/+ibNI3iP4v7j0yHzuI/aOvgYG9i5T/Gbp9VZkreP+jB3Vm77eE/W7bWFwlt4T8xlumXiLflP4V6+gj8YeQ/AkcCDTZ15T9Prb66KlDiP+uM74tLVdk/w0SDFDyF3z83/686cqThP59b6EoEKuc/6GfqdYtA5T+SXtTuVwHgP8mP+BVrOOI/DK8kea5v5D941QPmIVPiP7vRx3xAIOI/pp2ayw0G4z/qruyCwbXiP/X0EfjDT+M/3Qw34PND5D93Z+22C83jP9HKvcCsUOQ/rIvbaADv4j+2Zisv+Z/lP4v5uaEpO+U/JXmu78NB5T/1udqK/WXlP8RBQpQv6OM/JLcm3ZZI4T9GBrmLMEXjPxwHXi13ZuU/v0aSIFwB3D/ZtFII5BLlPy1CsRU0Ldk/RpkNMsnI4j/goL36eOjkPxy3mJ8bGuY/ETXR56OM2D92G9R+ayfiPy7lfLH3YuQ/IcoXtJCA5T/LTGn9LYHjP46QgTy7/OM/xw+VRsxs4z/Jq3MMyN7iPyGvB5PiY+U/nwWhvI+j4z+sGRnkLsLgP6vq5XeaTOU/FAfQ7/s34z/7Bbth2yLjP2WqYFRSp+U/VTTW/s524j+fIRyz7MniPwKDpE+raOU/4nSSrS6n3z+/9PbnoiHgP9oEGJY/X+E/xhnDnKBN3z+iJ2VSQxvnP6SMuAA0yuQ/0qdV9Ifm5D+oxHWMKy7dP99Szhd7r+U/7DAm/b2U5D9NhuP5DCjmP50tILQePuE/qkca3NYW4T+QEru2t9viP9Gy7h8LUeA/SnzuBPuv4z/dDDfg80PjP7ggW5avy9A/h22LMhtk5T8GK061FmblP2wKZHYWvds/vqHw2To45j+g+Zy7XS/kPyvDuBtEa+Y/CXB6F+9H5D8SE9TwLazgP5dw6C0e3t0/Emxc/67P4D93SDFAogniP0llijkIOuQ/r7SM1Huq5j9rSNxj6cPhP6RQFr6+1uc/ER5tHLEW4T+hhJm2f2XkP17b2y3JgeM/f/j578Hr5T+4O2u3XWjgP5I7bCIzF+I/QbtDigES4z+h98YQABzkPxBB1ejVAOQ/+ir52F2g5T+q9BPObi3lPyPcZFQZRuY/34eDhChf3z/e5SK+E7PdPyjVPh2PGeI/oMIRpFLs4j849YHknUPiP+5gxD4BFOM/tr+zPXpD4j9TkQpjC0HhP+jbgqW6AOY/da+T+rI05j8OSphp+9flP7Ezhc5r7Nk/Dat4I/PI3j9gr7DgfsDiP82U1t8SAOE/1zOEY5Y94j/aAkLr4cvnP2KfAIqRJeU/i/okd9jE5z9Qqn06HjPmP8x7nGnC9ug/C/FIvDyd4z/oTUUqjK3iPyEjoMIRJOU/iQtAo3Rp4j9RacTMPo/jP7ZLGw5Lg+U/uTR+4ZWk5T+6wOWxZuTlPxd+cD51rNg/UInrGFdc3j9WRE30+SjXP24VxEDXvts/SMX/HVGh4z8xJv29FJ7hP+gU5Gcj1+c/SrVPx2MG5j+iKqbSTzjmP7MIxVbQtN0/fERMiST64z+GVbyReeTYP1vTvOMUneU/aRzqd2Hr4T8I6L6c2S7nPzkM5q+Qudc/R3GOOjqu3T8f9kIB28HiP5SkaybfbOY/a2PshJdg5z8RkC+hgkPlP1Ruopbm1uM/51CGqphK5D8O2UC62LTiP7/09ueiIeI/8SvWcJF75T9UU5J1OLrhP/flzHaFvuU/yM1wAz4/4z/kLy3qk1zmP26LMhtkkuQ/vK/Khcq/4j9OKa+V0N3kPyu/DMaIROM/6INlbOjm5D+h15/E507mP7JHqBlSxeg/31D4bB2c4z/+KOrMPaTnPxizJasiXOU/CoMyjSYX5D+6LCY2H9fkP1Gk+zkF+eM/d9Zuu9Bc5T/fGAKAY8/iP9r+lZUmpd8/VKnZA61A4T8C8E+pEmXhP3qlLEMca+Q/EVMiiV5G4T/LZ3ke3B3mP/MBgc6kTeQ/h913DI/95D+K52wBofXhP7yUumQco+E/FVeVfVcE5z8hzVg0nZ3fPxHfiVkvBuU/J9wr81bd5D/W4lMAjGflP1otsMdEyuQ/1Cr6QzNP3j8Wak3zjtPlP0m6ZvLNNuU/wTkjSnuD5z8Baf8DrNXiP1HZsKayKOU/VHB4QURq5D8P8KSFyyrkP+ik942vPeQ/inYVUn7S5T9j8ZvCSgXlPzZWYp6VtOQ/RS3NrRBW4D9cj8L1KNzlP63D0VW6u+A/whTl0vgF4z89mX/0TZrfP8jShy6ob+A/2scKfhvi4z9FLGLYYUzePxanWguzUOQ/nStKCcEq4j+jHTf8brrjP94BnrRwWeM/NzemJyzx4j9eZtgo6zfdP06zQLtDiuE/lBEXgEZp5D8FFsCUgYPlP5oIG55eKeI/5zki36VU5z/koISZtn/oP6fn3VhQmOM/gQhx5ewd4T+0c5oF2p3jPzxqTIi5JOI/Q+T09XzN5D+6wOWxZmTYP1Ev+DQnL9s/OzQsRl3r4z8q/u+ICtXlP+zZc5mahOQ/Ft7lIr4T4j/HYptUNNbeP97Jp8e2jOI/YvnzbcHS5T9j0XR2MjjlP9HLKJZb2uM/dAgcCTTY5D8/q8yU1t/jP/58W7BUl+I/EANd+wL65D9blxqhnynkP+YjKelh6OM/a9RDNLoD5D9/NJwyN9/mPwSPb+8adOc/urvOhvwz5z90RSkhWNXlP1q6gm3Ek98/q1lnfF9c5j+Qa0PFOH/jPz4GK061luM/BHY1ecpq4j+o4sYt5mfkP0Q2kC42rec/hEvHnGfs5z8IrBxaZDvjP+hOsP86N+Q/z/kpjgOv2T/KGvUQje7lP3aLwFjfwN0/9FFGXACa5T/BG9KowMnhPw3fwrrx7uI/qfbpeMzA5T9/UBcplAXiPww/OJ861uE/AhHiytm74j+v0t11NmTjP0YL0Laa9eM/L9y5MNKL3j/Pv132687kP0Yjn1c8deE/xvfFpSpt3j+ESfHxCVnhPz2BsFOsmuQ/Dr4wmSoY4z+VC5V/LS/kPzLjbaXX5uM/TI47pYP15z9iu3uA7svjP6n26XjMQOQ/QL6ECg6v4T/ikuNO6WDYPwUYlj/fFug/ZXCUvDrH4D9zvth78UXnP7OyfchbLuc/0jdpGhTN1j9yGTc10PzlP/lp3JvfsOA/RFGgT+RJ4D+dvTPaqiTkP9WWOsjrweQ/Y1+y8WCL5T+5isVvCqvlP+eKUkKwqt8/a9WuCWmN5D8IBDqTNlXlPwuz0M5pluM/OGqF6XsN5z9QcLGiBtPkPx2u1R72wuE/yVht/l914D9lcf+R6VDjP197ZkmAmuQ/e/Xx0He35D/hQh7BjZTkP/+vOnKks+c/UtUEUfeB4z/MY83IIHfkP4oBEk2gCOU/xqaVQiCX5T9JgQUwZWDmP+knnN1aJuI/9tTqq6uC4z/YLJeNznnkP3SZmgRvyOQ/dChDVUyl5T9hNZawNkbjP6OTpdb7jeI/UP2DSIac5z96bTZWYh7hP4TVWMLaGOI/Vp5A2ClW4j/s3R/vVSviP/fN/dXjvuA/Yvay7bQ15T8tlbcjnBbkP0Rpb/CFyeU/9N4YAoDj5T+fsMQDyiblP/WgoBSt3OU/T5XvGYlQ5T8IkKFjB5XhPx4bgXhdv+Q/8fW1LjXC5D+m8KDZdW/lP3yd1Jelnec/z4HlCBnI5T8O95Fbk27lPzPFHAQdLeM/RZ4kXTP53D/KcDyfAfXaP6ddTDPd690/MILGTKJe3z+jlXuBWaHoP0AziA/s+OU/CjGXVG235D+wql5+p8ncP/peQ3BcRuE/iX0CKEaW4T8KD5pd91bkPxhDOdGuQuY/SkG3lzTG5T+X/5B++7rlP+9v0F59POU/p+fdWFAY4j/YvKqzWuDiP3b9gt2w7eQ/h4px/iaU5D/h05y8yATkP02CN6RRgeQ/aLPqc7WV5D/0bcFSXcDkP0AS9u0kIuQ/Vpkprb+l4z9RZoNMMnLgP0flJmpp7uM/Ke0NvjCZ3D/zdoTTgpfhP/zepj/7keQ/Y7ml1ZA44T+g/UgRGdblPy4gtB6+TOI/smSO5V314D8SpFLsaBzbP7FvJxHhX9c/XmQCfo0k0T+0k8FR8urdP1QcB14td9s/2qm53GCo5T/p1JXP8rzgP7cqieyDrOE/gT0mUprN5T+ZnrDEA8rlP1Q4glSKHeY/yv55GjDI4D/dfCO6Z13jP6j91k6UhOc/MZkqGJVU4T9Hxmrz/6rkP+vJ/KNvUuE/i90+q8yU2j/dtBmnIargP/D49q5B3+E/BRbAlIGD4T81Cklm9Q7jPznv/+OEieI/Jo3ROqoa5j9lq8spATHlP8ajVMITeuM/hjdr8L6q4j9+calKW1zjPxPwayQJQuI/jSRBuAKK4z9X7gVmhSLmPyarItxkVN4/iEhNu5hm3z8X8DLDRlneP6iq0EAsG+Q/dhppqbyd4T/s+C8QBEjkP1+1MuGX+uA/EqRS7Ggc4j+BlNi1vV3lP4yiBz4Gq+I/ujE9YYkH5T89fm/Tn/3hPyr+74gK1eM/bAVNS6yM4T9O02cHXFfjP4rkK4GU2OU/N1DgnXz65T+ZZrrXSf3nPzYiGAeXjuE/sky/RLz15T+Y2lIHeb3kPzW0AdiAiOA/3Qw34PPD4T/vVMA9zx/jP5gvL8A+OuQ/7/54r1qZ3j+oixTKwlflP6MjufyH9N8/5rD7juGx5D+4lPPF3ovgPwIpsWt7O+A/JPJdSl0y5D8MPs3Ji8zkP9jviXWq/OM/Afp9/+ZF5D9KQiJt40/fP9k9eVioNeQ/rdug9ls75D9bYfpeQ3DjP2vSbYlc8OQ/c0wW9x+Z4z/eyDzyBwPkPwxXB0DcVeA/bvdynxwF5T9Z4Cu69RrhP7GH9rGC394/amrZWl8k5T9agSGrWz3gP4MxIlFo2eU/w0ZZv5mY5T8Wa7jIPV3mP273cp8cBeQ/51QyAFRx5T8vUFJgAUzfP83IIHcRJuY/s3ixMERO4j/goSjQJ3LkP9JUT+Yf/eU/X2Is0y8R4j8gls0cktrjP3Xo9Lwbi+M/m3KFd7kI5T+3RC44gz/nPyFWf4RhQOQ/bFuU2SAT5j8WaHdIMcDgP0Fn0qbqHuY/BabTug3q4j9HWipvR7jiPyybOSS1UOE/MxgjEoUW4z9oWmJlNHLkP8AEbt3N0+Q/tB8pIsOq4z8LXYlA9Q/kPxvzOuKQDeM/3C4012mk4j/K3ef4aPHlP61QpPs5heI/eeblsPuO4z9WRE30+ajlP7BXWHA/4OU/Hm6HhsWo4j8QdR+A1CbdPxYUBmUaTeU/mNwostZQ4j/t2AjE63rjPzAS2nIuReI/pZ4FobyP4z/XT/9Z82PgP8Ixy54ENuM/bY/ecB+55D+iCKnb2dfgP095dCMsKuU/F/TeGAIA5z+qfqXz4VnbP1kTC3xFt+Y/0v9yLVoA4j+6+NueILHhP4MY6NoX0OM/rptSXish5T9YHqSnyCHdPxGq1OyBVuQ/12g50ENt4D/129eBc8bhPyDRBIpYROQ/EoPAyqFF4j/BHhMpzebjPyyDaoMT0eA/jC0EOShh5D+bBG9IowLiP6LQsu4fC+A/qFZfXRUo5T9V98jmqnnmP96OcFrwouA/sryrHjCP5j8jumddo2XmP+xph78m6+Q/qmVrfZHQ4z8eN/xuuuXlPxhCzvv/uOY/jiPW4lOA5T+MZI9QMyTkPy7+tidIbOQ/e4hGdxC74z+IKvwZ3qziP7slOWBXE+Q/4UIewY2U5T/iOVtAaD3hP//sR4rIsOE/U67wLhfx4j+I2GDhJE3lP4+lD11Q398/UYcVbvlI3T9MxFvn367jP8WM8PYgBOQ/RkWcTrJV5T/ecvVjk/zbP2B0eXO41uU/PrMkQE2t4D/tZkY/Gk7dP5S8OseA7N0/oOHNGryv3T8SLuQR3EjiP8gG0sWmFeU/6bga2ZWW5T/WcJF7urrkP5UsJ6H0heQ/JCcTtwri5D+5UWStodTkP8DqyJHOQOA/+ptQiIDD5D86W0BoPXzePzfF46JaRN4/ifAvgsZM5j/NXODyWLPiP3IW9rTD3+E/0LhwICSL5T9wsDcxJCfjP9jTDn9N1uI/8u7IWG3+5T8/jBAebZzgP/iov15hQeM/1GTG20ov4j8Iza57K5LhPy8zbJT1m+M/MC3qk9xh4T9JEK6AQj3oP26l12ZjpeQ/MhzPZ0C94D8mqOFbWDfjP+4ljdE6KuQ/i6ceaXDb4z9qoWRyamfjPx3HD5VGzOU/EJTb9j3q5z8FhxdEpCbkP7yt9NpsLOI/cTlegehJ4D+jk6XW+43VP+QvLeqT3Ng/1LZhFASP2T9+AihGlszpP5+PMuIC0OA/5IOezarP5j/h7NYyGY7jP3L5D+m3r+I/z57L1CR44T/YSX1Z2qnfP/g3aK8+HuM/s+veisSE4z/cLF4sDBHhP4zzN6EQAeM/BmNEotCy4j+LUGwFTUviP2dEaW/wBeQ/miSWlLvP4j/D8BExJRLkP3faGhGMA+I/vth78UX75T9/ox03/O7iP0/o9SfxueQ/AmISLuSR5T/TE5Z4QNnmP1g7inPUUec//p3t0Rvu4j/zGyYapGDkP4i6D0Bqk+E/ym37HvVX4j9SX5Z2ai7iP5aVJqWgW+U/6kFBKVq55T/O/dXjvtXZP6ewUkFF1eU/8ItLVdri4T9V2uIan0njPxRf7SjO0eM/x/Xv+szZ4j/QZP88DZjlP950yw7xj+E/KCmwAKYM4D+2gxH7BFDfP7TonQq4590/W+m12VgJ5T/AdjBin4DnP0brqGqCqOM/Brr2BfTC5T8SoKaWrXXiPzi/YaJBCuY/xHdi1ouh2D+I9rGC34bYP+KS407p4OE/h4xHqYSn5T8qVaLsLWXkP+6XT1YMV9s/hGIraFpi5z/3d7ZHb7jfP9KsbB/ylt8/K0t0llkE4z9sdw/QfTnhPz0pkxraAOU/OQmlL4Sc5j9pVrYPecvkP+FfBI2ZROM/fnGpSlvc5T9HkEqxo/HjPycUIuAQquI/cegtHt5z2j/cKoiBrn3eP82QKopX2eE/lSh7Sznf5T8vNq0UArnhP5RpNLkYA+I/YTdsW5TZ5T86BfnZyHXgP+5AnfLoRuA/NdHno4w44D+IZwkyAirlPziie9Y1WuM/f/s6cM6I4j+JtI0/UdndP1iR0QFJ2Nw/cQUU6umj4z/1Se6wiUzjPwe2SrA4HOQ/9KW3PxcN3T8W9x+ZDh3iP3YYk/5eCuE/zSGphZLJ4j/uPVxy3KnlP5P+XgoPmuE/IT1FDhG34T9do+VAD7XmP6pm1lJA2t0/rwW9N4YA3z+EZAETuHXkPwWHF0SkJuM/Obh0zHnG5j8hXAGFevrhP0MEHEKVGuM/LQd6qG3D5T/eH+9VK5PkPzjaccPvJuQ/IhtIF5tW1z8H7GrylNXlP3Vat0Htt+U/kUdwI2UL5z8xJv29FJ7hP+56aYoAJ+U/sAPnjCjt4j8fLc4Y5gTnP6zmOSLfpd0/Jh3lYDaB4j//I9Oh03PiP8FSXcDLjOE/V12Hakoy4z9LkBFQ4QjjP+Cgvfp4aOY/aw4QzNHj4T/nw7MEGYHnPymzQSYZOeU/JQNAFTdu4j/NrRBWYwnjPxvzOuKQDeQ/85Nqn47H3T+4zr9d9uvmP+gSDr3FQ+A/RiI0go1r5D/VeyqnPSXjP+uLhLacS+U/0SAFTyHX4z/YKVYNwlzlP5/kDpvITOM/uatXkdGB5D8UJSGRtvHdP3HK3Hwjutw/bFuU2SCT2z8GS3UBLzPcP2Wp9X6jnec/Awr19BH42z9T6Sec3VrmP03Ar5EkCOU/Yr68APto6D+N1Hsqp73nP6pJ8IY0quI/KV36l6Qy3j8aw5ygTY7nPwqDMo0mF+U/vwrw3eYN5T82qz5XW7HnPwwBwLFnT+I/f/YjRWRY5D8x6lp7n6rfP+fG9IQlHt0/Hsakv5dC5j9DA7Fs5pDiP/NYMzLIXeU/4uR+h6JA4j/c8/xpozriPyv6QzNPruY/Jhqk4Cnk1j+mKJfGL7zePxHhXwSNmeY//iyWIvlK4z+9jc2OVF/lP9xnlZnS+uM/RZ25h4Rv4D9kldIzvcTgPwdDHVa4ZeY/8L4qFyp/4T9t5pDUQsncPww9YvTcQuQ/JgD/lCpR4j8vMCsU6X7ePxu8r8qFyuY/ysNCrWne5T/ct1onLsfkP/9eCg+a3eA/16NwPQpX4z/ZQ/tYwW/kP72OOGQD6eI/+nspPGh25z9vvaYHBaXlP99qnbgcr+M/LEgzFk3n5D+Q9dTqqyvkP3dkrDb/L+g/aFiMutZe5j9B740hADjjP8o1BTI7i9s/qDY4Ef1a4z+GcqJdhZTkPwoS290D9OI/ZkrrbwlA4j9pcFtbeF7YP5TeN772zOQ/5Nwm3Ctz5T+PqbuyCwbdPxKkUuxoHOU/F/Ayw0bZ4j//If32deDhPyyDaoMTUeE/qKlla32R5T9UNqypLIrkPxaHM7+aA+M/P8bctYT84j8fTfVk/tHjP4f+CS5W1OE/4978homG5j9YOEnzx7TjP72OOGQD6eI/u0bLgR5q5D+hSWJJuXvkP6c7TzxnC+M/rtf0oKAU5D/Ca5c2HBbmP4pyafzCq+U/nWSryymB4D+6MT1hiQfiP8BBe/XxUOI/jV4NUBrq5j8UIApmTEHgP2MMrOP4IeE/Ab7bvHHS4T9ZTkLpC6HjP23IPzOID+Y//Io1XOQe4j9lqfV+ox3hPyeG5GTi1uM/nMO12sNe4T+3KR4X1aLiP2gkQiPYOOM/i8QENXwL5j/jw+xl22nlPwVSYtf2dtY/avrsgOuK3j8OLh1znrHeP8R3YtaLIeQ/wr0yb9V14D9SKXY0DvXdP4iDhChfUOU/MCk+PiG74T82P/7Soj7lPx2u1R72QuU/J77aUZwj4j9TBaOSOgHhP13hXS7iO+I/9wZfmEyV4T9VGFsIctDiP3vct1onruA/KbSs+8dC5T+Rfvs6cE7kP918I7pn3eM/dHy0OGMY5j8KEtvdA/TgP/UR+MPP/+Q/cAnAP6VK4j+RR3AjZYvjP/cF9MKdi+E/vr1r0Jfe5T/nVDIAVHHmP4veqYB7nuM/SicSTDWz5D8HmWTkLGziP8xh9x3D4+E/sHCS5o9p4z+RDaSLTSvcPwgAjj17LuY/eh1xyAbS3z9weEFEalrkP2pPyTmxh+Y/qU2c3O/Q4j81JVmHoyvjP+sfRDLkWOM/VMiVehaE4D+gbwuW6oLhPz7rGi0H+uA/toR80LNZ5D8dAdwsXiziP8Kk+PiEbOI/bVhTWRR23T++9sySADXSP6g5eZEJ+Ng/zlFHx9VI5T9JoSx8fS3iP9ZvJqYLseY/jSYXY2Cd5z8DzHwHP3HiP5EqildZW+I/RfZBlgUT5j941JgQc8nlP6YKRiV1guU/521sdqR64z/2CaAYWTLjP2UBE7h1N+c/TTCca5ih5j9y+KQTCabkP9R9AFKbuOI/1lQWhV0U5D+nJVZGI5/mP9fCLLRzGuc/93e2R2+45D+z0Tk/xXHdP6yRXWkZKeU/8DUEx2Xc5j/G3/YEie3kP/Rvl/26U+U/TWiSWFJu5z9aDYl7LP3mP61sH/KWq9Y/COV9HM2R5j+X/iWpTDHkP0GC4seYO+M/FAfQ7/u34z/sFKsGYW7eP8UDyqZcYeg/aRoUzQNY4T8Qy2YOSS3fP2r3qwDf7eE/r3d/vFct4j+z8PW1LrXmP8GnOXmRCdY/ZyrEI/Hy1T8PCkrRyj3gPzRN2H4yRug/QgddwqG34T+zmq4nui7gP4szhjlBG+M/FwyuuaN/5T9ENSVZh6PhP65i8ZvCyuI/l/26050n5T8xmpXtQ17iP67TSEvlbeI/ymsldJfE4j/USEvl7QjkP/eTMT7MXuc/borHRbUI5z9hb2JITqbmP4Y8ghspW+U/VkRN9Pko5j+k3lM57SnhP4F38umxLeM/l3DoLR7e3z8HswkwLH/jP1zknq7u2OM/XOSeru7Y4z9968N6o1bnP0/MejGUk+I/EOfhBKbT4z9MHHkgskjjP7SOqiaIuuE/mj+mtWns4j/gnudPG9XkP2Wp9X6jHeM/TIv6JHfY4z/Ad5s3TgrfP43sSstIPeQ/NQwfEVMi4T8VH5+QnbfjP81y2eicH+E/FQFO7+L95z8jEoWWdX/hPyGSIcfWM94/YTPABdky5T8GuYswRTnmP6lOB7KeWuk/AoI5evze3T+rItxkVJniPwNf0a3X9N8/nprLDYY62D/MYfcdw2PiP91gqMMKt+M/jq7S3XW25D8ebLHbZxXhP0UQ5+EEJuU/KZXwhF7/4z+Yp3NFKaHgP6DDfHkB9uM/Fi8Whshp4j/NdoU+WEbjP8R5OIHpNOM/KQZINIGi4z8X1/hM9s/kP0nXTL7Z5uA/pOL/jqhQ3z/+tbxyvW3hP2LZzCGpBeg/uHh4z4Hl4z9iZTTyeUXlP57OFaWEYN8/fF9cqtKW5j99I7pnXSPlPzPiAtAoXeI/o3kAi/z64j8/HvruVhbiP6Nbr+lBQeA/Hch6avXV5T8JFoczv5roP1Hex9Ec2eg/pBgg0QQK4z80Z33KMVnkP2N9A5MbReU/YM0Bgjl64z9jfJi9bDvTP4178xsmmuE/DOiFOxdG4j9AEvbtJKLhPzy+vWvQl+Q/Zk0s8BXd5j8O+WcG8YHkP11TILOz6Ng/E/HW+bfL2D+GWWjnNIvlPwxaSMDo8t4/FjHsMCZ94T+vCtRi8DDjP6DBps6j4uE/u+8YHvvZ5T/s20lE+JfpP7rzxHO2AOg/7kPecvXj5j9R9SudD0/kP1DG+DB72eU/RSxi2GHM4j/rU47J4n7hPxa9UwH3POU/eawZGeSu4D/SN2kaFM3jP/aaHhSUouU/dZMYBFYO4D9zuiwmNp/hP7XGoBNCB+I/U5W2uMZn4z+kjSPW4tPjPxB1H4DUJuQ/Un3nFyXo4D8hlPdxNMfiP4ARNGYS9eQ/UADFyJI52T/ajNMQVfjoP4FCPX0Efuo/4bVLGw5L6j9lFwyuuaPkP5JB7iJMUeU/ceKrHcW54D8JFRxeEBHiP4KN69/1meI/ejnsvmP45D/OGOYEbXLlP5JdaRmpd+Y/SwSqfxDJ5D+dDflnBvHiP7J/ngYMkuM/08H6P4d54T97MCk+PiHkP3swKT4+IeQ/H4XrUbge4j83xHjNq7rmPwT/W8mODeY/OpShKqbS5j90CvKzkeviP953DI/9rOU/V3bB4Jo74T8B9tGpK5/fP9FY+zvbI+A/0NIVbCOe3z8jvD0IAfnkP0ph3uNME+E/TmIQWDm05z8/VvDbEOPhP3wOLEfIwOM/r2Ab8WS35T/gLCXLSSjmP9ds5SX/k+Y/P/7Soj7J3z9ffxKfO8HjPwtFup9TEOI/LjnulA5W4j9VFRqIZbPgP7FtUWaDTOM/fXkB9tEp4T9vfsNEgxTfP3ke3J21W+U/5nYv98lR5T9tV+iDZWzePx5SDJBoguY/x2Xc1EBz4z9LIvsgy4LiP2yTisbaX+A/fsSvWMNF4D93SDFAognjP0d1OpD1VOA/I9xkVBlG5D+h9ls7UZLiPzp6/N6mP+A/n8coz7wc2D98mpMXmYDnP5OmQdE8AOA/XKs97IWC5j9weawZGeThP3msGRnkLsw/tklFY+3v3z/p76XwoFngP7QglPdxNOg/86/llett4T9oeLMG76vmP8ct5ueGpuQ/HXIz3IDP5D8E/1vJjg3lPzuOHyqNmOA/YOemzTiN4T8+eO3ShkPkP4vgfyvZseQ/MT83NGWn4D/ZzCGphRLiPzUIc7uXe+Q/7pOjAFEw4D/dJXFWRE3eP+AO1CmPbuE/g1K0ci8w6T+SzVXzHJHaP0SKARJNIOA/6znpfePr4j8f963WiUvlPyPzyB8MPOU/3LxxUph35T/ltKfknFjmP8gKfhtiPOM/FHe8yW/R3z80vFmD99XhPyRFZFjFm+U/UkfH1cgu5T8SoKaWrfXcPztzDwnf+94/Gt8Xl6o04j8GSgosgKnkP5aUu8/xUeI/kuumlNdK4j/XL9gN2xbjP/+R6dDp+eE/QzwSL09n4j/dmJ6wxAPjP5fK2xFOC+Q/pIriVdY23j8/HY8ZqIzkPx3nNuFemeU/EYqtoGmJ4T/M0HgiiHPiP9sYO+ElOOQ/L6UuGcfI5D/UKvpDM0/hPw8Ni1HX2uA/eeV620yF4z8LtDukGCDmP0ax3NJqyOY/2xg74SU44z8IdZFCWfjnP4HOpE3Vveg/gA7z5QXY5z+GkzR/TGvUP42z6QjgZtM/E38UdeYe0z9PWyOCcXDTPzD186YiFdk/0LcFS3WB5D9LWBtjJ7zeP6d2hqkt9eQ/PGnhsgob4T9W0opvKPzjPxXkZyPXzeM/sMka9RCN5j8TRUjdzr7hPxHjNa/qrOI/FqdaC7PQ5D9mSYCaWjbkP41Cklm9Q+M/gEQTKGKR4T/k27sGfengP47LuKmB5uA/o+VAD7Vt4D8H0VrR5jjgP5eRek/lNOQ/YeKPos5c4T+W7UPecvXfP9BCAkaXt+E/B7e1hecl4j+PcFrwoq/hP1hVL7/TZOY/x4SYS6o25j9vvDsyVhvjP3L9uz5z1uI/beNPVDYs5j/z5QXYRyfmP0Q1JVmHo+Q/IY/gRsqW4z+MTSuFQC7hP2a+g584gN8/N8R4zau64T8tX5fhP93hPx3J5T+k3+Q/GqTgKeTK5T8s1JrmHSfiP8zTuaKUEOQ/9s5oq5LI5j8ziA/s+C/hP+asTzkmC+g/kXu6umMx6D80D2CRXz/cPybfbHNjeuY/qgt4mWEj4j8Qk3Ahj2DlPwAce/Zcpt8/r8xbdR2q4D9xyXGndDDkP/0ubM1WXuE/3q8CfLd54j/r5AzFHW/iP/dXj/tW6+Q/iPTb14Fz4j/vObAcIYPjP+/k02NbBuM/1V5E2zH14j82BTI7i97fP9wvn6wYruY/KIBiZMmc5D/Ztb3dkpzjP8fyrnrAvOA/eO3ShsPS5T/4/3HChFHjP4W0xqATQuE/W3ufqkKD4z+PxMvTuSLkP7sNar+1k+M/UmStodTe4T9W8xyR79LlP+oI4GbxYts/8ItLVdpi5z9EFmniHWDnP2N9A5MbxeI/vY44ZAPp2j+69ZoeFBThP2ouNxjqMOI/sTBETl/P5T9ljA+zl+3lPzeq04GsJ+I/Dtqrj4e+3j+vfQG9cOfkP6fpswOuq+E/Q48YPbdQ4j/iAzv+CwTiPxdlNsgko+Q/2jf3V4/75D91kNeDSfHgP/IMGvonuOQ/aJJYUu4+5T/IREqzeRzaP/lM9s/TgOY/euI5W0Bo2D8CuFm8WBjiPzLLngQ2Z+U/64uEtpzL5D8o0ZLH03LlP2fV52or9uU/TaCIRQw75T+dvp6vWa7kP2pnmNpSh+Q/geuKGeFt5D+xU6wahLnjP21X6INl7OQ/53Pudr005j+xqIjTSbbjPy/3yVGAKOU/MV9egH103z9uUtFY+zveP18M5US7iuQ/LWACt+5m5j/coWEx6lrjP2ba/pWVJuM/ZOWXwRiR5j+xpUdTPZnkP7JiuDoAYuI/eEFEatrF4T/7IqEt59LhPwu1pnnHqeQ/YcWp1sIs5D/aA63AkNXlP6hXyjLEsd8/3QvMCkU64j8ykdJsHofmP1+3CIz1DeM/J6Wg20sa3z9oPBHEeTjfP83qHW6HhuQ/9kArMGT14T9L6gQ0EbblP58B9WbUfOM/dcjNcAM+3T/LZ3ke3J3mP0ioGVJF8eY/q15+p8mM4T9cVmEzwAXiP3Tudr00xeM/iPNwAtNp5j9lARO4dTfmPxk6dlCJ6+M/zZVBtcEJ5D+q8Gd4s4bkP5kSSfQyit0/k45yMJsA3z9Dklm9w+3cPy2T4Xg+A94/uVM6WP/n2z+PxTapaCzlPx3jiouj8uE/xqS/l8KD3z/9hokGKXjdP8LCSZo/JuY/dELooEs45D/fF5eqtEXgP6GBWDZzSOI/xjGSPUJN5z+r7Sb4punnPw/W/znMl9g/cAhVavZA4j9hNgGG5U/jP2VQbXAi+uM/eTwtP3CV5D8BbhYvFgbjP7FuvDsy1uY/s+xJYHMO5T/tfaoKDcTlP/1LUpliDuU/IGPuWkI+5z+fru5YbJPlPxWpMLYQZOM/cm4T7pV55T9Xem02VuLkP2Fu93KfHOQ/7C+7Jw+L4j/WbyamC7HeP+LmVDIA1OU/9phIaTYP5D9V2uIan0niP9jTDn9N1uM/8s8M4gO74j/B4nDmV3PlP91AgXfyaeA/2SYVjbW/3z/ajT7mAwLhP6CNXDelvOU/RS44g7/f4z/99nXgnBHfP2NkyRzLO+Q/IehoVUu65D/URQpl4WvlP1WkwthCEOU/170ViQnq5D+NtFTejvDkP9uGURA8vuQ/nb6er1ku4D+xbVFmg8zmP2x2pPrOL+Q/nbryWZ6H5z92OLpKd9fhP69gG/Fkt+I/L/zgfOrY4D9D5zV2ierjPyrhCb3+pOM/4j/dQIF34z+o/kEkQw7lP7k5lQwAVeY/BaVo5V5g5j/gERWqmwvgP0ut9xvtOOQ/sWoQ5nav4z/ZImk3+pjkPxb4im69puQ/Y2LzcW2o2T8TRUjdzr7jP9dQai+ibeI/iPGaV3XW4T/Ad5s3ToriP2k7pu7KLuQ/VDcXf9sT3z+t3XahuU7bP554zhYQWuY/Y7SOqiaI5D+PGD230BXkPxHfiVkvhuU/YDqt26D24z8MOiF00KXjPzVG66hqgtw/URVT6Scc4T9keOxnsRTiP5wU5j3ONN8/z2irksi+4T/XMa64OCriP23jT1Q2rOI/Yd7jTBM24z9jmBO0yeHkP/kP6bevg+E/r0Sg+gcR4T+5UPnX8krnP8TpJFtdTuA/tteC3hvD5j9xAtNp3QbdPwK8BRIUP+E/FMyYgjXO3j9/pl63CAzkP/KaV3VWi+E/zZVBtcGJ4j+CVIodjcPiPxJOC170leI/v0NRoE9k5j9V98jmqnngP2jNj7+0qOY/ajF4mPZN6D/+nlinyvfmP/j+Bu3Vx+I/LBA9KZOa4T8ip6/naxbjP1AYlGk0OeA/zzEge7174z8t6L0xBADmP1OT4A1pVOU/knajj/mA4D9x4xbzc8PkP3hi1ouhHOQ/i+B/K9kx5D9qLjcY6jDnP0pDjUKS2eM/yzDuBtFa5z/IsfUM4RjjP9mVlpF6T+I/zLOSVnxD3z+gGFkyx3LlPy4e3nNgueQ/pKfIIeJm5T8J4dHGEWvjP38xW7IqQuU/GlHaG3xh4D+x+E1hpYLiP6jGSzeJweU/lFD6Qsj54T+SdTi6SvflP/j9mxcnvuM/eQJhp1g15j9WnkDYKdbiP3oZxXJLq+M/cVrwoq8g4j8NxohEoWXlP8SzBBkBFeQ/cRx4tdyZ4j81KQXdXtLjP6xT5XtGIuY/3BK54Az+4z+Rnbex2RHmP+5D3nL14+I/lq/L8J/u4z+DNc6mIwDkPx8TKc3mceQ/w2LUtfa+5D+aJQFqalngP530vvG1Z+M/XHfzVIdc5T87xD9s6dHlP2wE4nX9AuU/MT83NGUn5j8bKsb5m1DiP/uxSX7EL+g/3+F2aFiM4T/35cx2hT7lP/rPmh9/aeU/CTiEKjX75D91x2KbVDTlP5fJcDyfgeQ/vqHw2Tq44z81XU90XXjjPw3k2eVbn+Y/j8cMVMa/4T/cniCx3T3hP2Glgoqq3+U/Vg+Yh0z55T/ePUD35UzkP2CQ9GkVfeM/EvbtJCJ84T8L68a7I+PmP8BC5sqg2uQ/V3xD4bP15D8wgPChRMvlP00VjErqhOQ/Y3st6L0x5D/8j0yHTk/kPx/ZXDXPEeI/lN43vvbM2j97ouvCD87kP+SHSiNm9t0/ZtzUQPO55j9wIvq19dPhPwTJO4cyVOM/X+0ozlFH5j/PgeUIGcjkP5IE4QooVOE/rORjd4ES4j9HO2743fTjP23lJf+TP+c/j3IwmwDD5D/YnlkSoKbiP8hESrN5nOc/6BN5knTN3T/d71AU6BPjP6io+pXOh+M/eJrMeFtp4D/PMLWlDnLlP9z10hQBzuU/G9R+ayfK5j/OcAM+PwznP5Kx2vy/6uI/YASNmUQ94z+sqSwKuyjjP3kDzHwHv+M/5nlwd9bu5D/zcW2oGOfYP2Yxsfm4tuY/Br6iW69p5T9mwcQfRR3gP24VxEDXPuY/sW1RZoNM3D+wPEhPkUPnPxYyVwbVhug/rOEi93R14T/RIXAk0GDjP90HILWJk98/fCb752nA5T+ZoIZvYd3jP1ch5SfVvuM/iNUfYRgw5T8Er5Y7M0HjP4gq/BnerOc/P+PCgZAs5j890XXhB2fhP3jsZ7EUyd4/RpiiXBq/5D8s0y8Rbx3gP4bI6ev5mt4/hsjp6/ma3j+WtOIbCp/jP0lpNo/D4OM/8fW1LjVC5D+toj808+TiPwA7N23G6eM/ie/ErBdD4j9PkUPEzanmPwqEnWLVoOI/y4Y1lUXh4z907QvohbvkP+gU5Gcj1+E/d0oH6/+c4T/t1jIZjufoPxxDAHDsWeg/0bGDSlzH4z+YUSy3tBrgPwGiYMYUrOI/xeI3hZUK4z9PBdzz/GniP0G4Agr1dOA/r+yCwTX34D/nxvSEJR7dP7NeDOVEu+M/ZJC7CFMU4z9Yj/tW68TiPzGale1D3uU/K4VALnFk5D+a6V4n9WXjPx/3rdaJy+I/beF5qdgY4T87Oq5GdiXhP+KUuflGdN0/CwqDMo2m5z/IRbWIKCbmP3VVoBaDB+E/Xw1QGmqU4D+Q9j/AWjXnP2jQ0D/BReU/H4Kq0auB4z9Kzok9tA/jP1Tm5hvRveQ/DDuMSX+v5D9h+l5DcFzjP+BjsOJU6+M/nRA66BIO6D8hzsMJTCflPytNSkG3l+U/fnIUIApm5D/A6siRzsDhP3NjesISD+Q/8u8zLhyI4D9HPUSjO4jmP32utmJ/2d4/gxQ8hVyp5T/JWdjTDv/mP3+IDRZO0uQ/9rTDX5M14j+lZaTeU7njPyMuAI3SJeU/PnsuU5Pg5D9R24ZREDzeP3OFd7mI7+A/tMu3Pqw34z8lWBzO/GreP7uAlxk2SuA/LNMvEW8d5j8Q7PgvEITgP3cxzXSvk+Q/GLSQgNFl5T/n3y77dafjP5TZIJOMnOU/ejcWFAbl5j+4lV6bjRXgP+8fC9EhcOI/wD3PnzYq5z8Ur7K2KZ7mP8aKGkzDcOY/RWYucHks6D/kFB3J5b/kP4ZzDTM0nuQ/O3DOiNLe5D8oRpbMsTzmP1w4EJIFTOY/XDgQkgVM5j80n3O36yXlP+cb0T3rGuY/S1zHuOJi5T/BUl3Ay4zgP2g9fJkowuA/rIvbaADv4D84vCAiNe3cP3WOAdnr3eM/TyLCvwga4z/VPEfkuxTmP4AQyZBj698/RE30+Sij5D9PO/w1WaPdP95YUBiUaeQ/Bdzz/Gmj5D94CyQofgziP1d3LLZJReI/FvcfmQ6d4j94l4v4TkzoPzfF46JaROM/dqVlpN7T4T+vQspPqn3jP2+Cb5o+u+g/3/lFCfoL6D9wd9Zuu1DoP/mekQiN4OY/R6zFpwAY5T9Tzhd7Lz7jPzlCBvLs8t8/CFbVy+804z/4bYjxmlfaPx8tzhjmhOY/+1xtxf4y5j+SXP5D+u3hPwtdiUD1D9o/5PVgUnx86D9xdQDEXb3hP7ND/MOWnuE/bhea6zRS5T9J1uHoKt3hP8kgdxGmqOI/YajDCrd85z/hQEgWMIHhPxJMNbOWguU/PpKSHoZW4D8VxhaCHJThP4SCUrRyL+Q//iyWIvnK4z/h7NYyGY7hPyMw1jcwueI/MX4a9+a35z/PMLWlDvLmP7/wSpLn+uU/wqT4+ITs5j9xzLIngc3YPwQ91LZhlOM/aVVLOspB4T88vVKWIQ7nP1lrKLUXUeM/d2hYjLrW4z/9MEJ4tPHkP1KdDmQ9NeM/nlxTILOz4j+GBIwubw7kP/z9YrZk1eM/xXJLqyFx4j9ZGY18XvHXP/Tg7qzddt0/EvdY+tAF4T+EZ0KTxJLiP7WLaaZ7HeY/d4U+WMYG4z8ChA8lWvLkPw0c0NIV7OI/wjHLngQ24z9QiesYV9zhP588LNSa5uI/IQVPIVfq4D+rX+l8eJbkP0yMZfol4uM/ehubHak+5T8T0hqDTgjlP5/kDpvIzOY/4+E9B5Yj4z8YCtgORuziPxvYKsHi8OM/k+UklL4Q5z+7Qh8sY0PfP/61vHK97eQ/MdP2r6y04j8GhUGZRpPjP38SnzvBfuQ/up7ouvAD5D+etdsuNNfePzo7GRwlL+U/eQWiJ2XS4j9z9zk+WpziPwH8U6pEWeI/siyY+KOo4T9do+VADzXkP5zB3y9my+Q/iUFg5dCi4j/APjp15TPiPxvzOuKQjeg/UP2DSIYc4j+1G33MBwTiP1653jZTIdw/P5C8cyhD5D9Fm+PcJtzjPxE10eejDOA/D0OrkzMU4z8OZhNgWP7iPz+rzJTWX+Q/OSuiJvp84z/B5EaRtQblP1ZinpW0YuI/+PwwQng04T+wIM1YNB3lP99qnbgcr+Y/fuGVJM/13j80uoPYmULePyzVBbzMMOU/btqM0xBV4D8bR6zFp4DhPwsOL4hIzeU/p86j4v+O5D/eBN80ffbkP7G/7J48LOQ/2nOZmgTv4j8x7DAm/b3kPyBig4WTNOY/U8+CUN7H4T/k84qnHmnjP/7RN2kalOI/qtbCLLTz5j+q1y0CY33mPzxp4bIKm+I/FFlrKLUX3z/GwDqOH6rlP1vuzATDueI/SDKrd7gd3z9jY15HHDLlPxTLLa2GxOI//S0B+KdU5j/ByMuaWGDjPxHg9C7ej+M/TGw+rg2V4j9LkBFQ4YjgP9LFppVCoOA/RDNPrikQ4z8cCwqDMo3jP1DkSdI1k+E/hCo1e6AV4z/V0AZgAyLlP/zkKEAUzOI/CVOUS+MX5z+qEI/Ey9PjPzPDRlm/meU/8KSFyyrs5D/LSpNS0O3jPxIVqpuLP+M/NNk/TwOG5D/5oj1eSAfgPzjZBu5And0/nYAmwoYn5D/tKw/SU2TjP/0v16IF6OM/SPq0iv5Q5j/4TzdQ4B3jP2a/7nTnieU/NXo1QGmo5D/wNQTHZdzgP7RZ9bnaiuY/Y3st6L0x5T+LG7eYnxviP88SZARUuOI/bOo8Kv7v3j/knq7uWGzfP+FGyhZJu+I/avrsgOsK4z+cwd8vZkvpPyBgrdo1Ido/N/qYDwh05T9dUUoIVtXXP/YLdsO2Rd4/uTgqN1FL1z9wsg3cgTrlPymWW1oNCeI/RbjJqDIM4j88FXDP86faP1HB4QURqeQ/YfvJGB9m3D+VZvM4DGbgPyZRL/g0J+A/Bi6PNSOD3D8Mdy6M9CLkP9MwfERMCeE/6zU9KCjF4D+WXpuNlRjoP6inj8AffuY/MzUJ3pDG5j+uf9dnzvriP637x0J0COA/Vi3pKAez5D8SonxBCwniP3zysFBrmtw/0h3EzhQ63j96VPzfEZXhP3nm5bD7DuM/WrqCbcST4T8PCkrRyj3hP1aA7zZvHOA/kZp2Mc304T8g1bDfE2vjP+9TVWgglt0/ey++aI+X4D/wpIXLKuzkPzdPdcjN8OQ/LEfIQJ5d4z/TEcDN4sXgP4apLXWQV+I/YFrUJ7lD4z+T36KTpdbjP/chb7n6seQ/FqJD4Eig5z/TiJl9HiPnP1hYcD/gAeQ/msx4W+k14z+ca5ih8UTdP/JdSl0yjuM/e5+qQgMx5z/4xaUqbXHfP3/aqE4HsuE/LzArFOn+5j+mR1M9mX/dP9eGinH+pug/t+wQ/7Cl4j9krgyqDU7iPwot6/6xkOU/26LMBpnk5D+lLhnHSHblPzdxcr9D0eY/bmk1JO6x2z/LLhhcc8fgP+KS407p4OI/BAKdSZsq4T/Sp1X0h+bjP8IwYMlVrOI/OzQsRl1r5D+fVzz1SIPgP76kMVpH1eE/Ru1+FeC74j+fy9QkeMPjP6hRSDKr9+Q/FQFO7+J94D8hBORLqGDgPzo/xXHgVeQ/FmniHeDJ4z9bXU4JiMnjP3TrNT0oKOA/mDEFa5xN5j/ZQpCDEmbiP6t5jsh3Kd8/4xdeSfLc4T+d9/9xwgTlP7x6FRkdkOI/YRdFD3wM2z8826M33EfaP2CwG7YtSuE/Mo6R7BFq4j9pc5zbhPviP0ljtI6qpuI/kNlZ9E6F5D+4dMx5xr7mPwnAP6VKlOI/tyqJ7IOs4j9cABqlS3/hP14R/G8lu+Q/qAGDpE8r4j9mZmZmZmbkP8H9gAcGEOM/u2OxTSoa3z+KP4o6cw/cP8to5POKp+M/uK0tPC8V4D//eK9amXDhP9EksaTcfeI/OSnMe5zp5z+yg0pcx7jmPzfeHRmrzeA/3iBaK9qc5T+RQln4+lroP8yWrIpwk+I/lSu8y0V84j8qxY7Gof7iPx+F61G4Ht4/uW3fo/765D85RUdy+Y/nP09Xdyy2Sek/ZHjsZ7EU6D/fisQENXzoPzoeM1AZ/+I/prT+lgD84z95rYTukrjiP7moFhHFZOQ/7kEIyJdQ2T/qWKX0TC/XP9kmFY21P+A/bjXrjO+L4D+KlGbzOIzgP5c5XRYTm+M//dzQlJ1+4j9YVMTpJFvkP/Tfg9cu7eU/LUFGQIWj5j94DI/9LJbnPzeJQWDl0Nw/lYJuL2mM5T/Wx0Pf3crfP/3bZb/udOY/IchBCTNt5j/ABkSIK2feP/ZCAdvBCOQ/ymsldJfE5T8S2JyDZ0LgP2x55XrbzOM/2a873Xli5j/Bpzl5kYnnPy0nofSFkOY/4PdvXpz44D/ZtFII5JLjPyMShZZ1/+E/BoNr7uj/4z8wDi4dcx7nP/dzCvKzEeI/OWQD6WJT5j8Bpgwc0FLlP5fmVgirMeU/dqp8z0gE4D9HcY46Oq7iP6q7sgsGV+E/DW0ANiBC3j9cjexKy8jhP4Pg8e1dg+M/0Amhgy5h4z++9zdorz7hP6X4+ITsvOI/5fBJJxLM4T+uK2aEt4fiP4fAkUCDTeE/Yi0+BcD45T+PUglP6HXkPz7KiAtAI+M/iUD1DyIZ4D/KNnAH6hTkPzLlQ1A1euQ/kkHuIkxR5T9qhH6mXjfjPz2Zf/RNGuM/DI/9LJai4j9A/Pz34DXhP4ielEkNbeA/yJi7lpCP4D/NWgpI+x/iP4mXp3NFKeM/Zf1mYroQ4z+o5JzYQ3viP7BW7ZqQVuU/BabTug1q5T9VUFH1Kx3lP2O3zyozpeQ/roBCPX0E5T8yVTAqqZPkP5RL4xdeSeQ/46Qw73Gm4j+thVlo57TiP74W9N4YAuU/hetRuB6F3j/HZdzUQHPkP1pLAWn/A+I/GohlM4ck4T8uWRXhJiPiP1XAPc+ftuI/6dMq+kMz4T86dlCJ6xjoP+85sBwhg+U/R8hAnl0+5T8AN4sXC8PlP0T9LmzNVtk/LjiDv1/M2T+QTl35LM/mP8uFyr+WV+U/9bpFYKzv4z/1gk9z8qLhPz4FwHgGjeI/0v4HWKv24z+V88Xei6/iP2zqPCr+b+I/iWGHMenv5D9fQC/cuTDeP+P74lKVNuQ/PGwiMxc44z+uvOR/8nfcPxx79lympuE/xD9s6dHU4z+8kA4PYfzjP5+qQgOx7OA//+xHisiw2z/c2sLzUjHjP6X4+ITsvOA/hh4xem4h4z8Bp3fxflzgP0IFhxdEJOU/uhKB6h9E4j9z275H/fXcPzP9EvHW+d0/QwHbwYh95T/ZQpCDEmblP9HN/kC5beE/ECGunL2z4T8BGTp2UAnjP9JyoIfatuY/Ykok0cso4j9bYI+JlObhPyJxj6UP3eA/H9lcNc8R4T8yrU1jey3gP04JiEm4kOE/tFpgj4kU5D9N9zqpL8viP+krSDMWTd8/q+ek940v4j//W8mOjcDiP0WeJF0zeeY/teBFX0Ga4z9KXp1jQPbiP/DErBdDueI/iA6BI4EG5D+amZmZmZnjP86pZACo4uQ/lE+PbRlw5T+wWMNF7unjP9TWiGAcXOU/cCL6tfVT5D/9vn/z4kTkP1InoImw4ds/lzrI68Ek4z9Kz/QSY5nhP41EaAQb1+A/CTauf9dn5D/cLckBuxriP1qAttWsM98/HooCfSJP4T86ArhZvFjfP13Cobd4+OU/ck2BzM6i4D+6umOxTaroP7qEQ2/x8OU/HCjwTj694j+gbTXrjO/iP3qobcMoiOM/gjekUYET4z9l/zwNGCThPyf6fJQRl+M/Cf63kh0b4z8GED6UaMnjP9EhcCTQYOY/offGEAAc4D9yMQbWcfzRPzC6vDlcK+I/AFMGDmjp4z+ymxn9aDjkPzV6NUBpKOQ/HuIftvTo5D+qtwa2SrDmP2TmApfHGuU/EYsYdhgT4D9uFcRA1z7iPySbq+Y5IuI/7dgIxOt65T9oke18PzXkP0kqU8xB0OE/cAZ/v5it4T9jKv2Es1veP0s9C0J5H+I/11BqL6Jt5D9seHqlLEPdP2k2j8Ng/uc//TBCeLTx5T/7eVORCuPkPw73kVuT7uM/SOAPP/+95T8cQpWaPVDhP8UCX9Gt1+Q/CU/o9Sdx4j9dqPxreeXhP4MVp1oLM+I/bF7VWS2w4T/Go1TCE/riPyodrP9zGOU/YD5ZMVyd5T+houpXOh/mPwzO4O8Xs+I/fGRz1TzH5T9dTgmISbjjP8yyJ4HNuec/HM2RlV8G5z8L7gc8MIDoP6uwGeCCbOk/NpIE4Qqo4z9vtyQH7GrdP25Q+62dKOA/xty1hHzQ4D+69C9JZQrjP/lJtU/H4+E/qRWm7zWE4T8oKhvWVBbgPxy0Vx8P/eA/HAsKgzIN5D+gihu3mJ/kP1ad1QJ7TNw/TwKbc/BM5D+frBiuDgDhP6a1aWyvheU/8UqS5/o+3j8qx2Rx/5HjP2DLK9fb5uM/pdsSueAM4j9ZEwt8RTfmPxptVRLZh+E/fa62Yn/Z4T9qpnud1BflP/OTap+OR+E/vAhTlEtj4T9lx0YgXtfhP7q9pDFax+I/14S0xqAT5T8xs89jlGfnP66dKAmJtOE/yRzLu+qB4j/7HvXXKyzdP/kVa7jIPeI/R1UTRN2H4z+T36KTpdbjP6Pp7GRwFOI/yy+DMSLR4T+l+WNam0bjPzoF+dnI9eM/OGivPh564j8dOGdEae/gP73+JD53AuA/UKp9Oh4z3j83+pgPCHTjP7UZpyGqcOU/ouvCD84n4T+qQ26GG/DiP0D35cx2BeU/7gp9sIyN5j+8BRIUP8bmP04rhUAu8ec/GqN1VDVB3T+R0mweh8HlP2B4Jclz/eM/VDpY/+ew4z+Gdk6zQLvhP7qhKTv9IOM/qg8k7xxK5D9Y5q26DlXjP3XmHhK+9+A/3GRUGcbd3z8KZeHra13hP+HTnLzIBOU/vfxOkxnv4T8TnWUWodjiP2FVvfxOk+U/gZVDi2xn5T+WehaE8r7iPwznGmZovOI/GRwlr86x5T8mbhXEQFfmP7qj/+VatOc/3IE65dEN4j8AOsyXF2DcP7cNoyB4fN4/ycwFLo+15D9A+iZNg6LiP2iSWFLuPuI/Aizy64dY4D+7Cb5p+uziP6w7FtukouM/o5I6AU2E5D8llL4Qcl7kP5Pi4xOy8+U/k6espuuJ5z+T/l4KD5rnP9bkKavpeuY/ic4yi1Ds5j8gt18+WbHgP5+Sc2IP7d4/RWYucHks5T+PVUrP9BLpP8gHPZtVn+c/9x3DYz8L4z/ZzvdT46XlP7UX0XZM3eM/ge1gxD4B3z8TueAM/n7hP/tXVpqUguQ/XcE24snu4z9+ObNdoY/mPwjjp3Fv/uE/tRg8TPtm5T8robskzgrlP1x381SH3OA/vTlcqz1s4j9UrYVZaOfiP1PNrKWANOQ/GTp2UIlr4j+fWKfK94zhP5oLXB5rxuQ/EarU7IFW5D9I/fUKC27jP+Db9Gc/0uE/vp8aL90k4j+P4hx1dNznP88u3/qwXuM/3SObq+a54j+3Qe23dqLcPzAvwD469eY/MzMzMzOz4T/FqdbCLDTnP95X5ULl3+M/x0rMs5JW5j/kTulg/Z/lP+uLhLacy+I/QbyuX7Ab4j/Y8zXLZaPlP+fgmdAkseU/8l1KXTKO4D+rQC0GD1PjP0t1AS8zbOM/k3GMZI9Q4z+oGr0aoDTjP8vapnhc1OE/2uTwSScS4z+YGMv0S0TjP5p7SPje3+M/sTTwoxr22T9gI0kQrgDiP9CX3v5ctOI/Jv4o6sw94z/vObAcIQPhP57PgHozat0/NiIYB5cO5z+2SxsOS4PjP3VY4ZaPpOY/9IdmnlxT5T+CH9Ww3xPkP0XURJ+PMuA/63JKQExC5D9hbvdynxzmPw6itaLN8eA/1v7O9ugN4z/430p2bIThP8XFUbmJ2uM/3CxeLAyR5z9ky/J1Gf7lPyNqos9HGeY/WBr4UQ174j+sOqsF9hjkP1Dj3vyGCeM/ysStghho4j/BWN/A5EblP/fJUYAoGOc/IApmTMEa5D8h6j4AqU3hP2RXWkbqveM/eo8zTdj+4D9qMA3DR0TiP7iVXpuNleY/3QvMCkU65T/G3SBaK1rgP4ZUUbzKWuc/8ppXdVaL4z+rsu+K4P/hP/TeGAKA4+U/BTQRNjy94j+8CFOUS2PlP+j6PhwkRN4/VMkAUMWN5D8aijve5LfjP9cUyOwset0/3J212y404z/eADPfwc/kP5i/QubKIOU/8lt0stT64D/6X65FC9DnPym0rPvHwuc/nOCbps+O5T9GzsKednjlP8xgjEgUWtk/DW/W4H1V4D8Q5+EEptPjP1BTy9b6IuU/v/T256Kh5T8z38FPHEDkP/yPTIdOT+U/LQq7KHrg4j8xfa8hOK7iP0KUL2ghAec/woh9AijG4j9JEoQroFDlP6PogY/BCuQ/0o4bfjdd5D+aB7DIrx/kP10xI7w9iOY/GELO+/+45T95k9+ikyXgPwd40sJlFdc/SZwVURN90j9Vh9wMN+DdP/4sliL5SuY/9bpFYKzv5T+qtwa2SjDiPyQMA5ZcReQ/toR80LPZ4z9EGD+Ne/PkP89r7BLV2+Y/F3/bEyS25z+taHOc24TePwx1WOGWj+Y/4xx1dFyN5T+j5xa6EgHkP9hF0QMfg+M/Zacf1EUK3j/ys5HrppTmP5OmQdE8gOA/X9BCAkYX5j91PjxLkJHjP1q6gm3EE+I/yLYMOEvJ4T9avcPt0DDiP6ES1zGuuOM/4Ep2bARi5D+1UZ0OZD3hPwvUYvAw7eU/Kv2Es1vL5D+wq8lTVtPoP24YBcHjW+U/6GnAIOlT5j9vD0JAvgTnP8O4G0RrxeQ/tJPBUfLq4z8W2jnNAu3nP8sr19tmquQ/EarU7IFW5D/rxOV4BaLlP+XRjbCoiOM/r7FLVG+N5D8ld9hEZi7kP7a5MT1hCeY/33AfuTXp4D8bZ9MRwE3lP5z9gXLbPuE/hdBBl3Do3z8ofoy5awnfP6iOVUrPdOE/PZ0rSgnB3z9jtI6qJgjlP3lcVIuI4uE/hCwLJv6o4z8rUfaWcr7jPxvWVBaFXeQ/71aW6Cyz5T/huIybGujlP2k2j8Ng/uM/Eayql9/p5D+4sdmR6rvgP/CmW3aI/+A/a2YtBaR95j+IhO/9DdrgP9JWJZF9EOY/xvtx++WT4T9eY5eo3hrgP9I0KJoHsOQ/1UDzOXc75T8viEhNu5jlPwCt+fGXluc/BaInZVLD5j/oZn+g3LbbP2082GK3z9w/tr+zPXrD3z8Vb2Qe+QPjP9GwGHWtPeE/7PfEOlW+5T9g56bNOA3dPyR/MPDce+I/+rZgqS5g4T8oKEUr94LjP0MglzjywOM/pwTEJFzI3D96jV2iemvkP/sEUIwsGec/vcXDew4s3z9+NnLdlHLgP9AJoYMu4ds/JezbSUR44D93uvPEc7bbPyNL5ljeVeU/WVLuPsfH4D+elh+4ypPhP7lTOlj/5+E/mIi3zr9d4j9i1/Z2S3LgPzF5A8x8B90/QzunWaBd4z+zmq4nui7dP/eTMT7M3uQ/8kOlETP72T9m2ZPA5hziP0gVxausbeQ/LGfvjLYq5D8oRwGiYMbjPx2OrtLd9eQ/ucfShy6o5D+nsb0W9F7hPymxa3u7peU/E2QEVDgC5D+vz5z1KUflP5zdWibDceE/y2YOSS2U5j+IZTOHpBbmP4hlM4ekFuY/kWCqmbWU4j+SlV8GY8TgP/GEXn8SH+Y/C3+GN2vw5D8bDeAtkCDiPyHJrN7hduA/529CIQIO4z/r4GBvYkjiP5nTZTGxeeE/EaeTbHU54D9NS6yMRr7iP2XfFcH/1uI/NExtqYO85D9N9PkoIy7ZP/vm/upx3+A/9kIB28EI5D8iG0gXm1bdP8H+69y0meE//I123PC74T++amXCL3XjP4W1MXbCS+M/+yKhLefS4j9sXtVZLbDgP0ZcABqlS+Q/0y07xD9s5D+IR+Ll6VzlP4if/x689uQ/Ne84RUfy4j+9NbBVgkXmP9/CuvHuSOE/8S+Cxkyi4z/AP6VKlD3kP06YMJqVbeQ/YqOs30zM4z/QfM7drpfeP8zwn26gQOU/hJohVRSv5D/z59uCpbrjP8ITev1JfOM/NBDLZg5J5D9oQL0ZNV/jP2thFto5TeQ/G0gXm1aK5T//rzpypLPoP7VU3o5w2uI/uFm8WBii5z9Ma9PYXovlP4EgQIaOneY/2GSNeojG4T8VAU7v4n3hP01O7QxT2+E/9FFGXACa4T+c3Vomw/HkP1A3UOCdfN4/JLcm3ZbI5D/zjlN0JBfiP028Azxp4eE/lj0JbM7B3z+O6nQg66nmP+gxyjMvh+Q/eNDsurci3z8aprbUQd7iP68l5IOeTeM/whTl0viF4z8QPL69a1DgP36LTpZa794/H9lcNc8R5z/QKF36lyTnP9ODglK08uQ/rd12oblO5D9VLlT+tbzkP91c/G1PEOA/jPfj9sun4z+0rtFyoAfjP94gWivaHOM/pWq7Cb5p5T/ij6LO3EPjP4xmZfuQt+I/6nk3FhQG5D+yZ89lapLkP0uuYvGbwuU/GVQbnIh+4j8UQgddwiHjP8Effv57cOM/SIjyBS0k6D+4HoXrUbjgPwLxun7Bbt4/Crq9pDFa3z8aFTjZBm7nP3goCvSJvOE/LpJ2o4955T8vo1huaTXePzVgkPRpleY/mQ8IdCbt5j94uYjvxKzWP0563/jaM+c/4nMn2H+dyz+yKsJNRpXqP/eTMT7M3uI/0jqqmiDq4j/lJmppboXjP2RA9nr3x+A/qfsApDbx5j9xOslWl9PjP6pla32RUOU/XCGsxhLW4T/MCkW6n1PiPxcplIWvr+I/HmtGBrmL4z8gmKPH7+3kP2vSbYlccOQ/kSxgArdu4z/+RGXDmkrjPwppjUEnhOQ/EOz4LxCE5T/F5XgFoqfkP9Ydi21SUeM/vqHw2Tq45T8PC7WmeUfkP2iyf54GDOU/+zvbozfc2T+cwkoFFVXaP6RUwhN6/eY/pdjRONRv4z9CtcGJ6NfjP5lLqrabYOA/1VqYhXbO4z+uRQvQthriP3F0le6us9s/Di+ISE274T+phv2eWCfgPxGKraBpieU/499nXDiQ4T/A6siRzsDaP1JflnZqLug/UKvoD8084z++EkiJXdvkP64s0VlmEd4/Goo73uS33T82yY/4FWvdP5g1scBXdOM/078klSnm3T9qbRrba8HiP1ILJZNTO+E/zCcrhquD4T+1T8djBirjP4xIFFrWfeM/LNMvEW+d4j+uEiwOZ37iPz1i9NxC1+A/V7H4TWEl5z8kK78MxojlP+Boxw2/G+Q/Jh5QNuUK5D/umLoru2DhPwLU1LK1vuQ/ECIZcmw94T8Sv2INFznnP8l2vp8aL+c/Wp9yTBb33j9iga/o1mvhP9o391eP++E/LBA9KZOa4j+OAkTBjCniP/BOPj22ZeQ/JXfYRGau5j/s2t5uSQ7hPwqfrYODvd0/CDpa1ZKO3j9IFjCBW3feP+6zykxpfeA/7xtfe2bJ4D/Wj03yI37hP9j1C3bDNuE/umsJ+aDn4z9cVIuIYnLmP2Mpkq8EUuY/rHMMyF7v5z9F14UfnE/oPyNnYU87fOg/arx0kxiE5D/N6bKY2HziP/JdSl0yDuM/+kSeJF2z4T/5EFSNXg3fP/kQVI1eDd8/+RBUjV4N3z8m4NdIEoTfP+XyH9JvX+g/UfhsHRxs5T+EfqZet4jgP70d4bTgReE/kpbK2xHO4T+h8q/lleviPzNv1XWopuM/UfpCyHl/5D+9VGzM6wjhP2e1wB4TqeM/81oJ3SXx4z90forjwKvkP5F/ZhAfWOM/JJhqZi0F4z8tW+uLhDbmPx2taklHOeU/UHKHTWTm5j/O+/84YcLmP7wkzoqoieI/yyvX22Yq5T8o1xTI7CzhP72Pozmy8uE/xLMEGQGV5D9qoPmcu93iP41feCXJc+Y/XHfzVIfc5j9GlzeHazXqP1HdXPxtz+A/fXbAdcWM5T+/1qVG6OfiP/q3y37d6eA/jA+zl20n4T9+xRouck/oP/X256IhY+A/GOsbmNwo3j9hNgGG5U/gPyR7hJohVdw/I0kQroDC4z9fKcsQx7rbP3E8nwH1Zt0/F0hQ/Bhz4z9ivyfWqXLhPxmO5zOg3uA/rROX4xWI4D+2gTtQpzziP5AuNq0UguI/EJVGzOxz4z8wvJLkuT7kP1ZJZB9k2eQ/PDJWm//X4j8TueAM/n7jP8h+FkuRfOQ/499nXDiQ5D8CDwwgfKjlP6T+eoUF9+I/CtY4m46A4j/9o2/SNKjiP+58PzVeOuM/WTDxR1Hn4z8fuTXptsThPy/BqQ8kb+M/IVZ/hGHA5D/bpKKx9vfoP8dLN4lBYOI/TUnW4eiq5T/kgjP4+8XlP6685H/yd+E/DTUKSWb14z8CDTZ1HhXeP8PWbOUlf+M/wxGkUuzo4D/s3orEBLXiP1ORCmMLQeI/uVFkraFU5T+w6NZrelDiPxYXR+UmauQ/fnGpSlvc4z+sOqsF9pjiPwGnd/F+XOA/tydIbHeP5D8900uMZXrjP+Upq+l6ouU/9mG9UStM4j9bYI+JlGbkP81aCkj7n+I/pUv/klQm5z9MVdriGp/mP37/5sWJL+Y/j3Ba8KIv5D+c+6vHfaviP3eBkgIL4OE/TUwXYvVH4T9NTBdi9UfhP1Vpi2t8puE/aAkyAioc5j+c+6vHfavkP4MxIlFo2eI/DK8kea5v5D8NVTGVfsLnP76G4LiMG+g/x5v8Fp0s3j8TLA5nfjXqPyIXnMHfr+I/gQpHkEqx4T+Vn1T7dLzjP2CrBIvDGeg/8656wDxk4z/PMSB7vXvoP1D7rZ0oCeU/G9gqweJw5D+o4VtYN97lP4/66xUW3OQ/7nw/NV464j9LBoAqblzgPziDv1/MFuI/r0M1JVmH1j8BwocSLXnkP1Xf+UUJ+t8/SSwpd5/j4D9ruwm+aXrhP+WZl8Puu+E/OsyXF2Af5z+xTwDFyJLlP9wQ4zWvauc/r7X3qSq05T/JWkOpvQjlP7bZWIl51uA/TrSrkPKT4D/vOhvyzwzdP6X1twTgH+U/ay3MQjun1j8HI/YJoBjmP9rIdVPKa94/3q8CfLd55D/MDYY6rPDiP4tUGFsI8uU/WW3+X3Vk4z/uI7cm3RblP+sCXmbYKOI/tHbbhea65j8wn6wYro7iPy+H3XcMD+A/bsK9Mm9V6T++S6lLxjHfPyGTjJyFveI/wVJdwMuM4j/pDmJnCp3mPzHO34RCBOM/A8x8Bz/x4T8PnDOitDfkP101zxH5LuE/662BrRIs4z8VVb/S+XDiP4du9gfK7eE/GjVfJR875D8v3/qw3qjcP9SeknNiD+I/rWhznNuE5T9eLuI7MevlP7ZlwFlKlt4/aNDQP8HF2z/LZDiez4DmP0MglzjyQNs/ZkmAmlq25D/rGi0HeqjgPxw/VBoxs+U/6e+l8KDZ4j99BP7w89/iP+22C811muI/nWhXIeUn5T+JYvIGmPnfP6TBbW3h+eA/b4EExY8x3D9720yFeCTlP04NNJ9zN+U/o5QQrKqX5D+Z1qaxvZbiP96vAny3ed0/wf7r3LQZ3z9AL9y5MFLkP9pU3SObq+E/8icqG9bU5j8TKc3mcRjmP4UKDi+ISN0/GRu62R8o5T/C+j+H+XLlP5KwbycRYeU/PulEgqnm5z8uyQG7mjzgP7StZp3xfd8/n69ZLhud4j+22y401+njP+aSqu0m+OI/yeU/pN++5D8vwakPJG/gPwQ3UrZIWuY/2uOFdHiI5T/SG+4jtybgP6naboJvGuU/nIaowp9h4T9IowIn28DiP+li00ohEOA/Gysxz0pa4j8KLev+sZDiP2YRiq2g6eM/wTqOHyoN5T/UZMbbSq/hPzLLngQ2Z+U/Tpmbb0T34z/E0sCPatjgP/sCeuHOheI/MiB7vfvj4z9B740hADjkP4viVdY2xeU/BduIJ7sZ5z9JZB9kWTDlPxHF5A0wc+E/+KdUibK33z+5G0RrRRvjP6wDIO7q1eI/G5sdqb7z4j/KGYo73uTlP2d8X1yqUuU/e9egL7395D+pMSHmkirjP80f09o0NuY/VMVU+gln5T/YSuguiTPiP8tKk1LQ7eI/x7yOOGQD4T9TeNDsurfjPzi9i/fjduU/l/+Qfvu65j8My59vC5bmPxQF+kSepOc/cAZ/v5gt5j9qpKXydgTmPx11dFyN7N0/YkhOJm4V5D+ci7/tCRLeP0z8UdSZe98/ueF30y073z8IkKFjBxXhP4z2eCEdnuI/w9MrZRli4T/usfShC+rgP+CfUiXK3uE/xY7GoX4X3z9n0TsVcM/gP6LsLeV8sd0/+SzPg7uz4j/1ZWmn5nLVP+iHEcKjjd8/rz+Jz51g3T/tt3aiJCTZP+i7W1miM+Y/ODEkJxM34z9TBg5o6YriPwh2/BcIAuQ/+5Rjsrj/3j8wnkFD/4TkP+3yrQ/rjeE/2QWDa+7o2D8KaY1BJ4TeP8OayqKwi9w/4zYawFsg3j8XDRmPUonmP5XXSuguCeU/1SE3ww144D+ZnUXvVMDmPx1xyAbSxd8/yqfHtgy44D/mstE5P8XiP7DIrx9ig+I/198SgH/K4z9+NnLdlHLjPwQ91LZhFOU/n8ppT8m55j+13m+04wbiP6Z7ndSXJeY/rRQCucSR4T8llpS7z/HlP+IDO/4LBOQ/Y7ZkVYSb3j9oPBHEeTjmP/CLS1Xa4uM/NpIE4Qoo5j/AWrVrQtrgPxcq/1peOeY/EsDN4sXC5D8jn1c89cjkP7jLft3pTuU/b0vkgjP44j99PPTdrSzdP5ymzw64Lug/v9cQHJfx5T8K2Xkbmx3kP/NaCd0l8eM/FLGIYYcx5j9Y4ZaPpCTkP65hhsYTQeI/GtzWFp4X4T+y8WCL3T7gP0dy+Q/pN+M/lXzsLlDS4j88hzJUxVTiPw+byMwFruY/RN/dyhId5T+D2m/tREnlP7Ng4o+izuQ/cZLmj2nt4z97E0NyMvHkPxFUjV4NUOU/RfRr66f/4j+RnEzcKojhP8WsF0M5UeU/JEil2NE44j/K3lLOF3vlP9S6DWq/teU/qu6RzVXz4T+pS8Yxkr3lP5WcE3ton+U/JSL8i6Cx5D+qudxgqMPjPzY9KChFK+E/h6dXyjJE4D9ljA+zl23lP08IHXQJB+I/QdXo1QCl4D/qruyCwbXiP91FmKJcGt0/TI3Qz9Rr4j8tX5fhP13iP/1P/u4dNeM/huY6jbRU5D8butkfKLfhP0zChTyCm+I/yLQ2je214z97+Z0mM97jP5vmHafoyOI/OzlDcccb5T/XFwltORfnP/2fw3x5AeQ/4IWt2cpL5z8T8GskCcLnP0ZAhSNIJeQ/T62+uirQ5D8Pe6GA7WDnP7lUpS2u8d4/8UbmkT+Y5D8BT1q4rMLjP7h2oiQkUuA/YHKjyFpD4T8bLnJPV3foP/Z698d7VeU/IxCv6xds5z+CAu/k0+PjP5qw/WSMD+U/MEllijkI5D9lq8spAbHiPwdCsoAJ3OQ/ls/yPLi75D+NYU7QJgfkP9vAHahTHuA/0vwxrU1j3z8XR+UmamnkP6PnFroSgdw/zZAqildZ3j/W5ZSAmATjP/g2/dmPFOI/v/G1Z5aE4T/nb0IhAg7nP7oxPWGJB9o/fjhIiPKF4z8WM8LbgxDlP2wGuCBbFuE/jZyFPe1w4j+7Jw8LtabgP7B1qRH6GeA/QMIwYMlV4D/FqdbCLDTgPwE1tWytL+A/KTxodt1b4j/Azk2bcRrmP+hNRSqMLdk/R3GOOjqu2j/L2NDN/kDeP1jk1w+xweI/SBlxAWiU4T9YVMTpJFvmPxwlr84xoOA/GQKAY8+e4D8oZOdtbPblP4p2FVJ+UuI/zTtO0ZHc5j+iDivc8hHlPyeFeY8zTeI/Up0OZD214j/9S1KZYo7jPwBV3LjFfOE/BqBRuvSv4j99kjtsIrPhPxlZMsfyLuU/SpnU0Abg4z9INlfNc0TmP6RUwhN6/eI/guLHmLuW5T9XYMjqVs/lP4idKXReY90/J2a9GMoJ5T9ortNIS2XkP1pLAWn/g+Q/Z2DkZU2s4z8B323eOKnnP7rdy31yFOg/dLM/UG7b6D9m3T8WokPjP/TcQlciUOE/uW3fo/565T9Hc2Tll0HlP3KjyFpDKeQ/nlxTILOz4T+wjXiymxnkPzM0ngjivOA/RWYucHks4T/FAIkmUETkPzgsDfyohuc/AYblz7eF4z/ik04kmGrkP5I+raI/tOI/cFtbeF6q4T+GVFG8ylriP5Oq7Sb4puM/ISI17WIa4D/VlGQdjq7hP05k5gKXR+I/SyAldm1v4j/3BfTCnYvkPypWDcLcbuU/4pLjTung4j9iEi7kEdzlP/cCs0KRbuM/Tx+BP/x84z99XBsqxnnlP+f8FMeBV+Q/zLVoAdrW4D9ZGCKnr+fhP2qhZHJqZ+I/KPT6k/jc5D9YN94dGavhP4FaDB6m/eM/NWJmn8co5T8lsaTcfY7lP6AZxAd2/OA/sW8nEeFf5j9KQ41CktnhP98xPPaz2OY/fuGVJM/14j9AL9y5MNLhP3u7JTlgV+Q/hzJUxVR64j/QYb68APvfP9yCpbqAl90/FaxxNh0B3T+xbVFmg0zcP6PKMO4GUeE/qfkq+dhd4D9XXByVm6jgP8X/HVGhuuU/YviImBLJ4T9dbcX+snvZP6ck63B0ldo/I/d0dcdi3T9MOPQWD+/iP3PZ6JyfYuM/dCUC1T+I4j/l1M4wtaXgP1IP0egOYuU/dsHgmjv65D8NUYU/w5vYPyFYVS+/090/UDi7tUyG3j8XLquwGWDkP4o+H2XEheM/TkS/tn764T8/HCRE+YLkPyKl2TwOg+I/WIy61t6n5z/4im69pofoP5+T3je+9uU/npeKjXkd2z+YTus2qP3YP1pKlpNQ+uM/uyu7YHDN5j+ie9Y1Wg7pP7BwkuaPad0/VPzfERUq5T+YpDLFHATdPw1VMZV+QuQ/JbN6h9sh5D/G4GHaN/fiP3pwd9Zuu+Y/rMjogCRs5D/l0Y2wqAjgP+KPos7cQ+U/1m670Fyn4j/pKXKIuLnlP2O3zyozpeE/Uz4EVaPX5D8k8Ief/57hP5mDoKNVreU/WwcHexND3z8Qy2YOSS3eP380nDI3398/0m2JXHAG4T/d6c4Tz1njP84cklooGeQ/9kVCW86l4j9tjQjGwaXiP05/9iNF5OA/evzepj974T8QQdXo1QDjPyl3n+OjReM/A3rhzoWR1D/zOuKQDSTnP3mRCfg1EuA/2ClWDcJc4T8kXp7OFSXhPwhzu5f7ZOI/Cyb+KOrM4j/e5o2TwjzkPy1CsRU0reQ/JLcm3ZbI4D8W3XpNDwrjP1SqRNlbSuM/+Uz2z9OA5T/27LlMTYLcP50N+WcG8dw/DrvvGB574D82H9eGinHgP1u1a0JaY+U/Jc0f09o04T+W6gJeZljjP2/XS1MEOOU/529CIQIO5T/APGTKhyDgP3NMFvcfmeQ/jJ5b6EqE5j/nOo20VN7lPw==","dtype":"float64","order":"little","shape":[3947]},"tau[0]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"tau[1]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"theta[0]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]},"theta[1]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3947]}},"selected":{"id":"4543"},"selection_policy":{"id":"4542"}},"id":"3809","type":"ColumnDataSource"},{"attributes":{},"id":"4723","type":"BasicTickFormatter"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"3923"},{"id":"3924"},{"id":"3925"},{"id":"3926"},{"id":"3927"},{"id":"3928"},{"id":"3929"}]},"id":"3933","type":"Toolbar"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4077","type":"PolyAnnotation"},{"attributes":{"source":{"id":"3809"}},"id":"4285","type":"CDSView"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4282"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4283"},"selection_glyph":null,"view":{"id":"4285"}},"id":"4284","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"black"},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"__ECDF_tau[0]"}},"id":"4282","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"__ECDF_rho"}},"id":"4088","type":"Circle"},{"attributes":{},"id":"4725","type":"BasicTickFormatter"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4263"},{"id":"4264"},{"id":"4265"},{"id":"4266"},{"id":"4267"},{"id":"4268"},{"id":"4269"}]},"id":"4273","type":"Toolbar"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"__ECDF_tau[0]"}},"id":"4283","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"4068"},{"id":"4069"},{"id":"4070"},{"id":"4071"},{"id":"4072"},{"id":"4073"},{"id":"4074"}]},"id":"4078","type":"Toolbar"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"3930","type":"BoxAnnotation"},{"attributes":{},"id":"4115","type":"WheelZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"3931","type":"BoxAnnotation"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"4087"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4088"},"selection_glyph":null,"view":{"id":"4090"}},"id":"4089","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"__ECDF_rho"}},"id":"4092","type":"Circle"},{"attributes":{},"id":"4118","type":"SaveTool"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"3932","type":"PolyAnnotation"},{"attributes":{"source":{"id":"3809"}},"id":"4090","type":"CDSView"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4092"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4093"},"selection_glyph":null,"view":{"id":"4095"}},"id":"4094","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"__ECDF_rho"}},"id":"4093","type":"Circle"},{"attributes":{"source":{"id":"3810"}},"id":"4095","type":"CDSView"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"3835","type":"BoxAnnotation"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"4238","type":"Circle"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4237"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4238"},"selection_glyph":null,"view":{"id":"4240"}},"id":"4239","type":"GlyphRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"3836","type":"BoxAnnotation"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"4237","type":"Circle"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"4327","type":"Circle"},{"attributes":{},"id":"4251","type":"LinearScale"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"3837","type":"PolyAnnotation"},{"attributes":{"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4242","type":"MultiLine"},{"attributes":{"source":{"id":"3810"}},"id":"4240","type":"CDSView"},{"attributes":{"align":"end","below":[{"id":"4255"}],"center":[{"id":"4258"},{"id":"4262"}],"frame_height":150,"frame_width":150,"left":[{"id":"4259"}],"renderers":[{"id":"4284"},{"id":"4289"}],"title":{"id":"4674"},"toolbar":{"id":"4273"},"toolbar_location":null,"x_range":{"id":"4247"},"x_scale":{"id":"4251"},"y_range":{"id":"4249"},"y_scale":{"id":"4253"}},"id":"4246","subtype":"Figure","type":"Plot"},{"attributes":{"overlay":{"id":"3835"}},"id":"3831","type":"BoxSelectTool"},{"attributes":{"data":{"xs":[{"__ndarray__":"Ds2MC9ds2T9LRudfPwLaPyBo5HfDy9o/ij73F5AR2z8=","dtype":"float64","order":"little","shape":[4]},{"__ndarray__":"jcwMNIXt6D+nSnGsB9PoP5aeyBfdz+g/le6BkrSg6D8QJqujGX/oP6sNygsba+g/oAePxoZP6D/BfMv/WAboP1z87Iriy+c/1+vM85ah5z9KAF/a7VfnP+1azufUPOc/5Bi1e8kQ5z8Dys/bEtjmP+MP0lqBmeY/GTnRz1Bz5j8b/Ev0GFDmPy+o0sOODuY/O58dujPd5T9EF9S3zKnlP1qG1asKReU/cPXWn0jg5D+GZNiThnvkP5vT2YfEFuQ/sULbewKy4z/HsdxvQE3jP90g3mN+6OI/84/fV7yD4j/BYheL9ijiPwn/4Ev6HuI/H27iPzi64T813eMzdlXhP0tM5Se08OA/U60iU83L4D9hu+Yb8ovgP3cq6A8wJ+A/GjPTB9yE3z9EEdbvV7veP/vynkUup94/cO/Y19Px3T/OZl9n05fdP5zN279PKN0/c9zHyLjr3D/Hq96ny17cP/GQh1CuNdw/84nhj0eV2z9sp9AF8T3bPx9o5HfDy9o/aAxrpCJ02j9LRudfPwLaP3Yk6ke7ONk/ogLtLzdv2D8w7Fepe23YP6IC7S83b9g/oMCFOt0B2T8=","dtype":"float64","order":"little","shape":[55]},{"__ndarray__":"KMsLO4xW5z8sFIdce4jnP3jeTplIkOc/7VrO59Q85z9Nr5GChyfnPwPKz9sS2OY/GTnRz1Bz5j+avyF4iETmPzCo0sOODuY/drl/fTa75T9EF9S3zKnlP1qG1asKReU/wgYW1f4Q5T9w9dafSODkP4Zk2JOGe+Q/m9PZh8QW5D96gpu80fjjP7FC23sCsuM/x7Hcb0BN4z/dIN5jfujiP/KP31e8g+I/Cf/gS/oe4j8fbuI/OLrhPzXd4zN2VeE/W9mvnIk84T9LTOUntPDgP2G75hvyi+A/dyroDzAn4D9KVPBeiqzfPxkz0wfchN8/RBHW71e73j9w79jX0/HdP+XiSHR42N0/nM3bv08o3T/f03rKdQzdP7QvrYnHCN0/","dtype":"float64","order":"little","shape":[36]},{"__ndarray__":"vsyU6xlQ5j/ezjzlGEvmPy+o0sOODuY/wb9sL+X25T9EF9S3zKnlP1qG1asKReU/b/XWn0jg5D+GZNiThnvkP5rT2YfEFuQ/sULbewKy4z/HsdxvQE3jP90g3mN+6OI/fO9XRVWW4j/zj99XvIPiPwn/4Ev6HuI/H27iPzi64T813eMzdlXhP+LOLDbjUeE/X7c/nlAB4T/AI+ElFS7hPw==","dtype":"float64","order":"little","shape":[20]},{"__ndarray__":"3EAS0/Y05D9oK4nwcmzkP5vT2YfEFuQ/sULbewKy4z/HsdxvQE3jP90g3mN+6OI/84/fV7yD4j8J/+BL+h7iP5aR9IIrYOI/","dtype":"float64","order":"little","shape":[9]}],"ys":[{"__ndarray__":"qSD1jZ4R2j9Wytqi6o7nP3ypx4mQd+Y/qCD1jZ4R2j8=","dtype":"float64","order":"little","shape":[4]},{"__ndarray__":"qSD1jZ4R2j9Wk/E5wcjrP05JRuJunew/LEt0lllE9T+szO+PUqT8PzLx/0DKAgBAFqe1xCUCAkAkKW67UYEEQNdnc0EisgVAqJvEVyrlBkCYKDG+HmIJQFhdLVNizwpAWOnuOhsSDUAgAEIYnykPQAxV1tsLYRBAJokliQQkEUBsNTUaCjkSQFTUehG0YRNAzBWUWAgRFEBvGIZPjqoUQGbgWK1PZBVA5GmOp7yNFUCYZ5VCJokVQCX9Rlp7wBVAeV96j+exFUDMFZRYCBEUQO52hwPiAxNAgjqxFLluEkBsNTUaCjkSQDO37rpmNxJAyoEHhz/7EUB4L/MiOIsRQE3Q14V0qhBADFXW2wthEEBrdCTFz78PQARvRo/VARBAD4ypEsZED0AwAw3ApkUNQFjp7jobEg1AjO7E5tK/CkCYKDG+HmIJQPrgGbeNFAdA1mdzQSKyBUDzf1uXXOECQBantcQlAgJAmIf3c3R5/z+szO+PUqT8PyXXTe6tD/c/LEt0lllE9T8xp4pi7G3wP8o5hQKlUvM/UIjLkVoT7D9Xk/E5wcjrP2xmYXQ0Zes/qCD1jZ4R2j8=","dtype":"float64","order":"little","shape":[55]},{"__ndarray__":"qSD1jZ4R2j9Wk/E5wcjrPyxLdJZZRPU/voqVNSij+z+szO+PUqT8Py4dUicNTf8/GjlsCTQUAUAWp7XEJQICQOo633GrjwNA12dzQSKyBUBaV9P5iVEGQHYjDC304AhAmCgxvh5iCUBXtQU0YfEJQK7yFwwtGgpA/F7GN4O1CUCYKDG+HmIJQP5UzVGizQhA+J9qNvA+CEB4sLVxPtIHQE7rJVbeGwdA8q9jjx9yB0CPmucJoNsHQLI5kLcbagZA12dzQSKyBUD2f2CxjvoDQBantcQlAgJAOcEZUuxKAECszO+PUqT8P5Vfkh2ynvs/k8sFSqef+D/wRBB3+7r1PyxLdJZZRPU/BkDNWLCv7z9Wk/E5wcjrP6kg9Y2eEdo/","dtype":"float64","order":"little","shape":[36]},{"__ndarray__":"qiD1jZ4R2j9Wk/E5wcjrP6uzMixaIPM/LEt0lllE9T8w05EIfAz5P6zM749SpPw/hmvhCbgX/j8pei4ABzr+PyleCHq6NP4/UE7b+0ac/T//vjLjOn39P18SossAM/0/rMzvj1Kk/D8Ej/KOk4n8P9CHvHzKr/s/d7AC7wZ9+T/23gwvrmn1PyxLdJZZRPU/VpPxOcHI6z+qIPWNnhHaPw==","dtype":"float64","order":"little","shape":[20]},{"__ndarray__":"qSD1jZ4R2j9Wk/E5wcjrPxtouuyJwe4/AL91XP+k8D9GclkftV7xPwpKThakifE/1fcMXMjV8D9Wk/E5wcjrP6gg9Y2eEdo/","dtype":"float64","order":"little","shape":[9]}]},"selected":{"id":"4669"},"selection_policy":{"id":"4668"}},"id":"4241","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"4241"},"glyph":{"id":"4242"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4243"},"selection_glyph":null,"view":{"id":"4245"}},"id":"4244","type":"GlyphRenderer"},{"attributes":{"source":{"id":"4241"}},"id":"4245","type":"CDSView"},{"attributes":{"line_alpha":{"value":0.1},"line_width":{"value":2},"xs":{"field":"xs"},"ys":{"field":"ys"}},"id":"4243","type":"MultiLine"},{"attributes":{},"id":"4253","type":"LinearScale"},{"attributes":{"axis":{"id":"3824"},"dimension":1,"ticker":null},"id":"3827","type":"Grid"},{"attributes":{"end":23.6843308,"start":-0.28407080000000007},"id":"4247","type":"Range1d"},{"attributes":{"overlay":{"id":"3837"}},"id":"3832","type":"LassoSelectTool"},{"attributes":{"end":1.02,"start":-0.02},"id":"4249","type":"Range1d"},{"attributes":{},"id":"4268","type":"SaveTool"},{"attributes":{"axis":{"id":"3820"},"ticker":null},"id":"3823","type":"Grid"},{"attributes":{"text":""},"id":"4550","type":"Title"},{"attributes":{"formatter":{"id":"4677"},"major_label_text_font_size":"0pt","ticker":{"id":"4260"}},"id":"4259","type":"LinearAxis"},{"attributes":{"formatter":{"id":"4541"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"3821"}},"id":"3820","type":"LinearAxis"},{"attributes":{"formatter":{"id":"4679"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"4256"}},"id":"4255","type":"LinearAxis"},{"attributes":{},"id":"4256","type":"BasicTicker"},{"attributes":{"axis":{"id":"4255"},"ticker":null},"id":"4258","type":"Grid"},{"attributes":{},"id":"4553","type":"BasicTickFormatter"},{"attributes":{"end":12.899176,"start":-6.115976},"id":"3812","type":"Range1d"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"3847"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3848"},"selection_glyph":null,"view":{"id":"3850"}},"id":"3849","type":"GlyphRenderer"},{"attributes":{"axis":{"id":"4259"},"dimension":1,"ticker":null},"id":"4262","type":"Grid"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"__ECDF_theta[0]"}},"id":"3852","type":"Circle"},{"attributes":{},"id":"4260","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"__ECDF_theta[0]"}},"id":"3848","type":"Circle"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"__ECDF_tau[0]"}},"id":"4287","type":"Circle"},{"attributes":{},"id":"4698","type":"UnionRenderers"},{"attributes":{},"id":"4269","type":"ResetTool"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"3947"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3948"},"selection_glyph":null,"view":{"id":"3950"}},"id":"3949","type":"GlyphRenderer"},{"attributes":{},"id":"4699","type":"Selection"},{"attributes":{"overlay":{"id":"4271"}},"id":"4264","type":"BoxZoomTool"},{"attributes":{},"id":"4263","type":"PanTool"},{"attributes":{"source":{"id":"3809"}},"id":"3850","type":"CDSView"},{"attributes":{},"id":"4265","type":"WheelZoomTool"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"3852"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3853"},"selection_glyph":null,"view":{"id":"3855"}},"id":"3854","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"4270"}},"id":"4266","type":"BoxSelectTool"},{"attributes":{},"id":"3861","type":"LinearScale"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"__ECDF_theta[0]"}},"id":"3853","type":"Circle"},{"attributes":{"overlay":{"id":"4272"}},"id":"4267","type":"LassoSelectTool"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"3892","type":"Circle"},{"attributes":{"align":"end","below":[{"id":"3865"}],"center":[{"id":"3868"},{"id":"3872"}],"frame_height":150,"frame_width":150,"left":[{"id":"3869"}],"renderers":[{"id":"3894"},{"id":"3899"},{"id":"3904"}],"title":{"id":"4550"},"toolbar":{"id":"3883"},"toolbar_location":null,"x_range":{"id":"3812"},"x_scale":{"id":"3861"},"y_range":{"id":"3907"},"y_scale":{"id":"3863"}},"id":"3856","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"3863","type":"LinearScale"},{"attributes":{"source":{"id":"3810"}},"id":"3855","type":"CDSView"},{"attributes":{},"id":"4555","type":"BasicTickFormatter"},{"attributes":{},"id":"3878","type":"SaveTool"},{"attributes":{},"id":"3821","type":"BasicTicker"},{"attributes":{},"id":"3830","type":"WheelZoomTool"},{"attributes":{},"id":"3879","type":"ResetTool"},{"attributes":{"toolbars":[{"id":"3838"},{"id":"3883"},{"id":"3933"},{"id":"3978"},{"id":"4028"},{"id":"4078"},{"id":"4123"},{"id":"4173"},{"id":"4223"},{"id":"4273"},{"id":"4318"},{"id":"4368"},{"id":"4418"},{"id":"4468"},{"id":"4518"}],"tools":[{"id":"3828"},{"id":"3829"},{"id":"3830"},{"id":"3831"},{"id":"3832"},{"id":"3833"},{"id":"3834"},{"id":"3873"},{"id":"3874"},{"id":"3875"},{"id":"3876"},{"id":"3877"},{"id":"3878"},{"id":"3879"},{"id":"3923"},{"id":"3924"},{"id":"3925"},{"id":"3926"},{"id":"3927"},{"id":"3928"},{"id":"3929"},{"id":"3968"},{"id":"3969"},{"id":"3970"},{"id":"3971"},{"id":"3972"},{"id":"3973"},{"id":"3974"},{"id":"4018"},{"id":"4019"},{"id":"4020"},{"id":"4021"},{"id":"4022"},{"id":"4023"},{"id":"4024"},{"id":"4068"},{"id":"4069"},{"id":"4070"},{"id":"4071"},{"id":"4072"},{"id":"4073"},{"id":"4074"},{"id":"4113"},{"id":"4114"},{"id":"4115"},{"id":"4116"},{"id":"4117"},{"id":"4118"},{"id":"4119"},{"id":"4163"},{"id":"4164"},{"id":"4165"},{"id":"4166"},{"id":"4167"},{"id":"4168"},{"id":"4169"},{"id":"4213"},{"id":"4214"},{"id":"4215"},{"id":"4216"},{"id":"4217"},{"id":"4218"},{"id":"4219"},{"id":"4263"},{"id":"4264"},{"id":"4265"},{"id":"4266"},{"id":"4267"},{"id":"4268"},{"id":"4269"},{"id":"4308"},{"id":"4309"},{"id":"4310"},{"id":"4311"},{"id":"4312"},{"id":"4313"},{"id":"4314"},{"id":"4358"},{"id":"4359"},{"id":"4360"},{"id":"4361"},{"id":"4362"},{"id":"4363"},{"id":"4364"},{"id":"4408"},{"id":"4409"},{"id":"4410"},{"id":"4411"},{"id":"4412"},{"id":"4413"},{"id":"4414"},{"id":"4458"},{"id":"4459"},{"id":"4460"},{"id":"4461"},{"id":"4462"},{"id":"4463"},{"id":"4464"},{"id":"4508"},{"id":"4509"},{"id":"4510"},{"id":"4511"},{"id":"4512"},{"id":"4513"},{"id":"4514"}]},"id":"4767","type":"ProxyToolbar"},{"attributes":{},"id":"3834","type":"ResetTool"},{"attributes":{"align":"end","below":[{"id":"3960"}],"center":[{"id":"3963"},{"id":"3967"}],"frame_height":150,"frame_width":150,"left":[{"id":"3964"}],"renderers":[{"id":"3989"},{"id":"3994"},{"id":"3999"}],"title":{"id":"4580"},"toolbar":{"id":"3978"},"toolbar_location":null,"x_range":{"id":"3812"},"x_scale":{"id":"3956"},"y_range":{"id":"4052"},"y_scale":{"id":"3958"}},"id":"3951","subtype":"Figure","type":"Plot"},{"attributes":{"fill_color":{"value":"black"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"__ECDF_theta[0]"}},"id":"3847","type":"Circle"},{"attributes":{"source":{"id":"3809"}},"id":"3945","type":"CDSView"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"3873"},{"id":"3874"},{"id":"3875"},{"id":"3876"},{"id":"3877"},{"id":"3878"},{"id":"3879"}]},"id":"3883","type":"Toolbar"},{"attributes":{},"id":"3828","type":"PanTool"},{"attributes":{"fill_alpha":{"value":0.044054980837377765},"fill_color":{"value":"black"},"line_alpha":{"value":0.044054980837377765},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"3987","type":"Circle"},{"attributes":{"text":""},"id":"4704","type":"Title"},{"attributes":{"source":{"id":"3810"}},"id":"3950","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"__ECDF_theta[1]"}},"id":"3948","type":"Circle"},{"attributes":{},"id":"3870","type":"BasicTicker"},{"attributes":{"data_source":{"id":"3809"},"glyph":{"id":"3942"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3943"},"selection_glyph":null,"view":{"id":"3945"}},"id":"3944","type":"GlyphRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4270","type":"BoxAnnotation"},{"attributes":{},"id":"3825","type":"BasicTicker"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"__ECDF_theta[1]"}},"id":"3947","type":"Circle"},{"attributes":{"align":"end","below":[{"id":"3820"}],"center":[{"id":"3823"},{"id":"3827"}],"frame_height":150,"frame_width":150,"left":[{"id":"3824"}],"renderers":[{"id":"3849"},{"id":"3854"}],"title":{"id":"4536"},"toolbar":{"id":"3838"},"toolbar_location":null,"x_range":{"id":"3812"},"x_scale":{"id":"3816"},"y_range":{"id":"3814"},"y_scale":{"id":"3818"}},"id":"3811","subtype":"Figure","type":"Plot"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"__ECDF_theta[1]"}},"id":"3943","type":"Circle"},{"attributes":{"overlay":{"id":"3836"}},"id":"3829","type":"BoxZoomTool"},{"attributes":{},"id":"4707","type":"BasicTickFormatter"},{"attributes":{},"id":"3833","type":"SaveTool"},{"attributes":{},"id":"3816","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"4271","type":"BoxAnnotation"},{"attributes":{"axis_label":"ECDF","formatter":{"id":"4539"},"ticker":{"id":"3825"}},"id":"3824","type":"LinearAxis"},{"attributes":{},"id":"3818","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"3880","type":"BoxAnnotation"},{"attributes":{"end":1.02,"start":-0.02},"id":"3814","type":"Range1d"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"3828"},{"id":"3829"},{"id":"3830"},{"id":"3831"},{"id":"3832"},{"id":"3833"},{"id":"3834"}]},"id":"3838","type":"Toolbar"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"4272","type":"PolyAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"3881","type":"BoxAnnotation"},{"attributes":{"axis":{"id":"3869"},"dimension":1,"ticker":null},"id":"3872","type":"Grid"},{"attributes":{"overlay":{"id":"3882"}},"id":"3877","type":"LassoSelectTool"},{"attributes":{},"id":"4709","type":"BasicTickFormatter"},{"attributes":{"overlay":{"id":"3880"}},"id":"3876","type":"BoxSelectTool"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"3882","type":"PolyAnnotation"},{"attributes":{},"id":"3875","type":"WheelZoomTool"},{"attributes":{},"id":"4560","type":"UnionRenderers"},{"attributes":{},"id":"3866","type":"BasicTicker"},{"attributes":{},"id":"4561","type":"Selection"},{"attributes":{"formatter":{"id":"4555"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"3866"}},"id":"3865","type":"LinearAxis"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"__ECDF_tau[0]"}},"id":"4288","type":"Circle"},{"attributes":{"axis":{"id":"3865"},"ticker":null},"id":"3868","type":"Grid"},{"attributes":{"axis_label":"theta[1]","formatter":{"id":"4553"},"ticker":{"id":"3870"}},"id":"3869","type":"LinearAxis"},{"attributes":{},"id":"3873","type":"PanTool"},{"attributes":{"data_source":{"id":"3810"},"glyph":{"id":"4287"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4288"},"selection_glyph":null,"view":{"id":"4290"}},"id":"4289","type":"GlyphRenderer"},{"attributes":{"align":"end","below":[{"id":"4300"}],"center":[{"id":"4303"},{"id":"4307"}],"frame_height":150,"frame_width":150,"left":[{"id":"4304"}],"renderers":[{"id":"4329"},{"id":"4334"},{"id":"4339"}],"title":{"id":"4688"},"toolbar":{"id":"4318"},"toolbar_location":null,"x_range":{"id":"3812"},"x_scale":{"id":"4296"},"y_range":{"id":"4492"},"y_scale":{"id":"4298"}},"id":"4291","subtype":"Figure","type":"Plot"},{"attributes":{"source":{"id":"3810"}},"id":"4290","type":"CDSView"}],"root_ids":["4769"]},"title":"Bokeh Application","version":"2.2.3"}};n”, ” var render_items = [{"docid":"1733cb42-aafb-4881-9f43-8a7af1ba911d","root_ids":["4769"],"roots":{"4769":"26395559-aa27-4814-848b-49bbf9bbb5ca"}}];n”, ” root.Bokeh.embed.embed_items_notebook(docs_json, render_items);n”, “n”, ” }n”, ” if (root.Bokeh !== undefined) {n”, ” embed_document(root);n”, ” } else {n”, ” var attempts = 0;n”, ” var timer = setInterval(function(root) {n”, ” if (root.Bokeh !== undefined) {n”, ” clearInterval(timer);n”, ” embed_document(root);n”, ” } else {n”, ” attempts++;n”, ” if (attempts > 100) {n”, ” clearInterval(timer);n”, ” console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");n”, ” }n”, ” }n”, ” }, 10, root)n”, ” }n”, “})(window);”
], “application/vnd.bokehjs_exec.v0+json”: “”
}, “metadata”: {
- “application/vnd.bokehjs_exec.v0+json”: {
“id”: “4769”
}
}, “output_type”: “display_data”
}
], “source”: [
“bokeh.io.show(n”, ” bebi103.viz.corner(n”, ” samples,n”, ” parameters=["theta[0]", "theta[1]", "rho", "tau[0]", "tau[1]"],n”, ” plot_ecdf=True,n”, ” show_contours=True,n”, ” )n”, “)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“## Simulation-based calibration (SBC)n”, “n”, “In a [principled Bayesian workflow](https://betanalpha.github.io/assets/case_studies/principled_bayesian_workflow.html), simulation-based calibration (SBC) is a useful tool to identify pathologies in a generative model and in the sampler’s ability to draw samples from it. The procedure is laid out in [Talts, et al., 2018](https://arxiv.org/abs/1804.06788), and is described in the [Stan manual](https://mc-stan.org/docs/2_24/stan-users-guide/simulation-based-calibration.html).n”, “n”, “Briefly, the procedure is:n”, “n”, “1. Draw a parameter set θ out of the prior. n”, “2. Use θ to draw a data set y out of the likelihood.n”, “3. Perform MCMC sampling of the posterior using y as if it were the actual measured data set. Draw L MCMC samples of the parameters.n”, “4. Do steps 1-3 N times (hundreds to a thousand is usually a good number).n”, “n”, “For each of these calculations, you should run diagnostics to make sure the effective sample size, Rhat, etc., are within acceptable ranges. You can also compute z-scores (a measure of how well the MCMC samples reveal the ground truth), shrinkage (how informative the data can be), and rank statistics (used to check sampler performance). Please see the [Talts, et al. paper](https://arxiv.org/abs/1804.06788) for details on these quantities and their interpretation. Our focus here is how to use the bebi103.stan.sbc() function to perform the analysis and compute these quantities.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Example modeln”, “n”, “We have already seen in the example so far that we have divergences and the sampler does not seem to be able to sample small values of tau[0]. We will therefore write a new Stan program where we have noncentered parameters. The Stan model is:n”, “n”, “
`stan\n", "data {\n", " // Total number of data points\n", " int N;\n", "\n", " // Number of entries in each level of the hierarchy\n", " int J_1;\n", "\n", " //Index array to keep track of hierarchical structure\n", " int index_1[N];\n", "\n", " // The measurements\n", " real x[N];\n", " real y[N];\n", "}\n", "\n", "\n", "transformed data {\n", " // Data are two-dimensional, so store in a vector\n", " vector[2] xy[N];\n", " for (i in 1:N) {\n", " xy[i, 1] = x[i];\n", " xy[i, 2] = y[i];\n", " }\n", "}\n", "\n", "\n", "parameters {\n", " // Hyperparameters level 0\n", " vector[2] theta;\n", "\n", " // How hyperparameters vary\n", " vector<lower=0>[2] tau;\n", "\n", " // Parameters\n", " vector<lower=0>[2] sigma;\n", " real<lower=-1, upper=1> rho;\n", "\n", " // Noncentered parameters\n", " vector[2] theta_1_noncentered[J_1];\n", "}\n", "\n", "\n", "transformed parameters {\n", " // Covariance matrix for likelihood\n", " matrix[2, 2] Sigma = [\n", " [sigma[1]^2, rho * sigma[1] * sigma[2]], \n", " [rho * sigma[1] * sigma[2], sigma[2]^2 ]\n", " ];\n", "\n", " // Center parameters\n", " vector[2] theta_1[J_1];\n", " for (i in 1:J_1) {\n", " theta_1[i] = theta + tau .* theta_1_noncentered[i]; \n", " }\n", "}\n", "\n", "\n", "model {\n", " // Hyperpriors\n", " theta ~ normal(5, 5);\n", " tau ~ normal(0, 10);\n", "\n", " // Priors\n", " theta_1_noncentered ~ multi_normal([0, 0], [[1, 0], [0, 1]]);\n", " sigma ~ normal(0, 10);\n", " rho ~ uniform(-1, 1);\n", "\n", " // Likelihood\n", " for (i in 1:N) {\n", " xy[i] ~ multi_normal(theta_1[index_1[i]], Sigma);\n", " }\n", "}\n", "\n", "\n", "generated quantities {\n", " real x_ppc[N];\n", " real y_ppc[N];\n", " real log_lik[N];\n", "\n", " {\n", " vector[2] xy_ppc;\n", "\n", " for (i in 1:N) {\n", " xy_ppc = multi_normal_rng(theta_1[index_1[i]], Sigma);\n", " log_lik[i] = multi_normal_lpdf(xy_ppc | theta_1[index_1[i]], Sigma);\n", " x_ppc[i] = xy_ppc[1];\n", " y_ppc[i] = xy_ppc[2];\n", " }\n", " }\n", "}\n", "`n”, “n”, “Let’s go ahead and compile the model and draw some samples just to see if it alleviated the problems with divergences. We will use extra warmup to make sure the chains are achieving stationarity.”]
}, {
“cell_type”: “code”, “execution_count”: 22, “metadata”: {}, “outputs”: [], “source”: [
“with bebi103.stan.disable_logging():n”, ” sm_nc = cmdstanpy.CmdStanModel(stan_file="sample_model_noncentered.stan")n”, “n”, ” samples_nc = sm_nc.sample(n”, ” data=data,n”, ” chains=4,n”, ” iter_warmup=2000,n”, ” iter_sampling=1000,n”, ” adapt_delta=0.95,n”, ” seed=3252,n”, ” )n”, “n”, “samples_nc = az.from_cmdstanpy(n”, ” samples_nc, posterior_predictive=["x_ppc", "y_ppc"], log_likelihood="log_lik"n”, “)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“And we can check a corner plot to check for divergences.”
]
}, {
“cell_type”: “code”, “execution_count”: 23, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“n”, “n”, “n”, “n”, “n”, “n”, ” <div class="bk-root" id="a254c4b7-acca-4641-b90e-78025529cd57" data-root-id="6810"></div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“(function(root) {n”, ” function embed_document(root) {n”, ” n”, ” var docs_json = {"ff5a787e-b15c-4fba-8666-165f96a1a51e":{"roots":{"references":[{"attributes":{"children":[{"id":"6809"},{"id":"6807"}]},"id":"6810","type":"Row"},{"attributes":{"formatter":{"id":"6704"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"6267"}},"id":"6266","type":"LinearAxis"},{"attributes":{},"id":"6267","type":"BasicTicker"},{"attributes":{"text":""},"id":"6607","type":"Title"},{"attributes":{"align":"end","below":[{"id":"6266"}],"center":[{"id":"6269"},{"id":"6273"}],"frame_height":150,"frame_width":150,"left":[{"id":"6270"}],"renderers":[{"id":"6295"},{"id":"6300"}],"title":{"id":"6699"},"toolbar":{"id":"6284"},"toolbar_location":null,"x_range":{"id":"6044"},"x_scale":{"id":"6262"},"y_range":{"id":"6349"},"y_scale":{"id":"6264"}},"id":"6257","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"5962","type":"LinearScale"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"6338","type":"Circle"},{"attributes":{},"id":"6312","type":"BasicTicker"},{"attributes":{"axis":{"id":"6311"},"ticker":null},"id":"6314","type":"Grid"},{"attributes":{},"id":"6798","type":"BasicTickFormatter"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6449"},{"id":"6450"},{"id":"6451"},{"id":"6452"},{"id":"6453"},{"id":"6454"},{"id":"6455"}]},"id":"6459","type":"Toolbar"},{"attributes":{},"id":"6742","type":"BasicTickFormatter"},{"attributes":{"toolbars":[{"id":"5984"},{"id":"6024"},{"id":"6069"},{"id":"6109"},{"id":"6154"},{"id":"6199"},{"id":"6239"},{"id":"6284"},{"id":"6329"},{"id":"6374"},{"id":"6414"},{"id":"6459"},{"id":"6504"},{"id":"6549"},{"id":"6594"}],"tools":[{"id":"5974"},{"id":"5975"},{"id":"5976"},{"id":"5977"},{"id":"5978"},{"id":"5979"},{"id":"5980"},{"id":"6014"},{"id":"6015"},{"id":"6016"},{"id":"6017"},{"id":"6018"},{"id":"6019"},{"id":"6020"},{"id":"6059"},{"id":"6060"},{"id":"6061"},{"id":"6062"},{"id":"6063"},{"id":"6064"},{"id":"6065"},{"id":"6099"},{"id":"6100"},{"id":"6101"},{"id":"6102"},{"id":"6103"},{"id":"6104"},{"id":"6105"},{"id":"6144"},{"id":"6145"},{"id":"6146"},{"id":"6147"},{"id":"6148"},{"id":"6149"},{"id":"6150"},{"id":"6189"},{"id":"6190"},{"id":"6191"},{"id":"6192"},{"id":"6193"},{"id":"6194"},{"id":"6195"},{"id":"6229"},{"id":"6230"},{"id":"6231"},{"id":"6232"},{"id":"6233"},{"id":"6234"},{"id":"6235"},{"id":"6274"},{"id":"6275"},{"id":"6276"},{"id":"6277"},{"id":"6278"},{"id":"6279"},{"id":"6280"},{"id":"6319"},{"id":"6320"},{"id":"6321"},{"id":"6322"},{"id":"6323"},{"id":"6324"},{"id":"6325"},{"id":"6364"},{"id":"6365"},{"id":"6366"},{"id":"6367"},{"id":"6368"},{"id":"6369"},{"id":"6370"},{"id":"6404"},{"id":"6405"},{"id":"6406"},{"id":"6407"},{"id":"6408"},{"id":"6409"},{"id":"6410"},{"id":"6449"},{"id":"6450"},{"id":"6451"},{"id":"6452"},{"id":"6453"},{"id":"6454"},{"id":"6455"},{"id":"6494"},{"id":"6495"},{"id":"6496"},{"id":"6497"},{"id":"6498"},{"id":"6499"},{"id":"6500"},{"id":"6539"},{"id":"6540"},{"id":"6541"},{"id":"6542"},{"id":"6543"},{"id":"6544"},{"id":"6545"},{"id":"6584"},{"id":"6585"},{"id":"6586"},{"id":"6587"},{"id":"6588"},{"id":"6589"},{"id":"6590"}]},"id":"6808","type":"ProxyToolbar"},{"attributes":{"formatter":{"id":"6718"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"6312"}},"id":"6311","type":"LinearAxis"},{"attributes":{},"id":"5964","type":"LinearScale"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"6253","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"6249","type":"Circle"},{"attributes":{"axis":{"id":"6315"},"dimension":1,"ticker":null},"id":"6318","type":"Grid"},{"attributes":{"source":{"id":"5955"}},"id":"6251","type":"CDSView"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6248"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6249"},"selection_glyph":null,"view":{"id":"6251"}},"id":"6250","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6253"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6254"},"selection_glyph":null,"view":{"id":"6256"}},"id":"6255","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"6254","type":"Circle"},{"attributes":{},"id":"6264","type":"LinearScale"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"6293","type":"Circle"},{"attributes":{},"id":"6262","type":"LinearScale"},{"attributes":{"source":{"id":"5956"}},"id":"6256","type":"CDSView"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6238","type":"PolyAnnotation"},{"attributes":{"text":""},"id":"6795","type":"Title"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6456","type":"BoxAnnotation"},{"attributes":{"overlay":{"id":"6236"}},"id":"6232","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"6238"}},"id":"6233","type":"LassoSelectTool"},{"attributes":{},"id":"6231","type":"WheelZoomTool"},{"attributes":{"data_source":{"id":"5992"},"glyph":{"id":"5993"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"5994"},"selection_glyph":null,"view":{"id":"5996"}},"id":"5995","type":"GlyphRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6237","type":"BoxAnnotation"},{"attributes":{"source":{"id":"6207"}},"id":"6211","type":"CDSView"},{"attributes":{"formatter":{"id":"6716"},"major_label_text_font_size":"0pt","ticker":{"id":"6316"}},"id":"6315","type":"LinearAxis"},{"attributes":{"align":"end","below":[{"id":"6221"}],"center":[{"id":"6224"},{"id":"6228"}],"frame_height":150,"frame_width":150,"left":[{"id":"6225"}],"renderers":[{"id":"6250"},{"id":"6255"}],"title":{"id":"6685"},"toolbar":{"id":"6239"},"toolbar_location":null,"x_range":{"id":"5959"},"x_scale":{"id":"6217"},"y_range":{"id":"6349"},"y_scale":{"id":"6219"}},"id":"6212","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"6219","type":"LinearScale"},{"attributes":{"text":""},"id":"6739","type":"Title"},{"attributes":{"data":{"chain__":[1,1,1,1,1,2,3,3,3],"diverging__":[true,true,true,true,true,true,true,true,true],"draw__":[120,122,125,126,134,256,16,355,410],"index":[1120,1122,1125,1126,1134,2256,3016,3355,3410],"rho":{"__ndarray__":"3UCBd/Jp5z/dQIF38mnnP91AgXfyaec/3UCBd/Jp5z+L/PohNljnPwpoImx4euE/98jmqnkO5T+a0vpbAnDkP3k9mBQfn+Y/","dtype":"float64","order":"little","shape":[9]},"tau[0]":{"__ndarray__":"+MJkqmB0MkD4wmSqYHQyQPjCZKpgdDJA+MJkqmB0MkBkO99PjecxQHXN5JttrgdAZk6XxcSmBUBIMqt3uJ3jP/pgGRu62eY/","dtype":"float64","order":"little","shape":[9]},"tau[1]":{"__ndarray__":"jNtoAG8BH0CM22gAbwEfQIzbaABvAR9AjNtoAG8BH0BmMbH5uLYfQDarPldbURtA4pLjTumgAkCtUQ/R6M4MQNc07zhFhw9A","dtype":"float64","order":"little","shape":[9]},"theta[0]":{"__ndarray__":"3qtWJvxS+j/eq1Ym/FL6P96rVib8Uvo/3qtWJvxS+j8r9pfdkwf9P/pEniRdcxJAAFeyYyOQ97+Yo8fvbXr/Pxo09E9w8QpA","dtype":"float64","order":"little","shape":[9]},"theta[1]":{"__ndarray__":"u9Bcp5HWHUC70FynkdYdQLvQXKeR1h1Au9Bcp5HWHUD4/DBCeLQdQDPcgM8PgyJAuJIdG4GYIEB2w7ZFmY0XQM8xIHu9Ow9A","dtype":"float64","order":"little","shape":[9]}},"selected":{"id":"6628"},"selection_policy":{"id":"6627"}},"id":"5956","type":"ColumnDataSource"},{"attributes":{},"id":"6217","type":"LinearScale"},{"attributes":{"overlay":{"id":"6237"}},"id":"6230","type":"BoxZoomTool"},{"attributes":{},"id":"6229","type":"PanTool"},{"attributes":{"start":0.0},"id":"5957","type":"DataRange1d"},{"attributes":{"align":"end","below":[{"id":"5966"}],"center":[{"id":"5969"},{"id":"5973"}],"frame_height":150,"frame_width":150,"left":[{"id":"5970"}],"renderers":[{"id":"5995"}],"title":{"id":"6607"},"toolbar":{"id":"5984"},"toolbar_location":null,"x_range":{"id":"5959"},"x_scale":{"id":"5962"},"y_range":{"id":"5957"},"y_scale":{"id":"5964"}},"id":"5958","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"6226","type":"BasicTicker"},{"attributes":{"formatter":{"id":"6612"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"5967"}},"id":"5966","type":"LinearAxis"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6457","type":"BoxAnnotation"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"6208","type":"Line"},{"attributes":{"end":10.3966942,"start":-2.5146042},"id":"5959","type":"Range1d"},{"attributes":{},"id":"6234","type":"SaveTool"},{"attributes":{"formatter":{"id":"6690"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"6222"}},"id":"6221","type":"LinearAxis"},{"attributes":{},"id":"6222","type":"BasicTicker"},{"attributes":{"axis_label":"tau[0]","formatter":{"id":"6688"},"ticker":{"id":"6226"}},"id":"6225","type":"LinearAxis"},{"attributes":{"axis":{"id":"6221"},"ticker":null},"id":"6224","type":"Grid"},{"attributes":{},"id":"6316","type":"BasicTicker"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"6209","type":"Line"},{"attributes":{"axis":{"id":"6225"},"dimension":1,"ticker":null},"id":"6228","type":"Grid"},{"attributes":{},"id":"6734","type":"Selection"},{"attributes":{},"id":"6733","type":"UnionRenderers"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6328","type":"PolyAnnotation"},{"attributes":{"text":""},"id":"6645","type":"Title"},{"attributes":{},"id":"6626","type":"Selection"},{"attributes":{},"id":"6690","type":"BasicTickFormatter"},{"attributes":{},"id":"6625","type":"UnionRenderers"},{"attributes":{"text":""},"id":"6633","type":"Title"},{"attributes":{},"id":"6648","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6326","type":"BoxAnnotation"},{"attributes":{"text":""},"id":"6699","type":"Title"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6021","type":"BoxAnnotation"},{"attributes":{"text":""},"id":"6659","type":"Title"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6152","type":"BoxAnnotation"},{"attributes":{},"id":"6662","type":"BasicTickFormatter"},{"attributes":{},"id":"6627","type":"UnionRenderers"},{"attributes":{},"id":"6640","type":"Selection"},{"attributes":{},"id":"6702","type":"BasicTickFormatter"},{"attributes":{},"id":"6628","type":"Selection"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6404"},{"id":"6405"},{"id":"6406"},{"id":"6407"},{"id":"6408"},{"id":"6409"},{"id":"6410"}]},"id":"6414","type":"Toolbar"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6151","type":"BoxAnnotation"},{"attributes":{},"id":"6638","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6023","type":"PolyAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6327","type":"BoxAnnotation"},{"attributes":{},"id":"6650","type":"BasicTickFormatter"},{"attributes":{},"id":"6639","type":"UnionRenderers"},{"attributes":{},"id":"6664","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6022","type":"BoxAnnotation"},{"attributes":{"overlay":{"id":"6413"}},"id":"6408","type":"LassoSelectTool"},{"attributes":{},"id":"6410","type":"ResetTool"},{"attributes":{},"id":"6636","type":"BasicTickFormatter"},{"attributes":{"text":""},"id":"6673","type":"Title"},{"attributes":{},"id":"6409","type":"SaveTool"},{"attributes":{"data":{"chain__":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"diverging__":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false],"draw__":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,123,124,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"index":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1121,1123,1124,1127,1128,1129,1130,1131,1132,1133,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999],"rho":{"__ndarray__":"yF2EKcql3z+2ateEtEbkP/j8MEJ4tOM/SUp6GFod4z+hvfp46LvlPxDK+ziaI+A/ryZPWU1X4D9afuAqTyDmP91fPe5breM/JA7ZQLrY3z980okEU83bP5PheD4DauE/XJGYoIbv4j8DQuvhy0TjP7B1qRH6md8/a7bykv/J5j+yZI7lXfXXP+56aYoAJ+Y/bJVgcTjz3T8mqrcGtkrcPyj0+pP43OU/+0DyzqEM3T8MrOP4oVLlP+V620yF+OQ/rTHohNBB5D9PrimQ2dnjP4gwfhr3ZuY/WRMLfEU35j9EpKZdTDPkP7xbWaKzzOI/uK0tPC+V4z8kC5jArbvjP4FDqFKzh+E/E0azsn3I4z90RpT2Bl/lPwzKNJpcDOE/RMGMKVjj4T+iYTHqWnvgPz1EozuIneI/OMDMd/CT5j95W+m12VjhP3PaU3JObOI/Yf4KmSsD4T9WKT3TS4zeP8fyrnrAPN4/h99Nt+yQ4z9IFcWrrG3nP+atug7VFOA/Ci5W1GAa5j/GMZI9Qk3nPw+Yh0z5EN8/vrwA++hU5T/9ogT9hZ7iP4xkj1AzpOM/RKZ8CKpG2T/YEByXcdPkP1IrTN9rCOE/ZHPVPEfk4z9C0qdV9IflP0UuOIO/X+g/IhlybD3D4z9G7BNAMTLhPw3H8xlQb+E/HcwmwLD84T9gVijS/RzjP2nGouns5OU/G2K85lUd5T/dXPxtT5DlP3sS2JyD5+E/BYnt7gG64z/3AN2XM9vhP46PFmcM8+M/JxHhXwSN3T/0ixL0F3rlP04MycnErdw/VK2FWWjn4T9NDwpK0UriP3Zu2ozTENg/pWYPtALD4T+1FfvL7snWPxebVgqB3OM/8UbmkT+Y4z+CqzyBsNPhP3eBkgIL4OE/oGtfQC/c5D8TnPpA8k7mP+PD7GXb6eE/0a3X9KCg5j+kVMITev3jP5kuxOqPMOc/ChNGs7J95j+EuHL2zmjlP+s7vyhB/+Q/XK0Tl+MV5j9Ro5BkVu/fP844DVGFv+c/dqkR+pn66D9y4UBIFrDlP2ITmbnA5eY/W7BUF/Ay1D/iWYKMgIrgPw1v1uB9Vdo/bjDUYYXb5D9XB0Dc1SvkP+T1YFJ8fOM/94+F6BA44D843EduTbrkPykg7X+AteE/opi8AWa+5D8uq7AZ4ALhP6gd/pqs0eI/J71vfO0Z4z/FU480uK3hP80C7Q4pBuQ/uMt+3elO5D/l7nN8tLjhP0D6Jk2DIuQ/JCu/DMaI4j+aB7DIrx/jPxA+lGjJY+I/up7ouvCD4z+FJR5QNuXhPxsN4C2QIOM/ryMO2UC63z956pEGt7XjP19gVijS/eE/UMb4MHvZ3D+IvOXqxybgP1BWDFcHwOU/VRfwMsNG5j/xD1t6NNXhPxiYFYp0v+Y/VWr2QCuw5D83UrZI2g3jPw+dnndjweI/NPJ5xVOP4D8dPBOaJBbjPxB39SoyuuU/hleSPNf35D+++njou1vkP86o+Sr52OU/3SVxVkRN5z+9jjhkA+nbP/w5BfnZyOQ/6tDpeTcW5D/IJvkRv+LhP1VP5h99E+Y/Zf1mYroQ5T/QXn089F3iP4HNOXgmtOI/xVVl3xVB4z/dJ0cBomDhPyVZh6OrdOQ/ppnudVLf5D/wUX+9woLmP7ZpbK8FPeY/61bPSe+b4j9e8j/5u/fmP4TVWMLaGOI//mX35GEh5T99PPTdrSziP4RKXMe44uA/ZjGx+bg23z9jl6jeGtjjP6fLYmLz8eQ/fsfw2M9i5j8BNEqX/qXhPyBj7lpCvuE/TraBO1Cn5T/zyYrh6oDiP7lxi/m5ods/ym/RyVLr5D94fHvXoC/gP8rcfCO6Z9w//YaJBin44D8zwAXZsvzmP3hGW5VEduI/Zf1mYrqQ4z+SJAhXQCHlP76/QXv18eM/PSr+74iK5T8cQSrFjsbgPz0Og/krZOQ/EJGadjFN5D+e8BKc+sDiP65+bJIf8eI/dxN80/TZ4z8xJZLoZRTlP83MzMzMzN8/9pUH6Sly3T8VjiCVYkfiP2bbaWtEsOQ/ETXR56OM5j+mKQKc3kXnP/flzHaFPuM/AcKHEi354z9ZbJOKxlrkP/UR+MPP/+A/blLRWPs75D9XIlD9g8jhP/34S4v6JOY/y9jQzf5A5z8mOPWB5J3lP/PHtDaNbec/7Bfshm2L4z8hdqbQeQ3kP+tySkBMQuM/Sg1tADYg5T+/C1uzlRfiP1Qe3QiLCuI/k8ZoHVVN5z9UxOkkW93nPyI4LuOmhuA/shNeglOf4j/rbwnAP6XqP1+3CIz1jeA/zVoKSPuf4z+si9toAG/kP26JXHAGf+I/pMUZw5wg4z8vw3+6gYLjP0Kz696KxOI/qFFIMqv34z8IA8+9h0vjP9ttF5rrtOI/XvHUIw3u4j+ZZOQs7GngP4O/X8yWrN8/euOkMO/x5D9McVXZd8XkP3ehuU4jreI/7Z48LNSa4z9SQxuADQjjP/CICtXNxeI/QUXVr3Q+5j+0sKcd/prlP6zijcwjf+Q/QWMmUS/44z8gDDz3Hi7kP5yopbkVwt4/d554zhaQ6D9qSx3k9WDcPyvdXWdD/uY/1JgQc0nV3T8IHXQJh97ePx3oobYNo+Q/oKhsWFPZ4T9MNh5ssdvfPzG0OjlDcd8/G/LPDOID2j8naJPDJx3jP2DJVSx+0+A/fm/Tn/1I2z/z5nCt9rDnP3eHFAMkGuQ/3lZ6bTZW5D99emzLgDPlP8puZvSjYeE/5SuBlNi15T84pFGBk+3iP9jTDn9NVuM/sMka9RCN4D+O6QlLPCDiPzlhwmhWNuE/22ysxDwr4z9/MzFdiFXmPyjXFMjsLN4/ysUYWMfx3j+pEfqZet3kP3JtqBjnb+E/LNMvEW+d5D/hQEgWMIHfP8hfWtQnuec/y7kUV5V95j8RNjy9UpbdP+gv9IjR8+Q/LO+qB8zD5D8JbM7BM6HVP810r5P6MuY/8dk6ONgb4T/xSScSTDXdP04n2epyStg/8rImFviK3D+7XpoiwOnbP4Y5QZscvuY/aVTgZBs45D8UlKKVewHoP4Hs9e6P9+c/sOJUa2GW5j8L7ZxmgXbnP+OL9nghneM/x/Xv+szZ4z+vsrYpHpflP6VlpN5TueE/XtvbLcmB4z8qrFRQUfXiP5vLDYY6LOc/6YAk7NtJ4j9oXg6775jnPxnlmZfD7tc/Rz1EozsI5z9QUfUrnQ/VPyXJc30fjuI/TmGlgoqq4z9wlpLlJBTmP80hqYWSyd4/QKTfvg6c5D8svMtFfCfkPxReglMfyOQ/+DWSBOEK5T/9SXzuBPvjPzVeukkMguU/EEHV6NWA4j8tPgXAeAbmP4/FNqlorOE/UmStodTe4j95OleUEgLkPzPEsS5uo+M/h6WBH9Uw4z/Jqgg3GVXhP9i2KLNBpuE/6DBfXoB94T/ZBYNr7ujmPy9OfLWjOOU/WyiZnNoZ4j9uisdFtYjjP/lnBvGBHeI/36Y/+5Ei5T+gppat9UXdP6ipZWt9keE/226Cb5q+5D8cCMkCJvDhP+I9B5Yj5OI/3iHFAIkm4j8Og/krZC7jP3L9uz5z1t4/kWEVb2Se4j/5LM+DuzPhP+4m+Kbps+Q/C5qWWBmN5D8AxciSORblP8lYbf5f9eQ/LVqAttUs4j8m4q3zbxfgP/IjfsUaruY/s9DOaRZo5z88MIDwoUTnP7VRnQ5kPd8/RX9o5sm14T/4GoLjMu7gP5I+raI/NOE/sfm4NlQM5j84wMx38JPkP9SZe0j4XuQ/6YAk7NvJ5D9R9pZyvtjlP2e5bHTOz+I/gc8PI4RH5T+gibDh6ZXlP3x8QnbexuM/BVPNrKUA5T8Bpgwc0NLkPziCVIodjeI/F56Xio155j82ct2U8trnPzTXaaSl8t4/N8ZOeAlO4z9eS8gHPZviP8dLN4lBYOA/ar5KPnaX4j+WBRN/FPXgPwTltn2PeuM/beF5qdgY5T9UqdkDrcDgP0Vighq+hdc/qgzjbhCt5j93Loz0onbhP5yjjo6rkeQ/rP9zmC8v4j/hXS7iO7HhPxk4oKUrWOM/6+QMxR3v4T9bIhecwd/jP5IHIos0cec/O4kI/yJo5T9+HThnROniP6c+kLxzKOM/x0rMs5JW5D/pCyHn/f/kPwtfX+tSo+A/e4SaIVUU5T+l9bcE4J/eP+tvCcA/JeA/Obh0zHlG5D9evvVhvVHmPymV8IRe/+M/FakwthDk5D+X4T/dQIHkP7yQDg9h/N8/qByTxf1H3z/6muWy0TneP0LPZtXnauc/X9Gt1/Sg2T/9pNqn4zHgP9NKIZBLHOI/v36IDRbO4z+tvyUA/xThP4LknUMZquQ/qZ83Fakw3z+lFd9Q+OziPy8wKxTpfuA/6INlbOhm3T8wYwrWOJvfP1mGONbF7eE/JsXHJ2Tn5D/X2ZB/ZpDjP8GNlC2S9uM/k+ANaVTg4T8dVrjlIynmP21xjc9kf+M/7kJznUba4j98YMd/gSDjP951NuSfGeQ/KJ1IMNXM5D8b8zrikA3mP7kWLUDb6uE/lfCEXn8S4D8wuVFkraHgPyGP4EbKluI/wi/186ai4j+quHGL+bnjPzzbozfcx+I/pHGo34Ut5D8rhqsDIG7iPwDirl5FRuU/wVJdwMuM4z+ZR/5g4LnkP/rxlxb1yeA/zok9tI8V5j/ECOHRxpHnP27dzVMdcuQ/DcaIRKHl4T/GFKxxNp3jP1Gk+zkF+eM/oYZvYd144D+7050nnjPlPwd+VMN+z+M/R+Umamlu5D8lXTP5ZhvnP0cBomDGlOc/TkUqjC2E5z8fTfVk/tHiPxPSGoNOCOM/zhYQWg/f4z+jdr8K8N3ePzlDcceb/OM/++dpwCDp4z+xi6IHPgbpP4du9gfK7eM/Z7XAHhMp4z+XxFkRNVHgP8K9Mm/Vdec/3gN0X85s5j+IuaRquwnkP5q2f2WlyeM/R3L5D+k35D/UX6+w4H7iP/Jh9rLtNOQ/H0yKj09I5D+HbYsyG+TkP2mQgqeQK+Y/iCr8Gd6s4T/H1ciutIzkP87g7xezJeI//ACkNnFy5T+eYtUgzO3jP2sMOiF00OU/yhe0kIBR5D9VLlT+tbzlP/OOU3Qkl+Y/wyy0c5qF5T+eXb71Yb3fP6d1G9R+6+A/ndSXpZ2a5j8wEATI0DHgP7nCu1zEd+A/wD+lSpS93j88bCIzF7jkP8WRByKLNNs/mrUUkPY/5D8oJ9pVSPnkP4p2FVJ+0uQ/5zqNtFTe4z/h05y8yIThP0t4Qq8/ieM/HxSUopV72z+62/XSFIHnP7oQqz/CsOI/Hhmrzf+r4j/m6VxRSgjmPyKmRBK9jOU/BpylZDkJ5z9AiGTIsfXmPxqiCn+GN+I/pI6Oq5Fd4j+Z8Ev9vKneP5o+O+C64uM/4bIKmwEu5T+BJOzbSUTjP9P02QHXFeM//gxv1uB94z9cdoh/2FLjP0FHq1rS0eI/ZRniWBc34z+u82+X/brfPyV2bW+3JOU/wjHLngQ25j+/1xAcl3HhP2jnNAu0u+Y/H4ZWJ2eo4j9yNbIrLSPiPx4YQPhQouA/Tu53KAp04z9xk1FlGPfhP5NRZRh3g+E/KbFre7sl4D+GkPP+P87jP4/9LJYi+eI/CcOAJVcx4z9k6NhBJa7lP/Hz34PXLuY/y2Q4ns+A4j8VHF4QkZrnPz7nbtdL0+c/tVGdDmQ94D9iTWVR2EXnP1BVoYFYtuY/6Sec3Vom5T+ta7Qc6KHgPwrZeRubHeE/4bVLGw5L5D/wNm+cFGbhP4EiFjHsMOY/Quvhy0SR4z9fJ/VlaSfhP1qD91W5UOU/DmlU4GQb3j8dAHFXr6LjP0nW4egq3eI/fNXKhF/q4j/9v+rIkc7kPyGvB5PiY+A/rDyBsFOs4j+rX+l8eJbgPyi6LvzgfNs/HlIMkGgCzT8lQbgCCvXkP0rSNZNvttw/M95Wem224j/Ifat14nLiP/hwyXGndOE/yol2FVJ+5T8MPzifOtbgP2Zpp+Zyg+M/RS+jWG7p4D+dvMgE/JriP7ecS3FVWeM/J2iTwycd5T/+X3XkSGfkP+SghJm2f+M//fZ14JwR3z9Tlba4xmfeP3E9CtejcOY/u7VMhuP54z+14bA08KPgP9+pgHuev+I/Wg2Jeyx94j8XZTbIJCPiP+9zfLQ4Y+Y/j8ahfhe23D8LRiV1AhrnP7ZnlgSoKec/cCL6tfXT5T/wMVhxqjXnP0VkWMUbmeg/ptb7jXbc3z/tC+iFOxfiP7Ae963Wid0/5Xyx9+KL4j/4HFiOkAHoPzrrU47J4t0/nP2Bcts+5D8OEMzR4/fjP01nJ4Oj5OM/6x9EMuRY4z+FB82ue6vmP3Lfap24HOE/xXO2gNB65j8Og/krZC7mP7gFS3UBL+M/c9u+R/314z9MiSR6GcXlP9bllICYhOQ/nDHMCdpk4T981jVaDnTiP4C5Fi1A2+I/VTTW/s724j9E+1jBb8PhPwSuK2aEt+M/mUuqtpvg5j+1NSIYB5fmP8prJXSXROY/kwA1tWwt5j/qPCr+7wjhP6imJOtwdOM/jspN1NJc4j/6Jk2DovnmPyygUE8fAeE/DoRkARO44T9CIm3jT1TlP+7RG+4jN+M/JVzII7gR4j8m4q3zb5fiP8WQnEzcKt8/XyhgOxix5D+LijidZKvkP+axZmSQO+M/0/iFV5I84z/VWS2wx8TiP6n6lc6HZ+A/4KC9+nho4T9grG9gcqPkP+bpXFFKiOE/uoPYmUJn4T9kWMUbmUfdP5kqGJXUieQ/JEOOrWcI4z8JceXsndHdP3O6LCY2H+A/CB9KtORx4j+LiGLyBhjnP1Fmg0wyct0/ECBDxw4q5D8mVkYjn9fgP1aZKa2/JeA/dopVgzC33z88pBgg0QTlPzDXogVo2+I/yGDFqdZC5j8LKNTTR+DiP3+GN2vwPuM/ERrBxvXv4z9MpDSbx+HiP9nQzf5AueA/lzyelh+44j8/bypSYWzgPwckYd9OouI/srlqniNy4j9hGoaPiCnmP8SzBBkBFec/rVCk+zmF4T+lZaTeU7nhP9swCoLHt+Y/TKQ0m8dh5T84FakwthDmP5n091J40OI/d76fGi9d4j+vYBvxZLfhP1vNOuP74uM/OfBquTOT4z+mXrcIjPXhP9qPFJFhleI/ILQevkyU4T/tnGaBdgflP5t2Mc10r+A/FR+fkJ234T/p0yr6QzPiP72o3a8CfOU/r1qZ8Ev93z9DcFzGTY3jP9ldoKTAguI/MbJkjuVd4T82PSgoRSvlPyv2l92Th+M/c9cS8kHP4j8LfhtivGbhP9wSueAM/t0/onvWNVoO4z9XCRaHM7/gPyaN0TqqmuI/SDXs98Q64T8CLsiW5evjPxRZayi1F+M/+fauQV/65j/UtmEUBA/lP0cAN4sXi+I/UaG6ufhb4z+eflAXKZTcPw6g3/dv3uE/W3nJ/+Tv4T8WGLK61fPgP/rxlxb1SeM/c7hWe9iL4T8ddt8xPPblP1ovhnKiXeU/QiECDqHK4D9F8L+V7NjgP42ACkeQSuQ/MSQnE7eK4z+syVNW03XjP/qAQGfSJuQ/qz/CMGDJ4z8+sOO/QJDlP6n3VE57SuA/EkpfCDlv4D+6hhkaTwTlP1dgyOpWT+M/Ghh5WRML4z/XMEPjiSDfP7wkzoqoids/7dPxmIHK1j8G9phIaTbdP0AYeO493OA/pg7yejAp5D8uqdpugm/aP3jy6bEtg+I/5usy/Keb4T82Wg70UNvlP0kPQ6uTM98/f/j578Fr4D+9UpYhjvXiP9aQuMfSh+Q/bCOe7GZG4T9WRiOfV7ziP1TGv8+48OI/CRfyCG4k5D9xkuaPaW3hP/9Cjxg9t+Q/xY7GoX6X5D+OBYVBmcbkP7FtUWaDTOI/5nXEIRvI5j+Lcf4mFCLgPybjGMkeod8/VW03wTdN5T+NmNnnMcriP6mFksmpneM/A1slWBxO5j9ZFHZR9MDkP67xmeyfp+E/4978homG5D+utmJ/2b3gP1g33h0Zq+A/7X+AtWpX4z81RBX+DO/hP0AS9u0kouQ/5PVgUnz84T+r7Sb4pmngP0mfVtEfmuA/QznRrkLK4D/NdoU+WEbkP/8gkiHHVuU/ZtzUQPO54T9I4uXpXFHkP34AUps4OeM/dQMF3skn5D/2mh4UlKLhP/fq46Hvbuc/3dJqSNxj3j95PgPqzajgP90Ii4o4Hec/KQge39614z9lq8spAbHhPxzQ0hVsI+E/xF+TNeqh4z8y5q4l5APlPxd/2xMkNuU/Q3Vz8bc93z+WWu832nHjP9BefTz03eU/bmk1JO4x5j8tIorJG2DhP0AYeO49XOE/PfIHA8895j/6CPzh57/kP6OSOgFNBOI/dNAlHHqL4z+SkbOwpx3gP+mAJOzbSeY/uhRXlX1X2D+P3nAfuTXaPwM+P4wQHug/TwgddAkH4T/2su20NaLlP5mCNc6mo+A/Q8cOKnGd4T9SDJBoAsXoPwwHQrKAieA/mpXtQ95y5z8V4LvNG6fjP4DUJk7u9+Q/ibX4FADj4z+MvoI0Y1HkP9UhN8MN+OQ/ZY16iEZ30j8t7dRcbjDhPxN/FHXmnuE/KAtfX+tS4z/yW3Sy1PrkP09Y4gFl0+Y/zA2GOqxw5T+FKF/QQoLlPzz1SIPb2uI/ilkvhnIi4T8uknajj3nhPyjVPh2PmeU/rP9zmC8v5j8ExvoGJjfjPzhqhel7DeI/KNap8j2j4T/R5ji3CffnPyVATS1b6+c/i4nNx7Wh3j8DzlKynITlPz9YxoZu9t8/DD7NyYtM3j9AhSNIpdjqP667eapDbuU/TdpU3SMb4j82yvrNxHTgPxFvnX+7bOA/H4ZWJ2co5z/6JeKt82/iP9drelBQiuE/tcAeEylN4T+OPXsuU5PjPzXPEfkupds//n3GhQMh5j8eFf93RIXoP1eUEoJVdeU/w0oFFVU/4z9CIQIOocriPzAOLh1znuM/HO244XfT5T8zT64pkFnlP/ooIy4AjeM/nyCx3T1A4j/BHhMpzWbiP3I1sisto+U/jIUhcvp65z+0rWad8X3iP9QrZRniWOE/f2d79IZ75D95ru/DQcLjPxf03hgCAOQ/UyCzs+gd5j8UlKKVe4HnP6eSAaCKG+U/D0jCvp1E4T+VtyOcFrzkP52f4jjw6uY/Z5jaUgf54T9WmSmtv6XmPx10CYfe4uI/Ql4PJsXH4j+5HK9A9KTmP3Qprir7ruQ/A83n3O364D/batYZ3xfkP7LzNjY7UuI/Hqm+84sS5D89f9qoTofkP2nHDb+bbt4/Xi13ZoJh5D+2K/TBMrblP6ZiY15HHN4/zR5oBYYs5z89Qzhm2RPnP/VpFf2hmeI/IzKs4o3M4j/6tIr+0MzjPz//PXjt0uM/zzC1pQ5y5T9WYwlrY2zkP18ktOVciuA/H0q05PG04j9/vFetTPjiP8AJhQg4hOI/OutTjsli5T/WjAxyF+HlP2PwMO2be+I/wcWKGkzD4z8aahSSzOrhPzdvnBTmPeI/7L/OTZvx4j9fl+E/3UDkP5I7bCIzF+Y/6bga2ZUW4z8+sU6V75niP8QHdvwXCOU/rVEP0eiO5T/f4uE9BxblPw3eV+VC5eQ/ev1JfO6E4z8CDwwgfCjkPz57LlOTYOA/Xp1jQPZ65j9m+iXirfPfP7IrLSP1HuQ/GAYsuYrF4T9GByRh387kP2rcm98wUeU/fewuUFJg5D/XFTPC24PlP00uxsA6jtw/eNUD5iHT5D89fJkoQurlP7tGy4Ee6uI/XW4w1GGF4j8Jh97i4b3gP/gaguMybuQ/CyqqfqXz4j/xoNl1b8XkPwyUFFgA0+M/3SObq+Y54T8dW88QjlnYP2GMSBRaVuQ/+z2xTpXv3j/6X65FC9DbP/jDz38PXug/qcE0DB8R2z9dv2A3bFvjP2zLgLOUrOA/UkMbgA2I4T/ymIHK+HfgP8nk1M4wNeY/1uB9VS7U5D81CHO7l/vdPy/ej9svn+I/wCK/fogN4z9M4xdeSXLkP+Z3msx42+Q/dEUpIVhV4D/K/KNv0jTlP19egH106t4/LzNslPWb5z+eBgySPq3eP12pZ0Eo790/CD4GK0414T80ZhL1gs/nP6Nbr+lBQeU/xv1HpkOn5j9agLbVrDPlP56ayw2GOuI/Z7rXSX3Z4j9kH2RZMHHhPwk1Q6ooXtw/Mlab/1cd3D/c9Gc/UsTnP27b96i/Xt0/PBQF+kSe5T/tC+iFO5fkP2WryykBseQ/LV4sDJFT5T/NPo9RnnnkP4HoSZnU0OE/uYrFbwqr5D+ki00rhcDiPzAS2nIuReQ/I7w9CAF54T+Uha+vdSnmPyo5J/bQvuU/ylLr/UY75T+S6dDpeTflP1n60AX1LeM/1T4djxko5D9d+SzPg7vhPzF5A8x8h+I/nkKu1LOg5D8Lt3wkJb3hPy17Eticg+A/ZMxdS8gH5j9kWpvG9lrgP7D+z2G+vOI/INRFCmXh4j948X7cfnnkP+0t5Xyxd+Q/zhlR2ht84z+NCMbBpePmP93sD5Tb9uA/C0RPyqQG4z+zBu+rcqHhP57r+3CQEOM/nff/ccIE5j9YjpCBPLvjP8h5/x8nTOU/9kVCW84l4j8S3EjZIunlP3wqpz0lZ+I/gXueP23U5j8gYRiw5KriP8r6zcR0oeE/83NDU3Z64T/o9LwbC4rgP8Kk+PiEbOE/WOIBZVMu5D+EukihLPzjP9HmOLcJd+Q/igYpeAo54j9kkLsIU5TlP9PAj2rYb+Q/Ug37PbFO5D+srdhfds/jPwa5izBFueQ/v4BeuHPh5D9TWKmgomrhP7Fre7slOeE/z0nvG1974T++wRcmU4XiP9L+B1ir9uM/AdvBiH0C5D+PNSOD3EXaP4gQV87eGds/cTyfAfXm5D/6l6QyxRzeP75sO22NCOM/AkaXN4dr3j8wvJLkuT7jP1Ghurn42+I/jURoBBtX4z+L4lXWNkXhP7TpCOBm8eM/fc1y2eic5D8yVpv/V53lP73CgvsBj+Q/w7ZFmQ0y5D8ng6Pk1TnmP5Hyk2qfDuc/CBwJNNhU5j9dGOlF7X7mP01O7QxT2+g/2safqGxY5z88LqpFRDHnPxbAlIEDWt4/vCNjtfn/4z+HhsWoa23hP2n+mNamseI/ppvEILDy4j89D+7O2m3fPx2qKck6HOY/7iJMUS6N5T/yXUpdMo7lP25uTE9YYuM/kPgVa7hI5D81sistI/XkPxE66BIOPeM/HSJuTiUD5D9Dxw4qcR3lP9nts8pM6eI/XHSy1Hq/2j9l48EWu33nP2hcOBCSheA/DhMNUvAU5D/OiT20j5XjP26FsBpL2OE/Xg8mxccn2z+GHjF6bqHfPxlXXByVm+c/bkxPWOKB4z+frYODvQnkP88R+S6lLuM/NgNckC1L4z9XQ+IeSx/oP7r4254gsds/hSSzeodb4z/TLqaZ7nXfP3VbIhecQeY/647FNqlo5z+3lzRG66jjP7vurUhMUOM/Vik900uM3z8hHomXp3PgP0vl7QinBeQ/wLLSpBR04T8otRfRdszjP+sbmNwoMuU/Awr19BF45D9RMjm1M0znP4dREDy+veU/mUnUCz5N5z9nYroQq7/jPwKdSZuqe+Q/GhajrrX35D85RNycSgbgP4AO8+UF2OI/2UElrmPc5D83wTdNn53nP2a8rfTabOA/rKsCtRg85D8absDnh5HkPznU78LWbOU/IhlybD1D5T+7ZBwj2aPmPy5VaYtrfOU/QdZTq68u5T95zas6q4XiP1wea0YGOeA/gQcGED6U4D/V7IFWYMjgP3lZEwt8xeE/PwCpTZxc5z/c8Sa/RSfnP9zxJr9FJ+c/guZz7nY95z+C5nPudj3nP9odUgyQaOc/bHu7JTlg5z9se7slOWDnP1IN+z2xTuc/3UCBd/Jp5z/dQIF38mnnP91AgXfyaec/3UCBd/Jp5z/dQIF38mnnP4v8+iE2WOc/i/z6ITZY5z+L/PohNljnP4v8+iE2WOc/i/z6ITZY5z+L/PohNljnPyDrqdVXV+c/IOup1VdX5z8g66nVV1fnP/qcu10vTec/gZICC2BK5z/OT3EceDXnP7WJk/sdiuI/iDB+Gvdm4z9kr3d/vFfkP+OkMO9xJuE/Eyujkc8r5z+p+pXOh2feP0Rpb/CFyeI/IqrwZ3gz5T+sArUYPEzmP2ySH/ErVuU/w9SWOsjr5T+8OzJWm//jPyocQSrFDuc/A5gycEDL5D+5OCo3UcvgPxKhEWxc/+Y/GLMlqyLc4j/Y1HlU/N/kP5aTUPpCyOI/2VpfJLRl4T98fhghPNrlPwBw7NlzmeM/Me9xpgnb3z+KO97kt2jhP14SZ0XUROE/vi1Yqgt45j9KKej2ksbhP9NsHofB/Oc/sFkuG53z5D/qI/CHn//iP4I65dGNsN4/CKpGrwao4j94uB0aFiPhP6ZCPBIvT+M/c4OhDitc4T/qsMItH0nePwzLn28LluU/e737473q5D+zKOyi6AHmP9zWFp6XCuI/Uz2Zf/TN4j8xJ2iTwyfkP2vWGd8XF+I/s7J9yFuu4z8EWOTXD7HjPzc2O1J9Z+A/S5Ln+j4c2z9PrFPle0bgP3HoLR7ec98/WFNZFHbR5j8hByXMtH3mP9rJ4Ch59eI/jC/a44X05j/t1cdD313iPwd5PZgUH+A/YMsr19tm5j80n3O36yXjP5yHE5hOa+Y/l4xjJHsE5T/tndFWJRHlPz+O5sjKL+E/9DEfEOhM3j9gx3+BIMDjP2gIxyx7EuQ/QwJGlzcH5j81QdR9ANLgP+c0C7Q7pOI/bRtGQfD44z+wjA3d7A/lPzVh+8kYn+A/bTfBN00f4D/aOjjYmxjkP2E0K9uHvOU/wTkjSnuD4j/9uz5z1ifmP1zJjo1APOE/RyHJrN7h4z+Kr3YU56jjP554zhYQWuc/b/Wc9L5x5T8Jbw9CQL7kP4SezarPVeQ/QQ+1bRiF4j8nwLD8+TbkP/w3L058teQ/YrzmVZ3V4z/ytWeWBCjiPzhNnx1w3eI/6GhVSzpK4j/YYyKl2bzkP5dzKa4qe+U/nBcnvtpR5T/uJCL8iyDnPyIAOPbsueQ/p7G9FvRe5D8Tm49rQ8XiPysxz0pa8eM/f6SIDKt44T/nqnmOyHfkP1MFo5I6AeU/2UP7WMFv5j/vIHam0PnoP5Oq7Sb4pug/6MHdWbvt5T/E6SRbXc7kPzzZzYx+tOU/vHmqQ26G4j/oM6DejBriP+ffLvt1p+E/2Vw1zxH54D9SRfEqa5vlP/evrDQpheY/JlZGI59X5D/fbd44KUznP2+Ame/gp+A/7UeKyLAK4T+hFK3cC8zbPxh9BWnGIuM/6brwg/Op5T8wYp8AipHmP/vOL0rQX+Q/gq59Ab1w5D+Br+jWa/rjP0fH1ciutOc/Dk+vlGWI3j/DZRU2A1zbPybl7nN8tOM/KEhsdw9Q4D+x/Pm2YKngP/hRDfs9sdw/AYqRJXOs5j8uHAjJAibmP1UwKqkT0OM/SMX/HVGh4j/gu80bJwXiPzbknxnEh+I/r0Ffevtz3D83VIzzN6HYP+yjU1c+y+Y/R3alZaTe5j++TurL0k7hP31BCwkY3eM/XMgjuJEy4z9v9Zz0vvHjP8doHVVNEOQ/YHKjyFpD5T/XaaSl8nbnP/bP04BBUuE/s0EmGTmL5T/coPZbO1HmPz90QX3LHOU/SFFn7iFh5D/84ee/B6/jP5kuxOqPsOE/S+guibMi4D9V3o5wWvDiPzsah/pdWOc/fgG9cOdC5j9GDDuMSf/jPz/G3LWEfOQ/eouH9xxY4z8aGeQuwhTePzf92Y8UkeU/rG9gcqNI5T8GaFvNOmPnP12pZ0Eob+c/VrsmpDWG5T/LgR5q2zDVP0cf8wGBTuU/ZcbbSq/N3D9jsyPVd/7jP6fMzTeie94/yjMvh9135j/m54am7PTQP5CIKZFEr+A/OsrBbAIM4T8WiQlq+JbiP9Iag04IneU/jPLMy2H34T/jGwqfrQPkP98xPPaz2OQ/oRFsXP8u4z//XZ8561PhP3eC/de56eM/0qqWdJQD5z9nJhjONUzhP+TWpNsSueM/JuMYyR4h5D972uGvyZrjPzBI+rSK/uI/QGmoUUiy5D+4IcZrXlXkPxUfn5Cdt+M/M95Wem224j9ywK4mT1nmP3rjpDDvceY/uVLPglDe6D/dRC3NrZDnP4FeuHNhpOU/r7DgfsCD5D+YFYp0P6fkP4uKOJ1kK+I/Bkt1AS8z4T+tiJro81HeP9l4sMVuH+Q/Y/GbwkoF5D/DgCVXsfjhP8H+69y0GeU/fZI7bCIz5T/lfLH34ovlP8Lc7uU+ueM/XYyBdRy/5T+Cctu+R33kP/Aw7Zv7q+E/nwJgPIOG4z+aeAd40sLkPwTG+gYmN94/wa27earD5z9ENLqD2BngP9JtiVxwBuA/wXPv4ZLj4z+EgHwJFRzeP+xRuB6Fa+I/OIYA4Ngz4z93vMlv0cnjPzD0iNFzC+M/RQ4RN6eS5T/RWtHmODfjPzofniXIiOQ/qpuLv+0J4D96Oey+Y3jkPwrys5HrJuE/Pj4hO29j5T8jLgCN0qXjPy/dJAaBFeE/4IEBhA8l5T9fJoqQup3iP7RVSWQfZOU//+bFia923T+XHk31ZH7mP9WSjnIwm+E/F2NgHccP4z9tqYO8HkzaP+PfZ1w4ENs/FqbvNQTH5D9MUMO3sG7fPwZHyatzDOE/qDgOvFru4z9srwW9N4bgPyaKkLqdfd8/XWxaKQTy4T9QGf8+40LiPyZxVkRNdOE/dcx5xr5k4j+XAtL+B1jhP54j8l1K3eQ//b/qyJFO4z8dcjPcgE/jP5mesMQDyt4/P4ulSL4S2j8MVpxqLUzgPy43GOqwwt4/9aJ2vwpw4z8kDtlAutjZP7cKYqBrX+I/j20ZcJaS4j/PvYdLjjvoPzNPrimQ2dk/6DOg3oya3T/hehSuR+HhPwVpxqLp7OM/41MAjGfQ5D9oWfePhejgP2dg5GVNrOA/eJs3Tgpz5D/3Ax4YQPjgP9lcNc8R+eA/BygNNQrJ4z/J6IAk7FvhP0YIjzaOWOM/Lo81I4Nc4j91sWmlEEjhP6XZPA6DeeE/zF8hc2VQ4D+9N4YA4NjmPx0AcVevIt8/kZighm9h5j9KJNHLKJbfP6kUOxqH+uE/9YQlHlA24j8dcjPcgM/hP7dgqS7g5eA/2su209aI5D/NPo9RnnniPyfeAZ60cNg/3CxeLAyR5j8BbatZZ3zkP+Tziqce6eQ/LLZJRWNt5D+jzXFuE27mPwNEwYwp2OE/JTyh15/E3T+eflAXKRTlP0KXcOgtHtw/DeAtkKD45j+mKJfGLzzjP8he7/54r+Y/vyhBf6HH4j+WCFT/IBLgP0aZDTLJSOY/nil0XmMX4T/GFKxxNh3gP6BvC5bqguA/0XXhB+fT4j8ld9hEZi7ePzQsRl1rb+E/ilbuBWaF3z+eJF0z+WbmP3ZR9MDH4OA/GM3K9iFv3j9FZi5weSzlPzI4Sl6dY+Q/28TJ/Q7F5D9+jo8WZwzhP1COAkTBjNw/VtY2xeOi4D/KiXYVUv7iP/W8GwsKg94/NV8lH7uL5D8hBrr2BfThP+8a9KW3P+E/aCRCI9i44j9iE5m5wOXfP8qMt5Vem+U/LbRzmgXa5D8CYhIu5JHkP22umueI/OQ/xy5RvTUw4D/5ghYSMLrcP1wbKsb5m+U/VKhuLv425T+dLouJzUfjPycSTDWzluA/mSoYldQJ6D9RL/g0Jy/gPzNPrimQ2d0/ox03/G664z8TDr3Fw/vjP3bhB+dTx+E/t5p1xvdF4z/EfHkB9lHjPzenkgGgCuM/CmR2Fr1T4j9f04OCUjTkP5eMYyR7BOU/FK5H4XqU4D8IOe//4wTkP2NEotCy7uM/V+nuOhvy4T+vesA8ZErgPxkD6zh+KOQ/C170FaQZ5T8ZPbfQlQjmPzG3e7lPjuM/t88qM6V14D98X1yq0hbkP/m+uFSlreQ/+Z0mM95W1z9yN4jWijbjPyZSms3jMNo/PX/aqE4H2T8oui784PzkPyk/qfbpeOM/7WMFvw0x5j8S+pl63SLmPzXvOEVH8uQ/EaeTbHW54j/BdFq3QW3gP2UcI9kjVOQ/GcVyS6sh4T/sFRbcD3jiP2QHlbiO8eU/bazEPCtp5D/8byU7NoLjP3E5XoHoyeQ/Ewt8Rbfe5j8fSUkPQyviP1d2weCaO94/2ubG9IQl4j+LUkKwql7jP4UIOIQqNd4/dAzIXu9+5T+JXHAGf7/eP4Rjlj0JbOM/YM0Bgjn64z8tP3CVJxDkP6IOK9zykeI/djbknxnE4z9W1cvvNBnjP30E/vDz3+Q/ucfShy4o4z+TUWUYdwPkPzcY6rDCLeY/xsA6jh8q4j8fR3Nk5RfjP1xXzAhvj+A/iPNwAtNp4T9ftp22RoTiP2ZoPBHEeeA/qIx/n3Fh4z+tiQW+otvkPyhJ10y+2eM/czCbAMNy4z+/u5UlOkvlP1ezzvi+uOY//N8RFaqb5j/36uOh7+7gP5EKYwtBjuQ/IeS8/48T5T/DKAge397jPxJosKnzqOY/aqM6Hcj64z++E7NeDGXlP4qtoGmJFeY/rg0V4/xN4D+laybfbHPfP7JGPUSjO+c/i+JV1jbF3j/ymIHK+PflPxNlbynni+M/9wDdlzPb4j/OVfMckW/gP17XL9gNW+M/M/59xoUD3j/G4cyv5gDmP/7viArVTeU/VYhH4uVp5D8GZK93f7zfPxA+lGjJY+Y/tYgoJm+A3j8fTfVk/tHfP8UbmUf+4Og/x/Za0Htj4z/eOv922S/hP3dLcsCuJuA/dmwE4nV95D+zCpsBLsjjPzuOHyqNmOI/9RJjmX4J5T8mOsssQrHnP+22C811muY/3+F2aFiM4T+R8/4/ThjkP2nJ42n5geU/KLnDJjLz5T/vOhvyz4zmP1rwoq8gzeM/7GmHvyZr6D/rUiP0M/XjP0tywK4mz+U/cM6I0t5g5T8TQ3IycSviP7xbWaKzzOM/O8PUljrI4T/cZirEI3HiP4V6+gj8YeM/bCHIQQkz4z94KAr0ibzgP+mBj8GK0+A/TYV4JF4e4j9SuYlamlveP3bicrwC0eI/euOkMO9x4j9LzR5oBQbhPwLWql0TUuY/JPCHn/+e5T/dBrXf2onjPz/lmCzuv+M/g9pv7URJ4D933PC76ZbgP12I1R9hGOU/6RA4Emgw5j8UQZyHE5jkP2QFvw0xXuY/tw2jIHh84T9Dke7nFGTiPwPrOH6otOE/5X/yd++o4D/n/1VHjvTjP4f6XdiareE/2ZdsPNji4z8w1cxaCkjmPx5v8lt0suE/KbLWUGov4z+vsrYpHpfgP4Zyol2FFOQ/f2snSkIi5D8ixJWzd8bkPyjxuRPsv+U/H0jeOZSh5D+vXkVGByTkP5OP3QVKCuY/5pKq7SZ44z9Pr5RliOPhP6g65Ga4geE/nfNTHAfe5T/7rDJTWn/cP2+D2m/txOE/uD8XDRkP5j9ZUBiUaTTmP11uMNRhhd8/HT7pRIIp4T+MEvQXesTkPzIEAMeeveQ/JA9EFmni4z/CTrFqEGbhP0pFY+3vbOQ/y03U0twK5D9TBaOSOoHiP6a4quy7ouI/G4F4Xb/g5D8lP+JXrGHjP/pGdM+6xuM/W7G/7J684T9G0JhJ1AvlPx4X1SKimOA/wVYJFocz5D//A6xVuybgP0+vlGWI4+Y/gPChREue5j+ARX79EBvlP18pyxDHOuU/WfymsFLB5T/HKxA9KRPmP1NYqaCiauU/I0kQroBC5j/UfmsnSsLkP5qV7UPe8uU/vRk1XyWf5D9yUS0iisniPyTTodPzbuM/gNjSo6me2j93acNhaWDhP/j578FrF+U/jNr9KsB33z+gpMACmDLdP1ggelImNeQ/ibSNP1HZ5D88UKc8uhHjPyLDKt7IPNs/eqpDboYb5z8nZr0YyonkP/TF3osvWuU/tvKS/8lf4D/Er1jDRW7hP1xZorPMouI/5Nh6hnDM4D8tBaT9D7DcP7CSj90FSt8/gbIpV3gX5j/uPzIdOr3kP0YldQKaCN0//1nz4y8t5j+30JUIVP/iP94E3zR99uQ/VTTW/s723j9v9Zz0vvHhPzZZox6iUeM/PBVwz/Mn5z9G0JhJ1IvkP9LijGFO0Oc/x4Ds9e6P5j8Jh97i4b3jP0ijAifbwOM/VfgzvFkD4D/8pUV9kjvlP64SLA5nfuQ/EvWCT3Ny5D9Wtg95y9XkP7e1heel4uQ//89hvryA4z+nIhXGFoLlP+9v0F59POE/5KHvbmWJ5D/JxoMtdvvjP3qrrkM1peM/rdo1Ia2x5D+dobjjTX7kP3NMFvcfmeM/0VlmEYqt2j/qlh3iH7bnP46vPbMkwOE/y4XKv5ZX4z9cdR2qKUniP98zEqERbOQ/yF7v/ngv5D/eBUoKLIDeP4vEBDV8i+M/WDofniVI5D9wtrkxPWHdP6g65Ga4geM/AoOkT6vo3j91VaAWgwfnP7pnXaPlQOQ/SKZDp+dd5T/752nAIGnmPx4bgXhdP+M/HSEDeXb54z+hv9AjRs/eP7PROT/FceM/X10VqMXg4z9H6dK/JBXjPyTW4lMAjOU/AMgJE0az4j9PkNjuHqDiP92yQ/zDluM/N6j91k6U4z+l9iLajqngP6YMHNDSleQ/VAH3PH/a4D+5p6s7FtvmP3rhzoWRXuE/3NWryOiA4T+Rt1z92KThP32VfOwuUOA/tRoS91h64T9+G2K85tXhP1kTC3xFt+U/KuW1ErrL4z8RAYdQpebiP5Rqn47HDOI/wVYJFoez4T+LjA5Iwr7lP/W4b7VO3OM/Bn+/mC3Z5D8T8db5t8vgP7IRiNf1C9s//8u1aAFa6D/ZrzvdeeLfPyGTjJyFPeE/L1IoC19f3j+gjVw3pTzhP2hdo+VAj+M/4WHaN/dX4j9Fn48y4gLjP9RkxttKL+I/w0oFFVW/4j/swg/Opw7hPxuEud3L/eE/Y5gTtMlh4j9TspyE0hfdP7kcr0D0pOY/TrhX5q263j/YZfhPN9DhP1JF8SprG+Y/X+6TowBR4j/J/+Tv3lHjP2XDmsqisNw/INPaNLZX4D8BM9/BT5zjP/xx++WTFeU/kJ+NXDel4z/u7ZbkgF3mP6DE506wf+I/p6/na5bL5T8z3IDPDyPeP+2CwTV39OE/J79FJ0st4j+mYfiImJLnPzyh15/EZ+U/mifXFMhs5j8/H2XEBaDZP+0rD9JT5Nw/s0RnmUUo3j/+ZffkYaHYPwrcupunOtg/dxIR/kXQ4z/gvDjx1Y7eP9dqD3uhAOg/p3oy/+ib6D+YFvVJ7rDbPyqPboRFxeM/6UmZ1NAG4z8b9RCN7qDiPwa+oluvaeE/vLILBtfc4T8fMA+Z8iHlP07QJodPOuQ/ic+dYP913j82kgThCijgP8u9wKxQJOE/iPGaV3VW4j/6muWy0bniP4Sc9/9xwuA/9wFIbeJk5z+CcAUU6mnhP1LwFHKlnt4/9YJPc/Ki5T8O9FDbhlHkP6xUUFH1K94/H2Yv207b4D9vumWH+AfkPyRh304iQuI/Z2K6EKs/5j8X1SKimLzgP2qhZHJqZ+M/78aCwqDM4j+lv5fCg+bmP+LIA5FFmuY/O1PovMau4T/KjSJrDaXhP3Jw6ZjzDOM/5+RFJuBX5T+hndMs0G7iP7Iv2XiwReM/uOo6VFOS5D/d6jnpfWPiPxiw5CoWv+I/HlN3ZReM4D+7mjxlNd3jP01Iaww6oeU/4V8EjZnE4j+rtMU1PpPkP7nfoSjQp+A/7X2qCg1E4D9JEoQroNDgP7FvJxHh3+U/zhsnhXmP5T8jhEcbR6zfP86njlVKz90/Tpmbb0T34z8fD313K8viP9481SE3Q+M/ZOdtbHYk5D8GSZ9W0R/kP0+vlGWIY+M/pU+r6A/N4j+YGMv0S0TjP+VDUDV6NdQ/yJV6FoTy5z/lCu9yEd/dP481I4PcRec/bJih8UQQ2j+G5GTiVkHlP+27IvjfyuM/Qu4iTFEu4z9Ib7iP3BrkPzEMWHIVi+U/8lt0stR64j+CrRIsDufmP8ITev1JfOA/AfinVIky5T+cFOY9zrTkP5bNHJJaKOI/iiKkbmdf4z/C2hg74SXnP47LuKmB5uE/uVD51/LK5j95PZgUH5/gP6ORzyue+uE/S1gbYye84z8SMLq8OVziP3f4a7JGveQ/ryXkg57N2j+8PQgB+ZLhP+p7DcFxGeY/sb/snjys4z88MIDwoUTiPyxhbYydcOM//HH75ZMV4j96qG3DKAjjP2SV0jO9ROU/s0RnmUWo4z/vWGyTisbfP00s8BXd+uE/T5MZbys94z9HdM+6RsviP9qPFJFhleY/za/mAMEc5T8OMPMd/ETlP+JzJ9h/neM/uTMTDOea5j8G2bJ8XYbhP41/n3HhQN4/zGH3HcNj6T8AjGfQ0L/nPwDirl5FRuQ/MEymCkal5T9Uc7nBUAfjP1SPNLitLeI/wF5hwf0A5z8+WTFcHYDmP4MyjSYXY+g/lbiOccVF6T8EyTuHMlTlP9+oFabvNec/SKXY0ThU5T9/pIgMq3jcP1N3ZRcMruE/41MAjGdQ4z+TwyedSDDlP2Rd3EYDeOE/u0IfLGND4z8SoKaWrfXgP/htiPGaV94/MlcG1QYn5z9vYkhOJm7jP3S366UpguM/CRueXilL4z8bu0T11sDiP4aOHVTiuuI/9iUbD7bY5T/61LFK6RnkP93R/3ItWt8/W9B7YwgA5T/2Q2ywcJLhPyfYf52btuQ/HCPZI9QM3T/6tIr+0EzkP3/cfvlkxec/he6SOCui4T8TmiSWlDvlPyBB8WPM3eA/Sn8vhQfN4z/FVPoJZ7fkP1n7O9ujt+U/9Ib7yK1J4z/xm8JKBRXjP2GNs+kI4N4/0a+tn/6z5D/mV3OAYA7jP1+bjZWYZ+M/q3e4HRoW4z/de7jkuFPjP+888ZwtIOY/AHSYLy/A3T+9bhEY6xvgP4V6+gj8YeM/8bkT7L9O5D9d4PJYM7LnP4V3uYjvxOg/Zk0s8BXd4D/dXPxtTxDmP3A+daxSet8/F2NgHccP4T8FbAcj9onjP/M7TWa8LeA/Dwu1pnnH4D8yAFRx4xblP3QNMzSeCOQ/q1lnfF9c4j8j88gfDLzjPznSGRh5WeQ/nrRwWYVN5z8y5Nh6hnDePx7f3jXoy+E/iUUMO4xJ4j981jVaDnTiP4S9iSE5GeE/rkhMUMO34z+zmNh8XBvlP/dXj/tWa+M/t2CpLuDl5T9Uq6+uCtTkP3BgcqPIWuc/1SMNbmsL6D+Hi9zT1R3kP+23dqIkpOY/a2CrBItD4z/gEKrU7AHoP95VD5iHzOE/jQkxl1Rt5D8u/rYnSGzgPwlupGyRNOU/q10T0hoD5j/j3vyGiQbeP4QtdvussuI/B9Fa0eY45D/Q0hVsI57jPz+rzJTW3+A/9aCgFK3c4z/4FtaNd0fhP8l2vp8ar+I/9bnaiv3l4D/KpfELryTnPwJLrmLxG+I/O1J95xcl5D/TLxFvnf/gP7rYtFII5OE/kQ96Nqs+4j/TFtf4THblP+61oPfGEOE/jqz8Mhij4z9xkuaPaW3jP5J3DmWoiuQ/6gd1kULZ5D/z4sRXOwrhP1ZFuMmoMuU/tFcfD3334T+JeVbSim/mPzJ07KASV+c/OZm4VRAD5D+7tOGwNPDgP1p/SwD+KeI/MuTYeoZw4z8kQiPYuH7lP/eOGhNiLt0/EOfhBKZT4D+3JXLBGfzjP7poyHiUyuA/NpTai2i75T/D76ZbdojjPzvCacGLvuI/L28O12qP4z8vbw7Xao/jP3GTUWUY9+I/1UDzOXc74D/xvFRszGvgP2TqruyCweU/56ij42rk4j8woYLDCyLkP4dtizIb5OE/Q3Bcxk0N3z8mNbQB2IDkP6xUUFH1q+Q/V7Q5zm3C5j93FOeoo+PnP0ELCRhd3uY/9Z1flKC/4j/2s1iK5CvlPxPulXmrrto/hIHn3sMl2z908ExokljbP4OhDivc8uQ/RGlv8IXJ4T/IzXADPr/jP2pLHeT1YOM/zJiCNc6m5j99zAcEOhPmP7M/UG7b9+U/d0mcFVET5z8uVz82yQ/oPzONJhdj4OY/lxx3Sgfr4z95kJ4ih4jpP9E/wcWKGto/v0aSIFwB2z+l2qfjMQPcPxa9UwH3PN4/x0YgXtcv5T8lBoGVQ4vmP93pzhPPWeY/2A5G7BNA4z/LnC6LiU3lPyi2gqYlVuQ/+wRQjCyZ5D+sxDwraUXmPxR4J58eW+U/LQlQU8vW5D+afR6jPHPlP/D7Ny9OfOQ/bjSAt0CC5T8PJsXHJ2TmP3eGqS11kOM/3Qn2X+em4D8vaverAN/ZPyefHtsy4No/Q8U4fxMK2z+5/l2fOevgP4AnLVxWYeQ/UkmdgCbC4T9LqyFxj6XaPw3/6QYKPOM/DOiFOxdG4z8SoKaWrXXjP3++LViqC+U/Wp9yTBZ35j8IWRZM/FHmPz2CGylbpOI/DJI+raI/4z8a+5KNB9vjP4SCUrRyL+A/74y2Kons4D+tS43Qz1TgP6YpApzexd4/eXb51of12j/iOsYVF0fdP2B0eXO4VuY/pn7eVKRC4z8IyJdQwWHhPz4kfO9v0N8/R68GKA014j8LDcSymUPiP0JaY9AJoeU/Ic7DCUwn5z/iytk7oy3jPy48LxUb89s/PIOG/gku5D/Y9Qt2wzbgP8IzoUliSd8/Y9NKIZBL4T+gbqDAO3njP8v1tpkK8eQ/MNgN2xZl2T9u36P+eoXaP7VwWYXNANw/bhPulXmr5j+UbeAO1CnlP7O2KR4X1eM//MOWHk314T9qiZXRyGfjP4F5yJQPQeY/75BigEST5D9h3uNME7biP+OMYU7QpuQ/Jqq3BrZK4z+nID8buW7jP9x/ZDp0+uQ/Yocx6e8l5D+dEDroEo7gPxl1rb1P1eI/9BjlmZfD3j/PvBx237HiP5SI8C+CRug/yQVn8PeL4D80D2CRX7/jP7K+gcmNIt8/InL6er5m3z+L+bmhKbviPzIiUWhZd+I/3XniOVvA4T/VtItppnvmP9tOWyOC8eI/lIlbBTHQ4z+4V+atuo7pPxaJCWr4luM/W7VrQlpj4z/rH0Qy5NjjP5CEfTuJCOU/mGpmLQUk4D8XKZSFry/kP58DyxEyEOY/z7wcdt+x4z/rOH6oNGLgP5J3DmWoiuM/mDPbFfrg4j/Rd7eyROfmPzAOLh1zHuQ/fEPhs3Xw5D8OEMzR43flP38TChFwiOM/+UuL+iT35D/d66S+LG3mP2oX00z3uuY/vMywUdbv4z9eLuI7MevhP98YAoBjT+A/J2co7ngT4D8O2quPh77fP5RoyeNp+eQ/yT7IsmBi4j+h9ls7UZLjP44/UdmwpuM/HhZqTfMO4z8lea7vw8HiPwb2mEhptuE/6KT3ja895j9DWfj6WhfmP7Dna5bLRuQ/xJRIopdR4j8D6s2o+SriP45bzM8NTeM/WYtPATCe1z+NJEG4AgrkPwX52ch10+I/ke18PzVe3z+sHjAPmXLmP9tQMc7fhNo/djI4Sl6d3T/mV3OAYA7jPxmuDoC4K+M/cVga+FGN5j/+nIL8bGTgPxToE3mSdN8/rHE2HQHc4j+H+l3Ymq3nPyXJc30fDug/u5o8ZTXd4T83OXzSiQTjP4BKlSh7y+Y/QNzVq8jo4T/oa5bLRufgP2aEtwchIOM/fSB551AG4j9BmrFoOjvnPwDkhAmj2eI/VRNE3Qeg5D9MqODwgojmP59ZEqCmFuU/GJgVinQ/5D/Kh6Bq9OriPzP5ZpsbU+U/THFV2XdF4z907na9NEXlP5Lmj2ltmuM/tTLhl/p54j9ngXaHFIPjP45zm3CvzOY/4X1VLlR+5z9SflLt0/HiP5tUNNb+TuQ/6Xx4liAj4z/7BFCMLJnjPxXJVwIpseM/nwQ25+CZ4j9CBYcXRKTjP8bCEDl9PeE/KGN8mL3s4D9fJoqQup3pP7jlIynpYec/yenr+Zrl5D+4QILix5jgP+wS1VsDW+I/xqS/l8KD5T8wStBf6JHjPwpNEkvKXec/5lq0AG2r4D+iluZWCKviP6WeBaG8D+I/cO6vHvct4j9sW5TZIBPoP6Uw73GmCeU/lKC/0CPG5T8IHt/eNWjkP9pwWBr40eE/C12JQPUP2z/qsS0DztLhP1rW/WMhuuE/+py7XS/N4z+CH9Ww35PmPzBntiv0weU/H7k16bZE4z8L8Ui8PJ3kPxSwHYzYJ+U/+SzPg7sz4D8cP1QaMbPkP0dVE0Tdh+A/sKw0KQXd5D9OfotOltrhP4f58gLso98/KXtLOV/s5j9sPUM4ZtnlP/jEOlW+Z94/8MFrlzac5j/Hf4EgQIboPwAce/Zcpt8/pwNZT62+4D+RJ0nXTD7iP3Gsi9toAOE/nBVRE30+5T8gQfFjzF3kP4v5uaEpO+Q/9fdSeNBs5D/yQjo8hPHhP5J6T+W0p9s/U3dlFwwu5T+MS1Xa4hriPxiw5CoWv+A/EK0VbY5z4j9HdTqQ9dThPyU+d4L91+A/bcX+snty4j+OIQA49mzjPyo5J/bQPuQ/wqIiTidZ5D/rjsU2qejkP15pGan31OI/glMfSN654D/biCe7mdHmP05C6QshZ+E/PQ0YJH3a4z9lwi/186bhP2echqjCH+g/Ytf2dkty5j9Ng6J5AIvmP4RHG0esReY/E0TdByC15j/qew3BcZnlPzsb8s8MYuU/wr0yb9V12z/vN9pxw+/hPzTXaaSl8uE/lrA2xk544j+9VdehmhLkP058taM4x+Q/uw9AahMn5j8Yk/5eCg/lP+ENaVTg5OA/D/Ckhcuq5D9eSIeHMP7hP3tP5bSnZOM/Ew8om3IF5D+sPIGwU6ziP3apEfqZeuU/9Bq7RPXW5j80TG2pgzzkPz4GK061luQ/WtjTDn9N3z9/+zpwzojlPxqiCn+Gt+I/AtNp3Qa14T8IzEOmfIjiP2U1XU90Xdk/6X5OQX421z/E7dCwGHXePzNS76mcduI/RQ2mYfiI5j+D3htDAHDmP1KbOLnfoeU/ns+AejNq4z+kxK7t7RbnP2CRXz/EBt8/GeWZl8Nu4j8Xm1YKgVzjP6oM424QLeI/teGwNPCj3T/qlh3iH7bcP5sBLsiW5d0/Z5lFKLYC5T/vIHam0HnkPzpY/+cwX+E/HauUnukl5D+6hENv8fDkP5WbqKW5leM/gnNGlPaG4z/ovwevXdriPxIwurw5XOA/h6QWSian5z/WGd8Xl6reP3yb/uxHiuE/VcGopE5A2z94gCctXFboPwd8fhghPNw/pMSu7e2W4z/9TL1uEZjhP9OHLqhvGec/I9kj1Ayp4j/mQA+1bRjdPysv+Z/83do/tmlsrwW94D8OEw1S8JTnP+55/rRRnd8/duCcEaU94T/LS/4nf3fiP/KU1XQ9UeA/8bp+wW7Y4z/QmEnUC77kP9/EkJxMXOE/B7MJMCz/4T8fvkwUIXXmP64pkNlZdOI/UP7uHTUm4z8MkdPX87XjP9m0UgjkEuU/gEdUqG6u5T8R/dr66T/gP9vgRPRr6+A/WTMyyF0E4T/KVMGopM7hP5Ay4gLQKOQ/tHQF24in5z9cPLznwPLhPwrys5HrpuI/s+4fC9Gh4j8tJctJKH3mP1LRWPs7W+M/Dwu1pnlH5T9gWtQnucPhP47KTdTSXOY/HuBJC5fV5D/EeM2rOivlP/RtwVJdQOA/qRJlbyln4T+qCg3EshnjP3Pxtz1BYuI/pMNDGD8N4z/Q7SWN0broPzTaqiSyj+g/qDXNO07R3j9rZFdaRurjP20bRkHweOI/E/QXesRo5T9iEcMOY1LkP30G1JtR8+A/isxc4PLY4T+OWfYksLniP6fMzTeie+c/vw0xXvOq3D9cBTHQtS/fPx9pcFtb+OM/rabria4L4D+XrIpwk1HgP6fmcoOhjuU/1PAtrBvv2D9QHauUnmnnP0JaY9AJoeI/PUZ55uUw4D9IGtzWFp7nP+pdvB+3X+Y/+u3rwDkj5D9t409UNqzePy/E6o8wjOI/KUF/oUcM4j/PhZFe1O7gP+Hs1jIZjuk/9Gvrp/8s4j8KgPEMGvriP4Yb8PlhBOE/fO9v0F595D/savKU1fTkP8YwJ2iTQ+I/vvp46Lvb4D8DmDJwQEvfP4vh6gCIO+Y/AkuuYvEb5j8Oar+1EyXmP5pcjIF1HOY/6rKY2Hzc4D/Jdr6fGq/jP3jQ7Lq3ouM/Cyk/qfbp3j9iZp/HKE/hPx/Y8V8giOQ/h2wgXWxa4T8Vx4FXyx3mPwWk/Q+wVuA/l/+Qfvu65j8WGLK61fPnPxlwlpLlJNY/XI5XIHpS4z+q8j0jERrkP0nb+BOVDeU/pRDIJY684j9SZK2h1F7ZP5DbL5+sGNk/R60wfa+h4T/EX5M16qHjP8Ag6dMqeuU/tVTejnBa4j9jYvNxbajhPyV4QxoVOOY/ipC6nX3l5D/eADPfwc/lP/KwUGuad+U/QWMmUS944D9ywRn8/WLlP3O7l/vkKOI/M6fLYmLz5D/ZJaq3BrbUP2MoJ9pVSOE/fbH34ov24j+fd2NBYdDjP2QhOgSOBOU/fJ4/bVSn5j/3PeqvV9jhP14sDJHT1+Y/1dAGYAMi4T9FZcOayiLiP1+VC5V/rec/q0GY271c6D9a8+MvLerlP1OXjGMke+c/ZD+LpUi+5z8/OQoQBTPiP+6wicxc4OI/1jcwuVFk4T8Q6iKFsnDjP50SEJNwId4/bmqg+Zy74D+Bd/LpsS3gPzjXMEPjCeM/bhea6zTS4T+ox7YMOMvjP9kJL8GpD+Q/D+1jBb8N4D+CUx9I3jniP8anABjPoOA/yqSGNgCb5D8uyJbl67LkP/ylRX2Su+A/aFw4EJIF4T9ViEfi5eniP4p0P6cgP+M/cjYdAdws3T/EXb2KjI7kP0J79fHQ9+c//yPTodPz4z/f+xu0Vx/nP/FmDd5X5d8/2ILeG0MA5j8OvcXDew7lP7ZkVYSbDOY/y2Q4ns+A4j/fawiOyzjkP+OKi6NyE+Y/BfwaSYLw5T86AyMva+LlPxx8YTJVMOU/CahwBKmU4z/o+dNGdTrjP7/Rjht+N98/88r1tpmK5T+wAny3eWPjP1w7URISaeQ/mS7E6o8w5D8heHx716DkP0pCIm3jz+U/tw2jIHj85j+fxyjPvJziP7aCpiVWxuQ/3h6EgHyJ5D9eZ0P+mcHjP/UPIhly7OU/igW+oluv4j9U46WbxCDoP9+Mmq+Sj+Q/SnmthO6S3z9LrIxGPq/hP7pJDAIrB+M/PpY+dEF95D/gY7DiVGvkP+fFia92FOM/PL8oQX8h5T+aB7DIr5/jP4NtxJPdTOQ/mZ8bmrJT4j9/pfPhWQLhP+sZwjHLHuE/SOLl6VzR4z8fveE+cmvjP0ZFnE6y1dM/ge1gxD4B4z/Vy+80mfHdPzhLyXISyuI/vmvQl97+3z/wMO2b+6vdP2d/oNy2b+Y/PpRoyePp4z9JopdRLDflP9lfdk8eFuI/jfD2IATk4z9DjNe8qrPmP5dzKa4q++U/16Avvf055z9UxOkkW93nP0jCvp1EhOQ/WCB6Uia15j/TiJl9HqPkP9UgzO1ebuI/Mlab/1cd4z+862zIPzPkP5vHYTB/heM/HEXWGkrt4z8Z/tMNFHjhP17b2y3JgeU/SFD8GHNX5j+uSiL7IMvhP7vurUhM0OE/f4P26uOh2D8j9Z7KaU/bP5Lp0Ol5N9s/RMAhVKnZ5D90JQLVPwjiP0Chnj4Cf+I/AmGnWDWI4z+AgSBAho7dP1ESEmkbf+M/ndZtUPut4z84Ef3a+unjP85SspyEUuM/bVfog2Vs4T++9sySADXnP99t3jgpzOY/e9l22hoR3j8yVpv/Vx3jP5uPa0PFOOE/F4IclDBT4z9grdo1IS3lPwQhWcAEbuU/NdO9TurL5D/D1QEQd/XgP0IKnkKu1OE/ZTVdT3Td4j9ZTGw+rg3jPyhhpu1f2eA/2/l+arz04T/wMVhxqjXlP2Zpp+ZyA+c/bJOKxtrf4j9lj1AzpIrnPx09fm/Tn94/DeNuEK0V5j8qHEEqxQ7jP1aCxeHML+A/+3PRkPGo4z8vGFxzR3/jPzMxXYjVH+M/mwKZnUXv4j/VPbK5ah7iPy5ZFeEmo+E/vobguIwb5D++TBQhdbvkP4Y41sVtNOA/8ddkjXoI5j8zar5KPnblPyeh9IWQc+A/EOz4LxCE4T/D2EKQgxLkP9ZwkXu6OuU/ChLb3QN03D8urYbEPZbUP2YVNgNckOU/acNhaeBH5T/mkT8YeO7jP2b4TzdQ4OQ/1CzQ7pDi4j8N/+kGCjziP7YTJSGRtuQ/bJT1m4np4D/v4ZLjTunlP7yt9NpsrOA/Sn8vhQdN5D/CMjZ0s7/lP4rKhjWVReE/TOKsiJro4T98YTJVMKriP5JaKJmc2uc/pU5AE2FD5D//BBcrarDiP/TEc7aA0N8/tvP91Hhp4z/3WtB7YwjhP/KwUGua9+U/mS1ZFeGm5j/4+lqXGqHhP1DkSdI1k94/MCk+PiE74D8HRfMAFnniPzL/6Js0DeQ/RtCYSdSL5D9UxyqlZ3rgP3B5rBkZZOE/pHITtTS34D91riglBCvhPw/tYwW/jeM/pGyRtBt94z9QGmoUkkziPwH5Eio4vOI/8PlhhPBo4D/r5XeazPjkP4yGjEephOY/PQytTs5Q5T+qKjQQy2bnP1EVU+knnOI/UtUEUfeB5j9eLXdmguHmP1jIXBlUG+c/IlM+BFUj4z86BfnZyHXjP9V6v9GOG+I/tRoS91j64j+nBMQkXEjiP8kFZ/D3i+M/a/KU1XQ95T8lB+xq8pThP3dNSGsMOuM/a9RDNLqD4z8Wa7jIPV3lP4NQ3sfRnOQ/4nSSrS4n5T9Rai+i7RjjPzZZox6i0d4/SYPb2sLz4z9enPhqR/HlP8+HZwkyguM/AMRdvYoM5T+1boPab+3XP8E24sluZtY/G2ZoPBHE2D9O7QxTW+rWP0pGzsKedug/nDbjNEQV6T/26053nvjnP9iDSfHxCeU/J6Wg20ua5D+g3/dvXhznP9h/nZs2Y+Y/A2A8g4Z+4j/9iF+xhgvoP9bllICYBOg/tMwiFFvB4z/5S4v6JHffPxgK2A5G7OQ/IenTKvpD4z+H4SNiSqThP7Oz6J0KuOM/BfnZyHXT4z8z/n3GhQPhP/GD86ljFeE/rwYoDTUK4z/DRlm/mZjhP1+4c2GkF+M/+glnt5bJ4T+efeVBeorlP4v5uaEpu+M/EyhiEcOO4z8mHHqLh/fgP2+8OzJWm+U/jPM3oRCB4z+5+rFJfsTiPwU25+CZUOM/MIDwoURL3z+Au+zXnW7iP7yS5Lm+D+I/jGSPUDMk4z8JxOv6BTvjPx4Wak3zDuU/RzzZzYx+5D8hO29js6PnP0imQ6fn3eE/B7Xf2okS5z/nbWx2pPrfP1YOLbKd7+M/oE55dCMs4D883uS36GTiP8kiTbwDvOI/Sbpm8s225T8Xg4dp39zgP3xinSrfM98/i/z6ITbY5D/vVwG+2zzjPw+aXfdWJOY/7idjfJi95T/QYFPnUfHcP1Bu2/eov90/vceZJmw/5z8Ou+8YHvvlP8Ni1LX2PuY/Vik900uM4T8tBaT9D7DhP/Xx0He3MuU/qrcGtkow5T+0rzxIT5HlP5t2Mc10L+U/oFG69C/J5j/kwKvlzsznPzkqN1FLc+Q/Uz9vKlLh5T9Ng6J5AAvjP+7RG+4jN+Q/P3PWpxwT5j/aWIl5VtLeP09AE2HD09c/WWq932hH4j/zkCkfgqrnP9Iag04IneE/A0AVN26x4z90stR6v9HjP91ELc2tEOA/mG4Sg8DK3z8pzeZxGMzhP+Id4EkLF+I/8dQjDW5r4z8K9l/npk3mP6tdE9IaA+Q/8rT8wFUe5D/EmPT3UnjmP0FF1a90vuU/K/uuCP634z+elh+4yhPgPz4EVaNXA9w/nZ53Y0Fh2D8IdZFCWXjjP+Xv3lFjwuA/mIqNeR1x4D+fceFASBboPwWiJ2VSQ+c/UbtfBfhu5D+bqRCPxEvlP1WJsreUc+M/UP9Z8+Ov4j97MCk+PiHlP93rpL4sbeM/W5pbIaxG4j8XEjC6vDniP64OgLirV+U/VmMJa2Ns5T93Sgfr/xzlP0W94NOcvOI/GJY/3xYs2D+o/6z58ZfWP58fRgiPtuI/Z9e9FYkJ4z8UQgddwiHjPzBMpgpGpeM/NGjon+Di4j+LNse5TTjgP38UdeYeEuY/1PIDV3kC3T9r1hnfF5foP0ji5elcUd0/glfLnZlg6D/Gw3sOLEfgP2YTYFj+fOU//dtlv+504j9bCHJQwkzmP0uvzcZKzOE/MKAX7lwY3T9ckZighm/jP2NjXkccsuI/V5dTAmKS4z9fQgWHF0TfP28QrRVtjt8/zAna5PBJ4j/cm98w0SDlP5OOcjCbgOY/xouFIXJ65z8a+ie4WFHeP04MycnEreE/zsMJTKd15z/ByTZwB+rgP5uRQe4iTOE/DXIXYYpy5D/oSgSqf5DgP9yBOuXRjd4/lpUmpaBb5T83GVWGcTflPxiV1AloouM/Xr2KjA5I5T8qATEJF/LkP0t0llmEYuM/DJI+raI/3D8WaHdIMUDlP9MSK6ORT+M/t9PWiGAc4j+N0xBV+DPjP6yql99psuA/P4wQHm2c4j+An3HhQMjmP1w4EJIFzOY/aM9lahI85D8L7DGR0mziP/ZAKzBkdeQ/TPxR1Jn75D9R+kLIeX/jP/sFu2HbouE/LEZda+9T4z/ajqm7sgvdP+bMdoU+2OQ/2ZQrvMvF4z/2X+emzTjmP9UD5iFTPuY/AKq4cYv55T8e3J21267mP7+dRIR/keU/ueLiqNxE5T9kdha9U4HkP2ozTkNU4do/bCIzF7g85D9lVBnG3aDmPyRiSiTRS+I/8YEd/wUC5z/Si9r9KsDiP8iYu5aQj+U/9gzhmGXP4j9szOuIQ7bmP1A3UOCdfOY/mUnUCz5N4D8RAYdQpWbiPyzvqgfMQ+U/7iJMUS6N4T95spsZ/ejgPwK5xJEHIuE/rvNvl/264z9RSghW1cvkP8JqLGFtjOI/VS5U/rU85D/P+SmOA6/lP+AQqtTsAeY/RnwnZr2Y5D8A5lq0AO3kP6+xS1RvjeI/3o0FhUEZ5T9lNV1PdF3mPxk4oKUr2OY/yF9a1Cc54z9ntcAeEynlP+rqjsU2qdw/DWyVYHG45D/RWWYRiq3ZP3L4pBMJpuY/GvhRDfu94j8Fb0ijAqflP2dF1ESfj9c/l3DoLR7e2z/fp6rQQCzmP+WYLO4/Muc/Mc7fhEKE5D/oFroSgerjP/hQoiWPp+M/kj6toj804z8p54u9F1/lP9BgU+dR8eU/urvOhvwz3D+yZI7lXfXfP0yndRvUfuI/F58CYDwD4D/JAbuaPGXiPzZzSGqh5OI/3+ALk6mC3j95I/PIH4ziP6JfWz/9Z9s/qhCPxMvT5D8xlumXiLfmPzZy3ZTy2uY/oTGTqBf84z+3Yn/ZPfnjP9Km6h7ZXOQ/Sz/h7Nay5T9kIToEjgTjP5inc0UpIeQ/ou4DkNrE4T/a44V0eAjoP4VDb/HwHug/pl63CIz15j/VA+YhUz7nP36QZcHEH+c/ylAVU+kn5z/NAYI5enzmPy/E6o8wjOM/RdrGn6hs4T+xMEROX0/iP6kSZW8pZ+I/OzQsRl3r4D+E1sOXiaLnP63fTEwXYuc/tRg8TPtm4j/CaFa2D/nkPxCSBUzgVuI/aqUQyCWO4D9PzeUGQ53jPwK7mjxlteI/+8vuycPC4z/ElEiil9HjPySaQBGLmOg/O6sF9pjI4T+DpbqAl5ngPyandoapLd4/QNzVq8jo5D8OLh1znjHkP4SdYtUgzOI/QNzVq8jo4j+nd/F+3H7jPytR9pZyvuQ/R1m/mZgu2j/jF15J8tzlP8Wp1sIstN8/Fyr/Wl454z+r61BNSdblP0fjUL8L2+A/P3Jr0m2J4j/0pbc/F43iP8yYgjXOpt0/nStKCcEq5j/AWUqWk9DgPxPzrKQV3+E/ecvVj03y5j+TpkHRPIDmP+HtQQjIl+g/2jwOg/mr4T/DSgUVVT/lP9r+lZUmJeU/d4NorWhz2j+YE7TJ4ZPgP50ui4nNx9k/ppwv9l582z8oLVxWYTPjP26FsBpLWOA/Tfc6qS/L4z/WU6uvrorhP8k88gcDz+M/SYWxhSCH4z/WARB39SrgP1AYlGk0ueI/NQwfEVMi4z+duByvQHTkPz7nbtdLU+E/9Q8iGXJs4T/IJCNnYU/eP1Fmg0wy8uU/SwFp/wMs5T//7EeKyDDiP8VVZd8VQeQ/k1URbjKq4z9v8lt0stThP3O4VnvYi+U/3L3cJ0eB5T+J1LSLaSbmP4NRSZ2ApuI/FY+LahFR5D/ACYUIOITiP4y+gjRj0eI/jiJrDaX24j8+6q9XWPDiP7YTJSGRtuM/4ExMF2J14z9HIF7XL9jjP/hrskY9ROI/pTDvcaYJ5T/ye5v+7EfkPznsvmN4bOI/y2YOSS2U5T/D8ufbgqXlP01NgjekUeU/hcyVQbXB5j97n6pCA7HlP6q7sgsG1+Q/o8ow7gZR4z9EUDV6NUDlP/flzHaFvuc/N+LJbmZ04T9BLnHkgUjhP7a93ZIcMOI/gnUcP1Sa4T+rlQm/1E/iP3rhzoWRXuY/sWmlEMil5D9wmj474LrbP66AQj19hOQ/wXEZNzXQ5D/bF9ALdy7kP21Wfa62YuQ/I2b2eYzy3z+rlnSUg9neP2owDcNHROU/xvmbUIiA5D+In/8evHbhP+wVFtwPeOE/95Dwvb/B4T98CoDxDJriP2bAWUqWE+U/qz5XW7G/4z8BMQkX8gjkP6Q33EduTeU/FXDP86eN5j8aMbPPYxTgP+RJ0jWT7+Y/Njy9UpYh1T92N091yE3kP1wf1hu1wt8/Fw/vObAc4T+QvknToOjiP7XDX5M16uU/ofKv5ZVr4z/UZMbbSi/gP9CzWfW52t8/X0NwXMZN4j+KBb6iWy/kP4mV0cjnleI/0o4bfjdd4T9kWMUbmUfeP0Q0uoPYmdk/GXWtvU/V4T/8pxso8E7dP0bqPZXTnt0/wvnUsUrp5j9oJEIj2LjlP1VszOuIw+c/soNKXMc44z+9HeG04MXkP+UNMPMdfOM/jWFO0CaH5D+2vd2SHDDhPzQQy2YOyeQ/Rga5izDF4j8zGvm84inkP1fMCG8PwuM/6spneR7c4j+fOlYpPVPkP7h4eM+B5eM/fxe2Ziuv4T9/pfPhWQLhP592+GuyxuU/KPIk6ZpJ5T9Qbtv3qL/mP/g1kgThCuY/lKKVe4FZ4T/EJ51IMNXkP2JLj6Z6MuM/m6285H/y4j/bb+1ESUjjPzBl4ICWruQ/b/JbdLLU4z8CucSRB6LhP4i6D0BqE90/tMcL6fCQ4j8BbatZZ/zhP+NtpddmY+M/5gKXx5qR4D8qGQCquHHkP0m+EkiJ3eM/+MYQABx75T+tbB/ylivgP/s6cM6IUuA/X0TbMXVX5j9+qgoNxDLjP6j/rPnxF+U/8u8zLhwI5D+XkXpP5TTgPx08E5okFuQ/wAXZsnzd5z+4ByEgX0LcP9xoAG+BBOY/uvPEc7aA4T+94T5ya9LlP7yWkA96NuM/Xwg57//j4T+chqjCn+HiP1CJ6xhX3OY/k3NiD+1j2j+zeRwG81fiP0ioGVJFceU/Zk6XxcTm5j8DXmbYKOvaP877/zhhQug/Rs7Cnnb43j+aBdodUgzoPwdBR6taUuA/Tp1Hxf8d4T/eyhKdZRbhP0WhZd0/FuQ/9gt2w7bF5D9O1NLcCmHgP5KwbycR4eQ/OBQ+WweH4z+pTZzc79DmP8NHxJRIouU/2Vw1zxH55T8V4/xNKMTjP7u2t1uSA+Q/xVVl3xXB4z9wd9Zuu9DjPxQi4BCqVOQ/+YTsvI1N5D9cdoh/2FLlP7eXNEbrqOc/h1J7EW3H6D8xmL9C5krlP5shVRSvMug/gSTs20lE6D8nEkw1sxboPx7BjZQtEuA/KbFre7sl6D8urYbEPZaqP4kjD0QWaeg/xFxStd0E5z+XUpeMY6TmP0mFsYUgB+E/uQA0Spf+6j/+0qI+yR3rP6etEcE4uOU/qKePwB9+4D95lEp4Qq/kP6EuUigLX+I/kloomZxa5j9Kea2E7hLjP+LMr+YAQeg/WRe30QDe5T8oYabtX9nlP+hmf6DctuM/HeOKi6Ny3j9enPhqR3HnPzUmxFxSNec/fgG9cOfC5j+Yv0LmyqDhP6mG/Z5YJ+A//cHAc+/h0z8hyaze4XblPzHQtS+gF+M/YJLKFHMQ5D+gcHZrmYzlP42ZRL3gU+U/t7OvPEjP5D/36uOh727nPxUDJJpAkeM/SfYINUMq5T+Xj6SkhyHkP4XP1sHBXuM/mZzaGaY24j8PCkrRyj3jP3fYRGYu8OU/br4R3bMu5T89X7NcNjrhP2yYofFEkOU/LA5nfjWH4z+um1JeKyHnP1t9dVWgFuQ/v2A3bFuU6D91V3bB4BrkP9Oh0/NurOQ/Xtcv2A1b5D+5pdWQuEfkP23Jqgg3GeI/R8mrcwxI4z+emssNhjrmPzgu46YGmuA/0nDK3Hwj3D8K8rOR66blP6Z+3lSkwtw/0Eaum1Le5T8mbhXEQNfjP97lIr4TM+M/9FFGXAAa4z/rHtlcNU/hP3svvmiPF+I/uarsuyL44D93ZKw2/6/gP0FIFjCBW94/H6FmSBXF3T979fHQd7fmPxKDwMqhRd4/qtbCLLTz5D+Jm1PJAFDgP8uAs5QsJ+M/YvVHGAas4D9N9s/TgMHlPyMtlbcjHOA/O6dZoN0h4T/hYkUNpmHiP+hn6nWLwOA/fjuJCP8i3T+1NLdCWI3mP8nIWdjTDt4/IVnABG7d3D/S4La28DzoP5XyWgndpec/Ymh1coZi4T/cR25Nuq3hP634hsJna+Y/jNtoAG+B4z8JbM7BMyHmP7Hc0mpIXOU/3LdaJy5H4T94uYjvxCzjP/YjRWRYxeU/AtNp3Qa14z+KyRtg5rvlP2To2EElrt4/qFKzB1oB5z8CucSRByLnPwLTad0GNeE/8nowKT6+4j8yyjMvh13kP2fyzTY3puE/tObHX1rU4j/rNT0oKMXlP2fTEcDNYuI/GapiKv2E4T+brFEP0ejgP9EgBU8hV+E/jQkxl1Rt4z+W6CyzCMXXP8hESrN5nOI/pmPOM/al4j8lP+JXrOHZPzLMCdrkcOc/1XlU/N8R5D/UYvAw7ZvhP1x0stR6v9o/uagWEcVk4T8EATJ07KDkP05/9iNFZOM/OV/svfii4z+3e7lPjgLjP2NH41C/i+Q/5IIz+PvF3j9BR6ta0lHfP3Yaaam8neE/GLMlqyJc4z80DvW7sLXhPxAIdCZtqts/kBFQ4QhS4T+Af0qVKHvgP0lm9Q63w+A/jIS2nEtx4j+a0vpbAvDlP+xOd554TuI/GjT0T3Cx5D97ZkmAmtrkP/1OkxlvK+E/4CpPIOwU5T9pxTcUPtvkP+YIGcizy+I/mus00lL54j8IH0q05PHkPyS5/If0W+k/k+NO6WD96D+fWn11VaDjP7B1qRH6GeM/fJxpwvaT3z9rYoGv6FbiP35WmSmtv+I/tRX7y+5J4z8wn6wYro7iP4i6D0BqE+E/PrMkQE0t3j8nUMQihh3nP/uWOV0Wk+M/cXZrmQxH5T97v9GOG37iP1e1pKMczOI/nn5QFykU4z+Kdap8z0jlPxJLyt3n+OI/U5YhjnVx4T+yn8VSJN/mP82tEFZjieU/RPzDlh5N6D/YvKqzWmDiP8Gr5c5MsOI/ZcOayqIw5T/eVQ+Yh0zjP8IyNnSzP+A/wZFAg02d4D87AU2EDU/iPwYSFD/G3OI/YHR5c7hW3j9yTuyhfazlP9b/OcyXl+E/LZW3I5wW4D+DonkAi/ziP+tWz0nvm+I/i4wOSMK+4j+bxvZa0HvjP3ZUNUHU/eI/bHnlettM4T+tUKT7OQXjPyLeOv922eM/MJ5BQ/8E5D+A1CZO7vflP7PuHwvRIeI/Dk3Z6Qd14D+xqIjTSbbjP66gaYmVUeI/XI3sSstI5D9trprniPzjP0M6PITx0+U/0GOUZ16O5D+zXaEPljHkPzjAzHfwk+M/lN43vvZM5j82kC42rZTiP1Pr/UY77uQ/bqErEaj+2z9CJhk5C/vhP/P/qiNHOuU/SYPb2sLz4T8g0QSKWETiP4BJKlPMweI/AtTUsrU+4T+qfToeM9DlP2t9kdCW8+U/iWAcXDrm5D/dsdgmFQ3mP6pkAKjiRuM/9KljldIz4z/Nd/ATB1DkPw7Xag97IeM/cobijjf55D9SDJBoAsXlP8+kTdU9MuQ/yR6hZkgV5T+PqbuyC4bmP6G9+njou90/TPxR1Jl74D9cBTHQtS/jP7DKhcq/lto/GFsIclBC4z+70cd8QKDnP/1K58OzhOY/dsJLcOoD5T9zZrtCHyzlP6c7Tzxni+U/iiE5mbjV4j90le6usyHjP3hDGhU42eQ/a7ddaK7T4D9SEDy+vWvmP2XCL/XzpuY/ICkiwype4T//5sWJr3bkP7Nfd7rzxOM/vAUSFD/G5j++FvTeGALgP/WdX5SgP+E/1ZelnZpL4z+63ct9chTdPxsRjINLx9w/HcpQFVPp5T/Cps6j4v/aP5D2P8BaNeY/KuJ0kq0u5j8F3smnx7bmP3wm++dpwN0/8wLso1NX5D8q499nXLjkP2yyRj1EI+Y/bK8FvTeG4D8hQIaOHdTgPwe2SrA4HOQ/04OCUrRy4j8LmwEuyJblPyrKpfELr+Q/QplGk4ux5D/uzW+YaBDkP86I0t7gi+Q/3QcgtYmT4z9ozY+/tKjmPzTZP08DBuI/Df0TXKwo5T+Mutbep6rbPxPSGoNOCOQ/71TAPc+f3z9MqUvGMRLlP6DgYkUNJuY/nu+nxks34j9RoE/kSVLhP/oJZ7eWSeQ/zSIUW0HT4z9WmpSCbq/iP1qAttWsM94/DAbX3NH/2T9w7URJSKTmPzf+RGXDmuA/FxHF5A0w3j8nh086kWDeP+vJ/KNvUuI/9lymJsGb4D89fm/Tn/3jP+zdH+9Vq+U/JoxmZfsQ5z9hw9MrZRnoP8ZvCisVVNw/ms+52/XS3j8MWkjA6PLeP1D8GHPXkuU/SN45lKEq5T9DHsGNlC3mPzhIiPIFLeU/2pJVEW6y4j8exTnq6DjmP+1jBb8NseI/SN45lKGq4z8HmzqPiv/iP9+kaVA0j+Q/cQLTad0G4T947j1cctziP5awNsZO+OM/A+s4fqi04T+Jljyelp/gP1rY0w5/TeM/FJLM6h1u4z8uc7osJrbiP8UfRZ25h+U/6StIMxZN5D8wgsZMot7gP2thFto5TeQ/UoGTbeCO4j8QH9jxX6DmP2CSyhRzEN8/QwOxbOaQ2z8uU5PgDenkP6GfqdctAuQ/wF/MlqwK5j+4c2GkF7XmPx40u+6tyOM/jsu4qYHm1j+wPEhPkcPmP+HTnLzIhOM/7Ggc6ndh5j8LYqBrX0DmP3QoQ1VMpeQ/W7QAbatZ5D/ECUyndZvjP1BvRs1XSeM/MZi/QuZK5D/C2hg74SXgPx0EHa1qyeE/44kgzsMJ1j/cD3hgAOHkP5bRyOcVz+I/k2+2uTE95z8IH0q05PHXP876lGOyuOU/Z5qw/WSM5T/IsmDijyLkP4YfnE8dq94/aAdcV8yI4j+yZmSQu4jmPyKMn8a9+eQ/8zl3u14a5D87Hch6avXgP8fxQ6URM+I/VRLZB1mW5T92/BcIAmThP36nyYy3ld8/mx2pvvOL6D8kmGpmLYXgP2iu00hL5eM/AUwZOKCl5D/Sb18HzhnjP9+pgHuev+M/zHoxlBPt4D+2aAHaVrPkP3wm++dpQOM/AmTo2EGl6T9HWb+ZmC7oP7+c2a7Qh+c//yJozCTq5j+O69/1mTPkP57PgHozauA/fPMbJhqk5D9qUDQPYJHlP3VXdsHgmuE/j4mUZvM44z9dMSO8PYjlP4OHad/cX94/6xwDstc74j+A2NKjqZ7hP6yrArUYvOQ/A0TBjClY4T8So+cWuhLmPwh3Z+22i+U/FeKReHk64D/w3lFjQkzjP+tXOh+epeE/Dt3sD5Tb4z9cx7ji4ijmP4WZtn9lJeE/qySyD7Ks4j/0F3rE6DniP917uOS40+E//rrTnSce4j/ajxSRYRXhP6A4gH7fP+Q/aXHGMCfo4j8LYqBrX8DmP6OtSiL7oOA/v0S8df5t4z+TNlX3yGbiP4sXC0Pk9OI/f7+YLVkV4j+7fVaZKa3ePzULtDukGN8/iNaKNsc55T+MTMCvkSTmP11qhH6mXuI/0lEOZhPg5D+Z8bbSa7PlP4DxDBr6J+Y/r+qsFthj5D8mV7H4TWHiP98a2CrB4uE/YK3aNSGt5D8P0lPkEPHlPwlU/yCSIeI/mX/0TZqG4j9R9wFIbeLiPzSBIhYx7OI/ezL/6Js02z8lPKHXn8TbP0UNpmH4iOM/7l2DvvR24z9dNjrnp7jkP1DCTNu/suE/J8Cw/Pm24z/3r6w0KQXmPyMRGsHGdeA/UvAUcqWe4D+XrmAb8WTaPxDn4QSm09o/C7jn+dNG0j+kbfyJygbkP4GYhAt5hOE/DD7NyYvM4T/z59uCpTrkP25MT1jiAeQ/qmOV0jM94j9/vi1YqovhP6uX32kyY+E/1NUdi23S4T924nK8AlHgPw9+4gD6feU/5+RFJuDX5z+cUfNV8jHkP0Fn0qbqHuY/Z0gVxaus3j/Qudv10pThPzCeQUP/BN8/z2VqErwh4j+BJOzbSUTgP6eSAaCKm+A/gc05eCY05D/njv6Xa1HjP8xdS8gHPeA/fQkVHF4Q4j8w8rImFvjkP77ArFCk++Q/z2bV52qr5T8Zcmw9QzjnPwKfH0YID+M/A85SspyE2j+m8KDZde/hPworFVRUfeQ/SWO0jqom5j/JBPwaSYLoP2q/tRMlIds/0okEU80s5T/vIHam0HnhP47pCUs8IOc//RGGAUsu4D+vz5z1KUfkPx4X1SKiGOE/+G2I8ZpX5T8XuDzWjAzmP/A2b5wU5tk/Tgte9BWk2j+EZte9FQnjP0p/L4UHzds/Ub8LW7MV5T9QbXAi+rXcP99vtOOG39Y/V3iXi/hO1T/5ZwbxgR3kPxQGZRpNruE/9WbUfJX84z/n49pQMc7pP0z8UdSZ++c/6SYxCKwc5z/pJjEIrBznP00PCkrRytw/fQbUm1Hz4D/qI/CHn//gP35Rgv5CD+o/R3alZaTe4D87yOvBpPjnP+rqjsU2qeU/KZfGL7yS5j+H+l3Ymq3lPyOHiJtTyeE/11HVBFH34z/md5rMeFvlPwb1LXO6rOQ/XRd+cD514z/eVnptNtbkP0QV/gxv1uI/IazGEtbG4j86BI4EGuzmP79GkiBcgek/UMQihh3G5z/b+1QVGojnP9KJBFPNrOM/lltaDYl74D/gDz//PXjgP2u28pL/SeE/TDWzlgJS4z9JvDydK8rlP/D49q5BX+Y/dZMYBFaO5j+T/8nfvSPgP878ag4QzOI/RYMUPIXc4j9yh01k5gLiP6MFaFvNOuM/Lubnhqbs4D/lJmppbgXhPwLzkCkfguM//TOD+MAO5j+c+dUcIJjmP4vAWN/A5OM/dOs1PSgo3z/yzqEMVbHhP9sxdVd2wdo/eVp+4CpP2z/Wi6GcaFfnP8Aiv36IDeE/soUgByVM4T9DG4ANiBDXP4T1fw7z5eU/cAfqlEe34D+536Eo0KfkP5mbb0T3LOM/cJf9utOd4T+QSUbOwp7iP9qs+lxtxeU/2H4yxofZ3z9rC89LxcbeP7Yr9MEyNuQ/kQw5tp6h4T9oPudu10vkP8u/lleuN+M/eNFXkGas4j+hvfp46LvhPztxOV6BaOI/pvJ2hNOC4z9GPxpOmRvlP+vgYG9iyOQ/KzQQy2aO4j99s82N6QniP1hYcD/ggeQ/ayxhbYwd4j/+KytNSsHgP1MDzefcbeM/68N6o1aY3T9dUUoIVtXiP/RRRlwAmuQ/2a873Xni5D/M07milJDhP+BnXDgQkuc/YymSrwRS5D+1boPab+3jP6YKRiV1guQ/zjl4JjRJ5D+tFAK5xBHlPzj27LlMTeQ/oWmJldFI5T8MkdPX8zXnPwt6bwwBQOQ/XmVtUzyu4z+Dbi9pjNbTP8kdNpGZC9Y/ZHjsZ7EU4D9lpx/URYrhP6lLxjGSveY/Dp90IsFU5z8dPX5v0x/iP7nF/NzQFOY/V2DI6lZP4z+mRuhn6vXjP4vfFFYqKOQ/WmJlNPJ53z9CIm3jT1TnP5AV/DbEeOc/GT230JWI5D/vVSsTfinoP9/DJcedUuQ/4443+S064D9ClgUTfxTdP1x1Haopyds/jEzAr5Ek4z88TPvm/mrjP2nEzD6P0eI/Z9Xnaiv24T9OtKuQ8hPjPyQmqOFbWN8/xD4BFCPL5z9XIeUn1b7jP/Z/DvPlheE/h01k5gIX5T8ot+171N/lP/1reeV6W+k/+s+aH39p6T/UDRR4J5/gPwLxun7B7uQ/KzBkdatn5T+3Xz5ZMVzlP/w3L058teI/xqaVQiAX4j/khAmjWVnjP8U6Vb5npOE/8SkAxjNo5j8XghyUMNPWP0fIQJ5dvtI/S65i8ZvC0D+zmq4nuq7jP0ikbfyJyuM/9RQ5RNyc3z+XVdgMcEHmP0USvYxiud0/jZqvko/d5D9IFcWrrO3jPwWiJ2VSw+M/kgciizTx5j9wJNBgU2fmPynMe5xpwuE/Ivsgy4KJ4j/wbmWJzrLjP8iXUMHhBeU/7Sqk/KRa5T+ZuFUQA93kP4jzcALTaeE/TKQ0m8dh4T8zVMVU+gnkP5yLv+0JEuU/ms5OBkfJ4T8qAMYzaOjeP+LoKt1dZ94/XW4w1GEF4z+6u86G/LPkP+9XAb7bPOQ/44xhTtCm5D+++njou1vhP4RnQpPEEuU/YCFzZVDt4z8/raI/NPPfP1PovMYuUd8/vtnmxvQE4z/jcOZXc4DiP1mkiXeAp+E/qcE0DB8R3z+UTiSYaubjP5oK8Ui8PN4/qyLcZFQZ3D+loUYhySzhPyqnPSXnxOE/TDYebLHb5D+espquJ7rgP93Sakjc4+I/KGTnbWx24j8BwLFnz2XiPyydD88S5OI/kgN2NXlK5D+kiuJV1jbkP8SZX80BguI/VmMJa2Ns5D+NKsO4G0TkP+blsPuOYeQ/veDTnLxI5j9TXFX2XZHnP9tRnKOODuE/TN4AM99B4j96i4f3HNjjPzLLngQ2Z+Q/AcEcPX5v5D9sPq4NFWPkPwN4CyQo/uE//ilVouyt4D/H2AkvwanhP/0xrU1j++I/I4YdxqS/3T+syr4rgv/WP7FPAMXIEuc/Y+3vbI/e4D8FpP0PsFbdP6685H/yd94/oib6fJSR4j+hSzj0Fg/jPwgGED6UaOQ/EhYVcTrJ5D/2QgHbwYjjP1Q3F3/bE94/GR2QhH074z8wZHWr5yTmP67X9KCgFOY/inWqfM/I5T/URJ+PMuLmP85RR8fVSOQ/VKnZA61A4z/eADPfwc/hP7th26LMBuY/SmJJufuc4T8lH7sLlJThPybl7nN8tOE/tJJWfENh5D8sfeiC+pbhP2sOEMzRY+c/XJAty9dl5D8kl/+QfvvkPw74/DBCeOE/MV2I1R9h4j+8W1mis8ziP96SHLCryeE/gc8PI4RH3j/Eew4sR0jkPyU7NgLxuuM/pivYRjzZ5D+/fogNFs7jP92x2CYVjeQ/s0EmGTkL5D+m0HmNXSLkP5HSbB6HQeY/tKz7x0L04T/fUPhsHZzhP45bzM8NTeE/pKXydoRT4T+SlzWxwFfiPwithy8TRd8/ZED2evfH3T83ABsQIS7lP65lMhzPZ+Q/LgJjfQMT4T9pAdpWs07kP6iPwB9+/t8/01CjkGRW5T+gw3x5AfbkP8WM8PYghOM/tvY+VYUG5T/034PXLm3kPy0+BcB4BuQ/qWis/Z3t5T/+LJYi+UrmP5HvUuqSceU/hA1Pr5Rl3z9SuYlamtvkPw5rKovCLuA/xM2pZAAo5T9FnE6y1eXfP6BOeXQjrOA/dsHgmjv64D/d6c4Tz9nmPwk02NR5VOI/wktw6gPJ3D8xzXSvk/rdP/0Ux4FXy+Q/OKClK9jG5D+AYfnzbcHeP9HOaRZo9+Q/pWd6ibHM4T+b54h8l9LjP/GfbqDAu+M/NIY5QZuc4z8ra5vicdHlPyUk0jb+xOQ/HOviNhrA5j8pJm+AmW/jP8Do8uZwreA/TtNnB1zX4j+1iCgmbwDjPwXB49u7huM/tWytLxJa4z+dnQyOklfjP4oEU82speI/FeC7zRsn4z9Uw35PrNPjP/Z9OEiI8uA/cO6vHvct5z/oiHyXUhfnP5bNHJJaKOQ/ZCE6BI4E5j+z6nO1FXvhP5vj3CbcK+E/9PqT+NwJ4D+0rzxITxHlP2w9Qzhm2eQ/Yi0+BcD44T8=","dtype":"float64","order":"little","shape":[3991]},"tau[0]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3991]},"tau[1]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3991]},"theta[0]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3991]},"theta[1]":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[3991]}},"selected":{"id":"6626"},"selection_policy":{"id":"6625"}},"id":"5955","type":"ColumnDataSource"},{"attributes":{},"id":"6704","type":"BasicTickFormatter"},{"attributes":{"overlay":{"id":"6501"}},"id":"6497","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"6503"}},"id":"6498","type":"LassoSelectTool"},{"attributes":{},"id":"6087","type":"LinearScale"},{"attributes":{},"id":"6758","type":"BasicTickFormatter"},{"attributes":{},"id":"6496","type":"WheelZoomTool"},{"attributes":{"text":""},"id":"6753","type":"Title"},{"attributes":{},"id":"6529","type":"LinearScale"},{"attributes":{"axis_label":"tau[0]","formatter":{"id":"6786"},"major_label_orientation":"horizontal","ticker":{"id":"6532"}},"id":"6531","type":"LinearAxis"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"6078","type":"Line"},{"attributes":{"formatter":{"id":"6650"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"6092"}},"id":"6091","type":"LinearAxis"},{"attributes":{"overlay":{"id":"6502"}},"id":"6495","type":"BoxZoomTool"},{"attributes":{},"id":"6494","type":"PanTool"},{"attributes":{"axis":{"id":"6445"},"dimension":1,"ticker":null},"id":"6448","type":"Grid"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"6344","type":"Circle"},{"attributes":{},"id":"6089","type":"LinearScale"},{"attributes":{"axis":{"id":"6091"},"ticker":null},"id":"6094","type":"Grid"},{"attributes":{"formatter":{"id":"6784"},"major_label_text_font_size":"0pt","ticker":{"id":"6536"}},"id":"6535","type":"LinearAxis"},{"attributes":{},"id":"6539","type":"PanTool"},{"attributes":{"axis":{"id":"6095"},"dimension":1,"ticker":null},"id":"6098","type":"Grid"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"6343","type":"Circle"},{"attributes":{"overlay":{"id":"6546"}},"id":"6542","type":"BoxSelectTool"},{"attributes":{"text":""},"id":"6685","type":"Title"},{"attributes":{},"id":"6092","type":"BasicTicker"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6411","type":"BoxAnnotation"},{"attributes":{"data":{"x":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[220]},"y":{"__ndarray__":"AAAAAAAAAAB9kamFBLLEP32RqYUEssQ/JjCHU3Bk0z8mMIdTcGTTP9oWM05V6Nk/2hYzTlXo2T8BM6GrlILdPwEzoauUgt0/X+Fw6/rR3D9f4XDr+tHcP0uympUL+9o/S7KalQv72j8LGqnUCojXPwsaqdQKiNc/p9ZdWlll0j+n1l1aWWXSP0QYQHpn984/RBhAemf3zj/Kmq/qkw/KP8qar+qTD8o/KVTu6SxNxz8pVO7pLE3HP7tS4b0aPsI/u1LhvRo+wj8cIDmz5EW/PxwgObPkRb8/q9F+eQA1vD+r0X55ADW8PylU7uksTbc/KVTu6SxNtz9BHR9bwCe1P0EdH1vAJ7U/R7d5dmQrsT9Ht3l2ZCuxP76fjsvsP7A/vp+Oy+w/sD+Xp4cEao6wP5enhwRqjrA/beFw6/rRrD9t4XDr+tGsPxklGJQ9dqU/GSUYlD12pT85g8Q/HCSpPzmDxD8cJKk/98Zr6F7IoT/3xmvoXsihP6fWXVpZZaI/p9ZdWllloj/MLysl3+KfP8wvKyXf4p8/q9F+eQA1nD+r0X55ADWcP6fWXVpZZZI/p9ZdWlllkj/MLysl3+KPP8wvKyXf4o8/yTQKBjgTlj/JNAoGOBOWPwvxYl31bo0/C/FiXfVujT9Ht3l2ZCuRP0e3eXZkK5E/R7d5dmQrkT9Ht3l2ZCuRP6fWXVpZZZI/p9ZdWlllkj/JNAoGOBOGP8k0CgY4E4Y/C/FiXfVujT8L8WJd9W6NPwvxYl31bn0/C/FiXfVufT+Jc9LNIYd4P4lz0s0hh3g/yTQKBjgThj/JNAoGOBOGP/D1QT5On3M/8PVBPk6fcz8f9kE+Tp9zPx/2QT5On3M/Mrd5dmQrgT8yt3l2ZCuBPy7xYl31bm0/LvFiXfVubT/w9UE+Tp9TP/D1QT5On1M/H/ZBPk6fgz8f9kE+Tp+DP/D1QT5On2M/8PVBPk6fYz8u8WJd9W5tPy7xYl31bm0/8PVBPk6fYz/w9UE+Tp9jPy7xYl31bm0/LvFiXfVubT/w9UE+Tp9jP/D1QT5On2M/LvFiXfVubT8u8WJd9W5tPwAAAAAAAAAAAAAAAAAAAAAf9kE+Tp9TPx/2QT5On1M/AAAAAAAAAAAAAAAAAAAAAB/2QT5On1M/H/ZBPk6fUz/o8GJd9W5tP+jwYl31bm0/H/ZBPk6fUz8f9kE+Tp9TP/D1QT5On1M/8PVBPk6fUz8f9kE+Tp9jPx/2QT5On2M/8PVBPk6fUz/w9UE+Tp9TPx/2QT5On2M/H/ZBPk6fYz8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf9kE+Tp9TPx/2QT5On1M/H/ZBPk6fUz8f9kE+Tp9TPwAAAAAAAAAAAAAAAAAAAAAf9kE+Tp9TPx/2QT5On1M/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/ZBPk6fUz8f9kE+Tp9TPwAAAAAAAAAAAAAAAAAAAAAf9kE+Tp9jPx/2QT5On2M/8PVBPk6fUz/w9UE+Tp9TPwAAAAAAAAAAAAAAAAAAAADw9UE+Tp9jP/D1QT5On2M/TvZBPk6fUz9O9kE+Tp9TPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATvZBPk6fUz9O9kE+Tp9TPwAAAAAAAAAAAAAAAAAAAADo8GJd9W5tP+jwYl31bm0/6PBiXfVubT/o8GJd9W5tPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMrd5dmQrgT8yt3l2ZCuBPwAAAAAAAAAAAAAAAAAAAABO9kE+Tp9TP072QT5On1M/bHPSzSGHiD9sc9LNIYeIP/D1QT5On1M/8PVBPk6fUz/w9UE+Tp9TP/D1QT5On1M/TvZBPk6fcz9O9kE+Tp9zPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw9UE+Tp9TP/D1QT5On1M/AAAAAAAAAAA=","dtype":"float64","order":"little","shape":[220]}},"selected":{"id":"6734"},"selection_policy":{"id":"6733"}},"id":"6382","type":"ColumnDataSource"},{"attributes":{"axis":{"id":"6535"},"dimension":1,"ticker":null},"id":"6538","type":"Grid"},{"attributes":{},"id":"6744","type":"BasicTickFormatter"},{"attributes":{"align":"end","below":[{"id":"6051"}],"center":[{"id":"6054"},{"id":"6058"}],"frame_height":150,"frame_width":150,"left":[{"id":"6055"}],"renderers":[{"id":"6080"}],"title":{"id":"6633"},"toolbar":{"id":"6069"},"toolbar_location":null,"x_range":{"id":"6044"},"x_scale":{"id":"6047"},"y_range":{"id":"6042"},"y_scale":{"id":"6049"}},"id":"6043","subtype":"Figure","type":"Plot"},{"attributes":{"text":""},"id":"6767","type":"Title"},{"attributes":{"axis":{"id":"6531"},"ticker":null},"id":"6534","type":"Grid"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6413","type":"PolyAnnotation"},{"attributes":{"start":0.0},"id":"6347","type":"DataRange1d"},{"attributes":{"data_source":{"id":"6077"},"glyph":{"id":"6078"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6079"},"selection_glyph":null,"view":{"id":"6081"}},"id":"6080","type":"GlyphRenderer"},{"attributes":{},"id":"6688","type":"BasicTickFormatter"},{"attributes":{"source":{"id":"5956"}},"id":"6346","type":"CDSView"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6067","type":"BoxAnnotation"},{"attributes":{},"id":"6536","type":"BasicTicker"},{"attributes":{},"id":"6532","type":"BasicTicker"},{"attributes":{},"id":"6099","type":"PanTool"},{"attributes":{"text":""},"id":"6619","type":"Title"},{"attributes":{},"id":"6096","type":"BasicTicker"},{"attributes":{},"id":"6056","type":"BasicTicker"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6423"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6424"},"selection_glyph":null,"view":{"id":"6426"}},"id":"6425","type":"GlyphRenderer"},{"attributes":{},"id":"6676","type":"BasicTickFormatter"},{"attributes":{},"id":"6446","type":"BasicTicker"},{"attributes":{},"id":"6454","type":"SaveTool"},{"attributes":{"align":"end","below":[{"id":"6091"}],"center":[{"id":"6094"},{"id":"6098"}],"frame_height":150,"frame_width":150,"left":[{"id":"6095"}],"renderers":[{"id":"6120"},{"id":"6125"}],"title":{"id":"6645"},"toolbar":{"id":"6109"},"toolbar_location":null,"x_range":{"id":"5959"},"x_scale":{"id":"6087"},"y_range":{"id":"6174"},"y_scale":{"id":"6089"}},"id":"6082","subtype":"Figure","type":"Plot"},{"attributes":{"data_source":{"id":"6382"},"glyph":{"id":"6383"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6384"},"selection_glyph":null,"view":{"id":"6386"}},"id":"6385","type":"GlyphRenderer"},{"attributes":{"axis_label":"rho","formatter":{"id":"6772"},"major_label_orientation":"horizontal","ticker":{"id":"6487"}},"id":"6486","type":"LinearAxis"},{"attributes":{},"id":"6500","type":"ResetTool"},{"attributes":{"overlay":{"id":"6066"}},"id":"6062","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"6068"}},"id":"6063","type":"LassoSelectTool"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6458","type":"PolyAnnotation"},{"attributes":{},"id":"6678","type":"BasicTickFormatter"},{"attributes":{},"id":"6499","type":"SaveTool"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"6424","type":"Circle"},{"attributes":{},"id":"6487","type":"BasicTicker"},{"attributes":{"axis":{"id":"6486"},"ticker":null},"id":"6489","type":"Grid"},{"attributes":{},"id":"6061","type":"WheelZoomTool"},{"attributes":{"align":"end","below":[{"id":"6356"}],"center":[{"id":"6359"},{"id":"6363"}],"frame_height":150,"frame_width":150,"left":[{"id":"6360"}],"renderers":[{"id":"6385"}],"title":{"id":"6727"},"toolbar":{"id":"6374"},"toolbar_location":null,"x_range":{"id":"6349"},"x_scale":{"id":"6352"},"y_range":{"id":"6347"},"y_scale":{"id":"6354"}},"id":"6348","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"6064","type":"SaveTool"},{"attributes":{},"id":"6449","type":"PanTool"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6343"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6344"},"selection_glyph":null,"view":{"id":"6346"}},"id":"6345","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"6067"}},"id":"6060","type":"BoxZoomTool"},{"attributes":{"source":{"id":"5955"}},"id":"6471","type":"CDSView"},{"attributes":{"axis":{"id":"6055"},"dimension":1,"ticker":null},"id":"6058","type":"Grid"},{"attributes":{"align":"end","below":[{"id":"6486"}],"center":[{"id":"6489"},{"id":"6493"}],"frame_height":150,"frame_width":150,"left":[{"id":"6490"}],"renderers":[{"id":"6515"},{"id":"6520"}],"title":{"id":"6767"},"toolbar":{"id":"6504"},"toolbar_location":null,"x_range":{"id":"6174"},"x_scale":{"id":"6482"},"y_range":{"id":"6569"},"y_scale":{"id":"6484"}},"id":"6477","subtype":"Figure","type":"Plot"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6059"},{"id":"6060"},{"id":"6061"},{"id":"6062"},{"id":"6063"},{"id":"6064"},{"id":"6065"}]},"id":"6069","type":"Toolbar"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6412","type":"BoxAnnotation"},{"attributes":{},"id":"6065","type":"ResetTool"},{"attributes":{"axis":{"id":"6490"},"dimension":1,"ticker":null},"id":"6493","type":"Grid"},{"attributes":{},"id":"6059","type":"PanTool"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6473"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6474"},"selection_glyph":null,"view":{"id":"6476"}},"id":"6475","type":"GlyphRenderer"},{"attributes":{},"id":"6052","type":"BasicTicker"},{"attributes":{"formatter":{"id":"6638"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"6052"}},"id":"6051","type":"LinearAxis"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"6469","type":"Circle"},{"attributes":{},"id":"6484","type":"LinearScale"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"6118","type":"Circle"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"6473","type":"Circle"},{"attributes":{"overlay":{"id":"6547"}},"id":"6540","type":"BoxZoomTool"},{"attributes":{"source":{"id":"6077"}},"id":"6081","type":"CDSView"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6468"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6469"},"selection_glyph":null,"view":{"id":"6471"}},"id":"6470","type":"GlyphRenderer"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"6079","type":"Line"},{"attributes":{},"id":"6679","type":"UnionRenderers"},{"attributes":{},"id":"6491","type":"BasicTicker"},{"attributes":{"axis_label":"rho","formatter":{"id":"6648"},"ticker":{"id":"6096"}},"id":"6095","type":"LinearAxis"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"6474","type":"Circle"},{"attributes":{"source":{"id":"5956"}},"id":"6476","type":"CDSView"},{"attributes":{},"id":"6770","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6546","type":"BoxAnnotation"},{"attributes":{"formatter":{"id":"6770"},"major_label_text_font_size":"0pt","ticker":{"id":"6491"}},"id":"6490","type":"LinearAxis"},{"attributes":{},"id":"6680","type":"Selection"},{"attributes":{},"id":"6047","type":"LinearScale"},{"attributes":{},"id":"6527","type":"LinearScale"},{"attributes":{},"id":"6482","type":"LinearScale"},{"attributes":{"source":{"id":"5955"}},"id":"6426","type":"CDSView"},{"attributes":{},"id":"6451","type":"WheelZoomTool"},{"attributes":{"axis":{"id":"6051"},"ticker":null},"id":"6054","type":"Grid"},{"attributes":{},"id":"6756","type":"BasicTickFormatter"},{"attributes":{"overlay":{"id":"6458"}},"id":"6453","type":"LassoSelectTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6066","type":"BoxAnnotation"},{"attributes":{},"id":"6455","type":"ResetTool"},{"attributes":{},"id":"6049","type":"LinearScale"},{"attributes":{"formatter":{"id":"6636"},"major_label_text_font_size":"0pt","ticker":{"id":"6056"}},"id":"6055","type":"LinearAxis"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6068","type":"PolyAnnotation"},{"attributes":{"overlay":{"id":"6456"}},"id":"6452","type":"BoxSelectTool"},{"attributes":{"overlay":{"id":"6457"}},"id":"6450","type":"BoxZoomTool"},{"attributes":{},"id":"6541","type":"WheelZoomTool"},{"attributes":{"end":16.461893,"start":-5.211343},"id":"6044","type":"Range1d"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6283","type":"PolyAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6282","type":"BoxAnnotation"},{"attributes":{"data":{"x":{"__ndarray__":"ryXkg54tE8CvJeSDni0TwHSi4Vwd7xHAdKLhXB3vEcA5H981nLAQwDkf3zWcsBDA+ze5HTbkDsD7N7kdNuQOwIQxtM8zZwzAhDG0zzNnDMAOK6+BMeoJwA4rr4Ex6gnAmCSqMy9tB8CYJKozL20HwCEepeUs8ATAIR6l5SzwBMCrF6CXKnMCwKsXoJcqcwLAaiI2k1Ds/79qIjaTUOz/v3wVLPdL8vq/fBUs90vy+r+QCCJbR/j1v5AIIltH+PW/pPsXv0L+8L+k+xe/Qv7wv3DdG0Z8COi/cN0bRnwI6L8ghw8c5ijcvyCHDxzmKNy/4KbOV6eBwL/gps5Xp4HAv4DAgYh9Tsc/gMCBiH1Oxz/wE2k0UY/fP/ATaTRRj98/0KNI0rG76T/Qo0jSsbvpP9heLoXd1/E/2F4uhd3X8T/Eazgh4tH2P8RrOCHi0fY/sHhCvebL+z+weEK95sv7P85Cpqz1YgBAzkKmrPViAEBESav6998CQERJq/r33wJAuk+wSPpcBUC6T7BI+lwFQDJWtZb82QdAMla1lvzZB0CmXLrk/lYKQKZcuuT+VgpAHmO/MgHUDEAeY78yAdQMQJZpxIADUQ9AlmnEgANRD0AFuGTnAucQQAW4ZOcC5xBAQTtnDoQlEkBBO2cOhCUSQHu+aTUFZBNAe75pNQVkE0C3QWxchqIUQLdBbFyGohRA88RugwfhFUDzxG6DB+EVQC1IcaqIHxdALUhxqogfF0Bpy3PRCV4YQGnLc9EJXhhAo052+IqcGUCjTnb4ipwZQN/ReB8M2xpA39F4HwzbGkAbVXtGjRkcQBtVe0aNGRxAVdh9bQ5YHUBV2H1tDlgdQJFbgJSPlh5AkVuAlI+WHkDL3oK7ENUfQMvegrsQ1R9ABLFC8ciJIEAEsULxyIkgQKLyw4QJKSFAovLDhAkpIUA+NEUYSsghQD40RRhKyCFA3HXGq4pnIkDcdcarimciQHq3Rz/LBiNAerdHP8sGI0AY+cjSC6YjQBj5yNILpiNAtDpKZkxFJEC0OkpmTEUkQFJ8y/mM5CRAUnzL+YzkJEDwvUyNzYMlQPC9TI3NgyVAjv/NIA4jJkCO/80gDiMmQCpBT7ROwiZAKkFPtE7CJkDIgtBHj2EnQMiC0EePYSdAZsRR288AKEBmxFHbzwAoQAQG024QoChABAbTbhCgKECiR1QCUT8pQKJHVAJRPylAPonVlZHeKUA+idWVkd4pQNzKVinSfSpA3MpWKdJ9KkB6DNi8Eh0rQHoM2LwSHStAGE5ZUFO8K0AYTllQU7wrQLaP2uOTWyxAto/a45NbLEBS0Vt31PosQFLRW3fU+ixA8BLdChWaLUDwEt0KFZotQI5UXp5VOS5AjlRenlU5LkAslt8xltguQCyW3zGW2C5AytdgxdZ3L0DK12DF1ncvQLMMcayLCzBAswxxrIsLMEA=","dtype":"float64","order":"little","shape":[136]},"y":{"__ndarray__":"AAAAAAAAAAA9G3mDZVZKPz0beYNlVko/PRt5g2VWSj89G3mDZVZKPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPRt5g2VWSj89G3mDZVZKPwAAAAAAAAAAAAAAAAAAAAAzG3mDZVZaPzMbeYNlVlo/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzG3mDZVZaPzMbeYNlVlo/PRt5g2VWSj89G3mDZVZKPz0beYNlVlo/PRt5g2VWWj89G3mDZVZaPz0beYNlVlo/XtSaIszAYz9e1JoizMBjP2/UmiLMwHM/b9SaIszAcz9v1JoizMBjP2/UmiLMwGM/PRt5g2VWej89G3mDZVZ6Pz0beYNlVno/PRt5g2VWej/E9wnTmAt3P8T3CdOYC3c/1vcJ05gLhz/W9wnTmAuHPwaxK3L/dYA/BrErcv91gD8GsSty/3WAPwaxK3L/dYA/BrErcv91kD8GsSty/3WQPxjklK8YKZs/GOSUrxgpmz92iUEr/7CYP3aJQSv/sJg/xMAl/0velz/EwCX/S96XP4ULf/YY7qI/hQt/9hjuoj8RZtJ6MmalPxFm0noyZqU/Di/upuU4pj8OL+6m5TimP0HQH4yYRq8/QdAfjJhGrz8rI/bJiwquPysj9smLCq4/rbQtIvKvrz+ttC0i8q+vP0hY2UXfmrU/SFjZRd+atT/lNmvtC+25P+U2a+0L7bk/ZwcEYOVzvj9nBwRg5XO+P76EAlxvCMM/voQCXG8Iwz9+SuAQjM/FP35K4BCMz8U/U08f4Bt4yz9TTx/gG3jLP4BPH+AbeMs/gE8f4Bt4yz+Hbe2kKoPQP4dt7aQqg9A/tkEmq8isyz+2QSaryKzLP4D/hhm/v8o/gP+GGb+/yj9+SuAQjM/FP35K4BCMz8U/+zzn2zgExj/7POfbOATGPyTl0c61l8E/JOXRzrWXwT9Ikb5xJWW8P0iRvnElZbw/fkrgEIzPtT9+SuAQjM+1P+ZCY8plG7I/5kJjymUbsj/6sCty/3WwP/qwK3L/dbA/+rArcv91oD/6sCty/3WgP/LvjIxyV6M/8u+MjHJXoz/JBwRg5XOeP8kHBGDlc54/6i7upuU4lj/qLu6m5TiWP/qwK3L/dZA/+rArcv91kD9e1JoizMCTP17UmiLMwJM/jT7oMzKhjT+NPugzMqGNP30beYNlVoo/fRt5g2VWij8pG3mDZVZ6PykbeYNlVno/jT7oMzKhfT+NPugzMqF9PykbeYNlVmo/KRt5g2VWaj/6sCty/3VwP/qwK3L/dXA/AAAAAAAAAAAAAAAAAAAAAF7UmiLMwGM/XtSaIszAYz8pG3mDZVZKPykbeYNlVko/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9G3mDZVZKP30beYNlVko/AAAAAAAAAAA=","dtype":"float64","order":"little","shape":[136]}},"selected":{"id":"6640"},"selection_policy":{"id":"6639"}},"id":"6077","type":"ColumnDataSource"},{"attributes":{"align":"end","below":[{"id":"6441"}],"center":[{"id":"6444"},{"id":"6448"}],"frame_height":150,"frame_width":150,"left":[{"id":"6445"}],"renderers":[{"id":"6470"},{"id":"6475"}],"title":{"id":"6753"},"toolbar":{"id":"6459"},"toolbar_location":null,"x_range":{"id":"6044"},"x_scale":{"id":"6437"},"y_range":{"id":"6569"},"y_scale":{"id":"6439"}},"id":"6432","subtype":"Figure","type":"Plot"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"6168","type":"Circle"},{"attributes":{},"id":"6325","type":"ResetTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6281","type":"BoxAnnotation"},{"attributes":{"source":{"id":"5956"}},"id":"6431","type":"CDSView"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6319"},{"id":"6320"},{"id":"6321"},{"id":"6322"},{"id":"6323"},{"id":"6324"},{"id":"6325"}]},"id":"6329","type":"Toolbar"},{"attributes":{"children":[[{"id":"5958"},0,0],[{"id":"5997"},1,0],[{"id":"6043"},1,1],[{"id":"6082"},2,0],[{"id":"6127"},2,1],[{"id":"6173"},2,2],[{"id":"6212"},3,0],[{"id":"6257"},3,1],[{"id":"6302"},3,2],[{"id":"6348"},3,3],[{"id":"6387"},4,0],[{"id":"6432"},4,1],[{"id":"6477"},4,2],[{"id":"6522"},4,3],[{"id":"6568"},4,4]]},"id":"6807","type":"GridBox"},{"attributes":{},"id":"6235","type":"ResetTool"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[0]"}},"id":"6248","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6229"},{"id":"6230"},{"id":"6231"},{"id":"6232"},{"id":"6233"},{"id":"6234"},{"id":"6235"}]},"id":"6239","type":"Toolbar"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[1]"}},"id":"6468","type":"Circle"},{"attributes":{"overlay":{"id":"6327"}},"id":"6320","type":"BoxZoomTool"},{"attributes":{},"id":"6309","type":"LinearScale"},{"attributes":{},"id":"6324","type":"SaveTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6371","type":"BoxAnnotation"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6168"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6169"},"selection_glyph":null,"view":{"id":"6171"}},"id":"6170","type":"GlyphRenderer"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6198","type":"PolyAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6372","type":"BoxAnnotation"},{"attributes":{"overlay":{"id":"6328"}},"id":"6323","type":"LassoSelectTool"},{"attributes":{},"id":"6319","type":"PanTool"},{"attributes":{"overlay":{"id":"6196"}},"id":"6192","type":"BoxSelectTool"},{"attributes":{"axis":{"id":"6441"},"ticker":null},"id":"6444","type":"Grid"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6373","type":"PolyAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6196","type":"BoxAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6197","type":"BoxAnnotation"},{"attributes":{"overlay":{"id":"6198"}},"id":"6193","type":"LassoSelectTool"},{"attributes":{"source":{"id":"5955"}},"id":"6166","type":"CDSView"},{"attributes":{},"id":"6191","type":"WheelZoomTool"},{"attributes":{},"id":"6189","type":"PanTool"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"6428","type":"Circle"},{"attributes":{},"id":"6194","type":"SaveTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6189"},{"id":"6190"},{"id":"6191"},{"id":"6192"},{"id":"6193"},{"id":"6194"},{"id":"6195"}]},"id":"6199","type":"Toolbar"},{"attributes":{},"id":"6186","type":"BasicTicker"},{"attributes":{"data":{"x":{"__ndarray__":"Lq2GxD2Wqj8urYbEPZaqP8L3vcsI7rA/wve9ywjusD/smDi18pC0P+yYOLXykLQ/FzqzntwzuD8XOrOe3DO4P0LbLYjG1rs/QtstiMbWuz9tfKhxsHm/P218qHGweb8/zI6RLU2OwT/MjpEtTY7BP2HfTiLCX8M/Yd9OIsJfwz/2LwwXNzHFP/YvDBc3McU/jIDJC6wCxz+MgMkLrALHPyLRhgAh1Mg/ItGGACHUyD+2IUT1laXKP7YhRPWVpco/THIB6gp3zD9McgHqCnfMP+LCvt5/SM4/4sK+3n9Izj+7Cb5p+gzQP7sJvmn6DNA/BrIc5LT10D8GshzktPXQP1Fae15v3tE/UVp7Xm/e0T+bAtrYKcfSP5sC2tgpx9I/5qo4U+Sv0z/mqjhT5K/TPzFTl82emNQ/MVOXzZ6Y1D98+/VHWYHVP3z79UdZgdU/xqNUwhNq1j/Go1TCE2rWPxFMszzOUtc/EUyzPM5S1z9c9BG3iDvYP1z0EbeIO9g/ppxwMUMk2T+mnHAxQyTZP/FEz6v9DNo/8UTPq/0M2j887S0muPXaPzztLSa49do/h5WMoHLe2z+HlYygct7bP9E96xotx9w/0T3rGi3H3D8c5kmV56/dPxzmSZXnr90/Z46oD6KY3j9njqgPopjeP7E2B4pcgd8/sTYHilyB3z9+7zKCCzXgP37vMoILNeA/o0Niv2ip4D+jQ2K/aKngP8iXkfzFHeE/yJeR/MUd4T/u68A5I5LhP+7rwDkjkuE/E0DwdoAG4j8TQPB2gAbiPzmUH7TdeuI/OZQftN164j9e6E7xOu/iP17oTvE67+I/gzx+Lphj4z+DPH4umGPjP6mQrWv11+M/qZCta/XX4z/O5NyoUkzkP87k3KhSTOQ/8zgM5q/A5D/zOAzmr8DkPxmNOyMNNeU/GY07Iw015T8+4WpgaqnlPz7hamBqqeU/YzWanccd5j9jNZqdxx3mP4mJydokkuY/iYnJ2iSS5j+u3fgXggbnP67d+BeCBuc/0zEoVd965z/TMShV33rnP/mFV5I87+c/+YVXkjzv5z8e2obPmWPoPx7ahs+ZY+g/RC62DPfX6D9ELrYM99foP2mC5UlUTOk/aYLlSVRM6T+O1hSHscDpP47WFIexwOk/tCpExA416j+0KkTEDjXqP9l+cwFsqeo/2X5zAWyp6j/+0qI+yR3rP/7Soj7JHes/","dtype":"float64","order":"little","shape":[114]},"y":{"__ndarray__":"AAAAAAAAAADw1nQitgWSP/DWdCK2BZI/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADq1nQitgWSP+rWdCK2BZI/AAAAAAAAAAAAAAAAAAAAAOrWdCK2BaI/6tZ0IrYFoj8AAAAAAAAAAAAAAAAAAAAAfUKvM5EIqz99Qq8zkQirPwAAAAAAAAAAAAAAAAAAAABfQq8zkQi7P19CrzORCLs/pQwSqyOHtj+lDBKrI4e2P70MEqsjh7Y/vQwSqyOHtj+lDBKrI4fGP6UMEqsjh8Y/PN3990dJzT883f33R0nNP31CrzORCMs/fUKvM5EIyz/q1nQitgXSP+rWdCK2BdI/6tZ0IrYF4j/q1nQitgXiP4KnYG/ax+g/gqdgb9rH6D+9DBKrI4fmP70MEqsjh+Y/X0KvM5EI6z9fQq8zkQjrPzlOdCAIWPk/OU50IAhY+T8hbyVbesD6PyFvJVt6wPo/xOI5Dy1VAEDE4jkPLVUAQN5xw+ZsRgRA3nHD5mxGBECzT0NmARsGQLNPQ2YBGwZAFJGl2+XrCEAUkaXb5esIQHsUasaujQ5AexRqxq6NDkCm0gdRyrwLQKbSB1HKvAtACJRDZ9hxEkAIlENn2HESQEWZvjoXOBNARZm+Ohc4E0CxccPmbEYUQLFxw+ZsRhRA84IDpyJcE0DzggOnIlwTQB2lgyeOhxFAHaWDJ46HEUBk8qqJ6acSQGTyqonppxJA90yl2g6VDED3TKXaDpUMQHazJVxRFwdAdrMlXFEXB0BVLcPlle8HQFUtw+WV7wdAWqr++sxNAkBaqv76zE0CQL86VxgGAgNAvzpXGAYCA0AgMGFxiHXxPyAwYXGIdfE/fUKvM5EI6z99Qq8zkQjrP4wMEqsjh9Y/jAwSqyOH1j/eccPmbEbEP95xw+ZsRsQ/vQwSqyOHxj+9DBKrI4fGP9bWdCK2BaI/1tZ0IrYFoj/+1nQitgWSP/7WdCK2BZI/fUKvM5EIqz99Qq8zkQirPwAAAAAAAAAA","dtype":"float64","order":"little","shape":[114]}},"selected":{"id":"6680"},"selection_policy":{"id":"6679"}},"id":"6207","type":"ColumnDataSource"},{"attributes":{},"id":"6179","type":"LinearScale"},{"attributes":{},"id":"6321","type":"WheelZoomTool"},{"attributes":{},"id":"6195","type":"ResetTool"},{"attributes":{"overlay":{"id":"6197"}},"id":"6190","type":"BoxZoomTool"},{"attributes":{"axis":{"id":"6185"},"dimension":1,"ticker":null},"id":"6188","type":"Grid"},{"attributes":{},"id":"6437","type":"LinearScale"},{"attributes":{"data_source":{"id":"6207"},"glyph":{"id":"6208"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6209"},"selection_glyph":null,"view":{"id":"6211"}},"id":"6210","type":"GlyphRenderer"},{"attributes":{},"id":"6439","type":"LinearScale"},{"attributes":{},"id":"6182","type":"BasicTicker"},{"attributes":{"axis":{"id":"6181"},"ticker":null},"id":"6184","type":"Grid"},{"attributes":{"formatter":{"id":"6678"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"6182"}},"id":"6181","type":"LinearAxis"},{"attributes":{"end":0.86329517,"start":0.03601833},"id":"6174","type":"Range1d"},{"attributes":{},"id":"6177","type":"LinearScale"},{"attributes":{"source":{"id":"5956"}},"id":"6171","type":"CDSView"},{"attributes":{"align":"end","below":[{"id":"6181"}],"center":[{"id":"6184"},{"id":"6188"}],"frame_height":150,"frame_width":150,"left":[{"id":"6185"}],"renderers":[{"id":"6210"}],"title":{"id":"6673"},"toolbar":{"id":"6199"},"toolbar_location":null,"x_range":{"id":"6174"},"x_scale":{"id":"6177"},"y_range":{"id":"6172"},"y_scale":{"id":"6179"}},"id":"6173","subtype":"Figure","type":"Plot"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"6429","type":"Circle"},{"attributes":{"start":0.0},"id":"6172","type":"DataRange1d"},{"attributes":{"axis_label":"theta[1]","formatter":{"id":"6758"},"major_label_orientation":"horizontal","ticker":{"id":"6442"}},"id":"6441","type":"LinearAxis"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6428"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6429"},"selection_glyph":null,"view":{"id":"6431"}},"id":"6430","type":"GlyphRenderer"},{"attributes":{},"id":"6442","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"6164","type":"Circle"},{"attributes":{"formatter":{"id":"6676"},"major_label_text_font_size":"0pt","ticker":{"id":"6186"}},"id":"6185","type":"LinearAxis"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6163"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6164"},"selection_glyph":null,"view":{"id":"6166"}},"id":"6165","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"6169","type":"Circle"},{"attributes":{"overlay":{"id":"6326"}},"id":"6322","type":"BoxSelectTool"},{"attributes":{"formatter":{"id":"6756"},"major_label_text_font_size":"0pt","ticker":{"id":"6446"}},"id":"6445","type":"LinearAxis"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"5981","type":"BoxAnnotation"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"5974"},{"id":"5975"},{"id":"5976"},{"id":"5977"},{"id":"5978"},{"id":"5979"},{"id":"5980"}]},"id":"5984","type":"Toolbar"},{"attributes":{},"id":"6004","type":"LinearScale"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"5983","type":"PolyAnnotation"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"5982","type":"BoxAnnotation"},{"attributes":{"data":{"x":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[190]},"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[190]}},"selected":{"id":"6614"},"selection_policy":{"id":"6613"}},"id":"5992","type":"ColumnDataSource"},{"attributes":{},"id":"6002","type":"LinearScale"},{"attributes":{"text":""},"id":"6727","type":"Title"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"6033","type":"Circle"},{"attributes":{"toolbar":{"id":"6808"},"toolbar_location":"left"},"id":"6809","type":"ToolbarBox"},{"attributes":{},"id":"6730","type":"BasicTickFormatter"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"5993","type":"Line"},{"attributes":{"formatter":{"id":"6624"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"6007"}},"id":"6006","type":"LinearAxis"},{"attributes":{"align":"end","below":[{"id":"6006"}],"center":[{"id":"6009"},{"id":"6013"}],"frame_height":150,"frame_width":150,"left":[{"id":"6010"}],"renderers":[{"id":"6035"},{"id":"6040"}],"title":{"id":"6619"},"toolbar":{"id":"6024"},"toolbar_location":null,"x_range":{"id":"5959"},"x_scale":{"id":"6002"},"y_range":{"id":"6044"},"y_scale":{"id":"6004"}},"id":"5997","subtype":"Figure","type":"Plot"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"5994","type":"Line"},{"attributes":{"source":{"id":"5992"}},"id":"5996","type":"CDSView"},{"attributes":{},"id":"6732","type":"BasicTickFormatter"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6584"},{"id":"6585"},{"id":"6586"},{"id":"6587"},{"id":"6588"},{"id":"6589"},{"id":"6590"}]},"id":"6594","type":"Toolbar"},{"attributes":{},"id":"6610","type":"BasicTickFormatter"},{"attributes":{"overlay":{"id":"6371"}},"id":"6367","type":"BoxSelectTool"},{"attributes":{"align":"end","below":[{"id":"6576"}],"center":[{"id":"6579"},{"id":"6583"}],"frame_height":150,"frame_width":150,"left":[{"id":"6580"}],"renderers":[{"id":"6605"}],"title":{"id":"6795"},"toolbar":{"id":"6594"},"toolbar_location":null,"x_range":{"id":"6569"},"x_scale":{"id":"6572"},"y_range":{"id":"6567"},"y_scale":{"id":"6574"}},"id":"6568","subtype":"Figure","type":"Plot"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6153","type":"PolyAnnotation"},{"attributes":{},"id":"6357","type":"BasicTicker"},{"attributes":{"axis_label":"tau[1]","formatter":{"id":"6742"},"ticker":{"id":"6401"}},"id":"6400","type":"LinearAxis"},{"attributes":{"axis":{"id":"6356"},"ticker":null},"id":"6359","type":"Grid"},{"attributes":{"source":{"id":"5956"}},"id":"6566","type":"CDSView"},{"attributes":{"axis_label":"tau[1]","formatter":{"id":"6800"},"major_label_orientation":"horizontal","ticker":{"id":"6577"}},"id":"6576","type":"LinearAxis"},{"attributes":{},"id":"6149","type":"SaveTool"},{"attributes":{},"id":"6572","type":"LinearScale"},{"attributes":{},"id":"6144","type":"PanTool"},{"attributes":{"end":23.209858052399998,"start":-0.4531606724},"id":"6349","type":"Range1d"},{"attributes":{"overlay":{"id":"6152"}},"id":"6145","type":"BoxZoomTool"},{"attributes":{},"id":"6352","type":"LinearScale"},{"attributes":{"formatter":{"id":"6732"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"6357"}},"id":"6356","type":"LinearAxis"},{"attributes":{},"id":"6624","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6593","type":"PolyAnnotation"},{"attributes":{},"id":"6150","type":"ResetTool"},{"attributes":{"overlay":{"id":"6373"}},"id":"6368","type":"LassoSelectTool"},{"attributes":{},"id":"6589","type":"SaveTool"},{"attributes":{"overlay":{"id":"6281"}},"id":"6277","type":"BoxSelectTool"},{"attributes":{},"id":"6274","type":"PanTool"},{"attributes":{"source":{"id":"5955"}},"id":"6561","type":"CDSView"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6558"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6559"},"selection_glyph":null,"view":{"id":"6561"}},"id":"6560","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6563"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6564"},"selection_glyph":null,"view":{"id":"6566"}},"id":"6565","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"6153"}},"id":"6148","type":"LassoSelectTool"},{"attributes":{"overlay":{"id":"6283"}},"id":"6278","type":"LassoSelectTool"},{"attributes":{"formatter":{"id":"6798"},"major_label_text_font_size":"0pt","ticker":{"id":"6581"}},"id":"6580","type":"LinearAxis"},{"attributes":{"axis":{"id":"6360"},"dimension":1,"ticker":null},"id":"6363","type":"Grid"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"6559","type":"Circle"},{"attributes":{},"id":"6279","type":"SaveTool"},{"attributes":{},"id":"6280","type":"ResetTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6274"},{"id":"6275"},{"id":"6276"},{"id":"6277"},{"id":"6278"},{"id":"6279"},{"id":"6280"}]},"id":"6284","type":"Toolbar"},{"attributes":{},"id":"6612","type":"BasicTickFormatter"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"6563","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"6564","type":"Circle"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6298"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6299"},"selection_glyph":null,"view":{"id":"6301"}},"id":"6300","type":"GlyphRenderer"},{"attributes":{},"id":"6581","type":"BasicTicker"},{"attributes":{"overlay":{"id":"6372"}},"id":"6365","type":"BoxZoomTool"},{"attributes":{},"id":"6404","type":"PanTool"},{"attributes":{"overlay":{"id":"6592"}},"id":"6585","type":"BoxZoomTool"},{"attributes":{"overlay":{"id":"6591"}},"id":"6587","type":"BoxSelectTool"},{"attributes":{"source":{"id":"5955"}},"id":"6296","type":"CDSView"},{"attributes":{},"id":"6584","type":"PanTool"},{"attributes":{},"id":"6361","type":"BasicTicker"},{"attributes":{},"id":"6364","type":"PanTool"},{"attributes":{"overlay":{"id":"6593"}},"id":"6588","type":"LassoSelectTool"},{"attributes":{},"id":"6307","type":"LinearScale"},{"attributes":{},"id":"6369","type":"SaveTool"},{"attributes":{"start":0.0},"id":"6567","type":"DataRange1d"},{"attributes":{},"id":"6366","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"6282"}},"id":"6275","type":"BoxZoomTool"},{"attributes":{},"id":"6586","type":"WheelZoomTool"},{"attributes":{},"id":"6590","type":"ResetTool"},{"attributes":{},"id":"6401","type":"BasicTicker"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6364"},{"id":"6365"},{"id":"6366"},{"id":"6367"},{"id":"6368"},{"id":"6369"},{"id":"6370"}]},"id":"6374","type":"Toolbar"},{"attributes":{},"id":"6614","type":"Selection"},{"attributes":{"overlay":{"id":"6412"}},"id":"6405","type":"BoxZoomTool"},{"attributes":{},"id":"6613","type":"UnionRenderers"},{"attributes":{"source":{"id":"5956"}},"id":"6301","type":"CDSView"},{"attributes":{"formatter":{"id":"6730"},"major_label_text_font_size":"0pt","ticker":{"id":"6361"}},"id":"6360","type":"LinearAxis"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"6603","type":"Line"},{"attributes":{},"id":"6574","type":"LinearScale"},{"attributes":{},"id":"6370","type":"ResetTool"},{"attributes":{"source":{"id":"6382"}},"id":"6386","type":"CDSView"},{"attributes":{},"id":"6354","type":"LinearScale"},{"attributes":{},"id":"6392","type":"LinearScale"},{"attributes":{"overlay":{"id":"6411"}},"id":"6407","type":"BoxSelectTool"},{"attributes":{"align":"end","below":[{"id":"6311"}],"center":[{"id":"6314"},{"id":"6318"}],"frame_height":150,"frame_width":150,"left":[{"id":"6315"}],"renderers":[{"id":"6340"},{"id":"6345"}],"title":{"id":"6713"},"toolbar":{"id":"6329"},"toolbar_location":null,"x_range":{"id":"6174"},"x_scale":{"id":"6307"},"y_range":{"id":"6349"},"y_scale":{"id":"6309"}},"id":"6302","subtype":"Figure","type":"Plot"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"6298","type":"Circle"},{"attributes":{"source":{"id":"6602"}},"id":"6606","type":"CDSView"},{"attributes":{"data":{"x":{"__ndarray__":"5L9AECBD4D/kv0AQIEPgP9Q1z2C1Tuw/1DXPYLVO7D/i1a5YJS30P+LVrlglLfQ/2xD2APAy+j/bEPYA8DL6P+qlnlRdHABA6qWeVF0cAEBmQ8KoQh8DQGZDwqhCHwNA4uDl/CciBkDi4OX8JyIGQF5+CVENJQlAXn4JUQ0lCUDaGy2l8icMQNobLaXyJwxAVrlQ+dcqD0BWuVD51yoPQGkruqbeFhFAaSu6pt4WEUAo+stQUZgSQCj6y1BRmBJA5sjd+sMZFEDmyN36wxkUQKSX76Q2mxVApJfvpDabFUBiZgFPqRwXQGJmAU+pHBdAIDUT+RueGEAgNRP5G54YQN4DJaOOHxpA3gMlo44fGkCc0jZNAaEbQJzSNk0BoRtAWqFI93MiHUBaoUj3cyIdQBhwWqHmox5AGHBaoeajHkBrH7alrBIgQGsftqWsEiBAyga/+mXTIEDKBr/6ZdMgQCnux08flCFAKe7HTx+UIUCI1dCk2FQiQIjV0KTYVCJA57zZ+ZEVI0DnvNn5kRUjQEak4k5L1iNARqTiTkvWI0Cli+ujBJckQKWL66MElyRABHP0+L1XJUAEc/T4vVclQGNa/U13GCZAY1r9TXcYJkDCQQajMNkmQMJBBqMw2SZAISkP+OmZJ0AhKQ/46ZknQIAQGE2jWihAgBAYTaNaKEDf9yCiXBspQN/3IKJcGylAPt8p9xXcKUA+3yn3FdwpQJ3GMkzPnCpAncYyTM+cKkD8rTuhiF0rQPytO6GIXStAW5VE9kEeLEBblUT2QR4sQLp8TUv73ixAunxNS/veLEAZZFagtJ8tQBlkVqC0ny1AeEtf9W1gLkB4S1/1bWAuQNcyaEonIS9A1zJoSichL0A2GnGf4OEvQDYacZ/g4S9AywA9+kxRMEDLAD36TFEwQHp0waSpsTBAenTBpKmxMEAq6EVPBhIxQCroRU8GEjFA2VvK+WJyMUDZW8r5YnIxQInPTqS/0jFAic9OpL/SMUA4Q9NOHDMyQDhD004cMzJA6LZX+XiTMkDotlf5eJMyQJcq3KPV8zJAlyrco9XzMkBHnmBOMlQzQEeeYE4yVDNA9hHl+I60M0D2EeX4jrQzQKaFaaPrFDRApoVpo+sUNEBV+e1NSHU0QFX57U1IdTRABW1y+KTVNEAFbXL4pNU0QLTg9qIBNjVAtOD2ogE2NUBkVHtNXpY1QGRUe01eljVAE8j/97r2NUATyP/3uvY1QMM7hKIXVzZAwzuEohdXNkByrwhNdLc2QHKvCE10tzZAIiON99AXN0AiI4330Bc3QNGWEaIteDdA0ZYRoi14N0CBCpZMitg3QIEKlkyK2DdAMH4a9+Y4OEAwfhr35jg4QODxnqFDmThA4PGeoUOZOECQZSNMoPk4QJBlI0yg+ThAP9mn9vxZOUA/2af2/Fk5QO9MLKFZujlA70wsoVm6OUCewLBLtho6QJ7AsEu2GjpATjQ19hJ7OkBONDX2Ens6QP2nuaBv2zpA/ae5oG/bOkCtGz5LzDs7QK0bPkvMOztAXI/C9SicO0Bcj8L1KJw7QA==","dtype":"float64","order":"little","shape":[146]},"y":{"__ndarray__":"AAAAAAAAAAD4sVjBwq6BP/ixWMHCroE//dq2dJ6VrT/92rZ0npWtP75r37tkiMI/vmvfu2SIwj/Qf+/1N2vJP9B/7/U3a8k/cjdb0tTxzj9yN1vS1PHOP8gI6gMfM88/yAjqAx8zzz9pZ6l/WuLLP2lnqX9a4ss/mN1wMj75xz+Y3XAyPvnHPx6Zc6tKFcU/Hplzq0oVxT90agLdlFbFP3RqAt2UVsU/0oJIU3Lfwj/SgkhTct/CP49OxGniSL8/j07EaeJIvz9dr54DI0u3P12vngMjS7c/xlM45SEQtD/GUzjlIRC0P49OxGniSK8/j07EaeJIrz/CrORFg+esP8Ks5EWD56w/fq5gxO0pqT9+rmDE7SmpP2GX9yzg0qg/YZf3LODSqD/sOlPPqXanP+w6U8+pdqc/udwy8wjYqT+53DLzCNipP+NqoXwvZ6Q/42qhfC9npD9+rmDE7SmZP36uYMTtKZk/38NN3ZA+nT/fw03dkD6dPy8511A/NJs/LznXUD80mz9Zx0XaZcOVP1nHRdplw5U/j07EaeJIjz+PTsRp4kiPP/ixWMHCroE/+LFYwcKugT9EgI6V0nuIP0SAjpXSe4g/GvIfDKzsjT8a8h8MrOyNP/ixWMHCroE/+LFYwcKugT9uDv0e+QqDP24O/R75CoM/bg79HvkKcz9uDv0e+QpzP0SAjpXSe3g/RICOldJ7eD8a8h8MrOx9PxryHwys7H0/GvIfDKzsfT8a8h8MrOx9P/ixWMHCroE/+LFYwcKugT9EgI6V0nt4P0SAjpXSe3g/WcdF2mXDdT9Zx0XaZcN1P1nHRdplw3U/WcdF2mXDdT+DVbRjjFJgP4NVtGOMUmA/WcdF2mXDRT9Zx0XaZcNFP21VtGOMUmA/bVW0Y4xSYD+YVbRjjFJgP5hVtGOMUmA/bVW0Y4xSYD9tVbRjjFJgP3bHRdplw0U/dsdF2mXDRT87x0XaZcNFPzvHRdplw0U/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2x0XaZcNFP3bHRdplw0U/O8dF2mXDRT87x0XaZcNFPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2x0XaZcNFP3bHRdplw0U/AAAAAAAAAAAAAAAAAAAAAHbHRdplw0U/dsdF2mXDRT8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2x0XaZcNVP3bHRdplw1U/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHbHRdplw0U/dsdF2mXDRT8AAAAAAAAAAA==","dtype":"float64","order":"little","shape":[146]}},"selected":{"id":"6802"},"selection_policy":{"id":"6801"}},"id":"6602","type":"ColumnDataSource"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"6604","type":"Line"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6293"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6294"},"selection_glyph":null,"view":{"id":"6296"}},"id":"6295","type":"GlyphRenderer"},{"attributes":{},"id":"6577","type":"BasicTicker"},{"attributes":{"data_source":{"id":"6602"},"glyph":{"id":"6603"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6604"},"selection_glyph":null,"view":{"id":"6606"}},"id":"6605","type":"GlyphRenderer"},{"attributes":{},"id":"6622","type":"BasicTickFormatter"},{"attributes":{},"id":"6146","type":"WheelZoomTool"},{"attributes":{"end":28.152036119999998,"start":-0.033842119999999976},"id":"6569","type":"Range1d"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"6299","type":"Circle"},{"attributes":{"axis":{"id":"6396"},"ticker":null},"id":"6399","type":"Grid"},{"attributes":{},"id":"6406","type":"WheelZoomTool"},{"attributes":{"axis":{"id":"6580"},"dimension":1,"ticker":null},"id":"6583","type":"Grid"},{"attributes":{},"id":"6800","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"tau[0]"}},"id":"6294","type":"Circle"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6592","type":"BoxAnnotation"},{"attributes":{},"id":"6276","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"6151"}},"id":"6147","type":"BoxSelectTool"},{"attributes":{"axis_label":"theta[0]","formatter":{"id":"6744"},"major_label_orientation":"horizontal","ticker":{"id":"6397"}},"id":"6396","type":"LinearAxis"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6591","type":"BoxAnnotation"},{"attributes":{"axis":{"id":"6400"},"dimension":1,"ticker":null},"id":"6403","type":"Grid"},{"attributes":{},"id":"6397","type":"BasicTicker"},{"attributes":{},"id":"6394","type":"LinearScale"},{"attributes":{"axis":{"id":"6576"},"ticker":null},"id":"6579","type":"Grid"},{"attributes":{"text":""},"id":"6713","type":"Title"},{"attributes":{},"id":"6784","type":"BasicTickFormatter"},{"attributes":{},"id":"6716","type":"BasicTickFormatter"},{"attributes":{},"id":"6786","type":"BasicTickFormatter"},{"attributes":{"text":""},"id":"6781","type":"Title"},{"attributes":{},"id":"6718","type":"BasicTickFormatter"},{"attributes":{"align":"end","below":[{"id":"6396"}],"center":[{"id":"6399"},{"id":"6403"}],"frame_height":150,"frame_width":150,"left":[{"id":"6400"}],"renderers":[{"id":"6425"},{"id":"6430"}],"title":{"id":"6739"},"toolbar":{"id":"6414"},"toolbar_location":null,"x_range":{"id":"5959"},"x_scale":{"id":"6392"},"y_range":{"id":"6569"},"y_scale":{"id":"6394"}},"id":"6387","subtype":"Figure","type":"Plot"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"tau[1]"}},"id":"6423","type":"Circle"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6338"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6339"},"selection_glyph":null,"view":{"id":"6341"}},"id":"6340","type":"GlyphRenderer"},{"attributes":{},"id":"6772","type":"BasicTickFormatter"},{"attributes":{"source":{"id":"5955"}},"id":"6341","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[0]"}},"id":"6339","type":"Circle"},{"attributes":{"overlay":{"id":"6021"}},"id":"6017","type":"BoxSelectTool"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"theta[1]"},"y":{"field":"rho"}},"id":"6163","type":"Circle"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6123"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6124"},"selection_glyph":null,"view":{"id":"6126"}},"id":"6125","type":"GlyphRenderer"},{"attributes":{},"id":"6011","type":"BasicTicker"},{"attributes":{},"id":"6020","type":"ResetTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6236","type":"BoxAnnotation"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"tau[0]"},"y":{"field":"tau[1]"}},"id":"6558","type":"Circle"},{"attributes":{"overlay":{"id":"6548"}},"id":"6543","type":"LassoSelectTool"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"6124","type":"Circle"},{"attributes":{"overlay":{"id":"6107"}},"id":"6100","type":"BoxZoomTool"},{"attributes":{"axis":{"id":"6136"},"ticker":null},"id":"6139","type":"Grid"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6501","type":"BoxAnnotation"},{"attributes":{},"id":"6134","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6502","type":"BoxAnnotation"},{"attributes":{"source":{"id":"5955"}},"id":"6121","type":"CDSView"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6014"},{"id":"6015"},{"id":"6016"},{"id":"6017"},{"id":"6018"},{"id":"6019"},{"id":"6020"}]},"id":"6024","type":"Toolbar"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6118"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6119"},"selection_glyph":null,"view":{"id":"6121"}},"id":"6120","type":"GlyphRenderer"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6144"},{"id":"6145"},{"id":"6146"},{"id":"6147"},{"id":"6148"},{"id":"6149"},{"id":"6150"}]},"id":"6154","type":"Toolbar"},{"attributes":{"overlay":{"id":"6108"}},"id":"6103","type":"LassoSelectTool"},{"attributes":{"overlay":{"id":"5983"}},"id":"5978","type":"LassoSelectTool"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"6123","type":"Circle"},{"attributes":{"formatter":{"id":"6662"},"major_label_text_font_size":"0pt","ticker":{"id":"6141"}},"id":"6140","type":"LinearAxis"},{"attributes":{},"id":"6271","type":"BasicTicker"},{"attributes":{"axis":{"id":"6010"},"dimension":1,"ticker":null},"id":"6013","type":"Grid"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"rho"}},"id":"6119","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"6039","type":"Circle"},{"attributes":{},"id":"6007","type":"BasicTicker"},{"attributes":{"formatter":{"id":"6610"},"major_label_text_font_size":"0pt","ticker":{"id":"5971"}},"id":"5970","type":"LinearAxis"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6503","type":"PolyAnnotation"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6108","type":"PolyAnnotation"},{"attributes":{},"id":"6014","type":"PanTool"},{"attributes":{"start":0.0},"id":"6042","type":"DataRange1d"},{"attributes":{},"id":"5979","type":"SaveTool"},{"attributes":{},"id":"6101","type":"WheelZoomTool"},{"attributes":{},"id":"5976","type":"WheelZoomTool"},{"attributes":{},"id":"6801","type":"UnionRenderers"},{"attributes":{},"id":"5971","type":"BasicTicker"},{"attributes":{},"id":"6802","type":"Selection"},{"attributes":{"overlay":{"id":"5982"}},"id":"5975","type":"BoxZoomTool"},{"attributes":{},"id":"6019","type":"SaveTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6547","type":"BoxAnnotation"},{"attributes":{"axis":{"id":"5966"},"ticker":null},"id":"5969","type":"Grid"},{"attributes":{"overlay":{"id":"6022"}},"id":"6015","type":"BoxZoomTool"},{"attributes":{},"id":"5974","type":"PanTool"},{"attributes":{"overlay":{"id":"5981"}},"id":"5977","type":"BoxSelectTool"},{"attributes":{"align":"end","below":[{"id":"6531"}],"center":[{"id":"6534"},{"id":"6538"}],"frame_height":150,"frame_width":150,"left":[{"id":"6535"}],"renderers":[{"id":"6560"},{"id":"6565"}],"title":{"id":"6781"},"toolbar":{"id":"6549"},"toolbar_location":null,"x_range":{"id":"6349"},"x_scale":{"id":"6527"},"y_range":{"id":"6569"},"y_scale":{"id":"6529"}},"id":"6522","subtype":"Figure","type":"Plot"},{"attributes":{"overlay":{"id":"6023"}},"id":"6018","type":"LassoSelectTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6494"},{"id":"6495"},{"id":"6496"},{"id":"6497"},{"id":"6498"},{"id":"6499"},{"id":"6500"}]},"id":"6504","type":"Toolbar"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"6034","type":"Circle"},{"attributes":{"source":{"id":"5956"}},"id":"6521","type":"CDSView"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6539"},{"id":"6540"},{"id":"6541"},{"id":"6542"},{"id":"6543"},{"id":"6544"},{"id":"6545"}]},"id":"6549","type":"Toolbar"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6033"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6034"},"selection_glyph":null,"view":{"id":"6036"}},"id":"6035","type":"GlyphRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6107","type":"BoxAnnotation"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6038"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6039"},"selection_glyph":null,"view":{"id":"6041"}},"id":"6040","type":"GlyphRenderer"},{"attributes":{},"id":"6544","type":"SaveTool"},{"attributes":{"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"6383","type":"Line"},{"attributes":{"axis_label":"theta[1]","formatter":{"id":"6622"},"ticker":{"id":"6011"}},"id":"6010","type":"LinearAxis"},{"attributes":{"axis":{"id":"6266"},"ticker":null},"id":"6269","type":"Grid"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"6106","type":"BoxAnnotation"},{"attributes":{"fill_alpha":{"value":0.04364204421907123},"fill_color":{"value":"black"},"line_alpha":{"value":0.04364204421907123},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"6513","type":"Circle"},{"attributes":{},"id":"6137","type":"BasicTicker"},{"attributes":{"formatter":{"id":"6664"},"major_label_orientation":"horizontal","major_label_text_font_size":"0pt","ticker":{"id":"6137"}},"id":"6136","type":"LinearAxis"},{"attributes":{"overlay":{"id":"6106"}},"id":"6102","type":"BoxSelectTool"},{"attributes":{},"id":"5967","type":"BasicTicker"},{"attributes":{},"id":"6141","type":"BasicTicker"},{"attributes":{"axis":{"id":"5970"},"dimension":1,"ticker":null},"id":"5973","type":"Grid"},{"attributes":{"axis":{"id":"6140"},"dimension":1,"ticker":null},"id":"6143","type":"Grid"},{"attributes":{"formatter":{"id":"6702"},"major_label_text_font_size":"0pt","ticker":{"id":"6271"}},"id":"6270","type":"LinearAxis"},{"attributes":{"axis":{"id":"6270"},"dimension":1,"ticker":null},"id":"6273","type":"Grid"},{"attributes":{},"id":"6132","type":"LinearScale"},{"attributes":{"source":{"id":"5956"}},"id":"6041","type":"CDSView"},{"attributes":{},"id":"5980","type":"ResetTool"},{"attributes":{"line_alpha":0.1,"line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"6384","type":"Line"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"black"},"line_alpha":{"value":0},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"6514","type":"Circle"},{"attributes":{"align":"end","below":[{"id":"6136"}],"center":[{"id":"6139"},{"id":"6143"}],"frame_height":150,"frame_width":150,"left":[{"id":"6140"}],"renderers":[{"id":"6165"},{"id":"6170"}],"title":{"id":"6659"},"toolbar":{"id":"6154"},"toolbar_location":null,"x_range":{"id":"6044"},"x_scale":{"id":"6132"},"y_range":{"id":"6174"},"y_scale":{"id":"6134"}},"id":"6127","subtype":"Figure","type":"Plot"},{"attributes":{"data_source":{"id":"5956"},"glyph":{"id":"6518"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6519"},"selection_glyph":null,"view":{"id":"6521"}},"id":"6520","type":"GlyphRenderer"},{"attributes":{},"id":"6545","type":"ResetTool"},{"attributes":{"source":{"id":"5956"}},"id":"6126","type":"CDSView"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"theta[0]"},"y":{"field":"theta[1]"}},"id":"6038","type":"Circle"},{"attributes":{"fill_alpha":{"value":0},"fill_color":{"value":"orange"},"line_alpha":{"value":0},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"6519","type":"Circle"},{"attributes":{},"id":"6105","type":"ResetTool"},{"attributes":{},"id":"6016","type":"WheelZoomTool"},{"attributes":{"axis":{"id":"6006"},"ticker":null},"id":"6009","type":"Grid"},{"attributes":{"source":{"id":"5955"}},"id":"6036","type":"CDSView"},{"attributes":{"fill_color":{"value":"orange"},"line_color":{"value":"orange"},"size":{"units":"screen","value":2},"x":{"field":"rho"},"y":{"field":"tau[1]"}},"id":"6518","type":"Circle"},{"attributes":{"fill_alpha":0.5,"fill_color":"lightgrey","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"xs_units":"screen","ys_units":"screen"},"id":"6548","type":"PolyAnnotation"},{"attributes":{"data_source":{"id":"5955"},"glyph":{"id":"6513"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6514"},"selection_glyph":null,"view":{"id":"6516"}},"id":"6515","type":"GlyphRenderer"},{"attributes":{"source":{"id":"5955"}},"id":"6516","type":"CDSView"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"6099"},{"id":"6100"},{"id":"6101"},{"id":"6102"},{"id":"6103"},{"id":"6104"},{"id":"6105"}]},"id":"6109","type":"Toolbar"},{"attributes":{},"id":"6104","type":"SaveTool"}],"root_ids":["6810"]},"title":"Bokeh Application","version":"2.2.3"}};n”, ” var render_items = [{"docid":"ff5a787e-b15c-4fba-8666-165f96a1a51e","root_ids":["6810"],"roots":{"6810":"a254c4b7-acca-4641-b90e-78025529cd57"}}];n”, ” root.Bokeh.embed.embed_items_notebook(docs_json, render_items);n”, “n”, ” }n”, ” if (root.Bokeh !== undefined) {n”, ” embed_document(root);n”, ” } else {n”, ” var attempts = 0;n”, ” var timer = setInterval(function(root) {n”, ” if (root.Bokeh !== undefined) {n”, ” clearInterval(timer);n”, ” embed_document(root);n”, ” } else {n”, ” attempts++;n”, ” if (attempts > 100) {n”, ” clearInterval(timer);n”, ” console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");n”, ” }n”, ” }n”, ” }, 10, root)n”, ” }n”, “})(window);”
], “application/vnd.bokehjs_exec.v0+json”: “”
}, “metadata”: {
- “application/vnd.bokehjs_exec.v0+json”: {
“id”: “6810”
}
}, “output_type”: “display_data”
}
], “source”: [
“bokeh.io.show(n”, ” bebi103.viz.corner(n”, ” samples_nc, parameters=["theta[0]", "theta[1]", "rho", "tau[0]", "tau[1]"]n”, ” )n”, “)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“We still got some divergences, but only nine, which could be false positives for divergences. We will go forward with SBC using this model.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Building an SBCn”, “n”, “To build a simulation-based calibration, we need to write a Stan program to generate data sets based on parameters drawn out of the prior, as prior predictive model.n”, “n”, “
`stan\n", "data {\n", " // Total number of data points\n", " int N;\n", "\n", " // Number of entries in each level of the hierarchy\n", " int J_1;\n", "\n", " //Index array to keep track of hierarchical structure\n", " int index_1[N];\n", "}\n", "\n", "\n", "generated quantities {\n", " vector[2] theta;\n", " vector[2] tau;\n", " vector[2] sigma;\n", "\n", " for (i in 1:2) {\n", " theta[i] = normal_rng(5, 5);\n", " tau[i] = fabs(normal_rng(0, 10));\n", " sigma[i] = fabs(normal_rng(0, 10));\n", " }\n", "\n", " real rho = uniform_rng(-1, 1);\n", "\n", " vector[2] theta_1[J_1];\n", " for (i in 1:J_1) {\n", " for (j in 1:2) {\n", " theta_1[i, j] = normal_rng(theta[j], tau[j]);\n", " }\n", " }\n", "\n", " real x[N];\n", " real y[N];\n", "\n", " {\n", " matrix[2, 2] Sigma = [\n", " [sigma[1]^2, rho * sigma[1] * sigma[2]], \n", " [rho * sigma[1] * sigma[2], sigma[2]^2 ]\n", " ];\n", "\n", " vector[2] xy;\n", "\n", " for (i in 1:N) {\n", " xy = multi_normal_rng(theta_1[index_1[i]], Sigma);\n", " x[i] = xy[1];\n", " y[i] = xy[2];\n", " }\n", " }\n", "}\n", "`n”, “n”, “To use it in SBC, we need to compile it.”]
}, {
“cell_type”: “code”, “execution_count”: 24, “metadata”: {}, “outputs”: [], “source”: [
“with bebi103.stan.disable_logging():n”, ” sm_prior_pred = cmdstanpy.CmdStanModel(n”, ” stan_file="sample_model_prior_predictive.stan"n”, ” )”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Running an SBCn”, “n”, “Finally, we are ready to perform SBC using the bebi103.stan.sbc() function. We need to tell the functionn”, “n”, “1. What Stan model to use for the prior predictive model.n”, “2. Which Stan model to use for posterior sampling.n”, “3. Which data dictionary to feed into the prior predictive model.n”, “4. Which data dictionary to feed into the posterior sampling mode.n”, “5. What the names of the measured data are. For multidimensional data, do not include indexing. In the present case, the measured data are [‘x’, ‘y’].n”, “6. The names of the posterior predictive variables. There are not used in shrinkage, z-score, and rank statistic calculations.n”, “7. The name of the log likelihood variable. There are not used in shrinkage, z-score, and rank statistic calculations.n”, “8. The data types of the measured data.n”, “9. Any kwargs to use in posterior sampling.n”, “10. Any kwargs to pass to bebi103.stan.check_all_diagnostics().n”, “11. How many cores you want to use for the calculation.n”, “12. How many SBC calculations you want to do. You should do at least 400; 1000 is a good number.n”, “n”, “SBC calculations are lengthy, so to keep the runtime of this documentation manageable, we will load a pre-computed SBC result if it is available. For reference, this SBC calculation took about six hours on 16 cores on an AWS c5 instance.”
]
}, {
“cell_type”: “code”, “execution_count”: 25, “metadata”: {}, “outputs”: [], “source”: [
“try:n”, ” df_sbc = pd.read_csv(‘sbc_results.csv’)n”, “except:n”, ” df_sbc = bebi103.stan.sbc(n”, ” prior_predictive_model=sm_prior_pred,n”, ” posterior_model=sm_nc,n”, ” prior_predictive_model_data=data,n”, ” posterior_model_data=data,n”, ” measured_data=[‘x’, ‘y’],n”, ” posterior_predictive_var_names=[‘x_ppc’, ‘y_ppc’],n”, ” log_likelihood_var_name=’log_lik’,n”, ” measured_data_dtypes={‘x’: float, ‘y’: float},n”, ” sampling_kwargs={‘iter_warmup’: 2000, ‘adapt_delta’: 0.95},n”, ” diagnostic_check_kwargs={‘omit’: [‘Tau.*’, ‘Sigma.*’]},n”, ” cores=16,n”, ” N=1000,n”, ” progress_bar=True,n”, ” )n”, ” n”, ” df_sbc.to_csv(‘sbc_results.csv’, index=False)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The output of the SBC calculation is a tidy data frame with the results for each of the 1000 trials.”
]
}, {
“cell_type”: “code”, “execution_count”: 26, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“<div>n”, “<style scoped>n”, ” .dataframe tbody tr th:only-of-type {n”, ” vertical-align: middle;n”, ” }n”, “n”, ” .dataframe tbody tr th {n”, ” vertical-align: top;n”, ” }n”, “n”, ” .dataframe thead th {n”, ” text-align: right;n”, ” }n”, “</style>n”, “<table border="1" class="dataframe">n”, ” <thead>n”, ” <tr style="text-align: right;">n”, ” <th></th>n”, ” <th>ground_truth</th>n”, ” <th>rank_statistic</th>n”, ” <th>mean</th>n”, ” <th>sd</th>n”, ” <th>shrinkage</th>n”, ” <th>z_score</th>n”, ” <th>Rhat</th>n”, ” <th>ESS</th>n”, ” <th>ESS_per_iter</th>n”, ” <th>tail_ESS</th>n”, ” <th>tail_ESS_per_iter</th>n”, ” <th>n_divergences</th>n”, ” <th>n_bad_ebfmi</th>n”, ” <th>n_max_treedepth</th>n”, ” <th>warning_code</th>n”, ” <th>L</th>n”, ” <th>trial</th>n”, ” <th>parameter</th>n”, ” </tr>n”, ” </thead>n”, ” <tbody>n”, ” <tr>n”, ” <th>0</th>n”, ” <td>4.281950</td>n”, ” <td>3712</td>n”, ” <td>0.403373</td>n”, ” <td>2.407448</td>n”, ” <td>0.770475</td>n”, ” <td>-1.611074</td>n”, ” <td>1.002368</td>n”, ” <td>1341.460058</td>n”, ” <td>0.335365</td>n”, ” <td>1303.921933</td>n”, ” <td>0.325980</td>n”, ” <td>15</td>n”, ” <td>0</td>n”, ” <td>60</td>n”, ” <td>12</td>n”, ” <td>4000</td>n”, ” <td>0</td>n”, ” <td>theta[0]</td>n”, ” </tr>n”, ” <tr>n”, ” <th>1</th>n”, ” <td>4.974810</td>n”, ” <td>313</td>n”, ” <td>11.482235</td>n”, ” <td>4.101083</td>n”, ” <td>0.333940</td>n”, ” <td>1.586758</td>n”, ” <td>1.001557</td>n”, ” <td>1387.925463</td>n”, ” <td>0.346981</td>n”, ” <td>2224.981728</td>n”, ” <td>0.556245</td>n”, ” <td>2</td>n”, ” <td>0</td>n”, ” <td>234</td>n”, ” <td>12</td>n”, ” <td>4000</td>n”, ” <td>1</td>n”, ” <td>theta[0]</td>n”, ” </tr>n”, ” <tr>n”, ” <th>2</th>n”, ” <td>-0.356069</td>n”, ” <td>235</td>n”, ” <td>6.575907</td>n”, ” <td>4.445932</td>n”, ” <td>0.217216</td>n”, ” <td>1.559173</td>n”, ” <td>1.002113</td>n”, ” <td>1879.793973</td>n”, ” <td>0.469948</td>n”, ” <td>2239.299188</td>n”, ” <td>0.559825</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>4000</td>n”, ” <td>2</td>n”, ” <td>theta[0]</td>n”, ” </tr>n”, ” <tr>n”, ” <th>3</th>n”, ” <td>5.071360</td>n”, ” <td>1929</td>n”, ” <td>5.121302</td>n”, ” <td>1.737149</td>n”, ” <td>0.880494</td>n”, ” <td>0.028750</td>n”, ” <td>1.002705</td>n”, ” <td>1730.319116</td>n”, ” <td>0.432580</td>n”, ” <td>1575.431994</td>n”, ” <td>0.393858</td>n”, ” <td>1</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>4</td>n”, ” <td>4000</td>n”, ” <td>3</td>n”, ” <td>theta[0]</td>n”, ” </tr>n”, ” <tr>n”, ” <th>4</th>n”, ” <td>4.264670</td>n”, ” <td>1218</td>n”, ” <td>5.950835</td>n”, ” <td>3.416150</td>n”, ” <td>0.537842</td>n”, ” <td>0.493586</td>n”, ” <td>1.000094</td>n”, ” <td>1684.749750</td>n”, ” <td>0.421187</td>n”, ” <td>2169.509041</td>n”, ” <td>0.542377</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>4000</td>n”, ” <td>4</td>n”, ” <td>theta[0]</td>n”, ” </tr>n”, ” <tr>n”, ” <th>…</th>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” <td>…</td>n”, ” </tr>n”, ” <tr>n”, ” <th>12995</th>n”, ” <td>3.222330</td>n”, ” <td>1162</td>n”, ” <td>4.178241</td>n”, ” <td>1.764406</td>n”, ” <td>0.974475</td>n”, ” <td>0.541775</td>n”, ” <td>1.000539</td>n”, ” <td>3132.297533</td>n”, ” <td>0.783074</td>n”, ” <td>3482.163558</td>n”, ” <td>0.870541</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>4000</td>n”, ” <td>995</td>n”, ” <td>theta_1[2,1]</td>n”, ” </tr>n”, ” <tr>n”, ” <th>12996</th>n”, ” <td>-7.107200</td>n”, ” <td>631</td>n”, ” <td>-5.619239</td>n”, ” <td>1.471871</td>n”, ” <td>0.982237</td>n”, ” <td>1.010932</td>n”, ” <td>1.000755</td>n”, ” <td>4177.643205</td>n”, ” <td>1.044411</td>n”, ” <td>3496.129529</td>n”, ” <td>0.874032</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>4000</td>n”, ” <td>996</td>n”, ” <td>theta_1[2,1]</td>n”, ” </tr>n”, ” <tr>n”, ” <th>12997</th>n”, ” <td>9.484280</td>n”, ” <td>763</td>n”, ” <td>10.892740</td>n”, ” <td>1.644157</td>n”, ” <td>0.977836</td>n”, ” <td>0.856645</td>n”, ” <td>1.000262</td>n”, ” <td>3765.095120</td>n”, ” <td>0.941274</td>n”, ” <td>2540.140071</td>n”, ” <td>0.635035</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>4000</td>n”, ” <td>997</td>n”, ” <td>theta_1[2,1]</td>n”, ” </tr>n”, ” <tr>n”, ” <th>12998</th>n”, ” <td>-6.195420</td>n”, ” <td>1290</td>n”, ” <td>-4.456004</td>n”, ” <td>4.444606</td>n”, ” <td>0.838030</td>n”, ” <td>0.391354</td>n”, ” <td>1.001032</td>n”, ” <td>3340.526088</td>n”, ” <td>0.835132</td>n”, ” <td>3040.492446</td>n”, ” <td>0.760123</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>4000</td>n”, ” <td>998</td>n”, ” <td>theta_1[2,1]</td>n”, ” </tr>n”, ” <tr>n”, ” <th>12999</th>n”, ” <td>-1.098650</td>n”, ” <td>3921</td>n”, ” <td>-6.015190</td>n”, ” <td>2.318488</td>n”, ” <td>0.955926</td>n”, ” <td>-2.120581</td>n”, ” <td>1.000614</td>n”, ” <td>4789.118749</td>n”, ” <td>1.197280</td>n”, ” <td>3234.499689</td>n”, ” <td>0.808625</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>0</td>n”, ” <td>4000</td>n”, ” <td>999</td>n”, ” <td>theta_1[2,1]</td>n”, ” </tr>n”, ” </tbody>n”, “</table>n”, “<p>13000 rows × 18 columns</p>n”, “</div>”
], “text/plain”: [
” ground_truth rank_statistic mean sd shrinkage z_score \n”, “0 4.281950 3712 0.403373 2.407448 0.770475 -1.611074 n”, “1 4.974810 313 11.482235 4.101083 0.333940 1.586758 n”, “2 -0.356069 235 6.575907 4.445932 0.217216 1.559173 n”, “3 5.071360 1929 5.121302 1.737149 0.880494 0.028750 n”, “4 4.264670 1218 5.950835 3.416150 0.537842 0.493586 n”, “… … … … … … … n”, “12995 3.222330 1162 4.178241 1.764406 0.974475 0.541775 n”, “12996 -7.107200 631 -5.619239 1.471871 0.982237 1.010932 n”, “12997 9.484280 763 10.892740 1.644157 0.977836 0.856645 n”, “12998 -6.195420 1290 -4.456004 4.444606 0.838030 0.391354 n”, “12999 -1.098650 3921 -6.015190 2.318488 0.955926 -2.120581 n”, “n”, ” Rhat ESS ESS_per_iter tail_ESS tail_ESS_per_iter \n”, “0 1.002368 1341.460058 0.335365 1303.921933 0.325980 n”, “1 1.001557 1387.925463 0.346981 2224.981728 0.556245 n”, “2 1.002113 1879.793973 0.469948 2239.299188 0.559825 n”, “3 1.002705 1730.319116 0.432580 1575.431994 0.393858 n”, “4 1.000094 1684.749750 0.421187 2169.509041 0.542377 n”, “… … … … … … n”, “12995 1.000539 3132.297533 0.783074 3482.163558 0.870541 n”, “12996 1.000755 4177.643205 1.044411 3496.129529 0.874032 n”, “12997 1.000262 3765.095120 0.941274 2540.140071 0.635035 n”, “12998 1.001032 3340.526088 0.835132 3040.492446 0.760123 n”, “12999 1.000614 4789.118749 1.197280 3234.499689 0.808625 n”, “n”, ” n_divergences n_bad_ebfmi n_max_treedepth warning_code L trial \n”, “0 15 0 60 12 4000 0 n”, “1 2 0 234 12 4000 1 n”, “2 0 0 0 0 4000 2 n”, “3 1 0 0 4 4000 3 n”, “4 0 0 0 0 4000 4 n”, “… … … … … … … n”, “12995 0 0 0 0 4000 995 n”, “12996 0 0 0 0 4000 996 n”, “12997 0 0 0 0 4000 997 n”, “12998 0 0 0 0 4000 998 n”, “12999 0 0 0 0 4000 999 n”, “n”, ” parameter n”, “0 theta[0] n”, “1 theta[0] n”, “2 theta[0] n”, “3 theta[0] n”, “4 theta[0] n”, “… … n”, “12995 theta_1[2,1] n”, “12996 theta_1[2,1] n”, “12997 theta_1[2,1] n”, “12998 theta_1[2,1] n”, “12999 theta_1[2,1] n”, “n”, “[13000 rows x 18 columns]”
]
}, “execution_count”: 26, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“df_sbc”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“For each parameter for each trial, the ground truth is given (as drawn from the prior), as well as a rank statistic, mean, standard deviation, shrinkage, and z-score. MCMC diagnostics are also reported.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“### Interpreting resultsn”, “n”, “We will not go into much detail about interpreting results here, directing you instead to the [Talts, et al. paper](https://arxiv.org/abs/1804.06788). We will instead do a quick run through some of the results and suggested visualization procedures, highlighting some of the useful functions in bebi103 along the way.n”, “n”, “We can first check what diagnostic warnings we encountered. There are thirteen parameters, so we can count the warning codes and divide by 13 to see how many MCMC calculations had problems.”
]
}, {
“cell_type”: “code”, “execution_count”: 27, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/plain”: [
“warning_coden”, “0 530n”, “2 3n”, “4 277n”, “5 12n”, “6 4n”, “7 13n”, “8 62n”, “10 1n”, “11 18n”, “12 66n”, “13 1n”, “14 3n”, “15 10n”, “dtype: int64”
]
}, “execution_count”: 27, “metadata”: {}, “output_type”: “execute_result”
}
], “source”: [
“df_sbc.groupby("warning_code").size() // 13”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“Most of the samples either had no diagnostic warnings (warning code 0) or only divergences (warning code 4). To help interpret the rest of the warning codes, we can use the bebi103.stan.parse_warning_code() function. For example, the next most common warning code was 12.”
]
}, {
“cell_type”: “code”, “execution_count”: 28, “metadata”: {}, “outputs”: [
- {
“name”: “stdout”, “output_type”: “stream”, “text”: [
“divergence warningn”, “treedepth warningn”
]
}
], “source”: [
“bebi103.stan.parse_warning_code(12)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“This means that we had tree depth and divergence warnings. All together, the diagnostics tell us there are some problems with our sampling as we have it set up. We should take more iterations, increase adapt_delta, and also increase max_treedepth in doing the calculations.n”, “n”, “We should also check the z-score and shrinkage. We will plot the z-score vs. shrinkage for each parameter, coloring the glyphs by the warning code. This coloring enables us to see if any of the MCMC diagnostic issues might be affecting shrinkage and z-scores.”
]
}, {
“cell_type”: “code”, “execution_count”: 29, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“n”, “n”, “n”, “n”, “n”, “n”, ” <div class="bk-root" id="98640e54-d64b-47f4-bacb-cb713c8b8761" data-root-id="10316"></div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“(function(root) {n”, ” function embed_document(root) {n”, ” n”, ” var docs_json = {"b7f82528-f482-44cd-87bf-af2cedb7795e":{"roots":{"references":[{"attributes":{"children":[{"id":"10315"},{"id":"10313"}]},"id":"10316","type":"Column"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"9605"},"selection_policy":{"id":"10201"}},"id":"9604","type":"ColumnDataSource"},{"attributes":{},"id":"10273","type":"UnionRenderers"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"9716"},{"id":"9734"},{"id":"9735"},{"id":"9736"},{"id":"9737"},{"id":"9738"}]},"id":"9740","type":"Toolbar"},{"attributes":{},"id":"9880","type":"WheelZoomTool"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"9855"},"major_label_orientation":"horizontal","ticker":{"id":"9823"}},"id":"9822","type":"LinearAxis"},{"attributes":{},"id":"9738","type":"ResetTool"},{"attributes":{},"id":"9820","type":"LinearScale"},{"attributes":{"below":[{"id":"9774"}],"center":[{"id":"9777"},{"id":"9781"}],"frame_height":125,"frame_width":125,"left":[{"id":"9778"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"9804"}],"sizing_mode":"fixed","title":{"id":"9766"},"toolbar":{"id":"9788"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"9770"},"y_range":{"id":"9571"},"y_scale":{"id":"9772"}},"id":"9765","subtype":"Figure","type":"Plot"},{"attributes":{"overlay":{"id":"9883"}},"id":"9881","type":"BoxZoomTool"},{"attributes":{},"id":"9882","type":"ResetTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"9691","type":"BoxAnnotation"},{"attributes":{},"id":"9734","type":"SaveTool"},{"attributes":{},"id":"9919","type":"BasicTicker"},{"attributes":{"text":"param: theta_1[0,0]"},"id":"9910","type":"Title"},{"attributes":{},"id":"10210","type":"UnionRenderers"},{"attributes":{"callback":null,"renderers":[{"id":"9948"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"9908","type":"HoverTool"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"9951"},"major_label_orientation":"horizontal","ticker":{"id":"9919"}},"id":"9918","type":"LinearAxis"},{"attributes":{},"id":"9905","type":"BasicTickFormatter"},{"attributes":{},"id":"9914","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"9739","type":"BoxAnnotation"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"9764"},{"id":"9782"},{"id":"9783"},{"id":"9784"},{"id":"9785"},{"id":"9786"}]},"id":"9788","type":"Toolbar"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"9883","type":"BoxAnnotation"},{"attributes":{"axis":{"id":"9682"},"dimension":1,"ticker":{"id":"9683"}},"id":"9685","type":"Grid"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9699"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9699"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9703","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9699"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9699"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9706","type":"Scatter"},{"attributes":{},"id":"9711","type":"BasicTickFormatter"},{"attributes":{},"id":"9701","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9699"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9699"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9705","type":"Scatter"},{"attributes":{"axis":{"id":"9922"},"dimension":1,"ticker":{"id":"9923"}},"id":"9925","type":"Grid"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"9701"},"selection_policy":{"id":"10219"}},"id":"9700","type":"ColumnDataSource"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"9595","type":"BoxAnnotation"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9747"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9747"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9751","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9747"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9747"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9753","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"9747"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"9747"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9755","type":"Scatter"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"9860"},{"id":"9878"},{"id":"9879"},{"id":"9880"},{"id":"9881"},{"id":"9882"}]},"id":"9884","type":"Toolbar"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9747"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9747"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9754","type":"Scatter"},{"attributes":{},"id":"9749","type":"Selection"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"9747","type":"LinearColorMapper"},{"attributes":{"data_source":{"id":"9748"},"glyph":{"id":"9751"},"hover_glyph":{"id":"9754"},"muted_glyph":{"id":"9755"},"nonselection_glyph":{"id":"9752"},"selection_glyph":{"id":"9753"},"view":{"id":"9757"}},"id":"9756","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"9699"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"9699"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9707","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9699"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9699"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9704","type":"Scatter"},{"attributes":{"source":{"id":"9748"}},"id":"9757","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9747"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9747"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9752","type":"Scatter"},{"attributes":{},"id":"9927","type":"PanTool"},{"attributes":{},"id":"9759","type":"BasicTickFormatter"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"9699","type":"LinearColorMapper"},{"attributes":{"data_source":{"id":"9700"},"glyph":{"id":"9703"},"hover_glyph":{"id":"9706"},"muted_glyph":{"id":"9707"},"nonselection_glyph":{"id":"9704"},"selection_glyph":{"id":"9705"},"view":{"id":"9709"}},"id":"9708","type":"GlyphRenderer"},{"attributes":{"source":{"id":"9700"}},"id":"9709","type":"CDSView"},{"attributes":{},"id":"9893","type":"Selection"},{"attributes":{},"id":"9916","type":"LinearScale"},{"attributes":{"axis":{"id":"9918"},"ticker":{"id":"9919"}},"id":"9921","type":"Grid"},{"attributes":{},"id":"9761","type":"BasicTickFormatter"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"9941"},"selection_policy":{"id":"10264"}},"id":"9940","type":"ColumnDataSource"},{"attributes":{},"id":"9722","type":"LinearScale"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"9953"},"major_label_orientation":"horizontal","ticker":{"id":"9923"}},"id":"9922","type":"LinearAxis"},{"attributes":{},"id":"9775","type":"BasicTicker"},{"attributes":{},"id":"9713","type":"BasicTickFormatter"},{"attributes":{"text":"param: tau[0]"},"id":"9718","type":"Title"},{"attributes":{"text":"param: tau[1]"},"id":"9766","type":"Title"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"9891","type":"LinearColorMapper"},{"attributes":{},"id":"9923","type":"BasicTicker"},{"attributes":{"callback":null,"renderers":[{"id":"9804"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"9764","type":"HoverTool"},{"attributes":{},"id":"9928","type":"WheelZoomTool"},{"attributes":{},"id":"9770","type":"LinearScale"},{"attributes":{},"id":"9727","type":"BasicTicker"},{"attributes":{},"id":"9783","type":"PanTool"},{"attributes":{"overlay":{"id":"9931"}},"id":"9929","type":"BoxZoomTool"},{"attributes":{},"id":"9926","type":"SaveTool"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"9807"},"major_label_orientation":"horizontal","ticker":{"id":"9775"}},"id":"9774","type":"LinearAxis"},{"attributes":{},"id":"10219","type":"UnionRenderers"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"9759"},"major_label_orientation":"horizontal","ticker":{"id":"9727"}},"id":"9726","type":"LinearAxis"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"9797"},"selection_policy":{"id":"10237"}},"id":"9796","type":"ColumnDataSource"},{"attributes":{},"id":"9930","type":"ResetTool"},{"attributes":{},"id":"9724","type":"LinearScale"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"9908"},{"id":"9926"},{"id":"9927"},{"id":"9928"},{"id":"9929"},{"id":"9930"}]},"id":"9932","type":"Toolbar"},{"attributes":{},"id":"9786","type":"ResetTool"},{"attributes":{"text":"param: theta_1[1,1]"},"id":"10054","type":"Title"},{"attributes":{"below":[{"id":"9726"}],"center":[{"id":"9729"},{"id":"9733"}],"frame_height":125,"frame_width":125,"left":[{"id":"9730"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"9756"}],"sizing_mode":"fixed","title":{"id":"9718"},"toolbar":{"id":"9740"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"9722"},"y_range":{"id":"9571"},"y_scale":{"id":"9724"}},"id":"9717","subtype":"Figure","type":"Plot"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"9956"},{"id":"9974"},{"id":"9975"},{"id":"9976"},{"id":"9977"},{"id":"9978"}]},"id":"9980","type":"Toolbar"},{"attributes":{},"id":"9735","type":"PanTool"},{"attributes":{},"id":"9975","type":"PanTool"},{"attributes":{},"id":"9772","type":"LinearScale"},{"attributes":{"overlay":{"id":"9979"}},"id":"9977","type":"BoxZoomTool"},{"attributes":{"axis":{"id":"9778"},"dimension":1,"ticker":{"id":"9779"}},"id":"9781","type":"Grid"},{"attributes":{"callback":null,"renderers":[{"id":"10092"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"10052","type":"HoverTool"},{"attributes":{"axis":{"id":"9726"},"ticker":{"id":"9727"}},"id":"9729","type":"Grid"},{"attributes":{"axis":{"id":"9774"},"ticker":{"id":"9775"}},"id":"9777","type":"Grid"},{"attributes":{"callback":null,"renderers":[{"id":"9756"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"9716","type":"HoverTool"},{"attributes":{},"id":"9978","type":"ResetTool"},{"attributes":{"axis":{"id":"9730"},"dimension":1,"ticker":{"id":"9731"}},"id":"9733","type":"Grid"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"9809"},"major_label_orientation":"horizontal","ticker":{"id":"9779"}},"id":"9778","type":"LinearAxis"},{"attributes":{},"id":"9779","type":"BasicTicker"},{"attributes":{},"id":"9784","type":"WheelZoomTool"},{"attributes":{},"id":"9974","type":"SaveTool"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"9761"},"major_label_orientation":"horizontal","ticker":{"id":"9731"}},"id":"9730","type":"LinearAxis"},{"attributes":{},"id":"9818","type":"LinearScale"},{"attributes":{},"id":"9782","type":"SaveTool"},{"attributes":{},"id":"9976","type":"WheelZoomTool"},{"attributes":{},"id":"9731","type":"BasicTicker"},{"attributes":{},"id":"9736","type":"WheelZoomTool"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"9989"},"selection_policy":{"id":"10273"}},"id":"9988","type":"ColumnDataSource"},{"attributes":{"overlay":{"id":"9739"}},"id":"9737","type":"BoxZoomTool"},{"attributes":{"overlay":{"id":"9787"}},"id":"9785","type":"BoxZoomTool"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9987"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9987"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9991","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9987"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9987"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9994","type":"Scatter"},{"attributes":{},"id":"9999","type":"BasicTickFormatter"},{"attributes":{},"id":"9989","type":"Selection"},{"attributes":{"below":[{"id":"9582"}],"center":[{"id":"9585"},{"id":"9589"}],"frame_height":125,"frame_width":125,"left":[{"id":"9586"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"9612"}],"sizing_mode":"fixed","title":{"id":"9574"},"toolbar":{"id":"9596"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"9578"},"y_range":{"id":"9571"},"y_scale":{"id":"9580"}},"id":"9573","subtype":"Figure","type":"Plot"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9987"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9987"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9993","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"9987"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"9987"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9995","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9987"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9987"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9992","type":"Scatter"},{"attributes":{},"id":"10049","type":"BasicTickFormatter"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"9987","type":"LinearColorMapper"},{"attributes":{"data_source":{"id":"9988"},"glyph":{"id":"9991"},"hover_glyph":{"id":"9994"},"muted_glyph":{"id":"9995"},"nonselection_glyph":{"id":"9992"},"selection_glyph":{"id":"9993"},"view":{"id":"9997"}},"id":"9996","type":"GlyphRenderer"},{"attributes":{"source":{"id":"9988"}},"id":"9997","type":"CDSView"},{"attributes":{},"id":"10001","type":"BasicTickFormatter"},{"attributes":{"text":"param: theta_1[1,0]"},"id":"10006","type":"Title"},{"attributes":{},"id":"10015","type":"BasicTicker"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"10047"},"major_label_orientation":"horizontal","ticker":{"id":"10015"}},"id":"10014","type":"LinearAxis"},{"attributes":{},"id":"10012","type":"LinearScale"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"10037"},"selection_policy":{"id":"10282"}},"id":"10036","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"10014"}],"center":[{"id":"10017"},{"id":"10021"}],"frame_height":125,"frame_width":125,"left":[{"id":"10018"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"10044"}],"sizing_mode":"fixed","title":{"id":"10006"},"toolbar":{"id":"10028"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"10010"},"y_range":{"id":"9571"},"y_scale":{"id":"10012"}},"id":"10005","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"10023","type":"PanTool"},{"attributes":{},"id":"10047","type":"BasicTickFormatter"},{"attributes":{},"id":"10010","type":"LinearScale"},{"attributes":{"axis":{"id":"10014"},"ticker":{"id":"10015"}},"id":"10017","type":"Grid"},{"attributes":{"callback":null,"renderers":[{"id":"10044"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"10004","type":"HoverTool"},{"attributes":{"axis":{"id":"10018"},"dimension":1,"ticker":{"id":"10019"}},"id":"10021","type":"Grid"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"10049"},"major_label_orientation":"horizontal","ticker":{"id":"10019"}},"id":"10018","type":"LinearAxis"},{"attributes":{},"id":"10019","type":"BasicTicker"},{"attributes":{},"id":"10024","type":"WheelZoomTool"},{"attributes":{},"id":"10022","type":"SaveTool"},{"attributes":{"overlay":{"id":"10027"}},"id":"10025","type":"BoxZoomTool"},{"attributes":{},"id":"10026","type":"ResetTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"10004"},{"id":"10022"},{"id":"10023"},{"id":"10024"},{"id":"10025"},{"id":"10026"}]},"id":"10028","type":"Toolbar"},{"attributes":{"source":{"id":"10036"}},"id":"10045","type":"CDSView"},{"attributes":{"below":[{"id":"10062"}],"center":[{"id":"10065"},{"id":"10069"}],"frame_height":125,"frame_width":125,"left":[{"id":"10066"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"10092"}],"sizing_mode":"fixed","title":{"id":"10054"},"toolbar":{"id":"10076"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"10058"},"y_range":{"id":"9571"},"y_scale":{"id":"10060"}},"id":"10053","subtype":"Figure","type":"Plot"},{"attributes":{"end":4.931922550498506,"reset_end":4.931922550498506,"reset_start":-9.49675437926496,"start":-9.49675437926496,"tags":[[["z_score","z-score",null]]]},"id":"9571","type":"Range1d"},{"attributes":{"data_source":{"id":"10036"},"glyph":{"id":"10039"},"hover_glyph":{"id":"10042"},"muted_glyph":{"id":"10043"},"nonselection_glyph":{"id":"10040"},"selection_glyph":{"id":"10041"},"view":{"id":"10045"}},"id":"10044","type":"GlyphRenderer"},{"attributes":{},"id":"10072","type":"WheelZoomTool"},{"attributes":{},"id":"9583","type":"BasicTicker"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"10027","type":"BoxAnnotation"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"9617"},"major_label_orientation":"horizontal","ticker":{"id":"9587"}},"id":"9586","type":"LinearAxis"},{"attributes":{"axis":{"id":"9586"},"dimension":1,"ticker":{"id":"9587"}},"id":"9589","type":"Grid"},{"attributes":{"overlay":{"id":"9595"}},"id":"9593","type":"BoxZoomTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"9572"},{"id":"9590"},{"id":"9591"},{"id":"9592"},{"id":"9593"},{"id":"9594"}]},"id":"9596","type":"Toolbar"},{"attributes":{},"id":"9591","type":"PanTool"},{"attributes":{},"id":"9594","type":"ResetTool"},{"attributes":{},"id":"10255","type":"UnionRenderers"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10035"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10035"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10039","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10035"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10035"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10042","type":"Scatter"},{"attributes":{},"id":"10037","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10035"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10035"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10041","type":"Scatter"},{"attributes":{"axis":{"id":"10066"},"dimension":1,"ticker":{"id":"10067"}},"id":"10069","type":"Grid"},{"attributes":{},"id":"10070","type":"SaveTool"},{"attributes":{"axis":{"id":"9582"},"ticker":{"id":"9583"}},"id":"9585","type":"Grid"},{"attributes":{},"id":"10071","type":"PanTool"},{"attributes":{},"id":"10300","type":"UnionRenderers"},{"attributes":{},"id":"10067","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"10035"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"10035"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10043","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10035"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10035"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10040","type":"Scatter"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"10097"},"major_label_orientation":"horizontal","ticker":{"id":"10067"}},"id":"10066","type":"LinearAxis"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"10035","type":"LinearColorMapper"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"2ff2nBoG4b+5unqf7knRP03nT7EEKfE/MJnXq+/7ub9PIoXL7yzjP4YBF52fi90/BtXxutdm5b+63C8I/4LfP6jFWcVM3+a/ku6/n8zOAMAU79tKjeb0v7GGT5EwX+a/qrEM4ia38b84/LRFQkn7P1h/omf2/tI/PgNdovi58T/fXswKYCvhv75QMOTlHeA/biN75BAFAsDwQ/0V16bwv86/xXVNcNI/sUxa6I4w1L8zpQ1WW1PoP/r6pRFM8Oi/dU5fuF/V+z/EDayTzlTRP+fyQjV2lPi/Ovksbcs+5j9sK/WYSiGwvxIvHwuiI+8/yzS0xpKa3z9OH+Z5wFDDv9yLKWGCyAHAAqnUTOfF+r/s+TzYJXzcvxCWhI45x+y/MWyuK/6f4z/i3GdX6S7Xv39l6qWF+Nc/dYNLfCee+T9ANgRPhTPzP7w6T+GZEuM/w1O31FHD4z+pLgfjHPHevyFwIxAPYOq/lRujKLTm3j+QXR2olGPgPylagEJZ4QDABEu2oJOq8b/1f9g21BjwP7w2f010rsE/yq1dA1Ne3r8V8qmQuLzRP6W5FJ5gCPM/UX+fijC18T/cIjM6kaPgPx5XQ4hz6tk/JS/iHKpA6j9CVYPYpgLKvx4FI3nGLfi/VSf8Rc88+r861l7Vs8zAP47nDpTc+ck/rknuhf361D/2IzUNgbHSP49cCElPB+e/1Zs+R0cSAMBsDggvFyr6vyX41f/GbfW/Q9k6yhf+6j/kwUywaaX+P4l9dVC9iPM/scA+5v4+2j+Ks4LLU5v8v+V9VEItru6/Wzch0Lri6T+hbdRfX63mv57E2gWbhOi/mk8tFG7I9L8txoqGZm34v4W4Wr9B7PO/0+ENRQrPBkAhQ55bzWW8P3u2/W96XO4/CGLmj/in8L8TsDaIdd4JwCD0MMj0r9I/1T9DiXSEzr+hyT3JzAHLP45ZIbkrhPw/VvNXJmmj6L+eWWMJPm3Wv5S3qNaBsdG/IY7Jy2drwr8d9zayLCbVv/WL8dp/4+m/4yCxSz49xr+oyv6E50H3vxJ2hld4xO6/dIPDh85ewD/gHsgzCwb2v+PYRP8bOfC/WxBL0xDv878eXWeTSPPZv8iXhGQbaPg/zFe9HpuGsz/Nk+VfAyXsv8U0RpgSDP+/xteOYjYL0T+A1qJ8Me/VP58x9xJLyvW/CJO4az/Q4b8elXmsVPH/v21bbgAbN+u/rIXwNnR91L++5BS7HvfDvzhH998IIe8/lMzU2w7VjD+nDMNCQvvcP69aKfaVkPE/Jfwgz6c82D/tjBWwR5T/P48OIGiLZ8S/FwJZoBTJ9j/hN+MBLV36v4B5y1r60O6/EKcBAwAG8D+s/jIrP/faP0mxRqUv9vC/puVP1N5w0L/3VZtiiR/+P86mTKkjzd4/Zekrr0RK/D+xpCFtjMb0vwFtqi+guvo/k4NhCldm27/2Wl5DDzwIQCSoHCXkavK/GO96fsEZp78IJ4cg+tHwPx74tovXUsc/XbMy5Qa2B0C2QfpKm5/zv0goFZDnptw/yc7znzaO4T93FwyCeiHgP/+upHM5Ivg/gHOz9Zio7r/F5XlxOXz3PxaOVG1CSOk/mWnFmF1o6r9PC3qfPbXqP0I/5+7FRvA/puanKMO/+z+I0HvX2vS6v/0sdD8nwNg/y/7rTACf7D/sTKp6Ncvlv7313JJsdfG/QFWoOzjJ2z+pyvExJHrAPw/PKNLOyd+/FsEVCMXw/78ruckqc0b2P/3n15xbmvM/pK4/5JGQ178L/FUvFzD0P45KTOhZ0d2/bA3CYlIV9b/GJJpK+8tqP32wici7Yua/kD+ZnfFk9D9OmoNsusPlv3sUAL+je+O/wgJR6u446r882+JhIKLmP7Xe3O51q9I/XujTC4OM7j8lunmrm1XIP43yRnqvxANANlxTgvmMn78V3+F9UpTtv+Fz3vjE3sY/K66IB4U58z8QfJ+W4Aefv8WbFTBcvd+/OqfLbm2DzT8CUn0MKb7Ivwhtjj2yu9W/ZUcWp76Zyr/tyRfIHzz4P36XcPa17OA/JVcuW8VhsT9CwplXZSH9v1aSV7KWbP2/YzWKSibK3L+qKmUoWEMCQG/5Cwx1hee/0CSHsdL49L95QefbmyICQLLSnYDbddu/vTfjMi2e6b/ejB/LmuzKv/sptrJwuOy/mDYy66qU6b+36hL+fACcP6nMqKRCxOC/ntAGQ59l2z92uCp/JEv/v4lmTKjLP/S/YUywmDtN4L+pugXn0LjxPyJYlVddDOw/c6ZaHZkspr+MAI80SGPRPz1dudM1qfQ/CwlYnV0nzT8ZT19o947Sv3SAlZYWAOA/8r9QY46AqD8ZmhtbEjXvP790VDdxAbA/Nwpal2YJ7T/ZcK89MQO9vzKkSHQNitm/muvgMOlD6T/4c1DVIasAQPsjkG6V9u0/TPnE8eyf8j+zLmI5crHtvyUF46giCtm/trMTYQGr9D9ljeQmbC/pv0HKsfuDiuc/mQfI9et7zj+We/WMntD6P2cUoNxgDPo/wqHj5GWX8z9wvsE4HWP9v+J2p61yQ/Q/M+HW6F9L97/F+ESjMqiyP9vtbN0UZ+U/C9pHLZ4j8D+zG3QDOv7FPxopJ4Fdwdu/wRzUhFV02r/vOb3jhI7RP2YKu0LPu/G/0kf9K5wK8T+uK6WFx/YHwMNB39pI0uu/S21gXWc47T+n/OO3IxXYv9PfZNFy/qc/alqJt29T4L/R/lcuxo3Uv4RorZoqXuS/wSY3E06ws7/LhqmxMtXQP5CnM1hJ7PK/JA2aZRBT4j8pYojp0bDiP1PQdyeo4/Q/pwLycClI0j+UQweb5hLmPwjooqpSesY/5/OSdtOj1j+AaJOouYr+v4IRL1QK5es/5pr5Gecuxb/MhEWqVt/tP2s9GEjeEfO/jO+4MKo5xL8jX1e+d06gv3G8Yv+0v/o/W/xIQ7sE0j9TogYJlkzGP9qmViIWFsY/uGjKBaIt4D+p9Id6RJ7zv72t+eWwPPg/Debhuz3z6j8XQlx/+fn0vxm/viLOI/S/D7h5gLTU47/cSEvoWcHkv4OIkQYvpMM/cq3Yt5WA8T+vam9FqHntP3UAHmYUsf6/33LuoVrx1j8aMXgxDCr2P+QfP5hE7N6/maDJEBTv+79S9q/foNmgP4yKbbvBlt+/zUS9z+VK4r/KDkJ6iTXmP54cUMCFnfa/qtPACbeA478VQP9lxUEEQOO5KyhRPug/6sqvozQAsj8RCa2dNQvkP7lPEcR+zfS/X8r/RGIS4r83gbwx2uHbP65euzG7Sem/5jLKc9cw6L/qUrGM6yjRv6wKyk/l4gFA8vlCxR4/7z/gDccRLMi+P7/KqJbykeM/GfxfQJ220r/W0S6dUxvgP0rX4X29SdG/xIDrpCnQ4r/lBnsy1+/Lv2goLBeQVd+/upD/v9Wd6b/e3u6GgfLbP+NUIv5GPue/e0Zt5ARoAkD+lAv36qDnv+MkwJkeNea/QouwOYKO6r+VpTU62/jaP5mWajQPd+M/dbJvXf9O67/yLAgcf6XpP/LKJZRHseo/Nw1czMnu4z8qUTMYXxzxP3WHciLdfdq/pwWXhT151D/8skRv3dTIP9C+9jTiTuK/E8JGnl7C17/NaGcKhK7YP49jvdfh1e6/0XIrYA5o8j/WkV9Ee8mbPxcKWBLMo9m/aHY0VJFllb+CYuWQMFjsv3iVgCZDkO2/7QyE3alI+L+U3EWbw3gAwIbYemRL6Mw/V15Le81v979AnMCIgsbzv0yPTrfwxcw/SgRJLn4U4D+lLrb+WS/JP/SxFvF6zbs/xQSRJmE+1b9aKLkvzhPyv9UP/hxgZQBAtI4+xxYNzb/kAhQDsW/rP6seBKaviry/NDFTdg9UAEDEj4ww+boGQKmdBuR2mPW/O1KxM3rGA0D99qBpvL73vycOey1Bsuk/APDruwCv5T/rRnheAzLjv/47ThjNjvM/j0hsW+yr0L+E2o6t+53oPzwFpoDpLay/alRFQlj5/r9nC93fZIDkv5Y4cUKOFto/NVdIj238A0A9x5jVPRP4v6RQsDx0VvU/qz+eN7dafD8SeSUJ+Znqv4dipI+cB6S/VMXlntMOuT93EQSvD7buP1bBboFAW+m/uNZrArx04D/NQx4Wbjayv3B/bo1s8vq/s9fzdIw5sr+2QnNWhCbuv0OQyTKhxvW/8+SA3+5/wL9kI9UO6OHhP8C7eWwUzfO/L2ukKZmTAUCF3la8eEXSvx7j1QU8iPE/tK4wMnaw9j+Rqd6Mbizpv9SmogmHP+M/l01BmKuV6D/snL0dZSYBQAIvA/Humsg/S7Buiyvt4b8H8gSPlfjmP1uy59yJKM+/3YSvXnanAMBwOhkTx+3Tv3wihsD2LvI/ninIftlP6z8MIiLbgXKkv5aihfJWh6c/hYq9rxDa8T/sebk67+zJP+IdDWLh+es/oUAaq75e0r8HlLeZfYLiP2FeQpVekuu/FIe6+K4g87/CNxIqQGbuP8gEUtNjivc/6WQkUHxL9r96mIqMm5vNP+XI4pylsOc/Cp0QzPXC9r82TqSZG9GnP0ZZhtLzlOc/zVVwbTfL8r9gxi+TZ2HIP7hNKpvE6eI/+F/ZmaI16L+PmxLwenjsv8xDljr2EQHAIIm+Z+/Z778OM+ao9f6pP3zyxAKN+dw/iNmZ5JNn7T+0SMIKOhLeP3sXxV4gW/2/igm1nz7Z0b+eOVK/qQIAQEBbhnar6sm/IYnaFPTbzL9xc6OD9aLyP+6tuS6XLuW/f0o58O/O7L+rACUKKfjRvxrp2XAKK8u/Z8DjCvAfAUC6rorzAATtPznCX8rC0+u/daZT8Tz8zb8tHTW6H2Twv1WsOoAIv9E/Ev7ch8jElb8jTZidUXbpv4ZLtQ6IgPA/WfjZeoPW+79pHovOHTnMPxZUOsT8JeI/W5htvFOZ+j9EX+NL5TbUP0fWNfBfl/O/gJ6+ZWJG7b+34AxsVT3gP02yZeoFCcQ/JjkAhbDizb+3lYnNDHbRP1N2dN3DxcS/dfweN6VI8j+1xoYKcPjQv8fFxqTsAsy/yDHOFJrc3r8BJkGwcjDzP0m+bBwHW96/lcgl8pX/8j+Uo9kVt7Lyv34HGlR8+uw/5tWOzazN4L9Qn26pH0jTP6LfBPjyVsc/zzZj9QIWw7/6ZcYIDhn9P6BR+NlFB84/QMlAY6Ip9r/Wch0d/Y7rv0bCShCej+e/DKmsbMHX0D+vjPJTWj7gv4mYz9VNVtu/GQLp6eY87b91qIk2NNIAQDrFVhP/aeS/e0I5FlTX5r/3FQLZsxLhPz7uH3NMxOO/NSNCoCKe9L8FVmyZlf7XvyA9eVEa0vQ/H2M3duSD9r9wN3Mza6bkv8X0t2+478C/pcbtN8YWxz9hPPIIOMHuv9JUpieQJNm/JFXfuVJ947+Bl3FurzsAwCdEaWWQUOu/FxjQ3++S8b8Yx1HXbySQvw7ktFga0PK/RpYYvJwb1b9sFJO/pyDhv9pPacS3FQJA6INZKTk96L+qRmDwu3j1PyqCOW79P+u/jbm/5RTR7b+KGcnUdrzXv2TiEHxoidw/VcVpK4An5j8Kead0tfvhvwFVjgvYFdW/p9wCEg6W778vTynmnnHvP22fQeje84C/3fN5+93ZeT+EYlCWzNP6P2neSlraGeM/FHRUwmha8D+aziaAFA/yv59kwA8sCALA1VKgU3ZG0b+B0ZlAtBvhP+BN/QyfDuo/7a4yLSdhwb/0Ix8dqTHyv+XueiocNfK/3oTAZebEy7/17wyvM+a8v0OkplRQcN2/EMa4p51O6D84j9ycGefJv5hpzd98TtG/rGtzTPtqtb/n2JHAuvLRv+r6N70vPNo/dLlg6TH+0r9RewDNreTYP8Bh3G3a/9o/Rh6NueZ03b8DwvEeOyHcP2SgYQVBN/q/zSZdqNXOzb8R31MvUpb8P+eK1JtcsuQ/zFMezYUPyr9xZOc6He4AQGV2Vfpo4co/RjkXPXS947+ld6TxvfT3v6QvZUJy2MO/zJMz6yFg+L+3r37pP97jPz9X0uOIdfS/u0h4FpnW8b+J8j/s+sDzv/+ReDyAIAJA9cogOQdyxL+eoNHiSpDsv8vFo6v+udu/aE0v7tKi9b8HqnbFyV7ov14pTZ1Mi+o/SKdc9oJO8r+hRcXHqjrwPzHxH+EHwdO/YyveCitPsL/o8CZRw639v2/xtPumsuM/MHcDs11Lyj+w4xd6E8HeP6N4YEK5ZbA/ykEt5ufu6r/nUZhlmOHkv5DmCJTojtq/IygzzKosvz9UKqfIIbX3vyZw4YqKMvu/3njFPQqUvT9Pe1e1v7eAv1McYh8GA+m/awhuztxX4D96qrORbN/3P5Tef4O02d2/0Q2ipDPKgz8HidAokYvQP59A/gM9X+o/Tr/dMJ396T/Jpt4oH/7xP/sh5TP0mc4/6pG05kNg278VXXOJkv/sv/0mx9tDmfC/T9YwbGPH1z+mxGouEiHZv/vFgIc0OtS//NsruRkI5T+m73yyVRf1v/A9WgGNDeK/dpY+6D+R8T++N5OZD8zuP7DgXhtyv+C/fMAhIGu65T/IFF84I37iP2FLJIIQwOq/cPS3a2K/679UVzCBd47uv/XYuUKy8PO/8+rd/JUL1L89uPukzdLdP6MEdndk8fG//XVpWlCK5L86a0lwGbbmvy9oBZeGgfM/imYZPa2j5T/8sn06QFPKv0MXQ7gCU9s/990kk0fK/78YvNsdj8rFv50+qO2FG+u/TtK8Vlk1pD8NTtQ1olfHPzdudUxO4fE/LUbAvYG/5L8uS54uj/vUP1mQoFPI4Pk/cX+mRMrJqj94yg4ZdOLsv98To/L6cfm/kUakYH6M+L+xBxQP3S6sP6kKRfwwlP4/q7Y7xnsr4b88sifz2yvYP17JDPzZzNm/GF18/o786T+VpTYn8uyBP/fgRWx47fo/7aWMcoaP6r8yxh5PgfTsvy1Or85sPuc/i6AVQOlQ1r/8jRuLKKTwv8CaH1bus+w/b1fTxje44r95HJBIXc7sP02NWQZQttI/PIVQQ4GW879RAwN83xzrP2fSGcPCQey/iCVPodSr8r+RU4IPqtX6P5Kvjyyq0dy/n74RXOKm9T9CJ1WWcA3Vv7Gajj6yKfe/TssMnYqg3T/W5/ITA2LCv7vyKLdC/No/sBazNPM9+D969d+VYEb0P6He+XzsqLc/OCM72V0n2T/Uq+Wk/OT2v21QweLN2N4/YkDgiYPHmr/sr+vyNzW4P9z2+s/r5Om/TxWCZq2I0r84Pg9SXTv5P+8OLjT5lZG/heYlpzj/Sz+WaXCcd2sDwK2jMs1noum/gjUz+7fv4z/1fhMmDe7XP8gxyFUaNmQ/qdBNlNgw6z+xyrvdryD9P8dSCy0mGta/uX0dzcG88j87BeF2477iP6ypiKtmvPk/PsSRc65E9j/5+j2XsmXvv33JAv1a6O8/IegQdZEe0b/DcZlCoiLQv7LhwamAwLc/jAhI77NQ47/8LnVo9m8DwG8JIGAo3+k/PYNUqIBG6L+XghaZxLLjP9iLT2ISY/e/TgudjJI2tj/Roe2mCpuaP6XiXj681Oo/Fdx3f7nn9j+dJwJzcA3jv+UlVaYhNOa/rrKzGl748D+qp7WzGlLdv0EvdIwvPNK/2+dC2iJQxL8LK9bJnmbcv6vK59Ncfu2/Ns2Euf0Ntr9NTH0cM7rsP1cly5Wg3f6/L2Lqo0LquD+lsNPDmAjNP2ndGS2P8+G/vsaVs6tk5b/2T89KGRfxP5mkykqEaOc/k6Yeka9Kz7+xcpvtx8rOP+WPx///X/A/Qtw3ozEQ+D92vxaCF8Ltv3Ox86lSksi/QLaaSg4b4r+abPZGW87zv95kTyJE6e4/JSdmT5s+wz9aSfBwoPz5v6tJ3Yuiedq/EEzHntZh8L8O4ufMK+7+v7KzWi0A6+6//6I0M1qi9b9tkT/ZsTgBQJwVW2oh+/O/emk7zW0A7L8xJDaoEIQBQBjojSe2N/S/a21NS7oq4D/mb2jDmIX2P4Y9pHuFWeG/RJGb9jbd8r+BQsBgLELBvwwxG2fpnvI/2FplzejD0z/ZrK0u38e+P0YHPIOb8vu/i/qHQYQM1r84fznMsnCSv7295+AXG/A/3z45ZngJ1z9iQdRl1In9P142joqaceC/qRZgA4ht4D9qC6AWLXH6PyUossHXHui/S/dukStOwj9FCEiKSOnKvw4D1tFVuOm/lsozWz/Tw791ldrPvLzKP1ZzGez0kLW/2Ii1xMRSwz9zZlHWGQz9vzVsOdCzod0/M2X/ghmt77+4IXr7hvLsP48oXJB6vsM/d3C6d2cd578scCMI0Cf4v0w58QVwdtO/sap5g/5x/z8XQtOpseLaPwv+I815MOm/JooWfFCR1b/QSmPLulC+v71PkP5/pNI/WPG4w8J74z9qCUDIMzkAwOLneldgRMk/DHz5KkTa/T9pj2SlX+HRvzsbxzx8n9O/Lfh/f6AasT9i0DGlgwbTPyhrKWReQf2/0y/zrOOM0b9SvAUZpYL4v/3j5EAdUN+/BwWikHgc4j83+2Egyv3IP9fr/mdCkvA/k6MS3777wj97/4p3Xov9v2plGewLPfE/j0CGfNM4zL8fsL6o7NLev+s6T+VJMfc/ApZBy4eb679EpTjV1RXjv/UlWyvwD/u/W+365koav78qeVEJt+rqPz/sIKsZ8PO/TZTvee0Lzr9lMEdVGdvfPxGpudAURQjAbGueZ5jP5z+umVOfSJLmv2kTzP8jMcQ/sCFua4+3+L/0IZ+ERIn5v3RQcVo/Y/0/ZmmprT0O4b9nxPcpFv7NP5DEzlyjGci/AcEeOqqB+r/GDQ7pDtXoP8rXf5tvLM4/PJzZy1cI4D9BOg2ZMsncPy6ML+66N9S/XQ4XhJUq8b/B/7xmsMK+P62E1FvHA/e/7OElXak/kT+d65k3rTboP+Upcc1vqgRAErVXfT+w9r/sqm9l3Hfyv++UYhLDke4/weP+gpHa6b8LxkX0BVKxP+vJHZM3NeU/HU8hFCnJ5b8KkruzsfTqvxuL4sSVG90/4SK7JEPF6T+42bG+Kyjmv3LVLUNHo/A/mk3PVVHS5T85td/XW03rvxjBstR76fe/VAjCoW//5L8tcG8PGyTwPxMUJenYEdq/AjoVRtyA9D9ER4UGGwvcPyxpU8ch+uA/946eEzsJAMDtCcS+yKjyP6tp20mF4es/Bd4uReI37T9S0BqOpMbzv4+09lHGSqC/XBUYFmfk4r+MM1VHWqLKv6cd3jVxlvW/IjQX5O0s8L9kaigx8UH4vxhCGHarqtg/vge1EiCzyD8RVi2IohTjP0J79ipj6vc/yU34noOb4T/mRjHS1r3ZP6ZL3qe+fO8/WDRnbjw72D/0HaUHmJj8vzFcKJ+YQLE/1t4pBuQ58b8CmAm2VhXYvzy/oVc1v/W/1hg9ifLc8z9c4KMDYkzoP3Psglf6W/C/Bbjg2Fjl2r+J3ih8GBnxP5577sPZT/Q/fcXKve5c4r+/W9kFyCfrP8z/PFOD4+4/x3WMg8y0+79GU6wZcrXpvzia/lgkrto/UER84oqZ8T+PefZTFN0EwP1E5VOT+qg/KLQTGNl3fL/R/b4Vz+3/v43DjjsYGNY/LQ89sV+SyT+E/IZMPYPdv29vdMWWW9Q/rHNvtVeQ7j8cWnqWp6byv7C9/6ngiOu/OaeMa70V4r9NzQQv1PbAv9x27bEefLi/3LKkCkbU+L9viWNsO930PyfS2Qgmbee/G4ElbzOXuT8wwLb3A4D1v+WnIzZ6BQDAnuuqnrCR0r/iyT8dEjzuv/9I2luKLL4//VokPLZR/b9fxVV6gCPnP6+b291qY9G/zO9RNVQU7z/vrYwEJPnQv8emTBObZeo/UH18JXZq1z9AXr7lbdjyvy1iSI5ugfC/N5E1up26/r8wVhO/GG3OPyCaAs9xVQPAj/CZXCTp3T+WoA9hY7zDP1my7BekwgNAxiVU0Pmj/D9GHFLrhqvBv9qbZIwrKsU/VUg5sQqp8L/ZcHTwnjbhP1ANVzkRD9O/paifMwHZ3r9BbnsdPnzrv/GFuO9r9rg/HEXCo1eV+L9aFDvF0L3kv6W+SEjDOfC/pMXasyfv5j9h+5KIEerxPwSgdFHl+e6/sdH3TVuu+b8AlOFhqFfhv6+BCmbNWtK/CKbPjmZrrb8OryeyL9HnvxUgRT0ihvi/MtSqzxg74r92U47WtDrDv2+qoTG7Jvi/EDWwWpnT2j+a7hdCIhXyP7iTyRVlMtu/ZsQKOEd7578Bgnb5rEHoPyh1fMp2pfc/V87uTzFl1T9hynFjRr/gv4VQSM9kvq0//12u/bbq9r+J/4xJIv60v2zMbJDQV+Q/WRIwG4XK4T/35zSuC5P/v1JeOl0usvS/gZx5WxZz1T/JWXmUn0Lsv9hQTDK5q9U/DPU4uwpav7/kTyGoEwfGv7dolIDCUvW/NgBkGV5v/D81nPWTrbrOP1G6fLVoaew/3ywFX7d3yT+3aNVEuZ3lv+LFY0jweMS/Gu5h0hWX179OxGwGS9HhP+DZycfZwty/i9YsHkSI6T8rURxFpfL6P6Q80g3WcvS/gyaYHhAdBUBKoU4cZ0TzP/B5AEFaZv0/n9MyNgDfu79c/q6pkTEEQCU1AbRXGfw/XuL6xlE78z8=","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"10085"},"selection_policy":{"id":"10291"}},"id":"10084","type":"ColumnDataSource"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"10052"},{"id":"10070"},{"id":"10071"},{"id":"10072"},{"id":"10073"},{"id":"10074"}]},"id":"10076","type":"Toolbar"},{"attributes":{"overlay":{"id":"10075"}},"id":"10073","type":"BoxZoomTool"},{"attributes":{},"id":"10074","type":"ResetTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"10123","type":"BoxAnnotation"},{"attributes":{},"id":"9590","type":"SaveTool"},{"attributes":{},"id":"9587","type":"BasicTicker"},{"attributes":{},"id":"9690","type":"ResetTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"10075","type":"BoxAnnotation"},{"attributes":{},"id":"9580","type":"LinearScale"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"9615"},"major_label_orientation":"horizontal","ticker":{"id":"9583"}},"id":"9582","type":"LinearAxis"},{"attributes":{},"id":"9592","type":"WheelZoomTool"},{"attributes":{},"id":"10264","type":"UnionRenderers"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"9668"},{"id":"9686"},{"id":"9687"},{"id":"9688"},{"id":"9689"},{"id":"9690"}]},"id":"9692","type":"Toolbar"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10083"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10083"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10087","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10083"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10083"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10090","type":"Scatter"},{"attributes":{},"id":"10095","type":"BasicTickFormatter"},{"attributes":{},"id":"10085","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10083"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10083"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10089","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"10083"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"10083"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10091","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10083"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10083"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10088","type":"Scatter"},{"attributes":{"end":1.0733365608264462,"reset_end":1.0733365608264462,"reset_start":-0.5400678595858021,"start":-0.5400678595858021,"tags":[[["shrinkage","shrinkage",null]]]},"id":"9570","type":"Range1d"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"10083","type":"LinearColorMapper"},{"attributes":{"data_source":{"id":"10084"},"glyph":{"id":"10087"},"hover_glyph":{"id":"10090"},"muted_glyph":{"id":"10091"},"nonselection_glyph":{"id":"10088"},"selection_glyph":{"id":"10089"},"view":{"id":"10093"}},"id":"10092","type":"GlyphRenderer"},{"attributes":{"source":{"id":"10084"}},"id":"10093","type":"CDSView"},{"attributes":{},"id":"10097","type":"BasicTickFormatter"},{"attributes":{"text":"param: theta_1[2,0]"},"id":"10102","type":"Title"},{"attributes":{},"id":"10111","type":"BasicTicker"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"10143"},"major_label_orientation":"horizontal","ticker":{"id":"10111"}},"id":"10110","type":"LinearAxis"},{"attributes":{},"id":"10108","type":"LinearScale"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"10133"},"selection_policy":{"id":"10300"}},"id":"10132","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"10110"}],"center":[{"id":"10113"},{"id":"10117"}],"frame_height":125,"frame_width":125,"left":[{"id":"10114"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"10140"}],"sizing_mode":"fixed","title":{"id":"10102"},"toolbar":{"id":"10124"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"10106"},"y_range":{"id":"9571"},"y_scale":{"id":"10108"}},"id":"10101","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"10119","type":"PanTool"},{"attributes":{},"id":"10106","type":"LinearScale"},{"attributes":{"axis":{"id":"10110"},"ticker":{"id":"10111"}},"id":"10113","type":"Grid"},{"attributes":{"callback":null,"renderers":[{"id":"10140"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"10100","type":"HoverTool"},{"attributes":{"axis":{"id":"10114"},"dimension":1,"ticker":{"id":"10115"}},"id":"10117","type":"Grid"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"10145"},"major_label_orientation":"horizontal","ticker":{"id":"10115"}},"id":"10114","type":"LinearAxis"},{"attributes":{},"id":"10115","type":"BasicTicker"},{"attributes":{},"id":"10120","type":"WheelZoomTool"},{"attributes":{},"id":"10118","type":"SaveTool"},{"attributes":{"overlay":{"id":"10123"}},"id":"10121","type":"BoxZoomTool"},{"attributes":{},"id":"10122","type":"ResetTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"10100"},{"id":"10118"},{"id":"10119"},{"id":"10120"},{"id":"10121"},{"id":"10122"}]},"id":"10124","type":"Toolbar"},{"attributes":{"callback":null,"renderers":[{"id":"9612"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"9572","type":"HoverTool"},{"attributes":{"below":[{"id":"9918"}],"center":[{"id":"9921"},{"id":"9925"}],"frame_height":125,"frame_width":125,"left":[{"id":"9922"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"9948"}],"sizing_mode":"fixed","title":{"id":"9910"},"toolbar":{"id":"9932"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"9914"},"y_range":{"id":"9571"},"y_scale":{"id":"9916"}},"id":"9909","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"9639","type":"PanTool"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9651"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9651"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9655","type":"Scatter"},{"attributes":{"source":{"id":"9892"}},"id":"9901","type":"CDSView"},{"attributes":{},"id":"10237","type":"UnionRenderers"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"9665"},"major_label_orientation":"horizontal","ticker":{"id":"9635"}},"id":"9634","type":"LinearAxis"},{"attributes":{},"id":"9903","type":"BasicTickFormatter"},{"attributes":{"axis":{"id":"9634"},"dimension":1,"ticker":{"id":"9635"}},"id":"9637","type":"Grid"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"9891"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"9891"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9899","type":"Scatter"},{"attributes":{"data_source":{"id":"9892"},"glyph":{"id":"9895"},"hover_glyph":{"id":"9898"},"muted_glyph":{"id":"9899"},"nonselection_glyph":{"id":"9896"},"selection_glyph":{"id":"9897"},"view":{"id":"9901"}},"id":"9900","type":"GlyphRenderer"},{"attributes":{},"id":"9635","type":"BasicTicker"},{"attributes":{},"id":"9640","type":"WheelZoomTool"},{"attributes":{},"id":"9674","type":"LinearScale"},{"attributes":{},"id":"9638","type":"SaveTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"9835","type":"BoxAnnotation"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"9893"},"selection_policy":{"id":"10255"}},"id":"9892","type":"ColumnDataSource"},{"attributes":{"overlay":{"id":"9643"}},"id":"9641","type":"BoxZoomTool"},{"attributes":{},"id":"9642","type":"ResetTool"},{"attributes":{},"id":"9683","type":"BasicTicker"},{"attributes":{"overlay":{"id":"9691"}},"id":"9689","type":"BoxZoomTool"},{"attributes":{},"id":"10282","type":"UnionRenderers"},{"attributes":{"text":"param: sigma[1]"},"id":"9670","type":"Title"},{"attributes":{"axis":{"id":"9678"},"ticker":{"id":"9679"}},"id":"9681","type":"Grid"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"9713"},"major_label_orientation":"horizontal","ticker":{"id":"9683"}},"id":"9682","type":"LinearAxis"},{"attributes":{},"id":"9676","type":"LinearScale"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"9711"},"major_label_orientation":"horizontal","ticker":{"id":"9679"}},"id":"9678","type":"LinearAxis"},{"attributes":{},"id":"9688","type":"WheelZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"9643","type":"BoxAnnotation"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9843"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9843"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9847","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9843"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9843"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9850","type":"Scatter"},{"attributes":{},"id":"9855","type":"BasicTickFormatter"},{"attributes":{},"id":"9578","type":"LinearScale"},{"attributes":{},"id":"9845","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9843"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9843"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9849","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"9843"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"9843"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9851","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9843"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9843"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9848","type":"Scatter"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"9843","type":"LinearColorMapper"},{"attributes":{"data_source":{"id":"9844"},"glyph":{"id":"9847"},"hover_glyph":{"id":"9850"},"muted_glyph":{"id":"9851"},"nonselection_glyph":{"id":"9848"},"selection_glyph":{"id":"9849"},"view":{"id":"9853"}},"id":"9852","type":"GlyphRenderer"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"9620"},{"id":"9638"},{"id":"9639"},{"id":"9640"},{"id":"9641"},{"id":"9642"}]},"id":"9644","type":"Toolbar"},{"attributes":{"source":{"id":"9844"}},"id":"9853","type":"CDSView"},{"attributes":{},"id":"10246","type":"UnionRenderers"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9651"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9651"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9658","type":"Scatter"},{"attributes":{},"id":"9653","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9651"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9651"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9657","type":"Scatter"},{"attributes":{},"id":"9866","type":"LinearScale"},{"attributes":{},"id":"9663","type":"BasicTickFormatter"},{"attributes":{},"id":"9857","type":"BasicTickFormatter"},{"attributes":{},"id":"9687","type":"PanTool"},{"attributes":{},"id":"9686","type":"SaveTool"},{"attributes":{"text":"param: theta[1]"},"id":"9862","type":"Title"},{"attributes":{},"id":"9871","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"9651"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"9651"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9659","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9651"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9651"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9656","type":"Scatter"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"9903"},"major_label_orientation":"horizontal","ticker":{"id":"9871"}},"id":"9870","type":"LinearAxis"},{"attributes":{"callback":null,"renderers":[{"id":"9708"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"9668","type":"HoverTool"},{"attributes":{},"id":"10291","type":"UnionRenderers"},{"attributes":{"text":"param: rho"},"id":"9574","type":"Title"},{"attributes":{},"id":"9868","type":"LinearScale"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"9651","type":"LinearColorMapper"},{"attributes":{"data_source":{"id":"9652"},"glyph":{"id":"9655"},"hover_glyph":{"id":"9658"},"muted_glyph":{"id":"9659"},"nonselection_glyph":{"id":"9656"},"selection_glyph":{"id":"9657"},"view":{"id":"9661"}},"id":"9660","type":"GlyphRenderer"},{"attributes":{"source":{"id":"9652"}},"id":"9661","type":"CDSView"},{"attributes":{},"id":"9879","type":"PanTool"},{"attributes":{"below":[{"id":"9870"}],"center":[{"id":"9873"},{"id":"9877"}],"frame_height":125,"frame_width":125,"left":[{"id":"9874"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"9900"}],"sizing_mode":"fixed","title":{"id":"9862"},"toolbar":{"id":"9884"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"9866"},"y_range":{"id":"9571"},"y_scale":{"id":"9868"}},"id":"9861","subtype":"Figure","type":"Plot"},{"attributes":{"axis":{"id":"9870"},"ticker":{"id":"9871"}},"id":"9873","type":"Grid"},{"attributes":{},"id":"9679","type":"BasicTicker"},{"attributes":{"callback":null,"renderers":[{"id":"9900"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"9860","type":"HoverTool"},{"attributes":{"axis":{"id":"9874"},"dimension":1,"ticker":{"id":"9875"}},"id":"9877","type":"Grid"},{"attributes":{},"id":"9665","type":"BasicTickFormatter"},{"attributes":{},"id":"9878","type":"SaveTool"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"9905"},"major_label_orientation":"horizontal","ticker":{"id":"9875"}},"id":"9874","type":"LinearAxis"},{"attributes":{},"id":"9875","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9891"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9891"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9898","type":"Scatter"},{"attributes":{},"id":"9834","type":"ResetTool"},{"attributes":{},"id":"9830","type":"SaveTool"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"9603","type":"LinearColorMapper"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"9812"},{"id":"9830"},{"id":"9831"},{"id":"9832"},{"id":"9833"},{"id":"9834"}]},"id":"9836","type":"Toolbar"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9891"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9891"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9896","type":"Scatter"},{"attributes":{"overlay":{"id":"9835"}},"id":"9833","type":"BoxZoomTool"},{"attributes":{},"id":"9615","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9891"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9891"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9895","type":"Scatter"},{"attributes":{},"id":"10309","type":"UnionRenderers"},{"attributes":{},"id":"9827","type":"BasicTicker"},{"attributes":{},"id":"9832","type":"WheelZoomTool"},{"attributes":{"toolbars":[{"id":"9596"},{"id":"9644"},{"id":"9692"},{"id":"9740"},{"id":"9788"},{"id":"9836"},{"id":"9884"},{"id":"9932"},{"id":"9980"},{"id":"10028"},{"id":"10076"},{"id":"10124"},{"id":"10172"}],"tools":[{"id":"9572"},{"id":"9590"},{"id":"9591"},{"id":"9592"},{"id":"9593"},{"id":"9594"},{"id":"9620"},{"id":"9638"},{"id":"9639"},{"id":"9640"},{"id":"9641"},{"id":"9642"},{"id":"9668"},{"id":"9686"},{"id":"9687"},{"id":"9688"},{"id":"9689"},{"id":"9690"},{"id":"9716"},{"id":"9734"},{"id":"9735"},{"id":"9736"},{"id":"9737"},{"id":"9738"},{"id":"9764"},{"id":"9782"},{"id":"9783"},{"id":"9784"},{"id":"9785"},{"id":"9786"},{"id":"9812"},{"id":"9830"},{"id":"9831"},{"id":"9832"},{"id":"9833"},{"id":"9834"},{"id":"9860"},{"id":"9878"},{"id":"9879"},{"id":"9880"},{"id":"9881"},{"id":"9882"},{"id":"9908"},{"id":"9926"},{"id":"9927"},{"id":"9928"},{"id":"9929"},{"id":"9930"},{"id":"9956"},{"id":"9974"},{"id":"9975"},{"id":"9976"},{"id":"9977"},{"id":"9978"},{"id":"10004"},{"id":"10022"},{"id":"10023"},{"id":"10024"},{"id":"10025"},{"id":"10026"},{"id":"10052"},{"id":"10070"},{"id":"10071"},{"id":"10072"},{"id":"10073"},{"id":"10074"},{"id":"10100"},{"id":"10118"},{"id":"10119"},{"id":"10120"},{"id":"10121"},{"id":"10122"},{"id":"10148"},{"id":"10166"},{"id":"10167"},{"id":"10168"},{"id":"10169"},{"id":"10170"}]},"id":"10314","type":"ProxyToolbar"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"9787","type":"BoxAnnotation"},{"attributes":{"callback":null,"renderers":[{"id":"9852"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"9812","type":"HoverTool"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"9749"},"selection_policy":{"id":"10228"}},"id":"9748","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"9630"}],"center":[{"id":"9633"},{"id":"9637"}],"frame_height":125,"frame_width":125,"left":[{"id":"9634"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"9660"}],"sizing_mode":"fixed","title":{"id":"9622"},"toolbar":{"id":"9644"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"9626"},"y_range":{"id":"9571"},"y_scale":{"id":"9628"}},"id":"9621","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"9628","type":"LinearScale"},{"attributes":{"callback":null,"renderers":[{"id":"9660"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"9620","type":"HoverTool"},{"attributes":{},"id":"9626","type":"LinearScale"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"9663"},"major_label_orientation":"horizontal","ticker":{"id":"9631"}},"id":"9630","type":"LinearAxis"},{"attributes":{},"id":"9617","type":"BasicTickFormatter"},{"attributes":{"text":"param: sigma[0]"},"id":"9622","type":"Title"},{"attributes":{},"id":"9631","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9795"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9795"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9799","type":"Scatter"},{"attributes":{"axis":{"id":"9630"},"ticker":{"id":"9631"}},"id":"9633","type":"Grid"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9795"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9795"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9802","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9603"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9603"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9609","type":"Scatter"},{"attributes":{},"id":"9807","type":"BasicTickFormatter"},{"attributes":{},"id":"9797","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9795"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9795"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9801","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"9603"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"9603"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9611","type":"Scatter"},{"attributes":{"data_source":{"id":"9604"},"glyph":{"id":"9607"},"hover_glyph":{"id":"9610"},"muted_glyph":{"id":"9611"},"nonselection_glyph":{"id":"9608"},"selection_glyph":{"id":"9609"},"view":{"id":"9613"}},"id":"9612","type":"GlyphRenderer"},{"attributes":{"text":"param: theta[0]"},"id":"9814","type":"Title"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9603"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9603"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9608","type":"Scatter"},{"attributes":{"below":[{"id":"9678"}],"center":[{"id":"9681"},{"id":"9685"}],"frame_height":125,"frame_width":125,"left":[{"id":"9682"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"9708"}],"sizing_mode":"fixed","title":{"id":"9670"},"toolbar":{"id":"9692"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"9674"},"y_range":{"id":"9571"},"y_scale":{"id":"9676"}},"id":"9669","subtype":"Figure","type":"Plot"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"9653"},"selection_policy":{"id":"10210"}},"id":"9652","type":"ColumnDataSource"},{"attributes":{"axis":{"id":"9826"},"dimension":1,"ticker":{"id":"9827"}},"id":"9829","type":"Grid"},{"attributes":{},"id":"9605","type":"Selection"},{"attributes":{"source":{"id":"9604"}},"id":"9613","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"9795"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"9795"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9803","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9795"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9795"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9800","type":"Scatter"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"9857"},"major_label_orientation":"horizontal","ticker":{"id":"9827"}},"id":"9826","type":"LinearAxis"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9603"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9603"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9610","type":"Scatter"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"9795","type":"LinearColorMapper"},{"attributes":{"data_source":{"id":"9796"},"glyph":{"id":"9799"},"hover_glyph":{"id":"9802"},"muted_glyph":{"id":"9803"},"nonselection_glyph":{"id":"9800"},"selection_glyph":{"id":"9801"},"view":{"id":"9805"}},"id":"9804","type":"GlyphRenderer"},{"attributes":{"children":[[{"id":"9573"},0,0],[{"id":"9621"},0,1],[{"id":"9669"},0,2],[{"id":"9717"},0,3],[{"id":"9765"},1,0],[{"id":"9813"},1,1],[{"id":"9861"},1,2],[{"id":"9909"},1,3],[{"id":"9957"},2,0],[{"id":"10005"},2,1],[{"id":"10053"},2,2],[{"id":"10101"},2,3],[{"id":"10149"},3,0]]},"id":"10313","type":"GridBox"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9603"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9603"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9607","type":"Scatter"},{"attributes":{"source":{"id":"9796"}},"id":"9805","type":"CDSView"},{"attributes":{},"id":"9823","type":"BasicTicker"},{"attributes":{},"id":"9809","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9891"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9891"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9897","type":"Scatter"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"9845"},"selection_policy":{"id":"10246"}},"id":"9844","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"9822"}],"center":[{"id":"9825"},{"id":"9829"}],"frame_height":125,"frame_width":125,"left":[{"id":"9826"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"9852"}],"sizing_mode":"fixed","title":{"id":"9814"},"toolbar":{"id":"9836"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"9818"},"y_range":{"id":"9571"},"y_scale":{"id":"9820"}},"id":"9813","subtype":"Figure","type":"Plot"},{"attributes":{"axis":{"id":"9822"},"ticker":{"id":"9823"}},"id":"9825","type":"Grid"},{"attributes":{},"id":"9831","type":"PanTool"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"9931","type":"BoxAnnotation"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10131"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10131"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10135","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10131"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10131"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10138","type":"Scatter"},{"attributes":{},"id":"10143","type":"BasicTickFormatter"},{"attributes":{},"id":"10133","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10131"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10131"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10137","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10179"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10179"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10183","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"10131"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"10131"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10139","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10179"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10179"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10186","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10131"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10131"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10136","type":"Scatter"},{"attributes":{},"id":"10191","type":"BasicTickFormatter"},{"attributes":{},"id":"10181","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10179"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10179"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10185","type":"Scatter"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"10131","type":"LinearColorMapper"},{"attributes":{"data_source":{"id":"10132"},"glyph":{"id":"10135"},"hover_glyph":{"id":"10138"},"muted_glyph":{"id":"10139"},"nonselection_glyph":{"id":"10136"},"selection_glyph":{"id":"10137"},"view":{"id":"10141"}},"id":"10140","type":"GlyphRenderer"},{"attributes":{"source":{"id":"10132"}},"id":"10141","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"10179"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"10179"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10187","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9939"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9939"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9943","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"10179"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"10179"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"10184","type":"Scatter"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9939"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9939"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9946","type":"Scatter"},{"attributes":{},"id":"10145","type":"BasicTickFormatter"},{"attributes":{},"id":"9951","type":"BasicTickFormatter"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"10179","type":"LinearColorMapper"},{"attributes":{"text":"param: theta_1[2,1]"},"id":"10150","type":"Title"},{"attributes":{"data_source":{"id":"10180"},"glyph":{"id":"10183"},"hover_glyph":{"id":"10186"},"muted_glyph":{"id":"10187"},"nonselection_glyph":{"id":"10184"},"selection_glyph":{"id":"10185"},"view":{"id":"10189"}},"id":"10188","type":"GlyphRenderer"},{"attributes":{},"id":"9941","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9939"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9939"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9945","type":"Scatter"},{"attributes":{"source":{"id":"10180"}},"id":"10189","type":"CDSView"},{"attributes":{},"id":"9967","type":"BasicTicker"},{"attributes":{},"id":"10159","type":"BasicTicker"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"10191"},"major_label_orientation":"horizontal","ticker":{"id":"10159"}},"id":"10158","type":"LinearAxis"},{"attributes":{},"id":"10156","type":"LinearScale"},{"attributes":{},"id":"10228","type":"UnionRenderers"},{"attributes":{"fill_alpha":{"value":0.2},"fill_color":{"field":"color","transform":{"id":"9939"}},"line_alpha":{"value":0.2},"line_color":{"field":"color","transform":{"id":"9939"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9947","type":"Scatter"},{"attributes":{},"id":"10193","type":"BasicTickFormatter"},{"attributes":{"data":{"color":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"parameter":["theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]"],"shrinkage":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0],"z_score":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]}},"selected":{"id":"10181"},"selection_policy":{"id":"10309"}},"id":"10180","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"10158"}],"center":[{"id":"10161"},{"id":"10165"}],"frame_height":125,"frame_width":125,"left":[{"id":"10162"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"10188"}],"sizing_mode":"fixed","title":{"id":"10150"},"toolbar":{"id":"10172"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"10154"},"y_range":{"id":"9571"},"y_scale":{"id":"10156"}},"id":"10149","subtype":"Figure","type":"Plot"},{"attributes":{"fill_alpha":{"value":0.75},"fill_color":{"field":"color","transform":{"id":"9939"}},"line_alpha":{"value":0.75},"line_color":{"field":"color","transform":{"id":"9939"}},"size":{"units":"screen","value":2},"x":{"field":"shrinkage"},"y":{"field":"z_score"}},"id":"9944","type":"Scatter"},{"attributes":{},"id":"10167","type":"PanTool"},{"attributes":{"high":15,"low":0,"palette":["#1f77b3","#ff7e0e","#2ba02b","#d62628","#9367bc","#8c564b","#e277c1","#7e7e7e","#bcbc21","#16bdcf","#3a0182","#004201","#0fffa8","#5d003f","#bcbcff","#d8afa1","#b80080","#004d52","#6b6400","#7c0100","#6026ff","#ffff9a","#564964","#8cb893","#93fbff","#018267","#90ff00","#8200a0","#ac8944","#5b3400","#ffbff2","#ff6e75","#798cff","#dd00ff","#505646","#004489","#ffbf60","#ff018c","#bdc8cf","#af97b5","#b65600","#017000","#cd87ff","#1cd646","#bfebc3","#7997b5","#a56089","#6e8956","#bc7c75","#8a2844","#00acff","#8ed4ff","#4b6d77","#00d4b1","#9300f2","#8a9500","#5d5b9e","#fddfba","#00939e","#ffdb00","#00aa79","#520067","#000091","#0a5d3d","#a5e275","#623b41","#c6c689","#ff9eb5","#cd4f6b","#ff07d6","#8a3a05","#7e3d70","#ff4901","#602ba5","#1c00ff","#e6dfff","#aa3baf","#d89c00","#a3a39e","#3f69ff","#46490c","#7b6985","#6b978c","#ff9a75","#835bff","#7c6b46","#80b654","#bc0049","#fd93ff","#5d0018","#89d1d1","#9c8cd3","#da6d42","#8a5700","#3b5069","#4b6b3b","#edcfd8","#cfedff","#aa1500","#dfff4f","#ff2a56","#d1499e","#707cb8","#598000","#00e4fd","#774b95","#67d48c","#3d3a72","#ac413f","#d6a166","#c169cd","#69595d","#87aced","#a0a569","#d1aae6","#870062","#00fddb","#672818","#b342ff","#0e59c4","#168742","#90d300","#cd7900","#f959ff","#5b7466","#8eaeb3","#9c7c8c","#4600c6","#6b4d2d","#a56d46","#9e8972","#a8afca","#cd8ca7","#00fd64","#917900","#ff62a1","#f4ffd8","#018cf0","#13aca0","#5b2d59","#89859e","#cfccba","#d4afc4","#dbdd6d","#cffff4","#006485","#006962","#a84167","#2d97c4","#a874ff","#26ba5d","#57b600","#caffa7","#a379aa","#ffbc93","#89e2c1","#0fc8ff","#d400c4","#626d89","#69858e","#4b4d52","#aa6067","#79b5d4","#2b5916","#9a0024","#bdd1f2","#896e67","#69a56b","#855467","#aecdba","#87997e","#cadb00","#9a0390","#ebbc1a","#eb9cd1","#70006e","#b1a131","#ca6b93","#4146a3","#e48c89","#d44400","#c68aca","#b69597","#d41f75","#724bcc","#674d00","#672138","#38564f","#6ebaaa","#853a31","#a5d397","#b8af8e","#d8e4df","#aa00df","#cac1db","#ffdf8c","#e2524d","#66696e","#ff001c","#522d72","#4d906b","#a86d11","#ff9e26","#5ea3af","#c88556","#915997","#a3a1ff","#fdbaba","#242a87","#dbe6a8","#97f2a7","#6793d6","#ba5b3f","#3a5d91","#364f2f","#267c95","#89959a","#cfb356","#004664","#5e5d2f","#8e8e41","#ac3f13","#69953b","#a13d85","#bfb6ba","#acc667","#6469cf","#91af00","#2be2da","#016e36","#ff7952","#42807e","#4fe800","#995428","#5d0a00","#a30057","#0c8700","#5982a7","#ffebfb","#4b6901","#8775d4","#e6c6ff","#a5ffda","#d86e77","#df014b","#69675b","#776ba1","#7e8067","#594685","#0000ca","#7c002a","#97ff72","#b5e2e1","#db52c8","#777734","#57bd8e"]},"id":"9939","type":"LinearColorMapper"},{"attributes":{"data_source":{"id":"9940"},"glyph":{"id":"9943"},"hover_glyph":{"id":"9946"},"muted_glyph":{"id":"9947"},"nonselection_glyph":{"id":"9944"},"selection_glyph":{"id":"9945"},"view":{"id":"9949"}},"id":"9948","type":"GlyphRenderer"},{"attributes":{},"id":"10154","type":"LinearScale"},{"attributes":{"source":{"id":"9940"}},"id":"9949","type":"CDSView"},{"attributes":{"axis":{"id":"10158"},"ticker":{"id":"10159"}},"id":"10161","type":"Grid"},{"attributes":{"callback":null,"renderers":[{"id":"10188"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"10148","type":"HoverTool"},{"attributes":{"axis":{"id":"10162"},"dimension":1,"ticker":{"id":"10163"}},"id":"10165","type":"Grid"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"10193"},"major_label_orientation":"horizontal","ticker":{"id":"10163"}},"id":"10162","type":"LinearAxis"},{"attributes":{},"id":"10201","type":"UnionRenderers"},{"attributes":{},"id":"10163","type":"BasicTicker"},{"attributes":{},"id":"10168","type":"WheelZoomTool"},{"attributes":{},"id":"9953","type":"BasicTickFormatter"},{"attributes":{"below":[{"id":"9966"}],"center":[{"id":"9969"},{"id":"9973"}],"frame_height":125,"frame_width":125,"left":[{"id":"9970"}],"margin":null,"min_border_bottom":10,"min_border_left":10,"min_border_right":10,"min_border_top":10,"plot_height":null,"plot_width":null,"renderers":[{"id":"9996"}],"sizing_mode":"fixed","title":{"id":"9958"},"toolbar":{"id":"9980"},"toolbar_location":null,"x_range":{"id":"9570"},"x_scale":{"id":"9962"},"y_range":{"id":"9571"},"y_scale":{"id":"9964"}},"id":"9957","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"10166","type":"SaveTool"},{"attributes":{"overlay":{"id":"10171"}},"id":"10169","type":"BoxZoomTool"},{"attributes":{},"id":"10170","type":"ResetTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"10148"},{"id":"10166"},{"id":"10167"},{"id":"10168"},{"id":"10169"},{"id":"10170"}]},"id":"10172","type":"Toolbar"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"9999"},"major_label_orientation":"horizontal","ticker":{"id":"9967"}},"id":"9966","type":"LinearAxis"},{"attributes":{"toolbar":{"id":"10314"},"toolbar_location":"above"},"id":"10315","type":"ToolbarBox"},{"attributes":{"text":"param: theta_1[0,1]"},"id":"9958","type":"Title"},{"attributes":{"axis_label":"shrinkage","bounds":"auto","formatter":{"id":"10095"},"major_label_orientation":"horizontal","ticker":{"id":"10063"}},"id":"10062","type":"LinearAxis"},{"attributes":{},"id":"9964","type":"LinearScale"},{"attributes":{},"id":"10063","type":"BasicTicker"},{"attributes":{},"id":"9962","type":"LinearScale"},{"attributes":{"axis":{"id":"9966"},"ticker":{"id":"9967"}},"id":"9969","type":"Grid"},{"attributes":{"callback":null,"renderers":[{"id":"9996"}],"tags":["hv_created"],"tooltips":[["shrinkage","@{shrinkage}"],["z-score","@{z_score}"],["param","@{parameter}"],["warning_code","@{warning_code}"]]},"id":"9956","type":"HoverTool"},{"attributes":{"axis":{"id":"9970"},"dimension":1,"ticker":{"id":"9971"}},"id":"9973","type":"Grid"},{"attributes":{},"id":"10060","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"10171","type":"BoxAnnotation"},{"attributes":{"axis_label":"z-score","bounds":"auto","formatter":{"id":"10001"},"major_label_orientation":"horizontal","ticker":{"id":"9971"}},"id":"9970","type":"LinearAxis"},{"attributes":{},"id":"9971","type":"BasicTicker"},{"attributes":{"axis":{"id":"10062"},"ticker":{"id":"10063"}},"id":"10065","type":"Grid"},{"attributes":{},"id":"10058","type":"LinearScale"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"9979","type":"BoxAnnotation"}],"root_ids":["10316"]},"title":"Bokeh Application","version":"2.2.3"}};n”, ” var render_items = [{"docid":"b7f82528-f482-44cd-87bf-af2cedb7795e","root_ids":["10316"],"roots":{"10316":"98640e54-d64b-47f4-bacb-cb713c8b8761"}}];n”, ” root.Bokeh.embed.embed_items_notebook(docs_json, render_items);n”, “n”, ” }n”, ” if (root.Bokeh !== undefined) {n”, ” embed_document(root);n”, ” } else {n”, ” var attempts = 0;n”, ” var timer = setInterval(function(root) {n”, ” if (root.Bokeh !== undefined) {n”, ” clearInterval(timer);n”, ” embed_document(root);n”, ” } else {n”, ” attempts++;n”, ” if (attempts > 100) {n”, ” clearInterval(timer);n”, ” console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");n”, ” }n”, ” }n”, ” }, 10, root)n”, ” }n”, “})(window);”
], “application/vnd.bokehjs_exec.v0+json”: “”
}, “metadata”: {
- “application/vnd.bokehjs_exec.v0+json”: {
“id”: “10316”
}
}, “output_type”: “display_data”
}
], “source”: [
“points = hv.Points(n”, ” data=df_sbc,n”, ” kdims=["shrinkage", ("z_score", "z-score")],n”, ” vdims=[("parameter", "param"), "warning_code"],n”, “).groupby(n”, ” "parameter"n”, “).opts(n”, ” color="warning_code",n”, ” frame_height=125,n”, ” frame_width=125,n”, ” size=2,n”, ” tools=["hover"],n”, “).layout(n”, “)n”, “n”, “bokeh.io.show(hv.render(points))”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The shrinkage and z-scores are good for all parameters (close to one and between –5 and 5, respectively), but the shrinkage is poor for the hyperparameters. This does not appear to be dependent on MCMC diagnostic issues. Rather, this tells us that with the size of data sets we are considering, we cannot learn much about the hyperparameters.n”, “n”, “Finally, as suggested by Talts, et al., we can make an SBC rank ECDF plot using the bebi103.viz.sbc_rank_ecdf().”
]
}, {
“cell_type”: “code”, “execution_count”: 30, “metadata”: {}, “outputs”: [
- {
- “data”: {
- “text/html”: [
“n”, “n”, “n”, “n”, “n”, “n”, ” <div class="bk-root" id="df30d542-dce3-4bef-b616-ee3eda2ba198" data-root-id="12208"></div>n”
]
}, “metadata”: {}, “output_type”: “display_data”
}, {
- “data”: {
- “application/javascript”: [
“(function(root) {n”, ” function embed_document(root) {n”, ” n”, ” var docs_json = {"f586a70a-8aa9-495b-8072-da45fc372789":{"roots":{"references":[{"attributes":{"below":[{"id":"12217"}],"center":[{"id":"12220"},{"id":"12224"}],"frame_height":275,"frame_width":450,"left":[{"id":"12221"}],"renderers":[{"id":"12242"},{"id":"12247"},{"id":"12252"},{"id":"12258"},{"id":"12264"},{"id":"12270"},{"id":"12276"},{"id":"12282"},{"id":"12288"},{"id":"12294"},{"id":"12300"},{"id":"12306"},{"id":"12312"},{"id":"12318"},{"id":"12324"},{"id":"12330"}],"right":[{"id":"12332"}],"title":{"id":"12989"},"toolbar":{"id":"12232"},"toolbar_location":"above","x_range":{"id":"12209"},"x_scale":{"id":"12213"},"y_range":{"id":"12211"},"y_scale":{"id":"12215"}},"id":"12208","subtype":"Figure","type":"Plot"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#bcbc21"},"line_alpha":{"value":0.1},"line_color":{"value":"#bcbc21"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12305","type":"Circle"},{"attributes":{"data_source":{"id":"12302"},"glyph":{"id":"12304"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12305"},"selection_glyph":null,"view":{"id":"12307"}},"id":"12306","type":"GlyphRenderer"},{"attributes":{"source":{"id":"12308"}},"id":"12313","type":"CDSView"},{"attributes":{"source":{"id":"12302"}},"id":"12307","type":"CDSView"},{"attributes":{"data_source":{"id":"12308"},"glyph":{"id":"12310"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12311"},"selection_glyph":null,"view":{"id":"12313"}},"id":"12312","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"12320"},"glyph":{"id":"12322"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12323"},"selection_glyph":null,"view":{"id":"12325"}},"id":"12324","type":"GlyphRenderer"},{"attributes":{},"id":"13005","type":"UnionRenderers"},{"attributes":{},"id":"13006","type":"Selection"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999],"parameter":["theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]","theta_1[1,1]"],"rank_statistic":[2829,1558,574,2169,1088,1227,3005,1237,3060,3915,3619,3049,3474,184,1492,532,2822,1196,3927,3420,1476,2520,838,3134,196,1597,3740,971,2120,672,1179,2225,3951,3829,2687,3284,1079,2542,1407,206,459,1086,1062,2714,3168,1238,1214,3934,3471,633,1822,2746,1505,449,529,1155,1346,809,2290,3761,3806,1772,1668,1548,1514,3067,3907,3836,3648,779,100,443,1389,3875,3337,837,3064,3129,3590,3739,3558,7,1840,668,3429,3996,1585,2380,1675,144,3149,2505,2437,2249,2543,3137,2286,3698,3323,1769,3682,3385,3588,2608,230,1894,3265,3894,1521,1459,3662,2859,3877,3209,2513,2272,631,1973,1299,545,1369,119,2249,317,3830,3350,640,1292,3420,2393,120,1242,149,3611,167,2648,4,3519,2104,574,1708,7,3566,1326,1156,1183,261,3329,302,853,3188,754,614,201,2247,1391,731,3016,3478,1322,1806,2785,3915,316,434,2553,395,2728,3634,1996,3024,413,3035,2883,3144,953,1557,667,1663,30,2078,3302,1723,476,2053,2775,1616,2281,2508,2340,237,1184,1918,3858,3872,2672,48,3099,3650,37,2661,3203,2377,3251,3174,1937,2835,1333,3902,3584,2769,524,760,2042,1572,403,1620,2421,1232,1943,657,1908,725,2199,2655,857,105,694,486,3299,2628,392,3147,901,1623,185,216,427,3854,412,3717,1877,1017,597,1711,2674,2650,1575,3453,588,3995,3246,725,2592,1905,2798,2553,2952,2105,1579,3533,1177,1113,376,1554,977,1736,1436,3874,775,2241,666,3550,2251,2062,187,1540,1708,1815,1185,3585,243,787,3621,3579,2954,2951,1740,548,728,3907,1445,324,2729,3834,1933,2813,2842,998,3676,2918,16,867,1914,1064,3621,2862,1321,3190,3086,2429,46,642,1828,1101,2460,1227,2394,2943,2397,2772,3136,1309,3105,44,3091,3056,3185,1335,1083,3207,841,823,1050,549,2611,1560,1654,2859,2545,1405,3290,492,1952,2620,2029,3250,3296,3741,3914,1655,3721,3591,1617,1262,1723,1838,2589,3508,111,2353,788,2146,70,10,3673,30,3708,841,990,2885,445,2462,821,2102,3907,2960,1338,42,3757,364,1953,3165,2042,1834,651,3153,1155,2139,3820,2141,3318,3649,2206,1146,3540,60,2376,540,328,3135,1131,852,84,1595,2812,934,2445,3938,2491,490,757,2068,1913,554,1670,752,2449,1106,3247,3532,674,294,3700,1579,905,3691,1960,909,3522,1733,1106,3103,3248,3933,3409,1982,1287,682,1261,3854,2488,80,2267,2384,475,3001,3313,2399,2323,79,695,3237,2371,3399,1565,2074,3141,600,3842,1646,1085,207,1477,3570,3285,1203,1753,2390,1597,2278,482,2425,2342,2766,445,2741,466,3527,722,2789,1491,1651,2248,136,1645,3687,3256,3087,1574,2819,2672,3274,72,2963,3068,1180,2924,3614,2582,352,3715,2988,2210,1663,3348,2600,2960,3911,3183,3460,2016,3517,2534,2820,58,3111,349,3223,3314,2552,1273,969,2820,2501,3342,628,2005,2028,201,1098,604,3483,3949,2497,1147,823,2236,3535,3500,2340,2124,2733,851,2343,2433,2151,2445,1355,2495,1389,1334,2703,1291,3809,2404,146,1013,2320,71,1654,2951,3767,2251,3770,1058,3598,3459,3590,63,2257,3248,2705,3650,3090,813,3500,653,2508,2091,3870,1038,1679,1277,1926,3194,2976,2703,1816,3752,3818,1826,2027,3155,1202,286,2743,2009,1593,800,825,505,1654,2665,3328,3392,1399,2611,2491,1035,3625,2870,557,693,2803,1000,1094,3230,3244,3334,3603,2479,1261,3486,2944,3038,427,955,2354,1393,3898,2287,3241,1904,1705,497,2965,1513,204,1892,3288,3793,3745,1913,138,2830,1414,2598,822,1974,193,3179,3281,932,2576,3397,726,2860,735,1518,3565,787,3271,3507,190,2648,345,2565,3693,1245,2143,1341,235,418,1881,1400,3697,1265,2048,1868,3164,2428,221,2031,2003,3974,3166,1077,1425,1991,798,140,2550,450,1130,216,309,3340,617,2474,2412,1881,2961,3968,832,3086,1077,3727,1863,1942,733,316,2970,3063,568,2718,2471,2272,2686,3304,2166,740,3870,1843,1675,2850,3059,525,919,2414,1626,588,259,3309,2292,2863,3522,639,1811,3802,2677,3408,3882,3355,3644,89,3591,3217,73,3597,1230,312,2788,3538,2215,471,1504,1869,3840,2550,2055,628,1416,130,2815,1208,208,3133,1788,2322,3191,2227,1691,2153,1749,3877,1325,3334,669,1750,3089,3737,2466,70,1340,3140,2559,2298,1553,1038,3904,1680,132,2484,2455,1860,1540,3880,2436,3759,2770,1117,1698,629,1759,3865,567,2357,2784,322,3245,2890,3831,2235,772,3568,2326,1240,3997,899,3026,1840,3757,3786,124,2849,1577,2322,3776,876,1637,1259,1293,2452,3430,1800,3688,1969,880,23,3671,3555,655,3187,1914,999,2997,3208,1292,846,3042,628,977,3241,3736,3035,628,2681,375,1283,1171,3913,461,776,739,3600,2063,2900,2346,3649,3384,3750,1416,1654,1064,296,1151,1364,623,1387,3850,1893,3474,2592,3697,419,875,3403,2674,580,397,2891,761,669,3819,3145,1350,545,3978,1902,1986,3913,1466,1671,2682,1450,687,3512,3250,2859,2208,2084,3759,379,3084,1870,3649,3911,2481,3332,1709,3878,960,2379,623,2393,806,1399,3539,3407,3877,1644,3970,1260,1735,24,147,2239,1686,3394,1172,2480,2729,3217,1856,3751,2963,3389,1006,515,3350,3783,2824,2441,2064,3149,3768,2876,2203,3748,1337,533,2676,3076,882,280,1563,2801,1929,3743,2106,1055,1112,3922,3620,1481,3268,1474,2204,2266,3643,152,1609,749,1631,3011,2246,2626,1155,2775,830,193,3629,21,437,138,2205,25,178,451],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13022"},"selection_policy":{"id":"13021"}},"id":"12314","type":"ColumnDataSource"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#16bdcf"},"line_alpha":{"value":0.1},"line_color":{"value":"#16bdcf"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12311","type":"Circle"},{"attributes":{"source":{"id":"12314"}},"id":"12319","type":"CDSView"},{"attributes":{"label":{"value":"theta_1[2,1]"},"renderers":[{"id":"12330"}]},"id":"12345","type":"LegendItem"},{"attributes":{"data_source":{"id":"12314"},"glyph":{"id":"12316"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12317"},"selection_glyph":null,"view":{"id":"12319"}},"id":"12318","type":"GlyphRenderer"},{"attributes":{"axis_label":"ECDF difference","formatter":{"id":"12992"},"ticker":{"id":"12222"}},"id":"12221","type":"LinearAxis"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999],"parameter":["theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]","theta_1[2,0]"],"rank_statistic":[1882,3012,453,1475,3730,1451,684,1545,916,374,3471,1727,80,3934,406,697,805,1500,889,1312,66,88,3900,1315,1431,902,560,1209,3434,2547,2572,1091,1446,1816,2915,3386,2756,126,845,2184,1409,490,840,1714,291,2968,594,3235,2899,2652,3803,527,2115,2682,3708,1866,3669,1926,1904,3093,3610,1948,2877,2050,287,1148,3672,1679,1434,3328,1838,997,619,1716,1763,702,1347,3003,3803,2099,3662,637,3725,2662,3539,3348,3760,835,1100,844,35,1562,3502,2393,3905,93,2257,736,1197,3347,3745,808,3973,586,2907,1274,1713,3844,3841,2348,3770,1247,2059,3273,1820,992,2566,948,15,2002,2470,2548,2057,898,3432,3533,473,2686,3838,3612,274,3810,1793,3774,3246,2225,3873,3706,3225,2969,658,1714,425,800,1998,2516,369,3609,1380,820,2898,936,2455,3933,2213,3269,3490,3970,3033,3155,1217,2723,1561,2258,1117,989,2408,2029,2531,613,2057,1507,1755,244,544,1799,531,885,3268,3815,1809,3936,3478,1787,2823,553,3990,579,1439,410,3826,50,181,3932,3013,1893,3181,3362,2991,2727,3928,848,1871,2826,3513,2570,2558,1533,2650,3476,965,3019,3267,87,3448,59,3070,2946,2910,1796,591,2926,3298,857,3065,3822,339,17,224,3302,1196,2714,2868,476,3366,1010,2680,851,2039,1659,240,3647,870,332,2654,692,1457,3232,2274,3632,1183,2365,176,1655,796,1155,3805,3197,3017,2135,91,3330,1255,2254,239,2576,433,2035,1007,2833,837,208,3015,2747,586,539,1062,959,701,2496,3257,559,514,3117,1362,559,569,2969,1350,1091,2513,2061,3183,2600,1242,1243,2501,3921,380,1613,201,1731,456,1873,16,3438,3097,1326,3104,3149,1939,616,1371,2965,1253,214,2188,2577,1329,2660,833,3814,1827,3628,2951,3952,719,850,3154,2508,463,2691,300,707,778,2924,2567,1709,10,87,76,459,3256,3876,1775,657,576,1961,1506,3161,3620,2119,2169,949,2532,1383,2665,3920,430,3975,3009,534,64,310,156,3260,3835,3469,2261,1922,1638,2873,2757,181,70,3309,2063,3244,3391,3654,14,2194,3892,426,3504,395,2158,1193,3024,3596,1831,198,1956,3509,1904,1275,70,1632,60,392,1100,2101,2885,519,1585,2076,2900,2494,3165,244,2135,52,1749,732,1671,2474,1036,1415,624,1417,1219,1175,2785,3333,3447,778,3156,2964,980,1560,1976,3156,2987,941,818,3531,3579,1605,1606,1798,2881,1695,2129,861,3226,2829,1349,2629,1805,2641,563,860,2736,2141,1589,19,1771,1491,3238,3642,3041,3909,1991,2117,3987,3569,2056,101,1028,3591,1493,384,3385,2637,1202,3636,3735,1544,3707,424,2839,3636,1528,3111,919,643,422,3196,1504,1136,137,2307,2251,3011,2992,14,3902,2347,3703,355,1517,3740,2231,2293,3359,1662,991,3430,3087,199,2761,2814,1821,1826,3730,415,2881,2530,685,3971,529,2604,766,1203,286,1933,1387,870,1145,2372,1212,3352,3111,805,3361,3470,2114,475,2686,1295,1125,512,1902,3196,2522,3190,2524,1209,2839,1910,1959,1453,2577,909,3572,1070,3418,2591,952,3460,3831,2277,2636,2897,449,288,2609,3113,1407,132,3385,3090,3496,1554,822,3296,1796,2265,858,3684,2856,3826,2003,1283,3594,2334,3982,957,2225,2598,3118,2071,2309,1560,305,1044,722,3200,226,3656,2890,2401,2337,3575,2281,1410,3416,2504,443,730,3953,811,202,1899,851,2663,458,2122,1576,2815,2317,2578,304,782,971,1674,3971,1914,2860,1425,1660,1989,3873,2393,1069,1111,788,3200,2116,3653,962,1824,2025,1777,394,3515,2042,236,3592,484,462,1390,2459,1677,2013,3348,1913,964,2576,2887,2571,1928,3660,422,597,3477,145,1691,517,1672,2316,1934,1731,284,2425,432,1397,516,738,1849,2677,1510,390,3491,3624,1365,2596,958,954,364,2980,1317,1623,96,2941,2053,2541,2970,828,3695,2418,2129,90,3751,983,639,2188,2595,658,2055,549,604,420,2898,857,1715,58,1042,1909,714,2581,3881,2587,2426,3607,1789,1407,2726,1778,838,2461,2964,1730,340,2515,1628,3993,1828,1490,3332,3417,1821,2704,208,3858,2053,1554,453,2845,1866,2495,3873,3124,2029,888,1299,3408,1667,754,2167,3665,3082,874,1220,2292,1064,1054,3842,2281,1263,2781,990,3495,1442,1667,241,129,2779,1901,1271,3793,3228,3076,3299,3892,2067,1414,2444,2047,2032,71,2608,1840,1111,531,717,2752,947,1618,1638,3889,2671,870,1973,1709,520,1693,2409,3627,1066,2267,2562,25,1706,2377,3508,1733,1484,1241,1251,2895,3288,3922,3439,2308,1830,3179,673,1332,1443,7,3222,3278,1488,1986,3730,3658,216,1754,561,249,3500,2709,3962,2401,1641,3486,647,2538,2757,1399,211,3753,199,113,3550,2997,2640,653,590,3229,2192,210,1580,967,2160,175,3234,1936,3430,149,3258,3459,880,3469,136,3146,2078,3728,3258,940,844,2364,1358,2685,693,1110,974,434,3039,1429,1721,461,843,3378,3385,2348,2766,2182,1155,3239,2129,3491,1911,875,2198,2746,3656,1427,3362,11,2328,2130,2191,3016,2982,2446,486,3562,814,3381,2686,3201,2210,2619,3305,445,1770,3230,1211,3726,3025,32,1322,3276,3677,3247,762,1959,931,2530,433,2667,2154,2691,1024,1517,2159,3525,3595,443,400,3406,1514,321,3692,2713,1836,2845,3452,3168,3255,3007,972,2475,939,19,3889,2320,413,1125,1235,738,3704,947,877,3567,3892,31,3799,949,768,707,3858,3346,3160,3915,2405,247,3974,2818,1205,2145,2282,1701,2494,371,518,867,2730],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13024"},"selection_policy":{"id":"13023"}},"id":"12320","type":"ColumnDataSource"},{"attributes":{"axis":{"id":"12221"},"dimension":1,"ticker":null},"id":"12224","type":"Grid"},{"attributes":{},"id":"13007","type":"UnionRenderers"},{"attributes":{"label":{"value":"theta_1[2,0]"},"renderers":[{"id":"12324"}]},"id":"12344","type":"LegendItem"},{"attributes":{"source":{"id":"12320"}},"id":"12325","type":"CDSView"},{"attributes":{},"id":"12222","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#3a0182"},"line_alpha":{"value":0.1},"line_color":{"value":"#3a0182"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12317","type":"Circle"},{"attributes":{"fill_color":{"value":"#3a0182"},"line_color":{"value":"#3a0182"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12316","type":"Circle"},{"attributes":{},"id":"13009","type":"UnionRenderers"},{"attributes":{"label":{"value":"theta_1[1,1]"},"renderers":[{"id":"12318"}]},"id":"12343","type":"LegendItem"},{"attributes":{},"id":"13010","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#004201"},"line_alpha":{"value":0.1},"line_color":{"value":"#004201"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12323","type":"Circle"},{"attributes":{},"id":"12992","type":"BasicTickFormatter"},{"attributes":{},"id":"12995","type":"UnionRenderers"},{"attributes":{"fill_color":{"value":"#004201"},"line_color":{"value":"#004201"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12322","type":"Circle"},{"attributes":{},"id":"12996","type":"Selection"},{"attributes":{},"id":"13011","type":"UnionRenderers"},{"attributes":{},"id":"13012","type":"Selection"},{"attributes":{},"id":"12226","type":"WheelZoomTool"},{"attributes":{"text":""},"id":"12989","type":"Title"},{"attributes":{},"id":"12994","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":0.1,"line_alpha":0.1,"line_color":"#1f77b4","line_width":0,"x":{"field":"x"},"y":{"field":"y"}},"id":"12241","type":"Patch"},{"attributes":{},"id":"12997","type":"UnionRenderers"},{"attributes":{"click_policy":"hide","items":[{"id":"12333"},{"id":"12334"},{"id":"12335"},{"id":"12336"},{"id":"12337"},{"id":"12338"},{"id":"12339"},{"id":"12340"},{"id":"12341"},{"id":"12342"},{"id":"12343"},{"id":"12344"},{"id":"12345"}],"label_text_font_size":"8pt","spacing":0},"id":"12332","type":"Legend"},{"attributes":{},"id":"12998","type":"Selection"},{"attributes":{},"id":"12230","type":"HelpTool"},{"attributes":{},"id":"13013","type":"UnionRenderers"},{"attributes":{},"id":"12225","type":"PanTool"},{"attributes":{},"id":"13014","type":"Selection"},{"attributes":{"overlay":{"id":"12231"}},"id":"12227","type":"BoxZoomTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"12225"},{"id":"12226"},{"id":"12227"},{"id":"12228"},{"id":"12229"},{"id":"12230"}]},"id":"12232","type":"Toolbar"},{"attributes":{},"id":"12228","type":"SaveTool"},{"attributes":{},"id":"12229","type":"ResetTool"},{"attributes":{"label":{"value":"tau[1]"},"renderers":[{"id":"12282"}]},"id":"12337","type":"LegendItem"},{"attributes":{},"id":"12999","type":"UnionRenderers"},{"attributes":{},"id":"13000","type":"Selection"},{"attributes":{},"id":"13015","type":"UnionRenderers"},{"attributes":{},"id":"13016","type":"Selection"},{"attributes":{"label":{"value":"tau[0]"},"renderers":[{"id":"12276"}]},"id":"12336","type":"LegendItem"},{"attributes":{},"id":"12211","type":"DataRange1d"},{"attributes":{"data_source":{"id":"12244"},"glyph":{"id":"12245"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12246"},"selection_glyph":null,"view":{"id":"12248"}},"id":"12247","type":"GlyphRenderer"},{"attributes":{"label":{"value":"theta[0]"},"renderers":[{"id":"12288"}]},"id":"12338","type":"LegendItem"},{"attributes":{"label":{"value":"sigma[1]"},"renderers":[{"id":"12270"}]},"id":"12335","type":"LegendItem"},{"attributes":{},"id":"12213","type":"LinearScale"},{"attributes":{},"id":"13001","type":"UnionRenderers"},{"attributes":{},"id":"13002","type":"Selection"},{"attributes":{},"id":"13017","type":"UnionRenderers"},{"attributes":{},"id":"13018","type":"Selection"},{"attributes":{},"id":"13003","type":"UnionRenderers"},{"attributes":{},"id":"13004","type":"Selection"},{"attributes":{},"id":"13019","type":"UnionRenderers"},{"attributes":{"source":{"id":"12239"}},"id":"12243","type":"CDSView"},{"attributes":{},"id":"13020","type":"Selection"},{"attributes":{"label":{"value":"sigma[0]"},"renderers":[{"id":"12264"}]},"id":"12334","type":"LegendItem"},{"attributes":{"data_source":{"id":"12239"},"glyph":{"id":"12240"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12241"},"selection_glyph":null,"view":{"id":"12243"}},"id":"12242","type":"GlyphRenderer"},{"attributes":{},"id":"12215","type":"LinearScale"},{"attributes":{"line_color":"gray","line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"12245","type":"Line"},{"attributes":{"line_color":"gray","line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"12250","type":"Line"},{"attributes":{"data":{"x":{"__ndarray__":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPA/AAAAAAAA8D8AAAAAAAAAQAAAAAAAAABAAAAAAAAACEAAAAAAAAAIQAAAAAAAABBAAAAAAAAAEEAAAAAAAAAUQAAAAAAAABRAAAAAAAAAGEAAAAAAAAAYQAAAAAAAABxAAAAAAAAAHEAAAAAAAAAgQAAAAAAAACBAAAAAAAAAIkAAAAAAAAAiQAAAAAAAACRAAAAAAAAAJEAAAAAAAAAmQAAAAAAAACZAAAAAAAAAKEAAAAAAAAAoQAAAAAAAACpAAAAAAAAAKkAAAAAAAAAsQAAAAAAAACxAAAAAAAAALkAAAAAAAAAuQAAAAAAAADBAAAAAAAAAMEAAAAAAAAAxQAAAAAAAADFAAAAAAAAAMkAAAAAAAAAyQAAAAAAAADNAAAAAAAAAM0AAAAAAAAA0QAAAAAAAADRAAAAAAAAANUAAAAAAAAA1QAAAAAAAADZAAAAAAAAANkAAAAAAAAA3QAAAAAAAADdAAAAAAAAAOEAAAAAAAAA4QAAAAAAAADlAAAAAAAAAOUAAAAAAAAA6QAAAAAAAADpAAAAAAAAAO0AAAAAAAAA7QAAAAAAAADxAAAAAAAAAPEAAAAAAAAA9QAAAAAAAAD1AAAAAAAAAPkAAAAAAAAA+QAAAAAAAAD9AAAAAAAAAP0AAAAAAAABAQAAAAAAAAEBAAAAAAACAQEAAAAAAAIBAQAAAAAAAAEFAAAAAAAAAQUAAAAAAAIBBQAAAAAAAgEFAAAAAAAAAQkAAAAAAAABCQAAAAAAAgEJAAAAAAACAQkAAAAAAAABDQAAAAAAAAENAAAAAAACAQ0AAAAAAAIBDQAAAAAAAAERAAAAAAAAAREAAAAAAAIBEQAAAAAAAgERAAAAAAAAARUAAAAAAAABFQAAAAAAAgEVAAAAAAACARUAAAAAAAABGQAAAAAAAAEZAAAAAAACARkAAAAAAAIBGQAAAAAAAAEdAAAAAAAAAR0AAAAAAAIBHQAAAAAAAgEdAAAAAAAAASEAAAAAAAABIQAAAAAAAgEhAAAAAAACASEAAAAAAAABJQAAAAAAAAElAAAAAAACASUAAAAAAAIBJQAAAAAAAAEpAAAAAAAAASkAAAAAAAIBKQAAAAAAAgEpAAAAAAAAAS0AAAAAAAABLQAAAAAAAgEtAAAAAAACAS0AAAAAAAABMQAAAAAAAAExAAAAAAACATEAAAAAAAIBMQAAAAAAAAE1AAAAAAAAATUAAAAAAAIBNQAAAAAAAgE1AAAAAAAAATkAAAAAAAABOQAAAAAAAgE5AAAAAAACATkAAAAAAAABPQAAAAAAAAE9AAAAAAACAT0AAAAAAAIBPQAAAAAAAAFBAAAAAAAAAUEAAAAAAAEBQQAAAAAAAQFBAAAAAAACAUEAAAAAAAIBQQAAAAAAAwFBAAAAAAADAUEAAAAAAAABRQAAAAAAAAFFAAAAAAABAUUAAAAAAAEBRQAAAAAAAgFFAAAAAAACAUUAAAAAAAMBRQAAAAAAAwFFAAAAAAAAAUkAAAAAAAABSQAAAAAAAQFJAAAAAAABAUkAAAAAAAIBSQAAAAAAAgFJAAAAAAADAUkAAAAAAAMBSQAAAAAAAAFNAAAAAAAAAU0AAAAAAAEBTQAAAAAAAQFNAAAAAAACAU0AAAAAAAIBTQAAAAAAAwFNAAAAAAADAU0AAAAAAAABUQAAAAAAAAFRAAAAAAABAVEAAAAAAAEBUQAAAAAAAgFRAAAAAAACAVEAAAAAAAMBUQAAAAAAAwFRAAAAAAAAAVUAAAAAAAABVQAAAAAAAQFVAAAAAAABAVUAAAAAAAIBVQAAAAAAAgFVAAAAAAADAVUAAAAAAAMBVQAAAAAAAAFZAAAAAAAAAVkAAAAAAAEBWQAAAAAAAQFZAAAAAAACAVkAAAAAAAIBWQAAAAAAAwFZAAAAAAADAVkAAAAAAAABXQAAAAAAAAFdAAAAAAABAV0AAAAAAAEBXQAAAAAAAgFdAAAAAAACAV0AAAAAAAMBXQAAAAAAAwFdAAAAAAAAAWEAAAAAAAABYQAAAAAAAQFhAAAAAAABAWEAAAAAAAIBYQAAAAAAAgFhAAAAAAADAWEAAAAAAAMBYQAAAAAAAAFlAAAAAAAAAWUAAAAAAAEBZQAAAAAAAQFlAAAAAAACAWUAAAAAAAIBZQAAAAAAAwFlAAAAAAADAWUAAAAAAAABaQAAAAAAAAFpAAAAAAABAWkAAAAAAAEBaQAAAAAAAgFpAAAAAAACAWkAAAAAAAMBaQAAAAAAAwFpAAAAAAAAAW0AAAAAAAABbQAAAAAAAQFtAAAAAAABAW0AAAAAAAIBbQAAAAAAAgFtAAAAAAADAW0AAAAAAAMBbQAAAAAAAAFxAAAAAAAAAXEAAAAAAAEBcQAAAAAAAQFxAAAAAAACAXEAAAAAAAIBcQAAAAAAAwFxAAAAAAADAXEAAAAAAAABdQAAAAAAAAF1AAAAAAABAXUAAAAAAAEBdQAAAAAAAgF1AAAAAAACAXUAAAAAAAMBdQAAAAAAAwF1AAAAAAAAAXkAAAAAAAABeQAAAAAAAQF5AAAAAAABAXkAAAAAAAIBeQAAAAAAAgF5AAAAAAADAXkAAAAAAAMBeQAAAAAAAAF9AAAAAAAAAX0AAAAAAAEBfQAAAAAAAQF9AAAAAAACAX0AAAAAAAIBfQAAAAAAAwF9AAAAAAADAX0AAAAAAAABgQAAAAAAAAGBAAAAAAAAgYEAAAAAAACBgQAAAAAAAQGBAAAAAAABAYEAAAAAAAGBgQAAAAAAAYGBAAAAAAACAYEAAAAAAAIBgQAAAAAAAoGBAAAAAAACgYEAAAAAAAMBgQAAAAAAAwGBAAAAAAADgYEAAAAAAAOBgQAAAAAAAAGFAAAAAAAAAYUAAAAAAACBhQAAAAAAAIGFAAAAAAABAYUAAAAAAAEBhQAAAAAAAYGFAAAAAAABgYUAAAAAAAIBhQAAAAAAAgGFAAAAAAACgYUAAAAAAAKBhQAAAAAAAwGFAAAAAAADAYUAAAAAAAOBhQAAAAAAA4GFAAAAAAAAAYkAAAAAAAABiQAAAAAAAIGJAAAAAAAAgYkAAAAAAAEBiQAAAAAAAQGJAAAAAAABgYkAAAAAAAGBiQAAAAAAAgGJAAAAAAACAYkAAAAAAAKBiQAAAAAAAoGJAAAAAAADAYkAAAAAAAMBiQAAAAAAA4GJAAAAAAADgYkAAAAAAAABjQAAAAAAAAGNAAAAAAAAgY0AAAAAAACBjQAAAAAAAQGNAAAAAAABAY0AAAAAAAGBjQAAAAAAAYGNAAAAAAACAY0AAAAAAAIBjQAAAAAAAoGNAAAAAAACgY0AAAAAAAMBjQAAAAAAAwGNAAAAAAADgY0AAAAAAAOBjQAAAAAAAAGRAAAAAAAAAZEAAAAAAACBkQAAAAAAAIGRAAAAAAABAZEAAAAAAAEBkQAAAAAAAYGRAAAAAAABgZEAAAAAAAIBkQAAAAAAAgGRAAAAAAACgZEAAAAAAAKBkQAAAAAAAwGRAAAAAAADAZEAAAAAAAOBkQAAAAAAA4GRAAAAAAAAAZUAAAAAAAABlQAAAAAAAIGVAAAAAAAAgZUAAAAAAAEBlQAAAAAAAQGVAAAAAAABgZUAAAAAAAGBlQAAAAAAAgGVAAAAAAACAZUAAAAAAAKBlQAAAAAAAoGVAAAAAAADAZUAAAAAAAMBlQAAAAAAA4GVAAAAAAADgZUAAAAAAAABmQAAAAAAAAGZAAAAAAAAgZkAAAAAAACBmQAAAAAAAQGZAAAAAAABAZkAAAAAAAGBmQAAAAAAAYGZAAAAAAACAZkAAAAAAAIBmQAAAAAAAoGZAAAAAAACgZkAAAAAAAMBmQAAAAAAAwGZAAAAAAADgZkAAAAAAAOBmQAAAAAAAAGdAAAAAAAAAZ0AAAAAAACBnQAAAAAAAIGdAAAAAAABAZ0AAAAAAAEBnQAAAAAAAYGdAAAAAAABgZ0AAAAAAAIBnQAAAAAAAgGdAAAAAAACgZ0AAAAAAAKBnQAAAAAAAwGdAAAAAAADAZ0AAAAAAAOBnQAAAAAAA4GdAAAAAAAAAaEAAAAAAAABoQAAAAAAAIGhAAAAAAAAgaEAAAAAAAEBoQAAAAAAAQGhAAAAAAABgaEAAAAAAAGBoQAAAAAAAgGhAAAAAAACAaEAAAAAAAKBoQAAAAAAAoGhAAAAAAADAaEAAAAAAAMBoQAAAAAAA4GhAAAAAAADgaEAAAAAAAABpQAAAAAAAAGlAAAAAAAAgaUAAAAAAACBpQAAAAAAAQGlAAAAAAABAaUAAAAAAAGBpQAAAAAAAYGlAAAAAAACAaUAAAAAAAIBpQAAAAAAAoGlAAAAAAACgaUAAAAAAAMBpQAAAAAAAwGlAAAAAAADgaUAAAAAAAOBpQAAAAAAAAGpAAAAAAAAAakAAAAAAACBqQAAAAAAAIGpAAAAAAABAakAAAAAAAEBqQAAAAAAAYGpAAAAAAABgakAAAAAAAIBqQAAAAAAAgGpAAAAAAACgakAAAAAAAKBqQAAAAAAAwGpAAAAAAADAakAAAAAAAOBqQAAAAAAA4GpAAAAAAAAAa0AAAAAAAABrQAAAAAAAIGtAAAAAAAAga0AAAAAAAEBrQAAAAAAAQGtAAAAAAABga0AAAAAAAGBrQAAAAAAAgGtAAAAAAACAa0AAAAAAAKBrQAAAAAAAoGtAAAAAAADAa0AAAAAAAMBrQAAAAAAA4GtAAAAAAADga0AAAAAAAABsQAAAAAAAAGxAAAAAAAAgbEAAAAAAACBsQAAAAAAAQGxAAAAAAABAbEAAAAAAAGBsQAAAAAAAYGxAAAAAAACAbEAAAAAAAIBsQAAAAAAAoGxAAAAAAACgbEAAAAAAAMBsQAAAAAAAwGxAAAAAAADgbEAAAAAAAOBsQAAAAAAAAG1AAAAAAAAAbUAAAAAAACBtQAAAAAAAIG1AAAAAAABAbUAAAAAAAEBtQAAAAAAAYG1AAAAAAABgbUAAAAAAAIBtQAAAAAAAgG1AAAAAAACgbUAAAAAAAKBtQAAAAAAAwG1AAAAAAADAbUAAAAAAAOBtQAAAAAAA4G1AAAAAAAAAbkAAAAAAAABuQAAAAAAAIG5AAAAAAAAgbkAAAAAAAEBuQAAAAAAAQG5AAAAAAABgbkAAAAAAAGBuQAAAAAAAgG5AAAAAAACAbkAAAAAAAKBuQAAAAAAAoG5AAAAAAADAbkAAAAAAAMBuQAAAAAAA4G5AAAAAAADgbkAAAAAAAABvQAAAAAAAAG9AAAAAAAAgb0AAAAAAACBvQAAAAAAAQG9AAAAAAABAb0AAAAAAAGBvQAAAAAAAYG9AAAAAAACAb0AAAAAAAIBvQAAAAAAAoG9AAAAAAACgb0AAAAAAAMBvQAAAAAAAwG9AAAAAAADgb0AAAAAAAOBvQAAAAAAAAHBAAAAAAAAAcEAAAAAAABBwQAAAAAAAEHBAAAAAAAAgcEAAAAAAACBwQAAAAAAAMHBAAAAAAAAwcEAAAAAAAEBwQAAAAAAAQHBAAAAAAABQcEAAAAAAAFBwQAAAAAAAYHBAAAAAAABgcEAAAAAAAHBwQAAAAAAAcHBAAAAAAACAcEAAAAAAAIBwQAAAAAAAkHBAAAAAAACQcEAAAAAAAKBwQAAAAAAAoHBAAAAAAACwcEAAAAAAALBwQAAAAAAAwHBAAAAAAADAcEAAAAAAANBwQAAAAAAA0HBAAAAAAADgcEAAAAAAAOBwQAAAAAAA8HBAAAAAAADwcEAAAAAAAABxQAAAAAAAAHFAAAAAAAAQcUAAAAAAABBxQAAAAAAAIHFAAAAAAAAgcUAAAAAAADBxQAAAAAAAMHFAAAAAAABAcUAAAAAAAEBxQAAAAAAAUHFAAAAAAABQcUAAAAAAAGBxQAAAAAAAYHFAAAAAAABwcUAAAAAAAHBxQAAAAAAAgHFAAAAAAACAcUAAAAAAAJBxQAAAAAAAkHFAAAAAAACgcUAAAAAAAKBxQAAAAAAAsHFAAAAAAACwcUAAAAAAAMBxQAAAAAAAwHFAAAAAAADQcUAAAAAAANBxQAAAAAAA4HFAAAAAAADgcUAAAAAAAPBxQAAAAAAA8HFAAAAAAAAAckAAAAAAAAByQAAAAAAAEHJAAAAAAAAQckAAAAAAACByQAAAAAAAIHJAAAAAAAAwckAAAAAAADByQAAAAAAAQHJAAAAAAABAckAAAAAAAFByQAAAAAAAUHJAAAAAAABgckAAAAAAAGByQAAAAAAAcHJAAAAAAABwckAAAAAAAIByQAAAAAAAgHJAAAAAAACQckAAAAAAAJByQAAAAAAAoHJAAAAAAACgckAAAAAAALByQAAAAAAAsHJAAAAAAADAckAAAAAAAMByQAAAAAAA0HJAAAAAAADQckAAAAAAAOByQAAAAAAA4HJAAAAAAADwckAAAAAAAPByQAAAAAAAAHNAAAAAAAAAc0AAAAAAABBzQAAAAAAAEHNAAAAAAAAgc0AAAAAAACBzQAAAAAAAMHNAAAAAAAAwc0AAAAAAAEBzQAAAAAAAQHNAAAAAAABQc0AAAAAAAFBzQAAAAAAAYHNAAAAAAABgc0AAAAAAAHBzQAAAAAAAcHNAAAAAAACAc0AAAAAAAIBzQAAAAAAAkHNAAAAAAACQc0AAAAAAAKBzQAAAAAAAoHNAAAAAAACwc0AAAAAAALBzQAAAAAAAwHNAAAAAAADAc0AAAAAAANBzQAAAAAAA0HNAAAAAAADgc0AAAAAAAOBzQAAAAAAA8HNAAAAAAADwc0AAAAAAAAB0QAAAAAAAAHRAAAAAAAAQdEAAAAAAABB0QAAAAAAAIHRAAAAAAAAgdEAAAAAAADB0QAAAAAAAMHRAAAAAAABAdEAAAAAAAEB0QAAAAAAAUHRAAAAAAABQdEAAAAAAAGB0QAAAAAAAYHRAAAAAAABwdEAAAAAAAHB0QAAAAAAAgHRAAAAAAACAdEAAAAAAAJB0QAAAAAAAkHRAAAAAAACgdEAAAAAAAKB0QAAAAAAAsHRAAAAAAACwdEAAAAAAAMB0QAAAAAAAwHRAAAAAAADQdEAAAAAAANB0QAAAAAAA4HRAAAAAAADgdEAAAAAAAPB0QAAAAAAA8HRAAAAAAAAAdUAAAAAAAAB1QAAAAAAAEHVAAAAAAAAQdUAAAAAAACB1QAAAAAAAIHVAAAAAAAAwdUAAAAAAADB1QAAAAAAAQHVAAAAAAABAdUAAAAAAAFB1QAAAAAAAUHVAAAAAAABgdUAAAAAAAGB1QAAAAAAAcHVAAAAAAABwdUAAAAAAAIB1QAAAAAAAgHVAAAAAAACQdUAAAAAAAJB1QAAAAAAAoHVAAAAAAACgdUAAAAAAALB1QAAAAAAAsHVAAAAAAADAdUAAAAAAAMB1QAAAAAAA0HVAAAAAAADQdUAAAAAAAOB1QAAAAAAA4HVAAAAAAADwdUAAAAAAAPB1QAAAAAAAAHZAAAAAAAAAdkAAAAAAABB2QAAAAAAAEHZAAAAAAAAgdkAAAAAAACB2QAAAAAAAMHZAAAAAAAAwdkAAAAAAAEB2QAAAAAAAQHZAAAAAAABQdkAAAAAAAFB2QAAAAAAAYHZAAAAAAABgdkAAAAAAAHB2QAAAAAAAcHZAAAAAAACAdkAAAAAAAIB2QAAAAAAAkHZAAAAAAACQdkAAAAAAAKB2QAAAAAAAoHZAAAAAAACwdkAAAAAAALB2QAAAAAAAwHZAAAAAAADAdkAAAAAAANB2QAAAAAAA0HZAAAAAAADgdkAAAAAAAOB2QAAAAAAA8HZAAAAAAADwdkAAAAAAAAB3QAAAAAAAAHdAAAAAAAAQd0AAAAAAABB3QAAAAAAAIHdAAAAAAAAgd0AAAAAAADB3QAAAAAAAMHdAAAAAAABAd0AAAAAAAEB3QAAAAAAAUHdAAAAAAABQd0AAAAAAAGB3QAAAAAAAYHdAAAAAAABwd0AAAAAAAHB3QAAAAAAAgHdAAAAAAACAd0AAAAAAAJB3QAAAAAAAkHdAAAAAAACgd0AAAAAAAKB3QAAAAAAAsHdAAAAAAACwd0AAAAAAAMB3QAAAAAAAwHdAAAAAAADQd0AAAAAAANB3QAAAAAAA4HdAAAAAAADgd0AAAAAAAPB3QAAAAAAA8HdAAAAAAAAAeEAAAAAAAAB4QAAAAAAAEHhAAAAAAAAQeEAAAAAAACB4QAAAAAAAIHhAAAAAAAAweEAAAAAAADB4QAAAAAAAQHhAAAAAAABAeEAAAAAAAFB4QAAAAAAAUHhAAAAAAABgeEAAAAAAAGB4QAAAAAAAcHhAAAAAAABweEAAAAAAAIB4QAAAAAAAgHhAAAAAAACQeEAAAAAAAJB4QAAAAAAAoHhAAAAAAACgeEAAAAAAALB4QAAAAAAAsHhAAAAAAADAeEAAAAAAAMB4QAAAAAAA0HhAAAAAAADQeEAAAAAAAOB4QAAAAAAA4HhAAAAAAADweEAAAAAAAPB4QAAAAAAAAHlAAAAAAAAAeUAAAAAAABB5QAAAAAAAEHlAAAAAAAAgeUAAAAAAACB5QAAAAAAAMHlAAAAAAAAweUAAAAAAAEB5QAAAAAAAQHlAAAAAAABQeUAAAAAAAFB5QAAAAAAAYHlAAAAAAABgeUAAAAAAAHB5QAAAAAAAcHlAAAAAAACAeUAAAAAAAIB5QAAAAAAAkHlAAAAAAACQeUAAAAAAAKB5QAAAAAAAoHlAAAAAAACweUAAAAAAALB5QAAAAAAAwHlAAAAAAADAeUAAAAAAANB5QAAAAAAA0HlAAAAAAADgeUAAAAAAAOB5QAAAAAAA8HlAAAAAAADweUAAAAAAAAB6QAAAAAAAAHpAAAAAAAAQekAAAAAAABB6QAAAAAAAIHpAAAAAAAAgekAAAAAAADB6QAAAAAAAMHpAAAAAAABAekAAAAAAAEB6QAAAAAAAUHpAAAAAAABQekAAAAAAAGB6QAAAAAAAYHpAAAAAAABwekAAAAAAAHB6QAAAAAAAgHpAAAAAAACAekAAAAAAAJB6QAAAAAAAkHpAAAAAAACgekAAAAAAAKB6QAAAAAAAsHpAAAAAAACwekAAAAAAAMB6QAAAAAAAwHpAAAAAAADQekAAAAAAANB6QAAAAAAA4HpAAAAAAADgekAAAAAAAPB6QAAAAAAA8HpAAAAAAAAAe0AAAAAAAAB7QAAAAAAAEHtAAAAAAAAQe0AAAAAAACB7QAAAAAAAIHtAAAAAAAAwe0AAAAAAADB7QAAAAAAAQHtAAAAAAABAe0AAAAAAAFB7QAAAAAAAUHtAAAAAAABge0AAAAAAAGB7QAAAAAAAcHtAAAAAAABwe0AAAAAAAIB7QAAAAAAAgHtAAAAAAACQe0AAAAAAAJB7QAAAAAAAoHtAAAAAAACge0AAAAAAALB7QAAAAAAAsHtAAAAAAADAe0AAAAAAAMB7QAAAAAAA0HtAAAAAAADQe0AAAAAAAOB7QAAAAAAA4HtAAAAAAADwe0AAAAAAAPB7QAAAAAAAAHxAAAAAAAAAfEAAAAAAABB8QAAAAAAAEHxAAAAAAAAgfEAAAAAAACB8QAAAAAAAMHxAAAAAAAAwfEAAAAAAAEB8QAAAAAAAQHxAAAAAAABQfEAAAAAAAFB8QAAAAAAAYHxAAAAAAABgfEAAAAAAAHB8QAAAAAAAcHxAAAAAAACAfEAAAAAAAIB8QAAAAAAAkHxAAAAAAACQfEAAAAAAAKB8QAAAAAAAoHxAAAAAAACwfEAAAAAAALB8QAAAAAAAwHxAAAAAAADAfEAAAAAAANB8QAAAAAAA0HxAAAAAAADgfEAAAAAAAOB8QAAAAAAA8HxAAAAAAADwfEAAAAAAAAB9QAAAAAAAAH1AAAAAAAAQfUAAAAAAABB9QAAAAAAAIH1AAAAAAAAgfUAAAAAAADB9QAAAAAAAMH1AAAAAAABAfUAAAAAAAEB9QAAAAAAAUH1AAAAAAABQfUAAAAAAAGB9QAAAAAAAYH1AAAAAAABwfUAAAAAAAHB9QAAAAAAAgH1AAAAAAACAfUAAAAAAAJB9QAAAAAAAkH1AAAAAAACgfUAAAAAAAKB9QAAAAAAAsH1AAAAAAACwfUAAAAAAAMB9QAAAAAAAwH1AAAAAAADQfUAAAAAAANB9QAAAAAAA4H1AAAAAAADgfUAAAAAAAPB9QAAAAAAA8H1AAAAAAAAAfkAAAAAAAAB+QAAAAAAAEH5AAAAAAAAQfkAAAAAAACB+QAAAAAAAIH5AAAAAAAAwfkAAAAAAADB+QAAAAAAAQH5AAAAAAABAfkAAAAAAAFB+QAAAAAAAUH5AAAAAAABgfkAAAAAAAGB+QAAAAAAAcH5AAAAAAABwfkAAAAAAAIB+QAAAAAAAgH5AAAAAAACQfkAAAAAAAJB+QAAAAAAAoH5AAAAAAACgfkAAAAAAALB+QAAAAAAAsH5AAAAAAADAfkAAAAAAAMB+QAAAAAAA0H5AAAAAAADQfkAAAAAAAOB+QAAAAAAA4H5AAAAAAADwfkAAAAAAAPB+QAAAAAAAAH9AAAAAAAAAf0AAAAAAABB/QAAAAAAAEH9AAAAAAAAgf0AAAAAAACB/QAAAAAAAMH9AAAAAAAAwf0AAAAAAAEB/QAAAAAAAQH9AAAAAAABQf0AAAAAAAFB/QAAAAAAAYH9AAAAAAABgf0AAAAAAAHB/QAAAAAAAcH9AAAAAAACAf0AAAAAAAIB/QAAAAAAAkH9AAAAAAACQf0AAAAAAAKB/QAAAAAAAoH9AAAAAAACwf0AAAAAAALB/QAAAAAAAwH9AAAAAAADAf0AAAAAAANB/QAAAAAAA0H9AAAAAAADgf0AAAAAAAOB/QAAAAAAA8H9AAAAAAADwf0AAAAAAAACAQAAAAAAAAIBAAAAAAAAIgEAAAAAAAAiAQAAAAAAAEIBAAAAAAAAQgEAAAAAAABiAQAAAAAAAGIBAAAAAAAAggEAAAAAAACCAQAAAAAAAKIBAAAAAAAAogEAAAAAAADCAQAAAAAAAMIBAAAAAAAA4gEAAAAAAADiAQAAAAAAAQIBAAAAAAABAgEAAAAAAAEiAQAAAAAAASIBAAAAAAABQgEAAAAAAAFCAQAAAAAAAWIBAAAAAAABYgEAAAAAAAGCAQAAAAAAAYIBAAAAAAABogEAAAAAAAGiAQAAAAAAAcIBAAAAAAABwgEAAAAAAAHiAQAAAAAAAeIBAAAAAAACAgEAAAAAAAICAQAAAAAAAiIBAAAAAAACIgEAAAAAAAJCAQAAAAAAAkIBAAAAAAACYgEAAAAAAAJiAQAAAAAAAoIBAAAAAAACggEAAAAAAAKiAQAAAAAAAqIBAAAAAAACwgEAAAAAAALCAQAAAAAAAuIBAAAAAAAC4gEAAAAAAAMCAQAAAAAAAwIBAAAAAAADIgEAAAAAAAMiAQAAAAAAA0IBAAAAAAADQgEAAAAAAANiAQAAAAAAA2IBAAAAAAADggEAAAAAAAOCAQAAAAAAA6IBAAAAAAADogEAAAAAAAPCAQAAAAAAA8IBAAAAAAAD4gEAAAAAAAPiAQAAAAAAAAIFAAAAAAAAAgUAAAAAAAAiBQAAAAAAACIFAAAAAAAAQgUAAAAAAABCBQAAAAAAAGIFAAAAAAAAYgUAAAAAAACCBQAAAAAAAIIFAAAAAAAAogUAAAAAAACiBQAAAAAAAMIFAAAAAAAAwgUAAAAAAADiBQAAAAAAAOIFAAAAAAABAgUAAAAAAAECBQAAAAAAASIFAAAAAAABIgUAAAAAAAFCBQAAAAAAAUIFAAAAAAABYgUAAAAAAAFiBQAAAAAAAYIFAAAAAAABggUAAAAAAAGiBQAAAAAAAaIFAAAAAAABwgUAAAAAAAHCBQAAAAAAAeIFAAAAAAAB4gUAAAAAAAICBQAAAAAAAgIFAAAAAAACIgUAAAAAAAIiBQAAAAAAAkIFAAAAAAACQgUAAAAAAAJiBQAAAAAAAmIFAAAAAAACggUAAAAAAAKCBQAAAAAAAqIFAAAAAAACogUAAAAAAALCBQAAAAAAAsIFAAAAAAAC4gUAAAAAAALiBQAAAAAAAwIFAAAAAAADAgUAAAAAAAMiBQAAAAAAAyIFAAAAAAADQgUAAAAAAANCBQAAAAAAA2IFAAAAAAADYgUAAAAAAAOCBQAAAAAAA4IFAAAAAAADogUAAAAAAAOiBQAAAAAAA8IFAAAAAAADwgUAAAAAAAPiBQAAAAAAA+IFAAAAAAAAAgkAAAAAAAACCQAAAAAAACIJAAAAAAAAIgkAAAAAAABCCQAAAAAAAEIJAAAAAAAAYgkAAAAAAABiCQAAAAAAAIIJAAAAAAAAggkAAAAAAACiCQAAAAAAAKIJAAAAAAAAwgkAAAAAAADCCQAAAAAAAOIJAAAAAAAA4gkAAAAAAAECCQAAAAAAAQIJAAAAAAABIgkAAAAAAAEiCQAAAAAAAUIJAAAAAAABQgkAAAAAAAFiCQAAAAAAAWIJAAAAAAABggkAAAAAAAGCCQAAAAAAAaIJAAAAAAABogkAAAAAAAHCCQAAAAAAAcIJAAAAAAAB4gkAAAAAAAHiCQAAAAAAAgIJAAAAAAACAgkAAAAAAAIiCQAAAAAAAiIJAAAAAAACQgkAAAAAAAJCCQAAAAAAAmIJAAAAAAACYgkAAAAAAAKCCQAAAAAAAoIJAAAAAAACogkAAAAAAAKiCQAAAAAAAsIJAAAAAAACwgkAAAAAAALiCQAAAAAAAuIJAAAAAAADAgkAAAAAAAMCCQAAAAAAAyIJAAAAAAADIgkAAAAAAANCCQAAAAAAA0IJAAAAAAADYgkAAAAAAANiCQAAAAAAA4IJAAAAAAADggkAAAAAAAOiCQAAAAAAA6IJAAAAAAADwgkAAAAAAAPCCQAAAAAAA+IJAAAAAAAD4gkAAAAAAAACDQAAAAAAAAINAAAAAAAAIg0AAAAAAAAiDQAAAAAAAEINAAAAAAAAQg0AAAAAAABiDQAAAAAAAGINAAAAAAAAgg0AAAAAAACCDQAAAAAAAKINAAAAAAAAog0AAAAAAADCDQAAAAAAAMINAAAAAAAA4g0AAAAAAADiDQAAAAAAAQINAAAAAAABAg0AAAAAAAEiDQAAAAAAASINAAAAAAABQg0AAAAAA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","dtype":"float64","order":"little","shape":[8002]},"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[8002]}},"selected":{"id":"12998"},"selection_policy":{"id":"12997"}},"id":"12244","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"12249"},"glyph":{"id":"12250"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12251"},"selection_glyph":null,"view":{"id":"12253"}},"id":"12252","type":"GlyphRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","top_units":"screen"},"id":"12231","type":"BoxAnnotation"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#7e7e7e"},"line_alpha":{"value":0.1},"line_color":{"value":"#7e7e7e"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12299","type":"Circle"},{"attributes":{"source":{"id":"12244"}},"id":"12248","type":"CDSView"},{"attributes":{"line_alpha":0.1,"line_color":"gray","line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"12246","type":"Line"},{"attributes":{},"id":"13021","type":"UnionRenderers"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999],"parameter":["rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho","rho"],"rank_statistic":[543,1028,2216,3254,279,2123,3714,3593,3816,3188,1407,2311,2004,3420,700,660,335,945,3552,1323,1446,137,2749,53,1792,2411,1684,721,2331,3551,2959,1408,560,3673,1995,1090,356,170,1943,3296,2490,1846,3552,3230,1803,850,1602,3139,537,294,1625,544,2921,1188,1880,3175,2392,1675,1137,1970,369,2153,2661,1082,3613,3771,2872,334,2068,467,2475,3728,3588,2491,748,396,2462,459,1718,2769,1406,2186,1164,1799,3431,585,2601,1912,2961,2814,2718,1132,3161,1944,3873,2289,511,367,3708,2274,1717,642,578,58,3896,2287,3911,2922,843,422,1650,1108,1201,1283,1951,3480,312,3236,133,1445,2344,2026,3120,3558,3907,2062,473,3030,3117,3636,3112,1627,3717,3959,1551,3138,299,1477,2928,616,3001,3176,2675,1606,2625,1460,162,2479,2172,1513,3555,495,1967,904,1398,1729,3458,1593,1117,833,328,1696,2177,1731,1753,1095,879,2798,2354,415,208,2890,965,3768,2090,2118,1787,3343,2875,3657,484,2309,329,514,1629,2641,3207,1626,2347,2286,1937,3694,3244,1954,1962,2263,233,2747,109,596,1750,980,550,2522,2476,3507,3697,1582,2220,997,2761,1538,3635,3632,1589,545,270,3994,2935,2775,3985,1882,860,2614,1497,1373,2618,2016,3925,3372,3111,2286,2310,3145,3629,1296,2654,1324,3414,168,1084,1608,2212,1844,3180,347,627,1283,2238,3870,23,1261,2005,1235,3951,1065,2539,2951,619,2499,2859,2270,664,3484,3912,1171,3058,279,1639,1258,3721,2804,864,3118,1432,1063,423,1352,3947,3923,2688,3068,204,417,1973,3915,1483,1443,2106,3388,219,2769,287,145,3264,1665,3865,1416,3442,730,2304,2819,3096,2436,1135,1403,3108,3034,540,1435,2597,3690,912,2022,892,3474,1380,2027,428,77,2167,101,2102,885,1902,2076,1328,774,2808,1800,197,2920,370,2191,1678,1676,1836,2682,1685,3285,130,1555,571,2028,1895,3883,1760,1754,1000,533,2410,1429,1800,126,339,936,981,2614,2028,1460,392,2634,2410,1507,3049,2069,179,3193,3165,1495,3334,1840,1013,485,1332,3758,2168,3991,1527,3597,1263,60,3868,2127,452,2921,3805,435,3325,2424,2887,612,2944,1116,3063,629,1848,991,475,1477,1715,1513,1990,3386,967,3302,582,1159,1128,2273,1732,1335,2510,2303,2735,1168,1223,2819,2517,3366,2873,2071,3503,2686,1401,2724,2098,1728,682,30,1839,1441,3683,2381,816,2064,59,311,272,3876,3179,3747,3765,882,3032,3910,3088,607,3759,425,115,2744,3098,1022,1901,2974,2655,1895,36,3085,2233,1014,347,744,2829,2620,3060,3655,239,3444,1458,1095,2297,519,319,1500,3532,1099,56,1821,2440,59,2528,748,2760,570,2312,1470,2513,1863,1227,2413,2628,2080,3621,173,2763,1113,281,1490,2268,3923,734,1307,1430,18,2024,3171,2833,2504,2138,192,3507,2902,1382,632,2309,1602,878,2226,3246,2876,2840,701,177,3003,2588,2986,840,2108,2442,2568,937,2928,3823,2687,1225,2405,3530,3244,3638,1882,124,1610,1424,1090,289,2487,378,2974,53,3278,653,498,432,2101,3320,223,3504,21,3,1416,438,152,3538,466,2874,750,1017,2860,515,826,221,335,537,561,3177,396,2115,1374,490,1285,3357,2831,3633,2731,410,3021,3806,1832,3262,126,3260,1590,46,2425,2921,1918,737,255,1872,617,792,2470,3143,3415,3932,2028,1674,3903,402,3281,618,3905,3561,1861,2673,1799,2238,3245,912,3734,3749,1687,2583,311,3253,1740,2719,1252,2031,3040,844,2228,549,324,2968,1159,3786,1225,1927,2948,833,3241,2697,1107,71,846,1437,3211,3590,3683,3505,3217,1765,2207,3080,2017,152,2388,2538,1959,460,1851,1097,3499,3853,2854,3384,2399,1826,3966,3015,593,3879,1589,835,3373,2046,3033,2518,3650,2120,1139,3449,1698,3650,885,937,1068,230,111,813,843,3489,2049,2297,2796,2768,38,3602,2204,1080,3086,457,2844,3891,1384,2206,3627,2221,1343,3716,2782,2997,3390,573,240,2842,904,3547,1632,2408,1384,3982,1216,1648,3067,2719,2853,906,1109,2194,1537,2617,2856,2729,795,3638,1877,1035,1064,142,2548,166,450,1278,3490,2905,2926,3336,1988,183,253,3543,225,1722,3745,839,3930,2436,396,112,167,1067,795,2176,1410,2288,7,3066,610,995,440,3973,549,3699,1746,2431,3421,3364,2086,213,33,1602,216,1200,288,828,1489,623,208,2631,234,1658,3964,1511,3609,136,3604,929,689,2675,3547,2560,2930,3679,984,248,3241,2468,2195,750,1040,2163,2185,2221,1292,560,2741,1171,18,939,3287,2681,2580,3350,2023,1757,1001,2653,3358,3306,493,2643,3347,2183,3944,290,1482,3047,2804,2519,2992,842,621,172,2510,3675,3165,203,3078,468,2744,3416,1971,3635,2879,3067,1576,2654,3009,394,2619,129,2874,2466,3233,3060,2602,2333,3619,3268,1587,2436,2521,3683,1683,1523,1355,121,2635,1252,3425,1997,1866,2513,722,1773,839,2956,2035,1237,33,1819,1412,2614,542,231,709,3201,2686,1316,3401,1231,30,3710,961,2373,3474,2950,3109,542,2275,2197,863,347,1543,2807,1780,1901,58,1507,442,2090,87,3537,351,3012,3326,3249,38,2699,1662,878,1924,2726,2322,1360,2949,1684,2033,926,3431,3174,2434,464,3687,1697,1858,1519,3278,2239,330,1200,2105,2359,1605,3773,1788,2962,3748,2092,1495,1578,2740,913,778,2333,69,926,1329,721,247,2359,851,1761,1148,2519,2651,2044,812,1567,2406,608,262,3555,2872,1816,2205,3098,1599,412,1324,3129,121,918,1956,2783,2125],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13002"},"selection_policy":{"id":"13001"}},"id":"12254","type":"ColumnDataSource"},{"attributes":{},"id":"13022","type":"Selection"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999],"parameter":["sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]","sigma[0]"],"rank_statistic":[459,1823,2607,3421,1743,1261,67,3145,3065,3117,1666,2308,3044,3863,2808,746,2827,3163,2762,583,571,1575,1143,966,2384,2027,2477,2098,206,846,2436,149,2254,512,106,824,3669,521,1210,1373,742,1343,3258,3538,3268,2488,2764,1707,881,489,148,3078,1527,381,2114,2254,770,2839,1110,1067,3967,120,2562,239,342,1608,3192,931,1979,1530,2620,1449,2991,2657,2368,1237,558,1979,1306,2140,3861,933,2080,3360,1944,2190,405,1826,1298,3197,3774,1464,1812,187,3822,3946,1380,467,127,3161,2649,959,1840,3857,3194,2194,116,2447,1367,3587,2778,1876,1319,3666,2590,313,539,607,871,986,618,510,3513,392,3703,920,2664,3276,781,3109,1437,3527,2893,2655,888,3326,2943,2986,1077,476,1344,243,2735,2436,2904,2145,756,2245,969,2243,216,2274,1438,2469,257,721,1865,1909,69,3787,1541,68,2570,264,908,1534,1995,3179,3689,1119,2940,3590,1414,3087,3635,2894,328,182,670,3673,3191,2548,3852,1942,1134,1573,3742,1137,2426,1865,1660,1297,1885,84,548,3177,3786,3738,99,535,2362,3285,3230,212,1389,2558,1900,3328,2583,3715,786,154,782,3024,289,2911,2852,49,3617,179,238,3774,2987,987,1009,3179,2341,1226,583,1164,1491,1239,1159,1061,76,3050,1465,1259,3020,2093,1247,2381,1811,2682,14,3335,1092,3058,66,2313,3853,2051,2575,2589,3353,1014,706,1036,2372,1841,2812,1822,2908,3073,3917,922,1095,3368,1415,2750,2864,3792,3940,51,1326,3271,3675,86,2982,49,3693,1086,3726,2371,3583,1694,1619,617,963,3021,302,2755,2888,3071,625,3255,3979,2169,1515,3857,3826,138,641,1130,3947,1859,1654,3432,1054,3064,1986,3730,454,2603,861,3464,468,1367,3993,911,1866,998,2663,14,1346,418,2360,1749,1963,2742,670,424,541,3268,1797,2232,2076,1498,3065,2736,3900,1390,3512,1005,3921,2983,3713,2405,347,3332,1524,871,777,1073,748,572,2264,3880,3533,2730,2779,1007,1922,1082,941,3073,3551,2014,3786,43,1262,3373,1638,2993,2641,683,1411,3965,1659,2961,1644,2294,538,3650,2422,3016,668,406,1152,1878,1689,3794,147,3141,3790,2059,3832,2919,58,2049,2929,1818,1206,2761,3351,1575,83,303,1322,3429,2091,3701,234,93,2604,3501,297,607,1909,2192,2909,3164,1544,2830,1746,899,2963,2617,532,2383,370,2059,180,1374,1487,3842,1298,3376,371,658,1572,570,3730,1578,3928,3768,2916,2716,3169,3988,1193,1662,3751,1803,3561,1832,13,314,3866,2200,2165,695,509,2927,3699,1218,783,2463,1142,2684,1337,1139,1772,3701,3350,2609,3922,2148,2590,853,2469,2368,3691,2589,515,2050,222,2118,724,664,106,2559,627,2163,2491,3950,978,568,3824,622,758,1963,3272,2481,1479,3989,760,2166,957,538,2191,205,2938,3119,1021,2674,2977,2853,1723,495,1413,752,3565,1208,3634,2427,1226,606,2057,284,455,170,2250,76,3074,1295,608,1579,1883,1736,3298,21,2072,2446,1168,2679,3305,738,1137,0,3255,1048,624,363,844,673,746,469,1253,499,1771,3777,2474,328,1988,489,2952,1518,307,1536,2618,1929,174,351,759,3700,3002,1031,3749,1012,1260,3417,3187,1104,3830,3358,362,2913,3095,2735,3636,1629,1707,3529,3489,1692,2701,1129,1211,2813,3187,605,610,2052,2452,652,3953,3227,1906,965,320,1594,3545,2052,3338,759,2350,422,2497,958,1237,3506,1260,847,558,648,536,34,212,2308,1324,982,3298,3144,294,3167,2354,352,71,1058,645,2506,2717,2761,2247,1708,425,3759,2724,376,3931,2067,424,2066,1083,2721,1129,840,2560,575,483,2091,1241,1988,1679,3110,2024,3092,1098,413,501,177,2047,726,3829,2992,3887,1452,3850,1786,2592,914,1685,626,324,287,3112,2217,351,3302,160,1613,3595,3571,3242,1671,1144,1189,968,1921,1738,1765,1593,3729,115,870,1065,804,164,981,751,531,1296,1077,425,2147,127,1802,2661,2137,3651,1825,3278,2404,1658,146,2445,1330,1786,2346,802,436,2582,2592,1467,1776,2990,439,3649,1154,86,219,3386,1707,2669,3399,3771,2305,3603,2679,1274,776,3912,1396,2800,1621,2228,3008,519,1698,3929,614,188,2309,2299,2225,2172,1160,3975,1320,3675,3347,284,3240,1367,3597,3579,1811,2480,1874,2630,351,2,798,3798,687,1867,434,1078,3716,3336,3403,1086,1423,3319,3280,425,3139,1736,2916,3714,3862,1498,3899,949,1293,3076,3094,2522,2408,3579,2050,1147,2334,196,1840,1078,267,3954,2905,2215,3099,1380,1477,2865,2036,2615,749,505,2608,3956,890,912,2597,667,2037,3453,1807,1106,3558,3272,1428,441,3817,3569,2319,3784,827,2976,2796,3657,1085,3534,3341,2174,2002,1519,566,2015,3709,16,3855,3899,1527,1912,2233,1714,3439,2904,37,156,234,1418,522,3530,2760,1319,2216,662,230,3695,1146,1788,1403,2222,98,1245,404,2936,2597,1982,786,261,3045,3049,2558,1164,476,324,2845,1607,61,1581,136,239,3745,1727,929,438,2809,3166,2004,1168,2,3629,2453,2059,580,2379,2405,3991,2511,205,2436,3830,3504,3528,3759,903,888,1829,119,3683,2685,2975,2383,1409,2616,1654,354,999,2890,3566,1426,1856,1120,154,1842,3099,2874,1109,1971,629,1544,117,2791,1905,2433,1148,98,2450,1120,322,2614,1218,2310,3023,439,1965,2913,410,3457,608,3658,356,2393,608,2342,3830,2226,2034,2174,2830,126,3559,3607,2920,1419,1526,1926,2701,2895,2372,2161,3201,3678,464,208,3112,493],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13004"},"selection_policy":{"id":"13003"}},"id":"12260","type":"ColumnDataSource"},{"attributes":{"data":{"x":{"__ndarray__":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPA/AAAAAAAA8D8AAAAAAAAAQAAAAAAAAABAAAAAAAAACEAAAAAAAAAIQAAAAAAAABBAAAAAAAAAEEAAAAAAAAAUQAAAAAAAABRAAAAAAAAAGEAAAAAAAAAYQAAAAAAAABxAAAAAAAAAHEAAAAAAAAAgQAAAAAAAACBAAAAAAAAAIkAAAAAAAAAiQAAAAAAAACRAAAAAAAAAJEAAAAAAAAAmQAAAAAAAACZAAAAAAAAAKEAAAAAAAAAoQAAAAAAAACpAAAAAAAAAKkAAAAAAAAAsQAAAAAAAACxAAAAAAAAALkAAAAAAAAAuQAAAAAAAADBAAAAAAAAAMEAAAAAAAAAxQAAAAAAAADFAAAAAAAAAMkAAAAAAAAAyQAAAAAAAADNAAAAAAAAAM0AAAAAAAAA0QAAAAAAAADRAAAAAAAAANUAAAAAAAAA1QAAAAAAAADZAAAAAAAAANkAAAAAAAAA3QAAAAAAAADdAAAAAAAAAOEAAAAAAAAA4QAAAAAAAADlAAAAAAAAAOUAAAAAAAAA6QAAAAAAAADpAAAAAAAAAO0AAAAAAAAA7QAAAAAAAADxAAAAAAAAAPEAAAAAAAAA9QAAAAAAAAD1AAAAAAAAAPkAAAAAAAAA+QAAAAAAAAD9AAAAAAAAAP0AAAAAAAABAQAAAAAAAAEBAAAAAAACAQEAAAAAAAIBAQAAAAAAAAEFAAAAAAAAAQUAAAAAAAIBBQAAAAAAAgEFAAAAAAAAAQkAAAAAAAABCQAAAAAAAgEJAAAAAAACAQkAAAAAAAABDQAAAAAAAAENAAAAAAACAQ0AAAAAAAIBDQAAAAAAAAERAAAAAAAAAREAAAAAAAIBEQAAAAAAAgERAAAAAAAAARUAAAAAAAABFQAAAAAAAgEVAAAAAAACARUAAAAAAAABGQAAAAAAAAEZAAAAAAACARkAAAAAAAIBGQAAAAAAAAEdAAAAAAAAAR0AAAAAAAIBHQAAAAAAAgEdAAAAAAAAASEAAAAAAAABIQAAAAAAAgEhAAAAAAACASEAAAAAAAABJQAAAAAAAAElAAAAAAACASUAAAAAAAIBJQAAAAAAAAEpAAAAAAAAASkAAAAAAAIBKQAAAAAAAgEpAAAAAAAAAS0AAAAAAAABLQAAAAAAAgEtAAAAAAACAS0AAAAAAAABMQAAAAAAAAExAAAAAAACATEAAAAAAAIBMQAAAAAAAAE1AAAAAAAAATUAAAAAAAIBNQAAAAAAAgE1AAAAAAAAATkAAAAAAAABOQAAAAAAAgE5AAAAAAACATkAAAAAAAABPQAAAAAAAAE9AAAAAAACAT0AAAAAAAIBPQAAAAAAAAFBAAAAAAAAAUEAAAAAAAEBQQAAAAAAAQFBAAAAAAACAUEAAAAAAAIBQQAAAAAAAwFBAAAAAAADAUEAAAAAAAABRQAAAAAAAAFFAAAAAAABAUUAAAAAAAEBRQAAAAAAAgFFAAAAAAACAUUAAAAAAAMBRQAAAAAAAwFFAAAAAAAAAUkAAAAAAAABSQAAAAAAAQFJAAAAAAABAUkAAAAAAAIBSQAAAAAAAgFJAAAAAAADAUkAAAAAAAMBSQAAAAAAAAFNAAAAAAAAAU0AAAAAAAEBTQAAAAAAAQFNAAAAAAACAU0AAAAAAAIBTQAAAAAAAwFNAAAAAAADAU0AAAAAAAABUQAAAAAAAAFRAAAAAAABAVEAAAAAAAEBUQAAAAAAAgFRAAAAAAACAVEAAAAAAAMBUQAAAAAAAwFRAAAAAAAAAVUAAAAAAAABVQAAAAAAAQFVAAAAAAABAVUAAAAAAAIBVQAAAAAAAgFVAAAAAAADAVUAAAAAAAMBVQAAAAAAAAFZAAAAAAAAAVkAAAAAAAEBWQAAAAAAAQFZAAAAAAACAVkAAAAAAAIBWQAAAAAAAwFZAAAAAAADAVkAAAAAAAABXQAAAAAAAAFdAAAAAAABAV0AAAAAAAEBXQAAAAAAAgFdAAAAAAACAV0AAAAAAAMBXQAAAAAAAwFdAAAAAAAAAWEAAAAAAAABYQAAAAAAAQFhAAAAAAABAWEAAAAAAAIBYQAAAAAAAgFhAAAAAAADAWEAAAAAAAMBYQAAAAAAAAFlAAAAAAAAAWUAAAAAAAEBZQAAAAAAAQFlAAAAAAACAWUAAAAAAAIBZQAAAAAAAwFlAAAAAAADAWUAAAAAAAABaQAAAAAAAAFpAAAAAAABAWkAAAAAAAEBaQAAAAAAAgFpAAAAAAACAWkAAAAAAAMBaQAAAAAAAwFpAAAAAAAAAW0AAAAAAAABbQAAAAAAAQFtAAAAAAABAW0AAAAAAAIBbQAAAAAAAgFtAAAAAAADAW0AAAAAAAMBbQAAAAAAAAFxAAAAAAAAAXEAAAAAAAEBcQAAAAAAAQFxAAAAAAACAXEAAAAAAAIBcQAAAAAAAwFxAAAAAAADAXEAAAAAAAABdQAAAAAAAAF1AAAAAAABAXUAAAAAAAEBdQAAAAAAAgF1AAAAAAACAXUAAAAAAAMBdQAAAAAAAwF1AAAAAAAAAXkAAAAAAAABeQAAAAAAAQF5AAAAAAABAXkAAAAAAAIBeQAAAAAAAgF5AAAAAAADAXkAAAAAAAMBeQAAAAAAAAF9AAAAAAAAAX0AAAAAAAEBfQAAAAAAAQF9AAAAAAACAX0AAAAAAAIBfQAAAAAAAwF9AAAAAAADAX0AAAAAAAABgQAAAAAAAAGBAAAAAAAAgYEAAAAAAACBgQAAAAAAAQGBAAAAAAABAYEAAAAAAAGBgQAAAAAAAYGBAAAAAAACAYEAAAAAAAIBgQAAAAAAAoGBAAAAAAACgYEAAAAAAAMBgQAAAAAAAwGBAAAAAAADgYEAAAAAAAOBgQAAAAAAAAGFAAAAAAAAAYUAAAAAAACBhQAAAAAAAIGFAAAAAAABAYUAAAAAAAEBhQAAAAAAAYGFAAAAAAABgYUAAAAAAAIBhQAAAAAAAgGFAAAAAAACgYUAAAAAAAKBhQAAAAAAAwGFAAAAAAADAYUAAAAAAAOBhQAAAAAAA4GFAAAAAAAAAYkAAAAAAAABiQAAAAAAAIGJAAAAAAAAgYkAAAAAAAEBiQAAAAAAAQGJAAAAAAABgYkAAAAAAAGBiQAAAAAAAgGJAAAAAAACAYkAAAAAAAKBiQAAAAAAAoGJAAAAAAADAYkAAAAAAAMBiQAAAAAAA4GJAAAAAAADgYkAAAAAAAABjQAAAAAAAAGNAAAAAAAAgY0AAAAAAACBjQAAAAAAAQGNAAAAAAABAY0AAAAAAAGBjQAAAAAAAYGNAAAAAAACAY0AAAAAAAIBjQAAAAAAAoGNAAAAAAACgY0AAAAAAAMBjQAAAAAAAwGNAAAAAAADgY0AAAAAAAOBjQAAAAAAAAGRAAAAAAAAAZEAAAAAAACBkQAAAAAAAIGRAAAAAAABAZEAAAAAAAEBkQAAAAAAAYGRAAAAAAABgZEAAAAAAAIBkQAAAAAAAgGRAAAAAAACgZEAAAAAAAKBkQAAAAAAAwGRAAAAAAADAZEAAAAAAAOBkQAAAAAAA4GRAAAAAAAAAZUAAAAAAAABlQAAAAAAAIGVAAAAAAAAgZUAAAAAAAEBlQAAAAAAAQGVAAAAAAABgZUAAAAAAAGBlQAAAAAAAgGVAAAAAAACAZUAAAAAAAKBlQAAAAAAAoGVAAAAAAADAZUAAAAAAAMBlQAAAAAAA4GVAAAAAAADgZUAAAAAAAABmQAAAAAAAAGZAAAAAAAAgZkAAAAAAACBmQAAAAAAAQGZAAAAAAABAZkAAAAAAAGBmQAAAAAAAYGZAAAAAAACAZkAAAAAAAIBmQAAAAAAAoGZAAAAAAACgZkAAAAAAAMBmQAAAAAAAwGZAAAAAAADgZkAAAAAAAOBmQAAAAAAAAGdAAAAAAAAAZ0AAAAAAACBnQAAAAAAAIGdAAAAAAABAZ0AAAAAAAEBnQAAAAAAAYGdAAAAAAABgZ0AAAAAAAIBnQAAAAAAAgGdAAAAAAACgZ0AAAAAAAKBnQAAAAAAAwGdAAAAAAADAZ0AAAAAAAOBnQAAAAAAA4GdAAAAAAAAAaEAAAAAAAABoQAAAAAAAIGhAAAAAAAAgaEAAAAAAAEBoQAAAAAAAQGhAAAAAAABgaEAAAAAAAGBoQAAAAAAAgGhAAAAAAACAaEAAAAAAAKBoQAAAAAAAoGhAAAAAAADAaEAAAAAAAMBoQAAAAAAA4GhAAAAAAADgaEAAAAAAAABpQAAAAAAAAGlAAAAAAAAgaUAAAAAAACBpQAAAAAAAQGlAAAAAAABAaUAAAAAAAGBpQAAAAAAAYGlAAAAAAACAaUAAAAAAAIBpQAAAAAAAoGlAAAAAAACgaUAAAAAAAMBpQAAAAAAAwGlAAAAAAADgaUAAAAAAAOBpQAAAAAAAAGpAAAAAAAAAakAAAAAAACBqQAAAAAAAIGpAAAAAAABAakAAAAAAAEBqQAAAAAAAYGpAAAAAAABgakAAAAAAAIBqQAAAAAAAgGpAAAAAAACgakAAAAAAAKBqQAAAAAAAwGpAAAAAAADAakAAAAAAAOBqQAAAAAAA4GpAAAAAAAAAa0AAAAAAAABrQAAAAAAAIGtAAAAAAAAga0AAAAAAAEBrQAAAAAAAQGtAAAAAAABga0AAAAAAAGBrQAAAAAAAgGtAAAAAAACAa0AAAAAAAKBrQAAAAAAAoGtAAAAAAADAa0AAAAAAAMBrQAAAAAAA4GtAAAAAAADga0AAAAAAAABsQAAAAAAAAGxAAAAAAAAgbEAAAAAAACBsQAAAAAAAQGxAAAAAAABAbEAAAAAAAGBsQAAAAAAAYGxAAAAAAACAbEAAAAAAAIBsQAAAAAAAoGxAAAAAAACgbEAAAAAAAMBsQAAAAAAAwGxAAAAAAADgbEAAAAAAAOBsQAAAAAAAAG1AAAAAAAAAbUAAAAAAACBtQAAAAAAAIG1AAAAAAABAbUAAAAAAAEBtQAAAAAAAYG1AAAAAAABgbUAAAAAAAIBtQAAAAAAAgG1AAAAAAACgbUAAAAAAAKBtQAAAAAAAwG1AAAAAAADAbUAAAAAAAOBtQAAAAAAA4G1AAAAAAAAAbkAAAAAAAABuQAAAAAAAIG5AAAAAAAAgbkAAAAAAAEBuQAAAAAAAQG5AAAAAAABgbkAAAAAAAGBuQAAAAAAAgG5AAAAAAACAbkAAAAAAAKBuQAAAAAAAoG5AAAAAAADAbkAAAAAAAMBuQAAAAAAA4G5AAAAAAADgbkAAAAAAAABvQAAAAAAAAG9AAAAAAAAgb0AAAAAAACBvQAAAAAAAQG9AAAAAAABAb0AAAAAAAGBvQAAAAAAAYG9AAAAAAACAb0AAAAAAAIBvQAAAAAAAoG9AAAAAAACgb0AAAAAAAMBvQAAAAAAAwG9AAAAAAADgb0AAAAAAAOBvQAAAAAAAAHBAAAAAAAAAcEAAAAAAABBwQAAAAAAAEHBAAAAAAAAgcEAAAAAAACBwQAAAAAAAMHBAAAAAAAAwcEAAAAAAAEBwQAAAAAAAQHBAAAAAAABQcEAAAAAAAFBwQAAAAAAAYHBAAAAAAABgcEAAAAAAAHBwQAAAAAAAcHBAAAAAAACAcEAAAAAAAIBwQAAAAAAAkHBAAAAAAACQcEAAAAAAAKBwQAAAAAAAoHBAAAAAAACwcEAAAAAAALBwQAAAAAAAwHBAAAAAAADAcEAAAAAAANBwQAAAAAAA0HBAAAAAAADgcEAAAAAAAOBwQAAAAAAA8HBAAAAAAADwcEAAAAAAAABxQAAAAAAAAHFAAAAAAAAQcUAAAAAAABBxQAAAAAAAIHFAAAAAAAAgcUAAAAAAADBxQAAAAAAAMHFAAAAAAABAcUAAAAAAAEBxQAAAAAAAUHFAAAAAAABQcUAAAAAAAGBxQAAAAAAAYHFAAAAAAABwcUAAAAAAAHBxQAAAAAAAgHFAAAAAAACAcUAAAAAAAJBxQAAAAAAAkHFAAAAAAACgcUAAAAAAAKBxQAAAAAAAsHFAAAAAAACwcUAAAAAAAMBxQAAAAAAAwHFAAAAAAADQcUAAAAAAANBxQAAAAAAA4HFAAAAAAADgcUAAAAAAAPBxQAAAAAAA8HFAAAAAAAAAckAAAAAAAAByQAAAAAAAEHJAAAAAAAAQckAAAAAAACByQAAAAAAAIHJAAAAAAAAwckAAAAAAADByQAAAAAAAQHJAAAAAAABAckAAAAAAAFByQAAAAAAAUHJAAAAAAABgckAAAAAAAGByQAAAAAAAcHJAAAAAAABwckAAAAAAAIByQAAAAAAAgHJAAAAAAACQckAAAAAAAJByQAAAAAAAoHJAAAAAAACgckAAAAAAALByQAAAAAAAsHJAAAAAAADAckAAAAAAAMByQAAAAAAA0HJAAAAAAADQckAAAAAAAOByQAAAAAAA4HJAAAAAAADwckAAAAAAAPByQAAAAAAAAHNAAAAAAAAAc0AAAAAAABBzQAAAAAAAEHNAAAAAAAAgc0AAAAAAACBzQAAAAAAAMHNAAAAAAAAwc0AAAAAAAEBzQAAAAAAAQHNAAAAAAABQc0AAAAAAAFBzQAAAAAAAYHNAAAAAAABgc0AAAAAAAHBzQAAAAAAAcHNAAAAAAACAc0AAAAAAAIBzQAAAAAAAkHNAAAAAAACQc0AAAAAAAKBzQAAAAAAAoHNAAAAAAACwc0AAAAAAALBzQAAAAAAAwHNAAAAAAADAc0AAAAAAANBzQAAAAAAA0HNAAAAAAADgc0AAAAAAAOBzQAAAAAAA8HNAAAAAAADwc0AAAAAAAAB0QAAAAAAAAHRAAAAAAAAQdEAAAAAAABB0QAAAAAAAIHRAAAAAAAAgdEAAAAAAADB0QAAAAAAAMHRAAAAAAABAdEAAAAAAAEB0QAAAAAAAUHRAAAAAAABQdEAAAAAAAGB0QAAAAAAAYHRAAAAAAABwdEAAAAAAAHB0QAAAAAAAgHRAAAAAAACAdEAAAAAAAJB0QAAAAAAAkHRAAAAAAACgdEAAAAAAAKB0QAAAAAAAsHRAAAAAAACwdEAAAAAAAMB0QAAAAAAAwHRAAAAAAADQdEAAAAAAANB0QAAAAAAA4HRAAAAAAADgdEAAAAAAAPB0QAAAAAAA8HRAAAAAAAAAdUAAAAAAAAB1QAAAAAAAEHVAAAAAAAAQdUAAAAAAACB1QAAAAAAAIHVAAAAAAAAwdUAAAAAAADB1QAAAAAAAQHVAAAAAAABAdUAAAAAAAFB1QAAAAAAAUHVAAAAAAABgdUAAAAAAAGB1QAAAAAAAcHVAAAAAAABwdUAAAAAAAIB1QAAAAAAAgHVAAAAAAACQdUAAAAAAAJB1QAAAAAAAoHVAAAAAAACgdUAAAAAAALB1QAAAAAAAsHVAAAAAAADAdUAAAAAAAMB1QAAAAAAA0HVAAAAAAADQdUAAAAAAAOB1QAAAAAAA4HVAAAAAAADwdUAAAAAAAPB1QAAAAAAAAHZAAAAAAAAAdkAAAAAAABB2QAAAAAAAEHZAAAAAAAAgdkAAAAAAACB2QAAAAAAAMHZAAAAAAAAwdkAAAAAAAEB2QAAAAAAAQHZAAAAAAABQdkAAAAAAAFB2QAAAAAAAYHZAAAAAAABgdkAAAAAAAHB2QAAAAAAAcHZAAAAAAACAdkAAAAAAAIB2QAAAAAAAkHZAAAAAAACQdkAAAAAAAKB2QAAAAAAAoHZAAAAAAACwdkAAAAAAALB2QAAAAAAAwHZAAAAAAADAdkAAAAAAANB2QAAAAAAA0HZAAAAAAADgdkAAAAAAAOB2QAAAAAAA8HZAAAAAAADwdkAAAAAAAAB3QAAAAAAAAHdAAAAAAAAQd0AAAAAAABB3QAAAAAAAIHdAAAAAAAAgd0AAAAAAADB3QAAAAAAAMHdAAAAAAABAd0AAAAAAAEB3QAAAAAAAUHdAAAAAAABQd0AAAAAAAGB3QAAAAAAAYHdAAAAAAABwd0AAAAAAAHB3QAAAAAAAgHdAAAAAAACAd0AAAAAAAJB3QAAAAAAAkHdAAAAAAACgd0AAAAAAAKB3QAAAAAAAsHdAAAAAAACwd0AAAAAAAMB3QAAAAAAAwHdAAAAAAADQd0AAAAAAANB3QAAAAAAA4HdAAAAAAADgd0AAAAAAAPB3QAAAAAAA8HdAAAAAAAAAeEAAAAAAAAB4QAAAAAAAEHhAAAAAAAAQeEAAAAAAACB4QAAAAAAAIHhAAAAAAAAweEAAAAAAADB4QAAAAAAAQHhAAAAAAABAeEAAAAAAAFB4QAAAAAAAUHhAAAAAAABgeEAAAAAAAGB4QAAAAAAAcHhAAAAAAABweEAAAAAAAIB4QAAAAAAAgHhAAAAAAACQeEAAAAAAAJB4QAAAAAAAoHhAAAAAAACgeEAAAAAAALB4QAAAAAAAsHhAAAAAAADAeEAAAAAAAMB4QAAAAAAA0HhAAAAAAADQeEAAAAAAAOB4QAAAAAAA4HhAAAAAAADweEAAAAAAAPB4QAAAAAAAAHlAAAAAAAAAeUAAAAAAABB5QAAAAAAAEHlAAAAAAAAgeUAAAAAAACB5QAAAAAAAMHlAAAAAAAAweUAAAAAAAEB5QAAAAAAAQHlAAAAAAABQeUAAAAAAAFB5QAAAAAAAYHlAAAAAAABgeUAAAAAAAHB5QAAAAAAAcHlAAAAAAACAeUAAAAAAAIB5QAAAAAAAkHlAAAAAAACQeUAAAAAAAKB5QAAAAAAAoHlAAAAAAACweUAAAAAAALB5QAAAAAAAwHlAAAAAAADAeUAAAAAAANB5QAAAAAAA0HlAAAAAAADgeUAAAAAAAOB5QAAAAAAA8HlAAAAAAADweUAAAAAAAAB6QAAAAAAAAHpAAAAAAAAQekAAAAAAABB6QAAAAAAAIHpAAAAAAAAgekAAAAAAADB6QAAAAAAAMHpAAAAAAABAekAAAAAAAEB6QAAAAAAAUHpAAAAAAABQekAAAAAAAGB6QAAAAAAAYHpAAAAAAABwekAAAAAAAHB6QAAAAAAAgHpAAAAAAACAekAAAAAAAJB6QAAAAAAAkHpAAAAAAACgekAAAAAAAKB6QAAAAAAAsHpAAAAAAACwekAAAAAAAMB6QAAAAAAAwHpAAAAAAADQekAAAAAAANB6QAAAAAAA4HpAAAAAAADgekAAAAAAAPB6QAAAAAAA8HpAAAAAAAAAe0AAAAAAAAB7QAAAAAAAEHtAAAAAAAAQe0AAAAAAACB7QAAAAAAAIHtAAAAAAAAwe0AAAAAAADB7QAAAAAAAQHtAAAAAAABAe0AAAAAAAFB7QAAAAAAAUHtAAAAAAABge0AAAAAAAGB7QAAAAAAAcHtAAAAAAABwe0AAAAAAAIB7QAAAAAAAgHtAAAAAAACQe0AAAAAAAJB7QAAAAAAAoHtAAAAAAACge0AAAAAAALB7QAAAAAAAsHtAAAAAAADAe0AAAAAAAMB7QAAAAAAA0HtAAAAAAADQe0AAAAAAAOB7QAAAAAAA4HtAAAAAAADwe0AAAAAAAPB7QAAAAAAAAHxAAAAAAAAAfEAAAAAAABB8QAAAAAAAEHxAAAAAAAAgfEAAAAAAACB8QAAAAAAAMHxAAAAAAAAwfEAAAAAAAEB8QAAAAAAAQHxAAAAAAABQfEAAAAAAAFB8QAAAAAAAYHxAAAAAAABgfEAAAAAAAHB8QAAAAAAAcHxAAAAAAACAfEAAAAAAAIB8QAAAAAAAkHxAAAAAAACQfEAAAAAAAKB8QAAAAAAAoHxAAAAAAACwfEAAAAAAALB8QAAAAAAAwHxAAAAAAADAfEAAAAAAANB8QAAAAAAA0HxAAAAAAADgfEAAAAAAAOB8QAAAAAAA8HxAAAAAAADwfEAAAAAAAAB9QAAAAAAAAH1AAAAAAAAQfUAAAAAAABB9QAAAAAAAIH1AAAAAAAAgfUAAAAAAADB9QAAAAAAAMH1AAAAAAABAfUAAAAAAAEB9QAAAAAAAUH1AAAAAAABQfUAAAAAAAGB9QAAAAAAAYH1AAAAAAABwfUAAAAAAAHB9QAAAAAAAgH1AAAAAAACAfUAAAAAAAJB9QAAAAAAAkH1AAAAAAACgfUAAAAAAAKB9QAAAAAAAsH1AAAAAAACwfUAAAAAAAMB9QAAAAAAAwH1AAAAAAADQfUAAAAAAANB9QAAAAAAA4H1AAAAAAADgfUAAAAAAAPB9QAAAAAAA8H1AAAAAAAAAfkAAAAAAAAB+QAAAAAAAEH5AAAAAAAAQfkAAAAAAACB+QAAAAAAAIH5AAAAAAAAwfkAAAAAAADB+QAAAAAAAQH5AAAAAAABAfkAAAAAAAFB+QAAAAAAAUH5AAAAAAABgfkAAAAAAAGB+QAAAAAAAcH5AAAAAAABwfkAAAAAAAIB+QAAAAAAAgH5AAAAAAACQfkAAAAAAAJB+QAAAAAAAoH5AAAAAAACgfkAAAAAAALB+QAAAAAAAsH5AAAAAAADAfkAAAAAAAMB+QAAAAAAA0H5AAAAAAADQfkAAAAAAAOB+QAAAAAAA4H5AAAAAAADwfkAAAAAAAPB+QAAAAAAAAH9AAAAAAAAAf0AAAAAAABB/QAAAAAAAEH9AAAAAAAAgf0AAAAAAACB/QAAAAAAAMH9AAAAAAAAwf0AAAAAAAEB/QAAAAAAAQH9AAAAAAABQf0AAAAAAAFB/QAAAAAAAYH9AAAAAAABgf0AAAAAAAHB/QAAAAAAAcH9AAAAAAACAf0AAAAAAAIB/QAAAAAAAkH9AAAAAAACQf0AAAAAAAKB/QAAAAAAAoH9AAAAAAACwf0AAAAAAALB/QAAAAAAAwH9AAAAAAADAf0AAAAAAANB/QAAAAAAA0H9AAAAAAADgf0AAAAAAAOB/QAAAAAAA8H9AAAAAAADwf0AAAAAAAACAQAAAAAAAAIBAAAAAAAAIgEAAAAAAAAiAQAAAAAAAEIBAAAAAAAAQgEAAAAAAABiAQAAAAAAAGIBAAAAAAAAggEAAAAAAACCAQAAAAAAAKIBAAAAAAAAogEAAAAAAADCAQAAAAAAAMIBAAAAAAAA4gEAAAAAAADiAQAAAAAAAQIBAAAAAAABAgEAAAAAAAEiAQAAAAAAASIBAAAAAAABQgEAAAAAAAFCAQAAAAAAAWIBAAAAAAABYgEAAAAAAAGCAQAAAAAAAYIBAAAAAAABogEAAAAAAAGiAQAAAAAAAcIBAAAAAAABwgEAAAAAAAHiAQAAAAAAAeIBAAAAAAACAgEAAAAAAAICAQAAAAAAAiIBAAAAAAACIgEAAAAAAAJCAQAAAAAAAkIBAAAAAAACYgEAAAAAAAJiAQAAAAAAAoIBAAAAAAACggEAAAAAAAKiAQAAAAAAAqIBAAAAAAACwgEAAAAAAALCAQAAAAAAAuIBAAAAAAAC4gEAAAAAAAMCAQAAAAAAAwIBAAAAAAADIgEAAAAAAAMiAQAAAAAAA0IBAAAAAAADQgEAAAAAAANiAQAAAAAAA2IBAAAAAAADggEAAAAAAAOCAQAAAAAAA6IBAAAAAAADogEAAAAAAAPCAQAAAAAAA8IBAAAAAAAD4gEAAAAAAAPiAQAAAAAAAAIFAAAAAAAAAgUAAAAAAAAiBQAAAAAAACIFAAAAAAAAQgUAAAAAAABCBQAAAAAAAGIFAAAAAAAAYgUAAAAAAACCBQAAAAAAAIIFAAAAAAAAogUAAAAAAACiBQAAAAAAAMIFAAAAAAAAwgUAAAAAAADiBQAAAAAAAOIFAAAAAAABAgUAAAAAAAECBQAAAAAAASIFAAAAAAABIgUAAAAAAAFCBQAAAAAAAUIFAAAAAAABYgUAAAAAAAFiBQAAAAAAAYIFAAAAAAABggUAAAAAAAGiBQAAAAAAAaIFAAAAAAABwgUAAAAAAAHCBQAAAAAAAeIFAAAAAAAB4gUAAAAAAAICBQAAAAAAAgIFAAAAAAACIgUAAAAAAAIiBQAAAAAAAkIFAAAAAAACQgUAAAAAAAJiBQAAAAAAAmIFAAAAAAACggUAAAAAAAKCBQAAAAAAAqIFAAAAAAACogUAAAAAAALCBQAAAAAAAsIFAAAAAAAC4gUAAAAAAALiBQAAAAAAAwIFAAAAAAADAgUAAAAAAAMiBQAAAAAAAyIFAAAAAAADQgUAAAAAAANCBQAAAAAAA2IFAAAAAAADYgUAAAAAAAOCBQAAAAAAA4IFAAAAAAADogUAAAAAAAOiBQAAAAAAA8IFAAAAAAADwgUAAAAAAAPiBQAAAAAAA+IFAAAAAAAAAgkAAAAAAAACCQAAAAAAACIJAAAAAAAAIgkAAAAAAABCCQAAAAAAAEIJAAAAAAAAYgkAAAAAAABiCQAAAAAAAIIJAAAAAAAAggkAAAAAAACiCQAAAAAAAKIJAAAAAAAAwgkAAAAAAADCCQAAAAAAAOIJAAAAAAAA4gkAAAAAAAECCQAAAAAAAQIJAAAAAAABIgkAAAAAAAEiCQAAAAAAAUIJAAAAAAABQgkAAAAAAAFiCQAAAAAAAWIJAAAAAAABggkAAAAAAAGCCQAAAAAAAaIJAAAAAAABogkAAAAAAAHCCQAAAAAAAcIJAAAAAAAB4gkAAAAAAAHiCQAAAAAAAgIJAAAAAAACAgkAAAAAAAIiCQAAAAAAAiIJAAAAAAACQgkAAAAAAAJCCQAAAAAAAmIJAAAAAAACYgkAAAAAAAKCCQAAAAAAAoIJAAAAAAACogkAAAAAAAKiCQAAAAAAAsIJAAAAAAACwgkAAAAAAALiCQAAAAAAAuIJAAAAAAADAgkAAAAAAAMCCQAAAAAAAyIJAAAAAAADIgkAAAAAAANCCQAAAAAAA0IJAAAAAAADYgkAAAAAAANiCQAAAAAAA4IJAAAAAAADggkAAAAAAAOiCQAAAAAAA6IJAAAAAAADwgkAAAAAAAPCCQAAAAAAA+IJAAAAAAAD4gkAAAAAAAACDQAAAAAAAAINAAAAAAAAIg0AAAAAAAAiDQAAAAAAAEINAAAAAAAAQg0AAAAAAABiDQAAAAAAAGINAAAAAAAAgg0AAAAAAACCDQAAAAAAAKINAAAAAAAAog0AAAAAAADCDQAAAAAAAMINAAAAAAAA4g0AAAAAAADiDQAAAAAAAQINAAAAAAABAg0AAAAAAAEiDQAAAAAAASINAAAAAAABQg0AAAAAA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","dtype":"float64","order":"little","shape":[8002]},"y":{"__ndarray__":"AAAAAAAAAAAekaR0QWEwvx6RpHRBYTC/HpGkdEFhQL8ekaR0QWFAv6zZ9i7ikUi/rNn2LuKRSL8ekaR0QWFQvx6RpHRBYVC/ZbXN0ZF5VL9ltc3RkXlUv6zZ9i7ikVi/rNn2LuKRWL/0/R+MMqpcv/T9H4wyqly/HpGkdEFhYL8ekaR0QWFgv0EjOaNpbWK/QSM5o2ltYr9ltc3RkXlkv2W1zdGReWS/iUdiALqFZr+JR2IAuoVmv6zZ9i7ikWi/rNn2LuKRaL/Qa4tdCp5qv9Bri10Knmq/9P0fjDKqbL/0/R+MMqpsvxiQtLpatm6/GJC0ulq2br8ekaR0QWFwvx6RpHRBYXC/L9rui1Vncb8v2u6LVWdxv0EjOaNpbXK/QSM5o2ltcr9TbIO6fXNzv1Nsg7p9c3O/ZbXN0ZF5dL9ltc3RkXl0v3f+F+mlf3W/d/4X6aV/db+JR2IAuoV2v4lHYgC6hXa/m5CsF86Ld7+bkKwXzot3v6zZ9i7ikXi/rNn2LuKReL++IkFG9pd5v74iQUb2l3m/0GuLXQqeer/Qa4tdCp56v9l0IY6wUHu/2XQhjrBQe7/0DCpQHNB7v/QMKlAc0Hu/Mt0LYjpNfL8y3QtiOk18v6jDH84oyHy/qMMfzijIfL+/SrkjA0F9v79KuSMDQX2/bF1GvuK3fb9sXUa+4rd9v5hlgQLfLH6/mGWBAt8sfr9kflqTDaB+v2R+WpMNoH6/TH/sf4IRf79Mf+x/ghF/v/HDk2tQgX+/8cOTa1CBf7/5twqxiO9/v/m3CrGI73+/US+kwB0ugL9RL6TAHS6Av06GXv+7Y4C/ToZe/7tjgL+q1LcqppiAv6rUtyqmmIC//F406OLMgL/8XjTo4syAv02vY3Z4AIG/Ta9jdngAgb+d52a1bDOBv53nZrVsM4G/hAiULsVlgb+ECJQuxWWBv2FlUhuHl4G/YWVSG4eXgb+HcUhrt8iBv4dxSGu3yIG/y6vvyVr5gb/Lq+/JWvmBv2GSoKN1KYK/YZKgo3Upgr/aHiYqDFmCv9oeJioMWYK/dz7mWCKIgr93PuZYIoiCv1X9qvi7toK/Vf2q+Lu2gr+dnhaj3OSCv52eFqPc5IK/OpbLxYcSg786lsvFhxKDv4ZAUKXAP4O/hkBQpcA/g7+GQ7VfimyDv4ZDtV+KbIO/jrQE7+eYg7+OtATv55iDv8RofyvcxIO/xGh/K9zEg7/pOa3NafCDv+k5rc1p8IO/DYBEcJMbhL8NgERwkxuEv3aJ7JFbRoS/donskVtGhL9ncd6WxHCEv2dx3pbEcIS/olpnytCahL+iWmfK0JqEv/bBTmCCxIS/9sFOYILEhL/UVSN22+2Ev9RVI3bb7YS/N4FwFN4Whb83gXAU3haFv4yg3i+MP4W/jKDeL4w/hb/kpT+q52eFv+SlP6rnZ4W/6cWJU/KPhb/pxYlT8o+Fv0Ogweqtt4W/Q6DB6q23hb/9MtUeHN+Fv/0y1R4c34W/xMlojz4Ghr/EyWiPPgaGv8H9ls0WLYa/wf2WzRYthr8qwqRcplOGvyrCpFymU4a/F2Oqsu55hr8XY6qy7nmGvyZIMjnxn4a/JkgyOfGfhr9rOs5Nr8WGv2s6zk2vxYa/t9yjQirrhr+33KNCKuuGv6728F5jEIe/rvbwXmMQh7+kJYjfWzWHv6QliN9bNYe/Z3pG9xRah79nekb3FFqHv91/gs+Pfoe/3X+Cz49+h7/HHHWIzaKHv8ccdYjNooe/rrmcOc/Gh7+uuZw5z8aHv/oLG/KV6oe/+gsb8pXqh7+S3w25Ig6Iv5LfDbkiDoi/wDHjjXYxiL/AMeONdjGIv6vpqGiSVIi/q+moaJJUiL8pdVg6d3eIvyl1WDp3d4i/cYse7SWaiL9xix7tJZqIv1VSn2SfvIi/VVKfZJ+8iL9+Hjd+5N6Iv34eN37k3oi/7wI4EfYAib/vAjgR9gCJv3xgJO/UIom/fGAk79Qiib+PoubjgUSJv4+i5uOBRIm/O1MGtv1lib87Uwa2/WWJvxau2iZJh4m/Fq7aJkmHib9K1rryZKiJv0rWuvJkqIm/KdIr0VHJib8p0ivRUcmJvyxsDHUQ6om/LGwMdRDqib8gF7+MoQqKvyAXv4yhCoq/efFRwgUrir958VHCBSuKv90Bpbs9S4q/3QGluz1Lir9hxY4aSmuKv2HFjhpKa4q/Syb/fCuLir9LJv98K4uKv/TwIH3iqoq/9PAgfeKqir/X2nmxb8qKv9faebFvyoq/zS4JrdPpir/NLgmt0+mKvx0wZf8OCYu/HTBl/w4Ji79LRdc0IiiLv0tF1zQiKIu/I/p21g1Hi78j+nbWDUeLv+nnQ2rSZYu/6edDatJli7+jkT5zcISLv6ORPnNwhIu/f0GAceiii79/QYBx6KKLv8vzUeI6wYu/y/NR4jrBi78bW0JAaN+LvxtbQkBo34u/qgg7A3H9i7+qCDsDcf2Lv03DlKBVG4y/TcOUoFUbjL/WFiuLFjmMv9YWK4sWOYy/HCVvM7RWjL8cJW8ztFaMv47BeQcvdIy/jsF5By90jL9s3xxzh5GMv2zfHHOHkYy/rlr0372ujL+uWvTfva6Mv/QidrXSy4y/9CJ2tdLLjL+AzwFZxuiMv4DPAVnG6Iy/BqPvLZkFjb8Go+8tmQWNv34Fn5VLIo2/fgWflUsijb8ceoTv3T6Nvxx6hO/dPo2/Ehc3mVBbjb8SFzeZUFuNv26Efe6jd42/boR97qN3jb9wh1pJ2JONv3CHWknYk42/BB8ZAu6vjb8EHxkC7q+NvwQ2WG/ly42/BDZYb+XLjb/i7xXmvueNv+LvFea+542/qpO6uXoDjr+qk7q5egOOv4QZIzwZH46/hBkjPBkfjr9wXqu9mjqOv3Beq72aOo6/6AE4jf9Vjr/oATiN/1WOv8zwP/hHcY6/zPA/+Edxjr/ooNVKdIyOv+ig1Up0jI6/PACwz4Snjr88ALDPhKeOvwQbM9B5wo6/BBsz0HnCjr84e3iUU92Ovzh7eJRT3Y6/ekRXYxL4jr96RFdjEviOv9YObIK2Eo+/1g5sgrYSj7/ggiA2QC2Pv+CCIDZALY+/krmywa9Hj7+SubLBr0ePvzZiPGcFYo+/NmI8ZwVij79ssLlnQXyPv2ywuWdBfI+/cBQQA2SWj79wFBADZJaPv6i/FHhtsI+/qL8UeG2wj78095IEXsqPvzT3kgReyo+/fDZS5TXkj798NlLlNeSPv2wjHFb1/Y+/bCMcVvX9j7/xKuFIzguQv/Eq4UjOC5C/HvoR6ZUYkL8e+hHplRiQvwyTGahRJZC/DJMZqFElkL+SL/2hATKQv5Iv/aEBMpC/lsFQ8qU+kL+WwVDypT6Qv2ZyObQ+S5C/ZnI5tD5LkL8MEHACzFeQvwwQcALMV5C/MGlD901kkL8waUP3TWSQvy2YmqzEcJC/LZiarMRwkL/oPfc7MH2Qv+g99zswfZC/6ax3vpCJkL/prHe+kImQv00F2UzmlZC/TQXZTOaVkL8HQnn/MKKQvwdCef8wopC/+DdZ7nCukL/4N1nucK6QvzyHHjGmupC/PIceMaa6kL9GfxXf0MaQv0Z/Fd/QxpC/E/YyD/HSkL8T9jIP8dKQv/MSFtgG35C/8xIW2AbfkL9ODQpQEuuQv04NClAS65C/vt8HjRP3kL++3weNE/eQv+Lvt6QKA5G/4u+3pAoDkb9Iq3Os9w6Rv0irc6z3DpG/uxlHudoakb+7GUe52hqRv1hl8t+zJpG/WGXy37Mmkb+yWOs0gzKRv7JY6zSDMpG/UNNezEg+kb9Q017MSD6Rv900MroESpG/3TQyugRKkb9EvwQSt1WRv0S/BBK3VZG/EfAw519hkb8R8DDnX2GRv0LRzUz/bJG/QtHNTP9skb/hQbBVlXiRv+FBsFWVeJG/ljZsFCKEkb+WNmwUIoSRv3XyVZulj5G/dfJVm6WPkb9HOIP8H5uRv0c4g/wfm5G/dHTMSZGmkb90dMxJkaaRv97fzZT5sZG/3t/NlPmxkb/Rm+juWL2Rv9Gb6O5YvZG/PcdDaa/Ikb89x0Npr8iRv3CNzRT905G/cI3NFP3Tkb99LjwCQt+Rv30uPAJC35G/fAEPQn7qkb98AQ9CfuqRv9twj+Sx9ZG/23CP5LH1kb/Q8NH53ACSv9Dw0fncAJK/OvC2kf8Lkr868LaR/wuSv/rD67sZF5K/+sPruxkXkr/+jOuHKyKSv/6M64crIpK/GhkABTUtkr8aGQAFNS2Sv9a+QkI2OJK/1r5CQjY4kr9SNJ1OL0OSv1I0nU4vQ5K/cmHKOCBOkr9yYco4IE6Sv1YtVw8JWZK/Vi1XDwlZkr9OR6Pg6WOSv05Ho+DpY5K/eOvhusJukr946+G6wm6SvwqjGqyTeZK/CqMarJN5kr9uACrCXISSv24AKsJchJK/YFfCCh6Pkr9gV8IKHo+SvwRxbJPXmZK/BHFsk9eZkr82PIhpiaSSvzY8iGmJpJK/EnpNmjOvkr8Sek2aM6+Sv9ZmzDLWuZK/1mbMMta5kr84X+4/ccSSvzhf7j9xxJK/PIJ2zgTPkr88gnbOBM+Sv8BPAuuQ2ZK/wE8C65DZkr+iQwqiFeSSv6JDCqIV5JK/yG3i/5Lukr/IbeL/ku6Sv/4GuxAJ+ZK//ga7EAn5kr+6AqHgdwOTv7oCoeB3A5O/Bp5+e98Nk78Gnn573w2Tv3DrG+0/GJO/cOsb7T8Yk78cXB9BmSKTvxxcH0GZIpO/OEYOg+ssk784Rg6D6yyTv45oTb42N5O/jmhNvjY3k7+uayH+ekGTv65rIf56QZO/WGCvTbhLk79YYK9NuEuTv4A7/bfuVZO/gDv9t+5Vk7/eT/JHHmCTv95P8kceYJO/HMVXCEdqk78cxVcIR2qTv6gM2QNpdJO/qAzZA2l0k79WVARFhH6Tv1ZUBEWEfpO/svZK1piIk7+y9krWmIiTv0DpAcKmkpO/QOkBwqaSk7+MKGISrpyTv4woYhKunJO/OiKJ0a6mk786IonRrqaTvwYdeQmpsJO/Bh15Camwk7/OnhnEnLqTv86eGcScupO/vtA3C4rEk7++0DcLisSTv4jhhuhwzpO/iOGG6HDOk7/MZaBlUdiTv8xloGVR2JO/wLYEjCvik7/AtgSMK+KTvwxPG2X/65O/DE8bZf/rk7/kJTP6zPWTv+QlM/rM9ZO/ngiDVJT/k7+eCINUlP+Tv27yKX1VCZS/bvIpfVUJlL+4Yi99EBOUv7hiL30QE5S/srGDXcUclL+ysYNdxRyUv5RjACd0JpS/lGMAJ3QmlL8uemjiHDCUvy56aOIcMJS/KMVomL85lL8oxWiYvzmUv7wwmFFcQ5S/vDCYUVxDlL8ME3gW80yUvwwTeBbzTJS/KHh074NWlL8oeHTvg1aUv6Rs5OQOYJS/pGzk5A5glL/8Rgr/k2mUv/xGCv+TaZS/lO8TRhNzlL+U7xNGE3OUv34nG8KMfJS/ficbwox8lL8cziV7AIaUvxzOJXsAhpS/aCUmeW6PlL9oJSZ5bo+UvyQV+8PWmJS/JBX7w9aYlL/obHBjOaKUv+hscGM5opS/AiU/X5arlL8CJT9flquUvzyeDb/ttJS/PJ4Nv+20lL+Q4G+KP76Uv5Dgb4o/vpS/1NjnyIvHlL/U2OfIi8eUv1CV5YHS0JS/UJXlgdLQlL9Sgce8E9qUv1KBx7wT2pS/xJ/agE/jlL/En9qAT+OUv9LEWtWF7JS/0sRa1YXslL+GznLBtvWUv4bOcsG29ZS/jNw8TOL+lL+M3DxM4v6Uv/SGwnwICJW/9IbCfAgIlb8iFP1ZKRGVvyIU/VkpEZW/0K3V6kQalb/QrdXqRBqVvziVJTZbI5W/OJUlNlsjlb9aVrZCbCyVv1pWtkJsLJW/gvpBF3g1lb+C+kEXeDWVv/A5c7p+PpW/8Dlzun4+lb+srOUygEeVv6ys5TKAR5W/rPolh3xQlb+s+iWHfFCVvxgLsr1zWZW/GAuyvXNZlb/iMvncZWKVv+Iy+dxlYpW/lGJc61Jrlb+UYlzrUmuVv3RTLu86dJW/dFMu7zp0lb/ks7PuHX2Vv+Szs+4dfZW/EFMj8PuFlb8QUyPw+4WVv/pLpvnUjpW/+kum+dSOlb/UL1gRqZeVv9QvWBGpl5W/ri9HPXiglb+uL0c9eKCVv4BFdINCqZW/gEV0g0Kplb+YXNPpB7KVv5hc0+kHspW/ZHlLdsi6lb9keUt2yLqVv6Lgti6Ew5W/ouC2LoTDlb/2PeMYO8yVv/Y94xg7zJW/7MmROu3Ulb/syZE67dSVv2hvd5ma3ZW/aG93mZrdlb948Dw7Q+aVv3jwPDtD5pW/sAp/Jefulb+wCn8l5+6Vv+iazl2G95W/6JrOXYb3lb90wLDpIACWv3TAsOkgAJa/4P+ezrYIlr/g/57OtgiWvxxlBxJIEZa/HGUHEkgRlr8kpUy51BmWvySlTLnUGZa/QD/GyVwilr9AP8bJXCKWv6ydwEjgKpa/rJ3ASOAqlr/UNX07XzOWv9Q1fTtfM5a/Fqgyp9k7lr8WqDKn2TuWvwjfDJFPRJa/CN8MkU9Elr9QLi3+wEyWv1AuLf7ATJa/DHGq8y1Vlr8McarzLVWWv7wnkXaWXZa/vCeRdpZdlr/UleOL+mWWv9SV44v6ZZa/yN6ZOFpulr/I3pk4Wm6Wv8wiooG1dpa/zCKigbV2lr8Em+BrDH+WvwSb4GsMf5a/fLUv/F6Hlr98tS/8XoeWv5IwYDetj5a/kjBgN62Plr8UNjki95eWvxQ2OSL3l5a//HV4wTyglr/8dXjBPKCWv7hA0hl+qJa/uEDSGX6olr80ofEvu7CWvzSh8S+7sJa/cHZ4CPS4lr9wdngI9LiWv7qM/6cowZa/uoz/pyjBlr+cthYTWcmWv5y2FhNZyZa/cOVEToXRlr9w5UROhdGWv5JBCF6t2Za/kkEIXq3Zlr9IQtZG0eGWv0hC1kbR4Za/VMUbDfHplr9UxRsN8emWvzQmPbUM8pa/NCY9tQzylr8IVZZDJPqWvwhVlkMk+pa/OO16vDcCl7847Xq8NwKXv8xLNiRHCpe/zEs2JEcKl79YpQt/UhKXv1ilC39SEpe/0Bs20Vkal7/QGzbRWRqXv+LT6B5dIpe/4tPoHl0il78gCk9sXCqXvyAKT2xcKpe/4CeMvVcyl7/gJ4y9VzKXv9DXuxZPOpe/0Ne7Fk86l79EGvJ7QkKXv0Qa8ntCQpe/SFk78TFKl79IWTvxMUqXv1x8nHodUpe/XHyceh1Sl78E/BIcBVqXvwT8EhwFWpe/EPWU2ehhl78Q9ZTZ6GGXv5A7EbfIaZe/kDsRt8hpl7+wbW+4pHGXv7Btb7ikcZe/KAaQ4Xx5l78oBpDhfHmXv5huTDZRgZe/mG5MNlGBl7+IEXe6IYmXv4gRd7ohiZe/RGzbce6Ql79EbNtx7pCXv3AgPmC3mJe/cCA+YLeYl79kBV2JfKCXv2QFXYl8oJe/WDnv8D2ol79YOe/wPaiXv0QypZr7r5e/RDKlmvuvl7+wziiKtbeXv7DOKIq1t5e/HGYdw2u/l78cZh3Da7+Xv1DZH0kex5e/UNkfSR7Hl7+QosYfzc6Xv5Cixh/Nzpe/VOWhSnjWl79U5aFKeNaXvxx+O80f3pe/HH47zR/el7/cERerw+WXv9wRF6vD5Ze/WB2y52Ptl79YHbLnY+2XvzQEhIYA9Ze/NASEhgD1l7/oH/6KmfyXv+gf/oqZ/Je/jM6L+C4EmL+Mzov4LgSYv0yBktLAC5i/TIGS0sALmL/kynEcTxOYv+TKcRxPE5i/0G2D2dkamL/QbYPZ2RqYv0RqGw1hIpi/RGobDWEimL8sDIi65CmYvywMiLrkKZi/wPgR5WQxmL/A+BHlZDGYvxw8/I/hOJi/HDz8j+E4mL+gVoS+WkCYv6BWhL5aQJi/GEric9BHmL8YSuJz0EeYv9ymSLNCT5i/3KZIs0JPmL+smOR/sVaYv6yY5H+xVpi/bPPd3BxemL9s893cHF6Yv8Q/V82EZZi/xD9XzYRlmL+Ex21U6WyYv4THbVTpbJi/AKI5dUp0mL8Aojl1SnSYvzDAzTKoe5i/MMDNMqh7mL+g+DeQAoOYv6D4N5ACg5i/dBOBkFmKmL90E4GQWYqYv/zVrDatkZi//NWsNq2RmL9oDrqF/ZiYv2gOuoX9mJi/KJ+igEqgmL8on6KASqCYv1CKWyqUp5i/UIpbKpSnmL+4/NSF2q6Yv7j81IXarpi/IFn6lR22mL8gWfqVHbaYvxRDsl1dvZi/FEOyXV29mL+wqd7fmcSYv7Cp3t+ZxJi/cNJcH9PLmL9w0lwf08uYv6BjBR8J05i/oGMFHwnTmL/cbqzhO9qYv9xurOE72pi/bHshamvhmL9seyFqa+GYv2CQL7uX6Ji/YJAvu5fomL/MPp3XwO+Yv8w+ndfA75i/oKsswub2mL+gqyzC5vaYv5iZm30J/pi/mJmbfQn+mL/4cqMMKQWZv/hyowwpBZm/OFP5cUUMmb84U/lxRQyZv4gQTrBeE5m/iBBOsF4Tmb9ERU7KdBqZv0RFTsp0Gpm/PFmiwochmb88WaLChyGZvwCL7puXKJm/AIvum5comb/w+NJYpC+Zv/D40likL5m/TKrr+602mb9Mquv7rTaZvxiY0Ie0PZm/GJjQh7Q9mb/4tRX/t0SZv/i1Ff+3RJm/4PpKZLhLmb/g+kpkuEuZv8Bp/Lm1Upm/wGn8ubVSmb8IGrICsFmZvwgasgKwWZm/IEDwQKdgmb8gQPBAp2CZv7g1N3ebZ5m/uDU3d5tnmb8YggOojG6ZvxiCA6iMbpm/SOLN1Xp1mb9I4s3VenWZvyRRCwNmfJm/JFELA2Z8mb9gDy0yToOZv2APLTJOg5m/bKugZTOKmb9sq6BlM4qZv1gJ0J8VkZm/WAnQnxWRmb94aiHj9JeZv3hqIeP0l5m/LHX3MdGemb8sdfcx0Z6Zv2Q8sY6qpZm/ZDyxjqqlmb8cR6r7gKyZvxxHqvuArJm/3Jc6e1Szmb/clzp7VLOZvwS0tg8lupm/BLS2DyW6mb8Iq2+78sCZvwirb7vywJm/tB2zgL3Hmb+0HbOAvceZv0RFy2GFzpm/REXLYYXOmb9g+v5gStWZv2D6/mBK1Zm/LLyRgAzcmb8svJGADNyZvxS3w8LL4pm/FLfDwsvimb/Ay9EpiOmZv8DL0SmI6Zm/sJX1t0Hwmb+wlfW3QfCZvwxyZW/49pm/DHJlb/j2mb8ghlRSrP2ZvyCGVFKs/Zm/GMbyYl0Emr8YxvJiXQSav0j7bKMLC5q/SPtsowsLmr+0yuwVtxGav7TK7BW3EZq/ZLuYvF8Ymr9ku5i8Xxiav6g8lJkFH5q/qDyUmQUfmr9grP+uqCWav2Cs/66oJZq/DF34/kgsmr8MXfj+SCyav/ibmIvmMpq/+JuYi+Yymr88t/dWgTmavzy391aBOZq/vAMqYxlAmr+8AypjGUCavwTjQLKuRpq/BONAsq5Gmr9AyUpGQU2av0DJSkZBTZq/3EJTIdFTmr/cQlMh0VOav2j6YkVeWpq/aPpiRV5amr88vn+06GCavzy+f7ToYJq/DIascHBnmr8MhqxwcGeav4R46Xv1bZq/hHjpe/Vtmr/E8DPYd3Sav8TwM9h3dJq/6IOGh/d6mr/og4aH93qav1QG2Yt0gZq/VAbZi3SBmr8skSDn7oeavyyRIOfuh5q/iIdPm2aOmr+Ih0+bZo6av8ibVarblJq/yJtVqtuUmr+w1B8WTpuav7DUHxZOm5q/qJKY4L2hmr+okpjgvaGav8SUpwsrqJq/xJSnCyuomr/M/TGZla6av8z9MZmVrpq/SFkai/20mr9IWRqL/bSav3ygQONiu5q/fKBA42K7mr8oP4KjxcGavyg/gqPFwZq/nBi6zSXImr+cGLrNJciav0yMwGODzpq/TIzAY4POmr/Eemtn3tSav8R6a2fe1Jq/QEqO2jbbmr9ASo7aNtuav3Dr+b6M4Zq/cOv5vozhmr8E3nwW4OeavwTefBbg55q/UDXj4jDumr9QNePiMO6av9Sc9iV/9Jq/1Jz2JX/0mr+oXH7hyvqav6hcfuHK+pq/HF4/FxQBm78cXj8XFAGbv/gv/MhaB5u/+C/8yFoHm7/0CnX4ng2bv/QKdfieDZu/+NVnp+ATm7/41Wen4BObv4AqkNcfGpu/gCqQ1x8am7/QWKeKXCCbv9BYp4pcIJu/JGxkwpYmm78kbGTCliabv+QufIDOLJu/5C58gM4sm7/ALqHGAzObv8AuocYDM5u/3MCDljY5m7/cwIOWNjmbv8AF0vFmP5u/wAXS8WY/m7947TfalEWbv3jtN9qURZu/gDtfUcBLm7+AO19RwEubv8CK71jpUZu/wIrvWOlRm79wUY7yD1ibv3BRjvIPWJu/+OTeHzRem7/45N4fNF6bv8h9guJVZJu/yH2C4lVkm78oOxg8dWqbvyg7GDx1apu/BCc9LpJwm78EJz0uknCbv4w5jLqsdpu/jDmMuqx2m78UXZ7ixHybvxRdnuLEfJu/nHEKqNqCm7+ccQqo2oKbv3hQZQzuiJu/eFBlDO6Im78E0EER/46bvwTQQRH/jpu/GMcwuA2Vm78YxzC4DZWbv5wQwQIam5u/nBDBAhqbm78Qj3/yI6GbvxCPf/IjoZu/CDD3iCunm78IMPeIK6ebv4jvsMcwrZu/iO+wxzCtm7+I2zOwM7Obv4jbM7Azs5u/VBcFRDS5m79UFwVENLmbv9Dep4Qyv5u/0N6nhDK/m7/siZ1zLsWbv+yJnXMuxZu/0I9lEijLm7/Qj2USKMubvzCKfWIf0Zu/MIp9Yh/Rm7+UOGFlFNebv5Q4YWUU15u/eIOKHAfdm794g4ocB92bv4R/cYn34pu/hH9xiffim7/AcIyt5eibv8BwjK3l6Ju/lM1PitHum7+UzU+K0e6bvwhCLiG79Ju/CEIuIbv0m7/Asphzovqbv8CymHOi+pu/BED+gocAnL8EQP6ChwCcv9hIzFBqBpy/2EjMUGoGnL/obW7eSgycv+htbt5KDJy/jJROLSkSnL+MlE4tKRKcv7jp1D4FGJy/uOnUPgUYnL/c5GcU3x2cv9zkZxTfHZy/0Epsr7YjnL/QSmyvtiOcv8QwRRGMKZy/xDBFEYwpnL/w/lM7Xy+cv/D+UztfL5y/hHP4LjA1nL+Ec/guMDWcv3ClkO3+Opy/cKWQ7f46nL8gB3l4y0CcvyAHeXjLQJy/RGkM0ZVGnL9EaQzRlUacv4T9o/hdTJy/hP2j+F1MnL80WZfwI1KcvzRZl/AjUpy/CHg8uudXnL8IeDy651ecv7i+51apXZy/uL7nVqldnL+c/evHaGOcv5z968doY5y/WHOaDiZpnL9Yc5oOJmmcv2DPQizhbpy/YM9CLOFunL+cNDMimnScv5w0MyKadJy/6Du48VB6nL/oO7jxUHqcv6j2HJwFgJy/qPYcnAWAnL8s8aoiuIWcvyzxqiK4hZy/WDWqhmiLnL9YNaqGaIucv/RMYckWkZy/9ExhyRaRnL80RBXswpacvzREFezClpy/HKwJ8GycnL8crAnwbJycv+ScgNYUopy/5JyA1hSinL9ouLqguqecv2i4uqC6p5y/eCz3T16tnL94LPdPXq2cvzi1c+X/spy/OLVz5f+ynL9sn2xin7icv2yfbGKfuJy/0MocyDy+nL/QyhzIPL6cv1ysvRfYw5y/XKy9F9jDnL+QUIdSccmcv5BQh1JxyZy/qF2weQjPnL+oXbB5CM+cv+AVbo6d1Jy/4BVujp3UnL+wWfSRMNqcv7BZ9JEw2py/+Kl1hcHfnL/4qXWFwd+cvygqI2pQ5Zy/KCojalDlnL94oixB3eqcv3iiLEHd6py/AILAC2jwnL8AgsALaPCcv+zgC8vw9Zy/7OALy/D1nL98gjqAd/ucv3yCOoB3+5y/ONd2LPwAnb8413Ys/ACdv+z+6dB+Bp2/7P7p0H4Gnb/Qyrtu/wudv9DKu27/C52/gL8SB34Rnb+AvxIHfhGdvwgXFJv6Fp2/CBcUm/oWnb/wwuMrdRydv/DC4yt1HJ2/NG6kuu0hnb80bqS67SGdv0B/d0hkJ52/QH93SGQnnb/gGX3W2Cydv+AZfdbYLJ2/SCHUZUsynb9IIdRlSzKdv/A5mve7N52/8Dma97s3nb+Ey+uMKj2dv4TL64wqPZ2/0ALkJpdCnb/QAuQml0Kdv6DTnMYBSJ2/oNOcxgFInb+o+i5tak2dv6j6Lm1qTZ2/UP+xG9FSnb9Q/7Eb0VKdv6Q1PNM1WJ2/pDU80zVYnb8MwOKUmF2dvwzA4pSYXZ2/QJG5Yflinb9Akblh+WKdv/Bt0zpYaJ2/8G3TOlhonb+47kEhtW2dv7juQSG1bZ2/uIEVFhBznb+4gRUWEHOdv4hsXRppeJ2/iGxdGml4nb/QzScvwH2dv9DNJy/AfZ2/IJ+BVRWDnb8gn4FVFYOdv5C2do5oiJ2/kLZ2jmiInb+UyBHbuY2dv5TIEdu5jZ2/kGlcPAmTnb+QaVw8CZOdv5gPX7NWmJ2/mA9fs1aYnb8kFCFBop2dvyQUIUGinZ2/oLWo5uuinb+gtajm66KdvygZ+6QzqJ2/KBn7pDOonb8cTBx9ea2dvxxMHH15rZ2/xEUPcL2ynb/ERQ9wvbKdv/To1X7/t52/9OjVfv+3nb+YBXGqP72dv5gFcao/vZ2/UFrg833Cnb9QWuDzfcKdv/yVIly6x52//JUiXLrHnb9gWTXk9Mydv2BZNeT0zJ2/oDgVjS3Snb+gOBWNLdKdv7y8vVdk152/vLy9V2TXnb88ZSlFmdydvzxlKUWZ3J2/mKlRVszhnb+YqVFWzOGdv8D6Loz95p2/wPoujP3mnb+cxLjnLOydv5zEuOcs7J2/jG/laVrxnb+Mb+VpWvGdv9hhqhOG9p2/2GGqE4b2nb8kAfzlr/udvyQB/OWv+52/+LPN4dcAnr/4s83h1wCevxjjEQj+BZ6/GOMRCP4Fnr8A+7lZIguevwD7uVkiC56/QG2210QQnr9AbbbXRBCevwCy9oJlFZ6/ALL2gmUVnr9ISWlchBqev0hJaVyEGp6/eLz7ZKEfnr94vPtkoR+ev6ifmp28JJ6/qJ+anbwknr/okjEH1imev+iSMQfWKZ6/0EOrou0unr/QQ6ui7S6ev6hu8XADNJ6/qG7xcAM0nr/g3+xyFzmev+Df7HIXOZ6/WHWFqSk+nr9YdYWpKT6ev6AfohU6Q56/oB+iFTpDnr9o4yi4SEiev2jjKLhISJ6/uNr+kVVNnr+42v6RVU2ev1A2CKRgUp6/UDYIpGBSnr/APijvaVeev8A+KO9pV56/8FVBdHFcnr/wVUF0cVyevzD4NDR3YZ6/MPg0NHdhnr+IveMve2aev4i94y97Zp6/EFstaH1rnr8QWy1ofWuev/Cj8N19cJ6/8KPw3X1wnr/wiguSfHWev/CKC5J8dZ6/YCNbhXl6nr9gI1uFeXqev4Ciu7h0f56/gKK7uHR/nr+YYAgtboSev5hgCC1uhJ6/QNob42WJnr9A2hvjZYmev4Cxz9tbjp6/gLHP21uOnr8Ir/wXUJOevwiv/BdQk56/UMN6mEKYnr9Qw3qYQpiev8gHIV4znZ6/yAchXjOdnr8AwMVpIqKevwDAxWkiop6/0Fo+vA+nnr/QWj68D6eev3BzX1b7q56/cHNfVvurnr+g0vw45bCev6DS/DjlsJ6/yG/pZM21nr/Ib+lkzbWevyBy99qzup6/IHL32rO6nr+oMfibmL+ev6gx+JuYv56/cDi8qHvEnr9wOLyoe8Sev4hDEwJdyZ6/iEMTAl3Jnr8oRMyoPM6evyhEzKg8zp6/0GC1nRrTnr/QYLWdGtOevzD2m+H2156/MPab4fbXnr9gmEx10dyev2CYTHXR3J6/6BOTWarhnr/oE5NZquGev7huOo+B5p6/uG46j4Hmnr9A6QwXV+uev0DpDBdX656/cP/T8Srwnr9w/9PxKvCev+BpWCD99J6/4GlYIP30nr+QHmKjzfmev5AeYqPN+Z6/OFK4e5z+nr84Urh7nP6evxh5IappA5+/GHkhqmkDn78ISGMvNQifvwhIYy81CJ+/aLVCDP8Mn79otUIM/wyfv0D6g0HHEZ+/QPqDQccRn78Ik+rPjRafvwiT6s+NFp+/0EA5uFIbn7/QQDm4UhufvxAKMvsVIJ+/EAoy+xUgn7+4O5aZ1ySfv7g7lpnXJJ+/KGomlJcpn78oaiaUlymfv/hxoutVLp+/+HGi61Uun78gecmgEjOfvyB5yaASM5+/wO9ZtM03n7/A71m0zTefvyCRESeHPJ+/IJERJ4c8n7+YZK35PkGfv5hkrfk+QZ+/YL7pLPVFn79gvuks9UWfv8BAgsGpSp+/wECCwalKn7+Y3DG4XE+fv5jcMbhcT5+/kNKyEQ5Un7+Q0rIRDlSfv+Czvs69WJ+/4LO+zr1Yn784Yw7wa12fvzhjDvBrXZ+/iBVadhhin7+IFVp2GGKfvxBTWWLDZp+/EFNZYsNmn78Y+MK0bGufvxj4wrRsa5+/2DVNbhRwn7/YNU1uFHCfv1CTrY+6dJ+/UJOtj7p0n78w7pgZX3mfvzDumBlfeZ+/mHvDDAJ+n7+Ye8MMAn6fvxjJ4Gmjgp+/GMngaaOCn79IvaMxQ4efv0i9ozFDh5+/2Ji+ZOGLn7/YmL5k4Yufv0D34gN+kJ+/QPfiA36Qn7+gz8EPGZWfv6DPwQ8ZlZ+/kHULibKZn7+QdQuJspmfv9iZb3BKnp+/2JlvcEqen79oS53G4KKfv2hLncbgop+/CPhCjHWnn78I+EKMdaefvxBtDsIIrJ+/EG0Owgisn79w2KxomrCfv3DYrGiasJ+/MMnKgCq1n78wycqAKrWfv2gwFAu5uZ+/aDAUC7m5n78AYjQIRr6fvwBiNAhGvp+/UBXWeNHCn79QFdZ40cKfvxBmo11bx5+/EGajXVvHn78Q1UW348ufvxDVRbfjy5+/4EhmhmrQn7/gSGaGatCfv7AOrcvv1J+/sA6ty+/Un7/w2sGHc9mfv/DawYdz2Z+/KMpLu/Xdn78oyku79d2fv6hh8WZ24p+/qGHxZnbin784kFiL9eafvziQWIv15p+/6K4mKXPrn7/oriYpc+ufv8CBAEHv75+/wIEAQe/vn79oOIrTafSfv2g4itNp9J+/+G5n4eL4n7/4bmfh4vifv5guO2ta/Z+/mC47a1r9n78g99M46ACgvyD30zjoAKC/sMmneiIDoL+wyad6IgOgv1C5aftbBaC/ULlp+1sFoL9EKGq7lAegv0QoaruUB6C/FDH5uswJoL8UMfm6zAmgv/CmZvoDDKC/8KZm+gMMoL/0FQJ6Og6gv/QVAno6DqC/kMMaOnAQoL+Qwxo6cBCgv9Su/zqlEqC/1K7/OqUSoL/EkP982RSgv8SQ/3zZFKC/sNxoAA0XoL+w3GgADRegv4zAicU/GaC/jMCJxT8ZoL88JbDMcRugvzwlsMxxG6C/6K4pFqMdoL/orikWox2gv1S9Q6LTH6C/VL1DotMfoL8obEtxAyKgvyhsS3EDIqC/VJONgzIkoL9Uk42DMiSgv0jHVtlgJqC/SMdW2WAmoL9cWfNyjiigv1xZ83KOKKC/DFivULsqoL8MWK9Quyqgv1iP1nLnLKC/WI/WcucsoL8IibTZEi+gvwiJtNkSL6C/AI2UhT0xoL8AjZSFPTGgv5ShwXZnM6C/lKHBdmczoL+8i4atkDWgv7yLhq2QNaC/iM8tKrk3oL+Izy0quTegv0ywAe3gOaC/TLAB7eA5oL/4MEz2Bzygv/gwTPYHPKC/aBRXRi4+oL9oFFdGLj6gv7Tda91TQKC/tN1r3VNAoL9c0NO7eEKgv1zQ07t4QqC/wPDX4ZxEoL/A8NfhnESgv0QEwU/ARqC/RATBT8BGoL+skdcF40igv6yR1wXjSKC/ZOFjBAVLoL9k4WMEBUugv8T9rUsmTaC/xP2tSyZNoL9cs/3bRk+gv1yz/dtGT6C/NJGatWZRoL80kZq1ZlGgvyTpy9iFU6C/JOnL2IVToL8I0NhFpFWgvwjQ2EWkVaC/EB4I/cFXoL8QHgj9wVegvwRvoP7eWaC/BG+g/t5ZoL+QIuhK+1ugv5Ai6Er7W6C/hFwl4hZeoL+EXCXiFl6gvxAFnsQxYKC/EAWexDFgoL8YyZfyS2KgvxjJl/JLYqC/cBpYbGVkoL9wGlhsZWSgvygwJDJ+ZqC/KDAkMn5moL+8BkFElmigv7wGQUSWaKC/bGDzoq1qoL9sYPOirWqgv3DFf07EbKC/cMV/TsRsoL9IhCpH2m6gv0iEKkfabqC/8LE3je9woL/wsTeN73CgvyQq6yAEc6C/JCrrIARzoL+sj4gCGHWgv6yPiAIYdaC/jExTMit3oL+MTFMyK3egv1iSjrA9eaC/WJKOsD15oL9gWn19T3ugv2BafX1Pe6C/9GVimWB9oL/0ZWKZYH2gv7g+gARxf6C/uD6ABHF/oL+8Nhm/gIGgv7w2Gb+AgaC/5GhvyY+DoL/kaG/Jj4Ogvwy5xCOehaC/DLnEI56FoL9A1FrOq4egv0DUWs6rh6C/GDFzybiJoL8YMXPJuImgv9wPTxXFi6C/3A9PFcWLoL/Aei+y0I2gv8B6L7LQjaC/MEZVoNuPoL8wRlWg24+gvwARAeDlkaC/ABEB4OWRoL+oRHNx75Ogv6hEc3Hvk6C/iBXsVPiVoL+IFexU+JWgvxiDq4oAmKC/GIOrigCYoL8sWPESCJqgvyxY8RIImqC/JCv97Q6coL8kK/3tDpygvzReDhwVnqC/NF4OHBWeoL+MH2SdGqCgv4wfZJ0aoKC/pGk9ch+ioL+kaT1yH6Kgv2gD2ZojpKC/aAPZmiOkoL9wgHUXJ6agv3CAdRcnpqC/QEFR6CmooL9AQVHoKaigv4Bzqg0sqqC/gHOqDSyqoL8oEr+HLaygvygSv4ctrKC/yOXMVi6uoL/I5cxWLq6gv7SEEXsusKC/tIQRey6woL88U8r0LbKgvzxTyvQtsqC/6IM0xCy0oL/ogzTELLSgv5wXjekqtqC/nBeN6Sq2oL/03RBlKLigv/TdEGUouKC/THX8NiW6oL9Mdfw2JbqgvxRLjF8hvKC/FEuMXyG8oL/8m/zeHL6gv/yb/N4cvqC/JHSJtRfAoL8kdIm1F8Cgv1yvbuMRwqC/XK9u4xHCoL9I+edoC8Sgv0j552gLxKC/qM0wRgTGoL+ozTBGBMagv3B4hHv8x6C/cHiEe/zHoL8YFh4J9MmgvxgWHgn0yaC/wJM47+rLoL/Akzjv6sugv2CvDi7hzaC/YK8OLuHNoL8E+NrF1s+gvwT42sXWz6C//M3XtsvRoL/8zde2y9GgvwBjPwHA06C/AGM/AcDToL94ukuls9Wgv3i6S6Wz1aC/oKk2o6bXoL+gqTajptegv7TXOfuY2aC/tNc5+5jZoL8wvo6titugvzC+jq2K26C/+KhuunvdoL/4qG66e92gv4C2EiJs36C/gLYSImzfoL8Q2LPkW+GgvxDYs+Rb4aC/4NGKAkvjoL/g0YoCS+Ogv1Q70Hs55aC/VDvQeznloL8kf7xQJ+egvyR/vFAn56C/kNuHgRTpoL+Q24eBFOmgv4xiag4B66C/jGJqDgHroL/s+Zv37Oygv+z5m/fs7KC/nFtUPdjuoL+cW1Q92O6gv8QVy9/C8KC/xBXL38LwoL/wijffrPKgv/CKN9+s8qC/WPLQO5b0oL9Y8tA7lvSgv+hXzvV+9qC/6FfO9X72oL+QnGYNZ/igv5CcZg1n+KC/WHbQgk76oL9YdtCCTvqgv5hwQlY1/KC/mHBCVjX8oL8k7PKHG/6gvyTs8ocb/qC/eB8YGAEAob94HxgYAQChv9QW6AbmAaG/1BboBuYBob+EtJhUygOhv4S0mFTKA6G//LBfAa4Fob/8sF8BrgWhv/Sacg2RB6G/9JpyDZEHob+41wZ5cwmhv7jXBnlzCaG/LKNRRFULob8so1FEVQuhvxAQiG82DaG/EBCIbzYNob8cCN/6Fg+hvxwI3/oWD6G/NEyL5vYQob80TIvm9hChv5R0wTLWEqG/lHTBMtYSob/g8LXftBShv+Dwtd+0FKG/cAid7ZIWob9wCJ3tkhahv2DaqlxwGKG/YNqqXHAYob/QXRMtTRqhv9BdEy1NGqG/7GEKXykcob/sYQpfKRyhvzSOw/IEHqG/NI7D8gQeob+QYnLo3x+hv5BicujfH6G/jDdKQLohob+MN0pAuiGhv2A+fvqTI6G/YD5++pMjob84gUEXbSWhvziBQRdtJaG/UOPGlkUnob9Q48aWRSehvxAhQXkdKaG/ECFBeR0pob9E0OK+9Cqhv0TQ4r70KqG/NGDeZ8ssob80YN5nyyyhv+AZZnShLqG/4BlmdKEuob8AIKzkdjChvwAgrOR2MKG/XG/iuEsyob9cb+K4SzKhv8zeOvEfNKG/zN468R80ob9oH+eN8zWhv2gf543zNaG/sLwYj8Y3ob+wvBiPxjehv8AcAfWYOaG/wBwB9Zg5ob9QgNG/ajuhv1CA0b9qO6G//AK77zs9ob/8ArvvOz2hv2Cb7oQMP6G/YJvuhAw/ob8wG51/3EChvzAbnX/cQKG/aC/336tCob9oL/ffq0Khv3BgLaZ6RKG/cGAtpnpEob88EnDSSEahvzwScNJIRqG/dITvZBZIob90hO9kFkihv5DS213jSaG/kNLbXeNJob8M9GS9r0uhvwz0ZL2vS6G/bLy6g3tNob9svLqDe02hv5DbDLFGT6G/kNsMsUZPob+g3YpFEVGhv6DdikURUaG/WCtkQdtSob9YK2RB21KhvxgKyKSkVKG/GArIpKRUob8MnOVvbVahvwyc5W9tVqG/TODrojVYob9M4OuiNVihv/yyCT79WaG//LIJPv1Zob94zW1BxFuhv3jNbUHEW6G/aMZGrYpdob9oxkatil2hv+gRw4FQX6G/6BHDgVBfob+0ARG/FWGhv7QBEb8VYaG/MMVeZdpiob8wxV5l2mKhv6hp2nSeZKG/qGnadJ5kob9U2rHtYWahv1Tase1hZqG/iOAS0CRoob+I4BLQJGihv9gjKxznaaG/2CMrHOdpob84KijSqGuhvzgqKNKoa6G/BFg38mltob8EWDfyaW2hv0zwhXwqb6G/TPCFfCpvob/EFEFx6nChv8QUQXHqcKG/DMaV0Klyob8MxpXQqXKhv7zjsJpodKG/vOOwmmh0ob98LL/PJnahv3wsv88mdqG/PD7tb+R3ob88Pu1v5HehvzyWZ3uheaG/PJZne6F5ob80kVryXXuhvzSRWvJde6G/fGvy1Bl9ob98a/LUGX2hvxxBWyPVfqG/HEFbI9V+ob/sDcHdj4Chv+wNwd2PgKG/uK1PBEqCob+4rU8ESoKhv2jcMpcDhKG/aNwylwOEob8ENpaWvIWhvwQ2lpa8haG/6DalAnWHob/oNqUCdYehv+A7i9ssiaG/4DuL2yyJob88gnMh5IqhvzyCcyHkiqG/7CeJ1JqMob/sJ4nUmoyhv7Ar9/RQjqG/sCv39FCOob8gbeiCBpChvyBt6IIGkKG/2KyHfruRob/YrId+u5Ghv4iM/+dvk6G/iIz/52+Tob8gj3q/I5WhvyCPer8jlaG/4BgjBdeWob/gGCMF15ahv3RvI7mJmKG/dG8juYmYob8ouqXbO5qhvyi6pds7mqG/2AHUbO2bob/YAdRs7Zuhv0Ax2GyenaG/QDHYbJ6dob/sFNzbTp+hv+wU3NtOn6G/bFsJuv6gob9sWwm6/qChv2iViQeuoqG/aJWJB66iob/ENYbEXKShv8Q1hsRcpKG/rJEo8Qqmob+skSjxCqahv8DgmY24p6G/wOCZjbinob8gPQOaZamhvyA9A5plqaG/lKONFhKrob+Uo40WEquhv6DzYQO+rKG/oPNhA76sob+g76hgaa6hv6DvqGBprqG/5DyLLhSwob/kPIsuFLChv8RjMW2+saG/xGMxbb6xob/Iz8McaLOhv8jPwxxos6G/vM9qPRG1ob+8z2o9EbWhv7yVTs+5tqG/vJVOz7m2ob9oN5fSYbihv2g3l9JhuKG/6K1sRwm6ob/orWxHCbqhvxTW9i2wu6G/FNb2LbC7ob+EcF2GVr2hv4RwXYZWvaG/sCHIUPy+ob+wIchQ/L6hvwRyXo2hwKG/BHJejaHAob8Azkc8RsKhvwDORzxGwqG/VIarXerDob9Uhqtd6sOhv+TPsPGNxaG/5M+w8Y3Fob/8w374MMehv/zDfvgwx6G/WGA8ctPIob9YYDxy08ihv0CHEF91yqG/QIcQX3XKob+o/yG/Fsyhv6j/Ib8WzKG/OHWXkrfNob84dZeSt82hv3x4l9lXz6G/fHiX2VfPob/ofkiU99Chv+h+SJT30KG//OLQwpbSob/84tDCltKhv0zkVmU11KG/TORWZTXUob+wpwB809Whv7CnAHzT1aG/UDf0BnHXob9QN/QGcdehv7CCVwYO2aG/sIJXBg7Zob/cXlB6qtqhv9xeUHqq2qG/eIYEY0bcob94hgRjRtyhv8yZmcDh3aG/zJmZwOHdob/oHjWTfN+hv+geNZN836G/wIH82hbhob/AgfzaFuGhvzAUFZiw4qG/MBQVmLDiob8sDqTKSeShvywOpMpJ5KG/vI3OcuLlob+8jc5y4uWhvyCXuZB656G/IJe5kHrnob/0FIokEumhv/QUiiQS6aG/LNhkLqnqob8s2GQuqeqhvzyYbq4/7KG/PJhurj/sob8s88uk1e2hvyzzy6TV7aG/pG2hEWvvob+kbaERa++hvxRzE/X/8KG/FHMT9f/wob/AVUZPlPKhv8BVRk+U8qG/yE5eICj0ob/ITl4gKPShv2R+f2i79aG/ZH5/aLv1ob/I680nTvehv8jrzSdO96G/ZIVtXuD4ob9khW1e4Pihv+ggggxy+qG/6CCCDHL6ob9Uey8yA/yhv1R7LzID/KG/FDmZz5P9ob8UOZnPk/2hvyDm4uQj/6G/IObi5CP/ob/09S9yswCiv/T1L3KzAKK/yMOjd0ICor/Iw6N3QgKiv4iSYfXQA6K/iJJh9dADor8AjYzrXgWivwCNjOteBaK/3MVHWuwGor/cxUda7Aaiv9A3tkF5CKK/0De2QXkIor+YxfqhBQqiv5jF+qEFCqK/HDo4e5ELor8cOjh7kQuiv4RIkc0cDaK/hEiRzRwNor9IjCiZpw6iv0iMKJmnDqK/PIkg3jEQor88iSDeMRCiv7irm5y7EaK/uKubnLsRor+YSLzURBOiv5hIvNREE6K/XJ2khs0Uor9cnaSGzRSivzjQdrJVFqK/ONB2slUWor8o8FRY3ReivyjwVFjdF6K/BPVgeGQZor8E9WB4ZBmiv5S/vBLrGqK/lL+8Eusaor+kGYoncRyiv6QZiidxHKK/ELbqtvYdor8Qtuq29h2iv+gwAMF7H6K/6DAAwXsfor9wD+xFACGiv3AP7EUAIaK/RMDPRYQior9EwM9FhCKiv1ibzMAHJKK/WJvMwAckor8k4gO3iiWivyTiA7eKJaK/oL+WKA0nor+gv5YoDSeiv1xIphWPKKK/XEimFY8oor+kelN+ECqiv6R6U34QKqK/eD6/YpEror94Pr9ikSuiv7hlCsMRLaK/uGUKwxEtor8crFWfkS6ivxysVZ+RLqK/ZLfB9xAwor9kt8H3EDCiv1AXb8yPMaK/UBdvzI8xor/ARX4dDjOiv8BFfh0OM6K/yKYP64s0or/Ipg/rizSiv7iIQzUJNqK/uIhDNQk2or80JDr8hTeivzQkOvyFN6K/TJwTQAI5or9MnBNAAjmiv3z+7wB+OqK/fP7vAH46or/UQu8++Tuiv9RC7z75O6K//Esx+nM9or/8SzH6cz2iv0Dn1TLuPqK/QOfVMu4+or+0zPzoZ0Civ7TM/OhnQKK/PJ/FHOFBor88n8Uc4UGiv5TsT85ZQ6K/lOxPzllDor9wLbv90USiv3Atu/3RRKK/hMUmq0lGor+ExSarSUaiv6ADstbAR6K/oAOy1sBHor+0IXyAN0miv7QhfIA3SaK/4ESkqK1Kor/gRKSorUqiv5x9SU8jTKK/nH1JTyNMor+ox4p0mE2iv6jHinSYTaK/NAqHGA1Por80CocYDU+iv/AXXTuBUKK/8BddO4FQor8Iryvd9FGivwivK930UaK/VHkR/mdTor9UeRH+Z1Oiv0wMLZ7aVKK/TAwtntpUor8k6Zy9TFaivyTpnL1MVqK/6Hx/XL5Xor/ofH9cvleiv2wg83ovWaK/bCDzei9Zor+IGBYZoFqiv4gYFhmgWqK/AJYGNxBcor8AlgY3EFyiv7C14tR/XaK/sLXi1H9dor+MgMjy7l6iv4yAyPLuXqK/sOvVkF1gor+w69WQXWCiv4TYKK/LYaK/hNgor8thor+wFN9NOWOiv7AU3005Y6K/OFoWbaZkor84WhZtpmSiv5RP7AwTZqK/lE/sDBNmor+0h34tf2eiv7SHfi1/Z6K/EILqzupoor8QgurO6miiv8SqTfFVaqK/xKpN8VVqor+QWsWUwGuiv5BaxZTAa6K/6NZuuSptor/o1m65Km2ivxRSZ1+UbqK/FFJnX5Ruor8s68uG/W+ivyzry4b9b6K/OK65L2Zxor84rrkvZnGivyiUTVrOcqK/KJRNWs5yor8Ag6QGNnSivwCDpAY2dKK/0E3bNJ11or/QTds0nXWiv8y0DuUDd6K/zLQO5QN3or9gZVsXaniiv2BlWxdqeKK/LPrdy895or8s+t3Lz3mivzD7sgI1e6K/MPuyAjV7or+43fa7mXyiv7jd9ruZfKK/kATG9/19or+QBMb3/X2iv/C/PLZhf6K/8L88tmF/or+cTXf3xICiv5xNd/fEgKK//NiRuyeCor/82JG7J4Kivwx7qAKKg6K/DHuoAoqDor+MOtfM64Siv4w618zrhKK/+As6Gk2Gor/4CzoaTYaiv5zR7Oqth6K/nNHs6q2Hor+oWws/Domiv6hbCz8OiaK/NGixFm6Kor80aLEWboqiv1ij+nHNi6K/WKP6cc2Lor8wpwJRLI2ivzCnAlEsjaK/9Pvks4qOor/0++Szio6ivwAYvZroj6K/ABi9muiPor/cX6YFRpGiv9xfpgVGkaK/WCa89KKSor9YJrz0opKiv5CsGWj/k6K/kKwZaP+Tor/4IdpfW5Wiv/gh2l9blaK/dKQY3LaWor90pBjctpaiv1RA8NwRmKK/VEDw3BGYor908HtibJmiv3Twe2JsmaK/QJ7WbMaaor9AntZsxpqiv8QhG/wfnKK/xCEb/B+cor+wQWQQeZ2iv7BBZBB5naK/dLPMqdGeor90s8yp0Z6iv0Qbb8gpoKK/RBtvyCmgor8oDGZsgaGivygMZmyBoaK/CAjMldiior8ICMyV2KKiv7R/u0QvpKK/tH+7RC+kor8E0055haWivwTTTnmFpaK/yFCgM9umor/IUKAz26aiv+g2ynMwqKK/6DbKczCoor9wsuY5hamiv3Cy5jmFqaK/mN8Phtmqor+Y3w+G2aqiv9DJX1gtrKK/0MlfWC2sor/Ua/CwgK2iv9Rr8LCAraK/qK/bj9Ouor+or9uP066iv7xuO/UlsKK/vG479SWwor/kcSnhd7Giv+RxKeF3saK/cHG/U8myor9wcb9TybKivzQVF00atKK/NBUXTRq0or+Q9EnNarWiv5D0Sc1qtaK/kJZx1Lq2or+QlnHUuraiv9Rxp2IKuKK/1HGnYgq4or/I7AR4Wbmiv8jsBHhZuaK/iF2jFKi6or+IXaMUqLqivwgKnDj2u6K/CAqcOPa7or8UKAjkQ72ivxQoCORDvaK/XN0AF5G+or9c3QAXkb6iv4Q/n9Hdv6K/hD+f0d2/or8oVPwTKsGivyhU/BMqwaK/+BAx3nXCor/4EDHedcKiv6xbVjDBw6K/rFtWMMHDor8oCoUKDMWivygKhQoMxaK/eOLVbFbGor944tVsVsaiv+CaYVegx6K/4JphV6DHor/s2UDK6ciiv+zZQMrpyKK/bDaMxTLKor9sNozFMsqiv5g3XEl7y6K/mDdcSXvLor8IVclVw8yivwhVyVXDzKK/yPbr6grOor/I9uvqCs6iv1x13AhSz6K/XHXcCFLPor/YGbOvmNCiv9gZs6+Y0KK/2B2I397Ror/YHYjf3tGiv6Src5gk06K/pKtzmCTTor8k3o3aadSivyTejdpp1KK/AMHupa7Vor8Awe6lrtWiv5BQrvry1qK/kFCu+vLWor8EeuTYNtiivwR65Ng22KK/YBupQHrZor9gG6lAetmiv4gDFDK92qK/iAMUMr3aor9I8jyt/9uiv0jyPK3/26K/aJg7skHdor9omDuyQd2iv7CXJ0GD3qK/sJcnQYPeor/wghhaxN+iv/CCGFrE36K/IN4l/QThor8g3iX9BOGiv0AeZypF4qK/QB5nKkXior+QqfPhhOOiv5Cp8+GE46K/gNfiI8Tkor+A1+IjxOSiv8jwS/AC5qK/yPBL8ALmor9gL0ZHQeeiv2AvRkdB56K/mL7oKH/oor+Yvugof+iivzi7SpW86aK/OLtKlbzpor9QM4OM+eqiv1Azg4z56qK/iCapDjbsor+IJqkONuyiv/CF0xty7aK/8IXTG3Ltor8oNBm0re6ivyg0GbSt7qK/cAWR1+jvor9wBZHX6O+iv5i/UYYj8aK/mL9RhiPxor8gGnLAXfKivyAacsBd8qK/OL4Ihpfzor84vgiGl/Oiv9hGLNfQ9KK/2EYs19D0or+wQPOzCfaiv7BA87MJ9qK/SCp0HEL3or9IKnQcQveivxB0xRB6+KK/EHTFEHr4or84gP2QsfmivziA/ZCx+aK/EKMynej6or8QozKd6Pqiv7giezUf/KK/uCJ7NR/8or9oN+1ZVf2iv2g37VlV/aK/YAufCov+or9gC58Ki/6ivwC7pkfA/6K/ALumR8D/or+oVBoR9QCjv6hUGhH1AKO/CNkPZykCo78I2Q9nKQKjv+g6nUldA6O/6DqdSV0Do79gX9i4kASjv2Bf2LiQBKO/uB3XtMMFo7+4Hde0wwWjv6A/rz32BqO/oD+vPfYGo78QgXZTKAijvxCBdlMoCKO/aJBC9lkJo79okEL2WQmjv3gOKSaLCqO/eA4pJosKo794jj/juwujv3iOP+O7C6O/OJabLewMo784lpst7Ayjv/idUgUcDqO/+J1SBRwOo7+IEHpqSw+jv4gQempLD6O/aEsnXXoQo79oSyddehCjv6ieb92oEaO/qJ5v3agRo78QTWjr1hKjvxBNaOvWEqO/GIwmhwQUo78YjCaHBBSjvwCEv7AxFaO/AIS/sDEVo7+4T0hoXhajv7hPSGheFqO/IP3VrYoXo78g/dWtihejv9iMfYG2GKO/2Ix9gbYYo7948lPj4Rmjv3jyU+PhGaO/eBRu0wwbo794FG7TDBujv0DM4FE3HKO/QMzgUTcco79A5sBeYR2jv0DmwF5hHaO/6CEj+ooeo7/oISP6ih6jv8AxHCS0H6O/wDEcJLQfo79Qu8Dc3CCjv1C7wNzcIKO/aFclJAUio79oVyUkBSKjv9iRXvosI6O/2JFe+iwjo7+46YBfVCSjv7jpgF9UJKO/UNGgU3slo79Q0aBTeyWjv0Cu0tahJqO/QK7S1qEmo79Y2Srpxyejv1jZKunHJ6O/0J69iu0oo7/Qnr2K7Sijvyg+n7sSKqO/KD6fuxIqo79Y6uN7Nyujv1jq43s3K6O/wMmfy1sso7/AyZ/LWyyjvzj25qp/LaO/OPbmqn8to78Afc0Zoy6jvwB9zRmjLqO/AF9nGMYvo78AX2cYxi+jv5iQyKboMKO/mJDIpugwo7/A+QTFCjKjv8D5BMUKMqO/IHYwcywzo78gdjBzLDOjv/DUXrFNNKO/8NResU00o78o2aN/bjWjvyjZo39uNaO/aDkT3o42o79oORPejjajvyCgwMyuN6O/IKDAzK43o7+Aq79Lzjijv4Crv0vOOKO/gO0jW+05o7+A7SNb7TmjvwjsAPsLO6O/COwA+ws7o7/AIGorKjyjv8AgaisqPKO/SPly7Ec9o79I+XLsRz2jvyjXLj5lPqO/KNcuPmU+o7/4D7Eggj+jv/gPsSCCP6O/KO0MlJ5Ao78o7QyUnkCjv0isVZi6QaO/SKxVmLpBo7/wfp4t1kKjv/B+ni3WQqO/2Ir6U/FDo7/YivpT8UOjv8jpfAsMRaO/yOl8CwxFo7+wqThUJkajv7CpOFQmRqO/sMxALkBHo7+wzEAuQEejvyhJqJlZSKO/KEmomVlIo7+gCYKWckmjv6AJgpZySaO/+OzgJItKo7/47OAki0qjv0jG10SjS6O/SMbXRKNLo78QXXn2ukyjvxBdefa6TKO/IG3YOdJNo78gbdg50k2jv7CmBw/pTqO/sKYHD+lOo79Qrhl2/0+jv1CuGXb/T6O/IB0hbxVRo78gHSFvFVGjv6CAMPoqUqO/oIAw+ipSo7/QWloXQFOjv9BaWhdAU6O/UCKxxlRUo79QIrHGVFSjvzBCRwhpVaO/MEJHCGlVo78wGi/cfFajvzAaL9x8VqO/mP56QpBXo7+Y/npCkFejv1g4PTujWKO/WDg9O6NYo78gBYjGtVmjvyAFiMa1WaO/QJdt5Mdao79Al23kx1qjv8gVAJXZW6O/yBUAldlbo794nFHY6lyjv3icUdjqXKO/+Dt0rvtdo7/4O3Su+12jv7D5eRcMX6O/sPl5Fwxfo7/Qz3QTHGCjv9DPdBMcYKO/gK12oitho7+ArXaiK2Gjv7B2kcQ6YqO/sHaRxDpio79YBNd5SWOjv1gE13lJY6O/UCRZwldko79QJFnCV2Sjv2iZKZ5lZaO/aJkpnmVlo7+AG1oNc2ajv4AbWg1zZqO/aFf8D4Bno79oV/wPgGejvxjvIaaMaKO/GO8hpoxoo7+AedzPmGmjv4B53M+YaaO/yII9jaRqo7/Igj2NpGqjvyCMVt6va6O/IIxW3q9ro7/wCznDumyjv/ALOcO6bKO/2G32O8Vto7/YbfY7xW2jv5gSoEjPbqO/mBKgSM9uo784UEfp2G+jvzhQR+nYb6O/CHL9HeJwo78Icv0d4nCjv5i40+bqcaO/mLjT5upxo7/QWdtD83Kjv9BZ20PzcqO/8IAlNftzo7/wgCU1+3Ojv5BOw7oCdaO/kE7DugJ1o7+42MXUCXajv7jYxdQJdqO/yCo+gxB3o7/IKj6DEHejv6BFPcYWeKO/oEU9xhZ4o7+YH9SdHHmjv5gf1J0ceaO/eKQTCiJ6o794pBMKInqjv6i1DAsne6O/qLUMCyd7o7/4KdCgK3yjv/gp0KArfKO/4M1uyy99o7/gzW7LL32jv3Bj+YozfqO/cGP5ijN+o79QooDfNn+jv1CigN82f6O/yDcVyTmAo7/INxXJOYCjv9DGx0c8gaO/0MbHRzyBo78Y6KhbPoKjvxjoqFs+gqO/+CnJBECDo7/4KckEQIOjv5AQOUNBhKO/kBA5Q0GEo7/AFQkXQoWjv8AVCRdChaO/MKlJgEKGo78wqUmAQoajv1gwC39Ch6O/WDALf0KHo7+IBl4TQoijv4gGXhNCiKO/8HxSPUGJo7/wfFI9QYmjv5ja+Pw/iqO/mNr4/D+Ko79wXGFSPoujv3BcYVI+i6O/YDWcPTyMo79gNZw9PIyjv0iOub45jaO/SI65vjmNo7/ohcnVNo6jv+iFydU2jqO/GDHcgjOPo78YMdyCM4+jv6iaAcYvkKO/qJoBxi+Qo7+Iw0mfK5Gjv4jDSZ8rkaO/oKLEDieSo7+gosQOJ5KjvwAlghQik6O/ACWCFCKTo7/ILZKwHJSjv8gtkrAclKO/UJYE4xaVo79QlgTjFpWjvwAu6asQlqO/AC7pqxCWo7+Iuk8LCpejv4i6TwsKl6O/uPdHAQOYo7+490cBA5ijv6iX4Y37mKO/qJfhjfuYo7+gQiyx85mjv6BCLLHzmaO/QJc3a+uao79Alzdr65qjv2gqE7zim6O/aCoTvOKbo79Ih86j2Zyjv0iHzqPZnKO/eC95ItCdo794L3ki0J2jv8iaIjjGnqO/yJoiOMaeo7+YN9rku5+jv5g32uS7n6O/kGqvKLGgo7+Qaq8osaCjv8iOsQOmoaO/yI6xA6aho7/Y9e91mqKjv9j173WaoqO/wOd5f46jo7/A53l/jqOjvwijXiCCpKO/CKNeIIKko7+4XK1YdaWjv7hcrVh1paO/aEB1KGimo79oQHUoaKajvyhwxY9ap6O/KHDFj1qno7+4BK2OTKijv7gErY5MqKO/YA07JT6po79gDTslPqmjvwiQflMvqqO/CJB+Uy+qo784iYYZIKujvziJhhkgq6O/MOxhdxCso78w7GF3EKyjv8iiH20AraO/yKIfbQCto7+Yjc76762jv5iNzvrvraO/AIR9IN+uo78AhH0g366jv/hTO97Nr6O/+FM73s2vo79gwhY0vLCjv2DCFjS8sKO/0IoeIqqxo7/Qih4iqrGjv6hfYaiXsqO/qF9hqJeyo78o6u3GhLOjvyjq7caEs6O/YMrSfXG0o79gytJ9cbSjv0iXHs1dtaO/SJcezV21o7+o3t+0Sbajv6je37RJtqO/QCUlNTW3o79AJSU1Nbejv7Dm/E0guKO/sOb8TSC4o7+QlXX/Crmjv5CVdf8KuaO/eJudSfW5o794m51J9bmjv/BYgyzfuqO/8FiDLN+6o7+AJTWoyLujv4AlNajIu6O/uE/BvLG8o7+4T8G8sbyjvzgdNmqavaO/OB02apq9o7+oyqGwgr6jv6jKobCCvqO/0IsSkGq/o7/QixKQar+jv4iLlghSwKO/iIuWCFLAo7/A6zsaOcGjv8DrOxo5waO/oMUQxR/Co7+gxRDFH8Kjv2gpIwkGw6O/aCkjCQbDo7+QHoHm68Ojv5Aegebrw6O/sKM4XdHEo7+wozhd0cSjv7iuV222xaO/uK5XbbbFo7+oLOwWm8ajv6gs7BabxqO/8AEEWn/Ho7/wAQRaf8ejvyAKrTZjyKO/IAqtNmPIo78gGPWsRsmjvyAY9axGyaO/KPbpvCnKo78o9um8Kcqjv8BlmWYMy6O/wGWZZgzLo7/YHxGq7sujv9gfEaruy6O/oNReh9DMo7+g1F6H0Myjv8grkP6xzaO/yCuQ/rHNo79QxLIPk86jv1DEsg+TzqO/qDTUunPPo7+oNNS6c8+jv7gKAgBU0KO/uAoCAFTQo7/gy0nfM9Gjv+DLSd8z0aO/4PS4WBPSo7/g9LhYE9KjvxD6XGzy0qO/EPpcbPLSo79AR0Ma0dOjv0BHQxrR06O/yD95Yq/Uo7/IP3lir9Sjv4g+DEWN1aO/iD4MRY3Vo7/wlQnCatajv/CVCcJq1qO/EJB+2UfXo78QkH7ZR9ejv3hueIsk2KO/eG54iyTYo79wagTYANmjv3BqBNgA2aO/0LQvv9zZo7/QtC+/3NmjvyB2B0G42qO/IHYHQbjao7+Qzphdk9ujv5DOmF2T26O/ANbwFG7co78A1vAUbtyjv/CbHGdI3aO/8JscZ0jdo7/AJylUIt6jv8AnKVQi3qO/aHgj3Pveo79oeCPc+96jv7CEGP/U36O/sIQY/9Tfo78oOxW9reCjvyg7Fb2t4KO/GIImFobho78YgiYWhuGjv6g3WQpe4qO/qDdZCl7io7/QMbqZNeOjv9Axupk146O/UD5WxAzko79QPlbEDOSjv9AiOorj5KO/0CI6iuPko7/QnHLrueWjv9Cccuu55aO/uGEM6I/mo7+4YQzoj+ajv8geFIBl56O/yB4UgGXno79IeZazOuijv0h5lrM66KO/UA6ggg/po79QDqCCD+mjvwBzPe3j6aO/AHM97ePpo79oNHvzt+qjv2g0e/O36qO/mNdllYvro7+Y12WVi+ujv5jZCdNe7KO/mNkJ017so7+Ar3OsMe2jv4Cvc6wx7aO/YMavIQTuo79gxq8hBO6jv2CDyjLW7qO/YIPKMtbuo7/AQ9Dfp++jv8BD0N+n76O/wFzNKHnwo7/AXM0oefCjv8gbzg1K8aO/yBvODUrxo79Yxt6OGvKjv1jG3o4a8qO/CJoLrOryo78Imgus6vKjv6jMYGW686O/qMxgZbrzo78gjOq6ifSjvyCM6rqJ9KO/gP60rFj1o7+A/rSsWPWjvyhCzDon9qO/KELMOif2o7+AbTxl9fajv4BtPGX19qO/SI8RLMP3o79IjxEsw/ejv3iuV4+Q+KO/eK5Xj5D4o784yhqPXfmjvzjKGo9d+aO/ANpmKyr6o78A2mYrKvqjv6DNR2T2+qO/oM1HZPb6o78Ijck5wvujvwiNyTnC+6O/qPj3q438o7+o+Perjfyjvyjp3rpY/aO/KOneulj9o7+AL4pmI/6jv4AvimYj/qO/IJUFr+3+o78glQWv7f6jv8DbXJS3/6O/wNtclLf/o7+IvZsWgQCkv4i9mxaBAKS/+OzNNUoBpL/47M01SgGkvwAV//ESAqS/ABX/8RICpL8I2TpL2wKkvwjZOkvbAqS/4NSMQaMDpL/g1IxBowOkv8icANVqBKS/yJwA1WoEpL+QvaEFMgWkv5C9oQUyBaS/YLx70/gFpL9gvHvT+AWkvwgXmj6/BqS/CBeaPr8GpL/AQwhHhQekv8BDCEeFB6S/ULHR7EoIpL9QsdHsSgikvxjHATAQCaS/GMcBMBAJpL/o5KMQ1Qmkv+jkoxDVCaS/UGPDjpkKpL9QY8OOmQqkv0iTa6pdC6S/SJNrql0LpL+AvqdjIQykv4C+p2MhDKS/OCeDuuQMpL84J4O65Aykv1gICa+nDaS/WAgJr6cNpL9olURBag6kv2iVREFqDqS/oPpAcSwPpL+g+kBxLA+kv9BcCT/uD6S/0FwJP+4PpL+Q2aiqrxCkv5DZqKqvEKS/IIcqtHARpL8ghyq0cBGkv3B0mVsxEqS/cHSZWzESpL8oqQCh8RKkvyipAKHxEqS/yCVrhLETpL/IJWuEsROkv2jj4wVxFKS/aOPjBXEUpL8I1HUlMBWkvwjUdSUwFaS/WOIr4+4VpL9Y4ivj7hWkv9jxED+tFqS/2PEQP60WpL/g3i85axekv+DeLzlrF6S/kH6T0SgYpL+QfpPRKBikv+CeRgjmGKS/4J5GCOYYpL+gBlTdohmkv6AGVN2iGaS/eHXGUF8apL94dcZQXxqkvwCkqGIbG6S/AKSoYhsbpL+YQwUT1xukv5hDBRPXG6S/kP7mYZIcpL+Q/uZhkhykvzh4WE9NHaS/OHhYT00dpL+oTGTbBx6kv6hMZNsHHqS/+BAVBsIepL/4EBUGwh6kv0BTdc97H6S/QFN1z3sfpL94mo83NSCkv3iajzc1IKS/oGZuPu4gpL+gZm4+7iCkv6gwHOSmIaS/qDAc5KYhpL+QaqMoXyKkv5BqoyhfIqS/UH8ODBcjpL9Qfw4MFyOkv+jSZ47OI6S/6NJnjs4jpL9gwrmvhSSkv2DCua+FJKS/4KMOcDwlpL/gow5wPCWkv3jGcM/yJaS/eMZwz/IlpL9wcurNqCakv3By6s2oJqS/GOmFa14npL8Y6YVrXiekv+BkTagTKKS/4GRNqBMopL9IGUuEyCikv0gZS4TIKKS/8DKJ/3wppL/wMon/fCmkv7DXERoxKqS/sNcRGjEqpL9wJu/T5Cqkv3Am79PkKqS/SDcrLZgrpL9INystmCukv4Ab0CVLLKS/gBvQJUsspL+I3ee9/Sykv4jd5739LKS/CIF89a8tpL8IgXz1ry2kv9gCmMxhLqS/2AKYzGEupL8QWURDEy+kvxBZREMTL6S/AHOLWcQvpL8Ac4tZxC+kvyg5dw91MKS/KDl3D3UwpL9ojRFlJTGkv2iNEWUlMaS/yEpkWtUxpL/ISmRa1TGkv6hFee+EMqS/qEV574QypL+oS1okNDOkv6hLWiQ0M6S/uCMR+eIzpL+4IxH54jOkvxiOp22RNKS/GI6nbZE0pL9oRCeCPzWkv2hEJ4I/NaS/iPmZNu01pL+I+Zk27TWkv8BZCYuaNqS/wFkJi5o2pL+wCn9/Rzekv7AKf39HN6S/WKsEFPQ3pL9YqwQU9DekvxDUo0igOKS/ENSjSKA4pL+oFmYdTDmkv6gWZh1MOaS/QP5Ukvc5pL9A/lSS9zmkv4APeqeiOqS/gA96p6I6pL9YyN5cTTukv1jI3lxNO6S/SKCMsvc7pL9IoIyy9zukvzgIjaihPKS/OAiNqKE8pL94auk+Sz2kv3hq6T5LPaS/6CqrdfQ9pL/oKqt19D2kv9Cm20ydPqS/0KbbTJ0+pL8INYTERT+kvwg1hMRFP6S/2CWu3O0/pL/YJa7c7T+kvxDDYpWVQKS/EMNilZVApL8IUKvuPEGkvwhQq+48QaS/qAmR6ONBpL+oCZHo40Gkv2AmHYOKQqS/YCYdg4pCpL8g1li+MEOkvyDWWL4wQ6S/gEJNmtZDpL+AQk2a1kOkv6COAxd8RKS/oI4DF3xEpL8414Q0IUWkvzjXhDQhRaS/mDLa8sVFpL+YMtryxUWkv6iwDFJqRqS/qLAMUmpGpL8AWyVSDkekvwBbJVIOR6S/yDQt87FHpL/INC3zsUekv9A6LTVVSKS/0DotNVVIpL+YYy4Y+Eikv5hjLhj4SKS/OJ85nJpJpL84nzmcmkmkv4jXV8E8SqS/iNdXwTxKpL8A8JGH3kqkvwDwkYfeSqS/2MXw7n9LpL/YxfDuf0ukv+AvffcgTKS/4C999yBMpL/A/j+hwUykv8D+P6HBTKS/wPxB7GFNpL/A/EHsYU2kv/Dti9gBTqS/8O2L2AFOpL8YkCZmoU6kvxiQJmahTqS/0JoalUBPpL/QmhqVQE+kv2C/cGXfT6S/YL9wZd9PpL/QqDHXfVCkv9CoMdd9UKS/EPxl6htRpL8Q/GXqG1Gkv8hXFp+5UaS/yFcWn7lRpL9gVEv1VlKkv2BUS/VWUqS/IIQN7fNSpL8ghA3t81KkvyhzZYaQU6S/KHNlhpBTpL9gp1vBLFSkv2CnW8EsVKS/iKD4nchUpL+IoPidyFSkv0jYRBxkVaS/SNhEHGRVpL8Qwkg8/1WkvxDCSDz/VaS/OMsM/plWpL84ywz+mVakvwBbmWE0V6S/AFuZYTRXpL+A0vZmzlekv4DS9mbOV6S/wIwtDmhYpL/AjC0OaFikv6jeRVcBWaS/qN5FVwFZpL8QF0hCmlmkvxAXSEKaWaS/sH48zzJapL+wfjzPMlqkv1BYK/7KWqS/UFgr/spapL+A4BzPYlukv4DgHM9iW6S/6E0ZQvpbpL/oTRlC+lukvxDRKFeRXKS/ENEoV5FcpL+AlFMOKF2kv4CUUw4oXaS/wLyhZ75dpL/AvKFnvl2kv1BoG2NUXqS/UGgbY1RepL+4r8gA6l6kv7ivyADqXqS/cKWxQH9fpL9wpbFAf1+kvwhW3iIUYKS/CFbeIhRgpL8QyFanqGCkvxDIVqeoYKS/IPwizjxhpL8g/CLOPGGkv9jsSpfQYaS/2OxKl9BhpL/wjtYCZGKkv/CO1gJkYqS/KNHNEPdipL8o0c0Q92Kkv1icOMGJY6S/WJw4wYljpL9o0x4UHGSkv2jTHhQcZKS/UFOICa5kpL9QU4gJrmSkvzjzfKE/ZaS/OPN8oT9lpL9IhATc0GWkv0iEBNzQZaS/2NEmuWFmpL/Y0Sa5YWakv1ih6zjyZqS/WKHrOPJmpL9gslpbgmekv2CyWluCZ6S/oL57IBJopL+gvnsgEmikv/h5VoihaKS/+HlWiKFopL9wkvKSMGmkv3CS8pIwaaS/QLBXQL9ppL9AsFdAv2mkv8B1jZBNaqS/wHWNkE1qpL94f5uD22qkv3h/m4PbaqS/KGSJGWlrpL8oZIkZaWukv9C0XlL2a6S/0LReUvZrpL+I/CIug2ykv4j8Ii6DbKS/sMDdrA9tpL+wwN2sD22kv+CAls6bbaS/4ICWzpttpL/wtlSTJ26kv/C2VJMnbqS/+NYf+7JupL/41h/7sm6kvzhP/wU+b6S/OE//BT5vpL9YiPqzyG+kv1iI+rPIb6S/IOUYBVNwpL8g5RgFU3Ckv7jCYfnccKS/uMJh+dxwpL+AeNyQZnGkv4B43JBmcaS/KFiQy+9xpL8oWJDL73Gkv7ithKl4cqS/uK2EqXhypL9wv8AqAXOkv3C/wCoBc6S/6M1LT4lzpL/ozUtPiXOkvyAULRcRdKS/IBQtFxF0pL9Qx2uCmHSkv1DHa4KYdKS/EBcPkR91pL8QFw+RH3Wkv1AtHkOmdaS/UC0eQ6Z1pL9gLqCYLHakv2AuoJgsdqS/8DickbJ2pL/wOJyRsnakvwBmGS44d6S/AGYZLjh3pL/4yB5uvXekv/jIHm69d6S/mG+zUUJ4pL+Yb7NRQnikvyBi3tjGeKS/IGLe2MZ4pL8go6YDS3mkvyCjpgNLeaS/kC8T0s55pL+QLxPSznmkv9j+KkRSeqS/2P4qRFJ6pL/QAvVZ1Xqkv9AC9VnVeqS/sCd4E1h7pL+wJ3gTWHukvzBUu3Dae6S/MFS7cNp7pL9wacVxXHykv3BpxXFcfKS/EEOdFt58pL8QQ50W3nykvxC3SV9ffaS/ELdJX199pL8AltFL4H2kvwCW0UvgfaS/0Ko73GB+pL/QqjvcYH6kvwi7jhDhfqS/CLuOEOF+pL+IhtHoYH+kv4iG0ehgf6S/4McKZeB/pL/gxwpl4H+kv/AzQYVfgKS/8DNBhV+ApL84entJ3oCkvzh6e0negKS/uETAsVyBpL+4RMCxXIGkv/g3Fr7agaS/+DcWvtqBpL/w8oNuWIKkv/Dyg25YgqS/SA8Qw9WCpL9IDxDD1YKkvyAhwbtSg6S/ICHBu1KDpL8Yt51Yz4Okvxi3nVjPg6S/gFqsmUuEpL+AWqyZS4SkvyCP837HhKS/II/zfseEpL9Y03kIQ4Wkv1jTeQhDhaS/IKBFNr6FpL8goEU2voWkvxBpXQg5hqS/EGldCDmGpL9AnMd+s4akv0Ccx36zhqS/eKKKmS2HpL94ooqZLYekvxDfrFinh6S/EN+sWKeHpL8AsDS8IIikvwCwNLwgiKS/6G0oxJmIpL/obSjEmYikvwBsjnASiaS/AGyOcBKJpL8g+GzBiomkvyD4bMGKiaS/0FrKtgKKpL/QWsq2AoqkvzDXrFB6iqS/MNesUHqKpL8IqxqP8YqkvwirGo/xiqS/4A4acmiLpL/gDhpyaIukv9g1sfnei6S/2DWx+d6LpL+4TeYlVYykv7hN5iVVjKS/AH+/9sqMpL8Af7/2yoykv+DsQmxAjaS/4OxCbECNpL9ItXaGtY2kv0i1doa1jaS/uPBgRSqOpL+48GBFKo6kv4CyB6mejqS/gLIHqZ6OpL+gCHGxEo+kv6AIcbESj6S/2PuiXoaPpL/Y+6Jeho+kv5iPo7D5j6S/mI+jsPmPpL8IwninbJCkvwjCeKdskKS/GIwoQ9+QpL8YjChD35Ckv3jhuINRkaS/eOG4g1GRpL+QsC9pw5Gkv5CwL2nDkaS/iOKS8zSSpL+I4pLzNJKkv1hb6CKmkqS/WFvoIqaSpL+w+TX3FpOkv7D5NfcWk6S/GJeBcIeTpL8Yl4Fwh5Okv9AH0Y73k6S/0AfRjveTpL/oGipSZ5Skv+gaKlJnlKS/OJqSutaUpL84mpK61pSkv3BKEMhFlaS/cEoQyEWVpL8A66h6tJWkvwDrqHq0laS/MDZi0iKWpL8wNmLSIpakvyDhQc+QlqS/IOFBz5CWpL+4m01x/pakv7ibTXH+lqS/wBCLuGuXpL/AEIu4a5ekv8Dl/6TYl6S/wOX/pNiXpL84u7E2RZikvzi7sTZFmKS/YCymbbGYpL9gLKZtsZikv2jP4kkdmaS/aM/iSR2ZpL9QNW3LiJmkv1A1bcuImaS/8OlK8vOZpL/w6Ury85mkvwh0gb5emqS/CHSBvl6apL8wVRYwyZqkvzBVFjDJmqS/8AkPRzObpL/wCQ9HM5ukv6AJcQOdm6S/oAlxA52bpL+QxkFlBpykv5DGQWUGnKS/8K2GbG+cpL/wrYZsb5ykv9AnRRnYnKS/0CdFGdicpL9Al4JrQJ2kv0CXgmtAnaS/GFpEY6idpL8YWkRjqJ2kvzDJjwAQnqS/MMmPABCepL9gOGpDd56kv2A4akN3nqS/SPbYK96epL9I9tgr3p6kv5hM4blEn6S/mEzhuUSfpL/of4jtqp+kv+h/iO2qn6S/uM/TxhCgpL+4z9PGEKCkv4h2yEV2oKS/iHbIRXagpL/QqWtq26Ckv9Cpa2rboKS/AJrCNEChpL8AmsI0QKGkv3hy0qSkoaS/eHLSpKShpL+YWaC6CKKkv5hZoLoIoqS/uHAxdmyipL+4cDF2bKKkvzDUitfPoqS/MNSK18+ipL9Qm7HeMqOkv1Cbsd4yo6S/gNiqi5WjpL+A2KqLlaOkvwCZe973o6S/AJl73vejpL8w5SjXWaSkvzDlKNdZpKS/cMC3dbukpL9wwLd1u6SkvyApLbocpaS/ICktuhylpL+gGI6kfaWkv6AYjqR9paS/YIPfNN6lpL9gg9803qWkv+BYJms+pqS/4Fgmaz6mpL+Yg2dHnqakv5iDZ0eepqS/EOmnyf2mpL8Q6afJ/aakv/Bp7PFcp6S/8Gns8VynpL/Q4TnAu6ekv9DhOcC7p6S/cCeVNBqopL9wJ5U0Gqikv5AMA094qKS/kAwDT3iopL8QXogP1qikvxBeiA/WqKS/0OMpdjOppL/Q4yl2M6mkv9hg7IKQqaS/2GDsgpCppL84k9Q17amkvziT1DXtqaS/KDTnjkmqpL8oNOeOSaqkv9j3KI6lqqS/2PcojqWqpL+wjZ4zAaukv7CNnjMBq6S/KKBMf1yrpL8ooEx/XKukv9DUN3G3q6S/0NQ3cberpL9YzGQJEqykv1jMZAkSrKS/iCLYR2yspL+IIthHbKykv1hulizGrKS/WG6WLMaspL/QQaS3H62kv9BBpLcfraS/GCoG6XitpL8YKgbpeK2kv4ivwMDRraS/iK/AwNGtpL+QVdg+Kq6kv5BV2D4qrqS/2JpRY4KupL/YmlFjgq6kvxj5MC7arqS/GPkwLtqupL8w5XqfMa+kvzDlep8xr6S/QM8zt4ivpL9AzzO3iK+kv3giYHXfr6S/eCJgdd+vpL9ARQTaNbCkv0BFBNo1sKS/MJkk5YuwpL8wmSTli7Ckv/h6xZbhsKS/+HrFluGwpL+YQuvuNrGkv5hC6+42saS/IEOa7YuxpL8gQ5rti7Gkv+DK1pLgsaS/4MrWkuCxpL9QI6XeNLKkv1Ajpd40sqS/MJEJ0YiypL8wkQnRiLKkv2BUCGrcsqS/YFQIatyypL/wp6WpL7Okv/Cnpakvs6S/QMLlj4KzpL9AwuWPgrOkv8jUzBzVs6S/yNTMHNWzpL9YDF9QJ7Skv1gMX1AntKS/2JCgKnm0pL/YkKAqebSkv4iFlavKtKS/iIWVq8q0pL/QCELTG7Wkv9AIQtMbtaS/YDSqoWy1pL9gNKqhbLWkvyAd0ha9taS/IB3SFr21pL84070yDbakvzjTvTINtqS/CGJx9Vy2pL8IYnH1XLakv0DQ8F6stqS/QNDwXqy2pL/IH0Bv+7akv8gfQG/7tqS/yE1jJkq3pL/ITWMmSrekv7hSXoSYt6S/uFJehJi3pL9IIjWJ5rekv0giNYnmt6S/aKvrNDS4pL9oq+s0NLikv3DYhYeBuKS/cNiFh4G4pL/YjgeBzrikv9iOB4HOuKS/gK90IRu5pL+Ar3QhG7mkv3AW0WhnuaS/cBbRaGe5pL8gmyBXs7mkvyCbIFezuaS/QBBn7P65pL9AEGfs/rmkv8hDqChKuqS/yEOoKEq6pL8I/+cLlbqkvwj/5wuVuqS/oAYqlt+6pL+gBiqW37qkv3gacscpu6S/eBpyxym7pL/I9cOfc7ukv8j1w59zu6S/KE8jH727pL8oTyMfvbukv3DYk0UGvKS/cNiTRQa8pL/QPhkTT7ykv9A+GRNPvKS/2Cq3h5e8pL/YKreHl7ykv2hAcaPfvKS/aEBxo9+8pL+oHktmJ72kv6geS2YnvaS/MGBI0G69pL8wYEjQbr2kv9CabOG1vaS/0Jps4bW9pL/YX7uZ/L2kv9hfu5n8vaS/2Ds4+UK+pL/YOzj5Qr6kv7i25v+IvqS/uLbm/4i+pL/QU8qtzr6kv9BTyq3OvqS/wJHmAhS/pL/AkeYCFL+kv5DqPv9Yv6S/kOo+/1i/pL+o09ainb+kv6jT1qKdv6S/yL2x7eG/pL/IvbHt4b+kvyAV098lwKS/IBXT3yXApL8oQT55acCkvyhBPnlpwKS/yKT2uazApL/IpPa5rMCkv1Ce/6HvwKS/UJ7/oe/ApL9wh1wxMsGkv3CHXDEywaS/MLUQaHTBpL8wtRBodMGkvwh4H0a2waS/CHgfRrbBpL/gG4zL98Gkv+AbjMv3waS/+OdZ+DjCpL/451n4OMKkv/gejMx5wqS/+B6MzHnCpL/w/iVIusKkv/D+JUi6wqS/cMEqa/rCpL9wwSpr+sKkv1CbnTU6w6S/UJudNTrDpL/ovIGnecOkv+i8gad5w6S/+FHawLjDpL/4UdrAuMOkv7CBqoH3w6S/sIGqgffDpL+gbvXpNcSkv6Bu9ek1xKS/4Da++XPEpL/gNr75c8Skv9DzB7GxxKS/0PMHsbHEpL9wutUP78Skv3C61Q/vxKS/AJsqFizFpL8AmyoWLMWkv1ihCcRoxaS/WKEJxGjFpL+o1HUZpcWkv6jUdRmlxaS/qDdyFuHFpL+oN3IW4cWkv3jIAbscxqS/eMgBuxzGpL+ogCcHWMakv6iAJwdYxqS/QFXm+pLGpL9AVeb6ksakv9A2QZbNxqS/0DZBls3GpL9AETvZB8ekv0ARO9kHx6S/AMzWw0HHpL8AzNbDQcekvwhKF1Z7x6S/CEoXVnvHpL+gaf+PtMekv6Bp/4+0x6S/sASSce3HpL+wBJJx7cekv5Dw0folyKS/kPDR+iXIpL8A/sErXsikvwD+wSteyKS/WPlkBJbIpL9Y+WQElsikv1iqvYTNyKS/WKq9hM3IpL9A1M6sBMmkv0DUzqwEyaS/2DWbfDvJpL/YNZt8O8mkv2CJJfRxyaS/YIkl9HHJpL+YhHATqMmkv5iEcBOoyaS/wNh+2t3JpL/A2H7a3cmkv5AyU0kTyqS/kDJTSRPKpL9YOvBfSMqkv1g68F9IyqS/yJNYHn3KpL/Ik1gefcqkvzjejoSxyqS/ON6OhLHKpL9gtJWS5cqkv2C0lZLlyqS/mKxvSBnLpL+YrG9IGcukv7BYH6ZMy6S/sFgfpkzLpL/4Raerf8ukv/hFp6t/y6S/SP0JWbLLpL9I/QlZssukvxgDSq7ky6S/GANKruTLpL8412mrFsykvzjXaasWzKS/KPVrUEjMpL8o9WtQSMykv+DTUp15zKS/4NNSnXnMpL/Y5SCSqsykv9jlIJKqzKS/KJnYLtvMpL8omdgu28ykv2BXfHMLzaS/YFd8cwvNpL+ghQ5gO82kv6CFDmA7zaS/mISR9GrNpL+YhJH0as2kv3iwBzGazaS/eLAHMZrNpL8IYXMVyc2kvwhhcxXJzaS/oOnWoffNpL+g6dah982kvxiZNNYlzqS/GJk01iXOpL/YuY6yU86kv9i5jrJTzqS/6JHnNoHOpL/okec2gc6kv8hiQWOuzqS/yGJBY67OpL+gaZ43286kv6BpnjfbzqS/EN8AtAfPpL8Q3wC0B8+kv1j3atgzz6S/WPdq2DPPpL9Q4t6kX8+kv1Di3qRfz6S/SMteGYvPpL9Iy14Zi8+kv0DZ7DW2z6S/QNnsNbbPpL+4Lov64M+kv7gui/rgz6S/0Ok7ZwvQpL/Q6TtnC9CkvzAkAXw10KS/MCQBfDXQpL8g89w4X9CkvyDz3Dhf0KS/eGfRnYjQpL94Z9GdiNCkv6iN4Kqx0KS/qI3gqrHQpL+obQxg2tCkv6htDGDa0KS/KAtXvQLRpL8oC1e9AtGkv1BlwsIq0aS/UGXCwirRpL/odlBwUtGkv+h2UHBS0aS/YDYDxnnRpL9gNgPGedGkv6CV3MOg0aS/oJXcw6DRpL9Qgt5px9Gkv1CC3mnH0aS/kOUKuO3RpL+Q5Qq47dGkvzikY64T0qS/OKRjrhPSpL+onupMOdKkv6ie6kw50qS/2LChk17SpL/YsKGTXtKkv2iyioKD0qS/aLKKgoPSpL+IdqcZqNKkv4h2pxmo0qS/GMz5WMzSpL8YzPlYzNKkv4h9g0Dw0qS/iH2DQPDSpL/YUEbQE9Okv9hQRtAT06S/wAdECDfTpL/AB0QIN9Okv5BffuhZ06S/kF9+6FnTpL8gEfdwfNOkvyAR93B806S/ANGvoZ7TpL8A0a+hntOkv1hPqnrA06S/WE+qesDTpL/wN+j74dOkv/A36Pvh06S/ODJrJQPUpL84MmslA9SkvzDhNPcj1KS/MOE09yPUpL+A40ZxRNSkv4DjRnFE1KS/gNOik2TUpL+A06KTZNSkvxBHSl6E1KS/EEdKXoTUpL/Izz7Ro9Skv8jPPtGj1KS/4PqB7MLUpL/g+oHswtSkvyhRFbDh1KS/KFEVsOHUpL8gV/obANWkvyBX+hsA1aS/4IwyMB7VpL/gjDIwHtWkvzBuv+w71aS/MG6/7DvVpL9wcqJRWdWkv3ByolFZ1aS/sAzdXnbVpL+wDN1edtWkv6ircBST1aS/qKtwFJPVpL+ouV5yr9Wkv6i5XnKv1aS/uJyoeMvVpL+4nKh4y9Wkv3C2Tyfn1aS/cLZPJ+fVpL8gZFV+AtakvyBkVX4C1qS/wP66fR3WpL/A/rp9Hdakv+DagSU41qS/4NqBJTjWpL/ASKt1Utakv8BIq3VS1qS/WJQ4bmzWpL9YlDhubNakvzAFKw+G1qS/MAUrD4bWpL+I3oNYn9akv4jeg1if1qS/OF9ESrjWpL84X0RKuNakv+DBbeTQ1qS/4MFt5NDWpL+wPAEn6dakv7A8ASfp1qS/gAEAEgHXpL+AAQASAdekv+A9a6UY16S/4D1rpRjXpL8QG0ThL9ekvxAbROEv16S/6L2LxUbXpL/ovYvFRtekv/hGQ1Jd16S/+EZDUl3XpL940muHc9ekv3jSa4dz16S/QHgGZYnXpL9AeAZlidekv/BLFOue16S/8EsU657XpL/AXJYZtNekv8Bclhm016S/iLWN8MjXpL+ItY3wyNekv/Bc+2/d16S/8Fz7b93XpL84VeCX8dekvzhV4Jfx16S/QJw9aAXYpL9AnD1oBdikv7ArFOEY2KS/sCsU4RjYpL/Y+GQCLNikv9j4ZAIs2KS/qPQwzD7YpL+o9DDMPtikv8ALeT5R2KS/wAt5PlHYpL+IJj5ZY9ikv4gmPllj2KS/8CiBHHXYpL/wKIEcddikv7jyQoiG2KS/uPJCiIbYpL84X4Scl9ikvzhfhJyX2KS/iEVGWajYpL+IRUZZqNikv2h4ib642KS/aHiJvrjYpL9Ixk7MyNikv0jGTszI2KS/QPmWgtjYpL9A+ZaC2NikvzDXYuHn2KS/MNdi4efYpL+IIbPo9tikv4ghs+j22KS/gJWImAXZpL+AlYiYBdmkvwDs4/AT2aS/AOzj8BPZpL+Y2cXxIdmkv5jZxfEh2aS/gA4vmy/ZpL+ADi+bL9mkv7g2IO082aS/uDYg7TzZpL/o+ZnnSdmkv+j5medJ2aS/YPucilbZpL9g+5yKVtmkvzDaKdZi2aS/MNop1mLZpL8QMUHKbtmkvxAxQcpu2aS/aJbjZnrZpL9oluNmetmkv2CcEayF2aS/YJwRrIXZpL/I0MuZkNmkv8jQy5mQ2aS/GL0SMJvZpL8YvRIwm9mkv6Dm5m6l2aS/oObmbqXZpL8wzkhWr9mkvzDOSFav2aS/cPA45rjZpL9w8DjmuNmkv7DFtx7C2aS/sMW3HsLZpL/owcX/ytmkv+jBxf/K2aS/2FRjidPZpL/YVGOJ09mkv+jpkLvb2aS/6OmQu9vZpL8o6E6W49mkvyjoTpbj2aS/cLKdGevZpL9wsp0Z69mkv0CnfUXy2aS/QKd9RfLZpL/YIO8Z+dmkv9gg7xn52aS/EHXylv/ZpL8QdfKW/9mkv5j1h7wF2qS/mPWHvAXapL+w76+KC9qkv7Dvr4oL2qS/aKxqARHapL9orGoBEdqkv3hwuCAW2qS/eHC4IBbapL9QfJnoGtqkv1B8mega2qS/CAwOWR/apL8IDA5ZH9qkv4BXFnIj2qS/gFcWciPapL9IkrIzJ9qkv0iSsjMn2qS/iOvinSrapL+I6+KdKtqkv1COp7At2qS/UI6nsC3apL8woQBsMNqkvzChAGww2qS/iEbuzzLapL+IRu7PMtqkv3CccNw02qS/cJxw3DTapL+ovIeRNtqkv6i8h5E22qS/qLwz7zfapL+ovDPvN9qkv6itdPU42qS/qK109TjapL94nEqkOdqkv3icSqQ52qS/uJG1+znapL+4kbX7Odqkv7iRtfs52qS/uJG1+znapL94nEqkOdqkv3icSqQ52qS/oK109TjapL+grXT1ONqkv6i8M+832qS/qLwz7zfapL+ovIeRNtqkv6i8h5E22qS/cJxw3DTapL9wnHDcNNqkv4hG7s8y2qS/iEbuzzLapL8woQBsMNqkvzChAGww2qS/UI6nsC3apL9QjqewLdqkv5Dr4p0q2qS/kOvinSrapL9IkrIzJ9qkv0iSsjMn2qS/gFcWciPapL+AVxZyI9qkvwgMDlkf2qS/CAwOWR/apL9QfJnoGtqkv1B8mega2qS/eHC4IBbapL94cLggFtqkv2isagER2qS/aKxqARHapL+w76+KC9qkv7Dvr4oL2qS/kPWHvAXapL+Q9Ye8BdqkvxB18pb/2aS/EHXylv/ZpL/YIO8Z+dmkv9gg7xn52aS/QKd9RfLZpL9Ap31F8tmkv3CynRnr2aS/cLKdGevZpL8o6E6W49mkvyjoTpbj2aS/6OmQu9vZpL/o6ZC729mkv9hUY4nT2aS/2FRjidPZpL/owcX/ytmkv+jBxf/K2aS/sMW3HsLZpL+wxbcewtmkv3DwOOa42aS/cPA45rjZpL8wzkhWr9mkvzDOSFav2aS/oObmbqXZpL+g5uZupdmkvyC9EjCb2aS/IL0SMJvZpL/A0MuZkNmkv8DQy5mQ2aS/YJwRrIXZpL9gnBGshdmkv2iW42Z62aS/aJbjZnrZpL8QMUHKbtmkvxAxQcpu2aS/MNop1mLZpL8w2inWYtmkv2D7nIpW2aS/YPucilbZpL/o+ZnnSdmkv+j5medJ2aS/uDYg7TzZpL+4NiDtPNmkv4AOL5sv2aS/gA4vmy/ZpL+Q2cXxIdmkv5DZxfEh2aS/AOzj8BPZpL8A7OPwE9mkv4CViJgF2aS/gJWImAXZpL+IIbPo9tikv4ghs+j22KS/MNdi4efYpL8w12Lh59ikv0D5loLY2KS/QPmWgtjYpL9Ixk7MyNikv0jGTszI2KS/aHiJvrjYpL9oeIm+uNikv4hFRlmo2KS/iEVGWajYpL84X4Scl9ikvzhfhJyX2KS/uPJCiIbYpL+48kKIhtikv/AogRx12KS/8CiBHHXYpL+IJj5ZY9ikv4gmPllj2KS/wAt5PlHYpL/AC3k+Udikv6j0MMw+2KS/qPQwzD7YpL/Y+GQCLNikv9j4ZAIs2KS/sCsU4RjYpL+wKxThGNikv0CcPWgF2KS/QJw9aAXYpL84VeCX8dekvzhV4Jfx16S/8Fz7b93XpL/wXPtv3dekv5C1jfDI16S/kLWN8MjXpL/AXJYZtNekv8Bclhm016S/8EsU657XpL/wSxTrntekv0B4BmWJ16S/QHgGZYnXpL940muHc9ekv3jSa4dz16S/+EZDUl3XpL/4RkNSXdekv+i9i8VG16S/6L2LxUbXpL8QG0ThL9ekvxAbROEv16S/4D1rpRjXpL/gPWulGNekv4ABABIB16S/gAEAEgHXpL+wPAEn6dakv7A8ASfp1qS/4MFt5NDWpL/gwW3k0NakvzhfREq41qS/OF9ESrjWpL+A3oNYn9akv4Deg1if1qS/MAUrD4bWpL8wBSsPhtakv1iUOG5s1qS/WJQ4bmzWpL/ASKt1Utakv8BIq3VS1qS/4NqBJTjWpL/g2oElONakv8D+un0d1qS/wP66fR3WpL8gZFV+AtakvyBkVX4C1qS/cLZPJ+fVpL9wtk8n59Wkv7icqHjL1aS/uJyoeMvVpL+wuV5yr9Wkv7C5XnKv1aS/qKtwFJPVpL+oq3AUk9Wkv7AM3V521aS/sAzdXnbVpL9wcqJRWdWkv3ByolFZ1aS/MG6/7DvVpL8wbr/sO9Wkv+CMMjAe1aS/4IwyMB7VpL8gV/obANWkvyBX+hsA1aS/KFEVsOHUpL8oURWw4dSkv+D6gezC1KS/4PqB7MLUpL/Izz7Ro9Skv8jPPtGj1KS/EEdKXoTUpL8QR0pehNSkv4DTopNk1KS/gNOik2TUpL+A40ZxRNSkv4DjRnFE1KS/MOE09yPUpL8w4TT3I9SkvzgyayUD1KS/ODJrJQPUpL/wN+j74dOkv/A36Pvh06S/WE+qesDTpL9YT6p6wNOkvwDRr6Ge06S/ANGvoZ7TpL8gEfdwfNOkvyAR93B806S/kF9+6FnTpL+QX37oWdOkv8AHRAg306S/wAdECDfTpL/YUEbQE9Okv9hQRtAT06S/iH2DQPDSpL+IfYNA8NKkvxjM+VjM0qS/GMz5WMzSpL+IdqcZqNKkv4h2pxmo0qS/aLKKgoPSpL9osoqCg9Kkv9iwoZNe0qS/2LChk17SpL+onupMOdKkv6ie6kw50qS/OKRjrhPSpL84pGOuE9Kkv5DlCrjt0aS/kOUKuO3RpL9Qgt5px9Gkv1CC3mnH0aS/oJXcw6DRpL+gldzDoNGkv2A2A8Z50aS/YDYDxnnRpL/odlBwUtGkv+h2UHBS0aS/UGXCwirRpL9QZcLCKtGkvygLV70C0aS/KAtXvQLRpL+wbQxg2tCkv7BtDGDa0KS/oI3gqrHQpL+gjeCqsdCkv3hn0Z2I0KS/eGfRnYjQpL8g89w4X9CkvyDz3Dhf0KS/MCQBfDXQpL8wJAF8NdCkv9DpO2cL0KS/0Ok7ZwvQpL+4Lov64M+kv7gui/rgz6S/QNnsNbbPpL9A2ew1ts+kv0jLXhmLz6S/SMteGYvPpL9Q4t6kX8+kv1Di3qRfz6S/WPdq2DPPpL9Y92rYM8+kvxDfALQHz6S/EN8AtAfPpL+gaZ43286kv6BpnjfbzqS/yGJBY67OpL/IYkFjrs6kv+iR5zaBzqS/6JHnNoHOpL/YuY6yU86kv9i5jrJTzqS/GJk01iXOpL8YmTTWJc6kv6Dp1qH3zaS/oOnWoffNpL8IYXMVyc2kvwhhcxXJzaS/eLAHMZrNpL94sAcxms2kv5iEkfRqzaS/mISR9GrNpL+ghQ5gO82kv6CFDmA7zaS/YFd8cwvNpL9gV3xzC82kvyiZ2C7bzKS/KJnYLtvMpL/Y5SCSqsykv9jlIJKqzKS/4NNSnXnMpL/g01Kdecykvyj1a1BIzKS/KPVrUEjMpL8412mrFsykvzjXaasWzKS/GANKruTLpL8YA0qu5Mukv0j9CVmyy6S/SP0JWbLLpL/4Raerf8ukv/hFp6t/y6S/sFgfpkzLpL+wWB+mTMukv5isb0gZy6S/mKxvSBnLpL9gtJWS5cqkv2C0lZLlyqS/ON6OhLHKpL843o6Escqkv8iTWB59yqS/yJNYHn3KpL9YOvBfSMqkv1g68F9IyqS/kDJTSRPKpL+QMlNJE8qkv8DYftrdyaS/wNh+2t3JpL+YhHATqMmkv5iEcBOoyaS/YIkl9HHJpL9giSX0ccmkv9g1m3w7yaS/2DWbfDvJpL9A1M6sBMmkv0DUzqwEyaS/UKq9hM3IpL9Qqr2Ezcikv1D5ZASWyKS/UPlkBJbIpL8A/sErXsikvwD+wSteyKS/kPDR+iXIpL+Q8NH6Jcikv7AEknHtx6S/sASSce3HpL+gaf+PtMekv6Bp/4+0x6S/AEoXVnvHpL8AShdWe8ekvwDM1sNBx6S/AMzWw0HHpL9AETvZB8ekv0ARO9kHx6S/0DZBls3GpL/QNkGWzcakv0BV5vqSxqS/QFXm+pLGpL+ggCcHWMakv6CAJwdYxqS/cMgBuxzGpL9wyAG7HMakv7A3chbhxaS/sDdyFuHFpL+w1HUZpcWkv7DUdRmlxaS/UKEJxGjFpL9QoQnEaMWkvwCbKhYsxaS/AJsqFizFpL9wutUP78Skv3C61Q/vxKS/0PMHsbHEpL/Q8wexscSkv+A2vvlzxKS/4Da++XPEpL+gbvXpNcSkv6Bu9ek1xKS/sIGqgffDpL+wgaqB98OkvwBS2sC4w6S/AFLawLjDpL/wvIGnecOkv/C8gad5w6S/UJudNTrDpL9Qm501OsOkv3DBKmv6wqS/cMEqa/rCpL/w/iVIusKkv/D+JUi6wqS/8B6MzHnCpL/wHozMecKkv/DnWfg4wqS/8OdZ+DjCpL/gG4zL98Gkv+AbjMv3waS/EHgfRrbBpL8QeB9GtsGkvzC1EGh0waS/MLUQaHTBpL9wh1wxMsGkv3CHXDEywaS/UJ7/oe/ApL9Qnv+h78Ckv8Ck9rmswKS/wKT2uazApL8gQT55acCkvyBBPnlpwKS/IBXT3yXApL8gFdPfJcCkv9C9se3hv6S/0L2x7eG/pL+g09ainb+kv6DT1qKdv6S/kOo+/1i/pL+Q6j7/WL+kv8CR5gIUv6S/wJHmAhS/pL/QU8qtzr6kv9BTyq3OvqS/sLbm/4i+pL+wtub/iL6kv9A7OPlCvqS/0Ds4+UK+pL/gX7uZ/L2kv+Bfu5n8vaS/0Jps4bW9pL/Qmmzhtb2kvzBgSNBuvaS/MGBI0G69pL+gHktmJ72kv6AeS2YnvaS/YEBxo9+8pL9gQHGj37ykv+Aqt4eXvKS/4Cq3h5e8pL/QPhkTT7ykv9A+GRNPvKS/cNiTRQa8pL9w2JNFBrykvyBPIx+9u6S/IE8jH727pL/Q9cOfc7ukv9D1w59zu6S/cBpyxym7pL9wGnLHKbukv6AGKpbfuqS/oAYqlt+6pL8Q/+cLlbqkvxD/5wuVuqS/wEOoKEq6pL/AQ6goSrqkv0AQZ+z+uaS/QBBn7P65pL8gmyBXs7mkvyCbIFezuaS/cBbRaGe5pL9wFtFoZ7mkv4CvdCEbuaS/gK90IRu5pL/gjgeBzrikv+COB4HOuKS/cNiFh4G4pL9w2IWHgbikv3Cr6zQ0uKS/cKvrNDS4pL9AIjWJ5rekv0AiNYnmt6S/sFJehJi3pL+wUl6EmLekv9BNYyZKt6S/0E1jJkq3pL/AH0Bv+7akv8AfQG/7tqS/QNDwXqy2pL9A0PBerLakvxBicfVctqS/EGJx9Vy2pL8w070yDbakvzDTvTINtqS/IB3SFr21pL8gHdIWvbWkv2A0qqFstaS/YDSqoWy1pL/QCELTG7Wkv9AIQtMbtaS/gIWVq8q0pL+AhZWryrSkv+CQoCp5tKS/4JCgKnm0pL9QDF9QJ7Skv1AMX1AntKS/0NTMHNWzpL/Q1Mwc1bOkv0DC5Y+Cs6S/QMLlj4KzpL/wp6WpL7Okv/Cnpakvs6S/YFQIatyypL9gVAhq3LKkvzCRCdGIsqS/MJEJ0YiypL9QI6XeNLKkv1Ajpd40sqS/4MrWkuCxpL/gytaS4LGkvyBDmu2LsaS/IEOa7YuxpL+QQuvuNrGkv5BC6+42saS/AHvFluGwpL8Ae8WW4bCkvzCZJOWLsKS/MJkk5YuwpL9ARQTaNbCkv0BFBNo1sKS/cCJgdd+vpL9wImB136+kv0DPM7eIr6S/QM8zt4ivpL8w5XqfMa+kvzDlep8xr6S/EPkwLtqupL8Q+TAu2q6kv+CaUWOCrqS/4JpRY4KupL+QVdg+Kq6kv5BV2D4qrqS/gK/AwNGtpL+Ar8DA0a2kvxAqBul4raS/ECoG6XitpL/QQaS3H62kv9BBpLcfraS/UG6WLMaspL9QbpYsxqykv5Ai2EdsrKS/kCLYR2yspL9QzGQJEqykv1DMZAkSrKS/0NQ3cberpL/Q1Ddxt6ukvzCgTH9cq6S/MKBMf1yrpL+wjZ4zAaukv7CNnjMBq6S/4PcojqWqpL/g9yiOpaqkvyA0545JqqS/IDTnjkmqpL9Ak9Q17amkv0CT1DXtqaS/4GDsgpCppL/gYOyCkKmkv9DjKXYzqaS/0OMpdjOppL8QXogP1qikvxBeiA/WqKS/kAwDT3iopL+QDANPeKikv3AnlTQaqKS/cCeVNBqopL/Q4TnAu6ekv9DhOcC7p6S/8Gns8VynpL/waezxXKekvxDpp8n9pqS/EOmnyf2mpL+Qg2dHnqakv5CDZ0eepqS/4Fgmaz6mpL/gWCZrPqakv2CD3zTepaS/YIPfNN6lpL+gGI6kfaWkv6AYjqR9paS/ICktuhylpL8gKS26HKWkv3DAt3W7pKS/cMC3dbukpL8w5SjXWaSkvzDlKNdZpKS/AJl73vejpL8AmXve96Okv4DYqouVo6S/gNiqi5WjpL9Qm7HeMqOkv1Cbsd4yo6S/MNSK18+ipL8w1IrXz6Kkv7BwMXZsoqS/sHAxdmyipL+QWaC6CKKkv5BZoLoIoqS/gHLSpKShpL+ActKkpKGkvwCawjRAoaS/AJrCNEChpL/QqWtq26Ckv9Cpa2rboKS/gHbIRXagpL+AdshFdqCkv7DP08YQoKS/sM/TxhCgpL/gf4jtqp+kv+B/iO2qn6S/oEzhuUSfpL+gTOG5RJ+kv1D22CvenqS/UPbYK96epL9gOGpDd56kv2A4akN3nqS/MMmPABCepL8wyY8AEJ6kvxBaRGOonaS/EFpEY6idpL9Al4JrQJ2kv0CXgmtAnaS/0CdFGdicpL/QJ0UZ2Jykv/CthmxvnKS/8K2GbG+cpL+QxkFlBpykv5DGQWUGnKS/oAlxA52bpL+gCXEDnZukv/AJD0czm6S/8AkPRzObpL8wVRYwyZqkvzBVFjDJmqS/AHSBvl6apL8AdIG+Xpqkv/DpSvLzmaS/8OlK8vOZpL9QNW3LiJmkv1A1bcuImaS/cM/iSR2ZpL9wz+JJHZmkv2Aspm2xmKS/YCymbbGYpL8wu7E2RZikvzC7sTZFmKS/wOX/pNiXpL/A5f+k2Jekv8AQi7hrl6S/wBCLuGuXpL/Am01x/pakv8CbTXH+lqS/IOFBz5CWpL8g4UHPkJakvzA2YtIilqS/MDZi0iKWpL8A66h6tJWkvwDrqHq0laS/cEoQyEWVpL9wShDIRZWkvzCakrrWlKS/MJqSutaUpL/gGipSZ5Skv+AaKlJnlKS/0AfRjveTpL/QB9GO95OkvyCXgXCHk6S/IJeBcIeTpL+w+TX3FpOkv7D5NfcWk6S/UFvoIqaSpL9QW+gippKkv4DikvM0kqS/gOKS8zSSpL+QsC9pw5Gkv5CwL2nDkaS/cOG4g1GRpL9w4biDUZGkvyCMKEPfkKS/IIwoQ9+QpL8QwninbJCkvxDCeKdskKS/kI+jsPmPpL+Qj6Ow+Y+kv+D7ol6Gj6S/4PuiXoaPpL+gCHGxEo+kv6AIcbESj6S/gLIHqZ6OpL+Asgepno6kv7DwYEUqjqS/sPBgRSqOpL9AtXaGtY2kv0C1doa1jaS/4OxCbECNpL/g7EJsQI2kvwB/v/bKjKS/AH+/9sqMpL+wTeYlVYykv7BN5iVVjKS/0DWx+d6LpL/QNbH53oukv+AOGnJoi6S/4A4acmiLpL8QqxqP8YqkvxCrGo/xiqS/MNesUHqKpL8w16xQeoqkv9BayrYCiqS/0FrKtgKKpL8g+GzBiomkvyD4bMGKiaS/AGyOcBKJpL8AbI5wEomkv/BtKMSZiKS/8G0oxJmIpL8AsDS8IIikvwCwNLwgiKS/EN+sWKeHpL8Q36xYp4ekv3Ciipkth6S/cKKKmS2HpL9AnMd+s4akv0Ccx36zhqS/EGldCDmGpL8QaV0IOYakvyCgRTa+haS/IKBFNr6FpL9Q03kIQ4Wkv1DTeQhDhaS/II/zfseEpL8gj/N+x4Skv4BarJlLhKS/gFqsmUuEpL8gt51Yz4OkvyC3nVjPg6S/ICHBu1KDpL8gIcG7UoOkv1APEMPVgqS/UA8Qw9WCpL/w8oNuWIKkv/Dyg25YgqS/8DcWvtqBpL/wNxa+2oGkv8BEwLFcgaS/wETAsVyBpL9AentJ3oCkv0B6e0negKS/8DNBhV+ApL/wM0GFX4Ckv+DHCmXgf6S/4McKZeB/pL+QhtHoYH+kv5CG0ehgf6S/ALuOEOF+pL8Au44Q4X6kv9CqO9xgfqS/0Ko73GB+pL8AltFL4H2kvwCW0UvgfaS/ELdJX199pL8Qt0lfX32kvxBDnRbefKS/EEOdFt58pL9wacVxXHykv3BpxXFcfKS/MFS7cNp7pL8wVLtw2nukv7AneBNYe6S/sCd4E1h7pL/QAvVZ1Xqkv9AC9VnVeqS/0P4qRFJ6pL/Q/ipEUnqkv5AvE9LOeaS/kC8T0s55pL8go6YDS3mkvyCjpgNLeaS/IGLe2MZ4pL8gYt7Yxnikv6Bvs1FCeKS/oG+zUUJ4pL/wyB5uvXekv/DIHm69d6S/AGYZLjh3pL8AZhkuOHekv/A4nJGydqS/8DickbJ2pL9gLqCYLHakv2AuoJgsdqS/UC0eQ6Z1pL9QLR5DpnWkvxAXD5EfdaS/EBcPkR91pL9Qx2uCmHSkv1DHa4KYdKS/IBQtFxF0pL8gFC0XEXSkv/DNS0+Jc6S/8M1LT4lzpL9wv8AqAXOkv3C/wCoBc6S/sK2EqXhypL+wrYSpeHKkvzBYkMvvcaS/MFiQy+9xpL+AeNyQZnGkv4B43JBmcaS/sMJh+dxwpL+wwmH53HCkvyDlGAVTcKS/IOUYBVNwpL9giPqzyG+kv2CI+rPIb6S/QE//BT5vpL9AT/8FPm+kv/DWH/uybqS/8NYf+7JupL/wtlSTJ26kv/C2VJMnbqS/4ICWzpttpL/ggJbOm22kv7DA3awPbaS/sMDdrA9tpL+A/CIug2ykv4D8Ii6DbKS/0LReUvZrpL/QtF5S9mukvzBkiRlpa6S/MGSJGWlrpL9wf5uD22qkv3B/m4PbaqS/wHWNkE1qpL/AdY2QTWqkv0CwV0C/aaS/QLBXQL9ppL9wkvKSMGmkv3CS8pIwaaS/AHpWiKFopL8AelaIoWikv6C+eyASaKS/oL57IBJopL9gslpbgmekv2CyWluCZ6S/YKHrOPJmpL9goes48makv9DRJrlhZqS/0NEmuWFmpL9QhATc0GWkv1CEBNzQZaS/MPN8oT9lpL8w83yhP2Wkv1BTiAmuZKS/UFOICa5kpL9g0x4UHGSkv2DTHhQcZKS/UJw4wYljpL9QnDjBiWOkvyDRzRD3YqS/INHNEPdipL/wjtYCZGKkv/CO1gJkYqS/0OxKl9BhpL/Q7EqX0GGkvyD8Is48YaS/IPwizjxhpL8QyFanqGCkvxDIVqeoYKS/AFbeIhRgpL8AVt4iFGCkv3ClsUB/X6S/cKWxQH9fpL+wr8gA6l6kv7CvyADqXqS/UGgbY1RepL9QaBtjVF6kv8C8oWe+XaS/wLyhZ75dpL+AlFMOKF2kv4CUUw4oXaS/ENEoV5FcpL8Q0ShXkVykv+BNGUL6W6S/4E0ZQvpbpL+A4BzPYlukv4DgHM9iW6S/UFgr/spapL9QWCv+ylqkv7B+PM8yWqS/sH48zzJapL8QF0hCmlmkvxAXSEKaWaS/oN5FVwFZpL+g3kVXAVmkv8CMLQ5oWKS/wIwtDmhYpL+A0vZmzlekv4DS9mbOV6S/AFuZYTRXpL8AW5lhNFekv0DLDP6ZVqS/QMsM/plWpL8Qwkg8/1WkvxDCSDz/VaS/QNhEHGRVpL9A2EQcZFWkv5Cg+J3IVKS/kKD4nchUpL9gp1vBLFSkv2CnW8EsVKS/MHNlhpBTpL8wc2WGkFOkvyCEDe3zUqS/IIQN7fNSpL9gVEv1VlKkv2BUS/VWUqS/wFcWn7lRpL/AVxafuVGkvxD8ZeobUaS/EPxl6htRpL/QqDHXfVCkv9CoMdd9UKS/YL9wZd9PpL9gv3Bl30+kv9CaGpVAT6S/0JoalUBPpL8gkCZmoU6kvyCQJmahTqS/8O2L2AFOpL/w7YvYAU6kv8D8QexhTaS/wPxB7GFNpL/A/j+hwUykv8D+P6HBTKS/4C999yBMpL/gL333IEykv9DF8O5/S6S/0MXw7n9LpL8A8JGH3kqkvwDwkYfeSqS/kNdXwTxKpL+Q11fBPEqkv0CfOZyaSaS/QJ85nJpJpL+QYy4Y+Eikv5BjLhj4SKS/0DotNVVIpL/QOi01VUikv8A0LfOxR6S/wDQt87FHpL8AWyVSDkekvwBbJVIOR6S/oLAMUmpGpL+gsAxSakakv5Ay2vLFRaS/kDLa8sVFpL8w14Q0IUWkvzDXhDQhRaS/oI4DF3xEpL+gjgMXfESkv4BCTZrWQ6S/gEJNmtZDpL8g1li+MEOkvyDWWL4wQ6S/YCYdg4pCpL9gJh2DikKkv7AJkejjQaS/sAmR6ONBpL8QUKvuPEGkvxBQq+48QaS/EMNilZVApL8Qw2KVlUCkv9AlrtztP6S/0CWu3O0/pL8ANYTERT+kvwA1hMRFP6S/0KbbTJ0+pL/QpttMnT6kv+Aqq3X0PaS/4CqrdfQ9pL+Aauk+Sz2kv4Bq6T5LPaS/MAiNqKE8pL8wCI2ooTykv1CgjLL3O6S/UKCMsvc7pL9gyN5cTTukv2DI3lxNO6S/gA96p6I6pL+AD3qnojqkv0D+VJL3OaS/QP5Ukvc5pL+gFmYdTDmkv6AWZh1MOaS/ENSjSKA4pL8Q1KNIoDikv1CrBBT0N6S/UKsEFPQ3pL+wCn9/Rzekv7AKf39HN6S/wFkJi5o2pL/AWQmLmjakv5D5mTbtNaS/kPmZNu01pL9gRCeCPzWkv2BEJ4I/NaS/II6nbZE0pL8gjqdtkTSkv7AjEfniM6S/sCMR+eIzpL+gS1okNDOkv6BLWiQ0M6S/oEV574QypL+gRXnvhDKkv9BKZFrVMaS/0EpkWtUxpL9wjRFlJTGkv3CNEWUlMaS/MDl3D3UwpL8wOXcPdTCkvwBzi1nEL6S/AHOLWcQvpL8QWURDEy+kvxBZREMTL6S/0AKYzGEupL/QApjMYS6kvwCBfPWvLaS/AIF89a8tpL+A3ee9/Sykv4Dd5739LKS/gBvQJUsspL+AG9AlSyykv0A3Ky2YK6S/QDcrLZgrpL9wJu/T5Cqkv3Am79PkKqS/sNcRGjEqpL+w1xEaMSqkv/Ayif98KaS/8DKJ/3wppL9AGUuEyCikv0AZS4TIKKS/4GRNqBMopL/gZE2oEyikvyDphWteJ6S/IOmFa14npL9wcurNqCakv3By6s2oJqS/gMZwz/IlpL+AxnDP8iWkv+CjDnA8JaS/4KMOcDwlpL9gwrmvhSSkv2DCua+FJKS/8NJnjs4jpL/w0meOziOkv1B/DgwXI6S/UH8ODBcjpL+QaqMoXyKkv5BqoyhfIqS/sDAc5KYhpL+wMBzkpiGkv6Bmbj7uIKS/oGZuPu4gpL+Amo83NSCkv4Cajzc1IKS/QFN1z3sfpL9AU3XPex+kvwARFQbCHqS/ABEVBsIepL+gTGTbBx6kv6BMZNsHHqS/MHhYT00dpL8weFhPTR2kv5D+5mGSHKS/kP7mYZIcpL+QQwUT1xukv5BDBRPXG6S/AKSoYhsbpL8ApKhiGxukv4B1xlBfGqS/gHXGUF8apL+gBlTdohmkv6AGVN2iGaS/4J5GCOYYpL/gnkYI5hikv5B+k9EoGKS/kH6T0SgYpL/g3i85axekv+DeLzlrF6S/4PEQP60WpL/g8RA/rRakv1DiK+PuFaS/UOIr4+4VpL8A1HUlMBWkvwDUdSUwFaS/cOPjBXEUpL9w4+MFcRSkv8Ala4SxE6S/wCVrhLETpL8wqQCh8RKkvzCpAKHxEqS/cHSZWzESpL9wdJlbMRKkvyCHKrRwEaS/IIcqtHARpL+Q2aiqrxCkv5DZqKqvEKS/0FwJP+4PpL/QXAk/7g+kv6D6QHEsD6S/oPpAcSwPpL9wlURBag6kv3CVREFqDqS/UAgJr6cNpL9QCAmvpw2kvzAng7rkDKS/MCeDuuQMpL+AvqdjIQykv4C+p2MhDKS/QJNrql0LpL9Ak2uqXQukv1Bjw46ZCqS/UGPDjpkKpL/w5KMQ1Qmkv/DkoxDVCaS/EMcBMBAJpL8QxwEwEAmkv1Cx0exKCKS/ULHR7EoIpL/AQwhHhQekv8BDCEeFB6S/ABeaPr8GpL8AF5o+vwakv2C8e9P4BaS/YLx70/gFpL+QvaEFMgWkv5C9oQUyBaS/0JwA1WoEpL/QnADVagSkv+DUjEGjA6S/4NSMQaMDpL8Q2TpL2wKkvxDZOkvbAqS/ABX/8RICpL8AFf/xEgKkv/DszTVKAaS/8OzNNUoBpL+AvZsWgQCkv4C9mxaBAKS/wNtclLf/o7/A21yUt/+jvyCVBa/t/qO/IJUFr+3+o7+AL4pmI/6jv4AvimYj/qO/IOneulj9o78g6d66WP2jv7D496uN/KO/sPj3q438o78Qjck5wvujvxCNyTnC+6O/oM1HZPb6o7+gzUdk9vqjvwDaZisq+qO/ANpmKyr6o78wyhqPXfmjvzDKGo9d+aO/cK5Xj5D4o79wrlePkPijv1CPESzD96O/UI8RLMP3o7+AbTxl9fajv4BtPGX19qO/IELMOif2o78gQsw6J/ajv4D+tKxY9aO/gP60rFj1o78gjOq6ifSjvyCM6rqJ9KO/oMxgZbrzo7+gzGBluvOjvxCaC6zq8qO/EJoLrOryo79Qxt6OGvKjv1DG3o4a8qO/0BvODUrxo7/QG84NSvGjv8BczSh58KO/wFzNKHnwo7/AQ9Dfp++jv8BD0N+n76O/YIPKMtbuo79gg8oy1u6jv2DGryEE7qO/YMavIQTuo7+Ar3OsMe2jv4Cvc6wx7aO/kNkJ017so7+Q2QnTXuyjv5DXZZWL66O/kNdllYvro79wNHvzt+qjv3A0e/O36qO/AHM97ePpo78Acz3t4+mjv1AOoIIP6aO/UA6ggg/po79AeZazOuijv0B5lrM66KO/0B4UgGXno7/QHhSAZeejv7BhDOiP5qO/sGEM6I/mo7/QnHLrueWjv9Cccuu55aO/0CI6iuPko7/QIjqK4+Sjv1A+VsQM5KO/UD5WxAzko7/QMbqZNeOjv9Axupk146O/sDdZCl7io7+wN1kKXuKjvyCCJhaG4aO/IIImFobho78gOxW9reCjvyA7Fb2t4KO/sIQY/9Tfo7+whBj/1N+jv3B4I9z73qO/cHgj3Pveo7/AJylUIt6jv8AnKVQi3qO/8JscZ0jdo7/wmxxnSN2jvwDW8BRu3KO/ANbwFG7co7+Qzphdk9ujv5DOmF2T26O/IHYHQbjao78gdgdBuNqjv9C0L7/c2aO/0LQvv9zZo79wagTYANmjv3BqBNgA2aO/cG54iyTYo79wbniLJNijvxCQftlH16O/EJB+2UfXo7/wlQnCatajv/CVCcJq1qO/gD4MRY3Vo7+APgxFjdWjv9A/eWKv1KO/0D95Yq/Uo79AR0Ma0dOjv0BHQxrR06O/EPpcbPLSo78Q+lxs8tKjv+D0uFgT0qO/4PS4WBPSo7/gy0nfM9Gjv+DLSd8z0aO/wAoCAFTQo7/ACgIAVNCjv6A01Lpzz6O/oDTUunPPo79QxLIPk86jv1DEsg+TzqO/wCuQ/rHNo7/AK5D+sc2jv6DUXofQzKO/oNReh9DMo7/QHxGq7sujv9AfEaruy6O/wGWZZgzLo7/AZZlmDMujvyD26bwpyqO/IPbpvCnKo78gGPWsRsmjvyAY9axGyaO/IAqtNmPIo78gCq02Y8ijv/ABBFp/x6O/8AEEWn/Ho7+wLOwWm8ajv7As7BabxqO/sK5XbbbFo7+wrldttsWjv7CjOF3RxKO/sKM4XdHEo7+QHoHm68Ojv5Aegebrw6O/YCkjCQbDo79gKSMJBsOjv6DFEMUfwqO/oMUQxR/Co7/A6zsaOcGjv8DrOxo5waO/gIuWCFLAo7+Ai5YIUsCjv9CLEpBqv6O/0IsSkGq/o7+wyqGwgr6jv7DKobCCvqO/MB02apq9o78wHTZqmr2jv7BPwbyxvKO/sE/BvLG8o7+AJTWoyLujv4AlNajIu6O/8FiDLN+6o7/wWIMs37qjv4CbnUn1uaO/gJudSfW5o7+QlXX/Crmjv5CVdf8KuaO/sOb8TSC4o7+w5vxNILijv0AlJTU1t6O/QCUlNTW3o7+g3t+0Sbajv6De37RJtqO/QJcezV21o79Alx7NXbWjv2DK0n1xtKO/YMrSfXG0o78g6u3GhLOjvyDq7caEs6O/oF9hqJeyo7+gX2Gol7Kjv9CKHiKqsaO/0IoeIqqxo79gwhY0vLCjv2DCFjS8sKO/AFQ73s2vo78AVDveza+jvwCEfSDfrqO/AIR9IN+uo7+gjc76762jv6CNzvrvraO/wKIfbQCto7/Aoh9tAK2jvzDsYXcQrKO/MOxhdxCso79AiYYZIKujv0CJhhkgq6O/AJB+Uy+qo78AkH5TL6qjv2ANOyU+qaO/YA07JT6po7/ABK2OTKijv8AErY5MqKO/MHDFj1qno78wcMWPWqejv2BAdShopqO/YEB1KGimo7+wXK1YdaWjv7BcrVh1paO/AKNeIIKko78Ao14ggqSjv8DneX+Oo6O/wOd5f46jo7/Q9e91mqKjv9D173WaoqO/0I6xA6aho7/QjrEDpqGjv5BqryixoKO/kGqvKLGgo7+gN9rku5+jv6A32uS7n6O/0JoiOMaeo7/QmiI4xp6jv3AveSLQnaO/cC95ItCdo79Qh86j2Zyjv1CHzqPZnKO/YCoTvOKbo79gKhO84pujv0CXN2vrmqO/QJc3a+uao7+gQiyx85mjv6BCLLHzmaO/oJfhjfuYo7+gl+GN+5ijv8D3RwEDmKO/wPdHAQOYo7+Quk8LCpejv5C6TwsKl6O/AC7pqxCWo78ALumrEJajv1CWBOMWlaO/UJYE4xaVo7/QLZKwHJSjv9AtkrAclKO/ACWCFCKTo78AJYIUIpOjv6CixA4nkqO/oKLEDieSo7+Aw0mfK5Gjv4DDSZ8rkaO/sJoBxi+Qo7+wmgHGL5CjvxAx3IIzj6O/EDHcgjOPo7/ghcnVNo6jv+CFydU2jqO/QI65vjmNo79Ajrm+OY2jv2A1nD08jKO/YDWcPTyMo79wXGFSPoujv3BcYVI+i6O/kNr4/D+Ko7+Q2vj8P4qjv/B8Uj1BiaO/8HxSPUGJo7+QBl4TQoijv5AGXhNCiKO/UDALf0KHo79QMAt/QoejvzCpSYBChqO/MKlJgEKGo7/AFQkXQoWjv8AVCRdChaO/kBA5Q0GEo7+QEDlDQYSjvwAqyQRAg6O/ACrJBECDo78g6KhbPoKjvyDoqFs+gqO/0MbHRzyBo7/QxsdHPIGjv8A3Fck5gKO/wDcVyTmAo79QooDfNn+jv1CigN82f6O/cGP5ijN+o79wY/mKM36jv+DNbssvfaO/4M1uyy99o7/wKdCgK3yjv/Ap0KArfKO/oLUMCyd7o7+gtQwLJ3ujv4CkEwoieqO/gKQTCiJ6o7+QH9SdHHmjv5Af1J0ceaO/oEU9xhZ4o7+gRT3GFnijv8AqPoMQd6O/wCo+gxB3o7+w2MXUCXajv7DYxdQJdqO/kE7DugJ1o7+QTsO6AnWjv/CAJTX7c6O/8IAlNftzo7/QWdtD83Kjv9BZ20PzcqO/kLjT5upxo7+QuNPm6nGjvwBy/R3icKO/AHL9HeJwo78wUEfp2G+jvzBQR+nYb6O/kBKgSM9uo7+QEqBIz26jv+Bt9jvFbaO/4G32O8Vto7/wCznDumyjv/ALOcO6bKO/IIxW3q9ro78gjFber2ujv8CCPY2kaqO/wII9jaRqo7+AedzPmGmjv4B53M+YaaO/EO8hpoxoo78Q7yGmjGijv3BX/A+AZ6O/cFf8D4Bno7+AG1oNc2ajv4AbWg1zZqO/cJkpnmVlo79wmSmeZWWjv1AkWcJXZKO/UCRZwldko79gBNd5SWOjv2AE13lJY6O/sHaRxDpio7+wdpHEOmKjv4CtdqIrYaO/gK12oitho7/Qz3QTHGCjv9DPdBMcYKO/sPl5Fwxfo7+w+XkXDF+jvwA8dK77XaO/ADx0rvtdo7+AnFHY6lyjv4CcUdjqXKO/wBUAldlbo7/AFQCV2Vujv0CXbeTHWqO/QJdt5Mdao78gBYjGtVmjvyAFiMa1WaO/YDg9O6NYo79gOD07o1ijv5D+ekKQV6O/kP56QpBXo78wGi/cfFajvzAaL9x8VqO/MEJHCGlVo78wQkcIaVWjv1AiscZUVKO/UCKxxlRUo7/QWloXQFOjv9BaWhdAU6O/oIAw+ipSo7+ggDD6KlKjvyAdIW8VUaO/IB0hbxVRo79Qrhl2/0+jv1CuGXb/T6O/sKYHD+lOo7+wpgcP6U6jvyBt2DnSTaO/IG3YOdJNo78QXXn2ukyjvxBdefa6TKO/UMbXRKNLo79QxtdEo0ujv/Ds4CSLSqO/8OzgJItKo7+gCYKWckmjv6AJgpZySaO/IEmomVlIo78gSaiZWUijv7DMQC5AR6O/sMxALkBHo7+wqThUJkajv7CpOFQmRqO/wOl8CwxFo7/A6XwLDEWjv+CK+lPxQ6O/4Ir6U/FDo7/wfp4t1kKjv/B+ni3WQqO/QKxVmLpBo79ArFWYukGjvyDtDJSeQKO/IO0MlJ5Ao7/wD7Eggj+jv/APsSCCP6O/MNcuPmU+o78w1y4+ZT6jv0D5cuxHPaO/QPly7Ec9o7/AIGorKjyjv8AgaisqPKO/AOwA+ws7o78A7AD7Czujv4DtI1vtOaO/gO0jW+05o7+Aq79Lzjijv4Crv0vOOKO/IKDAzK43o78goMDMrjejv2A5E96ONqO/YDkT3o42o78g2aN/bjWjvyDZo39uNaO/8NResU00o7/w1F6xTTSjvyB2MHMsM6O/IHYwcywzo7/A+QTFCjKjv8D5BMUKMqO/kJDIpugwo7+QkMim6DCjvwBfZxjGL6O/AF9nGMYvo78Afc0Zoy6jvwB9zRmjLqO/MPbmqn8to78w9uaqfy2jv8DJn8tbLKO/wMmfy1sso79g6uN7Nyujv2Dq43s3K6O/ID6fuxIqo78gPp+7Eiqjv9CevYrtKKO/0J69iu0oo79g2Srpxyejv2DZKunHJ6O/QK7S1qEmo79ArtLWoSajv1DRoFN7JaO/UNGgU3slo7+w6YBfVCSjv7DpgF9UJKO/0JFe+iwjo7/QkV76LCOjv2BXJSQFIqO/YFclJAUio79Qu8Dc3CCjv1C7wNzcIKO/wDEcJLQfo7/AMRwktB+jv/AhI/qKHqO/8CEj+ooeo79A5sBeYR2jv0DmwF5hHaO/QMzgUTcco79AzOBRNxyjv3AUbtMMG6O/cBRu0wwbo7+A8lPj4Rmjv4DyU+PhGaO/4Ix9gbYYo7/gjH2BthijvyD91a2KF6O/IP3VrYoXo7/AT0hoXhajv8BPSGheFqO/AIS/sDEVo78AhL+wMRWjvyCMJocEFKO/IIwmhwQUo78QTWjr1hKjvxBNaOvWEqO/sJ5v3agRo7+wnm/dqBGjv2BLJ116EKO/YEsnXXoQo7+AEHpqSw+jv4AQempLD6O/8J1SBRwOo7/wnVIFHA6jv0CWmy3sDKO/QJabLewMo7+Ajj/juwujv4COP+O7C6O/cA4pJosKo79wDikmiwqjv3CQQvZZCaO/cJBC9lkJo78QgXZTKAijvxCBdlMoCKO/oD+vPfYGo7+gP6899gajv8Ad17TDBaO/wB3XtMMFo79gX9i4kASjv2Bf2LiQBKO/8DqdSV0Do7/wOp1JXQOjvwDZD2cpAqO/ANkPZykCo7+wVBoR9QCjv7BUGhH1AKO/ALumR8D/or8Au6ZHwP+iv2ALnwqL/qK/YAufCov+or9wN+1ZVf2iv3A37VlV/aK/wCJ7NR/8or/AIns1H/yivxCjMp3o+qK/EKMynej6or9AgP2Qsfmiv0CA/ZCx+aK/EHTFEHr4or8QdMUQeviiv1AqdBxC96K/UCp0HEL3or+wQPOzCfaiv7BA87MJ9qK/4EYs19D0or/gRizX0PSiv0C+CIaX86K/QL4Ihpfzor8gGnLAXfKivyAacsBd8qK/kL9RhiPxor+Qv1GGI/Giv3AFkdfo76K/cAWR1+jvor8wNBm0re6ivzA0GbSt7qK/8IXTG3Ltor/whdMbcu2iv4AmqQ427KK/gCapDjbsor9QM4OM+eqiv1Azg4z56qK/MLtKlbzpor8wu0qVvOmiv6C+6Ch/6KK/oL7oKH/oor9gL0ZHQeeiv2AvRkdB56K/wPBL8ALmor/A8EvwAuaiv4DX4iPE5KK/gNfiI8Tkor+QqfPhhOOiv5Cp8+GE46K/QB5nKkXior9AHmcqReKivyDeJf0E4aK/IN4l/QThor/wghhaxN+iv/CCGFrE36K/sJcnQYPeor+wlydBg96iv2CYO7JB3aK/YJg7skHdor9A8jyt/9uiv0DyPK3/26K/gAMUMr3aor+AAxQyvdqiv2AbqUB62aK/YBupQHrZor8AeuTYNtiivwB65Ng22KK/kFCu+vLWor+QUK768taivwDB7qWu1aK/AMHupa7Vor8g3o3aadSivyDejdpp1KK/oKtzmCTTor+gq3OYJNOiv9AdiN/e0aK/0B2I397Ror/QGbOvmNCiv9AZs6+Y0KK/YHXcCFLPor9gddwIUs+iv8D26+oKzqK/wPbr6grOor8QVclVw8yivxBVyVXDzKK/oDdcSXvLor+gN1xJe8uiv3A2jMUyyqK/cDaMxTLKor/w2UDK6ciiv/DZQMrpyKK/4JphV6DHor/gmmFXoMeiv4Di1WxWxqK/gOLVbFbGor8wCoUKDMWivzAKhQoMxaK/sFtWMMHDor+wW1YwwcOiv/AQMd51wqK/8BAx3nXCor8wVPwTKsGivzBU/BMqwaK/gD+f0d2/or+AP5/R3b+iv2DdABeRvqK/YN0AF5G+or8QKAjkQ72ivxAoCORDvaK/AAqcOPa7or8ACpw49ruiv4BdoxSouqK/gF2jFKi6or/A7AR4Wbmiv8DsBHhZuaK/0HGnYgq4or/QcadiCriiv5CWcdS6tqK/kJZx1Lq2or+Q9EnNarWiv5D0Sc1qtaK/MBUXTRq0or8wFRdNGrSiv3Bxv1PJsqK/cHG/U8myor/gcSnhd7Giv+BxKeF3saK/wG479SWwor/Abjv1JbCiv7Cv24/TrqK/sK/bj9Ouor/Qa/CwgK2iv9Br8LCAraK/0MlfWC2sor/QyV9YLayiv6DfD4bZqqK/oN8Phtmqor9wsuY5hamiv3Cy5jmFqaK/4DbKczCoor/gNspzMKiiv8BQoDPbpqK/wFCgM9umor8A0055haWivwDTTnmFpaK/sH+7RC+kor+wf7tEL6SivwAIzJXYoqK/AAjMldiior8gDGZsgaGivyAMZmyBoaK/QBtvyCmgor9AG2/IKaCiv3CzzKnRnqK/cLPMqdGeor+wQWQQeZ2iv7BBZBB5naK/wCEb/B+cor/AIRv8H5yiv0Ce1mzGmqK/QJ7WbMaaor9w8HtibJmiv3Dwe2JsmaK/UEDw3BGYor9QQPDcEZiiv3CkGNy2lqK/cKQY3LaWor8AItpfW5WivwAi2l9blaK/kKwZaP+Tor+QrBlo/5Oiv2AmvPSikqK/YCa89KKSor/gX6YFRpGiv+BfpgVGkaK/ABi9muiPor8AGL2a6I+iv/D75LOKjqK/8Pvks4qOor8wpwJRLI2ivzCnAlEsjaK/UKP6cc2Lor9Qo/pxzYuivzBosRZuiqK/MGixFm6Kor+gWws/Domiv6BbCz8OiaK/oNHs6q2Hor+g0ezqrYeiv/ALOhpNhqK/8As6Gk2Gor+QOtfM64Siv5A618zrhKK/EHuoAoqDor8Qe6gCioOivwDZkbsngqK/ANmRuyeCor+gTXf3xICiv6BNd/fEgKK/8L88tmF/or/wvzy2YX+iv5AExvf9faK/kATG9/19or/A3fa7mXyiv8Dd9ruZfKK/MPuyAjV7or8w+7ICNXuivzD63cvPeaK/MPrdy895or9gZVsXaniiv2BlWxdqeKK/0LQO5QN3or/QtA7lA3eiv9BN2zSddaK/0E3bNJ11or8Ag6QGNnSivwCDpAY2dKK/MJRNWs5yor8wlE1aznKivzCuuS9mcaK/MK65L2Zxor8w68uG/W+ivzDry4b9b6K/EFJnX5Ruor8QUmdflG6iv+DWbrkqbaK/4NZuuSptor+QWsWUwGuiv5BaxZTAa6K/wKpN8VVqor/Aqk3xVWqivxCC6s7qaKK/EILqzupoor+wh34tf2eiv7CHfi1/Z6K/kE/sDBNmor+QT+wME2aivzBaFm2mZKK/MFoWbaZkor+wFN9NOWOiv7AU3005Y6K/gNgor8thor+A2Civy2Giv7Dr1ZBdYKK/sOvVkF1gor+QgMjy7l6iv5CAyPLuXqK/sLXi1H9dor+wteLUf12ivwCWBjcQXKK/AJYGNxBcor+AGBYZoFqiv4AYFhmgWqK/cCDzei9Zor9wIPN6L1miv+B8f1y+V6K/4Hx/XL5Xor8g6Zy9TFaivyDpnL1MVqK/UAwtntpUor9QDC2e2lSiv1B5Ef5nU6K/UHkR/mdTor8Qryvd9FGivxCvK930UaK/8BddO4FQor/wF107gVCivzAKhxgNT6K/MAqHGA1Por+gx4p0mE2iv6DHinSYTaK/oH1JTyNMor+gfUlPI0yiv+BEpKitSqK/4ESkqK1Kor+wIXyAN0miv7AhfIA3SaK/oAOy1sBHor+gA7LWwEeiv4DFJqtJRqK/gMUmq0lGor9wLbv90USiv3Atu/3RRKK/kOxPzllDor+Q7E/OWUOiv0CfxRzhQaK/QJ/FHOFBor+wzPzoZ0Civ7DM/OhnQKK/QOfVMu4+or9A59Uy7j6ivwBMMfpzPaK/AEwx+nM9or/QQu8++Tuiv9BC7z75O6K/gP7vAH46or+A/u8Afjqiv1CcE0ACOaK/UJwTQAI5or8wJDr8hTeivzAkOvyFN6K/sIhDNQk2or+wiEM1CTaiv9CmD+uLNKK/0KYP64s0or/ARX4dDjOiv8BFfh0OM6K/UBdvzI8xor9QF2/MjzGiv2C3wfcQMKK/YLfB9xAwor8grFWfkS6ivyCsVZ+RLqK/sGUKwxEtor+wZQrDES2iv4A+v2KRK6K/gD6/YpEror+gelN+ECqiv6B6U34QKqK/YEimFY8oor9gSKYVjyiiv6C/ligNJ6K/oL+WKA0nor8g4gO3iiWivyDiA7eKJaK/YJvMwAckor9gm8zABySiv0DAz0WEIqK/QMDPRYQior9wD+xFACGiv3AP7EUAIaK/8DAAwXsfor/wMADBex+ivxC26rb2HaK/ELbqtvYdor+gGYoncRyiv6AZiidxHKK/kL+8Eusaor+Qv7wS6xqivwD1YHhkGaK/APVgeGQZor8g8FRY3ReivyDwVFjdF6K/MNB2slUWor8w0HayVRaiv2CdpIbNFKK/YJ2khs0Uor+gSLzURBOiv6BIvNREE6K/wKubnLsRor/Aq5ucuxGiv0CJIN4xEKK/QIkg3jEQor9QjCiZpw6iv1CMKJmnDqK/gEiRzRwNor+ASJHNHA2ivyA6OHuRC6K/IDo4e5ELor+QxfqhBQqiv5DF+qEFCqK/0De2QXkIor/QN7ZBeQiiv+DFR1rsBqK/4MVHWuwGor8AjYzrXgWivwCNjOteBaK/kJJh9dADor+QkmH10AOiv8DDo3dCAqK/wMOjd0ICor/w9S9yswCiv/D1L3KzAKK/IObi5CP/ob8g5uLkI/+hvxA5mc+T/aG/EDmZz5P9ob9Qey8yA/yhv1B7LzID/KG/4CCCDHL6ob/gIIIMcvqhv2CFbV7g+KG/YIVtXuD4ob/A680nTvehv8DrzSdO96G/YH5/aLv1ob9gfn9ou/Whv9BOXiAo9KG/0E5eICj0ob/AVUZPlPKhv8BVRk+U8qG/EHMT9f/wob8QcxP1//Chv6BtoRFr76G/oG2hEWvvob8w88uk1e2hvzDzy6TV7aG/QJhurj/sob9AmG6uP+yhvzDYZC6p6qG/MNhkLqnqob/wFIokEumhv/AUiiQS6aG/IJe5kHrnob8gl7mQeuehv8CNznLi5aG/wI3OcuLlob8wDqTKSeShvzAOpMpJ5KG/MBQVmLDiob8wFBWYsOKhv8CB/NoW4aG/wIH82hbhob/wHjWTfN+hv/AeNZN836G/0JmZwOHdob/QmZnA4d2hv3CGBGNG3KG/cIYEY0bcob/gXlB6qtqhv+BeUHqq2qG/sIJXBg7Zob+wglcGDtmhv1A39AZx16G/UDf0BnHXob+wpwB809Whv7CnAHzT1aG/UORWZTXUob9Q5FZlNdShvwDj0MKW0qG/AOPQwpbSob/wfkiU99Chv/B+SJT30KG/gHiX2VfPob+AeJfZV8+hv0B1l5K3zaG/QHWXkrfNob+g/yG/Fsyhv6D/Ib8WzKG/QIcQX3XKob9AhxBfdcqhv1BgPHLTyKG/UGA8ctPIob8AxH74MMehvwDEfvgwx6G/4M+w8Y3Fob/gz7DxjcWhv1CGq13qw6G/UIarXerDob8Azkc8RsKhvwDORzxGwqG/AHJejaHAob8Acl6NocChv7AhyFD8vqG/sCHIUPy+ob+AcF2GVr2hv4BwXYZWvaG/ENb2LbC7ob8Q1vYtsLuhv+CtbEcJuqG/4K1sRwm6ob9gN5fSYbihv2A3l9JhuKG/wJVOz7m2ob/AlU7Pubahv8DPaj0RtaG/wM9qPRG1ob/Qz8McaLOhv9DPwxxos6G/wGMxbb6xob/AYzFtvrGhv+A8iy4UsKG/4DyLLhSwob+g76hgaa6hv6DvqGBprqG/oPNhA76sob+g82EDvqyhv5CjjRYSq6G/kKONFhKrob8gPQOaZamhvyA9A5plqaG/wOCZjbinob/A4JmNuKehv7CRKPEKpqG/sJEo8Qqmob/ANYbEXKShv8A1hsRcpKG/cJWJB66iob9wlYkHrqKhv3BbCbr+oKG/cFsJuv6gob/wFNzbTp+hv/AU3NtOn6G/QDHYbJ6dob9AMdhsnp2hv+AB1Gztm6G/4AHUbO2bob8guqXbO5qhvyC6pds7mqG/cG8juYmYob9wbyO5iZihv+AYIwXXlqG/4BgjBdeWob8gj3q/I5WhvyCPer8jlaG/kIz/52+Tob+QjP/nb5Ohv9Csh367kaG/0KyHfruRob8gbeiCBpChvyBt6IIGkKG/sCv39FCOob+wK/f0UI6hv/AnidSajKG/8CeJ1JqMob9AgnMh5Iqhv0CCcyHkiqG/4DuL2yyJob/gO4vbLImhv/A2pQJ1h6G/8DalAnWHob8ANpaWvIWhvwA2lpa8haG/YNwylwOEob9g3DKXA4Shv7CtTwRKgqG/sK1PBEqCob/wDcHdj4Chv/ANwd2PgKG/IEFbI9V+ob8gQVsj1X6hv4Br8tQZfaG/gGvy1Bl9ob8wkVryXXuhvzCRWvJde6G/QJZne6F5ob9Almd7oXmhv0A+7W/kd6G/QD7tb+R3ob+ALL/PJnahv4Asv88mdqG/wOOwmmh0ob/A47CaaHShvxDGldCpcqG/EMaV0Klyob/AFEFx6nChv8AUQXHqcKG/UPCFfCpvob9Q8IV8Km+hvwBYN/JpbaG/AFg38mltob8wKijSqGuhvzAqKNKoa6G/4CMrHOdpob/gIysc52mhv4DgEtAkaKG/gOAS0CRoob9Q2rHtYWahv1Dase1hZqG/sGnadJ5kob+wadp0nmShvzDFXmXaYqG/MMVeZdpiob+wARG/FWGhv7ABEb8VYaG/8BHDgVBfob/wEcOBUF+hv2DGRq2KXaG/YMZGrYpdob9wzW1BxFuhv3DNbUHEW6G/ALMJPv1Zob8Aswk+/Vmhv1Dg66I1WKG/UODrojVYob8QnOVvbVahvxCc5W9tVqG/IArIpKRUob8gCsikpFShv1ArZEHbUqG/UCtkQdtSob+g3YpFEVGhv6DdikURUaG/kNsMsUZPob+Q2wyxRk+hv3C8uoN7TaG/cLy6g3tNob8Q9GS9r0uhvxD0ZL2vS6G/kNLbXeNJob+Q0ttd40mhv3CE72QWSKG/cITvZBZIob9AEnDSSEahv0AScNJIRqG/cGAtpnpEob9wYC2mekShv2Av99+rQqG/YC/336tCob8wG51/3EChvzAbnX/cQKG/YJvuhAw/ob9gm+6EDD+hvwADu+87PaG/AAO77zs9ob9QgNG/ajuhv1CA0b9qO6G/wBwB9Zg5ob/AHAH1mDmhv7C8GI/GN6G/sLwYj8Y3ob9gH+eN8zWhv2Af543zNaG/0N468R80ob/Q3jrxHzShv2Bv4rhLMqG/YG/iuEsyob8AIKzkdjChvwAgrOR2MKG/4BlmdKEuob/gGWZ0oS6hvzBg3mfLLKG/MGDeZ8ssob9A0OK+9Cqhv0DQ4r70KqG/ECFBeR0pob8QIUF5HSmhv1DjxpZFJ6G/UOPGlkUnob9AgUEXbSWhv0CBQRdtJaG/YD5++pMjob9gPn76kyOhv5A3SkC6IaG/kDdKQLohob+QYnLo3x+hv5BicujfH6G/MI7D8gQeob8wjsPyBB6hv/BhCl8pHKG/8GEKXykcob/QXRMtTRqhv9BdEy1NGqG/YNqqXHAYob9g2qpccBihv3AIne2SFqG/cAid7ZIWob/g8LXftBShv+Dwtd+0FKG/kHTBMtYSob+QdMEy1hKhvzBMi+b2EKG/MEyL5vYQob8gCN/6Fg+hvyAI3/oWD6G/EBCIbzYNob8QEIhvNg2hvzCjUURVC6G/MKNRRFULob/A1wZ5cwmhv8DXBnlzCaG/8JpyDZEHob/wmnINkQehvwCxXwGuBaG/ALFfAa4Fob+AtJhUygOhv4C0mFTKA6G/0BboBuYBob/QFugG5gGhv3AfGBgBAKG/cB8YGAEAob8g7PKHG/6gvyDs8ocb/qC/oHBCVjX8oL+gcEJWNfygv1B20IJO+qC/UHbQgk76oL+QnGYNZ/igv5CcZg1n+KC/8FfO9X72oL/wV871fvagv1Dy0DuW9KC/UPLQO5b0oL/wijffrPKgv/CKN9+s8qC/wBXL38LwoL/AFcvfwvCgv6BbVD3Y7qC/oFtUPdjuoL/w+Zv37Oygv/D5m/fs7KC/kGJqDgHroL+QYmoOAeugv5Dbh4EU6aC/kNuHgRTpoL8gf7xQJ+egvyB/vFAn56C/UDvQeznloL9QO9B7OeWgv+DRigJL46C/4NGKAkvjoL8Q2LPkW+GgvxDYs+Rb4aC/gLYSImzfoL+AthIibN+gv/Cobrp73aC/8KhuunvdoL8wvo6titugvzC+jq2K26C/sNc5+5jZoL+w1zn7mNmgv6CpNqOm16C/oKk2o6bXoL+Aukuls9Wgv4C6S6Wz1aC/AGM/AcDToL8AYz8BwNOgvwDO17bL0aC/AM7XtsvRoL8A+NrF1s+gvwD42sXWz6C/YK8OLuHNoL9grw4u4c2gv8CTOO/qy6C/wJM47+rLoL8gFh4J9MmgvyAWHgn0yaC/cHiEe/zHoL9weIR7/Megv6DNMEYExqC/oM0wRgTGoL9Q+edoC8Sgv1D552gLxKC/YK9u4xHCoL9gr27jEcKgvyB0ibUXwKC/IHSJtRfAoL8AnPzeHL6gvwCc/N4cvqC/EEuMXyG8oL8QS4xfIbygv1B1/DYluqC/UHX8NiW6oL/w3RBlKLigv/DdEGUouKC/oBeN6Sq2oL+gF43pKragv+CDNMQstKC/4IM0xCy0oL9AU8r0LbKgv0BTyvQtsqC/sIQRey6woL+whBF7LrCgv9DlzFYurqC/0OXMVi6uoL8wEr+HLaygvzASv4ctrKC/gHOqDSyqoL+Ac6oNLKqgv0BBUegpqKC/QEFR6CmooL9wgHUXJ6agv3CAdRcnpqC/cAPZmiOkoL9wA9maI6Sgv6BpPXIfoqC/oGk9ch+ioL+QH2SdGqCgv5AfZJ0aoKC/MF4OHBWeoL8wXg4cFZ6gvyAr/e0OnKC/ICv97Q6coL8wWPESCJqgvzBY8RIImqC/EIOrigCYoL8Qg6uKAJigv4AV7FT4laC/gBXsVPiVoL+gRHNx75Ogv6BEc3Hvk6C/ABEB4OWRoL8AEQHg5ZGgvzBGVaDbj6C/MEZVoNuPoL/Aei+y0I2gv8B6L7LQjaC/4A9PFcWLoL/gD08VxYugvyAxc8m4iaC/IDFzybiJoL9A1FrOq4egv0DUWs6rh6C/ELnEI56FoL8QucQjnoWgv+Bob8mPg6C/4GhvyY+DoL/ANhm/gIGgv8A2Gb+AgaC/sD6ABHF/oL+wPoAEcX+gv/BlYplgfaC/8GVimWB9oL9gWn19T3ugv2BafX1Pe6C/YJKOsD15oL9gko6wPXmgv5BMUzIrd6C/kExTMit3oL+wj4gCGHWgv7CPiAIYdaC/ICrrIARzoL8gKusgBHOgv/CxN43vcKC/8LE3je9woL9QhCpH2m6gv1CEKkfabqC/cMV/TsRsoL9wxX9OxGygv3Bg86KtaqC/cGDzoq1qoL/ABkFElmigv8AGQUSWaKC/MDAkMn5moL8wMCQyfmagv3AaWGxlZKC/cBpYbGVkoL8QyZfyS2KgvxDJl/JLYqC/EAWexDFgoL8QBZ7EMWCgv4BcJeIWXqC/gFwl4hZeoL+QIuhK+1ugv5Ai6Er7W6C/AG+g/t5ZoL8Ab6D+3lmgvxAeCP3BV6C/EB4I/cFXoL8A0NhFpFWgvwDQ2EWkVaC/IOnL2IVToL8g6cvYhVOgvzCRmrVmUaC/MJGatWZRoL9gs/3bRk+gv2Cz/dtGT6C/wP2tSyZNoL/A/a1LJk2gv2DhYwQFS6C/YOFjBAVLoL+wkdcF40igv7CR1wXjSKC/QATBT8BGoL9ABMFPwEagv8Dw1+GcRKC/wPDX4ZxEoL9g0NO7eEKgv2DQ07t4QqC/sN1r3VNAoL+w3WvdU0Cgv3AUV0YuPqC/cBRXRi4+oL8AMUz2BzygvwAxTPYHPKC/ULAB7eA5oL9QsAHt4Dmgv4DPLSq5N6C/gM8tKrk3oL/Ai4atkDWgv8CLhq2QNaC/kKHBdmczoL+QocF2ZzOgvwCNlIU9MaC/AI2UhT0xoL8AibTZEi+gvwCJtNkSL6C/UI/WcucsoL9Qj9Zy5yygvxBYr1C7KqC/EFivULsqoL9gWfNyjiigv2BZ83KOKKC/UMdW2WAmoL9Qx1bZYCagv1CTjYMyJKC/UJONgzIkoL8wbEtxAyKgvzBsS3EDIqC/UL1DotMfoL9QvUOi0x+gv/CuKRajHaC/8K4pFqMdoL9AJbDMcRugv0AlsMxxG6C/kMCJxT8ZoL+QwInFPxmgv7DcaAANF6C/sNxoAA0XoL/AkP982RSgv8CQ/3zZFKC/0K7/OqUSoL/Qrv86pRKgv5DDGjpwEKC/kMMaOnAQoL/wFQJ6Og6gv/AVAno6DqC/8KZm+gMMoL/wpmb6AwygvxAx+brMCaC/EDH5uswJoL9AKGq7lAegv0AoaruUB6C/ULlp+1sFoL9QuWn7WwWgv7DJp3oiA6C/sMmneiIDoL8g99M46ACgvyD30zjoAKC/oC47a1r9n7+gLjtrWv2fvwBvZ+Hi+J+/AG9n4eL4n79gOIrTafSfv2A4itNp9J+/wIEAQe/vn7/AgQBB7++fv+CuJilz65+/4K4mKXPrn79AkFiL9eafv0CQWIv15p+/oGHxZnbin7+gYfFmduKfvyDKS7v13Z+/IMpLu/Xdn78A28GHc9mfvwDbwYdz2Z+/wA6ty+/Un7/ADq3L79Sfv+BIZoZq0J+/4EhmhmrQn78A1UW348ufvwDVRbfjy5+/AGajXVvHn78AZqNdW8efv0AV1njRwp+/QBXWeNHCn78AYjQIRr6fvwBiNAhGvp+/YDAUC7m5n79gMBQLubmfv0DJyoAqtZ+/QMnKgCq1n7+A2KxomrCfv4DYrGiasJ+/IG0Owgisn78gbQ7CCKyfvwD4Qox1p5+/APhCjHWnn79gS53G4KKfv2BLncbgop+/4JlvcEqen7/gmW9wSp6fv4B1C4mymZ+/gHULibKZn7+gz8EPGZWfv6DPwQ8ZlZ+/QPfiA36Qn79A9+IDfpCfv+CYvmThi5+/4Ji+ZOGLn79AvaMxQ4efv0C9ozFDh5+/IMngaaOCn78gyeBpo4Kfv6B7wwwCfp+/oHvDDAJ+n78g7pgZX3mfvyDumBlfeZ+/QJOtj7p0n79Ak62PunSfv+A1TW4UcJ+/4DVNbhRwn78g+MK0bGufvyD4wrRsa5+/IFNZYsNmn78gU1liw2afv4AVWnYYYp+/gBVadhhin79AYw7wa12fv0BjDvBrXZ+/4LO+zr1Yn7/gs77OvVifv6DSshEOVJ+/oNKyEQ5Un7+g3DG4XE+fv6DcMbhcT5+/wECCwalKn7/AQILBqUqfv2C+6Sz1RZ+/YL7pLPVFn7+gZK35PkGfv6Bkrfk+QZ+/IJERJ4c8n78gkREnhzyfv8DvWbTNN5+/wO9ZtM03n78gecmgEjOfvyB5yaASM5+/AHKi61Uun78AcqLrVS6fvyBqJpSXKZ+/IGomlJcpn7/AO5aZ1ySfv8A7lpnXJJ+/AAoy+xUgn78ACjL7FSCfv8BAObhSG5+/wEA5uFIbn78Ak+rPjRafvwCT6s+NFp+/QPqDQccRn79A+oNBxxGfv2C1Qgz/DJ+/YLVCDP8Mn78ASGMvNQifvwBIYy81CJ+/IHkhqmkDn78geSGqaQOfv0BSuHuc/p6/QFK4e5z+nr+gHmKjzfmev6AeYqPN+Z6/4GlYIP30nr/gaVgg/fSev4D/0/Eq8J6/gP/T8Srwnr9A6QwXV+uev0DpDBdX656/wG46j4Hmnr/AbjqPgeaev+ATk1mq4Z6/4BOTWarhnr9gmEx10dyev2CYTHXR3J6/IPab4fbXnr8g9pvh9teev8BgtZ0a056/wGC1nRrTnr8gRMyoPM6evyBEzKg8zp6/gEMTAl3Jnr+AQxMCXcmev4A4vKh7xJ6/gDi8qHvEnr+gMfibmL+ev6Ax+JuYv56/IHL32rO6nr8gcvfas7qev8Bv6WTNtZ6/wG/pZM21nr+g0vw45bCev6DS/DjlsJ6/gHNfVvurnr+Ac19W+6uev+BaPrwPp56/4Fo+vA+nnr8AwMVpIqKevwDAxWkiop6/wAchXjOdnr/AByFeM52ev0DDephCmJ6/QMN6mEKYnr8Ar/wXUJOevwCv/BdQk56/gLHP21uOnr+Asc/bW46ev0DaG+NliZ6/QNob42WJnr+gYAgtboSev6BgCC1uhJ6/gKK7uHR/nr+Aoru4dH+ev2AjW4V5ep6/YCNbhXl6nr8AiwuSfHWevwCLC5J8dZ6/AKTw3X1wnr8ApPDdfXCevwBbLWh9a56/AFstaH1rnr+AveMve2aev4C94y97Zp6/QPg0NHdhnr9A+DQ0d2GevwBWQXRxXJ6/AFZBdHFcnr/APijvaVeev8A+KO9pV56/QDYIpGBSnr9ANgikYFKev8Da/pFVTZ6/wNr+kVVNnr9g4yi4SEiev2DjKLhISJ6/oB+iFTpDnr+gH6IVOkOev2B1hakpPp6/YHWFqSk+nr/g3+xyFzmev+Df7HIXOZ6/oG7xcAM0nr+gbvFwAzSev8BDq6LtLp6/wEOrou0unr/gkjEH1imev+CSMQfWKZ6/oJ+anbwknr+gn5qdvCSev4C8+2ShH56/gLz7ZKEfnr9ASWlchBqev0BJaVyEGp6/ALL2gmUVnr8AsvaCZRWev0BtttdEEJ6/QG2210QQnr8A+7lZIguevwD7uVkiC56/IOMRCP4Fnr8g4xEI/gWevwC0zeHXAJ6/ALTN4dcAnr8gAfzlr/udvyAB/OWv+52/4GGqE4b2nb/gYaoThvadv4Bv5Wla8Z2/gG/laVrxnb+gxLjnLOydv6DEuOcs7J2/wPoujP3mnb/A+i6M/eadv6CpUVbM4Z2/oKlRVszhnb9AZSlFmdydv0BlKUWZ3J2/wLy9V2TXnb/AvL1XZNedv6A4FY0t0p2/oDgVjS3Snb9gWTXk9Mydv2BZNeT0zJ2/AJYiXLrHnb8AliJcusedv0Ba4PN9wp2/QFrg833Cnb+gBXGqP72dv6AFcao/vZ2/AOnVfv+3nb8A6dV+/7edv8BFD3C9sp2/wEUPcL2ynb8gTBx9ea2dvyBMHH15rZ2/IBn7pDOonb8gGfukM6idv6C1qObrop2/oLWo5uuinb8gFCFBop2dvyAUIUGinZ2/oA9fs1aYnb+gD1+zVpidv4BpXDwJk52/gGlcPAmTnb+gyBHbuY2dv6DIEdu5jZ2/oLZ2jmiInb+gtnaOaIidvyCfgVUVg52/IJ+BVRWDnb/gzScvwH2dv+DNJy/AfZ2/gGxdGml4nb+AbF0aaXidv8CBFRYQc52/wIEVFhBznb/A7kEhtW2dv8DuQSG1bZ2/AG7TOlhonb8AbtM6WGidv0CRuWH5Yp2/QJG5Yflinb8AwOKUmF2dvwDA4pSYXZ2/oDU80zVYnb+gNTzTNVidv2D/sRvRUp2/YP+xG9FSnb+g+i5tak2dv6D6Lm1qTZ2/oNOcxgFInb+g05zGAUidv8AC5CaXQp2/wALkJpdCnb+Ay+uMKj2dv4DL64wqPZ2/ADqa97s3nb8AOpr3uzedv0Ah1GVLMp2/QCHUZUsynb/gGX3W2Cydv+AZfdbYLJ2/QH93SGQnnb9Af3dIZCedv0BupLrtIZ2/QG6kuu0hnb/gwuMrdRydv+DC4yt1HJ2/ABcUm/oWnb8AFxSb+hadv4C/Egd+EZ2/gL8SB34Rnb/gyrtu/wudv+DKu27/C52/4P7p0H4Gnb/g/unQfgadv0DXdiz8AJ2/QNd2LPwAnb+AgjqAd/ucv4CCOoB3+5y/4OALy/D1nL/g4AvL8PWcvwCCwAto8Jy/AILAC2jwnL+AoixB3eqcv4CiLEHd6py/ICojalDlnL8gKiNqUOWcvwCqdYXB35y/AKp1hcHfnL/AWfSRMNqcv8BZ9JEw2py/4BVujp3UnL/gFW6OndScv6BdsHkIz5y/oF2weQjPnL+gUIdSccmcv6BQh1JxyZy/YKy9F9jDnL9grL0X2MOcv8DKHMg8vpy/wMocyDy+nL9gn2xin7icv2CfbGKfuJy/QLVz5f+ynL9AtXPl/7Kcv4As909erZy/gCz3T16tnL9guLqguqecv2C4uqC6p5y/4JyA1hSinL/gnIDWFKKcvyCsCfBsnJy/IKwJ8GycnL9ARBXswpacv0BEFezClpy/AE1hyRaRnL8ATWHJFpGcv2A1qoZoi5y/YDWqhmiLnL8g8aoiuIWcvyDxqiK4hZy/oPYcnAWAnL+g9hycBYCcv+A7uPFQepy/4Du48VB6nL+gNDMimnScv6A0MyKadJy/YM9CLOFunL9gz0Is4W6cv2Bzmg4maZy/YHOaDiZpnL+g/evHaGOcv6D968doY5y/wL7nVqldnL/AvudWqV2cvwB4PLrnV5y/AHg8uudXnL9AWZfwI1Kcv0BZl/AjUpy/gP2j+F1MnL+A/aP4XUycv0BpDNGVRpy/QGkM0ZVGnL8gB3l4y0CcvyAHeXjLQJy/gKWQ7f46nL+ApZDt/jqcv4Bz+C4wNZy/gHP4LjA1nL/g/lM7Xy+cv+D+UztfL5y/wDBFEYwpnL/AMEURjCmcv+BKbK+2I5y/4Epsr7YjnL/g5GcU3x2cv+DkZxTfHZy/wOnUPgUYnL/A6dQ+BRicv4CUTi0pEpy/gJROLSkSnL/gbW7eSgycv+Btbt5KDJy/4EjMUGoGnL/gSMxQagacvwBA/oKHAJy/AED+gocAnL/Asphzovqbv8CymHOi+pu/AEIuIbv0m78AQi4hu/Sbv6DNT4rR7pu/oM1PitHum7/AcIyt5eibv8BwjK3l6Ju/gH9xiffim7+Af3GJ9+Kbv4CDihwH3Zu/gIOKHAfdm7+gOGFlFNebv6A4YWUU15u/IIp9Yh/Rm78gin1iH9Gbv8CPZRIoy5u/wI9lEijLm7/giZ1zLsWbv+CJnXMuxZu/4N6nhDK/m7/g3qeEMr+bv2AXBUQ0uZu/YBcFRDS5m7+A2zOwM7Obv4DbM7Azs5u/gO+wxzCtm7+A77DHMK2bvwAw94grp5u/ADD3iCunm78gj3/yI6GbvyCPf/IjoZu/oBDBAhqbm7+gEMECGpubvyDHMLgNlZu/IMcwuA2Vm78A0EER/46bvwDQQRH/jpu/gFBlDO6Im7+AUGUM7oibv6BxCqjagpu/oHEKqNqCm78gXZ7ixHybvyBdnuLEfJu/gDmMuqx2m7+AOYy6rHabvwAnPS6ScJu/ACc9LpJwm78gOxg8dWqbvyA7GDx1apu/wH2C4lVkm7/AfYLiVWSbvwDl3h80Xpu/AOXeHzRem7+AUY7yD1ibv4BRjvIPWJu/wIrvWOlRm7/Aiu9Y6VGbv4A7X1HAS5u/gDtfUcBLm7+A7TfalEWbv4DtN9qURZu/wAXS8WY/m7/ABdLxZj+bv+DAg5Y2OZu/4MCDljY5m7/ALqHGAzObv8AuocYDM5u/4C58gM4sm7/gLnyAziybvyBsZMKWJpu/IGxkwpYmm7/gWKeKXCCbv+BYp4pcIJu/gCqQ1x8am7+AKpDXHxqbvwDWZ6fgE5u/ANZnp+ATm78AC3X4ng2bvwALdfieDZu/ADD8yFoHm78AMPzIWgebvyBePxcUAZu/IF4/FxQBm7+gXH7hyvqav6BcfuHK+pq/4Jz2JX/0mr/gnPYlf/Sav2A14+Iw7pq/YDXj4jDumr8A3nwW4OeavwDefBbg55q/gOv5vozhmr+A6/m+jOGav0BKjto225q/QEqO2jbbmr/Aemtn3tSav8B6a2fe1Jq/QIzAY4POmr9AjMBjg86av6AYus0lyJq/oBi6zSXImr8gP4KjxcGavyA/gqPFwZq/gKBA42K7mr+AoEDjYruav0BZGov9tJq/QFkai/20mr/A/TGZla6av8D9MZmVrpq/wJSnCyuomr/AlKcLK6iav6CSmOC9oZq/oJKY4L2hmr/A1B8WTpuav8DUHxZOm5q/wJtVqtuUmr/Am1Wq25Sav4CHT5tmjpq/gIdPm2aOmr8gkSDn7oeavyCRIOfuh5q/YAbZi3SBmr9gBtmLdIGav+CDhof3epq/4IOGh/d6mr/A8DPYd3Sav8DwM9h3dJq/gHjpe/Vtmr+AeOl79W2avwCGrHBwZ5q/AIascHBnmr9Avn+06GCav0C+f7ToYJq/YPpiRV5amr9g+mJFXlqav+BCUyHRU5q/4EJTIdFTmr9AyUpGQU2av0DJSkZBTZq/AONAsq5Gmr8A40Cyrkaav8ADKmMZQJq/wAMqYxlAmr9At/dWgTmav0C391aBOZq/AJyYi+Yymr8AnJiL5jKavwBd+P5ILJq/AF34/kgsmr9grP+uqCWav2Cs/66oJZq/oDyUmQUfmr+gPJSZBR+av2C7mLxfGJq/YLuYvF8Ymr/AyuwVtxGav8DK7BW3EZq/QPtsowsLmr9A+2yjCwuavyDG8mJdBJq/IMbyYl0Emr8ghlRSrP2ZvyCGVFKs/Zm/AHJlb/j2mb8AcmVv+PaZv8CV9bdB8Jm/wJX1t0Hwmb/Ay9EpiOmZv8DL0SmI6Zm/ILfDwsvimb8gt8PCy+KZvyC8kYAM3Jm/ILyRgAzcmb9g+v5gStWZv2D6/mBK1Zm/QEXLYYXOmb9ARcthhc6Zv8Ads4C9x5m/wB2zgL3Hmb8Aq2+78sCZvwCrb7vywJm/ALS2DyW6mb8AtLYPJbqZv+CXOntUs5m/4Jc6e1Szmb8gR6r7gKyZvyBHqvuArJm/YDyxjqqlmb9gPLGOqqWZvyB19zHRnpm/IHX3MdGemb+AaiHj9JeZv4BqIeP0l5m/YAnQnxWRmb9gCdCfFZGZv2CroGUzipm/YKugZTOKmb9gDy0yToOZv2APLTJOg5m/IFELA2Z8mb8gUQsDZnyZv0DizdV6dZm/QOLN1Xp1mb8gggOojG6ZvyCCA6iMbpm/wDU3d5tnmb/ANTd3m2eZvyBA8ECnYJm/IEDwQKdgmb8AGrICsFmZvwAasgKwWZm/wGn8ubVSmb/Aafy5tVKZv+D6SmS4S5m/4PpKZLhLmb8AthX/t0SZvwC2Ff+3RJm/IJjQh7Q9mb8gmNCHtD2Zv0Cq6/utNpm/QKrr+602mb8A+dJYpC+ZvwD50likL5m/AIvum5comb8Ai+6blyiZv0BZosKHIZm/QFmiwochmb9ARU7KdBqZv0BFTsp0Gpm/gBBOsF4Tmb+AEE6wXhOZv0BT+XFFDJm/QFP5cUUMmb8Ac6MMKQWZvwBzowwpBZm/oJmbfQn+mL+gmZt9Cf6Yv6CrLMLm9pi/oKsswub2mL/APp3XwO+Yv8A+ndfA75i/YJAvu5fomL9gkC+7l+iYv2B7IWpr4Zi/YHshamvhmL/gbqzhO9qYv+BurOE72pi/oGMFHwnTmL+gYwUfCdOYv2DSXB/Ty5i/YNJcH9PLmL/Aqd7fmcSYv8Cp3t+ZxJi/AEOyXV29mL8AQ7JdXb2YvyBZ+pUdtpi/IFn6lR22mL/A/NSF2q6Yv8D81IXarpi/QIpbKpSnmL9AilsqlKeYvyCfooBKoJi/IJ+igEqgmL9gDrqF/ZiYv2AOuoX9mJi/ANasNq2RmL8A1qw2rZGYv4ATgZBZipi/gBOBkFmKmL+g+DeQAoOYv6D4N5ACg5i/IMDNMqh7mL8gwM0yqHuYvwCiOXVKdJi/AKI5dUp0mL+Ax21U6WyYv4DHbVTpbJi/wD9XzYRlmL/AP1fNhGWYv2Dz3dwcXpi/YPPd3BxemL+gmOR/sVaYv6CY5H+xVpi/4KZIs0JPmL/gpkizQk+YvyBK4nPQR5i/IEric9BHmL+gVoS+WkCYv6BWhL5aQJi/IDz8j+E4mL8gPPyP4TiYv8D4EeVkMZi/wPgR5WQxmL8gDIi65CmYvyAMiLrkKZi/QGobDWEimL9AahsNYSKYv8Btg9nZGpi/wG2D2dkamL/gynEcTxOYv+DKcRxPE5i/QIGS0sALmL9AgZLSwAuYv4DOi/guBJi/gM6L+C4EmL/gH/6KmfyXv+Af/oqZ/Je/QASEhgD1l79ABISGAPWXv2Adsudj7Ze/YB2y52Ptl7/gERerw+WXv+ARF6vD5Ze/IH47zR/el78gfjvNH96Xv2DloUp41pe/YOWhSnjWl7+AosYfzc6Xv4Cixh/Nzpe/YNkfSR7Hl79g2R9JHseXvyBmHcNrv5e/IGYdw2u/l7/AziiKtbeXv8DOKIq1t5e/QDKlmvuvl79AMqWa+6+Xv2A57/A9qJe/YDnv8D2ol79gBV2JfKCXv2AFXYl8oJe/gCA+YLeYl7+AID5gt5iXv0Bs23HukJe/QGzbce6Ql7+AEXe6IYmXv4ARd7ohiZe/oG5MNlGBl7+gbkw2UYGXvyAGkOF8eZe/IAaQ4Xx5l7+gbW+4pHGXv6Btb7ikcZe/gDsRt8hpl7+AOxG3yGmXvwD1lNnoYZe/APWU2ehhl78A/BIcBVqXvwD8EhwFWpe/YHyceh1Sl79gfJx6HVKXv0BZO/ExSpe/QFk78TFKl79AGvJ7QkKXv0Aa8ntCQpe/4Ne7Fk86l7/g17sWTzqXv+AnjL1XMpe/4CeMvVcyl78gCk9sXCqXvyAKT2xcKpe/4NPoHl0il7/g0+geXSKXv+AbNtFZGpe/4Bs20Vkal79gpQt/UhKXv2ClC39SEpe/wEs2JEcKl7/ASzYkRwqXv0Dterw3Ape/QO16vDcCl78AVZZDJPqWvwBVlkMk+pa/QCY9tQzylr9AJj21DPKWv2DFGw3x6Za/YMUbDfHplr9AQtZG0eGWv0BC1kbR4Za/oEEIXq3Zlr+gQQherdmWv2DlRE6F0Za/YOVEToXRlr+gthYTWcmWv6C2FhNZyZa/wIz/pyjBlr/AjP+nKMGWv4B2eAj0uJa/gHZ4CPS4lr9AofEvu7CWv0Ch8S+7sJa/wEDSGX6olr/AQNIZfqiWvwB2eME8oJa/AHZ4wTyglr8gNjki95eWvyA2OSL3l5a/oDBgN62Plr+gMGA3rY+Wv4C1L/xeh5a/gLUv/F6Hlr8Am+BrDH+WvwCb4GsMf5a/wCKigbV2lr/AIqKBtXaWv8DemThabpa/wN6ZOFpulr/gleOL+mWWv+CV44v6ZZa/wCeRdpZdlr/AJ5F2ll2WvwBxqvMtVZa/AHGq8y1Vlr9ALi3+wEyWv0AuLf7ATJa/AN8MkU9Elr8A3wyRT0SWvyCoMqfZO5a/IKgyp9k7lr/gNX07XzOWv+A1fTtfM5a/oJ3ASOAqlr+gncBI4CqWv0A/xslcIpa/QD/GyVwilr8gpUy51BmWvyClTLnUGZa/IGUHEkgRlr8gZQcSSBGWv+D/ns62CJa/4P+ezrYIlr+AwLDpIACWv4DAsOkgAJa/4JrOXYb3lb/gms5dhveVv8AKfyXn7pW/wAp/Jefulb+A8Dw7Q+aVv4DwPDtD5pW/YG93mZrdlb9gb3eZmt2Vv+DJkTrt1JW/4MmROu3Ulb8APuMYO8yVvwA+4xg7zJW/oOC2LoTDlb+g4LYuhMOVv2B5S3bIupW/YHlLdsi6lb+gXNPpB7KVv6Bc0+kHspW/gEV0g0Kplb+ARXSDQqmVv6AvRz14oJW/oC9HPXiglb/gL1gRqZeVv+AvWBGpl5W/AEym+dSOlb8ATKb51I6VvwBTI/D7hZW/AFMj8PuFlb/gs7PuHX2Vv+Czs+4dfZW/gFMu7zp0lb+AUy7vOnSVv6BiXOtSa5W/oGJc61Jrlb/gMvncZWKVv+Ay+dxlYpW/IAuyvXNZlb8gC7K9c1mVv6D6JYd8UJW/oPolh3xQlb+grOUygEeVv6Cs5TKAR5W/4Dlzun4+lb/gOXO6fj6Vv4D6QRd4NZW/gPpBF3g1lb9gVrZCbCyVv2BWtkJsLJW/QJUlNlsjlb9AlSU2WyOVv8Ct1epEGpW/wK3V6kQalb8gFP1ZKRGVvyAU/VkpEZW/AIfCfAgIlb8Ah8J8CAiVv4DcPEzi/pS/gNw8TOL+lL+AznLBtvWUv4DOcsG29ZS/4MRa1YXslL/gxFrVheyUv8Cf2oBP45S/wJ/agE/jlL9ggce8E9qUv2CBx7wT2pS/YJXlgdLQlL9gleWB0tCUv+DY58iLx5S/4NjnyIvHlL+g4G+KP76Uv6Dgb4o/vpS/QJ4Nv+20lL9Ang2/7bSUvwAlP1+Wq5S/ACU/X5arlL/gbHBjOaKUv+BscGM5opS/IBX7w9aYlL8gFfvD1piUv2AlJnluj5S/YCUmeW6PlL8gziV7AIaUvyDOJXsAhpS/gCcbwox8lL+AJxvCjHyUv6DvE0YTc5S/oO8TRhNzlL8ARwr/k2mUvwBHCv+TaZS/oGzk5A5glL+gbOTkDmCUvyB4dO+DVpS/IHh074NWlL8AE3gW80yUvwATeBbzTJS/wDCYUVxDlL/AMJhRXEOUvyDFaJi/OZS/IMVomL85lL8gemjiHDCUvyB6aOIcMJS/oGMAJ3QmlL+gYwAndCaUv8Cxg13FHJS/wLGDXcUclL/AYi99EBOUv8BiL30QE5S/YPIpfVUJlL9g8il9VQmUv6AIg1SU/5O/oAiDVJT/k7/gJTP6zPWTv+AlM/rM9ZO/AE8bZf/rk78ATxtl/+uTv8C2BIwr4pO/wLYEjCvik7/AZaBlUdiTv8BloGVR2JO/gOGG6HDOk7+A4YbocM6Tv8DQNwuKxJO/wNA3C4rEk7/AnhnEnLqTv8CeGcScupO/AB15Camwk78AHXkJqbCTv0AiidGuppO/QCKJ0a6mk7+AKGISrpyTv4AoYhKunJO/QOkBwqaSk79A6QHCppKTv6D2StaYiJO/oPZK1piIk79gVARFhH6Tv2BUBEWEfpO/oAzZA2l0k7+gDNkDaXSTvyDFVwhHapO/IMVXCEdqk7/gT/JHHmCTv+BP8kceYJO/gDv9t+5Vk7+AO/237lWTv2Bgr024S5O/YGCvTbhLk7/AayH+ekGTv8BrIf56QZO/gGhNvjY3k7+AaE2+NjeTv0BGDoPrLJO/QEYOg+ssk78gXB9BmSKTvyBcH0GZIpO/YOsb7T8Yk79g6xvtPxiTvwCefnvfDZO/AJ5+e98Nk7/AAqHgdwOTv8ACoeB3A5O/AAe7EAn5kr8AB7sQCfmSv8Bt4v+S7pK/wG3i/5Lukr+gQwqiFeSSv6BDCqIV5JK/wE8C65DZkr/ATwLrkNmSv0CCds4Ez5K/QIJ2zgTPkr9AX+4/ccSSv0Bf7j9xxJK/4GbMMta5kr/gZswy1rmSvyB6TZozr5K/IHpNmjOvkr9APIhpiaSSv0A8iGmJpJK/AHFsk9eZkr8AcWyT15mSv2BXwgoej5K/YFfCCh6Pkr9gACrCXISSv2AAKsJchJK/AKMarJN5kr8Aoxqsk3mSv4Dr4brCbpK/gOvhusJukr9gR6Pg6WOSv2BHo+DpY5K/YC1XDwlZkr9gLVcPCVmSv4BhyjggTpK/gGHKOCBOkr9ANJ1OL0OSv0A0nU4vQ5K/4L5CQjY4kr/gvkJCNjiSvyAZAAU1LZK/IBkABTUtkr8AjeuHKyKSvwCN64crIpK/AMTruxkXkr8AxOu7GReSv0DwtpH/C5K/QPC2kf8Lkr/A8NH53ACSv8Dw0fncAJK/4HCP5LH1kb/gcI/ksfWRv4ABD0J+6pG/gAEPQn7qkb+ALjwCQt+Rv4AuPAJC35G/gI3NFP3Tkb+Ajc0U/dORv0DHQ2mvyJG/QMdDaa/Ikb/Am+juWL2Rv8Cb6O5YvZG/4N/NlPmxkb/g382U+bGRv4B0zEmRppG/gHTMSZGmkb9AOIP8H5uRv0A4g/wfm5G/gPJVm6WPkb+A8lWbpY+Rv6A2bBQihJG/oDZsFCKEkb/gQbBVlXiRv+BBsFWVeJG/QNHNTP9skb9A0c1M/2yRvwDwMOdfYZG/APAw519hkb9AvwQSt1WRv0C/BBK3VZG/4DQyugRKkb/gNDK6BEqRv2DTXsxIPpG/YNNezEg+kb/AWOs0gzKRv8BY6zSDMpG/YGXy37Mmkb9gZfLfsyaRv8AZR7naGpG/wBlHudoakb9Aq3Os9w6Rv0Crc6z3DpG/4O+3pAoDkb/g77ekCgORv8DfB40T95C/wN8HjRP3kL9ADQpQEuuQv0ANClAS65C/ABMW2AbfkL8AExbYBt+QvyD2Mg/x0pC/IPYyD/HSkL9AfxXf0MaQv0B/Fd/QxpC/QIceMaa6kL9Ahx4xprqQvwA4We5wrpC/ADhZ7nCukL8AQnn/MKKQvwBCef8wopC/QAXZTOaVkL9ABdlM5pWQv+Csd76QiZC/4Kx3vpCJkL/gPfc7MH2Qv+A99zswfZC/IJiarMRwkL8gmJqsxHCQvyBpQ/dNZJC/IGlD901kkL8AEHACzFeQvwAQcALMV5C/YHI5tD5LkL9gcjm0PkuQv6DBUPKlPpC/oMFQ8qU+kL+gL/2hATKQv6Av/aEBMpC/AJMZqFElkL8AkxmoUSWQvyD6EemVGJC/IPoR6ZUYkL/gKuFIzguQv+Aq4UjOC5C/gCMcVvX9j7+AIxxW9f2Pv4A2UuU15I+/gDZS5TXkj79A95IEXsqPv0D3kgReyo+/wL8UeG2wj7/AvxR4bbCPv4AUEANklo+/gBQQA2SWj7+AsLlnQXyPv4CwuWdBfI+/QGI8ZwVij79AYjxnBWKPv4C5ssGvR4+/gLmywa9Hj7/AgiA2QC2Pv8CCIDZALY+/wA5sgrYSj7/ADmyCthKPv4BEV2MS+I6/gERXYxL4jr9Ae3iUU92Ov0B7eJRT3Y6/ABsz0HnCjr8AGzPQecKOv0AAsM+Ep46/QACwz4Snjr8AodVKdIyOvwCh1Up0jI6/wPA/+Edxjr/A8D/4R3GOvwACOI3/VY6/AAI4jf9Vjr+AXqu9mjqOv4Beq72aOo6/gBkjPBkfjr+AGSM8GR+Ov8CTurl6A46/wJO6uXoDjr8A8BXmvueNvwDwFea+542/ADZYb+XLjb8ANlhv5cuNvwAfGQLur42/AB8ZAu6vjb+Ah1pJ2JONv4CHWknYk42/gIR97qN3jb+AhH3uo3eNvwAXN5lQW42/ABc3mVBbjb9AeoTv3T6Nv0B6hO/dPo2/gAWflUsijb+ABZ+VSyKNvwCj7y2ZBY2/AKPvLZkFjb+AzwFZxuiMv4DPAVnG6Iy/ACN2tdLLjL8AI3a10suMv8Ba9N+9roy/wFr0372ujL+A3xxzh5GMv4DfHHOHkYy/gMF5By90jL+AwXkHL3SMv0AlbzO0Voy/QCVvM7RWjL/AFiuLFjmMv8AWK4sWOYy/QMOUoFUbjL9Aw5SgVRuMv8AIOwNx/Yu/wAg7A3H9i78AW0JAaN+LvwBbQkBo34u/wPNR4jrBi7/A81HiOsGLv4BBgHHooou/gEGAceiii7/AkT5zcISLv8CRPnNwhIu/AOhDatJli78A6ENq0mWLvwD6dtYNR4u/APp21g1Hi79ARdc0IiiLv0BF1zQiKIu/ADBl/w4Ji78AMGX/DgmLv8AuCa3T6Yq/wC4JrdPpir/A2nmxb8qKv8DaebFvyoq/APEgfeKqir8A8SB94qqKv0Am/3wri4q/QCb/fCuLir9AxY4aSmuKv0DFjhpKa4q/wAGluz1Lir/AAaW7PUuKv4DxUcIFK4q/gPFRwgUrir9AF7+MoQqKv0AXv4yhCoq/QGwMdRDqib9AbAx1EOqJv0DSK9FRyYm/QNIr0VHJib9A1rryZKiJv0DWuvJkqIm/AK7aJkmHib8ArtomSYeJv0BTBrb9ZYm/QFMGtv1lib+AoubjgUSJv4Ci5uOBRIm/gGAk79Qiib+AYCTv1CKJvwADOBH2AIm/AAM4EfYAib+AHjd+5N6Iv4AeN37k3oi/QFKfZJ+8iL9AUp9kn7yIv4CLHu0lmoi/gIse7SWaiL9AdVg6d3eIv0B1WDp3d4i/wOmoaJJUiL/A6ahoklSIv8Ax4412MYi/wDHjjXYxiL+A3w25Ig6Iv4DfDbkiDoi/AAwb8pXqh78ADBvyleqHv8C5nDnPxoe/wLmcOc/Gh7/AHHWIzaKHv8AcdYjNooe/wH+Cz49+h7/Af4LPj36Hv4B6RvcUWoe/gHpG9xRah7/AJYjfWzWHv8AliN9bNYe/wPbwXmMQh7/A9vBeYxCHv8Dco0Iq64a/wNyjQirrhr+AOs5Nr8WGv4A6zk2vxYa/AEgyOfGfhr8ASDI58Z+GvwBjqrLueYa/AGOqsu55hr9AwqRcplOGv0DCpFymU4a/wP2WzRYthr/A/ZbNFi2Gv8DJaI8+Boa/wMlojz4Ghr8AM9UeHN+FvwAz1R4c34W/QKDB6q23hb9AoMHqrbeFv8DFiVPyj4W/wMWJU/KPhb/ApT+q52eFv8ClP6rnZ4W/gKDeL4w/hb+AoN4vjD+Fv0CBcBTeFoW/QIFwFN4Whb/AVSN22+2Ev8BVI3bb7YS/AMJOYILEhL8Awk5ggsSEv8BaZ8rQmoS/wFpnytCahL+Acd6WxHCEv4Bx3pbEcIS/gInskVtGhL+AieyRW0aEvwCARHCTG4S/AIBEcJMbhL8AOq3NafCDvwA6rc1p8IO/wGh/K9zEg7/AaH8r3MSDv4C0BO/nmIO/gLQE7+eYg7+AQ7VfimyDv4BDtV+KbIO/gEBQpcA/g7+AQFClwD+Dv0CWy8WHEoO/QJbLxYcSg7+Anhaj3OSCv4CeFqPc5IK/QP2q+Lu2gr9A/ar4u7aCv4A+5lgiiIK/gD7mWCKIgr/AHiYqDFmCv8AeJioMWYK/gJKgo3Upgr+AkqCjdSmCv8Cr78la+YG/wKvvyVr5gb+AcUhrt8iBv4BxSGu3yIG/QGVSG4eXgb9AZVIbh5eBv4AIlC7FZYG/gAiULsVlgb+A52a1bDOBv4DnZrVsM4G/QK9jdngAgb9Ar2N2eACBvwBfNOjizIC/AF806OLMgL/A1LcqppiAv8DUtyqmmIC/QIZe/7tjgL9Ahl7/u2OAv0AvpMAdLoC/QC+kwB0ugL8AuAqxiO9/vwC4CrGI73+/AMSTa1CBf78AxJNrUIF/v4B/7H+CEX+/gH/sf4IRf7+AflqTDaB+v4B+WpMNoH6/gGWBAt8sfr+AZYEC3yx+v4BdRr7it32/gF1GvuK3fb+ASrkjA0F9v4BKuSMDQX2/gMMfzijIfL+Awx/OKMh8vwDdC2I6TXy/AN0LYjpNfL8ADSpQHNB7vwANKlAc0Hu/AHUhjrBQe78AdSGOsFB7vwCee0PWznq/AJ57Q9bOer8AfQRoaUp6vwB9BGhpSnq/gFxnUELDeb+AXGdQQsN5v4B/6iQ1OXm/gH/qJDU5eb+AwP08Eax4v4DA/TwRrHi/AI26WKAbeL8AjbpYoBt4vwDkSq+lh3e/AORKr6WHd7+AxDHG3O92v4DEMcbc73a/AExCAfhTdr8ATEIB+FN2v4CQINWes3W/gJAg1Z6zdb8AZIl9aw51vwBkiX1rDnW/AEriC+hjdL8ASuIL6GN0v4AOV4+Ks3O/gA5Xj4qzc7+AxwT6r/xyv4DHBPqv/HK/AHVSN5U+cr8AdVI3lT5yvwCNzJlNeHG/AI3MmU14cb+AM2dCtahwv4AzZ0K1qHC/AMq8b7qcb78AyrxvupxvvwCKQlzazm2/AIpCXNrObb8AmOgx5+JrvwCY6DHn4mu/AIDt1irSab8AgO3WKtJpvwAPehr8kme/AA96GvySZ78AECikhxZlvwAQKKSHFmW/AMQWS9lDYr8AxBZL2UNivwCEboCV1F2/AIRugJXUXb8AHBoxjhhVvwAcGjGOGFW/AAAAAAAAAAA=","dtype":"float64","order":"little","shape":[8002]}},"selected":{"id":"13000"},"selection_policy":{"id":"12999"}},"id":"12249","type":"ColumnDataSource"},{"attributes":{"source":{"id":"12249"}},"id":"12253","type":"CDSView"},{"attributes":{"line_alpha":0.1,"line_color":"gray","line_width":2,"x":{"field":"x"},"y":{"field":"y"}},"id":"12251","type":"Line"},{"attributes":{"axis_label":"rank statistic","formatter":{"id":"12994"},"ticker":{"id":"12218"}},"id":"12217","type":"LinearAxis"},{"attributes":{"source":{"id":"12266"}},"id":"12271","type":"CDSView"},{"attributes":{"fill_color":{"value":"#0fffa8"},"line_color":{"value":"#0fffa8"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12328","type":"Circle"},{"attributes":{"data_source":{"id":"12266"},"glyph":{"id":"12268"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12269"},"selection_glyph":null,"view":{"id":"12271"}},"id":"12270","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"12260"},"glyph":{"id":"12262"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12263"},"selection_glyph":null,"view":{"id":"12265"}},"id":"12264","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#d62628"},"line_alpha":{"value":0.1},"line_color":{"value":"#d62628"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12275","type":"Circle"},{"attributes":{},"id":"13023","type":"UnionRenderers"},{"attributes":{"label":{"value":"theta_1[0,1]"},"renderers":[{"id":"12306"}]},"id":"12341","type":"LegendItem"},{"attributes":{},"id":"13024","type":"Selection"},{"attributes":{"fill_color":{"value":"#bcbc21"},"line_color":{"value":"#bcbc21"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12304","type":"Circle"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],"parameter":["theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]","theta[0]"],"rank_statistic":[3712,313,235,1929,1218,1315,3265,1792,3556,3216,3114,2645,2370,3898,1412,1157,536,1400,1495,3608,1318,17,921,2494,2374,98,2133,3796,3576,415,74,2307,1049,372,3518,2052,524,2640,1866,2232,2443,3957,3561,3487,160,2826,1802,2903,805,3129,591,3399,1790,553,1848,3312,1932,2633,945,3254,2630,1275,2874,2699,1603,777,294,2414,362,1988,1875,1004,876,1670,2048,2764,1765,3566,2210,3756,2272,46,3753,172,2867,1066,1456,752,611,615,2307,1811,2976,2014,2789,2632,2490,3306,1550,1946,3051,1426,2761,932,3007,243,330,491,2934,1493,3000,680,2635,3388,785,2160,3200,3190,2882,73,3351,3488,821,1508,3530,2115,1956,2873,2533,3129,2079,1805,369,3368,1203,1577,3516,1281,3927,2200,3821,2705,1651,1730,1005,2904,617,1581,290,3955,2011,945,135,1929,1781,3694,2872,243,2980,1236,2527,798,877,3458,2817,1831,1420,3434,3152,3529,3687,2511,98,311,2772,2550,2331,1857,751,1490,1649,136,3740,306,550,3183,739,2649,346,3376,1258,127,51,1644,3229,3332,104,3269,2876,3780,3371,1263,1627,3751,3621,556,517,2339,3032,3907,2471,3277,1072,2231,2383,676,3903,3419,3050,978,247,3888,3345,1086,2015,1024,1544,733,1505,465,2868,266,2827,1587,1503,130,3900,1805,117,3308,362,3844,3146,1224,1112,221,672,1427,3626,484,3483,3088,323,1738,2383,1524,3039,2524,1961,1463,567,3920,2003,1752,2022,3820,3926,1480,3681,2213,3460,1734,1157,3130,1725,3799,964,2892,419,1198,1266,2435,838,3311,1372,1352,369,2925,1039,1915,964,72,1405,3628,3382,3787,209,1910,448,590,349,1755,2629,1745,1760,2143,3586,601,2093,1317,1998,1032,554,2774,2001,4000,919,3607,420,3097,3690,2557,3065,2379,1267,3985,811,1415,3948,2473,2693,3767,1513,1168,2369,319,2774,2132,1849,1685,3326,3660,62,1044,3886,861,256,704,1390,1039,2554,2836,3059,11,2692,3351,759,3219,404,3983,1752,2271,1231,2641,3231,1910,3519,248,2108,486,1564,2945,2186,2805,2288,2990,1080,3839,2991,3758,578,1642,3161,444,3862,521,965,1122,3809,2664,312,249,2526,2186,3366,2918,202,3203,445,330,1104,2583,639,1893,3127,2816,4,3224,1691,1460,3527,3158,1055,276,1112,1450,1368,336,188,2319,1247,2757,2813,3438,579,867,1576,592,55,1849,2128,1508,3660,2104,2722,1836,1737,941,99,2374,287,393,1111,280,3375,3553,3345,1104,821,3431,1838,2304,1278,2890,2830,2429,1537,3833,1675,2444,1411,3071,2041,989,3400,1770,2844,2120,1599,2442,279,2064,2735,3606,822,3677,1799,2844,3271,3655,535,1178,233,378,3658,628,1902,288,1354,2523,735,366,3954,3756,2503,2066,3335,2915,117,904,3733,2272,1579,3709,2182,1020,3572,3612,3179,2575,2132,610,2680,1292,3308,3817,3225,124,3115,61,1283,3349,1244,3429,3231,284,642,1210,892,2709,2891,2813,3871,2752,2326,2712,3299,1733,3289,2311,2101,3622,89,70,1134,776,3675,1990,1046,2878,2183,909,988,3851,3126,2431,3421,1917,2280,3382,3801,685,201,3482,3751,1733,3353,1945,640,3173,3632,26,2949,2572,723,2409,570,1656,809,792,2835,2865,3436,2733,2371,3808,2795,2093,3660,1614,791,1451,1399,811,72,2562,2029,2962,3239,3544,469,2746,3518,3622,2984,1620,2964,265,365,2245,1214,1074,2185,2920,3782,1564,977,1367,1737,2792,3582,3083,2414,2861,1443,1850,4000,1673,3051,3590,622,3349,2097,971,1376,2044,1394,30,557,1750,3375,193,2287,2747,1741,3578,3497,720,3607,606,436,2166,3046,932,2090,736,1730,1340,3388,2595,394,2856,3856,399,1793,2145,451,1296,3621,3477,629,3411,325,533,3122,1591,1193,1809,1795,1304,2958,676,1613,1125,769,336,2851,3275,3807,1866,1132,166,2783,1448,2886,1356,1321,60,3120,3267,2142,3719,614,3349,2986,217,1847,3101,2555,1689,480,1313,2292,2087,823,878,2569,1097,943,3317,3480,3246,738,2402,1022,3512,2942,2592,3464,2400,2661,787,3587,370,1249,3987,1522,3786,3999,1682,2344,3458,2067,1131,3234,1767,491,3984,2110,2770,2779,557,3194,2579,195,2947,2031,913,339,2312,2110,2265,363,1512,3747,3204,101,2839,3191,1811,3778,3056,1242,3504,1583,583,1218,1675,2225,181,1487,2254,3112,3455,1282,2437,2169,998,1524,1101,81,2060,2867,3767,3611,2439,3149,1457,981,115,351,1024,283,2333,1630,144,3227,345,1544,803,2070,1895,585,2715,2213,1627,2283,1266,1247,3405,1358,2145,347,2294,3623,1377,1902,2043,3856,1301,336,931,82,3941,1518,3099,1482,3758,1564,929,1082,2559,2559,2505,2043,1910,3842,1543,2781,1072,427,1419,1361,3630,3362,3014,339,2061,1422,1484,1814,320,3802,787,767,2252,3764,3876,1155,807,2911,2805,2817,2183,3632,1433,2132,2854,1736,1660,243,263,1894,1991,1304,339,853,1303,2927,139,2208,1151,1165,1303,3442,2990,3834,1912,2684,2713,427,2955,2420,2517,348,1290,200,3651,348,3561,2635,869,2704,3954,693,1863,3819,1975,3977,1938,4000,3753,3685,187,1639,3820,1006,843,3348,349,1275,362,108,1326,2835,237,1336,1159,2961,3436,176,578,2359,3049,1454,1040,1011,803,747,2401,1281,2665,1676,863,3164,3766,938,2891,1473,962,3545,52,1762,2224,3455,2678,335,729,1671,736,701,171,2154,328,1694,3374,2538,143,2283,179,2196,2391,1918,855,2604,365,2903,628,484,3152,1089,1862,3859,3970,1204,2864,336,896,3734,3954],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13012"},"selection_policy":{"id":"13011"}},"id":"12284","type":"ColumnDataSource"},{"attributes":{"source":{"id":"12260"}},"id":"12265","type":"CDSView"},{"attributes":{"fill_color":{"value":"#d62628"},"line_color":{"value":"#d62628"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12274","type":"Circle"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999],"parameter":["sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]","sigma[1]"],"rank_statistic":[520,3134,331,592,3552,1012,20,3746,1926,3844,2382,3177,614,3725,1310,1312,731,2436,856,1056,227,1098,2035,2367,2686,2135,2163,3723,3115,3223,3095,565,3908,2852,1664,3253,3439,860,2911,2234,1061,2261,169,3166,714,2507,1491,1141,1090,228,519,3015,210,2636,60,1194,446,955,1562,143,3913,222,546,189,1425,2591,2641,2142,2455,2467,585,1497,300,2739,3202,2103,1035,242,2152,3127,3222,1183,1510,3203,2569,2116,379,857,2276,455,3282,2239,3580,2602,1418,712,3306,313,1392,245,2334,669,3272,2433,2550,2450,653,2027,1832,3919,3140,970,1566,1911,67,887,219,837,3527,114,1091,710,443,1804,3736,1302,116,1218,1638,2159,2320,2178,3798,3132,2740,2823,2373,1339,3546,509,3165,3747,3294,1745,2528,1180,529,3880,2114,2212,819,3111,1092,547,284,1423,1988,2777,1416,1421,743,1657,2107,2445,2024,858,2837,3586,1018,2488,306,202,890,946,2401,30,1906,361,446,3637,3900,2446,3903,930,2339,7,3116,1538,840,480,2079,1630,939,581,602,3599,3919,628,1836,1952,3028,453,2161,2729,2058,856,1185,1217,670,2434,2706,381,1379,3495,1515,3627,1135,57,2048,646,855,3539,548,637,3094,361,2786,1090,225,3140,1384,2415,898,1956,372,2076,3410,2050,3430,2828,1838,2001,2334,3365,3973,2501,2433,1742,89,1600,3841,1409,3185,2292,2871,28,1051,2716,1593,3925,2967,434,519,3710,3168,1905,345,2171,3408,406,902,2265,3811,2697,538,487,2487,1826,2674,68,720,1891,3580,1492,119,1615,2707,2413,2700,1979,1552,1776,1693,3512,3239,3052,2829,3743,3234,2617,2160,1463,122,1370,1371,335,157,3116,2282,1411,1656,3058,2924,1331,813,3132,561,3297,632,929,2070,1200,3521,20,1059,2030,1563,3280,3971,1412,3136,1221,18,3418,973,46,3704,991,2551,982,3914,1293,1865,1232,14,3373,1446,2307,1761,2360,1193,3495,414,734,754,305,2295,3344,1721,2685,1800,1577,3768,1609,766,1367,2266,1061,3995,460,2204,954,3341,1376,1951,2408,1362,3985,3916,2564,2212,1903,1896,2637,3823,789,1964,1149,1128,980,3270,1966,441,859,2208,2546,2689,1164,2715,3799,3106,2252,3944,3061,1046,2386,2198,135,2858,3430,3156,2662,392,559,2971,228,1493,2718,806,2971,3103,3293,1013,276,3722,1115,2402,1681,2522,656,411,2235,1217,2738,334,3137,3995,3608,2892,760,2126,5,3712,716,2390,3181,1164,2511,2872,3814,3320,2358,1897,1268,3532,1448,2365,561,3229,3630,3425,1447,3471,985,2577,2044,850,2252,1937,343,1657,906,3401,3444,3183,3677,2426,2472,3967,358,1915,2459,914,1869,916,428,3313,18,1200,2941,365,660,2120,3009,3076,3205,66,2470,1941,1089,1915,2255,3770,1360,1741,3986,3533,780,1604,770,2924,1346,3452,3641,1123,2794,3316,1736,161,2604,3060,334,2505,848,845,2122,1357,506,1608,336,1217,359,2732,1027,304,3042,1020,1247,2922,3477,3262,1881,2704,1056,2759,207,3413,1926,2248,344,1406,2084,1415,473,2043,2636,2871,3495,586,2467,1544,1566,3107,1414,637,2267,765,563,296,1027,1241,2027,1659,2559,3811,3893,3362,7,3405,824,3540,2518,3096,3322,3771,1725,821,1016,1267,2850,3758,1670,3799,2814,3986,2294,1159,845,1027,3699,1308,1349,462,74,2673,1664,3903,3294,3582,2354,2248,2313,1308,3038,3222,1887,2730,2652,2489,3727,424,3536,1756,1554,839,0,3474,265,1290,244,2250,1671,1179,3715,3356,3876,1428,920,59,309,2695,2851,2099,286,3816,2288,1040,440,1982,1195,3511,3814,102,842,919,160,2133,2815,2033,927,683,1834,948,546,745,2348,337,766,2233,3546,1274,3853,2473,1956,3661,1586,3052,2274,1255,1952,762,1565,3070,1476,2100,2305,3394,3988,752,3409,1944,1571,3123,3991,3501,2955,2974,468,1262,487,268,2521,1921,3138,2761,629,379,353,2158,830,1777,926,1949,1200,3070,1882,327,1190,673,1698,2945,1694,3724,1282,3986,37,2376,2178,2348,2544,2299,768,3070,1845,880,1374,3874,488,3651,747,282,1687,3031,1665,3395,1877,3742,1969,2652,3013,837,474,3937,2328,1123,2233,3533,2609,513,719,1214,453,42,2679,2919,1406,3741,3217,2398,1051,2602,1770,452,3944,2570,3275,2118,3740,2918,2062,396,3798,52,2765,3157,2216,1662,2852,2978,3851,2888,3948,1108,603,2269,2813,2925,3899,1236,2922,3508,1981,3213,3815,1505,3473,2610,207,3434,2275,1497,1205,3933,2195,1863,2424,3948,1566,3788,3338,873,1060,2664,2602,3703,965,746,701,1762,2071,1653,54,2002,1092,1669,383,3093,2470,1430,2406,3013,2670,2228,3864,2260,1398,3692,1031,3045,1612,3475,1298,3568,2219,3148,2523,345,3799,2663,3509,3682,2295,717,1599,1941,1079,2598,551,2128,1994,2210,1666,1084,65,110,2969,2665,2616,2107,1625,2569,1269,3141,2325,3084,2000,185,2492,3673,2298,1264,1029,1087,3709,1196,520,2059,3530,1558,1960,567,1011,3207,699,1146,3284,2921,1941,1224,2441,1555,3589,1098,3020,1719,747,972,251,2933,3965,3795,2202,3165,613,3342,3962,3813,2411,3496,1267,3566,170,3895,2916,2889,1765,1560,3792,3048,2340,2546,2597,427,675,2415,3739,2643,2031,171,165,831,3191,3864,1127,257,3596,1956,2246,1446,480,631,1804,302,3082,595,28,2099,935,395,3872,1514,3178,514,3733,764,2377,1029,339,2177,1808,91,3177,153,904,1446,3874,729,497,2636,1167,1472,945,1021,2842,3196,3809,2548,40,2601,1352],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13006"},"selection_policy":{"id":"13005"}},"id":"12266","type":"ColumnDataSource"},{"attributes":{},"id":"13025","type":"UnionRenderers"},{"attributes":{"source":{"id":"12290"}},"id":"12295","type":"CDSView"},{"attributes":{},"id":"13026","type":"Selection"},{"attributes":{"source":{"id":"12326"}},"id":"12331","type":"CDSView"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b3"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b3"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12257","type":"Circle"},{"attributes":{"fill_color":{"value":"#1f77b3"},"line_color":{"value":"#1f77b3"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12256","type":"Circle"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#ff7e0e"},"line_alpha":{"value":0.1},"line_color":{"value":"#ff7e0e"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12263","type":"Circle"},{"attributes":{"data_source":{"id":"12278"},"glyph":{"id":"12280"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12281"},"selection_glyph":null,"view":{"id":"12283"}},"id":"12282","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"12296"},"glyph":{"id":"12298"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12299"},"selection_glyph":null,"view":{"id":"12301"}},"id":"12300","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"12290"},"glyph":{"id":"12292"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12293"},"selection_glyph":null,"view":{"id":"12295"}},"id":"12294","type":"GlyphRenderer"},{"attributes":{},"id":"12209","type":"DataRange1d"},{"attributes":{"label":{"value":"theta_1[1,0]"},"renderers":[{"id":"12312"}]},"id":"12342","type":"LegendItem"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999],"parameter":["tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]","tau[0]"],"rank_statistic":[2970,3030,708,716,3470,2667,2892,1407,1814,3,907,1162,177,1464,125,481,2418,3709,329,3855,464,3951,392,564,2666,3102,2586,2218,2677,3831,3676,745,1864,3955,3459,2328,1118,2919,1967,2018,1690,2023,1253,1149,3294,3755,868,516,2424,2951,647,3911,3245,2322,401,2865,2107,1935,3491,1572,599,2538,1694,1007,3665,122,3767,399,850,632,99,3579,606,3249,1237,487,1309,2079,2540,3196,3634,3078,2583,238,1968,3760,1818,1205,2117,751,3502,1363,2295,1684,384,2187,2421,2128,3031,594,1454,2125,1469,669,904,654,1152,2474,1761,3087,116,311,3086,3985,132,362,2851,3703,789,2681,2993,2761,2902,767,702,1983,3221,702,3414,3280,1264,3004,3939,1206,3508,2581,2837,1436,3779,3931,2975,87,3126,50,2726,503,1749,627,2543,2649,1082,1550,3785,3813,3533,3808,2374,3749,2010,3606,1157,3482,1895,130,3789,2885,2196,503,886,1604,2969,458,3428,2384,2778,331,3815,646,2728,882,1269,3401,3554,148,2451,2707,3542,1659,2131,1804,1536,3683,2651,961,2992,1279,3994,2989,2213,364,373,1129,3682,3528,2500,2015,1327,2902,2156,3293,3408,1863,2871,3577,1880,653,223,1041,3340,42,1266,904,1826,347,1702,174,3063,3803,3867,2543,944,294,2425,2052,2753,3091,248,2459,3926,497,975,722,1738,519,1413,2904,1198,3684,941,3437,621,534,521,414,1271,3303,836,3811,858,867,470,2991,892,3689,144,3107,3293,360,3785,1301,2739,1757,92,2380,1699,3301,328,3771,3413,1676,3584,1950,2021,2214,2169,1065,3880,345,1879,2050,1996,287,3379,3904,1135,3725,3469,2286,1270,53,2902,704,1218,2329,2530,486,2492,1707,100,548,693,333,1611,21,1175,3466,2946,2704,2876,450,1632,1683,2174,959,3036,3471,2236,666,2713,1049,1586,3788,2051,2048,2226,2764,739,2894,251,3503,3303,3082,3839,3739,1813,3174,1872,413,166,3170,3349,76,1195,1163,507,100,2214,34,156,3833,887,6,1368,600,2746,1556,2674,2124,2186,811,2723,285,3041,3796,3064,152,1500,2462,936,2892,1396,973,2042,1092,2521,1150,1498,2526,3035,1290,1025,469,2269,1428,2297,384,1678,1860,2916,2685,2672,3506,1537,3142,1968,317,2645,1857,3159,1728,3383,119,475,2531,1925,81,999,2154,1045,668,3130,872,2949,226,1541,2335,2313,2669,2268,102,1668,997,3569,997,3417,254,547,33,3132,1388,2836,3838,1834,2618,2079,2172,1994,1604,838,3327,656,812,732,3670,1656,795,2064,3925,564,1929,1235,346,3176,3417,887,1497,2842,2240,1351,2189,1428,2306,558,3940,2571,1271,2450,1989,772,3855,3384,2670,2961,1970,35,3677,1509,1237,384,621,3059,2330,2715,3317,88,2810,2872,3850,3276,2687,2089,1501,1413,1011,265,2099,3389,2098,2894,2413,1695,2529,2483,2093,3370,2111,1071,264,945,3847,1287,56,1143,3933,253,3082,1952,1363,3630,2412,1987,2148,3455,225,2682,249,1419,1995,1601,443,3501,2907,2174,3335,2018,3320,2177,3014,2840,1568,2243,2364,237,1758,403,1671,1843,3306,1445,254,2496,1763,3771,3251,3363,2707,1544,1038,1367,976,1858,1359,2959,1351,408,178,1176,670,2573,672,1565,2918,2856,3639,1577,3210,2702,2022,1953,2982,2313,64,661,3324,3884,470,1555,3913,2347,3401,231,3180,3060,1397,2760,1256,2037,275,38,1733,1698,880,1070,2750,3634,24,1048,908,316,2202,1621,2931,2172,1304,1095,2206,3945,393,3360,2791,3397,1456,2084,2124,981,1057,2144,2199,2861,1755,2959,1344,3657,744,3,3642,3848,397,2873,3662,3053,2707,3498,1826,1304,2375,1301,1023,3469,36,774,1709,2696,3384,3431,3621,198,932,3608,2254,2981,3632,730,3650,1563,732,923,3787,3421,2164,1008,1551,2531,3380,2306,2689,2065,3140,2558,2193,2448,2766,1649,698,1409,1111,1811,3800,1559,1369,2655,900,3562,765,2729,1571,3894,322,1937,2061,2770,3231,108,1849,2013,3191,1541,748,3040,100,3705,1498,2185,3577,998,3786,2914,2823,741,1152,3823,910,999,1720,73,3997,1397,3778,3981,2082,528,337,3028,1671,1352,1431,3127,3599,2075,3078,2348,3140,661,1076,3313,1964,2742,2735,3582,3656,1969,817,358,1735,3129,3436,3653,2123,1108,2209,3485,1860,1542,2560,137,347,861,1334,2680,1460,3633,1039,499,1506,273,57,1297,2290,335,2058,2058,699,2503,2567,2386,1235,3402,1073,1249,1207,291,961,14,963,3237,1217,962,1248,2376,3798,1808,583,1211,2627,3311,3257,3066,2387,103,2506,3103,498,3312,213,467,2448,2814,2659,3244,23,1454,3744,3993,3860,2856,1643,3901,1029,190,1834,3802,1471,3090,2844,1115,1765,1972,3501,977,2674,989,827,402,3838,3959,3466,3799,3445,780,2584,197,3700,3430,2492,2508,3154,3334,1787,25,1069,3363,1213,1013,1267,1309,2892,2054,945,365,2600,3304,3689,2059,1659,717,2981,404,3540,559,1040,743,2176,2911,3096,1642,1616,1311,2753,2080,106,3456,2272,3772,875,1647,686,3406,922,2535,3975,1473,300,1380,3737,3974,1299,1181,3162,3416,239,4000,1792,3217,3554,3483,912,962,1185,970,2574,1150,3889,3453,1836,1621,3251,978,1438,1492,1250,2846,1365,3220,2157,2449,2630,1883,2783,63,194,424,2257,1085,2576,1793,3426,3189,1611,1504,1182,3126,3597,1657,3641,1617,2986,1824,2814,1950,2145,1510,2706,842,1702,530,636,3662,1072,3646,419,3811,2067,2748,3092,2087,1601,3087,3160,3855,873,2840,1221,199,3848,3902,3355,2834,2698,3533,3384],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13008"},"selection_policy":{"id":"13007"}},"id":"12272","type":"ColumnDataSource"},{"attributes":{"source":{"id":"12254"}},"id":"12259","type":"CDSView"},{"attributes":{"data_source":{"id":"12284"},"glyph":{"id":"12286"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12287"},"selection_glyph":null,"view":{"id":"12289"}},"id":"12288","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#ff7e0e"},"line_color":{"value":"#ff7e0e"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12262","type":"Circle"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#0fffa8"},"line_alpha":{"value":0.1},"line_color":{"value":"#0fffa8"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12329","type":"Circle"},{"attributes":{"source":{"id":"12284"}},"id":"12289","type":"CDSView"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999],"parameter":["tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]","tau[1]"],"rank_statistic":[873,824,516,3465,231,2180,681,3597,766,2435,1134,386,3043,1977,3250,2362,3500,3941,3306,2300,1881,2293,459,1155,3542,2065,1145,3189,2882,3516,1135,262,3079,1084,2642,1022,870,1392,2391,3664,2844,206,1198,579,2499,2722,3598,1024,745,885,3261,1176,1484,2102,3214,2523,1937,3094,1008,787,2508,1025,3474,381,1601,953,1546,2843,2320,2151,1314,2478,2757,1821,2990,3269,1906,3456,3085,1121,1833,2637,2687,3254,3536,2350,650,181,2156,2520,456,908,1836,1093,1108,1158,1132,2249,3886,3360,732,1994,3259,858,2145,110,1895,368,1532,2093,2856,3482,2779,1940,3385,1839,907,1750,3198,3463,2865,1811,2230,726,2041,3396,3349,1265,219,2802,2743,1813,3219,3665,2696,2371,3404,3075,619,3872,2958,2196,1855,857,2918,810,1689,3201,3,562,2545,594,2885,3935,2878,1707,2511,2761,1071,1992,1070,3484,1435,3847,3574,2887,3768,230,3479,1335,999,2131,1232,3212,3440,585,3523,3577,3107,2859,901,2890,297,2841,2188,1020,578,2741,861,3575,2581,2496,2910,1655,2374,1205,2749,2842,2945,3268,858,3384,1899,3987,2680,949,2356,2341,3855,787,3997,3346,2462,3588,1869,3679,3686,2752,698,3342,3871,581,1104,41,3897,3332,779,121,3287,965,3801,56,3197,3073,3620,620,3645,2031,875,3337,2792,1439,2172,896,2993,2478,3166,1164,344,2706,1117,1768,3927,1521,3892,359,3250,3868,1779,1928,1509,1524,3099,3212,1516,3535,302,828,607,1727,2875,2023,189,43,500,1385,2698,3115,2657,1483,3142,1760,968,1237,3831,2430,1804,1090,1054,3004,2856,3100,3659,1048,3164,20,1088,270,2440,707,3976,2665,3985,1509,3947,3903,3528,3664,2909,2061,3027,2790,1591,3193,3602,665,1028,1879,1599,2496,3827,2264,2402,1427,3832,1239,3340,1787,3100,3946,2109,2994,3453,3261,523,2435,3022,1895,3556,105,2045,2765,1831,3739,2725,2006,707,1171,3264,3184,1266,3514,3947,3248,1884,226,133,3528,3879,3490,1452,2312,2404,2389,3564,841,998,454,2573,690,1932,1851,2336,1018,574,2378,1661,568,9,3653,1036,3226,1415,3916,2563,2331,701,3748,905,48,3962,1771,1907,1520,943,2080,597,2159,213,2695,739,2314,509,2187,2997,2583,1974,2294,2214,3497,2938,624,470,2513,3330,81,2389,2623,2664,3845,1356,1066,3217,2624,514,3899,475,1372,2815,2005,1309,3766,614,1425,2880,1014,3854,3015,1041,635,3799,1644,1644,819,1679,3545,868,1994,117,1786,725,2779,3394,2954,3734,1449,2628,1570,3887,2722,2510,413,2468,385,380,1560,2461,3818,2049,1617,1214,904,1410,1972,462,3700,89,1840,3034,3106,1975,144,1325,595,1593,1167,1541,1011,1442,797,1020,2824,1746,3168,660,83,934,1945,2764,1529,3893,2036,593,2193,1112,2980,1291,1277,1170,1334,2815,1667,1753,3405,1368,1223,3289,1012,1943,3544,2585,846,2607,3756,505,1829,1684,453,268,632,793,3258,1948,829,1344,1294,2849,1624,3149,1895,1766,2826,460,3390,1297,123,3701,3007,3071,2393,79,1640,2285,3183,2487,973,379,2207,1680,3393,694,1769,3681,2431,3572,2302,1416,840,3111,3740,1232,2466,1605,2235,1086,3760,707,3526,1688,2811,1431,699,80,3784,1283,3139,3935,1799,2820,1114,1201,1990,305,1254,2891,295,1620,2843,1595,469,885,126,3024,826,774,2080,3564,947,2254,3939,3813,556,2879,953,1692,2261,3400,3826,1827,2125,2651,1011,1671,1,757,1775,2274,1859,3443,2222,2275,1857,599,2258,3885,665,1783,3639,1091,3944,2263,1164,1654,375,3417,2836,852,292,2896,3547,932,41,2522,2871,1527,2293,2436,475,3596,2149,12,1045,1402,2009,3484,1217,1844,1422,1901,830,2732,1642,459,961,3095,2458,1307,2595,3094,635,2872,3541,346,1101,313,2393,1969,2815,2828,2297,3294,2476,2471,0,1800,3532,1889,1915,1346,2202,3149,2045,179,3230,1139,254,950,2310,355,1386,1654,1159,229,2696,1431,2875,3406,2388,601,3035,441,2820,2274,891,3267,2420,3084,317,1805,3623,263,3855,3254,3182,3171,2103,3729,1122,73,2166,3659,1235,3748,388,3652,3332,2994,2631,3833,3824,3230,162,932,3655,3462,821,1928,323,1401,3262,2624,3441,2218,3489,2832,1415,1666,2117,2045,240,3881,2266,1757,2341,3222,1792,1472,831,1973,2351,1873,3009,3139,1892,3371,3318,2004,3855,3967,2732,2632,2789,646,1736,3092,3966,3216,3277,3496,2570,2516,3550,3571,1805,1554,1484,3416,1494,1249,3956,3531,3523,2102,2423,551,1198,3138,2516,2941,1257,2733,3565,3121,1542,145,994,3471,1764,3357,695,821,2015,3463,615,2439,2875,651,526,1949,3671,2274,495,544,2452,1496,2412,1515,2089,3403,2543,419,2719,3331,2311,2593,3481,3753,2238,1337,1656,445,1059,3419,612,1256,2849,3142,2995,183,2032,214,1208,3642,1109,2815,3752,2260,3946,222,3169,1873,195,606,3999,2307,825,3945,3849,1803,3596,950,491,1905,2529,3663,549,1244,2389,191,2482,3854,3482,1909,1203,2796,1978,715,3565,62,1994,1908,1776,3666,655,2600,952,1798,2689,617,240,1639,831,2277,1436,873,3992,1780,1874,118,2848,190,554,146,1023,3639,1407,1675,696,2551,6,1918,3937,2682,2765,157,3441,1047,145,99,3208,2271,1908,3830,2777,3388,2025,1504,1497,752,2687,1624,1268,171,729,224,2308,3276,1024,1389,329,2349,337,3216,1516,3083,3254,2456,3974,2005,921,1553,1130,2686,1810,3544,3987,2624,212,1042,3751,2609,2624,1638,2411,2243,1490,820,2083,854,3624],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13010"},"selection_policy":{"id":"13009"}},"id":"12278","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"12272"},"glyph":{"id":"12274"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12275"},"selection_glyph":null,"view":{"id":"12277"}},"id":"12276","type":"GlyphRenderer"},{"attributes":{},"id":"13008","type":"Selection"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#2ba02b"},"line_alpha":{"value":0.1},"line_color":{"value":"#2ba02b"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12269","type":"Circle"},{"attributes":{"data":{"x":{"__ndarray__":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPA/AAAAAAAA8D8AAAAAAAAAQAAAAAAAAABAAAAAAAAACEAAAAAAAAAIQAAAAAAAABBAAAAAAAAAEEAAAAAAAAAUQAAAAAAAABRAAAAAAAAAGEAAAAAAAAAYQAAAAAAAABxAAAAAAAAAHEAAAAAAAAAgQAAAAAAAACBAAAAAAAAAIkAAAAAAAAAiQAAAAAAAACRAAAAAAAAAJEAAAAAAAAAmQAAAAAAAACZAAAAAAAAAKEAAAAAAAAAoQAAAAAAAACpAAAAAAAAAKkAAAAAAAAAsQAAAAAAAACxAAAAAAAAALkAAAAAAAAAuQAAAAAAAADBAAAAAAAAAMEAAAAAAAAAxQAAAAAAAADFAAAAAAAAAMkAAAAAAAAAyQAAAAAAAADNAAAAAAAAAM0AAAAAAAAA0QAAAAAAAADRAAAAAAAAANUAAAAAAAAA1QAAAAAAAADZAAAAAAAAANkAAAAAAAAA3QAAAAAAAADdAAAAAAAAAOEAAAAAAAAA4QAAAAAAAADlAAAAAAAAAOUAAAAAAAAA6QAAAAAAAADpAAAAAAAAAO0AAAAAAAAA7QAAAAAAAADxAAAAAAAAAPEAAAAAAAAA9QAAAAAAAAD1AAAAAAAAAPkAAAAAAAAA+QAAAAAAAAD9AAAAAAAAAP0AAAAAAAABAQAAAAAAAAEBAAAAAAACAQEAAAAAAAIBAQAAAAAAAAEFAAAAAAAAAQUAAAAAAAIBBQAAAAAAAgEFAAAAAAAAAQkAAAAAAAABCQAAAAAAAgEJAAAAAAACAQkAAAAAAAABDQAAAAAAAAENAAAAAAACAQ0AAAAAAAIBDQAAAAAAAAERAAAAAAAAAREAAAAAAAIBEQAAAAAAAgERAAAAAAAAARUAAAAAAAABFQAAAAAAAgEVAAAAAAACARUAAAAAAAABGQAAAAAAAAEZAAAAAAACARkAAAAAAAIBGQAAAAAAAAEdAAAAAAAAAR0AAAAAAAIBHQAAAAAAAgEdAAAAAAAAASEAAAAAAAABIQAAAAAAAgEhAAAAAAACASEAAAAAAAABJQAAAAAAAAElAAAAAAACASUAAAAAAAIBJQAAAAAAAAEpAAAAAAAAASkAAAAAAAIBKQAAAAAAAgEpAAAAAAAAAS0AAAAAAAABLQAAAAAAAgEtAAAAAAACAS0AAAAAAAABMQAAAAAAAAExAAAAAAACATEAAAAAAAIBMQAAAAAAAAE1AAAAAAAAATUAAAAAAAIBNQAAAAAAAgE1AAAAAAAAATkAAAAAAAABOQAAAAAAAgE5AAAAAAACATkAAAAAAAABPQAAAAAAAAE9AAAAAAACAT0AAAAAAAIBPQAAAAAAAAFBAAAAAAAAAUEAAAAAAAEBQQAAAAAAAQFBAAAAAAACAUEAAAAAAAIBQQAAAAAAAwFBAAAAAAADAUEAAAAAAAABRQAAAAAAAAFFAAAAAAABAUUAAAAAAAEBRQAAAAAAAgFFAAAAAAACAUUAAAAAAAMBRQAAAAAAAwFFAAAAAAAAAUkAAAAAAAABSQAAAAAAAQFJAAAAAAABAUkAAAAAAAIBSQAAAAAAAgFJAAAAAAADAUkAAAAAAAMBSQAAAAAAAAFNAAAAAAAAAU0AAAAAAAEBTQAAAAAAAQFNAAAAAAACAU0AAAAAAAIBTQAAAAAAAwFNAAAAAAADAU0AAAAAAAABUQAAAAAAAAFRAAAAAAABAVEAAAAAAAEBUQAAAAAAAgFRAAAAAAACAVEAAAAAAAMBUQAAAAAAAwFRAAAAAAAAAVUAAAAAAAABVQAAAAAAAQFVAAAAAAABAVUAAAAAAAIBVQAAAAAAAgFVAAAAAAADAVUAAAAAAAMBVQAAAAAAAAFZAAAAAAAAAVkAAAAAAAEBWQAAAAAAAQFZAAAAAAACAVkAAAAAAAIBWQAAAAAAAwFZAAAAAAADAVkAAAAAAAABXQAAAAAAAAFdAAAAAAABAV0AAAAAAAEBXQAAAAAAAgFdAAAAAAACAV0AAAAAAAMBXQAAAAAAAwFdAAAAAAAAAWEAAAAAAAABYQAAAAAAAQFhAAAAAAABAWEAAAAAAAIBYQAAAAAAAgFhAAAAAAADAWEAAAAAAAMBYQAAAAAAAAFlAAAAAAAAAWUAAAAAAAEBZQAAAAAAAQFlAAAAAAACAWUAAAAAAAIBZQAAAAAAAwFlAAAAAAADAWUAAAAAAAABaQAAAAAAAAFpAAAAAAABAWkAAAAAAAEBaQAAAAAAAgFpAAAAAAACAWkAAAAAAAMBaQAAAAAAAwFpAAAAAAAAAW0AAAAAAAABbQAAAAAAAQFtAAAAAAABAW0AAAAAAAIBbQAAAAAAAgFtAAAAAAADAW0AAAAAAAMBbQAAAAAAAAFxAAAAAAAAAXEAAAAAAAEBcQAAAAAAAQFxAAAAAAACAXEAAAAAAAIBcQAAAAAAAwFxAAAAAAADAXEAAAAAAAABdQAAAAAAAAF1AAAAAAABAXUAAAAAAAEBdQAAAAAAAgF1AAAAAAACAXUAAAAAAAMBdQAAAAAAAwF1AAAAAAAAAXkAAAAAAAABeQAAAAAAAQF5AAAAAAABAXkAAAAAAAIBeQAAAAAAAgF5AAAAAAADAXkAAAAAAAMBeQAAAAAAAAF9AAAAAAAAAX0AAAAAAAEBfQAAAAAAAQF9AAAAAAACAX0AAAAAAAIBfQAAAAAAAwF9AAAAAAADAX0AAAAAAAABgQAAAAAAAAGBAAAAAAAAgYEAAAAAAACBgQAAAAAAAQGBAAAAAAABAYEAAAAAAAGBgQAAAAAAAYGBAAAAAAACAYEAAAAAAAIBgQAAAAAAAoGBAAAAAAACgYEAAAAAAAMBgQAAAAAAAwGBAAAAAAADgYEAAAAAAAOBgQAAAAAAAAGFAAAAAAAAAYUAAAAAAACBhQAAAAAAAIGFAAAAAAABAYUAAAAAAAEBhQAAAAAAAYGFAAAAAAABgYUAAAAAAAIBhQAAAAAAAgGFAAAAAAACgYUAAAAAAAKBhQAAAAAAAwGFAAAAAAADAYUAAAAAAAOBhQAAAAAAA4GFAAAAAAAAAYkAAAAAAAABiQAAAAAAAIGJAAAAAAAAgYkAAAAAAAEBiQAAAAAAAQGJAAAAAAABgYkAAAAAAAGBiQAAAAAAAgGJAAAAAAACAYkAAAAAAAKBiQAAAAAAAoGJAAAAAAADAYkAAAAAAAMBiQAAAAAAA4GJAAAAAAADgYkAAAAAAAABjQAAAAAAAAGNAAAAAAAAgY0AAAAAAACBjQAAAAAAAQGNAAAAAAABAY0AAAAAAAGBjQAAAAAAAYGNAAAAAAACAY0AAAAAAAIBjQAAAAAAAoGNAAAAAAACgY0AAAAAAAMBjQAAAAAAAwGNAAAAAAADgY0AAAAAAAOBjQAAAAAAAAGRAAAAAAAAAZEAAAAAAACBkQAAAAAAAIGRAAAAAAABAZEAAAAAAAEBkQAAAAAAAYGRAAAAAAABgZEAAAAAAAIBkQAAAAAAAgGRAAAAAAACgZEAAAAAAAKBkQAAAAAAAwGRAAAAAAADAZEAAAAAAAOBkQAAAAAAA4GRAAAAAAAAAZUAAAAAAAABlQAAAAAAAIGVAAAAAAAAgZUAAAAAAAEBlQAAAAAAAQGVAAAAAAABgZUAAAAAAAGBlQAAAAAAAgGVAAAAAAACAZUAAAAAAAKBlQAAAAAAAoGVAAAAAAADAZUAAAAAAAMBlQAAAAAAA4GVAAAAAAADgZUAAAAAAAABmQAAAAAAAAGZAAAAAAAAgZkAAAAAAACBmQAAAAAAAQGZAAAAAAABAZkAAAAAAAGBmQAAAAAAAYGZAAAAAAACAZkAAAAAAAIBmQAAAAAAAoGZAAAAAAACgZkAAAAAAAMBmQAAAAAAAwGZAAAAAAADgZkAAAAAAAOBmQAAAAAAAAGdAAAAAAAAAZ0AAAAAAACBnQAAAAAAAIGdAAAAAAABAZ0AAAAAAAEBnQAAAAAAAYGdAAAAAAABgZ0AAAAAAAIBnQAAAAAAAgGdAAAAAAACgZ0AAAAAAAKBnQAAAAAAAwGdAAAAAAADAZ0AAAAAAAOBnQAAAAAAA4GdAAAAAAAAAaEAAAAAAAABoQAAAAAAAIGhAAAAAAAAgaEAAAAAAAEBoQAAAAAAAQGhAAAAAAABgaEAAAAAAAGBoQAAAAAAAgGhAAAAAAACAaEAAAAAAAKBoQAAAAAAAoGhAAAAAAADAaEAAAAAAAMBoQAAAAAAA4GhAAAAAAADgaEAAAAAAAABpQAAAAAAAAGlAAAAAAAAgaUAAAAAAACBpQAAAAAAAQGlAAAAAAABAaUAAAAAAAGBpQAAAAAAAYGlAAAAAAACAaUAAAAAAAIBpQAAAAAAAoGlAAAAAAACgaUAAAAAAAMBpQAAAAAAAwGlAAAAAAADgaUAAAAAAAOBpQAAAAAAAAGpAAAAAAAAAakAAAAAAACBqQAAAAAAAIGpAAAAAAABAakAAAAAAAEBqQAAAAAAAYGpAAAAAAABgakAAAAAAAIBqQAAAAAAAgGpAAAAAAACgakAAAAAAAKBqQAAAAAAAwGpAAAAAAADAakAAAAAAAOBqQAAAAAAA4GpAAAAAAAAAa0AAAAAAAABrQAAAAAAAIGtAAAAAAAAga0AAAAAAAEBrQAAAAAAAQGtAAAAAAABga0AAAAAAAGBrQAAAAAAAgGtAAAAAAACAa0AAAAAAAKBrQAAAAAAAoGtAAAAAAADAa0AAAAAAAMBrQAAAAAAA4GtAAAAAAADga0AAAAAAAABsQAAAAAAAAGxAAAAAAAAgbEAAAAAAACBsQAAAAAAAQGxAAAAAAABAbEAAAAAAAGBsQAAAAAAAYGxAAAAAAACAbEAAAAAAAIBsQAAAAAAAoGxAAAAAAACgbEAAAAAAAMBsQAAAAAAAwGxAAAAAAADgbEAAAAAAAOBsQAAAAAAAAG1AAAAAAAAAbUAAAAAAACBtQAAAAAAAIG1AAAAAAABAbUAAAAAAAEBtQAAAAAAAYG1AAAAAAABgbUAAAAAAAIBtQAAAAAAAgG1AAAAAAACgbUAAAAAAAKBtQAAAAAAAwG1AAAAAAADAbUAAAAAAAOBtQAAAAAAA4G1AAAAAAAAAbkAAAAAAAABuQAAAAAAAIG5AAAAAAAAgbkAAAAAAAEBuQAAAAAAAQG5AAAAAAABgbkAAAAAAAGBuQAAAAAAAgG5AAAAAAACAbkAAAAAAAKBuQAAAAAAAoG5AAAAAAADAbkAAAAAAAMBuQAAAAAAA4G5AAAAAAADgbkAAAAAAAABvQAAAAAAAAG9AAAAAAAAgb0AAAAAAACBvQAAAAAAAQG9AAAAAAABAb0AAAAAAAGBvQAAAAAAAYG9AAAAAAACAb0AAAAAAAIBvQAAAAAAAoG9AAAAAAACgb0AAAAAAAMBvQAAAAAAAwG9AAAAAAADgb0AAAAAAAOBvQAAAAAAAAHBAAAAAAAAAcEAAAAAAABBwQAAAAAAAEHBAAAAAAAAgcEAAAAAAACBwQAAAAAAAMHBAAAAAAAAwcEAAAAAAAEBwQAAAAAAAQHBAAAAAAABQcEAAAAAAAFBwQAAAAAAAYHBAAAAAAABgcEAAAAAAAHBwQAAAAAAAcHBAAAAAAACAcEAAAAAAAIBwQAAAAAAAkHBAAAAAAACQcEAAAAAAAKBwQAAAAAAAoHBAAAAAAACwcEAAAAAAALBwQAAAAAAAwHBAAAAAAADAcEAAAAAAANBwQAAAAAAA0HBAAAAAAADgcEAAAAAAAOBwQAAAAAAA8HBAAAAAAADwcEAAAAAAAABxQAAAAAAAAHFAAAAAAAAQcUAAAAAAABBxQAAAAAAAIHFAAAAAAAAgcUAAAAAAADBxQAAAAAAAMHFAAAAAAABAcUAAAAAAAEBxQAAAAAAAUHFAAAAAAABQcUAAAAAAAGBxQAAAAAAAYHFAAAAAAABwcUAAAAAAAHBxQAAAAAAAgHFAAAAAAACAcUAAAAAAAJBxQAAAAAAAkHFAAAAAAACgcUAAAAAAAKBxQAAAAAAAsHFAAAAAAACwcUAAAAAAAMBxQAAAAAAAwHFAAAAAAADQcUAAAAAAANBxQAAAAAAA4HFAAAAAAADgcUAAAAAAAPBxQAAAAAAA8HFAAAAAAAAAckAAAAAAAAByQAAAAAAAEHJAAAAAAAAQckAAAAAAACByQAAAAAAAIHJAAAAAAAAwckAAAAAAADByQAAAAAAAQHJAAAAAAABAckAAAAAAAFByQAAAAAAAUHJAAAAAAABgckAAAAAAAGByQAAAAAAAcHJAAAAAAABwckAAAAAAAIByQAAAAAAAgHJAAAAAAACQckAAAAAAAJByQAAAAAAAoHJAAAAAAACgckAAAAAAALByQAAAAAAAsHJAAAAAAADAckAAAAAAAMByQAAAAAAA0HJAAAAAAADQckAAAAAAAOByQAAAAAAA4HJAAAAAAADwckAAAAAAAPByQAAAAAAAAHNAAAAAAAAAc0AAAAAAABBzQAAAAAAAEHNAAAAAAAAgc0AAAAAAACBzQAAAAAAAMHNAAAAAAAAwc0AAAAAAAEBzQAAAAAAAQHNAAAAAAABQc0AAAAAAAFBzQAAAAAAAYHNAAAAAAABgc0AAAAAAAHBzQAAAAAAAcHNAAAAAAACAc0AAAAAAAIBzQAAAAAAAkHNAAAAAAACQc0AAAAAAAKBzQAAAAAAAoHNAAAAAAACwc0AAAAAAALBzQAAAAAAAwHNAAAAAAADAc0AAAAAAANBzQAAAAAAA0HNAAAAAAADgc0AAAAAAAOBzQAAAAAAA8HNAAAAAAADwc0AAAAAAAAB0QAAAAAAAAHRAAAAAAAAQdEAAAAAAABB0QAAAAAAAIHRAAAAAAAAgdEAAAAAAADB0QAAAAAAAMHRAAAAAAABAdEAAAAAAAEB0QAAAAAAAUHRAAAAAAABQdEAAAAAAAGB0QAAAAAAAYHRAAAAAAABwdEAAAAAAAHB0QAAAAAAAgHRAAAAAAACAdEAAAAAAAJB0QAAAAAAAkHRAAAAAAACgdEAAAAAAAKB0QAAAAAAAsHRAAAAAAACwdEAAAAAAAMB0QAAAAAAAwHRAAAAAAADQdEAAAAAAANB0QAAAAAAA4HRAAAAAAADgdEAAAAAAAPB0QAAAAAAA8HRAAAAAAAAAdUAAAAAAAAB1QAAAAAAAEHVAAAAAAAAQdUAAAAAAACB1QAAAAAAAIHVAAAAAAAAwdUAAAAAAADB1QAAAAAAAQHVAAAAAAABAdUAAAAAAAFB1QAAAAAAAUHVAAAAAAABgdUAAAAAAAGB1QAAAAAAAcHVAAAAAAABwdUAAAAAAAIB1QAAAAAAAgHVAAAAAAACQdUAAAAAAAJB1QAAAAAAAoHVAAAAAAACgdUAAAAAAALB1QAAAAAAAsHVAAAAAAADAdUAAAAAAAMB1QAAAAAAA0HVAAAAAAADQdUAAAAAAAOB1QAAAAAAA4HVAAAAAAADwdUAAAAAAAPB1QAAAAAAAAHZAAAAAAAAAdkAAAAAAABB2QAAAAAAAEHZAAAAAAAAgdkAAAAAAACB2QAAAAAAAMHZAAAAAAAAwdkAAAAAAAEB2QAAAAAAAQHZAAAAAAABQdkAAAAAAAFB2QAAAAAAAYHZAAAAAAABgdkAAAAAAAHB2QAAAAAAAcHZAAAAAAACAdkAAAAAAAIB2QAAAAAAAkHZAAAAAAACQdkAAAAAAAKB2QAAAAAAAoHZAAAAAAACwdkAAAAAAALB2QAAAAAAAwHZAAAAAAADAdkAAAAAAANB2QAAAAAAA0HZAAAAAAADgdkAAAAAAAOB2QAAAAAAA8HZAAAAAAADwdkAAAAAAAAB3QAAAAAAAAHdAAAAAAAAQd0AAAAAAABB3QAAAAAAAIHdAAAAAAAAgd0AAAAAAADB3QAAAAAAAMHdAAAAAAABAd0AAAAAAAEB3QAAAAAAAUHdAAAAAAABQd0AAAAAAAGB3QAAAAAAAYHdAAAAAAABwd0AAAAAAAHB3QAAAAAAAgHdAAAAAAACAd0AAAAAAAJB3QAAAAAAAkHdAAAAAAACgd0AAAAAAAKB3QAAAAAAAsHdAAAAAAACwd0AAAAAAAMB3QAAAAAAAwHdAAAAAAADQd0AAAAAAANB3QAAAAAAA4HdAAAAAAADgd0AAAAAAAPB3QAAAAAAA8HdAAAAAAAAAeEAAAAAAAAB4QAAAAAAAEHhAAAAAAAAQeEAAAAAAACB4QAAAAAAAIHhAAAAAAAAweEAAAAAAADB4QAAAAAAAQHhAAAAAAABAeEAAAAAAAFB4QAAAAAAAUHhAAAAAAABgeEAAAAAAAGB4QAAAAAAAcHhAAAAAAABweEAAAAAAAIB4QAAAAAAAgHhAAAAAAACQeEAAAAAAAJB4QAAAAAAAoHhAAAAAAACgeEAAAAAAALB4QAAAAAAAsHhAAAAAAADAeEAAAAAAAMB4QAAAAAAA0HhAAAAAAADQeEAAAAAAAOB4QAAAAAAA4HhAAAAAAADweEAAAAAAAPB4QAAAAAAAAHlAAAAAAAAAeUAAAAAAABB5QAAAAAAAEHlAAAAAAAAgeUAAAAAAACB5QAAAAAAAMHlAAAAAAAAweUAAAAAAAEB5QAAAAAAAQHlAAAAAAABQeUAAAAAAAFB5QAAAAAAAYHlAAAAAAABgeUAAAAAAAHB5QAAAAAAAcHlAAAAAAACAeUAAAAAAAIB5QAAAAAAAkHlAAAAAAACQeUAAAAAAAKB5QAAAAAAAoHlAAAAAAACweUAAAAAAALB5QAAAAAAAwHlAAAAAAADAeUAAAAAAANB5QAAAAAAA0HlAAAAAAADgeUAAAAAAAOB5QAAAAAAA8HlAAAAAAADweUAAAAAAAAB6QAAAAAAAAHpAAAAAAAAQekAAAAAAABB6QAAAAAAAIHpAAAAAAAAgekAAAAAAADB6QAAAAAAAMHpAAAAAAABAekAAAAAAAEB6QAAAAAAAUHpAAAAAAABQekAAAAAAAGB6QAAAAAAAYHpAAAAAAABwekAAAAAAAHB6QAAAAAAAgHpAAAAAAACAekAAAAAAAJB6QAAAAAAAkHpAAAAAAACgekAAAAAAAKB6QAAAAAAAsHpAAAAAAACwekAAAAAAAMB6QAAAAAAAwHpAAAAAAADQekAAAAAAANB6QAAAAAAA4HpAAAAAAADgekAAAAAAAPB6QAAAAAAA8HpAAAAAAAAAe0AAAAAAAAB7QAAAAAAAEHtAAAAAAAAQe0AAAAAAACB7QAAAAAAAIHtAAAAAAAAwe0AAAAAAADB7QAAAAAAAQHtAAAAAAABAe0AAAAAAAFB7QAAAAAAAUHtAAAAAAABge0AAAAAAAGB7QAAAAAAAcHtAAAAAAABwe0AAAAAAAIB7QAAAAAAAgHtAAAAAAACQe0AAAAAAAJB7QAAAAAAAoHtAAAAAAACge0AAAAAAALB7QAAAAAAAsHtAAAAAAADAe0AAAAAAAMB7QAAAAAAA0HtAAAAAAADQe0AAAAAAAOB7QAAAAAAA4HtAAAAAAADwe0AAAAAAAPB7QAAAAAAAAHxAAAAAAAAAfEAAAAAAABB8QAAAAAAAEHxAAAAAAAAgfEAAAAAAACB8QAAAAAAAMHxAAAAAAAAwfEAAAAAAAEB8QAAAAAAAQHxAAAAAAABQfEAAAAAAAFB8QAAAAAAAYHxAAAAAAABgfEAAAAAAAHB8QAAAAAAAcHxAAAAAAACAfEAAAAAAAIB8QAAAAAAAkHxAAAAAAACQfEAAAAAAAKB8QAAAAAAAoHxAAAAAAACwfEAAAAAAALB8QAAAAAAAwHxAAAAAAADAfEAAAAAAANB8QAAAAAAA0HxAAAAAAADgfEAAAAAAAOB8QAAAAAAA8HxAAAAAAADwfEAAAAAAAAB9QAAAAAAAAH1AAAAAAAAQfUAAAAAAABB9QAAAAAAAIH1AAAAAAAAgfUAAAAAAADB9QAAAAAAAMH1AAAAAAABAfUAAAAAAAEB9QAAAAAAAUH1AAAAAAABQfUAAAAAAAGB9QAAAAAAAYH1AAAAAAABwfUAAAAAAAHB9QAAAAAAAgH1AAAAAAACAfUAAAAAAAJB9QAAAAAAAkH1AAAAAAACgfUAAAAAAAKB9QAAAAAAAsH1AAAAAAACwfUAAAAAAAMB9QAAAAAAAwH1AAAAAAADQfUAAAAAAANB9QAAAAAAA4H1AAAAAAADgfUAAAAAAAPB9QAAAAAAA8H1AAAAAAAAAfkAAAAAAAAB+QAAAAAAAEH5AAAAAAAAQfkAAAAAAACB+QAAAAAAAIH5AAAAAAAAwfkAAAAAAADB+QAAAAAAAQH5AAAAAAABAfkAAAAAAAFB+QAAAAAAAUH5AAAAAAABgfkAAAAAAAGB+QAAAAAAAcH5AAAAAAABwfkAAAAAAAIB+QAAAAAAAgH5AAAAAAACQfkAAAAAAAJB+QAAAAAAAoH5AAAAAAACgfkAAAAAAALB+QAAAAAAAsH5AAAAAAADAfkAAAAAAAMB+QAAAAAAA0H5AAAAAAADQfkAAAAAAAOB+QAAAAAAA4H5AAAAAAADwfkAAAAAAAPB+QAAAAAAAAH9AAAAAAAAAf0AAAAAAABB/QAAAAAAAEH9AAAAAAAAgf0AAAAAAACB/QAAAAAAAMH9AAAAAAAAwf0AAAAAAAEB/QAAAAAAAQH9AAAAAAABQf0AAAAAAAFB/QAAAAAAAYH9AAAAAAABgf0AAAAAAAHB/QAAAAAAAcH9AAAAAAACAf0AAAAAAAIB/QAAAAAAAkH9AAAAAAACQf0AAAAAAAKB/QAAAAAAAoH9AAAAAAACwf0AAAAAAALB/QAAAAAAAwH9AAAAAAADAf0AAAAAAANB/QAAAAAAA0H9AAAAAAADgf0AAAAAAAOB/QAAAAAAA8H9AAAAAAADwf0AAAAAAAACAQAAAAAAAAIBAAAAAAAAIgEAAAAAAAAiAQAAAAAAAEIBAAAAAAAAQgEAAAAAAABiAQAAAAAAAGIBAAAAAAAAggEAAAAAAACCAQAAAAAAAKIBAAAAAAAAogEAAAAAAADCAQAAAAAAAMIBAAAAAAAA4gEAAAAAAADiAQAAAAAAAQIBAAAAAAABAgEAAAAAAAEiAQAAAAAAASIBAAAAAAABQgEAAAAAAAFCAQAAAAAAAWIBAAAAAAABYgEAAAAAAAGCAQAAAAAAAYIBAAAAAAABogEAAAAAAAGiAQAAAAAAAcIBAAAAAAABwgEAAAAAAAHiAQAAAAAAAeIBAAAAAAACAgEAAAAAAAICAQAAAAAAAiIBAAAAAAACIgEAAAAAAAJCAQAAAAAAAkIBAAAAAAACYgEAAAAAAAJiAQAAAAAAAoIBAAAAAAACggEAAAAAAAKiAQAAAAAAAqIBAAAAAAACwgEAAAAAAALCAQAAAAAAAuIBAAAAAAAC4gEAAAAAAAMCAQAAAAAAAwIBAAAAAAADIgEAAAAAAAMiAQAAAAAAA0IBAAAAAAADQgEAAAAAAANiAQAAAAAAA2IBAAAAAAADggEAAAAAAAOCAQAAAAAAA6IBAAAAAAADogEAAAAAAAPCAQAAAAAAA8IBAAAAAAAD4gEAAAAAAAPiAQAAAAAAAAIFAAAAAAAAAgUAAAAAAAAiBQAAAAAAACIFAAAAAAAAQgUAAAAAAABCBQAAAAAAAGIFAAAAAAAAYgUAAAAAAACCBQAAAAAAAIIFAAAAAAAAogUAAAAAAACiBQAAAAAAAMIFAAAAAAAAwgUAAAAAAADiBQAAAAAAAOIFAAAAAAABAgUAAAAAAAECBQAAAAAAASIFAAAAAAABIgUAAAAAAAFCBQAAAAAAAUIFAAAAAAABYgUAAAAAAAFiBQAAAAAAAYIFAAAAAAABggUAAAAAAAGiBQAAAAAAAaIFAAAAAAABwgUAAAAAAAHCBQAAAAAAAeIFAAAAAAAB4gUAAAAAAAICBQAAAAAAAgIFAAAAAAACIgUAAAAAAAIiBQAAAAAAAkIFAAAAAAACQgUAAAAAAAJiBQAAAAAAAmIFAAAAAAACggUAAAAAAAKCBQAAAAAAAqIFAAAAAAACogUAAAAAAALCBQAAAAAAAsIFAAAAAAAC4gUAAAAAAALiBQAAAAAAAwIFAAAAAAADAgUAAAAAAAMiBQAAAAAAAyIFAAAAAAADQgUAAAAAAANCBQAAAAAAA2IFAAAAAAADYgUAAAAAAAOCBQAAAAAAA4IFAAAAAAADogUAAAAAAAOiBQAAAAAAA8IFAAAAAAADwgUAAAAAAAPiBQAAAAAAA+IFAAAAAAAAAgkAAAAAAAACCQAAAAAAACIJAAAAAAAAIgkAAAAAAABCCQAAAAAAAEIJAAAAAAAAYgkAAAAAAABiCQAAAAAAAIIJAAAAAAAAggkAAAAAAACiCQAAAAAAAKIJAAAAAAAAwgkAAAAAAADCCQAAAAAAAOIJAAAAAAAA4gkAAAAAAAECCQAAAAAAAQIJAAAAAAABIgkAAAAAAAEiCQAAAAAAAUIJAAAAAAABQgkAAAAAAAFiCQAAAAAAAWIJAAAAAAABggkAAAAAAAGCCQAAAAAAAaIJAAAAAAABogkAAAAAAAHCCQAAAAAAAcIJAAAAAAAB4gkAAAAAAAHiCQAAAAAAAgIJAAAAAAACAgkAAAAAAAIiCQAAAAAAAiIJAAAAAAACQgkAAAAAAAJCCQAAAAAAAmIJAAAAAAACYgkAAAAAAAKCCQAAAAAAAoIJAAAAAAACogkAAAAAAAKiCQAAAAAAAsIJAAAAAAACwgkAAAAAAALiCQAAAAAAAuIJAAAAAAADAgkAAAAAAAMCCQAAAAAAAyIJAAAAAAADIgkAAAAAAANCCQAAAAAAA0IJAAAAAAADYgkAAAAAAANiCQAAAAAAA4IJAAAAAAADggkAAAAAAAOiCQAAAAAAA6IJAAAAAAADwgkAAAAAAAPCCQAAAAAAA+IJAAAAAAAD4gkAAAAAAAACDQAAAAAAAAINAAAAAAAAIg0AAAAAAAAiDQAAAAAAAEINAAAAAAAAQg0AAAAAAABiDQAAAAAAAGINAAAAAAAAgg0AAAAAAACCDQAAAAAAAKINAAAAAAAAog0AAAAAAADCDQAAAAAAAMINAAAAAAAA4g0AAAAAAADiDQAAAAAAAQINAAAAAAABAg0AAAAAAAEiDQAAAAAAASINAAAAAAABQg0AAAAAA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AMiDQAAAAAAAwINAAAAAAADAg0AAAAAAALiDQAAAAAAAuINAAAAAAACwg0AAAAAAALCDQAAAAAAAqINAAAAAAACog0AAAAAAAKCDQAAAAAAAoINAAAAAAACYg0AAAAAAAJiDQAAAAAAAkINAAAAAAACQg0AAAAAAAIiDQAAAAAAAiINAAAAAAACAg0AAAAAAAICDQAAAAAAAeINAAAAAAAB4g0AAAAAAAHCDQAAAAAAAcINAAAAAAABog0AAAAAAAGiDQAAAAAAAYINAAAAAAABgg0AAAAAAAFiDQAAAAAAAWINAAAAAAABQg0AAAAAAAFCDQAAAAAAASINAAAAAAABIg0AAAAAAAECDQAAAAAAAQINAAAAAAAA4g0AAAAAAADiDQAAAAAAAMINAAAAAAAAwg0AAAAAAACiDQAAAAAAAKINAAAAAAAAgg0AAAAAAACCDQAAAAAAAGINAAAAAAAAYg0AAAAAAABCDQAAAAAAAEINAAAAAAAAIg0AAAAAAAAiDQAAAAAAAAINAAAAAAAAAg0AAAAAAAPiCQAAAAAAA+IJAAAAAAADwgkAAAAAAAPCCQAAAAAAA6IJAAAAAAADogkAAAAAAAOCCQAAAAAAA4IJAAAAAAADYgkAAAAAAANiCQAAAAAAA0IJAAAAAAADQgkAAAAAAAMiCQAAAAAAAyIJAAAAAAADAgkAAAAAAAMCCQAAAAAAAuIJAAAAAAAC4gkAAAAAAALCCQAAAAAAAsIJAAAAAAACogkAAAAAAAKiCQAAAAAAAoIJAAAAAAACggkAAAAAAAJiCQAAAAAAAmIJAAAAAAACQgkAAAAAAAJCCQAAAAAAAiIJAAAAAAACIgkAAAAAAAICCQAAAAAAAgIJAAAAAAAB4gkAAAAAAAHiCQAAAAAAAcIJAAAAAAABwgkAAAAAAAGiCQAAAAAAAaIJAAAAAAABggkAAAAAAAGCCQAAAAAAAWIJAAAAAAABYgkAAAAAAAFCCQAAAAAAAUIJAAAAAAABIgkAAAAAAAEiCQAAAAAAAQIJAAAAAAABAgkAAAAAAADiCQAAAAAAAOIJAAAAAAAAwgkAAAAAAADCCQAAAAAAAKIJAAAAAAAAogkAAAAAAACCCQAAAAAAAIIJAAAAAAAAYgkAAAAAAABiCQAAAAAAAEIJAAAAAAAAQgkAAAAAAAAiCQAAAAAAACIJAAAAAAAAAgkAAAAAAAACCQAAAAAAA+IFAAAAAAAD4gUAAAAAAAPCBQAAAAAAA8IFAAAAAAADogUAAAAAAAOiBQAAAAAAA4IFAAAAAAADggUAAAAAAANiBQAAAAAAA2IFAAAAAAADQgUAAAAAAANCBQAAAAAAAyIFAAAAAAADIgUAAAAAAAMCBQAAAAAAAwIFAAAAAAAC4gUAAAAAAALiBQAAAAAAAsIFAAAAAAACwgUAAAAAAAKiBQAAAAAAAqIFAAAAAAACggUAAAAAAAKCBQAAAAAAAmIFAAAAAAACYgUAAAAAAAJCBQAAAAAAAkIFAAAAAAACIgUAAAAAAAIiBQAAAAAAAgIFAAAAAAACAgUAAAAAAAHiBQAAAAAAAeIFAAAAAAABwgUAAAAAAAHCBQAAAAAAAaIFAAAAAAABogUAAAAAAAGCBQAAAAAAAYIFAAAAAAABYgUAAAAAAAFiBQAAAAAAAUIFAAAAAAABQgUAAAAAAAEiBQAAAAAAASIFAAAAAAABAgUAAAAAAAECBQAAAAAAAOIFAAAAAAAA4gUAAAAAAADCBQAAAAAAAMIFAAAAAAAAogUAAAAAAACiBQAAAAAAAIIFAAAAAAAAggUAAAAAAABiBQAAAAAAAGIFAAAAAAAAQgUAAAAAAABCBQAAAAAAACIFAAAAAAAAIgUAAAAAAAACBQAAAAAAAAIFAAAAAAAD4gEAAAAAAAPiAQAAAAAAA8IBAAAAAAADwgEAAAAAAAOiAQAAAAAAA6IBAAAAAAADggEAAAAAAAOCAQAAAAAAA2IBAAAAAAADYgEAAAAAAANCAQAAAAAAA0IBAAAAAAADIgEAAAAAAAMiAQAAAAAAAwIBAAAAAAADAgEAAAAAAALiAQAAAAAAAuIBAAAAAAACwgEAAAAAAALCAQAAAAAAAqIBAAAAAAACogEAAAAAAAKCAQAAAAAAAoIBAAAAAAACYgEAAAAAAAJiAQAAAAAAAkIBAAAAAAACQgEAAAAAAAIiAQAAAAAAAiIBAAAAAAACAgEAAAAAAAICAQAAAAAAAeIBAAAAAAAB4gEAAAAAAAHCAQAAAAAAAcIBAAAAAAABogEAAAAAAAGiAQAAAAAAAYIBAAAAAAABggEAAAAAAAFiAQAAAAAAAWIBAAAAAAABQgEAAAAAAAFCAQAAAAAAASIBAAAAAAABIgEAAAAAAAECAQAAAAAAAQIBAAAAAAAA4gEAAAAAAADiAQAAAAAAAMIBAAAAAAAAwgEAAAAAAACiAQAAAAAAAKIBAAAAAAAAggEAAAAAAACCAQAAAAAAAGIBAAAAAAAAYgEAAAAAAABCAQAAAAAAAEIBAAAAAAAAIgEAAAAAAAAiAQAAAAAAAAIBAAAAAAAAAgEAAAAAAAPB/QAAAAAAA8H9AAAAAAADgf0AAAAAAAOB/QAAAAAAA0H9AAAAAAADQf0AAAAAAAMB/QAAAAAAAwH9AAAAAAACwf0AAAAAAALB/QAAAAAAAoH9AAAAAAACgf0AAAAAAAJB/QAAAAAAAkH9AAAAAAACAf0AAAAAAAIB/QAAAAAAAcH9AAAAAAABwf0AAAAAAAGB/QAAAAAAAYH9AAAAAAABQf0AAAAAAAFB/QAAAAAAAQH9AAAAAAABAf0AAAAAAADB/QAAAAAAAMH9AAAAAAAAgf0AAAAAAACB/QAAAAAAAEH9AAAAAAAAQf0AAAAAAAAB/QAAAAAAAAH9AAAAAAADwfkAAAAAAAPB+QAAAAAAA4H5AAAAAAADgfkAAAAAAANB+QAAAAAAA0H5AAAAAAADAfkAAAAAAAMB+QAAAAAAAsH5AAAAAAACwfkAAAAAAAKB+QAAAAAAAoH5AAAAAAACQfkAAAAAAAJB+QAAAAAAAgH5AAAAAAACAfkAAAAAAAHB+QAAAAAAAcH5AAAAAAABgfkAAAAAAAGB+QAAAAAAAUH5AAAAAAABQfkAAAAAAAEB+QAAAAAAAQH5AAAAAAAAwfkAAAAAAADB+QAAAAAAAIH5AAAAAAAAgfkAAAAAAABB+QAAAAAAAEH5AAAAAAAAAfkAAAAAAAAB+QAAAAAAA8H1AAAAAAADwfUAAAAAAAOB9QAAAAAAA4H1AAAAAAADQfUAAAAAAANB9QAAAAAAAwH1AAAAAAADAfUAAAAAAALB9QAAAAAAAsH1AAAAAAACgfUAAAAAAAKB9QAAAAAAAkH1AAAAAAACQfUAAAAAAAIB9QAAAAAAAgH1AAAAAAABwfUAAAAAAAHB9QAAAAAAAYH1AAAAAAABgfUAAAAAAAFB9QAAAAAAAUH1AAAAAAABAfUAAAAAAAEB9QAAAAAAAMH1AAAAAAAAwfUAAAAAAACB9QAAAAAAAIH1AAAAAAAAQfUAAAAAAABB9QAAAAAAAAH1AAAAAAAAAfUAAAAAAAPB8QAAAAAAA8HxAAAAAAADgfEAAAAAAAOB8QAAAAAAA0HxAAAAAAADQfEAAAAAAAMB8QAAAAAAAwHxAAAAAAACwfEAAAAAAALB8QAAAAAAAoHxAAAAAAACgfEAAAAAAAJB8QAAAAAAAkHxAAAAAAACAfEAAAAAAAIB8QAAAAAAAcHxAAAAAAABwfEAAAAAAAGB8QAAAAAAAYHxAAAAAAABQfEAAAAAAAFB8QAAAAAAAQHxAAAAAAABAfEAAAAAAADB8QAAAAAAAMHxAAAAAAAAgfEAAAAAAACB8QAAAAAAAEHxAAAAAAAAQfEAAAAAAAAB8QAAAAAAAAHxAAAAAAADwe0AAAAAAAPB7QAAAAAAA4HtAAAAAAADge0AAAAAAANB7QAAAAAAA0HtAAAAAAADAe0AAAAAAAMB7QAAAAAAAsHtAAAAAAACwe0AAAAAAAKB7QAAAAAAAoHtAAAAAAACQe0AAAAAAAJB7QAAAAAAAgHtAAAAAAACAe0AAAAAAAHB7QAAAAAAAcHtAAAAAAABge0AAAAAAAGB7QAAAAAAAUHtAAAAAAABQe0AAAAAAAEB7QAAAAAAAQHtAAAAAAAAwe0AAAAAAADB7QAAAAAAAIHtAAAAAAAAge0AAAAAAABB7QAAAAAAAEHtAAAAAAAAAe0AAAAAAAAB7QAAAAAAA8HpAAAAAAADwekAAAAAAAOB6QAAAAAAA4HpAAAAAAADQekAAAAAAANB6QAAAAAAAwHpAAAAAAADAekAAAAAAALB6QAAAAAAAsHpAAAAAAACgekAAAAAAAKB6QAAAAAAAkHpAAAAAAACQekAAAAAAAIB6QAAAAAAAgHpAAAAAAABwekAAAAAAAHB6QAAAAAAAYHpAAAAAAABgekAAAAAAAFB6QAAAAAAAUHpAAAAAAABAekAAAAAAAEB6QAAAAAAAMHpAAAAAAAAwekAAAAAAACB6QAAAAAAAIHpAAAAAAAAQekAAAAAAABB6QAAAAAAAAHpAAAAAAAAAekAAAAAAAPB5QAAAAAAA8HlAAAAAAADgeUAAAAAAAOB5QAAAAAAA0HlAAAAAAADQeUAAAAAAAMB5QAAAAAAAwHlAAAAAAACweUAAAAAAALB5QAAAAAAAoHlAAAAAAACgeUAAAAAAAJB5QAAAAAAAkHlAAAAAAACAeUAAAAAAAIB5QAAAAAAAcHlAAAAAAABweUAAAAAAAGB5QAAAAAAAYHlAAAAAAABQeUAAAAAAAFB5QAAAAAAAQHlAAAAAAABAeUAAAAAAADB5QAAAAAAAMHlAAAAAAAAgeUAAAAAAACB5QAAAAAAAEHlAAAAAAAAQeUAAAAAAAAB5QAAAAAAAAHlAAAAAAADweEAAAAAAAPB4QAAAAAAA4HhAAAAAAADgeEAAAAAAANB4QAAAAAAA0HhAAAAAAADAeEAAAAAAAMB4QAAAAAAAsHhAAAAAAACweEAAAAAAAKB4QAAAAAAAoHhAAAAAAACQeEAAAAAAAJB4QAAAAAAAgHhAAAAAAACAeEAAAAAAAHB4QAAAAAAAcHhAAAAAAABgeEAAAAAAAGB4QAAAAAAAUHhAAAAAAABQeEAAAAAAAEB4QAAAAAAAQHhAAAAAAAAweEAAAAAAADB4QAAAAAAAIHhAAAAAAAAgeEAAAAAAABB4QAAAAAAAEHhAAAAAAAAAeEAAAAAAAAB4QAAAAAAA8HdAAAAAAADwd0AAAAAAAOB3QAAAAAAA4HdAAAAAAADQd0AAAAAAANB3QAAAAAAAwHdAAAAAAADAd0AAAAAAALB3QAAAAAAAsHdAAAAAAACgd0AAAAAAAKB3QAAAAAAAkHdAAAAAAACQd0AAAAAAAIB3QAAAAAAAgHdAAAAAAABwd0AAAAAAAHB3QAAAAAAAYHdAAAAAAABgd0AAAAAAAFB3QAAAAAAAUHdAAAAAAABAd0AAAAAAAEB3QAAAAAAAMHdAAAAAAAAwd0AAAAAAACB3QAAAAAAAIHdAAAAAAAAQd0AAAAAAABB3QAAAAAAAAHdAAAAAAAAAd0AAAAAAAPB2QAAAAAAA8HZAAAAAAADgdkAAAAAAAOB2QAAAAAAA0HZAAAAAAADQdkAAAAAAAMB2QAAAAAAAwHZAAAAAAACwdkAAAAAAALB2QAAAAAAAoHZAAAAAAACgdkAAAAAAAJB2QAAAAAAAkHZAAAAAAACAdkAAAAAAAIB2QAAAAAAAcHZAAAAAAABwdkAAAAAAAGB2QAAAAAAAYHZAAAAAAABQdkAAAAAAAFB2QAAAAAAAQHZAAAAAAABAdkAAAAAAADB2QAAAAAAAMHZAAAAAAAAgdkAAAAAAACB2QAAAAAAAEHZAAAAAAAAQdkAAAAAAAAB2QAAAAAAAAHZAAAAAAADwdUAAAAAAAPB1QAAAAAAA4HVAAAAAAADgdUAAAAAAANB1QAAAAAAA0HVAAAAAAADAdUAAAAAAAMB1QAAAAAAAsHVAAAAAAACwdUAAAAAAAKB1QAAAAAAAoHVAAAAAAACQdUAAAAAAAJB1QAAAAAAAgHVAAAAAAACAdUAAAAAAAHB1QAAAAAAAcHVAAAAAAABgdUAAAAAAAGB1QAAAAAAAUHVAAAAAAABQdUAAAAAAAEB1QAAAAAAAQHVAAAAAAAAwdUAAAAAAADB1QAAAAAAAIHVAAAAAAAAgdUAAAAAAABB1QAAAAAAAEHVAAAAAAAAAdUAAAAAAAAB1QAAAAAAA8HRAAAAAAADwdEAAAAAAAOB0QAAAAAAA4HRAAAAAAADQdEAAAAAAANB0QAAAAAAAwHRAAAAAAADAdEAAAAAAALB0QAAAAAAAsHRAAAAAAACgdEAAAAAAAKB0QAAAAAAAkHRAAAAAAACQdEAAAAAAAIB0QAAAAAAAgHRAAAAAAABwdEAAAAAAAHB0QAAAAAAAYHRAAAAAAABgdEAAAAAAAFB0QAAAAAAAUHRAAAAAAABAdEAAAAAAAEB0QAAAAAAAMHRAAAAAAAAwdEAAAAAAACB0QAAAAAAAIHRAAAAAAAAQdEAAAAAAABB0QAAAAAAAAHRAAAAAAAAAdEAAAAAAAPBzQAAAAAAA8HNAAAAAAADgc0AAAAAAAOBzQAAAAAAA0HNAAAAAAADQc0AAAAAAAMBzQAAAAAAAwHNAAAAAAACwc0AAAAAAALBzQAAAAAAAoHNAAAAAAACgc0AAAAAAAJBzQAAAAAAAkHNAAAAAAACAc0AAAAAAAIBzQAAAAAAAcHNAAAAAAABwc0AAAAAAAGBzQAAAAAAAYHNAAAAAAABQc0AAAAAAAFBzQAAAAAAAQHNAAAAAAABAc0AAAAAAADBzQAAAAAAAMHNAAAAAAAAgc0AAAAAAACBzQAAAAAAAEHNAAAAAAAAQc0AAAAAAAABzQAAAAAAAAHNAAAAAAADwckAAAAAAAPByQAAAAAAA4HJAAAAAAADgckAAAAAAANByQAAAAAAA0HJAAAAAAADAckAAAAAAAMByQAAAAAAAsHJAAAAAAACwckAAAAAAAKByQAAAAAAAoHJAAAAAAACQckAAAAAAAJByQAAAAAAAgHJAAAAAAACAckAAAAAAAHByQAAAAAAAcHJAAAAAAABgckAAAAAAAGByQAAAAAAAUHJAAAAAAABQckAAAAAAAEByQAAAAAAAQHJAAAAAAAAwckAAAAAAADByQAAAAAAAIHJAAAAAAAAgckAAAAAAABByQAAAAAAAEHJAAAAAAAAAckAAAAAAAAByQAAAAAAA8HFAAAAAAADwcUAAAAAAAOBxQAAAAAAA4HFAAAAAAADQcUAAAAAAANBxQAAAAAAAwHFAAAAAAADAcUAAAAAAALBxQAAAAAAAsHFAAAAAAACgcUAAAAAAAKBxQAAAAAAAkHFAAAAAAACQcUAAAAAAAIBxQAAAAAAAgHFAAAAAAABwcUAAAAAAAHBxQAAAAAAAYHFAAAAAAABgcUAAAAAAAFBxQAAAAAAAUHFAAAAAAABAcUAAAAAAAEBxQAAAAAAAMHFAAAAAAAAwcUAAAAAAACBxQAAAAAAAIHFAAAAAAAAQcUAAAAAAABBxQAAAAAAAAHFAAAAAAAAAcUAAAAAAAPBwQAAAAAAA8HBAAAAAAADgcEAAAAAAAOBwQAAAAAAA0HBAAAAAAADQcEAAAAAAAMBwQAAAAAAAwHBAAAAAAACwcEAAAAAAALBwQAAAAAAAoHBAAAAAAACgcEAAAAAAAJBwQAAAAAAAkHBAAAAAAACAcEAAAAAAAIBwQAAAAAAAcHBAAAAAAABwcEAAAAAAAGBwQAAAAAAAYHBAAAAAAABQcEAAAAAAAFBwQAAAAAAAQHBAAAAAAABAcEAAAAAAADBwQAAAAAAAMHBAAAAAAAAgcEAAAAAAACBwQAAAAAAAEHBAAAAAAAAQcEAAAAAAAABwQAAAAAAAAHBAAAAAAADgb0AAAAAAAOBvQAAAAAAAwG9AAAAAAADAb0AAAAAAAKBvQAAAAAAAoG9AAAAAAACAb0AAAAAAAIBvQAAAAAAAYG9AAAAAAABgb0AAAAAAAEBvQAAAAAAAQG9AAAAAAAAgb0AAAAAAACBvQAAAAAAAAG9AAAAAAAAAb0AAAAAAAOBuQAAAAAAA4G5AAAAAAADAbkAAAAAAAMBuQAAAAAAAoG5AAAAAAACgbkAAAAAAAIBuQAAAAAAAgG5AAAAAAABgbkAAAAAAAGBuQAAAAAAAQG5AAAAAAABAbkAAAAAAACBuQAAAAAAAIG5AAAAAAAAAbkAAAAAAAABuQAAAAAAA4G1AAAAAAADgbUAAAAAAAMBtQAAAAAAAwG1AAAAAAACgbUAAAAAAAKBtQAAAAAAAgG1AAAAAAACAbUAAAAAAAGBtQAAAAAAAYG1AAAAAAABAbUAAAAAAAEBtQAAAAAAAIG1AAAAAAAAgbUAAAAAAAABtQAAAAAAAAG1AAAAAAADgbEAAAAAAAOBsQAAAAAAAwGxAAAAAAADAbEAAAAAAAKBsQAAAAAAAoGxAAAAAAACAbEAAAAAAAIBsQAAAAAAAYGxAAAAAAABgbEAAAAAAAEBsQAAAAAAAQGxAAAAAAAAgbEAAAAAAACBsQAAAAAAAAGxAAAAAAAAAbEAAAAAAAOBrQAAAAAAA4GtAAAAAAADAa0AAAAAAAMBrQAAAAAAAoGtAAAAAAACga0AAAAAAAIBrQAAAAAAAgGtAAAAAAABga0AAAAAAAGBrQAAAAAAAQGtAAAAAAABAa0AAAAAAACBrQAAAAAAAIGtAAAAAAAAAa0AAAAAAAABrQAAAAAAA4GpAAAAAAADgakAAAAAAAMBqQAAAAAAAwGpAAAAAAACgakAAAAAAAKBqQAAAAAAAgGpAAAAAAACAakAAAAAAAGBqQAAAAAAAYGpAAAAAAABAakAAAAAAAEBqQAAAAAAAIGpAAAAAAAAgakAAAAAAAABqQAAAAAAAAGpAAAAAAADgaUAAAAAAAOBpQAAAAAAAwGlAAAAAAADAaUAAAAAAAKBpQAAAAAAAoGlAAAAAAACAaUAAAAAAAIBpQAAAAAAAYGlAAAAAAABgaUAAAAAAAEBpQAAAAAAAQGlAAAAAAAAgaUAAAAAAACBpQAAAAAAAAGlAAAAAAAAAaUAAAAAAAOBoQAAAAAAA4GhAAAAAAADAaEAAAAAAAMBoQAAAAAAAoGhAAAAAAACgaEAAAAAAAIBoQAAAAAAAgGhAAAAAAABgaEAAAAAAAGBoQAAAAAAAQGhAAAAAAABAaEAAAAAAACBoQAAAAAAAIGhAAAAAAAAAaEAAAAAAAABoQAAAAAAA4GdAAAAAAADgZ0AAAAAAAMBnQAAAAAAAwGdAAAAAAACgZ0AAAAAAAKBnQAAAAAAAgGdAAAAAAACAZ0AAAAAAAGBnQAAAAAAAYGdAAAAAAABAZ0AAAAAAAEBnQAAAAAAAIGdAAAAAAAAgZ0AAAAAAAABnQAAAAAAAAGdAAAAAAADgZkAAAAAAAOBmQAAAAAAAwGZAAAAAAADAZkAAAAAAAKBmQAAAAAAAoGZAAAAAAACAZkAAAAAAAIBmQAAAAAAAYGZAAAAAAABgZkAAAAAAAEBmQAAAAAAAQGZAAAAAAAAgZkAAAAAAACBmQAAAAAAAAGZAAAAAAAAAZkAAAAAAAOBlQAAAAAAA4GVAAAAAAADAZUAAAAAAAMBlQAAAAAAAoGVAAAAAAACgZUAAAAAAAIBlQAAAAAAAgGVAAAAAAABgZUAAAAAAAGBlQAAAAAAAQGVAAAAAAABAZUAAAAAAACBlQAAAAAAAIGVAAAAAAAAAZUAAAAAAAABlQAAAAAAA4GRAAAAAAADgZEAAAAAAAMBkQAAAAAAAwGRAAAAAAACgZEAAAAAAAKBkQAAAAAAAgGRAAAAAAACAZEAAAAAAAGBkQAAAAAAAYGRAAAAAAABAZEAAAAAAAEBkQAAAAAAAIGRAAAAAAAAgZEAAAAAAAABkQAAAAAAAAGRAAAAAAADgY0AAAAAAAOBjQAAAAAAAwGNAAAAAAADAY0AAAAAAAKBjQAAAAAAAoGNAAAAAAACAY0AAAAAAAIBjQAAAAAAAYGNAAAAAAABgY0AAAAAAAEBjQAAAAAAAQGNAAAAAAAAgY0AAAAAAACBjQAAAAAAAAGNAAAAAAAAAY0AAAAAAAOBiQAAAAAAA4GJAAAAAAADAYkAAAAAAAMBiQAAAAAAAoGJAAAAAAACgYkAAAAAAAIBiQAAAAAAAgGJAAAAAAABgYkAAAAAAAGBiQAAAAAAAQGJAAAAAAABAYkAAAAAAACBiQAAAAAAAIGJAAAAAAAAAYkAAAAAAAABiQAAAAAAA4GFAAAAAAADgYUAAAAAAAMBhQAAAAAAAwGFAAAAAAACgYUAAAAAAAKBhQAAAAAAAgGFAAAAAAACAYUAAAAAAAGBhQAAAAAAAYGFAAAAAAABAYUAAAAAAAEBhQAAAAAAAIGFAAAAAAAAgYUAAAAAAAABhQAAAAAAAAGFAAAAAAADgYEAAAAAAAOBgQAAAAAAAwGBAAAAAAADAYEAAAAAAAKBgQAAAAAAAoGBAAAAAAACAYEAAAAAAAIBgQAAAAAAAYGBAAAAAAABgYEAAAAAAAEBgQAAAAAAAQGBAAAAAAAAgYEAAAAAAACBgQAAAAAAAAGBAAAAAAAAAYEAAAAAAAMBfQAAAAAAAwF9AAAAAAACAX0AAAAAAAIBfQAAAAAAAQF9AAAAAAABAX0AAAAAAAABfQAAAAAAAAF9AAAAAAADAXkAAAAAAAMBeQAAAAAAAgF5AAAAAAACAXkAAAAAAAEBeQAAAAAAAQF5AAAAAAAAAXkAAAAAAAABeQAAAAAAAwF1AAAAAAADAXUAAAAAAAIBdQAAAAAAAgF1AAAAAAABAXUAAAAAAAEBdQAAAAAAAAF1AAAAAAAAAXUAAAAAAAMBcQAAAAAAAwFxAAAAAAACAXEAAAAAAAIBcQAAAAAAAQFxAAAAAAABAXEAAAAAAAABcQAAAAAAAAFxAAAAAAADAW0AAAAAAAMBbQAAAAAAAgFtAAAAAAACAW0AAAAAAAEBbQAAAAAAAQFtAAAAAAAAAW0AAAAAAAABbQAAAAAAAwFpAAAAAAADAWkAAAAAAAIBaQAAAAAAAgFpAAAAAAABAWkAAAAAAAEBaQAAAAAAAAFpAAAAAAAAAWkAAAAAAAMBZQAAAAAAAwFlAAAAAAACAWUAAAAAAAIBZQAAAAAAAQFlAAAAAAABAWUAAAAAAAABZQAAAAAAAAFlAAAAAAADAWEAAAAAAAMBYQAAAAAAAgFhAAAAAAACAWEAAAAAAAEBYQAAAAAAAQFhAAAAAAAAAWEAAAAAAAABYQAAAAAAAwFdAAAAAAADAV0AAAAAAAIBXQAAAAAAAgFdAAAAAAABAV0AAAAAAAEBXQAAAAAAAAFdAAAAAAAAAV0AAAAAAAMBWQAAAAAAAwFZAAAAAAACAVkAAAAAAAIBWQAAAAAAAQFZAAAAAAABAVkAAAAAAAABWQAAAAAAAAFZAAAAAAADAVUAAAAAAAMBVQAAAAAAAgFVAAAAAAACAVUAAAAAAAEBVQAAAAAAAQFVAAAAAAAAAVUAAAAAAAABVQAAAAAAAwFRAAAAAAADAVEAAAAAAAIBUQAAAAAAAgFRAAAAAAABAVEAAAAAAAEBUQAAAAAAAAFRAAAAAAAAAVEAAAAAAAMBTQAAAAAAAwFNAAAAAAACAU0AAAAAAAIBTQAAAAAAAQFNAAAAAAABAU0AAAAAAAABTQAAAAAAAAFNAAAAAAADAUkAAAAAAAMBSQAAAAAAAgFJAAAAAAACAUkAAAAAAAEBSQAAAAAAAQFJAAAAAAAAAUkAAAAAAAABSQAAAAAAAwFFAAAAAAADAUUAAAAAAAIBRQAAAAAAAgFFAAAAAAABAUUAAAAAAAEBRQAAAAAAAAFFAAAAAAAAAUUAAAAAAAMBQQAAAAAAAwFBAAAAAAACAUEAAAAAAAIBQQAAAAAAAQFBAAAAAAABAUEAAAAAAAABQQAAAAAAAAFBAAAAAAACAT0AAAAAAAIBPQAAAAAAAAE9AAAAAAAAAT0AAAAAAAIBOQAAAAAAAgE5AAAAAAAAATkAAAAAAAABOQAAAAAAAgE1AAAAAAACATUAAAAAAAABNQAAAAAAAAE1AAAAAAACATEAAAAAAAIBMQAAAAAAAAExAAAAAAAAATEAAAAAAAIBLQAAAAAAAgEtAAAAAAAAAS0AAAAAAAABLQAAAAAAAgEpAAAAAAACASkAAAAAAAABKQAAAAAAAAEpAAAAAAACASUAAAAAAAIBJQAAAAAAAAElAAAAAAAAASUAAAAAAAIBIQAAAAAAAgEhAAAAAAAAASEAAAAAAAABIQAAAAAAAgEdAAAAAAACAR0AAAAAAAABHQAAAAAAAAEdAAAAAAACARkAAAAAAAIBGQAAAAAAAAEZAAAAAAAAARkAAAAAAAIBFQAAAAAAAgEVAAAAAAAAARUAAAAAAAABFQAAAAAAAgERAAAAAAACAREAAAAAAAABEQAAAAAAAAERAAAAAAACAQ0AAAAAAAIBDQAAAAAAAAENAAAAAAAAAQ0AAAAAAAIBCQAAAAAAAgEJAAAAAAAAAQkAAAAAAAABCQAAAAAAAgEFAAAAAAACAQUAAAAAAAABBQAAAAAAAAEFAAAAAAACAQEAAAAAAAIBAQAAAAAAAAEBAAAAAAAAAQEAAAAAAAAA/QAAAAAAAAD9AAAAAAAAAPkAAAAAAAAA+QAAAAAAAAD1AAAAAAAAAPUAAAAAAAAA8QAAAAAAAADxAAAAAAAAAO0AAAAAAAAA7QAAAAAAAADpAAAAAAAAAOkAAAAAAAAA5QAAAAAAAADlAAAAAAAAAOEAAAAAAAAA4QAAAAAAAADdAAAAAAAAAN0AAAAAAAAA2QAAAAAAAADZAAAAAAAAANUAAAAAAAAA1QAAAAAAAADRAAAAAAAAANEAAAAAAAAAzQAAAAAAAADNAAAAAAAAAMkAAAAAAAAAyQAAAAAAAADFAAAAAAAAAMUAAAAAAAAAwQAAAAAAAADBAAAAAAAAALkAAAAAAAAAuQAAAAAAAACxAAAAAAAAALEAAAAAAAAAqQAAAAAAAACpAAAAAAAAAKEAAAAAAAAAoQAAAAAAAACZAAAAAAAAAJkAAAAAAAAAkQAAAAAAAACRAAAAAAAAAIkAAAAAAAAAiQAAAAAAAACBAAAAAAAAAIEAAAAAAAAAcQAAAAAAAABxAAAAAAAAAGEAAAAAAAAAYQAAAAAAAABRAAAAAAAAAFEAAAAAAAAAQQAAAAAAAABBAAAAAAAAACEAAAAAAAAAIQAAAAAAAAABAAAAAAAAAAEAAAAAAAADwPwAAAAAAAPA/AAAAAAAAAAAAAAAAAAAAAA==","dtype":"float64","order":"little","shape":[16004]},"y":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[16004]}},"selected":{"id":"12996"},"selection_policy":{"id":"12995"}},"id":"12239","type":"ColumnDataSource"},{"attributes":{"fill_color":{"value":"#2ba02b"},"line_color":{"value":"#2ba02b"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12268","type":"Circle"},{"attributes":{"source":{"id":"12278"}},"id":"12283","type":"CDSView"},{"attributes":{"source":{"id":"12272"}},"id":"12277","type":"CDSView"},{"attributes":{"data_source":{"id":"12254"},"glyph":{"id":"12256"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12257"},"selection_glyph":null,"view":{"id":"12259"}},"id":"12258","type":"GlyphRenderer"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999],"parameter":["theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]","theta[1]"],"rank_statistic":[2340,2601,1151,98,1868,3487,967,3775,2035,2477,223,1148,2974,1762,133,697,1555,3789,602,3489,273,2207,617,3525,3544,2161,474,1649,3587,1266,1417,2793,1436,1652,2863,3706,2558,3179,1396,53,1758,1228,1873,453,3304,3451,2883,3862,2046,966,2756,2488,3149,2314,1121,761,2328,1831,3392,1003,648,2170,3882,3112,1579,1804,1684,3794,588,401,230,652,2341,201,1668,3502,2831,1977,1371,3045,428,3435,296,606,2819,3775,2805,76,1480,2543,896,2066,2204,2931,989,2624,1753,1973,3050,781,1905,2558,528,3104,2859,2253,3224,2136,1594,2330,3280,2386,3402,162,3052,3830,895,3708,3015,3329,2087,2798,2692,1225,3651,1766,1966,1060,3199,1250,3204,1306,3597,2346,243,200,3799,376,428,1460,3883,3641,2366,2839,933,1384,2965,3542,1808,2539,1715,686,1771,1687,3254,1226,3524,817,2150,441,1168,2049,2487,3616,3621,1994,3661,2861,3975,1294,1197,2726,2521,622,627,1995,2482,3691,3538,1459,2056,1419,1071,3771,1539,2781,3251,3741,967,950,773,2627,3819,2525,1062,715,323,433,3327,1674,909,3351,1236,2865,3317,2548,2188,2937,309,2545,3330,204,1748,847,2753,2057,319,2300,2521,3959,3783,1770,2434,1318,3908,1385,1042,243,2812,3266,3772,1126,2593,1554,1166,136,2758,1428,799,845,2135,2319,1685,966,3573,1074,1922,2035,2033,1404,1326,2294,140,2769,145,2304,78,120,1556,2472,3889,1127,3600,3862,2140,1070,2428,424,1685,1523,1477,2868,2355,1615,2245,1721,1260,3968,294,1201,101,159,1968,2154,2646,1515,2965,3454,701,2456,1263,1227,3563,164,3140,2025,1880,1429,2677,1155,1093,913,3058,243,11,131,3079,2648,3117,3879,3637,3524,2911,3051,3450,139,1592,1336,3625,2834,760,1026,2806,415,4000,3140,2055,942,3728,3088,3495,3475,3624,843,1579,1486,743,2314,664,1305,2325,2741,1960,3584,2930,2220,3727,2276,1082,1027,3562,2351,115,247,1934,2438,443,3340,1038,70,208,3488,892,954,3936,3528,319,390,1776,3132,1474,612,2196,871,2877,2337,2063,2791,3097,1406,2895,330,854,2388,165,193,3828,3081,2726,2295,3116,1860,3395,3857,683,1834,2855,3859,1403,323,567,2898,1965,566,1476,1848,2451,1026,1057,3002,2898,576,2261,3936,3775,992,933,3470,2226,1841,2270,3040,3693,2340,3934,125,1348,1066,539,3060,2151,2298,2289,290,2263,3037,3732,1010,1669,1998,36,3306,520,2283,1376,1056,2214,2862,2906,1941,2118,1901,3554,174,1549,681,1122,1873,1965,728,3810,624,1533,2931,163,1836,375,3021,2360,341,3647,777,3542,2499,2450,3200,63,2037,2476,3811,3969,2896,2539,2959,607,2521,1343,487,3924,2300,2021,3289,3755,3638,2048,3377,903,1665,3658,1050,2973,3755,3287,1518,1003,2952,584,3362,3763,2067,607,825,1430,2440,481,820,3414,2305,2571,2567,2037,1930,1421,3629,3007,2450,1429,465,2153,3068,2252,1531,1226,728,3008,932,929,3791,3363,2319,2564,2455,1950,1889,1581,1291,3907,702,3050,300,2286,782,3780,2984,2536,296,1327,1439,649,2763,2840,3417,3879,2675,3012,3995,1608,3589,186,3223,2582,3954,2758,3929,893,543,2620,133,2861,2162,1574,3042,374,827,1737,3702,3754,1655,2199,3742,1403,3416,2674,2019,2711,845,1625,3564,346,652,2624,1876,279,2197,3008,1842,1402,1975,2952,2979,2650,2317,3706,2122,1081,2157,3302,257,3232,1486,3302,1907,3938,1853,1759,1122,1925,2692,1398,1385,1499,3517,128,1167,32,3672,3890,2847,1205,3868,3282,3524,2003,3572,149,3270,1578,1255,490,3322,1983,1972,129,3241,1447,2881,1332,1400,201,2234,829,716,2133,204,1358,2165,1612,462,3051,1161,1908,1526,1964,3383,707,2856,950,398,2674,2847,2145,353,1400,758,1605,744,3594,1685,1876,2040,1804,1622,1034,991,308,278,3113,3348,761,1947,2122,2726,3904,2607,890,1516,2981,1947,2481,1353,988,439,2625,2707,1834,3352,511,2657,3481,356,2113,1582,2207,2168,15,914,1201,1226,450,315,990,3503,3857,3924,2997,2753,402,3206,2634,2554,681,1331,1374,805,649,2551,3605,748,3447,2558,3749,565,1899,1599,487,1528,3547,2161,3456,2705,166,2485,3883,3384,676,945,520,1669,1974,928,884,2417,321,779,3374,1278,1076,1132,3334,2265,3784,2850,223,634,2598,2700,3168,649,24,1983,2788,3394,702,2719,463,133,3573,2744,668,2004,553,3926,1062,511,3759,2878,3529,1254,3077,4000,3294,3878,3155,1970,1298,2112,1482,3596,3880,683,1716,2971,2702,1909,1515,679,478,1144,2840,2043,2801,2505,1716,1713,2134,140,2018,360,669,71,3394,3137,787,325,1743,1848,977,725,2135,3796,861,2356,1011,605,2736,3529,2540,1914,850,2380,2528,1928,3899,1712,3442,2382,1262,889,2053,965,2384,2081,1586,2651,1705,3811,2536,3900,1938,48,2446,1586,2830,3964,957,168,665,2308,460,1982,3044,2277,1863,105,3881,1592,3195,1217,2316,1607,1054,303,1370,1782,1049,2072,3204,3734,3558,2653,2253,2412,165,2351,1058,475,1615,3799,3294,2785,2821,644,1772,2326,614,34,672,76,3783,3013,3595,767,2791,1751,3916,3768,36,2829,1000,675,31,3196,609,365,3785,3746,2182,992,2755,272,3366,1732,3647,3236,579,3902,2084,961,1516,747,2815,3825,576,3021,1457,2776,449,1329,2125,3023,1962,3040,154,3017,2498,1010,2010,3956,1498,3635,1513,1651,3651,2087,874,1860,3617,901,2312,3319,3761,2671,2112,2028,2273,454,429,876,240,215],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13014"},"selection_policy":{"id":"13013"}},"id":"12290","type":"ColumnDataSource"},{"attributes":{},"id":"12218","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#9367bc"},"line_alpha":{"value":0.1},"line_color":{"value":"#9367bc"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12281","type":"Circle"},{"attributes":{"fill_alpha":0.5,"line_alpha":0,"line_color":"#1f77b4","line_width":0,"x":{"field":"x"},"y":{"field":"y"}},"id":"12240","type":"Patch"},{"attributes":{"fill_color":{"value":"#9367bc"},"line_color":{"value":"#9367bc"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12280","type":"Circle"},{"attributes":{"data_source":{"id":"12326"},"glyph":{"id":"12328"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12329"},"selection_glyph":null,"view":{"id":"12331"}},"id":"12330","type":"GlyphRenderer"},{"attributes":{"label":{"value":"theta[1]"},"renderers":[{"id":"12294"}]},"id":"12339","type":"LegendItem"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999],"parameter":["theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]","theta_1[0,0]"],"rank_statistic":[3566,2380,2945,1319,124,3375,1489,2768,3145,1704,3450,79,2959,3142,2849,868,956,89,2631,234,1230,110,319,3438,301,2919,2615,2773,2287,1981,3087,91,902,2530,3217,1662,1495,1615,900,3223,1263,2606,3754,1684,2900,618,2619,3661,2797,1069,3274,2283,554,3421,2331,3979,2425,2222,2314,2272,3405,3004,2829,1476,3251,347,3258,158,748,668,2955,1184,897,444,2238,2220,1353,888,2790,2281,3312,1451,1115,3058,1896,2294,2164,1747,3440,1330,1440,2589,1537,206,201,3896,3906,1489,1896,1381,436,2033,3242,1261,1164,3336,3864,3126,2869,29,3379,1147,2263,3594,2564,1366,1118,508,1120,3388,3137,2370,835,2108,3466,3243,1550,2871,2147,3689,1848,2315,795,778,3044,3968,3492,237,1308,1212,3500,3394,2836,2116,230,1955,2013,1011,429,3566,1163,122,705,427,3927,3097,2674,1029,3501,3939,2691,2871,578,2668,3599,2732,28,3634,1211,2779,2676,2199,97,1072,192,1035,2641,1855,3803,2342,280,962,3989,3491,1998,2815,3286,3693,2173,1191,3066,1893,133,2804,354,2973,3979,3987,183,2009,3200,3901,1649,2001,350,2986,3847,1045,72,541,3404,2777,680,3116,1407,2053,2989,2829,988,915,1940,2375,1163,121,2976,547,2935,2919,910,943,1423,2389,2713,758,3059,114,560,1229,2700,3358,2477,1466,2196,454,1256,641,850,3056,3192,2854,3725,2309,1899,1901,3978,3470,218,3674,2364,1198,1397,3416,2035,169,2367,1888,3669,1303,1911,383,2714,818,2746,965,387,2716,2327,3808,3840,3263,1719,1919,2688,3926,1835,2836,3911,1060,3033,1026,1433,3075,2515,254,2885,3025,336,613,612,458,3013,1104,1439,1629,1659,2386,118,1379,1743,3010,2964,369,367,2678,1998,1417,3280,668,65,3035,3191,2291,241,3158,3197,2236,389,1333,880,2030,1644,2566,332,2861,2572,3010,481,1362,1159,572,3519,1893,3051,3249,1923,2664,448,3394,1444,1079,3189,1623,2728,3411,1251,341,3702,3724,2804,3732,579,3338,3374,2394,2982,606,446,2917,2161,3446,770,3325,1745,497,240,2743,2826,1502,3360,765,551,637,3715,5,407,1655,3294,3147,2125,3869,692,146,1253,3462,2730,3751,2124,2012,2778,470,2243,3860,499,1252,3264,3928,3222,3666,2694,3560,126,3360,1317,3580,1986,1756,1185,128,1408,2455,874,3425,3867,1585,1629,1674,3296,1537,2224,1358,1171,3430,2293,1785,1030,1840,2588,1877,1179,3264,3398,924,548,1654,311,3864,1682,3478,3443,1126,1062,313,450,298,3995,1958,543,3428,3505,1259,531,2744,176,2618,3343,3936,2184,3266,3641,2023,148,1080,3262,3346,82,3697,3722,1555,672,3604,2761,968,2319,1188,3883,1521,1236,1504,2067,3001,3412,604,604,1114,3410,3662,2170,2647,893,1514,2219,3160,636,2917,3504,3972,697,3990,1540,2344,3049,3021,641,2096,2242,873,1824,118,2479,1122,479,1464,2652,153,60,507,939,780,2284,2257,420,3826,2196,1915,2387,2416,3256,68,2593,1226,847,3477,2967,466,2010,374,3772,285,894,3389,3207,1295,2185,1780,3057,2182,2389,3145,2977,554,1871,2857,2501,2067,2599,2633,1369,2831,3565,1701,3468,3574,2275,2635,1022,3465,1212,2592,1288,2912,1323,849,113,1804,752,255,2063,1547,3636,1946,2212,576,736,949,681,1695,2581,1069,3943,702,396,3457,3019,580,3710,3564,2876,928,394,2907,1948,811,3121,1609,1798,293,1681,2511,1662,3432,1866,55,2264,3184,1725,1341,3828,729,64,3259,416,1400,466,362,1382,781,264,262,357,1600,2553,2179,1842,3313,3097,3181,640,671,440,1197,1464,768,1335,1577,2206,2187,1565,1526,3886,1458,2712,1948,2535,2063,3720,114,685,1240,3506,1643,169,3187,1417,1247,3191,2710,3344,215,278,748,190,844,2436,625,2387,2262,3983,3140,1305,3440,2849,3494,373,3841,2148,2559,46,41,2447,1578,1274,2097,339,2861,569,1536,466,2659,2860,1632,549,1286,3184,3053,2397,1370,1023,1223,1212,3504,97,2860,1320,3964,71,2047,2729,1838,2215,3126,2596,109,3633,1718,1718,496,73,3830,1000,2923,2941,1478,3134,207,952,3030,304,3998,1849,2059,1565,168,2939,2464,3806,2045,1518,2826,1482,3136,258,3472,437,2903,111,195,3830,3763,2682,305,2122,168,3913,3092,1639,959,2556,2305,2478,925,1134,2375,3059,1519,3633,2442,3505,1699,728,625,3439,151,1593,2960,2936,3964,2614,739,1597,1264,3203,3144,19,2009,645,2471,1766,151,1387,2011,2751,2649,3131,3038,2082,293,382,621,1513,3665,3511,558,12,2297,568,2712,326,1689,466,402,2198,3191,992,3916,900,3539,1537,1836,3297,3009,3925,1729,1075,1378,1593,2925,3724,617,1831,3125,341,2186,186,1485,2418,2286,3280,908,3320,126,3339,1254,2886,3918,466,302,389,1786,2745,231,1494,367,688,251,781,2072,3646,2020,1575,2434,2947,3882,415,2780,918,2448,1081,2561,1033,2383,1232,1126,1308,2239,1335,1488,1949,736,3068,1100,436,1193,2803,3749,1753,2268,336,335,2833,2441,1584,1862,2998,3415,1679,1983,56,3883,3947,2709,3196,3826,3942,2485,764,3803,1046,3421,3288,110,3898,837,566,3361,923,3013,2426,1104,2806,1426,679,3817,3984,2661,493,2650,794,2649,27,3084,1180,2374,2686,2690,1046,793,2513,404,583,1514,448,1030,3826,2172,435,888,1215,849,367,674,736,2764,1394,1224,2158,1520,3719,2028,3753,3471,3031,1333,1165,1287,2983,148,2205,2395,3256,3918,3115,3801,1190,2535,506,2502,698,1340,1879,3180],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13016"},"selection_policy":{"id":"13015"}},"id":"12296","type":"ColumnDataSource"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#8c564b"},"line_alpha":{"value":0.1},"line_color":{"value":"#8c564b"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12287","type":"Circle"},{"attributes":{"label":{"value":"rho"},"renderers":[{"id":"12258"}]},"id":"12333","type":"LegendItem"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999],"parameter":["theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]","theta_1[1,0]"],"rank_statistic":[3042,334,567,3171,2774,2575,334,1473,1808,3967,3221,1693,993,350,2064,422,105,2266,3024,1939,2101,3431,3180,3139,2275,213,132,1132,928,2015,12,1326,2362,1376,3269,3798,1472,1256,1034,2415,742,735,368,3839,189,988,1608,3048,1083,3392,2180,1718,205,3690,1673,3324,2011,117,2360,2221,1496,2776,3554,351,3135,1710,3782,1906,3922,1018,1540,519,2534,3827,2255,884,2631,1160,734,1556,1216,36,917,2199,1774,3991,714,2252,2665,403,2671,1596,1645,782,2259,2395,2879,2435,2215,728,834,307,1187,1634,321,1761,1624,3973,2471,3767,676,941,3896,294,2437,1739,3356,2179,2592,506,1225,157,1227,2435,3790,445,156,3098,3139,1623,765,898,617,2272,3507,2783,3860,1937,1934,1039,94,3459,3453,1725,1077,1792,976,3277,6,3741,1518,1232,2833,3854,2016,1878,2614,1228,1996,3422,1054,1481,83,1851,264,1975,3241,3678,959,1519,1148,851,1528,1252,115,1080,3037,3067,2421,112,899,485,2347,295,1495,1078,1344,2477,2062,180,464,2288,1902,1022,2338,3034,3886,1571,1342,3135,3544,3817,3303,2747,2402,354,884,3567,694,698,1669,3128,533,3322,1969,3825,3365,2263,1394,2204,3313,2298,2965,897,902,2617,67,1979,3026,868,3119,350,237,423,3406,2768,3939,2276,3516,3195,3359,3830,518,131,213,1298,409,3019,3902,1165,34,1635,2244,1338,152,2366,1754,1628,1361,1730,2159,3027,55,550,709,902,3486,3652,3015,2023,2510,3347,392,135,380,2287,3031,1579,2859,2683,2169,542,2147,1350,1801,2369,791,988,1928,1076,3630,481,3897,1125,3726,3451,2605,557,1879,97,1121,1577,3117,2188,2331,753,2948,3099,678,2502,2743,207,2818,3194,1094,3075,3136,354,585,3149,2937,1343,324,2812,3974,3751,578,2473,3398,1928,1091,3125,203,461,2218,1495,1941,2082,1662,1612,2528,606,291,647,2067,768,264,3439,1762,1201,1102,262,2866,1588,2800,669,963,790,283,97,1098,3586,2409,1263,2723,3865,2789,790,436,975,3757,3672,1179,463,2774,3353,2289,2968,3217,3851,730,3727,1463,593,3189,3506,691,1060,3497,3919,901,273,421,735,317,3409,184,1843,138,3063,1010,3573,1732,893,1131,2999,2163,2314,587,970,290,3852,654,1824,168,446,3031,2264,1703,3143,923,1985,1192,231,3712,3094,3047,1321,2691,2925,1013,2021,1550,2721,1080,1050,3487,3528,2010,2781,431,1231,859,2343,2594,3564,2692,1212,1981,296,2111,2993,262,1947,2674,1094,3221,1541,3808,3008,1201,2930,3777,1622,3824,3408,1245,723,254,1683,393,1625,3144,1928,1606,3867,1036,1175,1272,1522,1967,269,856,2592,1253,1777,3714,135,895,2948,1600,1240,3476,74,800,2630,3029,2367,2901,699,2819,3701,774,936,1505,1485,2318,2492,3977,3551,3347,1978,2666,150,939,46,2230,69,1564,951,1247,2888,2192,3778,392,2973,2940,2645,3845,1865,2049,2192,3578,193,1058,3143,1774,2555,814,1595,2290,3183,2185,3282,3403,3191,2775,790,1970,1114,3987,3940,2636,2656,2051,2267,3683,1112,1977,3698,3494,2504,3578,1731,1974,1701,3877,3567,3609,2605,3118,3667,919,461,645,3107,3526,178,613,3080,956,2877,1896,2026,2225,3974,89,1156,2841,3336,3529,1601,1325,3394,2958,1045,3111,560,3964,3523,2035,2431,1737,2048,1428,315,1019,2644,1912,2451,3675,1904,3365,356,3301,3867,3868,1792,864,2824,1515,2442,1518,2857,3692,3456,1712,1650,2832,655,1514,1691,2996,1254,1738,2967,1273,1322,3598,2002,3798,2543,3927,2988,2450,743,1141,2784,683,2988,11,1608,82,3509,1546,511,1636,2083,2317,2762,3314,2770,3893,3783,180,2915,662,2211,3352,3200,2373,1088,1821,2006,1308,335,51,700,3075,3236,3417,66,3083,2530,1423,965,3511,3222,2680,3454,3930,173,2376,3161,971,2595,237,381,3425,1763,923,2078,1078,3966,3774,2596,2775,2448,1401,3352,1070,597,440,3390,2904,2897,240,1619,1686,1134,3674,2988,3641,1974,2771,1717,993,1411,2129,1335,2177,2881,504,2528,1574,3941,88,3656,2263,3239,3195,546,62,412,297,2341,327,360,1510,3957,3805,1806,2573,2717,2147,2411,3262,2865,579,1517,2064,3085,722,1026,3616,860,1972,886,2188,1067,3829,1200,1595,2543,1546,2021,1419,2153,206,2328,985,2413,3224,2873,2694,2681,1490,3635,1168,3967,80,2870,3630,1688,3423,131,2379,3409,1809,2936,1127,3645,3419,1341,1880,106,2233,391,869,1371,1910,2932,1573,1029,1127,2781,3425,2352,5,2440,340,1737,3294,3810,569,1748,1125,1225,2975,2939,3506,2054,1482,258,1384,2889,3875,1762,3286,3437,3749,1227,474,3857,899,343,558,1965,1262,435,120,3776,2914,793,2644,848,2459,2642,654,2681,3021,2223,1253,750,2869,2110,924,3637,3842,506,859,152,1422,1445,2281,3653,3936,2702,926,2260,536,1436,3938,1577,2730,2435,3475,3746,2179,380,3290,139,385,3007,2474,1664,1167,3302,3922,3424,2302,3254,1945,1841,98,569,747,3482,3520,3362,161,3122,1314,3403,2885,952,2680,812,2822,3991,3362,3812,549,1691,3453,3271,1683,978,3237,852,3573,2186,3849,3089,3227,28,2399,577,1537,195,2469,3657,3410,435,1099,3865,3183,3968,797,1816,1125,921,3062,1183,3148,3222,125,2714,805,3621,878,2463,438,957,1061,3043,648,2722,3899,715,1872,3078,2217,83,699,3191,370,3596,3523,2320,1863,2398,134,2758,1492,2345,357,782,794,2605,465,3885,676,3864,442,3896,1225,411,3005,156],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13020"},"selection_policy":{"id":"13019"}},"id":"12308","type":"ColumnDataSource"},{"attributes":{"fill_color":{"value":"#8c564b"},"line_color":{"value":"#8c564b"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12286","type":"Circle"},{"attributes":{"source":{"id":"12296"}},"id":"12301","type":"CDSView"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"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","dtype":"float64","order":"little","shape":[1000]},"index":[8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999],"parameter":["theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]","theta_1[0,1]"],"rank_statistic":[3454,1188,2926,1820,2316,3562,2882,3183,1784,2804,571,3977,1810,3100,1593,1777,1749,3805,383,1250,2345,27,1186,1018,3474,1063,2470,214,2748,1917,1208,3650,3298,192,68,2321,1303,2509,2482,3379,423,3429,611,1016,3327,453,3205,3886,3228,403,536,980,3225,599,3606,10,3821,868,1763,243,731,1058,2111,1836,2877,1572,2525,1330,522,865,317,279,1060,2142,2890,530,1752,1356,253,840,1086,927,1362,3174,1687,3555,2055,2608,232,2599,2513,1147,1677,3917,775,3092,699,2595,3511,3600,2301,2205,1783,1432,3647,2582,112,3140,1776,2295,339,3065,1965,1506,3072,2068,398,1565,2320,2528,1202,2459,584,3022,3594,1101,2060,2500,2225,1332,165,1981,1896,1800,373,3978,66,305,1011,2777,3174,3014,2929,3671,713,580,3310,2611,1054,470,2201,2096,395,3741,3910,1661,2324,3608,3832,979,1638,2564,2241,3472,1324,2415,271,2791,983,2904,3846,2735,2876,3276,3211,2719,1697,2381,184,3909,1933,3366,23,3314,2484,381,3564,3788,2635,1304,3601,97,142,3507,2229,1130,19,2618,3369,3035,2495,3988,1559,3657,142,3044,1405,2184,3922,2173,2554,1712,2405,742,3613,995,687,1564,544,3167,1947,2954,3109,2081,2151,2247,2553,1950,271,3286,3948,1936,3765,1604,1358,882,2928,1518,2268,114,1274,3348,2499,1085,936,2038,3409,2501,3816,2513,225,881,1837,1898,3990,3310,2465,47,2241,2708,329,2370,1350,70,3283,1334,2346,1082,1313,1508,1666,1604,2390,621,2418,327,1178,903,3939,857,977,3367,2682,3573,1488,1798,3624,595,862,2541,1520,1537,1702,3548,3443,1779,2096,3836,3081,3860,57,2519,2285,2369,3490,3291,2702,1302,2001,1746,2772,1348,1646,2457,2399,1790,2528,1125,3451,550,2808,393,2603,2396,510,3778,2251,999,19,115,199,2383,479,3473,2510,1621,3913,2881,2776,527,471,3389,1838,1161,830,2284,3090,3249,494,3046,105,3114,2188,3189,1441,1262,556,346,230,3611,1897,565,1048,3966,3675,757,761,1690,531,3128,3241,827,1785,276,3915,3839,800,847,3859,2341,39,1358,1879,3910,3935,592,2110,2082,1795,3915,2174,3888,3166,3277,3006,3215,2920,1481,3217,416,2793,49,2654,112,3694,3903,2725,3934,3719,657,2084,557,504,3638,3821,569,1498,696,707,2236,3215,2642,2559,3178,2046,2481,269,746,2441,2898,2118,1644,967,2616,2419,3808,3369,1623,2815,721,323,3574,444,1693,1641,1134,2040,1919,2792,929,773,2037,1841,3797,1606,1993,2480,343,674,3017,2218,526,2391,3518,3447,3939,2236,3055,2841,2600,775,2524,3270,1076,3812,315,3792,340,2776,3295,546,2157,2251,3868,3545,636,2128,1719,2222,1769,3835,3250,2166,1355,1140,299,2741,2523,3924,2714,2021,3860,3575,3549,1038,2,149,1677,1498,3747,2212,2696,1077,3391,2215,579,2531,582,2604,3270,1497,3211,2901,3975,2433,1440,2749,3521,1023,849,3684,847,2718,2918,2597,443,3243,3813,1490,901,889,1435,2792,2204,1636,1587,474,454,701,1566,112,985,2359,1534,940,445,2673,2413,289,66,2435,2644,2980,3044,739,3209,2525,2818,3284,97,3631,2951,1415,2574,414,471,1506,3297,2566,3135,3228,2880,100,3004,525,2101,3766,1689,2352,2231,1909,2047,1669,2129,3889,2621,1868,1710,1543,101,3450,887,1707,2440,2933,3808,2173,535,2343,3889,500,3664,2333,3287,1326,2214,3872,1674,1983,1259,2126,54,1768,3288,2189,974,2194,2260,33,1161,2195,2470,1787,99,168,3023,431,46,3450,413,2321,996,3919,2753,403,3022,403,2382,359,3372,1401,1245,2190,2492,1343,1708,3235,2371,2913,1295,605,3142,3969,2714,3851,939,219,2629,1131,3606,941,1789,1964,2798,822,2458,1619,765,3542,3558,648,2050,3529,2574,2091,3551,3913,704,19,2736,415,2772,3749,104,1259,2310,1819,3967,1528,1858,1121,1721,3769,1800,2664,1273,3323,1352,251,3246,943,847,2403,1948,2776,889,799,1498,1797,70,3314,55,1577,2938,160,904,1248,699,2242,3332,2420,3646,3863,3645,1683,1655,1554,2460,2468,3522,2573,3739,1298,2718,3121,2802,773,1621,3923,3396,2048,2050,292,3662,1171,1589,1529,3367,1912,1345,920,2890,2876,3202,52,121,2271,660,1213,3704,2132,3782,1037,357,441,2244,1339,836,1707,3110,2557,3104,2855,1090,262,1066,939,2928,3370,2358,1650,2162,1368,3267,3144,3982,3202,97,742,3057,935,2987,3294,1152,3003,3584,361,3898,1641,1379,735,1110,2238,559,568,2848,1355,3620,3879,346,463,2558,213,2255,1612,2654,313,635,342,2232,3006,1791,360,1000,3743,1532,1052,3881,946,544,3834,3179,895,1704,3442,3597,243,231,1585,2924,1414,823,3853,129,3162,2041,2006,3439,2881,3283,758,3693,3779,3933,3771,2975,3467,612,2825,3579,2109,3031,1551,2899,2195,2058,3991,1772,1503,1263,2419,3892,107,1019,312,760,1509,1449,2850,556,1211,612,1154,1243,1839,2713,2365,789,3383,3824,3907,1471,3060,2441,1723,2699,676,947,1004,1263,589,1706,1629,3890,1702,2799,2581,1810,3366,3541,1884,3642,409,1507,1301,363,1580,1468,3985,3702,3678,730,807,3643,3217,2172,3691,518,1758,3027,163,2026,442,1875,228,3171,3016,3416,1639,2501,2501,413,3857,598,3911,3090,1628,513,2633,1810,1275,621,1410,2183,820,3254,3773,688,1066,2942,156,2581,913,2763,2046,1427,3167,3773,3793,2607,3764,3042,1399,2622,3033,3807,1981,906,3907,3978,2944,908,1336,1675,699,791,730,1063,1701,3490],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13018"},"selection_policy":{"id":"13017"}},"id":"12302","type":"ColumnDataSource"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#e277c1"},"line_alpha":{"value":0.1},"line_color":{"value":"#e277c1"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12293","type":"Circle"},{"attributes":{"data":{"__ECDF":{"__ndarray__":"AKwcWmQ7n78Af2q8dJN4v1BkO99PjYe/4P3UeOkmkb8w30+Nl26Cv0Bg5dAi25m/QDeJQWDlkL+Ake18PzWev0C0yHa+n4q/gBSuR+F6lL+QGARWDi2Sv/BT46WbxKC/oBov3SQGob8AHoXrUbhuv0CHFtnO94O/yKFFtvP9hL8AAAAAAACgv4CVQ4ts55u/QLgehetRmL8AAAAAAACgvwCq8dJNYkA/eOkmMQisXD8Q16NwPQqHv0DfT42XboK/4FG4HoXrkb9ACKwcWmSbv2DpJjEIrJy/AP7UeOkmkb8gsHJoke2cv8DKoUW2852/gBSuR+F6lL9QN4lBYOWgvwCq8dJNYmC/gOkmMQisnL8AL90kBoF1v4C0yHa+n3q/MIcW2c73g79gke18PzWevyAEVg4tso2/YDm0yHa+n79ACKwcWmSbv0C0yHa+n3q/YLx0kxgElr/AcmiR7Xyfv5DC9Shcj6K/IAisHFpkm7+A6SYxCKx8vyBcj8L1KJy/kEFg5dAii7+IbOf7qfGCv3DpJjEIrFy/AKrx0k1igL+APQrXo3Cdv1DjpZvEIKC/AH9qvHSTaL+APQrXo3CdvwDXo3A9Coe/wEkMAiuHhr8Q16NwPQqHv8AehetRuJ6/AKrx0k1iUD8AWDm0yHaevwD6fmq8dIO/AEkMAiuHZr+gcmiR7Xyfv9ChRbbz/YS/gO18PzVemr8AFK5H4XpkvwDP91PjpXu/4CLb+X5qnL8wtMh2vp9qv1DhehSuR6G/AAAAAAAAoL/ASQwCK4eWv5DEILByaKG/0KFFtvP9lL/QoUW28/2EvzC0yHa+n4q/HC/dJAaBdb8AWDm0yHaev+Ai2/l+apy/wEkMAiuHlr+4SQwCK4dmv1DjpZvEIKC/AGQ730+Nd78ABFYOLbJ9v4BBYOXQIpu/oPHSTWIQiL9AYOXQItuZv4BBYOXQIou/AKrx0k1iYL9Q46WbxCCgvwB/arx0k1i/0KFFtvP9lL8AqvHSTWKgvzC0yHa+n5q//Knx0k1iUD8ArBxaZDufv/DSTWIQWJm/AKrx0k1iUL8Af2q8dJN4v1DjpZvEIKC/AAAAAAAAAACAZDvfT413vwDFILByaHG/oHA9CtejoL+Ake18PzWev4BkO99PjYe/AH9qvHSTSD/wqfHSTWJgv8BJDAIrh4a/wB6F61G4nr+AFK5H4Xp0v/yp8dJNYmA/YBBYObTIlr8wCKwcWmSbv4hs5/up8YK/SIts5/upob+ABFYOLbJ9v+B6FK5H4Zq/AAAAAAAAoL/gzvdT46WbvwCsHFpkO5+/gJmZmZmZeb+AxCCwcmhxv9ChRbbz/YS/oEW28/3UmL/gJjEIrByKvwBKDAIrh2a/ILByaJHtnL+AlUOLbOebv0CLbOf7qZG/wB6F61G4nr8A30+Nl25ivyCwcmiR7Zy/AKwcWmQ7n7/8qfHSTWJQP2Dl0CLb+Z6/IARWDi2ynb9waJHtfD+VvwBkO99PjXe/gO18PzVemr+AFK5H4XpUv+BRuB6F64G/UOOlm8QgoL+QbOf7qfGiv0AMAiuHFom/ILByaJHtnL8AqvHSTWIwv+Clm8QgsJK/MIcW2c73k79AtMh2vp9qv9DO91PjpZu/AKrx0k1iUD+QGARWDi2iv2BkO99PjYe/ACcxCKwcir9AL90kBoGFvwBU46WbxKC/YGQ730+Nh7+gxCCwcmihv5jEILByaKG/gOkmMQisnL/ASQwCK4dmv4DpJjEIrFy/YDm0yHa+f78AxSCwcmhxv+DSTWIQWJm/AH9qvHSTaL8AqvHSTWJAvzAzMzMzM6O/QAisHFpkm7+AQWDl0CKbvwAfhetRuG6/UDeJQWDlgL8Az/dT46V7v4A9CtejcJ2/AH9qvHSTaL9waJHtfD+VvwCq8dJNYqC/ODMzMzMzo78AqvHSTWJAvyCwcmiR7Zy/4KWbxCCwor+wxks3iUGgv0AMAiuHFpm/AIBqvHSTWL+gmZmZmZmJvwBYObTIdp6/QDVeukkMor8Af2q8dJN4vwCq8dJNYkA/QN9PjZduYr8AqvHSTWJgvzDfT42XboK/ON9PjZdugr/ASQwCK4eWvzDfT42XbpK/gOkmMQisXL8AAAAAAACgvwDFILByaHG/ON9PjZduor+gxks3iUGgv0CLbOf7qZG/4M73U+Olm7+QxCCwcmihv4AUrkfhepS/QGDl0CLbmb8AqvHSTWJQv0C4HoXrUZi/4CYxCKwcmr+QbOf7qfGSv2CR7Xw/NZ6/AAAAAAAAAABADAIrhxaZvwCs8dJNYkC/4M73U+Ole7/AHoXrUbh+vwBkO99PjXe/wHa+nxovnb8gXI/C9Sicv2BkO99PjYe/IFg5tMh2nr+gxCCwcmiBv1CNl24Sg6C/IAisHFpkm78wtMh2vp9qvwCAarx0k0i/oEFg5dAim7+A6SYxCKxcv3C8dJMYBJa/AFg5tMh2nr9QN4lBYOWAv5DC9Shcj6K/eBSuR+F6hL/o+6nx0k2ivyCDwMqhRZa/8KfGSzeJob8AmpmZmZl5v6ByaJHtfJ+/AH9qvHSTaL9QjZduEoOgvzCHFtnO95O/UGQ730+Nl79gEFg5tMiWv4BkO99PjXe/sMZLN4lBoL9Q46WbxCCQv2Dl0CLb+Z6/8P3UeOkmkb9A4XoUrkehv0jhehSuR6G/ENejcD0Kl79A4XoUrkehv0C0yHa+n2q/oPHSTWIQmL9AtMh2vp+avxDXo3A9Coe/AH9qvHSTaL8wXI/C9SiMvwCq8dJNYoC/oHA9CtejoL+QbOf7qfGCv8AehetRuJ6/AH9qvHSTSL+APQrXo3Cdv1A3iUFg5aC/UDm0yHa+n78AqvHSTWJwv6BFtvP91Ji/IARWDi2ynb8AAAAAAAAAAOBRuB6F64G/8Knx0k1iYL/AHoXrUbiev3npJjEIrFw/gBSuR+F6lL/gJjEIrByav9DO91PjpZu/sPHSTWIQmL/g0k1iEFiZv+AmMQisHIq/YDm0yHa+n78grBxaZDufv8CZmZmZmYm/IIcW2c73g7+AxCCwcmiBv4DpJjEIrJy/sJ3vp8ZLl79Ai2zn+6mRv2Dl0CLb+Z6/IARWDi2ynb/AoUW28/2Uv8ihRbbz/YS/2Pl+arx0c79Q46WbxCCgv2A5tMh2vp+/AKrx0k1iMD8A16NwPQqHv0iNl24Sg6C/ENejcD0Kh78A+n5qvHRzv4DpJjEIrHy/gO18PzVemr9wPQrXo3Cdv4DpJjEIrFy/YOkmMQisnL9AObTIdr6fv5DtfD81Xpq/kMQgsHJoob/wp8ZLN4mhvyAEVg4tsn2/AB+F61G4fr9gFK5H4XqUvwCq8dJNYlA/gBSuR+F6ZL/ASQwCK4d2v0C0yHa+n4q/AKrx0k1iUL/g0k1iEFiZv0A5tMh2vn+/AEoMAiuHZr8ASgwCK4dmv4DEILByaHG/oBgEVg4tkr+gmZmZmZmZvwB+arx0k1i/gBSuR+F6hL9AtMh2vp+av+Ai2/l+apy/gOkmMQisnL8A16NwPQqXv6Dx0k1iEIi/UDeJQWDlkL9ACKwcWmSbvwAfhetRuG6/AFg5tMh2nr9g5dAi2/mevwDXo3A9Coe/gBSuR+F6VL8ArPHSTWJAv6DEILByaKG/IARWDi2ynb8AH4XrUbhuv0CLbOf7qaG/4FG4HoXrgb9gZDvfT42Hv5AYBFYOLaK/IC/dJAaBhb/AHoXrUbh+vwBkO99PjXe/wHa+nxovnb9Ai2zn+6mhv6DEILByaJG/ILByaJHtnL+A6SYxCKx8v+BNYhBYOZS/ABSuR+F6VL9AN4lBYOWgvwCAarx0k1i/AFg5tMh2nr/gehSuR+Gav1A3iUFg5aC/kML1KFyPor9Q46WbxCCgv8DEILByaIG/MIcW2c73k78Q16NwPQqHvwDpJjEIrGy/mG4Sg8DKob/Adr6fGi+dvyCwcmiR7Zy/oHA9CtejoL/Afmq8dJNYP8B2vp8aL52/gLTIdr6fer+A6SYxCKycv6jGSzeJQaC/YOXQItv5nr8ABFYOLbJ9vwB/arx0k0i/AAAAAAAAoL9A30+Nl25ivwDP91PjpXu/AKrx0k1iUD/gT42XbhKjvwBKDAIrh2a/kGzn+6nxgr9A30+Nl26SvyBcj8L1KJy/UDeJQWDloL8gXI/C9SiMvwAAAAAAAKC/UI2XbhKDoL9g5dAi2/mev4DEILByaIG/kGzn+6nxgr+A6SYxCKycv8BJDAIrh2a/MLTIdr6fmr+YbhKDwMqhv1DjpZvEIKC/AEoMAiuHZr9ADAIrhxaJvwAAAAAAAKC/wEFg5dAii7/AyqFFtvOdv9Ai2/l+apy/AH9qvHSTSD9g46WbxCCgv8BJDAIrh5a/cBBYObTIlr/AyqFFtvOdvyBcj8L1KJy/ENejcD0Kh79g5dAi2/mev6BwPQrXo6C/8H5qvHSTiL8AK4cW2c6Xv8Cd76fGS5e/0KFFtvP9lL/gehSuR+Gav+DO91PjpYu/wMqhRbbznb8AFa5H4Xpkv+AmMQisHJq/8P3UeOkmob8AqvHSTWIwP1CNl24Sg6C/gEFg5dAim7/A8dJNYhCIvziJQWDl0KK/wEkMAiuHhr8AqvHSTWIwv0C0yHa+n5q/AH9qvHSTiL8Af2q8dJNYv/Cp8dJNYoC/4CYxCKwcmr+YbhKDwMqhv0jhehSuR6G/gJmZmZmZeb+QGARWDi2ivxAv3SQGgYW/YBBYObTIlr+A6SYxCKx8v+DO91PjpZu/wHJoke18n7/w/dR46Sahv6jGSzeJQaC/AKrx0k1iUL9Q46WbxCCgv6AaL90kBqG/gPl+arx0c78Af2q8dJNYv0AMAiuHFom/gDm0yHa+f7/gT42XbhKjv7BJDAIrh4a/uEkMAiuHZj8Af2q8dJNYv5jEILByaHG/YOXQItv5nr8A6SYxCKx8vwD6fmq8dIO/gMQgsHJocb+gmZmZmZmJv/ip8dJNYnC/QGQ730+Nl78AAAAAAACgvwCq8dJNYnC/wKFFtvP9hL+AlUOLbOebv4CVQ4ts55u/oHJoke18n7/gdr6fGi+dv6DtfD81Xpq/AKwcWmQ7n7/gItv5fmqcvyBcj8L1KJy/sJ3vp8ZLl7+Ake18PzWev4CVQ4ts55u/kO18PzVemr8AqvHSTWJAvxCDwMqhRZa/oHJoke18n79AuB6F61GYvwDfT42XbnK/IARWDi2ynb/gzvdT46V7v4AMAiuHFom/oBov3SQGob+wxks3iUGgv1A3iUFg5YC/AKjx0k1iML8AH4XrUbhuv4BBYOXQIpu/oHA9CtejkL8AqvHSTWKgv5Bs5/up8YK/gDeJQWDlgL8A+n5qvHRzv2AQWDm0yJa/+FPjpZvEoL/AoUW28/2EvyAv3SQGgYW/YGQ730+Nh7/AxCCwcmiBvzAzMzMzM5O/cLx0kxgElr/IoUW28/2Ev+DO91PjpZu/YOXQItv5nr8Af2q8dJNIPwCq8dJNYlC/QAwCK4cWib+AQWDl0CKbv+BRuB6F64G//Knx0k1iUD8AqvHSTWJAv1A3iUFg5YC/wB6F61G4fr+AmZmZmZmZv2Boke18P5W/wMqhRbbznb/gItv5fmqcv4BBYOXQIou/AKrx0k1ioL8AtMh2vp9qv4AUrkfhenS/IKwcWmQ7n79AhxbZzveDv1DjpZvEIKC/4Pl+arx0c7/g+X5qvHSDvyBcj8L1KJy/AKrx0k1iUL/A8dJNYhCIv0C0yHa+n5q/oMQgsHJokb+w8dJNYhCYv0A1XrpJDKK/IFg5tMh2nr+g7Xw/NV6avyDb+X5qvJS/YOXQItv5nr+QxCCwcmiBv2C8dJMYBJa/AEoMAiuHZr/Q+X5qvHSTv2A9CtejcJ2/4M73U+Olm7/ASQwCK4eWvyAIrBxaZJu/wB6F61G4nr8830+Nl25iPyBcj8L1KJy/AKwcWmQ7j79wvHSTGASGv/BT46WbxKC/QOF6FK5Hob+YcD0K16Ogv/D91HjpJqG/gGQ730+Nh7/gT42XbhKjv+B6FK5H4Zq/QLTIdr6fmr8gBFYOLbJ9vwAEVg4tsn2/mBgEVg4tor8AqvHSTWKgv6DEILByaIG/AAAAAAAAAACAObTIdr5/v7Dx0k1iEIi/UAwCK4cWib8Qg8DKoUWWv2A5tMh2vp+/8H5qvHSTiL/AyqFFtvOdvwDXo3A9Cpe/YOXQItv5nr+g8dJNYhCIv+AmMQisHJq/QIts5/upob9AFK5H4XpUP8AehetRuJ6/+FPjpZvEoL8gsHJoke2cv4BkO99PjXe/YOXQItv5nr+gcmiR7Xyfv6CZmZmZmZm/AH9qvHSTaL+gcD0K16Ogv+Ai2/l+apy/8P3UeOkmob+QGARWDi2Sv0A3iUFg5YC/AN9PjZducr/gzvdT46WbvxAEVg4tsp2/YGQ730+Nl7/gzvdT46WbvxDXo3A9Coe/wKFFtvP9lL+AlUOLbOebv4CZmZmZmXm/+H5qvHSTWD8A30+Nl25ivwCAarx0k1i/YDm0yHa+n78AqvHSTWKgvzBcj8L1KJy/cBSuR+F6hL9QjZduEoOgv/hT46WbxKC/gN9PjZducr8AFK5H4XpUvwCq8dJNYkC/oBov3SQGob9Q46WbxCCgvwB/arx0k1g/cLx0kxgEhr/AcmiR7Xyfv4BBYOXQIpu/oJmZmZmZib/gehSuR+Gav4AUrkfhelQ/IFyPwvUonL/QzvdT46Wbv8AehetRuJ6/AM/3U+Ole79gvHSTGASGv6BuEoPAyqG/8FPjpZvEoL+ABFYOLbJ9v4hs5/up8aK/6FG4HoXrob9gEFg5tMiWv8ByaJHtfJ+/4HoUrkfhmr/wp8ZLN4mhv0C4HoXrUZi/oBov3SQGob+QbOf7qfGSvyCwcmiR7Zy/AN9PjZduYr9gObTIdr6fvwAAAAAAAAAAYOXQItv5nr+A6SYxCKycv0AMAiuHFom/EC/dJAaBhb8w30+Nl26Cv2BkO99PjYe/oJmZmZmZeb9Ai2zn+6mhv+Ai2/l+apy/AN9PjZducr8ASQwCK4dmvyBcj8L1KJy/wEkMAiuHhr9QN4lBYOWAvwD6fmq8dHO/UI2XbhKDoL8gBFYOLbJ9v8DEILByaIG/AARWDi2yfb8ABFYOLbJ9v4AUrkfhenS/cBSuR+F6lL+gcD0K16OQv4CZmZmZmXm/AKrx0k1iMD8gsHJoke2cvwCq8dJNYlC/AAAAAAAAoL8A6SYxCKxsv6BwPQrXo6C/gBSuR+F6lL+A30+Nl25yv0g3iUFg5aC/gBSuR+F6hL9ADAIrhxaJv6BFtvP91Ji/APp+arx0c78wCKwcWmSbv1CNl24Sg6C/4M73U+Ole79QN4lBYOWAv2AQWDm0yJa/AN9PjZduYr/AHoXrUbh+vwAfhetRuH6/QLTIdr6fmr/QTWIQWDmUv4DpJjEIrJy/IAisHFpkm7+gcD0K16OgvwAAAAAAAKC/AKjx0k1iML+AQWDl0CKbvwBkO99PjXe/0Pl+arx0g7/gzvdT46WLv3AUrkfhelS/YD0K16Nwnb+AQWDl0CKbvzCHFtnO94O/AKrx0k1iMD+AFK5H4XqEv/BT46WbxKC/YJHtfD81nr8gXI/C9SicvwCq8dJNYlA/gH5qvHSTeL9QjZduEoOgv5CZmZmZmZm/QN9PjZdugr8A6SYxCKxsv6BwPQrXo6C/QDeJQWDlkL9I4XoUrkehv6Dx0k1iEIi/wPUoXI/Clb8w2/l+aryUv5DEILByaIG/UGQ730+Nd7+A6SYxCKx8vyAv3SQGgZW/IFyPwvUonL8AWDm0yHaev1C4HoXrUZi/AKwcWmQ7n78AqvHSTWIwPwAAAAAAAKC/YOXQItv5nr+gHoXrUbiev4DpJjEIrHy/wHa+nxovnb/wqfHSTWKQvwB/arx0k0g/gGzn+6nxgr8Af2q8dJOIv/Cnxks3iaG/cGiR7Xw/lb+AtMh2vp96v4CVQ4ts55u/YD0K16Nwnb+ADAIrhxaJv/AmMQisHJq/AC/dJAaBdb/8qfHSTWJAP1DjpZvEIKC/YGQ730+Nh7/AmZmZmZmJv2CR7Xw/NZ6/QDVeukkMor+gcD0K16Ogv6Cd76fGS5e/0PUoXI/Clb+wxks3iUGgv6ByaJHtfJ+/MLTIdr6fir+w8dJNYhCIv0DfT42XboK/gJVDi2znm78gXI/C9SicvwCsHFpkO5+/IARWDi2ynb9AtMh2vp+av4hs5/up8aK/AP7UeOkmkb8w30+Nl26Sv4Boke18P5W/8Knx0k1igL8A6iYxCKxsvyAEVg4tsp2/AKwcWmQ7n79AXI/C9SicvwB/arx0k2i/QAwCK4cWmb8AqvHSTWJQvyAv3SQGgZW/UI2XbhKDoL8AH4XrUbhuvyAEVg4tsp2/IFyPwvUonL9AL90kBoGFv4DpJjEIrHy/oHA9CtejoL9AtMh2vp+KvwCq8dJNYqC/gBSuR+F6VL9AtMh2vp+KvxCDwMqhRZa/gC/dJAaBdb+g7Xw/NV6av4DpJjEIrJy/wB6F61G4nr8A30+Nl25iv2CR7Xw/NZ6/gJVDi2znm79g5dAi2/mevxCDwMqhRZa/ILByaJHtnL9gObTIdr6fvwCq8dJNYjA/gGQ730+Nh78Af2q8dJOIvwAAAAAAAAAAILByaJHtnL84iUFg5dCiv4Bs5/up8YK/kO18PzVemr/AxCCwcmiBvwBJDAIrh2a/gJHtfD81nr/ASQwCK4eWvwAAAAAAAAAAAN9PjZducr8gBFYOLbKdv6AehetRuJ6/cOkmMQisnL/A8dJNYhCIv4DpJjEIrJy/IC/dJAaBhb9gObTIdr5/v0C0yHa+n2q/wCLb+X5qnL8AqvHSTWKgv6AaL90kBqG/gOkmMQisfL8gL90kBoGVv1CNl24Sg6C/IARWDi2ynb8AK4cW2c6XvwCq8dJNYqC/AKrx0k1iMD/wp8ZLN4mhvwArhxbZzpe/ALTIdr6far/AHoXrUbiev3C8dJMYBIa/gOkmMQisXL/QoUW28/2Uv+BRuB6F64G/QIts5/upob8Af2q8dJOIvwAfhetRuG6/4M73U+Ole7+QbOf7qfGCv0A1XrpJDKK/gOkmMQisXL9gObTIdr5/vwDfT42XbmK/YDm0yHa+n7+gcmiR7Xyfv0A1XrpJDKK/UOF6FK5Hob/QTWIQWDmUv8BJDAIrh2a/IARWDi2ynb8gL90kBoGFvwB8arx0k0i/QIts5/upkb+wne+nxkuXvwCq8dJNYjC/wMqhRbbznb+wSQwCK4d2v4CR7Xw/NY6/AAAAAAAAoL/A+X5qvHSTvwDFILByaHG/kO18PzVemr/gT42XbhKjvwDqJjEIrGy/wHJoke18n78gWDm0yHaev2Dl0CLb+Z6/4M73U+Ole78AL90kBoF1v4DpJjEIrHy/mMQgsHJocb+A7Xw/NV6av3Boke18P5W/gOkmMQisfL/g+X5qvHRzv8ChRbbz/YS/gOkmMQisnL+wSQwCK4eGv5BuEoPAyqG/gBSuR+F6VL+AwMqhRbaTvyCwcmiR7Zy/AH9qvHSTiL9A30+Nl25iv4AUrkfhepS/oMQgsHJogb8AqvHSTWJAv6DEILByaJG/gMDKoUW2k79Q46WbxCCgvyBcj8L1KJy/8FG4HoXrgb8AFK5H4XpUv8BJDAIrh4a/gEFg5dAii7/8qfHSTWJgP+AmMQisHJq/gBSuR+F6lL9A30+Nl26Cv8AehetRuJ6/AIBqvHSTSL8Af2q8dJOYv0AMAiuHFom/gEFg5dAim7+wSQwCK4eWv6Dx0k1iEJi/QDVeukkMor+wne+nxkuXv7DGSzeJQaC/wB6F61G4fr8AqvHSTWJgv+DO91PjpXu/4NJNYhBYmb8AFK5H4XpUv6AaL90kBqG/AEoMAiuHZr8AAAAAAACgv/x+arx0k1g/gOXQItv5nr/AqfHSTWJQP4CVQ4ts55u/4CLb+X5qnL+AZDvfT413vwD+1HjpJpG/AEkMAiuHZr9AObTIdr6Pv4CVQ4ts55u/QFyPwvUojL/gJjEIrByavwAAAAAAAAAAALTIdr6far8AqPHSTWJAv+hRuB6F66G/YOOlm8QgoL+YGARWDi2ivwCq8dJNYqC/IARWDi2ynb/wp8ZLN4mhv4DfT42XbnK/QAwCK4cWib+wcD0K16Ogv+D5fmq8dIO/4KWbxCCwkr9wvHSTGASWvwAv3SQGgXW/ENejcD0Kl7/g+X5qvHRzv+j7qfHSTaK/YOXQItv5nr8A6CYxCKxcvwA5tMh2vn+/uEkMAiuHZj8AFa5H4XpkvwCsHFpkO5+/wB6F61G4nr/AoUW28/2UvwCq8dJNYnC/AH9qvHSTSL+AFK5H4XpUv/D91HjpJqG/gBSuR+F6lL8AFK5H4Xp0v8DKoUW2852/AKrx0k1iYL+gmZmZmZmJv2A5tMh2vp+/AGQ730+Nd7+gcD0K16OQv4DpJjEIrGy/YJHtfD81nr8AqvHSTWJQP+B6FK5H4Zq/6Pup8dJNor/gJjEIrByavwBKDAIrh2a/wMqhRbbznb9gEFg5tMiWv+Clm8QgsJK/ENejcD0Kl78Az/dT46V7v9BNYhBYOZS/AH9qvHSTiL8AqvHSTWJwv1C4HoXrUZi/AIBqvHSTWL8=","dtype":"float64","order":"little","shape":[1000]},"index":[12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941,12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999],"parameter":["theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]","theta_1[2,1]"],"rank_statistic":[2217,3803,577,3294,959,2560,3301,2889,1019,1495,1170,2130,2348,3630,3318,500,2624,1652,2790,3100,45,32,552,3383,1185,2918,2783,1206,2512,2852,1507,2111,3983,2191,3556,3325,890,2849,1053,2243,2526,753,1377,2886,1936,3214,463,2825,920,480,90,3747,2414,3161,3571,2998,600,887,632,2671,351,2778,3321,3662,2358,632,2810,3677,3350,3042,180,2010,2668,1311,2347,1233,888,599,136,2674,2498,1559,122,2633,3694,3484,2825,854,1372,572,215,2041,401,1249,2139,1459,3,2033,1290,267,755,3173,15,3814,3832,3093,2953,3317,60,203,527,2875,3567,47,1348,1286,484,1849,3800,1652,2772,2551,2773,3512,3568,544,1372,1002,3966,2060,2940,1180,2711,3912,1644,2221,23,2888,2055,1254,3698,2786,264,970,3077,1847,3460,3200,380,3292,1501,764,1719,283,1901,641,3454,3317,3122,921,1799,1923,2931,198,394,650,3852,2786,3575,273,1953,2502,2721,3854,444,3330,2910,3519,1522,3171,1845,293,2408,1897,2026,2789,3949,885,2246,1856,3331,325,192,3667,687,487,1571,1195,170,2392,3848,1899,2262,1176,3043,2303,1235,3216,363,3282,2553,1117,2249,339,3257,3933,794,745,3754,2197,2525,865,2450,933,3112,2730,144,3954,2921,398,1297,3178,732,1888,507,1962,1482,3140,3800,2870,191,2372,1237,1375,1296,3566,2390,1130,2396,1102,2278,1794,1581,2286,160,1405,3243,612,3979,918,811,3145,512,2487,162,2490,1759,1979,3819,2560,2679,235,710,207,2447,4,1523,3221,1647,1373,3262,846,2443,2981,3437,950,3737,2903,1326,1188,1980,2891,1381,504,142,2769,2883,322,3400,1752,532,3514,3747,3254,1634,94,2779,2763,1454,2331,2096,748,3493,3291,239,185,757,1055,3923,3270,702,3522,3906,3756,1198,3231,3633,3379,3215,2938,2055,3285,1062,1209,2530,3882,2862,2460,3460,216,3937,3143,2155,3834,2277,966,541,1889,641,737,3706,1637,2301,1099,2712,3499,1498,3996,2279,3985,2150,3252,3143,1848,3177,3365,1533,536,3625,1858,3005,3060,2369,277,2181,3345,2911,1994,2176,3728,98,1768,160,3506,247,1840,3910,508,1123,3205,2123,566,2044,1976,2392,3741,724,2491,182,1447,1922,2349,3866,576,2968,3312,1732,1710,236,2381,1587,1472,2956,1705,984,2612,2125,839,3284,1470,1517,2580,1045,2696,3897,3269,2317,74,1968,1689,3414,1886,867,104,2539,1007,389,695,1449,1962,1962,3716,1905,577,1420,3323,3207,2970,2289,1990,319,2141,1788,3698,97,572,3482,1884,587,24,261,152,2624,3751,3389,3592,1057,143,2795,2980,3515,580,2912,2784,2350,2465,3046,3161,2494,1713,1334,2997,3200,1442,217,1582,2654,3274,3617,2399,454,3316,2020,2482,664,3996,3622,3045,3304,3151,684,3792,3814,1336,1966,600,605,885,3321,1098,1573,496,3019,2484,364,379,3476,2785,950,15,221,724,665,3255,3286,3004,2418,3428,3195,3756,3331,2973,3478,3145,762,649,3009,3667,3438,2551,1123,1469,1848,2982,2530,1156,2996,713,3285,3834,1167,2178,2931,1567,2726,2703,50,1637,3308,858,3130,2334,2001,2017,3477,1948,2544,3031,436,3488,1865,3099,925,3999,3322,878,920,1342,2635,599,2460,1397,2148,846,3225,2345,342,2231,1974,2900,3810,2992,2146,2555,3903,2305,3018,3129,1098,952,3601,2515,1631,1291,3023,624,3289,2400,3752,45,3888,3953,2651,1763,1617,947,2308,1762,3881,3912,73,2024,2649,365,614,2990,3249,877,2584,74,2501,1679,2211,3778,846,2094,1750,3796,1879,1907,1412,2046,2516,2324,3270,1800,1093,2188,3652,3187,363,2244,2715,3432,825,691,1033,448,2105,3014,3609,3630,1661,923,728,3862,3084,668,3481,3548,696,3559,1383,3296,3548,330,2416,111,2228,3617,2025,1491,3865,1963,923,3412,1464,3878,1662,1780,750,928,1592,3992,445,3793,2587,1158,2155,3210,2137,1976,3924,1713,3710,825,1053,72,2778,2833,614,98,3375,2334,2053,1685,275,3771,1776,1463,3791,3569,2645,1137,1914,1022,1348,1228,937,426,447,1311,2717,3198,1466,2669,274,2240,2656,2755,3495,2161,1127,348,720,3455,1808,1314,3809,2720,2202,3312,1289,3512,1,2645,1029,3421,2693,1868,2377,2790,1472,2622,3154,567,906,643,2512,1645,3177,2899,1279,1955,1198,1175,1482,691,3885,2747,2609,2917,3515,3281,315,1247,2132,3602,3199,1677,3477,3503,2081,1015,2111,160,3431,1414,3336,2534,1623,2051,3892,2169,3028,3100,1354,2680,3195,222,3445,1003,3927,2184,1958,3380,1662,3361,3666,2433,1555,227,3613,2675,2351,1675,3470,2399,521,806,768,2822,2667,2012,651,1531,2348,2711,2564,3115,246,2296,1332,3976,2707,986,198,1473,962,2109,903,3826,458,924,1824,306,734,3920,1763,2230,1820,2110,1542,770,2487,541,3634,3292,1310,336,2152,421,3310,3152,3291,3824,1286,1944,3865,2482,2398,2776,670,3600,3543,156,3238,1514,799,758,3460,2891,855,2330,308,1164,2740,1027,212,1487,649,321,1107,1536,2145,3005,662,3652,3439,1000,23,1689,1531,3479,2443,3942,2563,3408,3029,1375,1409,2104,1410,2030,741,3575,466,3226,3992,2304,3982,3084,17,2872,339,2832,2422,3550,1202,3650,3305,1688,3310,1693,295,3584,3637,1911,2377,1817,3095,2463,1912,3817,1020,2389,641,1120,1337,3552,1565,138,1958,2860,3630,3742,32,3885,2049,3195,1377,3843,270,312,2121,1483,3755,2452,771,1061,2031,3718,1124,157,2689,227,1440,1830,1461,3970,2176,1292,1168,1305,3510,1162,631,763,1290,3921],"warning_code":[12,12,0,4,0,12,15,4,0,4,4,0,0,6,4,0,4,0,0,0,11,8,0,4,0,4,0,0,0,0,4,12,12,0,4,0,0,4,0,0,12,0,0,4,0,11,4,0,0,12,0,12,0,4,0,4,0,8,15,0,0,4,0,11,0,0,4,4,4,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,11,0,4,0,0,0,4,0,0,0,0,4,0,7,4,15,4,4,0,4,4,0,0,0,4,4,4,12,14,0,0,4,4,0,0,0,4,8,0,4,8,8,2,4,0,4,0,8,7,0,0,12,12,0,0,0,0,8,12,0,4,0,0,4,4,0,4,4,4,0,4,4,0,0,4,0,12,12,0,8,11,0,4,0,12,8,7,12,0,4,8,0,0,4,4,0,6,0,4,0,0,0,4,12,0,0,0,0,4,0,0,5,0,4,7,0,0,4,0,0,4,0,0,4,0,4,0,0,0,0,0,0,4,4,4,8,0,0,4,12,4,0,4,0,0,8,0,4,0,0,0,4,0,0,0,4,8,0,4,0,0,4,0,0,8,8,8,4,0,12,7,0,0,0,4,4,12,0,0,0,4,4,0,0,0,0,0,8,12,4,4,4,0,0,4,8,0,4,4,0,8,0,8,0,0,0,0,0,8,11,0,4,4,0,4,4,15,4,0,12,0,4,14,8,0,0,8,0,12,4,5,12,0,0,0,0,8,4,0,0,12,0,4,0,4,0,4,0,0,4,0,0,0,4,4,0,8,4,0,0,0,4,4,0,0,4,12,0,4,4,0,0,0,4,0,12,0,4,4,4,0,0,4,0,0,0,0,4,5,0,0,4,12,0,0,4,0,0,0,4,0,0,0,0,0,12,4,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,4,4,0,12,0,0,0,0,4,8,0,0,0,0,4,4,4,8,0,0,0,0,12,7,0,0,12,0,4,0,7,12,0,0,12,0,4,0,0,0,4,4,4,0,4,0,0,8,4,4,0,0,4,4,0,0,0,0,4,0,4,0,12,4,4,4,0,8,4,4,12,0,4,0,0,4,12,4,4,0,4,0,0,0,4,0,0,4,0,4,0,4,8,8,0,4,0,12,12,0,0,12,4,12,12,4,4,0,0,0,0,5,12,0,4,4,8,0,12,0,0,4,0,11,0,4,8,4,8,11,4,4,0,0,0,0,0,4,8,4,0,0,12,0,0,0,0,0,0,8,7,4,0,12,0,0,4,0,12,11,0,0,4,0,5,15,0,4,0,0,4,0,0,8,0,4,0,12,0,0,0,0,4,0,0,0,12,4,15,0,0,0,4,0,0,0,4,4,0,0,0,4,0,5,6,15,0,4,0,6,4,12,0,0,4,0,4,4,0,4,0,11,0,0,0,0,0,5,0,4,4,0,8,4,0,4,8,0,0,4,0,0,7,0,0,0,4,0,4,4,0,4,0,0,0,0,8,12,8,8,4,0,4,0,0,0,4,4,4,15,0,0,0,4,0,12,4,7,0,4,0,4,4,0,0,4,12,12,4,4,4,11,0,0,0,2,8,7,0,0,0,4,0,4,4,4,0,5,4,7,14,4,0,0,0,0,0,0,0,0,4,12,8,0,0,0,5,4,0,11,8,0,8,0,0,4,0,0,0,4,0,4,0,0,0,8,0,4,0,0,0,0,4,4,0,8,4,0,0,11,0,0,8,0,0,4,0,0,0,0,0,4,12,0,0,4,0,0,4,0,4,4,0,0,0,0,0,0,0,2,0,0,15,0,4,8,0,0,5,0,4,0,0,12,0,0,0,4,11,4,0,0,0,12,0,4,0,8,0,0,10,0,0,0,0,7,8,0,4,4,0,0,0,0,0,8,4,0,11,0,12,4,12,4,11,4,12,0,8,0,0,0,0,0,0,0,0,0,12,0,4,4,5,0,0,0,4,4,4,4,0,4,8,0,0,0,8,0,0,8,0,4,4,0,0,0,12,4,0,0,4,0,5,0,8,0,4,4,0,0,8,4,0,11,4,0,4,0,4,4,0,0,0,12,0,0,4,0,0,0,0,0,12,0,0,0,4,4,0,0,0,8,0,0,13,15,0,0,0,4,0,0,8,4,0,0,4,4,4,4,0,0,0,4,0,4,11,8,4,4,0,0,4,0,4,4,4,0,0,4,0,0,4,0,4,0,4,0,0,0,0,0,0]},"selected":{"id":"13026"},"selection_policy":{"id":"13025"}},"id":"12326","type":"ColumnDataSource"},{"attributes":{"fill_color":{"value":"#e277c1"},"line_color":{"value":"#e277c1"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12292","type":"Circle"},{"attributes":{"fill_color":{"value":"#7e7e7e"},"line_color":{"value":"#7e7e7e"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12298","type":"Circle"},{"attributes":{"axis":{"id":"12217"},"ticker":null},"id":"12220","type":"Grid"},{"attributes":{"fill_color":{"value":"#16bdcf"},"line_color":{"value":"#16bdcf"},"size":{"units":"screen","value":2},"x":{"field":"rank_statistic"},"y":{"field":"__ECDF"}},"id":"12310","type":"Circle"},{"attributes":{"label":{"value":"theta_1[0,0]"},"renderers":[{"id":"12300"}]},"id":"12340","type":"LegendItem"}],"root_ids":["12208"]},"title":"Bokeh Application","version":"2.2.3"}};n”, ” var render_items = [{"docid":"f586a70a-8aa9-495b-8072-da45fc372789","root_ids":["12208"],"roots":{"12208":"df30d542-dce3-4bef-b616-ee3eda2ba198"}}];n”, ” root.Bokeh.embed.embed_items_notebook(docs_json, render_items);n”, “n”, ” }n”, ” if (root.Bokeh !== undefined) {n”, ” embed_document(root);n”, ” } else {n”, ” var attempts = 0;n”, ” var timer = setInterval(function(root) {n”, ” if (root.Bokeh !== undefined) {n”, ” clearInterval(timer);n”, ” embed_document(root);n”, ” } else {n”, ” attempts++;n”, ” if (attempts > 100) {n”, ” clearInterval(timer);n”, ” console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");n”, ” }n”, ” }n”, ” }, 10, root)n”, ” }n”, “})(window);”
], “application/vnd.bokehjs_exec.v0+json”: “”
}, “metadata”: {
- “application/vnd.bokehjs_exec.v0+json”: {
“id”: “12208”
}
}, “output_type”: “display_data”
}
], “source”: [
“p = bebi103.viz.sbc_rank_ecdf(n”, ” df_sbc, show_legend=True, marker_kwargs={"size": 2}, n”, “)n”, “p.legend.spacing = 0n”, “p.legend.label_text_font_size = ‘8pt’n”, “n”, “bokeh.io.show(p)”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“The ECDF difference of the rank statistic falling within the theoretical 99-percentile envelope is indicative of good calibration of the sampler and lack of bias. The parameter sigma[1] has a low-biased rank statistic, suggesting that the samples of sigma[1] will tend to be biased toward larger values.”
]
}, {
“cell_type”: “markdown”, “metadata”: {}, “source”: [
“## Cleaning upn”, “n”, “CmdStanPy leaves .hpp, ,o, .d, executable files, and sampling output. To conveniently remove them, use bebi103.stan.clean_cmdstanpy().”
]
}, {
“cell_type”: “code”, “execution_count”: 31, “metadata”: {}, “outputs”: [], “source”: [
“bebi103.stan.clean_cmdstan()”
]
}
], “metadata”: {
- “kernelspec”: {
“display_name”: “Python 3”, “language”: “python”, “name”: “python3”
}, “language_info”: {
- “codemirror_mode”: {
“name”: “ipython”, “version”: 3
}, “file_extension”: “.py”, “mimetype”: “text/x-python”, “name”: “python”, “nbconvert_exporter”: “python”, “pygments_lexer”: “ipython3”, “version”: “3.8.5”
}
}, “nbformat”: 4, “nbformat_minor”: 4
}